diff --git a/grammar.js b/grammar.js index 4879485..08a5f45 100644 --- a/grammar.js +++ b/grammar.js @@ -9,6 +9,7 @@ module.exports = grammar({ inline: ($) => [ $._do_expression, + $._flag, $._flag_value, $._item_expression, $._match_expression, @@ -273,14 +274,12 @@ module.exports = grammar({ token.immediate(BRACK().open_angle), repeat( seq( - seq( - key, - optional( - seq( - PUNC().colon, - $._all_type, - field("completion", optional($.param_cmd)), - ), + key, + optional( + seq( + PUNC().colon, + $._all_type, + field("completion", optional($.param_cmd)), ), ), optional(PUNC().comma), @@ -419,7 +418,7 @@ module.exports = grammar({ PREC().low, seq( KEYWORD().do, - optional(seq(repeat($._flags_parenthesized))), + repeat($._flags_parenthesized), repeat1($._separator), choice($._blosure, $.val_variable), repeat(seq(repeat($._newline), $._do_expression)), @@ -1283,7 +1282,7 @@ module.exports = grammar({ ), ), - _flag: ($) => prec.right(5, choice($.short_flag, $.long_flag)), + _flag: ($) => choice($.short_flag, $.long_flag), _flags_parenthesized: ($) => seq(repeat1($._separator), $._flag), diff --git a/src/grammar.json b/src/grammar.json index 99b7f09..fea706b 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2955,66 +2955,61 @@ "type": "SEQ", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "key", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "val_string" - }, - "named": true, - "value": "identifier" - } - ] + "type": "FIELD", + "name": "key", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "val_string" + }, + "named": true, + "value": "identifier" } - }, + ] + } + }, + { + "type": "CHOICE", + "members": [ { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "SYMBOL", - "name": "_all_type" - }, - { - "type": "FIELD", - "name": "completion", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "param_cmd" - }, - { - "type": "BLANK" - } - ] - } - } - ] + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_all_type" }, { - "type": "BLANK" + "type": "FIELD", + "name": "completion", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "param_cmd" + }, + { + "type": "BLANK" + } + ] + } } ] + }, + { + "type": "BLANK" } ] }, @@ -3598,24 +3593,11 @@ "value": "do" }, { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_flags_parenthesized" - } - } - ] - }, - { - "type": "BLANK" - } - ] + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_flags_parenthesized" + } }, { "type": "REPEAT1", @@ -14971,21 +14953,17 @@ ] }, "_flag": { - "type": "PREC_RIGHT", - "value": 5, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "short_flag" - }, - { - "type": "SYMBOL", - "name": "long_flag" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "short_flag" + }, + { + "type": "SYMBOL", + "name": "long_flag" + } + ] }, "_flags_parenthesized": { "type": "SEQ", @@ -16111,6 +16089,7 @@ ], "inline": [ "_do_expression", + "_flag", "_flag_value", "_item_expression", "_match_expression", diff --git a/src/parser.c b/src/parser.c index 023b85b..0e7d9e4 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,9 +13,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 8007 -#define LARGE_STATE_COUNT 1735 -#define SYMBOL_COUNT 515 +#define STATE_COUNT 8175 +#define LARGE_STATE_COUNT 1727 +#define SYMBOL_COUNT 514 #define ALIAS_COUNT 4 #define TOKEN_COUNT 307 #define EXTERNAL_TOKEN_COUNT 3 @@ -486,62 +486,61 @@ enum ts_symbol_identifiers { sym__command_parenthesized = 460, sym__cmd_arg = 461, sym_redirection = 462, - sym__flag = 463, - sym__flags_parenthesized = 464, - sym_short_flag = 465, - sym_long_flag = 466, - sym_unquoted = 467, - sym__unquoted_in_list = 468, - sym__unquoted_in_record = 469, - sym__unquoted_with_expr = 470, - sym__unquoted_in_list_with_expr = 471, - sym__unquoted_in_record_with_expr = 472, - sym__unquoted_anonymous_prefix = 473, - sym_comment = 474, - aux_sym_shebang_repeat1 = 475, - aux_sym_pipeline_repeat1 = 476, - aux_sym_pipeline_parenthesized_repeat1 = 477, - aux_sym__block_body_repeat1 = 478, - aux_sym__block_body_repeat2 = 479, - aux_sym_decl_def_repeat1 = 480, - aux_sym__multiple_types_repeat1 = 481, - aux_sym__multiple_types_repeat2 = 482, - aux_sym_parameter_parens_repeat1 = 483, - aux_sym_parameter_repeat1 = 484, - aux_sym_parameter_repeat2 = 485, - aux_sym_collection_type_repeat1 = 486, - aux_sym_ctrl_do_repeat1 = 487, - aux_sym_ctrl_do_repeat2 = 488, - aux_sym_ctrl_do_parenthesized_repeat1 = 489, - aux_sym_ctrl_do_parenthesized_repeat2 = 490, - aux_sym_ctrl_do_parenthesized_repeat3 = 491, - aux_sym_ctrl_match_repeat1 = 492, - aux_sym_match_pattern_repeat1 = 493, - aux_sym__match_pattern_list_repeat1 = 494, - aux_sym__match_pattern_record_repeat1 = 495, - aux_sym_pipe_element_repeat1 = 496, - aux_sym_pipe_element_repeat2 = 497, - aux_sym_pipe_element_parenthesized_repeat1 = 498, - aux_sym_command_list_repeat1 = 499, - aux_sym__parenthesized_body_repeat1 = 500, - aux_sym__parenthesized_body_repeat2 = 501, - aux_sym_val_binary_repeat1 = 502, - aux_sym__str_double_quotes_repeat1 = 503, - aux_sym__inter_single_quotes_repeat1 = 504, - aux_sym__inter_double_quotes_repeat1 = 505, - aux_sym_list_body_repeat1 = 506, - aux_sym_record_body_repeat1 = 507, - aux_sym_val_table_repeat1 = 508, - aux_sym_cell_path_repeat1 = 509, - aux_sym_command_repeat1 = 510, - aux_sym__command_parenthesized_repeat1 = 511, - aux_sym__unquoted_with_expr_repeat1 = 512, - aux_sym__unquoted_in_list_with_expr_repeat1 = 513, - aux_sym__unquoted_in_record_with_expr_repeat1 = 514, - anon_alias_sym__head = 515, - anon_alias_sym__prefix = 516, - anon_alias_sym__unit = 517, - anon_alias_sym_quoted = 518, + sym__flags_parenthesized = 463, + sym_short_flag = 464, + sym_long_flag = 465, + sym_unquoted = 466, + sym__unquoted_in_list = 467, + sym__unquoted_in_record = 468, + sym__unquoted_with_expr = 469, + sym__unquoted_in_list_with_expr = 470, + sym__unquoted_in_record_with_expr = 471, + sym__unquoted_anonymous_prefix = 472, + sym_comment = 473, + aux_sym_shebang_repeat1 = 474, + aux_sym_pipeline_repeat1 = 475, + aux_sym_pipeline_parenthesized_repeat1 = 476, + aux_sym__block_body_repeat1 = 477, + aux_sym__block_body_repeat2 = 478, + aux_sym_decl_def_repeat1 = 479, + aux_sym__multiple_types_repeat1 = 480, + aux_sym__multiple_types_repeat2 = 481, + aux_sym_parameter_parens_repeat1 = 482, + aux_sym_parameter_repeat1 = 483, + aux_sym_parameter_repeat2 = 484, + aux_sym_collection_type_repeat1 = 485, + aux_sym_ctrl_do_repeat1 = 486, + aux_sym_ctrl_do_repeat2 = 487, + aux_sym_ctrl_do_parenthesized_repeat1 = 488, + aux_sym_ctrl_do_parenthesized_repeat2 = 489, + aux_sym_ctrl_do_parenthesized_repeat3 = 490, + aux_sym_ctrl_match_repeat1 = 491, + aux_sym_match_pattern_repeat1 = 492, + aux_sym__match_pattern_list_repeat1 = 493, + aux_sym__match_pattern_record_repeat1 = 494, + aux_sym_pipe_element_repeat1 = 495, + aux_sym_pipe_element_repeat2 = 496, + aux_sym_pipe_element_parenthesized_repeat1 = 497, + aux_sym_command_list_repeat1 = 498, + aux_sym__parenthesized_body_repeat1 = 499, + aux_sym__parenthesized_body_repeat2 = 500, + aux_sym_val_binary_repeat1 = 501, + aux_sym__str_double_quotes_repeat1 = 502, + aux_sym__inter_single_quotes_repeat1 = 503, + aux_sym__inter_double_quotes_repeat1 = 504, + aux_sym_list_body_repeat1 = 505, + aux_sym_record_body_repeat1 = 506, + aux_sym_val_table_repeat1 = 507, + aux_sym_cell_path_repeat1 = 508, + aux_sym_command_repeat1 = 509, + aux_sym__command_parenthesized_repeat1 = 510, + aux_sym__unquoted_with_expr_repeat1 = 511, + aux_sym__unquoted_in_list_with_expr_repeat1 = 512, + aux_sym__unquoted_in_record_with_expr_repeat1 = 513, + anon_alias_sym__head = 514, + anon_alias_sym__prefix = 515, + anon_alias_sym__unit = 516, + anon_alias_sym_quoted = 517, }; static const char * const ts_symbol_names[] = { @@ -1008,7 +1007,6 @@ static const char * const ts_symbol_names[] = { [sym__command_parenthesized] = "command", [sym__cmd_arg] = "_cmd_arg", [sym_redirection] = "redirection", - [sym__flag] = "_flag", [sym__flags_parenthesized] = "_flags_parenthesized", [sym_short_flag] = "short_flag", [sym_long_flag] = "long_flag", @@ -1530,7 +1528,6 @@ static const TSSymbol ts_symbol_map[] = { [sym__command_parenthesized] = sym_command, [sym__cmd_arg] = sym__cmd_arg, [sym_redirection] = sym_redirection, - [sym__flag] = sym__flag, [sym__flags_parenthesized] = sym__flags_parenthesized, [sym_short_flag] = sym_short_flag, [sym_long_flag] = sym_long_flag, @@ -3441,10 +3438,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__flag] = { - .visible = false, - .named = true, - }, [sym__flags_parenthesized] = { .visible = false, .named = true, @@ -5156,10 +5149,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [40] = 37, [41] = 41, [42] = 42, - [43] = 41, - [44] = 42, - [45] = 42, - [46] = 42, + [43] = 42, + [44] = 41, + [45] = 41, + [46] = 41, [47] = 47, [48] = 47, [49] = 47, @@ -5181,89 +5174,89 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [65] = 47, [66] = 47, [67] = 67, - [68] = 68, - [69] = 67, + [68] = 67, + [69] = 69, [70] = 70, - [71] = 68, + [71] = 67, [72] = 67, - [73] = 73, - [74] = 68, - [75] = 75, - [76] = 68, - [77] = 68, + [73] = 67, + [74] = 69, + [75] = 70, + [76] = 67, + [77] = 67, [78] = 67, - [79] = 75, - [80] = 67, - [81] = 67, + [79] = 67, + [80] = 80, + [81] = 81, [82] = 67, [83] = 67, [84] = 67, - [85] = 68, + [85] = 67, [86] = 67, - [87] = 75, + [87] = 67, [88] = 67, [89] = 67, - [90] = 67, - [91] = 75, - [92] = 67, - [93] = 67, - [94] = 67, + [90] = 69, + [91] = 69, + [92] = 70, + [93] = 81, + [94] = 69, [95] = 67, [96] = 67, - [97] = 67, - [98] = 67, - [99] = 68, - [100] = 75, - [101] = 70, - [102] = 67, - [103] = 68, - [104] = 68, + [97] = 70, + [98] = 69, + [99] = 70, + [100] = 67, + [101] = 67, + [102] = 69, + [103] = 69, + [104] = 69, [105] = 105, [106] = 106, - [107] = 105, - [108] = 108, + [107] = 107, + [108] = 107, [109] = 109, - [110] = 110, - [111] = 108, - [112] = 112, + [110] = 105, + [111] = 107, + [112] = 105, [113] = 105, - [114] = 109, - [115] = 106, - [116] = 108, - [117] = 112, - [118] = 105, - [119] = 106, - [120] = 106, + [114] = 107, + [115] = 115, + [116] = 105, + [117] = 107, + [118] = 115, + [119] = 105, + [120] = 107, [121] = 105, - [122] = 106, - [123] = 105, - [124] = 106, + [122] = 105, + [123] = 107, + [124] = 107, [125] = 105, - [126] = 106, - [127] = 105, - [128] = 106, - [129] = 105, + [126] = 107, + [127] = 127, + [128] = 105, + [129] = 107, [130] = 106, - [131] = 105, - [132] = 106, - [133] = 106, + [131] = 107, + [132] = 107, + [133] = 109, [134] = 105, - [135] = 106, - [136] = 105, - [137] = 106, - [138] = 105, - [139] = 106, + [135] = 107, + [136] = 106, + [137] = 105, + [138] = 107, + [139] = 109, [140] = 105, - [141] = 112, + [141] = 105, [142] = 142, [143] = 143, [144] = 144, [145] = 145, - [146] = 142, + [146] = 143, [147] = 142, - [148] = 148, - [149] = 148, - [150] = 148, + [148] = 142, + [149] = 143, + [150] = 150, [151] = 151, [152] = 152, [153] = 153, @@ -5282,55 +5275,55 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [166] = 166, [167] = 167, [168] = 168, - [169] = 166, + [169] = 169, [170] = 170, [171] = 171, - [172] = 172, - [173] = 172, + [172] = 168, + [173] = 173, [174] = 174, - [175] = 175, - [176] = 168, - [177] = 166, - [178] = 178, - [179] = 172, - [180] = 167, - [181] = 181, - [182] = 175, - [183] = 174, - [184] = 168, - [185] = 172, - [186] = 170, - [187] = 175, - [188] = 178, - [189] = 171, - [190] = 166, - [191] = 175, - [192] = 174, - [193] = 174, - [194] = 168, - [195] = 181, + [175] = 166, + [176] = 173, + [177] = 177, + [178] = 170, + [179] = 177, + [180] = 168, + [181] = 173, + [182] = 174, + [183] = 166, + [184] = 174, + [185] = 166, + [186] = 167, + [187] = 169, + [188] = 171, + [189] = 189, + [190] = 189, + [191] = 170, + [192] = 168, + [193] = 173, + [194] = 174, + [195] = 170, [196] = 196, [197] = 197, [198] = 198, - [199] = 197, + [199] = 199, [200] = 198, - [201] = 198, + [201] = 196, [202] = 198, - [203] = 203, + [203] = 198, [204] = 204, [205] = 205, [206] = 206, [207] = 207, - [208] = 208, - [209] = 208, - [210] = 208, + [208] = 207, + [209] = 209, + [210] = 209, [211] = 207, [212] = 212, [213] = 213, [214] = 214, - [215] = 213, - [216] = 212, - [217] = 217, + [215] = 214, + [216] = 216, + [217] = 212, [218] = 218, [219] = 219, [220] = 220, @@ -5338,15 +5331,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [222] = 222, [223] = 223, [224] = 224, - [225] = 204, - [226] = 204, - [227] = 222, - [228] = 228, - [229] = 205, - [230] = 224, + [225] = 225, + [226] = 226, + [227] = 221, + [228] = 223, + [229] = 229, + [230] = 230, [231] = 231, [232] = 232, - [233] = 232, + [233] = 233, [234] = 234, [235] = 235, [236] = 236, @@ -5366,65 +5359,65 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [250] = 250, [251] = 251, [252] = 252, - [253] = 253, - [254] = 254, - [255] = 255, - [256] = 256, - [257] = 234, - [258] = 235, - [259] = 236, - [260] = 237, - [261] = 238, - [262] = 239, - [263] = 240, - [264] = 241, - [265] = 232, + [253] = 229, + [254] = 230, + [255] = 231, + [256] = 232, + [257] = 233, + [258] = 234, + [259] = 235, + [260] = 236, + [261] = 237, + [262] = 238, + [263] = 239, + [264] = 240, + [265] = 241, [266] = 242, - [267] = 235, - [268] = 236, - [269] = 237, - [270] = 238, - [271] = 239, - [272] = 240, - [273] = 241, - [274] = 242, - [275] = 243, - [276] = 244, - [277] = 245, - [278] = 246, - [279] = 247, - [280] = 248, - [281] = 249, - [282] = 250, - [283] = 251, - [284] = 252, - [285] = 253, - [286] = 254, - [287] = 255, - [288] = 256, - [289] = 243, - [290] = 244, - [291] = 245, - [292] = 246, - [293] = 247, - [294] = 248, - [295] = 249, - [296] = 250, - [297] = 251, - [298] = 252, - [299] = 253, - [300] = 254, - [301] = 255, - [302] = 256, - [303] = 221, - [304] = 304, - [305] = 223, - [306] = 234, + [267] = 243, + [268] = 244, + [269] = 245, + [270] = 246, + [271] = 247, + [272] = 248, + [273] = 249, + [274] = 250, + [275] = 251, + [276] = 204, + [277] = 222, + [278] = 204, + [279] = 279, + [280] = 224, + [281] = 229, + [282] = 205, + [283] = 230, + [284] = 231, + [285] = 232, + [286] = 233, + [287] = 234, + [288] = 235, + [289] = 236, + [290] = 237, + [291] = 238, + [292] = 239, + [293] = 240, + [294] = 241, + [295] = 242, + [296] = 243, + [297] = 225, + [298] = 244, + [299] = 245, + [300] = 246, + [301] = 247, + [302] = 248, + [303] = 249, + [304] = 250, + [305] = 251, + [306] = 225, [307] = 307, - [308] = 206, - [309] = 304, - [310] = 310, - [311] = 311, + [308] = 308, + [309] = 309, + [310] = 206, + [311] = 226, [312] = 312, [313] = 313, [314] = 314, @@ -5434,316 +5427,316 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [318] = 318, [319] = 319, [320] = 320, - [321] = 321, + [321] = 315, [322] = 322, - [323] = 310, - [324] = 324, - [325] = 315, - [326] = 326, - [327] = 318, + [323] = 316, + [324] = 315, + [325] = 316, + [326] = 313, + [327] = 322, [328] = 328, - [329] = 318, - [330] = 315, - [331] = 319, - [332] = 315, - [333] = 333, - [334] = 318, + [329] = 322, + [330] = 316, + [331] = 315, + [332] = 332, + [333] = 316, + [334] = 315, [335] = 335, - [336] = 319, - [337] = 315, - [338] = 318, + [336] = 336, + [337] = 337, + [338] = 338, [339] = 339, [340] = 340, - [341] = 322, + [341] = 341, [342] = 342, [343] = 343, - [344] = 344, - [345] = 317, + [344] = 319, + [345] = 335, [346] = 346, - [347] = 347, - [348] = 316, - [349] = 324, - [350] = 328, - [351] = 152, + [347] = 317, + [348] = 348, + [349] = 336, + [350] = 320, + [351] = 346, [352] = 352, [353] = 353, [354] = 354, - [355] = 355, + [355] = 342, [356] = 356, - [357] = 344, + [357] = 343, [358] = 358, - [359] = 343, + [359] = 152, [360] = 360, - [361] = 340, - [362] = 362, - [363] = 347, - [364] = 342, - [365] = 339, - [366] = 346, + [361] = 361, + [362] = 339, + [363] = 363, + [364] = 340, + [365] = 341, + [366] = 348, [367] = 360, - [368] = 353, - [369] = 369, + [368] = 356, + [369] = 354, [370] = 370, - [371] = 358, - [372] = 362, - [373] = 354, - [374] = 152, - [375] = 355, - [376] = 153, - [377] = 154, - [378] = 356, - [379] = 352, - [380] = 153, - [381] = 381, - [382] = 358, - [383] = 383, - [384] = 384, + [371] = 352, + [372] = 358, + [373] = 373, + [374] = 361, + [375] = 154, + [376] = 353, + [377] = 152, + [378] = 363, + [379] = 153, + [380] = 380, + [381] = 160, + [382] = 382, + [383] = 363, + [384] = 373, [385] = 385, - [386] = 152, - [387] = 387, - [388] = 388, - [389] = 389, + [386] = 157, + [387] = 159, + [388] = 153, + [389] = 158, [390] = 154, - [391] = 155, - [392] = 156, - [393] = 369, - [394] = 356, - [395] = 370, - [396] = 158, - [397] = 159, - [398] = 160, - [399] = 157, - [400] = 162, - [401] = 401, + [391] = 152, + [392] = 353, + [393] = 393, + [394] = 155, + [395] = 395, + [396] = 370, + [397] = 156, + [398] = 398, + [399] = 399, + [400] = 400, + [401] = 373, [402] = 402, - [403] = 358, + [403] = 403, [404] = 404, - [405] = 405, - [406] = 385, + [405] = 398, + [406] = 162, [407] = 407, - [408] = 388, - [409] = 153, - [410] = 154, + [408] = 385, + [409] = 409, + [410] = 410, [411] = 411, [412] = 412, - [413] = 152, + [413] = 395, [414] = 414, - [415] = 155, - [416] = 156, + [415] = 415, + [416] = 363, [417] = 417, - [418] = 161, - [419] = 356, + [418] = 418, + [419] = 419, [420] = 420, - [421] = 421, - [422] = 369, + [421] = 363, + [422] = 422, [423] = 423, - [424] = 358, - [425] = 384, - [426] = 426, - [427] = 427, - [428] = 383, - [429] = 429, - [430] = 387, - [431] = 389, - [432] = 158, - [433] = 159, - [434] = 160, - [435] = 157, + [424] = 157, + [425] = 153, + [426] = 158, + [427] = 154, + [428] = 159, + [429] = 160, + [430] = 430, + [431] = 152, + [432] = 163, + [433] = 433, + [434] = 434, + [435] = 155, [436] = 436, - [437] = 437, - [438] = 438, - [439] = 381, - [440] = 356, + [437] = 156, + [438] = 382, + [439] = 380, + [440] = 370, [441] = 441, - [442] = 442, - [443] = 370, + [442] = 161, + [443] = 353, [444] = 444, [445] = 445, [446] = 446, - [447] = 447, + [447] = 393, [448] = 448, [449] = 449, - [450] = 450, - [451] = 451, - [452] = 163, - [453] = 450, - [454] = 411, - [455] = 455, - [456] = 445, - [457] = 370, - [458] = 153, - [459] = 154, - [460] = 161, - [461] = 383, - [462] = 412, - [463] = 414, - [464] = 464, - [465] = 162, - [466] = 163, - [467] = 447, - [468] = 387, - [469] = 417, - [470] = 389, - [471] = 405, - [472] = 358, - [473] = 473, - [474] = 420, - [475] = 384, - [476] = 369, - [477] = 421, - [478] = 426, - [479] = 427, - [480] = 480, - [481] = 481, - [482] = 429, - [483] = 436, - [484] = 437, - [485] = 356, - [486] = 438, - [487] = 407, - [488] = 369, - [489] = 441, - [490] = 442, - [491] = 155, - [492] = 156, - [493] = 401, - [494] = 164, - [495] = 370, - [496] = 444, - [497] = 423, - [498] = 158, - [499] = 446, - [500] = 402, + [450] = 353, + [451] = 395, + [452] = 407, + [453] = 370, + [454] = 454, + [455] = 373, + [456] = 409, + [457] = 398, + [458] = 410, + [459] = 411, + [460] = 412, + [461] = 382, + [462] = 414, + [463] = 418, + [464] = 393, + [465] = 419, + [466] = 363, + [467] = 420, + [468] = 422, + [469] = 433, + [470] = 444, + [471] = 445, + [472] = 436, + [473] = 446, + [474] = 448, + [475] = 423, + [476] = 415, + [477] = 417, + [478] = 478, + [479] = 479, + [480] = 430, + [481] = 449, + [482] = 482, + [483] = 483, + [484] = 155, + [485] = 485, + [486] = 156, + [487] = 487, + [488] = 165, + [489] = 157, + [490] = 158, + [491] = 159, + [492] = 160, + [493] = 152, + [494] = 400, + [495] = 153, + [496] = 154, + [497] = 161, + [498] = 162, + [499] = 163, + [500] = 500, [501] = 501, - [502] = 159, - [503] = 160, - [504] = 504, - [505] = 448, - [506] = 449, - [507] = 157, - [508] = 451, - [509] = 152, - [510] = 510, - [511] = 511, - [512] = 512, + [502] = 502, + [503] = 402, + [504] = 403, + [505] = 353, + [506] = 404, + [507] = 370, + [508] = 399, + [509] = 509, + [510] = 373, + [511] = 434, + [512] = 441, [513] = 513, - [514] = 383, - [515] = 515, - [516] = 164, - [517] = 161, + [514] = 395, + [515] = 482, + [516] = 483, + [517] = 487, [518] = 518, - [519] = 162, - [520] = 163, - [521] = 389, - [522] = 153, - [523] = 356, - [524] = 154, - [525] = 358, - [526] = 526, - [527] = 527, - [528] = 528, - [529] = 529, - [530] = 510, - [531] = 455, - [532] = 532, - [533] = 511, - [534] = 155, - [535] = 156, - [536] = 536, + [519] = 500, + [520] = 520, + [521] = 521, + [522] = 522, + [523] = 523, + [524] = 478, + [525] = 513, + [526] = 398, + [527] = 353, + [528] = 165, + [529] = 161, + [530] = 162, + [531] = 163, + [532] = 153, + [533] = 154, + [534] = 534, + [535] = 535, + [536] = 363, [537] = 537, - [538] = 387, - [539] = 512, - [540] = 159, - [541] = 160, - [542] = 481, - [543] = 157, - [544] = 544, - [545] = 369, - [546] = 370, - [547] = 384, - [548] = 387, - [549] = 389, - [550] = 501, - [551] = 504, - [552] = 464, - [553] = 480, - [554] = 554, - [555] = 513, - [556] = 556, - [557] = 557, - [558] = 558, - [559] = 559, - [560] = 560, - [561] = 384, - [562] = 473, - [563] = 383, - [564] = 158, - [565] = 526, - [566] = 369, - [567] = 537, - [568] = 536, - [569] = 161, + [538] = 538, + [539] = 539, + [540] = 540, + [541] = 541, + [542] = 542, + [543] = 543, + [544] = 393, + [545] = 155, + [546] = 156, + [547] = 547, + [548] = 548, + [549] = 157, + [550] = 158, + [551] = 159, + [552] = 160, + [553] = 370, + [554] = 373, + [555] = 509, + [556] = 398, + [557] = 479, + [558] = 382, + [559] = 393, + [560] = 395, + [561] = 454, + [562] = 501, + [563] = 502, + [564] = 382, + [565] = 565, + [566] = 155, + [567] = 161, + [568] = 156, + [569] = 370, [570] = 570, - [571] = 370, + [571] = 571, [572] = 162, [573] = 163, - [574] = 155, - [575] = 358, - [576] = 156, - [577] = 384, - [578] = 383, + [574] = 537, + [575] = 575, + [576] = 576, + [577] = 539, + [578] = 578, [579] = 579, - [580] = 515, - [581] = 387, - [582] = 389, - [583] = 544, + [580] = 540, + [581] = 373, + [582] = 548, + [583] = 157, [584] = 584, - [585] = 157, - [586] = 532, - [587] = 587, - [588] = 527, - [589] = 589, - [590] = 356, - [591] = 591, - [592] = 528, - [593] = 554, - [594] = 529, - [595] = 556, - [596] = 557, - [597] = 558, - [598] = 559, - [599] = 560, + [585] = 523, + [586] = 535, + [587] = 382, + [588] = 541, + [589] = 393, + [590] = 395, + [591] = 158, + [592] = 159, + [593] = 165, + [594] = 534, + [595] = 160, + [596] = 543, + [597] = 597, + [598] = 598, + [599] = 353, [600] = 600, - [601] = 601, - [602] = 164, - [603] = 603, - [604] = 604, - [605] = 158, - [606] = 159, - [607] = 160, - [608] = 608, - [609] = 518, - [610] = 610, + [601] = 363, + [602] = 542, + [603] = 547, + [604] = 538, + [605] = 518, + [606] = 520, + [607] = 521, + [608] = 522, + [609] = 398, + [610] = 571, [611] = 611, [612] = 612, [613] = 613, [614] = 614, - [615] = 163, - [616] = 616, - [617] = 160, - [618] = 164, + [615] = 615, + [616] = 478, + [617] = 617, + [618] = 618, [619] = 619, - [620] = 620, + [620] = 513, [621] = 621, [622] = 622, - [623] = 623, - [624] = 157, + [623] = 161, + [624] = 624, [625] = 625, [626] = 626, [627] = 627, - [628] = 384, - [629] = 387, - [630] = 630, + [628] = 628, + [629] = 205, + [630] = 382, [631] = 631, [632] = 632, [633] = 633, @@ -5755,270 +5748,270 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [639] = 639, [640] = 640, [641] = 641, - [642] = 369, + [642] = 398, [643] = 643, - [644] = 608, + [644] = 644, [645] = 645, - [646] = 646, + [646] = 598, [647] = 647, [648] = 648, [649] = 649, - [650] = 650, - [651] = 600, - [652] = 601, - [653] = 653, - [654] = 162, + [650] = 162, + [651] = 163, + [652] = 652, + [653] = 165, + [654] = 654, [655] = 655, [656] = 656, [657] = 657, - [658] = 389, - [659] = 604, + [658] = 658, + [659] = 659, [660] = 660, [661] = 661, - [662] = 662, - [663] = 663, + [662] = 158, + [663] = 159, [664] = 664, [665] = 665, - [666] = 205, - [667] = 667, + [666] = 393, + [667] = 370, [668] = 668, [669] = 669, [670] = 670, [671] = 671, - [672] = 672, + [672] = 160, [673] = 673, - [674] = 674, + [674] = 395, [675] = 675, [676] = 676, - [677] = 677, - [678] = 158, - [679] = 679, + [677] = 597, + [678] = 678, + [679] = 373, [680] = 680, - [681] = 383, + [681] = 681, [682] = 682, [683] = 683, [684] = 684, - [685] = 685, + [685] = 570, [686] = 686, - [687] = 159, + [687] = 687, [688] = 688, - [689] = 161, - [690] = 480, - [691] = 513, + [689] = 689, + [690] = 690, + [691] = 691, [692] = 692, [693] = 693, - [694] = 370, - [695] = 693, - [696] = 630, - [697] = 697, - [698] = 643, - [699] = 384, - [700] = 387, - [701] = 389, - [702] = 656, - [703] = 648, - [704] = 650, - [705] = 685, - [706] = 684, - [707] = 206, - [708] = 672, - [709] = 625, - [710] = 612, - [711] = 674, + [694] = 157, + [695] = 625, + [696] = 658, + [697] = 687, + [698] = 673, + [699] = 633, + [700] = 652, + [701] = 622, + [702] = 624, + [703] = 206, + [704] = 615, + [705] = 626, + [706] = 634, + [707] = 665, + [708] = 659, + [709] = 643, + [710] = 644, + [711] = 648, [712] = 688, - [713] = 626, - [714] = 682, - [715] = 692, - [716] = 638, - [717] = 645, - [718] = 677, - [719] = 669, - [720] = 671, - [721] = 649, - [722] = 655, - [723] = 680, - [724] = 683, - [725] = 637, - [726] = 636, - [727] = 623, - [728] = 632, - [729] = 664, - [730] = 665, - [731] = 647, - [732] = 653, - [733] = 661, - [734] = 662, - [735] = 667, - [736] = 668, - [737] = 480, - [738] = 513, - [739] = 675, - [740] = 670, - [741] = 673, - [742] = 686, - [743] = 676, - [744] = 744, - [745] = 679, - [746] = 611, - [747] = 613, - [748] = 614, - [749] = 616, - [750] = 619, - [751] = 620, - [752] = 657, - [753] = 621, - [754] = 660, - [755] = 663, - [756] = 164, - [757] = 622, - [758] = 631, - [759] = 633, - [760] = 635, - [761] = 639, - [762] = 640, - [763] = 641, - [764] = 610, - [765] = 158, - [766] = 634, - [767] = 159, - [768] = 160, - [769] = 157, - [770] = 383, + [713] = 689, + [714] = 693, + [715] = 614, + [716] = 617, + [717] = 618, + [718] = 619, + [719] = 631, + [720] = 635, + [721] = 636, + [722] = 639, + [723] = 640, + [724] = 641, + [725] = 645, + [726] = 656, + [727] = 664, + [728] = 669, + [729] = 671, + [730] = 675, + [731] = 684, + [732] = 692, + [733] = 637, + [734] = 613, + [735] = 632, + [736] = 638, + [737] = 682, + [738] = 612, + [739] = 649, + [740] = 661, + [741] = 678, + [742] = 683, + [743] = 686, + [744] = 611, + [745] = 621, + [746] = 628, + [747] = 647, + [748] = 655, + [749] = 657, + [750] = 660, + [751] = 670, + [752] = 681, + [753] = 676, + [754] = 654, + [755] = 478, + [756] = 513, + [757] = 165, + [758] = 157, + [759] = 158, + [760] = 159, + [761] = 160, + [762] = 762, + [763] = 398, + [764] = 382, + [765] = 393, + [766] = 395, + [767] = 767, + [768] = 690, + [769] = 691, + [770] = 680, [771] = 771, [772] = 772, - [773] = 773, + [773] = 772, [774] = 774, - [775] = 773, - [776] = 205, - [777] = 777, - [778] = 778, + [775] = 775, + [776] = 319, + [777] = 205, + [778] = 317, [779] = 779, [780] = 780, [781] = 781, - [782] = 782, - [783] = 783, - [784] = 784, + [782] = 317, + [783] = 319, + [784] = 206, [785] = 785, - [786] = 786, - [787] = 328, + [786] = 317, + [787] = 319, [788] = 788, - [789] = 324, - [790] = 778, - [791] = 780, - [792] = 324, - [793] = 788, + [789] = 319, + [790] = 790, + [791] = 791, + [792] = 792, + [793] = 793, [794] = 794, - [795] = 795, - [796] = 206, - [797] = 324, - [798] = 343, - [799] = 340, - [800] = 779, - [801] = 801, - [802] = 328, - [803] = 324, - [804] = 328, - [805] = 328, - [806] = 784, - [807] = 340, - [808] = 340, - [809] = 328, - [810] = 353, - [811] = 343, - [812] = 355, - [813] = 324, - [814] = 360, - [815] = 352, - [816] = 816, - [817] = 343, - [818] = 343, - [819] = 340, - [820] = 355, - [821] = 340, - [822] = 360, - [823] = 360, - [824] = 355, - [825] = 353, - [826] = 816, - [827] = 816, - [828] = 343, - [829] = 353, - [830] = 328, - [831] = 324, - [832] = 352, - [833] = 355, - [834] = 352, - [835] = 352, - [836] = 360, - [837] = 353, - [838] = 816, - [839] = 355, - [840] = 343, - [841] = 352, - [842] = 360, - [843] = 340, - [844] = 816, - [845] = 353, + [795] = 317, + [796] = 346, + [797] = 797, + [798] = 798, + [799] = 799, + [800] = 800, + [801] = 342, + [802] = 356, + [803] = 803, + [804] = 361, + [805] = 346, + [806] = 317, + [807] = 342, + [808] = 319, + [809] = 794, + [810] = 785, + [811] = 346, + [812] = 781, + [813] = 780, + [814] = 358, + [815] = 342, + [816] = 800, + [817] = 346, + [818] = 360, + [819] = 342, + [820] = 360, + [821] = 342, + [822] = 803, + [823] = 361, + [824] = 358, + [825] = 360, + [826] = 356, + [827] = 346, + [828] = 358, + [829] = 317, + [830] = 356, + [831] = 319, + [832] = 361, + [833] = 360, + [834] = 803, + [835] = 356, + [836] = 358, + [837] = 803, + [838] = 361, + [839] = 803, + [840] = 356, + [841] = 360, + [842] = 361, + [843] = 342, + [844] = 346, + [845] = 358, [846] = 846, - [847] = 816, + [847] = 358, [848] = 846, [849] = 849, - [850] = 850, + [850] = 356, [851] = 846, - [852] = 850, + [852] = 846, [853] = 846, - [854] = 849, - [855] = 849, + [854] = 846, + [855] = 846, [856] = 846, - [857] = 846, - [858] = 846, + [857] = 803, + [858] = 849, [859] = 846, [860] = 846, - [861] = 352, + [861] = 846, [862] = 846, [863] = 846, - [864] = 353, + [864] = 361, [865] = 846, [866] = 846, [867] = 846, [868] = 846, - [869] = 355, - [870] = 846, - [871] = 360, - [872] = 846, - [873] = 846, + [869] = 869, + [870] = 360, + [871] = 846, + [872] = 849, + [873] = 869, [874] = 874, [875] = 875, - [876] = 874, + [876] = 875, [877] = 875, - [878] = 875, - [879] = 874, - [880] = 875, + [878] = 874, + [879] = 875, + [880] = 874, [881] = 874, - [882] = 882, - [883] = 882, - [884] = 874, - [885] = 882, - [886] = 886, - [887] = 882, - [888] = 882, - [889] = 875, - [890] = 882, - [891] = 882, - [892] = 882, - [893] = 882, - [894] = 882, - [895] = 882, - [896] = 882, - [897] = 882, - [898] = 882, - [899] = 882, - [900] = 882, - [901] = 882, - [902] = 882, - [903] = 882, - [904] = 874, - [905] = 875, + [882] = 874, + [883] = 883, + [884] = 883, + [885] = 883, + [886] = 883, + [887] = 883, + [888] = 875, + [889] = 889, + [890] = 883, + [891] = 883, + [892] = 883, + [893] = 883, + [894] = 883, + [895] = 883, + [896] = 883, + [897] = 883, + [898] = 883, + [899] = 883, + [900] = 883, + [901] = 883, + [902] = 883, + [903] = 883, + [904] = 875, + [905] = 874, [906] = 906, [907] = 907, [908] = 908, @@ -6030,25 +6023,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [914] = 914, [915] = 915, [916] = 916, - [917] = 910, - [918] = 911, + [917] = 917, + [918] = 918, [919] = 919, [920] = 920, [921] = 921, [922] = 922, [923] = 923, [924] = 924, - [925] = 919, + [925] = 909, [926] = 926, [927] = 927, [928] = 928, - [929] = 929, + [929] = 913, [930] = 930, [931] = 931, [932] = 932, [933] = 933, [934] = 934, - [935] = 909, + [935] = 935, [936] = 936, [937] = 937, [938] = 938, @@ -6066,11 +6059,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [950] = 950, [951] = 951, [952] = 952, - [953] = 953, - [954] = 954, - [955] = 955, - [956] = 956, - [957] = 957, + [953] = 930, + [954] = 931, + [955] = 932, + [956] = 933, + [957] = 934, [958] = 958, [959] = 959, [960] = 960, @@ -6078,1225 +6071,1225 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [962] = 962, [963] = 963, [964] = 964, - [965] = 920, - [966] = 921, + [965] = 965, + [966] = 966, [967] = 967, - [968] = 922, - [969] = 923, - [970] = 952, - [971] = 953, - [972] = 954, - [973] = 912, - [974] = 913, - [975] = 914, - [976] = 915, - [977] = 916, - [978] = 910, - [979] = 911, - [980] = 919, - [981] = 920, - [982] = 921, - [983] = 922, - [984] = 923, - [985] = 924, - [986] = 926, - [987] = 927, - [988] = 928, - [989] = 929, - [990] = 930, - [991] = 931, - [992] = 932, - [993] = 912, - [994] = 934, - [995] = 936, - [996] = 937, - [997] = 938, - [998] = 939, - [999] = 940, - [1000] = 941, - [1001] = 942, - [1002] = 943, - [1003] = 944, - [1004] = 945, - [1005] = 946, - [1006] = 947, - [1007] = 948, - [1008] = 949, - [1009] = 950, - [1010] = 951, - [1011] = 913, - [1012] = 952, - [1013] = 953, - [1014] = 954, - [1015] = 955, - [1016] = 956, - [1017] = 957, - [1018] = 958, - [1019] = 959, - [1020] = 960, - [1021] = 961, - [1022] = 962, - [1023] = 963, - [1024] = 964, - [1025] = 955, - [1026] = 956, - [1027] = 957, - [1028] = 958, - [1029] = 959, - [1030] = 926, - [1031] = 927, - [1032] = 928, - [1033] = 960, - [1034] = 929, - [1035] = 961, - [1036] = 930, - [1037] = 931, - [1038] = 962, - [1039] = 932, - [1040] = 963, - [1041] = 914, - [1042] = 933, - [1043] = 934, - [1044] = 964, - [1045] = 909, - [1046] = 915, - [1047] = 916, - [1048] = 924, - [1049] = 936, - [1050] = 937, - [1051] = 938, - [1052] = 939, - [1053] = 940, - [1054] = 941, - [1055] = 942, - [1056] = 943, - [1057] = 944, - [1058] = 945, - [1059] = 946, - [1060] = 947, - [1061] = 948, - [1062] = 949, - [1063] = 950, - [1064] = 951, - [1065] = 933, + [968] = 910, + [969] = 911, + [970] = 912, + [971] = 914, + [972] = 915, + [973] = 916, + [974] = 917, + [975] = 918, + [976] = 919, + [977] = 920, + [978] = 921, + [979] = 922, + [980] = 923, + [981] = 924, + [982] = 962, + [983] = 926, + [984] = 927, + [985] = 928, + [986] = 913, + [987] = 930, + [988] = 931, + [989] = 932, + [990] = 933, + [991] = 934, + [992] = 935, + [993] = 949, + [994] = 937, + [995] = 938, + [996] = 939, + [997] = 940, + [998] = 941, + [999] = 942, + [1000] = 943, + [1001] = 944, + [1002] = 945, + [1003] = 946, + [1004] = 947, + [1005] = 948, + [1006] = 949, + [1007] = 950, + [1008] = 951, + [1009] = 952, + [1010] = 935, + [1011] = 936, + [1012] = 937, + [1013] = 938, + [1014] = 939, + [1015] = 950, + [1016] = 951, + [1017] = 920, + [1018] = 914, + [1019] = 915, + [1020] = 916, + [1021] = 921, + [1022] = 917, + [1023] = 952, + [1024] = 961, + [1025] = 963, + [1026] = 918, + [1027] = 919, + [1028] = 966, + [1029] = 967, + [1030] = 910, + [1031] = 911, + [1032] = 912, + [1033] = 922, + [1034] = 940, + [1035] = 941, + [1036] = 942, + [1037] = 943, + [1038] = 923, + [1039] = 944, + [1040] = 945, + [1041] = 946, + [1042] = 958, + [1043] = 959, + [1044] = 947, + [1045] = 948, + [1046] = 960, + [1047] = 964, + [1048] = 965, + [1049] = 924, + [1050] = 909, + [1051] = 926, + [1052] = 927, + [1053] = 928, + [1054] = 958, + [1055] = 959, + [1056] = 960, + [1057] = 961, + [1058] = 962, + [1059] = 963, + [1060] = 964, + [1061] = 965, + [1062] = 966, + [1063] = 967, + [1064] = 936, + [1065] = 1065, [1066] = 1066, [1067] = 1066, [1068] = 1068, [1069] = 1069, - [1070] = 1069, - [1071] = 1071, + [1070] = 1070, + [1071] = 1069, [1072] = 1072, [1073] = 1073, [1074] = 1074, [1075] = 1075, - [1076] = 1076, - [1077] = 1077, - [1078] = 1078, - [1079] = 1079, - [1080] = 1076, - [1081] = 1077, - [1082] = 1078, - [1083] = 1079, + [1076] = 1070, + [1077] = 1069, + [1078] = 1072, + [1079] = 1073, + [1080] = 1080, + [1081] = 1081, + [1082] = 1082, + [1083] = 1083, [1084] = 1084, [1085] = 1085, - [1086] = 1069, - [1087] = 1068, - [1088] = 1071, - [1089] = 1072, - [1090] = 1073, - [1091] = 1074, - [1092] = 1075, - [1093] = 1076, - [1094] = 1077, - [1095] = 1078, - [1096] = 1079, - [1097] = 1072, - [1098] = 1071, - [1099] = 1099, - [1100] = 1084, - [1101] = 1085, - [1102] = 1069, - [1103] = 1068, - [1104] = 1071, - [1105] = 1072, - [1106] = 1073, - [1107] = 1074, - [1108] = 1075, - [1109] = 1076, - [1110] = 1077, - [1111] = 1078, - [1112] = 1079, - [1113] = 1084, - [1114] = 1084, + [1086] = 1072, + [1087] = 1073, + [1088] = 1068, + [1089] = 1080, + [1090] = 1081, + [1091] = 1082, + [1092] = 1083, + [1093] = 1084, + [1094] = 1085, + [1095] = 1074, + [1096] = 1075, + [1097] = 1070, + [1098] = 1069, + [1099] = 1072, + [1100] = 1073, + [1101] = 1068, + [1102] = 1080, + [1103] = 1081, + [1104] = 1082, + [1105] = 1083, + [1106] = 1084, + [1107] = 1085, + [1108] = 1108, + [1109] = 1068, + [1110] = 1080, + [1111] = 1081, + [1112] = 1082, + [1113] = 1083, + [1114] = 1075, [1115] = 1085, - [1116] = 1069, - [1117] = 1068, - [1118] = 1071, - [1119] = 1072, - [1120] = 1073, - [1121] = 1074, - [1122] = 1075, - [1123] = 1076, - [1124] = 1077, - [1125] = 1078, - [1126] = 1079, - [1127] = 1085, + [1116] = 1074, + [1117] = 1075, + [1118] = 1070, + [1119] = 1069, + [1120] = 1072, + [1121] = 1073, + [1122] = 1068, + [1123] = 1080, + [1124] = 1081, + [1125] = 1082, + [1126] = 1083, + [1127] = 1084, [1128] = 1085, - [1129] = 1069, - [1130] = 1068, - [1131] = 1071, - [1132] = 1099, + [1129] = 1074, + [1130] = 1075, + [1131] = 1070, + [1132] = 1069, [1133] = 1072, [1134] = 1073, - [1135] = 1074, - [1136] = 1075, - [1137] = 1076, - [1138] = 1085, - [1139] = 1073, - [1140] = 1077, - [1141] = 1074, - [1142] = 1078, - [1143] = 1079, - [1144] = 1068, + [1135] = 1068, + [1136] = 1080, + [1137] = 1081, + [1138] = 1082, + [1139] = 1083, + [1140] = 1084, + [1141] = 1085, + [1142] = 1074, + [1143] = 1108, + [1144] = 1074, [1145] = 1075, - [1146] = 1084, - [1147] = 1085, - [1148] = 1069, - [1149] = 1068, - [1150] = 1071, - [1151] = 1072, - [1152] = 1073, - [1153] = 1074, - [1154] = 1075, - [1155] = 1076, - [1156] = 1077, - [1157] = 1078, - [1158] = 1079, - [1159] = 1099, - [1160] = 1084, + [1146] = 1070, + [1147] = 1069, + [1148] = 1072, + [1149] = 1073, + [1150] = 1068, + [1151] = 1080, + [1152] = 1081, + [1153] = 1082, + [1154] = 1083, + [1155] = 1084, + [1156] = 1085, + [1157] = 1108, + [1158] = 1075, + [1159] = 1070, + [1160] = 1074, [1161] = 1084, [1162] = 1162, [1163] = 1163, [1164] = 1164, - [1165] = 1162, - [1166] = 1164, - [1167] = 1163, - [1168] = 1099, + [1165] = 1163, + [1166] = 1108, + [1167] = 1162, + [1168] = 1164, [1169] = 1169, - [1170] = 1099, + [1170] = 1108, [1171] = 1171, - [1172] = 324, + [1172] = 1172, [1173] = 1173, - [1174] = 1174, - [1175] = 1175, - [1176] = 324, - [1177] = 1177, - [1178] = 1174, - [1179] = 1175, + [1174] = 317, + [1175] = 319, + [1176] = 317, + [1177] = 205, + [1178] = 1178, + [1179] = 1179, [1180] = 1180, [1181] = 1181, - [1182] = 324, - [1183] = 1183, - [1184] = 205, - [1185] = 328, - [1186] = 328, - [1187] = 1187, + [1182] = 319, + [1183] = 1178, + [1184] = 1184, + [1185] = 319, + [1186] = 1186, + [1187] = 1180, [1188] = 1188, [1189] = 1189, [1190] = 1190, - [1191] = 328, - [1192] = 328, - [1193] = 1193, - [1194] = 1193, - [1195] = 343, - [1196] = 340, - [1197] = 1197, - [1198] = 206, - [1199] = 1197, + [1191] = 317, + [1192] = 206, + [1193] = 319, + [1194] = 346, + [1195] = 342, + [1196] = 346, + [1197] = 317, + [1198] = 1198, + [1199] = 1199, [1200] = 1200, - [1201] = 340, - [1202] = 324, - [1203] = 343, - [1204] = 343, - [1205] = 340, - [1206] = 343, - [1207] = 816, - [1208] = 1208, - [1209] = 352, + [1201] = 346, + [1202] = 342, + [1203] = 1198, + [1204] = 1200, + [1205] = 342, + [1206] = 1206, + [1207] = 319, + [1208] = 358, + [1209] = 803, [1210] = 360, - [1211] = 816, - [1212] = 353, - [1213] = 328, - [1214] = 324, - [1215] = 355, - [1216] = 355, - [1217] = 353, - [1218] = 360, - [1219] = 1219, - [1220] = 816, - [1221] = 1208, - [1222] = 355, - [1223] = 1219, - [1224] = 1219, - [1225] = 360, - [1226] = 352, - [1227] = 340, - [1228] = 1208, - [1229] = 353, - [1230] = 352, + [1211] = 361, + [1212] = 1212, + [1213] = 360, + [1214] = 803, + [1215] = 356, + [1216] = 361, + [1217] = 346, + [1218] = 358, + [1219] = 356, + [1220] = 360, + [1221] = 356, + [1222] = 1212, + [1223] = 358, + [1224] = 361, + [1225] = 342, + [1226] = 803, + [1227] = 1206, + [1228] = 1206, + [1229] = 1212, + [1230] = 317, [1231] = 1231, - [1232] = 816, - [1233] = 1231, + [1232] = 346, + [1233] = 1233, [1234] = 1234, [1235] = 1235, - [1236] = 1236, - [1237] = 1237, + [1236] = 356, + [1237] = 361, [1238] = 1238, [1239] = 360, - [1240] = 1234, - [1241] = 1236, - [1242] = 1237, + [1240] = 342, + [1241] = 1233, + [1242] = 1235, [1243] = 1243, - [1244] = 343, - [1245] = 340, - [1246] = 1238, - [1247] = 352, - [1248] = 353, - [1249] = 355, - [1250] = 1243, - [1251] = 1251, - [1252] = 360, - [1253] = 352, - [1254] = 355, - [1255] = 816, - [1256] = 353, - [1257] = 1251, - [1258] = 310, - [1259] = 310, - [1260] = 317, - [1261] = 322, - [1262] = 328, - [1263] = 316, - [1264] = 324, - [1265] = 328, - [1266] = 317, + [1244] = 1244, + [1245] = 803, + [1246] = 358, + [1247] = 1238, + [1248] = 1243, + [1249] = 1244, + [1250] = 1234, + [1251] = 313, + [1252] = 1252, + [1253] = 361, + [1254] = 1252, + [1255] = 803, + [1256] = 358, + [1257] = 356, + [1258] = 360, + [1259] = 335, + [1260] = 319, + [1261] = 320, + [1262] = 317, + [1263] = 336, + [1264] = 313, + [1265] = 1265, + [1266] = 1266, [1267] = 1267, [1268] = 1268, - [1269] = 343, - [1270] = 340, - [1271] = 1271, - [1272] = 1272, - [1273] = 1272, + [1269] = 317, + [1270] = 1267, + [1271] = 1265, + [1272] = 1266, + [1273] = 1267, [1274] = 1268, - [1275] = 1275, - [1276] = 1275, + [1275] = 1265, + [1276] = 1266, [1277] = 1267, [1278] = 1268, - [1279] = 1271, - [1280] = 324, - [1281] = 152, - [1282] = 1275, - [1283] = 322, - [1284] = 1267, - [1285] = 1275, - [1286] = 1267, + [1279] = 319, + [1280] = 1265, + [1281] = 1265, + [1282] = 1266, + [1283] = 1267, + [1284] = 1268, + [1285] = 1265, + [1286] = 1286, [1287] = 1268, - [1288] = 1271, - [1289] = 1289, - [1290] = 1275, - [1291] = 1267, - [1292] = 1268, - [1293] = 1271, - [1294] = 1275, - [1295] = 1267, - [1296] = 1268, - [1297] = 1271, - [1298] = 1275, - [1299] = 1267, - [1300] = 1268, - [1301] = 1271, - [1302] = 1275, + [1288] = 1266, + [1289] = 1267, + [1290] = 1268, + [1291] = 1265, + [1292] = 1267, + [1293] = 343, + [1294] = 1266, + [1295] = 342, + [1296] = 1267, + [1297] = 320, + [1298] = 1268, + [1299] = 1268, + [1300] = 1265, + [1301] = 1266, + [1302] = 1268, [1303] = 1267, - [1304] = 1268, - [1305] = 1275, - [1306] = 152, - [1307] = 1268, - [1308] = 1275, + [1304] = 1265, + [1305] = 1265, + [1306] = 346, + [1307] = 1266, + [1308] = 317, [1309] = 1267, - [1310] = 1268, - [1311] = 1271, - [1312] = 1275, - [1313] = 1267, - [1314] = 1268, - [1315] = 1271, - [1316] = 1275, - [1317] = 1267, - [1318] = 1268, - [1319] = 1271, - [1320] = 1275, - [1321] = 1267, - [1322] = 1268, - [1323] = 1271, - [1324] = 344, - [1325] = 1271, - [1326] = 1275, - [1327] = 1267, - [1328] = 1268, - [1329] = 1271, - [1330] = 1275, - [1331] = 1268, - [1332] = 342, - [1333] = 339, - [1334] = 346, + [1310] = 336, + [1311] = 319, + [1312] = 1266, + [1313] = 1265, + [1314] = 1266, + [1315] = 1267, + [1316] = 1265, + [1317] = 1268, + [1318] = 335, + [1319] = 1267, + [1320] = 339, + [1321] = 1266, + [1322] = 340, + [1323] = 341, + [1324] = 1286, + [1325] = 1266, + [1326] = 1267, + [1327] = 152, + [1328] = 1265, + [1329] = 1265, + [1330] = 1266, + [1331] = 1265, + [1332] = 1267, + [1333] = 1333, + [1334] = 1266, [1335] = 1267, - [1336] = 324, - [1337] = 316, - [1338] = 1271, - [1339] = 328, - [1340] = 1271, - [1341] = 874, + [1336] = 1268, + [1337] = 1268, + [1338] = 1268, + [1339] = 152, + [1340] = 1268, + [1341] = 159, [1342] = 874, - [1343] = 875, - [1344] = 158, - [1345] = 362, - [1346] = 343, - [1347] = 159, - [1348] = 152, - [1349] = 875, - [1350] = 160, - [1351] = 340, - [1352] = 352, - [1353] = 344, - [1354] = 358, - [1355] = 353, - [1356] = 354, - [1357] = 1357, - [1358] = 355, - [1359] = 360, - [1360] = 340, - [1361] = 154, - [1362] = 342, - [1363] = 339, - [1364] = 346, - [1365] = 153, - [1366] = 324, - [1367] = 328, - [1368] = 874, - [1369] = 875, - [1370] = 154, - [1371] = 356, - [1372] = 152, + [1343] = 317, + [1344] = 1333, + [1345] = 319, + [1346] = 339, + [1347] = 340, + [1348] = 153, + [1349] = 346, + [1350] = 153, + [1351] = 342, + [1352] = 874, + [1353] = 152, + [1354] = 875, + [1355] = 154, + [1356] = 341, + [1357] = 152, + [1358] = 346, + [1359] = 356, + [1360] = 874, + [1361] = 353, + [1362] = 875, + [1363] = 363, + [1364] = 358, + [1365] = 157, + [1366] = 1366, + [1367] = 154, + [1368] = 354, + [1369] = 158, + [1370] = 360, + [1371] = 361, + [1372] = 352, [1373] = 343, - [1374] = 153, - [1375] = 1289, - [1376] = 157, - [1377] = 156, - [1378] = 160, - [1379] = 356, - [1380] = 360, - [1381] = 352, - [1382] = 354, - [1383] = 360, - [1384] = 370, - [1385] = 157, - [1386] = 343, - [1387] = 1387, - [1388] = 353, - [1389] = 340, - [1390] = 152, - [1391] = 1391, - [1392] = 155, - [1393] = 156, - [1394] = 355, - [1395] = 355, - [1396] = 362, - [1397] = 153, - [1398] = 352, - [1399] = 154, - [1400] = 358, - [1401] = 159, - [1402] = 353, - [1403] = 158, - [1404] = 155, - [1405] = 153, - [1406] = 369, - [1407] = 874, - [1408] = 154, - [1409] = 875, + [1374] = 342, + [1375] = 160, + [1376] = 875, + [1377] = 352, + [1378] = 360, + [1379] = 342, + [1380] = 353, + [1381] = 157, + [1382] = 356, + [1383] = 361, + [1384] = 152, + [1385] = 875, + [1386] = 356, + [1387] = 346, + [1388] = 158, + [1389] = 358, + [1390] = 370, + [1391] = 874, + [1392] = 363, + [1393] = 155, + [1394] = 159, + [1395] = 1395, + [1396] = 160, + [1397] = 373, + [1398] = 156, + [1399] = 358, + [1400] = 153, + [1401] = 155, + [1402] = 154, + [1403] = 154, + [1404] = 1404, + [1405] = 156, + [1406] = 360, + [1407] = 153, + [1408] = 354, + [1409] = 361, [1410] = 160, - [1411] = 387, - [1412] = 369, + [1411] = 158, + [1412] = 161, [1413] = 155, [1414] = 156, - [1415] = 356, - [1416] = 389, + [1415] = 162, + [1416] = 163, [1417] = 157, - [1418] = 324, - [1419] = 328, - [1420] = 162, + [1418] = 158, + [1419] = 159, + [1420] = 160, [1421] = 161, - [1422] = 163, - [1423] = 352, - [1424] = 383, - [1425] = 353, - [1426] = 384, - [1427] = 358, - [1428] = 355, - [1429] = 360, - [1430] = 158, - [1431] = 158, - [1432] = 162, - [1433] = 163, - [1434] = 874, - [1435] = 875, - [1436] = 159, - [1437] = 157, - [1438] = 160, - [1439] = 156, - [1440] = 388, - [1441] = 1391, - [1442] = 370, - [1443] = 161, - [1444] = 153, - [1445] = 155, - [1446] = 154, - [1447] = 159, - [1448] = 385, - [1449] = 426, - [1450] = 163, - [1451] = 356, - [1452] = 159, - [1453] = 160, - [1454] = 164, - [1455] = 162, - [1456] = 388, - [1457] = 414, - [1458] = 163, - [1459] = 427, - [1460] = 161, - [1461] = 343, - [1462] = 383, - [1463] = 164, - [1464] = 421, - [1465] = 442, - [1466] = 407, - [1467] = 358, - [1468] = 385, - [1469] = 401, - [1470] = 402, - [1471] = 164, - [1472] = 157, - [1473] = 358, - [1474] = 417, - [1475] = 340, - [1476] = 438, - [1477] = 411, - [1478] = 423, - [1479] = 389, - [1480] = 412, - [1481] = 152, - [1482] = 1482, - [1483] = 429, - [1484] = 445, - [1485] = 441, - [1486] = 356, - [1487] = 155, - [1488] = 161, - [1489] = 436, - [1490] = 156, - [1491] = 448, - [1492] = 420, - [1493] = 437, - [1494] = 158, + [1422] = 317, + [1423] = 319, + [1424] = 162, + [1425] = 163, + [1426] = 385, + [1427] = 380, + [1428] = 363, + [1429] = 1404, + [1430] = 373, + [1431] = 153, + [1432] = 154, + [1433] = 398, + [1434] = 382, + [1435] = 393, + [1436] = 395, + [1437] = 155, + [1438] = 156, + [1439] = 874, + [1440] = 356, + [1441] = 875, + [1442] = 358, + [1443] = 360, + [1444] = 361, + [1445] = 159, + [1446] = 353, + [1447] = 157, + [1448] = 370, + [1449] = 161, + [1450] = 346, + [1451] = 433, + [1452] = 444, + [1453] = 445, + [1454] = 446, + [1455] = 342, + [1456] = 448, + [1457] = 398, + [1458] = 423, + [1459] = 382, + [1460] = 415, + [1461] = 417, + [1462] = 393, + [1463] = 165, + [1464] = 395, + [1465] = 152, + [1466] = 363, + [1467] = 404, + [1468] = 155, + [1469] = 156, + [1470] = 407, + [1471] = 399, + [1472] = 403, + [1473] = 422, + [1474] = 409, + [1475] = 410, + [1476] = 353, + [1477] = 157, + [1478] = 363, + [1479] = 158, + [1480] = 159, + [1481] = 161, + [1482] = 160, + [1483] = 411, + [1484] = 165, + [1485] = 162, + [1486] = 163, + [1487] = 412, + [1488] = 380, + [1489] = 414, + [1490] = 418, + [1491] = 419, + [1492] = 1492, + [1493] = 385, + [1494] = 162, [1495] = 370, - [1496] = 387, - [1497] = 162, - [1498] = 384, - [1499] = 447, - [1500] = 405, - [1501] = 369, - [1502] = 163, - [1503] = 152, - [1504] = 447, - [1505] = 153, - [1506] = 445, - [1507] = 1507, - [1508] = 1507, - [1509] = 154, - [1510] = 161, - [1511] = 407, - [1512] = 411, - [1513] = 412, - [1514] = 369, - [1515] = 414, - [1516] = 417, - [1517] = 420, - [1518] = 1518, - [1519] = 421, - [1520] = 426, - [1521] = 511, - [1522] = 512, - [1523] = 164, - [1524] = 481, - [1525] = 358, - [1526] = 427, - [1527] = 464, - [1528] = 384, - [1529] = 480, - [1530] = 324, - [1531] = 370, - [1532] = 369, - [1533] = 1533, - [1534] = 429, - [1535] = 436, - [1536] = 455, - [1537] = 437, - [1538] = 156, - [1539] = 438, - [1540] = 162, - [1541] = 387, - [1542] = 362, - [1543] = 510, - [1544] = 328, - [1545] = 389, - [1546] = 441, - [1547] = 442, - [1548] = 401, - [1549] = 402, - [1550] = 352, - [1551] = 158, - [1552] = 356, - [1553] = 423, - [1554] = 354, - [1555] = 353, - [1556] = 159, - [1557] = 370, + [1496] = 163, + [1497] = 373, + [1498] = 402, + [1499] = 353, + [1500] = 420, + [1501] = 165, + [1502] = 398, + [1503] = 410, + [1504] = 482, + [1505] = 483, + [1506] = 487, + [1507] = 370, + [1508] = 411, + [1509] = 412, + [1510] = 155, + [1511] = 414, + [1512] = 317, + [1513] = 418, + [1514] = 419, + [1515] = 509, + [1516] = 165, + [1517] = 500, + [1518] = 319, + [1519] = 161, + [1520] = 420, + [1521] = 373, + [1522] = 422, + [1523] = 433, + [1524] = 162, + [1525] = 163, + [1526] = 444, + [1527] = 354, + [1528] = 153, + [1529] = 445, + [1530] = 154, + [1531] = 446, + [1532] = 353, + [1533] = 448, + [1534] = 423, + [1535] = 370, + [1536] = 415, + [1537] = 373, + [1538] = 1538, + [1539] = 363, + [1540] = 417, + [1541] = 156, + [1542] = 356, + [1543] = 454, + [1544] = 157, + [1545] = 404, + [1546] = 1546, + [1547] = 513, + [1548] = 407, + [1549] = 1549, + [1550] = 152, + [1551] = 358, + [1552] = 158, + [1553] = 159, + [1554] = 479, + [1555] = 399, + [1556] = 478, + [1557] = 360, [1558] = 160, - [1559] = 405, - [1560] = 1507, - [1561] = 152, - [1562] = 448, - [1563] = 355, - [1564] = 157, - [1565] = 1565, - [1566] = 360, - [1567] = 473, - [1568] = 513, - [1569] = 155, - [1570] = 383, - [1571] = 370, - [1572] = 384, - [1573] = 1533, - [1574] = 402, - [1575] = 162, - [1576] = 481, - [1577] = 480, - [1578] = 414, - [1579] = 389, - [1580] = 1580, - [1581] = 429, - [1582] = 407, - [1583] = 455, - [1584] = 527, - [1585] = 436, - [1586] = 369, - [1587] = 526, - [1588] = 384, - [1589] = 1589, - [1590] = 383, - [1591] = 528, - [1592] = 356, - [1593] = 163, - [1594] = 441, - [1595] = 529, - [1596] = 164, - [1597] = 158, - [1598] = 511, - [1599] = 159, - [1600] = 411, - [1601] = 1601, - [1602] = 442, - [1603] = 401, - [1604] = 340, - [1605] = 160, - [1606] = 152, - [1607] = 437, - [1608] = 412, - [1609] = 155, - [1610] = 1610, - [1611] = 417, - [1612] = 1565, - [1613] = 420, - [1614] = 157, - [1615] = 536, - [1616] = 383, - [1617] = 464, - [1618] = 387, - [1619] = 438, - [1620] = 510, - [1621] = 473, - [1622] = 544, - [1623] = 389, - [1624] = 1507, - [1625] = 1518, - [1626] = 156, - [1627] = 513, - [1628] = 1628, - [1629] = 515, - [1630] = 358, - [1631] = 518, - [1632] = 405, - [1633] = 154, - [1634] = 153, - [1635] = 532, - [1636] = 421, - [1637] = 1637, + [1559] = 402, + [1560] = 352, + [1561] = 1561, + [1562] = 361, + [1563] = 382, + [1564] = 1549, + [1565] = 393, + [1566] = 152, + [1567] = 395, + [1568] = 403, + [1569] = 409, + [1570] = 1549, + [1571] = 420, + [1572] = 162, + [1573] = 370, + [1574] = 153, + [1575] = 1575, + [1576] = 411, + [1577] = 509, + [1578] = 412, + [1579] = 1561, + [1580] = 163, + [1581] = 523, + [1582] = 414, + [1583] = 418, + [1584] = 393, + [1585] = 513, + [1586] = 154, + [1587] = 395, + [1588] = 535, + [1589] = 155, + [1590] = 156, + [1591] = 352, + [1592] = 541, + [1593] = 154, + [1594] = 543, + [1595] = 363, + [1596] = 398, + [1597] = 1597, + [1598] = 342, + [1599] = 1599, + [1600] = 382, + [1601] = 548, + [1602] = 393, + [1603] = 395, + [1604] = 373, + [1605] = 1605, + [1606] = 1606, + [1607] = 1546, + [1608] = 419, + [1609] = 487, + [1610] = 422, + [1611] = 433, + [1612] = 537, + [1613] = 409, + [1614] = 410, + [1615] = 161, + [1616] = 445, + [1617] = 152, + [1618] = 446, + [1619] = 157, + [1620] = 158, + [1621] = 159, + [1622] = 160, + [1623] = 1549, + [1624] = 448, + [1625] = 1538, + [1626] = 423, + [1627] = 354, + [1628] = 415, + [1629] = 417, + [1630] = 479, + [1631] = 454, + [1632] = 478, + [1633] = 483, + [1634] = 534, + [1635] = 539, + [1636] = 540, + [1637] = 398, [1638] = 1638, - [1639] = 426, - [1640] = 537, + [1639] = 1639, + [1640] = 165, [1641] = 1641, - [1642] = 161, - [1643] = 427, - [1644] = 1644, - [1645] = 153, - [1646] = 512, - [1647] = 362, - [1648] = 387, - [1649] = 154, - [1650] = 354, - [1651] = 343, - [1652] = 362, - [1653] = 352, - [1654] = 528, - [1655] = 160, - [1656] = 1656, - [1657] = 464, - [1658] = 1658, - [1659] = 1659, - [1660] = 1660, + [1642] = 500, + [1643] = 153, + [1644] = 547, + [1645] = 346, + [1646] = 1646, + [1647] = 382, + [1648] = 407, + [1649] = 353, + [1650] = 482, + [1651] = 444, + [1652] = 479, + [1653] = 1605, + [1654] = 1606, + [1655] = 1655, + [1656] = 547, + [1657] = 540, + [1658] = 399, + [1659] = 153, + [1660] = 356, [1661] = 1661, - [1662] = 370, - [1663] = 384, - [1664] = 153, + [1662] = 352, + [1663] = 398, + [1664] = 154, [1665] = 1665, - [1666] = 515, - [1667] = 529, - [1668] = 154, - [1669] = 1669, - [1670] = 526, - [1671] = 532, - [1672] = 536, - [1673] = 1673, - [1674] = 1659, - [1675] = 537, - [1676] = 354, - [1677] = 1656, - [1678] = 1660, - [1679] = 473, - [1680] = 1680, - [1681] = 1637, - [1682] = 157, - [1683] = 423, - [1684] = 527, - [1685] = 526, - [1686] = 445, - [1687] = 608, - [1688] = 164, - [1689] = 1638, - [1690] = 1610, - [1691] = 362, - [1692] = 1641, - [1693] = 536, - [1694] = 157, - [1695] = 527, - [1696] = 152, - [1697] = 1697, - [1698] = 159, - [1699] = 158, - [1700] = 1644, + [1666] = 358, + [1667] = 157, + [1668] = 363, + [1669] = 158, + [1670] = 159, + [1671] = 154, + [1672] = 160, + [1673] = 157, + [1674] = 158, + [1675] = 159, + [1676] = 160, + [1677] = 403, + [1678] = 161, + [1679] = 1597, + [1680] = 1599, + [1681] = 162, + [1682] = 163, + [1683] = 352, + [1684] = 382, + [1685] = 360, + [1686] = 353, + [1687] = 1638, + [1688] = 393, + [1689] = 361, + [1690] = 153, + [1691] = 395, + [1692] = 539, + [1693] = 1693, + [1694] = 156, + [1695] = 548, + [1696] = 1639, + [1697] = 1641, + [1698] = 1698, + [1699] = 404, + [1700] = 535, [1701] = 1701, - [1702] = 153, - [1703] = 161, - [1704] = 155, - [1705] = 156, - [1706] = 383, - [1707] = 528, - [1708] = 529, - [1709] = 448, - [1710] = 518, - [1711] = 447, - [1712] = 1628, - [1713] = 1665, - [1714] = 1701, - [1715] = 162, - [1716] = 355, - [1717] = 154, - [1718] = 387, - [1719] = 360, - [1720] = 1720, - [1721] = 358, - [1722] = 160, - [1723] = 369, - [1724] = 354, - [1725] = 353, + [1702] = 534, + [1703] = 152, + [1704] = 543, + [1705] = 165, + [1706] = 1693, + [1707] = 1707, + [1708] = 1708, + [1709] = 354, + [1710] = 1710, + [1711] = 537, + [1712] = 523, + [1713] = 537, + [1714] = 598, + [1715] = 534, + [1716] = 539, + [1717] = 540, + [1718] = 354, + [1719] = 541, + [1720] = 370, + [1721] = 402, + [1722] = 454, + [1723] = 155, + [1724] = 373, + [1725] = 547, [1726] = 1726, - [1727] = 1589, - [1728] = 389, - [1729] = 544, - [1730] = 158, - [1731] = 159, - [1732] = 163, - [1733] = 1733, - [1734] = 356, - [1735] = 1735, - [1736] = 1736, + [1727] = 1693, + [1728] = 154, + [1729] = 654, + [1730] = 645, + [1731] = 370, + [1732] = 1732, + [1733] = 683, + [1734] = 158, + [1735] = 158, + [1736] = 159, [1737] = 1737, - [1738] = 631, - [1739] = 688, - [1740] = 633, - [1741] = 635, - [1742] = 1697, - [1743] = 677, - [1744] = 640, - [1745] = 680, - [1746] = 683, - [1747] = 637, - [1748] = 636, - [1749] = 623, - [1750] = 632, - [1751] = 647, - [1752] = 653, - [1753] = 661, - [1754] = 662, - [1755] = 667, - [1756] = 668, - [1757] = 675, - [1758] = 686, - [1759] = 611, - [1760] = 613, - [1761] = 614, - [1762] = 616, - [1763] = 619, - [1764] = 620, - [1765] = 621, - [1766] = 656, - [1767] = 685, - [1768] = 625, - [1769] = 612, - [1770] = 1733, - [1771] = 682, - [1772] = 692, - [1773] = 1661, - [1774] = 161, - [1775] = 480, - [1776] = 669, - [1777] = 671, - [1778] = 513, - [1779] = 162, - [1780] = 163, - [1781] = 155, - [1782] = 156, - [1783] = 158, - [1784] = 369, - [1785] = 159, - [1786] = 160, - [1787] = 164, - [1788] = 157, - [1789] = 370, - [1790] = 1673, - [1791] = 1735, - [1792] = 1792, - [1793] = 1793, - [1794] = 1701, - [1795] = 1795, - [1796] = 153, - [1797] = 527, - [1798] = 528, - [1799] = 529, - [1800] = 1800, - [1801] = 1801, - [1802] = 536, - [1803] = 154, - [1804] = 1804, - [1805] = 384, - [1806] = 1806, - [1807] = 383, - [1808] = 387, - [1809] = 389, - [1810] = 620, - [1811] = 621, - [1812] = 1726, - [1813] = 1680, - [1814] = 1814, - [1815] = 608, - [1816] = 205, - [1817] = 1817, - [1818] = 155, - [1819] = 156, - [1820] = 1701, - [1821] = 158, - [1822] = 1733, - [1823] = 159, - [1824] = 160, - [1825] = 1658, - [1826] = 1661, - [1827] = 157, - [1828] = 639, - [1829] = 641, - [1830] = 643, - [1831] = 1831, - [1832] = 622, - [1833] = 630, - [1834] = 648, - [1835] = 650, - [1836] = 684, - [1837] = 1837, - [1838] = 1838, - [1839] = 672, - [1840] = 674, - [1841] = 626, - [1842] = 1842, - [1843] = 1843, - [1844] = 638, - [1845] = 645, - [1846] = 649, - [1847] = 655, - [1848] = 657, - [1849] = 660, - [1850] = 663, - [1851] = 526, - [1852] = 1804, - [1853] = 1800, - [1854] = 1817, - [1855] = 1661, - [1856] = 1856, - [1857] = 157, - [1858] = 1858, - [1859] = 1859, - [1860] = 1860, + [1738] = 1710, + [1739] = 162, + [1740] = 688, + [1741] = 689, + [1742] = 537, + [1743] = 1743, + [1744] = 664, + [1745] = 638, + [1746] = 693, + [1747] = 539, + [1748] = 540, + [1749] = 637, + [1750] = 165, + [1751] = 1751, + [1752] = 1752, + [1753] = 614, + [1754] = 617, + [1755] = 1755, + [1756] = 547, + [1757] = 159, + [1758] = 1743, + [1759] = 1698, + [1760] = 618, + [1761] = 205, + [1762] = 160, + [1763] = 1763, + [1764] = 619, + [1765] = 1765, + [1766] = 1766, + [1767] = 1655, + [1768] = 163, + [1769] = 1707, + [1770] = 1770, + [1771] = 157, + [1772] = 1772, + [1773] = 626, + [1774] = 598, + [1775] = 656, + [1776] = 686, + [1777] = 661, + [1778] = 373, + [1779] = 654, + [1780] = 1752, + [1781] = 676, + [1782] = 1782, + [1783] = 1783, + [1784] = 1784, + [1785] = 611, + [1786] = 1708, + [1787] = 612, + [1788] = 155, + [1789] = 1789, + [1790] = 1790, + [1791] = 157, + [1792] = 621, + [1793] = 625, + [1794] = 628, + [1795] = 156, + [1796] = 1796, + [1797] = 682, + [1798] = 669, + [1799] = 671, + [1800] = 634, + [1801] = 1701, + [1802] = 632, + [1803] = 678, + [1804] = 665, + [1805] = 640, + [1806] = 155, + [1807] = 1693, + [1808] = 160, + [1809] = 647, + [1810] = 156, + [1811] = 659, + [1812] = 676, + [1813] = 1813, + [1814] = 684, + [1815] = 1815, + [1816] = 153, + [1817] = 692, + [1818] = 1818, + [1819] = 655, + [1820] = 513, + [1821] = 657, + [1822] = 1708, + [1823] = 161, + [1824] = 1701, + [1825] = 660, + [1826] = 1826, + [1827] = 636, + [1828] = 1828, + [1829] = 631, + [1830] = 649, + [1831] = 1789, + [1832] = 643, + [1833] = 639, + [1834] = 478, + [1835] = 644, + [1836] = 675, + [1837] = 670, + [1838] = 680, + [1839] = 613, + [1840] = 641, + [1841] = 681, + [1842] = 1782, + [1843] = 398, + [1844] = 1783, + [1845] = 615, + [1846] = 534, + [1847] = 1784, + [1848] = 382, + [1849] = 1726, + [1850] = 1790, + [1851] = 393, + [1852] = 395, + [1853] = 648, + [1854] = 635, + [1855] = 1855, + [1856] = 157, + [1857] = 1708, + [1858] = 158, + [1859] = 159, + [1860] = 160, [1861] = 1861, [1862] = 1862, - [1863] = 1863, - [1864] = 1864, - [1865] = 1865, + [1863] = 160, + [1864] = 1597, + [1865] = 1599, [1866] = 1866, - [1867] = 1867, + [1867] = 1770, [1868] = 1868, - [1869] = 1869, - [1870] = 1870, - [1871] = 155, - [1872] = 156, - [1873] = 158, - [1874] = 1733, - [1875] = 608, - [1876] = 1831, - [1877] = 158, - [1878] = 159, - [1879] = 160, - [1880] = 157, - [1881] = 1837, - [1882] = 1838, - [1883] = 1883, - [1884] = 1842, - [1885] = 1843, - [1886] = 161, - [1887] = 1883, - [1888] = 1792, - [1889] = 1793, - [1890] = 631, - [1891] = 688, - [1892] = 622, - [1893] = 159, - [1894] = 161, - [1895] = 633, - [1896] = 635, - [1897] = 677, - [1898] = 630, - [1899] = 648, - [1900] = 650, - [1901] = 684, - [1902] = 1814, - [1903] = 1795, - [1904] = 639, - [1905] = 640, - [1906] = 641, - [1907] = 672, - [1908] = 674, - [1909] = 626, - [1910] = 680, - [1911] = 1736, - [1912] = 1737, - [1913] = 162, - [1914] = 163, - [1915] = 683, - [1916] = 162, - [1917] = 643, - [1918] = 638, - [1919] = 645, - [1920] = 649, - [1921] = 655, - [1922] = 657, - [1923] = 660, - [1924] = 663, - [1925] = 637, - [1926] = 636, - [1927] = 623, - [1928] = 632, - [1929] = 647, - [1930] = 653, - [1931] = 661, - [1932] = 662, - [1933] = 667, - [1934] = 668, - [1935] = 675, - [1936] = 686, - [1937] = 611, - [1938] = 613, - [1939] = 614, - [1940] = 616, - [1941] = 619, - [1942] = 620, - [1943] = 163, - [1944] = 621, - [1945] = 384, - [1946] = 656, - [1947] = 685, - [1948] = 383, - [1949] = 1949, - [1950] = 1950, - [1951] = 1637, - [1952] = 1638, - [1953] = 1953, - [1954] = 1641, - [1955] = 1644, - [1956] = 480, - [1957] = 513, - [1958] = 1958, - [1959] = 387, - [1960] = 164, - [1961] = 389, - [1962] = 206, - [1963] = 160, - [1964] = 1733, - [1965] = 1661, - [1966] = 625, - [1967] = 612, - [1968] = 682, - [1969] = 692, - [1970] = 669, - [1971] = 671, - [1972] = 1856, - [1973] = 1883, - [1974] = 1856, - [1975] = 1801, - [1976] = 1976, - [1977] = 1977, - [1978] = 161, - [1979] = 455, - [1980] = 1980, - [1981] = 1981, - [1982] = 1982, - [1983] = 680, - [1984] = 683, - [1985] = 1985, - [1986] = 1986, - [1987] = 153, - [1988] = 637, - [1989] = 448, - [1990] = 636, - [1991] = 623, - [1992] = 632, - [1993] = 647, - [1994] = 653, + [1869] = 1605, + [1870] = 1606, + [1871] = 1871, + [1872] = 1872, + [1873] = 1873, + [1874] = 1874, + [1875] = 1875, + [1876] = 631, + [1877] = 675, + [1878] = 615, + [1879] = 478, + [1880] = 1796, + [1881] = 1881, + [1882] = 161, + [1883] = 513, + [1884] = 1884, + [1885] = 635, + [1886] = 636, + [1887] = 637, + [1888] = 626, + [1889] = 634, + [1890] = 1890, + [1891] = 665, + [1892] = 1892, + [1893] = 659, + [1894] = 1751, + [1895] = 1755, + [1896] = 1815, + [1897] = 1818, + [1898] = 165, + [1899] = 1826, + [1900] = 155, + [1901] = 598, + [1902] = 639, + [1903] = 640, + [1904] = 641, + [1905] = 643, + [1906] = 644, + [1907] = 648, + [1908] = 632, + [1909] = 1765, + [1910] = 1766, + [1911] = 162, + [1912] = 163, + [1913] = 1828, + [1914] = 638, + [1915] = 645, + [1916] = 688, + [1917] = 689, + [1918] = 693, + [1919] = 159, + [1920] = 617, + [1921] = 618, + [1922] = 619, + [1923] = 682, + [1924] = 612, + [1925] = 649, + [1926] = 206, + [1927] = 661, + [1928] = 678, + [1929] = 683, + [1930] = 686, + [1931] = 611, + [1932] = 621, + [1933] = 625, + [1934] = 628, + [1935] = 669, + [1936] = 671, + [1937] = 647, + [1938] = 655, + [1939] = 657, + [1940] = 660, + [1941] = 670, + [1942] = 681, + [1943] = 684, + [1944] = 692, + [1945] = 156, + [1946] = 676, + [1947] = 161, + [1948] = 1948, + [1949] = 654, + [1950] = 680, + [1951] = 613, + [1952] = 1952, + [1953] = 162, + [1954] = 163, + [1955] = 1732, + [1956] = 1737, + [1957] = 1701, + [1958] = 398, + [1959] = 656, + [1960] = 1772, + [1961] = 1873, + [1962] = 1962, + [1963] = 1963, + [1964] = 382, + [1965] = 157, + [1966] = 1763, + [1967] = 1708, + [1968] = 1701, + [1969] = 1969, + [1970] = 393, + [1971] = 158, + [1972] = 664, + [1973] = 395, + [1974] = 1963, + [1975] = 1873, + [1976] = 1963, + [1977] = 614, + [1978] = 1978, + [1979] = 352, + [1980] = 163, + [1981] = 411, + [1982] = 412, + [1983] = 661, + [1984] = 414, + [1985] = 418, + [1986] = 637, + [1987] = 1987, + [1988] = 409, + [1989] = 410, + [1990] = 1990, + [1991] = 649, + [1992] = 686, + [1993] = 1993, + [1994] = 1994, [1995] = 1995, - [1996] = 447, - [1997] = 661, - [1998] = 662, - [1999] = 667, - [2000] = 668, - [2001] = 675, + [1996] = 1996, + [1997] = 1997, + [1998] = 1998, + [1999] = 1999, + [2000] = 509, + [2001] = 611, [2002] = 2002, - [2003] = 152, - [2004] = 686, + [2003] = 678, + [2004] = 2004, [2005] = 2005, - [2006] = 611, - [2007] = 613, - [2008] = 614, - [2009] = 616, - [2010] = 2010, - [2011] = 2011, - [2012] = 619, - [2013] = 412, - [2014] = 414, - [2015] = 2015, - [2016] = 464, - [2017] = 407, - [2018] = 411, - [2019] = 417, - [2020] = 445, - [2021] = 162, - [2022] = 473, - [2023] = 420, - [2024] = 163, - [2025] = 2025, - [2026] = 2026, - [2027] = 2027, - [2028] = 2028, - [2029] = 2029, - [2030] = 2030, + [2006] = 152, + [2007] = 2007, + [2008] = 2008, + [2009] = 2009, + [2010] = 621, + [2011] = 625, + [2012] = 628, + [2013] = 2013, + [2014] = 2014, + [2015] = 647, + [2016] = 655, + [2017] = 2017, + [2018] = 657, + [2019] = 2019, + [2020] = 154, + [2021] = 407, + [2022] = 402, + [2023] = 660, + [2024] = 2024, + [2025] = 419, + [2026] = 420, + [2027] = 422, + [2028] = 433, + [2029] = 444, + [2030] = 445, [2031] = 2031, [2032] = 2032, [2033] = 2033, - [2034] = 362, + [2034] = 2034, [2035] = 2035, [2036] = 2036, [2037] = 2037, - [2038] = 354, - [2039] = 688, + [2038] = 162, + [2039] = 2039, [2040] = 2040, [2041] = 2041, - [2042] = 2042, - [2043] = 2043, - [2044] = 2044, - [2045] = 2045, - [2046] = 2046, - [2047] = 2047, - [2048] = 2048, - [2049] = 2049, - [2050] = 2050, + [2042] = 446, + [2043] = 448, + [2044] = 423, + [2045] = 415, + [2046] = 670, + [2047] = 404, + [2048] = 632, + [2049] = 681, + [2050] = 638, [2051] = 2051, - [2052] = 421, - [2053] = 426, - [2054] = 427, - [2055] = 429, - [2056] = 436, - [2057] = 437, + [2052] = 417, + [2053] = 675, + [2054] = 2054, + [2055] = 2055, + [2056] = 2056, + [2057] = 683, [2058] = 2058, - [2059] = 423, - [2060] = 2060, - [2061] = 2046, - [2062] = 1977, + [2059] = 2059, + [2060] = 153, + [2061] = 399, + [2062] = 2062, [2063] = 2063, - [2064] = 438, - [2065] = 441, - [2066] = 442, - [2067] = 401, - [2068] = 402, + [2064] = 2064, + [2065] = 2014, + [2066] = 2017, + [2067] = 2067, + [2068] = 2024, [2069] = 2069, [2070] = 2070, [2071] = 2071, - [2072] = 2072, + [2072] = 403, [2073] = 2073, - [2074] = 2063, + [2074] = 479, [2075] = 2075, - [2076] = 2076, + [2076] = 682, [2077] = 2077, [2078] = 2078, - [2079] = 2079, - [2080] = 2080, + [2079] = 354, + [2080] = 161, [2081] = 2081, [2082] = 2082, - [2083] = 677, + [2083] = 612, [2084] = 2084, - [2085] = 154, - [2086] = 405, + [2085] = 2085, + [2086] = 2086, [2087] = 2087, [2088] = 2088, - [2089] = 641, + [2089] = 454, [2090] = 2090, - [2091] = 158, - [2092] = 155, - [2093] = 2093, - [2094] = 156, - [2095] = 2095, - [2096] = 2096, + [2091] = 2091, + [2092] = 692, + [2093] = 157, + [2094] = 664, + [2095] = 680, + [2096] = 454, [2097] = 2097, [2098] = 2098, - [2099] = 2099, - [2100] = 2100, - [2101] = 2101, - [2102] = 2102, + [2099] = 684, + [2100] = 155, + [2101] = 156, + [2102] = 613, [2103] = 2103, [2104] = 2104, [2105] = 2105, [2106] = 2106, [2107] = 2107, - [2108] = 2108, - [2109] = 159, + [2108] = 537, + [2109] = 534, [2110] = 2110, [2111] = 2111, - [2112] = 631, - [2113] = 455, - [2114] = 160, - [2115] = 656, - [2116] = 633, - [2117] = 635, - [2118] = 685, - [2119] = 639, - [2120] = 640, + [2112] = 158, + [2113] = 2113, + [2114] = 2114, + [2115] = 2115, + [2116] = 631, + [2117] = 2117, + [2118] = 539, + [2119] = 540, + [2120] = 639, [2121] = 2121, - [2122] = 2087, - [2123] = 643, - [2124] = 473, - [2125] = 529, - [2126] = 2126, - [2127] = 464, - [2128] = 164, - [2129] = 536, + [2122] = 2122, + [2123] = 2123, + [2124] = 640, + [2125] = 641, + [2126] = 509, + [2127] = 159, + [2128] = 635, + [2129] = 2129, [2130] = 2130, - [2131] = 625, - [2132] = 612, - [2133] = 682, - [2134] = 692, + [2131] = 2131, + [2132] = 2132, + [2133] = 2133, + [2134] = 2134, [2135] = 2135, - [2136] = 669, - [2137] = 671, - [2138] = 536, - [2139] = 157, - [2140] = 2140, - [2141] = 2135, - [2142] = 2140, + [2136] = 2123, + [2137] = 636, + [2138] = 547, + [2139] = 2139, + [2140] = 479, + [2141] = 2107, + [2142] = 2133, [2143] = 2143, [2144] = 2144, - [2145] = 2145, - [2146] = 2126, - [2147] = 2121, + [2145] = 2091, + [2146] = 2146, + [2147] = 2147, [2148] = 2148, - [2149] = 2130, - [2150] = 2140, - [2151] = 2140, - [2152] = 2140, - [2153] = 527, - [2154] = 526, - [2155] = 2155, - [2156] = 528, - [2157] = 2148, - [2158] = 1870, - [2159] = 2159, + [2149] = 2103, + [2150] = 2104, + [2151] = 2105, + [2152] = 2106, + [2153] = 165, + [2154] = 2123, + [2155] = 547, + [2156] = 2123, + [2157] = 645, + [2158] = 2158, + [2159] = 2123, [2160] = 2160, [2161] = 2161, [2162] = 2162, - [2163] = 2163, - [2164] = 2164, - [2165] = 2165, - [2166] = 2166, - [2167] = 2167, - [2168] = 1733, - [2169] = 2169, - [2170] = 2170, - [2171] = 2171, - [2172] = 2172, + [2163] = 656, + [2164] = 160, + [2165] = 2143, + [2166] = 2144, + [2167] = 2146, + [2168] = 2147, + [2169] = 2148, + [2170] = 1998, + [2171] = 669, + [2172] = 671, [2173] = 2173, [2174] = 2174, - [2175] = 2175, + [2175] = 2110, [2176] = 2176, [2177] = 2177, [2178] = 2178, - [2179] = 1661, - [2180] = 2180, - [2181] = 2181, - [2182] = 2182, - [2183] = 2183, + [2179] = 163, + [2180] = 1693, + [2181] = 1866, + [2182] = 354, + [2183] = 1872, [2184] = 2184, [2185] = 2185, [2186] = 2186, @@ -7310,40 +7303,40 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2194] = 2194, [2195] = 2195, [2196] = 2196, - [2197] = 161, + [2197] = 2197, [2198] = 2198, [2199] = 2199, - [2200] = 1637, - [2201] = 1638, + [2200] = 2200, + [2201] = 2201, [2202] = 2202, [2203] = 2203, [2204] = 2204, - [2205] = 1641, - [2206] = 1644, + [2205] = 2205, + [2206] = 2206, [2207] = 2207, - [2208] = 2195, + [2208] = 2208, [2209] = 2209, - [2210] = 310, + [2210] = 2210, [2211] = 2211, - [2212] = 2212, + [2212] = 547, [2213] = 2213, [2214] = 2214, [2215] = 2215, - [2216] = 2216, + [2216] = 1701, [2217] = 2217, [2218] = 2218, - [2219] = 2219, - [2220] = 2220, - [2221] = 152, + [2219] = 352, + [2220] = 313, + [2221] = 2221, [2222] = 2222, [2223] = 2223, [2224] = 2224, - [2225] = 2225, + [2225] = 537, [2226] = 2226, - [2227] = 2227, + [2227] = 534, [2228] = 2228, [2229] = 2229, - [2230] = 2230, + [2230] = 1962, [2231] = 2231, [2232] = 2232, [2233] = 2233, @@ -7351,94 +7344,94 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2235] = 2235, [2236] = 2236, [2237] = 2237, - [2238] = 1869, + [2238] = 2238, [2239] = 2239, - [2240] = 527, - [2241] = 526, - [2242] = 1858, - [2243] = 162, - [2244] = 528, - [2245] = 529, - [2246] = 163, + [2240] = 2240, + [2241] = 2241, + [2242] = 2242, + [2243] = 2243, + [2244] = 2244, + [2245] = 2245, + [2246] = 2246, [2247] = 2247, [2248] = 2248, [2249] = 2249, - [2250] = 2250, - [2251] = 2251, - [2252] = 1859, + [2250] = 1597, + [2251] = 161, + [2252] = 2252, [2253] = 2253, - [2254] = 2254, + [2254] = 1599, [2255] = 2255, - [2256] = 2256, - [2257] = 2257, + [2256] = 1884, + [2257] = 1875, [2258] = 2258, [2259] = 2259, [2260] = 2260, - [2261] = 1860, + [2261] = 2261, [2262] = 2262, [2263] = 2263, - [2264] = 2264, + [2264] = 152, [2265] = 2265, - [2266] = 536, - [2267] = 2267, - [2268] = 2268, + [2266] = 2266, + [2267] = 2229, + [2268] = 1952, [2269] = 2269, [2270] = 2270, - [2271] = 1701, + [2271] = 2271, [2272] = 2272, [2273] = 2273, [2274] = 2274, [2275] = 2275, [2276] = 2276, - [2277] = 2277, + [2277] = 1892, [2278] = 2278, - [2279] = 1861, - [2280] = 1862, + [2279] = 2279, + [2280] = 2280, [2281] = 2281, [2282] = 2282, - [2283] = 1863, + [2283] = 1969, [2284] = 2284, - [2285] = 2217, + [2285] = 539, [2286] = 2286, [2287] = 2287, - [2288] = 1864, + [2288] = 540, [2289] = 2289, - [2290] = 1865, + [2290] = 1874, [2291] = 2291, [2292] = 2292, - [2293] = 1866, + [2293] = 2293, [2294] = 2294, [2295] = 2295, [2296] = 2296, - [2297] = 362, + [2297] = 2246, [2298] = 2298, - [2299] = 1867, + [2299] = 1708, [2300] = 2300, [2301] = 2301, - [2302] = 354, - [2303] = 1868, + [2302] = 2302, + [2303] = 2303, [2304] = 2304, - [2305] = 2305, - [2306] = 2306, + [2305] = 1861, + [2306] = 1948, [2307] = 2307, - [2308] = 1701, + [2308] = 1862, [2309] = 2309, - [2310] = 354, + [2310] = 2310, [2311] = 2311, - [2312] = 2312, + [2312] = 1605, [2313] = 2313, - [2314] = 2314, - [2315] = 2315, + [2314] = 1606, + [2315] = 1881, [2316] = 2316, [2317] = 2317, [2318] = 2318, [2319] = 2319, [2320] = 2320, - [2321] = 2321, + [2321] = 162, [2322] = 2322, [2323] = 2323, [2324] = 2324, - [2325] = 328, + [2325] = 2325, [2326] = 2326, [2327] = 2327, [2328] = 2328, @@ -7449,31 +7442,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2333] = 2333, [2334] = 2334, [2335] = 2335, - [2336] = 2336, + [2336] = 319, [2337] = 2337, - [2338] = 2338, + [2338] = 354, [2339] = 2339, - [2340] = 2340, + [2340] = 317, [2341] = 2341, [2342] = 2342, [2343] = 2343, [2344] = 2344, [2345] = 2345, - [2346] = 2346, + [2346] = 319, [2347] = 2347, [2348] = 2348, [2349] = 2349, [2350] = 2350, [2351] = 2351, - [2352] = 324, + [2352] = 2352, [2353] = 2353, [2354] = 2354, [2355] = 2355, - [2356] = 328, + [2356] = 2356, [2357] = 2357, - [2358] = 153, - [2359] = 316, - [2360] = 2360, + [2358] = 2358, + [2359] = 2359, + [2360] = 336, [2361] = 2361, [2362] = 2362, [2363] = 2363, @@ -7482,42 +7475,42 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2366] = 2366, [2367] = 2367, [2368] = 2368, - [2369] = 152, + [2369] = 2369, [2370] = 2370, [2371] = 2371, [2372] = 2372, - [2373] = 154, - [2374] = 2374, + [2373] = 2373, + [2374] = 2361, [2375] = 2375, - [2376] = 2376, + [2376] = 320, [2377] = 2377, [2378] = 2378, [2379] = 2379, [2380] = 2380, - [2381] = 2381, + [2381] = 335, [2382] = 2382, [2383] = 2383, [2384] = 2384, - [2385] = 2385, + [2385] = 676, [2386] = 2386, [2387] = 2387, [2388] = 2388, [2389] = 2389, - [2390] = 2390, + [2390] = 2355, [2391] = 2391, [2392] = 2392, [2393] = 2393, [2394] = 2394, - [2395] = 2395, - [2396] = 608, + [2395] = 317, + [2396] = 2396, [2397] = 2397, [2398] = 2398, - [2399] = 322, + [2399] = 2399, [2400] = 2400, [2401] = 2401, [2402] = 2402, [2403] = 2403, - [2404] = 2404, + [2404] = 153, [2405] = 2405, [2406] = 2406, [2407] = 2407, @@ -7531,2000 +7524,2000 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2415] = 2415, [2416] = 2416, [2417] = 2417, - [2418] = 317, - [2419] = 2419, - [2420] = 2420, + [2418] = 2418, + [2419] = 154, + [2420] = 152, [2421] = 2421, - [2422] = 362, - [2423] = 2423, + [2422] = 2422, + [2423] = 352, [2424] = 2424, [2425] = 2425, [2426] = 2426, - [2427] = 324, + [2427] = 2427, [2428] = 2428, - [2429] = 2416, + [2429] = 2429, [2430] = 2430, - [2431] = 620, - [2432] = 2432, + [2431] = 2431, + [2432] = 2367, [2433] = 2433, - [2434] = 2414, - [2435] = 2393, - [2436] = 2436, - [2437] = 2313, - [2438] = 2307, - [2439] = 621, - [2440] = 2412, + [2434] = 2434, + [2435] = 2368, + [2436] = 2350, + [2437] = 2437, + [2438] = 2410, + [2439] = 2439, + [2440] = 2440, [2441] = 2441, [2442] = 2442, [2443] = 2443, - [2444] = 2444, - [2445] = 342, + [2444] = 598, + [2445] = 2445, [2446] = 2446, - [2447] = 2096, - [2448] = 2331, + [2447] = 2447, + [2448] = 2448, [2449] = 2449, - [2450] = 653, - [2451] = 154, - [2452] = 536, - [2453] = 671, - [2454] = 340, - [2455] = 346, - [2456] = 2093, - [2457] = 625, - [2458] = 2330, - [2459] = 2097, - [2460] = 2110, - [2461] = 317, - [2462] = 636, - [2463] = 2332, - [2464] = 611, - [2465] = 643, - [2466] = 620, - [2467] = 637, - [2468] = 613, - [2469] = 2144, - [2470] = 614, - [2471] = 2095, - [2472] = 159, - [2473] = 343, - [2474] = 616, - [2475] = 661, - [2476] = 2098, - [2477] = 2333, - [2478] = 2145, - [2479] = 619, - [2480] = 683, - [2481] = 2099, - [2482] = 2334, - [2483] = 662, - [2484] = 677, - [2485] = 667, - [2486] = 2100, - [2487] = 631, - [2488] = 612, - [2489] = 668, - [2490] = 621, - [2491] = 675, - [2492] = 2335, - [2493] = 2101, - [2494] = 692, - [2495] = 633, - [2496] = 2336, - [2497] = 344, - [2498] = 2102, - [2499] = 686, - [2500] = 340, - [2501] = 2103, - [2502] = 641, - [2503] = 685, - [2504] = 669, - [2505] = 158, - [2506] = 635, - [2507] = 682, - [2508] = 2306, - [2509] = 343, - [2510] = 2104, - [2511] = 160, - [2512] = 157, - [2513] = 623, - [2514] = 2514, - [2515] = 2337, - [2516] = 656, - [2517] = 2108, - [2518] = 2105, - [2519] = 680, - [2520] = 155, - [2521] = 632, - [2522] = 2338, - [2523] = 156, - [2524] = 2155, - [2525] = 647, - [2526] = 688, - [2527] = 153, - [2528] = 639, - [2529] = 2143, - [2530] = 2106, - [2531] = 2339, - [2532] = 640, - [2533] = 2107, - [2534] = 2340, - [2535] = 339, - [2536] = 324, - [2537] = 2537, - [2538] = 328, - [2539] = 162, - [2540] = 2540, - [2541] = 352, - [2542] = 354, - [2543] = 358, - [2544] = 160, - [2545] = 353, - [2546] = 2537, - [2547] = 155, - [2548] = 2548, - [2549] = 2540, - [2550] = 2550, - [2551] = 352, - [2552] = 1391, - [2553] = 2553, - [2554] = 2548, - [2555] = 355, - [2556] = 2556, - [2557] = 157, - [2558] = 161, - [2559] = 356, - [2560] = 2553, - [2561] = 2556, - [2562] = 159, - [2563] = 342, - [2564] = 339, - [2565] = 163, - [2566] = 346, - [2567] = 152, - [2568] = 156, - [2569] = 362, - [2570] = 344, - [2571] = 2571, - [2572] = 360, - [2573] = 158, - [2574] = 355, - [2575] = 353, - [2576] = 2571, + [2450] = 2450, + [2451] = 654, + [2452] = 2452, + [2453] = 2453, + [2454] = 2454, + [2455] = 2455, + [2456] = 2456, + [2457] = 2457, + [2458] = 2458, + [2459] = 2459, + [2460] = 2460, + [2461] = 1693, + [2462] = 2462, + [2463] = 637, + [2464] = 632, + [2465] = 686, + [2466] = 611, + [2467] = 621, + [2468] = 625, + [2469] = 628, + [2470] = 320, + [2471] = 647, + [2472] = 655, + [2473] = 657, + [2474] = 660, + [2475] = 670, + [2476] = 681, + [2477] = 638, + [2478] = 635, + [2479] = 343, + [2480] = 636, + [2481] = 631, + [2482] = 684, + [2483] = 692, + [2484] = 339, + [2485] = 340, + [2486] = 341, + [2487] = 680, + [2488] = 613, + [2489] = 2134, + [2490] = 2425, + [2491] = 2111, + [2492] = 2429, + [2493] = 2117, + [2494] = 2430, + [2495] = 2122, + [2496] = 2437, + [2497] = 675, + [2498] = 2132, + [2499] = 2442, + [2500] = 2162, + [2501] = 2447, + [2502] = 2174, + [2503] = 2457, + [2504] = 2158, + [2505] = 2459, + [2506] = 2161, + [2507] = 2135, + [2508] = 2113, + [2509] = 2455, + [2510] = 2098, + [2511] = 683, + [2512] = 2121, + [2513] = 346, + [2514] = 342, + [2515] = 155, + [2516] = 156, + [2517] = 2333, + [2518] = 2097, + [2519] = 2399, + [2520] = 2114, + [2521] = 2521, + [2522] = 2130, + [2523] = 2131, + [2524] = 157, + [2525] = 158, + [2526] = 159, + [2527] = 160, + [2528] = 664, + [2529] = 2529, + [2530] = 346, + [2531] = 2531, + [2532] = 342, + [2533] = 645, + [2534] = 682, + [2535] = 612, + [2536] = 654, + [2537] = 669, + [2538] = 671, + [2539] = 656, + [2540] = 2129, + [2541] = 547, + [2542] = 676, + [2543] = 2160, + [2544] = 2139, + [2545] = 639, + [2546] = 640, + [2547] = 153, + [2548] = 649, + [2549] = 661, + [2550] = 154, + [2551] = 641, + [2552] = 678, + [2553] = 2431, + [2554] = 339, + [2555] = 1404, + [2556] = 354, + [2557] = 352, + [2558] = 2558, + [2559] = 343, + [2560] = 340, + [2561] = 152, + [2562] = 317, + [2563] = 319, + [2564] = 353, + [2565] = 356, + [2566] = 341, + [2567] = 2567, + [2568] = 358, + [2569] = 360, + [2570] = 361, + [2571] = 363, + [2572] = 356, + [2573] = 157, + [2574] = 160, + [2575] = 161, + [2576] = 2576, [2577] = 360, - [2578] = 2578, - [2579] = 152, + [2578] = 158, + [2579] = 2579, [2580] = 2580, [2581] = 2581, - [2582] = 343, - [2583] = 340, - [2584] = 369, - [2585] = 370, - [2586] = 153, - [2587] = 2587, - [2588] = 154, - [2589] = 2589, - [2590] = 2590, - [2591] = 2591, - [2592] = 2592, - [2593] = 2593, - [2594] = 2594, - [2595] = 2593, + [2582] = 361, + [2583] = 2583, + [2584] = 162, + [2585] = 163, + [2586] = 159, + [2587] = 155, + [2588] = 156, + [2589] = 2579, + [2590] = 2580, + [2591] = 2581, + [2592] = 2583, + [2593] = 2558, + [2594] = 2567, + [2595] = 358, [2596] = 2596, - [2597] = 2589, - [2598] = 2590, + [2597] = 1701, + [2598] = 1708, [2599] = 2599, [2600] = 2600, [2601] = 2601, [2602] = 2602, - [2603] = 1733, - [2604] = 2591, - [2605] = 1661, + [2603] = 158, + [2604] = 2596, + [2605] = 165, [2606] = 2606, - [2607] = 2587, - [2608] = 164, - [2609] = 2606, - [2610] = 2606, - [2611] = 2596, - [2612] = 625, - [2613] = 612, - [2614] = 160, - [2615] = 692, - [2616] = 161, - [2617] = 669, - [2618] = 671, - [2619] = 162, - [2620] = 163, - [2621] = 2594, + [2607] = 2607, + [2608] = 346, + [2609] = 2609, + [2610] = 2600, + [2611] = 2611, + [2612] = 160, + [2613] = 2613, + [2614] = 159, + [2615] = 342, + [2616] = 370, + [2617] = 2617, + [2618] = 2602, + [2619] = 2619, + [2620] = 669, + [2621] = 671, [2622] = 2622, - [2623] = 2623, - [2624] = 464, - [2625] = 2625, - [2626] = 2580, - [2627] = 2627, - [2628] = 2628, - [2629] = 473, - [2630] = 362, - [2631] = 2578, - [2632] = 2599, - [2633] = 2581, - [2634] = 2592, - [2635] = 354, - [2636] = 2636, - [2637] = 2578, - [2638] = 2638, - [2639] = 2581, - [2640] = 2578, - [2641] = 2581, - [2642] = 157, - [2643] = 158, - [2644] = 159, - [2645] = 2625, - [2646] = 2638, - [2647] = 2600, - [2648] = 682, - [2649] = 401, - [2650] = 2650, - [2651] = 155, - [2652] = 156, - [2653] = 2653, - [2654] = 2654, + [2623] = 2596, + [2624] = 684, + [2625] = 692, + [2626] = 2626, + [2627] = 161, + [2628] = 157, + [2629] = 2629, + [2630] = 2622, + [2631] = 2631, + [2632] = 2632, + [2633] = 613, + [2634] = 2631, + [2635] = 152, + [2636] = 2629, + [2637] = 354, + [2638] = 352, + [2639] = 2613, + [2640] = 162, + [2641] = 163, + [2642] = 2642, + [2643] = 2606, + [2644] = 2644, + [2645] = 2599, + [2646] = 2619, + [2647] = 2609, + [2648] = 2611, + [2649] = 2601, + [2650] = 479, + [2651] = 373, + [2652] = 153, + [2653] = 154, + [2654] = 2617, [2655] = 2655, - [2656] = 591, - [2657] = 2622, - [2658] = 2658, - [2659] = 2659, - [2660] = 158, - [2661] = 159, - [2662] = 2623, - [2663] = 160, - [2664] = 2664, - [2665] = 157, - [2666] = 2627, - [2667] = 2628, - [2668] = 625, - [2669] = 2636, - [2670] = 158, - [2671] = 2671, - [2672] = 612, - [2673] = 2601, - [2674] = 2602, - [2675] = 445, - [2676] = 473, - [2677] = 352, - [2678] = 447, - [2679] = 356, - [2680] = 388, - [2681] = 682, - [2682] = 692, - [2683] = 159, - [2684] = 160, - [2685] = 405, - [2686] = 164, - [2687] = 157, - [2688] = 358, - [2689] = 1661, - [2690] = 353, - [2691] = 671, - [2692] = 355, - [2693] = 669, + [2656] = 2656, + [2657] = 2657, + [2658] = 454, + [2659] = 2599, + [2660] = 2609, + [2661] = 2599, + [2662] = 2609, + [2663] = 2663, + [2664] = 2626, + [2665] = 2607, + [2666] = 680, + [2667] = 385, + [2668] = 159, + [2669] = 479, + [2670] = 165, + [2671] = 680, + [2672] = 600, + [2673] = 2673, + [2674] = 2674, + [2675] = 160, + [2676] = 153, + [2677] = 353, + [2678] = 154, + [2679] = 613, + [2680] = 356, + [2681] = 358, + [2682] = 360, + [2683] = 2683, + [2684] = 361, + [2685] = 363, + [2686] = 398, + [2687] = 380, + [2688] = 382, + [2689] = 393, + [2690] = 395, + [2691] = 155, + [2692] = 156, + [2693] = 2693, [2694] = 2694, - [2695] = 2654, - [2696] = 407, - [2697] = 411, - [2698] = 385, - [2699] = 152, - [2700] = 412, - [2701] = 414, - [2702] = 360, - [2703] = 358, - [2704] = 384, - [2705] = 417, - [2706] = 420, - [2707] = 421, - [2708] = 426, - [2709] = 427, - [2710] = 1733, - [2711] = 153, - [2712] = 429, - [2713] = 436, - [2714] = 437, - [2715] = 438, - [2716] = 441, - [2717] = 442, - [2718] = 383, - [2719] = 402, - [2720] = 356, - [2721] = 423, - [2722] = 387, - [2723] = 464, - [2724] = 389, - [2725] = 154, - [2726] = 2726, - [2727] = 2727, - [2728] = 448, - [2729] = 2726, - [2730] = 442, - [2731] = 429, - [2732] = 436, - [2733] = 437, - [2734] = 438, - [2735] = 441, - [2736] = 153, - [2737] = 401, - [2738] = 402, - [2739] = 2739, - [2740] = 369, - [2741] = 2741, - [2742] = 154, - [2743] = 155, - [2744] = 156, - [2745] = 158, - [2746] = 370, - [2747] = 369, - [2748] = 159, - [2749] = 160, - [2750] = 370, - [2751] = 358, - [2752] = 2752, - [2753] = 2753, - [2754] = 427, - [2755] = 157, - [2756] = 152, - [2757] = 2752, - [2758] = 2758, - [2759] = 161, - [2760] = 2753, - [2761] = 646, - [2762] = 356, - [2763] = 205, - [2764] = 2659, - [2765] = 2758, - [2766] = 162, - [2767] = 163, - [2768] = 405, - [2769] = 356, - [2770] = 407, - [2771] = 411, - [2772] = 412, - [2773] = 414, - [2774] = 417, - [2775] = 420, - [2776] = 421, - [2777] = 426, - [2778] = 358, - [2779] = 2779, - [2780] = 384, - [2781] = 162, - [2782] = 441, - [2783] = 2779, - [2784] = 383, - [2785] = 205, - [2786] = 2786, - [2787] = 387, - [2788] = 442, - [2789] = 401, - [2790] = 389, - [2791] = 2791, - [2792] = 402, - [2793] = 163, - [2794] = 206, - [2795] = 2795, - [2796] = 161, - [2797] = 480, - [2798] = 156, - [2799] = 389, - [2800] = 2800, - [2801] = 511, - [2802] = 158, - [2803] = 591, + [2695] = 157, + [2696] = 158, + [2697] = 159, + [2698] = 160, + [2699] = 353, + [2700] = 404, + [2701] = 363, + [2702] = 1708, + [2703] = 669, + [2704] = 2704, + [2705] = 671, + [2706] = 2706, + [2707] = 2707, + [2708] = 454, + [2709] = 2709, + [2710] = 2642, + [2711] = 417, + [2712] = 2644, + [2713] = 2713, + [2714] = 399, + [2715] = 2655, + [2716] = 2657, + [2717] = 684, + [2718] = 692, + [2719] = 2663, + [2720] = 402, + [2721] = 2721, + [2722] = 157, + [2723] = 2706, + [2724] = 2707, + [2725] = 403, + [2726] = 2656, + [2727] = 2632, + [2728] = 407, + [2729] = 152, + [2730] = 158, + [2731] = 409, + [2732] = 410, + [2733] = 411, + [2734] = 412, + [2735] = 414, + [2736] = 418, + [2737] = 419, + [2738] = 420, + [2739] = 422, + [2740] = 433, + [2741] = 444, + [2742] = 445, + [2743] = 446, + [2744] = 448, + [2745] = 423, + [2746] = 415, + [2747] = 1701, + [2748] = 2748, + [2749] = 161, + [2750] = 353, + [2751] = 162, + [2752] = 163, + [2753] = 154, + [2754] = 353, + [2755] = 370, + [2756] = 205, + [2757] = 407, + [2758] = 409, + [2759] = 410, + [2760] = 370, + [2761] = 411, + [2762] = 373, + [2763] = 412, + [2764] = 414, + [2765] = 155, + [2766] = 363, + [2767] = 418, + [2768] = 419, + [2769] = 363, + [2770] = 420, + [2771] = 422, + [2772] = 152, + [2773] = 444, + [2774] = 445, + [2775] = 446, + [2776] = 448, + [2777] = 423, + [2778] = 415, + [2779] = 156, + [2780] = 417, + [2781] = 2781, + [2782] = 2748, + [2783] = 2783, + [2784] = 373, + [2785] = 668, + [2786] = 2783, + [2787] = 2787, + [2788] = 2781, + [2789] = 2721, + [2790] = 2790, + [2791] = 157, + [2792] = 153, + [2793] = 158, + [2794] = 159, + [2795] = 160, + [2796] = 433, + [2797] = 395, + [2798] = 395, + [2799] = 2799, + [2800] = 370, + [2801] = 161, + [2802] = 155, + [2803] = 2803, [2804] = 2804, [2805] = 2805, - [2806] = 407, - [2807] = 369, - [2808] = 411, - [2809] = 2809, - [2810] = 513, - [2811] = 383, - [2812] = 155, - [2813] = 152, - [2814] = 159, - [2815] = 384, - [2816] = 160, - [2817] = 157, - [2818] = 414, - [2819] = 417, - [2820] = 420, - [2821] = 205, + [2806] = 370, + [2807] = 393, + [2808] = 162, + [2809] = 163, + [2810] = 500, + [2811] = 2811, + [2812] = 454, + [2813] = 1639, + [2814] = 205, + [2815] = 2803, + [2816] = 156, + [2817] = 2804, + [2818] = 2805, + [2819] = 2819, + [2820] = 153, + [2821] = 398, [2822] = 2822, [2823] = 2823, - [2824] = 464, - [2825] = 512, - [2826] = 370, - [2827] = 1610, - [2828] = 481, - [2829] = 369, - [2830] = 2830, - [2831] = 473, - [2832] = 2830, - [2833] = 153, - [2834] = 421, - [2835] = 164, - [2836] = 154, - [2837] = 426, - [2838] = 405, - [2839] = 510, - [2840] = 427, - [2841] = 370, - [2842] = 429, - [2843] = 436, - [2844] = 2791, - [2845] = 2809, - [2846] = 437, - [2847] = 438, - [2848] = 387, - [2849] = 412, - [2850] = 528, - [2851] = 161, - [2852] = 383, - [2853] = 2853, - [2854] = 384, - [2855] = 473, - [2856] = 2856, - [2857] = 387, - [2858] = 529, - [2859] = 389, - [2860] = 384, - [2861] = 206, - [2862] = 2862, - [2863] = 383, - [2864] = 155, - [2865] = 156, - [2866] = 387, - [2867] = 389, - [2868] = 532, - [2869] = 205, - [2870] = 162, - [2871] = 163, - [2872] = 1701, - [2873] = 510, - [2874] = 537, - [2875] = 206, - [2876] = 608, - [2877] = 158, - [2878] = 2878, - [2879] = 527, - [2880] = 526, - [2881] = 159, - [2882] = 160, + [2824] = 373, + [2825] = 2819, + [2826] = 407, + [2827] = 478, + [2828] = 513, + [2829] = 482, + [2830] = 157, + [2831] = 409, + [2832] = 410, + [2833] = 398, + [2834] = 152, + [2835] = 412, + [2836] = 414, + [2837] = 2837, + [2838] = 418, + [2839] = 419, + [2840] = 420, + [2841] = 158, + [2842] = 2842, + [2843] = 422, + [2844] = 159, + [2845] = 160, + [2846] = 433, + [2847] = 444, + [2848] = 487, + [2849] = 445, + [2850] = 600, + [2851] = 206, + [2852] = 446, + [2853] = 483, + [2854] = 382, + [2855] = 382, + [2856] = 423, + [2857] = 2857, + [2858] = 154, + [2859] = 373, + [2860] = 205, + [2861] = 415, + [2862] = 448, + [2863] = 393, + [2864] = 479, + [2865] = 165, + [2866] = 417, + [2867] = 411, + [2868] = 206, + [2869] = 1693, + [2870] = 395, + [2871] = 153, + [2872] = 353, + [2873] = 205, + [2874] = 393, + [2875] = 2875, + [2876] = 541, + [2877] = 2877, + [2878] = 363, + [2879] = 395, + [2880] = 353, + [2881] = 2881, + [2882] = 598, [2883] = 2883, - [2884] = 536, - [2885] = 157, - [2886] = 528, - [2887] = 529, - [2888] = 480, - [2889] = 356, - [2890] = 464, - [2891] = 515, - [2892] = 513, - [2893] = 646, - [2894] = 518, - [2895] = 153, - [2896] = 356, - [2897] = 164, - [2898] = 358, - [2899] = 1658, - [2900] = 544, - [2901] = 324, - [2902] = 328, - [2903] = 536, - [2904] = 154, - [2905] = 358, - [2906] = 511, - [2907] = 512, - [2908] = 481, - [2909] = 527, - [2910] = 621, - [2911] = 2911, - [2912] = 2912, - [2913] = 2913, - [2914] = 631, - [2915] = 2915, - [2916] = 162, - [2917] = 163, - [2918] = 157, - [2919] = 688, - [2920] = 2911, - [2921] = 2921, - [2922] = 158, - [2923] = 2923, - [2924] = 2924, - [2925] = 356, - [2926] = 2926, - [2927] = 633, - [2928] = 635, - [2929] = 677, - [2930] = 369, - [2931] = 2921, - [2932] = 640, - [2933] = 2933, - [2934] = 159, - [2935] = 680, - [2936] = 370, - [2937] = 683, - [2938] = 637, - [2939] = 636, - [2940] = 623, - [2941] = 632, - [2942] = 647, - [2943] = 653, - [2944] = 661, - [2945] = 662, - [2946] = 667, - [2947] = 668, - [2948] = 675, + [2884] = 162, + [2885] = 537, + [2886] = 534, + [2887] = 154, + [2888] = 523, + [2889] = 539, + [2890] = 540, + [2891] = 543, + [2892] = 2892, + [2893] = 482, + [2894] = 500, + [2895] = 1707, + [2896] = 547, + [2897] = 479, + [2898] = 539, + [2899] = 540, + [2900] = 398, + [2901] = 382, + [2902] = 548, + [2903] = 206, + [2904] = 483, + [2905] = 157, + [2906] = 363, + [2907] = 317, + [2908] = 319, + [2909] = 547, + [2910] = 478, + [2911] = 161, + [2912] = 513, + [2913] = 165, + [2914] = 163, + [2915] = 454, + [2916] = 158, + [2917] = 159, + [2918] = 382, + [2919] = 535, + [2920] = 487, + [2921] = 668, + [2922] = 155, + [2923] = 160, + [2924] = 156, + [2925] = 398, + [2926] = 393, + [2927] = 537, + [2928] = 647, + [2929] = 2929, + [2930] = 2930, + [2931] = 373, + [2932] = 163, + [2933] = 684, + [2934] = 692, + [2935] = 363, + [2936] = 640, + [2937] = 631, + [2938] = 632, + [2939] = 159, + [2940] = 2940, + [2941] = 2941, + [2942] = 638, + [2943] = 682, + [2944] = 612, + [2945] = 649, + [2946] = 661, + [2947] = 678, + [2948] = 683, [2949] = 686, [2950] = 611, - [2951] = 613, - [2952] = 614, - [2953] = 616, - [2954] = 619, - [2955] = 2923, - [2956] = 620, - [2957] = 370, - [2958] = 159, - [2959] = 160, - [2960] = 161, - [2961] = 1661, - [2962] = 656, - [2963] = 205, - [2964] = 164, - [2965] = 358, - [2966] = 369, - [2967] = 685, - [2968] = 639, - [2969] = 641, - [2970] = 612, - [2971] = 2924, - [2972] = 157, - [2973] = 2973, - [2974] = 2926, - [2975] = 643, - [2976] = 1736, - [2977] = 155, - [2978] = 625, - [2979] = 343, - [2980] = 1737, - [2981] = 340, - [2982] = 324, - [2983] = 328, - [2984] = 2933, - [2985] = 1814, - [2986] = 206, - [2987] = 156, - [2988] = 669, - [2989] = 671, - [2990] = 158, - [2991] = 1795, - [2992] = 160, - [2993] = 682, - [2994] = 608, - [2995] = 1533, - [2996] = 591, - [2997] = 692, - [2998] = 1733, - [2999] = 529, - [3000] = 1533, - [3001] = 387, - [3002] = 672, - [3003] = 3003, - [3004] = 621, - [3005] = 369, - [3006] = 159, - [3007] = 205, - [3008] = 655, - [3009] = 157, - [3010] = 630, - [3011] = 657, - [3012] = 674, - [3013] = 660, - [3014] = 160, - [3015] = 384, - [3016] = 684, - [3017] = 536, - [3018] = 162, - [3019] = 383, - [3020] = 677, - [3021] = 370, - [3022] = 387, - [3023] = 389, - [3024] = 528, - [3025] = 163, - [3026] = 638, - [3027] = 389, - [3028] = 608, - [3029] = 626, - [3030] = 164, - [3031] = 2913, - [3032] = 480, - [3033] = 648, - [3034] = 513, - [3035] = 650, - [3036] = 680, - [3037] = 206, - [3038] = 384, - [3039] = 616, - [3040] = 3040, - [3041] = 683, - [3042] = 637, - [3043] = 161, - [3044] = 3044, - [3045] = 636, - [3046] = 623, - [3047] = 632, - [3048] = 3048, - [3049] = 3049, - [3050] = 620, - [3051] = 647, - [3052] = 653, - [3053] = 646, - [3054] = 383, + [2951] = 621, + [2952] = 625, + [2953] = 628, + [2954] = 370, + [2955] = 655, + [2956] = 657, + [2957] = 660, + [2958] = 670, + [2959] = 681, + [2960] = 2960, + [2961] = 676, + [2962] = 654, + [2963] = 1701, + [2964] = 206, + [2965] = 2965, + [2966] = 2966, + [2967] = 1708, + [2968] = 656, + [2969] = 160, + [2970] = 2930, + [2971] = 2940, + [2972] = 675, + [2973] = 346, + [2974] = 155, + [2975] = 342, + [2976] = 165, + [2977] = 319, + [2978] = 2965, + [2979] = 161, + [2980] = 669, + [2981] = 671, + [2982] = 156, + [2983] = 158, + [2984] = 1538, + [2985] = 159, + [2986] = 664, + [2987] = 160, + [2988] = 639, + [2989] = 641, + [2990] = 373, + [2991] = 2991, + [2992] = 2992, + [2993] = 353, + [2994] = 1751, + [2995] = 635, + [2996] = 636, + [2997] = 645, + [2998] = 598, + [2999] = 600, + [3000] = 2991, + [3001] = 370, + [3002] = 158, + [3003] = 637, + [3004] = 1765, + [3005] = 157, + [3006] = 2992, + [3007] = 3007, + [3008] = 680, + [3009] = 1755, + [3010] = 205, + [3011] = 613, + [3012] = 1766, + [3013] = 162, + [3014] = 157, + [3015] = 2929, + [3016] = 317, + [3017] = 3017, + [3018] = 681, + [3019] = 676, + [3020] = 654, + [3021] = 206, + [3022] = 648, + [3023] = 688, + [3024] = 3024, + [3025] = 689, + [3026] = 693, + [3027] = 614, + [3028] = 617, + [3029] = 618, + [3030] = 619, + [3031] = 598, + [3032] = 370, + [3033] = 660, + [3034] = 373, + [3035] = 2941, + [3036] = 3036, + [3037] = 3037, + [3038] = 398, + [3039] = 382, + [3040] = 393, + [3041] = 395, + [3042] = 1538, + [3043] = 356, + [3044] = 358, + [3045] = 360, + [3046] = 361, + [3047] = 346, + [3048] = 342, + [3049] = 615, + [3050] = 478, + [3051] = 513, + [3052] = 3052, + [3053] = 668, + [3054] = 3054, [3055] = 3055, - [3056] = 661, - [3057] = 662, - [3058] = 667, - [3059] = 619, - [3060] = 352, - [3061] = 663, - [3062] = 668, - [3063] = 3063, - [3064] = 353, - [3065] = 645, - [3066] = 355, - [3067] = 360, - [3068] = 343, - [3069] = 675, - [3070] = 340, - [3071] = 3071, - [3072] = 686, - [3073] = 158, - [3074] = 688, - [3075] = 649, - [3076] = 3076, - [3077] = 611, - [3078] = 613, - [3079] = 3079, - [3080] = 527, - [3081] = 622, - [3082] = 614, - [3083] = 655, - [3084] = 616, - [3085] = 619, - [3086] = 661, - [3087] = 662, - [3088] = 3088, - [3089] = 636, - [3090] = 480, - [3091] = 620, - [3092] = 384, - [3093] = 383, - [3094] = 623, - [3095] = 3095, - [3096] = 621, - [3097] = 667, - [3098] = 660, - [3099] = 3099, - [3100] = 668, - [3101] = 675, + [3056] = 626, + [3057] = 537, + [3058] = 539, + [3059] = 540, + [3060] = 3060, + [3061] = 670, + [3062] = 665, + [3063] = 547, + [3064] = 3064, + [3065] = 659, + [3066] = 675, + [3067] = 157, + [3068] = 158, + [3069] = 159, + [3070] = 165, + [3071] = 205, + [3072] = 160, + [3073] = 637, + [3074] = 632, + [3075] = 638, + [3076] = 398, + [3077] = 161, + [3078] = 643, + [3079] = 644, + [3080] = 382, + [3081] = 682, + [3082] = 393, + [3083] = 162, + [3084] = 163, + [3085] = 395, + [3086] = 612, + [3087] = 649, + [3088] = 661, + [3089] = 678, + [3090] = 683, + [3091] = 686, + [3092] = 611, + [3093] = 621, + [3094] = 625, + [3095] = 628, + [3096] = 647, + [3097] = 3097, + [3098] = 655, + [3099] = 657, + [3100] = 634, + [3101] = 693, [3102] = 3102, - [3103] = 663, - [3104] = 3104, - [3105] = 3105, - [3106] = 3106, - [3107] = 3107, - [3108] = 632, - [3109] = 3109, - [3110] = 158, - [3111] = 3111, - [3112] = 159, - [3113] = 160, - [3114] = 387, - [3115] = 686, - [3116] = 680, - [3117] = 611, - [3118] = 626, - [3119] = 513, - [3120] = 613, - [3121] = 647, - [3122] = 688, - [3123] = 352, - [3124] = 389, - [3125] = 653, - [3126] = 353, - [3127] = 157, - [3128] = 355, - [3129] = 360, - [3130] = 2912, - [3131] = 622, - [3132] = 672, - [3133] = 657, - [3134] = 164, - [3135] = 683, - [3136] = 674, - [3137] = 677, - [3138] = 3138, - [3139] = 614, - [3140] = 638, - [3141] = 684, - [3142] = 645, - [3143] = 637, - [3144] = 630, - [3145] = 648, - [3146] = 650, - [3147] = 3147, - [3148] = 2915, - [3149] = 649, - [3150] = 206, - [3151] = 3151, - [3152] = 3152, - [3153] = 3153, - [3154] = 3154, - [3155] = 3155, - [3156] = 3156, - [3157] = 3157, - [3158] = 3153, - [3159] = 3156, + [3103] = 618, + [3104] = 688, + [3105] = 689, + [3106] = 356, + [3107] = 612, + [3108] = 358, + [3109] = 398, + [3110] = 360, + [3111] = 361, + [3112] = 649, + [3113] = 3113, + [3114] = 3114, + [3115] = 3115, + [3116] = 661, + [3117] = 675, + [3118] = 3118, + [3119] = 3119, + [3120] = 3120, + [3121] = 678, + [3122] = 619, + [3123] = 683, + [3124] = 382, + [3125] = 157, + [3126] = 686, + [3127] = 158, + [3128] = 159, + [3129] = 160, + [3130] = 611, + [3131] = 621, + [3132] = 625, + [3133] = 628, + [3134] = 615, + [3135] = 626, + [3136] = 647, + [3137] = 478, + [3138] = 393, + [3139] = 655, + [3140] = 657, + [3141] = 395, + [3142] = 660, + [3143] = 614, + [3144] = 670, + [3145] = 681, + [3146] = 676, + [3147] = 654, + [3148] = 165, + [3149] = 2966, + [3150] = 665, + [3151] = 617, + [3152] = 634, + [3153] = 643, + [3154] = 206, + [3155] = 644, + [3156] = 2960, + [3157] = 648, + [3158] = 513, + [3159] = 3159, [3160] = 3160, [3161] = 3161, - [3162] = 3157, - [3163] = 3152, - [3164] = 3154, - [3165] = 3165, - [3166] = 3161, - [3167] = 3155, - [3168] = 3168, - [3169] = 3160, - [3170] = 3168, - [3171] = 3165, - [3172] = 536, + [3162] = 3162, + [3163] = 637, + [3164] = 632, + [3165] = 638, + [3166] = 682, + [3167] = 3167, + [3168] = 659, + [3169] = 3169, + [3170] = 3170, + [3171] = 3171, + [3172] = 3172, [3173] = 3173, [3174] = 3174, - [3175] = 164, - [3176] = 527, - [3177] = 3177, - [3178] = 526, - [3179] = 528, - [3180] = 529, - [3181] = 358, - [3182] = 1701, - [3183] = 528, - [3184] = 536, - [3185] = 317, - [3186] = 529, - [3187] = 526, - [3188] = 356, - [3189] = 3189, - [3190] = 527, - [3191] = 3191, + [3175] = 3171, + [3176] = 3176, + [3177] = 3173, + [3178] = 3174, + [3179] = 3179, + [3180] = 3176, + [3181] = 3169, + [3182] = 3182, + [3183] = 3183, + [3184] = 3184, + [3185] = 3182, + [3186] = 3183, + [3187] = 3184, + [3188] = 3172, + [3189] = 3179, + [3190] = 534, + [3191] = 537, [3192] = 3192, - [3193] = 1804, + [3193] = 547, [3194] = 3194, - [3195] = 3195, - [3196] = 344, - [3197] = 3192, + [3195] = 540, + [3196] = 165, + [3197] = 539, [3198] = 3198, - [3199] = 3199, - [3200] = 2388, - [3201] = 2382, - [3202] = 2408, - [3203] = 2343, - [3204] = 2374, - [3205] = 2386, - [3206] = 2389, - [3207] = 2397, - [3208] = 2442, - [3209] = 2322, - [3210] = 2345, - [3211] = 2353, - [3212] = 3192, - [3213] = 2361, - [3214] = 2363, - [3215] = 2364, - [3216] = 2365, - [3217] = 2366, - [3218] = 2368, - [3219] = 2370, - [3220] = 2372, - [3221] = 2375, - [3222] = 2377, - [3223] = 2378, - [3224] = 2444, - [3225] = 2381, - [3226] = 2383, - [3227] = 2385, - [3228] = 2387, - [3229] = 2392, - [3230] = 2394, - [3231] = 2395, - [3232] = 2398, - [3233] = 2400, - [3234] = 2403, - [3235] = 2405, - [3236] = 2407, - [3237] = 2424, - [3238] = 2430, - [3239] = 2432, - [3240] = 2436, - [3241] = 2443, - [3242] = 2350, - [3243] = 2309, - [3244] = 2355, - [3245] = 2404, - [3246] = 2314, - [3247] = 2420, - [3248] = 2367, - [3249] = 2315, - [3250] = 2317, - [3251] = 2318, + [3199] = 540, + [3200] = 320, + [3201] = 547, + [3202] = 539, + [3203] = 363, + [3204] = 534, + [3205] = 1693, + [3206] = 353, + [3207] = 3207, + [3208] = 537, + [3209] = 3209, + [3210] = 3210, + [3211] = 2352, + [3212] = 2359, + [3213] = 2379, + [3214] = 2393, + [3215] = 2378, + [3216] = 2375, + [3217] = 2387, + [3218] = 2391, + [3219] = 2418, + [3220] = 2324, + [3221] = 2414, + [3222] = 2424, + [3223] = 2383, + [3224] = 2386, + [3225] = 2462, + [3226] = 2408, + [3227] = 2413, + [3228] = 2416, + [3229] = 2433, + [3230] = 2445, + [3231] = 2453, + [3232] = 2326, + [3233] = 2331, + [3234] = 2334, + [3235] = 2339, + [3236] = 2351, + [3237] = 2358, + [3238] = 2366, + [3239] = 2370, + [3240] = 2380, + [3241] = 2394, + [3242] = 2402, + [3243] = 2421, + [3244] = 2428, + [3245] = 2434, + [3246] = 2441, + [3247] = 2356, + [3248] = 2396, + [3249] = 2446, + [3250] = 2341, + [3251] = 2345, [3252] = 2357, - [3253] = 2360, - [3254] = 2411, - [3255] = 1701, - [3256] = 2428, - [3257] = 2433, - [3258] = 2319, - [3259] = 2417, - [3260] = 2380, - [3261] = 2401, - [3262] = 2311, - [3263] = 2410, - [3264] = 2419, - [3265] = 2441, - [3266] = 2351, - [3267] = 2421, - [3268] = 2371, - [3269] = 2426, - [3270] = 2354, - [3271] = 2376, - [3272] = 2390, - [3273] = 2312, - [3274] = 2327, - [3275] = 2342, - [3276] = 2347, - [3277] = 2379, - [3278] = 2384, - [3279] = 2391, - [3280] = 2402, - [3281] = 2406, - [3282] = 2409, - [3283] = 2415, - [3284] = 2425, - [3285] = 2320, - [3286] = 2321, - [3287] = 2323, - [3288] = 2324, - [3289] = 2326, - [3290] = 2328, - [3291] = 2329, - [3292] = 2341, - [3293] = 2344, - [3294] = 2346, - [3295] = 2348, - [3296] = 2349, - [3297] = 369, - [3298] = 2330, - [3299] = 2306, - [3300] = 2331, - [3301] = 2332, - [3302] = 2333, - [3303] = 2334, - [3304] = 2335, - [3305] = 2336, - [3306] = 2337, - [3307] = 2338, - [3308] = 2339, - [3309] = 2340, - [3310] = 3192, - [3311] = 370, - [3312] = 317, - [3313] = 342, - [3314] = 339, - [3315] = 346, - [3316] = 3316, - [3317] = 3317, - [3318] = 2423, + [3253] = 2362, + [3254] = 2372, + [3255] = 2398, + [3256] = 2409, + [3257] = 2426, + [3258] = 2448, + [3259] = 2450, + [3260] = 2412, + [3261] = 2328, + [3262] = 2373, + [3263] = 2329, + [3264] = 2354, + [3265] = 2403, + [3266] = 2400, + [3267] = 2364, + [3268] = 2382, + [3269] = 2440, + [3270] = 2344, + [3271] = 2363, + [3272] = 2371, + [3273] = 2388, + [3274] = 2392, + [3275] = 2330, + [3276] = 2335, + [3277] = 2415, + [3278] = 2422, + [3279] = 2332, + [3280] = 2454, + [3281] = 2401, + [3282] = 2384, + [3283] = 3283, + [3284] = 2349, + [3285] = 2452, + [3286] = 2325, + [3287] = 2342, + [3288] = 2347, + [3289] = 2353, + [3290] = 2377, + [3291] = 2427, + [3292] = 2439, + [3293] = 2458, + [3294] = 2327, + [3295] = 340, + [3296] = 2425, + [3297] = 2429, + [3298] = 2430, + [3299] = 2437, + [3300] = 2442, + [3301] = 2447, + [3302] = 2457, + [3303] = 2459, + [3304] = 2455, + [3305] = 2431, + [3306] = 2333, + [3307] = 2399, + [3308] = 341, + [3309] = 3210, + [3310] = 373, + [3311] = 2343, + [3312] = 2406, + [3313] = 2389, + [3314] = 2417, + [3315] = 1693, + [3316] = 2449, + [3317] = 2348, + [3318] = 2456, [3319] = 3319, - [3320] = 339, - [3321] = 3321, - [3322] = 383, - [3323] = 1804, + [3320] = 2407, + [3321] = 2369, + [3322] = 2405, + [3323] = 2411, [3324] = 3324, - [3325] = 387, + [3325] = 3325, [3326] = 3326, - [3327] = 346, + [3327] = 2365, [3328] = 3328, - [3329] = 389, - [3330] = 3330, - [3331] = 3319, - [3332] = 480, - [3333] = 3326, - [3334] = 513, - [3335] = 158, - [3336] = 159, - [3337] = 160, - [3338] = 157, - [3339] = 3339, - [3340] = 2340, - [3341] = 152, - [3342] = 324, - [3343] = 328, - [3344] = 3328, - [3345] = 3330, - [3346] = 2339, - [3347] = 384, - [3348] = 3174, - [3349] = 3177, - [3350] = 342, - [3351] = 2330, - [3352] = 2306, - [3353] = 2331, - [3354] = 2332, - [3355] = 2333, - [3356] = 2334, - [3357] = 2335, - [3358] = 2336, - [3359] = 2337, - [3360] = 2338, - [3361] = 344, - [3362] = 354, - [3363] = 340, - [3364] = 3364, - [3365] = 152, - [3366] = 324, - [3367] = 328, - [3368] = 3364, - [3369] = 324, - [3370] = 328, - [3371] = 362, - [3372] = 153, - [3373] = 154, - [3374] = 343, - [3375] = 358, - [3376] = 3376, - [3377] = 3377, - [3378] = 324, - [3379] = 328, - [3380] = 3376, - [3381] = 3381, - [3382] = 3381, - [3383] = 591, - [3384] = 3384, - [3385] = 1533, - [3386] = 343, - [3387] = 1533, - [3388] = 152, - [3389] = 3389, - [3390] = 153, - [3391] = 154, - [3392] = 352, - [3393] = 3377, - [3394] = 3394, - [3395] = 343, - [3396] = 340, - [3397] = 353, + [3329] = 3210, + [3330] = 343, + [3331] = 339, + [3332] = 320, + [3333] = 370, + [3334] = 1796, + [3335] = 3210, + [3336] = 2443, + [3337] = 3337, + [3338] = 3338, + [3339] = 159, + [3340] = 2437, + [3341] = 2455, + [3342] = 2399, + [3343] = 157, + [3344] = 2333, + [3345] = 339, + [3346] = 2442, + [3347] = 3347, + [3348] = 3348, + [3349] = 3338, + [3350] = 158, + [3351] = 382, + [3352] = 340, + [3353] = 341, + [3354] = 319, + [3355] = 343, + [3356] = 2459, + [3357] = 3347, + [3358] = 3358, + [3359] = 393, + [3360] = 2425, + [3361] = 2431, + [3362] = 3362, + [3363] = 2447, + [3364] = 3194, + [3365] = 2429, + [3366] = 152, + [3367] = 2457, + [3368] = 3348, + [3369] = 478, + [3370] = 3362, + [3371] = 3371, + [3372] = 398, + [3373] = 3198, + [3374] = 1796, + [3375] = 395, + [3376] = 513, + [3377] = 317, + [3378] = 2430, + [3379] = 160, + [3380] = 363, + [3381] = 317, + [3382] = 319, + [3383] = 3383, + [3384] = 152, + [3385] = 346, + [3386] = 342, + [3387] = 3387, + [3388] = 3387, + [3389] = 354, + [3390] = 352, + [3391] = 317, + [3392] = 153, + [3393] = 154, + [3394] = 319, + [3395] = 356, + [3396] = 600, + [3397] = 319, [3398] = 3398, - [3399] = 340, - [3400] = 355, - [3401] = 1391, - [3402] = 360, - [3403] = 153, - [3404] = 362, - [3405] = 672, - [3406] = 352, - [3407] = 674, - [3408] = 626, - [3409] = 353, - [3410] = 152, - [3411] = 355, - [3412] = 360, - [3413] = 354, - [3414] = 343, - [3415] = 154, - [3416] = 340, - [3417] = 1533, - [3418] = 3418, - [3419] = 3389, - [3420] = 3420, - [3421] = 646, - [3422] = 352, - [3423] = 638, - [3424] = 645, - [3425] = 649, - [3426] = 353, - [3427] = 655, - [3428] = 657, - [3429] = 3429, - [3430] = 660, - [3431] = 663, - [3432] = 630, - [3433] = 648, - [3434] = 650, - [3435] = 152, - [3436] = 684, - [3437] = 355, - [3438] = 360, - [3439] = 622, - [3440] = 3384, - [3441] = 3441, - [3442] = 154, - [3443] = 423, - [3444] = 402, - [3445] = 407, - [3446] = 353, - [3447] = 436, - [3448] = 358, - [3449] = 355, - [3450] = 360, - [3451] = 153, - [3452] = 447, - [3453] = 448, - [3454] = 411, - [3455] = 412, - [3456] = 205, - [3457] = 356, - [3458] = 427, - [3459] = 441, - [3460] = 442, - [3461] = 401, - [3462] = 445, - [3463] = 1733, - [3464] = 437, - [3465] = 414, - [3466] = 438, - [3467] = 429, + [3399] = 3399, + [3400] = 3400, + [3401] = 346, + [3402] = 3402, + [3403] = 1538, + [3404] = 3404, + [3405] = 152, + [3406] = 1404, + [3407] = 358, + [3408] = 360, + [3409] = 1538, + [3410] = 361, + [3411] = 3411, + [3412] = 342, + [3413] = 342, + [3414] = 3400, + [3415] = 3383, + [3416] = 153, + [3417] = 154, + [3418] = 317, + [3419] = 3404, + [3420] = 346, + [3421] = 152, + [3422] = 3422, + [3423] = 358, + [3424] = 356, + [3425] = 354, + [3426] = 619, + [3427] = 352, + [3428] = 358, + [3429] = 648, + [3430] = 3430, + [3431] = 154, + [3432] = 3432, + [3433] = 361, + [3434] = 3411, + [3435] = 668, + [3436] = 342, + [3437] = 346, + [3438] = 689, + [3439] = 693, + [3440] = 3402, + [3441] = 360, + [3442] = 360, + [3443] = 644, + [3444] = 614, + [3445] = 615, + [3446] = 626, + [3447] = 361, + [3448] = 617, + [3449] = 634, + [3450] = 665, + [3451] = 659, + [3452] = 356, + [3453] = 618, + [3454] = 3454, + [3455] = 643, + [3456] = 152, + [3457] = 688, + [3458] = 153, + [3459] = 1538, + [3460] = 448, + [3461] = 205, + [3462] = 402, + [3463] = 361, + [3464] = 404, + [3465] = 399, + [3466] = 407, + [3467] = 409, [3468] = 152, - [3469] = 417, - [3470] = 3470, - [3471] = 420, - [3472] = 352, - [3473] = 405, - [3474] = 421, - [3475] = 1661, - [3476] = 608, - [3477] = 426, - [3478] = 152, - [3479] = 3479, - [3480] = 683, - [3481] = 481, - [3482] = 153, - [3483] = 156, - [3484] = 637, - [3485] = 154, - [3486] = 625, - [3487] = 682, - [3488] = 692, - [3489] = 612, - [3490] = 611, - [3491] = 613, - [3492] = 621, - [3493] = 661, - [3494] = 662, - [3495] = 643, - [3496] = 680, - [3497] = 639, - [3498] = 632, - [3499] = 206, - [3500] = 614, - [3501] = 656, - [3502] = 633, - [3503] = 620, - [3504] = 685, - [3505] = 616, - [3506] = 155, - [3507] = 619, - [3508] = 623, - [3509] = 370, - [3510] = 647, - [3511] = 675, - [3512] = 153, - [3513] = 369, - [3514] = 3152, - [3515] = 688, - [3516] = 641, - [3517] = 636, - [3518] = 635, - [3519] = 510, - [3520] = 667, - [3521] = 154, - [3522] = 668, - [3523] = 686, - [3524] = 677, - [3525] = 653, - [3526] = 669, - [3527] = 671, - [3528] = 640, - [3529] = 511, - [3530] = 512, - [3531] = 3152, - [3532] = 631, - [3533] = 481, - [3534] = 510, - [3535] = 423, - [3536] = 429, - [3537] = 436, - [3538] = 384, - [3539] = 421, - [3540] = 445, - [3541] = 163, - [3542] = 426, - [3543] = 155, - [3544] = 511, - [3545] = 512, - [3546] = 401, - [3547] = 156, - [3548] = 159, - [3549] = 402, - [3550] = 480, - [3551] = 159, - [3552] = 414, - [3553] = 160, - [3554] = 513, - [3555] = 437, - [3556] = 157, - [3557] = 162, - [3558] = 387, - [3559] = 161, - [3560] = 3152, - [3561] = 160, - [3562] = 441, - [3563] = 383, - [3564] = 417, - [3565] = 442, - [3566] = 427, - [3567] = 412, - [3568] = 411, - [3569] = 3152, - [3570] = 447, - [3571] = 420, - [3572] = 448, - [3573] = 1610, - [3574] = 362, - [3575] = 438, - [3576] = 389, - [3577] = 407, - [3578] = 354, - [3579] = 324, - [3580] = 405, - [3581] = 152, - [3582] = 155, - [3583] = 156, - [3584] = 158, - [3585] = 157, - [3586] = 158, - [3587] = 328, - [3588] = 3588, - [3589] = 328, - [3590] = 164, - [3591] = 163, - [3592] = 324, - [3593] = 340, - [3594] = 455, - [3595] = 536, - [3596] = 162, - [3597] = 3597, - [3598] = 163, - [3599] = 2087, - [3600] = 161, - [3601] = 1680, - [3602] = 3602, - [3603] = 464, - [3604] = 473, - [3605] = 528, - [3606] = 161, - [3607] = 3607, - [3608] = 2111, - [3609] = 529, - [3610] = 527, - [3611] = 1658, - [3612] = 526, - [3613] = 455, - [3614] = 162, - [3615] = 343, + [3469] = 353, + [3470] = 410, + [3471] = 403, + [3472] = 411, + [3473] = 412, + [3474] = 414, + [3475] = 1701, + [3476] = 153, + [3477] = 598, + [3478] = 418, + [3479] = 419, + [3480] = 420, + [3481] = 422, + [3482] = 356, + [3483] = 363, + [3484] = 154, + [3485] = 358, + [3486] = 433, + [3487] = 444, + [3488] = 445, + [3489] = 1708, + [3490] = 417, + [3491] = 446, + [3492] = 152, + [3493] = 423, + [3494] = 360, + [3495] = 415, + [3496] = 3496, + [3497] = 675, + [3498] = 657, + [3499] = 638, + [3500] = 660, + [3501] = 664, + [3502] = 153, + [3503] = 683, + [3504] = 686, + [3505] = 670, + [3506] = 611, + [3507] = 636, + [3508] = 373, + [3509] = 621, + [3510] = 631, + [3511] = 154, + [3512] = 639, + [3513] = 649, + [3514] = 680, + [3515] = 613, + [3516] = 632, + [3517] = 637, + [3518] = 671, + [3519] = 625, + [3520] = 682, + [3521] = 654, + [3522] = 500, + [3523] = 155, + [3524] = 482, + [3525] = 483, + [3526] = 156, + [3527] = 681, + [3528] = 487, + [3529] = 641, + [3530] = 676, + [3531] = 661, + [3532] = 647, + [3533] = 635, + [3534] = 640, + [3535] = 656, + [3536] = 645, + [3537] = 154, + [3538] = 692, + [3539] = 655, + [3540] = 669, + [3541] = 3541, + [3542] = 684, + [3543] = 370, + [3544] = 3169, + [3545] = 612, + [3546] = 206, + [3547] = 153, + [3548] = 3169, + [3549] = 678, + [3550] = 628, + [3551] = 420, + [3552] = 418, + [3553] = 482, + [3554] = 395, + [3555] = 382, + [3556] = 419, + [3557] = 483, + [3558] = 3169, + [3559] = 155, + [3560] = 156, + [3561] = 487, + [3562] = 157, + [3563] = 422, + [3564] = 158, + [3565] = 433, + [3566] = 444, + [3567] = 445, + [3568] = 159, + [3569] = 446, + [3570] = 160, + [3571] = 398, + [3572] = 500, + [3573] = 157, + [3574] = 158, + [3575] = 319, + [3576] = 161, + [3577] = 354, + [3578] = 352, + [3579] = 152, + [3580] = 160, + [3581] = 162, + [3582] = 163, + [3583] = 448, + [3584] = 423, + [3585] = 415, + [3586] = 417, + [3587] = 402, + [3588] = 1639, + [3589] = 404, + [3590] = 478, + [3591] = 513, + [3592] = 393, + [3593] = 399, + [3594] = 155, + [3595] = 156, + [3596] = 403, + [3597] = 414, + [3598] = 407, + [3599] = 3169, + [3600] = 409, + [3601] = 410, + [3602] = 317, + [3603] = 411, + [3604] = 412, + [3605] = 159, + [3606] = 162, + [3607] = 161, + [3608] = 342, + [3609] = 363, + [3610] = 3610, + [3611] = 547, + [3612] = 319, + [3613] = 1655, + [3614] = 3614, + [3615] = 3615, [3616] = 3616, - [3617] = 358, - [3618] = 608, - [3619] = 3619, - [3620] = 1701, - [3621] = 1644, - [3622] = 1733, - [3623] = 1865, - [3624] = 1831, - [3625] = 1866, - [3626] = 1867, - [3627] = 1868, - [3628] = 1869, - [3629] = 1870, - [3630] = 3630, - [3631] = 623, - [3632] = 360, - [3633] = 632, - [3634] = 671, - [3635] = 343, - [3636] = 527, - [3637] = 633, - [3638] = 3638, - [3639] = 526, - [3640] = 635, - [3641] = 2087, - [3642] = 1837, - [3643] = 1838, - [3644] = 675, - [3645] = 1858, - [3646] = 1842, - [3647] = 1843, - [3648] = 686, - [3649] = 682, - [3650] = 692, - [3651] = 647, - [3652] = 639, - [3653] = 1661, - [3654] = 653, - [3655] = 683, - [3656] = 661, - [3657] = 662, - [3658] = 455, - [3659] = 611, - [3660] = 667, - [3661] = 612, - [3662] = 536, - [3663] = 640, - [3664] = 526, - [3665] = 352, - [3666] = 3666, - [3667] = 613, - [3668] = 3668, - [3669] = 1864, - [3670] = 616, - [3671] = 1814, - [3672] = 1795, - [3673] = 527, - [3674] = 1859, - [3675] = 688, - [3676] = 619, - [3677] = 643, - [3678] = 1736, - [3679] = 1737, - [3680] = 1637, - [3681] = 1638, - [3682] = 353, - [3683] = 2087, - [3684] = 455, - [3685] = 528, - [3686] = 1641, - [3687] = 621, - [3688] = 680, - [3689] = 536, - [3690] = 620, - [3691] = 669, - [3692] = 529, - [3693] = 355, - [3694] = 1860, - [3695] = 528, - [3696] = 529, - [3697] = 1861, - [3698] = 641, - [3699] = 668, - [3700] = 625, - [3701] = 3701, - [3702] = 631, - [3703] = 656, - [3704] = 685, - [3705] = 164, - [3706] = 677, - [3707] = 637, - [3708] = 340, - [3709] = 1862, - [3710] = 636, - [3711] = 1863, - [3712] = 614, - [3713] = 2365, - [3714] = 2329, - [3715] = 2421, - [3716] = 2353, - [3717] = 2411, - [3718] = 2423, - [3719] = 2428, - [3720] = 2371, - [3721] = 2433, - [3722] = 2426, - [3723] = 3723, - [3724] = 2354, - [3725] = 528, - [3726] = 2344, - [3727] = 529, - [3728] = 2319, - [3729] = 2417, - [3730] = 3723, - [3731] = 2380, - [3732] = 2346, - [3733] = 2376, - [3734] = 536, - [3735] = 2390, - [3736] = 2312, - [3737] = 657, - [3738] = 2327, - [3739] = 660, - [3740] = 3723, - [3741] = 622, - [3742] = 2322, - [3743] = 2374, - [3744] = 2408, - [3745] = 2345, - [3746] = 2342, - [3747] = 2388, - [3748] = 2361, - [3749] = 2386, - [3750] = 2363, - [3751] = 2347, - [3752] = 2379, - [3753] = 526, - [3754] = 2384, - [3755] = 2364, - [3756] = 2341, - [3757] = 353, - [3758] = 2391, - [3759] = 2401, - [3760] = 2366, - [3761] = 3723, - [3762] = 3723, - [3763] = 2311, - [3764] = 2368, - [3765] = 352, - [3766] = 2370, - [3767] = 2372, - [3768] = 2375, - [3769] = 2377, - [3770] = 2378, - [3771] = 630, - [3772] = 648, - [3773] = 650, - [3774] = 2444, - [3775] = 3723, - [3776] = 2381, - [3777] = 2383, - [3778] = 3723, - [3779] = 3638, - [3780] = 2385, - [3781] = 2387, - [3782] = 2392, - [3783] = 2394, - [3784] = 2315, - [3785] = 2395, - [3786] = 2398, - [3787] = 2400, - [3788] = 684, - [3789] = 2403, - [3790] = 2405, - [3791] = 2407, - [3792] = 2424, - [3793] = 2430, - [3794] = 2432, - [3795] = 2402, - [3796] = 2382, - [3797] = 2436, - [3798] = 672, - [3799] = 2443, - [3800] = 2406, - [3801] = 674, - [3802] = 2350, - [3803] = 2409, - [3804] = 2309, - [3805] = 2355, - [3806] = 2348, - [3807] = 2404, - [3808] = 663, - [3809] = 2415, - [3810] = 2314, - [3811] = 2425, - [3812] = 2420, - [3813] = 2389, - [3814] = 638, - [3815] = 645, - [3816] = 2317, - [3817] = 2367, - [3818] = 626, - [3819] = 3723, - [3820] = 3666, - [3821] = 2397, - [3822] = 2318, - [3823] = 2357, - [3824] = 655, - [3825] = 2410, - [3826] = 2349, - [3827] = 1701, - [3828] = 2360, - [3829] = 2419, - [3830] = 2441, - [3831] = 527, - [3832] = 2351, - [3833] = 1701, - [3834] = 649, - [3835] = 360, - [3836] = 2320, - [3837] = 2321, - [3838] = 2323, - [3839] = 2324, - [3840] = 2326, - [3841] = 2442, - [3842] = 355, - [3843] = 2328, - [3844] = 2343, - [3845] = 2093, - [3846] = 2103, - [3847] = 2101, - [3848] = 3848, - [3849] = 3174, - [3850] = 2145, - [3851] = 3851, - [3852] = 3852, - [3853] = 2337, - [3854] = 2095, - [3855] = 3855, - [3856] = 2110, - [3857] = 2096, - [3858] = 3858, - [3859] = 3859, - [3860] = 3860, - [3861] = 536, - [3862] = 3177, + [3617] = 1693, + [3618] = 162, + [3619] = 163, + [3620] = 479, + [3621] = 161, + [3622] = 509, + [3623] = 317, + [3624] = 1998, + [3625] = 3625, + [3626] = 3626, + [3627] = 163, + [3628] = 454, + [3629] = 165, + [3630] = 534, + [3631] = 509, + [3632] = 1707, + [3633] = 537, + [3634] = 2173, + [3635] = 346, + [3636] = 598, + [3637] = 539, + [3638] = 540, + [3639] = 1766, + [3640] = 613, + [3641] = 1701, + [3642] = 638, + [3643] = 656, + [3644] = 360, + [3645] = 637, + [3646] = 346, + [3647] = 3647, + [3648] = 682, + [3649] = 612, + [3650] = 649, + [3651] = 534, + [3652] = 661, + [3653] = 678, + [3654] = 683, + [3655] = 686, + [3656] = 1708, + [3657] = 509, + [3658] = 611, + [3659] = 621, + [3660] = 625, + [3661] = 628, + [3662] = 647, + [3663] = 635, + [3664] = 636, + [3665] = 537, + [3666] = 655, + [3667] = 534, + [3668] = 537, + [3669] = 3669, + [3670] = 1884, + [3671] = 539, + [3672] = 540, + [3673] = 1892, + [3674] = 657, + [3675] = 1948, + [3676] = 1952, + [3677] = 660, + [3678] = 1962, + [3679] = 1969, + [3680] = 670, + [3681] = 1861, + [3682] = 681, + [3683] = 1862, + [3684] = 1866, + [3685] = 1872, + [3686] = 547, + [3687] = 680, + [3688] = 1875, + [3689] = 1881, + [3690] = 639, + [3691] = 640, + [3692] = 641, + [3693] = 547, + [3694] = 1815, + [3695] = 1818, + [3696] = 3696, + [3697] = 676, + [3698] = 1998, + [3699] = 539, + [3700] = 540, + [3701] = 1732, + [3702] = 1737, + [3703] = 654, + [3704] = 669, + [3705] = 671, + [3706] = 3706, + [3707] = 645, + [3708] = 358, + [3709] = 342, + [3710] = 664, + [3711] = 165, + [3712] = 1751, + [3713] = 1755, + [3714] = 684, + [3715] = 692, + [3716] = 1998, + [3717] = 509, + [3718] = 1765, + [3719] = 1597, + [3720] = 1599, + [3721] = 1605, + [3722] = 1606, + [3723] = 631, + [3724] = 3724, + [3725] = 356, + [3726] = 361, + [3727] = 675, + [3728] = 632, + [3729] = 1874, + [3730] = 540, + [3731] = 2454, + [3732] = 2401, + [3733] = 2384, + [3734] = 2349, + [3735] = 2443, + [3736] = 2452, + [3737] = 2325, + [3738] = 2342, + [3739] = 2347, + [3740] = 2353, + [3741] = 2377, + [3742] = 2427, + [3743] = 2439, + [3744] = 2458, + [3745] = 2327, + [3746] = 2389, + [3747] = 665, + [3748] = 2417, + [3749] = 2449, + [3750] = 688, + [3751] = 3696, + [3752] = 3752, + [3753] = 547, + [3754] = 615, + [3755] = 2348, + [3756] = 659, + [3757] = 2456, + [3758] = 2407, + [3759] = 1693, + [3760] = 2369, + [3761] = 2405, + [3762] = 2411, + [3763] = 2365, + [3764] = 3752, + [3765] = 361, + [3766] = 2352, + [3767] = 1693, + [3768] = 2359, + [3769] = 2379, + [3770] = 2393, + [3771] = 2378, + [3772] = 2375, + [3773] = 2387, + [3774] = 2391, + [3775] = 2418, + [3776] = 2324, + [3777] = 2414, + [3778] = 2424, + [3779] = 2383, + [3780] = 2386, + [3781] = 2462, + [3782] = 2408, + [3783] = 2413, + [3784] = 2416, + [3785] = 2433, + [3786] = 2445, + [3787] = 2453, + [3788] = 2326, + [3789] = 2331, + [3790] = 2334, + [3791] = 2339, + [3792] = 356, + [3793] = 2351, + [3794] = 358, + [3795] = 2358, + [3796] = 3669, + [3797] = 2366, + [3798] = 2370, + [3799] = 2380, + [3800] = 534, + [3801] = 2394, + [3802] = 2332, + [3803] = 2421, + [3804] = 2428, + [3805] = 2434, + [3806] = 3752, + [3807] = 2441, + [3808] = 2406, + [3809] = 2343, + [3810] = 2356, + [3811] = 2396, + [3812] = 689, + [3813] = 2446, + [3814] = 2341, + [3815] = 3752, + [3816] = 2345, + [3817] = 2357, + [3818] = 2362, + [3819] = 3752, + [3820] = 3752, + [3821] = 643, + [3822] = 644, + [3823] = 2372, + [3824] = 3752, + [3825] = 2398, + [3826] = 2409, + [3827] = 2426, + [3828] = 648, + [3829] = 693, + [3830] = 2448, + [3831] = 2450, + [3832] = 360, + [3833] = 3752, + [3834] = 2412, + [3835] = 2328, + [3836] = 2373, + [3837] = 2329, + [3838] = 614, + [3839] = 2354, + [3840] = 2403, + [3841] = 2400, + [3842] = 2364, + [3843] = 537, + [3844] = 2382, + [3845] = 617, + [3846] = 2440, + [3847] = 2344, + [3848] = 539, + [3849] = 634, + [3850] = 618, + [3851] = 2363, + [3852] = 2371, + [3853] = 2388, + [3854] = 2392, + [3855] = 2330, + [3856] = 619, + [3857] = 2335, + [3858] = 626, + [3859] = 2415, + [3860] = 2422, + [3861] = 2402, + [3862] = 3862, [3863] = 3863, [3864] = 3864, - [3865] = 1701, - [3866] = 2107, + [3865] = 3865, + [3866] = 2139, [3867] = 3867, - [3868] = 2105, + [3868] = 3868, [3869] = 3869, [3870] = 3870, [3871] = 3871, - [3872] = 3863, - [3873] = 3873, - [3874] = 3874, - [3875] = 3875, - [3876] = 3860, - [3877] = 3877, - [3878] = 2097, - [3879] = 2332, - [3880] = 2104, - [3881] = 2330, - [3882] = 2331, - [3883] = 3883, - [3884] = 2338, - [3885] = 3885, - [3886] = 3886, - [3887] = 3887, - [3888] = 3888, - [3889] = 3889, - [3890] = 3883, - [3891] = 2102, - [3892] = 3892, - [3893] = 2340, - [3894] = 2155, - [3895] = 2339, - [3896] = 2143, - [3897] = 2098, - [3898] = 3898, - [3899] = 2306, - [3900] = 2333, - [3901] = 3901, - [3902] = 2099, - [3903] = 3863, - [3904] = 2334, - [3905] = 2144, - [3906] = 2106, - [3907] = 2108, - [3908] = 3860, - [3909] = 3909, - [3910] = 2100, - [3911] = 2335, + [3872] = 3872, + [3873] = 3194, + [3874] = 3198, + [3875] = 2134, + [3876] = 2425, + [3877] = 2111, + [3878] = 2429, + [3879] = 1693, + [3880] = 2117, + [3881] = 2430, + [3882] = 2122, + [3883] = 2437, + [3884] = 3884, + [3885] = 2132, + [3886] = 2442, + [3887] = 2162, + [3888] = 2447, + [3889] = 2129, + [3890] = 2174, + [3891] = 2457, + [3892] = 3872, + [3893] = 2158, + [3894] = 2459, + [3895] = 2161, + [3896] = 3896, + [3897] = 2135, + [3898] = 2113, + [3899] = 2455, + [3900] = 2098, + [3901] = 2431, + [3902] = 2130, + [3903] = 2121, + [3904] = 2097, + [3905] = 2399, + [3906] = 3906, + [3907] = 2114, + [3908] = 2131, + [3909] = 2160, + [3910] = 3910, + [3911] = 3911, [3912] = 3912, - [3913] = 2336, + [3913] = 3913, [3914] = 3914, - [3915] = 2339, - [3916] = 3916, - [3917] = 2337, - [3918] = 2338, - [3919] = 3916, - [3920] = 2336, - [3921] = 2306, - [3922] = 2338, - [3923] = 2306, - [3924] = 2333, + [3915] = 3868, + [3916] = 3906, + [3917] = 3917, + [3918] = 3918, + [3919] = 3919, + [3920] = 3868, + [3921] = 3906, + [3922] = 3922, + [3923] = 3923, + [3924] = 3924, [3925] = 3925, - [3926] = 2339, - [3927] = 3916, - [3928] = 2340, - [3929] = 2333, - [3930] = 3916, - [3931] = 2332, + [3926] = 3926, + [3927] = 547, + [3928] = 3928, + [3929] = 3929, + [3930] = 3930, + [3931] = 2333, [3932] = 3932, - [3933] = 2340, - [3934] = 2334, - [3935] = 2337, - [3936] = 2330, - [3937] = 2332, - [3938] = 2335, - [3939] = 2334, - [3940] = 2331, - [3941] = 3916, - [3942] = 3852, - [3943] = 2335, - [3944] = 2330, - [3945] = 3916, - [3946] = 2331, - [3947] = 3916, - [3948] = 2336, - [3949] = 3916, - [3950] = 3916, - [3951] = 3951, - [3952] = 3851, - [3953] = 3953, - [3954] = 3588, - [3955] = 3955, + [3933] = 2447, + [3934] = 2457, + [3935] = 2459, + [3936] = 2455, + [3937] = 2431, + [3938] = 2333, + [3939] = 2399, + [3940] = 3940, + [3941] = 3932, + [3942] = 3942, + [3943] = 3932, + [3944] = 3932, + [3945] = 3932, + [3946] = 2429, + [3947] = 2437, + [3948] = 2442, + [3949] = 2437, + [3950] = 3932, + [3951] = 3871, + [3952] = 2442, + [3953] = 2447, + [3954] = 2457, + [3955] = 2459, [3956] = 3956, - [3957] = 3957, - [3958] = 3958, - [3959] = 3959, - [3960] = 3953, - [3961] = 3961, - [3962] = 3597, - [3963] = 3955, - [3964] = 3956, - [3965] = 3957, - [3966] = 3958, - [3967] = 3959, - [3968] = 3968, - [3969] = 3961, - [3970] = 3602, - [3971] = 3616, - [3972] = 3607, - [3973] = 3619, - [3974] = 3961, - [3975] = 3961, - [3976] = 3961, - [3977] = 3961, - [3978] = 3961, - [3979] = 3968, - [3980] = 310, - [3981] = 322, - [3982] = 310, - [3983] = 316, - [3984] = 322, - [3985] = 316, - [3986] = 310, - [3987] = 328, - [3988] = 324, - [3989] = 324, - [3990] = 340, - [3991] = 328, - [3992] = 310, - [3993] = 343, - [3994] = 317, - [3995] = 1289, - [3996] = 322, - [3997] = 316, - [3998] = 355, - [3999] = 324, - [4000] = 328, - [4001] = 322, - [4002] = 356, - [4003] = 343, - [4004] = 340, - [4005] = 352, - [4006] = 353, - [4007] = 316, - [4008] = 360, - [4009] = 358, - [4010] = 1289, - [4011] = 317, - [4012] = 344, - [4013] = 342, - [4014] = 339, - [4015] = 346, - [4016] = 362, - [4017] = 354, - [4018] = 1289, - [4019] = 356, - [4020] = 369, - [4021] = 328, - [4022] = 370, - [4023] = 352, - [4024] = 340, - [4025] = 344, - [4026] = 205, - [4027] = 342, - [4028] = 339, - [4029] = 346, - [4030] = 358, - [4031] = 353, - [4032] = 343, - [4033] = 355, - [4034] = 324, - [4035] = 310, - [4036] = 362, - [4037] = 354, - [4038] = 360, - [4039] = 352, - [4040] = 317, - [4041] = 384, - [4042] = 362, - [4043] = 358, - [4044] = 383, - [4045] = 354, - [4046] = 387, - [4047] = 389, - [4048] = 340, - [4049] = 353, - [4050] = 355, - [4051] = 1289, - [4052] = 360, - [4053] = 356, - [4054] = 324, - [4055] = 328, - [4056] = 206, - [4057] = 152, - [4058] = 369, - [4059] = 385, - [4060] = 388, - [4061] = 370, - [4062] = 322, - [4063] = 343, - [4064] = 316, - [4065] = 389, - [4066] = 346, - [4067] = 152, - [4068] = 369, - [4069] = 154, - [4070] = 358, - [4071] = 355, - [4072] = 343, - [4073] = 340, - [4074] = 360, - [4075] = 362, - [4076] = 1391, - [4077] = 385, - [4078] = 388, - [4079] = 384, - [4080] = 354, - [4081] = 383, - [4082] = 370, - [4083] = 356, - [4084] = 352, - [4085] = 358, - [4086] = 387, - [4087] = 356, - [4088] = 344, - [4089] = 353, + [3957] = 2425, + [3958] = 3867, + [3959] = 2431, + [3960] = 2430, + [3961] = 3932, + [3962] = 2333, + [3963] = 2399, + [3964] = 2455, + [3965] = 3932, + [3966] = 2425, + [3967] = 2429, + [3968] = 2430, + [3969] = 3932, + [3970] = 3970, + [3971] = 3971, + [3972] = 3610, + [3973] = 3973, + [3974] = 3974, + [3975] = 3975, + [3976] = 3625, + [3977] = 3977, + [3978] = 3978, + [3979] = 3614, + [3980] = 3980, + [3981] = 3980, + [3982] = 3980, + [3983] = 3980, + [3984] = 3980, + [3985] = 3974, + [3986] = 3980, + [3987] = 3978, + [3988] = 3615, + [3989] = 3971, + [3990] = 3973, + [3991] = 3616, + [3992] = 3980, + [3993] = 3975, + [3994] = 3970, + [3995] = 3626, + [3996] = 313, + [3997] = 3977, + [3998] = 336, + [3999] = 313, + [4000] = 335, + [4001] = 313, + [4002] = 317, + [4003] = 336, + [4004] = 319, + [4005] = 335, + [4006] = 317, + [4007] = 320, + [4008] = 346, + [4009] = 342, + [4010] = 313, + [4011] = 336, + [4012] = 335, + [4013] = 319, + [4014] = 1333, + [4015] = 353, + [4016] = 361, + [4017] = 342, + [4018] = 346, + [4019] = 360, + [4020] = 319, + [4021] = 343, + [4022] = 336, + [4023] = 356, + [4024] = 335, + [4025] = 363, + [4026] = 339, + [4027] = 354, + [4028] = 352, + [4029] = 340, + [4030] = 341, + [4031] = 358, + [4032] = 317, + [4033] = 320, + [4034] = 1333, + [4035] = 373, + [4036] = 358, + [4037] = 353, + [4038] = 370, + [4039] = 360, + [4040] = 319, + [4041] = 361, + [4042] = 339, + [4043] = 340, + [4044] = 341, + [4045] = 356, + [4046] = 343, + [4047] = 342, + [4048] = 313, + [4049] = 205, + [4050] = 363, + [4051] = 354, + [4052] = 346, + [4053] = 1333, + [4054] = 352, + [4055] = 317, + [4056] = 342, + [4057] = 346, + [4058] = 382, + [4059] = 393, + [4060] = 206, + [4061] = 360, + [4062] = 317, + [4063] = 395, + [4064] = 319, + [4065] = 373, + [4066] = 335, + [4067] = 353, + [4068] = 380, + [4069] = 398, + [4070] = 152, + [4071] = 358, + [4072] = 356, + [4073] = 1333, + [4074] = 361, + [4075] = 354, + [4076] = 363, + [4077] = 352, + [4078] = 370, + [4079] = 320, + [4080] = 336, + [4081] = 385, + [4082] = 341, + [4083] = 343, + [4084] = 370, + [4085] = 152, + [4086] = 382, + [4087] = 373, + [4088] = 346, + [4089] = 360, [4090] = 153, - [4091] = 2514, - [4092] = 342, - [4093] = 339, - [4094] = 354, - [4095] = 352, - [4096] = 4096, - [4097] = 153, - [4098] = 154, - [4099] = 384, - [4100] = 152, - [4101] = 353, - [4102] = 4102, - [4103] = 4103, - [4104] = 156, - [4105] = 4105, - [4106] = 355, - [4107] = 369, - [4108] = 360, - [4109] = 369, - [4110] = 370, - [4111] = 358, - [4112] = 387, - [4113] = 1391, - [4114] = 370, - [4115] = 358, - [4116] = 388, - [4117] = 389, - [4118] = 362, - [4119] = 158, - [4120] = 159, - [4121] = 160, - [4122] = 356, - [4123] = 157, - [4124] = 356, - [4125] = 155, - [4126] = 383, - [4127] = 385, - [4128] = 154, - [4129] = 2623, - [4130] = 369, - [4131] = 358, - [4132] = 370, - [4133] = 527, - [4134] = 4102, - [4135] = 153, - [4136] = 4105, - [4137] = 362, - [4138] = 369, - [4139] = 161, - [4140] = 385, - [4141] = 528, - [4142] = 529, - [4143] = 449, - [4144] = 450, - [4145] = 370, - [4146] = 162, - [4147] = 163, - [4148] = 158, - [4149] = 159, - [4150] = 160, - [4151] = 157, - [4152] = 4152, - [4153] = 451, - [4154] = 4154, - [4155] = 388, - [4156] = 4156, - [4157] = 354, - [4158] = 384, - [4159] = 2602, - [4160] = 356, - [4161] = 4103, - [4162] = 383, - [4163] = 387, - [4164] = 2627, - [4165] = 2628, - [4166] = 445, - [4167] = 389, - [4168] = 544, - [4169] = 447, - [4170] = 515, - [4171] = 518, - [4172] = 405, - [4173] = 532, - [4174] = 407, - [4175] = 411, - [4176] = 537, - [4177] = 412, - [4178] = 414, - [4179] = 417, - [4180] = 420, - [4181] = 421, - [4182] = 426, - [4183] = 427, - [4184] = 429, - [4185] = 436, - [4186] = 437, - [4187] = 438, - [4188] = 441, - [4189] = 442, - [4190] = 401, - [4191] = 402, - [4192] = 423, - [4193] = 384, + [4091] = 361, + [4092] = 398, + [4093] = 342, + [4094] = 385, + [4095] = 353, + [4096] = 363, + [4097] = 352, + [4098] = 358, + [4099] = 393, + [4100] = 380, + [4101] = 339, + [4102] = 340, + [4103] = 1404, + [4104] = 363, + [4105] = 395, + [4106] = 353, + [4107] = 154, + [4108] = 356, + [4109] = 2521, + [4110] = 354, + [4111] = 153, + [4112] = 361, + [4113] = 363, + [4114] = 152, + [4115] = 1404, + [4116] = 382, + [4117] = 356, + [4118] = 158, + [4119] = 155, + [4120] = 380, + [4121] = 370, + [4122] = 373, + [4123] = 354, + [4124] = 4124, + [4125] = 4125, + [4126] = 353, + [4127] = 358, + [4128] = 393, + [4129] = 360, + [4130] = 160, + [4131] = 363, + [4132] = 353, + [4133] = 385, + [4134] = 4134, + [4135] = 156, + [4136] = 159, + [4137] = 395, + [4138] = 398, + [4139] = 157, + [4140] = 352, + [4141] = 4141, + [4142] = 154, + [4143] = 373, + [4144] = 370, + [4145] = 403, + [4146] = 547, + [4147] = 417, + [4148] = 352, + [4149] = 446, + [4150] = 537, + [4151] = 523, + [4152] = 154, + [4153] = 2644, + [4154] = 2656, + [4155] = 543, + [4156] = 370, + [4157] = 393, + [4158] = 353, + [4159] = 155, + [4160] = 156, + [4161] = 2632, + [4162] = 423, + [4163] = 399, + [4164] = 535, + [4165] = 354, + [4166] = 373, + [4167] = 2663, + [4168] = 407, + [4169] = 395, + [4170] = 410, + [4171] = 539, + [4172] = 540, + [4173] = 415, + [4174] = 4174, + [4175] = 161, + [4176] = 2655, + [4177] = 534, + [4178] = 400, + [4179] = 382, + [4180] = 541, + [4181] = 548, + [4182] = 411, + [4183] = 363, + [4184] = 385, + [4185] = 4141, + [4186] = 430, + [4187] = 157, + [4188] = 398, + [4189] = 4189, + [4190] = 402, + [4191] = 412, + [4192] = 393, + [4193] = 398, [4194] = 4194, - [4195] = 2601, - [4196] = 448, - [4197] = 383, - [4198] = 152, - [4199] = 155, - [4200] = 156, - [4201] = 387, - [4202] = 2636, - [4203] = 389, - [4204] = 2622, - [4205] = 536, - [4206] = 4206, - [4207] = 526, - [4208] = 405, - [4209] = 510, - [4210] = 4210, - [4211] = 387, + [4195] = 158, + [4196] = 159, + [4197] = 380, + [4198] = 2657, + [4199] = 414, + [4200] = 4124, + [4201] = 409, + [4202] = 444, + [4203] = 4125, + [4204] = 404, + [4205] = 370, + [4206] = 418, + [4207] = 419, + [4208] = 153, + [4209] = 382, + [4210] = 420, + [4211] = 160, [4212] = 4212, - [4213] = 544, - [4214] = 164, - [4215] = 4206, - [4216] = 448, - [4217] = 354, - [4218] = 515, - [4219] = 528, - [4220] = 518, - [4221] = 4210, - [4222] = 389, - [4223] = 4194, - [4224] = 387, - [4225] = 532, - [4226] = 384, - [4227] = 4156, - [4228] = 537, - [4229] = 383, - [4230] = 389, - [4231] = 529, - [4232] = 370, - [4233] = 451, - [4234] = 464, - [4235] = 4235, - [4236] = 536, - [4237] = 450, - [4238] = 158, - [4239] = 159, - [4240] = 473, - [4241] = 160, - [4242] = 4154, - [4243] = 157, - [4244] = 152, - [4245] = 455, - [4246] = 445, - [4247] = 383, - [4248] = 155, - [4249] = 156, - [4250] = 369, - [4251] = 447, - [4252] = 511, - [4253] = 512, - [4254] = 481, - [4255] = 384, - [4256] = 362, - [4257] = 4257, - [4258] = 526, - [4259] = 407, - [4260] = 411, - [4261] = 4210, - [4262] = 412, - [4263] = 449, - [4264] = 414, - [4265] = 1701, - [4266] = 385, + [4213] = 422, + [4214] = 448, + [4215] = 2642, + [4216] = 373, + [4217] = 395, + [4218] = 445, + [4219] = 433, + [4220] = 162, + [4221] = 163, + [4222] = 449, + [4223] = 4223, + [4224] = 152, + [4225] = 159, + [4226] = 419, + [4227] = 478, + [4228] = 420, + [4229] = 373, + [4230] = 4223, + [4231] = 399, + [4232] = 395, + [4233] = 422, + [4234] = 4234, + [4235] = 153, + [4236] = 454, + [4237] = 352, + [4238] = 433, + [4239] = 444, + [4240] = 400, + [4241] = 4241, + [4242] = 407, + [4243] = 445, + [4244] = 534, + [4245] = 479, + [4246] = 402, + [4247] = 4194, + [4248] = 446, + [4249] = 382, + [4250] = 482, + [4251] = 535, + [4252] = 161, + [4253] = 541, + [4254] = 483, + [4255] = 380, + [4256] = 398, + [4257] = 448, + [4258] = 513, + [4259] = 4241, + [4260] = 423, + [4261] = 353, + [4262] = 382, + [4263] = 415, + [4264] = 385, + [4265] = 403, + [4266] = 363, [4267] = 417, - [4268] = 420, - [4269] = 421, - [4270] = 480, - [4271] = 4152, - [4272] = 426, - [4273] = 161, - [4274] = 427, - [4275] = 429, - [4276] = 388, - [4277] = 513, - [4278] = 436, - [4279] = 437, - [4280] = 438, - [4281] = 441, - [4282] = 442, - [4283] = 162, - [4284] = 163, - [4285] = 4285, - [4286] = 401, - [4287] = 153, - [4288] = 356, - [4289] = 402, - [4290] = 4210, - [4291] = 527, - [4292] = 154, - [4293] = 423, - [4294] = 4294, - [4295] = 4295, - [4296] = 4296, + [4268] = 487, + [4269] = 4241, + [4270] = 4270, + [4271] = 154, + [4272] = 4174, + [4273] = 163, + [4274] = 4241, + [4275] = 449, + [4276] = 398, + [4277] = 4277, + [4278] = 540, + [4279] = 1693, + [4280] = 404, + [4281] = 547, + [4282] = 4212, + [4283] = 543, + [4284] = 155, + [4285] = 354, + [4286] = 411, + [4287] = 412, + [4288] = 430, + [4289] = 4289, + [4290] = 548, + [4291] = 500, + [4292] = 4292, + [4293] = 165, + [4294] = 414, + [4295] = 156, + [4296] = 158, [4297] = 4297, - [4298] = 358, - [4299] = 407, - [4300] = 152, - [4301] = 4301, - [4302] = 4302, - [4303] = 358, - [4304] = 161, - [4305] = 384, - [4306] = 162, - [4307] = 163, - [4308] = 448, - [4309] = 383, - [4310] = 405, - [4311] = 544, - [4312] = 387, - [4313] = 155, - [4314] = 358, - [4315] = 515, - [4316] = 156, - [4317] = 518, - [4318] = 532, - [4319] = 4319, - [4320] = 4320, - [4321] = 1637, - [4322] = 1638, - [4323] = 4323, + [4298] = 537, + [4299] = 4299, + [4300] = 4189, + [4301] = 393, + [4302] = 393, + [4303] = 418, + [4304] = 523, + [4305] = 160, + [4306] = 4306, + [4307] = 395, + [4308] = 509, + [4309] = 539, + [4310] = 152, + [4311] = 162, + [4312] = 370, + [4313] = 409, + [4314] = 410, + [4315] = 157, + [4316] = 4316, + [4317] = 1597, + [4318] = 1599, + [4319] = 382, + [4320] = 548, + [4321] = 1605, + [4322] = 1606, + [4323] = 154, [4324] = 4324, [4325] = 4325, - [4326] = 4326, + [4326] = 513, [4327] = 4327, [4328] = 4328, [4329] = 4329, - [4330] = 4330, - [4331] = 537, - [4332] = 4332, + [4330] = 407, + [4331] = 4331, + [4332] = 157, [4333] = 4333, - [4334] = 1641, - [4335] = 1644, - [4336] = 4336, + [4334] = 4334, + [4335] = 393, + [4336] = 509, [4337] = 4337, [4338] = 4338, [4339] = 4339, [4340] = 4340, [4341] = 4341, [4342] = 4342, - [4343] = 4343, - [4344] = 4344, - [4345] = 4345, + [4343] = 409, + [4344] = 410, + [4345] = 395, [4346] = 4346, [4347] = 4347, [4348] = 4348, [4349] = 4349, [4350] = 4350, - [4351] = 4351, + [4351] = 353, [4352] = 4352, [4353] = 4353, [4354] = 4354, [4355] = 4355, - [4356] = 4356, - [4357] = 4357, - [4358] = 455, - [4359] = 4359, - [4360] = 4360, - [4361] = 4361, - [4362] = 511, - [4363] = 512, - [4364] = 4364, - [4365] = 481, - [4366] = 411, - [4367] = 389, - [4368] = 412, - [4369] = 414, - [4370] = 417, - [4371] = 420, - [4372] = 421, - [4373] = 426, - [4374] = 427, - [4375] = 429, - [4376] = 4376, - [4377] = 4377, - [4378] = 436, - [4379] = 4379, - [4380] = 510, - [4381] = 4381, - [4382] = 437, - [4383] = 4383, - [4384] = 438, - [4385] = 464, - [4386] = 160, - [4387] = 441, - [4388] = 442, - [4389] = 401, - [4390] = 4390, - [4391] = 473, - [4392] = 402, - [4393] = 445, - [4394] = 4257, - [4395] = 527, - [4396] = 526, + [4356] = 547, + [4357] = 411, + [4358] = 412, + [4359] = 152, + [4360] = 414, + [4361] = 418, + [4362] = 419, + [4363] = 420, + [4364] = 363, + [4365] = 422, + [4366] = 433, + [4367] = 161, + [4368] = 444, + [4369] = 445, + [4370] = 446, + [4371] = 157, + [4372] = 162, + [4373] = 163, + [4374] = 448, + [4375] = 423, + [4376] = 415, + [4377] = 152, + [4378] = 482, + [4379] = 483, + [4380] = 402, + [4381] = 417, + [4382] = 1639, + [4383] = 487, + [4384] = 1641, + [4385] = 155, + [4386] = 156, + [4387] = 478, + [4388] = 319, + [4389] = 160, + [4390] = 158, + [4391] = 403, + [4392] = 500, + [4393] = 159, + [4394] = 4394, + [4395] = 4395, + [4396] = 363, [4397] = 4397, [4398] = 4398, - [4399] = 4399, - [4400] = 157, - [4401] = 528, - [4402] = 529, + [4399] = 370, + [4400] = 4400, + [4401] = 4401, + [4402] = 4402, [4403] = 4403, [4404] = 4404, [4405] = 4405, [4406] = 4406, [4407] = 4407, - [4408] = 4408, + [4408] = 158, [4409] = 4409, - [4410] = 152, - [4411] = 159, + [4410] = 4410, + [4411] = 4411, [4412] = 4412, [4413] = 4413, [4414] = 4414, @@ -9532,12 +9525,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4416] = 4416, [4417] = 4417, [4418] = 4418, - [4419] = 4419, + [4419] = 479, [4420] = 4420, - [4421] = 4421, - [4422] = 4422, - [4423] = 4423, - [4424] = 4424, + [4421] = 4270, + [4422] = 165, + [4423] = 454, + [4424] = 160, [4425] = 4425, [4426] = 4426, [4427] = 4427, @@ -9549,7 +9542,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4433] = 4433, [4434] = 4434, [4435] = 4435, - [4436] = 4436, + [4436] = 523, [4437] = 4437, [4438] = 4438, [4439] = 4439, @@ -9560,3566 +9553,3734 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4444] = 4444, [4445] = 4445, [4446] = 4446, - [4447] = 4447, - [4448] = 4448, + [4447] = 537, + [4448] = 534, [4449] = 4449, [4450] = 4450, [4451] = 4451, [4452] = 4452, [4453] = 4453, - [4454] = 480, + [4454] = 4454, [4455] = 4455, - [4456] = 513, + [4456] = 4456, [4457] = 4457, [4458] = 4458, [4459] = 4459, [4460] = 4460, - [4461] = 4461, - [4462] = 4462, - [4463] = 536, - [4464] = 4464, - [4465] = 158, - [4466] = 1610, - [4467] = 1701, - [4468] = 1628, - [4469] = 328, - [4470] = 159, - [4471] = 160, + [4461] = 535, + [4462] = 539, + [4463] = 541, + [4464] = 540, + [4465] = 4465, + [4466] = 4466, + [4467] = 4467, + [4468] = 4468, + [4469] = 373, + [4470] = 4470, + [4471] = 4471, [4472] = 4472, [4473] = 4473, [4474] = 4474, [4475] = 4475, [4476] = 4476, [4477] = 4477, - [4478] = 153, + [4478] = 4478, [4479] = 4479, - [4480] = 157, + [4480] = 4480, [4481] = 4481, [4482] = 4482, [4483] = 4483, [4484] = 4484, [4485] = 4485, [4486] = 4486, - [4487] = 4487, + [4487] = 404, [4488] = 4488, [4489] = 4489, - [4490] = 154, - [4491] = 369, - [4492] = 158, - [4493] = 164, + [4490] = 4490, + [4491] = 398, + [4492] = 4492, + [4493] = 4493, [4494] = 4494, - [4495] = 370, + [4495] = 4495, [4496] = 4496, - [4497] = 447, + [4497] = 4497, [4498] = 4498, - [4499] = 423, - [4500] = 4500, - [4501] = 4501, + [4499] = 4499, + [4500] = 1693, + [4501] = 159, [4502] = 4502, - [4503] = 356, + [4503] = 4503, [4504] = 4504, - [4505] = 4449, + [4505] = 4505, [4506] = 4506, [4507] = 4507, - [4508] = 4404, - [4509] = 4398, - [4510] = 464, - [4511] = 4399, - [4512] = 4412, - [4513] = 4464, - [4514] = 473, - [4515] = 4515, - [4516] = 608, - [4517] = 158, - [4518] = 1610, - [4519] = 1628, - [4520] = 4413, + [4508] = 4508, + [4509] = 4509, + [4510] = 4510, + [4511] = 4511, + [4512] = 4512, + [4513] = 4513, + [4514] = 543, + [4515] = 153, + [4516] = 399, + [4517] = 4517, + [4518] = 4518, + [4519] = 4519, + [4520] = 4520, [4521] = 4521, - [4522] = 4522, - [4523] = 159, - [4524] = 4397, - [4525] = 160, - [4526] = 157, - [4527] = 4527, - [4528] = 4419, - [4529] = 324, - [4530] = 328, - [4531] = 4433, - [4532] = 4532, + [4522] = 346, + [4523] = 4349, + [4524] = 4338, + [4525] = 487, + [4526] = 1605, + [4527] = 598, + [4528] = 157, + [4529] = 4354, + [4530] = 1639, + [4531] = 4531, + [4532] = 454, [4533] = 4533, - [4534] = 162, - [4535] = 153, - [4536] = 4436, - [4537] = 163, - [4538] = 1817, - [4539] = 4450, - [4540] = 161, - [4541] = 4451, - [4542] = 544, - [4543] = 4543, - [4544] = 4544, - [4545] = 154, - [4546] = 536, - [4547] = 1733, - [4548] = 1661, - [4549] = 4403, - [4550] = 4418, - [4551] = 528, - [4552] = 4552, - [4553] = 1701, - [4554] = 515, - [4555] = 4521, - [4556] = 518, - [4557] = 4557, - [4558] = 1638, - [4559] = 4522, - [4560] = 529, - [4561] = 527, - [4562] = 324, - [4563] = 343, - [4564] = 370, - [4565] = 455, - [4566] = 1641, - [4567] = 1644, - [4568] = 532, - [4569] = 4532, - [4570] = 4533, + [4534] = 398, + [4535] = 363, + [4536] = 1641, + [4537] = 4537, + [4538] = 158, + [4539] = 1606, + [4540] = 4355, + [4541] = 317, + [4542] = 500, + [4543] = 159, + [4544] = 543, + [4545] = 4545, + [4546] = 4546, + [4547] = 370, + [4548] = 4548, + [4549] = 4549, + [4550] = 4533, + [4551] = 513, + [4552] = 153, + [4553] = 4350, + [4554] = 4352, + [4555] = 155, + [4556] = 4549, + [4557] = 1597, + [4558] = 4558, + [4559] = 1701, + [4560] = 393, + [4561] = 4545, + [4562] = 4562, + [4563] = 1599, + [4564] = 154, + [4565] = 4333, + [4566] = 161, + [4567] = 160, + [4568] = 4353, + [4569] = 509, + [4570] = 548, [4571] = 4571, - [4572] = 164, - [4573] = 340, - [4574] = 4500, - [4575] = 4452, - [4576] = 511, - [4577] = 512, - [4578] = 481, - [4579] = 4501, - [4580] = 4502, - [4581] = 526, - [4582] = 4582, - [4583] = 480, - [4584] = 155, - [4585] = 358, - [4586] = 156, - [4587] = 537, - [4588] = 384, - [4589] = 510, - [4590] = 513, - [4591] = 4506, + [4572] = 4572, + [4573] = 4348, + [4574] = 4574, + [4575] = 1763, + [4576] = 4398, + [4577] = 1708, + [4578] = 478, + [4579] = 4400, + [4580] = 156, + [4581] = 4574, + [4582] = 4401, + [4583] = 4337, + [4584] = 535, + [4585] = 1655, + [4586] = 1707, + [4587] = 4341, + [4588] = 4339, + [4589] = 382, + [4590] = 342, + [4591] = 4395, [4592] = 4592, [4593] = 4593, - [4594] = 4594, - [4595] = 383, - [4596] = 1680, - [4597] = 1658, - [4598] = 387, - [4599] = 4453, - [4600] = 4455, - [4601] = 4414, - [4602] = 389, - [4603] = 369, - [4604] = 4604, + [4594] = 162, + [4595] = 4595, + [4596] = 537, + [4597] = 395, + [4598] = 4598, + [4599] = 4340, + [4600] = 317, + [4601] = 534, + [4602] = 319, + [4603] = 163, + [4604] = 541, [4605] = 4605, - [4606] = 1637, - [4607] = 641, - [4608] = 682, - [4609] = 692, - [4610] = 4527, - [4611] = 623, - [4612] = 632, - [4613] = 2623, + [4606] = 4593, + [4607] = 482, + [4608] = 4346, + [4609] = 547, + [4610] = 4334, + [4611] = 373, + [4612] = 483, + [4613] = 4613, [4614] = 4614, - [4615] = 647, - [4616] = 631, - [4617] = 653, - [4618] = 1817, - [4619] = 4619, - [4620] = 4620, - [4621] = 661, - [4622] = 662, - [4623] = 667, - [4624] = 668, - [4625] = 675, - [4626] = 686, - [4627] = 611, - [4628] = 613, - [4629] = 614, - [4630] = 616, - [4631] = 619, - [4632] = 620, - [4633] = 608, - [4634] = 621, - [4635] = 527, + [4615] = 523, + [4616] = 4347, + [4617] = 479, + [4618] = 1693, + [4619] = 539, + [4620] = 540, + [4621] = 4331, + [4622] = 165, + [4623] = 4342, + [4624] = 539, + [4625] = 358, + [4626] = 4626, + [4627] = 2397, + [4628] = 2644, + [4629] = 4629, + [4630] = 645, + [4631] = 4631, + [4632] = 4632, + [4633] = 548, + [4634] = 4634, + [4635] = 4635, [4636] = 4636, [4637] = 4637, - [4638] = 1701, - [4639] = 656, + [4638] = 4638, + [4639] = 1701, [4640] = 4640, - [4641] = 610, - [4642] = 1733, + [4641] = 4641, + [4642] = 4642, [4643] = 4643, [4644] = 4644, - [4645] = 387, - [4646] = 693, - [4647] = 4557, - [4648] = 324, + [4645] = 398, + [4646] = 4646, + [4647] = 162, + [4648] = 4648, [4649] = 4649, - [4650] = 4650, - [4651] = 4651, - [4652] = 528, - [4653] = 4653, - [4654] = 685, - [4655] = 4655, - [4656] = 639, - [4657] = 383, - [4658] = 633, + [4650] = 1693, + [4651] = 4571, + [4652] = 615, + [4653] = 4546, + [4654] = 163, + [4655] = 2642, + [4656] = 382, + [4657] = 4657, + [4658] = 624, [4659] = 4659, - [4660] = 635, - [4661] = 4661, - [4662] = 4662, - [4663] = 643, - [4664] = 4664, - [4665] = 4665, - [4666] = 4666, - [4667] = 4667, + [4660] = 4660, + [4661] = 1707, + [4662] = 1708, + [4663] = 4663, + [4664] = 393, + [4665] = 534, + [4666] = 395, + [4667] = 523, [4668] = 4668, - [4669] = 677, - [4670] = 536, - [4671] = 4671, - [4672] = 669, - [4673] = 671, - [4674] = 1680, + [4669] = 4669, + [4670] = 356, + [4671] = 4595, + [4672] = 4672, + [4673] = 4673, + [4674] = 4674, [4675] = 4675, - [4676] = 622, - [4677] = 4605, - [4678] = 4678, + [4676] = 656, + [4677] = 4613, + [4678] = 626, [4679] = 4679, - [4680] = 4680, - [4681] = 4681, - [4682] = 352, - [4683] = 529, - [4684] = 2627, - [4685] = 1831, - [4686] = 4594, - [4687] = 4515, - [4688] = 2628, - [4689] = 625, - [4690] = 1658, - [4691] = 4691, - [4692] = 4692, - [4693] = 640, - [4694] = 1661, - [4695] = 353, - [4696] = 4696, - [4697] = 4697, - [4698] = 4698, - [4699] = 663, - [4700] = 544, - [4701] = 612, - [4702] = 634, - [4703] = 328, - [4704] = 4704, - [4705] = 343, - [4706] = 630, - [4707] = 2622, - [4708] = 161, - [4709] = 4709, - [4710] = 4710, - [4711] = 4711, - [4712] = 355, - [4713] = 648, - [4714] = 650, - [4715] = 4715, - [4716] = 680, - [4717] = 684, - [4718] = 2623, - [4719] = 340, - [4720] = 2636, - [4721] = 688, - [4722] = 158, - [4723] = 515, - [4724] = 1814, - [4725] = 518, - [4726] = 1795, - [4727] = 358, - [4728] = 4728, - [4729] = 4543, - [4730] = 672, - [4731] = 159, - [4732] = 360, - [4733] = 674, - [4734] = 626, - [4735] = 532, - [4736] = 683, - [4737] = 160, - [4738] = 537, - [4739] = 157, - [4740] = 526, - [4741] = 389, - [4742] = 608, - [4743] = 4743, - [4744] = 2622, - [4745] = 4745, - [4746] = 2627, - [4747] = 162, - [4748] = 4592, - [4749] = 2628, - [4750] = 1837, - [4751] = 1838, - [4752] = 4752, - [4753] = 4753, - [4754] = 163, - [4755] = 4582, - [4756] = 2636, - [4757] = 2316, - [4758] = 4758, - [4759] = 4759, - [4760] = 1736, - [4761] = 4761, - [4762] = 1737, - [4763] = 155, - [4764] = 1842, - [4765] = 1843, - [4766] = 637, - [4767] = 638, + [4680] = 634, + [4681] = 665, + [4682] = 4682, + [4683] = 659, + [4684] = 1751, + [4685] = 1755, + [4686] = 537, + [4687] = 4687, + [4688] = 360, + [4689] = 2642, + [4690] = 540, + [4691] = 4531, + [4692] = 317, + [4693] = 4693, + [4694] = 4694, + [4695] = 643, + [4696] = 644, + [4697] = 648, + [4698] = 319, + [4699] = 4699, + [4700] = 4700, + [4701] = 4701, + [4702] = 1765, + [4703] = 1766, + [4704] = 346, + [4705] = 4705, + [4706] = 4706, + [4707] = 342, + [4708] = 155, + [4709] = 156, + [4710] = 688, + [4711] = 689, + [4712] = 693, + [4713] = 614, + [4714] = 617, + [4715] = 618, + [4716] = 654, + [4717] = 2644, + [4718] = 652, + [4719] = 622, + [4720] = 4720, + [4721] = 157, + [4722] = 363, + [4723] = 158, + [4724] = 159, + [4725] = 1655, + [4726] = 160, + [4727] = 4598, + [4728] = 598, + [4729] = 631, + [4730] = 4730, + [4731] = 669, + [4732] = 671, + [4733] = 2655, + [4734] = 675, + [4735] = 2657, + [4736] = 4736, + [4737] = 4737, + [4738] = 4738, + [4739] = 684, + [4740] = 692, + [4741] = 4741, + [4742] = 4562, + [4743] = 535, + [4744] = 541, + [4745] = 4572, + [4746] = 635, + [4747] = 636, + [4748] = 4748, + [4749] = 637, + [4750] = 4750, + [4751] = 680, + [4752] = 613, + [4753] = 2655, + [4754] = 2657, + [4755] = 4755, + [4756] = 1815, + [4757] = 1818, + [4758] = 640, + [4759] = 664, + [4760] = 632, + [4761] = 361, + [4762] = 2663, + [4763] = 639, + [4764] = 638, + [4765] = 547, + [4766] = 1732, + [4767] = 1737, [4768] = 4768, - [4769] = 384, - [4770] = 4770, - [4771] = 645, - [4772] = 649, - [4773] = 655, - [4774] = 657, - [4775] = 4775, - [4776] = 156, - [4777] = 660, - [4778] = 4778, - [4779] = 636, - [4780] = 4780, - [4781] = 4781, - [4782] = 650, - [4783] = 4783, - [4784] = 2316, - [4785] = 4785, - [4786] = 1837, - [4787] = 1838, - [4788] = 4788, - [4789] = 4789, - [4790] = 2913, - [4791] = 1842, - [4792] = 1843, - [4793] = 2915, + [4769] = 682, + [4770] = 2663, + [4771] = 612, + [4772] = 543, + [4773] = 649, + [4774] = 661, + [4775] = 678, + [4776] = 4776, + [4777] = 683, + [4778] = 1763, + [4779] = 686, + [4780] = 161, + [4781] = 611, + [4782] = 621, + [4783] = 625, + [4784] = 628, + [4785] = 647, + [4786] = 655, + [4787] = 657, + [4788] = 660, + [4789] = 641, + [4790] = 670, + [4791] = 681, + [4792] = 676, + [4793] = 598, [4794] = 4794, - [4795] = 4795, + [4795] = 619, [4796] = 4796, [4797] = 4797, [4798] = 4798, - [4799] = 4799, - [4800] = 4800, + [4799] = 4648, + [4800] = 621, [4801] = 4801, - [4802] = 4802, - [4803] = 4803, - [4804] = 631, - [4805] = 4805, + [4802] = 682, + [4803] = 313, + [4804] = 4804, + [4805] = 625, [4806] = 4806, - [4807] = 625, - [4808] = 612, - [4809] = 688, + [4807] = 628, + [4808] = 4808, + [4809] = 2663, [4810] = 4810, - [4811] = 343, - [4812] = 340, - [4813] = 622, - [4814] = 352, - [4815] = 4815, - [4816] = 682, - [4817] = 692, - [4818] = 353, - [4819] = 4819, - [4820] = 355, - [4821] = 4821, - [4822] = 360, - [4823] = 4823, - [4824] = 310, - [4825] = 633, - [4826] = 635, - [4827] = 677, - [4828] = 669, - [4829] = 671, - [4830] = 630, - [4831] = 2912, - [4832] = 648, - [4833] = 684, - [4834] = 1814, - [4835] = 1795, - [4836] = 640, - [4837] = 672, - [4838] = 674, - [4839] = 626, - [4840] = 680, - [4841] = 1736, - [4842] = 1737, - [4843] = 683, - [4844] = 638, - [4845] = 645, - [4846] = 649, - [4847] = 655, - [4848] = 657, - [4849] = 660, - [4850] = 663, - [4851] = 637, - [4852] = 636, - [4853] = 623, - [4854] = 632, - [4855] = 647, - [4856] = 653, - [4857] = 661, - [4858] = 662, - [4859] = 667, - [4860] = 668, - [4861] = 675, - [4862] = 686, - [4863] = 611, - [4864] = 613, - [4865] = 4865, - [4866] = 614, - [4867] = 616, - [4868] = 619, - [4869] = 2623, - [4870] = 620, - [4871] = 621, - [4872] = 4872, - [4873] = 4715, + [4811] = 647, + [4812] = 655, + [4813] = 624, + [4814] = 657, + [4815] = 660, + [4816] = 4816, + [4817] = 4660, + [4818] = 612, + [4819] = 4636, + [4820] = 161, + [4821] = 4637, + [4822] = 649, + [4823] = 4638, + [4824] = 670, + [4825] = 681, + [4826] = 4826, + [4827] = 4641, + [4828] = 2529, + [4829] = 4829, + [4830] = 2966, + [4831] = 4642, + [4832] = 4644, + [4833] = 4833, + [4834] = 669, + [4835] = 661, + [4836] = 671, + [4837] = 635, + [4838] = 680, + [4839] = 1737, + [4840] = 4646, + [4841] = 4841, + [4842] = 664, + [4843] = 636, + [4844] = 676, + [4845] = 639, + [4846] = 346, + [4847] = 641, + [4848] = 613, + [4849] = 637, + [4850] = 4850, + [4851] = 2657, + [4852] = 654, + [4853] = 342, + [4854] = 675, + [4855] = 4855, + [4856] = 4856, + [4857] = 356, + [4858] = 4858, + [4859] = 358, + [4860] = 1770, + [4861] = 1772, + [4862] = 360, + [4863] = 361, + [4864] = 645, + [4865] = 2644, + [4866] = 2941, + [4867] = 637, + [4868] = 1404, + [4869] = 2960, + [4870] = 2642, + [4871] = 4871, + [4872] = 162, + [4873] = 163, [4874] = 4874, - [4875] = 656, + [4875] = 4875, [4876] = 4876, - [4877] = 4821, - [4878] = 4823, - [4879] = 685, - [4880] = 4659, - [4881] = 639, - [4882] = 641, - [4883] = 4661, - [4884] = 4802, - [4885] = 4806, - [4886] = 4662, - [4887] = 4668, - [4888] = 4678, - [4889] = 643, - [4890] = 4679, - [4891] = 4692, - [4892] = 634, - [4893] = 4709, - [4894] = 4894, + [4877] = 2531, + [4878] = 4878, + [4879] = 4879, + [4880] = 4797, + [4881] = 2397, + [4882] = 655, + [4883] = 4883, + [4884] = 676, + [4885] = 4885, + [4886] = 612, + [4887] = 4887, + [4888] = 631, + [4889] = 4889, + [4890] = 4890, + [4891] = 669, + [4892] = 4892, + [4893] = 654, + [4894] = 4755, [4895] = 4895, - [4896] = 4896, - [4897] = 4897, - [4898] = 2449, - [4899] = 4899, - [4900] = 4900, - [4901] = 4768, - [4902] = 610, - [4903] = 4715, - [4904] = 4789, - [4905] = 693, - [4906] = 4650, - [4907] = 631, - [4908] = 688, - [4909] = 310, - [4910] = 2636, - [4911] = 4911, - [4912] = 633, - [4913] = 635, - [4914] = 677, - [4915] = 317, + [4896] = 671, + [4897] = 313, + [4898] = 635, + [4899] = 680, + [4900] = 613, + [4901] = 4901, + [4902] = 626, + [4903] = 4903, + [4904] = 678, + [4905] = 1815, + [4906] = 634, + [4907] = 1818, + [4908] = 4908, + [4909] = 4909, + [4910] = 683, + [4911] = 4841, + [4912] = 4755, + [4913] = 4913, + [4914] = 4914, + [4915] = 649, [4916] = 4916, - [4917] = 640, - [4918] = 680, - [4919] = 683, - [4920] = 2446, - [4921] = 637, + [4917] = 675, + [4918] = 632, + [4919] = 4919, + [4920] = 639, + [4921] = 657, [4922] = 636, - [4923] = 623, - [4924] = 632, - [4925] = 647, - [4926] = 653, - [4927] = 1391, - [4928] = 661, - [4929] = 662, - [4930] = 667, - [4931] = 668, - [4932] = 675, - [4933] = 686, - [4934] = 611, - [4935] = 613, - [4936] = 614, - [4937] = 616, - [4938] = 619, - [4939] = 620, - [4940] = 621, - [4941] = 2627, - [4942] = 161, - [4943] = 162, - [4944] = 163, - [4945] = 4945, - [4946] = 639, - [4947] = 641, - [4948] = 2628, - [4949] = 643, - [4950] = 2622, - [4951] = 1831, - [4952] = 625, - [4953] = 612, - [4954] = 4954, - [4955] = 4955, - [4956] = 1792, - [4957] = 4810, - [4958] = 4815, - [4959] = 4819, - [4960] = 682, - [4961] = 692, - [4962] = 1793, - [4963] = 4963, - [4964] = 4964, - [4965] = 4965, - [4966] = 4966, - [4967] = 4967, - [4968] = 3376, - [4969] = 4789, - [4970] = 317, - [4971] = 669, - [4972] = 671, - [4973] = 4620, - [4974] = 4710, - [4975] = 4653, - [4976] = 4655, - [4977] = 4728, - [4978] = 4745, - [4979] = 4704, - [4980] = 4711, - [4981] = 4675, - [4982] = 4681, - [4983] = 4691, - [4984] = 4697, - [4985] = 317, - [4986] = 4986, - [4987] = 4987, - [4988] = 4988, - [4989] = 4989, - [4990] = 4990, - [4991] = 4991, - [4992] = 4992, - [4993] = 672, - [4994] = 328, - [4995] = 4995, - [4996] = 4895, - [4997] = 4896, - [4998] = 4995, - [4999] = 4999, - [5000] = 2316, - [5001] = 5001, - [5002] = 5002, - [5003] = 4897, - [5004] = 5004, - [5005] = 4865, - [5006] = 322, + [4923] = 660, + [4924] = 4924, + [4925] = 665, + [4926] = 4926, + [4927] = 659, + [4928] = 1751, + [4929] = 1755, + [4930] = 4930, + [4931] = 615, + [4932] = 4878, + [4933] = 320, + [4934] = 661, + [4935] = 3383, + [4936] = 4936, + [4937] = 320, + [4938] = 641, + [4939] = 4936, + [4940] = 640, + [4941] = 4936, + [4942] = 643, + [4943] = 686, + [4944] = 644, + [4945] = 648, + [4946] = 684, + [4947] = 632, + [4948] = 4948, + [4949] = 4626, + [4950] = 4669, + [4951] = 4672, + [4952] = 4673, + [4953] = 4693, + [4954] = 4694, + [4955] = 4699, + [4956] = 4700, + [4957] = 4730, + [4958] = 4737, + [4959] = 4738, + [4960] = 4643, + [4961] = 320, + [4962] = 652, + [4963] = 622, + [4964] = 1765, + [4965] = 611, + [4966] = 678, + [4967] = 4720, + [4968] = 621, + [4969] = 1766, + [4970] = 638, + [4971] = 625, + [4972] = 638, + [4973] = 683, + [4974] = 684, + [4975] = 670, + [4976] = 4976, + [4977] = 688, + [4978] = 2655, + [4979] = 689, + [4980] = 4980, + [4981] = 656, + [4982] = 693, + [4983] = 628, + [4984] = 4984, + [4985] = 614, + [4986] = 681, + [4987] = 692, + [4988] = 617, + [4989] = 618, + [4990] = 686, + [4991] = 640, + [4992] = 619, + [4993] = 645, + [4994] = 4994, + [4995] = 4875, + [4996] = 4996, + [4997] = 647, + [4998] = 682, + [4999] = 692, + [5000] = 611, + [5001] = 4879, + [5002] = 631, + [5003] = 5003, + [5004] = 1732, + [5005] = 4901, + [5006] = 5006, [5007] = 5007, [5008] = 5008, - [5009] = 4988, - [5010] = 4900, - [5011] = 5011, - [5012] = 4963, + [5009] = 5009, + [5010] = 5010, + [5011] = 4885, + [5012] = 615, [5013] = 5013, - [5014] = 4964, + [5014] = 4804, [5015] = 5015, - [5016] = 5002, - [5017] = 5017, - [5018] = 4955, + [5016] = 5016, + [5017] = 618, + [5018] = 5018, [5019] = 5019, [5020] = 5020, - [5021] = 2449, + [5021] = 5021, [5022] = 5022, - [5023] = 316, - [5024] = 2446, + [5023] = 5023, + [5024] = 358, [5025] = 5025, - [5026] = 324, - [5027] = 342, + [5026] = 5026, + [5027] = 5027, [5028] = 5028, [5029] = 5029, - [5030] = 339, - [5031] = 352, - [5032] = 5011, - [5033] = 346, - [5034] = 1792, - [5035] = 328, - [5036] = 353, - [5037] = 1793, + [5030] = 360, + [5031] = 5031, + [5032] = 4913, + [5033] = 340, + [5034] = 361, + [5035] = 5035, + [5036] = 5036, + [5037] = 5037, [5038] = 5038, - [5039] = 5039, + [5039] = 626, [5040] = 5040, - [5041] = 355, + [5041] = 335, [5042] = 5042, - [5043] = 5043, + [5043] = 2713, [5044] = 5044, [5045] = 5045, [5046] = 5046, - [5047] = 622, + [5047] = 5047, [5048] = 5048, - [5049] = 5049, - [5050] = 5050, - [5051] = 316, - [5052] = 5052, + [5049] = 4626, + [5050] = 5036, + [5051] = 5051, + [5052] = 341, [5053] = 5053, - [5054] = 360, - [5055] = 324, - [5056] = 4911, - [5057] = 4954, - [5058] = 630, - [5059] = 648, - [5060] = 650, - [5061] = 684, + [5054] = 4871, + [5055] = 4914, + [5056] = 4806, + [5057] = 5057, + [5058] = 4669, + [5059] = 4672, + [5060] = 4673, + [5061] = 319, [5062] = 5062, [5063] = 5063, - [5064] = 5064, - [5065] = 5065, - [5066] = 674, - [5067] = 626, - [5068] = 638, - [5069] = 645, - [5070] = 649, - [5071] = 655, - [5072] = 657, - [5073] = 660, - [5074] = 663, - [5075] = 4991, - [5076] = 4794, - [5077] = 4990, - [5078] = 5078, - [5079] = 5079, - [5080] = 5080, - [5081] = 5081, + [5064] = 619, + [5065] = 2531, + [5066] = 5066, + [5067] = 4909, + [5068] = 656, + [5069] = 317, + [5070] = 4693, + [5071] = 4694, + [5072] = 4699, + [5073] = 4700, + [5074] = 664, + [5075] = 5075, + [5076] = 336, + [5077] = 4730, + [5078] = 4737, + [5079] = 4738, + [5080] = 4643, + [5081] = 3402, [5082] = 5082, - [5083] = 5083, + [5083] = 3411, [5084] = 5084, - [5085] = 324, - [5086] = 5086, - [5087] = 5087, - [5088] = 5088, - [5089] = 5089, - [5090] = 5090, - [5091] = 5091, - [5092] = 5092, + [5085] = 343, + [5086] = 339, + [5087] = 340, + [5088] = 341, + [5089] = 343, + [5090] = 4876, + [5091] = 4903, + [5092] = 319, [5093] = 5093, - [5094] = 5094, - [5095] = 4916, - [5096] = 344, - [5097] = 4715, - [5098] = 5098, - [5099] = 5099, - [5100] = 5100, - [5101] = 5101, - [5102] = 5102, - [5103] = 5103, - [5104] = 5104, - [5105] = 4999, + [5094] = 4919, + [5095] = 5095, + [5096] = 643, + [5097] = 5097, + [5098] = 4883, + [5099] = 2397, + [5100] = 4996, + [5101] = 3383, + [5102] = 4874, + [5103] = 4916, + [5104] = 335, + [5105] = 5105, [5106] = 5106, - [5107] = 4620, - [5108] = 4797, - [5109] = 4710, - [5110] = 4653, - [5111] = 4655, - [5112] = 328, - [5113] = 4728, - [5114] = 4745, - [5115] = 4704, - [5116] = 4711, - [5117] = 4675, - [5118] = 4681, - [5119] = 4691, - [5120] = 4697, + [5107] = 5107, + [5108] = 634, + [5109] = 5109, + [5110] = 644, + [5111] = 5111, + [5112] = 343, + [5113] = 339, + [5114] = 340, + [5115] = 341, + [5116] = 648, + [5117] = 5117, + [5118] = 5118, + [5119] = 4755, + [5120] = 5120, [5121] = 5121, - [5122] = 3384, - [5123] = 3389, - [5124] = 344, - [5125] = 342, - [5126] = 339, - [5127] = 346, - [5128] = 4783, - [5129] = 685, - [5130] = 4805, - [5131] = 4965, - [5132] = 5132, - [5133] = 4966, - [5134] = 5040, - [5135] = 1391, - [5136] = 5136, - [5137] = 322, + [5122] = 5122, + [5123] = 4924, + [5124] = 5020, + [5125] = 4936, + [5126] = 4926, + [5127] = 317, + [5128] = 5128, + [5129] = 4948, + [5130] = 336, + [5131] = 5131, + [5132] = 688, + [5133] = 5133, + [5134] = 5134, + [5135] = 5135, + [5136] = 4808, + [5137] = 5137, [5138] = 5138, [5139] = 5139, [5140] = 5140, - [5141] = 5141, - [5142] = 344, - [5143] = 342, - [5144] = 339, - [5145] = 346, - [5146] = 2650, - [5147] = 4789, - [5148] = 5148, + [5141] = 1404, + [5142] = 5142, + [5143] = 2529, + [5144] = 5144, + [5145] = 4895, + [5146] = 4930, + [5147] = 5147, + [5148] = 689, [5149] = 5149, - [5150] = 5150, - [5151] = 3376, + [5150] = 665, + [5151] = 317, [5152] = 5152, [5153] = 5153, [5154] = 5154, [5155] = 5155, - [5156] = 4987, - [5157] = 3376, - [5158] = 317, + [5156] = 659, + [5157] = 3383, + [5158] = 320, [5159] = 5159, - [5160] = 5160, - [5161] = 5161, - [5162] = 5162, - [5163] = 656, - [5164] = 5164, - [5165] = 4967, - [5166] = 5166, - [5167] = 5167, - [5168] = 342, - [5169] = 2446, - [5170] = 412, - [5171] = 414, - [5172] = 5172, - [5173] = 339, - [5174] = 417, - [5175] = 420, - [5176] = 421, - [5177] = 426, - [5178] = 427, - [5179] = 340, - [5180] = 5180, - [5181] = 328, - [5182] = 346, - [5183] = 423, - [5184] = 429, - [5185] = 2449, - [5186] = 340, - [5187] = 5187, - [5188] = 5188, - [5189] = 5189, - [5190] = 5190, - [5191] = 5190, - [5192] = 436, - [5193] = 437, - [5194] = 5194, - [5195] = 5195, - [5196] = 153, - [5197] = 438, - [5198] = 441, - [5199] = 442, - [5200] = 401, - [5201] = 5201, - [5202] = 402, - [5203] = 5190, - [5204] = 4789, - [5205] = 343, - [5206] = 340, - [5207] = 5190, - [5208] = 445, - [5209] = 3389, - [5210] = 317, - [5211] = 3376, - [5212] = 344, - [5213] = 447, - [5214] = 328, - [5215] = 5190, - [5216] = 405, - [5217] = 3384, - [5218] = 324, - [5219] = 152, - [5220] = 343, - [5221] = 5221, - [5222] = 448, - [5223] = 3384, - [5224] = 154, - [5225] = 3389, - [5226] = 328, - [5227] = 5227, - [5228] = 5228, - [5229] = 5229, - [5230] = 407, - [5231] = 152, - [5232] = 5229, - [5233] = 324, + [5160] = 4980, + [5161] = 356, + [5162] = 693, + [5163] = 5163, + [5164] = 339, + [5165] = 5025, + [5166] = 319, + [5167] = 4984, + [5168] = 1770, + [5169] = 5169, + [5170] = 614, + [5171] = 5171, + [5172] = 617, + [5173] = 5173, + [5174] = 5174, + [5175] = 1772, + [5176] = 5062, + [5177] = 5177, + [5178] = 317, + [5179] = 3402, + [5180] = 319, + [5181] = 3411, + [5182] = 5182, + [5183] = 317, + [5184] = 320, + [5185] = 399, + [5186] = 5186, + [5187] = 419, + [5188] = 422, + [5189] = 346, + [5190] = 448, + [5191] = 407, + [5192] = 339, + [5193] = 5182, + [5194] = 343, + [5195] = 319, + [5196] = 417, + [5197] = 414, + [5198] = 2529, + [5199] = 423, + [5200] = 445, + [5201] = 3402, + [5202] = 5202, + [5203] = 346, + [5204] = 410, + [5205] = 409, + [5206] = 342, + [5207] = 446, + [5208] = 415, + [5209] = 418, + [5210] = 3383, + [5211] = 346, + [5212] = 404, + [5213] = 5186, + [5214] = 3411, + [5215] = 5215, + [5216] = 402, + [5217] = 5217, + [5218] = 317, + [5219] = 3383, + [5220] = 4936, + [5221] = 152, + [5222] = 5222, + [5223] = 5223, + [5224] = 420, + [5225] = 342, + [5226] = 154, + [5227] = 5182, + [5228] = 341, + [5229] = 2531, + [5230] = 5230, + [5231] = 5231, + [5232] = 5182, + [5233] = 342, [5234] = 411, - [5235] = 5235, - [5236] = 324, - [5237] = 343, - [5238] = 3376, - [5239] = 5239, - [5240] = 5240, - [5241] = 324, - [5242] = 1391, - [5243] = 5243, - [5244] = 328, - [5245] = 328, - [5246] = 362, - [5247] = 324, - [5248] = 352, - [5249] = 353, - [5250] = 155, - [5251] = 156, - [5252] = 328, + [5235] = 433, + [5236] = 5217, + [5237] = 444, + [5238] = 5238, + [5239] = 152, + [5240] = 412, + [5241] = 340, + [5242] = 153, + [5243] = 5182, + [5244] = 403, + [5245] = 319, + [5246] = 5246, + [5247] = 5247, + [5248] = 1404, + [5249] = 346, + [5250] = 342, + [5251] = 317, + [5252] = 319, [5253] = 5253, - [5254] = 355, - [5255] = 152, - [5256] = 360, - [5257] = 5240, + [5254] = 5254, + [5255] = 5255, + [5256] = 5256, + [5257] = 317, [5258] = 5258, - [5259] = 5259, - [5260] = 5260, - [5261] = 5261, - [5262] = 1391, - [5263] = 5263, - [5264] = 5264, - [5265] = 5189, - [5266] = 5180, - [5267] = 5201, + [5259] = 319, + [5260] = 356, + [5261] = 152, + [5262] = 358, + [5263] = 153, + [5264] = 154, + [5265] = 353, + [5266] = 5266, + [5267] = 360, [5268] = 5268, - [5269] = 5269, - [5270] = 5253, - [5271] = 205, - [5272] = 5263, - [5273] = 447, - [5274] = 5274, - [5275] = 5264, - [5276] = 354, - [5277] = 5243, - [5278] = 5278, - [5279] = 5240, - [5280] = 5187, - [5281] = 405, - [5282] = 5259, - [5283] = 5260, - [5284] = 445, - [5285] = 407, - [5286] = 5235, - [5287] = 5260, - [5288] = 5263, - [5289] = 5264, - [5290] = 5253, - [5291] = 5274, - [5292] = 411, - [5293] = 412, - [5294] = 414, - [5295] = 417, - [5296] = 420, - [5297] = 421, - [5298] = 426, - [5299] = 340, - [5300] = 2514, - [5301] = 5274, - [5302] = 152, - [5303] = 5263, - [5304] = 5264, - [5305] = 5263, - [5306] = 5264, - [5307] = 427, - [5308] = 429, - [5309] = 436, - [5310] = 437, - [5311] = 438, - [5312] = 441, - [5313] = 442, - [5314] = 152, - [5315] = 401, - [5316] = 352, - [5317] = 5263, - [5318] = 5264, - [5319] = 353, - [5320] = 358, - [5321] = 153, - [5322] = 355, - [5323] = 402, + [5269] = 2521, + [5270] = 1404, + [5271] = 361, + [5272] = 5272, + [5273] = 363, + [5274] = 5256, + [5275] = 5258, + [5276] = 5276, + [5277] = 5277, + [5278] = 5266, + [5279] = 5268, + [5280] = 402, + [5281] = 5281, + [5282] = 155, + [5283] = 156, + [5284] = 403, + [5285] = 5285, + [5286] = 5247, + [5287] = 5287, + [5288] = 404, + [5289] = 5289, + [5290] = 399, + [5291] = 5281, + [5292] = 5285, + [5293] = 348, + [5294] = 407, + [5295] = 409, + [5296] = 410, + [5297] = 411, + [5298] = 412, + [5299] = 414, + [5300] = 418, + [5301] = 419, + [5302] = 420, + [5303] = 152, + [5304] = 422, + [5305] = 433, + [5306] = 444, + [5307] = 445, + [5308] = 446, + [5309] = 5258, + [5310] = 448, + [5311] = 5276, + [5312] = 5277, + [5313] = 423, + [5314] = 415, + [5315] = 417, + [5316] = 5266, + [5317] = 5268, + [5318] = 5276, + [5319] = 5277, + [5320] = 5287, + [5321] = 5285, + [5322] = 5247, + [5323] = 5287, [5324] = 5324, - [5325] = 423, - [5326] = 154, - [5327] = 360, - [5328] = 5268, - [5329] = 5269, - [5330] = 5268, - [5331] = 5269, - [5332] = 5253, - [5333] = 343, - [5334] = 360, - [5335] = 353, - [5336] = 356, - [5337] = 5324, - [5338] = 5259, - [5339] = 355, - [5340] = 340, - [5341] = 3384, - [5342] = 3389, - [5343] = 347, - [5344] = 343, - [5345] = 5274, - [5346] = 5346, - [5347] = 324, - [5348] = 5348, - [5349] = 5258, - [5350] = 343, - [5351] = 5278, - [5352] = 340, - [5353] = 448, - [5354] = 352, - [5355] = 423, - [5356] = 324, - [5357] = 360, - [5358] = 158, - [5359] = 159, - [5360] = 160, - [5361] = 445, - [5362] = 1391, - [5363] = 154, - [5364] = 157, - [5365] = 448, - [5366] = 328, - [5367] = 5367, - [5368] = 5368, - [5369] = 447, - [5370] = 358, - [5371] = 328, - [5372] = 5372, - [5373] = 1628, - [5374] = 356, - [5375] = 405, - [5376] = 5376, - [5377] = 1610, - [5378] = 152, - [5379] = 407, - [5380] = 411, - [5381] = 412, - [5382] = 414, + [5325] = 5325, + [5326] = 5281, + [5327] = 317, + [5328] = 319, + [5329] = 5329, + [5330] = 5266, + [5331] = 5268, + [5332] = 5287, + [5333] = 5281, + [5334] = 356, + [5335] = 358, + [5336] = 360, + [5337] = 5266, + [5338] = 5268, + [5339] = 361, + [5340] = 5266, + [5341] = 5268, + [5342] = 346, + [5343] = 342, + [5344] = 205, + [5345] = 346, + [5346] = 342, + [5347] = 356, + [5348] = 5254, + [5349] = 358, + [5350] = 360, + [5351] = 361, + [5352] = 354, + [5353] = 5353, + [5354] = 3402, + [5355] = 3411, + [5356] = 352, + [5357] = 5357, + [5358] = 152, + [5359] = 317, + [5360] = 412, + [5361] = 414, + [5362] = 418, + [5363] = 419, + [5364] = 420, + [5365] = 422, + [5366] = 433, + [5367] = 444, + [5368] = 445, + [5369] = 446, + [5370] = 448, + [5371] = 423, + [5372] = 415, + [5373] = 417, + [5374] = 360, + [5375] = 346, + [5376] = 1641, + [5377] = 157, + [5378] = 158, + [5379] = 159, + [5380] = 160, + [5381] = 5381, + [5382] = 5382, [5383] = 5383, - [5384] = 356, - [5385] = 417, - [5386] = 420, - [5387] = 5372, - [5388] = 5376, - [5389] = 421, - [5390] = 426, - [5391] = 427, - [5392] = 429, - [5393] = 436, - [5394] = 437, - [5395] = 5395, - [5396] = 5396, - [5397] = 438, - [5398] = 441, - [5399] = 442, - [5400] = 401, - [5401] = 402, - [5402] = 5383, - [5403] = 5403, - [5404] = 5376, - [5405] = 5395, - [5406] = 5406, - [5407] = 355, - [5408] = 5383, - [5409] = 5403, - [5410] = 153, - [5411] = 5395, - [5412] = 5383, - [5413] = 340, - [5414] = 5395, - [5415] = 5383, - [5416] = 324, - [5417] = 5395, - [5418] = 5383, - [5419] = 360, - [5420] = 5372, - [5421] = 5395, - [5422] = 5383, - [5423] = 5376, - [5424] = 162, - [5425] = 206, - [5426] = 447, - [5427] = 5406, - [5428] = 5383, - [5429] = 356, - [5430] = 163, - [5431] = 5396, - [5432] = 5395, - [5433] = 370, - [5434] = 5383, - [5435] = 5395, - [5436] = 5383, - [5437] = 5395, - [5438] = 5383, - [5439] = 4696, - [5440] = 340, - [5441] = 5395, - [5442] = 343, - [5443] = 340, - [5444] = 5372, - [5445] = 445, - [5446] = 155, - [5447] = 156, - [5448] = 369, - [5449] = 5396, - [5450] = 5383, - [5451] = 5395, - [5452] = 5403, - [5453] = 352, - [5454] = 5403, - [5455] = 358, - [5456] = 5383, - [5457] = 5372, - [5458] = 5376, - [5459] = 5383, - [5460] = 353, - [5461] = 5403, - [5462] = 358, - [5463] = 355, - [5464] = 5396, - [5465] = 5403, - [5466] = 4781, - [5467] = 5372, - [5468] = 5468, - [5469] = 5383, - [5470] = 360, - [5471] = 352, + [5384] = 5384, + [5385] = 361, + [5386] = 5381, + [5387] = 4741, + [5388] = 5384, + [5389] = 5384, + [5390] = 342, + [5391] = 346, + [5392] = 5392, + [5393] = 161, + [5394] = 5329, + [5395] = 1639, + [5396] = 5392, + [5397] = 5397, + [5398] = 5398, + [5399] = 5382, + [5400] = 402, + [5401] = 5401, + [5402] = 370, + [5403] = 342, + [5404] = 153, + [5405] = 5405, + [5406] = 5401, + [5407] = 5381, + [5408] = 155, + [5409] = 5405, + [5410] = 5410, + [5411] = 5411, + [5412] = 353, + [5413] = 162, + [5414] = 346, + [5415] = 163, + [5416] = 152, + [5417] = 5405, + [5418] = 342, + [5419] = 5410, + [5420] = 363, + [5421] = 5381, + [5422] = 5384, + [5423] = 156, + [5424] = 356, + [5425] = 5401, + [5426] = 5405, + [5427] = 403, + [5428] = 5357, + [5429] = 154, + [5430] = 5410, + [5431] = 353, + [5432] = 5384, + [5433] = 5410, + [5434] = 5411, + [5435] = 411, + [5436] = 5401, + [5437] = 5410, + [5438] = 5438, + [5439] = 356, + [5440] = 5401, + [5441] = 5289, + [5442] = 358, + [5443] = 5401, + [5444] = 5410, + [5445] = 363, + [5446] = 358, + [5447] = 5401, + [5448] = 5410, + [5449] = 5401, + [5450] = 4736, + [5451] = 5410, + [5452] = 360, + [5453] = 206, + [5454] = 361, + [5455] = 5401, + [5456] = 5410, + [5457] = 356, + [5458] = 5324, + [5459] = 153, + [5460] = 5401, + [5461] = 5410, + [5462] = 5401, + [5463] = 5410, + [5464] = 358, + [5465] = 5401, + [5466] = 5410, + [5467] = 5325, + [5468] = 360, + [5469] = 361, + [5470] = 1404, + [5471] = 154, [5472] = 5472, - [5473] = 5376, - [5474] = 343, - [5475] = 352, - [5476] = 353, - [5477] = 153, - [5478] = 343, - [5479] = 5372, - [5480] = 5480, - [5481] = 355, - [5482] = 154, - [5483] = 161, - [5484] = 353, - [5485] = 5395, - [5486] = 5486, - [5487] = 4799, - [5488] = 5488, - [5489] = 159, - [5490] = 387, - [5491] = 5491, - [5492] = 5488, - [5493] = 4800, - [5494] = 370, - [5495] = 5488, - [5496] = 5488, - [5497] = 158, - [5498] = 352, - [5499] = 5488, - [5500] = 362, - [5501] = 5488, - [5502] = 353, - [5503] = 5488, - [5504] = 161, - [5505] = 5488, - [5506] = 5488, - [5507] = 5488, - [5508] = 5488, - [5509] = 5488, - [5510] = 5488, - [5511] = 5488, - [5512] = 5488, - [5513] = 5488, - [5514] = 5488, - [5515] = 5488, - [5516] = 5488, - [5517] = 5488, - [5518] = 5488, - [5519] = 5488, - [5520] = 5488, - [5521] = 5488, - [5522] = 5488, - [5523] = 5488, - [5524] = 5488, - [5525] = 5488, - [5526] = 5488, - [5527] = 5488, - [5528] = 5488, - [5529] = 352, - [5530] = 158, - [5531] = 526, - [5532] = 527, - [5533] = 1736, - [5534] = 353, - [5535] = 369, - [5536] = 155, - [5537] = 340, - [5538] = 384, - [5539] = 5488, - [5540] = 5488, - [5541] = 528, - [5542] = 1737, - [5543] = 529, - [5544] = 370, - [5545] = 355, - [5546] = 356, - [5547] = 1795, - [5548] = 1701, - [5549] = 160, - [5550] = 1391, - [5551] = 355, - [5552] = 162, - [5553] = 5472, - [5554] = 5488, - [5555] = 163, - [5556] = 158, - [5557] = 1680, - [5558] = 343, - [5559] = 369, - [5560] = 358, - [5561] = 5180, - [5562] = 5488, - [5563] = 1658, - [5564] = 4801, - [5565] = 360, - [5566] = 5488, - [5567] = 5567, - [5568] = 156, - [5569] = 1391, - [5570] = 1837, - [5571] = 159, - [5572] = 160, - [5573] = 383, - [5574] = 5574, - [5575] = 5488, - [5576] = 155, - [5577] = 4796, - [5578] = 157, - [5579] = 536, - [5580] = 355, - [5581] = 360, - [5582] = 343, - [5583] = 340, - [5584] = 157, - [5585] = 5488, - [5586] = 159, - [5587] = 353, - [5588] = 5488, - [5589] = 1838, - [5590] = 370, - [5591] = 5488, - [5592] = 157, - [5593] = 1831, - [5594] = 152, - [5595] = 156, - [5596] = 5488, - [5597] = 4798, - [5598] = 360, - [5599] = 352, - [5600] = 369, - [5601] = 160, - [5602] = 5488, - [5603] = 5488, - [5604] = 1628, - [5605] = 354, - [5606] = 152, - [5607] = 4785, - [5608] = 153, - [5609] = 5180, - [5610] = 1610, - [5611] = 5611, - [5612] = 1842, - [5613] = 154, - [5614] = 389, - [5615] = 5488, - [5616] = 1814, - [5617] = 1843, - [5618] = 4795, - [5619] = 384, - [5620] = 5620, - [5621] = 527, - [5622] = 1391, - [5623] = 2627, - [5624] = 429, - [5625] = 161, - [5626] = 5620, - [5627] = 388, - [5628] = 355, - [5629] = 2628, - [5630] = 5630, - [5631] = 161, - [5632] = 2800, - [5633] = 4945, - [5634] = 436, - [5635] = 5635, - [5636] = 528, - [5637] = 529, - [5638] = 451, - [5639] = 1680, - [5640] = 437, - [5641] = 423, - [5642] = 5642, - [5643] = 2636, - [5644] = 162, - [5645] = 352, - [5646] = 5646, - [5647] = 5647, - [5648] = 448, - [5649] = 5649, - [5650] = 163, - [5651] = 2804, + [5473] = 5410, + [5474] = 5411, + [5475] = 353, + [5476] = 5472, + [5477] = 373, + [5478] = 404, + [5479] = 402, + [5480] = 363, + [5481] = 5411, + [5482] = 319, + [5483] = 5381, + [5484] = 5384, + [5485] = 5410, + [5486] = 399, + [5487] = 403, + [5488] = 5411, + [5489] = 407, + [5490] = 317, + [5491] = 5381, + [5492] = 319, + [5493] = 409, + [5494] = 410, + [5495] = 5381, + [5496] = 5410, + [5497] = 5411, + [5498] = 5498, + [5499] = 158, + [5500] = 5500, + [5501] = 1815, + [5502] = 1818, + [5503] = 1766, + [5504] = 398, + [5505] = 361, + [5506] = 5506, + [5507] = 158, + [5508] = 159, + [5509] = 373, + [5510] = 161, + [5511] = 1404, + [5512] = 370, + [5513] = 373, + [5514] = 1732, + [5515] = 1737, + [5516] = 356, + [5517] = 358, + [5518] = 540, + [5519] = 360, + [5520] = 361, + [5521] = 5506, + [5522] = 5522, + [5523] = 162, + [5524] = 163, + [5525] = 155, + [5526] = 363, + [5527] = 156, + [5528] = 382, + [5529] = 537, + [5530] = 5506, + [5531] = 370, + [5532] = 5506, + [5533] = 5506, + [5534] = 160, + [5535] = 547, + [5536] = 4994, + [5537] = 5506, + [5538] = 5500, + [5539] = 157, + [5540] = 5506, + [5541] = 4798, + [5542] = 393, + [5543] = 158, + [5544] = 5506, + [5545] = 1639, + [5546] = 159, + [5547] = 353, + [5548] = 395, + [5549] = 5506, + [5550] = 5550, + [5551] = 160, + [5552] = 4892, + [5553] = 4796, + [5554] = 5506, + [5555] = 4890, + [5556] = 4908, + [5557] = 5506, + [5558] = 5506, + [5559] = 4889, + [5560] = 152, + [5561] = 5506, + [5562] = 153, + [5563] = 154, + [5564] = 373, + [5565] = 5506, + [5566] = 5506, + [5567] = 5506, + [5568] = 5506, + [5569] = 1751, + [5570] = 5506, + [5571] = 155, + [5572] = 156, + [5573] = 5506, + [5574] = 5506, + [5575] = 5506, + [5576] = 5506, + [5577] = 5506, + [5578] = 5506, + [5579] = 5506, + [5580] = 5506, + [5581] = 5506, + [5582] = 5506, + [5583] = 5506, + [5584] = 5506, + [5585] = 5506, + [5586] = 5506, + [5587] = 5506, + [5588] = 5506, + [5589] = 5506, + [5590] = 5506, + [5591] = 5506, + [5592] = 5506, + [5593] = 5506, + [5594] = 5506, + [5595] = 5506, + [5596] = 5506, + [5597] = 5506, + [5598] = 370, + [5599] = 356, + [5600] = 356, + [5601] = 346, + [5602] = 1404, + [5603] = 1755, + [5604] = 152, + [5605] = 5383, + [5606] = 1655, + [5607] = 1707, + [5608] = 358, + [5609] = 358, + [5610] = 1693, + [5611] = 354, + [5612] = 360, + [5613] = 5613, + [5614] = 5614, + [5615] = 346, + [5616] = 157, + [5617] = 534, + [5618] = 539, + [5619] = 5506, + [5620] = 159, + [5621] = 342, + [5622] = 160, + [5623] = 352, + [5624] = 361, + [5625] = 157, + [5626] = 360, + [5627] = 1641, + [5628] = 342, + [5629] = 1765, + [5630] = 399, + [5631] = 420, + [5632] = 2857, + [5633] = 161, + [5634] = 422, + [5635] = 539, + [5636] = 547, + [5637] = 433, + [5638] = 444, + [5639] = 445, + [5640] = 395, + [5641] = 382, + [5642] = 5357, + [5643] = 403, + [5644] = 5644, + [5645] = 382, + [5646] = 399, + [5647] = 398, + [5648] = 2811, + [5649] = 1169, + [5650] = 370, + [5651] = 400, [5652] = 5652, - [5653] = 5653, - [5654] = 353, - [5655] = 5655, + [5653] = 382, + [5654] = 4816, + [5655] = 3169, [5656] = 5656, - [5657] = 5657, - [5658] = 5658, - [5659] = 448, - [5660] = 387, - [5661] = 162, - [5662] = 163, - [5663] = 383, - [5664] = 405, - [5665] = 5665, - [5666] = 353, - [5667] = 355, - [5668] = 384, - [5669] = 1701, - [5670] = 352, - [5671] = 383, - [5672] = 360, - [5673] = 387, - [5674] = 447, - [5675] = 5675, - [5676] = 3152, - [5677] = 608, - [5678] = 412, - [5679] = 5675, - [5680] = 370, - [5681] = 2795, - [5682] = 1658, + [5657] = 411, + [5658] = 2837, + [5659] = 412, + [5660] = 2842, + [5661] = 5661, + [5662] = 417, + [5663] = 395, + [5664] = 398, + [5665] = 393, + [5666] = 162, + [5667] = 163, + [5668] = 404, + [5669] = 2656, + [5670] = 356, + [5671] = 414, + [5672] = 2632, + [5673] = 373, + [5674] = 1693, + [5675] = 161, + [5676] = 5676, + [5677] = 395, + [5678] = 5678, + [5679] = 404, + [5680] = 385, + [5681] = 407, + [5682] = 5661, [5683] = 385, - [5684] = 5684, - [5685] = 2622, - [5686] = 414, - [5687] = 5665, - [5688] = 360, - [5689] = 389, - [5690] = 369, - [5691] = 2786, - [5692] = 417, - [5693] = 387, - [5694] = 152, - [5695] = 5635, - [5696] = 1171, - [5697] = 420, - [5698] = 5655, - [5699] = 536, - [5700] = 5472, - [5701] = 526, - [5702] = 438, - [5703] = 152, - [5704] = 389, - [5705] = 5180, - [5706] = 421, - [5707] = 5684, - [5708] = 383, - [5709] = 5656, - [5710] = 5710, - [5711] = 388, - [5712] = 2623, - [5713] = 423, - [5714] = 407, - [5715] = 5646, - [5716] = 441, - [5717] = 5647, - [5718] = 5649, - [5719] = 2601, - [5720] = 2602, - [5721] = 389, - [5722] = 445, - [5723] = 426, - [5724] = 384, - [5725] = 385, - [5726] = 5657, - [5727] = 449, - [5728] = 402, - [5729] = 411, - [5730] = 427, - [5731] = 442, - [5732] = 450, - [5733] = 401, - [5734] = 5658, - [5735] = 1391, - [5736] = 3666, - [5737] = 5737, - [5738] = 5738, - [5739] = 661, + [5684] = 409, + [5685] = 380, + [5686] = 358, + [5687] = 540, + [5688] = 418, + [5689] = 534, + [5690] = 537, + [5691] = 361, + [5692] = 430, + [5693] = 5357, + [5694] = 402, + [5695] = 449, + [5696] = 152, + [5697] = 410, + [5698] = 5383, + [5699] = 1707, + [5700] = 356, + [5701] = 446, + [5702] = 1655, + [5703] = 448, + [5704] = 2644, + [5705] = 5705, + [5706] = 423, + [5707] = 1404, + [5708] = 358, + [5709] = 2663, + [5710] = 393, + [5711] = 152, + [5712] = 360, + [5713] = 415, + [5714] = 361, + [5715] = 398, + [5716] = 598, + [5717] = 162, + [5718] = 2655, + [5719] = 2657, + [5720] = 393, + [5721] = 163, + [5722] = 380, + [5723] = 1404, + [5724] = 360, + [5725] = 419, + [5726] = 2642, + [5727] = 5727, + [5728] = 5728, + [5729] = 5729, + [5730] = 5730, + [5731] = 5730, + [5732] = 5732, + [5733] = 5733, + [5734] = 5734, + [5735] = 5732, + [5736] = 5733, + [5737] = 539, + [5738] = 540, + [5739] = 5739, [5740] = 5740, - [5741] = 464, + [5741] = 5741, [5742] = 5742, - [5743] = 639, - [5744] = 5744, + [5743] = 5733, + [5744] = 500, [5745] = 5745, - [5746] = 5746, - [5747] = 529, - [5748] = 5748, + [5746] = 5739, + [5747] = 5734, + [5748] = 5741, [5749] = 5749, - [5750] = 5738, + [5750] = 5750, [5751] = 5751, - [5752] = 5740, - [5753] = 662, - [5754] = 5740, - [5755] = 5744, - [5756] = 611, - [5757] = 5740, - [5758] = 1661, - [5759] = 5744, - [5760] = 5745, - [5761] = 5746, - [5762] = 5745, - [5763] = 5748, - [5764] = 512, - [5765] = 5738, - [5766] = 5740, - [5767] = 358, - [5768] = 685, + [5752] = 5752, + [5753] = 5753, + [5754] = 5739, + [5755] = 165, + [5756] = 353, + [5757] = 5757, + [5758] = 5758, + [5759] = 513, + [5760] = 5760, + [5761] = 5742, + [5762] = 5762, + [5763] = 5763, + [5764] = 153, + [5765] = 353, + [5766] = 5732, + [5767] = 2857, + [5768] = 5768, [5769] = 5769, - [5770] = 5770, - [5771] = 5744, - [5772] = 5748, + [5770] = 5749, + [5771] = 5771, + [5772] = 454, [5773] = 5773, - [5774] = 5738, - [5775] = 5740, - [5776] = 5748, - [5777] = 5744, - [5778] = 633, - [5779] = 613, - [5780] = 5744, - [5781] = 614, - [5782] = 5748, - [5783] = 5738, - [5784] = 5740, - [5785] = 5745, - [5786] = 5786, - [5787] = 5746, - [5788] = 5744, - [5789] = 5740, - [5790] = 5748, - [5791] = 5738, - [5792] = 5740, - [5793] = 5793, - [5794] = 1842, - [5795] = 5795, - [5796] = 536, - [5797] = 5738, - [5798] = 5740, - [5799] = 1843, - [5800] = 2878, - [5801] = 5738, - [5802] = 5738, - [5803] = 5740, + [5774] = 5774, + [5775] = 154, + [5776] = 5734, + [5777] = 5741, + [5778] = 5778, + [5779] = 5779, + [5780] = 5780, + [5781] = 5781, + [5782] = 5782, + [5783] = 5783, + [5784] = 4194, + [5785] = 398, + [5786] = 353, + [5787] = 656, + [5788] = 5749, + [5789] = 1186, + [5790] = 509, + [5791] = 5791, + [5792] = 5729, + [5793] = 5730, + [5794] = 5732, + [5795] = 5733, + [5796] = 5739, + [5797] = 5742, + [5798] = 5798, + [5799] = 5799, + [5800] = 664, + [5801] = 5801, + [5802] = 5749, + [5803] = 5803, [5804] = 5804, [5805] = 5805, - [5806] = 5738, - [5807] = 5740, - [5808] = 356, + [5806] = 5758, + [5807] = 382, + [5808] = 5808, [5809] = 5809, - [5810] = 2883, - [5811] = 481, - [5812] = 5745, - [5813] = 5813, - [5814] = 5746, - [5815] = 669, - [5816] = 685, - [5817] = 5817, - [5818] = 671, - [5819] = 527, - [5820] = 5748, - [5821] = 528, - [5822] = 5746, - [5823] = 5738, - [5824] = 616, - [5825] = 5738, - [5826] = 513, - [5827] = 640, - [5828] = 5748, - [5829] = 5744, - [5830] = 1628, - [5831] = 656, - [5832] = 164, - [5833] = 5833, - [5834] = 619, - [5835] = 526, - [5836] = 2800, - [5837] = 5740, - [5838] = 5838, - [5839] = 5839, - [5840] = 5793, - [5841] = 5745, - [5842] = 643, - [5843] = 625, - [5844] = 612, - [5845] = 5839, - [5846] = 356, - [5847] = 5745, - [5848] = 1814, - [5849] = 5849, - [5850] = 5738, - [5851] = 387, - [5852] = 5746, - [5853] = 5744, - [5854] = 473, - [5855] = 5804, - [5856] = 5744, - [5857] = 3165, - [5858] = 356, - [5859] = 384, - [5860] = 5745, - [5861] = 5861, - [5862] = 688, - [5863] = 1177, - [5864] = 5746, - [5865] = 5748, - [5866] = 620, - [5867] = 5738, - [5868] = 1736, - [5869] = 5738, - [5870] = 1737, - [5871] = 5740, - [5872] = 5872, - [5873] = 5740, - [5874] = 358, - [5875] = 5838, - [5876] = 154, - [5877] = 621, - [5878] = 4154, - [5879] = 444, - [5880] = 623, - [5881] = 5809, - [5882] = 5882, - [5883] = 5744, - [5884] = 635, - [5885] = 1733, - [5886] = 164, - [5887] = 510, - [5888] = 389, - [5889] = 5889, - [5890] = 5745, - [5891] = 5746, - [5892] = 5746, - [5893] = 5748, - [5894] = 383, - [5895] = 5749, - [5896] = 5896, - [5897] = 5744, - [5898] = 1795, - [5899] = 5738, - [5900] = 5751, - [5901] = 5745, - [5902] = 5746, - [5903] = 5745, - [5904] = 5904, - [5905] = 5746, - [5906] = 5804, - [5907] = 647, - [5908] = 5908, - [5909] = 5740, - [5910] = 682, - [5911] = 692, - [5912] = 677, - [5913] = 5748, - [5914] = 653, - [5915] = 5740, - [5916] = 5738, - [5917] = 667, - [5918] = 5918, - [5919] = 5919, - [5920] = 511, - [5921] = 5740, - [5922] = 668, + [5810] = 5810, + [5811] = 363, + [5812] = 5812, + [5813] = 5729, + [5814] = 5730, + [5815] = 5732, + [5816] = 5739, + [5817] = 5742, + [5818] = 547, + [5819] = 2875, + [5820] = 5820, + [5821] = 5821, + [5822] = 5749, + [5823] = 2811, + [5824] = 669, + [5825] = 671, + [5826] = 2883, + [5827] = 5729, + [5828] = 5828, + [5829] = 675, + [5830] = 5730, + [5831] = 5732, + [5832] = 5739, + [5833] = 5742, + [5834] = 478, + [5835] = 3179, + [5836] = 5836, + [5837] = 5837, + [5838] = 5749, + [5839] = 684, + [5840] = 692, + [5841] = 5798, + [5842] = 5729, + [5843] = 5730, + [5844] = 5732, + [5845] = 5804, + [5846] = 5739, + [5847] = 5742, + [5848] = 5805, + [5849] = 5812, + [5850] = 5749, + [5851] = 5820, + [5852] = 5729, + [5853] = 5730, + [5854] = 5732, + [5855] = 5739, + [5856] = 5742, + [5857] = 5749, + [5858] = 5773, + [5859] = 5729, + [5860] = 5730, + [5861] = 5732, + [5862] = 5739, + [5863] = 637, + [5864] = 5742, + [5865] = 5865, + [5866] = 680, + [5867] = 5749, + [5868] = 613, + [5869] = 5869, + [5870] = 5729, + [5871] = 5730, + [5872] = 5732, + [5873] = 363, + [5874] = 5739, + [5875] = 5875, + [5876] = 5742, + [5877] = 5877, + [5878] = 5749, + [5879] = 631, + [5880] = 632, + [5881] = 5729, + [5882] = 5730, + [5883] = 5732, + [5884] = 5739, + [5885] = 363, + [5886] = 5742, + [5887] = 5887, + [5888] = 5749, + [5889] = 638, + [5890] = 682, + [5891] = 612, + [5892] = 5769, + [5893] = 5729, + [5894] = 5730, + [5895] = 5732, + [5896] = 5739, + [5897] = 5771, + [5898] = 5742, + [5899] = 5774, + [5900] = 5778, + [5901] = 5749, + [5902] = 5779, + [5903] = 5780, + [5904] = 5781, + [5905] = 5783, + [5906] = 5729, + [5907] = 5730, + [5908] = 5732, + [5909] = 649, + [5910] = 5739, + [5911] = 661, + [5912] = 5742, + [5913] = 5749, + [5914] = 678, + [5915] = 5729, + [5916] = 683, + [5917] = 5739, + [5918] = 5742, + [5919] = 5749, + [5920] = 5729, + [5921] = 5739, + [5922] = 5742, [5923] = 5749, - [5924] = 5751, - [5925] = 5925, - [5926] = 641, - [5927] = 5748, - [5928] = 5928, - [5929] = 631, - [5930] = 5930, - [5931] = 153, - [5932] = 4781, - [5933] = 480, - [5934] = 5934, - [5935] = 5935, - [5936] = 5748, - [5937] = 5744, - [5938] = 5745, - [5939] = 5746, - [5940] = 154, - [5941] = 5941, - [5942] = 5748, - [5943] = 1610, - [5944] = 1628, - [5945] = 5744, + [5924] = 5729, + [5925] = 5729, + [5926] = 5739, + [5927] = 5749, + [5928] = 686, + [5929] = 611, + [5930] = 5742, + [5931] = 5749, + [5932] = 621, + [5933] = 625, + [5934] = 628, + [5935] = 5742, + [5936] = 5749, + [5937] = 441, + [5938] = 647, + [5939] = 5742, + [5940] = 5749, + [5941] = 655, + [5942] = 657, + [5943] = 660, + [5944] = 5791, + [5945] = 5945, [5946] = 5946, [5947] = 5947, - [5948] = 656, - [5949] = 5642, - [5950] = 153, - [5951] = 5738, - [5952] = 5738, - [5953] = 5804, - [5954] = 680, - [5955] = 675, - [5956] = 5956, - [5957] = 510, - [5958] = 683, - [5959] = 2804, - [5960] = 5960, - [5961] = 5961, - [5962] = 5962, - [5963] = 5740, - [5964] = 5817, - [5965] = 686, - [5966] = 5833, - [5967] = 1837, - [5968] = 1838, - [5969] = 3638, - [5970] = 510, - [5971] = 637, - [5972] = 511, - [5973] = 512, - [5974] = 481, - [5975] = 5975, - [5976] = 5809, - [5977] = 5977, - [5978] = 632, - [5979] = 5748, - [5980] = 511, - [5981] = 512, - [5982] = 481, - [5983] = 5809, - [5984] = 5744, - [5985] = 5745, - [5986] = 358, - [5987] = 4152, - [5988] = 636, - [5989] = 455, - [5990] = 5746, - [5991] = 446, - [5992] = 5992, - [5993] = 4696, - [5994] = 1831, - [5995] = 5795, - [5996] = 5744, - [5997] = 5997, - [5998] = 5748, - [5999] = 1610, + [5948] = 670, + [5949] = 681, + [5950] = 676, + [5951] = 654, + [5952] = 1701, + [5953] = 5953, + [5954] = 5945, + [5955] = 482, + [5956] = 165, + [5957] = 1708, + [5958] = 483, + [5959] = 1815, + [5960] = 1818, + [5961] = 537, + [5962] = 534, + [5963] = 5762, + [5964] = 5763, + [5965] = 5965, + [5966] = 487, + [5967] = 5745, + [5968] = 1732, + [5969] = 1737, + [5970] = 5970, + [5971] = 5971, + [5972] = 1639, + [5973] = 5965, + [5974] = 1641, + [5975] = 1639, + [5976] = 635, + [5977] = 500, + [5978] = 636, + [5979] = 5979, + [5980] = 5357, + [5981] = 5981, + [5982] = 1765, + [5983] = 1766, + [5984] = 5984, + [5985] = 5751, + [5986] = 434, + [5987] = 639, + [5988] = 640, + [5989] = 5946, + [5990] = 641, + [5991] = 393, + [5992] = 4223, + [5993] = 1641, + [5994] = 5760, + [5995] = 5947, + [5996] = 656, + [5997] = 153, + [5998] = 5676, + [5999] = 5999, [6000] = 6000, - [6001] = 1661, + [6001] = 645, [6002] = 6002, - [6003] = 6003, - [6004] = 354, - [6005] = 5737, - [6006] = 5742, - [6007] = 155, - [6008] = 156, - [6009] = 3666, - [6010] = 6010, - [6011] = 5941, - [6012] = 5977, - [6013] = 405, - [6014] = 4785, - [6015] = 3638, - [6016] = 511, - [6017] = 512, - [6018] = 481, - [6019] = 356, - [6020] = 407, - [6021] = 411, - [6022] = 423, - [6023] = 448, - [6024] = 6024, - [6025] = 6025, + [6003] = 479, + [6004] = 4736, + [6005] = 5730, + [6006] = 3669, + [6007] = 3696, + [6008] = 500, + [6009] = 1751, + [6010] = 482, + [6011] = 483, + [6012] = 487, + [6013] = 4741, + [6014] = 5760, + [6015] = 1755, + [6016] = 482, + [6017] = 483, + [6018] = 487, + [6019] = 5760, + [6020] = 154, + [6021] = 664, + [6022] = 395, + [6023] = 5729, + [6024] = 5742, + [6025] = 5837, [6026] = 6026, - [6027] = 6024, - [6028] = 412, - [6029] = 414, - [6030] = 417, - [6031] = 420, - [6032] = 6032, - [6033] = 3638, - [6034] = 152, - [6035] = 421, - [6036] = 426, - [6037] = 427, - [6038] = 429, - [6039] = 436, - [6040] = 437, - [6041] = 438, - [6042] = 441, - [6043] = 442, - [6044] = 401, - [6045] = 402, - [6046] = 158, - [6047] = 369, - [6048] = 159, - [6049] = 1842, - [6050] = 1843, - [6051] = 160, - [6052] = 369, - [6053] = 6053, - [6054] = 5960, - [6055] = 5961, - [6056] = 4801, - [6057] = 157, - [6058] = 358, - [6059] = 1837, - [6060] = 1838, - [6061] = 1814, + [6027] = 6027, + [6028] = 5742, + [6029] = 6029, + [6030] = 1693, + [6031] = 6029, + [6032] = 373, + [6033] = 407, + [6034] = 6034, + [6035] = 5676, + [6036] = 6036, + [6037] = 4994, + [6038] = 6034, + [6039] = 6029, + [6040] = 6040, + [6041] = 502, + [6042] = 6042, + [6043] = 353, + [6044] = 6029, + [6045] = 157, + [6046] = 6046, + [6047] = 6047, + [6048] = 409, + [6049] = 6049, + [6050] = 3669, + [6051] = 370, + [6052] = 410, + [6053] = 152, + [6054] = 404, + [6055] = 363, + [6056] = 501, + [6057] = 160, + [6058] = 4798, + [6059] = 6059, + [6060] = 3696, + [6061] = 6034, [6062] = 370, - [6063] = 1736, - [6064] = 1737, - [6065] = 1795, - [6066] = 6066, - [6067] = 158, - [6068] = 159, - [6069] = 160, - [6070] = 6026, - [6071] = 157, - [6072] = 2800, - [6073] = 6026, - [6074] = 6024, - [6075] = 370, - [6076] = 6032, - [6077] = 1701, - [6078] = 6078, + [6063] = 5801, + [6064] = 6034, + [6065] = 6029, + [6066] = 1708, + [6067] = 6067, + [6068] = 411, + [6069] = 5803, + [6070] = 6070, + [6071] = 412, + [6072] = 414, + [6073] = 373, + [6074] = 6040, + [6075] = 6075, + [6076] = 1655, + [6077] = 3696, + [6078] = 1693, [6079] = 6079, - [6080] = 5904, + [6080] = 5799, [6081] = 6081, - [6082] = 6026, - [6083] = 3666, - [6084] = 6032, - [6085] = 6026, - [6086] = 6086, - [6087] = 6087, - [6088] = 6002, - [6089] = 6086, - [6090] = 155, - [6091] = 6032, - [6092] = 156, - [6093] = 6093, - [6094] = 6026, - [6095] = 6087, - [6096] = 6026, - [6097] = 6032, - [6098] = 6098, - [6099] = 6024, - [6100] = 6026, - [6101] = 6101, - [6102] = 6032, - [6103] = 6026, - [6104] = 1831, - [6105] = 6032, - [6106] = 6032, - [6107] = 6026, - [6108] = 6032, - [6109] = 6026, - [6110] = 6032, - [6111] = 6111, + [6082] = 2857, + [6083] = 6083, + [6084] = 6084, + [6085] = 6085, + [6086] = 418, + [6087] = 6084, + [6088] = 6029, + [6089] = 6089, + [6090] = 6090, + [6091] = 482, + [6092] = 6034, + [6093] = 483, + [6094] = 487, + [6095] = 6095, + [6096] = 352, + [6097] = 1707, + [6098] = 419, + [6099] = 420, + [6100] = 158, + [6101] = 1641, + [6102] = 370, + [6103] = 3669, + [6104] = 6029, + [6105] = 422, + [6106] = 433, + [6107] = 444, + [6108] = 445, + [6109] = 5750, + [6110] = 6090, + [6111] = 6095, [6112] = 6112, - [6113] = 6026, - [6114] = 6032, - [6115] = 6115, - [6116] = 448, - [6117] = 6026, - [6118] = 6032, + [6113] = 446, + [6114] = 448, + [6115] = 6047, + [6116] = 423, + [6117] = 1732, + [6118] = 415, [6119] = 6119, - [6120] = 6026, - [6121] = 6032, - [6122] = 6026, - [6123] = 6032, - [6124] = 6026, - [6125] = 6032, - [6126] = 5642, - [6127] = 4795, - [6128] = 6098, - [6129] = 4796, - [6130] = 6130, - [6131] = 369, - [6132] = 1701, - [6133] = 358, - [6134] = 423, - [6135] = 6135, - [6136] = 1733, - [6137] = 5997, - [6138] = 6003, - [6139] = 6139, - [6140] = 6111, - [6141] = 362, - [6142] = 1680, - [6143] = 6081, - [6144] = 2804, - [6145] = 6145, - [6146] = 6146, - [6147] = 370, - [6148] = 1658, - [6149] = 1628, - [6150] = 501, - [6151] = 6151, - [6152] = 6086, - [6153] = 6087, - [6154] = 6002, - [6155] = 6098, - [6156] = 1680, - [6157] = 6081, - [6158] = 6145, - [6159] = 358, - [6160] = 510, - [6161] = 1610, - [6162] = 1658, - [6163] = 6086, - [6164] = 6087, - [6165] = 6002, - [6166] = 6098, - [6167] = 6081, - [6168] = 6145, - [6169] = 6081, - [6170] = 6145, + [6120] = 417, + [6121] = 6034, + [6122] = 6122, + [6123] = 6122, + [6124] = 4796, + [6125] = 6029, + [6126] = 1701, + [6127] = 1655, + [6128] = 4890, + [6129] = 6081, + [6130] = 4908, + [6131] = 6084, + [6132] = 6034, + [6133] = 1639, + [6134] = 6134, + [6135] = 1707, + [6136] = 1765, + [6137] = 1766, + [6138] = 6138, + [6139] = 6034, + [6140] = 6029, + [6141] = 159, + [6142] = 6029, + [6143] = 1737, + [6144] = 6034, + [6145] = 6029, + [6146] = 6095, + [6147] = 6112, + [6148] = 6148, + [6149] = 6047, + [6150] = 6090, + [6151] = 6095, + [6152] = 6112, + [6153] = 6029, + [6154] = 6112, + [6155] = 6081, + [6156] = 6084, + [6157] = 6157, + [6158] = 399, + [6159] = 6081, + [6160] = 6084, + [6161] = 363, + [6162] = 1751, + [6163] = 373, + [6164] = 6081, + [6165] = 6084, + [6166] = 354, + [6167] = 6034, + [6168] = 6081, + [6169] = 6084, + [6170] = 157, [6171] = 6081, - [6172] = 6145, - [6173] = 6081, - [6174] = 6145, - [6175] = 6081, - [6176] = 6145, + [6172] = 6084, + [6173] = 404, + [6174] = 6081, + [6175] = 6084, + [6176] = 2811, [6177] = 6081, - [6178] = 6145, - [6179] = 6179, - [6180] = 6180, - [6181] = 6081, - [6182] = 6145, + [6178] = 6084, + [6179] = 6081, + [6180] = 6084, + [6181] = 6029, + [6182] = 1755, [6183] = 6081, - [6184] = 6145, + [6184] = 6084, [6185] = 6081, - [6186] = 6145, - [6187] = 4798, - [6188] = 6081, - [6189] = 6145, + [6186] = 6084, + [6187] = 5970, + [6188] = 5971, + [6189] = 399, [6190] = 6081, - [6191] = 6145, + [6191] = 6084, [6192] = 6081, - [6193] = 6145, + [6193] = 6084, [6194] = 6081, - [6195] = 6145, + [6195] = 6084, [6196] = 6081, - [6197] = 6145, + [6197] = 6084, [6198] = 6081, - [6199] = 6145, + [6199] = 6084, [6200] = 6081, - [6201] = 6145, - [6202] = 356, - [6203] = 6130, - [6204] = 6135, - [6205] = 6151, - [6206] = 6078, - [6207] = 4799, - [6208] = 4800, - [6209] = 6145, - [6210] = 504, - [6211] = 6032, - [6212] = 6212, - [6213] = 6213, - [6214] = 6214, - [6215] = 6215, - [6216] = 6216, - [6217] = 4743, - [6218] = 6218, - [6219] = 6219, - [6220] = 6220, - [6221] = 6221, - [6222] = 6222, - [6223] = 6223, - [6224] = 6224, - [6225] = 6225, - [6226] = 6226, - [6227] = 6227, - [6228] = 6212, - [6229] = 6229, - [6230] = 532, - [6231] = 6231, - [6232] = 6232, - [6233] = 515, - [6234] = 161, - [6235] = 6235, - [6236] = 6236, - [6237] = 518, - [6238] = 6225, - [6239] = 389, - [6240] = 6240, - [6241] = 369, - [6242] = 6242, - [6243] = 6243, - [6244] = 537, - [6245] = 6216, + [6201] = 6084, + [6202] = 6202, + [6203] = 6203, + [6204] = 6204, + [6205] = 6067, + [6206] = 6148, + [6207] = 4892, + [6208] = 6203, + [6209] = 6036, + [6210] = 6138, + [6211] = 6034, + [6212] = 6122, + [6213] = 6034, + [6214] = 6034, + [6215] = 160, + [6216] = 6029, + [6217] = 1815, + [6218] = 6029, + [6219] = 6070, + [6220] = 155, + [6221] = 500, + [6222] = 6034, + [6223] = 155, + [6224] = 5752, + [6225] = 6029, + [6226] = 363, + [6227] = 5981, + [6228] = 156, + [6229] = 158, + [6230] = 353, + [6231] = 159, + [6232] = 6204, + [6233] = 6034, + [6234] = 6234, + [6235] = 6047, + [6236] = 156, + [6237] = 6122, + [6238] = 6034, + [6239] = 1818, + [6240] = 6081, + [6241] = 6241, + [6242] = 4889, + [6243] = 6090, + [6244] = 6244, + [6245] = 6234, [6246] = 6246, - [6247] = 6247, + [6247] = 598, [6248] = 6248, - [6249] = 4770, + [6249] = 162, [6250] = 6250, - [6251] = 6226, - [6252] = 6213, - [6253] = 6213, + [6251] = 6251, + [6252] = 6252, + [6253] = 6253, [6254] = 6254, - [6255] = 532, - [6256] = 6222, - [6257] = 6223, - [6258] = 6224, - [6259] = 6225, - [6260] = 6226, - [6261] = 6227, - [6262] = 6212, - [6263] = 6229, + [6255] = 521, + [6256] = 6256, + [6257] = 6257, + [6258] = 537, + [6259] = 534, + [6260] = 6260, + [6261] = 522, + [6262] = 6262, + [6263] = 6263, [6264] = 6264, [6265] = 6265, - [6266] = 6216, - [6267] = 6247, - [6268] = 6268, - [6269] = 3048, + [6266] = 6266, + [6267] = 6267, + [6268] = 4776, + [6269] = 6269, [6270] = 6270, - [6271] = 6271, - [6272] = 6272, - [6273] = 6273, - [6274] = 6213, - [6275] = 6275, - [6276] = 6276, - [6277] = 6216, - [6278] = 6278, - [6279] = 6222, - [6280] = 6223, - [6281] = 6224, - [6282] = 6225, - [6283] = 6226, - [6284] = 6227, - [6285] = 6212, - [6286] = 6229, - [6287] = 3076, - [6288] = 3055, + [6271] = 1641, + [6272] = 6119, + [6273] = 539, + [6274] = 6274, + [6275] = 540, + [6276] = 2656, + [6277] = 2632, + [6278] = 163, + [6279] = 3319, + [6280] = 3324, + [6281] = 6244, + [6282] = 6282, + [6283] = 6283, + [6284] = 6284, + [6285] = 6285, + [6286] = 1639, + [6287] = 6287, + [6288] = 6288, [6289] = 6289, - [6290] = 6216, - [6291] = 6247, - [6292] = 528, - [6293] = 529, - [6294] = 6247, - [6295] = 6295, - [6296] = 6213, + [6290] = 6290, + [6291] = 6291, + [6292] = 6292, + [6293] = 370, + [6294] = 6294, + [6295] = 6270, + [6296] = 547, [6297] = 6297, [6298] = 6298, [6299] = 6299, - [6300] = 6221, - [6301] = 6222, - [6302] = 6223, - [6303] = 6224, - [6304] = 6225, - [6305] = 6226, - [6306] = 6227, - [6307] = 6212, - [6308] = 6229, - [6309] = 4665, - [6310] = 6216, - [6311] = 6247, - [6312] = 4899, - [6313] = 6226, - [6314] = 1628, - [6315] = 6213, - [6316] = 536, - [6317] = 162, - [6318] = 163, - [6319] = 6222, - [6320] = 6223, - [6321] = 6224, - [6322] = 6225, - [6323] = 6226, - [6324] = 6227, - [6325] = 6212, - [6326] = 6229, + [6300] = 6300, + [6301] = 6301, + [6302] = 398, + [6303] = 6303, + [6304] = 6304, + [6305] = 3097, + [6306] = 6244, + [6307] = 382, + [6308] = 3024, + [6309] = 373, + [6310] = 6310, + [6311] = 6311, + [6312] = 6312, + [6313] = 393, + [6314] = 6314, + [6315] = 6315, + [6316] = 395, + [6317] = 6284, + [6318] = 6318, + [6319] = 161, + [6320] = 6320, + [6321] = 6321, + [6322] = 6322, + [6323] = 6323, + [6324] = 6324, + [6325] = 6325, + [6326] = 6326, [6327] = 6327, - [6328] = 6216, - [6329] = 6247, + [6328] = 6328, + [6329] = 6329, [6330] = 6330, - [6331] = 6331, + [6331] = 537, [6332] = 6332, - [6333] = 162, - [6334] = 6213, - [6335] = 163, - [6336] = 6336, + [6333] = 3283, + [6334] = 3326, + [6335] = 6335, + [6336] = 398, [6337] = 6337, - [6338] = 6222, - [6339] = 6223, - [6340] = 6224, - [6341] = 6225, - [6342] = 6226, - [6343] = 6227, - [6344] = 6212, - [6345] = 6229, - [6346] = 6213, - [6347] = 6227, - [6348] = 6216, - [6349] = 6247, - [6350] = 2628, - [6351] = 6213, - [6352] = 6212, - [6353] = 6213, - [6354] = 6222, - [6355] = 6223, - [6356] = 6224, - [6357] = 6225, - [6358] = 6226, - [6359] = 6227, - [6360] = 6212, - [6361] = 6229, - [6362] = 6216, - [6363] = 6247, - [6364] = 527, + [6338] = 6338, + [6339] = 6339, + [6340] = 6340, + [6341] = 534, + [6342] = 6342, + [6343] = 6343, + [6344] = 6344, + [6345] = 6345, + [6346] = 3036, + [6347] = 6304, + [6348] = 6348, + [6349] = 6349, + [6350] = 398, + [6351] = 6351, + [6352] = 6352, + [6353] = 382, + [6354] = 162, + [6355] = 163, + [6356] = 393, + [6357] = 6270, + [6358] = 395, + [6359] = 543, + [6360] = 6360, + [6361] = 6361, + [6362] = 6362, + [6363] = 6363, + [6364] = 1693, [6365] = 6365, - [6366] = 6366, - [6367] = 6213, + [6366] = 3325, + [6367] = 3209, [6368] = 6368, - [6369] = 6369, - [6370] = 6222, - [6371] = 6223, - [6372] = 6224, - [6373] = 6225, - [6374] = 6226, - [6375] = 6227, - [6376] = 6212, - [6377] = 6229, - [6378] = 6378, - [6379] = 6216, - [6380] = 3079, - [6381] = 6247, - [6382] = 1610, - [6383] = 6213, - [6384] = 6247, - [6385] = 544, - [6386] = 2623, - [6387] = 6222, - [6388] = 6223, - [6389] = 6224, - [6390] = 6225, - [6391] = 6226, - [6392] = 6227, - [6393] = 6212, - [6394] = 6229, - [6395] = 6395, - [6396] = 6216, - [6397] = 6247, - [6398] = 528, + [6369] = 6244, + [6370] = 6370, + [6371] = 6371, + [6372] = 6284, + [6373] = 6373, + [6374] = 6374, + [6375] = 6375, + [6376] = 6270, + [6377] = 523, + [6378] = 6298, + [6379] = 6312, + [6380] = 6321, + [6381] = 6322, + [6382] = 6323, + [6383] = 6342, + [6384] = 6343, + [6385] = 6344, + [6386] = 6304, + [6387] = 6387, + [6388] = 6388, + [6389] = 6389, + [6390] = 6390, + [6391] = 6391, + [6392] = 6392, + [6393] = 6393, + [6394] = 4679, + [6395] = 6312, + [6396] = 3017, + [6397] = 6397, + [6398] = 6398, [6399] = 6399, - [6400] = 6213, - [6401] = 1628, - [6402] = 529, - [6403] = 6222, - [6404] = 6223, - [6405] = 6224, - [6406] = 6225, - [6407] = 6226, - [6408] = 6227, - [6409] = 6212, - [6410] = 6229, - [6411] = 6216, - [6412] = 6247, - [6413] = 528, - [6414] = 223, - [6415] = 6213, - [6416] = 6416, - [6417] = 6222, - [6418] = 6223, - [6419] = 6224, - [6420] = 6225, - [6421] = 6226, - [6422] = 6227, + [6400] = 6400, + [6401] = 6244, + [6402] = 6284, + [6403] = 6403, + [6404] = 6404, + [6405] = 6405, + [6406] = 6270, + [6407] = 6407, + [6408] = 382, + [6409] = 6312, + [6410] = 6321, + [6411] = 6322, + [6412] = 6323, + [6413] = 6342, + [6414] = 6343, + [6415] = 6344, + [6416] = 6304, + [6417] = 537, + [6418] = 1639, + [6419] = 6244, + [6420] = 6284, + [6421] = 373, + [6422] = 6270, [6423] = 6423, - [6424] = 6229, + [6424] = 6424, [6425] = 6425, - [6426] = 6216, - [6427] = 6247, - [6428] = 529, - [6429] = 6213, - [6430] = 6222, - [6431] = 6222, - [6432] = 6223, - [6433] = 6224, - [6434] = 6225, - [6435] = 6226, - [6436] = 6227, - [6437] = 6212, - [6438] = 6229, - [6439] = 6216, - [6440] = 6247, - [6441] = 384, - [6442] = 6213, + [6426] = 1693, + [6427] = 6312, + [6428] = 6321, + [6429] = 6322, + [6430] = 6323, + [6431] = 6342, + [6432] = 6343, + [6433] = 6344, + [6434] = 6304, + [6435] = 6435, + [6436] = 534, + [6437] = 6244, + [6438] = 1641, + [6439] = 6284, + [6440] = 6440, + [6441] = 6270, + [6442] = 6442, [6443] = 6443, - [6444] = 6222, - [6445] = 6223, - [6446] = 6224, - [6447] = 6225, - [6448] = 6226, - [6449] = 6227, - [6450] = 6212, - [6451] = 6229, - [6452] = 526, + [6444] = 6444, + [6445] = 6312, + [6446] = 6321, + [6447] = 6322, + [6448] = 6323, + [6449] = 6342, + [6450] = 6343, + [6451] = 6344, + [6452] = 6304, [6453] = 6453, - [6454] = 6216, - [6455] = 6247, - [6456] = 6213, - [6457] = 6457, - [6458] = 6222, - [6459] = 6223, - [6460] = 6224, - [6461] = 6225, - [6462] = 6226, - [6463] = 6227, - [6464] = 6212, - [6465] = 6229, - [6466] = 6053, - [6467] = 6216, - [6468] = 6247, - [6469] = 6469, - [6470] = 6213, - [6471] = 6471, - [6472] = 6222, - [6473] = 6223, - [6474] = 6224, - [6475] = 6225, - [6476] = 6226, - [6477] = 6227, - [6478] = 6212, - [6479] = 6229, - [6480] = 6480, - [6481] = 6216, - [6482] = 6247, - [6483] = 6213, - [6484] = 6222, - [6485] = 6223, - [6486] = 6224, - [6487] = 6225, - [6488] = 6226, - [6489] = 6227, - [6490] = 6212, - [6491] = 6229, - [6492] = 6216, - [6493] = 6247, - [6494] = 6213, - [6495] = 6495, - [6496] = 6216, - [6497] = 6247, - [6498] = 6213, - [6499] = 6216, - [6500] = 6247, - [6501] = 6213, - [6502] = 6216, - [6503] = 6247, - [6504] = 6213, - [6505] = 6505, - [6506] = 6216, - [6507] = 6247, - [6508] = 6213, - [6509] = 6216, - [6510] = 6247, - [6511] = 6213, - [6512] = 537, - [6513] = 6247, - [6514] = 6213, - [6515] = 6515, - [6516] = 6216, - [6517] = 6247, - [6518] = 6213, - [6519] = 6519, - [6520] = 6216, - [6521] = 6247, - [6522] = 6213, - [6523] = 6216, - [6524] = 6247, - [6525] = 6213, - [6526] = 6216, - [6527] = 6247, - [6528] = 6213, - [6529] = 6216, - [6530] = 6247, - [6531] = 6213, - [6532] = 161, - [6533] = 6216, - [6534] = 6247, - [6535] = 6213, - [6536] = 6216, - [6537] = 6247, - [6538] = 6213, - [6539] = 6216, - [6540] = 6247, - [6541] = 6213, - [6542] = 6216, - [6543] = 6247, - [6544] = 6213, - [6545] = 6216, - [6546] = 6247, - [6547] = 6213, - [6548] = 6216, - [6549] = 6247, - [6550] = 6213, - [6551] = 384, - [6552] = 6216, - [6553] = 6247, - [6554] = 6213, - [6555] = 6216, - [6556] = 6247, - [6557] = 6213, + [6454] = 6244, + [6455] = 6455, + [6456] = 6284, + [6457] = 2655, + [6458] = 6458, + [6459] = 6459, + [6460] = 6460, + [6461] = 6270, + [6462] = 6462, + [6463] = 6463, + [6464] = 6464, + [6465] = 6465, + [6466] = 539, + [6467] = 6312, + [6468] = 6321, + [6469] = 6322, + [6470] = 6323, + [6471] = 6342, + [6472] = 6343, + [6473] = 6344, + [6474] = 6304, + [6475] = 540, + [6476] = 6244, + [6477] = 6477, + [6478] = 6284, + [6479] = 6479, + [6480] = 6270, + [6481] = 535, + [6482] = 541, + [6483] = 6312, + [6484] = 6321, + [6485] = 6322, + [6486] = 6323, + [6487] = 6342, + [6488] = 6343, + [6489] = 6344, + [6490] = 6304, + [6491] = 6244, + [6492] = 6284, + [6493] = 6270, + [6494] = 6494, + [6495] = 393, + [6496] = 6425, + [6497] = 4701, + [6498] = 6312, + [6499] = 6321, + [6500] = 6322, + [6501] = 6323, + [6502] = 6342, + [6503] = 6343, + [6504] = 6344, + [6505] = 6304, + [6506] = 6244, + [6507] = 6507, + [6508] = 6284, + [6509] = 6270, + [6510] = 6510, + [6511] = 6511, + [6512] = 6512, + [6513] = 543, + [6514] = 6312, + [6515] = 6321, + [6516] = 6322, + [6517] = 6323, + [6518] = 6342, + [6519] = 6343, + [6520] = 6344, + [6521] = 6304, + [6522] = 6522, + [6523] = 6523, + [6524] = 6524, + [6525] = 6525, + [6526] = 6244, + [6527] = 6284, + [6528] = 6270, + [6529] = 6312, + [6530] = 6321, + [6531] = 6322, + [6532] = 6323, + [6533] = 6342, + [6534] = 6343, + [6535] = 6344, + [6536] = 6304, + [6537] = 6244, + [6538] = 6538, + [6539] = 6284, + [6540] = 3037, + [6541] = 6270, + [6542] = 395, + [6543] = 6543, + [6544] = 6544, + [6545] = 548, + [6546] = 6546, + [6547] = 6312, + [6548] = 6321, + [6549] = 6322, + [6550] = 6323, + [6551] = 6342, + [6552] = 6343, + [6553] = 6344, + [6554] = 6304, + [6555] = 6555, + [6556] = 6556, + [6557] = 6244, [6558] = 6558, - [6559] = 6216, - [6560] = 6247, - [6561] = 6213, - [6562] = 6216, - [6563] = 6247, - [6564] = 6213, - [6565] = 6565, - [6566] = 6216, - [6567] = 6247, - [6568] = 6213, - [6569] = 6216, - [6570] = 6247, - [6571] = 6213, - [6572] = 6216, - [6573] = 6247, - [6574] = 6213, - [6575] = 6216, - [6576] = 6247, - [6577] = 6213, - [6578] = 6216, - [6579] = 6247, - [6580] = 6213, - [6581] = 6216, - [6582] = 6247, - [6583] = 6213, - [6584] = 6247, - [6585] = 6213, - [6586] = 6247, - [6587] = 6213, - [6588] = 6247, - [6589] = 6213, - [6590] = 6216, - [6591] = 6591, - [6592] = 6592, - [6593] = 6330, - [6594] = 608, + [6559] = 6284, + [6560] = 6270, + [6561] = 6561, + [6562] = 6312, + [6563] = 6563, + [6564] = 6244, + [6565] = 6321, + [6566] = 6322, + [6567] = 6323, + [6568] = 6342, + [6569] = 6343, + [6570] = 6344, + [6571] = 6304, + [6572] = 6572, + [6573] = 6573, + [6574] = 6244, + [6575] = 6575, + [6576] = 6284, + [6577] = 6270, + [6578] = 548, + [6579] = 6312, + [6580] = 6321, + [6581] = 6322, + [6582] = 6323, + [6583] = 6342, + [6584] = 6343, + [6585] = 6344, + [6586] = 6304, + [6587] = 6321, + [6588] = 6588, + [6589] = 6589, + [6590] = 6244, + [6591] = 537, + [6592] = 6284, + [6593] = 6270, + [6594] = 6322, [6595] = 6595, - [6596] = 6298, - [6597] = 6223, - [6598] = 384, - [6599] = 6365, - [6600] = 6600, - [6601] = 6222, - [6602] = 527, - [6603] = 6603, + [6596] = 6312, + [6597] = 6321, + [6598] = 6322, + [6599] = 6323, + [6600] = 6342, + [6601] = 6343, + [6602] = 6344, + [6603] = 6304, [6604] = 6604, - [6605] = 6605, - [6606] = 6606, + [6605] = 6244, + [6606] = 6284, [6607] = 6607, - [6608] = 6608, + [6608] = 6270, [6609] = 6609, - [6610] = 6565, - [6611] = 6246, - [6612] = 559, - [6613] = 3194, - [6614] = 560, - [6615] = 6615, - [6616] = 6616, - [6617] = 6273, - [6618] = 6618, - [6619] = 6619, - [6620] = 6620, - [6621] = 383, - [6622] = 6223, - [6623] = 3195, - [6624] = 6224, - [6625] = 6625, - [6626] = 528, - [6627] = 529, - [6628] = 6628, - [6629] = 6225, - [6630] = 6630, - [6631] = 387, - [6632] = 6632, - [6633] = 6633, - [6634] = 6222, - [6635] = 383, - [6636] = 6636, - [6637] = 6425, - [6638] = 369, - [6639] = 2622, - [6640] = 6640, - [6641] = 389, - [6642] = 6642, + [6610] = 6312, + [6611] = 6321, + [6612] = 6322, + [6613] = 6323, + [6614] = 6342, + [6615] = 6343, + [6616] = 6344, + [6617] = 6304, + [6618] = 6323, + [6619] = 6244, + [6620] = 6284, + [6621] = 6270, + [6622] = 6312, + [6623] = 6321, + [6624] = 6322, + [6625] = 6323, + [6626] = 6342, + [6627] = 6343, + [6628] = 6344, + [6629] = 6304, + [6630] = 6244, + [6631] = 6284, + [6632] = 6270, + [6633] = 6312, + [6634] = 6321, + [6635] = 6322, + [6636] = 6323, + [6637] = 6342, + [6638] = 6343, + [6639] = 6344, + [6640] = 6304, + [6641] = 6244, + [6642] = 6284, [6643] = 6643, - [6644] = 2601, - [6645] = 2602, - [6646] = 6216, - [6647] = 6216, - [6648] = 6648, - [6649] = 6649, - [6650] = 6650, - [6651] = 1610, - [6652] = 6652, - [6653] = 6653, - [6654] = 6289, - [6655] = 6655, - [6656] = 536, - [6657] = 6657, - [6658] = 544, - [6659] = 557, - [6660] = 6660, - [6661] = 6226, - [6662] = 558, - [6663] = 6227, - [6664] = 1701, - [6665] = 6665, - [6666] = 4667, - [6667] = 554, - [6668] = 6212, - [6669] = 6669, - [6670] = 3049, - [6671] = 6671, - [6672] = 1701, - [6673] = 1680, - [6674] = 6674, - [6675] = 6025, - [6676] = 1658, - [6677] = 536, - [6678] = 6000, - [6679] = 6679, - [6680] = 370, - [6681] = 387, - [6682] = 6682, - [6683] = 6229, - [6684] = 6684, - [6685] = 6227, - [6686] = 3198, - [6687] = 6687, - [6688] = 383, - [6689] = 6212, - [6690] = 6690, - [6691] = 3316, - [6692] = 370, - [6693] = 6216, - [6694] = 389, - [6695] = 3199, - [6696] = 6696, - [6697] = 3040, - [6698] = 6698, - [6699] = 6699, - [6700] = 6229, - [6701] = 6229, - [6702] = 3317, - [6703] = 6703, - [6704] = 6247, - [6705] = 2636, - [6706] = 527, - [6707] = 515, - [6708] = 6708, - [6709] = 518, - [6710] = 6710, - [6711] = 526, - [6712] = 6216, - [6713] = 358, - [6714] = 6714, - [6715] = 6715, - [6716] = 6716, - [6717] = 536, - [6718] = 6247, - [6719] = 6224, - [6720] = 6720, - [6721] = 6721, - [6722] = 2627, - [6723] = 6723, - [6724] = 6336, - [6725] = 6337, - [6726] = 6615, - [6727] = 6699, - [6728] = 527, - [6729] = 6223, - [6730] = 6224, - [6731] = 6225, - [6732] = 6732, - [6733] = 6723, - [6734] = 6336, - [6735] = 6337, - [6736] = 6615, - [6737] = 3666, - [6738] = 3638, - [6739] = 387, - [6740] = 6723, - [6741] = 526, + [6644] = 6270, + [6645] = 6244, + [6646] = 6284, + [6647] = 6647, + [6648] = 6270, + [6649] = 6244, + [6650] = 6284, + [6651] = 6270, + [6652] = 6244, + [6653] = 6284, + [6654] = 6270, + [6655] = 3064, + [6656] = 6244, + [6657] = 6284, + [6658] = 6270, + [6659] = 6244, + [6660] = 6284, + [6661] = 6270, + [6662] = 6244, + [6663] = 6284, + [6664] = 6270, + [6665] = 6244, + [6666] = 6284, + [6667] = 6270, + [6668] = 6244, + [6669] = 6284, + [6670] = 6270, + [6671] = 6244, + [6672] = 6284, + [6673] = 6270, + [6674] = 6244, + [6675] = 6284, + [6676] = 6270, + [6677] = 6244, + [6678] = 6284, + [6679] = 6270, + [6680] = 6244, + [6681] = 6284, + [6682] = 6270, + [6683] = 6244, + [6684] = 6284, + [6685] = 6270, + [6686] = 6244, + [6687] = 6284, + [6688] = 6270, + [6689] = 6244, + [6690] = 6284, + [6691] = 6270, + [6692] = 4768, + [6693] = 6244, + [6694] = 6284, + [6695] = 6270, + [6696] = 2663, + [6697] = 6244, + [6698] = 6284, + [6699] = 6270, + [6700] = 6244, + [6701] = 6284, + [6702] = 6270, + [6703] = 6244, + [6704] = 6284, + [6705] = 6270, + [6706] = 6244, + [6707] = 6284, + [6708] = 6270, + [6709] = 6709, + [6710] = 6244, + [6711] = 6284, + [6712] = 6270, + [6713] = 6244, + [6714] = 6284, + [6715] = 6270, + [6716] = 6244, + [6717] = 6284, + [6718] = 6270, + [6719] = 6244, + [6720] = 6284, + [6721] = 6270, + [6722] = 6244, + [6723] = 6284, + [6724] = 6270, + [6725] = 6244, + [6726] = 6284, + [6727] = 6270, + [6728] = 6244, + [6729] = 6284, + [6730] = 6270, + [6731] = 6284, + [6732] = 6270, + [6733] = 6284, + [6734] = 6270, + [6735] = 6284, + [6736] = 6270, + [6737] = 6737, + [6738] = 6738, + [6739] = 6244, + [6740] = 539, + [6741] = 540, [6742] = 6742, [6743] = 6743, - [6744] = 6332, - [6745] = 556, - [6746] = 6746, - [6747] = 6216, + [6744] = 6744, + [6745] = 6745, + [6746] = 6310, + [6747] = 6747, [6748] = 6748, - [6749] = 6295, - [6750] = 680, - [6751] = 667, - [6752] = 6632, - [6753] = 4753, - [6754] = 6674, - [6755] = 6755, + [6749] = 6749, + [6750] = 6750, + [6751] = 6751, + [6752] = 6752, + [6753] = 6753, + [6754] = 6754, + [6755] = 2642, [6756] = 6756, - [6757] = 6748, - [6758] = 1701, - [6759] = 6759, - [6760] = 4758, + [6757] = 6757, + [6758] = 6297, + [6759] = 6314, + [6760] = 547, [6761] = 6761, - [6762] = 6762, - [6763] = 6763, - [6764] = 1610, - [6765] = 6765, - [6766] = 6766, - [6767] = 6767, - [6768] = 668, - [6769] = 6769, - [6770] = 675, + [6762] = 2657, + [6763] = 6745, + [6764] = 518, + [6765] = 6321, + [6766] = 520, + [6767] = 6322, + [6768] = 6323, + [6769] = 370, + [6770] = 547, [6771] = 6771, - [6772] = 6772, - [6773] = 6469, - [6774] = 6471, - [6775] = 6515, - [6776] = 6755, - [6777] = 3048, - [6778] = 6761, - [6779] = 643, - [6780] = 6780, - [6781] = 527, - [6782] = 6748, - [6783] = 6762, - [6784] = 6759, - [6785] = 6763, - [6786] = 6761, - [6787] = 6762, - [6788] = 6763, - [6789] = 6765, - [6790] = 6214, - [6791] = 6215, - [6792] = 6766, - [6793] = 6767, - [6794] = 6219, - [6795] = 6769, - [6796] = 6248, - [6797] = 6270, - [6798] = 6558, - [6799] = 6272, - [6800] = 686, - [6801] = 6595, - [6802] = 1658, - [6803] = 6755, - [6804] = 1628, - [6805] = 685, - [6806] = 638, - [6807] = 3049, - [6808] = 6748, - [6809] = 6759, - [6810] = 645, - [6811] = 6761, - [6812] = 6762, - [6813] = 6763, - [6814] = 6769, - [6815] = 6765, - [6816] = 6766, - [6817] = 6767, - [6818] = 640, - [6819] = 6769, - [6820] = 6220, - [6821] = 6821, - [6822] = 649, - [6823] = 6755, - [6824] = 641, - [6825] = 528, - [6826] = 630, - [6827] = 6327, - [6828] = 529, - [6829] = 655, - [6830] = 6755, - [6831] = 3088, - [6832] = 6755, - [6833] = 6833, - [6834] = 6748, - [6835] = 3099, - [6836] = 6836, - [6837] = 6759, - [6838] = 6331, - [6839] = 6761, - [6840] = 6762, - [6841] = 6763, - [6842] = 3102, - [6843] = 6765, - [6844] = 527, - [6845] = 6265, - [6846] = 6766, - [6847] = 6767, - [6848] = 6848, - [6849] = 6769, - [6850] = 6850, - [6851] = 6851, + [6772] = 542, + [6773] = 6244, + [6774] = 523, + [6775] = 363, + [6776] = 2644, + [6777] = 6777, + [6778] = 223, + [6779] = 535, + [6780] = 1655, + [6781] = 1707, + [6782] = 6782, + [6783] = 161, + [6784] = 6075, + [6785] = 6284, + [6786] = 6342, + [6787] = 6342, + [6788] = 6343, + [6789] = 6344, + [6790] = 6343, + [6791] = 6344, + [6792] = 539, + [6793] = 540, + [6794] = 6761, + [6795] = 6795, + [6796] = 6332, + [6797] = 541, + [6798] = 6246, + [6799] = 6304, + [6800] = 6265, + [6801] = 6266, + [6802] = 6782, + [6803] = 6262, + [6804] = 547, + [6805] = 538, + [6806] = 6315, + [6807] = 6246, + [6808] = 6265, + [6809] = 6266, + [6810] = 6782, + [6811] = 3669, + [6812] = 3696, + [6813] = 6813, + [6814] = 6814, + [6815] = 4856, + [6816] = 6274, + [6817] = 6312, + [6818] = 6818, + [6819] = 664, + [6820] = 6820, + [6821] = 6818, + [6822] = 6822, + [6823] = 6823, + [6824] = 6824, + [6825] = 6825, + [6826] = 6826, + [6827] = 675, + [6828] = 6828, + [6829] = 678, + [6830] = 6264, + [6831] = 6831, + [6832] = 683, + [6833] = 1655, + [6834] = 6283, + [6835] = 6835, + [6836] = 6360, + [6837] = 6361, + [6838] = 6838, + [6839] = 6839, + [6840] = 6320, + [6841] = 393, + [6842] = 6256, + [6843] = 6835, + [6844] = 6824, + [6845] = 6824, + [6846] = 6831, + [6847] = 6820, + [6848] = 6818, + [6849] = 6822, + [6850] = 6423, + [6851] = 6823, [6852] = 6852, - [6853] = 672, - [6854] = 6755, - [6855] = 6855, - [6856] = 6856, - [6857] = 6748, - [6858] = 6759, - [6859] = 6859, - [6860] = 6761, - [6861] = 6762, - [6862] = 6763, - [6863] = 6765, - [6864] = 6766, - [6865] = 6767, - [6866] = 611, - [6867] = 6867, - [6868] = 6769, - [6869] = 6765, - [6870] = 6870, - [6871] = 623, - [6872] = 632, - [6873] = 6766, - [6874] = 6767, - [6875] = 6755, - [6876] = 613, - [6877] = 614, - [6878] = 3079, - [6879] = 6640, - [6880] = 6714, - [6881] = 6748, - [6882] = 657, - [6883] = 660, - [6884] = 6759, - [6885] = 6885, - [6886] = 674, - [6887] = 6761, - [6888] = 6762, - [6889] = 6763, - [6890] = 6715, - [6891] = 6765, - [6892] = 528, - [6893] = 529, - [6894] = 6766, - [6895] = 6767, - [6896] = 648, - [6897] = 616, - [6898] = 6769, - [6899] = 626, - [6900] = 205, - [6901] = 6684, - [6902] = 6902, - [6903] = 650, - [6904] = 384, - [6905] = 619, - [6906] = 6742, - [6907] = 6592, - [6908] = 6755, - [6909] = 6368, - [6910] = 6910, - [6911] = 6748, - [6912] = 6912, - [6913] = 6759, - [6914] = 6453, - [6915] = 6457, - [6916] = 6761, - [6917] = 6762, - [6918] = 6763, - [6919] = 6416, - [6920] = 6765, - [6921] = 6231, - [6922] = 6766, - [6923] = 6767, - [6924] = 204, - [6925] = 6769, - [6926] = 6756, - [6927] = 6636, - [6928] = 6928, - [6929] = 6378, - [6930] = 6716, - [6931] = 304, - [6932] = 3147, - [6933] = 6755, - [6934] = 6748, - [6935] = 6759, - [6936] = 6480, - [6937] = 6937, - [6938] = 6761, - [6939] = 6762, - [6940] = 6763, - [6941] = 684, - [6942] = 6765, - [6943] = 6766, - [6944] = 6767, - [6945] = 383, - [6946] = 6769, - [6947] = 647, - [6948] = 6769, - [6949] = 6748, - [6950] = 6755, - [6951] = 3040, - [6952] = 6591, - [6953] = 6953, - [6954] = 6495, - [6955] = 6748, - [6956] = 6759, - [6957] = 6669, - [6958] = 6958, - [6959] = 6761, - [6960] = 6762, - [6961] = 6763, - [6962] = 6748, - [6963] = 6765, - [6964] = 6964, - [6965] = 6965, - [6966] = 6766, - [6967] = 6767, - [6968] = 6968, - [6969] = 677, - [6970] = 6769, - [6971] = 6720, - [6972] = 3109, - [6973] = 387, - [6974] = 6268, - [6975] = 6232, - [6976] = 6755, - [6977] = 663, - [6978] = 6780, - [6979] = 6603, - [6980] = 6759, - [6981] = 1680, - [6982] = 6761, - [6983] = 6762, - [6984] = 6763, - [6985] = 6765, - [6986] = 3076, - [6987] = 389, - [6988] = 6766, - [6989] = 6767, - [6990] = 6990, - [6991] = 653, - [6992] = 6769, - [6993] = 3138, - [6994] = 6236, - [6995] = 3111, - [6996] = 6648, - [6997] = 6756, - [6998] = 6242, - [6999] = 6759, - [7000] = 526, - [7001] = 6761, - [7002] = 6762, - [7003] = 6763, - [7004] = 7004, - [7005] = 6765, - [7006] = 6250, - [7007] = 6766, - [7008] = 6767, - [7009] = 387, - [7010] = 6769, + [6853] = 6825, + [6854] = 6826, + [6855] = 6828, + [6856] = 6460, + [6857] = 6285, + [6858] = 1639, + [6859] = 1641, + [6860] = 6362, + [6861] = 1693, + [6862] = 6862, + [6863] = 6363, + [6864] = 6838, + [6865] = 6538, + [6866] = 6543, + [6867] = 6324, + [6868] = 6544, + [6869] = 6835, + [6870] = 6824, + [6871] = 6871, + [6872] = 6831, + [6873] = 6820, + [6874] = 6818, + [6875] = 6822, + [6876] = 6876, + [6877] = 6823, + [6878] = 654, + [6879] = 6825, + [6880] = 6826, + [6881] = 6507, + [6882] = 6326, + [6883] = 6828, + [6884] = 6884, + [6885] = 6327, + [6886] = 6328, + [6887] = 6329, + [6888] = 393, + [6889] = 6546, + [6890] = 6838, + [6891] = 6424, + [6892] = 6892, + [6893] = 6824, + [6894] = 6831, + [6895] = 6895, + [6896] = 6820, + [6897] = 6818, + [6898] = 6822, + [6899] = 6823, + [6900] = 639, + [6901] = 6825, + [6902] = 6826, + [6903] = 4736, + [6904] = 6820, + [6905] = 6828, + [6906] = 6818, + [6907] = 6822, + [6908] = 6876, + [6909] = 6555, + [6910] = 6257, + [6911] = 3017, + [6912] = 4635, + [6913] = 6831, + [6914] = 6462, + [6915] = 6463, + [6916] = 640, + [6917] = 6838, + [6918] = 641, + [6919] = 4705, + [6920] = 6556, + [6921] = 6818, + [6922] = 4741, + [6923] = 6558, + [6924] = 6824, + [6925] = 395, + [6926] = 6561, + [6927] = 6831, + [6928] = 3114, + [6929] = 6929, + [6930] = 6820, + [6931] = 6818, + [6932] = 6822, + [6933] = 6823, + [6934] = 643, + [6935] = 644, + [6936] = 6825, + [6937] = 6826, + [6938] = 648, + [6939] = 6330, + [6940] = 6828, + [6941] = 4640, + [6942] = 6435, + [6943] = 6563, + [6944] = 6944, + [6945] = 6945, + [6946] = 6440, + [6947] = 6572, + [6948] = 6573, + [6949] = 6949, + [6950] = 6575, + [6951] = 6838, + [6952] = 6952, + [6953] = 6588, + [6954] = 6464, + [6955] = 6442, + [6956] = 6824, + [6957] = 1641, + [6958] = 6831, + [6959] = 6510, + [6960] = 6820, + [6961] = 6818, + [6962] = 6822, + [6963] = 6823, + [6964] = 6825, + [6965] = 6826, + [6966] = 6966, + [6967] = 6828, + [6968] = 6335, + [6969] = 6368, + [6970] = 1707, + [6971] = 534, + [6972] = 3115, + [6973] = 6443, + [6974] = 6337, + [6975] = 6370, + [6976] = 6373, + [6977] = 6589, + [6978] = 6604, + [6979] = 6838, + [6980] = 6338, + [6981] = 6374, + [6982] = 6339, + [6983] = 6824, + [6984] = 686, + [6985] = 6831, + [6986] = 6340, + [6987] = 611, + [6988] = 6511, + [6989] = 6820, + [6990] = 6818, + [6991] = 6822, + [6992] = 6992, + [6993] = 6823, + [6994] = 6522, + [6995] = 1707, + [6996] = 6825, + [6997] = 6826, + [6998] = 6998, + [6999] = 632, + [7000] = 6828, + [7001] = 7001, + [7002] = 6387, + [7003] = 6388, + [7004] = 621, + [7005] = 6389, + [7006] = 656, + [7007] = 625, + [7008] = 6838, + [7009] = 6607, + [7010] = 7010, [7011] = 7011, - [7012] = 6721, - [7013] = 6649, + [7012] = 628, + [7013] = 6824, [7014] = 7014, - [7015] = 6759, - [7016] = 6761, - [7017] = 6762, - [7018] = 6763, - [7019] = 6765, - [7020] = 625, - [7021] = 6766, - [7022] = 6767, - [7023] = 6769, - [7024] = 7024, - [7025] = 6766, - [7026] = 7026, - [7027] = 612, - [7028] = 633, - [7029] = 6650, - [7030] = 6759, - [7031] = 6761, - [7032] = 6762, - [7033] = 6763, - [7034] = 6765, - [7035] = 7035, - [7036] = 6766, - [7037] = 6767, - [7038] = 6767, - [7039] = 6769, - [7040] = 6606, - [7041] = 527, - [7042] = 526, - [7043] = 3095, - [7044] = 6682, + [7015] = 7015, + [7016] = 6831, + [7017] = 656, + [7018] = 6820, + [7019] = 6818, + [7020] = 6822, + [7021] = 6823, + [7022] = 6871, + [7023] = 6825, + [7024] = 6826, + [7025] = 7025, + [7026] = 6823, + [7027] = 6828, + [7028] = 205, + [7029] = 626, + [7030] = 6895, + [7031] = 647, + [7032] = 6825, + [7033] = 6826, + [7034] = 6375, + [7035] = 6838, + [7036] = 6390, + [7037] = 6824, + [7038] = 7038, + [7039] = 6831, + [7040] = 6444, + [7041] = 7041, + [7042] = 6820, + [7043] = 6818, + [7044] = 6822, [7045] = 7045, - [7046] = 2913, - [7047] = 7011, - [7048] = 6604, - [7049] = 6618, - [7050] = 6642, - [7051] = 6759, - [7052] = 610, - [7053] = 6780, - [7054] = 6653, - [7055] = 6607, - [7056] = 7056, - [7057] = 6867, - [7058] = 6755, - [7059] = 6608, - [7060] = 693, - [7061] = 635, - [7062] = 6395, - [7063] = 3104, - [7064] = 7064, - [7065] = 6756, - [7066] = 6748, - [7067] = 6620, - [7068] = 6759, - [7069] = 6755, - [7070] = 7070, - [7071] = 6743, - [7072] = 656, - [7073] = 6761, - [7074] = 6762, - [7075] = 6763, - [7076] = 6867, - [7077] = 6765, - [7078] = 6769, - [7079] = 6766, - [7080] = 6767, - [7081] = 3055, - [7082] = 6769, - [7083] = 6690, - [7084] = 7084, - [7085] = 7085, - [7086] = 7086, - [7087] = 6616, - [7088] = 6619, - [7089] = 620, - [7090] = 6836, - [7091] = 1610, - [7092] = 2915, + [7046] = 6823, + [7047] = 547, + [7048] = 6825, + [7049] = 6826, + [7050] = 6828, + [7051] = 6294, + [7052] = 7052, + [7053] = 7014, + [7054] = 676, + [7055] = 3102, + [7056] = 6838, + [7057] = 6391, + [7058] = 6992, + [7059] = 6998, + [7060] = 634, + [7061] = 6824, + [7062] = 5397, + [7063] = 6831, + [7064] = 6820, + [7065] = 6820, + [7066] = 6818, + [7067] = 6822, + [7068] = 6823, + [7069] = 2941, + [7070] = 6825, + [7071] = 6826, + [7072] = 6828, + [7073] = 6392, + [7074] = 638, + [7075] = 665, + [7076] = 6822, + [7077] = 6838, + [7078] = 6643, + [7079] = 6824, + [7080] = 6831, + [7081] = 6647, + [7082] = 6820, + [7083] = 6818, + [7084] = 6822, + [7085] = 6823, + [7086] = 5398, + [7087] = 6825, + [7088] = 6826, + [7089] = 6828, + [7090] = 6828, + [7091] = 6292, + [7092] = 2960, [7093] = 7093, - [7094] = 4752, - [7095] = 3105, - [7096] = 7014, - [7097] = 631, - [7098] = 3106, - [7099] = 528, - [7100] = 529, - [7101] = 6856, - [7102] = 7102, - [7103] = 7103, - [7104] = 7104, - [7105] = 7093, - [7106] = 7106, - [7107] = 4778, - [7108] = 6630, - [7109] = 389, - [7110] = 384, - [7111] = 6271, - [7112] = 6275, - [7113] = 6276, - [7114] = 6958, - [7115] = 536, - [7116] = 6759, - [7117] = 6698, - [7118] = 7118, - [7119] = 7119, - [7120] = 4696, - [7121] = 7118, - [7122] = 6756, - [7123] = 7123, - [7124] = 6885, - [7125] = 7125, - [7126] = 6218, + [7094] = 6823, + [7095] = 7095, + [7096] = 6838, + [7097] = 6393, + [7098] = 6824, + [7099] = 6831, + [7100] = 6831, + [7101] = 6820, + [7102] = 6818, + [7103] = 6822, + [7104] = 6823, + [7105] = 6825, + [7106] = 6826, + [7107] = 6828, + [7108] = 6453, + [7109] = 3159, + [7110] = 1693, + [7111] = 6838, + [7112] = 6523, + [7113] = 6831, + [7114] = 3160, + [7115] = 6820, + [7116] = 6818, + [7117] = 6822, + [7118] = 6823, + [7119] = 6825, + [7120] = 6826, + [7121] = 6524, + [7122] = 645, + [7123] = 6828, + [7124] = 3036, + [7125] = 6525, + [7126] = 6825, [7127] = 7127, - [7128] = 7123, - [7129] = 683, - [7130] = 621, - [7131] = 6771, - [7132] = 7035, - [7133] = 1628, - [7134] = 6761, - [7135] = 600, - [7136] = 6968, - [7137] = 7045, - [7138] = 6761, - [7139] = 6762, - [7140] = 6763, - [7141] = 601, - [7142] = 6755, - [7143] = 7143, - [7144] = 6937, - [7145] = 7145, - [7146] = 6633, - [7147] = 604, - [7148] = 5468, - [7149] = 7149, - [7150] = 6756, - [7151] = 5480, - [7152] = 6836, - [7153] = 7153, - [7154] = 6958, - [7155] = 6748, - [7156] = 6990, - [7157] = 7118, - [7158] = 7125, - [7159] = 7127, - [7160] = 7125, - [7161] = 6679, - [7162] = 6759, - [7163] = 7035, - [7164] = 6235, - [7165] = 6240, - [7166] = 6254, - [7167] = 6748, - [7168] = 6761, - [7169] = 6762, - [7170] = 7170, - [7171] = 7171, + [7128] = 6826, + [7129] = 6831, + [7130] = 7130, + [7131] = 688, + [7132] = 6820, + [7133] = 6818, + [7134] = 6822, + [7135] = 689, + [7136] = 6823, + [7137] = 6825, + [7138] = 6826, + [7139] = 547, + [7140] = 6349, + [7141] = 6828, + [7142] = 631, + [7143] = 6737, + [7144] = 693, + [7145] = 614, + [7146] = 7146, + [7147] = 617, + [7148] = 3161, + [7149] = 6831, + [7150] = 6300, + [7151] = 6820, + [7152] = 6818, + [7153] = 6822, + [7154] = 6823, + [7155] = 6838, + [7156] = 618, + [7157] = 6825, + [7158] = 6826, + [7159] = 6351, + [7160] = 6828, + [7161] = 619, + [7162] = 7162, + [7163] = 6738, + [7164] = 3162, + [7165] = 7093, + [7166] = 6250, + [7167] = 6512, + [7168] = 398, + [7169] = 6455, + [7170] = 6251, + [7171] = 6609, [7172] = 7172, - [7173] = 6762, - [7174] = 1658, - [7175] = 6763, - [7176] = 6264, - [7177] = 6605, - [7178] = 6765, - [7179] = 6278, - [7180] = 7119, - [7181] = 6297, - [7182] = 6771, - [7183] = 6836, - [7184] = 536, - [7185] = 6958, - [7186] = 6766, - [7187] = 6299, - [7188] = 6767, - [7189] = 7118, - [7190] = 7125, - [7191] = 7127, - [7192] = 7035, - [7193] = 6769, - [7194] = 6836, - [7195] = 6958, - [7196] = 637, - [7197] = 7118, - [7198] = 7125, - [7199] = 6759, - [7200] = 7127, - [7201] = 7035, - [7202] = 6836, - [7203] = 6625, - [7204] = 6369, - [7205] = 6958, - [7206] = 6443, - [7207] = 634, - [7208] = 7118, - [7209] = 7125, - [7210] = 7127, - [7211] = 7035, - [7212] = 6836, - [7213] = 688, - [7214] = 6958, - [7215] = 7118, - [7216] = 7125, - [7217] = 6703, - [7218] = 7127, - [7219] = 7035, - [7220] = 6836, - [7221] = 6628, - [7222] = 6643, - [7223] = 6958, - [7224] = 7118, - [7225] = 7125, - [7226] = 7127, - [7227] = 7035, - [7228] = 6836, - [7229] = 6708, - [7230] = 6958, - [7231] = 7118, - [7232] = 7125, - [7233] = 7127, - [7234] = 7035, - [7235] = 6836, - [7236] = 4781, - [7237] = 6958, - [7238] = 7118, - [7239] = 7125, - [7240] = 1701, - [7241] = 7127, - [7242] = 7035, - [7243] = 6836, - [7244] = 6763, - [7245] = 6958, - [7246] = 7118, - [7247] = 7125, - [7248] = 7127, - [7249] = 7035, - [7250] = 6836, - [7251] = 6958, - [7252] = 7118, - [7253] = 7125, - [7254] = 7127, - [7255] = 7035, - [7256] = 6836, - [7257] = 6655, - [7258] = 7104, - [7259] = 6958, - [7260] = 7118, - [7261] = 7125, - [7262] = 7127, - [7263] = 7035, - [7264] = 6836, - [7265] = 7145, - [7266] = 6958, - [7267] = 639, - [7268] = 7118, - [7269] = 7125, - [7270] = 6755, - [7271] = 7127, - [7272] = 7035, - [7273] = 6836, - [7274] = 6958, - [7275] = 7118, - [7276] = 7125, - [7277] = 7127, - [7278] = 7035, - [7279] = 6836, - [7280] = 6958, - [7281] = 6657, - [7282] = 7118, - [7283] = 7125, - [7284] = 7127, - [7285] = 7035, - [7286] = 6836, - [7287] = 6958, - [7288] = 1680, - [7289] = 7118, - [7290] = 7125, - [7291] = 6671, - [7292] = 7127, - [7293] = 7035, - [7294] = 6836, - [7295] = 6958, - [7296] = 7296, - [7297] = 7118, - [7298] = 7125, - [7299] = 7299, - [7300] = 7127, - [7301] = 7035, - [7302] = 6836, - [7303] = 6958, - [7304] = 7118, - [7305] = 7125, - [7306] = 7306, - [7307] = 7127, - [7308] = 7035, - [7309] = 6756, - [7310] = 6748, - [7311] = 6867, - [7312] = 682, - [7313] = 6759, - [7314] = 656, - [7315] = 692, - [7316] = 7316, - [7317] = 7316, - [7318] = 7318, - [7319] = 6765, - [7320] = 6761, - [7321] = 6762, - [7322] = 6766, - [7323] = 6767, - [7324] = 6763, - [7325] = 6660, - [7326] = 1701, - [7327] = 6765, - [7328] = 383, - [7329] = 6765, - [7330] = 6766, - [7331] = 7127, - [7332] = 636, - [7333] = 622, - [7334] = 7334, - [7335] = 669, - [7336] = 6767, - [7337] = 671, - [7338] = 2912, - [7339] = 536, - [7340] = 7340, - [7341] = 685, - [7342] = 6769, - [7343] = 661, - [7344] = 662, - [7345] = 6600, + [7173] = 6371, + [7174] = 7174, + [7175] = 6458, + [7176] = 7176, + [7177] = 6459, + [7178] = 635, + [7179] = 6709, + [7180] = 6838, + [7181] = 636, + [7182] = 6838, + [7183] = 6365, + [7184] = 682, + [7185] = 6352, + [7186] = 6835, + [7187] = 6824, + [7188] = 6595, + [7189] = 615, + [7190] = 6831, + [7191] = 612, + [7192] = 1639, + [7193] = 6820, + [7194] = 6818, + [7195] = 6822, + [7196] = 6871, + [7197] = 6823, + [7198] = 7198, + [7199] = 6825, + [7200] = 6826, + [7201] = 6828, + [7202] = 6299, + [7203] = 3037, + [7204] = 6465, + [7205] = 6282, + [7206] = 624, + [7207] = 7207, + [7208] = 655, + [7209] = 657, + [7210] = 660, + [7211] = 3064, + [7212] = 670, + [7213] = 7213, + [7214] = 6477, + [7215] = 7045, + [7216] = 7216, + [7217] = 681, + [7218] = 537, + [7219] = 204, + [7220] = 6494, + [7221] = 659, + [7222] = 226, + [7223] = 6822, + [7224] = 6820, + [7225] = 1693, + [7226] = 7226, + [7227] = 6742, + [7228] = 7038, + [7229] = 539, + [7230] = 7172, + [7231] = 7231, + [7232] = 540, + [7233] = 7233, + [7234] = 6945, + [7235] = 6871, + [7236] = 7231, + [7237] = 7237, + [7238] = 669, + [7239] = 671, + [7240] = 7240, + [7241] = 7237, + [7242] = 3113, + [7243] = 7243, + [7244] = 7011, + [7245] = 7216, + [7246] = 7246, + [7247] = 7127, + [7248] = 7233, + [7249] = 6823, + [7250] = 6248, + [7251] = 7251, + [7252] = 7252, + [7253] = 6825, + [7254] = 6826, + [7255] = 2966, + [7256] = 6397, + [7257] = 6743, + [7258] = 7015, + [7259] = 6744, + [7260] = 398, + [7261] = 6479, + [7262] = 6398, + [7263] = 571, + [7264] = 637, + [7265] = 382, + [7266] = 6287, + [7267] = 684, + [7268] = 597, + [7269] = 692, + [7270] = 6399, + [7271] = 6400, + [7272] = 6895, + [7273] = 6756, + [7274] = 6345, + [7275] = 7207, + [7276] = 6757, + [7277] = 537, + [7278] = 534, + [7279] = 7226, + [7280] = 7280, + [7281] = 6945, + [7282] = 7282, + [7283] = 7231, + [7284] = 7237, + [7285] = 1655, + [7286] = 7286, + [7287] = 7127, + [7288] = 7288, + [7289] = 7289, + [7290] = 6403, + [7291] = 6404, + [7292] = 7292, + [7293] = 7226, + [7294] = 547, + [7295] = 7295, + [7296] = 7207, + [7297] = 6405, + [7298] = 6288, + [7299] = 6747, + [7300] = 6748, + [7301] = 7207, + [7302] = 6749, + [7303] = 7226, + [7304] = 7213, + [7305] = 6750, + [7306] = 6945, + [7307] = 7231, + [7308] = 7237, + [7309] = 7127, + [7310] = 7310, + [7311] = 6751, + [7312] = 7207, + [7313] = 7243, + [7314] = 7226, + [7315] = 570, + [7316] = 6945, + [7317] = 7231, + [7318] = 7246, + [7319] = 7237, + [7320] = 7127, + [7321] = 7207, + [7322] = 7226, + [7323] = 6945, + [7324] = 7231, + [7325] = 7237, + [7326] = 7127, + [7327] = 7207, + [7328] = 7226, + [7329] = 6828, + [7330] = 6945, + [7331] = 7231, + [7332] = 6752, + [7333] = 7237, + [7334] = 7127, + [7335] = 7207, + [7336] = 539, + [7337] = 540, + [7338] = 7226, + [7339] = 6753, + [7340] = 6945, + [7341] = 7231, + [7342] = 6754, + [7343] = 7237, + [7344] = 7127, + [7345] = 7207, [7346] = 7346, - [7347] = 2622, - [7348] = 536, - [7349] = 3588, - [7350] = 7350, - [7351] = 7351, - [7352] = 7352, - [7353] = 7353, - [7354] = 7354, - [7355] = 7355, - [7356] = 528, - [7357] = 529, - [7358] = 7358, - [7359] = 7359, - [7360] = 7360, + [7347] = 7347, + [7348] = 7226, + [7349] = 395, + [7350] = 6945, + [7351] = 7231, + [7352] = 3118, + [7353] = 7237, + [7354] = 7127, + [7355] = 7207, + [7356] = 3119, + [7357] = 7226, + [7358] = 6835, + [7359] = 6945, + [7360] = 7231, [7361] = 7361, - [7362] = 7362, - [7363] = 7363, - [7364] = 7364, - [7365] = 7365, - [7366] = 526, - [7367] = 7367, - [7368] = 7368, - [7369] = 7368, - [7370] = 7370, - [7371] = 7359, - [7372] = 4796, - [7373] = 7373, - [7374] = 7374, - [7375] = 4799, - [7376] = 3048, - [7377] = 7377, - [7378] = 1680, - [7379] = 7379, - [7380] = 7380, - [7381] = 7359, - [7382] = 7382, - [7383] = 4709, - [7384] = 7384, - [7385] = 665, - [7386] = 7384, - [7387] = 4800, - [7388] = 7388, - [7389] = 7389, - [7390] = 7390, - [7391] = 7391, - [7392] = 7392, - [7393] = 7364, - [7394] = 3619, - [7395] = 7395, - [7396] = 7392, - [7397] = 2602, - [7398] = 7398, - [7399] = 7362, - [7400] = 2143, - [7401] = 7401, - [7402] = 7352, - [7403] = 7403, - [7404] = 7404, - [7405] = 7405, - [7406] = 3607, - [7407] = 7395, - [7408] = 7359, - [7409] = 7409, - [7410] = 7380, - [7411] = 4785, - [7412] = 7384, - [7413] = 4899, - [7414] = 7414, - [7415] = 7415, - [7416] = 7416, - [7417] = 7403, - [7418] = 7392, - [7419] = 7419, - [7420] = 1658, - [7421] = 3049, - [7422] = 1658, - [7423] = 7414, - [7424] = 7424, - [7425] = 7425, - [7426] = 7426, - [7427] = 7427, - [7428] = 536, - [7429] = 3076, - [7430] = 2623, - [7431] = 7431, - [7432] = 2636, - [7433] = 7433, - [7434] = 7351, - [7435] = 1701, - [7436] = 7405, - [7437] = 7384, - [7438] = 7350, - [7439] = 7415, - [7440] = 7382, - [7441] = 7441, + [7362] = 7237, + [7363] = 7127, + [7364] = 7207, + [7365] = 6828, + [7366] = 6260, + [7367] = 7226, + [7368] = 537, + [7369] = 7369, + [7370] = 6945, + [7371] = 7231, + [7372] = 664, + [7373] = 7237, + [7374] = 7127, + [7375] = 7207, + [7376] = 6838, + [7377] = 7226, + [7378] = 6835, + [7379] = 3120, + [7380] = 6945, + [7381] = 7231, + [7382] = 7237, + [7383] = 7127, + [7384] = 7207, + [7385] = 7226, + [7386] = 6945, + [7387] = 7231, + [7388] = 7093, + [7389] = 7237, + [7390] = 7127, + [7391] = 7207, + [7392] = 649, + [7393] = 7226, + [7394] = 6945, + [7395] = 7231, + [7396] = 7237, + [7397] = 7127, + [7398] = 7207, + [7399] = 7226, + [7400] = 6945, + [7401] = 7231, + [7402] = 7237, + [7403] = 7127, + [7404] = 7207, + [7405] = 7226, + [7406] = 6945, + [7407] = 7231, + [7408] = 7237, + [7409] = 7127, + [7410] = 7207, + [7411] = 7226, + [7412] = 6945, + [7413] = 7231, + [7414] = 7237, + [7415] = 7127, + [7416] = 7207, + [7417] = 7226, + [7418] = 6945, + [7419] = 7231, + [7420] = 7237, + [7421] = 7127, + [7422] = 7207, + [7423] = 7226, + [7424] = 6945, + [7425] = 7231, + [7426] = 7237, + [7427] = 7127, + [7428] = 6252, + [7429] = 6253, + [7430] = 539, + [7431] = 540, + [7432] = 6254, + [7433] = 6269, + [7434] = 3097, + [7435] = 7435, + [7436] = 3024, + [7437] = 652, + [7438] = 661, + [7439] = 6835, + [7440] = 6824, + [7441] = 6263, [7442] = 7442, [7443] = 7443, - [7444] = 536, - [7445] = 3616, - [7446] = 7364, - [7447] = 7355, - [7448] = 7448, - [7449] = 7370, - [7450] = 1804, - [7451] = 3040, - [7452] = 7360, - [7453] = 7441, + [7444] = 4750, + [7445] = 382, + [7446] = 6824, + [7447] = 6831, + [7448] = 622, + [7449] = 680, + [7450] = 613, + [7451] = 6290, + [7452] = 7452, + [7453] = 6291, [7454] = 7454, - [7455] = 7359, - [7456] = 7401, + [7455] = 4720, + [7456] = 7456, [7457] = 7457, - [7458] = 526, - [7459] = 1701, + [7458] = 7458, + [7459] = 4889, [7460] = 7460, - [7461] = 670, + [7461] = 7461, [7462] = 7462, - [7463] = 7448, - [7464] = 7390, + [7463] = 7463, + [7464] = 7464, [7465] = 7465, [7466] = 7466, - [7467] = 3055, - [7468] = 7353, - [7469] = 7427, - [7470] = 7389, + [7467] = 537, + [7468] = 4994, + [7469] = 4798, + [7470] = 7470, [7471] = 7471, - [7472] = 7361, - [7473] = 3174, - [7474] = 3177, + [7472] = 7470, + [7473] = 7473, + [7474] = 7474, [7475] = 7475, [7476] = 7476, - [7477] = 4650, - [7478] = 2627, + [7477] = 7477, + [7478] = 633, [7479] = 7479, - [7480] = 7359, - [7481] = 7481, - [7482] = 3602, - [7483] = 529, - [7484] = 7427, - [7485] = 7352, - [7486] = 7486, - [7487] = 7363, - [7488] = 5574, - [7489] = 7392, - [7490] = 2628, - [7491] = 7491, - [7492] = 7377, - [7493] = 7368, - [7494] = 7471, - [7495] = 7495, + [7480] = 539, + [7481] = 540, + [7482] = 7482, + [7483] = 7483, + [7484] = 7484, + [7485] = 7485, + [7486] = 537, + [7487] = 3614, + [7488] = 7458, + [7489] = 7466, + [7490] = 547, + [7491] = 3194, + [7492] = 3198, + [7493] = 1707, + [7494] = 7463, + [7495] = 7470, [7496] = 7496, [7497] = 7497, - [7498] = 527, - [7499] = 7499, - [7500] = 7358, - [7501] = 7384, - [7502] = 7502, - [7503] = 7384, - [7504] = 7384, - [7505] = 7392, - [7506] = 7370, - [7507] = 7392, - [7508] = 7392, - [7509] = 7367, - [7510] = 7379, - [7511] = 7380, - [7512] = 4798, - [7513] = 4795, + [7498] = 7463, + [7499] = 7458, + [7500] = 7466, + [7501] = 7501, + [7502] = 534, + [7503] = 690, + [7504] = 7504, + [7505] = 7505, + [7506] = 7470, + [7507] = 7507, + [7508] = 7482, + [7509] = 7456, + [7510] = 7510, + [7511] = 4660, + [7512] = 7512, + [7513] = 7513, [7514] = 7514, - [7515] = 7352, - [7516] = 7352, - [7517] = 7380, - [7518] = 679, - [7519] = 7352, - [7520] = 7380, - [7521] = 4801, + [7515] = 7515, + [7516] = 2632, + [7517] = 7517, + [7518] = 7518, + [7519] = 7519, + [7520] = 7520, + [7521] = 7458, [7522] = 7522, - [7523] = 7352, - [7524] = 7524, - [7525] = 7380, - [7526] = 7353, - [7527] = 7353, - [7528] = 7380, - [7529] = 7486, - [7530] = 7431, - [7531] = 673, - [7532] = 7358, - [7533] = 7379, - [7534] = 7353, - [7535] = 2601, - [7536] = 527, - [7537] = 676, - [7538] = 7495, - [7539] = 7388, - [7540] = 206, - [7541] = 7502, - [7542] = 7442, - [7543] = 664, - [7544] = 1680, + [7523] = 7523, + [7524] = 2663, + [7525] = 7466, + [7526] = 7526, + [7527] = 7527, + [7528] = 7515, + [7529] = 7529, + [7530] = 3097, + [7531] = 7531, + [7532] = 7458, + [7533] = 3615, + [7534] = 7534, + [7535] = 7535, + [7536] = 7504, + [7537] = 7523, + [7538] = 7538, + [7539] = 7520, + [7540] = 7540, + [7541] = 7541, + [7542] = 7542, + [7543] = 2644, + [7544] = 7544, [7545] = 7545, - [7546] = 7359, - [7547] = 528, + [7546] = 7546, + [7547] = 7540, [7548] = 7548, [7549] = 7549, [7550] = 7550, - [7551] = 7551, + [7551] = 7465, [7552] = 7552, - [7553] = 7553, + [7553] = 3017, [7554] = 7554, - [7555] = 7555, + [7555] = 3024, [7556] = 7556, - [7557] = 7548, + [7557] = 7557, [7558] = 7558, [7559] = 7559, - [7560] = 7560, + [7560] = 2642, [7561] = 7561, [7562] = 7562, - [7563] = 7548, + [7563] = 7563, [7564] = 7564, [7565] = 7565, [7566] = 7566, [7567] = 7567, - [7568] = 7568, + [7568] = 3610, [7569] = 7569, - [7570] = 7570, - [7571] = 7571, - [7572] = 7565, - [7573] = 7548, - [7574] = 7567, - [7575] = 7568, - [7576] = 7570, - [7577] = 7549, - [7578] = 7571, - [7579] = 7567, - [7580] = 7568, - [7581] = 7581, - [7582] = 480, - [7583] = 7564, - [7584] = 7554, - [7585] = 7566, - [7586] = 7586, - [7587] = 7565, + [7570] = 7465, + [7571] = 7484, + [7572] = 7534, + [7573] = 4796, + [7574] = 658, + [7575] = 7527, + [7576] = 7545, + [7577] = 7577, + [7578] = 7578, + [7579] = 7579, + [7580] = 1655, + [7581] = 7510, + [7582] = 7582, + [7583] = 7534, + [7584] = 7545, + [7585] = 691, + [7586] = 3625, + [7587] = 4890, [7588] = 7588, - [7589] = 7566, - [7590] = 7590, - [7591] = 7564, - [7592] = 7592, - [7593] = 7569, - [7594] = 7556, - [7595] = 7570, - [7596] = 7567, - [7597] = 7568, - [7598] = 7550, - [7599] = 7569, - [7600] = 7553, - [7601] = 7568, - [7602] = 513, - [7603] = 7554, - [7604] = 7570, + [7589] = 7589, + [7590] = 7461, + [7591] = 4908, + [7592] = 7548, + [7593] = 7554, + [7594] = 7561, + [7595] = 7582, + [7596] = 7596, + [7597] = 7597, + [7598] = 1707, + [7599] = 7599, + [7600] = 7600, + [7601] = 7601, + [7602] = 7527, + [7603] = 7603, + [7604] = 7604, [7605] = 7605, - [7606] = 7551, - [7607] = 7569, - [7608] = 7608, - [7609] = 7609, - [7610] = 7549, - [7611] = 7548, - [7612] = 7612, - [7613] = 7555, - [7614] = 7555, - [7615] = 7581, - [7616] = 7550, - [7617] = 7548, - [7618] = 7548, - [7619] = 7567, - [7620] = 7588, - [7621] = 7568, - [7622] = 7622, - [7623] = 7623, - [7624] = 7624, - [7625] = 7625, - [7626] = 7571, - [7627] = 7565, - [7628] = 7553, - [7629] = 7554, - [7630] = 7566, - [7631] = 7631, - [7632] = 7632, - [7633] = 7567, - [7634] = 7568, - [7635] = 7568, - [7636] = 7569, - [7637] = 7637, - [7638] = 2627, - [7639] = 7570, - [7640] = 7640, - [7641] = 7641, - [7642] = 7642, - [7643] = 2628, - [7644] = 7564, - [7645] = 7645, - [7646] = 7550, - [7647] = 7553, - [7648] = 7565, - [7649] = 7554, + [7606] = 1693, + [7607] = 7534, + [7608] = 7529, + [7609] = 7549, + [7610] = 7527, + [7611] = 7523, + [7612] = 4856, + [7613] = 7534, + [7614] = 7614, + [7615] = 7596, + [7616] = 7597, + [7617] = 7556, + [7618] = 7557, + [7619] = 7534, + [7620] = 7620, + [7621] = 3616, + [7622] = 547, + [7623] = 7599, + [7624] = 7534, + [7625] = 7600, + [7626] = 5522, + [7627] = 539, + [7628] = 7476, + [7629] = 2655, + [7630] = 7630, + [7631] = 540, + [7632] = 7463, + [7633] = 7470, + [7634] = 7556, + [7635] = 547, + [7636] = 7535, + [7637] = 7557, + [7638] = 1796, + [7639] = 2129, + [7640] = 687, + [7641] = 2657, + [7642] = 7458, + [7643] = 7601, + [7644] = 7644, + [7645] = 7603, + [7646] = 7466, + [7647] = 7504, + [7648] = 7501, + [7649] = 2656, [7650] = 7650, - [7651] = 7549, - [7652] = 7564, - [7653] = 7555, - [7654] = 7592, + [7651] = 7578, + [7652] = 7620, + [7653] = 7653, + [7654] = 7654, [7655] = 7655, - [7656] = 7555, - [7657] = 7632, - [7658] = 7565, - [7659] = 7550, - [7660] = 7553, - [7661] = 7554, - [7662] = 7548, - [7663] = 7548, - [7664] = 7567, - [7665] = 7568, - [7666] = 7566, - [7667] = 7554, - [7668] = 7567, - [7669] = 7669, - [7670] = 7554, - [7671] = 7568, - [7672] = 7672, - [7673] = 7565, - [7674] = 7548, - [7675] = 7564, - [7676] = 7564, - [7677] = 7566, - [7678] = 7567, - [7679] = 7679, - [7680] = 7568, - [7681] = 7569, - [7682] = 7592, - [7683] = 7570, - [7684] = 7569, - [7685] = 7433, - [7686] = 7686, - [7687] = 7687, - [7688] = 7688, - [7689] = 7689, - [7690] = 7567, - [7691] = 7570, - [7692] = 7692, - [7693] = 480, - [7694] = 7548, - [7695] = 7568, - [7696] = 7549, - [7697] = 7568, - [7698] = 7637, - [7699] = 7588, - [7700] = 7700, - [7701] = 7640, - [7702] = 7554, - [7703] = 7703, - [7704] = 513, + [7656] = 7656, + [7657] = 7654, + [7658] = 7505, + [7659] = 7466, + [7660] = 7497, + [7661] = 7661, + [7662] = 534, + [7663] = 7663, + [7664] = 7579, + [7665] = 1655, + [7666] = 7457, + [7667] = 7663, + [7668] = 1693, + [7669] = 7479, + [7670] = 7661, + [7671] = 7513, + [7672] = 7514, + [7673] = 7463, + [7674] = 7527, + [7675] = 7470, + [7676] = 7526, + [7677] = 7655, + [7678] = 7656, + [7679] = 7531, + [7680] = 7550, + [7681] = 7470, + [7682] = 7567, + [7683] = 7569, + [7684] = 7458, + [7685] = 206, + [7686] = 3064, + [7687] = 673, + [7688] = 7462, + [7689] = 7496, + [7690] = 7522, + [7691] = 7558, + [7692] = 7460, + [7693] = 7693, + [7694] = 7464, + [7695] = 7474, + [7696] = 7471, + [7697] = 7475, + [7698] = 7466, + [7699] = 7699, + [7700] = 7463, + [7701] = 7701, + [7702] = 4892, + [7703] = 7518, + [7704] = 7650, [7705] = 7705, - [7706] = 7565, - [7707] = 7548, - [7708] = 7568, - [7709] = 7709, - [7710] = 7710, - [7711] = 7554, + [7706] = 7706, + [7707] = 7463, + [7708] = 7708, + [7709] = 7588, + [7710] = 3036, + [7711] = 7512, [7712] = 7712, - [7713] = 7588, + [7713] = 7713, [7714] = 7714, - [7715] = 7548, - [7716] = 7548, - [7717] = 7555, - [7718] = 7568, - [7719] = 7548, - [7720] = 7637, - [7721] = 7550, - [7722] = 7640, - [7723] = 7566, - [7724] = 7548, - [7725] = 7548, - [7726] = 7568, - [7727] = 7565, - [7728] = 7637, - [7729] = 7592, - [7730] = 7567, - [7731] = 7548, - [7732] = 7568, - [7733] = 7569, - [7734] = 7548, - [7735] = 7637, - [7736] = 7640, - [7737] = 7679, - [7738] = 7548, - [7739] = 7739, - [7740] = 7570, - [7741] = 7622, - [7742] = 7565, - [7743] = 7548, - [7744] = 7567, - [7745] = 7566, - [7746] = 7641, - [7747] = 7565, - [7748] = 7568, - [7749] = 7637, - [7750] = 7640, - [7751] = 7548, - [7752] = 2636, - [7753] = 7566, - [7754] = 7567, - [7755] = 7592, - [7756] = 7622, - [7757] = 7548, - [7758] = 7567, + [7715] = 7715, + [7716] = 7716, + [7717] = 7717, + [7718] = 7718, + [7719] = 7719, + [7720] = 7720, + [7721] = 7715, + [7722] = 7722, + [7723] = 7723, + [7724] = 7724, + [7725] = 7725, + [7726] = 7720, + [7727] = 7727, + [7728] = 7715, + [7729] = 7729, + [7730] = 7730, + [7731] = 7731, + [7732] = 7732, + [7733] = 7733, + [7734] = 7734, + [7735] = 7735, + [7736] = 7715, + [7737] = 7715, + [7738] = 7738, + [7739] = 7720, + [7740] = 7740, + [7741] = 7729, + [7742] = 7712, + [7743] = 7715, + [7744] = 7744, + [7745] = 7720, + [7746] = 7734, + [7747] = 7712, + [7748] = 7748, + [7749] = 7749, + [7750] = 7749, + [7751] = 7751, + [7752] = 7714, + [7753] = 7753, + [7754] = 7754, + [7755] = 7755, + [7756] = 7756, + [7757] = 7734, + [7758] = 7753, [7759] = 7759, - [7760] = 7568, - [7761] = 7568, - [7762] = 7548, - [7763] = 7637, - [7764] = 7640, - [7765] = 7569, - [7766] = 7605, - [7767] = 7570, - [7768] = 7768, - [7769] = 7548, - [7770] = 7550, - [7771] = 7550, - [7772] = 7553, - [7773] = 7560, - [7774] = 7554, - [7775] = 7548, - [7776] = 7637, - [7777] = 7640, - [7778] = 7569, - [7779] = 7779, - [7780] = 7588, - [7781] = 7705, - [7782] = 2622, - [7783] = 7548, - [7784] = 7784, - [7785] = 7705, - [7786] = 7570, - [7787] = 7625, - [7788] = 7548, - [7789] = 7637, - [7790] = 7640, - [7791] = 7569, - [7792] = 7784, - [7793] = 7632, - [7794] = 7548, - [7795] = 7548, - [7796] = 7570, - [7797] = 7564, - [7798] = 7588, - [7799] = 7640, - [7800] = 7548, - [7801] = 7637, - [7802] = 7640, - [7803] = 7566, - [7804] = 7804, - [7805] = 7553, - [7806] = 7554, - [7807] = 7612, - [7808] = 7548, - [7809] = 7809, - [7810] = 7645, + [7760] = 7715, + [7761] = 7712, + [7762] = 7754, + [7763] = 7714, + [7764] = 7764, + [7765] = 7719, + [7766] = 7766, + [7767] = 7714, + [7768] = 7715, + [7769] = 7719, + [7770] = 7770, + [7771] = 7722, + [7772] = 7748, + [7773] = 7749, + [7774] = 7753, + [7775] = 7754, + [7776] = 2655, + [7777] = 7777, + [7778] = 7722, + [7779] = 7720, + [7780] = 7720, + [7781] = 7754, + [7782] = 2657, + [7783] = 7715, + [7784] = 7730, + [7785] = 7734, + [7786] = 2642, + [7787] = 7733, + [7788] = 7734, + [7789] = 7712, + [7790] = 7790, + [7791] = 7722, + [7792] = 7732, + [7793] = 7715, + [7794] = 7794, + [7795] = 7749, + [7796] = 7719, + [7797] = 7797, + [7798] = 7753, + [7799] = 7733, + [7800] = 7749, + [7801] = 7731, + [7802] = 7802, + [7803] = 7803, + [7804] = 7754, + [7805] = 7797, + [7806] = 7806, + [7807] = 7720, + [7808] = 7734, + [7809] = 7715, + [7810] = 7756, [7811] = 7811, - [7812] = 7549, - [7813] = 7569, - [7814] = 7637, - [7815] = 7640, - [7816] = 7548, - [7817] = 7565, - [7818] = 480, - [7819] = 7555, - [7820] = 7784, - [7821] = 7566, - [7822] = 7550, - [7823] = 7823, - [7824] = 7567, - [7825] = 7825, - [7826] = 7548, - [7827] = 7637, - [7828] = 7640, - [7829] = 7550, - [7830] = 7830, - [7831] = 7553, - [7832] = 7554, - [7833] = 7568, - [7834] = 7569, - [7835] = 7548, - [7836] = 7836, - [7837] = 7570, - [7838] = 7564, - [7839] = 7839, - [7840] = 7637, - [7841] = 7640, - [7842] = 7553, - [7843] = 7548, - [7844] = 7554, - [7845] = 7548, - [7846] = 7553, - [7847] = 7554, - [7848] = 7548, - [7849] = 7739, - [7850] = 7588, - [7851] = 7553, - [7852] = 7570, - [7853] = 7637, - [7854] = 7640, - [7855] = 7548, - [7856] = 7549, - [7857] = 7830, - [7858] = 7588, - [7859] = 7548, - [7860] = 7564, - [7861] = 7705, - [7862] = 7548, - [7863] = 7637, - [7864] = 7640, - [7865] = 7548, - [7866] = 7565, - [7867] = 7567, - [7868] = 7739, - [7869] = 7625, - [7870] = 7588, - [7871] = 7784, - [7872] = 7568, - [7873] = 7637, - [7874] = 7570, - [7875] = 7548, - [7876] = 7625, - [7877] = 7709, - [7878] = 7768, - [7879] = 7548, - [7880] = 7570, - [7881] = 7881, - [7882] = 7637, - [7883] = 7548, - [7884] = 7555, - [7885] = 7679, - [7886] = 7548, - [7887] = 7887, - [7888] = 7622, - [7889] = 7548, - [7890] = 7567, - [7891] = 7637, - [7892] = 7637, - [7893] = 7893, - [7894] = 7554, - [7895] = 7605, - [7896] = 7710, - [7897] = 7564, - [7898] = 7679, - [7899] = 7550, - [7900] = 7637, - [7901] = 7637, - [7902] = 7637, - [7903] = 7637, - [7904] = 7637, - [7905] = 7637, - [7906] = 7637, - [7907] = 7637, - [7908] = 7637, - [7909] = 7637, - [7910] = 7637, - [7911] = 7637, - [7912] = 7637, - [7913] = 7637, - [7914] = 7637, - [7915] = 7637, - [7916] = 7637, - [7917] = 7637, - [7918] = 7637, - [7919] = 7637, - [7920] = 7637, - [7921] = 7637, - [7922] = 7637, - [7923] = 7637, - [7924] = 7637, - [7925] = 7637, - [7926] = 7637, - [7927] = 7637, - [7928] = 7637, - [7929] = 7637, - [7930] = 7637, - [7931] = 7640, - [7932] = 7550, - [7933] = 7586, - [7934] = 7554, - [7935] = 7553, - [7936] = 7554, - [7937] = 7553, - [7938] = 7554, - [7939] = 7561, - [7940] = 7549, - [7941] = 7549, - [7942] = 7568, - [7943] = 7830, - [7944] = 7555, - [7945] = 7830, - [7946] = 7590, - [7947] = 7566, - [7948] = 7809, - [7949] = 7949, - [7950] = 7623, - [7951] = 7548, - [7952] = 7689, - [7953] = 7712, - [7954] = 7954, - [7955] = 7625, - [7956] = 7555, - [7957] = 7564, - [7958] = 7568, - [7959] = 7550, - [7960] = 7558, - [7961] = 513, - [7962] = 7669, + [7812] = 478, + [7813] = 7733, + [7814] = 7731, + [7815] = 7730, + [7816] = 7816, + [7817] = 7714, + [7818] = 7790, + [7819] = 7819, + [7820] = 7820, + [7821] = 7719, + [7822] = 7722, + [7823] = 7716, + [7824] = 7715, + [7825] = 7717, + [7826] = 7712, + [7827] = 7725, + [7828] = 7828, + [7829] = 7829, + [7830] = 7811, + [7831] = 7831, + [7832] = 7725, + [7833] = 7738, + [7834] = 7715, + [7835] = 7835, + [7836] = 7714, + [7837] = 7719, + [7838] = 7715, + [7839] = 7715, + [7840] = 7715, + [7841] = 7722, + [7842] = 7720, + [7843] = 7712, + [7844] = 7749, + [7845] = 7753, + [7846] = 478, + [7847] = 7734, + [7848] = 7725, + [7849] = 7715, + [7850] = 7730, + [7851] = 7715, + [7852] = 7852, + [7853] = 7740, + [7854] = 7754, + [7855] = 7855, + [7856] = 7749, + [7857] = 7715, + [7858] = 7740, + [7859] = 7712, + [7860] = 7730, + [7861] = 7794, + [7862] = 7862, + [7863] = 7749, + [7864] = 7803, + [7865] = 7715, + [7866] = 7722, + [7867] = 7806, + [7868] = 7733, + [7869] = 7738, + [7870] = 7870, + [7871] = 7715, + [7872] = 7872, + [7873] = 7803, + [7874] = 7714, + [7875] = 7875, + [7876] = 7876, + [7877] = 7719, + [7878] = 7722, + [7879] = 7730, + [7880] = 7880, + [7881] = 7719, + [7882] = 7722, + [7883] = 7730, + [7884] = 7720, + [7885] = 7715, + [7886] = 7803, + [7887] = 7730, + [7888] = 7806, + [7889] = 2663, + [7890] = 7734, + [7891] = 7722, + [7892] = 7712, + [7893] = 7733, + [7894] = 7714, + [7895] = 7715, + [7896] = 7729, + [7897] = 7719, + [7898] = 7720, + [7899] = 7722, + [7900] = 7900, + [7901] = 7803, + [7902] = 7806, + [7903] = 7725, + [7904] = 7734, + [7905] = 7715, + [7906] = 7720, + [7907] = 7749, + [7908] = 7819, + [7909] = 7738, + [7910] = 7715, + [7911] = 7749, + [7912] = 7712, + [7913] = 7734, + [7914] = 7740, + [7915] = 7803, + [7916] = 7806, + [7917] = 7715, + [7918] = 7749, + [7919] = 7753, + [7920] = 7712, + [7921] = 7727, + [7922] = 7790, + [7923] = 7754, + [7924] = 7714, + [7925] = 2644, + [7926] = 7719, + [7927] = 7715, + [7928] = 7749, + [7929] = 7803, + [7930] = 7806, + [7931] = 7715, + [7932] = 7720, + [7933] = 7712, + [7934] = 7749, + [7935] = 7753, + [7936] = 7754, + [7937] = 7794, + [7938] = 7725, + [7939] = 7715, + [7940] = 7738, + [7941] = 7754, + [7942] = 7803, + [7943] = 7806, + [7944] = 7944, + [7945] = 7722, + [7946] = 7712, + [7947] = 7880, + [7948] = 7715, + [7949] = 7819, + [7950] = 7749, + [7951] = 7730, + [7952] = 7715, + [7953] = 7797, + [7954] = 7803, + [7955] = 7806, + [7956] = 7722, + [7957] = 7819, + [7958] = 7958, + [7959] = 7715, + [7960] = 7731, + [7961] = 7715, + [7962] = 7753, [7963] = 7963, - [7964] = 7739, - [7965] = 7553, - [7966] = 7586, - [7967] = 7709, - [7968] = 7548, - [7969] = 7564, - [7970] = 7970, - [7971] = 7954, - [7972] = 7645, - [7973] = 7565, - [7974] = 7566, - [7975] = 7975, - [7976] = 7567, - [7977] = 7977, - [7978] = 7548, - [7979] = 7567, - [7980] = 7568, - [7981] = 7981, - [7982] = 7982, - [7983] = 7983, - [7984] = 7984, - [7985] = 2623, - [7986] = 7570, - [7987] = 7568, - [7988] = 7569, - [7989] = 7570, - [7990] = 7554, - [7991] = 7565, - [7992] = 7992, - [7993] = 7554, - [7994] = 7994, - [7995] = 7641, - [7996] = 7549, + [7964] = 7720, + [7965] = 7734, + [7966] = 7966, + [7967] = 7732, + [7968] = 7806, + [7969] = 7749, + [7970] = 7729, + [7971] = 7712, + [7972] = 7753, + [7973] = 7715, + [7974] = 7733, + [7975] = 7749, + [7976] = 7754, + [7977] = 7725, + [7978] = 7715, + [7979] = 7712, + [7980] = 7803, + [7981] = 7806, + [7982] = 7749, + [7983] = 7754, + [7984] = 7862, + [7985] = 7803, + [7986] = 7986, + [7987] = 7987, + [7988] = 7722, + [7989] = 7754, + [7990] = 7990, + [7991] = 7759, + [7992] = 7722, + [7993] = 7803, + [7994] = 7806, + [7995] = 7734, + [7996] = 7996, [7997] = 7997, - [7998] = 7881, + [7998] = 7998, [7999] = 7999, - [8000] = 8000, - [8001] = 7632, - [8002] = 7632, - [8003] = 7564, - [8004] = 7588, - [8005] = 7550, - [8006] = 8006, + [8000] = 7733, + [8001] = 7712, + [8002] = 7733, + [8003] = 7806, + [8004] = 7740, + [8005] = 8005, + [8006] = 7803, + [8007] = 7806, + [8008] = 8008, + [8009] = 7714, + [8010] = 7753, + [8011] = 7749, + [8012] = 7715, + [8013] = 7749, + [8014] = 8014, + [8015] = 7719, + [8016] = 7820, + [8017] = 7722, + [8018] = 7714, + [8019] = 7803, + [8020] = 7806, + [8021] = 7719, + [8022] = 7722, + [8023] = 7722, + [8024] = 513, + [8025] = 7725, + [8026] = 8026, + [8027] = 7725, + [8028] = 8028, + [8029] = 7803, + [8030] = 7806, + [8031] = 7740, + [8032] = 7715, + [8033] = 7749, + [8034] = 7715, + [8035] = 8035, + [8036] = 7749, + [8037] = 7715, + [8038] = 7712, + [8039] = 7803, + [8040] = 7749, + [8041] = 7754, + [8042] = 8028, + [8043] = 7744, + [8044] = 7730, + [8045] = 7753, + [8046] = 7715, + [8047] = 7722, + [8048] = 7803, + [8049] = 7473, + [8050] = 8050, + [8051] = 7790, + [8052] = 7777, + [8053] = 7730, + [8054] = 7720, + [8055] = 7715, + [8056] = 7734, + [8057] = 7803, + [8058] = 8058, + [8059] = 7998, + [8060] = 7715, + [8061] = 7811, + [8062] = 7754, + [8063] = 513, + [8064] = 7797, + [8065] = 8065, + [8066] = 7803, + [8067] = 7803, + [8068] = 7803, + [8069] = 7803, + [8070] = 7803, + [8071] = 7803, + [8072] = 7803, + [8073] = 7803, + [8074] = 7803, + [8075] = 7803, + [8076] = 7803, + [8077] = 7803, + [8078] = 7803, + [8079] = 7803, + [8080] = 7803, + [8081] = 7803, + [8082] = 7803, + [8083] = 7803, + [8084] = 7803, + [8085] = 7803, + [8086] = 7803, + [8087] = 7803, + [8088] = 7803, + [8089] = 7803, + [8090] = 7803, + [8091] = 7803, + [8092] = 7803, + [8093] = 7803, + [8094] = 7803, + [8095] = 7803, + [8096] = 7803, + [8097] = 7730, + [8098] = 8098, + [8099] = 7958, + [8100] = 8100, + [8101] = 7733, + [8102] = 8102, + [8103] = 7727, + [8104] = 8104, + [8105] = 8105, + [8106] = 7862, + [8107] = 7712, + [8108] = 7749, + [8109] = 7753, + [8110] = 7715, + [8111] = 513, + [8112] = 7730, + [8113] = 7797, + [8114] = 7966, + [8115] = 7713, + [8116] = 7714, + [8117] = 7712, + [8118] = 7731, + [8119] = 7999, + [8120] = 8120, + [8121] = 8121, + [8122] = 8120, + [8123] = 7719, + [8124] = 7749, + [8125] = 8125, + [8126] = 7714, + [8127] = 8127, + [8128] = 7719, + [8129] = 7749, + [8130] = 7715, + [8131] = 7753, + [8132] = 7748, + [8133] = 7770, + [8134] = 7958, + [8135] = 7997, + [8136] = 7722, + [8137] = 7777, + [8138] = 7725, + [8139] = 7806, + [8140] = 7794, + [8141] = 7740, + [8142] = 8142, + [8143] = 7740, + [8144] = 7727, + [8145] = 7730, + [8146] = 7754, + [8147] = 8142, + [8148] = 7722, + [8149] = 8149, + [8150] = 478, + [8151] = 7749, + [8152] = 8152, + [8153] = 8026, + [8154] = 7996, + [8155] = 7715, + [8156] = 7740, + [8157] = 8035, + [8158] = 7754, + [8159] = 8159, + [8160] = 7720, + [8161] = 7715, + [8162] = 7715, + [8163] = 7754, + [8164] = 7753, + [8165] = 7715, + [8166] = 7777, + [8167] = 7852, + [8168] = 7715, + [8169] = 7997, + [8170] = 7714, + [8171] = 7740, + [8172] = 7715, + [8173] = 7803, + [8174] = 8174, }; static TSCharacterRange aux_sym_cmd_identifier_token1_character_set_1[] = { @@ -15240,99 +15401,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); case 42: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - '+', 1025, - '-', 429, - '.', 1288, - '=', 2876, - 'I', 1548, - 'N', 1540, - '[', 2752, - ']', 2301, - '_', 1291, - '`', 485, - 'a', 1420, - 'b', 1474, - 'c', 1315, - 'd', 1345, - 'e', 1418, - 'f', 1301, - 'h', 1395, - 'i', 1286, - 'l', 1368, - 'm', 1314, - 'n', 1519, - 'o', 1533, - 'r', 1369, - 's', 1446, - 't', 1475, - 'u', 1492, - 'w', 1383, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(43); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); - END_STATE(); - case 43: - ADVANCE_MAP( - '\n', 2259, - '\r', 17, - '"', 2782, - '#', 4069, - '$', 2306, - '\'', 411, - '(', 2302, - '+', 1025, - '-', 429, - '.', 1288, - 'I', 1548, - 'N', 1540, - ']', 2301, - '_', 1291, - '`', 485, - 'a', 1420, - 'b', 1474, - 'c', 1315, - 'd', 1345, - 'e', 1418, - 'f', 1301, - 'h', 1395, - 'i', 1286, - 'l', 1368, - 'm', 1314, - 'n', 1519, - 'o', 1533, - 'r', 1369, - 's', 1446, - 't', 1475, - 'u', 1492, - 'w', 1383, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(43); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); - END_STATE(); - case 44: ADVANCE_MAP( '\n', 2259, '\r', 17, @@ -15357,7 +15425,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(44); + lookahead == ' ') SKIP(42); if (lookahead == 'I' || lookahead == 'i') ADVANCE(3027); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); @@ -15368,7 +15436,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && (lookahead < '{' || '}' < lookahead)) ADVANCE(3047); END_STATE(); - case 45: + case 43: ADVANCE_MAP( '\n', 2259, '\r', 17, @@ -15393,7 +15461,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(45); + lookahead == ' ') SKIP(43); if (lookahead == 'I' || lookahead == 'i') ADVANCE(3027); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2681); @@ -15404,7 +15472,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && (lookahead < '{' || '}' < lookahead)) ADVANCE(3047); END_STATE(); - case 46: + case 44: ADVANCE_MAP( '\n', 2259, '\r', 17, @@ -15431,7 +15499,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(46); + lookahead == ' ') SKIP(44); if (lookahead == 'I' || lookahead == 'i') ADVANCE(3571); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); @@ -15441,7 +15509,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 47: + case 45: ADVANCE_MAP( '\n', 2259, '\r', 17, @@ -15468,7 +15536,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(47); + lookahead == ' ') SKIP(45); if (lookahead == 'I' || lookahead == 'i') ADVANCE(3571); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); @@ -15478,6 +15546,91 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); + case 46: + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '\'', 411, + '+', 1025, + '-', 429, + '.', 1288, + 'I', 1548, + 'N', 1540, + ']', 2301, + '_', 1291, + '`', 485, + 'a', 1420, + 'b', 1474, + 'c', 1315, + 'd', 1345, + 'e', 1418, + 'f', 1301, + 'h', 1395, + 'i', 1286, + 'l', 1368, + 'm', 1314, + 'n', 1519, + 'o', 1533, + 'r', 1369, + 's', 1446, + 't', 1475, + 'u', 1492, + 'w', 1383, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(46); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1560); + END_STATE(); + case 47: + ADVANCE_MAP( + '\n', 2259, + '\r', 17, + '"', 2782, + '#', 4069, + '\'', 411, + '+', 1025, + '-', 3070, + '.', 1288, + 'I', 1548, + 'N', 1540, + ']', 2301, + '_', 1291, + '`', 485, + 'a', 1420, + 'b', 1474, + 'c', 1315, + 'd', 1345, + 'e', 1418, + 'f', 1301, + 'h', 1395, + 'i', 1286, + 'l', 1368, + 'm', 1314, + 'n', 1519, + 'o', 1533, + 'r', 1369, + 's', 1446, + 't', 1475, + 'u', 1492, + 'w', 1383, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(46); + if (lookahead == '$' || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(3246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + END_STATE(); case 48: ADVANCE_MAP( '\n', 2259, @@ -17459,12 +17612,71 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '+', 2527, ',', 1560, '-', 2350, - '.', 2557, - '0', 2665, + '.', 876, + '0', 2593, + 'B', 2731, + 'E', 880, + 'G', 885, + 'I', 1003, + 'K', 885, + 'M', 885, + 'N', 1000, + 'P', 885, + 'T', 885, + '_', 892, + '`', 485, + 'a', 946, + 'b', 2735, + 'c', 900, + 'd', 906, + 'e', 879, + 'f', 901, + 'g', 884, + 'h', 938, + 'i', 886, + 'k', 884, + 'l', 924, + 'm', 881, + 'n', 977, + 'o', 997, + 'p', 884, + 'r', 915, + 's', 927, + 't', 883, + 'u', 979, + 'w', 936, + '}', 2415, + 0xb5, 978, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(172); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(3879); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); + END_STATE(); + case 114: + ADVANCE_MAP( + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 2527, + ',', 1560, + '-', 2350, + '.', 876, + '0', 2593, 'E', 898, 'I', 1003, 'N', 1000, - '_', 887, + '_', 892, '`', 485, 'a', 946, 'b', 969, @@ -17489,7 +17701,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(172); if (('<' <= lookahead && lookahead <= '>') || lookahead == '^') ADVANCE(3879); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2594); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -17498,7 +17710,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 114: + case 115: ADVANCE_MAP( '"', 2782, '#', 4069, @@ -17509,7 +17721,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ',', 1560, '-', 2350, '.', 876, - '0', 2593, + '0', 2665, 'B', 2731, 'E', 880, 'G', 885, @@ -17519,7 +17731,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'N', 1000, 'P', 885, 'T', 885, - '_', 892, + '_', 887, '`', 485, 'a', 946, 'b', 2735, @@ -17548,7 +17760,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(172); if (('<' <= lookahead && lookahead <= '>') || lookahead == '^') ADVANCE(3879); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -17557,55 +17769,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'i' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 115: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 2527, - ',', 1560, - '-', 2350, - '.', 876, - '0', 2593, - 'E', 898, - 'I', 1003, - 'N', 1000, - '_', 892, - '`', 485, - 'a', 946, - 'b', 969, - 'c', 900, - 'd', 914, - 'e', 897, - 'f', 901, - 'h', 939, - 'i', 886, - 'l', 924, - 'm', 902, - 'n', 991, - 'o', 997, - 'r', 915, - 's', 959, - 't', 965, - 'u', 980, - 'w', 937, - '}', 2415, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(172); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3879); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); - END_STATE(); case 116: ADVANCE_MAP( '"', 2782, @@ -17619,7 +17782,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '.', 876, '0', 2665, 'B', 2731, - 'E', 880, + 'E', 885, 'G', 885, 'I', 1003, 'K', 885, @@ -17633,7 +17796,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'b', 2735, 'c', 900, 'd', 906, - 'e', 879, + 'e', 882, 'f', 901, 'g', 884, 'h', 938, @@ -17677,39 +17840,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 2350, '.', 876, '0', 2665, - 'B', 2731, - 'E', 885, - 'G', 885, + 'E', 898, 'I', 1003, - 'K', 885, - 'M', 885, 'N', 1000, - 'P', 885, - 'T', 885, '_', 887, '`', 485, 'a', 946, - 'b', 2735, + 'b', 969, 'c', 900, - 'd', 906, - 'e', 882, + 'd', 914, + 'e', 897, 'f', 901, - 'g', 884, - 'h', 938, + 'h', 939, 'i', 886, - 'k', 884, 'l', 924, - 'm', 881, - 'n', 977, + 'm', 902, + 'n', 991, 'o', 997, - 'p', 884, 'r', 915, - 's', 927, - 't', 883, - 'u', 979, - 'w', 936, + 's', 959, + 't', 965, + 'u', 980, + 'w', 937, '}', 2415, - 0xb5, 978, ); if (lookahead == '\t' || lookahead == ' ') SKIP(172); @@ -17721,7 +17874,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); case 118: @@ -17736,7 +17889,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 2350, '.', 876, '0', 2665, - 'E', 898, 'I', 1003, 'N', 1000, '_', 887, @@ -17745,7 +17897,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'b', 969, 'c', 900, 'd', 914, - 'e', 897, + 'e', 952, 'f', 901, 'h', 939, 'i', 886, @@ -17783,8 +17935,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '+', 2527, ',', 1560, '-', 2350, - '.', 876, + '.', 2557, '0', 2665, + 'E', 898, 'I', 1003, 'N', 1000, '_', 887, @@ -17793,7 +17946,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'b', 969, 'c', 900, 'd', 914, - 'e', 952, + 'e', 897, 'f', 901, 'h', 939, 'i', 886, @@ -17988,6 +18141,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'N', 1000, 'P', 885, 'T', 885, + '[', 2300, + ']', 2301, '_', 887, '`', 485, 'a', 946, @@ -18022,8 +18177,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); case 124: @@ -18076,55 +18229,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); case 125: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 2527, - ',', 2805, - '-', 2350, - '.', 2557, - '0', 2665, - 'E', 898, - 'I', 1003, - 'N', 1000, - '_', 887, - '`', 485, - 'a', 946, - 'b', 969, - 'c', 900, - 'd', 914, - 'e', 897, - 'f', 901, - 'h', 939, - 'i', 886, - 'l', 924, - 'm', 902, - 'n', 991, - 'o', 997, - 'r', 915, - 's', 959, - 't', 965, - 'u', 980, - 'w', 937, - '}', 2415, - '\t', 2806, - ' ', 2806, - ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3879); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); - END_STATE(); - case 126: ADVANCE_MAP( '"', 2782, '#', 4069, @@ -18183,7 +18287,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'i' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 127: + case 126: ADVANCE_MAP( '"', 2782, '#', 4069, @@ -18232,7 +18336,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 128: + case 127: ADVANCE_MAP( '"', 2782, '#', 4069, @@ -18291,7 +18395,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'i' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 129: + case 128: ADVANCE_MAP( '"', 2782, '#', 4069, @@ -18350,6 +18454,55 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'i' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); + case 129: + ADVANCE_MAP( + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 2527, + ',', 2805, + '-', 2350, + '.', 876, + '0', 2665, + 'E', 898, + 'I', 1003, + 'N', 1000, + '_', 887, + '`', 485, + 'a', 946, + 'b', 969, + 'c', 900, + 'd', 914, + 'e', 897, + 'f', 901, + 'h', 939, + 'i', 886, + 'l', 924, + 'm', 902, + 'n', 991, + 'o', 997, + 'r', 915, + 's', 959, + 't', 965, + 'u', 980, + 'w', 937, + '}', 2415, + '\t', 2806, + ' ', 2806, + ); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(3879); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); + END_STATE(); case 130: ADVANCE_MAP( '"', 2782, @@ -18362,6 +18515,54 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 2350, '.', 876, '0', 2665, + 'I', 1003, + 'N', 1000, + '_', 887, + '`', 485, + 'a', 946, + 'b', 969, + 'c', 900, + 'd', 914, + 'e', 952, + 'f', 901, + 'h', 939, + 'i', 886, + 'l', 924, + 'm', 902, + 'n', 991, + 'o', 997, + 'r', 915, + 's', 959, + 't', 965, + 'u', 980, + 'w', 937, + '}', 2415, + '\t', 2806, + ' ', 2806, + ); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(3879); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); + END_STATE(); + case 131: + ADVANCE_MAP( + '"', 2782, + '#', 4069, + '$', 2305, + '\'', 411, + '(', 2506, + '+', 2527, + ',', 2805, + '-', 2350, + '.', 2557, + '0', 2665, 'E', 898, 'I', 1003, 'N', 1000, @@ -18399,54 +18600,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); - case 131: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '$', 2305, - '\'', 411, - '(', 2506, - '+', 2527, - ',', 2805, - '-', 2350, - '.', 876, - '0', 2665, - 'I', 1003, - 'N', 1000, - '_', 887, - '`', 485, - 'a', 946, - 'b', 969, - 'c', 900, - 'd', 914, - 'e', 952, - 'f', 901, - 'h', 939, - 'i', 886, - 'l', 924, - 'm', 902, - 'n', 991, - 'o', 997, - 'r', 915, - 's', 959, - 't', 965, - 'u', 980, - 'w', 937, - '}', 2415, - '\t', 2806, - ' ', 2806, - ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3879); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2805); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); - END_STATE(); case 132: ADVANCE_MAP( '"', 2782, @@ -18512,7 +18665,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 3612, '.', 3604, '0', 2590, - 'E', 3639, + 'E', 3640, 'N', 3674, '[', 2300, ']', 2301, @@ -18557,7 +18710,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'T', 3629, '[', 2300, ']', 2301, - '_', 3643, + '_', 3636, '`', 485, 'd', 3645, 'e', 3597, @@ -18610,7 +18763,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'T', 3629, '[', 2300, ']', 2301, - '_', 3643, + '_', 3636, '`', 485, 'd', 3645, 'e', 3594, @@ -18654,11 +18807,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 3612, '.', 3604, '0', 2663, - 'E', 3639, + 'E', 3640, 'N', 3674, '[', 2300, ']', 2301, - '_', 3643, + '_', 3636, '`', 485, 'e', 3598, 'f', 3644, @@ -18693,7 +18846,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'N', 3674, '[', 2300, ']', 2301, - '_', 3643, + '_', 3636, '`', 485, 'e', 3595, 'f', 3644, @@ -18725,7 +18878,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 3612, '.', 3603, '0', 2590, - 'E', 3639, + 'E', 3640, 'N', 3674, '[', 2300, ']', 2301, @@ -18761,11 +18914,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 3612, '.', 3603, '0', 2663, - 'E', 3639, + 'E', 3640, 'N', 3674, '[', 2300, ']', 2301, - '_', 3643, + '_', 3636, '`', 485, 'e', 3598, 'f', 3644, @@ -18800,7 +18953,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'N', 3674, '[', 2300, ']', 2301, - '_', 3643, + '_', 3636, '`', 485, 'e', 3595, 'f', 3644, @@ -18841,7 +18994,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'T', 3629, '[', 2300, ']', 2301, - '_', 3643, + '_', 3636, '`', 485, 'd', 3645, 'e', 3597, @@ -18885,11 +19038,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 3612, '.', 2564, '0', 2663, - 'E', 3639, + 'E', 3640, 'N', 3674, '[', 2300, ']', 2301, - '_', 3643, + '_', 3636, '`', 485, 'e', 3598, 'f', 3644, @@ -18921,11 +19074,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 3612, '.', 2554, '0', 2663, - 'E', 3639, + 'E', 3640, 'N', 3674, '[', 2300, ']', 2301, - '_', 3643, + '_', 3636, '`', 485, 'e', 3598, 'f', 3644, @@ -19055,7 +19208,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '0', 2593, 'I', 1003, 'N', 1000, - '[', 2300, + '[', 2752, ']', 2301, '_', 892, '`', 485, @@ -19103,8 +19256,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '0', 2593, 'I', 1003, 'N', 1000, - '[', 2752, - ']', 2301, '_', 892, '`', 485, 'a', 946, @@ -19135,6 +19286,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1008); END_STATE(); case 148: @@ -19152,7 +19305,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'N', 3565, '[', 2300, ']', 2301, - '_', 3541, + '_', 3537, '`', 485, 'e', 3507, 'f', 3545, @@ -19182,12 +19335,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '+', 3520, ',', 2304, '-', 3519, - '.', 2552, + '.', 2553, '0', 2591, 'N', 3565, '[', 2300, ']', 2301, - '_', 3541, + '_', 3537, '`', 485, 'e', 3507, 'f', 3545, @@ -19222,7 +19375,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'N', 3565, '[', 2300, ']', 2301, - '_', 3541, + '_', 3537, '`', 485, 'e', 3507, 'f', 3545, @@ -19252,12 +19405,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '+', 3520, ',', 2805, '-', 3519, - '.', 2552, + '.', 2553, '0', 2591, 'N', 3565, '[', 2300, ']', 2301, - '_', 3541, + '_', 3537, '`', 485, 'e', 3507, 'f', 3545, @@ -20806,7 +20959,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'N', 3565, '[', 2300, ']', 2301, - '_', 3541, + '_', 3537, '`', 485, 'e', 3509, 'f', 3545, @@ -20913,7 +21066,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'N', 3565, '[', 2300, ']', 2301, - '_', 3541, + '_', 3537, '`', 485, 'e', 3509, 'f', 3545, @@ -21269,7 +21422,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'N', 3565, '[', 2300, ']', 2301, - '_', 3541, + '_', 3537, '`', 485, 'e', 3509, 'f', 3545, @@ -21376,7 +21529,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'N', 3565, '[', 2300, ']', 2301, - '_', 3541, + '_', 3537, '`', 485, 'e', 3509, 'f', 3545, @@ -21758,7 +21911,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 3612, '.', 3604, '0', 2590, - 'E', 3639, + 'E', 3640, 'N', 3674, '[', 2300, ']', 2301, @@ -21803,7 +21956,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'T', 3629, '[', 2300, ']', 2301, - '_', 3643, + '_', 3636, '`', 485, 'd', 3645, 'e', 3597, @@ -21856,7 +22009,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'T', 3629, '[', 2300, ']', 2301, - '_', 3643, + '_', 3636, '`', 485, 'd', 3645, 'e', 3594, @@ -21900,11 +22053,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 3612, '.', 3604, '0', 2663, - 'E', 3639, + 'E', 3640, 'N', 3674, '[', 2300, ']', 2301, - '_', 3643, + '_', 3636, '`', 485, 'e', 3598, 'f', 3644, @@ -21939,7 +22092,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'N', 3674, '[', 2300, ']', 2301, - '_', 3643, + '_', 3636, '`', 485, 'e', 3595, 'f', 3644, @@ -21971,7 +22124,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 3612, '.', 3603, '0', 2590, - 'E', 3639, + 'E', 3640, 'N', 3674, '[', 2300, ']', 2301, @@ -22007,11 +22160,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 3612, '.', 3603, '0', 2663, - 'E', 3639, + 'E', 3640, 'N', 3674, '[', 2300, ']', 2301, - '_', 3643, + '_', 3636, '`', 485, 'e', 3598, 'f', 3644, @@ -22046,7 +22199,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'N', 3674, '[', 2300, ']', 2301, - '_', 3643, + '_', 3636, '`', 485, 'e', 3595, 'f', 3644, @@ -22087,7 +22240,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'T', 3629, '[', 2300, ']', 2301, - '_', 3643, + '_', 3636, '`', 485, 'd', 3645, 'e', 3597, @@ -22131,11 +22284,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 3612, '.', 2564, '0', 2663, - 'E', 3639, + 'E', 3640, 'N', 3674, '[', 2300, ']', 2301, - '_', 3643, + '_', 3636, '`', 485, 'e', 3598, 'f', 3644, @@ -22167,11 +22320,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 3612, '.', 2554, '0', 2663, - 'E', 3639, + 'E', 3640, 'N', 3674, '[', 2300, ']', 2301, - '_', 3643, + '_', 3636, '`', 485, 'e', 3598, 'f', 3644, @@ -22206,7 +22359,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'N', 3674, '[', 2300, ']', 2301, - '_', 3643, + '_', 3636, '`', 485, 'e', 3595, 'f', 3644, @@ -22328,7 +22481,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(232); + lookahead == ' ') SKIP(234); if (lookahead == 'I' || lookahead == 'i') ADVANCE(2926); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2902); @@ -22438,6 +22591,95 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || '}' < lookahead)) ADVANCE(1247); END_STATE(); case 229: + ADVANCE_MAP( + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + '+', 1025, + '-', 429, + '.', 1288, + ':', 2810, + '=', 2876, + 'I', 1548, + 'N', 1540, + '[', 2752, + '_', 1291, + '`', 485, + 'a', 1420, + 'b', 1474, + 'c', 1315, + 'd', 1345, + 'e', 1418, + 'f', 1301, + 'h', 1395, + 'i', 1286, + 'l', 1368, + 'm', 1314, + 'n', 1519, + 'o', 1533, + 'r', 1369, + 's', 1446, + 't', 1475, + 'u', 1492, + 'w', 1383, + '\t', 230, + ' ', 230, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + END_STATE(); + case 230: + ADVANCE_MAP( + '"', 2782, + '#', 4069, + '$', 2306, + '\'', 411, + '(', 2302, + '+', 1025, + '-', 429, + '.', 1288, + ':', 2810, + 'I', 1548, + 'N', 1540, + '_', 1291, + '`', 485, + 'a', 1420, + 'b', 1474, + 'c', 1315, + 'd', 1345, + 'e', 1418, + 'f', 1301, + 'h', 1395, + 'i', 1286, + 'l', 1368, + 'm', 1314, + 'n', 1519, + 'o', 1533, + 'r', 1369, + 's', 1446, + 't', 1475, + 'u', 1492, + 'w', 1383, + '\t', 230, + ' ', 230, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); + END_STATE(); + case 231: ADVANCE_MAP( '"', 2782, '#', 4069, @@ -22460,12 +22702,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(230); + lookahead == ' ') SKIP(232); if (lookahead == 'I' || lookahead == 'i') ADVANCE(667); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2683); END_STATE(); - case 230: + case 232: ADVANCE_MAP( '"', 2782, '#', 4069, @@ -22487,12 +22729,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(230); + lookahead == ' ') SKIP(232); if (lookahead == 'I' || lookahead == 'i') ADVANCE(667); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2683); END_STATE(); - case 231: + case 233: ADVANCE_MAP( '"', 2782, '#', 4069, @@ -22513,12 +22755,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(232); + lookahead == ' ') SKIP(234); if (lookahead == 'I' || lookahead == 'i') ADVANCE(667); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2683); END_STATE(); - case 232: + case 234: ADVANCE_MAP( '"', 2782, '#', 4069, @@ -22539,12 +22781,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(232); + lookahead == ' ') SKIP(234); if (lookahead == 'I' || lookahead == 'i') ADVANCE(667); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2683); END_STATE(); - case 233: + case 235: ADVANCE_MAP( '"', 2782, '#', 4069, @@ -22566,13 +22808,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(232); + lookahead == ' ') SKIP(234); if (lookahead == 'I' || lookahead == 'i') ADVANCE(2195); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2062); if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2223); END_STATE(); - case 234: + case 236: ADVANCE_MAP( '"', 2782, '#', 4069, @@ -22594,8 +22836,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'o', 2958, 't', 3007, '{', 2414, - '\t', 234, - ' ', 234, + '\t', 236, + ' ', 236, 'I', 3027, 'i', 3027, ); @@ -22607,7 +22849,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && (lookahead < '{' || '}' < lookahead)) ADVANCE(3047); END_STATE(); - case 235: + case 237: ADVANCE_MAP( '"', 2782, '#', 4069, @@ -22626,8 +22868,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'n', 3020, 'o', 2958, 't', 3007, - '\t', 235, - ' ', 235, + '\t', 237, + ' ', 237, 'I', 3027, 'i', 3027, ); @@ -22640,7 +22882,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && (lookahead < '{' || '}' < lookahead)) ADVANCE(3047); END_STATE(); - case 236: + case 238: ADVANCE_MAP( '"', 2782, '#', 4069, @@ -22660,7 +22902,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 3007, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(236); + lookahead == ' ') SKIP(238); if (lookahead == 'I' || lookahead == 'i') ADVANCE(3027); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2681); @@ -22672,7 +22914,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && (lookahead < '{' || '}' < lookahead)) ADVANCE(3047); END_STATE(); - case 237: + case 239: ADVANCE_MAP( '"', 2782, '#', 4069, @@ -22707,7 +22949,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && (lookahead < '{' || '}' < lookahead)) ADVANCE(3593); END_STATE(); - case 238: + case 240: ADVANCE_MAP( '"', 2782, '#', 4069, @@ -22730,7 +22972,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(238); + lookahead == ' ') SKIP(240); if (lookahead == 'I' || lookahead == 'i') ADVANCE(3836); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2684); @@ -22742,7 +22984,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && (lookahead < '{' || '}' < lookahead)) ADVANCE(3850); END_STATE(); - case 239: + case 241: ADVANCE_MAP( '"', 2782, '#', 4069, @@ -22780,7 +23022,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(232); + lookahead == ' ') SKIP(234); if (lookahead == 'B' || lookahead == 'b') ADVANCE(2731); if (lookahead == 'I' || @@ -22793,7 +23035,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && (lookahead < '{' || '}' < lookahead)) ADVANCE(3246); END_STATE(); - case 240: + case 242: ADVANCE_MAP( '"', 2782, '#', 4069, @@ -22831,7 +23073,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(232); + lookahead == ' ') SKIP(234); if (lookahead == 'B' || lookahead == 'b') ADVANCE(2731); if (lookahead == 'I' || @@ -22844,7 +23086,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && (lookahead < '{' || '}' < lookahead)) ADVANCE(3246); END_STATE(); - case 241: + case 243: ADVANCE_MAP( '"', 2782, '#', 4069, @@ -22882,7 +23124,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(232); + lookahead == ' ') SKIP(234); if (lookahead == 'B' || lookahead == 'b') ADVANCE(2731); if (lookahead == 'I' || @@ -22895,7 +23137,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && (lookahead < '{' || '}' < lookahead)) ADVANCE(3246); END_STATE(); - case 242: + case 244: ADVANCE_MAP( '"', 2782, '#', 4069, @@ -22916,7 +23158,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(232); + lookahead == ' ') SKIP(234); if (lookahead == 'I' || lookahead == 'i') ADVANCE(3222); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2685); @@ -22927,7 +23169,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && (lookahead < '{' || '}' < lookahead)) ADVANCE(3246); END_STATE(); - case 243: + case 245: ADVANCE_MAP( '"', 2782, '#', 4069, @@ -22965,7 +23207,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 0xb5, 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(232); + lookahead == ' ') SKIP(234); if (lookahead == 'B' || lookahead == 'b') ADVANCE(2731); if (lookahead == 'I' || @@ -22978,7 +23220,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && (lookahead < '{' || '}' < lookahead)) ADVANCE(3246); END_STATE(); - case 244: + case 246: ADVANCE_MAP( '"', 2782, '#', 4069, @@ -23022,7 +23264,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); END_STATE(); - case 245: + case 247: ADVANCE_MAP( '"', 2782, '#', 4069, @@ -23054,11 +23296,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'w', 1383, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(249); + lookahead == ' ') SKIP(250); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1560); END_STATE(); - case 246: + case 248: ADVANCE_MAP( '"', 2782, '#', 4069, @@ -23088,12 +23330,91 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'u', 1492, 'w', 1383, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(251); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1560); + END_STATE(); + case 249: + ADVANCE_MAP( + '"', 2782, + '#', 4069, + '\'', 411, + '+', 1025, + '-', 429, + '.', 1288, + '=', 2876, + 'I', 2196, + 'N', 2184, + '_', 2056, + '`', 485, + 'a', 2112, + 'b', 2144, + 'c', 2067, + 'd', 2077, + 'e', 2117, + 'f', 2069, + 'h', 2103, + 'i', 2051, + 'l', 2083, + 'm', 2064, + 'n', 2171, + 'o', 2176, + 'r', 2078, + 's', 2131, + 't', 2139, + 'u', 2154, + 'w', 2100, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(251); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2056); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2223); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < 'A' || '[' < lookahead) && + (lookahead < ']' || '}' < lookahead)) ADVANCE(1560); + END_STATE(); + case 250: + ADVANCE_MAP( + '"', 2782, + '#', 4069, + '\'', 411, + '+', 1025, + '-', 429, + '.', 1288, + '?', 2476, + 'I', 1548, + 'N', 1540, + '_', 1291, + '`', 485, + 'a', 1420, + 'b', 1474, + 'c', 1315, + 'd', 1345, + 'e', 1418, + 'f', 1301, + 'h', 1395, + 'i', 1286, + 'l', 1368, + 'm', 1314, + 'n', 1519, + 'o', 1533, + 'r', 1369, + 's', 1446, + 't', 1475, + 'u', 1492, + 'w', 1383, + ); if (lookahead == '\t' || lookahead == ' ') SKIP(250); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1560); END_STATE(); - case 247: + case 251: ADVANCE_MAP( '"', 2782, '#', 4069, @@ -23101,7 +23422,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '+', 1025, '-', 429, '.', 1288, - ':', 2810, 'I', 1548, 'N', 1540, '_', 1291, @@ -23123,178 +23443,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1475, 'u', 1492, 'w', 1383, - '\t', 247, - ' ', 247, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); - END_STATE(); - case 248: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '\'', 411, - '+', 1025, - '-', 429, - '.', 1288, - '=', 2876, - 'I', 2196, - 'N', 2184, - '_', 2056, - '`', 485, - 'a', 2112, - 'b', 2144, - 'c', 2067, - 'd', 2077, - 'e', 2117, - 'f', 2069, - 'h', 2103, - 'i', 2051, - 'l', 2083, - 'm', 2064, - 'n', 2171, - 'o', 2176, - 'r', 2078, - 's', 2131, - 't', 2139, - 'u', 2154, - 'w', 2100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(250); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2056); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2223); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < 'A' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(1560); - END_STATE(); - case 249: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '\'', 411, - '+', 1025, - '-', 429, - '.', 1288, - '?', 2476, - 'I', 1548, - 'N', 1540, - '_', 1291, - '`', 485, - 'a', 1420, - 'b', 1474, - 'c', 1315, - 'd', 1345, - 'e', 1418, - 'f', 1301, - 'h', 1395, - 'i', 1286, - 'l', 1368, - 'm', 1314, - 'n', 1519, - 'o', 1533, - 'r', 1369, - 's', 1446, - 't', 1475, - 'u', 1492, - 'w', 1383, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(249); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1560); - END_STATE(); - case 250: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '\'', 411, - '+', 1025, - '-', 429, - '.', 1288, - 'I', 1548, - 'N', 1540, - '_', 1291, - '`', 485, - 'a', 1420, - 'b', 1474, - 'c', 1315, - 'd', 1345, - 'e', 1418, - 'f', 1301, - 'h', 1395, - 'i', 1286, - 'l', 1368, - 'm', 1314, - 'n', 1519, - 'o', 1533, - 'r', 1369, - 's', 1446, - 't', 1475, - 'u', 1492, - 'w', 1383, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(250); + lookahead == ' ') SKIP(251); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1560); END_STATE(); - case 251: - ADVANCE_MAP( - '"', 2782, - '#', 4069, - '\'', 411, - '+', 1025, - '-', 3070, - '.', 1288, - 'I', 1548, - 'N', 1540, - '_', 1291, - '`', 485, - 'a', 1420, - 'b', 1474, - 'c', 1315, - 'd', 1345, - 'e', 1418, - 'f', 1301, - 'h', 1395, - 'i', 1286, - 'l', 1368, - 'm', 1314, - 'n', 1519, - 'o', 1533, - 'r', 1369, - 's', 1446, - 't', 1475, - 'u', 1492, - 'w', 1383, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(250); - if (lookahead == '$' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3246); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1560); - END_STATE(); case 252: ADVANCE_MAP( '"', 2782, @@ -23337,7 +23491,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 0xb5, 1483, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(250); + lookahead == ' ') SKIP(251); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || @@ -23393,7 +23547,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 0xb5, 1483, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(250); + lookahead == ' ') SKIP(251); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || @@ -23449,7 +23603,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 0xb5, 1483, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(250); + lookahead == ' ') SKIP(251); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || @@ -23505,7 +23659,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 0xb5, 1483, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(250); + lookahead == ' ') SKIP(251); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || @@ -23653,7 +23807,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '{', 2414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(232); + lookahead == ' ') SKIP(234); if (lookahead == 'I' || lookahead == 'i') ADVANCE(3474); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3303); @@ -23695,7 +23849,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'w', 3350, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(250); + lookahead == ' ') SKIP(251); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || @@ -24740,8 +24894,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '}', 2415, '\t', 2809, ' ', 2809, - 'E', 3639, - 'e', 3639, + 'E', 3640, + 'e', 3640, ); if (('\n' <= lookahead && lookahead <= '\r') || lookahead == ',') ADVANCE(2805); @@ -24778,8 +24932,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '}', 2415, '\t', 2809, ' ', 2809, - 'E', 3639, - 'e', 3639, + 'E', 3640, + 'e', 3640, ); if (('\n' <= lookahead && lookahead <= '\r') || lookahead == ',') ADVANCE(2805); @@ -25104,8 +25258,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '}', 2415, '\t', 2809, ' ', 2809, - 'E', 3639, - 'e', 3639, + 'E', 3640, + 'e', 3640, ); if (('\n' <= lookahead && lookahead <= '\r') || lookahead == ',') ADVANCE(2805); @@ -25129,8 +25283,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '}', 2415, '\t', 2809, ' ', 2809, - 'E', 3639, - 'e', 3639, + 'E', 3640, + 'e', 3640, ); if (('\n' <= lookahead && lookahead <= '\r') || lookahead == ',') ADVANCE(2805); @@ -25170,8 +25324,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '_', 3631, '\t', 2809, ' ', 2809, - 'E', 3639, - 'e', 3639, + 'E', 3640, + 'e', 3640, ); if (('\n' <= lookahead && lookahead <= '\r') || lookahead == ',') ADVANCE(2805); @@ -25193,7 +25347,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == ' ') ADVANCE(2809); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3639); + lookahead == 'e') ADVANCE(3640); if (('\n' <= lookahead && lookahead <= '\r') || lookahead == ',') ADVANCE(2805); if (lookahead != 0 && @@ -29281,7 +29435,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ')', 2303, '+', 3081, '-', 2340, - '.', 2553, + '.', 2552, '0', 2662, ';', 2263, 'E', 3115, @@ -41610,7 +41764,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1960: ACCEPT_TOKEN(sym_identifier); if (lookahead == '+') ADVANCE(1974); - if (lookahead == '-') ADVANCE(3640); + if (lookahead == '-') ADVANCE(3641); if (lookahead == 'I') ADVANCE(2019); if (lookahead == '_') ADVANCE(1974); if (lookahead == 'i') ADVANCE(2019); @@ -41622,7 +41776,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1961: ACCEPT_TOKEN(sym_identifier); if (lookahead == '+') ADVANCE(1974); - if (lookahead == '-') ADVANCE(3640); + if (lookahead == '-') ADVANCE(3641); if (lookahead == 'I') ADVANCE(2019); if (lookahead == '_') ADVANCE(1974); if (lookahead == 'i') ADVANCE(1978); @@ -41634,7 +41788,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1962: ACCEPT_TOKEN(sym_identifier); if (lookahead == '+') ADVANCE(1974); - if (lookahead == '-') ADVANCE(3640); + if (lookahead == '-') ADVANCE(3641); if (lookahead == '_') ADVANCE(1974); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2609); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2032); @@ -44697,19 +44851,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 2552: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(2423); - if (lookahead == '_') ADVANCE(3538); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2617); + if (lookahead == '_') ADVANCE(3112); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2698); END_STATE(); case 2553: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(2423); - if (lookahead == '_') ADVANCE(3112); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2698); + if (lookahead == '_') ADVANCE(3539); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2617); END_STATE(); case 2554: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(2423); - if (lookahead == '_') ADVANCE(3637); + if (lookahead == '_') ADVANCE(3638); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2699); END_STATE(); case 2555: @@ -44767,7 +44921,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 2564: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(2544); - if (lookahead == '_') ADVANCE(3637); + if (lookahead == '_') ADVANCE(3638); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2699); END_STATE(); case 2565: @@ -45055,7 +45209,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(2617); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3539); + lookahead == 'e') ADVANCE(3540); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2617); END_STATE(); case 2618: @@ -45083,14 +45237,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(2621); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3253); + lookahead == 'e') ADVANCE(3885); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2621); END_STATE(); case 2622: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(2622); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3885); + lookahead == 'e') ADVANCE(3253); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2622); END_STATE(); case 2623: @@ -45508,7 +45662,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); if (lookahead == '_') ADVANCE(2699); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3641); + lookahead == 'e') ADVANCE(3642); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2699); END_STATE(); case 2700: @@ -48704,7 +48858,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 3250: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == '_') ADVANCE(3250); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2621); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2622); if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3255); END_STATE(); case 3251: @@ -50354,7 +50508,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 3514: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == '.') ADVANCE(2423); - if (lookahead == '_') ADVANCE(3538); + if (lookahead == '_') ADVANCE(3539); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2617); if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); @@ -50390,7 +50544,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 3519: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3537); + if (lookahead == '.') ADVANCE(3538); if (lookahead == '_') ADVANCE(3520); if (lookahead == 'I' || lookahead == 'i') ADVANCE(3573); @@ -50399,7 +50553,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 3520: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3537); + if (lookahead == '.') ADVANCE(3538); if (lookahead == '_') ADVANCE(3520); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2610); if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); @@ -50504,33 +50658,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 3537: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == '_') ADVANCE(3537); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2623); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); case 3538: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == '_') ADVANCE(3538); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2617); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2623); if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); case 3539: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(3540); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3540); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); + if (lookahead == '_') ADVANCE(3539); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2617); if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); case 3540: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(3540); + if (lookahead == '_') ADVANCE(3541); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3541); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); case 3541: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == '_') ADVANCE(3541); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2612); if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3593); END_STATE(); case 3542: @@ -50842,11 +50996,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 3597: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); ADVANCE_MAP( - '+', 3638, - '-', 3640, + '+', 3639, + '-', 3641, '>', 2828, 'I', 3675, - '_', 3640, + '_', 3641, 'i', 3675, 'r', 3662, 'B', 2731, @@ -50857,10 +51011,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 3598: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(3638); - if (lookahead == '-') ADVANCE(3640); + if (lookahead == '+') ADVANCE(3639); + if (lookahead == '-') ADVANCE(3641); if (lookahead == '>') ADVANCE(2828); - if (lookahead == '_') ADVANCE(3640); + if (lookahead == '_') ADVANCE(3641); if (lookahead == 'r') ADVANCE(3662); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); @@ -50892,14 +51046,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 3603: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == '.') ADVANCE(2423); - if (lookahead == '_') ADVANCE(3637); + if (lookahead == '_') ADVANCE(3638); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2699); if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); case 3604: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == '.') ADVANCE(2544); - if (lookahead == '_') ADVANCE(3637); + if (lookahead == '_') ADVANCE(3638); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2699); if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); @@ -50948,7 +51102,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 3612: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3636); + if (lookahead == '.') ADVANCE(3637); if (lookahead == '_') ADVANCE(3613); if (lookahead == 'I' || lookahead == 'i') ADVANCE(3683); @@ -50957,7 +51111,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 3613: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3636); + if (lookahead == '.') ADVANCE(3637); if (lookahead == '_') ADVANCE(3613); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2688); if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); @@ -51030,10 +51184,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 3625: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'I') ADVANCE(3675); - if (lookahead == '_') ADVANCE(3640); + if (lookahead == '_') ADVANCE(3641); if (lookahead == 'i') ADVANCE(3675); if (lookahead == '+' || - lookahead == '-') ADVANCE(3640); + lookahead == '-') ADVANCE(3641); if (lookahead == 'B' || lookahead == 'b') ADVANCE(2731); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); @@ -51042,10 +51196,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 3626: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'I') ADVANCE(3675); - if (lookahead == '_') ADVANCE(3640); + if (lookahead == '_') ADVANCE(3641); if (lookahead == 'i') ADVANCE(3646); if (lookahead == '+' || - lookahead == '-') ADVANCE(3640); + lookahead == '-') ADVANCE(3641); if (lookahead == 'B' || lookahead == 'b') ADVANCE(2731); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); @@ -51120,54 +51274,54 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 3636: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == '_') ADVANCE(3636); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2700); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); case 3637: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == '_') ADVANCE(3637); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2699); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2700); if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); case 3638: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(3640); - if (lookahead == 'o') ADVANCE(3621); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if (lookahead == '_') ADVANCE(3638); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2699); if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); case 3639: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(3640); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3640); + if (lookahead == '_') ADVANCE(3641); + if (lookahead == 'o') ADVANCE(3621); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); case 3640: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(3640); + if (lookahead == '_') ADVANCE(3641); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3641); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); case 3641: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(3642); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3642); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); + if (lookahead == '_') ADVANCE(3641); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); case 3642: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(3642); + if (lookahead == '_') ADVANCE(3643); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3643); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); case 3643: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == '_') ADVANCE(3643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2690); if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3703); END_STATE(); case 3644: @@ -52563,7 +52717,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 3882: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); if (lookahead == '_') ADVANCE(3882); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2622); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2621); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3887); END_STATE(); case 3883: @@ -54467,18 +54621,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [67] = {.lex_state = 38, .external_lex_state = 2}, [68] = {.lex_state = 38, .external_lex_state = 2}, [69] = {.lex_state = 38, .external_lex_state = 2}, - [70] = {.lex_state = 740, .external_lex_state = 2}, + [70] = {.lex_state = 38, .external_lex_state = 2}, [71] = {.lex_state = 38, .external_lex_state = 2}, [72] = {.lex_state = 38, .external_lex_state = 2}, - [73] = {.lex_state = 740, .external_lex_state = 2}, + [73] = {.lex_state = 38, .external_lex_state = 2}, [74] = {.lex_state = 38, .external_lex_state = 2}, [75] = {.lex_state = 38, .external_lex_state = 2}, [76] = {.lex_state = 38, .external_lex_state = 2}, [77] = {.lex_state = 38, .external_lex_state = 2}, [78] = {.lex_state = 38, .external_lex_state = 2}, [79] = {.lex_state = 38, .external_lex_state = 2}, - [80] = {.lex_state = 38, .external_lex_state = 2}, - [81] = {.lex_state = 38, .external_lex_state = 2}, + [80] = {.lex_state = 740, .external_lex_state = 2}, + [81] = {.lex_state = 740, .external_lex_state = 2}, [82] = {.lex_state = 38, .external_lex_state = 2}, [83] = {.lex_state = 38, .external_lex_state = 2}, [84] = {.lex_state = 38, .external_lex_state = 2}, @@ -54490,7 +54644,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [90] = {.lex_state = 38, .external_lex_state = 2}, [91] = {.lex_state = 38, .external_lex_state = 2}, [92] = {.lex_state = 38, .external_lex_state = 2}, - [93] = {.lex_state = 38, .external_lex_state = 2}, + [93] = {.lex_state = 740, .external_lex_state = 2}, [94] = {.lex_state = 38, .external_lex_state = 2}, [95] = {.lex_state = 38, .external_lex_state = 2}, [96] = {.lex_state = 38, .external_lex_state = 2}, @@ -54498,7 +54652,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [98] = {.lex_state = 38, .external_lex_state = 2}, [99] = {.lex_state = 38, .external_lex_state = 2}, [100] = {.lex_state = 38, .external_lex_state = 2}, - [101] = {.lex_state = 740, .external_lex_state = 2}, + [101] = {.lex_state = 38, .external_lex_state = 2}, [102] = {.lex_state = 38, .external_lex_state = 2}, [103] = {.lex_state = 38, .external_lex_state = 2}, [104] = {.lex_state = 38, .external_lex_state = 2}, @@ -54507,13 +54661,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [107] = {.lex_state = 740, .external_lex_state = 2}, [108] = {.lex_state = 740, .external_lex_state = 2}, [109] = {.lex_state = 740, .external_lex_state = 2}, - [110] = {.lex_state = 38, .external_lex_state = 2}, + [110] = {.lex_state = 740, .external_lex_state = 2}, [111] = {.lex_state = 740, .external_lex_state = 2}, [112] = {.lex_state = 740, .external_lex_state = 2}, [113] = {.lex_state = 740, .external_lex_state = 2}, [114] = {.lex_state = 740, .external_lex_state = 2}, [115] = {.lex_state = 740, .external_lex_state = 2}, - [116] = {.lex_state = 38, .external_lex_state = 2}, + [116] = {.lex_state = 740, .external_lex_state = 2}, [117] = {.lex_state = 740, .external_lex_state = 2}, [118] = {.lex_state = 740, .external_lex_state = 2}, [119] = {.lex_state = 740, .external_lex_state = 2}, @@ -54524,13 +54678,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [124] = {.lex_state = 740, .external_lex_state = 2}, [125] = {.lex_state = 740, .external_lex_state = 2}, [126] = {.lex_state = 740, .external_lex_state = 2}, - [127] = {.lex_state = 740, .external_lex_state = 2}, + [127] = {.lex_state = 38, .external_lex_state = 2}, [128] = {.lex_state = 740, .external_lex_state = 2}, [129] = {.lex_state = 740, .external_lex_state = 2}, [130] = {.lex_state = 740, .external_lex_state = 2}, [131] = {.lex_state = 740, .external_lex_state = 2}, [132] = {.lex_state = 740, .external_lex_state = 2}, - [133] = {.lex_state = 740, .external_lex_state = 2}, + [133] = {.lex_state = 38, .external_lex_state = 2}, [134] = {.lex_state = 740, .external_lex_state = 2}, [135] = {.lex_state = 740, .external_lex_state = 2}, [136] = {.lex_state = 740, .external_lex_state = 2}, @@ -54622,13 +54776,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [222] = {.lex_state = 38, .external_lex_state = 2}, [223] = {.lex_state = 38, .external_lex_state = 2}, [224] = {.lex_state = 38, .external_lex_state = 2}, - [225] = {.lex_state = 722, .external_lex_state = 2}, - [226] = {.lex_state = 740, .external_lex_state = 2}, + [225] = {.lex_state = 41, .external_lex_state = 2}, + [226] = {.lex_state = 38, .external_lex_state = 2}, [227] = {.lex_state = 740, .external_lex_state = 2}, [228] = {.lex_state = 740, .external_lex_state = 2}, - [229] = {.lex_state = 740, .external_lex_state = 2}, - [230] = {.lex_state = 740, .external_lex_state = 2}, - [231] = {.lex_state = 740, .external_lex_state = 2}, + [229] = {.lex_state = 41, .external_lex_state = 2}, + [230] = {.lex_state = 41, .external_lex_state = 2}, + [231] = {.lex_state = 41, .external_lex_state = 2}, [232] = {.lex_state = 41, .external_lex_state = 2}, [233] = {.lex_state = 41, .external_lex_state = 2}, [234] = {.lex_state = 41, .external_lex_state = 2}, @@ -54649,7 +54803,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [249] = {.lex_state = 41, .external_lex_state = 2}, [250] = {.lex_state = 41, .external_lex_state = 2}, [251] = {.lex_state = 41, .external_lex_state = 2}, - [252] = {.lex_state = 41, .external_lex_state = 2}, + [252] = {.lex_state = 740, .external_lex_state = 2}, [253] = {.lex_state = 41, .external_lex_state = 2}, [254] = {.lex_state = 41, .external_lex_state = 2}, [255] = {.lex_state = 41, .external_lex_state = 2}, @@ -54673,13 +54827,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [273] = {.lex_state = 41, .external_lex_state = 2}, [274] = {.lex_state = 41, .external_lex_state = 2}, [275] = {.lex_state = 41, .external_lex_state = 2}, - [276] = {.lex_state = 41, .external_lex_state = 2}, - [277] = {.lex_state = 41, .external_lex_state = 2}, - [278] = {.lex_state = 41, .external_lex_state = 2}, - [279] = {.lex_state = 41, .external_lex_state = 2}, - [280] = {.lex_state = 41, .external_lex_state = 2}, + [276] = {.lex_state = 722, .external_lex_state = 2}, + [277] = {.lex_state = 740, .external_lex_state = 2}, + [278] = {.lex_state = 740, .external_lex_state = 2}, + [279] = {.lex_state = 740, .external_lex_state = 2}, + [280] = {.lex_state = 740, .external_lex_state = 2}, [281] = {.lex_state = 41, .external_lex_state = 2}, - [282] = {.lex_state = 41, .external_lex_state = 2}, + [282] = {.lex_state = 740, .external_lex_state = 2}, [283] = {.lex_state = 41, .external_lex_state = 2}, [284] = {.lex_state = 41, .external_lex_state = 2}, [285] = {.lex_state = 41, .external_lex_state = 2}, @@ -54700,319 +54854,319 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [300] = {.lex_state = 41, .external_lex_state = 2}, [301] = {.lex_state = 41, .external_lex_state = 2}, [302] = {.lex_state = 41, .external_lex_state = 2}, - [303] = {.lex_state = 740, .external_lex_state = 2}, - [304] = {.lex_state = 38, .external_lex_state = 2}, - [305] = {.lex_state = 740, .external_lex_state = 2}, + [303] = {.lex_state = 41, .external_lex_state = 2}, + [304] = {.lex_state = 41, .external_lex_state = 2}, + [305] = {.lex_state = 41, .external_lex_state = 2}, [306] = {.lex_state = 41, .external_lex_state = 2}, [307] = {.lex_state = 740, .external_lex_state = 2}, [308] = {.lex_state = 740, .external_lex_state = 2}, [309] = {.lex_state = 740, .external_lex_state = 2}, - [310] = {.lex_state = 146, .external_lex_state = 2}, + [310] = {.lex_state = 740, .external_lex_state = 2}, [311] = {.lex_state = 740, .external_lex_state = 2}, [312] = {.lex_state = 38, .external_lex_state = 2}, - [313] = {.lex_state = 740, .external_lex_state = 2}, + [313] = {.lex_state = 146, .external_lex_state = 2}, [314] = {.lex_state = 740, .external_lex_state = 2}, [315] = {.lex_state = 41, .external_lex_state = 2}, - [316] = {.lex_state = 147, .external_lex_state = 2}, - [317] = {.lex_state = 146, .external_lex_state = 2}, - [318] = {.lex_state = 228, .external_lex_state = 2}, - [319] = {.lex_state = 228, .external_lex_state = 2}, - [320] = {.lex_state = 740, .external_lex_state = 2}, - [321] = {.lex_state = 740, .external_lex_state = 2}, - [322] = {.lex_state = 147, .external_lex_state = 2}, - [323] = {.lex_state = 144, .external_lex_state = 2}, - [324] = {.lex_state = 123, .external_lex_state = 2}, - [325] = {.lex_state = 41, .external_lex_state = 2}, - [326] = {.lex_state = 740, .external_lex_state = 2}, + [316] = {.lex_state = 228, .external_lex_state = 2}, + [317] = {.lex_state = 123, .external_lex_state = 2}, + [318] = {.lex_state = 740, .external_lex_state = 2}, + [319] = {.lex_state = 125, .external_lex_state = 2}, + [320] = {.lex_state = 146, .external_lex_state = 2}, + [321] = {.lex_state = 41, .external_lex_state = 2}, + [322] = {.lex_state = 228, .external_lex_state = 2}, + [323] = {.lex_state = 228, .external_lex_state = 2}, + [324] = {.lex_state = 41, .external_lex_state = 2}, + [325] = {.lex_state = 228, .external_lex_state = 2}, + [326] = {.lex_state = 144, .external_lex_state = 2}, [327] = {.lex_state = 228, .external_lex_state = 2}, - [328] = {.lex_state = 126, .external_lex_state = 2}, + [328] = {.lex_state = 740, .external_lex_state = 2}, [329] = {.lex_state = 228, .external_lex_state = 2}, - [330] = {.lex_state = 41, .external_lex_state = 2}, - [331] = {.lex_state = 228, .external_lex_state = 2}, - [332] = {.lex_state = 41, .external_lex_state = 2}, - [333] = {.lex_state = 740, .external_lex_state = 2}, - [334] = {.lex_state = 228, .external_lex_state = 2}, - [335] = {.lex_state = 740, .external_lex_state = 2}, - [336] = {.lex_state = 228, .external_lex_state = 2}, - [337] = {.lex_state = 41, .external_lex_state = 2}, - [338] = {.lex_state = 228, .external_lex_state = 2}, + [330] = {.lex_state = 228, .external_lex_state = 2}, + [331] = {.lex_state = 41, .external_lex_state = 2}, + [332] = {.lex_state = 740, .external_lex_state = 2}, + [333] = {.lex_state = 228, .external_lex_state = 2}, + [334] = {.lex_state = 41, .external_lex_state = 2}, + [335] = {.lex_state = 147, .external_lex_state = 2}, + [336] = {.lex_state = 147, .external_lex_state = 2}, + [337] = {.lex_state = 740, .external_lex_state = 2}, + [338] = {.lex_state = 740, .external_lex_state = 2}, [339] = {.lex_state = 147, .external_lex_state = 2}, - [340] = {.lex_state = 128, .external_lex_state = 2}, - [341] = {.lex_state = 145, .external_lex_state = 2}, - [342] = {.lex_state = 147, .external_lex_state = 2}, - [343] = {.lex_state = 128, .external_lex_state = 2}, - [344] = {.lex_state = 147, .external_lex_state = 2}, - [345] = {.lex_state = 144, .external_lex_state = 2}, - [346] = {.lex_state = 147, .external_lex_state = 2}, - [347] = {.lex_state = 129, .external_lex_state = 2}, - [348] = {.lex_state = 145, .external_lex_state = 2}, - [349] = {.lex_state = 111, .external_lex_state = 2}, - [350] = {.lex_state = 114, .external_lex_state = 2}, - [351] = {.lex_state = 156, .external_lex_state = 2}, - [352] = {.lex_state = 129, .external_lex_state = 2}, - [353] = {.lex_state = 129, .external_lex_state = 2}, + [340] = {.lex_state = 147, .external_lex_state = 2}, + [341] = {.lex_state = 147, .external_lex_state = 2}, + [342] = {.lex_state = 127, .external_lex_state = 2}, + [343] = {.lex_state = 147, .external_lex_state = 2}, + [344] = {.lex_state = 113, .external_lex_state = 2}, + [345] = {.lex_state = 145, .external_lex_state = 2}, + [346] = {.lex_state = 127, .external_lex_state = 2}, + [347] = {.lex_state = 111, .external_lex_state = 2}, + [348] = {.lex_state = 128, .external_lex_state = 2}, + [349] = {.lex_state = 145, .external_lex_state = 2}, + [350] = {.lex_state = 144, .external_lex_state = 2}, + [351] = {.lex_state = 115, .external_lex_state = 2}, + [352] = {.lex_state = 156, .external_lex_state = 2}, + [353] = {.lex_state = 126, .external_lex_state = 2}, [354] = {.lex_state = 156, .external_lex_state = 2}, - [355] = {.lex_state = 129, .external_lex_state = 2}, - [356] = {.lex_state = 127, .external_lex_state = 2}, + [355] = {.lex_state = 115, .external_lex_state = 2}, + [356] = {.lex_state = 128, .external_lex_state = 2}, [357] = {.lex_state = 145, .external_lex_state = 2}, - [358] = {.lex_state = 124, .external_lex_state = 2}, - [359] = {.lex_state = 116, .external_lex_state = 2}, - [360] = {.lex_state = 129, .external_lex_state = 2}, - [361] = {.lex_state = 116, .external_lex_state = 2}, - [362] = {.lex_state = 156, .external_lex_state = 2}, - [363] = {.lex_state = 117, .external_lex_state = 2}, + [358] = {.lex_state = 128, .external_lex_state = 2}, + [359] = {.lex_state = 156, .external_lex_state = 2}, + [360] = {.lex_state = 128, .external_lex_state = 2}, + [361] = {.lex_state = 128, .external_lex_state = 2}, + [362] = {.lex_state = 145, .external_lex_state = 2}, + [363] = {.lex_state = 124, .external_lex_state = 2}, [364] = {.lex_state = 145, .external_lex_state = 2}, [365] = {.lex_state = 145, .external_lex_state = 2}, - [366] = {.lex_state = 145, .external_lex_state = 2}, - [367] = {.lex_state = 117, .external_lex_state = 2}, - [368] = {.lex_state = 117, .external_lex_state = 2}, - [369] = {.lex_state = 130, .external_lex_state = 2}, - [370] = {.lex_state = 130, .external_lex_state = 2}, - [371] = {.lex_state = 112, .external_lex_state = 2}, - [372] = {.lex_state = 169, .external_lex_state = 2}, - [373] = {.lex_state = 169, .external_lex_state = 2}, - [374] = {.lex_state = 169, .external_lex_state = 2}, - [375] = {.lex_state = 117, .external_lex_state = 2}, - [376] = {.lex_state = 156, .external_lex_state = 2}, - [377] = {.lex_state = 156, .external_lex_state = 2}, - [378] = {.lex_state = 115, .external_lex_state = 2}, - [379] = {.lex_state = 117, .external_lex_state = 2}, - [380] = {.lex_state = 169, .external_lex_state = 2}, - [381] = {.lex_state = 745, .external_lex_state = 2}, - [382] = {.lex_state = 158, .external_lex_state = 2}, - [383] = {.lex_state = 131, .external_lex_state = 2}, - [384] = {.lex_state = 131, .external_lex_state = 2}, - [385] = {.lex_state = 131, .external_lex_state = 2}, - [386] = {.lex_state = 155, .external_lex_state = 2}, - [387] = {.lex_state = 131, .external_lex_state = 2}, - [388] = {.lex_state = 131, .external_lex_state = 2}, - [389] = {.lex_state = 131, .external_lex_state = 2}, + [366] = {.lex_state = 116, .external_lex_state = 2}, + [367] = {.lex_state = 116, .external_lex_state = 2}, + [368] = {.lex_state = 116, .external_lex_state = 2}, + [369] = {.lex_state = 169, .external_lex_state = 2}, + [370] = {.lex_state = 129, .external_lex_state = 2}, + [371] = {.lex_state = 169, .external_lex_state = 2}, + [372] = {.lex_state = 116, .external_lex_state = 2}, + [373] = {.lex_state = 129, .external_lex_state = 2}, + [374] = {.lex_state = 116, .external_lex_state = 2}, + [375] = {.lex_state = 156, .external_lex_state = 2}, + [376] = {.lex_state = 114, .external_lex_state = 2}, + [377] = {.lex_state = 169, .external_lex_state = 2}, + [378] = {.lex_state = 112, .external_lex_state = 2}, + [379] = {.lex_state = 156, .external_lex_state = 2}, + [380] = {.lex_state = 130, .external_lex_state = 2}, + [381] = {.lex_state = 157, .external_lex_state = 2}, + [382] = {.lex_state = 130, .external_lex_state = 2}, + [383] = {.lex_state = 158, .external_lex_state = 2}, + [384] = {.lex_state = 117, .external_lex_state = 2}, + [385] = {.lex_state = 130, .external_lex_state = 2}, + [386] = {.lex_state = 157, .external_lex_state = 2}, + [387] = {.lex_state = 157, .external_lex_state = 2}, + [388] = {.lex_state = 169, .external_lex_state = 2}, + [389] = {.lex_state = 157, .external_lex_state = 2}, [390] = {.lex_state = 169, .external_lex_state = 2}, - [391] = {.lex_state = 157, .external_lex_state = 2}, - [392] = {.lex_state = 157, .external_lex_state = 2}, - [393] = {.lex_state = 118, .external_lex_state = 2}, - [394] = {.lex_state = 166, .external_lex_state = 2}, - [395] = {.lex_state = 118, .external_lex_state = 2}, - [396] = {.lex_state = 157, .external_lex_state = 2}, + [391] = {.lex_state = 155, .external_lex_state = 2}, + [392] = {.lex_state = 166, .external_lex_state = 2}, + [393] = {.lex_state = 130, .external_lex_state = 2}, + [394] = {.lex_state = 157, .external_lex_state = 2}, + [395] = {.lex_state = 130, .external_lex_state = 2}, + [396] = {.lex_state = 117, .external_lex_state = 2}, [397] = {.lex_state = 157, .external_lex_state = 2}, - [398] = {.lex_state = 157, .external_lex_state = 2}, - [399] = {.lex_state = 157, .external_lex_state = 2}, - [400] = {.lex_state = 156, .external_lex_state = 2}, - [401] = {.lex_state = 163, .external_lex_state = 2}, + [398] = {.lex_state = 130, .external_lex_state = 2}, + [399] = {.lex_state = 163, .external_lex_state = 2}, + [400] = {.lex_state = 163, .external_lex_state = 2}, + [401] = {.lex_state = 164, .external_lex_state = 2}, [402] = {.lex_state = 163, .external_lex_state = 2}, - [403] = {.lex_state = 125, .external_lex_state = 2}, - [404] = {.lex_state = 745, .external_lex_state = 2}, - [405] = {.lex_state = 163, .external_lex_state = 2}, - [406] = {.lex_state = 119, .external_lex_state = 2}, + [403] = {.lex_state = 163, .external_lex_state = 2}, + [404] = {.lex_state = 163, .external_lex_state = 2}, + [405] = {.lex_state = 118, .external_lex_state = 2}, + [406] = {.lex_state = 156, .external_lex_state = 2}, [407] = {.lex_state = 163, .external_lex_state = 2}, - [408] = {.lex_state = 119, .external_lex_state = 2}, - [409] = {.lex_state = 155, .external_lex_state = 2}, - [410] = {.lex_state = 155, .external_lex_state = 2}, + [408] = {.lex_state = 118, .external_lex_state = 2}, + [409] = {.lex_state = 163, .external_lex_state = 2}, + [410] = {.lex_state = 163, .external_lex_state = 2}, [411] = {.lex_state = 163, .external_lex_state = 2}, [412] = {.lex_state = 163, .external_lex_state = 2}, - [413] = {.lex_state = 163, .external_lex_state = 2}, + [413] = {.lex_state = 118, .external_lex_state = 2}, [414] = {.lex_state = 163, .external_lex_state = 2}, - [415] = {.lex_state = 167, .external_lex_state = 2}, - [416] = {.lex_state = 167, .external_lex_state = 2}, + [415] = {.lex_state = 163, .external_lex_state = 2}, + [416] = {.lex_state = 168, .external_lex_state = 2}, [417] = {.lex_state = 163, .external_lex_state = 2}, - [418] = {.lex_state = 156, .external_lex_state = 2}, - [419] = {.lex_state = 120, .external_lex_state = 2}, + [418] = {.lex_state = 163, .external_lex_state = 2}, + [419] = {.lex_state = 163, .external_lex_state = 2}, [420] = {.lex_state = 163, .external_lex_state = 2}, - [421] = {.lex_state = 163, .external_lex_state = 2}, - [422] = {.lex_state = 164, .external_lex_state = 2}, + [421] = {.lex_state = 131, .external_lex_state = 2}, + [422] = {.lex_state = 163, .external_lex_state = 2}, [423] = {.lex_state = 163, .external_lex_state = 2}, - [424] = {.lex_state = 168, .external_lex_state = 2}, - [425] = {.lex_state = 119, .external_lex_state = 2}, - [426] = {.lex_state = 163, .external_lex_state = 2}, - [427] = {.lex_state = 163, .external_lex_state = 2}, - [428] = {.lex_state = 119, .external_lex_state = 2}, - [429] = {.lex_state = 163, .external_lex_state = 2}, - [430] = {.lex_state = 119, .external_lex_state = 2}, - [431] = {.lex_state = 119, .external_lex_state = 2}, - [432] = {.lex_state = 167, .external_lex_state = 2}, - [433] = {.lex_state = 167, .external_lex_state = 2}, - [434] = {.lex_state = 167, .external_lex_state = 2}, + [424] = {.lex_state = 167, .external_lex_state = 2}, + [425] = {.lex_state = 155, .external_lex_state = 2}, + [426] = {.lex_state = 167, .external_lex_state = 2}, + [427] = {.lex_state = 155, .external_lex_state = 2}, + [428] = {.lex_state = 167, .external_lex_state = 2}, + [429] = {.lex_state = 167, .external_lex_state = 2}, + [430] = {.lex_state = 163, .external_lex_state = 2}, + [431] = {.lex_state = 163, .external_lex_state = 2}, + [432] = {.lex_state = 156, .external_lex_state = 2}, + [433] = {.lex_state = 163, .external_lex_state = 2}, + [434] = {.lex_state = 163, .external_lex_state = 2}, [435] = {.lex_state = 167, .external_lex_state = 2}, - [436] = {.lex_state = 163, .external_lex_state = 2}, - [437] = {.lex_state = 163, .external_lex_state = 2}, - [438] = {.lex_state = 163, .external_lex_state = 2}, - [439] = {.lex_state = 745, .external_lex_state = 2}, - [440] = {.lex_state = 179, .external_lex_state = 2}, + [436] = {.lex_state = 745, .external_lex_state = 2}, + [437] = {.lex_state = 167, .external_lex_state = 2}, + [438] = {.lex_state = 118, .external_lex_state = 2}, + [439] = {.lex_state = 118, .external_lex_state = 2}, + [440] = {.lex_state = 164, .external_lex_state = 2}, [441] = {.lex_state = 163, .external_lex_state = 2}, - [442] = {.lex_state = 163, .external_lex_state = 2}, - [443] = {.lex_state = 164, .external_lex_state = 2}, + [442] = {.lex_state = 156, .external_lex_state = 2}, + [443] = {.lex_state = 179, .external_lex_state = 2}, [444] = {.lex_state = 163, .external_lex_state = 2}, [445] = {.lex_state = 163, .external_lex_state = 2}, [446] = {.lex_state = 163, .external_lex_state = 2}, - [447] = {.lex_state = 163, .external_lex_state = 2}, + [447] = {.lex_state = 118, .external_lex_state = 2}, [448] = {.lex_state = 163, .external_lex_state = 2}, [449] = {.lex_state = 163, .external_lex_state = 2}, - [450] = {.lex_state = 163, .external_lex_state = 2}, - [451] = {.lex_state = 163, .external_lex_state = 2}, - [452] = {.lex_state = 156, .external_lex_state = 2}, - [453] = {.lex_state = 176, .external_lex_state = 2}, - [454] = {.lex_state = 176, .external_lex_state = 2}, - [455] = {.lex_state = 165, .external_lex_state = 2}, + [450] = {.lex_state = 120, .external_lex_state = 2}, + [451] = {.lex_state = 165, .external_lex_state = 2}, + [452] = {.lex_state = 176, .external_lex_state = 2}, + [453] = {.lex_state = 121, .external_lex_state = 2}, + [454] = {.lex_state = 165, .external_lex_state = 2}, + [455] = {.lex_state = 121, .external_lex_state = 2}, [456] = {.lex_state = 176, .external_lex_state = 2}, - [457] = {.lex_state = 121, .external_lex_state = 2}, - [458] = {.lex_state = 163, .external_lex_state = 2}, - [459] = {.lex_state = 163, .external_lex_state = 2}, - [460] = {.lex_state = 169, .external_lex_state = 2}, + [457] = {.lex_state = 165, .external_lex_state = 2}, + [458] = {.lex_state = 176, .external_lex_state = 2}, + [459] = {.lex_state = 176, .external_lex_state = 2}, + [460] = {.lex_state = 176, .external_lex_state = 2}, [461] = {.lex_state = 165, .external_lex_state = 2}, [462] = {.lex_state = 176, .external_lex_state = 2}, [463] = {.lex_state = 176, .external_lex_state = 2}, [464] = {.lex_state = 165, .external_lex_state = 2}, - [465] = {.lex_state = 169, .external_lex_state = 2}, - [466] = {.lex_state = 169, .external_lex_state = 2}, + [465] = {.lex_state = 176, .external_lex_state = 2}, + [466] = {.lex_state = 119, .external_lex_state = 2}, [467] = {.lex_state = 176, .external_lex_state = 2}, - [468] = {.lex_state = 165, .external_lex_state = 2}, + [468] = {.lex_state = 176, .external_lex_state = 2}, [469] = {.lex_state = 176, .external_lex_state = 2}, - [470] = {.lex_state = 165, .external_lex_state = 2}, + [470] = {.lex_state = 176, .external_lex_state = 2}, [471] = {.lex_state = 176, .external_lex_state = 2}, - [472] = {.lex_state = 113, .external_lex_state = 2}, - [473] = {.lex_state = 165, .external_lex_state = 2}, + [472] = {.lex_state = 745, .external_lex_state = 2}, + [473] = {.lex_state = 176, .external_lex_state = 2}, [474] = {.lex_state = 176, .external_lex_state = 2}, - [475] = {.lex_state = 165, .external_lex_state = 2}, - [476] = {.lex_state = 121, .external_lex_state = 2}, + [475] = {.lex_state = 176, .external_lex_state = 2}, + [476] = {.lex_state = 176, .external_lex_state = 2}, [477] = {.lex_state = 176, .external_lex_state = 2}, - [478] = {.lex_state = 176, .external_lex_state = 2}, - [479] = {.lex_state = 176, .external_lex_state = 2}, - [480] = {.lex_state = 165, .external_lex_state = 2}, - [481] = {.lex_state = 165, .external_lex_state = 2}, - [482] = {.lex_state = 176, .external_lex_state = 2}, - [483] = {.lex_state = 176, .external_lex_state = 2}, - [484] = {.lex_state = 176, .external_lex_state = 2}, - [485] = {.lex_state = 108, .external_lex_state = 2}, - [486] = {.lex_state = 176, .external_lex_state = 2}, - [487] = {.lex_state = 176, .external_lex_state = 2}, - [488] = {.lex_state = 177, .external_lex_state = 2}, - [489] = {.lex_state = 176, .external_lex_state = 2}, - [490] = {.lex_state = 176, .external_lex_state = 2}, + [478] = {.lex_state = 165, .external_lex_state = 2}, + [479] = {.lex_state = 165, .external_lex_state = 2}, + [480] = {.lex_state = 176, .external_lex_state = 2}, + [481] = {.lex_state = 176, .external_lex_state = 2}, + [482] = {.lex_state = 165, .external_lex_state = 2}, + [483] = {.lex_state = 165, .external_lex_state = 2}, + [484] = {.lex_state = 154, .external_lex_state = 2}, + [485] = {.lex_state = 745, .external_lex_state = 2}, + [486] = {.lex_state = 154, .external_lex_state = 2}, + [487] = {.lex_state = 165, .external_lex_state = 2}, + [488] = {.lex_state = 165, .external_lex_state = 2}, + [489] = {.lex_state = 154, .external_lex_state = 2}, + [490] = {.lex_state = 154, .external_lex_state = 2}, [491] = {.lex_state = 154, .external_lex_state = 2}, [492] = {.lex_state = 154, .external_lex_state = 2}, [493] = {.lex_state = 176, .external_lex_state = 2}, - [494] = {.lex_state = 165, .external_lex_state = 2}, - [495] = {.lex_state = 177, .external_lex_state = 2}, - [496] = {.lex_state = 176, .external_lex_state = 2}, - [497] = {.lex_state = 176, .external_lex_state = 2}, - [498] = {.lex_state = 154, .external_lex_state = 2}, - [499] = {.lex_state = 176, .external_lex_state = 2}, - [500] = {.lex_state = 176, .external_lex_state = 2}, + [494] = {.lex_state = 176, .external_lex_state = 2}, + [495] = {.lex_state = 163, .external_lex_state = 2}, + [496] = {.lex_state = 163, .external_lex_state = 2}, + [497] = {.lex_state = 169, .external_lex_state = 2}, + [498] = {.lex_state = 169, .external_lex_state = 2}, + [499] = {.lex_state = 169, .external_lex_state = 2}, + [500] = {.lex_state = 165, .external_lex_state = 2}, [501] = {.lex_state = 165, .external_lex_state = 2}, - [502] = {.lex_state = 154, .external_lex_state = 2}, - [503] = {.lex_state = 154, .external_lex_state = 2}, - [504] = {.lex_state = 165, .external_lex_state = 2}, - [505] = {.lex_state = 176, .external_lex_state = 2}, + [502] = {.lex_state = 165, .external_lex_state = 2}, + [503] = {.lex_state = 176, .external_lex_state = 2}, + [504] = {.lex_state = 176, .external_lex_state = 2}, + [505] = {.lex_state = 108, .external_lex_state = 2}, [506] = {.lex_state = 176, .external_lex_state = 2}, - [507] = {.lex_state = 154, .external_lex_state = 2}, + [507] = {.lex_state = 177, .external_lex_state = 2}, [508] = {.lex_state = 176, .external_lex_state = 2}, - [509] = {.lex_state = 176, .external_lex_state = 2}, - [510] = {.lex_state = 165, .external_lex_state = 2}, - [511] = {.lex_state = 165, .external_lex_state = 2}, - [512] = {.lex_state = 165, .external_lex_state = 2}, + [509] = {.lex_state = 165, .external_lex_state = 2}, + [510] = {.lex_state = 177, .external_lex_state = 2}, + [511] = {.lex_state = 176, .external_lex_state = 2}, + [512] = {.lex_state = 176, .external_lex_state = 2}, [513] = {.lex_state = 165, .external_lex_state = 2}, - [514] = {.lex_state = 178, .external_lex_state = 2}, - [515] = {.lex_state = 122, .external_lex_state = 2}, + [514] = {.lex_state = 122, .external_lex_state = 2}, + [515] = {.lex_state = 178, .external_lex_state = 2}, [516] = {.lex_state = 178, .external_lex_state = 2}, - [517] = {.lex_state = 155, .external_lex_state = 2}, + [517] = {.lex_state = 178, .external_lex_state = 2}, [518] = {.lex_state = 122, .external_lex_state = 2}, - [519] = {.lex_state = 155, .external_lex_state = 2}, - [520] = {.lex_state = 155, .external_lex_state = 2}, + [519] = {.lex_state = 178, .external_lex_state = 2}, + [520] = {.lex_state = 122, .external_lex_state = 2}, [521] = {.lex_state = 122, .external_lex_state = 2}, - [522] = {.lex_state = 176, .external_lex_state = 2}, - [523] = {.lex_state = 160, .external_lex_state = 2}, - [524] = {.lex_state = 176, .external_lex_state = 2}, - [525] = {.lex_state = 162, .external_lex_state = 2}, - [526] = {.lex_state = 259, .external_lex_state = 2}, - [527] = {.lex_state = 259, .external_lex_state = 2}, - [528] = {.lex_state = 259, .external_lex_state = 2}, - [529] = {.lex_state = 259, .external_lex_state = 2}, - [530] = {.lex_state = 178, .external_lex_state = 2}, - [531] = {.lex_state = 178, .external_lex_state = 2}, - [532] = {.lex_state = 122, .external_lex_state = 2}, - [533] = {.lex_state = 178, .external_lex_state = 2}, - [534] = {.lex_state = 161, .external_lex_state = 2}, - [535] = {.lex_state = 161, .external_lex_state = 2}, - [536] = {.lex_state = 259, .external_lex_state = 2}, - [537] = {.lex_state = 122, .external_lex_state = 2}, + [522] = {.lex_state = 122, .external_lex_state = 2}, + [523] = {.lex_state = 122, .external_lex_state = 2}, + [524] = {.lex_state = 178, .external_lex_state = 2}, + [525] = {.lex_state = 178, .external_lex_state = 2}, + [526] = {.lex_state = 122, .external_lex_state = 2}, + [527] = {.lex_state = 160, .external_lex_state = 2}, + [528] = {.lex_state = 178, .external_lex_state = 2}, + [529] = {.lex_state = 155, .external_lex_state = 2}, + [530] = {.lex_state = 155, .external_lex_state = 2}, + [531] = {.lex_state = 155, .external_lex_state = 2}, + [532] = {.lex_state = 176, .external_lex_state = 2}, + [533] = {.lex_state = 176, .external_lex_state = 2}, + [534] = {.lex_state = 259, .external_lex_state = 2}, + [535] = {.lex_state = 122, .external_lex_state = 2}, + [536] = {.lex_state = 162, .external_lex_state = 2}, + [537] = {.lex_state = 259, .external_lex_state = 2}, [538] = {.lex_state = 122, .external_lex_state = 2}, - [539] = {.lex_state = 178, .external_lex_state = 2}, - [540] = {.lex_state = 161, .external_lex_state = 2}, - [541] = {.lex_state = 161, .external_lex_state = 2}, - [542] = {.lex_state = 178, .external_lex_state = 2}, - [543] = {.lex_state = 161, .external_lex_state = 2}, + [539] = {.lex_state = 259, .external_lex_state = 2}, + [540] = {.lex_state = 259, .external_lex_state = 2}, + [541] = {.lex_state = 122, .external_lex_state = 2}, + [542] = {.lex_state = 122, .external_lex_state = 2}, + [543] = {.lex_state = 122, .external_lex_state = 2}, [544] = {.lex_state = 122, .external_lex_state = 2}, - [545] = {.lex_state = 109, .external_lex_state = 2}, - [546] = {.lex_state = 109, .external_lex_state = 2}, - [547] = {.lex_state = 178, .external_lex_state = 2}, - [548] = {.lex_state = 178, .external_lex_state = 2}, - [549] = {.lex_state = 178, .external_lex_state = 2}, - [550] = {.lex_state = 178, .external_lex_state = 2}, - [551] = {.lex_state = 178, .external_lex_state = 2}, - [552] = {.lex_state = 178, .external_lex_state = 2}, - [553] = {.lex_state = 178, .external_lex_state = 2}, - [554] = {.lex_state = 122, .external_lex_state = 2}, + [545] = {.lex_state = 161, .external_lex_state = 2}, + [546] = {.lex_state = 161, .external_lex_state = 2}, + [547] = {.lex_state = 259, .external_lex_state = 2}, + [548] = {.lex_state = 122, .external_lex_state = 2}, + [549] = {.lex_state = 161, .external_lex_state = 2}, + [550] = {.lex_state = 161, .external_lex_state = 2}, + [551] = {.lex_state = 161, .external_lex_state = 2}, + [552] = {.lex_state = 161, .external_lex_state = 2}, + [553] = {.lex_state = 109, .external_lex_state = 2}, + [554] = {.lex_state = 109, .external_lex_state = 2}, [555] = {.lex_state = 178, .external_lex_state = 2}, - [556] = {.lex_state = 122, .external_lex_state = 2}, - [557] = {.lex_state = 122, .external_lex_state = 2}, - [558] = {.lex_state = 122, .external_lex_state = 2}, - [559] = {.lex_state = 122, .external_lex_state = 2}, - [560] = {.lex_state = 122, .external_lex_state = 2}, - [561] = {.lex_state = 122, .external_lex_state = 2}, + [556] = {.lex_state = 178, .external_lex_state = 2}, + [557] = {.lex_state = 178, .external_lex_state = 2}, + [558] = {.lex_state = 178, .external_lex_state = 2}, + [559] = {.lex_state = 178, .external_lex_state = 2}, + [560] = {.lex_state = 178, .external_lex_state = 2}, + [561] = {.lex_state = 178, .external_lex_state = 2}, [562] = {.lex_state = 178, .external_lex_state = 2}, - [563] = {.lex_state = 122, .external_lex_state = 2}, - [564] = {.lex_state = 161, .external_lex_state = 2}, - [565] = {.lex_state = 258, .external_lex_state = 2}, - [566] = {.lex_state = 159, .external_lex_state = 2}, - [567] = {.lex_state = 110, .external_lex_state = 2}, - [568] = {.lex_state = 258, .external_lex_state = 2}, - [569] = {.lex_state = 163, .external_lex_state = 2}, - [570] = {.lex_state = 210, .external_lex_state = 2}, - [571] = {.lex_state = 159, .external_lex_state = 2}, + [563] = {.lex_state = 178, .external_lex_state = 2}, + [564] = {.lex_state = 122, .external_lex_state = 2}, + [565] = {.lex_state = 210, .external_lex_state = 2}, + [566] = {.lex_state = 174, .external_lex_state = 2}, + [567] = {.lex_state = 163, .external_lex_state = 2}, + [568] = {.lex_state = 174, .external_lex_state = 2}, + [569] = {.lex_state = 159, .external_lex_state = 2}, + [570] = {.lex_state = 122, .external_lex_state = 2}, + [571] = {.lex_state = 210, .external_lex_state = 2}, [572] = {.lex_state = 163, .external_lex_state = 2}, [573] = {.lex_state = 163, .external_lex_state = 2}, - [574] = {.lex_state = 174, .external_lex_state = 2}, - [575] = {.lex_state = 175, .external_lex_state = 2}, - [576] = {.lex_state = 174, .external_lex_state = 2}, - [577] = {.lex_state = 110, .external_lex_state = 2}, - [578] = {.lex_state = 110, .external_lex_state = 2}, + [574] = {.lex_state = 258, .external_lex_state = 2}, + [575] = {.lex_state = 210, .external_lex_state = 2}, + [576] = {.lex_state = 210, .external_lex_state = 2}, + [577] = {.lex_state = 258, .external_lex_state = 2}, + [578] = {.lex_state = 153, .external_lex_state = 2}, [579] = {.lex_state = 210, .external_lex_state = 2}, - [580] = {.lex_state = 110, .external_lex_state = 2}, - [581] = {.lex_state = 110, .external_lex_state = 2}, + [580] = {.lex_state = 258, .external_lex_state = 2}, + [581] = {.lex_state = 159, .external_lex_state = 2}, [582] = {.lex_state = 110, .external_lex_state = 2}, - [583] = {.lex_state = 110, .external_lex_state = 2}, + [583] = {.lex_state = 174, .external_lex_state = 2}, [584] = {.lex_state = 210, .external_lex_state = 2}, - [585] = {.lex_state = 174, .external_lex_state = 2}, + [585] = {.lex_state = 110, .external_lex_state = 2}, [586] = {.lex_state = 110, .external_lex_state = 2}, - [587] = {.lex_state = 210, .external_lex_state = 2}, - [588] = {.lex_state = 258, .external_lex_state = 2}, - [589] = {.lex_state = 210, .external_lex_state = 2}, - [590] = {.lex_state = 173, .external_lex_state = 2}, - [591] = {.lex_state = 210, .external_lex_state = 2}, - [592] = {.lex_state = 258, .external_lex_state = 2}, - [593] = {.lex_state = 110, .external_lex_state = 2}, + [587] = {.lex_state = 110, .external_lex_state = 2}, + [588] = {.lex_state = 110, .external_lex_state = 2}, + [589] = {.lex_state = 110, .external_lex_state = 2}, + [590] = {.lex_state = 110, .external_lex_state = 2}, + [591] = {.lex_state = 174, .external_lex_state = 2}, + [592] = {.lex_state = 174, .external_lex_state = 2}, + [593] = {.lex_state = 153, .external_lex_state = 2}, [594] = {.lex_state = 258, .external_lex_state = 2}, - [595] = {.lex_state = 110, .external_lex_state = 2}, + [595] = {.lex_state = 174, .external_lex_state = 2}, [596] = {.lex_state = 110, .external_lex_state = 2}, - [597] = {.lex_state = 110, .external_lex_state = 2}, - [598] = {.lex_state = 110, .external_lex_state = 2}, - [599] = {.lex_state = 110, .external_lex_state = 2}, + [597] = {.lex_state = 122, .external_lex_state = 2}, + [598] = {.lex_state = 210, .external_lex_state = 2}, + [599] = {.lex_state = 173, .external_lex_state = 2}, [600] = {.lex_state = 210, .external_lex_state = 2}, - [601] = {.lex_state = 122, .external_lex_state = 2}, - [602] = {.lex_state = 153, .external_lex_state = 2}, - [603] = {.lex_state = 153, .external_lex_state = 2}, - [604] = {.lex_state = 122, .external_lex_state = 2}, - [605] = {.lex_state = 174, .external_lex_state = 2}, - [606] = {.lex_state = 174, .external_lex_state = 2}, - [607] = {.lex_state = 174, .external_lex_state = 2}, - [608] = {.lex_state = 210, .external_lex_state = 2}, + [601] = {.lex_state = 175, .external_lex_state = 2}, + [602] = {.lex_state = 110, .external_lex_state = 2}, + [603] = {.lex_state = 258, .external_lex_state = 2}, + [604] = {.lex_state = 110, .external_lex_state = 2}, + [605] = {.lex_state = 110, .external_lex_state = 2}, + [606] = {.lex_state = 110, .external_lex_state = 2}, + [607] = {.lex_state = 110, .external_lex_state = 2}, + [608] = {.lex_state = 110, .external_lex_state = 2}, [609] = {.lex_state = 110, .external_lex_state = 2}, - [610] = {.lex_state = 210, .external_lex_state = 2}, + [610] = {.lex_state = 37, .external_lex_state = 2}, [611] = {.lex_state = 210, .external_lex_state = 2}, [612] = {.lex_state = 210, .external_lex_state = 2}, [613] = {.lex_state = 210, .external_lex_state = 2}, [614] = {.lex_state = 210, .external_lex_state = 2}, - [615] = {.lex_state = 176, .external_lex_state = 2}, + [615] = {.lex_state = 210, .external_lex_state = 2}, [616] = {.lex_state = 210, .external_lex_state = 2}, [617] = {.lex_state = 210, .external_lex_state = 2}, [618] = {.lex_state = 210, .external_lex_state = 2}, @@ -55020,13 +55174,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [620] = {.lex_state = 210, .external_lex_state = 2}, [621] = {.lex_state = 210, .external_lex_state = 2}, [622] = {.lex_state = 210, .external_lex_state = 2}, - [623] = {.lex_state = 210, .external_lex_state = 2}, + [623] = {.lex_state = 176, .external_lex_state = 2}, [624] = {.lex_state = 210, .external_lex_state = 2}, [625] = {.lex_state = 210, .external_lex_state = 2}, [626] = {.lex_state = 210, .external_lex_state = 2}, [627] = {.lex_state = 210, .external_lex_state = 2}, [628] = {.lex_state = 210, .external_lex_state = 2}, - [629] = {.lex_state = 210, .external_lex_state = 2}, + [629] = {.lex_state = 37, .external_lex_state = 2}, [630] = {.lex_state = 210, .external_lex_state = 2}, [631] = {.lex_state = 210, .external_lex_state = 2}, [632] = {.lex_state = 210, .external_lex_state = 2}, @@ -55039,32 +55193,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [639] = {.lex_state = 210, .external_lex_state = 2}, [640] = {.lex_state = 210, .external_lex_state = 2}, [641] = {.lex_state = 210, .external_lex_state = 2}, - [642] = {.lex_state = 171, .external_lex_state = 2}, + [642] = {.lex_state = 210, .external_lex_state = 2}, [643] = {.lex_state = 210, .external_lex_state = 2}, - [644] = {.lex_state = 37, .external_lex_state = 2}, + [644] = {.lex_state = 210, .external_lex_state = 2}, [645] = {.lex_state = 210, .external_lex_state = 2}, - [646] = {.lex_state = 210, .external_lex_state = 2}, + [646] = {.lex_state = 37, .external_lex_state = 2}, [647] = {.lex_state = 210, .external_lex_state = 2}, [648] = {.lex_state = 210, .external_lex_state = 2}, [649] = {.lex_state = 210, .external_lex_state = 2}, - [650] = {.lex_state = 210, .external_lex_state = 2}, - [651] = {.lex_state = 37, .external_lex_state = 2}, - [652] = {.lex_state = 110, .external_lex_state = 2}, + [650] = {.lex_state = 176, .external_lex_state = 2}, + [651] = {.lex_state = 176, .external_lex_state = 2}, + [652] = {.lex_state = 210, .external_lex_state = 2}, [653] = {.lex_state = 210, .external_lex_state = 2}, - [654] = {.lex_state = 176, .external_lex_state = 2}, + [654] = {.lex_state = 210, .external_lex_state = 2}, [655] = {.lex_state = 210, .external_lex_state = 2}, [656] = {.lex_state = 210, .external_lex_state = 2}, [657] = {.lex_state = 210, .external_lex_state = 2}, [658] = {.lex_state = 210, .external_lex_state = 2}, - [659] = {.lex_state = 110, .external_lex_state = 2}, + [659] = {.lex_state = 210, .external_lex_state = 2}, [660] = {.lex_state = 210, .external_lex_state = 2}, [661] = {.lex_state = 210, .external_lex_state = 2}, [662] = {.lex_state = 210, .external_lex_state = 2}, [663] = {.lex_state = 210, .external_lex_state = 2}, [664] = {.lex_state = 210, .external_lex_state = 2}, [665] = {.lex_state = 210, .external_lex_state = 2}, - [666] = {.lex_state = 37, .external_lex_state = 2}, - [667] = {.lex_state = 210, .external_lex_state = 2}, + [666] = {.lex_state = 210, .external_lex_state = 2}, + [667] = {.lex_state = 171, .external_lex_state = 2}, [668] = {.lex_state = 210, .external_lex_state = 2}, [669] = {.lex_state = 210, .external_lex_state = 2}, [670] = {.lex_state = 210, .external_lex_state = 2}, @@ -55074,24 +55228,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [674] = {.lex_state = 210, .external_lex_state = 2}, [675] = {.lex_state = 210, .external_lex_state = 2}, [676] = {.lex_state = 210, .external_lex_state = 2}, - [677] = {.lex_state = 210, .external_lex_state = 2}, + [677] = {.lex_state = 110, .external_lex_state = 2}, [678] = {.lex_state = 210, .external_lex_state = 2}, - [679] = {.lex_state = 210, .external_lex_state = 2}, + [679] = {.lex_state = 171, .external_lex_state = 2}, [680] = {.lex_state = 210, .external_lex_state = 2}, [681] = {.lex_state = 210, .external_lex_state = 2}, [682] = {.lex_state = 210, .external_lex_state = 2}, [683] = {.lex_state = 210, .external_lex_state = 2}, [684] = {.lex_state = 210, .external_lex_state = 2}, - [685] = {.lex_state = 210, .external_lex_state = 2}, + [685] = {.lex_state = 110, .external_lex_state = 2}, [686] = {.lex_state = 210, .external_lex_state = 2}, [687] = {.lex_state = 210, .external_lex_state = 2}, [688] = {.lex_state = 210, .external_lex_state = 2}, - [689] = {.lex_state = 176, .external_lex_state = 2}, + [689] = {.lex_state = 210, .external_lex_state = 2}, [690] = {.lex_state = 210, .external_lex_state = 2}, [691] = {.lex_state = 210, .external_lex_state = 2}, [692] = {.lex_state = 210, .external_lex_state = 2}, [693] = {.lex_state = 210, .external_lex_state = 2}, - [694] = {.lex_state = 171, .external_lex_state = 2}, + [694] = {.lex_state = 210, .external_lex_state = 2}, [695] = {.lex_state = 37, .external_lex_state = 2}, [696] = {.lex_state = 37, .external_lex_state = 2}, [697] = {.lex_state = 37, .external_lex_state = 2}, @@ -55169,1066 +55323,1066 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [769] = {.lex_state = 37, .external_lex_state = 2}, [770] = {.lex_state = 37, .external_lex_state = 2}, [771] = {.lex_state = 742, .external_lex_state = 2}, - [772] = {.lex_state = 742, .external_lex_state = 2}, - [773] = {.lex_state = 46, .external_lex_state = 2}, + [772] = {.lex_state = 44, .external_lex_state = 2}, + [773] = {.lex_state = 44, .external_lex_state = 2}, [774] = {.lex_state = 742, .external_lex_state = 2}, - [775] = {.lex_state = 46, .external_lex_state = 2}, - [776] = {.lex_state = 742, .external_lex_state = 2}, + [775] = {.lex_state = 742, .external_lex_state = 2}, + [776] = {.lex_state = 1798}, [777] = {.lex_state = 742, .external_lex_state = 2}, - [778] = {.lex_state = 751, .external_lex_state = 2}, - [779] = {.lex_state = 751, .external_lex_state = 2}, + [778] = {.lex_state = 1801}, + [779] = {.lex_state = 742, .external_lex_state = 2}, [780] = {.lex_state = 751, .external_lex_state = 2}, [781] = {.lex_state = 751, .external_lex_state = 2}, - [782] = {.lex_state = 751, .external_lex_state = 2}, - [783] = {.lex_state = 751, .external_lex_state = 2}, - [784] = {.lex_state = 751, .external_lex_state = 2}, + [782] = {.lex_state = 1824}, + [783] = {.lex_state = 1812}, + [784] = {.lex_state = 742, .external_lex_state = 2}, [785] = {.lex_state = 751, .external_lex_state = 2}, - [786] = {.lex_state = 751, .external_lex_state = 2}, - [787] = {.lex_state = 1798}, - [788] = {.lex_state = 751, .external_lex_state = 2}, - [789] = {.lex_state = 1801}, + [786] = {.lex_state = 1808}, + [787] = {.lex_state = 1802}, + [788] = {.lex_state = 742, .external_lex_state = 2}, + [789] = {.lex_state = 1948}, [790] = {.lex_state = 751, .external_lex_state = 2}, [791] = {.lex_state = 751, .external_lex_state = 2}, - [792] = {.lex_state = 1824}, - [793] = {.lex_state = 751, .external_lex_state = 2}, - [794] = {.lex_state = 742, .external_lex_state = 2}, - [795] = {.lex_state = 742, .external_lex_state = 2}, - [796] = {.lex_state = 742, .external_lex_state = 2}, - [797] = {.lex_state = 1954}, - [798] = {.lex_state = 1799}, - [799] = {.lex_state = 1799}, + [792] = {.lex_state = 751, .external_lex_state = 2}, + [793] = {.lex_state = 742, .external_lex_state = 2}, + [794] = {.lex_state = 751, .external_lex_state = 2}, + [795] = {.lex_state = 1954}, + [796] = {.lex_state = 1799}, + [797] = {.lex_state = 742, .external_lex_state = 2}, + [798] = {.lex_state = 751, .external_lex_state = 2}, + [799] = {.lex_state = 751, .external_lex_state = 2}, [800] = {.lex_state = 751, .external_lex_state = 2}, - [801] = {.lex_state = 742, .external_lex_state = 2}, - [802] = {.lex_state = 1812}, - [803] = {.lex_state = 1808}, - [804] = {.lex_state = 1802}, - [805] = {.lex_state = 1948}, - [806] = {.lex_state = 751, .external_lex_state = 2}, - [807] = {.lex_state = 1950}, - [808] = {.lex_state = 1814}, - [809] = {.lex_state = 1948}, - [810] = {.lex_state = 1800}, - [811] = {.lex_state = 1950}, - [812] = {.lex_state = 1800}, - [813] = {.lex_state = 1954}, + [801] = {.lex_state = 1799}, + [802] = {.lex_state = 1800}, + [803] = {.lex_state = 1800}, + [804] = {.lex_state = 1800}, + [805] = {.lex_state = 1804}, + [806] = {.lex_state = 1954}, + [807] = {.lex_state = 1804}, + [808] = {.lex_state = 1948}, + [809] = {.lex_state = 751, .external_lex_state = 2}, + [810] = {.lex_state = 751, .external_lex_state = 2}, + [811] = {.lex_state = 1814}, + [812] = {.lex_state = 751, .external_lex_state = 2}, + [813] = {.lex_state = 751, .external_lex_state = 2}, [814] = {.lex_state = 1800}, - [815] = {.lex_state = 1800}, - [816] = {.lex_state = 1800}, - [817] = {.lex_state = 1814}, - [818] = {.lex_state = 1804}, - [819] = {.lex_state = 1804}, - [820] = {.lex_state = 1816}, + [815] = {.lex_state = 1814}, + [816] = {.lex_state = 751, .external_lex_state = 2}, + [817] = {.lex_state = 1950}, + [818] = {.lex_state = 1800}, + [819] = {.lex_state = 1950}, + [820] = {.lex_state = 1806}, [821] = {.lex_state = 1950}, [822] = {.lex_state = 1952}, - [823] = {.lex_state = 1816}, - [824] = {.lex_state = 1952}, - [825] = {.lex_state = 1816}, - [826] = {.lex_state = 1952}, - [827] = {.lex_state = 1816}, - [828] = {.lex_state = 1950}, - [829] = {.lex_state = 1806}, - [830] = {.lex_state = 1818}, - [831] = {.lex_state = 1826}, - [832] = {.lex_state = 1806}, - [833] = {.lex_state = 1806}, - [834] = {.lex_state = 1952}, + [823] = {.lex_state = 1806}, + [824] = {.lex_state = 1806}, + [825] = {.lex_state = 1952}, + [826] = {.lex_state = 1806}, + [827] = {.lex_state = 1950}, + [828] = {.lex_state = 1816}, + [829] = {.lex_state = 1826}, + [830] = {.lex_state = 1952}, + [831] = {.lex_state = 1818}, + [832] = {.lex_state = 1952}, + [833] = {.lex_state = 1816}, + [834] = {.lex_state = 1816}, [835] = {.lex_state = 1816}, - [836] = {.lex_state = 1806}, - [837] = {.lex_state = 1952}, - [838] = {.lex_state = 1806}, + [836] = {.lex_state = 1952}, + [837] = {.lex_state = 1806}, + [838] = {.lex_state = 1816}, [839] = {.lex_state = 1952}, - [840] = {.lex_state = 1820}, + [840] = {.lex_state = 1952}, [841] = {.lex_state = 1952}, [842] = {.lex_state = 1952}, [843] = {.lex_state = 1820}, - [844] = {.lex_state = 1952}, + [844] = {.lex_state = 1820}, [845] = {.lex_state = 1952}, - [846] = {.lex_state = 46, .external_lex_state = 2}, + [846] = {.lex_state = 44, .external_lex_state = 2}, [847] = {.lex_state = 1822}, - [848] = {.lex_state = 46, .external_lex_state = 2}, - [849] = {.lex_state = 46, .external_lex_state = 2}, - [850] = {.lex_state = 46, .external_lex_state = 2}, - [851] = {.lex_state = 46, .external_lex_state = 2}, - [852] = {.lex_state = 46, .external_lex_state = 2}, - [853] = {.lex_state = 46, .external_lex_state = 2}, - [854] = {.lex_state = 46, .external_lex_state = 2}, - [855] = {.lex_state = 46, .external_lex_state = 2}, - [856] = {.lex_state = 46, .external_lex_state = 2}, - [857] = {.lex_state = 46, .external_lex_state = 2}, - [858] = {.lex_state = 46, .external_lex_state = 2}, - [859] = {.lex_state = 46, .external_lex_state = 2}, - [860] = {.lex_state = 46, .external_lex_state = 2}, - [861] = {.lex_state = 1822}, - [862] = {.lex_state = 46, .external_lex_state = 2}, - [863] = {.lex_state = 46, .external_lex_state = 2}, + [848] = {.lex_state = 44, .external_lex_state = 2}, + [849] = {.lex_state = 44, .external_lex_state = 2}, + [850] = {.lex_state = 1822}, + [851] = {.lex_state = 44, .external_lex_state = 2}, + [852] = {.lex_state = 44, .external_lex_state = 2}, + [853] = {.lex_state = 44, .external_lex_state = 2}, + [854] = {.lex_state = 44, .external_lex_state = 2}, + [855] = {.lex_state = 44, .external_lex_state = 2}, + [856] = {.lex_state = 44, .external_lex_state = 2}, + [857] = {.lex_state = 1822}, + [858] = {.lex_state = 44, .external_lex_state = 2}, + [859] = {.lex_state = 44, .external_lex_state = 2}, + [860] = {.lex_state = 44, .external_lex_state = 2}, + [861] = {.lex_state = 44, .external_lex_state = 2}, + [862] = {.lex_state = 44, .external_lex_state = 2}, + [863] = {.lex_state = 44, .external_lex_state = 2}, [864] = {.lex_state = 1822}, - [865] = {.lex_state = 46, .external_lex_state = 2}, - [866] = {.lex_state = 46, .external_lex_state = 2}, - [867] = {.lex_state = 46, .external_lex_state = 2}, - [868] = {.lex_state = 46, .external_lex_state = 2}, - [869] = {.lex_state = 1822}, - [870] = {.lex_state = 46, .external_lex_state = 2}, - [871] = {.lex_state = 1822}, - [872] = {.lex_state = 46, .external_lex_state = 2}, - [873] = {.lex_state = 46, .external_lex_state = 2}, - [874] = {.lex_state = 1810}, - [875] = {.lex_state = 1810}, - [876] = {.lex_state = 1828}, + [865] = {.lex_state = 44, .external_lex_state = 2}, + [866] = {.lex_state = 44, .external_lex_state = 2}, + [867] = {.lex_state = 44, .external_lex_state = 2}, + [868] = {.lex_state = 44, .external_lex_state = 2}, + [869] = {.lex_state = 44, .external_lex_state = 2}, + [870] = {.lex_state = 1822}, + [871] = {.lex_state = 44, .external_lex_state = 2}, + [872] = {.lex_state = 44, .external_lex_state = 2}, + [873] = {.lex_state = 44, .external_lex_state = 2}, + [874] = {.lex_state = 1956}, + [875] = {.lex_state = 1828}, + [876] = {.lex_state = 1956}, [877] = {.lex_state = 1828}, - [878] = {.lex_state = 1828}, - [879] = {.lex_state = 1956}, - [880] = {.lex_state = 1956}, + [878] = {.lex_state = 1810}, + [879] = {.lex_state = 1810}, + [880] = {.lex_state = 1828}, [881] = {.lex_state = 1828}, - [882] = {.lex_state = 46, .external_lex_state = 2}, - [883] = {.lex_state = 46, .external_lex_state = 2}, - [884] = {.lex_state = 1956}, - [885] = {.lex_state = 46, .external_lex_state = 2}, - [886] = {.lex_state = 46, .external_lex_state = 2}, - [887] = {.lex_state = 46, .external_lex_state = 2}, - [888] = {.lex_state = 46, .external_lex_state = 2}, - [889] = {.lex_state = 1956}, - [890] = {.lex_state = 46, .external_lex_state = 2}, - [891] = {.lex_state = 46, .external_lex_state = 2}, - [892] = {.lex_state = 46, .external_lex_state = 2}, - [893] = {.lex_state = 46, .external_lex_state = 2}, - [894] = {.lex_state = 46, .external_lex_state = 2}, - [895] = {.lex_state = 46, .external_lex_state = 2}, - [896] = {.lex_state = 46, .external_lex_state = 2}, - [897] = {.lex_state = 46, .external_lex_state = 2}, - [898] = {.lex_state = 46, .external_lex_state = 2}, - [899] = {.lex_state = 46, .external_lex_state = 2}, - [900] = {.lex_state = 46, .external_lex_state = 2}, - [901] = {.lex_state = 46, .external_lex_state = 2}, - [902] = {.lex_state = 46, .external_lex_state = 2}, - [903] = {.lex_state = 46, .external_lex_state = 2}, + [882] = {.lex_state = 1956}, + [883] = {.lex_state = 44, .external_lex_state = 2}, + [884] = {.lex_state = 44, .external_lex_state = 2}, + [885] = {.lex_state = 44, .external_lex_state = 2}, + [886] = {.lex_state = 44, .external_lex_state = 2}, + [887] = {.lex_state = 44, .external_lex_state = 2}, + [888] = {.lex_state = 1956}, + [889] = {.lex_state = 44, .external_lex_state = 2}, + [890] = {.lex_state = 44, .external_lex_state = 2}, + [891] = {.lex_state = 44, .external_lex_state = 2}, + [892] = {.lex_state = 44, .external_lex_state = 2}, + [893] = {.lex_state = 44, .external_lex_state = 2}, + [894] = {.lex_state = 44, .external_lex_state = 2}, + [895] = {.lex_state = 44, .external_lex_state = 2}, + [896] = {.lex_state = 44, .external_lex_state = 2}, + [897] = {.lex_state = 44, .external_lex_state = 2}, + [898] = {.lex_state = 44, .external_lex_state = 2}, + [899] = {.lex_state = 44, .external_lex_state = 2}, + [900] = {.lex_state = 44, .external_lex_state = 2}, + [901] = {.lex_state = 44, .external_lex_state = 2}, + [902] = {.lex_state = 44, .external_lex_state = 2}, + [903] = {.lex_state = 44, .external_lex_state = 2}, [904] = {.lex_state = 1830}, [905] = {.lex_state = 1830}, - [906] = {.lex_state = 46, .external_lex_state = 2}, - [907] = {.lex_state = 46, .external_lex_state = 2}, - [908] = {.lex_state = 46, .external_lex_state = 2}, - [909] = {.lex_state = 45, .external_lex_state = 2}, - [910] = {.lex_state = 45, .external_lex_state = 2}, - [911] = {.lex_state = 45, .external_lex_state = 2}, - [912] = {.lex_state = 45, .external_lex_state = 2}, - [913] = {.lex_state = 45, .external_lex_state = 2}, - [914] = {.lex_state = 45, .external_lex_state = 2}, - [915] = {.lex_state = 45, .external_lex_state = 2}, - [916] = {.lex_state = 45, .external_lex_state = 2}, - [917] = {.lex_state = 45, .external_lex_state = 2}, - [918] = {.lex_state = 45, .external_lex_state = 2}, - [919] = {.lex_state = 45, .external_lex_state = 2}, - [920] = {.lex_state = 45, .external_lex_state = 2}, - [921] = {.lex_state = 45, .external_lex_state = 2}, - [922] = {.lex_state = 45, .external_lex_state = 2}, - [923] = {.lex_state = 45, .external_lex_state = 2}, - [924] = {.lex_state = 45, .external_lex_state = 2}, - [925] = {.lex_state = 45, .external_lex_state = 2}, - [926] = {.lex_state = 45, .external_lex_state = 2}, - [927] = {.lex_state = 45, .external_lex_state = 2}, - [928] = {.lex_state = 45, .external_lex_state = 2}, - [929] = {.lex_state = 45, .external_lex_state = 2}, - [930] = {.lex_state = 45, .external_lex_state = 2}, - [931] = {.lex_state = 45, .external_lex_state = 2}, - [932] = {.lex_state = 45, .external_lex_state = 2}, - [933] = {.lex_state = 45, .external_lex_state = 2}, - [934] = {.lex_state = 45, .external_lex_state = 2}, - [935] = {.lex_state = 45, .external_lex_state = 2}, - [936] = {.lex_state = 45, .external_lex_state = 2}, - [937] = {.lex_state = 45, .external_lex_state = 2}, - [938] = {.lex_state = 45, .external_lex_state = 2}, - [939] = {.lex_state = 45, .external_lex_state = 2}, - [940] = {.lex_state = 45, .external_lex_state = 2}, - [941] = {.lex_state = 45, .external_lex_state = 2}, - [942] = {.lex_state = 45, .external_lex_state = 2}, - [943] = {.lex_state = 45, .external_lex_state = 2}, - [944] = {.lex_state = 45, .external_lex_state = 2}, - [945] = {.lex_state = 45, .external_lex_state = 2}, - [946] = {.lex_state = 45, .external_lex_state = 2}, - [947] = {.lex_state = 45, .external_lex_state = 2}, - [948] = {.lex_state = 45, .external_lex_state = 2}, - [949] = {.lex_state = 45, .external_lex_state = 2}, - [950] = {.lex_state = 45, .external_lex_state = 2}, - [951] = {.lex_state = 45, .external_lex_state = 2}, - [952] = {.lex_state = 45, .external_lex_state = 2}, - [953] = {.lex_state = 45, .external_lex_state = 2}, - [954] = {.lex_state = 45, .external_lex_state = 2}, - [955] = {.lex_state = 45, .external_lex_state = 2}, - [956] = {.lex_state = 45, .external_lex_state = 2}, - [957] = {.lex_state = 45, .external_lex_state = 2}, - [958] = {.lex_state = 45, .external_lex_state = 2}, - [959] = {.lex_state = 45, .external_lex_state = 2}, - [960] = {.lex_state = 45, .external_lex_state = 2}, - [961] = {.lex_state = 45, .external_lex_state = 2}, - [962] = {.lex_state = 45, .external_lex_state = 2}, - [963] = {.lex_state = 45, .external_lex_state = 2}, - [964] = {.lex_state = 45, .external_lex_state = 2}, - [965] = {.lex_state = 45, .external_lex_state = 2}, - [966] = {.lex_state = 45, .external_lex_state = 2}, - [967] = {.lex_state = 44, .external_lex_state = 2}, - [968] = {.lex_state = 45, .external_lex_state = 2}, - [969] = {.lex_state = 45, .external_lex_state = 2}, - [970] = {.lex_state = 45, .external_lex_state = 2}, - [971] = {.lex_state = 45, .external_lex_state = 2}, - [972] = {.lex_state = 45, .external_lex_state = 2}, - [973] = {.lex_state = 45, .external_lex_state = 2}, - [974] = {.lex_state = 45, .external_lex_state = 2}, - [975] = {.lex_state = 45, .external_lex_state = 2}, - [976] = {.lex_state = 45, .external_lex_state = 2}, - [977] = {.lex_state = 45, .external_lex_state = 2}, - [978] = {.lex_state = 45, .external_lex_state = 2}, - [979] = {.lex_state = 45, .external_lex_state = 2}, - [980] = {.lex_state = 45, .external_lex_state = 2}, - [981] = {.lex_state = 45, .external_lex_state = 2}, - [982] = {.lex_state = 45, .external_lex_state = 2}, - [983] = {.lex_state = 45, .external_lex_state = 2}, - [984] = {.lex_state = 45, .external_lex_state = 2}, - [985] = {.lex_state = 45, .external_lex_state = 2}, - [986] = {.lex_state = 45, .external_lex_state = 2}, - [987] = {.lex_state = 45, .external_lex_state = 2}, - [988] = {.lex_state = 45, .external_lex_state = 2}, - [989] = {.lex_state = 45, .external_lex_state = 2}, - [990] = {.lex_state = 45, .external_lex_state = 2}, - [991] = {.lex_state = 45, .external_lex_state = 2}, - [992] = {.lex_state = 45, .external_lex_state = 2}, - [993] = {.lex_state = 45, .external_lex_state = 2}, - [994] = {.lex_state = 45, .external_lex_state = 2}, - [995] = {.lex_state = 45, .external_lex_state = 2}, - [996] = {.lex_state = 45, .external_lex_state = 2}, - [997] = {.lex_state = 45, .external_lex_state = 2}, - [998] = {.lex_state = 45, .external_lex_state = 2}, - [999] = {.lex_state = 45, .external_lex_state = 2}, - [1000] = {.lex_state = 45, .external_lex_state = 2}, - [1001] = {.lex_state = 45, .external_lex_state = 2}, - [1002] = {.lex_state = 45, .external_lex_state = 2}, - [1003] = {.lex_state = 45, .external_lex_state = 2}, - [1004] = {.lex_state = 45, .external_lex_state = 2}, - [1005] = {.lex_state = 45, .external_lex_state = 2}, - [1006] = {.lex_state = 45, .external_lex_state = 2}, - [1007] = {.lex_state = 45, .external_lex_state = 2}, - [1008] = {.lex_state = 45, .external_lex_state = 2}, - [1009] = {.lex_state = 45, .external_lex_state = 2}, - [1010] = {.lex_state = 45, .external_lex_state = 2}, - [1011] = {.lex_state = 45, .external_lex_state = 2}, - [1012] = {.lex_state = 45, .external_lex_state = 2}, - [1013] = {.lex_state = 45, .external_lex_state = 2}, - [1014] = {.lex_state = 45, .external_lex_state = 2}, - [1015] = {.lex_state = 45, .external_lex_state = 2}, - [1016] = {.lex_state = 45, .external_lex_state = 2}, - [1017] = {.lex_state = 45, .external_lex_state = 2}, - [1018] = {.lex_state = 45, .external_lex_state = 2}, - [1019] = {.lex_state = 45, .external_lex_state = 2}, - [1020] = {.lex_state = 45, .external_lex_state = 2}, - [1021] = {.lex_state = 45, .external_lex_state = 2}, - [1022] = {.lex_state = 45, .external_lex_state = 2}, - [1023] = {.lex_state = 45, .external_lex_state = 2}, - [1024] = {.lex_state = 45, .external_lex_state = 2}, - [1025] = {.lex_state = 45, .external_lex_state = 2}, - [1026] = {.lex_state = 45, .external_lex_state = 2}, - [1027] = {.lex_state = 45, .external_lex_state = 2}, - [1028] = {.lex_state = 45, .external_lex_state = 2}, - [1029] = {.lex_state = 45, .external_lex_state = 2}, - [1030] = {.lex_state = 45, .external_lex_state = 2}, - [1031] = {.lex_state = 45, .external_lex_state = 2}, - [1032] = {.lex_state = 45, .external_lex_state = 2}, - [1033] = {.lex_state = 45, .external_lex_state = 2}, - [1034] = {.lex_state = 45, .external_lex_state = 2}, - [1035] = {.lex_state = 45, .external_lex_state = 2}, - [1036] = {.lex_state = 45, .external_lex_state = 2}, - [1037] = {.lex_state = 45, .external_lex_state = 2}, - [1038] = {.lex_state = 45, .external_lex_state = 2}, - [1039] = {.lex_state = 45, .external_lex_state = 2}, - [1040] = {.lex_state = 45, .external_lex_state = 2}, - [1041] = {.lex_state = 45, .external_lex_state = 2}, - [1042] = {.lex_state = 45, .external_lex_state = 2}, - [1043] = {.lex_state = 45, .external_lex_state = 2}, - [1044] = {.lex_state = 45, .external_lex_state = 2}, - [1045] = {.lex_state = 45, .external_lex_state = 2}, - [1046] = {.lex_state = 45, .external_lex_state = 2}, - [1047] = {.lex_state = 45, .external_lex_state = 2}, - [1048] = {.lex_state = 45, .external_lex_state = 2}, - [1049] = {.lex_state = 45, .external_lex_state = 2}, - [1050] = {.lex_state = 45, .external_lex_state = 2}, - [1051] = {.lex_state = 45, .external_lex_state = 2}, - [1052] = {.lex_state = 45, .external_lex_state = 2}, - [1053] = {.lex_state = 45, .external_lex_state = 2}, - [1054] = {.lex_state = 45, .external_lex_state = 2}, - [1055] = {.lex_state = 45, .external_lex_state = 2}, - [1056] = {.lex_state = 45, .external_lex_state = 2}, - [1057] = {.lex_state = 45, .external_lex_state = 2}, - [1058] = {.lex_state = 45, .external_lex_state = 2}, - [1059] = {.lex_state = 45, .external_lex_state = 2}, - [1060] = {.lex_state = 45, .external_lex_state = 2}, - [1061] = {.lex_state = 45, .external_lex_state = 2}, - [1062] = {.lex_state = 45, .external_lex_state = 2}, - [1063] = {.lex_state = 45, .external_lex_state = 2}, - [1064] = {.lex_state = 45, .external_lex_state = 2}, - [1065] = {.lex_state = 45, .external_lex_state = 2}, + [906] = {.lex_state = 44, .external_lex_state = 2}, + [907] = {.lex_state = 44, .external_lex_state = 2}, + [908] = {.lex_state = 44, .external_lex_state = 2}, + [909] = {.lex_state = 43, .external_lex_state = 2}, + [910] = {.lex_state = 43, .external_lex_state = 2}, + [911] = {.lex_state = 43, .external_lex_state = 2}, + [912] = {.lex_state = 43, .external_lex_state = 2}, + [913] = {.lex_state = 43, .external_lex_state = 2}, + [914] = {.lex_state = 43, .external_lex_state = 2}, + [915] = {.lex_state = 43, .external_lex_state = 2}, + [916] = {.lex_state = 43, .external_lex_state = 2}, + [917] = {.lex_state = 43, .external_lex_state = 2}, + [918] = {.lex_state = 43, .external_lex_state = 2}, + [919] = {.lex_state = 43, .external_lex_state = 2}, + [920] = {.lex_state = 43, .external_lex_state = 2}, + [921] = {.lex_state = 43, .external_lex_state = 2}, + [922] = {.lex_state = 43, .external_lex_state = 2}, + [923] = {.lex_state = 43, .external_lex_state = 2}, + [924] = {.lex_state = 43, .external_lex_state = 2}, + [925] = {.lex_state = 43, .external_lex_state = 2}, + [926] = {.lex_state = 43, .external_lex_state = 2}, + [927] = {.lex_state = 43, .external_lex_state = 2}, + [928] = {.lex_state = 43, .external_lex_state = 2}, + [929] = {.lex_state = 43, .external_lex_state = 2}, + [930] = {.lex_state = 43, .external_lex_state = 2}, + [931] = {.lex_state = 43, .external_lex_state = 2}, + [932] = {.lex_state = 43, .external_lex_state = 2}, + [933] = {.lex_state = 43, .external_lex_state = 2}, + [934] = {.lex_state = 43, .external_lex_state = 2}, + [935] = {.lex_state = 43, .external_lex_state = 2}, + [936] = {.lex_state = 43, .external_lex_state = 2}, + [937] = {.lex_state = 43, .external_lex_state = 2}, + [938] = {.lex_state = 43, .external_lex_state = 2}, + [939] = {.lex_state = 43, .external_lex_state = 2}, + [940] = {.lex_state = 43, .external_lex_state = 2}, + [941] = {.lex_state = 43, .external_lex_state = 2}, + [942] = {.lex_state = 43, .external_lex_state = 2}, + [943] = {.lex_state = 43, .external_lex_state = 2}, + [944] = {.lex_state = 43, .external_lex_state = 2}, + [945] = {.lex_state = 43, .external_lex_state = 2}, + [946] = {.lex_state = 43, .external_lex_state = 2}, + [947] = {.lex_state = 43, .external_lex_state = 2}, + [948] = {.lex_state = 43, .external_lex_state = 2}, + [949] = {.lex_state = 43, .external_lex_state = 2}, + [950] = {.lex_state = 43, .external_lex_state = 2}, + [951] = {.lex_state = 43, .external_lex_state = 2}, + [952] = {.lex_state = 43, .external_lex_state = 2}, + [953] = {.lex_state = 43, .external_lex_state = 2}, + [954] = {.lex_state = 43, .external_lex_state = 2}, + [955] = {.lex_state = 43, .external_lex_state = 2}, + [956] = {.lex_state = 43, .external_lex_state = 2}, + [957] = {.lex_state = 43, .external_lex_state = 2}, + [958] = {.lex_state = 43, .external_lex_state = 2}, + [959] = {.lex_state = 43, .external_lex_state = 2}, + [960] = {.lex_state = 43, .external_lex_state = 2}, + [961] = {.lex_state = 43, .external_lex_state = 2}, + [962] = {.lex_state = 43, .external_lex_state = 2}, + [963] = {.lex_state = 43, .external_lex_state = 2}, + [964] = {.lex_state = 43, .external_lex_state = 2}, + [965] = {.lex_state = 43, .external_lex_state = 2}, + [966] = {.lex_state = 43, .external_lex_state = 2}, + [967] = {.lex_state = 43, .external_lex_state = 2}, + [968] = {.lex_state = 43, .external_lex_state = 2}, + [969] = {.lex_state = 43, .external_lex_state = 2}, + [970] = {.lex_state = 43, .external_lex_state = 2}, + [971] = {.lex_state = 43, .external_lex_state = 2}, + [972] = {.lex_state = 43, .external_lex_state = 2}, + [973] = {.lex_state = 43, .external_lex_state = 2}, + [974] = {.lex_state = 43, .external_lex_state = 2}, + [975] = {.lex_state = 43, .external_lex_state = 2}, + [976] = {.lex_state = 43, .external_lex_state = 2}, + [977] = {.lex_state = 43, .external_lex_state = 2}, + [978] = {.lex_state = 43, .external_lex_state = 2}, + [979] = {.lex_state = 43, .external_lex_state = 2}, + [980] = {.lex_state = 43, .external_lex_state = 2}, + [981] = {.lex_state = 43, .external_lex_state = 2}, + [982] = {.lex_state = 43, .external_lex_state = 2}, + [983] = {.lex_state = 43, .external_lex_state = 2}, + [984] = {.lex_state = 43, .external_lex_state = 2}, + [985] = {.lex_state = 43, .external_lex_state = 2}, + [986] = {.lex_state = 43, .external_lex_state = 2}, + [987] = {.lex_state = 43, .external_lex_state = 2}, + [988] = {.lex_state = 43, .external_lex_state = 2}, + [989] = {.lex_state = 43, .external_lex_state = 2}, + [990] = {.lex_state = 43, .external_lex_state = 2}, + [991] = {.lex_state = 43, .external_lex_state = 2}, + [992] = {.lex_state = 43, .external_lex_state = 2}, + [993] = {.lex_state = 43, .external_lex_state = 2}, + [994] = {.lex_state = 43, .external_lex_state = 2}, + [995] = {.lex_state = 43, .external_lex_state = 2}, + [996] = {.lex_state = 43, .external_lex_state = 2}, + [997] = {.lex_state = 43, .external_lex_state = 2}, + [998] = {.lex_state = 43, .external_lex_state = 2}, + [999] = {.lex_state = 43, .external_lex_state = 2}, + [1000] = {.lex_state = 43, .external_lex_state = 2}, + [1001] = {.lex_state = 43, .external_lex_state = 2}, + [1002] = {.lex_state = 43, .external_lex_state = 2}, + [1003] = {.lex_state = 43, .external_lex_state = 2}, + [1004] = {.lex_state = 43, .external_lex_state = 2}, + [1005] = {.lex_state = 43, .external_lex_state = 2}, + [1006] = {.lex_state = 43, .external_lex_state = 2}, + [1007] = {.lex_state = 43, .external_lex_state = 2}, + [1008] = {.lex_state = 43, .external_lex_state = 2}, + [1009] = {.lex_state = 43, .external_lex_state = 2}, + [1010] = {.lex_state = 43, .external_lex_state = 2}, + [1011] = {.lex_state = 43, .external_lex_state = 2}, + [1012] = {.lex_state = 43, .external_lex_state = 2}, + [1013] = {.lex_state = 43, .external_lex_state = 2}, + [1014] = {.lex_state = 43, .external_lex_state = 2}, + [1015] = {.lex_state = 43, .external_lex_state = 2}, + [1016] = {.lex_state = 43, .external_lex_state = 2}, + [1017] = {.lex_state = 43, .external_lex_state = 2}, + [1018] = {.lex_state = 43, .external_lex_state = 2}, + [1019] = {.lex_state = 43, .external_lex_state = 2}, + [1020] = {.lex_state = 43, .external_lex_state = 2}, + [1021] = {.lex_state = 43, .external_lex_state = 2}, + [1022] = {.lex_state = 43, .external_lex_state = 2}, + [1023] = {.lex_state = 43, .external_lex_state = 2}, + [1024] = {.lex_state = 43, .external_lex_state = 2}, + [1025] = {.lex_state = 43, .external_lex_state = 2}, + [1026] = {.lex_state = 43, .external_lex_state = 2}, + [1027] = {.lex_state = 43, .external_lex_state = 2}, + [1028] = {.lex_state = 43, .external_lex_state = 2}, + [1029] = {.lex_state = 43, .external_lex_state = 2}, + [1030] = {.lex_state = 43, .external_lex_state = 2}, + [1031] = {.lex_state = 43, .external_lex_state = 2}, + [1032] = {.lex_state = 43, .external_lex_state = 2}, + [1033] = {.lex_state = 43, .external_lex_state = 2}, + [1034] = {.lex_state = 43, .external_lex_state = 2}, + [1035] = {.lex_state = 43, .external_lex_state = 2}, + [1036] = {.lex_state = 43, .external_lex_state = 2}, + [1037] = {.lex_state = 43, .external_lex_state = 2}, + [1038] = {.lex_state = 43, .external_lex_state = 2}, + [1039] = {.lex_state = 43, .external_lex_state = 2}, + [1040] = {.lex_state = 43, .external_lex_state = 2}, + [1041] = {.lex_state = 43, .external_lex_state = 2}, + [1042] = {.lex_state = 43, .external_lex_state = 2}, + [1043] = {.lex_state = 43, .external_lex_state = 2}, + [1044] = {.lex_state = 43, .external_lex_state = 2}, + [1045] = {.lex_state = 43, .external_lex_state = 2}, + [1046] = {.lex_state = 43, .external_lex_state = 2}, + [1047] = {.lex_state = 43, .external_lex_state = 2}, + [1048] = {.lex_state = 43, .external_lex_state = 2}, + [1049] = {.lex_state = 43, .external_lex_state = 2}, + [1050] = {.lex_state = 43, .external_lex_state = 2}, + [1051] = {.lex_state = 43, .external_lex_state = 2}, + [1052] = {.lex_state = 43, .external_lex_state = 2}, + [1053] = {.lex_state = 43, .external_lex_state = 2}, + [1054] = {.lex_state = 43, .external_lex_state = 2}, + [1055] = {.lex_state = 43, .external_lex_state = 2}, + [1056] = {.lex_state = 43, .external_lex_state = 2}, + [1057] = {.lex_state = 43, .external_lex_state = 2}, + [1058] = {.lex_state = 43, .external_lex_state = 2}, + [1059] = {.lex_state = 43, .external_lex_state = 2}, + [1060] = {.lex_state = 43, .external_lex_state = 2}, + [1061] = {.lex_state = 43, .external_lex_state = 2}, + [1062] = {.lex_state = 43, .external_lex_state = 2}, + [1063] = {.lex_state = 43, .external_lex_state = 2}, + [1064] = {.lex_state = 43, .external_lex_state = 2}, + [1065] = {.lex_state = 42, .external_lex_state = 2}, [1066] = {.lex_state = 14, .external_lex_state = 2}, [1067] = {.lex_state = 14, .external_lex_state = 2}, - [1068] = {.lex_state = 45, .external_lex_state = 2}, - [1069] = {.lex_state = 45, .external_lex_state = 2}, - [1070] = {.lex_state = 45, .external_lex_state = 2}, - [1071] = {.lex_state = 45, .external_lex_state = 2}, - [1072] = {.lex_state = 45, .external_lex_state = 2}, - [1073] = {.lex_state = 45, .external_lex_state = 2}, - [1074] = {.lex_state = 45, .external_lex_state = 2}, - [1075] = {.lex_state = 45, .external_lex_state = 2}, - [1076] = {.lex_state = 45, .external_lex_state = 2}, - [1077] = {.lex_state = 45, .external_lex_state = 2}, - [1078] = {.lex_state = 45, .external_lex_state = 2}, - [1079] = {.lex_state = 45, .external_lex_state = 2}, - [1080] = {.lex_state = 45, .external_lex_state = 2}, - [1081] = {.lex_state = 45, .external_lex_state = 2}, - [1082] = {.lex_state = 45, .external_lex_state = 2}, - [1083] = {.lex_state = 45, .external_lex_state = 2}, - [1084] = {.lex_state = 45, .external_lex_state = 2}, - [1085] = {.lex_state = 45, .external_lex_state = 2}, - [1086] = {.lex_state = 45, .external_lex_state = 2}, - [1087] = {.lex_state = 45, .external_lex_state = 2}, - [1088] = {.lex_state = 45, .external_lex_state = 2}, - [1089] = {.lex_state = 45, .external_lex_state = 2}, - [1090] = {.lex_state = 45, .external_lex_state = 2}, - [1091] = {.lex_state = 45, .external_lex_state = 2}, - [1092] = {.lex_state = 45, .external_lex_state = 2}, - [1093] = {.lex_state = 45, .external_lex_state = 2}, - [1094] = {.lex_state = 45, .external_lex_state = 2}, - [1095] = {.lex_state = 45, .external_lex_state = 2}, - [1096] = {.lex_state = 45, .external_lex_state = 2}, - [1097] = {.lex_state = 45, .external_lex_state = 2}, - [1098] = {.lex_state = 45, .external_lex_state = 2}, - [1099] = {.lex_state = 743, .external_lex_state = 2}, - [1100] = {.lex_state = 45, .external_lex_state = 2}, - [1101] = {.lex_state = 45, .external_lex_state = 2}, - [1102] = {.lex_state = 45, .external_lex_state = 2}, - [1103] = {.lex_state = 45, .external_lex_state = 2}, - [1104] = {.lex_state = 45, .external_lex_state = 2}, - [1105] = {.lex_state = 45, .external_lex_state = 2}, - [1106] = {.lex_state = 45, .external_lex_state = 2}, - [1107] = {.lex_state = 45, .external_lex_state = 2}, - [1108] = {.lex_state = 45, .external_lex_state = 2}, - [1109] = {.lex_state = 45, .external_lex_state = 2}, - [1110] = {.lex_state = 45, .external_lex_state = 2}, - [1111] = {.lex_state = 45, .external_lex_state = 2}, - [1112] = {.lex_state = 45, .external_lex_state = 2}, - [1113] = {.lex_state = 45, .external_lex_state = 2}, - [1114] = {.lex_state = 45, .external_lex_state = 2}, - [1115] = {.lex_state = 45, .external_lex_state = 2}, - [1116] = {.lex_state = 45, .external_lex_state = 2}, - [1117] = {.lex_state = 45, .external_lex_state = 2}, - [1118] = {.lex_state = 45, .external_lex_state = 2}, - [1119] = {.lex_state = 45, .external_lex_state = 2}, - [1120] = {.lex_state = 45, .external_lex_state = 2}, - [1121] = {.lex_state = 45, .external_lex_state = 2}, - [1122] = {.lex_state = 45, .external_lex_state = 2}, - [1123] = {.lex_state = 45, .external_lex_state = 2}, - [1124] = {.lex_state = 45, .external_lex_state = 2}, - [1125] = {.lex_state = 45, .external_lex_state = 2}, - [1126] = {.lex_state = 45, .external_lex_state = 2}, - [1127] = {.lex_state = 45, .external_lex_state = 2}, - [1128] = {.lex_state = 45, .external_lex_state = 2}, - [1129] = {.lex_state = 45, .external_lex_state = 2}, - [1130] = {.lex_state = 45, .external_lex_state = 2}, - [1131] = {.lex_state = 45, .external_lex_state = 2}, - [1132] = {.lex_state = 743, .external_lex_state = 2}, - [1133] = {.lex_state = 45, .external_lex_state = 2}, - [1134] = {.lex_state = 45, .external_lex_state = 2}, - [1135] = {.lex_state = 45, .external_lex_state = 2}, - [1136] = {.lex_state = 45, .external_lex_state = 2}, - [1137] = {.lex_state = 45, .external_lex_state = 2}, - [1138] = {.lex_state = 45, .external_lex_state = 2}, - [1139] = {.lex_state = 45, .external_lex_state = 2}, - [1140] = {.lex_state = 45, .external_lex_state = 2}, - [1141] = {.lex_state = 45, .external_lex_state = 2}, - [1142] = {.lex_state = 45, .external_lex_state = 2}, - [1143] = {.lex_state = 45, .external_lex_state = 2}, - [1144] = {.lex_state = 45, .external_lex_state = 2}, - [1145] = {.lex_state = 45, .external_lex_state = 2}, - [1146] = {.lex_state = 45, .external_lex_state = 2}, - [1147] = {.lex_state = 45, .external_lex_state = 2}, - [1148] = {.lex_state = 45, .external_lex_state = 2}, - [1149] = {.lex_state = 45, .external_lex_state = 2}, - [1150] = {.lex_state = 45, .external_lex_state = 2}, - [1151] = {.lex_state = 45, .external_lex_state = 2}, - [1152] = {.lex_state = 45, .external_lex_state = 2}, - [1153] = {.lex_state = 45, .external_lex_state = 2}, - [1154] = {.lex_state = 45, .external_lex_state = 2}, - [1155] = {.lex_state = 45, .external_lex_state = 2}, - [1156] = {.lex_state = 45, .external_lex_state = 2}, - [1157] = {.lex_state = 45, .external_lex_state = 2}, - [1158] = {.lex_state = 45, .external_lex_state = 2}, - [1159] = {.lex_state = 743, .external_lex_state = 2}, - [1160] = {.lex_state = 45, .external_lex_state = 2}, - [1161] = {.lex_state = 45, .external_lex_state = 2}, - [1162] = {.lex_state = 45, .external_lex_state = 2}, - [1163] = {.lex_state = 45, .external_lex_state = 2}, - [1164] = {.lex_state = 45, .external_lex_state = 2}, - [1165] = {.lex_state = 45, .external_lex_state = 2}, - [1166] = {.lex_state = 45, .external_lex_state = 2}, - [1167] = {.lex_state = 45, .external_lex_state = 2}, - [1168] = {.lex_state = 743, .external_lex_state = 2}, + [1068] = {.lex_state = 43, .external_lex_state = 2}, + [1069] = {.lex_state = 43, .external_lex_state = 2}, + [1070] = {.lex_state = 43, .external_lex_state = 2}, + [1071] = {.lex_state = 43, .external_lex_state = 2}, + [1072] = {.lex_state = 43, .external_lex_state = 2}, + [1073] = {.lex_state = 43, .external_lex_state = 2}, + [1074] = {.lex_state = 43, .external_lex_state = 2}, + [1075] = {.lex_state = 43, .external_lex_state = 2}, + [1076] = {.lex_state = 43, .external_lex_state = 2}, + [1077] = {.lex_state = 43, .external_lex_state = 2}, + [1078] = {.lex_state = 43, .external_lex_state = 2}, + [1079] = {.lex_state = 43, .external_lex_state = 2}, + [1080] = {.lex_state = 43, .external_lex_state = 2}, + [1081] = {.lex_state = 43, .external_lex_state = 2}, + [1082] = {.lex_state = 43, .external_lex_state = 2}, + [1083] = {.lex_state = 43, .external_lex_state = 2}, + [1084] = {.lex_state = 43, .external_lex_state = 2}, + [1085] = {.lex_state = 43, .external_lex_state = 2}, + [1086] = {.lex_state = 43, .external_lex_state = 2}, + [1087] = {.lex_state = 43, .external_lex_state = 2}, + [1088] = {.lex_state = 43, .external_lex_state = 2}, + [1089] = {.lex_state = 43, .external_lex_state = 2}, + [1090] = {.lex_state = 43, .external_lex_state = 2}, + [1091] = {.lex_state = 43, .external_lex_state = 2}, + [1092] = {.lex_state = 43, .external_lex_state = 2}, + [1093] = {.lex_state = 43, .external_lex_state = 2}, + [1094] = {.lex_state = 43, .external_lex_state = 2}, + [1095] = {.lex_state = 43, .external_lex_state = 2}, + [1096] = {.lex_state = 43, .external_lex_state = 2}, + [1097] = {.lex_state = 43, .external_lex_state = 2}, + [1098] = {.lex_state = 43, .external_lex_state = 2}, + [1099] = {.lex_state = 43, .external_lex_state = 2}, + [1100] = {.lex_state = 43, .external_lex_state = 2}, + [1101] = {.lex_state = 43, .external_lex_state = 2}, + [1102] = {.lex_state = 43, .external_lex_state = 2}, + [1103] = {.lex_state = 43, .external_lex_state = 2}, + [1104] = {.lex_state = 43, .external_lex_state = 2}, + [1105] = {.lex_state = 43, .external_lex_state = 2}, + [1106] = {.lex_state = 43, .external_lex_state = 2}, + [1107] = {.lex_state = 43, .external_lex_state = 2}, + [1108] = {.lex_state = 743, .external_lex_state = 2}, + [1109] = {.lex_state = 43, .external_lex_state = 2}, + [1110] = {.lex_state = 43, .external_lex_state = 2}, + [1111] = {.lex_state = 43, .external_lex_state = 2}, + [1112] = {.lex_state = 43, .external_lex_state = 2}, + [1113] = {.lex_state = 43, .external_lex_state = 2}, + [1114] = {.lex_state = 43, .external_lex_state = 2}, + [1115] = {.lex_state = 43, .external_lex_state = 2}, + [1116] = {.lex_state = 43, .external_lex_state = 2}, + [1117] = {.lex_state = 43, .external_lex_state = 2}, + [1118] = {.lex_state = 43, .external_lex_state = 2}, + [1119] = {.lex_state = 43, .external_lex_state = 2}, + [1120] = {.lex_state = 43, .external_lex_state = 2}, + [1121] = {.lex_state = 43, .external_lex_state = 2}, + [1122] = {.lex_state = 43, .external_lex_state = 2}, + [1123] = {.lex_state = 43, .external_lex_state = 2}, + [1124] = {.lex_state = 43, .external_lex_state = 2}, + [1125] = {.lex_state = 43, .external_lex_state = 2}, + [1126] = {.lex_state = 43, .external_lex_state = 2}, + [1127] = {.lex_state = 43, .external_lex_state = 2}, + [1128] = {.lex_state = 43, .external_lex_state = 2}, + [1129] = {.lex_state = 43, .external_lex_state = 2}, + [1130] = {.lex_state = 43, .external_lex_state = 2}, + [1131] = {.lex_state = 43, .external_lex_state = 2}, + [1132] = {.lex_state = 43, .external_lex_state = 2}, + [1133] = {.lex_state = 43, .external_lex_state = 2}, + [1134] = {.lex_state = 43, .external_lex_state = 2}, + [1135] = {.lex_state = 43, .external_lex_state = 2}, + [1136] = {.lex_state = 43, .external_lex_state = 2}, + [1137] = {.lex_state = 43, .external_lex_state = 2}, + [1138] = {.lex_state = 43, .external_lex_state = 2}, + [1139] = {.lex_state = 43, .external_lex_state = 2}, + [1140] = {.lex_state = 43, .external_lex_state = 2}, + [1141] = {.lex_state = 43, .external_lex_state = 2}, + [1142] = {.lex_state = 43, .external_lex_state = 2}, + [1143] = {.lex_state = 743, .external_lex_state = 2}, + [1144] = {.lex_state = 43, .external_lex_state = 2}, + [1145] = {.lex_state = 43, .external_lex_state = 2}, + [1146] = {.lex_state = 43, .external_lex_state = 2}, + [1147] = {.lex_state = 43, .external_lex_state = 2}, + [1148] = {.lex_state = 43, .external_lex_state = 2}, + [1149] = {.lex_state = 43, .external_lex_state = 2}, + [1150] = {.lex_state = 43, .external_lex_state = 2}, + [1151] = {.lex_state = 43, .external_lex_state = 2}, + [1152] = {.lex_state = 43, .external_lex_state = 2}, + [1153] = {.lex_state = 43, .external_lex_state = 2}, + [1154] = {.lex_state = 43, .external_lex_state = 2}, + [1155] = {.lex_state = 43, .external_lex_state = 2}, + [1156] = {.lex_state = 43, .external_lex_state = 2}, + [1157] = {.lex_state = 743, .external_lex_state = 2}, + [1158] = {.lex_state = 43, .external_lex_state = 2}, + [1159] = {.lex_state = 43, .external_lex_state = 2}, + [1160] = {.lex_state = 43, .external_lex_state = 2}, + [1161] = {.lex_state = 43, .external_lex_state = 2}, + [1162] = {.lex_state = 43, .external_lex_state = 2}, + [1163] = {.lex_state = 43, .external_lex_state = 2}, + [1164] = {.lex_state = 43, .external_lex_state = 2}, + [1165] = {.lex_state = 43, .external_lex_state = 2}, + [1166] = {.lex_state = 743, .external_lex_state = 2}, + [1167] = {.lex_state = 43, .external_lex_state = 2}, + [1168] = {.lex_state = 43, .external_lex_state = 2}, [1169] = {.lex_state = 40, .external_lex_state = 2}, [1170] = {.lex_state = 743, .external_lex_state = 2}, [1171] = {.lex_state = 40, .external_lex_state = 2}, - [1172] = {.lex_state = 1825}, - [1173] = {.lex_state = 47, .external_lex_state = 2}, - [1174] = {.lex_state = 36, .external_lex_state = 2}, - [1175] = {.lex_state = 36, .external_lex_state = 2}, + [1172] = {.lex_state = 40, .external_lex_state = 2}, + [1173] = {.lex_state = 228, .external_lex_state = 2}, + [1174] = {.lex_state = 1825}, + [1175] = {.lex_state = 1813}, [1176] = {.lex_state = 1809}, - [1177] = {.lex_state = 40, .external_lex_state = 2}, + [1177] = {.lex_state = 41, .external_lex_state = 2}, [1178] = {.lex_state = 36, .external_lex_state = 2}, - [1179] = {.lex_state = 36, .external_lex_state = 2}, - [1180] = {.lex_state = 228, .external_lex_state = 2}, + [1179] = {.lex_state = 45, .external_lex_state = 2}, + [1180] = {.lex_state = 36, .external_lex_state = 2}, [1181] = {.lex_state = 40, .external_lex_state = 2}, - [1182] = {.lex_state = 1955}, - [1183] = {.lex_state = 40, .external_lex_state = 2}, - [1184] = {.lex_state = 41, .external_lex_state = 2}, + [1182] = {.lex_state = 1949}, + [1183] = {.lex_state = 36, .external_lex_state = 2}, + [1184] = {.lex_state = 45, .external_lex_state = 2}, [1185] = {.lex_state = 1803}, - [1186] = {.lex_state = 1949}, - [1187] = {.lex_state = 47, .external_lex_state = 2}, - [1188] = {.lex_state = 47, .external_lex_state = 2}, - [1189] = {.lex_state = 228, .external_lex_state = 2}, - [1190] = {.lex_state = 47, .external_lex_state = 2}, - [1191] = {.lex_state = 1813}, - [1192] = {.lex_state = 1949}, - [1193] = {.lex_state = 36, .external_lex_state = 2}, - [1194] = {.lex_state = 36, .external_lex_state = 2}, + [1186] = {.lex_state = 40, .external_lex_state = 2}, + [1187] = {.lex_state = 36, .external_lex_state = 2}, + [1188] = {.lex_state = 45, .external_lex_state = 2}, + [1189] = {.lex_state = 45, .external_lex_state = 2}, + [1190] = {.lex_state = 228, .external_lex_state = 2}, + [1191] = {.lex_state = 1955}, + [1192] = {.lex_state = 41, .external_lex_state = 2}, + [1193] = {.lex_state = 1949}, + [1194] = {.lex_state = 1951}, [1195] = {.lex_state = 1951}, [1196] = {.lex_state = 1805}, - [1197] = {.lex_state = 36, .external_lex_state = 2}, - [1198] = {.lex_state = 41, .external_lex_state = 2}, - [1199] = {.lex_state = 36, .external_lex_state = 2}, - [1200] = {.lex_state = 40, .external_lex_state = 2}, - [1201] = {.lex_state = 1951}, - [1202] = {.lex_state = 1955}, - [1203] = {.lex_state = 1815}, - [1204] = {.lex_state = 1805}, - [1205] = {.lex_state = 1815}, - [1206] = {.lex_state = 1951}, - [1207] = {.lex_state = 1807}, - [1208] = {.lex_state = 238, .external_lex_state = 2}, - [1209] = {.lex_state = 1807}, - [1210] = {.lex_state = 1817}, - [1211] = {.lex_state = 1817}, - [1212] = {.lex_state = 1807}, - [1213] = {.lex_state = 1819}, - [1214] = {.lex_state = 1827}, - [1215] = {.lex_state = 1953}, - [1216] = {.lex_state = 1807}, - [1217] = {.lex_state = 1953}, - [1218] = {.lex_state = 1807}, - [1219] = {.lex_state = 238, .external_lex_state = 2}, - [1220] = {.lex_state = 1953}, - [1221] = {.lex_state = 238, .external_lex_state = 2}, - [1222] = {.lex_state = 1817}, - [1223] = {.lex_state = 238, .external_lex_state = 2}, - [1224] = {.lex_state = 238, .external_lex_state = 2}, - [1225] = {.lex_state = 1953}, + [1197] = {.lex_state = 1955}, + [1198] = {.lex_state = 36, .external_lex_state = 2}, + [1199] = {.lex_state = 40, .external_lex_state = 2}, + [1200] = {.lex_state = 36, .external_lex_state = 2}, + [1201] = {.lex_state = 1815}, + [1202] = {.lex_state = 1815}, + [1203] = {.lex_state = 36, .external_lex_state = 2}, + [1204] = {.lex_state = 36, .external_lex_state = 2}, + [1205] = {.lex_state = 1805}, + [1206] = {.lex_state = 240, .external_lex_state = 2}, + [1207] = {.lex_state = 1819}, + [1208] = {.lex_state = 1953}, + [1209] = {.lex_state = 1953}, + [1210] = {.lex_state = 1807}, + [1211] = {.lex_state = 1807}, + [1212] = {.lex_state = 240, .external_lex_state = 2}, + [1213] = {.lex_state = 1953}, + [1214] = {.lex_state = 1807}, + [1215] = {.lex_state = 1817}, + [1216] = {.lex_state = 1953}, + [1217] = {.lex_state = 1951}, + [1218] = {.lex_state = 1817}, + [1219] = {.lex_state = 1807}, + [1220] = {.lex_state = 1817}, + [1221] = {.lex_state = 1953}, + [1222] = {.lex_state = 240, .external_lex_state = 2}, + [1223] = {.lex_state = 1807}, + [1224] = {.lex_state = 1817}, + [1225] = {.lex_state = 1951}, [1226] = {.lex_state = 1817}, - [1227] = {.lex_state = 1951}, - [1228] = {.lex_state = 238, .external_lex_state = 2}, - [1229] = {.lex_state = 1817}, - [1230] = {.lex_state = 1953}, - [1231] = {.lex_state = 47, .external_lex_state = 2}, - [1232] = {.lex_state = 1953}, - [1233] = {.lex_state = 47, .external_lex_state = 2}, + [1227] = {.lex_state = 240, .external_lex_state = 2}, + [1228] = {.lex_state = 240, .external_lex_state = 2}, + [1229] = {.lex_state = 240, .external_lex_state = 2}, + [1230] = {.lex_state = 1827}, + [1231] = {.lex_state = 36, .external_lex_state = 2}, + [1232] = {.lex_state = 1821}, + [1233] = {.lex_state = 45, .external_lex_state = 2}, [1234] = {.lex_state = 36, .external_lex_state = 2}, [1235] = {.lex_state = 36, .external_lex_state = 2}, - [1236] = {.lex_state = 36, .external_lex_state = 2}, - [1237] = {.lex_state = 234, .external_lex_state = 2}, - [1238] = {.lex_state = 36, .external_lex_state = 2}, + [1236] = {.lex_state = 1953}, + [1237] = {.lex_state = 1953}, + [1238] = {.lex_state = 236, .external_lex_state = 2}, [1239] = {.lex_state = 1953}, - [1240] = {.lex_state = 36, .external_lex_state = 2}, - [1241] = {.lex_state = 36, .external_lex_state = 2}, - [1242] = {.lex_state = 234, .external_lex_state = 2}, + [1240] = {.lex_state = 1821}, + [1241] = {.lex_state = 45, .external_lex_state = 2}, + [1242] = {.lex_state = 36, .external_lex_state = 2}, [1243] = {.lex_state = 36, .external_lex_state = 2}, - [1244] = {.lex_state = 1821}, - [1245] = {.lex_state = 1821}, - [1246] = {.lex_state = 36, .external_lex_state = 2}, - [1247] = {.lex_state = 1953}, - [1248] = {.lex_state = 1953}, - [1249] = {.lex_state = 1953}, + [1244] = {.lex_state = 36, .external_lex_state = 2}, + [1245] = {.lex_state = 1953}, + [1246] = {.lex_state = 1953}, + [1247] = {.lex_state = 236, .external_lex_state = 2}, + [1248] = {.lex_state = 36, .external_lex_state = 2}, + [1249] = {.lex_state = 36, .external_lex_state = 2}, [1250] = {.lex_state = 36, .external_lex_state = 2}, - [1251] = {.lex_state = 44, .external_lex_state = 2}, - [1252] = {.lex_state = 1823}, + [1251] = {.lex_state = 725, .external_lex_state = 2}, + [1252] = {.lex_state = 42, .external_lex_state = 2}, [1253] = {.lex_state = 1823}, - [1254] = {.lex_state = 1823}, + [1254] = {.lex_state = 42, .external_lex_state = 2}, [1255] = {.lex_state = 1823}, [1256] = {.lex_state = 1823}, - [1257] = {.lex_state = 44, .external_lex_state = 2}, - [1258] = {.lex_state = 725, .external_lex_state = 2}, - [1259] = {.lex_state = 725, .external_lex_state = 2}, - [1260] = {.lex_state = 739, .external_lex_state = 2}, - [1261] = {.lex_state = 724, .external_lex_state = 2}, - [1262] = {.lex_state = 726, .external_lex_state = 2}, + [1257] = {.lex_state = 1823}, + [1258] = {.lex_state = 1823}, + [1259] = {.lex_state = 724, .external_lex_state = 2}, + [1260] = {.lex_state = 726, .external_lex_state = 2}, + [1261] = {.lex_state = 739, .external_lex_state = 2}, + [1262] = {.lex_state = 735, .external_lex_state = 2}, [1263] = {.lex_state = 724, .external_lex_state = 2}, - [1264] = {.lex_state = 735, .external_lex_state = 2}, - [1265] = {.lex_state = 763, .external_lex_state = 2}, - [1266] = {.lex_state = 739, .external_lex_state = 2}, - [1267] = {.lex_state = 44, .external_lex_state = 2}, - [1268] = {.lex_state = 44, .external_lex_state = 2}, - [1269] = {.lex_state = 728, .external_lex_state = 2}, - [1270] = {.lex_state = 728, .external_lex_state = 2}, - [1271] = {.lex_state = 44, .external_lex_state = 2}, - [1272] = {.lex_state = 47, .external_lex_state = 2}, - [1273] = {.lex_state = 47, .external_lex_state = 2}, - [1274] = {.lex_state = 44, .external_lex_state = 2}, - [1275] = {.lex_state = 44, .external_lex_state = 2}, - [1276] = {.lex_state = 44, .external_lex_state = 2}, - [1277] = {.lex_state = 44, .external_lex_state = 2}, - [1278] = {.lex_state = 44, .external_lex_state = 2}, - [1279] = {.lex_state = 44, .external_lex_state = 2}, - [1280] = {.lex_state = 767, .external_lex_state = 2}, - [1281] = {.lex_state = 710}, - [1282] = {.lex_state = 44, .external_lex_state = 2}, - [1283] = {.lex_state = 724, .external_lex_state = 2}, - [1284] = {.lex_state = 44, .external_lex_state = 2}, - [1285] = {.lex_state = 44, .external_lex_state = 2}, - [1286] = {.lex_state = 44, .external_lex_state = 2}, - [1287] = {.lex_state = 44, .external_lex_state = 2}, - [1288] = {.lex_state = 44, .external_lex_state = 2}, - [1289] = {.lex_state = 729, .external_lex_state = 2}, - [1290] = {.lex_state = 44, .external_lex_state = 2}, - [1291] = {.lex_state = 44, .external_lex_state = 2}, - [1292] = {.lex_state = 44, .external_lex_state = 2}, - [1293] = {.lex_state = 44, .external_lex_state = 2}, - [1294] = {.lex_state = 44, .external_lex_state = 2}, - [1295] = {.lex_state = 44, .external_lex_state = 2}, - [1296] = {.lex_state = 44, .external_lex_state = 2}, - [1297] = {.lex_state = 44, .external_lex_state = 2}, - [1298] = {.lex_state = 44, .external_lex_state = 2}, - [1299] = {.lex_state = 44, .external_lex_state = 2}, - [1300] = {.lex_state = 44, .external_lex_state = 2}, - [1301] = {.lex_state = 44, .external_lex_state = 2}, - [1302] = {.lex_state = 44, .external_lex_state = 2}, - [1303] = {.lex_state = 44, .external_lex_state = 2}, - [1304] = {.lex_state = 44, .external_lex_state = 2}, - [1305] = {.lex_state = 44, .external_lex_state = 2}, - [1306] = {.lex_state = 10}, - [1307] = {.lex_state = 44, .external_lex_state = 2}, - [1308] = {.lex_state = 44, .external_lex_state = 2}, - [1309] = {.lex_state = 44, .external_lex_state = 2}, - [1310] = {.lex_state = 44, .external_lex_state = 2}, - [1311] = {.lex_state = 44, .external_lex_state = 2}, - [1312] = {.lex_state = 44, .external_lex_state = 2}, - [1313] = {.lex_state = 44, .external_lex_state = 2}, - [1314] = {.lex_state = 44, .external_lex_state = 2}, - [1315] = {.lex_state = 44, .external_lex_state = 2}, - [1316] = {.lex_state = 44, .external_lex_state = 2}, - [1317] = {.lex_state = 44, .external_lex_state = 2}, - [1318] = {.lex_state = 44, .external_lex_state = 2}, - [1319] = {.lex_state = 44, .external_lex_state = 2}, - [1320] = {.lex_state = 44, .external_lex_state = 2}, - [1321] = {.lex_state = 44, .external_lex_state = 2}, - [1322] = {.lex_state = 44, .external_lex_state = 2}, - [1323] = {.lex_state = 44, .external_lex_state = 2}, - [1324] = {.lex_state = 738, .external_lex_state = 2}, - [1325] = {.lex_state = 44, .external_lex_state = 2}, - [1326] = {.lex_state = 44, .external_lex_state = 2}, - [1327] = {.lex_state = 44, .external_lex_state = 2}, - [1328] = {.lex_state = 44, .external_lex_state = 2}, - [1329] = {.lex_state = 44, .external_lex_state = 2}, - [1330] = {.lex_state = 44, .external_lex_state = 2}, - [1331] = {.lex_state = 44, .external_lex_state = 2}, - [1332] = {.lex_state = 738, .external_lex_state = 2}, - [1333] = {.lex_state = 738, .external_lex_state = 2}, - [1334] = {.lex_state = 738, .external_lex_state = 2}, - [1335] = {.lex_state = 44, .external_lex_state = 2}, - [1336] = {.lex_state = 735, .external_lex_state = 2}, - [1337] = {.lex_state = 724, .external_lex_state = 2}, - [1338] = {.lex_state = 44, .external_lex_state = 2}, - [1339] = {.lex_state = 726, .external_lex_state = 2}, - [1340] = {.lex_state = 44, .external_lex_state = 2}, - [1341] = {.lex_state = 1811}, - [1342] = {.lex_state = 1957}, - [1343] = {.lex_state = 1957}, - [1344] = {.lex_state = 710}, - [1345] = {.lex_state = 758, .external_lex_state = 2}, - [1346] = {.lex_state = 764, .external_lex_state = 2}, - [1347] = {.lex_state = 710}, - [1348] = {.lex_state = 758, .external_lex_state = 2}, - [1349] = {.lex_state = 1811}, + [1264] = {.lex_state = 725, .external_lex_state = 2}, + [1265] = {.lex_state = 42, .external_lex_state = 2}, + [1266] = {.lex_state = 42, .external_lex_state = 2}, + [1267] = {.lex_state = 42, .external_lex_state = 2}, + [1268] = {.lex_state = 42, .external_lex_state = 2}, + [1269] = {.lex_state = 767, .external_lex_state = 2}, + [1270] = {.lex_state = 42, .external_lex_state = 2}, + [1271] = {.lex_state = 42, .external_lex_state = 2}, + [1272] = {.lex_state = 42, .external_lex_state = 2}, + [1273] = {.lex_state = 42, .external_lex_state = 2}, + [1274] = {.lex_state = 42, .external_lex_state = 2}, + [1275] = {.lex_state = 42, .external_lex_state = 2}, + [1276] = {.lex_state = 42, .external_lex_state = 2}, + [1277] = {.lex_state = 42, .external_lex_state = 2}, + [1278] = {.lex_state = 42, .external_lex_state = 2}, + [1279] = {.lex_state = 763, .external_lex_state = 2}, + [1280] = {.lex_state = 42, .external_lex_state = 2}, + [1281] = {.lex_state = 42, .external_lex_state = 2}, + [1282] = {.lex_state = 42, .external_lex_state = 2}, + [1283] = {.lex_state = 42, .external_lex_state = 2}, + [1284] = {.lex_state = 42, .external_lex_state = 2}, + [1285] = {.lex_state = 42, .external_lex_state = 2}, + [1286] = {.lex_state = 45, .external_lex_state = 2}, + [1287] = {.lex_state = 42, .external_lex_state = 2}, + [1288] = {.lex_state = 42, .external_lex_state = 2}, + [1289] = {.lex_state = 42, .external_lex_state = 2}, + [1290] = {.lex_state = 42, .external_lex_state = 2}, + [1291] = {.lex_state = 42, .external_lex_state = 2}, + [1292] = {.lex_state = 42, .external_lex_state = 2}, + [1293] = {.lex_state = 738, .external_lex_state = 2}, + [1294] = {.lex_state = 42, .external_lex_state = 2}, + [1295] = {.lex_state = 728, .external_lex_state = 2}, + [1296] = {.lex_state = 42, .external_lex_state = 2}, + [1297] = {.lex_state = 739, .external_lex_state = 2}, + [1298] = {.lex_state = 42, .external_lex_state = 2}, + [1299] = {.lex_state = 42, .external_lex_state = 2}, + [1300] = {.lex_state = 42, .external_lex_state = 2}, + [1301] = {.lex_state = 42, .external_lex_state = 2}, + [1302] = {.lex_state = 42, .external_lex_state = 2}, + [1303] = {.lex_state = 42, .external_lex_state = 2}, + [1304] = {.lex_state = 42, .external_lex_state = 2}, + [1305] = {.lex_state = 42, .external_lex_state = 2}, + [1306] = {.lex_state = 728, .external_lex_state = 2}, + [1307] = {.lex_state = 42, .external_lex_state = 2}, + [1308] = {.lex_state = 735, .external_lex_state = 2}, + [1309] = {.lex_state = 42, .external_lex_state = 2}, + [1310] = {.lex_state = 724, .external_lex_state = 2}, + [1311] = {.lex_state = 726, .external_lex_state = 2}, + [1312] = {.lex_state = 42, .external_lex_state = 2}, + [1313] = {.lex_state = 42, .external_lex_state = 2}, + [1314] = {.lex_state = 42, .external_lex_state = 2}, + [1315] = {.lex_state = 42, .external_lex_state = 2}, + [1316] = {.lex_state = 42, .external_lex_state = 2}, + [1317] = {.lex_state = 42, .external_lex_state = 2}, + [1318] = {.lex_state = 724, .external_lex_state = 2}, + [1319] = {.lex_state = 42, .external_lex_state = 2}, + [1320] = {.lex_state = 738, .external_lex_state = 2}, + [1321] = {.lex_state = 42, .external_lex_state = 2}, + [1322] = {.lex_state = 738, .external_lex_state = 2}, + [1323] = {.lex_state = 738, .external_lex_state = 2}, + [1324] = {.lex_state = 45, .external_lex_state = 2}, + [1325] = {.lex_state = 42, .external_lex_state = 2}, + [1326] = {.lex_state = 42, .external_lex_state = 2}, + [1327] = {.lex_state = 710}, + [1328] = {.lex_state = 42, .external_lex_state = 2}, + [1329] = {.lex_state = 42, .external_lex_state = 2}, + [1330] = {.lex_state = 42, .external_lex_state = 2}, + [1331] = {.lex_state = 42, .external_lex_state = 2}, + [1332] = {.lex_state = 42, .external_lex_state = 2}, + [1333] = {.lex_state = 729, .external_lex_state = 2}, + [1334] = {.lex_state = 42, .external_lex_state = 2}, + [1335] = {.lex_state = 42, .external_lex_state = 2}, + [1336] = {.lex_state = 42, .external_lex_state = 2}, + [1337] = {.lex_state = 42, .external_lex_state = 2}, + [1338] = {.lex_state = 42, .external_lex_state = 2}, + [1339] = {.lex_state = 10}, + [1340] = {.lex_state = 42, .external_lex_state = 2}, + [1341] = {.lex_state = 710}, + [1342] = {.lex_state = 1829}, + [1343] = {.lex_state = 767, .external_lex_state = 2}, + [1344] = {.lex_state = 729, .external_lex_state = 2}, + [1345] = {.lex_state = 763, .external_lex_state = 2}, + [1346] = {.lex_state = 738, .external_lex_state = 2}, + [1347] = {.lex_state = 738, .external_lex_state = 2}, + [1348] = {.lex_state = 10}, + [1349] = {.lex_state = 728, .external_lex_state = 2}, [1350] = {.lex_state = 710}, - [1351] = {.lex_state = 764, .external_lex_state = 2}, - [1352] = {.lex_state = 729, .external_lex_state = 2}, - [1353] = {.lex_state = 738, .external_lex_state = 2}, - [1354] = {.lex_state = 736, .external_lex_state = 2}, - [1355] = {.lex_state = 729, .external_lex_state = 2}, - [1356] = {.lex_state = 758, .external_lex_state = 2}, - [1357] = {.lex_state = 47, .external_lex_state = 2}, - [1358] = {.lex_state = 729, .external_lex_state = 2}, + [1351] = {.lex_state = 728, .external_lex_state = 2}, + [1352] = {.lex_state = 1811}, + [1353] = {.lex_state = 758, .external_lex_state = 2}, + [1354] = {.lex_state = 1811}, + [1355] = {.lex_state = 10}, + [1356] = {.lex_state = 738, .external_lex_state = 2}, + [1357] = {.lex_state = 710}, + [1358] = {.lex_state = 764, .external_lex_state = 2}, [1359] = {.lex_state = 729, .external_lex_state = 2}, - [1360] = {.lex_state = 728, .external_lex_state = 2}, - [1361] = {.lex_state = 710}, - [1362] = {.lex_state = 738, .external_lex_state = 2}, - [1363] = {.lex_state = 738, .external_lex_state = 2}, - [1364] = {.lex_state = 738, .external_lex_state = 2}, - [1365] = {.lex_state = 10}, - [1366] = {.lex_state = 767, .external_lex_state = 2}, - [1367] = {.lex_state = 763, .external_lex_state = 2}, - [1368] = {.lex_state = 1829}, - [1369] = {.lex_state = 1829}, - [1370] = {.lex_state = 10}, - [1371] = {.lex_state = 727, .external_lex_state = 2}, - [1372] = {.lex_state = 710}, - [1373] = {.lex_state = 728, .external_lex_state = 2}, - [1374] = {.lex_state = 710}, - [1375] = {.lex_state = 729, .external_lex_state = 2}, - [1376] = {.lex_state = 710}, - [1377] = {.lex_state = 710}, - [1378] = {.lex_state = 10}, - [1379] = {.lex_state = 727, .external_lex_state = 2}, - [1380] = {.lex_state = 765, .external_lex_state = 2}, - [1381] = {.lex_state = 765, .external_lex_state = 2}, - [1382] = {.lex_state = 758, .external_lex_state = 2}, - [1383] = {.lex_state = 729, .external_lex_state = 2}, - [1384] = {.lex_state = 730, .external_lex_state = 2}, - [1385] = {.lex_state = 10}, - [1386] = {.lex_state = 764, .external_lex_state = 2}, - [1387] = {.lex_state = 44, .external_lex_state = 2}, - [1388] = {.lex_state = 765, .external_lex_state = 2}, - [1389] = {.lex_state = 764, .external_lex_state = 2}, - [1390] = {.lex_state = 758, .external_lex_state = 2}, - [1391] = {.lex_state = 765, .external_lex_state = 2}, - [1392] = {.lex_state = 10}, - [1393] = {.lex_state = 10}, - [1394] = {.lex_state = 765, .external_lex_state = 2}, - [1395] = {.lex_state = 729, .external_lex_state = 2}, - [1396] = {.lex_state = 758, .external_lex_state = 2}, - [1397] = {.lex_state = 758, .external_lex_state = 2}, - [1398] = {.lex_state = 729, .external_lex_state = 2}, - [1399] = {.lex_state = 758, .external_lex_state = 2}, - [1400] = {.lex_state = 736, .external_lex_state = 2}, + [1360] = {.lex_state = 1957}, + [1361] = {.lex_state = 727, .external_lex_state = 2}, + [1362] = {.lex_state = 1957}, + [1363] = {.lex_state = 736, .external_lex_state = 2}, + [1364] = {.lex_state = 729, .external_lex_state = 2}, + [1365] = {.lex_state = 710}, + [1366] = {.lex_state = 45, .external_lex_state = 2}, + [1367] = {.lex_state = 710}, + [1368] = {.lex_state = 758, .external_lex_state = 2}, + [1369] = {.lex_state = 710}, + [1370] = {.lex_state = 729, .external_lex_state = 2}, + [1371] = {.lex_state = 729, .external_lex_state = 2}, + [1372] = {.lex_state = 758, .external_lex_state = 2}, + [1373] = {.lex_state = 738, .external_lex_state = 2}, + [1374] = {.lex_state = 764, .external_lex_state = 2}, + [1375] = {.lex_state = 710}, + [1376] = {.lex_state = 1829}, + [1377] = {.lex_state = 758, .external_lex_state = 2}, + [1378] = {.lex_state = 765, .external_lex_state = 2}, + [1379] = {.lex_state = 764, .external_lex_state = 2}, + [1380] = {.lex_state = 727, .external_lex_state = 2}, + [1381] = {.lex_state = 10}, + [1382] = {.lex_state = 765, .external_lex_state = 2}, + [1383] = {.lex_state = 765, .external_lex_state = 2}, + [1384] = {.lex_state = 758, .external_lex_state = 2}, + [1385] = {.lex_state = 1957}, + [1386] = {.lex_state = 729, .external_lex_state = 2}, + [1387] = {.lex_state = 764, .external_lex_state = 2}, + [1388] = {.lex_state = 10}, + [1389] = {.lex_state = 765, .external_lex_state = 2}, + [1390] = {.lex_state = 730, .external_lex_state = 2}, + [1391] = {.lex_state = 1957}, + [1392] = {.lex_state = 736, .external_lex_state = 2}, + [1393] = {.lex_state = 710}, + [1394] = {.lex_state = 10}, + [1395] = {.lex_state = 42, .external_lex_state = 2}, + [1396] = {.lex_state = 10}, + [1397] = {.lex_state = 730, .external_lex_state = 2}, + [1398] = {.lex_state = 710}, + [1399] = {.lex_state = 729, .external_lex_state = 2}, + [1400] = {.lex_state = 710}, [1401] = {.lex_state = 10}, - [1402] = {.lex_state = 729, .external_lex_state = 2}, - [1403] = {.lex_state = 10}, - [1404] = {.lex_state = 710}, - [1405] = {.lex_state = 710}, - [1406] = {.lex_state = 730, .external_lex_state = 2}, - [1407] = {.lex_state = 1957}, - [1408] = {.lex_state = 710}, - [1409] = {.lex_state = 1957}, + [1402] = {.lex_state = 710}, + [1403] = {.lex_state = 758, .external_lex_state = 2}, + [1404] = {.lex_state = 765, .external_lex_state = 2}, + [1405] = {.lex_state = 10}, + [1406] = {.lex_state = 729, .external_lex_state = 2}, + [1407] = {.lex_state = 758, .external_lex_state = 2}, + [1408] = {.lex_state = 758, .external_lex_state = 2}, + [1409] = {.lex_state = 729, .external_lex_state = 2}, [1410] = {.lex_state = 756, .external_lex_state = 2}, - [1411] = {.lex_state = 731, .external_lex_state = 2}, - [1412] = {.lex_state = 730, .external_lex_state = 2}, - [1413] = {.lex_state = 756, .external_lex_state = 2}, - [1414] = {.lex_state = 756, .external_lex_state = 2}, - [1415] = {.lex_state = 755, .external_lex_state = 2}, - [1416] = {.lex_state = 731, .external_lex_state = 2}, - [1417] = {.lex_state = 756, .external_lex_state = 2}, - [1418] = {.lex_state = 697}, - [1419] = {.lex_state = 699}, + [1411] = {.lex_state = 756, .external_lex_state = 2}, + [1412] = {.lex_state = 710}, + [1413] = {.lex_state = 710}, + [1414] = {.lex_state = 710}, + [1415] = {.lex_state = 710}, + [1416] = {.lex_state = 710}, + [1417] = {.lex_state = 710}, + [1418] = {.lex_state = 710}, + [1419] = {.lex_state = 710}, [1420] = {.lex_state = 710}, [1421] = {.lex_state = 10}, - [1422] = {.lex_state = 710}, - [1423] = {.lex_state = 765, .external_lex_state = 2}, - [1424] = {.lex_state = 731, .external_lex_state = 2}, - [1425] = {.lex_state = 765, .external_lex_state = 2}, + [1422] = {.lex_state = 697}, + [1423] = {.lex_state = 699}, + [1424] = {.lex_state = 10}, + [1425] = {.lex_state = 10}, [1426] = {.lex_state = 731, .external_lex_state = 2}, - [1427] = {.lex_state = 757, .external_lex_state = 2}, - [1428] = {.lex_state = 765, .external_lex_state = 2}, + [1427] = {.lex_state = 731, .external_lex_state = 2}, + [1428] = {.lex_state = 757, .external_lex_state = 2}, [1429] = {.lex_state = 765, .external_lex_state = 2}, - [1430] = {.lex_state = 756, .external_lex_state = 2}, - [1431] = {.lex_state = 710}, - [1432] = {.lex_state = 10}, - [1433] = {.lex_state = 10}, - [1434] = {.lex_state = 1831}, - [1435] = {.lex_state = 1831}, - [1436] = {.lex_state = 710}, - [1437] = {.lex_state = 710}, - [1438] = {.lex_state = 710}, - [1439] = {.lex_state = 710}, - [1440] = {.lex_state = 731, .external_lex_state = 2}, - [1441] = {.lex_state = 765, .external_lex_state = 2}, - [1442] = {.lex_state = 730, .external_lex_state = 2}, - [1443] = {.lex_state = 710}, - [1444] = {.lex_state = 758, .external_lex_state = 2}, - [1445] = {.lex_state = 710}, - [1446] = {.lex_state = 758, .external_lex_state = 2}, + [1430] = {.lex_state = 730, .external_lex_state = 2}, + [1431] = {.lex_state = 758, .external_lex_state = 2}, + [1432] = {.lex_state = 758, .external_lex_state = 2}, + [1433] = {.lex_state = 731, .external_lex_state = 2}, + [1434] = {.lex_state = 731, .external_lex_state = 2}, + [1435] = {.lex_state = 731, .external_lex_state = 2}, + [1436] = {.lex_state = 731, .external_lex_state = 2}, + [1437] = {.lex_state = 756, .external_lex_state = 2}, + [1438] = {.lex_state = 756, .external_lex_state = 2}, + [1439] = {.lex_state = 1831}, + [1440] = {.lex_state = 765, .external_lex_state = 2}, + [1441] = {.lex_state = 1831}, + [1442] = {.lex_state = 765, .external_lex_state = 2}, + [1443] = {.lex_state = 765, .external_lex_state = 2}, + [1444] = {.lex_state = 765, .external_lex_state = 2}, + [1445] = {.lex_state = 756, .external_lex_state = 2}, + [1446] = {.lex_state = 755, .external_lex_state = 2}, [1447] = {.lex_state = 756, .external_lex_state = 2}, - [1448] = {.lex_state = 731, .external_lex_state = 2}, - [1449] = {.lex_state = 761, .external_lex_state = 2}, - [1450] = {.lex_state = 758, .external_lex_state = 2}, - [1451] = {.lex_state = 732, .external_lex_state = 2}, - [1452] = {.lex_state = 756, .external_lex_state = 2}, - [1453] = {.lex_state = 756, .external_lex_state = 2}, - [1454] = {.lex_state = 10}, - [1455] = {.lex_state = 710}, - [1456] = {.lex_state = 731, .external_lex_state = 2}, - [1457] = {.lex_state = 761, .external_lex_state = 2}, - [1458] = {.lex_state = 710}, - [1459] = {.lex_state = 761, .external_lex_state = 2}, - [1460] = {.lex_state = 758, .external_lex_state = 2}, - [1461] = {.lex_state = 701}, + [1448] = {.lex_state = 730, .external_lex_state = 2}, + [1449] = {.lex_state = 710}, + [1450] = {.lex_state = 701}, + [1451] = {.lex_state = 761, .external_lex_state = 2}, + [1452] = {.lex_state = 761, .external_lex_state = 2}, + [1453] = {.lex_state = 761, .external_lex_state = 2}, + [1454] = {.lex_state = 761, .external_lex_state = 2}, + [1455] = {.lex_state = 701}, + [1456] = {.lex_state = 761, .external_lex_state = 2}, + [1457] = {.lex_state = 731, .external_lex_state = 2}, + [1458] = {.lex_state = 761, .external_lex_state = 2}, + [1459] = {.lex_state = 731, .external_lex_state = 2}, + [1460] = {.lex_state = 761, .external_lex_state = 2}, + [1461] = {.lex_state = 761, .external_lex_state = 2}, [1462] = {.lex_state = 731, .external_lex_state = 2}, [1463] = {.lex_state = 710}, - [1464] = {.lex_state = 761, .external_lex_state = 2}, + [1464] = {.lex_state = 731, .external_lex_state = 2}, [1465] = {.lex_state = 761, .external_lex_state = 2}, - [1466] = {.lex_state = 761, .external_lex_state = 2}, - [1467] = {.lex_state = 757, .external_lex_state = 2}, - [1468] = {.lex_state = 731, .external_lex_state = 2}, - [1469] = {.lex_state = 761, .external_lex_state = 2}, + [1466] = {.lex_state = 757, .external_lex_state = 2}, + [1467] = {.lex_state = 761, .external_lex_state = 2}, + [1468] = {.lex_state = 756, .external_lex_state = 2}, + [1469] = {.lex_state = 756, .external_lex_state = 2}, [1470] = {.lex_state = 761, .external_lex_state = 2}, - [1471] = {.lex_state = 710}, - [1472] = {.lex_state = 756, .external_lex_state = 2}, - [1473] = {.lex_state = 737, .external_lex_state = 2}, + [1471] = {.lex_state = 761, .external_lex_state = 2}, + [1472] = {.lex_state = 761, .external_lex_state = 2}, + [1473] = {.lex_state = 761, .external_lex_state = 2}, [1474] = {.lex_state = 761, .external_lex_state = 2}, - [1475] = {.lex_state = 701}, - [1476] = {.lex_state = 761, .external_lex_state = 2}, - [1477] = {.lex_state = 761, .external_lex_state = 2}, - [1478] = {.lex_state = 761, .external_lex_state = 2}, - [1479] = {.lex_state = 731, .external_lex_state = 2}, - [1480] = {.lex_state = 761, .external_lex_state = 2}, - [1481] = {.lex_state = 761, .external_lex_state = 2}, - [1482] = {.lex_state = 10}, + [1475] = {.lex_state = 761, .external_lex_state = 2}, + [1476] = {.lex_state = 732, .external_lex_state = 2}, + [1477] = {.lex_state = 756, .external_lex_state = 2}, + [1478] = {.lex_state = 737, .external_lex_state = 2}, + [1479] = {.lex_state = 756, .external_lex_state = 2}, + [1480] = {.lex_state = 756, .external_lex_state = 2}, + [1481] = {.lex_state = 758, .external_lex_state = 2}, + [1482] = {.lex_state = 756, .external_lex_state = 2}, [1483] = {.lex_state = 761, .external_lex_state = 2}, - [1484] = {.lex_state = 761, .external_lex_state = 2}, - [1485] = {.lex_state = 761, .external_lex_state = 2}, - [1486] = {.lex_state = 755, .external_lex_state = 2}, - [1487] = {.lex_state = 756, .external_lex_state = 2}, - [1488] = {.lex_state = 710}, + [1484] = {.lex_state = 710}, + [1485] = {.lex_state = 758, .external_lex_state = 2}, + [1486] = {.lex_state = 758, .external_lex_state = 2}, + [1487] = {.lex_state = 761, .external_lex_state = 2}, + [1488] = {.lex_state = 731, .external_lex_state = 2}, [1489] = {.lex_state = 761, .external_lex_state = 2}, - [1490] = {.lex_state = 756, .external_lex_state = 2}, + [1490] = {.lex_state = 761, .external_lex_state = 2}, [1491] = {.lex_state = 761, .external_lex_state = 2}, - [1492] = {.lex_state = 761, .external_lex_state = 2}, - [1493] = {.lex_state = 761, .external_lex_state = 2}, - [1494] = {.lex_state = 756, .external_lex_state = 2}, + [1492] = {.lex_state = 10}, + [1493] = {.lex_state = 731, .external_lex_state = 2}, + [1494] = {.lex_state = 710}, [1495] = {.lex_state = 753, .external_lex_state = 2}, - [1496] = {.lex_state = 731, .external_lex_state = 2}, - [1497] = {.lex_state = 758, .external_lex_state = 2}, - [1498] = {.lex_state = 731, .external_lex_state = 2}, - [1499] = {.lex_state = 761, .external_lex_state = 2}, + [1496] = {.lex_state = 710}, + [1497] = {.lex_state = 753, .external_lex_state = 2}, + [1498] = {.lex_state = 761, .external_lex_state = 2}, + [1499] = {.lex_state = 755, .external_lex_state = 2}, [1500] = {.lex_state = 761, .external_lex_state = 2}, - [1501] = {.lex_state = 753, .external_lex_state = 2}, - [1502] = {.lex_state = 758, .external_lex_state = 2}, + [1501] = {.lex_state = 10}, + [1502] = {.lex_state = 754, .external_lex_state = 2}, [1503] = {.lex_state = 761, .external_lex_state = 2}, - [1504] = {.lex_state = 761, .external_lex_state = 2}, - [1505] = {.lex_state = 761, .external_lex_state = 2}, - [1506] = {.lex_state = 761, .external_lex_state = 2}, - [1507] = {.lex_state = 710}, - [1508] = {.lex_state = 710}, + [1504] = {.lex_state = 754, .external_lex_state = 2}, + [1505] = {.lex_state = 754, .external_lex_state = 2}, + [1506] = {.lex_state = 754, .external_lex_state = 2}, + [1507] = {.lex_state = 753, .external_lex_state = 2}, + [1508] = {.lex_state = 761, .external_lex_state = 2}, [1509] = {.lex_state = 761, .external_lex_state = 2}, - [1510] = {.lex_state = 758, .external_lex_state = 2}, + [1510] = {.lex_state = 709}, [1511] = {.lex_state = 761, .external_lex_state = 2}, - [1512] = {.lex_state = 761, .external_lex_state = 2}, + [1512] = {.lex_state = 697}, [1513] = {.lex_state = 761, .external_lex_state = 2}, - [1514] = {.lex_state = 753, .external_lex_state = 2}, - [1515] = {.lex_state = 761, .external_lex_state = 2}, - [1516] = {.lex_state = 761, .external_lex_state = 2}, - [1517] = {.lex_state = 761, .external_lex_state = 2}, - [1518] = {.lex_state = 754, .external_lex_state = 2}, - [1519] = {.lex_state = 761, .external_lex_state = 2}, + [1514] = {.lex_state = 761, .external_lex_state = 2}, + [1515] = {.lex_state = 754, .external_lex_state = 2}, + [1516] = {.lex_state = 754, .external_lex_state = 2}, + [1517] = {.lex_state = 754, .external_lex_state = 2}, + [1518] = {.lex_state = 699}, + [1519] = {.lex_state = 758, .external_lex_state = 2}, [1520] = {.lex_state = 761, .external_lex_state = 2}, - [1521] = {.lex_state = 754, .external_lex_state = 2}, - [1522] = {.lex_state = 754, .external_lex_state = 2}, - [1523] = {.lex_state = 754, .external_lex_state = 2}, - [1524] = {.lex_state = 754, .external_lex_state = 2}, - [1525] = {.lex_state = 737, .external_lex_state = 2}, + [1521] = {.lex_state = 753, .external_lex_state = 2}, + [1522] = {.lex_state = 761, .external_lex_state = 2}, + [1523] = {.lex_state = 761, .external_lex_state = 2}, + [1524] = {.lex_state = 758, .external_lex_state = 2}, + [1525] = {.lex_state = 758, .external_lex_state = 2}, [1526] = {.lex_state = 761, .external_lex_state = 2}, - [1527] = {.lex_state = 754, .external_lex_state = 2}, - [1528] = {.lex_state = 754, .external_lex_state = 2}, - [1529] = {.lex_state = 754, .external_lex_state = 2}, - [1530] = {.lex_state = 697}, - [1531] = {.lex_state = 753, .external_lex_state = 2}, - [1532] = {.lex_state = 733, .external_lex_state = 2}, - [1533] = {.lex_state = 703}, + [1527] = {.lex_state = 697}, + [1528] = {.lex_state = 761, .external_lex_state = 2}, + [1529] = {.lex_state = 761, .external_lex_state = 2}, + [1530] = {.lex_state = 761, .external_lex_state = 2}, + [1531] = {.lex_state = 761, .external_lex_state = 2}, + [1532] = {.lex_state = 732, .external_lex_state = 2}, + [1533] = {.lex_state = 761, .external_lex_state = 2}, [1534] = {.lex_state = 761, .external_lex_state = 2}, - [1535] = {.lex_state = 761, .external_lex_state = 2}, - [1536] = {.lex_state = 754, .external_lex_state = 2}, - [1537] = {.lex_state = 761, .external_lex_state = 2}, - [1538] = {.lex_state = 709}, - [1539] = {.lex_state = 761, .external_lex_state = 2}, - [1540] = {.lex_state = 758, .external_lex_state = 2}, - [1541] = {.lex_state = 754, .external_lex_state = 2}, - [1542] = {.lex_state = 697}, + [1535] = {.lex_state = 733, .external_lex_state = 2}, + [1536] = {.lex_state = 761, .external_lex_state = 2}, + [1537] = {.lex_state = 733, .external_lex_state = 2}, + [1538] = {.lex_state = 703}, + [1539] = {.lex_state = 737, .external_lex_state = 2}, + [1540] = {.lex_state = 761, .external_lex_state = 2}, + [1541] = {.lex_state = 709}, + [1542] = {.lex_state = 703}, [1543] = {.lex_state = 754, .external_lex_state = 2}, - [1544] = {.lex_state = 699}, - [1545] = {.lex_state = 754, .external_lex_state = 2}, - [1546] = {.lex_state = 761, .external_lex_state = 2}, - [1547] = {.lex_state = 761, .external_lex_state = 2}, + [1544] = {.lex_state = 7}, + [1545] = {.lex_state = 761, .external_lex_state = 2}, + [1546] = {.lex_state = 710}, + [1547] = {.lex_state = 754, .external_lex_state = 2}, [1548] = {.lex_state = 761, .external_lex_state = 2}, - [1549] = {.lex_state = 761, .external_lex_state = 2}, - [1550] = {.lex_state = 703}, - [1551] = {.lex_state = 7}, - [1552] = {.lex_state = 732, .external_lex_state = 2}, - [1553] = {.lex_state = 761, .external_lex_state = 2}, - [1554] = {.lex_state = 697}, - [1555] = {.lex_state = 703}, - [1556] = {.lex_state = 7}, - [1557] = {.lex_state = 733, .external_lex_state = 2}, + [1549] = {.lex_state = 710}, + [1550] = {.lex_state = 697}, + [1551] = {.lex_state = 703}, + [1552] = {.lex_state = 7}, + [1553] = {.lex_state = 7}, + [1554] = {.lex_state = 754, .external_lex_state = 2}, + [1555] = {.lex_state = 761, .external_lex_state = 2}, + [1556] = {.lex_state = 754, .external_lex_state = 2}, + [1557] = {.lex_state = 703}, [1558] = {.lex_state = 7}, [1559] = {.lex_state = 761, .external_lex_state = 2}, - [1560] = {.lex_state = 710}, - [1561] = {.lex_state = 697}, - [1562] = {.lex_state = 761, .external_lex_state = 2}, - [1563] = {.lex_state = 703}, - [1564] = {.lex_state = 7}, - [1565] = {.lex_state = 710}, - [1566] = {.lex_state = 703}, + [1560] = {.lex_state = 697}, + [1561] = {.lex_state = 754, .external_lex_state = 2}, + [1562] = {.lex_state = 703}, + [1563] = {.lex_state = 754, .external_lex_state = 2}, + [1564] = {.lex_state = 710}, + [1565] = {.lex_state = 754, .external_lex_state = 2}, + [1566] = {.lex_state = 761, .external_lex_state = 2}, [1567] = {.lex_state = 754, .external_lex_state = 2}, - [1568] = {.lex_state = 754, .external_lex_state = 2}, - [1569] = {.lex_state = 709}, - [1570] = {.lex_state = 754, .external_lex_state = 2}, - [1571] = {.lex_state = 733, .external_lex_state = 2}, - [1572] = {.lex_state = 734, .external_lex_state = 2}, - [1573] = {.lex_state = 703}, - [1574] = {.lex_state = 711}, - [1575] = {.lex_state = 709}, - [1576] = {.lex_state = 754, .external_lex_state = 2}, + [1568] = {.lex_state = 761, .external_lex_state = 2}, + [1569] = {.lex_state = 761, .external_lex_state = 2}, + [1570] = {.lex_state = 710}, + [1571] = {.lex_state = 711}, + [1572] = {.lex_state = 709}, + [1573] = {.lex_state = 733, .external_lex_state = 2}, + [1574] = {.lex_state = 761, .external_lex_state = 2}, + [1575] = {.lex_state = 754, .external_lex_state = 2}, + [1576] = {.lex_state = 711}, [1577] = {.lex_state = 754, .external_lex_state = 2}, [1578] = {.lex_state = 711}, [1579] = {.lex_state = 754, .external_lex_state = 2}, - [1580] = {.lex_state = 754, .external_lex_state = 2}, - [1581] = {.lex_state = 711}, + [1580] = {.lex_state = 709}, + [1581] = {.lex_state = 734, .external_lex_state = 2}, [1582] = {.lex_state = 711}, - [1583] = {.lex_state = 754, .external_lex_state = 2}, - [1584] = {.lex_state = 773, .external_lex_state = 2}, - [1585] = {.lex_state = 711}, - [1586] = {.lex_state = 733, .external_lex_state = 2}, - [1587] = {.lex_state = 773, .external_lex_state = 2}, - [1588] = {.lex_state = 754, .external_lex_state = 2}, - [1589] = {.lex_state = 723, .external_lex_state = 2}, - [1590] = {.lex_state = 734, .external_lex_state = 2}, - [1591] = {.lex_state = 773, .external_lex_state = 2}, - [1592] = {.lex_state = 752, .external_lex_state = 2}, - [1593] = {.lex_state = 709}, - [1594] = {.lex_state = 711}, - [1595] = {.lex_state = 773, .external_lex_state = 2}, - [1596] = {.lex_state = 754, .external_lex_state = 2}, - [1597] = {.lex_state = 759, .external_lex_state = 2}, - [1598] = {.lex_state = 754, .external_lex_state = 2}, - [1599] = {.lex_state = 759, .external_lex_state = 2}, - [1600] = {.lex_state = 711}, - [1601] = {.lex_state = 754, .external_lex_state = 2}, - [1602] = {.lex_state = 711}, - [1603] = {.lex_state = 711}, - [1604] = {.lex_state = 701}, - [1605] = {.lex_state = 759, .external_lex_state = 2}, - [1606] = {.lex_state = 711}, - [1607] = {.lex_state = 711}, + [1583] = {.lex_state = 711}, + [1584] = {.lex_state = 754, .external_lex_state = 2}, + [1585] = {.lex_state = 754, .external_lex_state = 2}, + [1586] = {.lex_state = 697}, + [1587] = {.lex_state = 754, .external_lex_state = 2}, + [1588] = {.lex_state = 734, .external_lex_state = 2}, + [1589] = {.lex_state = 759, .external_lex_state = 2}, + [1590] = {.lex_state = 759, .external_lex_state = 2}, + [1591] = {.lex_state = 7}, + [1592] = {.lex_state = 734, .external_lex_state = 2}, + [1593] = {.lex_state = 761, .external_lex_state = 2}, + [1594] = {.lex_state = 734, .external_lex_state = 2}, + [1595] = {.lex_state = 760, .external_lex_state = 2}, + [1596] = {.lex_state = 734, .external_lex_state = 2}, + [1597] = {.lex_state = 723, .external_lex_state = 2}, + [1598] = {.lex_state = 701}, + [1599] = {.lex_state = 723, .external_lex_state = 2}, + [1600] = {.lex_state = 734, .external_lex_state = 2}, + [1601] = {.lex_state = 734, .external_lex_state = 2}, + [1602] = {.lex_state = 734, .external_lex_state = 2}, + [1603] = {.lex_state = 734, .external_lex_state = 2}, + [1604] = {.lex_state = 733, .external_lex_state = 2}, + [1605] = {.lex_state = 723, .external_lex_state = 2}, + [1606] = {.lex_state = 723, .external_lex_state = 2}, + [1607] = {.lex_state = 710}, [1608] = {.lex_state = 711}, - [1609] = {.lex_state = 759, .external_lex_state = 2}, - [1610] = {.lex_state = 746, .external_lex_state = 2}, + [1609] = {.lex_state = 754, .external_lex_state = 2}, + [1610] = {.lex_state = 711}, [1611] = {.lex_state = 711}, - [1612] = {.lex_state = 710}, + [1612] = {.lex_state = 773, .external_lex_state = 2}, [1613] = {.lex_state = 711}, - [1614] = {.lex_state = 759, .external_lex_state = 2}, - [1615] = {.lex_state = 773, .external_lex_state = 2}, - [1616] = {.lex_state = 754, .external_lex_state = 2}, - [1617] = {.lex_state = 754, .external_lex_state = 2}, - [1618] = {.lex_state = 734, .external_lex_state = 2}, - [1619] = {.lex_state = 711}, - [1620] = {.lex_state = 754, .external_lex_state = 2}, - [1621] = {.lex_state = 754, .external_lex_state = 2}, - [1622] = {.lex_state = 734, .external_lex_state = 2}, - [1623] = {.lex_state = 734, .external_lex_state = 2}, - [1624] = {.lex_state = 710}, - [1625] = {.lex_state = 754, .external_lex_state = 2}, - [1626] = {.lex_state = 759, .external_lex_state = 2}, - [1627] = {.lex_state = 754, .external_lex_state = 2}, - [1628] = {.lex_state = 762, .external_lex_state = 2}, - [1629] = {.lex_state = 734, .external_lex_state = 2}, - [1630] = {.lex_state = 760, .external_lex_state = 2}, - [1631] = {.lex_state = 734, .external_lex_state = 2}, - [1632] = {.lex_state = 711}, - [1633] = {.lex_state = 761, .external_lex_state = 2}, - [1634] = {.lex_state = 761, .external_lex_state = 2}, - [1635] = {.lex_state = 734, .external_lex_state = 2}, - [1636] = {.lex_state = 711}, - [1637] = {.lex_state = 723, .external_lex_state = 2}, + [1614] = {.lex_state = 711}, + [1615] = {.lex_state = 709}, + [1616] = {.lex_state = 711}, + [1617] = {.lex_state = 711}, + [1618] = {.lex_state = 711}, + [1619] = {.lex_state = 759, .external_lex_state = 2}, + [1620] = {.lex_state = 759, .external_lex_state = 2}, + [1621] = {.lex_state = 759, .external_lex_state = 2}, + [1622] = {.lex_state = 759, .external_lex_state = 2}, + [1623] = {.lex_state = 710}, + [1624] = {.lex_state = 711}, + [1625] = {.lex_state = 703}, + [1626] = {.lex_state = 711}, + [1627] = {.lex_state = 7}, + [1628] = {.lex_state = 711}, + [1629] = {.lex_state = 711}, + [1630] = {.lex_state = 754, .external_lex_state = 2}, + [1631] = {.lex_state = 754, .external_lex_state = 2}, + [1632] = {.lex_state = 754, .external_lex_state = 2}, + [1633] = {.lex_state = 754, .external_lex_state = 2}, + [1634] = {.lex_state = 773, .external_lex_state = 2}, + [1635] = {.lex_state = 773, .external_lex_state = 2}, + [1636] = {.lex_state = 773, .external_lex_state = 2}, + [1637] = {.lex_state = 754, .external_lex_state = 2}, [1638] = {.lex_state = 723, .external_lex_state = 2}, - [1639] = {.lex_state = 711}, - [1640] = {.lex_state = 734, .external_lex_state = 2}, - [1641] = {.lex_state = 723, .external_lex_state = 2}, - [1642] = {.lex_state = 709}, - [1643] = {.lex_state = 711}, - [1644] = {.lex_state = 723, .external_lex_state = 2}, - [1645] = {.lex_state = 697}, + [1639] = {.lex_state = 746, .external_lex_state = 2}, + [1640] = {.lex_state = 754, .external_lex_state = 2}, + [1641] = {.lex_state = 762, .external_lex_state = 2}, + [1642] = {.lex_state = 754, .external_lex_state = 2}, + [1643] = {.lex_state = 697}, + [1644] = {.lex_state = 773, .external_lex_state = 2}, + [1645] = {.lex_state = 701}, [1646] = {.lex_state = 754, .external_lex_state = 2}, - [1647] = {.lex_state = 7}, - [1648] = {.lex_state = 754, .external_lex_state = 2}, - [1649] = {.lex_state = 697}, - [1650] = {.lex_state = 7}, - [1651] = {.lex_state = 701}, - [1652] = {.lex_state = 711}, - [1653] = {.lex_state = 703}, - [1654] = {.lex_state = 774, .external_lex_state = 2}, - [1655] = {.lex_state = 759, .external_lex_state = 2}, - [1656] = {.lex_state = 229, .external_lex_state = 2}, - [1657] = {.lex_state = 709}, - [1658] = {.lex_state = 747, .external_lex_state = 2}, - [1659] = {.lex_state = 229, .external_lex_state = 2}, - [1660] = {.lex_state = 229, .external_lex_state = 2}, + [1647] = {.lex_state = 754, .external_lex_state = 2}, + [1648] = {.lex_state = 711}, + [1649] = {.lex_state = 752, .external_lex_state = 2}, + [1650] = {.lex_state = 754, .external_lex_state = 2}, + [1651] = {.lex_state = 711}, + [1652] = {.lex_state = 709}, + [1653] = {.lex_state = 723, .external_lex_state = 2}, + [1654] = {.lex_state = 723, .external_lex_state = 2}, + [1655] = {.lex_state = 747, .external_lex_state = 2}, + [1656] = {.lex_state = 773, .external_lex_state = 2}, + [1657] = {.lex_state = 773, .external_lex_state = 2}, + [1658] = {.lex_state = 711}, + [1659] = {.lex_state = 7}, + [1660] = {.lex_state = 703}, [1661] = {.lex_state = 723, .external_lex_state = 2}, - [1662] = {.lex_state = 749, .external_lex_state = 2}, + [1662] = {.lex_state = 711}, [1663] = {.lex_state = 734, .external_lex_state = 2}, [1664] = {.lex_state = 7}, - [1665] = {.lex_state = 229, .external_lex_state = 2}, - [1666] = {.lex_state = 734, .external_lex_state = 2}, - [1667] = {.lex_state = 774, .external_lex_state = 2}, - [1668] = {.lex_state = 7}, - [1669] = {.lex_state = 723, .external_lex_state = 2}, - [1670] = {.lex_state = 774, .external_lex_state = 2}, - [1671] = {.lex_state = 734, .external_lex_state = 2}, - [1672] = {.lex_state = 774, .external_lex_state = 2}, - [1673] = {.lex_state = 772, .external_lex_state = 2}, - [1674] = {.lex_state = 229, .external_lex_state = 2}, - [1675] = {.lex_state = 734, .external_lex_state = 2}, - [1676] = {.lex_state = 697}, - [1677] = {.lex_state = 229, .external_lex_state = 2}, - [1678] = {.lex_state = 229, .external_lex_state = 2}, - [1679] = {.lex_state = 709}, - [1680] = {.lex_state = 747, .external_lex_state = 2}, - [1681] = {.lex_state = 723, .external_lex_state = 2}, - [1682] = {.lex_state = 759, .external_lex_state = 2}, - [1683] = {.lex_state = 711}, - [1684] = {.lex_state = 773, .external_lex_state = 2}, - [1685] = {.lex_state = 773, .external_lex_state = 2}, - [1686] = {.lex_state = 711}, - [1687] = {.lex_state = 750, .external_lex_state = 2}, - [1688] = {.lex_state = 709}, - [1689] = {.lex_state = 723, .external_lex_state = 2}, - [1690] = {.lex_state = 746, .external_lex_state = 2}, - [1691] = {.lex_state = 697}, - [1692] = {.lex_state = 723, .external_lex_state = 2}, - [1693] = {.lex_state = 773, .external_lex_state = 2}, - [1694] = {.lex_state = 709}, - [1695] = {.lex_state = 774, .external_lex_state = 2}, - [1696] = {.lex_state = 697}, - [1697] = {.lex_state = 772, .external_lex_state = 2}, - [1698] = {.lex_state = 709}, - [1699] = {.lex_state = 759, .external_lex_state = 2}, - [1700] = {.lex_state = 723, .external_lex_state = 2}, - [1701] = {.lex_state = 766, .external_lex_state = 2}, - [1702] = {.lex_state = 711}, - [1703] = {.lex_state = 761, .external_lex_state = 2}, - [1704] = {.lex_state = 759, .external_lex_state = 2}, - [1705] = {.lex_state = 759, .external_lex_state = 2}, - [1706] = {.lex_state = 734, .external_lex_state = 2}, - [1707] = {.lex_state = 773, .external_lex_state = 2}, - [1708] = {.lex_state = 773, .external_lex_state = 2}, - [1709] = {.lex_state = 711}, - [1710] = {.lex_state = 734, .external_lex_state = 2}, - [1711] = {.lex_state = 711}, - [1712] = {.lex_state = 762, .external_lex_state = 2}, - [1713] = {.lex_state = 229, .external_lex_state = 2}, - [1714] = {.lex_state = 766, .external_lex_state = 2}, - [1715] = {.lex_state = 761, .external_lex_state = 2}, - [1716] = {.lex_state = 703}, - [1717] = {.lex_state = 711}, - [1718] = {.lex_state = 734, .external_lex_state = 2}, - [1719] = {.lex_state = 703}, - [1720] = {.lex_state = 723, .external_lex_state = 2}, - [1721] = {.lex_state = 760, .external_lex_state = 2}, + [1665] = {.lex_state = 723, .external_lex_state = 2}, + [1666] = {.lex_state = 703}, + [1667] = {.lex_state = 759, .external_lex_state = 2}, + [1668] = {.lex_state = 760, .external_lex_state = 2}, + [1669] = {.lex_state = 759, .external_lex_state = 2}, + [1670] = {.lex_state = 759, .external_lex_state = 2}, + [1671] = {.lex_state = 711}, + [1672] = {.lex_state = 759, .external_lex_state = 2}, + [1673] = {.lex_state = 709}, + [1674] = {.lex_state = 709}, + [1675] = {.lex_state = 709}, + [1676] = {.lex_state = 709}, + [1677] = {.lex_state = 711}, + [1678] = {.lex_state = 761, .external_lex_state = 2}, + [1679] = {.lex_state = 723, .external_lex_state = 2}, + [1680] = {.lex_state = 723, .external_lex_state = 2}, + [1681] = {.lex_state = 761, .external_lex_state = 2}, + [1682] = {.lex_state = 761, .external_lex_state = 2}, + [1683] = {.lex_state = 697}, + [1684] = {.lex_state = 734, .external_lex_state = 2}, + [1685] = {.lex_state = 703}, + [1686] = {.lex_state = 752, .external_lex_state = 2}, + [1687] = {.lex_state = 723, .external_lex_state = 2}, + [1688] = {.lex_state = 734, .external_lex_state = 2}, + [1689] = {.lex_state = 703}, + [1690] = {.lex_state = 711}, + [1691] = {.lex_state = 734, .external_lex_state = 2}, + [1692] = {.lex_state = 773, .external_lex_state = 2}, + [1693] = {.lex_state = 766, .external_lex_state = 2}, + [1694] = {.lex_state = 759, .external_lex_state = 2}, + [1695] = {.lex_state = 734, .external_lex_state = 2}, + [1696] = {.lex_state = 746, .external_lex_state = 2}, + [1697] = {.lex_state = 762, .external_lex_state = 2}, + [1698] = {.lex_state = 772, .external_lex_state = 2}, + [1699] = {.lex_state = 711}, + [1700] = {.lex_state = 734, .external_lex_state = 2}, + [1701] = {.lex_state = 723, .external_lex_state = 2}, + [1702] = {.lex_state = 774, .external_lex_state = 2}, + [1703] = {.lex_state = 697}, + [1704] = {.lex_state = 734, .external_lex_state = 2}, + [1705] = {.lex_state = 709}, + [1706] = {.lex_state = 766, .external_lex_state = 2}, + [1707] = {.lex_state = 747, .external_lex_state = 2}, + [1708] = {.lex_state = 723, .external_lex_state = 2}, + [1709] = {.lex_state = 697}, + [1710] = {.lex_state = 772, .external_lex_state = 2}, + [1711] = {.lex_state = 773, .external_lex_state = 2}, + [1712] = {.lex_state = 734, .external_lex_state = 2}, + [1713] = {.lex_state = 774, .external_lex_state = 2}, + [1714] = {.lex_state = 750, .external_lex_state = 2}, + [1715] = {.lex_state = 773, .external_lex_state = 2}, + [1716] = {.lex_state = 774, .external_lex_state = 2}, + [1717] = {.lex_state = 774, .external_lex_state = 2}, + [1718] = {.lex_state = 711}, + [1719] = {.lex_state = 734, .external_lex_state = 2}, + [1720] = {.lex_state = 749, .external_lex_state = 2}, + [1721] = {.lex_state = 711}, [1722] = {.lex_state = 709}, - [1723] = {.lex_state = 749, .external_lex_state = 2}, - [1724] = {.lex_state = 711}, - [1725] = {.lex_state = 703}, + [1723] = {.lex_state = 759, .external_lex_state = 2}, + [1724] = {.lex_state = 749, .external_lex_state = 2}, + [1725] = {.lex_state = 774, .external_lex_state = 2}, [1726] = {.lex_state = 772, .external_lex_state = 2}, - [1727] = {.lex_state = 723, .external_lex_state = 2}, - [1728] = {.lex_state = 734, .external_lex_state = 2}, - [1729] = {.lex_state = 734, .external_lex_state = 2}, - [1730] = {.lex_state = 709}, - [1731] = {.lex_state = 759, .external_lex_state = 2}, - [1732] = {.lex_state = 761, .external_lex_state = 2}, - [1733] = {.lex_state = 723, .external_lex_state = 2}, - [1734] = {.lex_state = 752, .external_lex_state = 2}, - [1735] = {.lex_state = 42, .external_lex_state = 2}, + [1727] = {.lex_state = 766, .external_lex_state = 2}, + [1728] = {.lex_state = 697}, + [1729] = {.lex_state = 711}, + [1730] = {.lex_state = 751, .external_lex_state = 2}, + [1731] = {.lex_state = 749, .external_lex_state = 2}, + [1732] = {.lex_state = 751, .external_lex_state = 2}, + [1733] = {.lex_state = 751, .external_lex_state = 2}, + [1734] = {.lex_state = 751, .external_lex_state = 2}, + [1735] = {.lex_state = 711}, [1736] = {.lex_state = 751, .external_lex_state = 2}, [1737] = {.lex_state = 751, .external_lex_state = 2}, - [1738] = {.lex_state = 751, .external_lex_state = 2}, - [1739] = {.lex_state = 751, .external_lex_state = 2}, + [1738] = {.lex_state = 772, .external_lex_state = 2}, + [1739] = {.lex_state = 761, .external_lex_state = 2}, [1740] = {.lex_state = 751, .external_lex_state = 2}, [1741] = {.lex_state = 751, .external_lex_state = 2}, - [1742] = {.lex_state = 772, .external_lex_state = 2}, - [1743] = {.lex_state = 751, .external_lex_state = 2}, + [1742] = {.lex_state = 774, .external_lex_state = 2}, + [1743] = {.lex_state = 229, .external_lex_state = 2}, [1744] = {.lex_state = 751, .external_lex_state = 2}, [1745] = {.lex_state = 751, .external_lex_state = 2}, [1746] = {.lex_state = 751, .external_lex_state = 2}, - [1747] = {.lex_state = 751, .external_lex_state = 2}, - [1748] = {.lex_state = 751, .external_lex_state = 2}, + [1747] = {.lex_state = 774, .external_lex_state = 2}, + [1748] = {.lex_state = 774, .external_lex_state = 2}, [1749] = {.lex_state = 751, .external_lex_state = 2}, [1750] = {.lex_state = 751, .external_lex_state = 2}, [1751] = {.lex_state = 751, .external_lex_state = 2}, - [1752] = {.lex_state = 751, .external_lex_state = 2}, + [1752] = {.lex_state = 231, .external_lex_state = 2}, [1753] = {.lex_state = 751, .external_lex_state = 2}, [1754] = {.lex_state = 751, .external_lex_state = 2}, [1755] = {.lex_state = 751, .external_lex_state = 2}, - [1756] = {.lex_state = 751, .external_lex_state = 2}, - [1757] = {.lex_state = 751, .external_lex_state = 2}, - [1758] = {.lex_state = 751, .external_lex_state = 2}, - [1759] = {.lex_state = 751, .external_lex_state = 2}, + [1756] = {.lex_state = 774, .external_lex_state = 2}, + [1757] = {.lex_state = 711}, + [1758] = {.lex_state = 229, .external_lex_state = 2}, + [1759] = {.lex_state = 772, .external_lex_state = 2}, [1760] = {.lex_state = 751, .external_lex_state = 2}, - [1761] = {.lex_state = 751, .external_lex_state = 2}, + [1761] = {.lex_state = 709}, [1762] = {.lex_state = 751, .external_lex_state = 2}, [1763] = {.lex_state = 751, .external_lex_state = 2}, [1764] = {.lex_state = 751, .external_lex_state = 2}, [1765] = {.lex_state = 751, .external_lex_state = 2}, [1766] = {.lex_state = 751, .external_lex_state = 2}, - [1767] = {.lex_state = 751, .external_lex_state = 2}, - [1768] = {.lex_state = 751, .external_lex_state = 2}, - [1769] = {.lex_state = 751, .external_lex_state = 2}, + [1767] = {.lex_state = 747, .external_lex_state = 2}, + [1768] = {.lex_state = 761, .external_lex_state = 2}, + [1769] = {.lex_state = 747, .external_lex_state = 2}, [1770] = {.lex_state = 751, .external_lex_state = 2}, - [1771] = {.lex_state = 751, .external_lex_state = 2}, + [1771] = {.lex_state = 711}, [1772] = {.lex_state = 751, .external_lex_state = 2}, [1773] = {.lex_state = 751, .external_lex_state = 2}, - [1774] = {.lex_state = 761, .external_lex_state = 2}, + [1774] = {.lex_state = 750, .external_lex_state = 2}, [1775] = {.lex_state = 751, .external_lex_state = 2}, [1776] = {.lex_state = 751, .external_lex_state = 2}, [1777] = {.lex_state = 751, .external_lex_state = 2}, - [1778] = {.lex_state = 751, .external_lex_state = 2}, - [1779] = {.lex_state = 761, .external_lex_state = 2}, - [1780] = {.lex_state = 761, .external_lex_state = 2}, - [1781] = {.lex_state = 7}, - [1782] = {.lex_state = 7}, - [1783] = {.lex_state = 751, .external_lex_state = 2}, - [1784] = {.lex_state = 749, .external_lex_state = 2}, + [1778] = {.lex_state = 749, .external_lex_state = 2}, + [1779] = {.lex_state = 751, .external_lex_state = 2}, + [1780] = {.lex_state = 231, .external_lex_state = 2}, + [1781] = {.lex_state = 711}, + [1782] = {.lex_state = 231, .external_lex_state = 2}, + [1783] = {.lex_state = 231, .external_lex_state = 2}, + [1784] = {.lex_state = 231, .external_lex_state = 2}, [1785] = {.lex_state = 751, .external_lex_state = 2}, - [1786] = {.lex_state = 751, .external_lex_state = 2}, + [1786] = {.lex_state = 723, .external_lex_state = 2}, [1787] = {.lex_state = 751, .external_lex_state = 2}, - [1788] = {.lex_state = 751, .external_lex_state = 2}, - [1789] = {.lex_state = 749, .external_lex_state = 2}, - [1790] = {.lex_state = 772, .external_lex_state = 2}, - [1791] = {.lex_state = 42, .external_lex_state = 2}, + [1788] = {.lex_state = 7}, + [1789] = {.lex_state = 231, .external_lex_state = 2}, + [1790] = {.lex_state = 231, .external_lex_state = 2}, + [1791] = {.lex_state = 751, .external_lex_state = 2}, [1792] = {.lex_state = 751, .external_lex_state = 2}, [1793] = {.lex_state = 751, .external_lex_state = 2}, - [1794] = {.lex_state = 766, .external_lex_state = 2}, - [1795] = {.lex_state = 751, .external_lex_state = 2}, - [1796] = {.lex_state = 697}, - [1797] = {.lex_state = 774, .external_lex_state = 2}, - [1798] = {.lex_state = 774, .external_lex_state = 2}, - [1799] = {.lex_state = 774, .external_lex_state = 2}, + [1794] = {.lex_state = 751, .external_lex_state = 2}, + [1795] = {.lex_state = 7}, + [1796] = {.lex_state = 751, .external_lex_state = 2}, + [1797] = {.lex_state = 751, .external_lex_state = 2}, + [1798] = {.lex_state = 751, .external_lex_state = 2}, + [1799] = {.lex_state = 751, .external_lex_state = 2}, [1800] = {.lex_state = 751, .external_lex_state = 2}, [1801] = {.lex_state = 751, .external_lex_state = 2}, - [1802] = {.lex_state = 774, .external_lex_state = 2}, - [1803] = {.lex_state = 697}, + [1802] = {.lex_state = 751, .external_lex_state = 2}, + [1803] = {.lex_state = 751, .external_lex_state = 2}, [1804] = {.lex_state = 751, .external_lex_state = 2}, [1805] = {.lex_state = 751, .external_lex_state = 2}, - [1806] = {.lex_state = 42, .external_lex_state = 2}, - [1807] = {.lex_state = 751, .external_lex_state = 2}, - [1808] = {.lex_state = 751, .external_lex_state = 2}, + [1806] = {.lex_state = 711}, + [1807] = {.lex_state = 766, .external_lex_state = 2}, + [1808] = {.lex_state = 711}, [1809] = {.lex_state = 751, .external_lex_state = 2}, [1810] = {.lex_state = 711}, - [1811] = {.lex_state = 711}, - [1812] = {.lex_state = 772, .external_lex_state = 2}, - [1813] = {.lex_state = 747, .external_lex_state = 2}, + [1811] = {.lex_state = 751, .external_lex_state = 2}, + [1812] = {.lex_state = 751, .external_lex_state = 2}, + [1813] = {.lex_state = 229, .external_lex_state = 2}, [1814] = {.lex_state = 751, .external_lex_state = 2}, - [1815] = {.lex_state = 750, .external_lex_state = 2}, - [1816] = {.lex_state = 709}, + [1815] = {.lex_state = 751, .external_lex_state = 2}, + [1816] = {.lex_state = 697}, [1817] = {.lex_state = 751, .external_lex_state = 2}, - [1818] = {.lex_state = 711}, - [1819] = {.lex_state = 711}, - [1820] = {.lex_state = 766, .external_lex_state = 2}, - [1821] = {.lex_state = 711}, - [1822] = {.lex_state = 723, .external_lex_state = 2}, - [1823] = {.lex_state = 711}, - [1824] = {.lex_state = 711}, - [1825] = {.lex_state = 747, .external_lex_state = 2}, - [1826] = {.lex_state = 723, .external_lex_state = 2}, - [1827] = {.lex_state = 711}, + [1818] = {.lex_state = 751, .external_lex_state = 2}, + [1819] = {.lex_state = 751, .external_lex_state = 2}, + [1820] = {.lex_state = 751, .external_lex_state = 2}, + [1821] = {.lex_state = 751, .external_lex_state = 2}, + [1822] = {.lex_state = 751, .external_lex_state = 2}, + [1823] = {.lex_state = 761, .external_lex_state = 2}, + [1824] = {.lex_state = 723, .external_lex_state = 2}, + [1825] = {.lex_state = 751, .external_lex_state = 2}, + [1826] = {.lex_state = 751, .external_lex_state = 2}, + [1827] = {.lex_state = 751, .external_lex_state = 2}, [1828] = {.lex_state = 751, .external_lex_state = 2}, [1829] = {.lex_state = 751, .external_lex_state = 2}, [1830] = {.lex_state = 751, .external_lex_state = 2}, - [1831] = {.lex_state = 751, .external_lex_state = 2}, + [1831] = {.lex_state = 231, .external_lex_state = 2}, [1832] = {.lex_state = 751, .external_lex_state = 2}, [1833] = {.lex_state = 751, .external_lex_state = 2}, [1834] = {.lex_state = 751, .external_lex_state = 2}, @@ -56239,66 +56393,66 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1839] = {.lex_state = 751, .external_lex_state = 2}, [1840] = {.lex_state = 751, .external_lex_state = 2}, [1841] = {.lex_state = 751, .external_lex_state = 2}, - [1842] = {.lex_state = 751, .external_lex_state = 2}, + [1842] = {.lex_state = 231, .external_lex_state = 2}, [1843] = {.lex_state = 751, .external_lex_state = 2}, - [1844] = {.lex_state = 751, .external_lex_state = 2}, + [1844] = {.lex_state = 231, .external_lex_state = 2}, [1845] = {.lex_state = 751, .external_lex_state = 2}, - [1846] = {.lex_state = 751, .external_lex_state = 2}, - [1847] = {.lex_state = 751, .external_lex_state = 2}, + [1846] = {.lex_state = 774, .external_lex_state = 2}, + [1847] = {.lex_state = 231, .external_lex_state = 2}, [1848] = {.lex_state = 751, .external_lex_state = 2}, - [1849] = {.lex_state = 751, .external_lex_state = 2}, - [1850] = {.lex_state = 751, .external_lex_state = 2}, - [1851] = {.lex_state = 774, .external_lex_state = 2}, + [1849] = {.lex_state = 772, .external_lex_state = 2}, + [1850] = {.lex_state = 231, .external_lex_state = 2}, + [1851] = {.lex_state = 751, .external_lex_state = 2}, [1852] = {.lex_state = 751, .external_lex_state = 2}, [1853] = {.lex_state = 751, .external_lex_state = 2}, [1854] = {.lex_state = 751, .external_lex_state = 2}, - [1855] = {.lex_state = 709}, - [1856] = {.lex_state = 45, .external_lex_state = 2}, + [1855] = {.lex_state = 751, .external_lex_state = 2}, + [1856] = {.lex_state = 709}, [1857] = {.lex_state = 751, .external_lex_state = 2}, [1858] = {.lex_state = 709}, [1859] = {.lex_state = 709}, [1860] = {.lex_state = 709}, [1861] = {.lex_state = 709}, [1862] = {.lex_state = 709}, - [1863] = {.lex_state = 709}, + [1863] = {.lex_state = 751, .external_lex_state = 2}, [1864] = {.lex_state = 709}, [1865] = {.lex_state = 709}, [1866] = {.lex_state = 709}, - [1867] = {.lex_state = 709}, - [1868] = {.lex_state = 709}, + [1867] = {.lex_state = 751, .external_lex_state = 2}, + [1868] = {.lex_state = 751, .external_lex_state = 2}, [1869] = {.lex_state = 709}, [1870] = {.lex_state = 709}, - [1871] = {.lex_state = 709}, + [1871] = {.lex_state = 751, .external_lex_state = 2}, [1872] = {.lex_state = 709}, - [1873] = {.lex_state = 751, .external_lex_state = 2}, - [1874] = {.lex_state = 751, .external_lex_state = 2}, - [1875] = {.lex_state = 711}, + [1873] = {.lex_state = 43, .external_lex_state = 2}, + [1874] = {.lex_state = 709}, + [1875] = {.lex_state = 709}, [1876] = {.lex_state = 751, .external_lex_state = 2}, - [1877] = {.lex_state = 709}, - [1878] = {.lex_state = 709}, - [1879] = {.lex_state = 709}, - [1880] = {.lex_state = 709}, - [1881] = {.lex_state = 751, .external_lex_state = 2}, - [1882] = {.lex_state = 751, .external_lex_state = 2}, - [1883] = {.lex_state = 45, .external_lex_state = 2}, - [1884] = {.lex_state = 751, .external_lex_state = 2}, + [1877] = {.lex_state = 751, .external_lex_state = 2}, + [1878] = {.lex_state = 751, .external_lex_state = 2}, + [1879] = {.lex_state = 751, .external_lex_state = 2}, + [1880] = {.lex_state = 751, .external_lex_state = 2}, + [1881] = {.lex_state = 709}, + [1882] = {.lex_state = 711}, + [1883] = {.lex_state = 751, .external_lex_state = 2}, + [1884] = {.lex_state = 709}, [1885] = {.lex_state = 751, .external_lex_state = 2}, - [1886] = {.lex_state = 7}, - [1887] = {.lex_state = 45, .external_lex_state = 2}, + [1886] = {.lex_state = 751, .external_lex_state = 2}, + [1887] = {.lex_state = 751, .external_lex_state = 2}, [1888] = {.lex_state = 751, .external_lex_state = 2}, [1889] = {.lex_state = 751, .external_lex_state = 2}, [1890] = {.lex_state = 751, .external_lex_state = 2}, [1891] = {.lex_state = 751, .external_lex_state = 2}, - [1892] = {.lex_state = 751, .external_lex_state = 2}, + [1892] = {.lex_state = 709}, [1893] = {.lex_state = 751, .external_lex_state = 2}, - [1894] = {.lex_state = 711}, + [1894] = {.lex_state = 751, .external_lex_state = 2}, [1895] = {.lex_state = 751, .external_lex_state = 2}, [1896] = {.lex_state = 751, .external_lex_state = 2}, [1897] = {.lex_state = 751, .external_lex_state = 2}, [1898] = {.lex_state = 751, .external_lex_state = 2}, [1899] = {.lex_state = 751, .external_lex_state = 2}, - [1900] = {.lex_state = 751, .external_lex_state = 2}, - [1901] = {.lex_state = 751, .external_lex_state = 2}, + [1900] = {.lex_state = 709}, + [1901] = {.lex_state = 711}, [1902] = {.lex_state = 751, .external_lex_state = 2}, [1903] = {.lex_state = 751, .external_lex_state = 2}, [1904] = {.lex_state = 751, .external_lex_state = 2}, @@ -56308,12 +56462,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1908] = {.lex_state = 751, .external_lex_state = 2}, [1909] = {.lex_state = 751, .external_lex_state = 2}, [1910] = {.lex_state = 751, .external_lex_state = 2}, - [1911] = {.lex_state = 751, .external_lex_state = 2}, - [1912] = {.lex_state = 751, .external_lex_state = 2}, - [1913] = {.lex_state = 711}, - [1914] = {.lex_state = 711}, + [1911] = {.lex_state = 711}, + [1912] = {.lex_state = 711}, + [1913] = {.lex_state = 751, .external_lex_state = 2}, + [1914] = {.lex_state = 751, .external_lex_state = 2}, [1915] = {.lex_state = 751, .external_lex_state = 2}, - [1916] = {.lex_state = 7}, + [1916] = {.lex_state = 751, .external_lex_state = 2}, [1917] = {.lex_state = 751, .external_lex_state = 2}, [1918] = {.lex_state = 751, .external_lex_state = 2}, [1919] = {.lex_state = 751, .external_lex_state = 2}, @@ -56323,7 +56477,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1923] = {.lex_state = 751, .external_lex_state = 2}, [1924] = {.lex_state = 751, .external_lex_state = 2}, [1925] = {.lex_state = 751, .external_lex_state = 2}, - [1926] = {.lex_state = 751, .external_lex_state = 2}, + [1926] = {.lex_state = 709}, [1927] = {.lex_state = 751, .external_lex_state = 2}, [1928] = {.lex_state = 751, .external_lex_state = 2}, [1929] = {.lex_state = 751, .external_lex_state = 2}, @@ -56340,246 +56494,246 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1940] = {.lex_state = 751, .external_lex_state = 2}, [1941] = {.lex_state = 751, .external_lex_state = 2}, [1942] = {.lex_state = 751, .external_lex_state = 2}, - [1943] = {.lex_state = 7}, + [1943] = {.lex_state = 751, .external_lex_state = 2}, [1944] = {.lex_state = 751, .external_lex_state = 2}, - [1945] = {.lex_state = 751, .external_lex_state = 2}, + [1945] = {.lex_state = 709}, [1946] = {.lex_state = 751, .external_lex_state = 2}, - [1947] = {.lex_state = 751, .external_lex_state = 2}, - [1948] = {.lex_state = 751, .external_lex_state = 2}, + [1947] = {.lex_state = 7}, + [1948] = {.lex_state = 709}, [1949] = {.lex_state = 751, .external_lex_state = 2}, [1950] = {.lex_state = 751, .external_lex_state = 2}, - [1951] = {.lex_state = 709}, + [1951] = {.lex_state = 751, .external_lex_state = 2}, [1952] = {.lex_state = 709}, - [1953] = {.lex_state = 751, .external_lex_state = 2}, - [1954] = {.lex_state = 709}, - [1955] = {.lex_state = 709}, + [1953] = {.lex_state = 7}, + [1954] = {.lex_state = 7}, + [1955] = {.lex_state = 751, .external_lex_state = 2}, [1956] = {.lex_state = 751, .external_lex_state = 2}, - [1957] = {.lex_state = 751, .external_lex_state = 2}, + [1957] = {.lex_state = 709}, [1958] = {.lex_state = 751, .external_lex_state = 2}, [1959] = {.lex_state = 751, .external_lex_state = 2}, [1960] = {.lex_state = 751, .external_lex_state = 2}, - [1961] = {.lex_state = 751, .external_lex_state = 2}, + [1961] = {.lex_state = 43, .external_lex_state = 2}, [1962] = {.lex_state = 709}, - [1963] = {.lex_state = 751, .external_lex_state = 2}, - [1964] = {.lex_state = 709}, + [1963] = {.lex_state = 43, .external_lex_state = 2}, + [1964] = {.lex_state = 751, .external_lex_state = 2}, [1965] = {.lex_state = 751, .external_lex_state = 2}, [1966] = {.lex_state = 751, .external_lex_state = 2}, - [1967] = {.lex_state = 751, .external_lex_state = 2}, + [1967] = {.lex_state = 709}, [1968] = {.lex_state = 751, .external_lex_state = 2}, - [1969] = {.lex_state = 751, .external_lex_state = 2}, + [1969] = {.lex_state = 709}, [1970] = {.lex_state = 751, .external_lex_state = 2}, [1971] = {.lex_state = 751, .external_lex_state = 2}, - [1972] = {.lex_state = 45, .external_lex_state = 2}, - [1973] = {.lex_state = 45, .external_lex_state = 2}, - [1974] = {.lex_state = 45, .external_lex_state = 2}, - [1975] = {.lex_state = 751, .external_lex_state = 2}, - [1976] = {.lex_state = 697}, - [1977] = {.lex_state = 14, .external_lex_state = 2}, + [1972] = {.lex_state = 751, .external_lex_state = 2}, + [1973] = {.lex_state = 751, .external_lex_state = 2}, + [1974] = {.lex_state = 43, .external_lex_state = 2}, + [1975] = {.lex_state = 43, .external_lex_state = 2}, + [1976] = {.lex_state = 43, .external_lex_state = 2}, + [1977] = {.lex_state = 751, .external_lex_state = 2}, [1978] = {.lex_state = 697}, - [1979] = {.lex_state = 697}, + [1979] = {.lex_state = 711}, [1980] = {.lex_state = 697}, - [1981] = {.lex_state = 697}, - [1982] = {.lex_state = 697}, + [1981] = {.lex_state = 711}, + [1982] = {.lex_state = 711}, [1983] = {.lex_state = 709}, - [1984] = {.lex_state = 709}, - [1985] = {.lex_state = 697}, - [1986] = {.lex_state = 697}, - [1987] = {.lex_state = 711}, - [1988] = {.lex_state = 709}, + [1984] = {.lex_state = 711}, + [1985] = {.lex_state = 711}, + [1986] = {.lex_state = 709}, + [1987] = {.lex_state = 697}, + [1988] = {.lex_state = 711}, [1989] = {.lex_state = 711}, - [1990] = {.lex_state = 709}, + [1990] = {.lex_state = 697}, [1991] = {.lex_state = 709}, [1992] = {.lex_state = 709}, - [1993] = {.lex_state = 709}, - [1994] = {.lex_state = 709}, + [1993] = {.lex_state = 697}, + [1994] = {.lex_state = 697}, [1995] = {.lex_state = 697}, - [1996] = {.lex_state = 711}, - [1997] = {.lex_state = 709}, - [1998] = {.lex_state = 709}, - [1999] = {.lex_state = 709}, - [2000] = {.lex_state = 709}, + [1996] = {.lex_state = 697}, + [1997] = {.lex_state = 697}, + [1998] = {.lex_state = 697}, + [1999] = {.lex_state = 697}, + [2000] = {.lex_state = 697}, [2001] = {.lex_state = 709}, [2002] = {.lex_state = 697}, - [2003] = {.lex_state = 711}, - [2004] = {.lex_state = 709}, + [2003] = {.lex_state = 709}, + [2004] = {.lex_state = 697}, [2005] = {.lex_state = 697}, - [2006] = {.lex_state = 709}, - [2007] = {.lex_state = 709}, - [2008] = {.lex_state = 709}, - [2009] = {.lex_state = 709}, - [2010] = {.lex_state = 697}, - [2011] = {.lex_state = 697}, + [2006] = {.lex_state = 711}, + [2007] = {.lex_state = 697}, + [2008] = {.lex_state = 697}, + [2009] = {.lex_state = 697}, + [2010] = {.lex_state = 709}, + [2011] = {.lex_state = 709}, [2012] = {.lex_state = 709}, - [2013] = {.lex_state = 711}, - [2014] = {.lex_state = 711}, - [2015] = {.lex_state = 697}, - [2016] = {.lex_state = 7}, - [2017] = {.lex_state = 711}, - [2018] = {.lex_state = 711}, - [2019] = {.lex_state = 711}, + [2013] = {.lex_state = 697}, + [2014] = {.lex_state = 14, .external_lex_state = 2}, + [2015] = {.lex_state = 709}, + [2016] = {.lex_state = 709}, + [2017] = {.lex_state = 14, .external_lex_state = 2}, + [2018] = {.lex_state = 709}, + [2019] = {.lex_state = 697}, [2020] = {.lex_state = 711}, - [2021] = {.lex_state = 697}, - [2022] = {.lex_state = 7}, - [2023] = {.lex_state = 711}, - [2024] = {.lex_state = 697}, - [2025] = {.lex_state = 697}, - [2026] = {.lex_state = 697}, - [2027] = {.lex_state = 697}, - [2028] = {.lex_state = 697}, - [2029] = {.lex_state = 697}, - [2030] = {.lex_state = 697}, + [2021] = {.lex_state = 711}, + [2022] = {.lex_state = 711}, + [2023] = {.lex_state = 709}, + [2024] = {.lex_state = 7}, + [2025] = {.lex_state = 711}, + [2026] = {.lex_state = 711}, + [2027] = {.lex_state = 711}, + [2028] = {.lex_state = 711}, + [2029] = {.lex_state = 711}, + [2030] = {.lex_state = 711}, [2031] = {.lex_state = 697}, [2032] = {.lex_state = 697}, [2033] = {.lex_state = 697}, - [2034] = {.lex_state = 711}, + [2034] = {.lex_state = 697}, [2035] = {.lex_state = 697}, [2036] = {.lex_state = 697}, [2037] = {.lex_state = 697}, - [2038] = {.lex_state = 711}, - [2039] = {.lex_state = 709}, + [2038] = {.lex_state = 697}, + [2039] = {.lex_state = 697}, [2040] = {.lex_state = 697}, [2041] = {.lex_state = 697}, - [2042] = {.lex_state = 697}, - [2043] = {.lex_state = 697}, - [2044] = {.lex_state = 697}, - [2045] = {.lex_state = 697}, - [2046] = {.lex_state = 14, .external_lex_state = 2}, - [2047] = {.lex_state = 697}, - [2048] = {.lex_state = 697}, - [2049] = {.lex_state = 697}, - [2050] = {.lex_state = 697}, + [2042] = {.lex_state = 711}, + [2043] = {.lex_state = 711}, + [2044] = {.lex_state = 711}, + [2045] = {.lex_state = 711}, + [2046] = {.lex_state = 709}, + [2047] = {.lex_state = 711}, + [2048] = {.lex_state = 709}, + [2049] = {.lex_state = 709}, + [2050] = {.lex_state = 709}, [2051] = {.lex_state = 697}, [2052] = {.lex_state = 711}, - [2053] = {.lex_state = 711}, - [2054] = {.lex_state = 711}, - [2055] = {.lex_state = 711}, - [2056] = {.lex_state = 711}, - [2057] = {.lex_state = 711}, + [2053] = {.lex_state = 709}, + [2054] = {.lex_state = 697}, + [2055] = {.lex_state = 697}, + [2056] = {.lex_state = 697}, + [2057] = {.lex_state = 709}, [2058] = {.lex_state = 697}, - [2059] = {.lex_state = 711}, - [2060] = {.lex_state = 697}, - [2061] = {.lex_state = 14, .external_lex_state = 2}, - [2062] = {.lex_state = 14, .external_lex_state = 2}, - [2063] = {.lex_state = 7}, - [2064] = {.lex_state = 711}, - [2065] = {.lex_state = 711}, - [2066] = {.lex_state = 711}, - [2067] = {.lex_state = 711}, - [2068] = {.lex_state = 711}, + [2059] = {.lex_state = 697}, + [2060] = {.lex_state = 711}, + [2061] = {.lex_state = 711}, + [2062] = {.lex_state = 697}, + [2063] = {.lex_state = 697}, + [2064] = {.lex_state = 697}, + [2065] = {.lex_state = 14, .external_lex_state = 2}, + [2066] = {.lex_state = 14, .external_lex_state = 2}, + [2067] = {.lex_state = 697}, + [2068] = {.lex_state = 7}, [2069] = {.lex_state = 697}, [2070] = {.lex_state = 697}, [2071] = {.lex_state = 697}, - [2072] = {.lex_state = 697}, + [2072] = {.lex_state = 711}, [2073] = {.lex_state = 697}, [2074] = {.lex_state = 7}, [2075] = {.lex_state = 697}, - [2076] = {.lex_state = 697}, + [2076] = {.lex_state = 709}, [2077] = {.lex_state = 697}, [2078] = {.lex_state = 697}, - [2079] = {.lex_state = 697}, + [2079] = {.lex_state = 711}, [2080] = {.lex_state = 697}, [2081] = {.lex_state = 697}, [2082] = {.lex_state = 697}, [2083] = {.lex_state = 709}, [2084] = {.lex_state = 697}, - [2085] = {.lex_state = 711}, - [2086] = {.lex_state = 711}, + [2085] = {.lex_state = 697}, + [2086] = {.lex_state = 697}, [2087] = {.lex_state = 697}, [2088] = {.lex_state = 697}, - [2089] = {.lex_state = 709}, - [2090] = {.lex_state = 45, .external_lex_state = 2}, - [2091] = {.lex_state = 711}, - [2092] = {.lex_state = 711}, - [2093] = {.lex_state = 709}, - [2094] = {.lex_state = 711}, + [2089] = {.lex_state = 7}, + [2090] = {.lex_state = 697}, + [2091] = {.lex_state = 43, .external_lex_state = 2}, + [2092] = {.lex_state = 709}, + [2093] = {.lex_state = 711}, + [2094] = {.lex_state = 709}, [2095] = {.lex_state = 709}, - [2096] = {.lex_state = 709}, + [2096] = {.lex_state = 697}, [2097] = {.lex_state = 709}, [2098] = {.lex_state = 709}, [2099] = {.lex_state = 709}, - [2100] = {.lex_state = 709}, - [2101] = {.lex_state = 709}, + [2100] = {.lex_state = 711}, + [2101] = {.lex_state = 711}, [2102] = {.lex_state = 709}, - [2103] = {.lex_state = 709}, - [2104] = {.lex_state = 709}, - [2105] = {.lex_state = 709}, - [2106] = {.lex_state = 709}, - [2107] = {.lex_state = 709}, - [2108] = {.lex_state = 709}, - [2109] = {.lex_state = 711}, - [2110] = {.lex_state = 709}, - [2111] = {.lex_state = 697}, - [2112] = {.lex_state = 709}, - [2113] = {.lex_state = 697}, - [2114] = {.lex_state = 711}, - [2115] = {.lex_state = 709}, + [2103] = {.lex_state = 43, .external_lex_state = 2}, + [2104] = {.lex_state = 43, .external_lex_state = 2}, + [2105] = {.lex_state = 43, .external_lex_state = 2}, + [2106] = {.lex_state = 43, .external_lex_state = 2}, + [2107] = {.lex_state = 43, .external_lex_state = 2}, + [2108] = {.lex_state = 707}, + [2109] = {.lex_state = 707}, + [2110] = {.lex_state = 43, .external_lex_state = 2}, + [2111] = {.lex_state = 709}, + [2112] = {.lex_state = 711}, + [2113] = {.lex_state = 709}, + [2114] = {.lex_state = 709}, + [2115] = {.lex_state = 43, .external_lex_state = 2}, [2116] = {.lex_state = 709}, [2117] = {.lex_state = 709}, - [2118] = {.lex_state = 709}, - [2119] = {.lex_state = 709}, + [2118] = {.lex_state = 707}, + [2119] = {.lex_state = 707}, [2120] = {.lex_state = 709}, - [2121] = {.lex_state = 45, .external_lex_state = 2}, - [2122] = {.lex_state = 697}, - [2123] = {.lex_state = 709}, - [2124] = {.lex_state = 697}, - [2125] = {.lex_state = 707}, - [2126] = {.lex_state = 45, .external_lex_state = 2}, - [2127] = {.lex_state = 697}, - [2128] = {.lex_state = 697}, + [2121] = {.lex_state = 709}, + [2122] = {.lex_state = 709}, + [2123] = {.lex_state = 43, .external_lex_state = 2}, + [2124] = {.lex_state = 709}, + [2125] = {.lex_state = 709}, + [2126] = {.lex_state = 697}, + [2127] = {.lex_state = 711}, + [2128] = {.lex_state = 709}, [2129] = {.lex_state = 709}, - [2130] = {.lex_state = 45, .external_lex_state = 2}, + [2130] = {.lex_state = 709}, [2131] = {.lex_state = 709}, [2132] = {.lex_state = 709}, - [2133] = {.lex_state = 709}, + [2133] = {.lex_state = 43, .external_lex_state = 2}, [2134] = {.lex_state = 709}, - [2135] = {.lex_state = 45, .external_lex_state = 2}, - [2136] = {.lex_state = 709}, + [2135] = {.lex_state = 709}, + [2136] = {.lex_state = 43, .external_lex_state = 2}, [2137] = {.lex_state = 709}, - [2138] = {.lex_state = 707}, - [2139] = {.lex_state = 711}, - [2140] = {.lex_state = 45, .external_lex_state = 2}, - [2141] = {.lex_state = 45, .external_lex_state = 2}, - [2142] = {.lex_state = 45, .external_lex_state = 2}, - [2143] = {.lex_state = 709}, - [2144] = {.lex_state = 709}, - [2145] = {.lex_state = 709}, - [2146] = {.lex_state = 45, .external_lex_state = 2}, - [2147] = {.lex_state = 45, .external_lex_state = 2}, - [2148] = {.lex_state = 45, .external_lex_state = 2}, - [2149] = {.lex_state = 45, .external_lex_state = 2}, - [2150] = {.lex_state = 45, .external_lex_state = 2}, - [2151] = {.lex_state = 45, .external_lex_state = 2}, - [2152] = {.lex_state = 45, .external_lex_state = 2}, - [2153] = {.lex_state = 707}, - [2154] = {.lex_state = 707}, - [2155] = {.lex_state = 709}, - [2156] = {.lex_state = 707}, - [2157] = {.lex_state = 45, .external_lex_state = 2}, - [2158] = {.lex_state = 697}, - [2159] = {.lex_state = 697}, - [2160] = {.lex_state = 697}, - [2161] = {.lex_state = 697}, - [2162] = {.lex_state = 697}, - [2163] = {.lex_state = 697}, - [2164] = {.lex_state = 697}, - [2165] = {.lex_state = 697}, - [2166] = {.lex_state = 697}, - [2167] = {.lex_state = 697}, - [2168] = {.lex_state = 697}, - [2169] = {.lex_state = 697}, + [2138] = {.lex_state = 709}, + [2139] = {.lex_state = 709}, + [2140] = {.lex_state = 697}, + [2141] = {.lex_state = 43, .external_lex_state = 2}, + [2142] = {.lex_state = 43, .external_lex_state = 2}, + [2143] = {.lex_state = 43, .external_lex_state = 2}, + [2144] = {.lex_state = 43, .external_lex_state = 2}, + [2145] = {.lex_state = 43, .external_lex_state = 2}, + [2146] = {.lex_state = 43, .external_lex_state = 2}, + [2147] = {.lex_state = 43, .external_lex_state = 2}, + [2148] = {.lex_state = 43, .external_lex_state = 2}, + [2149] = {.lex_state = 43, .external_lex_state = 2}, + [2150] = {.lex_state = 43, .external_lex_state = 2}, + [2151] = {.lex_state = 43, .external_lex_state = 2}, + [2152] = {.lex_state = 43, .external_lex_state = 2}, + [2153] = {.lex_state = 697}, + [2154] = {.lex_state = 43, .external_lex_state = 2}, + [2155] = {.lex_state = 707}, + [2156] = {.lex_state = 43, .external_lex_state = 2}, + [2157] = {.lex_state = 709}, + [2158] = {.lex_state = 709}, + [2159] = {.lex_state = 43, .external_lex_state = 2}, + [2160] = {.lex_state = 709}, + [2161] = {.lex_state = 709}, + [2162] = {.lex_state = 709}, + [2163] = {.lex_state = 709}, + [2164] = {.lex_state = 711}, + [2165] = {.lex_state = 43, .external_lex_state = 2}, + [2166] = {.lex_state = 43, .external_lex_state = 2}, + [2167] = {.lex_state = 43, .external_lex_state = 2}, + [2168] = {.lex_state = 43, .external_lex_state = 2}, + [2169] = {.lex_state = 43, .external_lex_state = 2}, [2170] = {.lex_state = 697}, - [2171] = {.lex_state = 697}, - [2172] = {.lex_state = 697}, + [2171] = {.lex_state = 709}, + [2172] = {.lex_state = 709}, [2173] = {.lex_state = 697}, - [2174] = {.lex_state = 697}, - [2175] = {.lex_state = 697}, + [2174] = {.lex_state = 709}, + [2175] = {.lex_state = 43, .external_lex_state = 2}, [2176] = {.lex_state = 697}, [2177] = {.lex_state = 697}, [2178] = {.lex_state = 697}, - [2179] = {.lex_state = 697}, - [2180] = {.lex_state = 697}, + [2179] = {.lex_state = 711}, + [2180] = {.lex_state = 705}, [2181] = {.lex_state = 697}, - [2182] = {.lex_state = 697}, + [2182] = {.lex_state = 770, .external_lex_state = 2}, [2183] = {.lex_state = 697}, [2184] = {.lex_state = 697}, [2185] = {.lex_state = 697}, @@ -56592,9 +56746,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2192] = {.lex_state = 697}, [2193] = {.lex_state = 697}, [2194] = {.lex_state = 697}, - [2195] = {.lex_state = 42, .external_lex_state = 2}, + [2195] = {.lex_state = 697}, [2196] = {.lex_state = 697}, - [2197] = {.lex_state = 711}, + [2197] = {.lex_state = 697}, [2198] = {.lex_state = 697}, [2199] = {.lex_state = 697}, [2200] = {.lex_state = 697}, @@ -56605,28 +56759,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2205] = {.lex_state = 697}, [2206] = {.lex_state = 697}, [2207] = {.lex_state = 697}, - [2208] = {.lex_state = 42, .external_lex_state = 2}, + [2208] = {.lex_state = 697}, [2209] = {.lex_state = 697}, - [2210] = {.lex_state = 107, .external_lex_state = 2}, + [2210] = {.lex_state = 697}, [2211] = {.lex_state = 697}, - [2212] = {.lex_state = 697}, + [2212] = {.lex_state = 707}, [2213] = {.lex_state = 697}, [2214] = {.lex_state = 697}, [2215] = {.lex_state = 697}, [2216] = {.lex_state = 697}, - [2217] = {.lex_state = 247, .external_lex_state = 2}, + [2217] = {.lex_state = 697}, [2218] = {.lex_state = 697}, - [2219] = {.lex_state = 697}, - [2220] = {.lex_state = 697}, - [2221] = {.lex_state = 770, .external_lex_state = 2}, + [2219] = {.lex_state = 770, .external_lex_state = 2}, + [2220] = {.lex_state = 107, .external_lex_state = 2}, + [2221] = {.lex_state = 697}, [2222] = {.lex_state = 697}, [2223] = {.lex_state = 697}, [2224] = {.lex_state = 697}, - [2225] = {.lex_state = 697}, + [2225] = {.lex_state = 707}, [2226] = {.lex_state = 697}, - [2227] = {.lex_state = 697}, + [2227] = {.lex_state = 707}, [2228] = {.lex_state = 697}, - [2229] = {.lex_state = 697}, + [2229] = {.lex_state = 229, .external_lex_state = 2}, [2230] = {.lex_state = 697}, [2231] = {.lex_state = 697}, [2232] = {.lex_state = 697}, @@ -56637,18 +56791,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2237] = {.lex_state = 697}, [2238] = {.lex_state = 697}, [2239] = {.lex_state = 697}, - [2240] = {.lex_state = 707}, - [2241] = {.lex_state = 707}, + [2240] = {.lex_state = 697}, + [2241] = {.lex_state = 697}, [2242] = {.lex_state = 697}, - [2243] = {.lex_state = 711}, - [2244] = {.lex_state = 707}, - [2245] = {.lex_state = 707}, - [2246] = {.lex_state = 711}, + [2243] = {.lex_state = 697}, + [2244] = {.lex_state = 697}, + [2245] = {.lex_state = 697}, + [2246] = {.lex_state = 47, .external_lex_state = 2}, [2247] = {.lex_state = 697}, [2248] = {.lex_state = 697}, [2249] = {.lex_state = 697}, [2250] = {.lex_state = 697}, - [2251] = {.lex_state = 697}, + [2251] = {.lex_state = 711}, [2252] = {.lex_state = 697}, [2253] = {.lex_state = 697}, [2254] = {.lex_state = 697}, @@ -56661,14 +56815,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2261] = {.lex_state = 697}, [2262] = {.lex_state = 697}, [2263] = {.lex_state = 697}, - [2264] = {.lex_state = 697}, + [2264] = {.lex_state = 770, .external_lex_state = 2}, [2265] = {.lex_state = 697}, - [2266] = {.lex_state = 707}, - [2267] = {.lex_state = 697}, + [2266] = {.lex_state = 697}, + [2267] = {.lex_state = 229, .external_lex_state = 2}, [2268] = {.lex_state = 697}, [2269] = {.lex_state = 697}, [2270] = {.lex_state = 697}, - [2271] = {.lex_state = 705}, + [2271] = {.lex_state = 697}, [2272] = {.lex_state = 697}, [2273] = {.lex_state = 697}, [2274] = {.lex_state = 697}, @@ -56682,10 +56836,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2282] = {.lex_state = 697}, [2283] = {.lex_state = 697}, [2284] = {.lex_state = 697}, - [2285] = {.lex_state = 247, .external_lex_state = 2}, + [2285] = {.lex_state = 707}, [2286] = {.lex_state = 697}, [2287] = {.lex_state = 697}, - [2288] = {.lex_state = 697}, + [2288] = {.lex_state = 707}, [2289] = {.lex_state = 697}, [2290] = {.lex_state = 697}, [2291] = {.lex_state = 697}, @@ -56694,35 +56848,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2294] = {.lex_state = 697}, [2295] = {.lex_state = 697}, [2296] = {.lex_state = 697}, - [2297] = {.lex_state = 770, .external_lex_state = 2}, + [2297] = {.lex_state = 47, .external_lex_state = 2}, [2298] = {.lex_state = 697}, [2299] = {.lex_state = 697}, [2300] = {.lex_state = 697}, [2301] = {.lex_state = 697}, - [2302] = {.lex_state = 770, .external_lex_state = 2}, + [2302] = {.lex_state = 697}, [2303] = {.lex_state = 697}, [2304] = {.lex_state = 697}, [2305] = {.lex_state = 697}, [2306] = {.lex_state = 697}, - [2307] = {.lex_state = 42, .external_lex_state = 2}, - [2308] = {.lex_state = 705}, + [2307] = {.lex_state = 697}, + [2308] = {.lex_state = 697}, [2309] = {.lex_state = 697}, - [2310] = {.lex_state = 770, .external_lex_state = 2}, + [2310] = {.lex_state = 697}, [2311] = {.lex_state = 697}, [2312] = {.lex_state = 697}, - [2313] = {.lex_state = 42, .external_lex_state = 2}, + [2313] = {.lex_state = 697}, [2314] = {.lex_state = 697}, [2315] = {.lex_state = 697}, - [2316] = {.lex_state = 105, .external_lex_state = 2}, + [2316] = {.lex_state = 697}, [2317] = {.lex_state = 697}, [2318] = {.lex_state = 697}, [2319] = {.lex_state = 697}, [2320] = {.lex_state = 697}, - [2321] = {.lex_state = 697}, + [2321] = {.lex_state = 711}, [2322] = {.lex_state = 697}, [2323] = {.lex_state = 697}, [2324] = {.lex_state = 697}, - [2325] = {.lex_state = 132, .external_lex_state = 2}, + [2325] = {.lex_state = 697}, [2326] = {.lex_state = 697}, [2327] = {.lex_state = 697}, [2328] = {.lex_state = 697}, @@ -56733,132 +56887,132 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2333] = {.lex_state = 697}, [2334] = {.lex_state = 697}, [2335] = {.lex_state = 697}, - [2336] = {.lex_state = 697}, + [2336] = {.lex_state = 253, .external_lex_state = 2}, [2337] = {.lex_state = 697}, - [2338] = {.lex_state = 697}, + [2338] = {.lex_state = 770, .external_lex_state = 2}, [2339] = {.lex_state = 697}, - [2340] = {.lex_state = 697}, + [2340] = {.lex_state = 141, .external_lex_state = 2}, [2341] = {.lex_state = 697}, [2342] = {.lex_state = 697}, [2343] = {.lex_state = 697}, [2344] = {.lex_state = 697}, [2345] = {.lex_state = 697}, - [2346] = {.lex_state = 697}, + [2346] = {.lex_state = 132, .external_lex_state = 2}, [2347] = {.lex_state = 697}, [2348] = {.lex_state = 697}, [2349] = {.lex_state = 697}, - [2350] = {.lex_state = 697}, + [2350] = {.lex_state = 229, .external_lex_state = 2}, [2351] = {.lex_state = 697}, - [2352] = {.lex_state = 255, .external_lex_state = 2}, + [2352] = {.lex_state = 697}, [2353] = {.lex_state = 697}, [2354] = {.lex_state = 697}, - [2355] = {.lex_state = 697}, - [2356] = {.lex_state = 253, .external_lex_state = 2}, + [2355] = {.lex_state = 7}, + [2356] = {.lex_state = 697}, [2357] = {.lex_state = 697}, - [2358] = {.lex_state = 770, .external_lex_state = 2}, - [2359] = {.lex_state = 106, .external_lex_state = 2}, - [2360] = {.lex_state = 697}, - [2361] = {.lex_state = 697}, + [2358] = {.lex_state = 697}, + [2359] = {.lex_state = 697}, + [2360] = {.lex_state = 106, .external_lex_state = 2}, + [2361] = {.lex_state = 47, .external_lex_state = 2}, [2362] = {.lex_state = 697}, [2363] = {.lex_state = 697}, [2364] = {.lex_state = 697}, [2365] = {.lex_state = 697}, [2366] = {.lex_state = 697}, - [2367] = {.lex_state = 697}, - [2368] = {.lex_state = 697}, - [2369] = {.lex_state = 770, .external_lex_state = 2}, + [2367] = {.lex_state = 229, .external_lex_state = 2}, + [2368] = {.lex_state = 229, .external_lex_state = 2}, + [2369] = {.lex_state = 697}, [2370] = {.lex_state = 697}, [2371] = {.lex_state = 697}, [2372] = {.lex_state = 697}, - [2373] = {.lex_state = 770, .external_lex_state = 2}, - [2374] = {.lex_state = 697}, + [2373] = {.lex_state = 697}, + [2374] = {.lex_state = 47, .external_lex_state = 2}, [2375] = {.lex_state = 697}, - [2376] = {.lex_state = 697}, + [2376] = {.lex_state = 151, .external_lex_state = 2}, [2377] = {.lex_state = 697}, [2378] = {.lex_state = 697}, [2379] = {.lex_state = 697}, [2380] = {.lex_state = 697}, - [2381] = {.lex_state = 697}, + [2381] = {.lex_state = 106, .external_lex_state = 2}, [2382] = {.lex_state = 697}, [2383] = {.lex_state = 697}, [2384] = {.lex_state = 697}, - [2385] = {.lex_state = 697}, + [2385] = {.lex_state = 7}, [2386] = {.lex_state = 697}, [2387] = {.lex_state = 697}, [2388] = {.lex_state = 697}, [2389] = {.lex_state = 697}, - [2390] = {.lex_state = 697}, + [2390] = {.lex_state = 7}, [2391] = {.lex_state = 697}, [2392] = {.lex_state = 697}, - [2393] = {.lex_state = 42, .external_lex_state = 2}, + [2393] = {.lex_state = 697}, [2394] = {.lex_state = 697}, - [2395] = {.lex_state = 697}, + [2395] = {.lex_state = 255, .external_lex_state = 2}, [2396] = {.lex_state = 697}, - [2397] = {.lex_state = 697}, + [2397] = {.lex_state = 105, .external_lex_state = 2}, [2398] = {.lex_state = 697}, - [2399] = {.lex_state = 106, .external_lex_state = 2}, + [2399] = {.lex_state = 697}, [2400] = {.lex_state = 697}, [2401] = {.lex_state = 697}, [2402] = {.lex_state = 697}, [2403] = {.lex_state = 697}, - [2404] = {.lex_state = 697}, + [2404] = {.lex_state = 770, .external_lex_state = 2}, [2405] = {.lex_state = 697}, [2406] = {.lex_state = 697}, [2407] = {.lex_state = 697}, [2408] = {.lex_state = 697}, [2409] = {.lex_state = 697}, - [2410] = {.lex_state = 697}, + [2410] = {.lex_state = 229, .external_lex_state = 2}, [2411] = {.lex_state = 697}, - [2412] = {.lex_state = 42, .external_lex_state = 2}, + [2412] = {.lex_state = 697}, [2413] = {.lex_state = 697}, - [2414] = {.lex_state = 7}, + [2414] = {.lex_state = 697}, [2415] = {.lex_state = 697}, - [2416] = {.lex_state = 42, .external_lex_state = 2}, + [2416] = {.lex_state = 697}, [2417] = {.lex_state = 697}, - [2418] = {.lex_state = 151, .external_lex_state = 2}, - [2419] = {.lex_state = 697}, - [2420] = {.lex_state = 697}, + [2418] = {.lex_state = 697}, + [2419] = {.lex_state = 770, .external_lex_state = 2}, + [2420] = {.lex_state = 770, .external_lex_state = 2}, [2421] = {.lex_state = 697}, - [2422] = {.lex_state = 770, .external_lex_state = 2}, - [2423] = {.lex_state = 697}, + [2422] = {.lex_state = 697}, + [2423] = {.lex_state = 770, .external_lex_state = 2}, [2424] = {.lex_state = 697}, [2425] = {.lex_state = 697}, [2426] = {.lex_state = 697}, - [2427] = {.lex_state = 141, .external_lex_state = 2}, + [2427] = {.lex_state = 697}, [2428] = {.lex_state = 697}, - [2429] = {.lex_state = 42, .external_lex_state = 2}, + [2429] = {.lex_state = 697}, [2430] = {.lex_state = 697}, - [2431] = {.lex_state = 7}, - [2432] = {.lex_state = 697}, + [2431] = {.lex_state = 697}, + [2432] = {.lex_state = 229, .external_lex_state = 2}, [2433] = {.lex_state = 697}, - [2434] = {.lex_state = 7}, - [2435] = {.lex_state = 42, .external_lex_state = 2}, - [2436] = {.lex_state = 697}, - [2437] = {.lex_state = 42, .external_lex_state = 2}, - [2438] = {.lex_state = 42, .external_lex_state = 2}, - [2439] = {.lex_state = 7}, - [2440] = {.lex_state = 42, .external_lex_state = 2}, + [2434] = {.lex_state = 697}, + [2435] = {.lex_state = 229, .external_lex_state = 2}, + [2436] = {.lex_state = 229, .external_lex_state = 2}, + [2437] = {.lex_state = 697}, + [2438] = {.lex_state = 229, .external_lex_state = 2}, + [2439] = {.lex_state = 697}, + [2440] = {.lex_state = 697}, [2441] = {.lex_state = 697}, [2442] = {.lex_state = 697}, [2443] = {.lex_state = 697}, [2444] = {.lex_state = 697}, - [2445] = {.lex_state = 150, .external_lex_state = 2}, - [2446] = {.lex_state = 104, .external_lex_state = 2}, + [2445] = {.lex_state = 697}, + [2446] = {.lex_state = 697}, [2447] = {.lex_state = 697}, [2448] = {.lex_state = 697}, - [2449] = {.lex_state = 104, .external_lex_state = 2}, + [2449] = {.lex_state = 697}, [2450] = {.lex_state = 697}, - [2451] = {.lex_state = 770, .external_lex_state = 2}, + [2451] = {.lex_state = 7}, [2452] = {.lex_state = 697}, [2453] = {.lex_state = 697}, - [2454] = {.lex_state = 134, .external_lex_state = 2}, - [2455] = {.lex_state = 150, .external_lex_state = 2}, + [2454] = {.lex_state = 697}, + [2455] = {.lex_state = 697}, [2456] = {.lex_state = 697}, [2457] = {.lex_state = 697}, [2458] = {.lex_state = 697}, [2459] = {.lex_state = 697}, [2460] = {.lex_state = 697}, - [2461] = {.lex_state = 149, .external_lex_state = 2}, + [2461] = {.lex_state = 705}, [2462] = {.lex_state = 697}, [2463] = {.lex_state = 697}, [2464] = {.lex_state = 697}, @@ -56867,23 +57021,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2467] = {.lex_state = 697}, [2468] = {.lex_state = 697}, [2469] = {.lex_state = 697}, - [2470] = {.lex_state = 697}, + [2470] = {.lex_state = 149, .external_lex_state = 2}, [2471] = {.lex_state = 697}, - [2472] = {.lex_state = 769, .external_lex_state = 2}, - [2473] = {.lex_state = 252, .external_lex_state = 2}, + [2472] = {.lex_state = 697}, + [2473] = {.lex_state = 697}, [2474] = {.lex_state = 697}, [2475] = {.lex_state = 697}, [2476] = {.lex_state = 697}, [2477] = {.lex_state = 697}, [2478] = {.lex_state = 697}, - [2479] = {.lex_state = 697}, + [2479] = {.lex_state = 150, .external_lex_state = 2}, [2480] = {.lex_state = 697}, [2481] = {.lex_state = 697}, [2482] = {.lex_state = 697}, [2483] = {.lex_state = 697}, - [2484] = {.lex_state = 697}, - [2485] = {.lex_state = 697}, - [2486] = {.lex_state = 697}, + [2484] = {.lex_state = 150, .external_lex_state = 2}, + [2485] = {.lex_state = 150, .external_lex_state = 2}, + [2486] = {.lex_state = 150, .external_lex_state = 2}, [2487] = {.lex_state = 697}, [2488] = {.lex_state = 697}, [2489] = {.lex_state = 697}, @@ -56894,279 +57048,279 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2494] = {.lex_state = 697}, [2495] = {.lex_state = 697}, [2496] = {.lex_state = 697}, - [2497] = {.lex_state = 150, .external_lex_state = 2}, + [2497] = {.lex_state = 697}, [2498] = {.lex_state = 697}, [2499] = {.lex_state = 697}, - [2500] = {.lex_state = 252, .external_lex_state = 2}, + [2500] = {.lex_state = 697}, [2501] = {.lex_state = 697}, [2502] = {.lex_state = 697}, [2503] = {.lex_state = 697}, [2504] = {.lex_state = 697}, - [2505] = {.lex_state = 769, .external_lex_state = 2}, + [2505] = {.lex_state = 697}, [2506] = {.lex_state = 697}, [2507] = {.lex_state = 697}, [2508] = {.lex_state = 697}, - [2509] = {.lex_state = 134, .external_lex_state = 2}, + [2509] = {.lex_state = 697}, [2510] = {.lex_state = 697}, - [2511] = {.lex_state = 769, .external_lex_state = 2}, - [2512] = {.lex_state = 769, .external_lex_state = 2}, - [2513] = {.lex_state = 697}, - [2514] = {.lex_state = 135, .external_lex_state = 2}, - [2515] = {.lex_state = 697}, - [2516] = {.lex_state = 697}, + [2511] = {.lex_state = 697}, + [2512] = {.lex_state = 697}, + [2513] = {.lex_state = 252, .external_lex_state = 2}, + [2514] = {.lex_state = 252, .external_lex_state = 2}, + [2515] = {.lex_state = 769, .external_lex_state = 2}, + [2516] = {.lex_state = 769, .external_lex_state = 2}, [2517] = {.lex_state = 697}, [2518] = {.lex_state = 697}, [2519] = {.lex_state = 697}, - [2520] = {.lex_state = 769, .external_lex_state = 2}, - [2521] = {.lex_state = 697}, + [2520] = {.lex_state = 697}, + [2521] = {.lex_state = 135, .external_lex_state = 2}, [2522] = {.lex_state = 697}, - [2523] = {.lex_state = 769, .external_lex_state = 2}, - [2524] = {.lex_state = 697}, - [2525] = {.lex_state = 697}, - [2526] = {.lex_state = 697}, - [2527] = {.lex_state = 770, .external_lex_state = 2}, + [2523] = {.lex_state = 697}, + [2524] = {.lex_state = 769, .external_lex_state = 2}, + [2525] = {.lex_state = 769, .external_lex_state = 2}, + [2526] = {.lex_state = 769, .external_lex_state = 2}, + [2527] = {.lex_state = 769, .external_lex_state = 2}, [2528] = {.lex_state = 697}, - [2529] = {.lex_state = 697}, - [2530] = {.lex_state = 697}, - [2531] = {.lex_state = 697}, - [2532] = {.lex_state = 697}, + [2529] = {.lex_state = 104, .external_lex_state = 2}, + [2530] = {.lex_state = 134, .external_lex_state = 2}, + [2531] = {.lex_state = 104, .external_lex_state = 2}, + [2532] = {.lex_state = 134, .external_lex_state = 2}, [2533] = {.lex_state = 697}, [2534] = {.lex_state = 697}, - [2535] = {.lex_state = 150, .external_lex_state = 2}, - [2536] = {.lex_state = 220, .external_lex_state = 2}, - [2537] = {.lex_state = 247, .external_lex_state = 2}, - [2538] = {.lex_state = 211, .external_lex_state = 2}, - [2539] = {.lex_state = 770, .external_lex_state = 2}, - [2540] = {.lex_state = 247, .external_lex_state = 2}, - [2541] = {.lex_state = 254, .external_lex_state = 2}, - [2542] = {.lex_state = 205, .external_lex_state = 2}, - [2543] = {.lex_state = 142, .external_lex_state = 2}, - [2544] = {.lex_state = 769, .external_lex_state = 2}, - [2545] = {.lex_state = 254, .external_lex_state = 2}, - [2546] = {.lex_state = 247, .external_lex_state = 2}, - [2547] = {.lex_state = 769, .external_lex_state = 2}, - [2548] = {.lex_state = 247, .external_lex_state = 2}, - [2549] = {.lex_state = 247, .external_lex_state = 2}, - [2550] = {.lex_state = 42, .external_lex_state = 2}, - [2551] = {.lex_state = 135, .external_lex_state = 2}, - [2552] = {.lex_state = 254, .external_lex_state = 2}, - [2553] = {.lex_state = 247, .external_lex_state = 2}, - [2554] = {.lex_state = 247, .external_lex_state = 2}, - [2555] = {.lex_state = 135, .external_lex_state = 2}, - [2556] = {.lex_state = 42, .external_lex_state = 2}, - [2557] = {.lex_state = 769, .external_lex_state = 2}, - [2558] = {.lex_state = 770, .external_lex_state = 2}, - [2559] = {.lex_state = 133, .external_lex_state = 2}, - [2560] = {.lex_state = 247, .external_lex_state = 2}, - [2561] = {.lex_state = 42, .external_lex_state = 2}, - [2562] = {.lex_state = 769, .external_lex_state = 2}, - [2563] = {.lex_state = 148, .external_lex_state = 2}, - [2564] = {.lex_state = 148, .external_lex_state = 2}, - [2565] = {.lex_state = 770, .external_lex_state = 2}, + [2535] = {.lex_state = 697}, + [2536] = {.lex_state = 697}, + [2537] = {.lex_state = 697}, + [2538] = {.lex_state = 697}, + [2539] = {.lex_state = 697}, + [2540] = {.lex_state = 697}, + [2541] = {.lex_state = 697}, + [2542] = {.lex_state = 697}, + [2543] = {.lex_state = 697}, + [2544] = {.lex_state = 697}, + [2545] = {.lex_state = 697}, + [2546] = {.lex_state = 697}, + [2547] = {.lex_state = 770, .external_lex_state = 2}, + [2548] = {.lex_state = 697}, + [2549] = {.lex_state = 697}, + [2550] = {.lex_state = 770, .external_lex_state = 2}, + [2551] = {.lex_state = 697}, + [2552] = {.lex_state = 697}, + [2553] = {.lex_state = 697}, + [2554] = {.lex_state = 148, .external_lex_state = 2}, + [2555] = {.lex_state = 254, .external_lex_state = 2}, + [2556] = {.lex_state = 205, .external_lex_state = 2}, + [2557] = {.lex_state = 205, .external_lex_state = 2}, + [2558] = {.lex_state = 229, .external_lex_state = 2}, + [2559] = {.lex_state = 148, .external_lex_state = 2}, + [2560] = {.lex_state = 148, .external_lex_state = 2}, + [2561] = {.lex_state = 205, .external_lex_state = 2}, + [2562] = {.lex_state = 220, .external_lex_state = 2}, + [2563] = {.lex_state = 211, .external_lex_state = 2}, + [2564] = {.lex_state = 133, .external_lex_state = 2}, + [2565] = {.lex_state = 135, .external_lex_state = 2}, [2566] = {.lex_state = 148, .external_lex_state = 2}, - [2567] = {.lex_state = 205, .external_lex_state = 2}, - [2568] = {.lex_state = 769, .external_lex_state = 2}, - [2569] = {.lex_state = 205, .external_lex_state = 2}, - [2570] = {.lex_state = 148, .external_lex_state = 2}, - [2571] = {.lex_state = 42, .external_lex_state = 2}, + [2567] = {.lex_state = 229, .external_lex_state = 2}, + [2568] = {.lex_state = 135, .external_lex_state = 2}, + [2569] = {.lex_state = 135, .external_lex_state = 2}, + [2570] = {.lex_state = 135, .external_lex_state = 2}, + [2571] = {.lex_state = 142, .external_lex_state = 2}, [2572] = {.lex_state = 254, .external_lex_state = 2}, [2573] = {.lex_state = 769, .external_lex_state = 2}, - [2574] = {.lex_state = 254, .external_lex_state = 2}, - [2575] = {.lex_state = 135, .external_lex_state = 2}, - [2576] = {.lex_state = 42, .external_lex_state = 2}, - [2577] = {.lex_state = 135, .external_lex_state = 2}, - [2578] = {.lex_state = 42, .external_lex_state = 2}, - [2579] = {.lex_state = 192, .external_lex_state = 2}, - [2580] = {.lex_state = 42, .external_lex_state = 2}, - [2581] = {.lex_state = 42, .external_lex_state = 2}, - [2582] = {.lex_state = 213, .external_lex_state = 2}, - [2583] = {.lex_state = 213, .external_lex_state = 2}, - [2584] = {.lex_state = 136, .external_lex_state = 2}, - [2585] = {.lex_state = 136, .external_lex_state = 2}, - [2586] = {.lex_state = 205, .external_lex_state = 2}, - [2587] = {.lex_state = 42, .external_lex_state = 2}, - [2588] = {.lex_state = 205, .external_lex_state = 2}, - [2589] = {.lex_state = 42, .external_lex_state = 2}, - [2590] = {.lex_state = 42, .external_lex_state = 2}, - [2591] = {.lex_state = 42, .external_lex_state = 2}, - [2592] = {.lex_state = 42, .external_lex_state = 2}, - [2593] = {.lex_state = 42, .external_lex_state = 2}, - [2594] = {.lex_state = 42, .external_lex_state = 2}, - [2595] = {.lex_state = 42, .external_lex_state = 2}, - [2596] = {.lex_state = 42, .external_lex_state = 2}, - [2597] = {.lex_state = 42, .external_lex_state = 2}, - [2598] = {.lex_state = 42, .external_lex_state = 2}, - [2599] = {.lex_state = 42, .external_lex_state = 2}, - [2600] = {.lex_state = 42, .external_lex_state = 2}, - [2601] = {.lex_state = 772, .external_lex_state = 2}, - [2602] = {.lex_state = 772, .external_lex_state = 2}, + [2574] = {.lex_state = 769, .external_lex_state = 2}, + [2575] = {.lex_state = 770, .external_lex_state = 2}, + [2576] = {.lex_state = 229, .external_lex_state = 2}, + [2577] = {.lex_state = 254, .external_lex_state = 2}, + [2578] = {.lex_state = 769, .external_lex_state = 2}, + [2579] = {.lex_state = 229, .external_lex_state = 2}, + [2580] = {.lex_state = 229, .external_lex_state = 2}, + [2581] = {.lex_state = 229, .external_lex_state = 2}, + [2582] = {.lex_state = 254, .external_lex_state = 2}, + [2583] = {.lex_state = 229, .external_lex_state = 2}, + [2584] = {.lex_state = 770, .external_lex_state = 2}, + [2585] = {.lex_state = 770, .external_lex_state = 2}, + [2586] = {.lex_state = 769, .external_lex_state = 2}, + [2587] = {.lex_state = 769, .external_lex_state = 2}, + [2588] = {.lex_state = 769, .external_lex_state = 2}, + [2589] = {.lex_state = 229, .external_lex_state = 2}, + [2590] = {.lex_state = 229, .external_lex_state = 2}, + [2591] = {.lex_state = 229, .external_lex_state = 2}, + [2592] = {.lex_state = 229, .external_lex_state = 2}, + [2593] = {.lex_state = 229, .external_lex_state = 2}, + [2594] = {.lex_state = 229, .external_lex_state = 2}, + [2595] = {.lex_state = 254, .external_lex_state = 2}, + [2596] = {.lex_state = 229, .external_lex_state = 2}, + [2597] = {.lex_state = 772, .external_lex_state = 2}, + [2598] = {.lex_state = 772, .external_lex_state = 2}, + [2599] = {.lex_state = 229, .external_lex_state = 2}, + [2600] = {.lex_state = 229, .external_lex_state = 2}, + [2601] = {.lex_state = 229, .external_lex_state = 2}, + [2602] = {.lex_state = 229, .external_lex_state = 2}, [2603] = {.lex_state = 772, .external_lex_state = 2}, - [2604] = {.lex_state = 42, .external_lex_state = 2}, + [2604] = {.lex_state = 229, .external_lex_state = 2}, [2605] = {.lex_state = 772, .external_lex_state = 2}, - [2606] = {.lex_state = 42, .external_lex_state = 2}, - [2607] = {.lex_state = 42, .external_lex_state = 2}, - [2608] = {.lex_state = 772, .external_lex_state = 2}, - [2609] = {.lex_state = 42, .external_lex_state = 2}, - [2610] = {.lex_state = 42, .external_lex_state = 2}, - [2611] = {.lex_state = 42, .external_lex_state = 2}, + [2606] = {.lex_state = 229, .external_lex_state = 2}, + [2607] = {.lex_state = 229, .external_lex_state = 2}, + [2608] = {.lex_state = 213, .external_lex_state = 2}, + [2609] = {.lex_state = 229, .external_lex_state = 2}, + [2610] = {.lex_state = 229, .external_lex_state = 2}, + [2611] = {.lex_state = 229, .external_lex_state = 2}, [2612] = {.lex_state = 772, .external_lex_state = 2}, - [2613] = {.lex_state = 772, .external_lex_state = 2}, + [2613] = {.lex_state = 229, .external_lex_state = 2}, [2614] = {.lex_state = 772, .external_lex_state = 2}, - [2615] = {.lex_state = 772, .external_lex_state = 2}, - [2616] = {.lex_state = 770, .external_lex_state = 2}, - [2617] = {.lex_state = 772, .external_lex_state = 2}, - [2618] = {.lex_state = 772, .external_lex_state = 2}, - [2619] = {.lex_state = 770, .external_lex_state = 2}, - [2620] = {.lex_state = 770, .external_lex_state = 2}, - [2621] = {.lex_state = 42, .external_lex_state = 2}, - [2622] = {.lex_state = 772, .external_lex_state = 2}, - [2623] = {.lex_state = 772, .external_lex_state = 2}, + [2615] = {.lex_state = 213, .external_lex_state = 2}, + [2616] = {.lex_state = 136, .external_lex_state = 2}, + [2617] = {.lex_state = 229, .external_lex_state = 2}, + [2618] = {.lex_state = 229, .external_lex_state = 2}, + [2619] = {.lex_state = 229, .external_lex_state = 2}, + [2620] = {.lex_state = 772, .external_lex_state = 2}, + [2621] = {.lex_state = 772, .external_lex_state = 2}, + [2622] = {.lex_state = 229, .external_lex_state = 2}, + [2623] = {.lex_state = 229, .external_lex_state = 2}, [2624] = {.lex_state = 772, .external_lex_state = 2}, - [2625] = {.lex_state = 42, .external_lex_state = 2}, - [2626] = {.lex_state = 42, .external_lex_state = 2}, - [2627] = {.lex_state = 772, .external_lex_state = 2}, + [2625] = {.lex_state = 772, .external_lex_state = 2}, + [2626] = {.lex_state = 229, .external_lex_state = 2}, + [2627] = {.lex_state = 770, .external_lex_state = 2}, [2628] = {.lex_state = 772, .external_lex_state = 2}, - [2629] = {.lex_state = 772, .external_lex_state = 2}, - [2630] = {.lex_state = 192, .external_lex_state = 2}, - [2631] = {.lex_state = 42, .external_lex_state = 2}, - [2632] = {.lex_state = 42, .external_lex_state = 2}, - [2633] = {.lex_state = 42, .external_lex_state = 2}, - [2634] = {.lex_state = 42, .external_lex_state = 2}, + [2629] = {.lex_state = 229, .external_lex_state = 2}, + [2630] = {.lex_state = 229, .external_lex_state = 2}, + [2631] = {.lex_state = 229, .external_lex_state = 2}, + [2632] = {.lex_state = 772, .external_lex_state = 2}, + [2633] = {.lex_state = 772, .external_lex_state = 2}, + [2634] = {.lex_state = 229, .external_lex_state = 2}, [2635] = {.lex_state = 192, .external_lex_state = 2}, - [2636] = {.lex_state = 772, .external_lex_state = 2}, - [2637] = {.lex_state = 42, .external_lex_state = 2}, - [2638] = {.lex_state = 42, .external_lex_state = 2}, - [2639] = {.lex_state = 42, .external_lex_state = 2}, - [2640] = {.lex_state = 42, .external_lex_state = 2}, - [2641] = {.lex_state = 42, .external_lex_state = 2}, + [2636] = {.lex_state = 229, .external_lex_state = 2}, + [2637] = {.lex_state = 192, .external_lex_state = 2}, + [2638] = {.lex_state = 192, .external_lex_state = 2}, + [2639] = {.lex_state = 229, .external_lex_state = 2}, + [2640] = {.lex_state = 770, .external_lex_state = 2}, + [2641] = {.lex_state = 770, .external_lex_state = 2}, [2642] = {.lex_state = 772, .external_lex_state = 2}, - [2643] = {.lex_state = 772, .external_lex_state = 2}, + [2643] = {.lex_state = 229, .external_lex_state = 2}, [2644] = {.lex_state = 772, .external_lex_state = 2}, - [2645] = {.lex_state = 42, .external_lex_state = 2}, - [2646] = {.lex_state = 42, .external_lex_state = 2}, - [2647] = {.lex_state = 42, .external_lex_state = 2}, - [2648] = {.lex_state = 772, .external_lex_state = 2}, - [2649] = {.lex_state = 246, .external_lex_state = 2}, - [2650] = {.lex_state = 46, .external_lex_state = 2}, - [2651] = {.lex_state = 203, .external_lex_state = 2}, - [2652] = {.lex_state = 203, .external_lex_state = 2}, - [2653] = {.lex_state = 237, .external_lex_state = 2}, - [2654] = {.lex_state = 235, .external_lex_state = 2}, - [2655] = {.lex_state = 751, .external_lex_state = 2}, - [2656] = {.lex_state = 237, .external_lex_state = 2}, + [2645] = {.lex_state = 229, .external_lex_state = 2}, + [2646] = {.lex_state = 229, .external_lex_state = 2}, + [2647] = {.lex_state = 229, .external_lex_state = 2}, + [2648] = {.lex_state = 229, .external_lex_state = 2}, + [2649] = {.lex_state = 229, .external_lex_state = 2}, + [2650] = {.lex_state = 772, .external_lex_state = 2}, + [2651] = {.lex_state = 136, .external_lex_state = 2}, + [2652] = {.lex_state = 205, .external_lex_state = 2}, + [2653] = {.lex_state = 205, .external_lex_state = 2}, + [2654] = {.lex_state = 229, .external_lex_state = 2}, + [2655] = {.lex_state = 772, .external_lex_state = 2}, + [2656] = {.lex_state = 772, .external_lex_state = 2}, [2657] = {.lex_state = 772, .external_lex_state = 2}, - [2658] = {.lex_state = 237, .external_lex_state = 2}, - [2659] = {.lex_state = 206, .external_lex_state = 2}, - [2660] = {.lex_state = 203, .external_lex_state = 2}, - [2661] = {.lex_state = 203, .external_lex_state = 2}, - [2662] = {.lex_state = 772, .external_lex_state = 2}, - [2663] = {.lex_state = 203, .external_lex_state = 2}, - [2664] = {.lex_state = 237, .external_lex_state = 2}, - [2665] = {.lex_state = 203, .external_lex_state = 2}, + [2658] = {.lex_state = 772, .external_lex_state = 2}, + [2659] = {.lex_state = 229, .external_lex_state = 2}, + [2660] = {.lex_state = 229, .external_lex_state = 2}, + [2661] = {.lex_state = 229, .external_lex_state = 2}, + [2662] = {.lex_state = 229, .external_lex_state = 2}, + [2663] = {.lex_state = 772, .external_lex_state = 2}, + [2664] = {.lex_state = 229, .external_lex_state = 2}, + [2665] = {.lex_state = 229, .external_lex_state = 2}, [2666] = {.lex_state = 772, .external_lex_state = 2}, - [2667] = {.lex_state = 772, .external_lex_state = 2}, + [2667] = {.lex_state = 137, .external_lex_state = 2}, [2668] = {.lex_state = 772, .external_lex_state = 2}, [2669] = {.lex_state = 772, .external_lex_state = 2}, [2670] = {.lex_state = 772, .external_lex_state = 2}, - [2671] = {.lex_state = 751, .external_lex_state = 2}, - [2672] = {.lex_state = 772, .external_lex_state = 2}, - [2673] = {.lex_state = 772, .external_lex_state = 2}, - [2674] = {.lex_state = 772, .external_lex_state = 2}, - [2675] = {.lex_state = 246, .external_lex_state = 2}, - [2676] = {.lex_state = 772, .external_lex_state = 2}, - [2677] = {.lex_state = 214, .external_lex_state = 2}, - [2678] = {.lex_state = 246, .external_lex_state = 2}, - [2679] = {.lex_state = 202, .external_lex_state = 2}, - [2680] = {.lex_state = 137, .external_lex_state = 2}, - [2681] = {.lex_state = 772, .external_lex_state = 2}, - [2682] = {.lex_state = 772, .external_lex_state = 2}, - [2683] = {.lex_state = 772, .external_lex_state = 2}, - [2684] = {.lex_state = 772, .external_lex_state = 2}, - [2685] = {.lex_state = 246, .external_lex_state = 2}, - [2686] = {.lex_state = 772, .external_lex_state = 2}, - [2687] = {.lex_state = 772, .external_lex_state = 2}, - [2688] = {.lex_state = 204, .external_lex_state = 2}, - [2689] = {.lex_state = 772, .external_lex_state = 2}, - [2690] = {.lex_state = 214, .external_lex_state = 2}, - [2691] = {.lex_state = 772, .external_lex_state = 2}, - [2692] = {.lex_state = 214, .external_lex_state = 2}, - [2693] = {.lex_state = 772, .external_lex_state = 2}, - [2694] = {.lex_state = 237, .external_lex_state = 2}, - [2695] = {.lex_state = 235, .external_lex_state = 2}, - [2696] = {.lex_state = 246, .external_lex_state = 2}, - [2697] = {.lex_state = 246, .external_lex_state = 2}, - [2698] = {.lex_state = 137, .external_lex_state = 2}, - [2699] = {.lex_state = 246, .external_lex_state = 2}, - [2700] = {.lex_state = 246, .external_lex_state = 2}, - [2701] = {.lex_state = 246, .external_lex_state = 2}, - [2702] = {.lex_state = 214, .external_lex_state = 2}, - [2703] = {.lex_state = 221, .external_lex_state = 2}, - [2704] = {.lex_state = 137, .external_lex_state = 2}, - [2705] = {.lex_state = 246, .external_lex_state = 2}, - [2706] = {.lex_state = 246, .external_lex_state = 2}, - [2707] = {.lex_state = 246, .external_lex_state = 2}, - [2708] = {.lex_state = 246, .external_lex_state = 2}, - [2709] = {.lex_state = 246, .external_lex_state = 2}, + [2671] = {.lex_state = 772, .external_lex_state = 2}, + [2672] = {.lex_state = 239, .external_lex_state = 2}, + [2673] = {.lex_state = 239, .external_lex_state = 2}, + [2674] = {.lex_state = 239, .external_lex_state = 2}, + [2675] = {.lex_state = 772, .external_lex_state = 2}, + [2676] = {.lex_state = 192, .external_lex_state = 2}, + [2677] = {.lex_state = 212, .external_lex_state = 2}, + [2678] = {.lex_state = 192, .external_lex_state = 2}, + [2679] = {.lex_state = 772, .external_lex_state = 2}, + [2680] = {.lex_state = 214, .external_lex_state = 2}, + [2681] = {.lex_state = 214, .external_lex_state = 2}, + [2682] = {.lex_state = 214, .external_lex_state = 2}, + [2683] = {.lex_state = 214, .external_lex_state = 2}, + [2684] = {.lex_state = 214, .external_lex_state = 2}, + [2685] = {.lex_state = 221, .external_lex_state = 2}, + [2686] = {.lex_state = 137, .external_lex_state = 2}, + [2687] = {.lex_state = 137, .external_lex_state = 2}, + [2688] = {.lex_state = 137, .external_lex_state = 2}, + [2689] = {.lex_state = 137, .external_lex_state = 2}, + [2690] = {.lex_state = 137, .external_lex_state = 2}, + [2691] = {.lex_state = 203, .external_lex_state = 2}, + [2692] = {.lex_state = 203, .external_lex_state = 2}, + [2693] = {.lex_state = 751, .external_lex_state = 2}, + [2694] = {.lex_state = 751, .external_lex_state = 2}, + [2695] = {.lex_state = 203, .external_lex_state = 2}, + [2696] = {.lex_state = 203, .external_lex_state = 2}, + [2697] = {.lex_state = 203, .external_lex_state = 2}, + [2698] = {.lex_state = 203, .external_lex_state = 2}, + [2699] = {.lex_state = 202, .external_lex_state = 2}, + [2700] = {.lex_state = 248, .external_lex_state = 2}, + [2701] = {.lex_state = 204, .external_lex_state = 2}, + [2702] = {.lex_state = 772, .external_lex_state = 2}, + [2703] = {.lex_state = 772, .external_lex_state = 2}, + [2704] = {.lex_state = 239, .external_lex_state = 2}, + [2705] = {.lex_state = 772, .external_lex_state = 2}, + [2706] = {.lex_state = 237, .external_lex_state = 2}, + [2707] = {.lex_state = 237, .external_lex_state = 2}, + [2708] = {.lex_state = 772, .external_lex_state = 2}, + [2709] = {.lex_state = 239, .external_lex_state = 2}, [2710] = {.lex_state = 772, .external_lex_state = 2}, - [2711] = {.lex_state = 192, .external_lex_state = 2}, - [2712] = {.lex_state = 246, .external_lex_state = 2}, - [2713] = {.lex_state = 246, .external_lex_state = 2}, - [2714] = {.lex_state = 246, .external_lex_state = 2}, - [2715] = {.lex_state = 246, .external_lex_state = 2}, - [2716] = {.lex_state = 246, .external_lex_state = 2}, - [2717] = {.lex_state = 246, .external_lex_state = 2}, - [2718] = {.lex_state = 137, .external_lex_state = 2}, - [2719] = {.lex_state = 246, .external_lex_state = 2}, - [2720] = {.lex_state = 212, .external_lex_state = 2}, - [2721] = {.lex_state = 246, .external_lex_state = 2}, - [2722] = {.lex_state = 137, .external_lex_state = 2}, - [2723] = {.lex_state = 772, .external_lex_state = 2}, - [2724] = {.lex_state = 137, .external_lex_state = 2}, - [2725] = {.lex_state = 192, .external_lex_state = 2}, - [2726] = {.lex_state = 235, .external_lex_state = 2}, - [2727] = {.lex_state = 214, .external_lex_state = 2}, - [2728] = {.lex_state = 246, .external_lex_state = 2}, - [2729] = {.lex_state = 235, .external_lex_state = 2}, - [2730] = {.lex_state = 209, .external_lex_state = 2}, - [2731] = {.lex_state = 209, .external_lex_state = 2}, - [2732] = {.lex_state = 209, .external_lex_state = 2}, - [2733] = {.lex_state = 209, .external_lex_state = 2}, - [2734] = {.lex_state = 209, .external_lex_state = 2}, - [2735] = {.lex_state = 209, .external_lex_state = 2}, - [2736] = {.lex_state = 246, .external_lex_state = 2}, - [2737] = {.lex_state = 209, .external_lex_state = 2}, - [2738] = {.lex_state = 209, .external_lex_state = 2}, - [2739] = {.lex_state = 209, .external_lex_state = 2}, - [2740] = {.lex_state = 215, .external_lex_state = 2}, - [2741] = {.lex_state = 237, .external_lex_state = 2}, - [2742] = {.lex_state = 246, .external_lex_state = 2}, - [2743] = {.lex_state = 190, .external_lex_state = 2}, - [2744] = {.lex_state = 190, .external_lex_state = 2}, - [2745] = {.lex_state = 190, .external_lex_state = 2}, - [2746] = {.lex_state = 215, .external_lex_state = 2}, - [2747] = {.lex_state = 200, .external_lex_state = 2}, - [2748] = {.lex_state = 190, .external_lex_state = 2}, - [2749] = {.lex_state = 190, .external_lex_state = 2}, - [2750] = {.lex_state = 200, .external_lex_state = 2}, - [2751] = {.lex_state = 143, .external_lex_state = 2}, - [2752] = {.lex_state = 236, .external_lex_state = 2}, - [2753] = {.lex_state = 236, .external_lex_state = 2}, - [2754] = {.lex_state = 209, .external_lex_state = 2}, - [2755] = {.lex_state = 190, .external_lex_state = 2}, - [2756] = {.lex_state = 209, .external_lex_state = 2}, - [2757] = {.lex_state = 236, .external_lex_state = 2}, - [2758] = {.lex_state = 236, .external_lex_state = 2}, - [2759] = {.lex_state = 205, .external_lex_state = 2}, - [2760] = {.lex_state = 236, .external_lex_state = 2}, - [2761] = {.lex_state = 237, .external_lex_state = 2}, - [2762] = {.lex_state = 138, .external_lex_state = 2}, - [2763] = {.lex_state = 46, .external_lex_state = 2}, - [2764] = {.lex_state = 193, .external_lex_state = 2}, - [2765] = {.lex_state = 236, .external_lex_state = 2}, - [2766] = {.lex_state = 205, .external_lex_state = 2}, - [2767] = {.lex_state = 205, .external_lex_state = 2}, + [2711] = {.lex_state = 248, .external_lex_state = 2}, + [2712] = {.lex_state = 772, .external_lex_state = 2}, + [2713] = {.lex_state = 44, .external_lex_state = 2}, + [2714] = {.lex_state = 248, .external_lex_state = 2}, + [2715] = {.lex_state = 772, .external_lex_state = 2}, + [2716] = {.lex_state = 772, .external_lex_state = 2}, + [2717] = {.lex_state = 772, .external_lex_state = 2}, + [2718] = {.lex_state = 772, .external_lex_state = 2}, + [2719] = {.lex_state = 772, .external_lex_state = 2}, + [2720] = {.lex_state = 248, .external_lex_state = 2}, + [2721] = {.lex_state = 206, .external_lex_state = 2}, + [2722] = {.lex_state = 772, .external_lex_state = 2}, + [2723] = {.lex_state = 237, .external_lex_state = 2}, + [2724] = {.lex_state = 237, .external_lex_state = 2}, + [2725] = {.lex_state = 248, .external_lex_state = 2}, + [2726] = {.lex_state = 772, .external_lex_state = 2}, + [2727] = {.lex_state = 772, .external_lex_state = 2}, + [2728] = {.lex_state = 248, .external_lex_state = 2}, + [2729] = {.lex_state = 248, .external_lex_state = 2}, + [2730] = {.lex_state = 772, .external_lex_state = 2}, + [2731] = {.lex_state = 248, .external_lex_state = 2}, + [2732] = {.lex_state = 248, .external_lex_state = 2}, + [2733] = {.lex_state = 248, .external_lex_state = 2}, + [2734] = {.lex_state = 248, .external_lex_state = 2}, + [2735] = {.lex_state = 248, .external_lex_state = 2}, + [2736] = {.lex_state = 248, .external_lex_state = 2}, + [2737] = {.lex_state = 248, .external_lex_state = 2}, + [2738] = {.lex_state = 248, .external_lex_state = 2}, + [2739] = {.lex_state = 248, .external_lex_state = 2}, + [2740] = {.lex_state = 248, .external_lex_state = 2}, + [2741] = {.lex_state = 248, .external_lex_state = 2}, + [2742] = {.lex_state = 248, .external_lex_state = 2}, + [2743] = {.lex_state = 248, .external_lex_state = 2}, + [2744] = {.lex_state = 248, .external_lex_state = 2}, + [2745] = {.lex_state = 248, .external_lex_state = 2}, + [2746] = {.lex_state = 248, .external_lex_state = 2}, + [2747] = {.lex_state = 772, .external_lex_state = 2}, + [2748] = {.lex_state = 238, .external_lex_state = 2}, + [2749] = {.lex_state = 205, .external_lex_state = 2}, + [2750] = {.lex_state = 138, .external_lex_state = 2}, + [2751] = {.lex_state = 205, .external_lex_state = 2}, + [2752] = {.lex_state = 205, .external_lex_state = 2}, + [2753] = {.lex_state = 248, .external_lex_state = 2}, + [2754] = {.lex_state = 189, .external_lex_state = 2}, + [2755] = {.lex_state = 215, .external_lex_state = 2}, + [2756] = {.lex_state = 44, .external_lex_state = 2}, + [2757] = {.lex_state = 209, .external_lex_state = 2}, + [2758] = {.lex_state = 209, .external_lex_state = 2}, + [2759] = {.lex_state = 209, .external_lex_state = 2}, + [2760] = {.lex_state = 200, .external_lex_state = 2}, + [2761] = {.lex_state = 209, .external_lex_state = 2}, + [2762] = {.lex_state = 200, .external_lex_state = 2}, + [2763] = {.lex_state = 209, .external_lex_state = 2}, + [2764] = {.lex_state = 209, .external_lex_state = 2}, + [2765] = {.lex_state = 190, .external_lex_state = 2}, + [2766] = {.lex_state = 143, .external_lex_state = 2}, + [2767] = {.lex_state = 209, .external_lex_state = 2}, [2768] = {.lex_state = 209, .external_lex_state = 2}, - [2769] = {.lex_state = 189, .external_lex_state = 2}, + [2769] = {.lex_state = 191, .external_lex_state = 2}, [2770] = {.lex_state = 209, .external_lex_state = 2}, [2771] = {.lex_state = 209, .external_lex_state = 2}, [2772] = {.lex_state = 209, .external_lex_state = 2}, @@ -57175,441 +57329,441 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2775] = {.lex_state = 209, .external_lex_state = 2}, [2776] = {.lex_state = 209, .external_lex_state = 2}, [2777] = {.lex_state = 209, .external_lex_state = 2}, - [2778] = {.lex_state = 191, .external_lex_state = 2}, - [2779] = {.lex_state = 244, .external_lex_state = 2}, - [2780] = {.lex_state = 216, .external_lex_state = 2}, - [2781] = {.lex_state = 192, .external_lex_state = 2}, - [2782] = {.lex_state = 193, .external_lex_state = 2}, - [2783] = {.lex_state = 244, .external_lex_state = 2}, - [2784] = {.lex_state = 201, .external_lex_state = 2}, - [2785] = {.lex_state = 45, .external_lex_state = 2}, - [2786] = {.lex_state = 193, .external_lex_state = 2}, - [2787] = {.lex_state = 201, .external_lex_state = 2}, - [2788] = {.lex_state = 193, .external_lex_state = 2}, + [2778] = {.lex_state = 209, .external_lex_state = 2}, + [2779] = {.lex_state = 190, .external_lex_state = 2}, + [2780] = {.lex_state = 209, .external_lex_state = 2}, + [2781] = {.lex_state = 238, .external_lex_state = 2}, + [2782] = {.lex_state = 238, .external_lex_state = 2}, + [2783] = {.lex_state = 238, .external_lex_state = 2}, + [2784] = {.lex_state = 215, .external_lex_state = 2}, + [2785] = {.lex_state = 239, .external_lex_state = 2}, + [2786] = {.lex_state = 238, .external_lex_state = 2}, + [2787] = {.lex_state = 209, .external_lex_state = 2}, + [2788] = {.lex_state = 238, .external_lex_state = 2}, [2789] = {.lex_state = 193, .external_lex_state = 2}, - [2790] = {.lex_state = 201, .external_lex_state = 2}, - [2791] = {.lex_state = 244, .external_lex_state = 2}, - [2792] = {.lex_state = 193, .external_lex_state = 2}, - [2793] = {.lex_state = 192, .external_lex_state = 2}, - [2794] = {.lex_state = 46, .external_lex_state = 2}, - [2795] = {.lex_state = 193, .external_lex_state = 2}, - [2796] = {.lex_state = 192, .external_lex_state = 2}, - [2797] = {.lex_state = 201, .external_lex_state = 2}, - [2798] = {.lex_state = 245, .external_lex_state = 2}, - [2799] = {.lex_state = 216, .external_lex_state = 2}, - [2800] = {.lex_state = 216, .external_lex_state = 2}, - [2801] = {.lex_state = 201, .external_lex_state = 2}, - [2802] = {.lex_state = 245, .external_lex_state = 2}, - [2803] = {.lex_state = 244, .external_lex_state = 2}, - [2804] = {.lex_state = 216, .external_lex_state = 2}, - [2805] = {.lex_state = 42, .external_lex_state = 2}, - [2806] = {.lex_state = 193, .external_lex_state = 2}, - [2807] = {.lex_state = 139, .external_lex_state = 2}, - [2808] = {.lex_state = 193, .external_lex_state = 2}, - [2809] = {.lex_state = 244, .external_lex_state = 2}, + [2790] = {.lex_state = 239, .external_lex_state = 2}, + [2791] = {.lex_state = 190, .external_lex_state = 2}, + [2792] = {.lex_state = 248, .external_lex_state = 2}, + [2793] = {.lex_state = 190, .external_lex_state = 2}, + [2794] = {.lex_state = 190, .external_lex_state = 2}, + [2795] = {.lex_state = 190, .external_lex_state = 2}, + [2796] = {.lex_state = 209, .external_lex_state = 2}, + [2797] = {.lex_state = 216, .external_lex_state = 2}, + [2798] = {.lex_state = 201, .external_lex_state = 2}, + [2799] = {.lex_state = 229, .external_lex_state = 2}, + [2800] = {.lex_state = 139, .external_lex_state = 2}, + [2801] = {.lex_state = 192, .external_lex_state = 2}, + [2802] = {.lex_state = 247, .external_lex_state = 2}, + [2803] = {.lex_state = 246, .external_lex_state = 2}, + [2804] = {.lex_state = 246, .external_lex_state = 2}, + [2805] = {.lex_state = 246, .external_lex_state = 2}, + [2806] = {.lex_state = 187, .external_lex_state = 2}, + [2807] = {.lex_state = 216, .external_lex_state = 2}, + [2808] = {.lex_state = 192, .external_lex_state = 2}, + [2809] = {.lex_state = 192, .external_lex_state = 2}, [2810] = {.lex_state = 201, .external_lex_state = 2}, [2811] = {.lex_state = 216, .external_lex_state = 2}, - [2812] = {.lex_state = 245, .external_lex_state = 2}, - [2813] = {.lex_state = 193, .external_lex_state = 2}, - [2814] = {.lex_state = 245, .external_lex_state = 2}, - [2815] = {.lex_state = 201, .external_lex_state = 2}, - [2816] = {.lex_state = 245, .external_lex_state = 2}, - [2817] = {.lex_state = 245, .external_lex_state = 2}, - [2818] = {.lex_state = 193, .external_lex_state = 2}, - [2819] = {.lex_state = 193, .external_lex_state = 2}, - [2820] = {.lex_state = 193, .external_lex_state = 2}, - [2821] = {.lex_state = 44, .external_lex_state = 2}, + [2812] = {.lex_state = 201, .external_lex_state = 2}, + [2813] = {.lex_state = 249, .external_lex_state = 2}, + [2814] = {.lex_state = 43, .external_lex_state = 2}, + [2815] = {.lex_state = 246, .external_lex_state = 2}, + [2816] = {.lex_state = 247, .external_lex_state = 2}, + [2817] = {.lex_state = 246, .external_lex_state = 2}, + [2818] = {.lex_state = 246, .external_lex_state = 2}, + [2819] = {.lex_state = 246, .external_lex_state = 2}, + [2820] = {.lex_state = 209, .external_lex_state = 2}, + [2821] = {.lex_state = 201, .external_lex_state = 2}, [2822] = {.lex_state = 201, .external_lex_state = 2}, [2823] = {.lex_state = 201, .external_lex_state = 2}, - [2824] = {.lex_state = 201, .external_lex_state = 2}, - [2825] = {.lex_state = 201, .external_lex_state = 2}, - [2826] = {.lex_state = 139, .external_lex_state = 2}, - [2827] = {.lex_state = 248, .external_lex_state = 2}, + [2824] = {.lex_state = 139, .external_lex_state = 2}, + [2825] = {.lex_state = 246, .external_lex_state = 2}, + [2826] = {.lex_state = 193, .external_lex_state = 2}, + [2827] = {.lex_state = 201, .external_lex_state = 2}, [2828] = {.lex_state = 201, .external_lex_state = 2}, - [2829] = {.lex_state = 187, .external_lex_state = 2}, - [2830] = {.lex_state = 244, .external_lex_state = 2}, - [2831] = {.lex_state = 201, .external_lex_state = 2}, - [2832] = {.lex_state = 244, .external_lex_state = 2}, - [2833] = {.lex_state = 209, .external_lex_state = 2}, + [2829] = {.lex_state = 201, .external_lex_state = 2}, + [2830] = {.lex_state = 247, .external_lex_state = 2}, + [2831] = {.lex_state = 193, .external_lex_state = 2}, + [2832] = {.lex_state = 193, .external_lex_state = 2}, + [2833] = {.lex_state = 216, .external_lex_state = 2}, [2834] = {.lex_state = 193, .external_lex_state = 2}, - [2835] = {.lex_state = 201, .external_lex_state = 2}, - [2836] = {.lex_state = 209, .external_lex_state = 2}, + [2835] = {.lex_state = 193, .external_lex_state = 2}, + [2836] = {.lex_state = 193, .external_lex_state = 2}, [2837] = {.lex_state = 193, .external_lex_state = 2}, [2838] = {.lex_state = 193, .external_lex_state = 2}, - [2839] = {.lex_state = 201, .external_lex_state = 2}, + [2839] = {.lex_state = 193, .external_lex_state = 2}, [2840] = {.lex_state = 193, .external_lex_state = 2}, - [2841] = {.lex_state = 187, .external_lex_state = 2}, + [2841] = {.lex_state = 247, .external_lex_state = 2}, [2842] = {.lex_state = 193, .external_lex_state = 2}, [2843] = {.lex_state = 193, .external_lex_state = 2}, - [2844] = {.lex_state = 244, .external_lex_state = 2}, - [2845] = {.lex_state = 244, .external_lex_state = 2}, + [2844] = {.lex_state = 247, .external_lex_state = 2}, + [2845] = {.lex_state = 247, .external_lex_state = 2}, [2846] = {.lex_state = 193, .external_lex_state = 2}, [2847] = {.lex_state = 193, .external_lex_state = 2}, - [2848] = {.lex_state = 216, .external_lex_state = 2}, + [2848] = {.lex_state = 201, .external_lex_state = 2}, [2849] = {.lex_state = 193, .external_lex_state = 2}, - [2850] = {.lex_state = 262, .external_lex_state = 2}, - [2851] = {.lex_state = 246, .external_lex_state = 2}, - [2852] = {.lex_state = 140, .external_lex_state = 2}, - [2853] = {.lex_state = 262, .external_lex_state = 2}, - [2854] = {.lex_state = 140, .external_lex_state = 2}, - [2855] = {.lex_state = 188, .external_lex_state = 2}, - [2856] = {.lex_state = 103, .external_lex_state = 2}, - [2857] = {.lex_state = 140, .external_lex_state = 2}, - [2858] = {.lex_state = 262, .external_lex_state = 2}, - [2859] = {.lex_state = 140, .external_lex_state = 2}, - [2860] = {.lex_state = 188, .external_lex_state = 2}, - [2861] = {.lex_state = 45, .external_lex_state = 2}, - [2862] = {.lex_state = 244, .external_lex_state = 2}, - [2863] = {.lex_state = 188, .external_lex_state = 2}, - [2864] = {.lex_state = 207, .external_lex_state = 2}, - [2865] = {.lex_state = 207, .external_lex_state = 2}, - [2866] = {.lex_state = 188, .external_lex_state = 2}, - [2867] = {.lex_state = 188, .external_lex_state = 2}, - [2868] = {.lex_state = 140, .external_lex_state = 2}, - [2869] = {.lex_state = 42, .external_lex_state = 2}, - [2870] = {.lex_state = 246, .external_lex_state = 2}, - [2871] = {.lex_state = 246, .external_lex_state = 2}, - [2872] = {.lex_state = 251, .external_lex_state = 2}, - [2873] = {.lex_state = 188, .external_lex_state = 2}, + [2850] = {.lex_state = 246, .external_lex_state = 2}, + [2851] = {.lex_state = 44, .external_lex_state = 2}, + [2852] = {.lex_state = 193, .external_lex_state = 2}, + [2853] = {.lex_state = 201, .external_lex_state = 2}, + [2854] = {.lex_state = 216, .external_lex_state = 2}, + [2855] = {.lex_state = 201, .external_lex_state = 2}, + [2856] = {.lex_state = 193, .external_lex_state = 2}, + [2857] = {.lex_state = 216, .external_lex_state = 2}, + [2858] = {.lex_state = 209, .external_lex_state = 2}, + [2859] = {.lex_state = 187, .external_lex_state = 2}, + [2860] = {.lex_state = 42, .external_lex_state = 2}, + [2861] = {.lex_state = 193, .external_lex_state = 2}, + [2862] = {.lex_state = 193, .external_lex_state = 2}, + [2863] = {.lex_state = 201, .external_lex_state = 2}, + [2864] = {.lex_state = 201, .external_lex_state = 2}, + [2865] = {.lex_state = 201, .external_lex_state = 2}, + [2866] = {.lex_state = 193, .external_lex_state = 2}, + [2867] = {.lex_state = 193, .external_lex_state = 2}, + [2868] = {.lex_state = 42, .external_lex_state = 2}, + [2869] = {.lex_state = 47, .external_lex_state = 2}, + [2870] = {.lex_state = 188, .external_lex_state = 2}, + [2871] = {.lex_state = 193, .external_lex_state = 2}, + [2872] = {.lex_state = 199, .external_lex_state = 2}, + [2873] = {.lex_state = 47, .external_lex_state = 2}, [2874] = {.lex_state = 140, .external_lex_state = 2}, - [2875] = {.lex_state = 44, .external_lex_state = 2}, - [2876] = {.lex_state = 42, .external_lex_state = 2}, - [2877] = {.lex_state = 207, .external_lex_state = 2}, - [2878] = {.lex_state = 188, .external_lex_state = 2}, - [2879] = {.lex_state = 261, .external_lex_state = 2}, - [2880] = {.lex_state = 261, .external_lex_state = 2}, - [2881] = {.lex_state = 207, .external_lex_state = 2}, - [2882] = {.lex_state = 207, .external_lex_state = 2}, + [2875] = {.lex_state = 188, .external_lex_state = 2}, + [2876] = {.lex_state = 140, .external_lex_state = 2}, + [2877] = {.lex_state = 262, .external_lex_state = 2}, + [2878] = {.lex_state = 222, .external_lex_state = 2}, + [2879] = {.lex_state = 140, .external_lex_state = 2}, + [2880] = {.lex_state = 217, .external_lex_state = 2}, + [2881] = {.lex_state = 103, .external_lex_state = 2}, + [2882] = {.lex_state = 229, .external_lex_state = 2}, [2883] = {.lex_state = 188, .external_lex_state = 2}, - [2884] = {.lex_state = 262, .external_lex_state = 2}, - [2885] = {.lex_state = 207, .external_lex_state = 2}, + [2884] = {.lex_state = 248, .external_lex_state = 2}, + [2885] = {.lex_state = 261, .external_lex_state = 2}, [2886] = {.lex_state = 261, .external_lex_state = 2}, - [2887] = {.lex_state = 261, .external_lex_state = 2}, - [2888] = {.lex_state = 188, .external_lex_state = 2}, - [2889] = {.lex_state = 199, .external_lex_state = 2}, - [2890] = {.lex_state = 188, .external_lex_state = 2}, + [2887] = {.lex_state = 193, .external_lex_state = 2}, + [2888] = {.lex_state = 140, .external_lex_state = 2}, + [2889] = {.lex_state = 261, .external_lex_state = 2}, + [2890] = {.lex_state = 261, .external_lex_state = 2}, [2891] = {.lex_state = 140, .external_lex_state = 2}, - [2892] = {.lex_state = 188, .external_lex_state = 2}, - [2893] = {.lex_state = 244, .external_lex_state = 2}, - [2894] = {.lex_state = 140, .external_lex_state = 2}, - [2895] = {.lex_state = 193, .external_lex_state = 2}, - [2896] = {.lex_state = 217, .external_lex_state = 2}, + [2892] = {.lex_state = 246, .external_lex_state = 2}, + [2893] = {.lex_state = 188, .external_lex_state = 2}, + [2894] = {.lex_state = 188, .external_lex_state = 2}, + [2895] = {.lex_state = 229, .external_lex_state = 2}, + [2896] = {.lex_state = 261, .external_lex_state = 2}, [2897] = {.lex_state = 188, .external_lex_state = 2}, - [2898] = {.lex_state = 208, .external_lex_state = 2}, - [2899] = {.lex_state = 42, .external_lex_state = 2}, - [2900] = {.lex_state = 140, .external_lex_state = 2}, - [2901] = {.lex_state = 698}, - [2902] = {.lex_state = 700}, - [2903] = {.lex_state = 261, .external_lex_state = 2}, - [2904] = {.lex_state = 193, .external_lex_state = 2}, - [2905] = {.lex_state = 222, .external_lex_state = 2}, - [2906] = {.lex_state = 188, .external_lex_state = 2}, - [2907] = {.lex_state = 188, .external_lex_state = 2}, - [2908] = {.lex_state = 188, .external_lex_state = 2}, + [2898] = {.lex_state = 262, .external_lex_state = 2}, + [2899] = {.lex_state = 262, .external_lex_state = 2}, + [2900] = {.lex_state = 188, .external_lex_state = 2}, + [2901] = {.lex_state = 140, .external_lex_state = 2}, + [2902] = {.lex_state = 140, .external_lex_state = 2}, + [2903] = {.lex_state = 43, .external_lex_state = 2}, + [2904] = {.lex_state = 188, .external_lex_state = 2}, + [2905] = {.lex_state = 207, .external_lex_state = 2}, + [2906] = {.lex_state = 208, .external_lex_state = 2}, + [2907] = {.lex_state = 698}, + [2908] = {.lex_state = 700}, [2909] = {.lex_state = 262, .external_lex_state = 2}, - [2910] = {.lex_state = 42, .external_lex_state = 2}, - [2911] = {.lex_state = 180, .external_lex_state = 2}, - [2912] = {.lex_state = 103, .external_lex_state = 2}, - [2913] = {.lex_state = 223, .external_lex_state = 2}, - [2914] = {.lex_state = 42, .external_lex_state = 2}, - [2915] = {.lex_state = 103, .external_lex_state = 2}, - [2916] = {.lex_state = 209, .external_lex_state = 2}, - [2917] = {.lex_state = 209, .external_lex_state = 2}, - [2918] = {.lex_state = 194, .external_lex_state = 2}, - [2919] = {.lex_state = 42, .external_lex_state = 2}, - [2920] = {.lex_state = 180, .external_lex_state = 2}, - [2921] = {.lex_state = 180, .external_lex_state = 2}, - [2922] = {.lex_state = 42, .external_lex_state = 2}, - [2923] = {.lex_state = 180, .external_lex_state = 2}, - [2924] = {.lex_state = 180, .external_lex_state = 2}, - [2925] = {.lex_state = 186, .external_lex_state = 2}, - [2926] = {.lex_state = 180, .external_lex_state = 2}, - [2927] = {.lex_state = 42, .external_lex_state = 2}, - [2928] = {.lex_state = 42, .external_lex_state = 2}, - [2929] = {.lex_state = 42, .external_lex_state = 2}, - [2930] = {.lex_state = 196, .external_lex_state = 2}, - [2931] = {.lex_state = 180, .external_lex_state = 2}, - [2932] = {.lex_state = 42, .external_lex_state = 2}, - [2933] = {.lex_state = 180, .external_lex_state = 2}, - [2934] = {.lex_state = 42, .external_lex_state = 2}, - [2935] = {.lex_state = 42, .external_lex_state = 2}, - [2936] = {.lex_state = 196, .external_lex_state = 2}, - [2937] = {.lex_state = 42, .external_lex_state = 2}, - [2938] = {.lex_state = 42, .external_lex_state = 2}, - [2939] = {.lex_state = 42, .external_lex_state = 2}, - [2940] = {.lex_state = 42, .external_lex_state = 2}, - [2941] = {.lex_state = 42, .external_lex_state = 2}, - [2942] = {.lex_state = 42, .external_lex_state = 2}, - [2943] = {.lex_state = 42, .external_lex_state = 2}, - [2944] = {.lex_state = 42, .external_lex_state = 2}, - [2945] = {.lex_state = 42, .external_lex_state = 2}, - [2946] = {.lex_state = 42, .external_lex_state = 2}, - [2947] = {.lex_state = 42, .external_lex_state = 2}, - [2948] = {.lex_state = 42, .external_lex_state = 2}, - [2949] = {.lex_state = 42, .external_lex_state = 2}, - [2950] = {.lex_state = 42, .external_lex_state = 2}, - [2951] = {.lex_state = 42, .external_lex_state = 2}, - [2952] = {.lex_state = 42, .external_lex_state = 2}, - [2953] = {.lex_state = 42, .external_lex_state = 2}, - [2954] = {.lex_state = 42, .external_lex_state = 2}, - [2955] = {.lex_state = 180, .external_lex_state = 2}, - [2956] = {.lex_state = 42, .external_lex_state = 2}, - [2957] = {.lex_state = 218, .external_lex_state = 2}, - [2958] = {.lex_state = 194, .external_lex_state = 2}, - [2959] = {.lex_state = 42, .external_lex_state = 2}, - [2960] = {.lex_state = 209, .external_lex_state = 2}, - [2961] = {.lex_state = 42, .external_lex_state = 2}, - [2962] = {.lex_state = 42, .external_lex_state = 2}, - [2963] = {.lex_state = 47, .external_lex_state = 2}, - [2964] = {.lex_state = 42, .external_lex_state = 2}, - [2965] = {.lex_state = 195, .external_lex_state = 2}, - [2966] = {.lex_state = 218, .external_lex_state = 2}, - [2967] = {.lex_state = 42, .external_lex_state = 2}, - [2968] = {.lex_state = 42, .external_lex_state = 2}, - [2969] = {.lex_state = 42, .external_lex_state = 2}, - [2970] = {.lex_state = 42, .external_lex_state = 2}, + [2910] = {.lex_state = 188, .external_lex_state = 2}, + [2911] = {.lex_state = 248, .external_lex_state = 2}, + [2912] = {.lex_state = 188, .external_lex_state = 2}, + [2913] = {.lex_state = 188, .external_lex_state = 2}, + [2914] = {.lex_state = 248, .external_lex_state = 2}, + [2915] = {.lex_state = 188, .external_lex_state = 2}, + [2916] = {.lex_state = 207, .external_lex_state = 2}, + [2917] = {.lex_state = 207, .external_lex_state = 2}, + [2918] = {.lex_state = 188, .external_lex_state = 2}, + [2919] = {.lex_state = 140, .external_lex_state = 2}, + [2920] = {.lex_state = 188, .external_lex_state = 2}, + [2921] = {.lex_state = 246, .external_lex_state = 2}, + [2922] = {.lex_state = 207, .external_lex_state = 2}, + [2923] = {.lex_state = 207, .external_lex_state = 2}, + [2924] = {.lex_state = 207, .external_lex_state = 2}, + [2925] = {.lex_state = 140, .external_lex_state = 2}, + [2926] = {.lex_state = 188, .external_lex_state = 2}, + [2927] = {.lex_state = 262, .external_lex_state = 2}, + [2928] = {.lex_state = 229, .external_lex_state = 2}, + [2929] = {.lex_state = 180, .external_lex_state = 2}, + [2930] = {.lex_state = 180, .external_lex_state = 2}, + [2931] = {.lex_state = 196, .external_lex_state = 2}, + [2932] = {.lex_state = 209, .external_lex_state = 2}, + [2933] = {.lex_state = 229, .external_lex_state = 2}, + [2934] = {.lex_state = 229, .external_lex_state = 2}, + [2935] = {.lex_state = 195, .external_lex_state = 2}, + [2936] = {.lex_state = 229, .external_lex_state = 2}, + [2937] = {.lex_state = 229, .external_lex_state = 2}, + [2938] = {.lex_state = 229, .external_lex_state = 2}, + [2939] = {.lex_state = 229, .external_lex_state = 2}, + [2940] = {.lex_state = 180, .external_lex_state = 2}, + [2941] = {.lex_state = 223, .external_lex_state = 2}, + [2942] = {.lex_state = 229, .external_lex_state = 2}, + [2943] = {.lex_state = 229, .external_lex_state = 2}, + [2944] = {.lex_state = 229, .external_lex_state = 2}, + [2945] = {.lex_state = 229, .external_lex_state = 2}, + [2946] = {.lex_state = 229, .external_lex_state = 2}, + [2947] = {.lex_state = 229, .external_lex_state = 2}, + [2948] = {.lex_state = 229, .external_lex_state = 2}, + [2949] = {.lex_state = 229, .external_lex_state = 2}, + [2950] = {.lex_state = 229, .external_lex_state = 2}, + [2951] = {.lex_state = 229, .external_lex_state = 2}, + [2952] = {.lex_state = 229, .external_lex_state = 2}, + [2953] = {.lex_state = 229, .external_lex_state = 2}, + [2954] = {.lex_state = 218, .external_lex_state = 2}, + [2955] = {.lex_state = 229, .external_lex_state = 2}, + [2956] = {.lex_state = 229, .external_lex_state = 2}, + [2957] = {.lex_state = 229, .external_lex_state = 2}, + [2958] = {.lex_state = 229, .external_lex_state = 2}, + [2959] = {.lex_state = 229, .external_lex_state = 2}, + [2960] = {.lex_state = 103, .external_lex_state = 2}, + [2961] = {.lex_state = 229, .external_lex_state = 2}, + [2962] = {.lex_state = 229, .external_lex_state = 2}, + [2963] = {.lex_state = 229, .external_lex_state = 2}, + [2964] = {.lex_state = 47, .external_lex_state = 2}, + [2965] = {.lex_state = 180, .external_lex_state = 2}, + [2966] = {.lex_state = 103, .external_lex_state = 2}, + [2967] = {.lex_state = 229, .external_lex_state = 2}, + [2968] = {.lex_state = 229, .external_lex_state = 2}, + [2969] = {.lex_state = 194, .external_lex_state = 2}, + [2970] = {.lex_state = 180, .external_lex_state = 2}, [2971] = {.lex_state = 180, .external_lex_state = 2}, - [2972] = {.lex_state = 42, .external_lex_state = 2}, - [2973] = {.lex_state = 42, .external_lex_state = 2}, - [2974] = {.lex_state = 180, .external_lex_state = 2}, - [2975] = {.lex_state = 42, .external_lex_state = 2}, - [2976] = {.lex_state = 42, .external_lex_state = 2}, - [2977] = {.lex_state = 194, .external_lex_state = 2}, - [2978] = {.lex_state = 42, .external_lex_state = 2}, - [2979] = {.lex_state = 702}, - [2980] = {.lex_state = 42, .external_lex_state = 2}, - [2981] = {.lex_state = 702}, - [2982] = {.lex_state = 698}, - [2983] = {.lex_state = 700}, - [2984] = {.lex_state = 180, .external_lex_state = 2}, - [2985] = {.lex_state = 42, .external_lex_state = 2}, - [2986] = {.lex_state = 42, .external_lex_state = 2}, - [2987] = {.lex_state = 194, .external_lex_state = 2}, - [2988] = {.lex_state = 42, .external_lex_state = 2}, - [2989] = {.lex_state = 42, .external_lex_state = 2}, - [2990] = {.lex_state = 194, .external_lex_state = 2}, - [2991] = {.lex_state = 42, .external_lex_state = 2}, - [2992] = {.lex_state = 194, .external_lex_state = 2}, - [2993] = {.lex_state = 42, .external_lex_state = 2}, - [2994] = {.lex_state = 197, .external_lex_state = 2}, - [2995] = {.lex_state = 704}, - [2996] = {.lex_state = 180, .external_lex_state = 2}, - [2997] = {.lex_state = 42, .external_lex_state = 2}, - [2998] = {.lex_state = 42, .external_lex_state = 2}, - [2999] = {.lex_state = 263, .external_lex_state = 2}, - [3000] = {.lex_state = 704}, - [3001] = {.lex_state = 219, .external_lex_state = 2}, - [3002] = {.lex_state = 198, .external_lex_state = 2}, - [3003] = {.lex_state = 198, .external_lex_state = 2}, - [3004] = {.lex_state = 198, .external_lex_state = 2}, - [3005] = {.lex_state = 183, .external_lex_state = 2}, - [3006] = {.lex_state = 198, .external_lex_state = 2}, - [3007] = {.lex_state = 36, .external_lex_state = 2}, - [3008] = {.lex_state = 198, .external_lex_state = 2}, - [3009] = {.lex_state = 198, .external_lex_state = 2}, - [3010] = {.lex_state = 198, .external_lex_state = 2}, - [3011] = {.lex_state = 198, .external_lex_state = 2}, - [3012] = {.lex_state = 198, .external_lex_state = 2}, - [3013] = {.lex_state = 198, .external_lex_state = 2}, - [3014] = {.lex_state = 198, .external_lex_state = 2}, - [3015] = {.lex_state = 198, .external_lex_state = 2}, - [3016] = {.lex_state = 198, .external_lex_state = 2}, - [3017] = {.lex_state = 263, .external_lex_state = 2}, - [3018] = {.lex_state = 193, .external_lex_state = 2}, + [2972] = {.lex_state = 229, .external_lex_state = 2}, + [2973] = {.lex_state = 702}, + [2974] = {.lex_state = 194, .external_lex_state = 2}, + [2975] = {.lex_state = 702}, + [2976] = {.lex_state = 229, .external_lex_state = 2}, + [2977] = {.lex_state = 700}, + [2978] = {.lex_state = 180, .external_lex_state = 2}, + [2979] = {.lex_state = 209, .external_lex_state = 2}, + [2980] = {.lex_state = 229, .external_lex_state = 2}, + [2981] = {.lex_state = 229, .external_lex_state = 2}, + [2982] = {.lex_state = 194, .external_lex_state = 2}, + [2983] = {.lex_state = 194, .external_lex_state = 2}, + [2984] = {.lex_state = 704}, + [2985] = {.lex_state = 194, .external_lex_state = 2}, + [2986] = {.lex_state = 229, .external_lex_state = 2}, + [2987] = {.lex_state = 229, .external_lex_state = 2}, + [2988] = {.lex_state = 229, .external_lex_state = 2}, + [2989] = {.lex_state = 229, .external_lex_state = 2}, + [2990] = {.lex_state = 218, .external_lex_state = 2}, + [2991] = {.lex_state = 180, .external_lex_state = 2}, + [2992] = {.lex_state = 180, .external_lex_state = 2}, + [2993] = {.lex_state = 186, .external_lex_state = 2}, + [2994] = {.lex_state = 229, .external_lex_state = 2}, + [2995] = {.lex_state = 229, .external_lex_state = 2}, + [2996] = {.lex_state = 229, .external_lex_state = 2}, + [2997] = {.lex_state = 229, .external_lex_state = 2}, + [2998] = {.lex_state = 197, .external_lex_state = 2}, + [2999] = {.lex_state = 180, .external_lex_state = 2}, + [3000] = {.lex_state = 180, .external_lex_state = 2}, + [3001] = {.lex_state = 196, .external_lex_state = 2}, + [3002] = {.lex_state = 229, .external_lex_state = 2}, + [3003] = {.lex_state = 229, .external_lex_state = 2}, + [3004] = {.lex_state = 229, .external_lex_state = 2}, + [3005] = {.lex_state = 229, .external_lex_state = 2}, + [3006] = {.lex_state = 180, .external_lex_state = 2}, + [3007] = {.lex_state = 229, .external_lex_state = 2}, + [3008] = {.lex_state = 229, .external_lex_state = 2}, + [3009] = {.lex_state = 229, .external_lex_state = 2}, + [3010] = {.lex_state = 45, .external_lex_state = 2}, + [3011] = {.lex_state = 229, .external_lex_state = 2}, + [3012] = {.lex_state = 229, .external_lex_state = 2}, + [3013] = {.lex_state = 209, .external_lex_state = 2}, + [3014] = {.lex_state = 194, .external_lex_state = 2}, + [3015] = {.lex_state = 180, .external_lex_state = 2}, + [3016] = {.lex_state = 698}, + [3017] = {.lex_state = 219, .external_lex_state = 2}, + [3018] = {.lex_state = 198, .external_lex_state = 2}, [3019] = {.lex_state = 198, .external_lex_state = 2}, [3020] = {.lex_state = 198, .external_lex_state = 2}, - [3021] = {.lex_state = 183, .external_lex_state = 2}, + [3021] = {.lex_state = 45, .external_lex_state = 2}, [3022] = {.lex_state = 198, .external_lex_state = 2}, [3023] = {.lex_state = 198, .external_lex_state = 2}, - [3024] = {.lex_state = 263, .external_lex_state = 2}, - [3025] = {.lex_state = 193, .external_lex_state = 2}, + [3024] = {.lex_state = 219, .external_lex_state = 2}, + [3025] = {.lex_state = 198, .external_lex_state = 2}, [3026] = {.lex_state = 198, .external_lex_state = 2}, - [3027] = {.lex_state = 219, .external_lex_state = 2}, - [3028] = {.lex_state = 184, .external_lex_state = 2}, + [3027] = {.lex_state = 198, .external_lex_state = 2}, + [3028] = {.lex_state = 198, .external_lex_state = 2}, [3029] = {.lex_state = 198, .external_lex_state = 2}, [3030] = {.lex_state = 198, .external_lex_state = 2}, - [3031] = {.lex_state = 219, .external_lex_state = 2}, - [3032] = {.lex_state = 198, .external_lex_state = 2}, + [3031] = {.lex_state = 184, .external_lex_state = 2}, + [3032] = {.lex_state = 183, .external_lex_state = 2}, [3033] = {.lex_state = 198, .external_lex_state = 2}, - [3034] = {.lex_state = 198, .external_lex_state = 2}, - [3035] = {.lex_state = 198, .external_lex_state = 2}, - [3036] = {.lex_state = 198, .external_lex_state = 2}, - [3037] = {.lex_state = 47, .external_lex_state = 2}, - [3038] = {.lex_state = 219, .external_lex_state = 2}, + [3034] = {.lex_state = 183, .external_lex_state = 2}, + [3035] = {.lex_state = 219, .external_lex_state = 2}, + [3036] = {.lex_state = 219, .external_lex_state = 2}, + [3037] = {.lex_state = 263, .external_lex_state = 2}, + [3038] = {.lex_state = 198, .external_lex_state = 2}, [3039] = {.lex_state = 198, .external_lex_state = 2}, - [3040] = {.lex_state = 219, .external_lex_state = 2}, + [3040] = {.lex_state = 198, .external_lex_state = 2}, [3041] = {.lex_state = 198, .external_lex_state = 2}, - [3042] = {.lex_state = 198, .external_lex_state = 2}, - [3043] = {.lex_state = 193, .external_lex_state = 2}, - [3044] = {.lex_state = 180, .external_lex_state = 2}, - [3045] = {.lex_state = 198, .external_lex_state = 2}, - [3046] = {.lex_state = 198, .external_lex_state = 2}, - [3047] = {.lex_state = 198, .external_lex_state = 2}, - [3048] = {.lex_state = 219, .external_lex_state = 2}, - [3049] = {.lex_state = 219, .external_lex_state = 2}, + [3042] = {.lex_state = 704}, + [3043] = {.lex_state = 704}, + [3044] = {.lex_state = 704}, + [3045] = {.lex_state = 704}, + [3046] = {.lex_state = 704}, + [3047] = {.lex_state = 702}, + [3048] = {.lex_state = 702}, + [3049] = {.lex_state = 198, .external_lex_state = 2}, [3050] = {.lex_state = 198, .external_lex_state = 2}, [3051] = {.lex_state = 198, .external_lex_state = 2}, [3052] = {.lex_state = 198, .external_lex_state = 2}, [3053] = {.lex_state = 180, .external_lex_state = 2}, - [3054] = {.lex_state = 219, .external_lex_state = 2}, - [3055] = {.lex_state = 219, .external_lex_state = 2}, + [3054] = {.lex_state = 198, .external_lex_state = 2}, + [3055] = {.lex_state = 198, .external_lex_state = 2}, [3056] = {.lex_state = 198, .external_lex_state = 2}, - [3057] = {.lex_state = 198, .external_lex_state = 2}, - [3058] = {.lex_state = 198, .external_lex_state = 2}, - [3059] = {.lex_state = 198, .external_lex_state = 2}, - [3060] = {.lex_state = 704}, + [3057] = {.lex_state = 263, .external_lex_state = 2}, + [3058] = {.lex_state = 263, .external_lex_state = 2}, + [3059] = {.lex_state = 263, .external_lex_state = 2}, + [3060] = {.lex_state = 180, .external_lex_state = 2}, [3061] = {.lex_state = 198, .external_lex_state = 2}, [3062] = {.lex_state = 198, .external_lex_state = 2}, - [3063] = {.lex_state = 198, .external_lex_state = 2}, - [3064] = {.lex_state = 704}, + [3063] = {.lex_state = 263, .external_lex_state = 2}, + [3064] = {.lex_state = 219, .external_lex_state = 2}, [3065] = {.lex_state = 198, .external_lex_state = 2}, - [3066] = {.lex_state = 704}, - [3067] = {.lex_state = 704}, - [3068] = {.lex_state = 702}, + [3066] = {.lex_state = 198, .external_lex_state = 2}, + [3067] = {.lex_state = 198, .external_lex_state = 2}, + [3068] = {.lex_state = 198, .external_lex_state = 2}, [3069] = {.lex_state = 198, .external_lex_state = 2}, - [3070] = {.lex_state = 702}, - [3071] = {.lex_state = 198, .external_lex_state = 2}, + [3070] = {.lex_state = 198, .external_lex_state = 2}, + [3071] = {.lex_state = 36, .external_lex_state = 2}, [3072] = {.lex_state = 198, .external_lex_state = 2}, [3073] = {.lex_state = 198, .external_lex_state = 2}, [3074] = {.lex_state = 198, .external_lex_state = 2}, [3075] = {.lex_state = 198, .external_lex_state = 2}, [3076] = {.lex_state = 219, .external_lex_state = 2}, - [3077] = {.lex_state = 198, .external_lex_state = 2}, + [3077] = {.lex_state = 193, .external_lex_state = 2}, [3078] = {.lex_state = 198, .external_lex_state = 2}, - [3079] = {.lex_state = 263, .external_lex_state = 2}, - [3080] = {.lex_state = 263, .external_lex_state = 2}, + [3079] = {.lex_state = 198, .external_lex_state = 2}, + [3080] = {.lex_state = 219, .external_lex_state = 2}, [3081] = {.lex_state = 198, .external_lex_state = 2}, - [3082] = {.lex_state = 198, .external_lex_state = 2}, - [3083] = {.lex_state = 47, .external_lex_state = 2}, - [3084] = {.lex_state = 47, .external_lex_state = 2}, - [3085] = {.lex_state = 47, .external_lex_state = 2}, - [3086] = {.lex_state = 47, .external_lex_state = 2}, - [3087] = {.lex_state = 47, .external_lex_state = 2}, - [3088] = {.lex_state = 47, .external_lex_state = 2}, - [3089] = {.lex_state = 47, .external_lex_state = 2}, - [3090] = {.lex_state = 47, .external_lex_state = 2}, - [3091] = {.lex_state = 47, .external_lex_state = 2}, - [3092] = {.lex_state = 47, .external_lex_state = 2}, - [3093] = {.lex_state = 47, .external_lex_state = 2}, - [3094] = {.lex_state = 47, .external_lex_state = 2}, - [3095] = {.lex_state = 47, .external_lex_state = 2}, - [3096] = {.lex_state = 47, .external_lex_state = 2}, - [3097] = {.lex_state = 47, .external_lex_state = 2}, - [3098] = {.lex_state = 47, .external_lex_state = 2}, - [3099] = {.lex_state = 47, .external_lex_state = 2}, - [3100] = {.lex_state = 47, .external_lex_state = 2}, - [3101] = {.lex_state = 47, .external_lex_state = 2}, - [3102] = {.lex_state = 47, .external_lex_state = 2}, - [3103] = {.lex_state = 47, .external_lex_state = 2}, - [3104] = {.lex_state = 47, .external_lex_state = 2}, - [3105] = {.lex_state = 47, .external_lex_state = 2}, - [3106] = {.lex_state = 47, .external_lex_state = 2}, - [3107] = {.lex_state = 47, .external_lex_state = 2}, - [3108] = {.lex_state = 47, .external_lex_state = 2}, - [3109] = {.lex_state = 47, .external_lex_state = 2}, - [3110] = {.lex_state = 47, .external_lex_state = 2}, - [3111] = {.lex_state = 47, .external_lex_state = 2}, - [3112] = {.lex_state = 47, .external_lex_state = 2}, - [3113] = {.lex_state = 47, .external_lex_state = 2}, - [3114] = {.lex_state = 47, .external_lex_state = 2}, - [3115] = {.lex_state = 47, .external_lex_state = 2}, - [3116] = {.lex_state = 47, .external_lex_state = 2}, - [3117] = {.lex_state = 47, .external_lex_state = 2}, - [3118] = {.lex_state = 47, .external_lex_state = 2}, - [3119] = {.lex_state = 47, .external_lex_state = 2}, - [3120] = {.lex_state = 47, .external_lex_state = 2}, - [3121] = {.lex_state = 47, .external_lex_state = 2}, - [3122] = {.lex_state = 47, .external_lex_state = 2}, - [3123] = {.lex_state = 704}, - [3124] = {.lex_state = 47, .external_lex_state = 2}, - [3125] = {.lex_state = 47, .external_lex_state = 2}, - [3126] = {.lex_state = 704}, - [3127] = {.lex_state = 47, .external_lex_state = 2}, - [3128] = {.lex_state = 704}, - [3129] = {.lex_state = 704}, - [3130] = {.lex_state = 47, .external_lex_state = 2}, - [3131] = {.lex_state = 47, .external_lex_state = 2}, - [3132] = {.lex_state = 47, .external_lex_state = 2}, - [3133] = {.lex_state = 47, .external_lex_state = 2}, - [3134] = {.lex_state = 47, .external_lex_state = 2}, - [3135] = {.lex_state = 47, .external_lex_state = 2}, - [3136] = {.lex_state = 47, .external_lex_state = 2}, - [3137] = {.lex_state = 47, .external_lex_state = 2}, - [3138] = {.lex_state = 47, .external_lex_state = 2}, - [3139] = {.lex_state = 47, .external_lex_state = 2}, - [3140] = {.lex_state = 47, .external_lex_state = 2}, - [3141] = {.lex_state = 47, .external_lex_state = 2}, - [3142] = {.lex_state = 47, .external_lex_state = 2}, - [3143] = {.lex_state = 47, .external_lex_state = 2}, - [3144] = {.lex_state = 47, .external_lex_state = 2}, - [3145] = {.lex_state = 47, .external_lex_state = 2}, - [3146] = {.lex_state = 47, .external_lex_state = 2}, - [3147] = {.lex_state = 47, .external_lex_state = 2}, - [3148] = {.lex_state = 47, .external_lex_state = 2}, - [3149] = {.lex_state = 47, .external_lex_state = 2}, - [3150] = {.lex_state = 36, .external_lex_state = 2}, - [3151] = {.lex_state = 47, .external_lex_state = 2}, - [3152] = {.lex_state = 697}, - [3153] = {.lex_state = 71}, - [3154] = {.lex_state = 71}, - [3155] = {.lex_state = 71}, - [3156] = {.lex_state = 71}, - [3157] = {.lex_state = 71}, - [3158] = {.lex_state = 71}, - [3159] = {.lex_state = 71}, - [3160] = {.lex_state = 71}, - [3161] = {.lex_state = 71}, - [3162] = {.lex_state = 71}, - [3163] = {.lex_state = 697}, - [3164] = {.lex_state = 71}, - [3165] = {.lex_state = 711}, - [3166] = {.lex_state = 71}, - [3167] = {.lex_state = 71}, - [3168] = {.lex_state = 71}, - [3169] = {.lex_state = 71}, - [3170] = {.lex_state = 71}, - [3171] = {.lex_state = 711}, - [3172] = {.lex_state = 708}, + [3082] = {.lex_state = 219, .external_lex_state = 2}, + [3083] = {.lex_state = 193, .external_lex_state = 2}, + [3084] = {.lex_state = 193, .external_lex_state = 2}, + [3085] = {.lex_state = 219, .external_lex_state = 2}, + [3086] = {.lex_state = 198, .external_lex_state = 2}, + [3087] = {.lex_state = 198, .external_lex_state = 2}, + [3088] = {.lex_state = 198, .external_lex_state = 2}, + [3089] = {.lex_state = 198, .external_lex_state = 2}, + [3090] = {.lex_state = 198, .external_lex_state = 2}, + [3091] = {.lex_state = 198, .external_lex_state = 2}, + [3092] = {.lex_state = 198, .external_lex_state = 2}, + [3093] = {.lex_state = 198, .external_lex_state = 2}, + [3094] = {.lex_state = 198, .external_lex_state = 2}, + [3095] = {.lex_state = 198, .external_lex_state = 2}, + [3096] = {.lex_state = 198, .external_lex_state = 2}, + [3097] = {.lex_state = 219, .external_lex_state = 2}, + [3098] = {.lex_state = 198, .external_lex_state = 2}, + [3099] = {.lex_state = 198, .external_lex_state = 2}, + [3100] = {.lex_state = 198, .external_lex_state = 2}, + [3101] = {.lex_state = 45, .external_lex_state = 2}, + [3102] = {.lex_state = 45, .external_lex_state = 2}, + [3103] = {.lex_state = 45, .external_lex_state = 2}, + [3104] = {.lex_state = 45, .external_lex_state = 2}, + [3105] = {.lex_state = 45, .external_lex_state = 2}, + [3106] = {.lex_state = 704}, + [3107] = {.lex_state = 45, .external_lex_state = 2}, + [3108] = {.lex_state = 704}, + [3109] = {.lex_state = 45, .external_lex_state = 2}, + [3110] = {.lex_state = 704}, + [3111] = {.lex_state = 704}, + [3112] = {.lex_state = 45, .external_lex_state = 2}, + [3113] = {.lex_state = 45, .external_lex_state = 2}, + [3114] = {.lex_state = 45, .external_lex_state = 2}, + [3115] = {.lex_state = 45, .external_lex_state = 2}, + [3116] = {.lex_state = 45, .external_lex_state = 2}, + [3117] = {.lex_state = 45, .external_lex_state = 2}, + [3118] = {.lex_state = 45, .external_lex_state = 2}, + [3119] = {.lex_state = 45, .external_lex_state = 2}, + [3120] = {.lex_state = 45, .external_lex_state = 2}, + [3121] = {.lex_state = 45, .external_lex_state = 2}, + [3122] = {.lex_state = 45, .external_lex_state = 2}, + [3123] = {.lex_state = 45, .external_lex_state = 2}, + [3124] = {.lex_state = 45, .external_lex_state = 2}, + [3125] = {.lex_state = 45, .external_lex_state = 2}, + [3126] = {.lex_state = 45, .external_lex_state = 2}, + [3127] = {.lex_state = 45, .external_lex_state = 2}, + [3128] = {.lex_state = 45, .external_lex_state = 2}, + [3129] = {.lex_state = 45, .external_lex_state = 2}, + [3130] = {.lex_state = 45, .external_lex_state = 2}, + [3131] = {.lex_state = 45, .external_lex_state = 2}, + [3132] = {.lex_state = 45, .external_lex_state = 2}, + [3133] = {.lex_state = 45, .external_lex_state = 2}, + [3134] = {.lex_state = 45, .external_lex_state = 2}, + [3135] = {.lex_state = 45, .external_lex_state = 2}, + [3136] = {.lex_state = 45, .external_lex_state = 2}, + [3137] = {.lex_state = 45, .external_lex_state = 2}, + [3138] = {.lex_state = 45, .external_lex_state = 2}, + [3139] = {.lex_state = 45, .external_lex_state = 2}, + [3140] = {.lex_state = 45, .external_lex_state = 2}, + [3141] = {.lex_state = 45, .external_lex_state = 2}, + [3142] = {.lex_state = 45, .external_lex_state = 2}, + [3143] = {.lex_state = 45, .external_lex_state = 2}, + [3144] = {.lex_state = 45, .external_lex_state = 2}, + [3145] = {.lex_state = 45, .external_lex_state = 2}, + [3146] = {.lex_state = 45, .external_lex_state = 2}, + [3147] = {.lex_state = 45, .external_lex_state = 2}, + [3148] = {.lex_state = 45, .external_lex_state = 2}, + [3149] = {.lex_state = 45, .external_lex_state = 2}, + [3150] = {.lex_state = 45, .external_lex_state = 2}, + [3151] = {.lex_state = 45, .external_lex_state = 2}, + [3152] = {.lex_state = 45, .external_lex_state = 2}, + [3153] = {.lex_state = 45, .external_lex_state = 2}, + [3154] = {.lex_state = 36, .external_lex_state = 2}, + [3155] = {.lex_state = 45, .external_lex_state = 2}, + [3156] = {.lex_state = 45, .external_lex_state = 2}, + [3157] = {.lex_state = 45, .external_lex_state = 2}, + [3158] = {.lex_state = 45, .external_lex_state = 2}, + [3159] = {.lex_state = 45, .external_lex_state = 2}, + [3160] = {.lex_state = 45, .external_lex_state = 2}, + [3161] = {.lex_state = 45, .external_lex_state = 2}, + [3162] = {.lex_state = 45, .external_lex_state = 2}, + [3163] = {.lex_state = 45, .external_lex_state = 2}, + [3164] = {.lex_state = 45, .external_lex_state = 2}, + [3165] = {.lex_state = 45, .external_lex_state = 2}, + [3166] = {.lex_state = 45, .external_lex_state = 2}, + [3167] = {.lex_state = 45, .external_lex_state = 2}, + [3168] = {.lex_state = 45, .external_lex_state = 2}, + [3169] = {.lex_state = 697}, + [3170] = {.lex_state = 45, .external_lex_state = 2}, + [3171] = {.lex_state = 71}, + [3172] = {.lex_state = 71}, [3173] = {.lex_state = 71}, - [3174] = {.lex_state = 709}, - [3175] = {.lex_state = 781}, - [3176] = {.lex_state = 708}, - [3177] = {.lex_state = 709}, - [3178] = {.lex_state = 708}, - [3179] = {.lex_state = 708}, - [3180] = {.lex_state = 708}, - [3181] = {.lex_state = 24}, - [3182] = {.lex_state = 706}, - [3183] = {.lex_state = 708}, - [3184] = {.lex_state = 708}, - [3185] = {.lex_state = 775}, - [3186] = {.lex_state = 708}, - [3187] = {.lex_state = 708}, - [3188] = {.lex_state = 24}, - [3189] = {.lex_state = 71}, + [3174] = {.lex_state = 71}, + [3175] = {.lex_state = 71}, + [3176] = {.lex_state = 71}, + [3177] = {.lex_state = 71}, + [3178] = {.lex_state = 71}, + [3179] = {.lex_state = 711}, + [3180] = {.lex_state = 71}, + [3181] = {.lex_state = 697}, + [3182] = {.lex_state = 71}, + [3183] = {.lex_state = 71}, + [3184] = {.lex_state = 71}, + [3185] = {.lex_state = 71}, + [3186] = {.lex_state = 71}, + [3187] = {.lex_state = 71}, + [3188] = {.lex_state = 71}, + [3189] = {.lex_state = 711}, [3190] = {.lex_state = 708}, - [3191] = {.lex_state = 71}, + [3191] = {.lex_state = 708}, [3192] = {.lex_state = 71}, - [3193] = {.lex_state = 697}, - [3194] = {.lex_state = 71}, - [3195] = {.lex_state = 71}, - [3196] = {.lex_state = 775}, - [3197] = {.lex_state = 71}, - [3198] = {.lex_state = 71}, - [3199] = {.lex_state = 71}, - [3200] = {.lex_state = 697}, - [3201] = {.lex_state = 697}, - [3202] = {.lex_state = 697}, - [3203] = {.lex_state = 697}, - [3204] = {.lex_state = 697}, - [3205] = {.lex_state = 697}, - [3206] = {.lex_state = 697}, - [3207] = {.lex_state = 697}, - [3208] = {.lex_state = 697}, - [3209] = {.lex_state = 697}, - [3210] = {.lex_state = 697}, + [3193] = {.lex_state = 708}, + [3194] = {.lex_state = 709}, + [3195] = {.lex_state = 708}, + [3196] = {.lex_state = 781}, + [3197] = {.lex_state = 708}, + [3198] = {.lex_state = 709}, + [3199] = {.lex_state = 708}, + [3200] = {.lex_state = 775}, + [3201] = {.lex_state = 708}, + [3202] = {.lex_state = 708}, + [3203] = {.lex_state = 24}, + [3204] = {.lex_state = 708}, + [3205] = {.lex_state = 706}, + [3206] = {.lex_state = 24}, + [3207] = {.lex_state = 71}, + [3208] = {.lex_state = 708}, + [3209] = {.lex_state = 71}, + [3210] = {.lex_state = 71}, [3211] = {.lex_state = 697}, - [3212] = {.lex_state = 71}, + [3212] = {.lex_state = 697}, [3213] = {.lex_state = 697}, [3214] = {.lex_state = 697}, [3215] = {.lex_state = 697}, @@ -57652,7 +57806,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3252] = {.lex_state = 697}, [3253] = {.lex_state = 697}, [3254] = {.lex_state = 697}, - [3255] = {.lex_state = 706}, + [3255] = {.lex_state = 697}, [3256] = {.lex_state = 697}, [3257] = {.lex_state = 697}, [3258] = {.lex_state = 697}, @@ -57680,7 +57834,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3280] = {.lex_state = 697}, [3281] = {.lex_state = 697}, [3282] = {.lex_state = 697}, - [3283] = {.lex_state = 697}, + [3283] = {.lex_state = 71}, [3284] = {.lex_state = 697}, [3285] = {.lex_state = 697}, [3286] = {.lex_state = 697}, @@ -57692,9 +57846,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3292] = {.lex_state = 697}, [3293] = {.lex_state = 697}, [3294] = {.lex_state = 697}, - [3295] = {.lex_state = 697}, + [3295] = {.lex_state = 775}, [3296] = {.lex_state = 697}, - [3297] = {.lex_state = 24}, + [3297] = {.lex_state = 697}, [3298] = {.lex_state = 697}, [3299] = {.lex_state = 697}, [3300] = {.lex_state = 697}, @@ -57705,478 +57859,478 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3305] = {.lex_state = 697}, [3306] = {.lex_state = 697}, [3307] = {.lex_state = 697}, - [3308] = {.lex_state = 697}, - [3309] = {.lex_state = 697}, - [3310] = {.lex_state = 71}, - [3311] = {.lex_state = 24}, - [3312] = {.lex_state = 775}, - [3313] = {.lex_state = 775}, - [3314] = {.lex_state = 775}, - [3315] = {.lex_state = 775}, - [3316] = {.lex_state = 71}, - [3317] = {.lex_state = 71}, + [3308] = {.lex_state = 775}, + [3309] = {.lex_state = 71}, + [3310] = {.lex_state = 24}, + [3311] = {.lex_state = 697}, + [3312] = {.lex_state = 697}, + [3313] = {.lex_state = 697}, + [3314] = {.lex_state = 697}, + [3315] = {.lex_state = 706}, + [3316] = {.lex_state = 697}, + [3317] = {.lex_state = 697}, [3318] = {.lex_state = 697}, [3319] = {.lex_state = 71}, - [3320] = {.lex_state = 775}, - [3321] = {.lex_state = 71}, - [3322] = {.lex_state = 24}, + [3320] = {.lex_state = 697}, + [3321] = {.lex_state = 697}, + [3322] = {.lex_state = 697}, [3323] = {.lex_state = 697}, [3324] = {.lex_state = 71}, - [3325] = {.lex_state = 24}, + [3325] = {.lex_state = 71}, [3326] = {.lex_state = 71}, - [3327] = {.lex_state = 775}, + [3327] = {.lex_state = 697}, [3328] = {.lex_state = 71}, - [3329] = {.lex_state = 24}, - [3330] = {.lex_state = 71}, - [3331] = {.lex_state = 71}, - [3332] = {.lex_state = 24}, - [3333] = {.lex_state = 71}, - [3334] = {.lex_state = 24}, - [3335] = {.lex_state = 24}, - [3336] = {.lex_state = 24}, - [3337] = {.lex_state = 24}, - [3338] = {.lex_state = 24}, - [3339] = {.lex_state = 71}, + [3329] = {.lex_state = 71}, + [3330] = {.lex_state = 775}, + [3331] = {.lex_state = 775}, + [3332] = {.lex_state = 775}, + [3333] = {.lex_state = 24}, + [3334] = {.lex_state = 697}, + [3335] = {.lex_state = 71}, + [3336] = {.lex_state = 697}, + [3337] = {.lex_state = 71}, + [3338] = {.lex_state = 71}, + [3339] = {.lex_state = 24}, [3340] = {.lex_state = 697}, - [3341] = {.lex_state = 710}, - [3342] = {.lex_state = 243, .external_lex_state = 2}, - [3343] = {.lex_state = 239, .external_lex_state = 2}, - [3344] = {.lex_state = 71}, - [3345] = {.lex_state = 71}, + [3341] = {.lex_state = 697}, + [3342] = {.lex_state = 697}, + [3343] = {.lex_state = 24}, + [3344] = {.lex_state = 697}, + [3345] = {.lex_state = 775}, [3346] = {.lex_state = 697}, - [3347] = {.lex_state = 24}, - [3348] = {.lex_state = 697}, - [3349] = {.lex_state = 697}, - [3350] = {.lex_state = 775}, - [3351] = {.lex_state = 697}, - [3352] = {.lex_state = 697}, - [3353] = {.lex_state = 697}, - [3354] = {.lex_state = 697}, - [3355] = {.lex_state = 697}, + [3347] = {.lex_state = 71}, + [3348] = {.lex_state = 71}, + [3349] = {.lex_state = 71}, + [3350] = {.lex_state = 24}, + [3351] = {.lex_state = 24}, + [3352] = {.lex_state = 775}, + [3353] = {.lex_state = 775}, + [3354] = {.lex_state = 241, .external_lex_state = 2}, + [3355] = {.lex_state = 775}, [3356] = {.lex_state = 697}, - [3357] = {.lex_state = 697}, - [3358] = {.lex_state = 697}, - [3359] = {.lex_state = 697}, + [3357] = {.lex_state = 71}, + [3358] = {.lex_state = 71}, + [3359] = {.lex_state = 24}, [3360] = {.lex_state = 697}, - [3361] = {.lex_state = 775}, - [3362] = {.lex_state = 709}, - [3363] = {.lex_state = 240, .external_lex_state = 2}, - [3364] = {.lex_state = 235}, - [3365] = {.lex_state = 709}, - [3366] = {.lex_state = 18}, - [3367] = {.lex_state = 19}, - [3368] = {.lex_state = 235}, - [3369] = {.lex_state = 91}, - [3370] = {.lex_state = 92}, - [3371] = {.lex_state = 709}, - [3372] = {.lex_state = 710}, - [3373] = {.lex_state = 710}, - [3374] = {.lex_state = 240, .external_lex_state = 2}, - [3375] = {.lex_state = 717}, - [3376] = {.lex_state = 775}, - [3377] = {.lex_state = 71}, - [3378] = {.lex_state = 87}, - [3379] = {.lex_state = 88}, - [3380] = {.lex_state = 775}, - [3381] = {.lex_state = 236}, - [3382] = {.lex_state = 236}, - [3383] = {.lex_state = 389}, - [3384] = {.lex_state = 775}, - [3385] = {.lex_state = 21}, - [3386] = {.lex_state = 93}, - [3387] = {.lex_state = 94}, - [3388] = {.lex_state = 710}, - [3389] = {.lex_state = 775}, + [3361] = {.lex_state = 697}, + [3362] = {.lex_state = 71}, + [3363] = {.lex_state = 697}, + [3364] = {.lex_state = 697}, + [3365] = {.lex_state = 697}, + [3366] = {.lex_state = 710}, + [3367] = {.lex_state = 697}, + [3368] = {.lex_state = 71}, + [3369] = {.lex_state = 24}, + [3370] = {.lex_state = 71}, + [3371] = {.lex_state = 71}, + [3372] = {.lex_state = 24}, + [3373] = {.lex_state = 697}, + [3374] = {.lex_state = 697}, + [3375] = {.lex_state = 24}, + [3376] = {.lex_state = 24}, + [3377] = {.lex_state = 245, .external_lex_state = 2}, + [3378] = {.lex_state = 697}, + [3379] = {.lex_state = 24}, + [3380] = {.lex_state = 717}, + [3381] = {.lex_state = 18}, + [3382] = {.lex_state = 19}, + [3383] = {.lex_state = 775}, + [3384] = {.lex_state = 709}, + [3385] = {.lex_state = 242, .external_lex_state = 2}, + [3386] = {.lex_state = 242, .external_lex_state = 2}, + [3387] = {.lex_state = 237}, + [3388] = {.lex_state = 237}, + [3389] = {.lex_state = 709}, [3390] = {.lex_state = 709}, - [3391] = {.lex_state = 709}, - [3392] = {.lex_state = 241, .external_lex_state = 2}, - [3393] = {.lex_state = 71}, - [3394] = {.lex_state = 71}, - [3395] = {.lex_state = 20}, - [3396] = {.lex_state = 93}, - [3397] = {.lex_state = 241, .external_lex_state = 2}, + [3391] = {.lex_state = 91}, + [3392] = {.lex_state = 710}, + [3393] = {.lex_state = 710}, + [3394] = {.lex_state = 92}, + [3395] = {.lex_state = 243, .external_lex_state = 2}, + [3396] = {.lex_state = 389}, + [3397] = {.lex_state = 88}, [3398] = {.lex_state = 71}, - [3399] = {.lex_state = 20}, - [3400] = {.lex_state = 241, .external_lex_state = 2}, - [3401] = {.lex_state = 241, .external_lex_state = 2}, - [3402] = {.lex_state = 241, .external_lex_state = 2}, - [3403] = {.lex_state = 710}, - [3404] = {.lex_state = 24}, - [3405] = {.lex_state = 24}, - [3406] = {.lex_state = 21}, - [3407] = {.lex_state = 24}, - [3408] = {.lex_state = 24}, + [3399] = {.lex_state = 71}, + [3400] = {.lex_state = 71}, + [3401] = {.lex_state = 20}, + [3402] = {.lex_state = 775}, + [3403] = {.lex_state = 94}, + [3404] = {.lex_state = 238}, + [3405] = {.lex_state = 710}, + [3406] = {.lex_state = 243, .external_lex_state = 2}, + [3407] = {.lex_state = 243, .external_lex_state = 2}, + [3408] = {.lex_state = 243, .external_lex_state = 2}, [3409] = {.lex_state = 21}, - [3410] = {.lex_state = 24}, - [3411] = {.lex_state = 21}, - [3412] = {.lex_state = 21}, - [3413] = {.lex_state = 24}, - [3414] = {.lex_state = 89}, - [3415] = {.lex_state = 710}, - [3416] = {.lex_state = 89}, - [3417] = {.lex_state = 90}, - [3418] = {.lex_state = 389}, - [3419] = {.lex_state = 775}, - [3420] = {.lex_state = 389}, - [3421] = {.lex_state = 389}, - [3422] = {.lex_state = 94}, - [3423] = {.lex_state = 24}, - [3424] = {.lex_state = 24}, + [3410] = {.lex_state = 243, .external_lex_state = 2}, + [3411] = {.lex_state = 775}, + [3412] = {.lex_state = 20}, + [3413] = {.lex_state = 93}, + [3414] = {.lex_state = 71}, + [3415] = {.lex_state = 775}, + [3416] = {.lex_state = 709}, + [3417] = {.lex_state = 709}, + [3418] = {.lex_state = 87}, + [3419] = {.lex_state = 238}, + [3420] = {.lex_state = 93}, + [3421] = {.lex_state = 24}, + [3422] = {.lex_state = 389}, + [3423] = {.lex_state = 94}, + [3424] = {.lex_state = 21}, [3425] = {.lex_state = 24}, - [3426] = {.lex_state = 94}, + [3426] = {.lex_state = 24}, [3427] = {.lex_state = 24}, - [3428] = {.lex_state = 24}, - [3429] = {.lex_state = 389}, - [3430] = {.lex_state = 24}, - [3431] = {.lex_state = 24}, - [3432] = {.lex_state = 24}, - [3433] = {.lex_state = 24}, - [3434] = {.lex_state = 24}, - [3435] = {.lex_state = 711}, - [3436] = {.lex_state = 24}, - [3437] = {.lex_state = 94}, - [3438] = {.lex_state = 94}, + [3428] = {.lex_state = 21}, + [3429] = {.lex_state = 24}, + [3430] = {.lex_state = 389}, + [3431] = {.lex_state = 710}, + [3432] = {.lex_state = 389}, + [3433] = {.lex_state = 94}, + [3434] = {.lex_state = 775}, + [3435] = {.lex_state = 389}, + [3436] = {.lex_state = 89}, + [3437] = {.lex_state = 89}, + [3438] = {.lex_state = 24}, [3439] = {.lex_state = 24}, [3440] = {.lex_state = 775}, - [3441] = {.lex_state = 389}, - [3442] = {.lex_state = 24}, - [3443] = {.lex_state = 14, .external_lex_state = 2}, - [3444] = {.lex_state = 14, .external_lex_state = 2}, - [3445] = {.lex_state = 14, .external_lex_state = 2}, - [3446] = {.lex_state = 90}, - [3447] = {.lex_state = 14, .external_lex_state = 2}, - [3448] = {.lex_state = 710}, - [3449] = {.lex_state = 90}, - [3450] = {.lex_state = 90}, + [3441] = {.lex_state = 94}, + [3442] = {.lex_state = 21}, + [3443] = {.lex_state = 24}, + [3444] = {.lex_state = 24}, + [3445] = {.lex_state = 24}, + [3446] = {.lex_state = 24}, + [3447] = {.lex_state = 21}, + [3448] = {.lex_state = 24}, + [3449] = {.lex_state = 24}, + [3450] = {.lex_state = 24}, [3451] = {.lex_state = 24}, - [3452] = {.lex_state = 14, .external_lex_state = 2}, - [3453] = {.lex_state = 14, .external_lex_state = 2}, - [3454] = {.lex_state = 14, .external_lex_state = 2}, - [3455] = {.lex_state = 14, .external_lex_state = 2}, - [3456] = {.lex_state = 71}, - [3457] = {.lex_state = 710}, - [3458] = {.lex_state = 14, .external_lex_state = 2}, - [3459] = {.lex_state = 14, .external_lex_state = 2}, + [3452] = {.lex_state = 94}, + [3453] = {.lex_state = 24}, + [3454] = {.lex_state = 389}, + [3455] = {.lex_state = 24}, + [3456] = {.lex_state = 711}, + [3457] = {.lex_state = 24}, + [3458] = {.lex_state = 710}, + [3459] = {.lex_state = 90}, [3460] = {.lex_state = 14, .external_lex_state = 2}, - [3461] = {.lex_state = 14, .external_lex_state = 2}, + [3461] = {.lex_state = 71}, [3462] = {.lex_state = 14, .external_lex_state = 2}, - [3463] = {.lex_state = 24}, + [3463] = {.lex_state = 90}, [3464] = {.lex_state = 14, .external_lex_state = 2}, [3465] = {.lex_state = 14, .external_lex_state = 2}, [3466] = {.lex_state = 14, .external_lex_state = 2}, [3467] = {.lex_state = 14, .external_lex_state = 2}, - [3468] = {.lex_state = 711}, - [3469] = {.lex_state = 14, .external_lex_state = 2}, - [3470] = {.lex_state = 389}, + [3468] = {.lex_state = 14, .external_lex_state = 2}, + [3469] = {.lex_state = 710}, + [3470] = {.lex_state = 14, .external_lex_state = 2}, [3471] = {.lex_state = 14, .external_lex_state = 2}, - [3472] = {.lex_state = 90}, + [3472] = {.lex_state = 14, .external_lex_state = 2}, [3473] = {.lex_state = 14, .external_lex_state = 2}, [3474] = {.lex_state = 14, .external_lex_state = 2}, [3475] = {.lex_state = 24}, [3476] = {.lex_state = 24}, - [3477] = {.lex_state = 14, .external_lex_state = 2}, + [3477] = {.lex_state = 24}, [3478] = {.lex_state = 14, .external_lex_state = 2}, - [3479] = {.lex_state = 226, .external_lex_state = 2}, - [3480] = {.lex_state = 24}, - [3481] = {.lex_state = 710}, - [3482] = {.lex_state = 99}, - [3483] = {.lex_state = 24}, + [3479] = {.lex_state = 14, .external_lex_state = 2}, + [3480] = {.lex_state = 14, .external_lex_state = 2}, + [3481] = {.lex_state = 14, .external_lex_state = 2}, + [3482] = {.lex_state = 90}, + [3483] = {.lex_state = 710}, [3484] = {.lex_state = 24}, - [3485] = {.lex_state = 99}, - [3486] = {.lex_state = 24}, - [3487] = {.lex_state = 24}, - [3488] = {.lex_state = 24}, + [3485] = {.lex_state = 90}, + [3486] = {.lex_state = 14, .external_lex_state = 2}, + [3487] = {.lex_state = 14, .external_lex_state = 2}, + [3488] = {.lex_state = 14, .external_lex_state = 2}, [3489] = {.lex_state = 24}, - [3490] = {.lex_state = 24}, - [3491] = {.lex_state = 24}, - [3492] = {.lex_state = 24}, - [3493] = {.lex_state = 24}, - [3494] = {.lex_state = 24}, - [3495] = {.lex_state = 24}, - [3496] = {.lex_state = 24}, + [3490] = {.lex_state = 14, .external_lex_state = 2}, + [3491] = {.lex_state = 14, .external_lex_state = 2}, + [3492] = {.lex_state = 711}, + [3493] = {.lex_state = 14, .external_lex_state = 2}, + [3494] = {.lex_state = 90}, + [3495] = {.lex_state = 14, .external_lex_state = 2}, + [3496] = {.lex_state = 389}, [3497] = {.lex_state = 24}, [3498] = {.lex_state = 24}, - [3499] = {.lex_state = 71}, + [3499] = {.lex_state = 24}, [3500] = {.lex_state = 24}, [3501] = {.lex_state = 24}, - [3502] = {.lex_state = 24}, + [3502] = {.lex_state = 99}, [3503] = {.lex_state = 24}, [3504] = {.lex_state = 24}, [3505] = {.lex_state = 24}, [3506] = {.lex_state = 24}, [3507] = {.lex_state = 24}, - [3508] = {.lex_state = 24}, - [3509] = {.lex_state = 710}, + [3508] = {.lex_state = 710}, + [3509] = {.lex_state = 24}, [3510] = {.lex_state = 24}, - [3511] = {.lex_state = 24}, - [3512] = {.lex_state = 14, .external_lex_state = 2}, - [3513] = {.lex_state = 710}, + [3511] = {.lex_state = 99}, + [3512] = {.lex_state = 24}, + [3513] = {.lex_state = 24}, [3514] = {.lex_state = 24}, [3515] = {.lex_state = 24}, [3516] = {.lex_state = 24}, [3517] = {.lex_state = 24}, [3518] = {.lex_state = 24}, - [3519] = {.lex_state = 710}, + [3519] = {.lex_state = 24}, [3520] = {.lex_state = 24}, - [3521] = {.lex_state = 14, .external_lex_state = 2}, - [3522] = {.lex_state = 24}, + [3521] = {.lex_state = 24}, + [3522] = {.lex_state = 710}, [3523] = {.lex_state = 24}, - [3524] = {.lex_state = 24}, - [3525] = {.lex_state = 24}, + [3524] = {.lex_state = 710}, + [3525] = {.lex_state = 710}, [3526] = {.lex_state = 24}, [3527] = {.lex_state = 24}, - [3528] = {.lex_state = 24}, - [3529] = {.lex_state = 710}, - [3530] = {.lex_state = 710}, - [3531] = {.lex_state = 697}, + [3528] = {.lex_state = 710}, + [3529] = {.lex_state = 24}, + [3530] = {.lex_state = 24}, + [3531] = {.lex_state = 24}, [3532] = {.lex_state = 24}, - [3533] = {.lex_state = 710}, - [3534] = {.lex_state = 710}, - [3535] = {.lex_state = 717}, - [3536] = {.lex_state = 717}, - [3537] = {.lex_state = 717}, - [3538] = {.lex_state = 710}, - [3539] = {.lex_state = 717}, - [3540] = {.lex_state = 717}, - [3541] = {.lex_state = 24}, - [3542] = {.lex_state = 717}, - [3543] = {.lex_state = 99}, - [3544] = {.lex_state = 710}, - [3545] = {.lex_state = 710}, - [3546] = {.lex_state = 717}, - [3547] = {.lex_state = 99}, - [3548] = {.lex_state = 99}, - [3549] = {.lex_state = 717}, - [3550] = {.lex_state = 710}, - [3551] = {.lex_state = 14, .external_lex_state = 2}, + [3533] = {.lex_state = 24}, + [3534] = {.lex_state = 24}, + [3535] = {.lex_state = 24}, + [3536] = {.lex_state = 24}, + [3537] = {.lex_state = 14, .external_lex_state = 2}, + [3538] = {.lex_state = 24}, + [3539] = {.lex_state = 24}, + [3540] = {.lex_state = 24}, + [3541] = {.lex_state = 226, .external_lex_state = 2}, + [3542] = {.lex_state = 24}, + [3543] = {.lex_state = 710}, + [3544] = {.lex_state = 24}, + [3545] = {.lex_state = 24}, + [3546] = {.lex_state = 71}, + [3547] = {.lex_state = 14, .external_lex_state = 2}, + [3548] = {.lex_state = 697}, + [3549] = {.lex_state = 24}, + [3550] = {.lex_state = 24}, + [3551] = {.lex_state = 717}, [3552] = {.lex_state = 717}, - [3553] = {.lex_state = 14, .external_lex_state = 2}, + [3553] = {.lex_state = 710}, [3554] = {.lex_state = 710}, - [3555] = {.lex_state = 717}, - [3556] = {.lex_state = 99}, - [3557] = {.lex_state = 24}, - [3558] = {.lex_state = 710}, - [3559] = {.lex_state = 24}, - [3560] = {.lex_state = 709}, - [3561] = {.lex_state = 99}, - [3562] = {.lex_state = 717}, - [3563] = {.lex_state = 710}, - [3564] = {.lex_state = 717}, + [3555] = {.lex_state = 710}, + [3556] = {.lex_state = 717}, + [3557] = {.lex_state = 710}, + [3558] = {.lex_state = 697}, + [3559] = {.lex_state = 99}, + [3560] = {.lex_state = 99}, + [3561] = {.lex_state = 710}, + [3562] = {.lex_state = 99}, + [3563] = {.lex_state = 717}, + [3564] = {.lex_state = 99}, [3565] = {.lex_state = 717}, [3566] = {.lex_state = 717}, [3567] = {.lex_state = 717}, - [3568] = {.lex_state = 717}, - [3569] = {.lex_state = 697}, - [3570] = {.lex_state = 717}, - [3571] = {.lex_state = 717}, - [3572] = {.lex_state = 717}, - [3573] = {.lex_state = 233, .external_lex_state = 2}, - [3574] = {.lex_state = 717}, - [3575] = {.lex_state = 717}, - [3576] = {.lex_state = 710}, + [3568] = {.lex_state = 99}, + [3569] = {.lex_state = 717}, + [3570] = {.lex_state = 99}, + [3571] = {.lex_state = 710}, + [3572] = {.lex_state = 710}, + [3573] = {.lex_state = 14, .external_lex_state = 2}, + [3574] = {.lex_state = 14, .external_lex_state = 2}, + [3575] = {.lex_state = 1834}, + [3576] = {.lex_state = 24}, [3577] = {.lex_state = 717}, [3578] = {.lex_state = 717}, - [3579] = {.lex_state = 1832}, - [3580] = {.lex_state = 717}, - [3581] = {.lex_state = 717}, - [3582] = {.lex_state = 14, .external_lex_state = 2}, - [3583] = {.lex_state = 14, .external_lex_state = 2}, - [3584] = {.lex_state = 99}, - [3585] = {.lex_state = 14, .external_lex_state = 2}, - [3586] = {.lex_state = 14, .external_lex_state = 2}, - [3587] = {.lex_state = 1834}, - [3588] = {.lex_state = 24}, - [3589] = {.lex_state = 1837}, - [3590] = {.lex_state = 24}, - [3591] = {.lex_state = 14, .external_lex_state = 2}, - [3592] = {.lex_state = 1833}, - [3593] = {.lex_state = 1835}, - [3594] = {.lex_state = 24}, - [3595] = {.lex_state = 260, .external_lex_state = 2}, - [3596] = {.lex_state = 99}, - [3597] = {.lex_state = 24}, - [3598] = {.lex_state = 99}, - [3599] = {.lex_state = 24}, - [3600] = {.lex_state = 99}, - [3601] = {.lex_state = 14, .external_lex_state = 2}, - [3602] = {.lex_state = 24}, - [3603] = {.lex_state = 24}, - [3604] = {.lex_state = 24}, - [3605] = {.lex_state = 260, .external_lex_state = 2}, + [3579] = {.lex_state = 717}, + [3580] = {.lex_state = 14, .external_lex_state = 2}, + [3581] = {.lex_state = 24}, + [3582] = {.lex_state = 24}, + [3583] = {.lex_state = 717}, + [3584] = {.lex_state = 717}, + [3585] = {.lex_state = 717}, + [3586] = {.lex_state = 717}, + [3587] = {.lex_state = 717}, + [3588] = {.lex_state = 235, .external_lex_state = 2}, + [3589] = {.lex_state = 717}, + [3590] = {.lex_state = 710}, + [3591] = {.lex_state = 710}, + [3592] = {.lex_state = 710}, + [3593] = {.lex_state = 717}, + [3594] = {.lex_state = 14, .external_lex_state = 2}, + [3595] = {.lex_state = 14, .external_lex_state = 2}, + [3596] = {.lex_state = 717}, + [3597] = {.lex_state = 717}, + [3598] = {.lex_state = 717}, + [3599] = {.lex_state = 709}, + [3600] = {.lex_state = 717}, + [3601] = {.lex_state = 717}, + [3602] = {.lex_state = 1832}, + [3603] = {.lex_state = 717}, + [3604] = {.lex_state = 717}, + [3605] = {.lex_state = 14, .external_lex_state = 2}, [3606] = {.lex_state = 14, .external_lex_state = 2}, - [3607] = {.lex_state = 24}, - [3608] = {.lex_state = 697}, - [3609] = {.lex_state = 260, .external_lex_state = 2}, - [3610] = {.lex_state = 260, .external_lex_state = 2}, - [3611] = {.lex_state = 14, .external_lex_state = 2}, - [3612] = {.lex_state = 260, .external_lex_state = 2}, - [3613] = {.lex_state = 697}, - [3614] = {.lex_state = 14, .external_lex_state = 2}, - [3615] = {.lex_state = 1835}, + [3607] = {.lex_state = 99}, + [3608] = {.lex_state = 1835}, + [3609] = {.lex_state = 711}, + [3610] = {.lex_state = 24}, + [3611] = {.lex_state = 260, .external_lex_state = 2}, + [3612] = {.lex_state = 1837}, + [3613] = {.lex_state = 14, .external_lex_state = 2}, + [3614] = {.lex_state = 24}, + [3615] = {.lex_state = 24}, [3616] = {.lex_state = 24}, - [3617] = {.lex_state = 711}, - [3618] = {.lex_state = 231, .external_lex_state = 2}, - [3619] = {.lex_state = 24}, - [3620] = {.lex_state = 242, .external_lex_state = 2}, - [3621] = {.lex_state = 24}, - [3622] = {.lex_state = 45, .external_lex_state = 2}, - [3623] = {.lex_state = 24}, - [3624] = {.lex_state = 45, .external_lex_state = 2}, + [3617] = {.lex_state = 244, .external_lex_state = 2}, + [3618] = {.lex_state = 99}, + [3619] = {.lex_state = 99}, + [3620] = {.lex_state = 24}, + [3621] = {.lex_state = 14, .external_lex_state = 2}, + [3622] = {.lex_state = 24}, + [3623] = {.lex_state = 1833}, + [3624] = {.lex_state = 24}, [3625] = {.lex_state = 24}, [3626] = {.lex_state = 24}, - [3627] = {.lex_state = 24}, + [3627] = {.lex_state = 14, .external_lex_state = 2}, [3628] = {.lex_state = 24}, [3629] = {.lex_state = 24}, - [3630] = {.lex_state = 1836}, - [3631] = {.lex_state = 45, .external_lex_state = 2}, - [3632] = {.lex_state = 1836}, - [3633] = {.lex_state = 45, .external_lex_state = 2}, - [3634] = {.lex_state = 45, .external_lex_state = 2}, - [3635] = {.lex_state = 1838}, - [3636] = {.lex_state = 23}, - [3637] = {.lex_state = 45, .external_lex_state = 2}, - [3638] = {.lex_state = 710}, - [3639] = {.lex_state = 23}, - [3640] = {.lex_state = 45, .external_lex_state = 2}, - [3641] = {.lex_state = 697}, - [3642] = {.lex_state = 45, .external_lex_state = 2}, - [3643] = {.lex_state = 45, .external_lex_state = 2}, - [3644] = {.lex_state = 45, .external_lex_state = 2}, - [3645] = {.lex_state = 24}, - [3646] = {.lex_state = 45, .external_lex_state = 2}, - [3647] = {.lex_state = 45, .external_lex_state = 2}, - [3648] = {.lex_state = 45, .external_lex_state = 2}, - [3649] = {.lex_state = 45, .external_lex_state = 2}, - [3650] = {.lex_state = 45, .external_lex_state = 2}, - [3651] = {.lex_state = 45, .external_lex_state = 2}, - [3652] = {.lex_state = 45, .external_lex_state = 2}, - [3653] = {.lex_state = 45, .external_lex_state = 2}, - [3654] = {.lex_state = 45, .external_lex_state = 2}, - [3655] = {.lex_state = 45, .external_lex_state = 2}, - [3656] = {.lex_state = 45, .external_lex_state = 2}, - [3657] = {.lex_state = 45, .external_lex_state = 2}, - [3658] = {.lex_state = 697}, - [3659] = {.lex_state = 45, .external_lex_state = 2}, - [3660] = {.lex_state = 45, .external_lex_state = 2}, - [3661] = {.lex_state = 45, .external_lex_state = 2}, - [3662] = {.lex_state = 98}, - [3663] = {.lex_state = 45, .external_lex_state = 2}, - [3664] = {.lex_state = 98}, - [3665] = {.lex_state = 1836}, - [3666] = {.lex_state = 710}, - [3667] = {.lex_state = 45, .external_lex_state = 2}, - [3668] = {.lex_state = 64}, - [3669] = {.lex_state = 24}, - [3670] = {.lex_state = 45, .external_lex_state = 2}, - [3671] = {.lex_state = 45, .external_lex_state = 2}, - [3672] = {.lex_state = 45, .external_lex_state = 2}, - [3673] = {.lex_state = 98}, - [3674] = {.lex_state = 24}, - [3675] = {.lex_state = 45, .external_lex_state = 2}, - [3676] = {.lex_state = 45, .external_lex_state = 2}, - [3677] = {.lex_state = 45, .external_lex_state = 2}, - [3678] = {.lex_state = 45, .external_lex_state = 2}, - [3679] = {.lex_state = 45, .external_lex_state = 2}, - [3680] = {.lex_state = 24}, + [3630] = {.lex_state = 260, .external_lex_state = 2}, + [3631] = {.lex_state = 697}, + [3632] = {.lex_state = 14, .external_lex_state = 2}, + [3633] = {.lex_state = 260, .external_lex_state = 2}, + [3634] = {.lex_state = 697}, + [3635] = {.lex_state = 1835}, + [3636] = {.lex_state = 233, .external_lex_state = 2}, + [3637] = {.lex_state = 260, .external_lex_state = 2}, + [3638] = {.lex_state = 260, .external_lex_state = 2}, + [3639] = {.lex_state = 43, .external_lex_state = 2}, + [3640] = {.lex_state = 43, .external_lex_state = 2}, + [3641] = {.lex_state = 43, .external_lex_state = 2}, + [3642] = {.lex_state = 43, .external_lex_state = 2}, + [3643] = {.lex_state = 43, .external_lex_state = 2}, + [3644] = {.lex_state = 1836}, + [3645] = {.lex_state = 43, .external_lex_state = 2}, + [3646] = {.lex_state = 1838}, + [3647] = {.lex_state = 1836}, + [3648] = {.lex_state = 43, .external_lex_state = 2}, + [3649] = {.lex_state = 43, .external_lex_state = 2}, + [3650] = {.lex_state = 43, .external_lex_state = 2}, + [3651] = {.lex_state = 98}, + [3652] = {.lex_state = 43, .external_lex_state = 2}, + [3653] = {.lex_state = 43, .external_lex_state = 2}, + [3654] = {.lex_state = 43, .external_lex_state = 2}, + [3655] = {.lex_state = 43, .external_lex_state = 2}, + [3656] = {.lex_state = 43, .external_lex_state = 2}, + [3657] = {.lex_state = 697}, + [3658] = {.lex_state = 43, .external_lex_state = 2}, + [3659] = {.lex_state = 43, .external_lex_state = 2}, + [3660] = {.lex_state = 43, .external_lex_state = 2}, + [3661] = {.lex_state = 43, .external_lex_state = 2}, + [3662] = {.lex_state = 43, .external_lex_state = 2}, + [3663] = {.lex_state = 43, .external_lex_state = 2}, + [3664] = {.lex_state = 43, .external_lex_state = 2}, + [3665] = {.lex_state = 23}, + [3666] = {.lex_state = 43, .external_lex_state = 2}, + [3667] = {.lex_state = 23}, + [3668] = {.lex_state = 98}, + [3669] = {.lex_state = 710}, + [3670] = {.lex_state = 24}, + [3671] = {.lex_state = 98}, + [3672] = {.lex_state = 98}, + [3673] = {.lex_state = 24}, + [3674] = {.lex_state = 43, .external_lex_state = 2}, + [3675] = {.lex_state = 24}, + [3676] = {.lex_state = 24}, + [3677] = {.lex_state = 43, .external_lex_state = 2}, + [3678] = {.lex_state = 24}, + [3679] = {.lex_state = 24}, + [3680] = {.lex_state = 43, .external_lex_state = 2}, [3681] = {.lex_state = 24}, - [3682] = {.lex_state = 1836}, - [3683] = {.lex_state = 709}, - [3684] = {.lex_state = 709}, - [3685] = {.lex_state = 98}, - [3686] = {.lex_state = 24}, - [3687] = {.lex_state = 45, .external_lex_state = 2}, - [3688] = {.lex_state = 45, .external_lex_state = 2}, - [3689] = {.lex_state = 23}, - [3690] = {.lex_state = 45, .external_lex_state = 2}, - [3691] = {.lex_state = 45, .external_lex_state = 2}, - [3692] = {.lex_state = 98}, - [3693] = {.lex_state = 1836}, - [3694] = {.lex_state = 24}, - [3695] = {.lex_state = 23}, - [3696] = {.lex_state = 23}, - [3697] = {.lex_state = 24}, - [3698] = {.lex_state = 45, .external_lex_state = 2}, - [3699] = {.lex_state = 45, .external_lex_state = 2}, - [3700] = {.lex_state = 45, .external_lex_state = 2}, - [3701] = {.lex_state = 64}, - [3702] = {.lex_state = 45, .external_lex_state = 2}, - [3703] = {.lex_state = 45, .external_lex_state = 2}, - [3704] = {.lex_state = 45, .external_lex_state = 2}, - [3705] = {.lex_state = 45, .external_lex_state = 2}, - [3706] = {.lex_state = 45, .external_lex_state = 2}, - [3707] = {.lex_state = 45, .external_lex_state = 2}, - [3708] = {.lex_state = 1838}, - [3709] = {.lex_state = 24}, - [3710] = {.lex_state = 45, .external_lex_state = 2}, - [3711] = {.lex_state = 24}, - [3712] = {.lex_state = 45, .external_lex_state = 2}, - [3713] = {.lex_state = 697}, - [3714] = {.lex_state = 697}, - [3715] = {.lex_state = 697}, - [3716] = {.lex_state = 697}, - [3717] = {.lex_state = 697}, - [3718] = {.lex_state = 697}, - [3719] = {.lex_state = 697}, - [3720] = {.lex_state = 697}, - [3721] = {.lex_state = 697}, - [3722] = {.lex_state = 697}, - [3723] = {.lex_state = 1839}, - [3724] = {.lex_state = 697}, - [3725] = {.lex_state = 97}, - [3726] = {.lex_state = 697}, - [3727] = {.lex_state = 97}, - [3728] = {.lex_state = 697}, - [3729] = {.lex_state = 697}, - [3730] = {.lex_state = 1839}, + [3682] = {.lex_state = 43, .external_lex_state = 2}, + [3683] = {.lex_state = 24}, + [3684] = {.lex_state = 24}, + [3685] = {.lex_state = 24}, + [3686] = {.lex_state = 98}, + [3687] = {.lex_state = 43, .external_lex_state = 2}, + [3688] = {.lex_state = 24}, + [3689] = {.lex_state = 24}, + [3690] = {.lex_state = 43, .external_lex_state = 2}, + [3691] = {.lex_state = 43, .external_lex_state = 2}, + [3692] = {.lex_state = 43, .external_lex_state = 2}, + [3693] = {.lex_state = 23}, + [3694] = {.lex_state = 43, .external_lex_state = 2}, + [3695] = {.lex_state = 43, .external_lex_state = 2}, + [3696] = {.lex_state = 710}, + [3697] = {.lex_state = 43, .external_lex_state = 2}, + [3698] = {.lex_state = 697}, + [3699] = {.lex_state = 23}, + [3700] = {.lex_state = 23}, + [3701] = {.lex_state = 43, .external_lex_state = 2}, + [3702] = {.lex_state = 43, .external_lex_state = 2}, + [3703] = {.lex_state = 43, .external_lex_state = 2}, + [3704] = {.lex_state = 43, .external_lex_state = 2}, + [3705] = {.lex_state = 43, .external_lex_state = 2}, + [3706] = {.lex_state = 64}, + [3707] = {.lex_state = 43, .external_lex_state = 2}, + [3708] = {.lex_state = 1836}, + [3709] = {.lex_state = 1838}, + [3710] = {.lex_state = 43, .external_lex_state = 2}, + [3711] = {.lex_state = 43, .external_lex_state = 2}, + [3712] = {.lex_state = 43, .external_lex_state = 2}, + [3713] = {.lex_state = 43, .external_lex_state = 2}, + [3714] = {.lex_state = 43, .external_lex_state = 2}, + [3715] = {.lex_state = 43, .external_lex_state = 2}, + [3716] = {.lex_state = 709}, + [3717] = {.lex_state = 709}, + [3718] = {.lex_state = 43, .external_lex_state = 2}, + [3719] = {.lex_state = 24}, + [3720] = {.lex_state = 24}, + [3721] = {.lex_state = 24}, + [3722] = {.lex_state = 24}, + [3723] = {.lex_state = 43, .external_lex_state = 2}, + [3724] = {.lex_state = 64}, + [3725] = {.lex_state = 1836}, + [3726] = {.lex_state = 1836}, + [3727] = {.lex_state = 43, .external_lex_state = 2}, + [3728] = {.lex_state = 43, .external_lex_state = 2}, + [3729] = {.lex_state = 24}, + [3730] = {.lex_state = 97}, [3731] = {.lex_state = 697}, [3732] = {.lex_state = 697}, [3733] = {.lex_state = 697}, - [3734] = {.lex_state = 97}, + [3734] = {.lex_state = 697}, [3735] = {.lex_state = 697}, [3736] = {.lex_state = 697}, - [3737] = {.lex_state = 743}, + [3737] = {.lex_state = 697}, [3738] = {.lex_state = 697}, - [3739] = {.lex_state = 743}, - [3740] = {.lex_state = 1839}, - [3741] = {.lex_state = 743}, + [3739] = {.lex_state = 697}, + [3740] = {.lex_state = 697}, + [3741] = {.lex_state = 697}, [3742] = {.lex_state = 697}, [3743] = {.lex_state = 697}, [3744] = {.lex_state = 697}, [3745] = {.lex_state = 697}, [3746] = {.lex_state = 697}, - [3747] = {.lex_state = 697}, + [3747] = {.lex_state = 743}, [3748] = {.lex_state = 697}, [3749] = {.lex_state = 697}, - [3750] = {.lex_state = 697}, - [3751] = {.lex_state = 697}, - [3752] = {.lex_state = 697}, + [3750] = {.lex_state = 743}, + [3751] = {.lex_state = 710}, + [3752] = {.lex_state = 1839}, [3753] = {.lex_state = 97}, - [3754] = {.lex_state = 697}, + [3754] = {.lex_state = 743}, [3755] = {.lex_state = 697}, - [3756] = {.lex_state = 697}, - [3757] = {.lex_state = 1839}, + [3756] = {.lex_state = 743}, + [3757] = {.lex_state = 697}, [3758] = {.lex_state = 697}, - [3759] = {.lex_state = 697}, + [3759] = {.lex_state = 96}, [3760] = {.lex_state = 697}, - [3761] = {.lex_state = 1839}, - [3762] = {.lex_state = 1839}, + [3761] = {.lex_state = 697}, + [3762] = {.lex_state = 697}, [3763] = {.lex_state = 697}, - [3764] = {.lex_state = 697}, + [3764] = {.lex_state = 1839}, [3765] = {.lex_state = 1839}, [3766] = {.lex_state = 697}, - [3767] = {.lex_state = 697}, + [3767] = {.lex_state = 22}, [3768] = {.lex_state = 697}, [3769] = {.lex_state = 697}, [3770] = {.lex_state = 697}, - [3771] = {.lex_state = 743}, - [3772] = {.lex_state = 743}, - [3773] = {.lex_state = 743}, + [3771] = {.lex_state = 697}, + [3772] = {.lex_state = 697}, + [3773] = {.lex_state = 697}, [3774] = {.lex_state = 697}, - [3775] = {.lex_state = 1839}, + [3775] = {.lex_state = 697}, [3776] = {.lex_state = 697}, [3777] = {.lex_state = 697}, - [3778] = {.lex_state = 1839}, - [3779] = {.lex_state = 710}, + [3778] = {.lex_state = 697}, + [3779] = {.lex_state = 697}, [3780] = {.lex_state = 697}, [3781] = {.lex_state = 697}, [3782] = {.lex_state = 697}, @@ -58185,630 +58339,630 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3785] = {.lex_state = 697}, [3786] = {.lex_state = 697}, [3787] = {.lex_state = 697}, - [3788] = {.lex_state = 743}, + [3788] = {.lex_state = 697}, [3789] = {.lex_state = 697}, [3790] = {.lex_state = 697}, [3791] = {.lex_state = 697}, - [3792] = {.lex_state = 697}, + [3792] = {.lex_state = 1839}, [3793] = {.lex_state = 697}, - [3794] = {.lex_state = 697}, + [3794] = {.lex_state = 1839}, [3795] = {.lex_state = 697}, - [3796] = {.lex_state = 697}, + [3796] = {.lex_state = 710}, [3797] = {.lex_state = 697}, - [3798] = {.lex_state = 743}, + [3798] = {.lex_state = 697}, [3799] = {.lex_state = 697}, - [3800] = {.lex_state = 697}, - [3801] = {.lex_state = 743}, + [3800] = {.lex_state = 97}, + [3801] = {.lex_state = 697}, [3802] = {.lex_state = 697}, [3803] = {.lex_state = 697}, [3804] = {.lex_state = 697}, [3805] = {.lex_state = 697}, - [3806] = {.lex_state = 697}, + [3806] = {.lex_state = 1839}, [3807] = {.lex_state = 697}, - [3808] = {.lex_state = 743}, + [3808] = {.lex_state = 697}, [3809] = {.lex_state = 697}, [3810] = {.lex_state = 697}, [3811] = {.lex_state = 697}, - [3812] = {.lex_state = 697}, + [3812] = {.lex_state = 743}, [3813] = {.lex_state = 697}, - [3814] = {.lex_state = 743}, - [3815] = {.lex_state = 743}, + [3814] = {.lex_state = 697}, + [3815] = {.lex_state = 1839}, [3816] = {.lex_state = 697}, [3817] = {.lex_state = 697}, - [3818] = {.lex_state = 743}, + [3818] = {.lex_state = 697}, [3819] = {.lex_state = 1839}, - [3820] = {.lex_state = 710}, - [3821] = {.lex_state = 697}, - [3822] = {.lex_state = 697}, + [3820] = {.lex_state = 1839}, + [3821] = {.lex_state = 743}, + [3822] = {.lex_state = 743}, [3823] = {.lex_state = 697}, - [3824] = {.lex_state = 743}, + [3824] = {.lex_state = 1839}, [3825] = {.lex_state = 697}, [3826] = {.lex_state = 697}, - [3827] = {.lex_state = 22}, - [3828] = {.lex_state = 697}, - [3829] = {.lex_state = 697}, + [3827] = {.lex_state = 697}, + [3828] = {.lex_state = 743}, + [3829] = {.lex_state = 743}, [3830] = {.lex_state = 697}, - [3831] = {.lex_state = 97}, - [3832] = {.lex_state = 697}, - [3833] = {.lex_state = 96}, - [3834] = {.lex_state = 743}, - [3835] = {.lex_state = 1839}, + [3831] = {.lex_state = 697}, + [3832] = {.lex_state = 1839}, + [3833] = {.lex_state = 1839}, + [3834] = {.lex_state = 697}, + [3835] = {.lex_state = 697}, [3836] = {.lex_state = 697}, [3837] = {.lex_state = 697}, - [3838] = {.lex_state = 697}, + [3838] = {.lex_state = 743}, [3839] = {.lex_state = 697}, [3840] = {.lex_state = 697}, [3841] = {.lex_state = 697}, - [3842] = {.lex_state = 1839}, - [3843] = {.lex_state = 697}, + [3842] = {.lex_state = 697}, + [3843] = {.lex_state = 97}, [3844] = {.lex_state = 697}, - [3845] = {.lex_state = 24}, - [3846] = {.lex_state = 24}, - [3847] = {.lex_state = 24}, - [3848] = {.lex_state = 64}, - [3849] = {.lex_state = 24}, - [3850] = {.lex_state = 24}, - [3851] = {.lex_state = 751}, - [3852] = {.lex_state = 751}, - [3853] = {.lex_state = 24}, - [3854] = {.lex_state = 24}, - [3855] = {.lex_state = 64}, - [3856] = {.lex_state = 24}, - [3857] = {.lex_state = 24}, - [3858] = {.lex_state = 64}, - [3859] = {.lex_state = 64}, + [3845] = {.lex_state = 743}, + [3846] = {.lex_state = 697}, + [3847] = {.lex_state = 697}, + [3848] = {.lex_state = 97}, + [3849] = {.lex_state = 743}, + [3850] = {.lex_state = 743}, + [3851] = {.lex_state = 697}, + [3852] = {.lex_state = 697}, + [3853] = {.lex_state = 697}, + [3854] = {.lex_state = 697}, + [3855] = {.lex_state = 697}, + [3856] = {.lex_state = 743}, + [3857] = {.lex_state = 697}, + [3858] = {.lex_state = 743}, + [3859] = {.lex_state = 697}, [3860] = {.lex_state = 697}, - [3861] = {.lex_state = 24}, - [3862] = {.lex_state = 24}, - [3863] = {.lex_state = 697}, + [3861] = {.lex_state = 697}, + [3862] = {.lex_state = 64}, + [3863] = {.lex_state = 64}, [3864] = {.lex_state = 64}, - [3865] = {.lex_state = 95}, + [3865] = {.lex_state = 64}, [3866] = {.lex_state = 24}, - [3867] = {.lex_state = 64}, - [3868] = {.lex_state = 24}, + [3867] = {.lex_state = 751}, + [3868] = {.lex_state = 697}, [3869] = {.lex_state = 64}, [3870] = {.lex_state = 64}, - [3871] = {.lex_state = 64}, - [3872] = {.lex_state = 697}, - [3873] = {.lex_state = 64}, - [3874] = {.lex_state = 64}, - [3875] = {.lex_state = 64}, - [3876] = {.lex_state = 697}, - [3877] = {.lex_state = 64}, + [3871] = {.lex_state = 751}, + [3872] = {.lex_state = 64}, + [3873] = {.lex_state = 24}, + [3874] = {.lex_state = 24}, + [3875] = {.lex_state = 24}, + [3876] = {.lex_state = 24}, + [3877] = {.lex_state = 24}, [3878] = {.lex_state = 24}, - [3879] = {.lex_state = 24}, + [3879] = {.lex_state = 95}, [3880] = {.lex_state = 24}, [3881] = {.lex_state = 24}, [3882] = {.lex_state = 24}, - [3883] = {.lex_state = 64}, - [3884] = {.lex_state = 24}, - [3885] = {.lex_state = 64}, - [3886] = {.lex_state = 64}, - [3887] = {.lex_state = 64}, - [3888] = {.lex_state = 64}, - [3889] = {.lex_state = 64}, - [3890] = {.lex_state = 64}, + [3883] = {.lex_state = 24}, + [3884] = {.lex_state = 64}, + [3885] = {.lex_state = 24}, + [3886] = {.lex_state = 24}, + [3887] = {.lex_state = 24}, + [3888] = {.lex_state = 24}, + [3889] = {.lex_state = 24}, + [3890] = {.lex_state = 24}, [3891] = {.lex_state = 24}, [3892] = {.lex_state = 64}, [3893] = {.lex_state = 24}, [3894] = {.lex_state = 24}, [3895] = {.lex_state = 24}, - [3896] = {.lex_state = 24}, + [3896] = {.lex_state = 64}, [3897] = {.lex_state = 24}, - [3898] = {.lex_state = 64}, + [3898] = {.lex_state = 24}, [3899] = {.lex_state = 24}, [3900] = {.lex_state = 24}, - [3901] = {.lex_state = 64}, + [3901] = {.lex_state = 24}, [3902] = {.lex_state = 24}, - [3903] = {.lex_state = 697}, + [3903] = {.lex_state = 24}, [3904] = {.lex_state = 24}, [3905] = {.lex_state = 24}, - [3906] = {.lex_state = 24}, + [3906] = {.lex_state = 697}, [3907] = {.lex_state = 24}, - [3908] = {.lex_state = 697}, - [3909] = {.lex_state = 64}, - [3910] = {.lex_state = 24}, - [3911] = {.lex_state = 24}, + [3908] = {.lex_state = 24}, + [3909] = {.lex_state = 24}, + [3910] = {.lex_state = 64}, + [3911] = {.lex_state = 64}, [3912] = {.lex_state = 64}, - [3913] = {.lex_state = 24}, + [3913] = {.lex_state = 64}, [3914] = {.lex_state = 64}, [3915] = {.lex_state = 697}, - [3916] = {.lex_state = 1840}, - [3917] = {.lex_state = 709}, - [3918] = {.lex_state = 697}, - [3919] = {.lex_state = 1840}, + [3916] = {.lex_state = 697}, + [3917] = {.lex_state = 64}, + [3918] = {.lex_state = 64}, + [3919] = {.lex_state = 64}, [3920] = {.lex_state = 697}, [3921] = {.lex_state = 697}, - [3922] = {.lex_state = 709}, - [3923] = {.lex_state = 709}, - [3924] = {.lex_state = 709}, - [3925] = {.lex_state = 751}, - [3926] = {.lex_state = 709}, - [3927] = {.lex_state = 1840}, - [3928] = {.lex_state = 709}, - [3929] = {.lex_state = 697}, - [3930] = {.lex_state = 1840}, - [3931] = {.lex_state = 709}, - [3932] = {.lex_state = 751}, - [3933] = {.lex_state = 697}, - [3934] = {.lex_state = 697}, - [3935] = {.lex_state = 697}, - [3936] = {.lex_state = 697}, - [3937] = {.lex_state = 697}, - [3938] = {.lex_state = 697}, + [3922] = {.lex_state = 64}, + [3923] = {.lex_state = 64}, + [3924] = {.lex_state = 64}, + [3925] = {.lex_state = 64}, + [3926] = {.lex_state = 64}, + [3927] = {.lex_state = 24}, + [3928] = {.lex_state = 64}, + [3929] = {.lex_state = 64}, + [3930] = {.lex_state = 64}, + [3931] = {.lex_state = 24}, + [3932] = {.lex_state = 1840}, + [3933] = {.lex_state = 709}, + [3934] = {.lex_state = 709}, + [3935] = {.lex_state = 709}, + [3936] = {.lex_state = 709}, + [3937] = {.lex_state = 709}, + [3938] = {.lex_state = 709}, [3939] = {.lex_state = 709}, - [3940] = {.lex_state = 697}, + [3940] = {.lex_state = 751}, [3941] = {.lex_state = 1840}, [3942] = {.lex_state = 751}, - [3943] = {.lex_state = 709}, - [3944] = {.lex_state = 709}, + [3943] = {.lex_state = 1840}, + [3944] = {.lex_state = 1840}, [3945] = {.lex_state = 1840}, - [3946] = {.lex_state = 709}, - [3947] = {.lex_state = 1840}, + [3946] = {.lex_state = 697}, + [3947] = {.lex_state = 709}, [3948] = {.lex_state = 709}, - [3949] = {.lex_state = 1840}, + [3949] = {.lex_state = 697}, [3950] = {.lex_state = 1840}, [3951] = {.lex_state = 751}, - [3952] = {.lex_state = 751}, - [3953] = {.lex_state = 64}, - [3954] = {.lex_state = 751}, - [3955] = {.lex_state = 64}, - [3956] = {.lex_state = 64}, - [3957] = {.lex_state = 64}, - [3958] = {.lex_state = 64}, - [3959] = {.lex_state = 64}, - [3960] = {.lex_state = 64}, - [3961] = {.lex_state = 697}, - [3962] = {.lex_state = 751}, - [3963] = {.lex_state = 64}, - [3964] = {.lex_state = 64}, - [3965] = {.lex_state = 64}, - [3966] = {.lex_state = 64}, - [3967] = {.lex_state = 64}, - [3968] = {.lex_state = 710}, - [3969] = {.lex_state = 697}, - [3970] = {.lex_state = 751}, - [3971] = {.lex_state = 751}, + [3952] = {.lex_state = 697}, + [3953] = {.lex_state = 697}, + [3954] = {.lex_state = 697}, + [3955] = {.lex_state = 697}, + [3956] = {.lex_state = 751}, + [3957] = {.lex_state = 697}, + [3958] = {.lex_state = 751}, + [3959] = {.lex_state = 697}, + [3960] = {.lex_state = 697}, + [3961] = {.lex_state = 1840}, + [3962] = {.lex_state = 697}, + [3963] = {.lex_state = 697}, + [3964] = {.lex_state = 697}, + [3965] = {.lex_state = 1840}, + [3966] = {.lex_state = 709}, + [3967] = {.lex_state = 709}, + [3968] = {.lex_state = 709}, + [3969] = {.lex_state = 1840}, + [3970] = {.lex_state = 64}, + [3971] = {.lex_state = 64}, [3972] = {.lex_state = 751}, - [3973] = {.lex_state = 751}, - [3974] = {.lex_state = 697}, - [3975] = {.lex_state = 697}, - [3976] = {.lex_state = 697}, - [3977] = {.lex_state = 697}, - [3978] = {.lex_state = 697}, - [3979] = {.lex_state = 710}, - [3980] = {.lex_state = 779}, - [3981] = {.lex_state = 776}, - [3982] = {.lex_state = 779}, - [3983] = {.lex_state = 776}, - [3984] = {.lex_state = 776}, - [3985] = {.lex_state = 776}, - [3986] = {.lex_state = 778}, - [3987] = {.lex_state = 789}, - [3988] = {.lex_state = 785}, - [3989] = {.lex_state = 785}, - [3990] = {.lex_state = 791}, - [3991] = {.lex_state = 789}, - [3992] = {.lex_state = 778}, - [3993] = {.lex_state = 791}, - [3994] = {.lex_state = 778}, - [3995] = {.lex_state = 793}, - [3996] = {.lex_state = 777}, - [3997] = {.lex_state = 777}, - [3998] = {.lex_state = 793}, - [3999] = {.lex_state = 786}, - [4000] = {.lex_state = 790}, - [4001] = {.lex_state = 777}, - [4002] = {.lex_state = 795}, - [4003] = {.lex_state = 791}, - [4004] = {.lex_state = 791}, - [4005] = {.lex_state = 793}, - [4006] = {.lex_state = 793}, - [4007] = {.lex_state = 777}, - [4008] = {.lex_state = 793}, - [4009] = {.lex_state = 787}, - [4010] = {.lex_state = 793}, - [4011] = {.lex_state = 778}, - [4012] = {.lex_state = 778}, - [4013] = {.lex_state = 778}, - [4014] = {.lex_state = 778}, - [4015] = {.lex_state = 778}, - [4016] = {.lex_state = 710}, - [4017] = {.lex_state = 710}, - [4018] = {.lex_state = 794}, - [4019] = {.lex_state = 795}, - [4020] = {.lex_state = 797}, - [4021] = {.lex_state = 790}, - [4022] = {.lex_state = 797}, + [3973] = {.lex_state = 64}, + [3974] = {.lex_state = 64}, + [3975] = {.lex_state = 64}, + [3976] = {.lex_state = 751}, + [3977] = {.lex_state = 710}, + [3978] = {.lex_state = 64}, + [3979] = {.lex_state = 751}, + [3980] = {.lex_state = 697}, + [3981] = {.lex_state = 697}, + [3982] = {.lex_state = 697}, + [3983] = {.lex_state = 697}, + [3984] = {.lex_state = 697}, + [3985] = {.lex_state = 64}, + [3986] = {.lex_state = 697}, + [3987] = {.lex_state = 64}, + [3988] = {.lex_state = 751}, + [3989] = {.lex_state = 64}, + [3990] = {.lex_state = 64}, + [3991] = {.lex_state = 751}, + [3992] = {.lex_state = 697}, + [3993] = {.lex_state = 64}, + [3994] = {.lex_state = 64}, + [3995] = {.lex_state = 751}, + [3996] = {.lex_state = 779}, + [3997] = {.lex_state = 710}, + [3998] = {.lex_state = 776}, + [3999] = {.lex_state = 779}, + [4000] = {.lex_state = 776}, + [4001] = {.lex_state = 778}, + [4002] = {.lex_state = 785}, + [4003] = {.lex_state = 776}, + [4004] = {.lex_state = 789}, + [4005] = {.lex_state = 776}, + [4006] = {.lex_state = 785}, + [4007] = {.lex_state = 778}, + [4008] = {.lex_state = 791}, + [4009] = {.lex_state = 791}, + [4010] = {.lex_state = 778}, + [4011] = {.lex_state = 777}, + [4012] = {.lex_state = 777}, + [4013] = {.lex_state = 789}, + [4014] = {.lex_state = 793}, + [4015] = {.lex_state = 795}, + [4016] = {.lex_state = 793}, + [4017] = {.lex_state = 791}, + [4018] = {.lex_state = 791}, + [4019] = {.lex_state = 793}, + [4020] = {.lex_state = 790}, + [4021] = {.lex_state = 778}, + [4022] = {.lex_state = 777}, [4023] = {.lex_state = 793}, - [4024] = {.lex_state = 792}, - [4025] = {.lex_state = 778}, - [4026] = {.lex_state = 64}, - [4027] = {.lex_state = 778}, - [4028] = {.lex_state = 778}, + [4024] = {.lex_state = 777}, + [4025] = {.lex_state = 787}, + [4026] = {.lex_state = 778}, + [4027] = {.lex_state = 710}, + [4028] = {.lex_state = 710}, [4029] = {.lex_state = 778}, - [4030] = {.lex_state = 787}, + [4030] = {.lex_state = 778}, [4031] = {.lex_state = 793}, - [4032] = {.lex_state = 792}, - [4033] = {.lex_state = 793}, - [4034] = {.lex_state = 786}, - [4035] = {.lex_state = 49}, - [4036] = {.lex_state = 710}, - [4037] = {.lex_state = 710}, - [4038] = {.lex_state = 793}, - [4039] = {.lex_state = 794}, - [4040] = {.lex_state = 49}, - [4041] = {.lex_state = 799}, - [4042] = {.lex_state = 786}, - [4043] = {.lex_state = 788}, - [4044] = {.lex_state = 799}, - [4045] = {.lex_state = 786}, - [4046] = {.lex_state = 799}, - [4047] = {.lex_state = 799}, - [4048] = {.lex_state = 792}, - [4049] = {.lex_state = 794}, - [4050] = {.lex_state = 794}, - [4051] = {.lex_state = 794}, - [4052] = {.lex_state = 794}, - [4053] = {.lex_state = 796}, - [4054] = {.lex_state = 50}, - [4055] = {.lex_state = 52}, - [4056] = {.lex_state = 64}, - [4057] = {.lex_state = 786}, - [4058] = {.lex_state = 797}, + [4032] = {.lex_state = 786}, + [4033] = {.lex_state = 778}, + [4034] = {.lex_state = 793}, + [4035] = {.lex_state = 797}, + [4036] = {.lex_state = 793}, + [4037] = {.lex_state = 795}, + [4038] = {.lex_state = 797}, + [4039] = {.lex_state = 793}, + [4040] = {.lex_state = 790}, + [4041] = {.lex_state = 793}, + [4042] = {.lex_state = 778}, + [4043] = {.lex_state = 778}, + [4044] = {.lex_state = 778}, + [4045] = {.lex_state = 793}, + [4046] = {.lex_state = 778}, + [4047] = {.lex_state = 792}, + [4048] = {.lex_state = 49}, + [4049] = {.lex_state = 64}, + [4050] = {.lex_state = 787}, + [4051] = {.lex_state = 710}, + [4052] = {.lex_state = 792}, + [4053] = {.lex_state = 794}, + [4054] = {.lex_state = 710}, + [4055] = {.lex_state = 786}, + [4056] = {.lex_state = 792}, + [4057] = {.lex_state = 792}, + [4058] = {.lex_state = 799}, [4059] = {.lex_state = 799}, - [4060] = {.lex_state = 799}, - [4061] = {.lex_state = 797}, - [4062] = {.lex_state = 48}, - [4063] = {.lex_state = 792}, - [4064] = {.lex_state = 48}, - [4065] = {.lex_state = 799}, - [4066] = {.lex_state = 49}, - [4067] = {.lex_state = 786}, - [4068] = {.lex_state = 798}, - [4069] = {.lex_state = 786}, - [4070] = {.lex_state = 801}, + [4060] = {.lex_state = 64}, + [4061] = {.lex_state = 794}, + [4062] = {.lex_state = 50}, + [4063] = {.lex_state = 799}, + [4064] = {.lex_state = 52}, + [4065] = {.lex_state = 797}, + [4066] = {.lex_state = 48}, + [4067] = {.lex_state = 796}, + [4068] = {.lex_state = 799}, + [4069] = {.lex_state = 799}, + [4070] = {.lex_state = 786}, [4071] = {.lex_state = 794}, - [4072] = {.lex_state = 53}, - [4073] = {.lex_state = 53}, + [4072] = {.lex_state = 794}, + [4073] = {.lex_state = 794}, [4074] = {.lex_state = 794}, [4075] = {.lex_state = 786}, - [4076] = {.lex_state = 794}, - [4077] = {.lex_state = 799}, - [4078] = {.lex_state = 799}, - [4079] = {.lex_state = 799}, - [4080] = {.lex_state = 786}, + [4076] = {.lex_state = 788}, + [4077] = {.lex_state = 786}, + [4078] = {.lex_state = 797}, + [4079] = {.lex_state = 49}, + [4080] = {.lex_state = 48}, [4081] = {.lex_state = 799}, - [4082] = {.lex_state = 798}, - [4083] = {.lex_state = 796}, - [4084] = {.lex_state = 794}, - [4085] = {.lex_state = 788}, + [4082] = {.lex_state = 49}, + [4083] = {.lex_state = 49}, + [4084] = {.lex_state = 798}, + [4085] = {.lex_state = 786}, [4086] = {.lex_state = 799}, - [4087] = {.lex_state = 803}, - [4088] = {.lex_state = 49}, + [4087] = {.lex_state = 798}, + [4088] = {.lex_state = 53}, [4089] = {.lex_state = 794}, [4090] = {.lex_state = 786}, - [4091] = {.lex_state = 54}, - [4092] = {.lex_state = 49}, - [4093] = {.lex_state = 49}, - [4094] = {.lex_state = 33}, - [4095] = {.lex_state = 54}, - [4096] = {.lex_state = 33}, + [4091] = {.lex_state = 794}, + [4092] = {.lex_state = 799}, + [4093] = {.lex_state = 53}, + [4094] = {.lex_state = 799}, + [4095] = {.lex_state = 796}, + [4096] = {.lex_state = 788}, [4097] = {.lex_state = 786}, - [4098] = {.lex_state = 786}, - [4099] = {.lex_state = 800}, - [4100] = {.lex_state = 33}, - [4101] = {.lex_state = 54}, - [4102] = {.lex_state = 710}, - [4103] = {.lex_state = 710}, - [4104] = {.lex_state = 782}, - [4105] = {.lex_state = 710}, - [4106] = {.lex_state = 54}, - [4107] = {.lex_state = 798}, - [4108] = {.lex_state = 54}, - [4109] = {.lex_state = 805}, - [4110] = {.lex_state = 805}, - [4111] = {.lex_state = 51}, - [4112] = {.lex_state = 800}, - [4113] = {.lex_state = 794}, - [4114] = {.lex_state = 798}, - [4115] = {.lex_state = 801}, + [4098] = {.lex_state = 794}, + [4099] = {.lex_state = 799}, + [4100] = {.lex_state = 799}, + [4101] = {.lex_state = 49}, + [4102] = {.lex_state = 49}, + [4103] = {.lex_state = 794}, + [4104] = {.lex_state = 801}, + [4105] = {.lex_state = 799}, + [4106] = {.lex_state = 803}, + [4107] = {.lex_state = 786}, + [4108] = {.lex_state = 794}, + [4109] = {.lex_state = 54}, + [4110] = {.lex_state = 786}, + [4111] = {.lex_state = 786}, + [4112] = {.lex_state = 54}, + [4113] = {.lex_state = 801}, + [4114] = {.lex_state = 33}, + [4115] = {.lex_state = 794}, [4116] = {.lex_state = 800}, - [4117] = {.lex_state = 800}, - [4118] = {.lex_state = 33}, + [4117] = {.lex_state = 54}, + [4118] = {.lex_state = 782}, [4119] = {.lex_state = 782}, - [4120] = {.lex_state = 782}, - [4121] = {.lex_state = 782}, - [4122] = {.lex_state = 803}, - [4123] = {.lex_state = 782}, - [4124] = {.lex_state = 56}, - [4125] = {.lex_state = 782}, - [4126] = {.lex_state = 800}, - [4127] = {.lex_state = 800}, - [4128] = {.lex_state = 33}, - [4129] = {.lex_state = 33}, - [4130] = {.lex_state = 57}, - [4131] = {.lex_state = 802}, - [4132] = {.lex_state = 57}, - [4133] = {.lex_state = 822}, - [4134] = {.lex_state = 710}, - [4135] = {.lex_state = 33}, - [4136] = {.lex_state = 710}, - [4137] = {.lex_state = 802}, - [4138] = {.lex_state = 805}, - [4139] = {.lex_state = 786}, - [4140] = {.lex_state = 800}, - [4141] = {.lex_state = 822}, - [4142] = {.lex_state = 822}, - [4143] = {.lex_state = 802}, - [4144] = {.lex_state = 802}, - [4145] = {.lex_state = 805}, - [4146] = {.lex_state = 786}, - [4147] = {.lex_state = 786}, - [4148] = {.lex_state = 782}, - [4149] = {.lex_state = 782}, - [4150] = {.lex_state = 782}, - [4151] = {.lex_state = 782}, - [4152] = {.lex_state = 802}, - [4153] = {.lex_state = 802}, - [4154] = {.lex_state = 802}, - [4155] = {.lex_state = 800}, - [4156] = {.lex_state = 710}, - [4157] = {.lex_state = 802}, - [4158] = {.lex_state = 807}, - [4159] = {.lex_state = 33}, - [4160] = {.lex_state = 804}, - [4161] = {.lex_state = 710}, - [4162] = {.lex_state = 807}, - [4163] = {.lex_state = 807}, - [4164] = {.lex_state = 33}, - [4165] = {.lex_state = 33}, - [4166] = {.lex_state = 802}, - [4167] = {.lex_state = 807}, - [4168] = {.lex_state = 807}, - [4169] = {.lex_state = 802}, - [4170] = {.lex_state = 807}, - [4171] = {.lex_state = 807}, - [4172] = {.lex_state = 802}, - [4173] = {.lex_state = 807}, - [4174] = {.lex_state = 802}, - [4175] = {.lex_state = 802}, - [4176] = {.lex_state = 807}, - [4177] = {.lex_state = 802}, + [4120] = {.lex_state = 800}, + [4121] = {.lex_state = 805}, + [4122] = {.lex_state = 798}, + [4123] = {.lex_state = 33}, + [4124] = {.lex_state = 710}, + [4125] = {.lex_state = 710}, + [4126] = {.lex_state = 56}, + [4127] = {.lex_state = 54}, + [4128] = {.lex_state = 800}, + [4129] = {.lex_state = 54}, + [4130] = {.lex_state = 782}, + [4131] = {.lex_state = 51}, + [4132] = {.lex_state = 803}, + [4133] = {.lex_state = 800}, + [4134] = {.lex_state = 33}, + [4135] = {.lex_state = 782}, + [4136] = {.lex_state = 782}, + [4137] = {.lex_state = 800}, + [4138] = {.lex_state = 800}, + [4139] = {.lex_state = 782}, + [4140] = {.lex_state = 33}, + [4141] = {.lex_state = 710}, + [4142] = {.lex_state = 786}, + [4143] = {.lex_state = 805}, + [4144] = {.lex_state = 798}, + [4145] = {.lex_state = 802}, + [4146] = {.lex_state = 822}, + [4147] = {.lex_state = 802}, + [4148] = {.lex_state = 802}, + [4149] = {.lex_state = 802}, + [4150] = {.lex_state = 822}, + [4151] = {.lex_state = 807}, + [4152] = {.lex_state = 33}, + [4153] = {.lex_state = 33}, + [4154] = {.lex_state = 33}, + [4155] = {.lex_state = 807}, + [4156] = {.lex_state = 805}, + [4157] = {.lex_state = 807}, + [4158] = {.lex_state = 804}, + [4159] = {.lex_state = 782}, + [4160] = {.lex_state = 782}, + [4161] = {.lex_state = 33}, + [4162] = {.lex_state = 802}, + [4163] = {.lex_state = 802}, + [4164] = {.lex_state = 807}, + [4165] = {.lex_state = 802}, + [4166] = {.lex_state = 57}, + [4167] = {.lex_state = 33}, + [4168] = {.lex_state = 802}, + [4169] = {.lex_state = 807}, + [4170] = {.lex_state = 802}, + [4171] = {.lex_state = 822}, + [4172] = {.lex_state = 822}, + [4173] = {.lex_state = 802}, + [4174] = {.lex_state = 710}, + [4175] = {.lex_state = 786}, + [4176] = {.lex_state = 33}, + [4177] = {.lex_state = 822}, [4178] = {.lex_state = 802}, - [4179] = {.lex_state = 802}, - [4180] = {.lex_state = 802}, - [4181] = {.lex_state = 802}, + [4179] = {.lex_state = 800}, + [4180] = {.lex_state = 807}, + [4181] = {.lex_state = 807}, [4182] = {.lex_state = 802}, [4183] = {.lex_state = 802}, - [4184] = {.lex_state = 802}, - [4185] = {.lex_state = 802}, + [4184] = {.lex_state = 800}, + [4185] = {.lex_state = 710}, [4186] = {.lex_state = 802}, - [4187] = {.lex_state = 802}, - [4188] = {.lex_state = 802}, - [4189] = {.lex_state = 802}, + [4187] = {.lex_state = 782}, + [4188] = {.lex_state = 807}, + [4189] = {.lex_state = 710}, [4190] = {.lex_state = 802}, [4191] = {.lex_state = 802}, - [4192] = {.lex_state = 802}, + [4192] = {.lex_state = 800}, [4193] = {.lex_state = 800}, - [4194] = {.lex_state = 710}, - [4195] = {.lex_state = 33}, - [4196] = {.lex_state = 802}, + [4194] = {.lex_state = 802}, + [4195] = {.lex_state = 782}, + [4196] = {.lex_state = 782}, [4197] = {.lex_state = 800}, - [4198] = {.lex_state = 802}, - [4199] = {.lex_state = 782}, - [4200] = {.lex_state = 782}, - [4201] = {.lex_state = 800}, - [4202] = {.lex_state = 33}, - [4203] = {.lex_state = 800}, - [4204] = {.lex_state = 33}, - [4205] = {.lex_state = 822}, - [4206] = {.lex_state = 710}, - [4207] = {.lex_state = 822}, - [4208] = {.lex_state = 802}, - [4209] = {.lex_state = 786}, - [4210] = {.lex_state = 265, .external_lex_state = 2}, - [4211] = {.lex_state = 807}, - [4212] = {.lex_state = 33}, - [4213] = {.lex_state = 807}, - [4214] = {.lex_state = 786}, - [4215] = {.lex_state = 710}, - [4216] = {.lex_state = 802}, - [4217] = {.lex_state = 802}, - [4218] = {.lex_state = 807}, - [4219] = {.lex_state = 822}, - [4220] = {.lex_state = 807}, - [4221] = {.lex_state = 265, .external_lex_state = 2}, - [4222] = {.lex_state = 807}, - [4223] = {.lex_state = 710}, - [4224] = {.lex_state = 55}, - [4225] = {.lex_state = 807}, - [4226] = {.lex_state = 807}, - [4227] = {.lex_state = 710}, - [4228] = {.lex_state = 807}, - [4229] = {.lex_state = 807}, - [4230] = {.lex_state = 55}, - [4231] = {.lex_state = 822}, - [4232] = {.lex_state = 806}, + [4198] = {.lex_state = 33}, + [4199] = {.lex_state = 802}, + [4200] = {.lex_state = 710}, + [4201] = {.lex_state = 802}, + [4202] = {.lex_state = 802}, + [4203] = {.lex_state = 710}, + [4204] = {.lex_state = 802}, + [4205] = {.lex_state = 57}, + [4206] = {.lex_state = 802}, + [4207] = {.lex_state = 802}, + [4208] = {.lex_state = 33}, + [4209] = {.lex_state = 807}, + [4210] = {.lex_state = 802}, + [4211] = {.lex_state = 782}, + [4212] = {.lex_state = 710}, + [4213] = {.lex_state = 802}, + [4214] = {.lex_state = 802}, + [4215] = {.lex_state = 33}, + [4216] = {.lex_state = 805}, + [4217] = {.lex_state = 800}, + [4218] = {.lex_state = 802}, + [4219] = {.lex_state = 802}, + [4220] = {.lex_state = 786}, + [4221] = {.lex_state = 786}, + [4222] = {.lex_state = 802}, + [4223] = {.lex_state = 802}, + [4224] = {.lex_state = 802}, + [4225] = {.lex_state = 33}, + [4226] = {.lex_state = 802}, + [4227] = {.lex_state = 790}, + [4228] = {.lex_state = 802}, + [4229] = {.lex_state = 806}, + [4230] = {.lex_state = 802}, + [4231] = {.lex_state = 802}, + [4232] = {.lex_state = 55}, [4233] = {.lex_state = 802}, - [4234] = {.lex_state = 786}, - [4235] = {.lex_state = 33}, - [4236] = {.lex_state = 822}, + [4234] = {.lex_state = 33}, + [4235] = {.lex_state = 802}, + [4236] = {.lex_state = 790}, [4237] = {.lex_state = 802}, - [4238] = {.lex_state = 33}, - [4239] = {.lex_state = 33}, - [4240] = {.lex_state = 786}, - [4241] = {.lex_state = 33}, + [4238] = {.lex_state = 802}, + [4239] = {.lex_state = 802}, + [4240] = {.lex_state = 802}, + [4241] = {.lex_state = 265, .external_lex_state = 2}, [4242] = {.lex_state = 802}, - [4243] = {.lex_state = 33}, - [4244] = {.lex_state = 802}, - [4245] = {.lex_state = 786}, + [4243] = {.lex_state = 802}, + [4244] = {.lex_state = 822}, + [4245] = {.lex_state = 790}, [4246] = {.lex_state = 802}, - [4247] = {.lex_state = 55}, - [4248] = {.lex_state = 33}, - [4249] = {.lex_state = 33}, - [4250] = {.lex_state = 806}, - [4251] = {.lex_state = 802}, + [4247] = {.lex_state = 802}, + [4248] = {.lex_state = 802}, + [4249] = {.lex_state = 55}, + [4250] = {.lex_state = 790}, + [4251] = {.lex_state = 807}, [4252] = {.lex_state = 786}, - [4253] = {.lex_state = 786}, - [4254] = {.lex_state = 786}, + [4253] = {.lex_state = 807}, + [4254] = {.lex_state = 790}, [4255] = {.lex_state = 55}, - [4256] = {.lex_state = 802}, - [4257] = {.lex_state = 786}, - [4258] = {.lex_state = 822}, - [4259] = {.lex_state = 802}, + [4256] = {.lex_state = 807}, + [4257] = {.lex_state = 802}, + [4258] = {.lex_state = 790}, + [4259] = {.lex_state = 265, .external_lex_state = 2}, [4260] = {.lex_state = 802}, - [4261] = {.lex_state = 265, .external_lex_state = 2}, - [4262] = {.lex_state = 802}, + [4261] = {.lex_state = 804}, + [4262] = {.lex_state = 807}, [4263] = {.lex_state = 802}, - [4264] = {.lex_state = 802}, - [4265] = {.lex_state = 807}, - [4266] = {.lex_state = 55}, + [4264] = {.lex_state = 55}, + [4265] = {.lex_state = 802}, + [4266] = {.lex_state = 802}, [4267] = {.lex_state = 802}, - [4268] = {.lex_state = 802}, - [4269] = {.lex_state = 802}, - [4270] = {.lex_state = 786}, + [4268] = {.lex_state = 790}, + [4269] = {.lex_state = 265, .external_lex_state = 2}, + [4270] = {.lex_state = 790}, [4271] = {.lex_state = 802}, - [4272] = {.lex_state = 802}, + [4272] = {.lex_state = 710}, [4273] = {.lex_state = 786}, - [4274] = {.lex_state = 802}, + [4274] = {.lex_state = 265, .external_lex_state = 2}, [4275] = {.lex_state = 802}, [4276] = {.lex_state = 55}, - [4277] = {.lex_state = 786}, - [4278] = {.lex_state = 802}, - [4279] = {.lex_state = 802}, + [4277] = {.lex_state = 711}, + [4278] = {.lex_state = 822}, + [4279] = {.lex_state = 807}, [4280] = {.lex_state = 802}, - [4281] = {.lex_state = 802}, - [4282] = {.lex_state = 802}, - [4283] = {.lex_state = 786}, - [4284] = {.lex_state = 786}, - [4285] = {.lex_state = 711}, + [4281] = {.lex_state = 822}, + [4282] = {.lex_state = 710}, + [4283] = {.lex_state = 807}, + [4284] = {.lex_state = 33}, + [4285] = {.lex_state = 802}, [4286] = {.lex_state = 802}, [4287] = {.lex_state = 802}, - [4288] = {.lex_state = 804}, - [4289] = {.lex_state = 802}, - [4290] = {.lex_state = 265, .external_lex_state = 2}, - [4291] = {.lex_state = 822}, - [4292] = {.lex_state = 802}, - [4293] = {.lex_state = 802}, - [4294] = {.lex_state = 711}, + [4288] = {.lex_state = 802}, + [4289] = {.lex_state = 33}, + [4290] = {.lex_state = 807}, + [4291] = {.lex_state = 790}, + [4292] = {.lex_state = 33}, + [4293] = {.lex_state = 790}, + [4294] = {.lex_state = 802}, [4295] = {.lex_state = 33}, [4296] = {.lex_state = 33}, - [4297] = {.lex_state = 33}, - [4298] = {.lex_state = 802}, - [4299] = {.lex_state = 70}, - [4300] = {.lex_state = 70}, - [4301] = {.lex_state = 743}, - [4302] = {.lex_state = 743}, + [4297] = {.lex_state = 711}, + [4298] = {.lex_state = 822}, + [4299] = {.lex_state = 33}, + [4300] = {.lex_state = 710}, + [4301] = {.lex_state = 55}, + [4302] = {.lex_state = 807}, [4303] = {.lex_state = 802}, - [4304] = {.lex_state = 33}, - [4305] = {.lex_state = 808}, + [4304] = {.lex_state = 807}, + [4305] = {.lex_state = 33}, [4306] = {.lex_state = 33}, - [4307] = {.lex_state = 33}, - [4308] = {.lex_state = 70}, - [4309] = {.lex_state = 808}, - [4310] = {.lex_state = 70}, - [4311] = {.lex_state = 808}, - [4312] = {.lex_state = 808}, - [4313] = {.lex_state = 819}, - [4314] = {.lex_state = 61}, - [4315] = {.lex_state = 808}, - [4316] = {.lex_state = 819}, - [4317] = {.lex_state = 808}, - [4318] = {.lex_state = 808}, - [4319] = {.lex_state = 743}, - [4320] = {.lex_state = 743}, + [4307] = {.lex_state = 807}, + [4308] = {.lex_state = 790}, + [4309] = {.lex_state = 822}, + [4310] = {.lex_state = 802}, + [4311] = {.lex_state = 786}, + [4312] = {.lex_state = 806}, + [4313] = {.lex_state = 802}, + [4314] = {.lex_state = 802}, + [4315] = {.lex_state = 33}, + [4316] = {.lex_state = 743}, + [4317] = {.lex_state = 778}, + [4318] = {.lex_state = 778}, + [4319] = {.lex_state = 808}, + [4320] = {.lex_state = 808}, [4321] = {.lex_state = 778}, [4322] = {.lex_state = 778}, - [4323] = {.lex_state = 743}, + [4323] = {.lex_state = 802}, [4324] = {.lex_state = 743}, [4325] = {.lex_state = 743}, - [4326] = {.lex_state = 743}, + [4326] = {.lex_state = 790}, [4327] = {.lex_state = 743}, [4328] = {.lex_state = 743}, - [4329] = {.lex_state = 743}, - [4330] = {.lex_state = 743}, - [4331] = {.lex_state = 808}, - [4332] = {.lex_state = 743}, + [4329] = {.lex_state = 711}, + [4330] = {.lex_state = 70}, + [4331] = {.lex_state = 743}, + [4332] = {.lex_state = 62}, [4333] = {.lex_state = 743}, - [4334] = {.lex_state = 778}, - [4335] = {.lex_state = 778}, - [4336] = {.lex_state = 743}, + [4334] = {.lex_state = 743}, + [4335] = {.lex_state = 808}, + [4336] = {.lex_state = 790}, [4337] = {.lex_state = 743}, [4338] = {.lex_state = 743}, [4339] = {.lex_state = 743}, [4340] = {.lex_state = 743}, [4341] = {.lex_state = 743}, [4342] = {.lex_state = 743}, - [4343] = {.lex_state = 743}, - [4344] = {.lex_state = 743}, - [4345] = {.lex_state = 743}, + [4343] = {.lex_state = 70}, + [4344] = {.lex_state = 70}, + [4345] = {.lex_state = 808}, [4346] = {.lex_state = 743}, [4347] = {.lex_state = 743}, [4348] = {.lex_state = 743}, [4349] = {.lex_state = 743}, [4350] = {.lex_state = 743}, - [4351] = {.lex_state = 743}, + [4351] = {.lex_state = 58}, [4352] = {.lex_state = 743}, [4353] = {.lex_state = 743}, [4354] = {.lex_state = 743}, [4355] = {.lex_state = 743}, - [4356] = {.lex_state = 743}, - [4357] = {.lex_state = 743}, - [4358] = {.lex_state = 786}, - [4359] = {.lex_state = 743}, - [4360] = {.lex_state = 743}, - [4361] = {.lex_state = 743}, - [4362] = {.lex_state = 786}, - [4363] = {.lex_state = 786}, - [4364] = {.lex_state = 743}, - [4365] = {.lex_state = 786}, + [4356] = {.lex_state = 823}, + [4357] = {.lex_state = 70}, + [4358] = {.lex_state = 70}, + [4359] = {.lex_state = 70}, + [4360] = {.lex_state = 70}, + [4361] = {.lex_state = 70}, + [4362] = {.lex_state = 70}, + [4363] = {.lex_state = 70}, + [4364] = {.lex_state = 802}, + [4365] = {.lex_state = 70}, [4366] = {.lex_state = 70}, - [4367] = {.lex_state = 808}, + [4367] = {.lex_state = 33}, [4368] = {.lex_state = 70}, [4369] = {.lex_state = 70}, [4370] = {.lex_state = 70}, - [4371] = {.lex_state = 70}, - [4372] = {.lex_state = 70}, - [4373] = {.lex_state = 70}, + [4371] = {.lex_state = 819}, + [4372] = {.lex_state = 33}, + [4373] = {.lex_state = 33}, [4374] = {.lex_state = 70}, [4375] = {.lex_state = 70}, - [4376] = {.lex_state = 743}, - [4377] = {.lex_state = 743}, - [4378] = {.lex_state = 70}, - [4379] = {.lex_state = 743}, - [4380] = {.lex_state = 786}, - [4381] = {.lex_state = 743}, - [4382] = {.lex_state = 70}, - [4383] = {.lex_state = 711}, - [4384] = {.lex_state = 70}, - [4385] = {.lex_state = 786}, - [4386] = {.lex_state = 62}, - [4387] = {.lex_state = 70}, - [4388] = {.lex_state = 70}, - [4389] = {.lex_state = 70}, - [4390] = {.lex_state = 711}, - [4391] = {.lex_state = 786}, - [4392] = {.lex_state = 70}, - [4393] = {.lex_state = 70}, - [4394] = {.lex_state = 786}, - [4395] = {.lex_state = 823}, - [4396] = {.lex_state = 823}, - [4397] = {.lex_state = 743}, + [4376] = {.lex_state = 70}, + [4377] = {.lex_state = 711}, + [4378] = {.lex_state = 790}, + [4379] = {.lex_state = 790}, + [4380] = {.lex_state = 70}, + [4381] = {.lex_state = 70}, + [4382] = {.lex_state = 782}, + [4383] = {.lex_state = 790}, + [4384] = {.lex_state = 820}, + [4385] = {.lex_state = 819}, + [4386] = {.lex_state = 819}, + [4387] = {.lex_state = 790}, + [4388] = {.lex_state = 711}, + [4389] = {.lex_state = 62}, + [4390] = {.lex_state = 819}, + [4391] = {.lex_state = 70}, + [4392] = {.lex_state = 790}, + [4393] = {.lex_state = 819}, + [4394] = {.lex_state = 743}, + [4395] = {.lex_state = 778}, + [4396] = {.lex_state = 61}, + [4397] = {.lex_state = 711}, [4398] = {.lex_state = 743}, - [4399] = {.lex_state = 743}, - [4400] = {.lex_state = 62}, - [4401] = {.lex_state = 823}, - [4402] = {.lex_state = 823}, + [4399] = {.lex_state = 806}, + [4400] = {.lex_state = 743}, + [4401] = {.lex_state = 743}, + [4402] = {.lex_state = 743}, [4403] = {.lex_state = 743}, [4404] = {.lex_state = 743}, [4405] = {.lex_state = 743}, - [4406] = {.lex_state = 743}, + [4406] = {.lex_state = 33}, [4407] = {.lex_state = 743}, - [4408] = {.lex_state = 743}, + [4408] = {.lex_state = 62}, [4409] = {.lex_state = 743}, - [4410] = {.lex_state = 711}, - [4411] = {.lex_state = 62}, + [4410] = {.lex_state = 743}, + [4411] = {.lex_state = 743}, [4412] = {.lex_state = 743}, [4413] = {.lex_state = 743}, [4414] = {.lex_state = 743}, @@ -58816,12 +58970,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4416] = {.lex_state = 743}, [4417] = {.lex_state = 743}, [4418] = {.lex_state = 743}, - [4419] = {.lex_state = 743}, + [4419] = {.lex_state = 790}, [4420] = {.lex_state = 743}, - [4421] = {.lex_state = 743}, - [4422] = {.lex_state = 743}, - [4423] = {.lex_state = 743}, - [4424] = {.lex_state = 743}, + [4421] = {.lex_state = 790}, + [4422] = {.lex_state = 790}, + [4423] = {.lex_state = 790}, + [4424] = {.lex_state = 819}, [4425] = {.lex_state = 743}, [4426] = {.lex_state = 743}, [4427] = {.lex_state = 743}, @@ -58833,7 +58987,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4433] = {.lex_state = 743}, [4434] = {.lex_state = 743}, [4435] = {.lex_state = 743}, - [4436] = {.lex_state = 743}, + [4436] = {.lex_state = 808}, [4437] = {.lex_state = 743}, [4438] = {.lex_state = 743}, [4439] = {.lex_state = 743}, @@ -58844,1749 +58998,1749 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4444] = {.lex_state = 743}, [4445] = {.lex_state = 743}, [4446] = {.lex_state = 743}, - [4447] = {.lex_state = 743}, - [4448] = {.lex_state = 743}, + [4447] = {.lex_state = 823}, + [4448] = {.lex_state = 823}, [4449] = {.lex_state = 743}, [4450] = {.lex_state = 743}, [4451] = {.lex_state = 743}, [4452] = {.lex_state = 743}, [4453] = {.lex_state = 743}, - [4454] = {.lex_state = 786}, + [4454] = {.lex_state = 743}, [4455] = {.lex_state = 743}, - [4456] = {.lex_state = 786}, + [4456] = {.lex_state = 743}, [4457] = {.lex_state = 743}, [4458] = {.lex_state = 743}, [4459] = {.lex_state = 743}, [4460] = {.lex_state = 743}, - [4461] = {.lex_state = 743}, - [4462] = {.lex_state = 743}, - [4463] = {.lex_state = 823}, - [4464] = {.lex_state = 778}, - [4465] = {.lex_state = 819}, - [4466] = {.lex_state = 782}, - [4467] = {.lex_state = 807}, - [4468] = {.lex_state = 820}, - [4469] = {.lex_state = 711}, - [4470] = {.lex_state = 819}, - [4471] = {.lex_state = 819}, + [4461] = {.lex_state = 808}, + [4462] = {.lex_state = 823}, + [4463] = {.lex_state = 808}, + [4464] = {.lex_state = 823}, + [4465] = {.lex_state = 743}, + [4466] = {.lex_state = 743}, + [4467] = {.lex_state = 743}, + [4468] = {.lex_state = 743}, + [4469] = {.lex_state = 806}, + [4470] = {.lex_state = 743}, + [4471] = {.lex_state = 743}, [4472] = {.lex_state = 743}, [4473] = {.lex_state = 743}, [4474] = {.lex_state = 743}, [4475] = {.lex_state = 743}, [4476] = {.lex_state = 743}, [4477] = {.lex_state = 743}, - [4478] = {.lex_state = 802}, + [4478] = {.lex_state = 743}, [4479] = {.lex_state = 743}, - [4480] = {.lex_state = 819}, + [4480] = {.lex_state = 743}, [4481] = {.lex_state = 743}, [4482] = {.lex_state = 743}, [4483] = {.lex_state = 743}, [4484] = {.lex_state = 743}, [4485] = {.lex_state = 743}, [4486] = {.lex_state = 743}, - [4487] = {.lex_state = 743}, + [4487] = {.lex_state = 70}, [4488] = {.lex_state = 743}, [4489] = {.lex_state = 743}, - [4490] = {.lex_state = 802}, - [4491] = {.lex_state = 806}, - [4492] = {.lex_state = 62}, - [4493] = {.lex_state = 786}, + [4490] = {.lex_state = 743}, + [4491] = {.lex_state = 808}, + [4492] = {.lex_state = 743}, + [4493] = {.lex_state = 743}, [4494] = {.lex_state = 743}, - [4495] = {.lex_state = 806}, + [4495] = {.lex_state = 743}, [4496] = {.lex_state = 743}, - [4497] = {.lex_state = 70}, - [4498] = {.lex_state = 33}, - [4499] = {.lex_state = 70}, - [4500] = {.lex_state = 743}, - [4501] = {.lex_state = 743}, + [4497] = {.lex_state = 743}, + [4498] = {.lex_state = 743}, + [4499] = {.lex_state = 743}, + [4500] = {.lex_state = 807}, + [4501] = {.lex_state = 62}, [4502] = {.lex_state = 743}, - [4503] = {.lex_state = 58}, + [4503] = {.lex_state = 743}, [4504] = {.lex_state = 743}, [4505] = {.lex_state = 743}, - [4506] = {.lex_state = 15}, - [4507] = {.lex_state = 33}, + [4506] = {.lex_state = 743}, + [4507] = {.lex_state = 743}, [4508] = {.lex_state = 743}, [4509] = {.lex_state = 743}, - [4510] = {.lex_state = 33}, + [4510] = {.lex_state = 743}, [4511] = {.lex_state = 743}, [4512] = {.lex_state = 743}, - [4513] = {.lex_state = 778}, - [4514] = {.lex_state = 33}, - [4515] = {.lex_state = 742}, - [4516] = {.lex_state = 778}, - [4517] = {.lex_state = 819}, - [4518] = {.lex_state = 782}, - [4519] = {.lex_state = 820}, + [4513] = {.lex_state = 743}, + [4514] = {.lex_state = 808}, + [4515] = {.lex_state = 802}, + [4516] = {.lex_state = 70}, + [4517] = {.lex_state = 743}, + [4518] = {.lex_state = 743}, + [4519] = {.lex_state = 743}, [4520] = {.lex_state = 743}, - [4521] = {.lex_state = 33}, - [4522] = {.lex_state = 33}, - [4523] = {.lex_state = 819}, + [4521] = {.lex_state = 743}, + [4522] = {.lex_state = 711}, + [4523] = {.lex_state = 743}, [4524] = {.lex_state = 743}, - [4525] = {.lex_state = 819}, - [4526] = {.lex_state = 819}, - [4527] = {.lex_state = 745}, - [4528] = {.lex_state = 743}, - [4529] = {.lex_state = 809}, - [4530] = {.lex_state = 810}, - [4531] = {.lex_state = 743}, + [4525] = {.lex_state = 33}, + [4526] = {.lex_state = 778}, + [4527] = {.lex_state = 778}, + [4528] = {.lex_state = 819}, + [4529] = {.lex_state = 743}, + [4530] = {.lex_state = 782}, + [4531] = {.lex_state = 745}, [4532] = {.lex_state = 33}, [4533] = {.lex_state = 33}, - [4534] = {.lex_state = 802}, - [4535] = {.lex_state = 70}, - [4536] = {.lex_state = 743}, - [4537] = {.lex_state = 802}, - [4538] = {.lex_state = 743}, - [4539] = {.lex_state = 743}, - [4540] = {.lex_state = 802}, - [4541] = {.lex_state = 743}, - [4542] = {.lex_state = 808}, - [4543] = {.lex_state = 743}, - [4544] = {.lex_state = 33}, - [4545] = {.lex_state = 70}, - [4546] = {.lex_state = 823}, - [4547] = {.lex_state = 778}, - [4548] = {.lex_state = 778}, - [4549] = {.lex_state = 743}, - [4550] = {.lex_state = 743}, - [4551] = {.lex_state = 823}, - [4552] = {.lex_state = 33}, - [4553] = {.lex_state = 808}, - [4554] = {.lex_state = 808}, - [4555] = {.lex_state = 33}, - [4556] = {.lex_state = 808}, - [4557] = {.lex_state = 745}, - [4558] = {.lex_state = 778}, - [4559] = {.lex_state = 33}, - [4560] = {.lex_state = 823}, - [4561] = {.lex_state = 823}, - [4562] = {.lex_state = 711}, - [4563] = {.lex_state = 711}, - [4564] = {.lex_state = 59}, - [4565] = {.lex_state = 33}, - [4566] = {.lex_state = 778}, - [4567] = {.lex_state = 778}, - [4568] = {.lex_state = 808}, + [4534] = {.lex_state = 808}, + [4535] = {.lex_state = 802}, + [4536] = {.lex_state = 820}, + [4537] = {.lex_state = 33}, + [4538] = {.lex_state = 819}, + [4539] = {.lex_state = 778}, + [4540] = {.lex_state = 743}, + [4541] = {.lex_state = 711}, + [4542] = {.lex_state = 33}, + [4543] = {.lex_state = 819}, + [4544] = {.lex_state = 808}, + [4545] = {.lex_state = 15}, + [4546] = {.lex_state = 745}, + [4547] = {.lex_state = 59}, + [4548] = {.lex_state = 33}, + [4549] = {.lex_state = 33}, + [4550] = {.lex_state = 33}, + [4551] = {.lex_state = 33}, + [4552] = {.lex_state = 70}, + [4553] = {.lex_state = 743}, + [4554] = {.lex_state = 743}, + [4555] = {.lex_state = 819}, + [4556] = {.lex_state = 33}, + [4557] = {.lex_state = 778}, + [4558] = {.lex_state = 33}, + [4559] = {.lex_state = 778}, + [4560] = {.lex_state = 808}, + [4561] = {.lex_state = 15}, + [4562] = {.lex_state = 745}, + [4563] = {.lex_state = 778}, + [4564] = {.lex_state = 70}, + [4565] = {.lex_state = 743}, + [4566] = {.lex_state = 802}, + [4567] = {.lex_state = 819}, + [4568] = {.lex_state = 743}, [4569] = {.lex_state = 33}, - [4570] = {.lex_state = 33}, - [4571] = {.lex_state = 33}, - [4572] = {.lex_state = 33}, - [4573] = {.lex_state = 711}, - [4574] = {.lex_state = 743}, + [4570] = {.lex_state = 808}, + [4571] = {.lex_state = 745}, + [4572] = {.lex_state = 742}, + [4573] = {.lex_state = 743}, + [4574] = {.lex_state = 33}, [4575] = {.lex_state = 743}, - [4576] = {.lex_state = 33}, - [4577] = {.lex_state = 33}, + [4576] = {.lex_state = 743}, + [4577] = {.lex_state = 778}, [4578] = {.lex_state = 33}, [4579] = {.lex_state = 743}, - [4580] = {.lex_state = 743}, - [4581] = {.lex_state = 823}, - [4582] = {.lex_state = 745}, - [4583] = {.lex_state = 33}, - [4584] = {.lex_state = 819}, - [4585] = {.lex_state = 802}, - [4586] = {.lex_state = 819}, - [4587] = {.lex_state = 808}, - [4588] = {.lex_state = 808}, - [4589] = {.lex_state = 33}, - [4590] = {.lex_state = 33}, - [4591] = {.lex_state = 15}, - [4592] = {.lex_state = 745}, + [4580] = {.lex_state = 819}, + [4581] = {.lex_state = 33}, + [4582] = {.lex_state = 743}, + [4583] = {.lex_state = 743}, + [4584] = {.lex_state = 808}, + [4585] = {.lex_state = 782}, + [4586] = {.lex_state = 782}, + [4587] = {.lex_state = 743}, + [4588] = {.lex_state = 743}, + [4589] = {.lex_state = 808}, + [4590] = {.lex_state = 711}, + [4591] = {.lex_state = 778}, + [4592] = {.lex_state = 33}, [4593] = {.lex_state = 33}, - [4594] = {.lex_state = 742}, - [4595] = {.lex_state = 808}, - [4596] = {.lex_state = 782}, - [4597] = {.lex_state = 782}, - [4598] = {.lex_state = 808}, + [4594] = {.lex_state = 802}, + [4595] = {.lex_state = 743}, + [4596] = {.lex_state = 823}, + [4597] = {.lex_state = 808}, + [4598] = {.lex_state = 742}, [4599] = {.lex_state = 743}, - [4600] = {.lex_state = 743}, - [4601] = {.lex_state = 743}, - [4602] = {.lex_state = 808}, - [4603] = {.lex_state = 59}, - [4604] = {.lex_state = 33}, - [4605] = {.lex_state = 745}, - [4606] = {.lex_state = 778}, - [4607] = {.lex_state = 745}, - [4608] = {.lex_state = 745}, - [4609] = {.lex_state = 745}, - [4610] = {.lex_state = 745}, - [4611] = {.lex_state = 745}, - [4612] = {.lex_state = 745}, + [4600] = {.lex_state = 809}, + [4601] = {.lex_state = 823}, + [4602] = {.lex_state = 810}, + [4603] = {.lex_state = 802}, + [4604] = {.lex_state = 808}, + [4605] = {.lex_state = 33}, + [4606] = {.lex_state = 33}, + [4607] = {.lex_state = 33}, + [4608] = {.lex_state = 743}, + [4609] = {.lex_state = 823}, + [4610] = {.lex_state = 743}, + [4611] = {.lex_state = 59}, + [4612] = {.lex_state = 33}, [4613] = {.lex_state = 745}, - [4614] = {.lex_state = 743}, - [4615] = {.lex_state = 745}, - [4616] = {.lex_state = 745}, - [4617] = {.lex_state = 745}, - [4618] = {.lex_state = 743}, - [4619] = {.lex_state = 782}, - [4620] = {.lex_state = 743}, - [4621] = {.lex_state = 745}, - [4622] = {.lex_state = 745}, - [4623] = {.lex_state = 745}, - [4624] = {.lex_state = 745}, - [4625] = {.lex_state = 745}, - [4626] = {.lex_state = 745}, - [4627] = {.lex_state = 745}, - [4628] = {.lex_state = 745}, - [4629] = {.lex_state = 745}, + [4614] = {.lex_state = 33}, + [4615] = {.lex_state = 808}, + [4616] = {.lex_state = 743}, + [4617] = {.lex_state = 33}, + [4618] = {.lex_state = 808}, + [4619] = {.lex_state = 823}, + [4620] = {.lex_state = 823}, + [4621] = {.lex_state = 743}, + [4622] = {.lex_state = 33}, + [4623] = {.lex_state = 743}, + [4624] = {.lex_state = 86}, + [4625] = {.lex_state = 711}, + [4626] = {.lex_state = 743}, + [4627] = {.lex_state = 271}, + [4628] = {.lex_state = 15}, + [4629] = {.lex_state = 742}, [4630] = {.lex_state = 745}, - [4631] = {.lex_state = 745}, - [4632] = {.lex_state = 745}, - [4633] = {.lex_state = 55}, - [4634] = {.lex_state = 745}, - [4635] = {.lex_state = 86}, + [4631] = {.lex_state = 743}, + [4632] = {.lex_state = 743}, + [4633] = {.lex_state = 60}, + [4634] = {.lex_state = 743}, + [4635] = {.lex_state = 33}, [4636] = {.lex_state = 745}, - [4637] = {.lex_state = 743}, - [4638] = {.lex_state = 808}, - [4639] = {.lex_state = 745}, - [4640] = {.lex_state = 743}, + [4637] = {.lex_state = 745}, + [4638] = {.lex_state = 745}, + [4639] = {.lex_state = 778}, + [4640] = {.lex_state = 33}, [4641] = {.lex_state = 745}, - [4642] = {.lex_state = 778}, - [4643] = {.lex_state = 745}, - [4644] = {.lex_state = 742}, + [4642] = {.lex_state = 745}, + [4643] = {.lex_state = 743}, + [4644] = {.lex_state = 745}, [4645] = {.lex_state = 60}, [4646] = {.lex_state = 745}, - [4647] = {.lex_state = 745}, - [4648] = {.lex_state = 809}, - [4649] = {.lex_state = 55}, - [4650] = {.lex_state = 745}, - [4651] = {.lex_state = 742}, - [4652] = {.lex_state = 86}, - [4653] = {.lex_state = 743}, - [4654] = {.lex_state = 745}, - [4655] = {.lex_state = 743}, - [4656] = {.lex_state = 745}, - [4657] = {.lex_state = 60}, + [4647] = {.lex_state = 802}, + [4648] = {.lex_state = 743}, + [4649] = {.lex_state = 745}, + [4650] = {.lex_state = 808}, + [4651] = {.lex_state = 745}, + [4652] = {.lex_state = 745}, + [4653] = {.lex_state = 745}, + [4654] = {.lex_state = 802}, + [4655] = {.lex_state = 15}, + [4656] = {.lex_state = 60}, + [4657] = {.lex_state = 745}, [4658] = {.lex_state = 745}, - [4659] = {.lex_state = 745}, + [4659] = {.lex_state = 55}, [4660] = {.lex_state = 745}, - [4661] = {.lex_state = 745}, - [4662] = {.lex_state = 745}, - [4663] = {.lex_state = 745}, - [4664] = {.lex_state = 743}, - [4665] = {.lex_state = 55}, - [4666] = {.lex_state = 743}, - [4667] = {.lex_state = 55}, - [4668] = {.lex_state = 745}, - [4669] = {.lex_state = 745}, - [4670] = {.lex_state = 86}, - [4671] = {.lex_state = 55}, - [4672] = {.lex_state = 745}, - [4673] = {.lex_state = 745}, - [4674] = {.lex_state = 782}, + [4661] = {.lex_state = 782}, + [4662] = {.lex_state = 778}, + [4663] = {.lex_state = 55}, + [4664] = {.lex_state = 60}, + [4665] = {.lex_state = 86}, + [4666] = {.lex_state = 60}, + [4667] = {.lex_state = 60}, + [4668] = {.lex_state = 742}, + [4669] = {.lex_state = 743}, + [4670] = {.lex_state = 711}, + [4671] = {.lex_state = 743}, + [4672] = {.lex_state = 743}, + [4673] = {.lex_state = 743}, + [4674] = {.lex_state = 743}, [4675] = {.lex_state = 743}, [4676] = {.lex_state = 745}, [4677] = {.lex_state = 745}, [4678] = {.lex_state = 745}, - [4679] = {.lex_state = 745}, + [4679] = {.lex_state = 55}, [4680] = {.lex_state = 745}, - [4681] = {.lex_state = 743}, - [4682] = {.lex_state = 711}, - [4683] = {.lex_state = 86}, + [4681] = {.lex_state = 745}, + [4682] = {.lex_state = 745}, + [4683] = {.lex_state = 745}, [4684] = {.lex_state = 745}, [4685] = {.lex_state = 745}, - [4686] = {.lex_state = 742}, - [4687] = {.lex_state = 742}, - [4688] = {.lex_state = 745}, + [4686] = {.lex_state = 86}, + [4687] = {.lex_state = 745}, + [4688] = {.lex_state = 711}, [4689] = {.lex_state = 745}, - [4690] = {.lex_state = 782}, - [4691] = {.lex_state = 743}, - [4692] = {.lex_state = 745}, - [4693] = {.lex_state = 745}, - [4694] = {.lex_state = 778}, - [4695] = {.lex_state = 711}, - [4696] = {.lex_state = 33}, - [4697] = {.lex_state = 743}, - [4698] = {.lex_state = 745}, - [4699] = {.lex_state = 745}, - [4700] = {.lex_state = 60}, - [4701] = {.lex_state = 745}, + [4690] = {.lex_state = 86}, + [4691] = {.lex_state = 745}, + [4692] = {.lex_state = 809}, + [4693] = {.lex_state = 743}, + [4694] = {.lex_state = 743}, + [4695] = {.lex_state = 745}, + [4696] = {.lex_state = 745}, + [4697] = {.lex_state = 745}, + [4698] = {.lex_state = 810}, + [4699] = {.lex_state = 743}, + [4700] = {.lex_state = 743}, + [4701] = {.lex_state = 55}, [4702] = {.lex_state = 745}, - [4703] = {.lex_state = 810}, - [4704] = {.lex_state = 743}, - [4705] = {.lex_state = 811}, - [4706] = {.lex_state = 745}, - [4707] = {.lex_state = 15}, - [4708] = {.lex_state = 802}, - [4709] = {.lex_state = 745}, - [4710] = {.lex_state = 743}, - [4711] = {.lex_state = 743}, - [4712] = {.lex_state = 711}, + [4703] = {.lex_state = 745}, + [4704] = {.lex_state = 811}, + [4705] = {.lex_state = 33}, + [4706] = {.lex_state = 743}, + [4707] = {.lex_state = 811}, + [4708] = {.lex_state = 70}, + [4709] = {.lex_state = 70}, + [4710] = {.lex_state = 745}, + [4711] = {.lex_state = 745}, + [4712] = {.lex_state = 745}, [4713] = {.lex_state = 745}, [4714] = {.lex_state = 745}, [4715] = {.lex_state = 745}, [4716] = {.lex_state = 745}, [4717] = {.lex_state = 745}, - [4718] = {.lex_state = 15}, - [4719] = {.lex_state = 811}, + [4718] = {.lex_state = 745}, + [4719] = {.lex_state = 745}, [4720] = {.lex_state = 745}, - [4721] = {.lex_state = 745}, - [4722] = {.lex_state = 70}, - [4723] = {.lex_state = 60}, - [4724] = {.lex_state = 745}, - [4725] = {.lex_state = 60}, - [4726] = {.lex_state = 745}, - [4727] = {.lex_state = 61}, - [4728] = {.lex_state = 743}, - [4729] = {.lex_state = 743}, - [4730] = {.lex_state = 745}, - [4731] = {.lex_state = 70}, - [4732] = {.lex_state = 711}, + [4721] = {.lex_state = 70}, + [4722] = {.lex_state = 61}, + [4723] = {.lex_state = 70}, + [4724] = {.lex_state = 70}, + [4725] = {.lex_state = 782}, + [4726] = {.lex_state = 70}, + [4727] = {.lex_state = 742}, + [4728] = {.lex_state = 778}, + [4729] = {.lex_state = 745}, + [4730] = {.lex_state = 743}, + [4731] = {.lex_state = 745}, + [4732] = {.lex_state = 745}, [4733] = {.lex_state = 745}, [4734] = {.lex_state = 745}, - [4735] = {.lex_state = 60}, - [4736] = {.lex_state = 745}, - [4737] = {.lex_state = 70}, - [4738] = {.lex_state = 60}, - [4739] = {.lex_state = 70}, - [4740] = {.lex_state = 86}, - [4741] = {.lex_state = 60}, - [4742] = {.lex_state = 778}, - [4743] = {.lex_state = 55}, - [4744] = {.lex_state = 745}, - [4745] = {.lex_state = 743}, - [4746] = {.lex_state = 15}, - [4747] = {.lex_state = 802}, - [4748] = {.lex_state = 745}, - [4749] = {.lex_state = 15}, - [4750] = {.lex_state = 745}, + [4735] = {.lex_state = 745}, + [4736] = {.lex_state = 33}, + [4737] = {.lex_state = 743}, + [4738] = {.lex_state = 743}, + [4739] = {.lex_state = 745}, + [4740] = {.lex_state = 745}, + [4741] = {.lex_state = 33}, + [4742] = {.lex_state = 745}, + [4743] = {.lex_state = 60}, + [4744] = {.lex_state = 60}, + [4745] = {.lex_state = 742}, + [4746] = {.lex_state = 745}, + [4747] = {.lex_state = 745}, + [4748] = {.lex_state = 55}, + [4749] = {.lex_state = 745}, + [4750] = {.lex_state = 33}, [4751] = {.lex_state = 745}, - [4752] = {.lex_state = 33}, - [4753] = {.lex_state = 33}, - [4754] = {.lex_state = 802}, + [4752] = {.lex_state = 745}, + [4753] = {.lex_state = 15}, + [4754] = {.lex_state = 15}, [4755] = {.lex_state = 745}, - [4756] = {.lex_state = 15}, - [4757] = {.lex_state = 271}, - [4758] = {.lex_state = 33}, - [4759] = {.lex_state = 55}, + [4756] = {.lex_state = 745}, + [4757] = {.lex_state = 745}, + [4758] = {.lex_state = 745}, + [4759] = {.lex_state = 745}, [4760] = {.lex_state = 745}, - [4761] = {.lex_state = 745}, - [4762] = {.lex_state = 745}, - [4763] = {.lex_state = 70}, + [4761] = {.lex_state = 711}, + [4762] = {.lex_state = 15}, + [4763] = {.lex_state = 745}, [4764] = {.lex_state = 745}, - [4765] = {.lex_state = 745}, + [4765] = {.lex_state = 86}, [4766] = {.lex_state = 745}, [4767] = {.lex_state = 745}, - [4768] = {.lex_state = 743}, - [4769] = {.lex_state = 60}, - [4770] = {.lex_state = 55}, + [4768] = {.lex_state = 55}, + [4769] = {.lex_state = 745}, + [4770] = {.lex_state = 745}, [4771] = {.lex_state = 745}, - [4772] = {.lex_state = 745}, + [4772] = {.lex_state = 60}, [4773] = {.lex_state = 745}, [4774] = {.lex_state = 745}, - [4775] = {.lex_state = 782}, - [4776] = {.lex_state = 70}, + [4775] = {.lex_state = 745}, + [4776] = {.lex_state = 55}, [4777] = {.lex_state = 745}, - [4778] = {.lex_state = 33}, + [4778] = {.lex_state = 743}, [4779] = {.lex_state = 745}, - [4780] = {.lex_state = 743}, - [4781] = {.lex_state = 33}, + [4780] = {.lex_state = 802}, + [4781] = {.lex_state = 745}, [4782] = {.lex_state = 745}, - [4783] = {.lex_state = 742}, - [4784] = {.lex_state = 272}, - [4785] = {.lex_state = 33}, + [4783] = {.lex_state = 745}, + [4784] = {.lex_state = 745}, + [4785] = {.lex_state = 745}, [4786] = {.lex_state = 745}, [4787] = {.lex_state = 745}, - [4788] = {.lex_state = 742}, - [4789] = {.lex_state = 743}, - [4790] = {.lex_state = 60}, + [4788] = {.lex_state = 745}, + [4789] = {.lex_state = 745}, + [4790] = {.lex_state = 745}, [4791] = {.lex_state = 745}, [4792] = {.lex_state = 745}, [4793] = {.lex_state = 55}, - [4794] = {.lex_state = 742}, - [4795] = {.lex_state = 33}, + [4794] = {.lex_state = 745}, + [4795] = {.lex_state = 745}, [4796] = {.lex_state = 33}, - [4797] = {.lex_state = 742}, + [4797] = {.lex_state = 33}, [4798] = {.lex_state = 33}, - [4799] = {.lex_state = 33}, - [4800] = {.lex_state = 33}, - [4801] = {.lex_state = 33}, + [4799] = {.lex_state = 743}, + [4800] = {.lex_state = 745}, + [4801] = {.lex_state = 742}, [4802] = {.lex_state = 33}, - [4803] = {.lex_state = 33}, - [4804] = {.lex_state = 745}, - [4805] = {.lex_state = 742}, - [4806] = {.lex_state = 33}, + [4803] = {.lex_state = 275}, + [4804] = {.lex_state = 742}, + [4805] = {.lex_state = 745}, + [4806] = {.lex_state = 742}, [4807] = {.lex_state = 745}, - [4808] = {.lex_state = 745}, + [4808] = {.lex_state = 742}, [4809] = {.lex_state = 745}, - [4810] = {.lex_state = 2}, - [4811] = {.lex_state = 811}, - [4812] = {.lex_state = 811}, + [4810] = {.lex_state = 33}, + [4811] = {.lex_state = 745}, + [4812] = {.lex_state = 745}, [4813] = {.lex_state = 745}, - [4814] = {.lex_state = 812}, - [4815] = {.lex_state = 2}, - [4816] = {.lex_state = 745}, + [4814] = {.lex_state = 745}, + [4815] = {.lex_state = 745}, + [4816] = {.lex_state = 33}, [4817] = {.lex_state = 745}, - [4818] = {.lex_state = 812}, - [4819] = {.lex_state = 99}, - [4820] = {.lex_state = 812}, - [4821] = {.lex_state = 33}, - [4822] = {.lex_state = 812}, - [4823] = {.lex_state = 33}, - [4824] = {.lex_state = 275}, + [4818] = {.lex_state = 33}, + [4819] = {.lex_state = 745}, + [4820] = {.lex_state = 70}, + [4821] = {.lex_state = 745}, + [4822] = {.lex_state = 33}, + [4823] = {.lex_state = 745}, + [4824] = {.lex_state = 745}, [4825] = {.lex_state = 745}, - [4826] = {.lex_state = 745}, + [4826] = {.lex_state = 742}, [4827] = {.lex_state = 745}, - [4828] = {.lex_state = 745}, - [4829] = {.lex_state = 745}, - [4830] = {.lex_state = 745}, - [4831] = {.lex_state = 55}, + [4828] = {.lex_state = 267}, + [4829] = {.lex_state = 782}, + [4830] = {.lex_state = 55}, + [4831] = {.lex_state = 745}, [4832] = {.lex_state = 745}, [4833] = {.lex_state = 745}, - [4834] = {.lex_state = 745}, - [4835] = {.lex_state = 745}, - [4836] = {.lex_state = 745}, + [4834] = {.lex_state = 33}, + [4835] = {.lex_state = 33}, + [4836] = {.lex_state = 33}, [4837] = {.lex_state = 745}, - [4838] = {.lex_state = 745}, + [4838] = {.lex_state = 33}, [4839] = {.lex_state = 745}, [4840] = {.lex_state = 745}, - [4841] = {.lex_state = 745}, + [4841] = {.lex_state = 2}, [4842] = {.lex_state = 745}, [4843] = {.lex_state = 745}, [4844] = {.lex_state = 745}, [4845] = {.lex_state = 745}, - [4846] = {.lex_state = 745}, + [4846] = {.lex_state = 811}, [4847] = {.lex_state = 745}, - [4848] = {.lex_state = 745}, - [4849] = {.lex_state = 745}, - [4850] = {.lex_state = 745}, + [4848] = {.lex_state = 33}, + [4849] = {.lex_state = 33}, + [4850] = {.lex_state = 33}, [4851] = {.lex_state = 745}, [4852] = {.lex_state = 745}, - [4853] = {.lex_state = 745}, - [4854] = {.lex_state = 745}, - [4855] = {.lex_state = 745}, - [4856] = {.lex_state = 745}, - [4857] = {.lex_state = 745}, - [4858] = {.lex_state = 745}, - [4859] = {.lex_state = 745}, - [4860] = {.lex_state = 745}, - [4861] = {.lex_state = 745}, - [4862] = {.lex_state = 745}, - [4863] = {.lex_state = 745}, + [4853] = {.lex_state = 811}, + [4854] = {.lex_state = 33}, + [4855] = {.lex_state = 742}, + [4856] = {.lex_state = 33}, + [4857] = {.lex_state = 812}, + [4858] = {.lex_state = 782}, + [4859] = {.lex_state = 812}, + [4860] = {.lex_state = 742}, + [4861] = {.lex_state = 742}, + [4862] = {.lex_state = 812}, + [4863] = {.lex_state = 812}, [4864] = {.lex_state = 745}, - [4865] = {.lex_state = 742}, - [4866] = {.lex_state = 745}, + [4865] = {.lex_state = 745}, + [4866] = {.lex_state = 60}, [4867] = {.lex_state = 745}, - [4868] = {.lex_state = 745}, - [4869] = {.lex_state = 745}, + [4868] = {.lex_state = 812}, + [4869] = {.lex_state = 55}, [4870] = {.lex_state = 745}, - [4871] = {.lex_state = 745}, - [4872] = {.lex_state = 742}, - [4873] = {.lex_state = 742}, + [4871] = {.lex_state = 742}, + [4872] = {.lex_state = 70}, + [4873] = {.lex_state = 70}, [4874] = {.lex_state = 742}, - [4875] = {.lex_state = 745}, - [4876] = {.lex_state = 745}, - [4877] = {.lex_state = 33}, + [4875] = {.lex_state = 33}, + [4876] = {.lex_state = 742}, + [4877] = {.lex_state = 267}, [4878] = {.lex_state = 33}, - [4879] = {.lex_state = 745}, - [4880] = {.lex_state = 745}, - [4881] = {.lex_state = 745}, - [4882] = {.lex_state = 745}, - [4883] = {.lex_state = 745}, + [4879] = {.lex_state = 33}, + [4880] = {.lex_state = 33}, + [4881] = {.lex_state = 272}, + [4882] = {.lex_state = 33}, + [4883] = {.lex_state = 742}, [4884] = {.lex_state = 33}, - [4885] = {.lex_state = 33}, + [4885] = {.lex_state = 742}, [4886] = {.lex_state = 745}, - [4887] = {.lex_state = 745}, + [4887] = {.lex_state = 742}, [4888] = {.lex_state = 745}, - [4889] = {.lex_state = 745}, - [4890] = {.lex_state = 745}, + [4889] = {.lex_state = 33}, + [4890] = {.lex_state = 33}, [4891] = {.lex_state = 745}, - [4892] = {.lex_state = 745}, - [4893] = {.lex_state = 745}, - [4894] = {.lex_state = 742}, + [4892] = {.lex_state = 33}, + [4893] = {.lex_state = 33}, + [4894] = {.lex_state = 745}, [4895] = {.lex_state = 742}, - [4896] = {.lex_state = 742}, - [4897] = {.lex_state = 742}, - [4898] = {.lex_state = 267}, - [4899] = {.lex_state = 33}, - [4900] = {.lex_state = 742}, - [4901] = {.lex_state = 743}, + [4896] = {.lex_state = 745}, + [4897] = {.lex_state = 276}, + [4898] = {.lex_state = 33}, + [4899] = {.lex_state = 745}, + [4900] = {.lex_state = 745}, + [4901] = {.lex_state = 2}, [4902] = {.lex_state = 745}, - [4903] = {.lex_state = 745}, - [4904] = {.lex_state = 743}, + [4903] = {.lex_state = 742}, + [4904] = {.lex_state = 33}, [4905] = {.lex_state = 745}, [4906] = {.lex_state = 745}, - [4907] = {.lex_state = 33}, + [4907] = {.lex_state = 745}, [4908] = {.lex_state = 33}, - [4909] = {.lex_state = 276}, - [4910] = {.lex_state = 745}, - [4911] = {.lex_state = 742}, - [4912] = {.lex_state = 33}, - [4913] = {.lex_state = 33}, - [4914] = {.lex_state = 33}, - [4915] = {.lex_state = 275}, + [4909] = {.lex_state = 742}, + [4910] = {.lex_state = 33}, + [4911] = {.lex_state = 2}, + [4912] = {.lex_state = 742}, + [4913] = {.lex_state = 742}, + [4914] = {.lex_state = 742}, + [4915] = {.lex_state = 745}, [4916] = {.lex_state = 742}, - [4917] = {.lex_state = 33}, + [4917] = {.lex_state = 745}, [4918] = {.lex_state = 33}, - [4919] = {.lex_state = 33}, - [4920] = {.lex_state = 267}, + [4919] = {.lex_state = 742}, + [4920] = {.lex_state = 33}, [4921] = {.lex_state = 33}, [4922] = {.lex_state = 33}, [4923] = {.lex_state = 33}, - [4924] = {.lex_state = 33}, - [4925] = {.lex_state = 33}, - [4926] = {.lex_state = 33}, - [4927] = {.lex_state = 812}, - [4928] = {.lex_state = 33}, - [4929] = {.lex_state = 33}, - [4930] = {.lex_state = 33}, - [4931] = {.lex_state = 33}, + [4924] = {.lex_state = 742}, + [4925] = {.lex_state = 745}, + [4926] = {.lex_state = 742}, + [4927] = {.lex_state = 745}, + [4928] = {.lex_state = 745}, + [4929] = {.lex_state = 745}, + [4930] = {.lex_state = 742}, + [4931] = {.lex_state = 745}, [4932] = {.lex_state = 33}, - [4933] = {.lex_state = 33}, - [4934] = {.lex_state = 33}, - [4935] = {.lex_state = 33}, - [4936] = {.lex_state = 33}, - [4937] = {.lex_state = 33}, + [4933] = {.lex_state = 275}, + [4934] = {.lex_state = 745}, + [4935] = {.lex_state = 775}, + [4936] = {.lex_state = 743}, + [4937] = {.lex_state = 775}, [4938] = {.lex_state = 33}, - [4939] = {.lex_state = 33}, - [4940] = {.lex_state = 33}, - [4941] = {.lex_state = 745}, - [4942] = {.lex_state = 70}, - [4943] = {.lex_state = 70}, - [4944] = {.lex_state = 70}, - [4945] = {.lex_state = 33}, - [4946] = {.lex_state = 33}, - [4947] = {.lex_state = 33}, - [4948] = {.lex_state = 745}, - [4949] = {.lex_state = 33}, - [4950] = {.lex_state = 745}, - [4951] = {.lex_state = 745}, - [4952] = {.lex_state = 33}, - [4953] = {.lex_state = 33}, - [4954] = {.lex_state = 742}, - [4955] = {.lex_state = 742}, - [4956] = {.lex_state = 742}, - [4957] = {.lex_state = 2}, - [4958] = {.lex_state = 2}, - [4959] = {.lex_state = 99}, - [4960] = {.lex_state = 33}, - [4961] = {.lex_state = 33}, - [4962] = {.lex_state = 742}, - [4963] = {.lex_state = 742}, - [4964] = {.lex_state = 742}, - [4965] = {.lex_state = 742}, - [4966] = {.lex_state = 742}, - [4967] = {.lex_state = 742}, - [4968] = {.lex_state = 775}, - [4969] = {.lex_state = 743}, - [4970] = {.lex_state = 775}, + [4939] = {.lex_state = 743}, + [4940] = {.lex_state = 745}, + [4941] = {.lex_state = 743}, + [4942] = {.lex_state = 745}, + [4943] = {.lex_state = 33}, + [4944] = {.lex_state = 745}, + [4945] = {.lex_state = 745}, + [4946] = {.lex_state = 745}, + [4947] = {.lex_state = 745}, + [4948] = {.lex_state = 742}, + [4949] = {.lex_state = 743}, + [4950] = {.lex_state = 743}, + [4951] = {.lex_state = 743}, + [4952] = {.lex_state = 743}, + [4953] = {.lex_state = 743}, + [4954] = {.lex_state = 743}, + [4955] = {.lex_state = 743}, + [4956] = {.lex_state = 743}, + [4957] = {.lex_state = 743}, + [4958] = {.lex_state = 743}, + [4959] = {.lex_state = 743}, + [4960] = {.lex_state = 743}, + [4961] = {.lex_state = 775}, + [4962] = {.lex_state = 745}, + [4963] = {.lex_state = 745}, + [4964] = {.lex_state = 745}, + [4965] = {.lex_state = 33}, + [4966] = {.lex_state = 745}, + [4967] = {.lex_state = 745}, + [4968] = {.lex_state = 33}, + [4969] = {.lex_state = 745}, + [4970] = {.lex_state = 745}, [4971] = {.lex_state = 33}, [4972] = {.lex_state = 33}, - [4973] = {.lex_state = 743}, - [4974] = {.lex_state = 743}, - [4975] = {.lex_state = 743}, - [4976] = {.lex_state = 743}, - [4977] = {.lex_state = 743}, - [4978] = {.lex_state = 743}, - [4979] = {.lex_state = 743}, - [4980] = {.lex_state = 743}, - [4981] = {.lex_state = 743}, - [4982] = {.lex_state = 743}, - [4983] = {.lex_state = 743}, - [4984] = {.lex_state = 743}, - [4985] = {.lex_state = 775}, + [4973] = {.lex_state = 745}, + [4974] = {.lex_state = 33}, + [4975] = {.lex_state = 33}, + [4976] = {.lex_state = 33}, + [4977] = {.lex_state = 745}, + [4978] = {.lex_state = 745}, + [4979] = {.lex_state = 745}, + [4980] = {.lex_state = 742}, + [4981] = {.lex_state = 745}, + [4982] = {.lex_state = 745}, + [4983] = {.lex_state = 33}, + [4984] = {.lex_state = 742}, + [4985] = {.lex_state = 745}, [4986] = {.lex_state = 33}, - [4987] = {.lex_state = 742}, - [4988] = {.lex_state = 742}, - [4989] = {.lex_state = 33}, - [4990] = {.lex_state = 742}, - [4991] = {.lex_state = 742}, - [4992] = {.lex_state = 66}, + [4987] = {.lex_state = 33}, + [4988] = {.lex_state = 745}, + [4989] = {.lex_state = 745}, + [4990] = {.lex_state = 745}, + [4991] = {.lex_state = 33}, + [4992] = {.lex_state = 745}, [4993] = {.lex_state = 33}, - [4994] = {.lex_state = 283}, - [4995] = {.lex_state = 71}, + [4994] = {.lex_state = 33}, + [4995] = {.lex_state = 33}, [4996] = {.lex_state = 742}, - [4997] = {.lex_state = 742}, - [4998] = {.lex_state = 71}, - [4999] = {.lex_state = 3704}, - [5000] = {.lex_state = 273}, - [5001] = {.lex_state = 742}, - [5002] = {.lex_state = 710}, - [5003] = {.lex_state = 742}, - [5004] = {.lex_state = 742}, - [5005] = {.lex_state = 742}, - [5006] = {.lex_state = 270}, + [4997] = {.lex_state = 33}, + [4998] = {.lex_state = 745}, + [4999] = {.lex_state = 745}, + [5000] = {.lex_state = 745}, + [5001] = {.lex_state = 33}, + [5002] = {.lex_state = 33}, + [5003] = {.lex_state = 66}, + [5004] = {.lex_state = 745}, + [5005] = {.lex_state = 2}, + [5006] = {.lex_state = 742}, [5007] = {.lex_state = 742}, [5008] = {.lex_state = 742}, [5009] = {.lex_state = 742}, - [5010] = {.lex_state = 742}, - [5011] = {.lex_state = 71}, - [5012] = {.lex_state = 742}, - [5013] = {.lex_state = 742}, + [5010] = {.lex_state = 33}, + [5011] = {.lex_state = 742}, + [5012] = {.lex_state = 33}, + [5013] = {.lex_state = 710}, [5014] = {.lex_state = 742}, - [5015] = {.lex_state = 33}, - [5016] = {.lex_state = 710}, - [5017] = {.lex_state = 710}, + [5015] = {.lex_state = 742}, + [5016] = {.lex_state = 742}, + [5017] = {.lex_state = 33}, [5018] = {.lex_state = 742}, [5019] = {.lex_state = 742}, - [5020] = {.lex_state = 710}, - [5021] = {.lex_state = 268}, - [5022] = {.lex_state = 742}, - [5023] = {.lex_state = 270}, - [5024] = {.lex_state = 268}, - [5025] = {.lex_state = 33}, - [5026] = {.lex_state = 277}, - [5027] = {.lex_state = 275}, - [5028] = {.lex_state = 33}, - [5029] = {.lex_state = 710}, - [5030] = {.lex_state = 275}, - [5031] = {.lex_state = 812}, - [5032] = {.lex_state = 71}, + [5020] = {.lex_state = 3704}, + [5021] = {.lex_state = 742}, + [5022] = {.lex_state = 710}, + [5023] = {.lex_state = 742}, + [5024] = {.lex_state = 812}, + [5025] = {.lex_state = 3704}, + [5026] = {.lex_state = 742}, + [5027] = {.lex_state = 742}, + [5028] = {.lex_state = 742}, + [5029] = {.lex_state = 742}, + [5030] = {.lex_state = 812}, + [5031] = {.lex_state = 742}, + [5032] = {.lex_state = 742}, [5033] = {.lex_state = 275}, - [5034] = {.lex_state = 742}, - [5035] = {.lex_state = 279}, - [5036] = {.lex_state = 812}, + [5034] = {.lex_state = 812}, + [5035] = {.lex_state = 710}, + [5036] = {.lex_state = 99}, [5037] = {.lex_state = 742}, - [5038] = {.lex_state = 3704}, - [5039] = {.lex_state = 742}, - [5040] = {.lex_state = 3704}, - [5041] = {.lex_state = 812}, + [5038] = {.lex_state = 742}, + [5039] = {.lex_state = 33}, + [5040] = {.lex_state = 33}, + [5041] = {.lex_state = 270}, [5042] = {.lex_state = 742}, - [5043] = {.lex_state = 742}, + [5043] = {.lex_state = 33}, [5044] = {.lex_state = 742}, [5045] = {.lex_state = 742}, [5046] = {.lex_state = 742}, - [5047] = {.lex_state = 33}, + [5047] = {.lex_state = 742}, [5048] = {.lex_state = 742}, - [5049] = {.lex_state = 742}, - [5050] = {.lex_state = 742}, - [5051] = {.lex_state = 274}, - [5052] = {.lex_state = 742}, - [5053] = {.lex_state = 742}, - [5054] = {.lex_state = 812}, - [5055] = {.lex_state = 308}, + [5049] = {.lex_state = 743}, + [5050] = {.lex_state = 99}, + [5051] = {.lex_state = 742}, + [5052] = {.lex_state = 275}, + [5053] = {.lex_state = 33}, + [5054] = {.lex_state = 742}, + [5055] = {.lex_state = 742}, [5056] = {.lex_state = 742}, [5057] = {.lex_state = 742}, - [5058] = {.lex_state = 33}, - [5059] = {.lex_state = 33}, - [5060] = {.lex_state = 33}, - [5061] = {.lex_state = 33}, - [5062] = {.lex_state = 33}, - [5063] = {.lex_state = 33}, - [5064] = {.lex_state = 742}, - [5065] = {.lex_state = 742}, - [5066] = {.lex_state = 33}, - [5067] = {.lex_state = 33}, + [5058] = {.lex_state = 743}, + [5059] = {.lex_state = 743}, + [5060] = {.lex_state = 743}, + [5061] = {.lex_state = 321}, + [5062] = {.lex_state = 710}, + [5063] = {.lex_state = 742}, + [5064] = {.lex_state = 33}, + [5065] = {.lex_state = 268}, + [5066] = {.lex_state = 742}, + [5067] = {.lex_state = 742}, [5068] = {.lex_state = 33}, - [5069] = {.lex_state = 33}, - [5070] = {.lex_state = 33}, - [5071] = {.lex_state = 33}, - [5072] = {.lex_state = 33}, - [5073] = {.lex_state = 33}, + [5069] = {.lex_state = 278}, + [5070] = {.lex_state = 743}, + [5071] = {.lex_state = 743}, + [5072] = {.lex_state = 743}, + [5073] = {.lex_state = 743}, [5074] = {.lex_state = 33}, - [5075] = {.lex_state = 742}, - [5076] = {.lex_state = 742}, - [5077] = {.lex_state = 742}, - [5078] = {.lex_state = 742}, - [5079] = {.lex_state = 742}, - [5080] = {.lex_state = 742}, - [5081] = {.lex_state = 742}, + [5075] = {.lex_state = 33}, + [5076] = {.lex_state = 270}, + [5077] = {.lex_state = 743}, + [5078] = {.lex_state = 743}, + [5079] = {.lex_state = 743}, + [5080] = {.lex_state = 743}, + [5081] = {.lex_state = 775}, [5082] = {.lex_state = 742}, - [5083] = {.lex_state = 742}, + [5083] = {.lex_state = 775}, [5084] = {.lex_state = 742}, - [5085] = {.lex_state = 278}, - [5086] = {.lex_state = 742}, - [5087] = {.lex_state = 742}, - [5088] = {.lex_state = 742}, - [5089] = {.lex_state = 742}, + [5085] = {.lex_state = 775}, + [5086] = {.lex_state = 775}, + [5087] = {.lex_state = 775}, + [5088] = {.lex_state = 775}, + [5089] = {.lex_state = 275}, [5090] = {.lex_state = 742}, [5091] = {.lex_state = 742}, - [5092] = {.lex_state = 742}, - [5093] = {.lex_state = 742}, + [5092] = {.lex_state = 283}, + [5093] = {.lex_state = 33}, [5094] = {.lex_state = 742}, [5095] = {.lex_state = 742}, - [5096] = {.lex_state = 275}, + [5096] = {.lex_state = 33}, [5097] = {.lex_state = 742}, - [5098] = {.lex_state = 33}, - [5099] = {.lex_state = 33}, - [5100] = {.lex_state = 33}, - [5101] = {.lex_state = 742}, - [5102] = {.lex_state = 33}, + [5098] = {.lex_state = 742}, + [5099] = {.lex_state = 273}, + [5100] = {.lex_state = 742}, + [5101] = {.lex_state = 275}, + [5102] = {.lex_state = 742}, [5103] = {.lex_state = 742}, - [5104] = {.lex_state = 742}, - [5105] = {.lex_state = 3704}, + [5104] = {.lex_state = 274}, + [5105] = {.lex_state = 742}, [5106] = {.lex_state = 742}, - [5107] = {.lex_state = 743}, - [5108] = {.lex_state = 742}, - [5109] = {.lex_state = 743}, - [5110] = {.lex_state = 743}, - [5111] = {.lex_state = 743}, - [5112] = {.lex_state = 321}, - [5113] = {.lex_state = 743}, - [5114] = {.lex_state = 743}, - [5115] = {.lex_state = 743}, - [5116] = {.lex_state = 743}, - [5117] = {.lex_state = 743}, - [5118] = {.lex_state = 743}, - [5119] = {.lex_state = 743}, - [5120] = {.lex_state = 743}, - [5121] = {.lex_state = 33}, - [5122] = {.lex_state = 775}, - [5123] = {.lex_state = 775}, - [5124] = {.lex_state = 775}, - [5125] = {.lex_state = 775}, - [5126] = {.lex_state = 775}, - [5127] = {.lex_state = 775}, + [5107] = {.lex_state = 742}, + [5108] = {.lex_state = 33}, + [5109] = {.lex_state = 742}, + [5110] = {.lex_state = 33}, + [5111] = {.lex_state = 742}, + [5112] = {.lex_state = 775}, + [5113] = {.lex_state = 775}, + [5114] = {.lex_state = 775}, + [5115] = {.lex_state = 775}, + [5116] = {.lex_state = 33}, + [5117] = {.lex_state = 742}, + [5118] = {.lex_state = 742}, + [5119] = {.lex_state = 742}, + [5120] = {.lex_state = 742}, + [5121] = {.lex_state = 742}, + [5122] = {.lex_state = 33}, + [5123] = {.lex_state = 742}, + [5124] = {.lex_state = 3704}, + [5125] = {.lex_state = 743}, + [5126] = {.lex_state = 742}, + [5127] = {.lex_state = 308}, [5128] = {.lex_state = 742}, - [5129] = {.lex_state = 33}, - [5130] = {.lex_state = 742}, + [5129] = {.lex_state = 742}, + [5130] = {.lex_state = 274}, [5131] = {.lex_state = 742}, [5132] = {.lex_state = 33}, - [5133] = {.lex_state = 742}, - [5134] = {.lex_state = 3704}, - [5135] = {.lex_state = 812}, + [5133] = {.lex_state = 710}, + [5134] = {.lex_state = 33}, + [5135] = {.lex_state = 33}, [5136] = {.lex_state = 742}, - [5137] = {.lex_state = 274}, - [5138] = {.lex_state = 742}, + [5137] = {.lex_state = 742}, + [5138] = {.lex_state = 33}, [5139] = {.lex_state = 33}, [5140] = {.lex_state = 742}, - [5141] = {.lex_state = 742}, - [5142] = {.lex_state = 775}, - [5143] = {.lex_state = 775}, - [5144] = {.lex_state = 775}, - [5145] = {.lex_state = 775}, - [5146] = {.lex_state = 33}, - [5147] = {.lex_state = 743}, + [5141] = {.lex_state = 812}, + [5142] = {.lex_state = 33}, + [5143] = {.lex_state = 268}, + [5144] = {.lex_state = 33}, + [5145] = {.lex_state = 742}, + [5146] = {.lex_state = 742}, + [5147] = {.lex_state = 33}, [5148] = {.lex_state = 33}, - [5149] = {.lex_state = 33}, + [5149] = {.lex_state = 742}, [5150] = {.lex_state = 33}, - [5151] = {.lex_state = 275}, - [5152] = {.lex_state = 742}, - [5153] = {.lex_state = 33}, - [5154] = {.lex_state = 33}, + [5151] = {.lex_state = 277}, + [5152] = {.lex_state = 33}, + [5153] = {.lex_state = 742}, + [5154] = {.lex_state = 742}, [5155] = {.lex_state = 742}, - [5156] = {.lex_state = 742}, + [5156] = {.lex_state = 33}, [5157] = {.lex_state = 775}, [5158] = {.lex_state = 775}, - [5159] = {.lex_state = 742}, + [5159] = {.lex_state = 3704}, [5160] = {.lex_state = 742}, - [5161] = {.lex_state = 742}, - [5162] = {.lex_state = 710}, - [5163] = {.lex_state = 33}, - [5164] = {.lex_state = 742}, - [5165] = {.lex_state = 742}, - [5166] = {.lex_state = 742}, - [5167] = {.lex_state = 33}, - [5168] = {.lex_state = 775}, - [5169] = {.lex_state = 269}, - [5170] = {.lex_state = 717}, - [5171] = {.lex_state = 717}, - [5172] = {.lex_state = 742}, - [5173] = {.lex_state = 775}, - [5174] = {.lex_state = 717}, - [5175] = {.lex_state = 717}, - [5176] = {.lex_state = 717}, - [5177] = {.lex_state = 717}, - [5178] = {.lex_state = 717}, - [5179] = {.lex_state = 322}, - [5180] = {.lex_state = 781}, - [5181] = {.lex_state = 315}, - [5182] = {.lex_state = 775}, - [5183] = {.lex_state = 717}, - [5184] = {.lex_state = 717}, - [5185] = {.lex_state = 269}, - [5186] = {.lex_state = 280}, - [5187] = {.lex_state = 781}, - [5188] = {.lex_state = 33}, - [5189] = {.lex_state = 781}, - [5190] = {.lex_state = 7}, - [5191] = {.lex_state = 7}, - [5192] = {.lex_state = 717}, - [5193] = {.lex_state = 717}, - [5194] = {.lex_state = 33}, - [5195] = {.lex_state = 33}, - [5196] = {.lex_state = 62}, + [5161] = {.lex_state = 812}, + [5162] = {.lex_state = 33}, + [5163] = {.lex_state = 742}, + [5164] = {.lex_state = 275}, + [5165] = {.lex_state = 3704}, + [5166] = {.lex_state = 279}, + [5167] = {.lex_state = 742}, + [5168] = {.lex_state = 742}, + [5169] = {.lex_state = 33}, + [5170] = {.lex_state = 33}, + [5171] = {.lex_state = 33}, + [5172] = {.lex_state = 33}, + [5173] = {.lex_state = 742}, + [5174] = {.lex_state = 33}, + [5175] = {.lex_state = 742}, + [5176] = {.lex_state = 710}, + [5177] = {.lex_state = 742}, + [5178] = {.lex_state = 346}, + [5179] = {.lex_state = 775}, + [5180] = {.lex_state = 340}, + [5181] = {.lex_state = 775}, + [5182] = {.lex_state = 7}, + [5183] = {.lex_state = 309}, + [5184] = {.lex_state = 775}, + [5185] = {.lex_state = 717}, + [5186] = {.lex_state = 71}, + [5187] = {.lex_state = 717}, + [5188] = {.lex_state = 717}, + [5189] = {.lex_state = 322}, + [5190] = {.lex_state = 717}, + [5191] = {.lex_state = 717}, + [5192] = {.lex_state = 775}, + [5193] = {.lex_state = 7}, + [5194] = {.lex_state = 775}, + [5195] = {.lex_state = 353}, + [5196] = {.lex_state = 717}, [5197] = {.lex_state = 717}, - [5198] = {.lex_state = 717}, + [5198] = {.lex_state = 269}, [5199] = {.lex_state = 717}, [5200] = {.lex_state = 717}, - [5201] = {.lex_state = 781}, - [5202] = {.lex_state = 717}, - [5203] = {.lex_state = 7}, - [5204] = {.lex_state = 743}, - [5205] = {.lex_state = 284}, - [5206] = {.lex_state = 284}, - [5207] = {.lex_state = 7}, + [5201] = {.lex_state = 275}, + [5202] = {.lex_state = 33}, + [5203] = {.lex_state = 284}, + [5204] = {.lex_state = 717}, + [5205] = {.lex_state = 717}, + [5206] = {.lex_state = 322}, + [5207] = {.lex_state = 717}, [5208] = {.lex_state = 717}, - [5209] = {.lex_state = 275}, + [5209] = {.lex_state = 717}, [5210] = {.lex_state = 775}, - [5211] = {.lex_state = 775}, - [5212] = {.lex_state = 775}, - [5213] = {.lex_state = 717}, - [5214] = {.lex_state = 353}, - [5215] = {.lex_state = 7}, + [5211] = {.lex_state = 280}, + [5212] = {.lex_state = 717}, + [5213] = {.lex_state = 71}, + [5214] = {.lex_state = 275}, + [5215] = {.lex_state = 33}, [5216] = {.lex_state = 717}, - [5217] = {.lex_state = 775}, + [5217] = {.lex_state = 71}, [5218] = {.lex_state = 338}, - [5219] = {.lex_state = 71}, - [5220] = {.lex_state = 322}, - [5221] = {.lex_state = 33}, - [5222] = {.lex_state = 717}, - [5223] = {.lex_state = 275}, - [5224] = {.lex_state = 62}, - [5225] = {.lex_state = 775}, - [5226] = {.lex_state = 340}, - [5227] = {.lex_state = 33}, - [5228] = {.lex_state = 33}, - [5229] = {.lex_state = 285}, - [5230] = {.lex_state = 717}, - [5231] = {.lex_state = 717}, - [5232] = {.lex_state = 285}, - [5233] = {.lex_state = 346}, + [5219] = {.lex_state = 775}, + [5220] = {.lex_state = 743}, + [5221] = {.lex_state = 717}, + [5222] = {.lex_state = 33}, + [5223] = {.lex_state = 33}, + [5224] = {.lex_state = 717}, + [5225] = {.lex_state = 280}, + [5226] = {.lex_state = 62}, + [5227] = {.lex_state = 7}, + [5228] = {.lex_state = 775}, + [5229] = {.lex_state = 269}, + [5230] = {.lex_state = 33}, + [5231] = {.lex_state = 33}, + [5232] = {.lex_state = 7}, + [5233] = {.lex_state = 284}, [5234] = {.lex_state = 717}, - [5235] = {.lex_state = 781}, - [5236] = {.lex_state = 309}, - [5237] = {.lex_state = 280}, - [5238] = {.lex_state = 775}, - [5239] = {.lex_state = 3705}, - [5240] = {.lex_state = 3705}, - [5241] = {.lex_state = 296}, - [5242] = {.lex_state = 281}, - [5243] = {.lex_state = 33}, - [5244] = {.lex_state = 78}, - [5245] = {.lex_state = 298}, - [5246] = {.lex_state = 308}, - [5247] = {.lex_state = 347}, - [5248] = {.lex_state = 282}, - [5249] = {.lex_state = 282}, - [5250] = {.lex_state = 62}, - [5251] = {.lex_state = 62}, - [5252] = {.lex_state = 354}, - [5253] = {.lex_state = 33, .external_lex_state = 2}, - [5254] = {.lex_state = 282}, - [5255] = {.lex_state = 781}, - [5256] = {.lex_state = 282}, - [5257] = {.lex_state = 3705}, - [5258] = {.lex_state = 33}, - [5259] = {.lex_state = 3247}, - [5260] = {.lex_state = 3247}, - [5261] = {.lex_state = 3705}, - [5262] = {.lex_state = 282}, - [5263] = {.lex_state = 3247}, - [5264] = {.lex_state = 3247}, - [5265] = {.lex_state = 781}, - [5266] = {.lex_state = 781}, - [5267] = {.lex_state = 781}, - [5268] = {.lex_state = 3880}, - [5269] = {.lex_state = 3880}, - [5270] = {.lex_state = 33, .external_lex_state = 2}, - [5271] = {.lex_state = 33}, - [5272] = {.lex_state = 3247}, - [5273] = {.lex_state = 717}, - [5274] = {.lex_state = 33, .external_lex_state = 2}, - [5275] = {.lex_state = 3247}, - [5276] = {.lex_state = 308}, - [5277] = {.lex_state = 33}, - [5278] = {.lex_state = 3705}, - [5279] = {.lex_state = 3705}, - [5280] = {.lex_state = 781}, - [5281] = {.lex_state = 717}, - [5282] = {.lex_state = 3247}, - [5283] = {.lex_state = 3247}, + [5235] = {.lex_state = 717}, + [5236] = {.lex_state = 71}, + [5237] = {.lex_state = 717}, + [5238] = {.lex_state = 33}, + [5239] = {.lex_state = 71}, + [5240] = {.lex_state = 717}, + [5241] = {.lex_state = 775}, + [5242] = {.lex_state = 62}, + [5243] = {.lex_state = 7}, + [5244] = {.lex_state = 717}, + [5245] = {.lex_state = 315}, + [5246] = {.lex_state = 742}, + [5247] = {.lex_state = 3880}, + [5248] = {.lex_state = 281}, + [5249] = {.lex_state = 341}, + [5250] = {.lex_state = 341}, + [5251] = {.lex_state = 77}, + [5252] = {.lex_state = 78}, + [5253] = {.lex_state = 3705}, + [5254] = {.lex_state = 285}, + [5255] = {.lex_state = 33}, + [5256] = {.lex_state = 3705}, + [5257] = {.lex_state = 347}, + [5258] = {.lex_state = 3705}, + [5259] = {.lex_state = 354}, + [5260] = {.lex_state = 323}, + [5261] = {.lex_state = 308}, + [5262] = {.lex_state = 323}, + [5263] = {.lex_state = 717}, + [5264] = {.lex_state = 717}, + [5265] = {.lex_state = 324}, + [5266] = {.lex_state = 3247}, + [5267] = {.lex_state = 323}, + [5268] = {.lex_state = 3247}, + [5269] = {.lex_state = 323}, + [5270] = {.lex_state = 282}, + [5271] = {.lex_state = 323}, + [5272] = {.lex_state = 3705}, + [5273] = {.lex_state = 310}, + [5274] = {.lex_state = 3705}, + [5275] = {.lex_state = 3705}, + [5276] = {.lex_state = 3247}, + [5277] = {.lex_state = 3247}, + [5278] = {.lex_state = 3247}, + [5279] = {.lex_state = 3247}, + [5280] = {.lex_state = 717}, + [5281] = {.lex_state = 33, .external_lex_state = 2}, + [5282] = {.lex_state = 62}, + [5283] = {.lex_state = 62}, [5284] = {.lex_state = 717}, - [5285] = {.lex_state = 717}, - [5286] = {.lex_state = 781}, - [5287] = {.lex_state = 3247}, - [5288] = {.lex_state = 3247}, - [5289] = {.lex_state = 3247}, - [5290] = {.lex_state = 33, .external_lex_state = 2}, + [5285] = {.lex_state = 3880}, + [5286] = {.lex_state = 3880}, + [5287] = {.lex_state = 33, .external_lex_state = 2}, + [5288] = {.lex_state = 717}, + [5289] = {.lex_state = 781}, + [5290] = {.lex_state = 717}, [5291] = {.lex_state = 33, .external_lex_state = 2}, - [5292] = {.lex_state = 717}, - [5293] = {.lex_state = 717}, + [5292] = {.lex_state = 3880}, + [5293] = {.lex_state = 317}, [5294] = {.lex_state = 717}, [5295] = {.lex_state = 717}, [5296] = {.lex_state = 717}, [5297] = {.lex_state = 717}, [5298] = {.lex_state = 717}, - [5299] = {.lex_state = 316}, - [5300] = {.lex_state = 323}, - [5301] = {.lex_state = 33, .external_lex_state = 2}, + [5299] = {.lex_state = 717}, + [5300] = {.lex_state = 717}, + [5301] = {.lex_state = 717}, [5302] = {.lex_state = 717}, - [5303] = {.lex_state = 3247}, - [5304] = {.lex_state = 3247}, - [5305] = {.lex_state = 3247}, - [5306] = {.lex_state = 3247}, + [5303] = {.lex_state = 717}, + [5304] = {.lex_state = 717}, + [5305] = {.lex_state = 717}, + [5306] = {.lex_state = 717}, [5307] = {.lex_state = 717}, [5308] = {.lex_state = 717}, - [5309] = {.lex_state = 717}, + [5309] = {.lex_state = 3705}, [5310] = {.lex_state = 717}, - [5311] = {.lex_state = 717}, - [5312] = {.lex_state = 717}, + [5311] = {.lex_state = 3247}, + [5312] = {.lex_state = 3247}, [5313] = {.lex_state = 717}, - [5314] = {.lex_state = 308}, + [5314] = {.lex_state = 717}, [5315] = {.lex_state = 717}, - [5316] = {.lex_state = 281}, + [5316] = {.lex_state = 3247}, [5317] = {.lex_state = 3247}, [5318] = {.lex_state = 3247}, - [5319] = {.lex_state = 281}, - [5320] = {.lex_state = 310}, - [5321] = {.lex_state = 717}, - [5322] = {.lex_state = 281}, - [5323] = {.lex_state = 717}, - [5324] = {.lex_state = 285}, - [5325] = {.lex_state = 717}, - [5326] = {.lex_state = 717}, - [5327] = {.lex_state = 281}, - [5328] = {.lex_state = 3880}, - [5329] = {.lex_state = 3880}, - [5330] = {.lex_state = 3880}, - [5331] = {.lex_state = 3880}, + [5319] = {.lex_state = 3247}, + [5320] = {.lex_state = 33, .external_lex_state = 2}, + [5321] = {.lex_state = 3880}, + [5322] = {.lex_state = 3880}, + [5323] = {.lex_state = 33, .external_lex_state = 2}, + [5324] = {.lex_state = 781}, + [5325] = {.lex_state = 781}, + [5326] = {.lex_state = 33, .external_lex_state = 2}, + [5327] = {.lex_state = 296}, + [5328] = {.lex_state = 298}, + [5329] = {.lex_state = 781}, + [5330] = {.lex_state = 3247}, + [5331] = {.lex_state = 3247}, [5332] = {.lex_state = 33, .external_lex_state = 2}, - [5333] = {.lex_state = 355}, - [5334] = {.lex_state = 323}, - [5335] = {.lex_state = 323}, - [5336] = {.lex_state = 324}, - [5337] = {.lex_state = 285}, + [5333] = {.lex_state = 33, .external_lex_state = 2}, + [5334] = {.lex_state = 281}, + [5335] = {.lex_state = 281}, + [5336] = {.lex_state = 281}, + [5337] = {.lex_state = 3247}, [5338] = {.lex_state = 3247}, - [5339] = {.lex_state = 323}, - [5340] = {.lex_state = 355}, - [5341] = {.lex_state = 775}, - [5342] = {.lex_state = 775}, - [5343] = {.lex_state = 317}, - [5344] = {.lex_state = 341}, - [5345] = {.lex_state = 33, .external_lex_state = 2}, - [5346] = {.lex_state = 33, .external_lex_state = 2}, - [5347] = {.lex_state = 77}, - [5348] = {.lex_state = 33}, - [5349] = {.lex_state = 33}, - [5350] = {.lex_state = 316}, - [5351] = {.lex_state = 3705}, - [5352] = {.lex_state = 341}, - [5353] = {.lex_state = 717}, - [5354] = {.lex_state = 323}, - [5355] = {.lex_state = 62}, - [5356] = {.lex_state = 351}, - [5357] = {.lex_state = 339}, - [5358] = {.lex_state = 717}, - [5359] = {.lex_state = 717}, - [5360] = {.lex_state = 717}, + [5339] = {.lex_state = 281}, + [5340] = {.lex_state = 3247}, + [5341] = {.lex_state = 3247}, + [5342] = {.lex_state = 355}, + [5343] = {.lex_state = 355}, + [5344] = {.lex_state = 33}, + [5345] = {.lex_state = 316}, + [5346] = {.lex_state = 316}, + [5347] = {.lex_state = 282}, + [5348] = {.lex_state = 285}, + [5349] = {.lex_state = 282}, + [5350] = {.lex_state = 282}, + [5351] = {.lex_state = 282}, + [5352] = {.lex_state = 308}, + [5353] = {.lex_state = 33, .external_lex_state = 2}, + [5354] = {.lex_state = 775}, + [5355] = {.lex_state = 775}, + [5356] = {.lex_state = 308}, + [5357] = {.lex_state = 781}, + [5358] = {.lex_state = 781}, + [5359] = {.lex_state = 352}, + [5360] = {.lex_state = 62}, [5361] = {.lex_state = 62}, - [5362] = {.lex_state = 339}, - [5363] = {.lex_state = 308}, - [5364] = {.lex_state = 717}, + [5362] = {.lex_state = 62}, + [5363] = {.lex_state = 62}, + [5364] = {.lex_state = 62}, [5365] = {.lex_state = 62}, - [5366] = {.lex_state = 365}, - [5367] = {.lex_state = 33, .external_lex_state = 2}, - [5368] = {.lex_state = 33, .external_lex_state = 2}, + [5366] = {.lex_state = 62}, + [5367] = {.lex_state = 62}, + [5368] = {.lex_state = 62}, [5369] = {.lex_state = 62}, - [5370] = {.lex_state = 348}, - [5371] = {.lex_state = 366}, - [5372] = {.lex_state = 775}, - [5373] = {.lex_state = 818}, - [5374] = {.lex_state = 359}, - [5375] = {.lex_state = 62}, - [5376] = {.lex_state = 775}, - [5377] = {.lex_state = 813}, - [5378] = {.lex_state = 711}, - [5379] = {.lex_state = 62}, - [5380] = {.lex_state = 62}, - [5381] = {.lex_state = 62}, - [5382] = {.lex_state = 62}, - [5383] = {.lex_state = 775}, - [5384] = {.lex_state = 318}, - [5385] = {.lex_state = 62}, - [5386] = {.lex_state = 62}, - [5387] = {.lex_state = 775}, + [5370] = {.lex_state = 62}, + [5371] = {.lex_state = 62}, + [5372] = {.lex_state = 62}, + [5373] = {.lex_state = 62}, + [5374] = {.lex_state = 339}, + [5375] = {.lex_state = 356}, + [5376] = {.lex_state = 818}, + [5377] = {.lex_state = 717}, + [5378] = {.lex_state = 717}, + [5379] = {.lex_state = 717}, + [5380] = {.lex_state = 717}, + [5381] = {.lex_state = 775}, + [5382] = {.lex_state = 33}, + [5383] = {.lex_state = 357}, + [5384] = {.lex_state = 775}, + [5385] = {.lex_state = 339}, + [5386] = {.lex_state = 775}, + [5387] = {.lex_state = 33, .external_lex_state = 2}, [5388] = {.lex_state = 775}, - [5389] = {.lex_state = 62}, - [5390] = {.lex_state = 62}, - [5391] = {.lex_state = 62}, - [5392] = {.lex_state = 62}, + [5389] = {.lex_state = 775}, + [5390] = {.lex_state = 356}, + [5391] = {.lex_state = 79}, + [5392] = {.lex_state = 33}, [5393] = {.lex_state = 62}, - [5394] = {.lex_state = 62}, - [5395] = {.lex_state = 775}, - [5396] = {.lex_state = 775}, - [5397] = {.lex_state = 62}, - [5398] = {.lex_state = 62}, - [5399] = {.lex_state = 62}, - [5400] = {.lex_state = 62}, - [5401] = {.lex_state = 62}, - [5402] = {.lex_state = 775}, - [5403] = {.lex_state = 775}, - [5404] = {.lex_state = 775}, + [5394] = {.lex_state = 781}, + [5395] = {.lex_state = 813}, + [5396] = {.lex_state = 33}, + [5397] = {.lex_state = 781}, + [5398] = {.lex_state = 781}, + [5399] = {.lex_state = 33}, + [5400] = {.lex_state = 711}, + [5401] = {.lex_state = 775}, + [5402] = {.lex_state = 325}, + [5403] = {.lex_state = 79}, + [5404] = {.lex_state = 717}, [5405] = {.lex_state = 775}, - [5406] = {.lex_state = 33}, - [5407] = {.lex_state = 317}, - [5408] = {.lex_state = 775}, + [5406] = {.lex_state = 775}, + [5407] = {.lex_state = 775}, + [5408] = {.lex_state = 717}, [5409] = {.lex_state = 775}, - [5410] = {.lex_state = 717}, + [5410] = {.lex_state = 775}, [5411] = {.lex_state = 775}, - [5412] = {.lex_state = 775}, - [5413] = {.lex_state = 299}, - [5414] = {.lex_state = 775}, - [5415] = {.lex_state = 775}, - [5416] = {.lex_state = 352}, + [5412] = {.lex_state = 318}, + [5413] = {.lex_state = 62}, + [5414] = {.lex_state = 299}, + [5415] = {.lex_state = 62}, + [5416] = {.lex_state = 711}, [5417] = {.lex_state = 775}, - [5418] = {.lex_state = 775}, - [5419] = {.lex_state = 317}, - [5420] = {.lex_state = 775}, + [5418] = {.lex_state = 299}, + [5419] = {.lex_state = 775}, + [5420] = {.lex_state = 348}, [5421] = {.lex_state = 775}, [5422] = {.lex_state = 775}, - [5423] = {.lex_state = 775}, - [5424] = {.lex_state = 62}, - [5425] = {.lex_state = 33}, - [5426] = {.lex_state = 711}, - [5427] = {.lex_state = 33}, - [5428] = {.lex_state = 775}, - [5429] = {.lex_state = 74}, - [5430] = {.lex_state = 62}, - [5431] = {.lex_state = 775}, + [5423] = {.lex_state = 717}, + [5424] = {.lex_state = 339}, + [5425] = {.lex_state = 775}, + [5426] = {.lex_state = 775}, + [5427] = {.lex_state = 711}, + [5428] = {.lex_state = 781}, + [5429] = {.lex_state = 717}, + [5430] = {.lex_state = 775}, + [5431] = {.lex_state = 74}, [5432] = {.lex_state = 775}, - [5433] = {.lex_state = 325}, + [5433] = {.lex_state = 775}, [5434] = {.lex_state = 775}, - [5435] = {.lex_state = 775}, + [5435] = {.lex_state = 62}, [5436] = {.lex_state = 775}, [5437] = {.lex_state = 775}, - [5438] = {.lex_state = 775}, - [5439] = {.lex_state = 33, .external_lex_state = 2}, - [5440] = {.lex_state = 79}, - [5441] = {.lex_state = 775}, - [5442] = {.lex_state = 356}, - [5443] = {.lex_state = 356}, + [5438] = {.lex_state = 33, .external_lex_state = 2}, + [5439] = {.lex_state = 357}, + [5440] = {.lex_state = 775}, + [5441] = {.lex_state = 781}, + [5442] = {.lex_state = 339}, + [5443] = {.lex_state = 775}, [5444] = {.lex_state = 775}, - [5445] = {.lex_state = 711}, - [5446] = {.lex_state = 717}, - [5447] = {.lex_state = 717}, - [5448] = {.lex_state = 325}, + [5445] = {.lex_state = 311}, + [5446] = {.lex_state = 357}, + [5447] = {.lex_state = 775}, + [5448] = {.lex_state = 775}, [5449] = {.lex_state = 775}, - [5450] = {.lex_state = 775}, + [5450] = {.lex_state = 33, .external_lex_state = 2}, [5451] = {.lex_state = 775}, - [5452] = {.lex_state = 775}, - [5453] = {.lex_state = 357}, - [5454] = {.lex_state = 775}, - [5455] = {.lex_state = 311}, + [5452] = {.lex_state = 357}, + [5453] = {.lex_state = 33}, + [5454] = {.lex_state = 357}, + [5455] = {.lex_state = 775}, [5456] = {.lex_state = 775}, - [5457] = {.lex_state = 775}, - [5458] = {.lex_state = 775}, - [5459] = {.lex_state = 775}, - [5460] = {.lex_state = 357}, + [5457] = {.lex_state = 317}, + [5458] = {.lex_state = 781}, + [5459] = {.lex_state = 308}, + [5460] = {.lex_state = 775}, [5461] = {.lex_state = 775}, - [5462] = {.lex_state = 73}, - [5463] = {.lex_state = 357}, - [5464] = {.lex_state = 775}, + [5462] = {.lex_state = 775}, + [5463] = {.lex_state = 775}, + [5464] = {.lex_state = 317}, [5465] = {.lex_state = 775}, - [5466] = {.lex_state = 33, .external_lex_state = 2}, - [5467] = {.lex_state = 775}, - [5468] = {.lex_state = 781}, - [5469] = {.lex_state = 775}, - [5470] = {.lex_state = 357}, - [5471] = {.lex_state = 339}, - [5472] = {.lex_state = 357}, + [5466] = {.lex_state = 775}, + [5467] = {.lex_state = 781}, + [5468] = {.lex_state = 317}, + [5469] = {.lex_state = 317}, + [5470] = {.lex_state = 339}, + [5471] = {.lex_state = 308}, + [5472] = {.lex_state = 285}, [5473] = {.lex_state = 775}, - [5474] = {.lex_state = 299}, - [5475] = {.lex_state = 317}, - [5476] = {.lex_state = 339}, - [5477] = {.lex_state = 308}, - [5478] = {.lex_state = 79}, - [5479] = {.lex_state = 775}, - [5480] = {.lex_state = 781}, - [5481] = {.lex_state = 339}, - [5482] = {.lex_state = 717}, - [5483] = {.lex_state = 62}, - [5484] = {.lex_state = 317}, + [5474] = {.lex_state = 775}, + [5475] = {.lex_state = 359}, + [5476] = {.lex_state = 285}, + [5477] = {.lex_state = 325}, + [5478] = {.lex_state = 62}, + [5479] = {.lex_state = 62}, + [5480] = {.lex_state = 73}, + [5481] = {.lex_state = 775}, + [5482] = {.lex_state = 366}, + [5483] = {.lex_state = 775}, + [5484] = {.lex_state = 775}, [5485] = {.lex_state = 775}, - [5486] = {.lex_state = 782}, - [5487] = {.lex_state = 33, .external_lex_state = 2}, - [5488] = {.lex_state = 257, .external_lex_state = 2}, - [5489] = {.lex_state = 717}, - [5490] = {.lex_state = 326}, - [5491] = {.lex_state = 33, .external_lex_state = 2}, - [5492] = {.lex_state = 257, .external_lex_state = 2}, - [5493] = {.lex_state = 33, .external_lex_state = 2}, - [5494] = {.lex_state = 319}, - [5495] = {.lex_state = 257, .external_lex_state = 2}, - [5496] = {.lex_state = 257, .external_lex_state = 2}, - [5497] = {.lex_state = 350}, - [5498] = {.lex_state = 80}, - [5499] = {.lex_state = 257, .external_lex_state = 2}, - [5500] = {.lex_state = 711}, - [5501] = {.lex_state = 257, .external_lex_state = 2}, - [5502] = {.lex_state = 297}, - [5503] = {.lex_state = 257, .external_lex_state = 2}, - [5504] = {.lex_state = 717}, - [5505] = {.lex_state = 257, .external_lex_state = 2}, + [5486] = {.lex_state = 62}, + [5487] = {.lex_state = 62}, + [5488] = {.lex_state = 775}, + [5489] = {.lex_state = 62}, + [5490] = {.lex_state = 351}, + [5491] = {.lex_state = 775}, + [5492] = {.lex_state = 365}, + [5493] = {.lex_state = 62}, + [5494] = {.lex_state = 62}, + [5495] = {.lex_state = 775}, + [5496] = {.lex_state = 775}, + [5497] = {.lex_state = 775}, + [5498] = {.lex_state = 33, .external_lex_state = 2}, + [5499] = {.lex_state = 717}, + [5500] = {.lex_state = 33}, + [5501] = {.lex_state = 781}, + [5502] = {.lex_state = 781}, + [5503] = {.lex_state = 781}, + [5504] = {.lex_state = 326}, + [5505] = {.lex_state = 80}, [5506] = {.lex_state = 257, .external_lex_state = 2}, - [5507] = {.lex_state = 257, .external_lex_state = 2}, - [5508] = {.lex_state = 257, .external_lex_state = 2}, - [5509] = {.lex_state = 257, .external_lex_state = 2}, - [5510] = {.lex_state = 257, .external_lex_state = 2}, - [5511] = {.lex_state = 257, .external_lex_state = 2}, - [5512] = {.lex_state = 257, .external_lex_state = 2}, - [5513] = {.lex_state = 257, .external_lex_state = 2}, - [5514] = {.lex_state = 257, .external_lex_state = 2}, - [5515] = {.lex_state = 257, .external_lex_state = 2}, - [5516] = {.lex_state = 257, .external_lex_state = 2}, - [5517] = {.lex_state = 257, .external_lex_state = 2}, - [5518] = {.lex_state = 257, .external_lex_state = 2}, - [5519] = {.lex_state = 257, .external_lex_state = 2}, - [5520] = {.lex_state = 257, .external_lex_state = 2}, + [5507] = {.lex_state = 350}, + [5508] = {.lex_state = 350}, + [5509] = {.lex_state = 75}, + [5510] = {.lex_state = 717}, + [5511] = {.lex_state = 80}, + [5512] = {.lex_state = 319}, + [5513] = {.lex_state = 319}, + [5514] = {.lex_state = 781}, + [5515] = {.lex_state = 781}, + [5516] = {.lex_state = 297}, + [5517] = {.lex_state = 297}, + [5518] = {.lex_state = 824}, + [5519] = {.lex_state = 297}, + [5520] = {.lex_state = 297}, [5521] = {.lex_state = 257, .external_lex_state = 2}, - [5522] = {.lex_state = 257, .external_lex_state = 2}, - [5523] = {.lex_state = 257, .external_lex_state = 2}, - [5524] = {.lex_state = 257, .external_lex_state = 2}, - [5525] = {.lex_state = 257, .external_lex_state = 2}, - [5526] = {.lex_state = 257, .external_lex_state = 2}, - [5527] = {.lex_state = 257, .external_lex_state = 2}, - [5528] = {.lex_state = 257, .external_lex_state = 2}, - [5529] = {.lex_state = 358}, - [5530] = {.lex_state = 717}, - [5531] = {.lex_state = 824}, - [5532] = {.lex_state = 824}, - [5533] = {.lex_state = 781}, - [5534] = {.lex_state = 358}, - [5535] = {.lex_state = 319}, - [5536] = {.lex_state = 350}, - [5537] = {.lex_state = 368}, - [5538] = {.lex_state = 326}, - [5539] = {.lex_state = 257, .external_lex_state = 2}, + [5522] = {.lex_state = 33, .external_lex_state = 2}, + [5523] = {.lex_state = 717}, + [5524] = {.lex_state = 717}, + [5525] = {.lex_state = 717}, + [5526] = {.lex_state = 349}, + [5527] = {.lex_state = 717}, + [5528] = {.lex_state = 326}, + [5529] = {.lex_state = 824}, + [5530] = {.lex_state = 257, .external_lex_state = 2}, + [5531] = {.lex_state = 361}, + [5532] = {.lex_state = 257, .external_lex_state = 2}, + [5533] = {.lex_state = 257, .external_lex_state = 2}, + [5534] = {.lex_state = 350}, + [5535] = {.lex_state = 824}, + [5536] = {.lex_state = 33, .external_lex_state = 2}, + [5537] = {.lex_state = 257, .external_lex_state = 2}, + [5538] = {.lex_state = 33}, + [5539] = {.lex_state = 33, .external_lex_state = 2}, [5540] = {.lex_state = 257, .external_lex_state = 2}, - [5541] = {.lex_state = 824}, - [5542] = {.lex_state = 781}, - [5543] = {.lex_state = 824}, - [5544] = {.lex_state = 75}, - [5545] = {.lex_state = 80}, - [5546] = {.lex_state = 360}, - [5547] = {.lex_state = 781}, - [5548] = {.lex_state = 815}, - [5549] = {.lex_state = 717}, - [5550] = {.lex_state = 297}, - [5551] = {.lex_state = 358}, - [5552] = {.lex_state = 717}, - [5553] = {.lex_state = 358}, + [5541] = {.lex_state = 33, .external_lex_state = 2}, + [5542] = {.lex_state = 326}, + [5543] = {.lex_state = 33, .external_lex_state = 2}, + [5544] = {.lex_state = 257, .external_lex_state = 2}, + [5545] = {.lex_state = 813}, + [5546] = {.lex_state = 33, .external_lex_state = 2}, + [5547] = {.lex_state = 360}, + [5548] = {.lex_state = 326}, + [5549] = {.lex_state = 257, .external_lex_state = 2}, + [5550] = {.lex_state = 33}, + [5551] = {.lex_state = 33, .external_lex_state = 2}, + [5552] = {.lex_state = 33, .external_lex_state = 2}, + [5553] = {.lex_state = 33, .external_lex_state = 2}, [5554] = {.lex_state = 257, .external_lex_state = 2}, - [5555] = {.lex_state = 717}, + [5555] = {.lex_state = 33, .external_lex_state = 2}, [5556] = {.lex_state = 33, .external_lex_state = 2}, - [5557] = {.lex_state = 814}, - [5558] = {.lex_state = 368}, - [5559] = {.lex_state = 361}, - [5560] = {.lex_state = 349}, - [5561] = {.lex_state = 71}, - [5562] = {.lex_state = 257, .external_lex_state = 2}, - [5563] = {.lex_state = 814}, - [5564] = {.lex_state = 33, .external_lex_state = 2}, - [5565] = {.lex_state = 297}, + [5557] = {.lex_state = 257, .external_lex_state = 2}, + [5558] = {.lex_state = 257, .external_lex_state = 2}, + [5559] = {.lex_state = 33, .external_lex_state = 2}, + [5560] = {.lex_state = 710}, + [5561] = {.lex_state = 257, .external_lex_state = 2}, + [5562] = {.lex_state = 711}, + [5563] = {.lex_state = 711}, + [5564] = {.lex_state = 361}, + [5565] = {.lex_state = 257, .external_lex_state = 2}, [5566] = {.lex_state = 257, .external_lex_state = 2}, - [5567] = {.lex_state = 33}, - [5568] = {.lex_state = 350}, - [5569] = {.lex_state = 80}, - [5570] = {.lex_state = 781}, - [5571] = {.lex_state = 33, .external_lex_state = 2}, - [5572] = {.lex_state = 33, .external_lex_state = 2}, - [5573] = {.lex_state = 326}, - [5574] = {.lex_state = 33, .external_lex_state = 2}, + [5567] = {.lex_state = 257, .external_lex_state = 2}, + [5568] = {.lex_state = 257, .external_lex_state = 2}, + [5569] = {.lex_state = 781}, + [5570] = {.lex_state = 257, .external_lex_state = 2}, + [5571] = {.lex_state = 350}, + [5572] = {.lex_state = 350}, + [5573] = {.lex_state = 257, .external_lex_state = 2}, + [5574] = {.lex_state = 257, .external_lex_state = 2}, [5575] = {.lex_state = 257, .external_lex_state = 2}, - [5576] = {.lex_state = 717}, - [5577] = {.lex_state = 33, .external_lex_state = 2}, - [5578] = {.lex_state = 350}, - [5579] = {.lex_state = 824}, - [5580] = {.lex_state = 297}, - [5581] = {.lex_state = 80}, - [5582] = {.lex_state = 367}, - [5583] = {.lex_state = 367}, - [5584] = {.lex_state = 33, .external_lex_state = 2}, + [5576] = {.lex_state = 257, .external_lex_state = 2}, + [5577] = {.lex_state = 257, .external_lex_state = 2}, + [5578] = {.lex_state = 257, .external_lex_state = 2}, + [5579] = {.lex_state = 257, .external_lex_state = 2}, + [5580] = {.lex_state = 257, .external_lex_state = 2}, + [5581] = {.lex_state = 257, .external_lex_state = 2}, + [5582] = {.lex_state = 257, .external_lex_state = 2}, + [5583] = {.lex_state = 257, .external_lex_state = 2}, + [5584] = {.lex_state = 257, .external_lex_state = 2}, [5585] = {.lex_state = 257, .external_lex_state = 2}, - [5586] = {.lex_state = 350}, - [5587] = {.lex_state = 80}, + [5586] = {.lex_state = 257, .external_lex_state = 2}, + [5587] = {.lex_state = 257, .external_lex_state = 2}, [5588] = {.lex_state = 257, .external_lex_state = 2}, - [5589] = {.lex_state = 781}, - [5590] = {.lex_state = 361}, + [5589] = {.lex_state = 257, .external_lex_state = 2}, + [5590] = {.lex_state = 257, .external_lex_state = 2}, [5591] = {.lex_state = 257, .external_lex_state = 2}, - [5592] = {.lex_state = 717}, - [5593] = {.lex_state = 781}, - [5594] = {.lex_state = 62}, - [5595] = {.lex_state = 717}, + [5592] = {.lex_state = 257, .external_lex_state = 2}, + [5593] = {.lex_state = 257, .external_lex_state = 2}, + [5594] = {.lex_state = 257, .external_lex_state = 2}, + [5595] = {.lex_state = 257, .external_lex_state = 2}, [5596] = {.lex_state = 257, .external_lex_state = 2}, - [5597] = {.lex_state = 33, .external_lex_state = 2}, - [5598] = {.lex_state = 358}, - [5599] = {.lex_state = 297}, - [5600] = {.lex_state = 75}, - [5601] = {.lex_state = 350}, - [5602] = {.lex_state = 257, .external_lex_state = 2}, - [5603] = {.lex_state = 257, .external_lex_state = 2}, - [5604] = {.lex_state = 818}, - [5605] = {.lex_state = 711}, - [5606] = {.lex_state = 710}, - [5607] = {.lex_state = 33, .external_lex_state = 2}, - [5608] = {.lex_state = 711}, - [5609] = {.lex_state = 33}, - [5610] = {.lex_state = 813}, - [5611] = {.lex_state = 33, .external_lex_state = 2}, - [5612] = {.lex_state = 781}, - [5613] = {.lex_state = 711}, - [5614] = {.lex_state = 326}, - [5615] = {.lex_state = 257, .external_lex_state = 2}, - [5616] = {.lex_state = 781}, - [5617] = {.lex_state = 781}, - [5618] = {.lex_state = 33, .external_lex_state = 2}, - [5619] = {.lex_state = 76}, - [5620] = {.lex_state = 71}, - [5621] = {.lex_state = 824}, - [5622] = {.lex_state = 370}, - [5623] = {.lex_state = 33, .external_lex_state = 2}, - [5624] = {.lex_state = 312}, - [5625] = {.lex_state = 717}, - [5626] = {.lex_state = 71}, - [5627] = {.lex_state = 320}, - [5628] = {.lex_state = 370}, - [5629] = {.lex_state = 33, .external_lex_state = 2}, - [5630] = {.lex_state = 375}, - [5631] = {.lex_state = 308}, + [5597] = {.lex_state = 257, .external_lex_state = 2}, + [5598] = {.lex_state = 75}, + [5599] = {.lex_state = 358}, + [5600] = {.lex_state = 80}, + [5601] = {.lex_state = 368}, + [5602] = {.lex_state = 297}, + [5603] = {.lex_state = 781}, + [5604] = {.lex_state = 62}, + [5605] = {.lex_state = 358}, + [5606] = {.lex_state = 814}, + [5607] = {.lex_state = 814}, + [5608] = {.lex_state = 358}, + [5609] = {.lex_state = 80}, + [5610] = {.lex_state = 815}, + [5611] = {.lex_state = 711}, + [5612] = {.lex_state = 358}, + [5613] = {.lex_state = 33, .external_lex_state = 2}, + [5614] = {.lex_state = 33, .external_lex_state = 2}, + [5615] = {.lex_state = 367}, + [5616] = {.lex_state = 717}, + [5617] = {.lex_state = 824}, + [5618] = {.lex_state = 824}, + [5619] = {.lex_state = 257, .external_lex_state = 2}, + [5620] = {.lex_state = 717}, + [5621] = {.lex_state = 367}, + [5622] = {.lex_state = 717}, + [5623] = {.lex_state = 711}, + [5624] = {.lex_state = 358}, + [5625] = {.lex_state = 350}, + [5626] = {.lex_state = 80}, + [5627] = {.lex_state = 818}, + [5628] = {.lex_state = 368}, + [5629] = {.lex_state = 781}, + [5630] = {.lex_state = 312}, + [5631] = {.lex_state = 312}, [5632] = {.lex_state = 362}, - [5633] = {.lex_state = 33, .external_lex_state = 2}, + [5633] = {.lex_state = 717}, [5634] = {.lex_state = 312}, - [5635] = {.lex_state = 71}, + [5635] = {.lex_state = 824}, [5636] = {.lex_state = 824}, - [5637] = {.lex_state = 824}, + [5637] = {.lex_state = 312}, [5638] = {.lex_state = 312}, - [5639] = {.lex_state = 814}, - [5640] = {.lex_state = 312}, - [5641] = {.lex_state = 312}, - [5642] = {.lex_state = 781}, - [5643] = {.lex_state = 33, .external_lex_state = 2}, - [5644] = {.lex_state = 717}, - [5645] = {.lex_state = 369}, - [5646] = {.lex_state = 71}, - [5647] = {.lex_state = 71}, - [5648] = {.lex_state = 312}, - [5649] = {.lex_state = 71}, - [5650] = {.lex_state = 717}, - [5651] = {.lex_state = 362}, + [5639] = {.lex_state = 312}, + [5640] = {.lex_state = 76}, + [5641] = {.lex_state = 362}, + [5642] = {.lex_state = 71}, + [5643] = {.lex_state = 312}, + [5644] = {.lex_state = 375}, + [5645] = {.lex_state = 76}, + [5646] = {.lex_state = 337}, + [5647] = {.lex_state = 320}, + [5648] = {.lex_state = 362}, + [5649] = {.lex_state = 782}, + [5650] = {.lex_state = 363}, + [5651] = {.lex_state = 312}, [5652] = {.lex_state = 33, .external_lex_state = 2}, - [5653] = {.lex_state = 33, .external_lex_state = 2}, - [5654] = {.lex_state = 369}, - [5655] = {.lex_state = 33}, - [5656] = {.lex_state = 71}, - [5657] = {.lex_state = 71}, - [5658] = {.lex_state = 71}, - [5659] = {.lex_state = 337}, - [5660] = {.lex_state = 320}, - [5661] = {.lex_state = 308}, - [5662] = {.lex_state = 308}, - [5663] = {.lex_state = 76}, - [5664] = {.lex_state = 312}, - [5665] = {.lex_state = 71}, - [5666] = {.lex_state = 370}, - [5667] = {.lex_state = 369}, - [5668] = {.lex_state = 320}, - [5669] = {.lex_state = 815}, + [5653] = {.lex_state = 320}, + [5654] = {.lex_state = 33, .external_lex_state = 2}, + [5655] = {.lex_state = 321}, + [5656] = {.lex_state = 33, .external_lex_state = 2}, + [5657] = {.lex_state = 312}, + [5658] = {.lex_state = 711}, + [5659] = {.lex_state = 312}, + [5660] = {.lex_state = 711}, + [5661] = {.lex_state = 14}, + [5662] = {.lex_state = 312}, + [5663] = {.lex_state = 362}, + [5664] = {.lex_state = 76}, + [5665] = {.lex_state = 320}, + [5666] = {.lex_state = 308}, + [5667] = {.lex_state = 308}, + [5668] = {.lex_state = 337}, + [5669] = {.lex_state = 33, .external_lex_state = 2}, [5670] = {.lex_state = 370}, - [5671] = {.lex_state = 362}, - [5672] = {.lex_state = 369}, - [5673] = {.lex_state = 76}, - [5674] = {.lex_state = 312}, - [5675] = {.lex_state = 14}, - [5676] = {.lex_state = 308}, - [5677] = {.lex_state = 781}, - [5678] = {.lex_state = 312}, - [5679] = {.lex_state = 14}, - [5680] = {.lex_state = 363}, - [5681] = {.lex_state = 711}, - [5682] = {.lex_state = 814}, - [5683] = {.lex_state = 320}, - [5684] = {.lex_state = 33}, - [5685] = {.lex_state = 33, .external_lex_state = 2}, - [5686] = {.lex_state = 312}, - [5687] = {.lex_state = 71}, - [5688] = {.lex_state = 370}, - [5689] = {.lex_state = 76}, - [5690] = {.lex_state = 363}, - [5691] = {.lex_state = 711}, + [5671] = {.lex_state = 312}, + [5672] = {.lex_state = 33, .external_lex_state = 2}, + [5673] = {.lex_state = 363}, + [5674] = {.lex_state = 815}, + [5675] = {.lex_state = 308}, + [5676] = {.lex_state = 781}, + [5677] = {.lex_state = 320}, + [5678] = {.lex_state = 782}, + [5679] = {.lex_state = 312}, + [5680] = {.lex_state = 320}, + [5681] = {.lex_state = 312}, + [5682] = {.lex_state = 14}, + [5683] = {.lex_state = 326}, + [5684] = {.lex_state = 312}, + [5685] = {.lex_state = 326}, + [5686] = {.lex_state = 370}, + [5687] = {.lex_state = 824}, + [5688] = {.lex_state = 312}, + [5689] = {.lex_state = 824}, + [5690] = {.lex_state = 824}, + [5691] = {.lex_state = 370}, [5692] = {.lex_state = 312}, - [5693] = {.lex_state = 362}, - [5694] = {.lex_state = 717}, - [5695] = {.lex_state = 71}, - [5696] = {.lex_state = 782}, + [5693] = {.lex_state = 33}, + [5694] = {.lex_state = 312}, + [5695] = {.lex_state = 312}, + [5696] = {.lex_state = 312}, [5697] = {.lex_state = 312}, - [5698] = {.lex_state = 33}, - [5699] = {.lex_state = 824}, - [5700] = {.lex_state = 370}, - [5701] = {.lex_state = 824}, - [5702] = {.lex_state = 312}, + [5698] = {.lex_state = 370}, + [5699] = {.lex_state = 814}, + [5700] = {.lex_state = 369}, + [5701] = {.lex_state = 312}, + [5702] = {.lex_state = 814}, [5703] = {.lex_state = 312}, - [5704] = {.lex_state = 320}, - [5705] = {.lex_state = 33}, + [5704] = {.lex_state = 33, .external_lex_state = 2}, + [5705] = {.lex_state = 375}, [5706] = {.lex_state = 312}, - [5707] = {.lex_state = 33}, - [5708] = {.lex_state = 320}, - [5709] = {.lex_state = 71}, - [5710] = {.lex_state = 375}, - [5711] = {.lex_state = 326}, - [5712] = {.lex_state = 33, .external_lex_state = 2}, - [5713] = {.lex_state = 337}, - [5714] = {.lex_state = 312}, - [5715] = {.lex_state = 71}, - [5716] = {.lex_state = 312}, - [5717] = {.lex_state = 71}, - [5718] = {.lex_state = 71}, + [5707] = {.lex_state = 370}, + [5708] = {.lex_state = 369}, + [5709] = {.lex_state = 33, .external_lex_state = 2}, + [5710] = {.lex_state = 76}, + [5711] = {.lex_state = 717}, + [5712] = {.lex_state = 369}, + [5713] = {.lex_state = 312}, + [5714] = {.lex_state = 369}, + [5715] = {.lex_state = 362}, + [5716] = {.lex_state = 781}, + [5717] = {.lex_state = 717}, + [5718] = {.lex_state = 33, .external_lex_state = 2}, [5719] = {.lex_state = 33, .external_lex_state = 2}, - [5720] = {.lex_state = 33, .external_lex_state = 2}, - [5721] = {.lex_state = 362}, - [5722] = {.lex_state = 312}, - [5723] = {.lex_state = 312}, - [5724] = {.lex_state = 362}, - [5725] = {.lex_state = 326}, - [5726] = {.lex_state = 71}, - [5727] = {.lex_state = 312}, - [5728] = {.lex_state = 312}, - [5729] = {.lex_state = 312}, - [5730] = {.lex_state = 312}, - [5731] = {.lex_state = 312}, - [5732] = {.lex_state = 312}, - [5733] = {.lex_state = 312}, - [5734] = {.lex_state = 71}, - [5735] = {.lex_state = 369}, - [5736] = {.lex_state = 781}, - [5737] = {.lex_state = 744}, - [5738] = {.lex_state = 744}, - [5739] = {.lex_state = 781}, + [5720] = {.lex_state = 362}, + [5721] = {.lex_state = 717}, + [5722] = {.lex_state = 320}, + [5723] = {.lex_state = 369}, + [5724] = {.lex_state = 370}, + [5725] = {.lex_state = 312}, + [5726] = {.lex_state = 33, .external_lex_state = 2}, + [5727] = {.lex_state = 33, .external_lex_state = 2}, + [5728] = {.lex_state = 744}, + [5729] = {.lex_state = 266}, + [5730] = {.lex_state = 3248}, + [5731] = {.lex_state = 3248}, + [5732] = {.lex_state = 3248}, + [5733] = {.lex_state = 370}, + [5734] = {.lex_state = 3248}, + [5735] = {.lex_state = 3248}, + [5736] = {.lex_state = 370}, + [5737] = {.lex_state = 401}, + [5738] = {.lex_state = 401}, + [5739] = {.lex_state = 266}, [5740] = {.lex_state = 744}, - [5741] = {.lex_state = 308}, + [5741] = {.lex_state = 3248}, [5742] = {.lex_state = 744}, - [5743] = {.lex_state = 781}, - [5744] = {.lex_state = 266}, - [5745] = {.lex_state = 3248}, - [5746] = {.lex_state = 3248}, - [5747] = {.lex_state = 401}, - [5748] = {.lex_state = 266}, - [5749] = {.lex_state = 3248}, + [5743] = {.lex_state = 370}, + [5744] = {.lex_state = 321}, + [5745] = {.lex_state = 71}, + [5746] = {.lex_state = 266}, + [5747] = {.lex_state = 3248}, + [5748] = {.lex_state = 3248}, + [5749] = {.lex_state = 744}, [5750] = {.lex_state = 744}, - [5751] = {.lex_state = 3248}, + [5751] = {.lex_state = 33}, [5752] = {.lex_state = 744}, - [5753] = {.lex_state = 781}, - [5754] = {.lex_state = 744}, - [5755] = {.lex_state = 266}, - [5756] = {.lex_state = 781}, - [5757] = {.lex_state = 744}, - [5758] = {.lex_state = 781}, - [5759] = {.lex_state = 266}, - [5760] = {.lex_state = 3248}, - [5761] = {.lex_state = 3248}, - [5762] = {.lex_state = 3248}, - [5763] = {.lex_state = 266}, - [5764] = {.lex_state = 308}, - [5765] = {.lex_state = 744}, - [5766] = {.lex_state = 744}, - [5767] = {.lex_state = 371}, - [5768] = {.lex_state = 285}, - [5769] = {.lex_state = 33, .external_lex_state = 2}, - [5770] = {.lex_state = 33, .external_lex_state = 2}, - [5771] = {.lex_state = 266}, - [5772] = {.lex_state = 266}, - [5773] = {.lex_state = 374}, - [5774] = {.lex_state = 744}, - [5775] = {.lex_state = 744}, - [5776] = {.lex_state = 266}, - [5777] = {.lex_state = 266}, - [5778] = {.lex_state = 781}, - [5779] = {.lex_state = 781}, - [5780] = {.lex_state = 266}, - [5781] = {.lex_state = 781}, - [5782] = {.lex_state = 266}, - [5783] = {.lex_state = 744}, - [5784] = {.lex_state = 744}, - [5785] = {.lex_state = 3248}, - [5786] = {.lex_state = 374}, - [5787] = {.lex_state = 3248}, - [5788] = {.lex_state = 266}, - [5789] = {.lex_state = 744}, - [5790] = {.lex_state = 266}, - [5791] = {.lex_state = 744}, - [5792] = {.lex_state = 744}, - [5793] = {.lex_state = 285}, - [5794] = {.lex_state = 781}, - [5795] = {.lex_state = 14}, - [5796] = {.lex_state = 401}, + [5753] = {.lex_state = 374}, + [5754] = {.lex_state = 266}, + [5755] = {.lex_state = 321}, + [5756] = {.lex_state = 383}, + [5757] = {.lex_state = 33, .external_lex_state = 2}, + [5758] = {.lex_state = 71}, + [5759] = {.lex_state = 321}, + [5760] = {.lex_state = 14}, + [5761] = {.lex_state = 744}, + [5762] = {.lex_state = 285}, + [5763] = {.lex_state = 285}, + [5764] = {.lex_state = 337}, + [5765] = {.lex_state = 327}, + [5766] = {.lex_state = 3248}, + [5767] = {.lex_state = 364}, + [5768] = {.lex_state = 33, .external_lex_state = 2}, + [5769] = {.lex_state = 71}, + [5770] = {.lex_state = 744}, + [5771] = {.lex_state = 71}, + [5772] = {.lex_state = 321}, + [5773] = {.lex_state = 33}, + [5774] = {.lex_state = 71}, + [5775] = {.lex_state = 337}, + [5776] = {.lex_state = 3248}, + [5777] = {.lex_state = 3248}, + [5778] = {.lex_state = 71}, + [5779] = {.lex_state = 71}, + [5780] = {.lex_state = 71}, + [5781] = {.lex_state = 71}, + [5782] = {.lex_state = 374}, + [5783] = {.lex_state = 71}, + [5784] = {.lex_state = 312}, + [5785] = {.lex_state = 364}, + [5786] = {.lex_state = 331}, + [5787] = {.lex_state = 781}, + [5788] = {.lex_state = 744}, + [5789] = {.lex_state = 782}, + [5790] = {.lex_state = 321}, + [5791] = {.lex_state = 71}, + [5792] = {.lex_state = 266}, + [5793] = {.lex_state = 3248}, + [5794] = {.lex_state = 3248}, + [5795] = {.lex_state = 370}, + [5796] = {.lex_state = 266}, [5797] = {.lex_state = 744}, - [5798] = {.lex_state = 744}, - [5799] = {.lex_state = 781}, - [5800] = {.lex_state = 709}, + [5798] = {.lex_state = 71}, + [5799] = {.lex_state = 744}, + [5800] = {.lex_state = 781}, [5801] = {.lex_state = 744}, [5802] = {.lex_state = 744}, [5803] = {.lex_state = 744}, - [5804] = {.lex_state = 370}, - [5805] = {.lex_state = 266}, - [5806] = {.lex_state = 744}, - [5807] = {.lex_state = 744}, - [5808] = {.lex_state = 327}, - [5809] = {.lex_state = 14}, - [5810] = {.lex_state = 709}, - [5811] = {.lex_state = 308}, - [5812] = {.lex_state = 3248}, - [5813] = {.lex_state = 744}, + [5804] = {.lex_state = 71}, + [5805] = {.lex_state = 71}, + [5806] = {.lex_state = 71}, + [5807] = {.lex_state = 364}, + [5808] = {.lex_state = 374}, + [5809] = {.lex_state = 33, .external_lex_state = 2}, + [5810] = {.lex_state = 33, .external_lex_state = 2}, + [5811] = {.lex_state = 371}, + [5812] = {.lex_state = 71}, + [5813] = {.lex_state = 266}, [5814] = {.lex_state = 3248}, - [5815] = {.lex_state = 781}, - [5816] = {.lex_state = 781}, - [5817] = {.lex_state = 781}, - [5818] = {.lex_state = 781}, - [5819] = {.lex_state = 401}, - [5820] = {.lex_state = 266}, - [5821] = {.lex_state = 401}, - [5822] = {.lex_state = 3248}, - [5823] = {.lex_state = 744}, + [5815] = {.lex_state = 3248}, + [5816] = {.lex_state = 266}, + [5817] = {.lex_state = 744}, + [5818] = {.lex_state = 401}, + [5819] = {.lex_state = 709}, + [5820] = {.lex_state = 71}, + [5821] = {.lex_state = 744}, + [5822] = {.lex_state = 744}, + [5823] = {.lex_state = 364}, [5824] = {.lex_state = 781}, - [5825] = {.lex_state = 744}, - [5826] = {.lex_state = 308}, - [5827] = {.lex_state = 781}, - [5828] = {.lex_state = 266}, - [5829] = {.lex_state = 266}, - [5830] = {.lex_state = 295}, - [5831] = {.lex_state = 781}, - [5832] = {.lex_state = 308}, - [5833] = {.lex_state = 781}, - [5834] = {.lex_state = 781}, - [5835] = {.lex_state = 401}, - [5836] = {.lex_state = 364}, - [5837] = {.lex_state = 744}, - [5838] = {.lex_state = 285}, - [5839] = {.lex_state = 285}, - [5840] = {.lex_state = 285}, - [5841] = {.lex_state = 3248}, - [5842] = {.lex_state = 781}, - [5843] = {.lex_state = 781}, - [5844] = {.lex_state = 781}, - [5845] = {.lex_state = 285}, - [5846] = {.lex_state = 383}, - [5847] = {.lex_state = 3248}, - [5848] = {.lex_state = 781}, - [5849] = {.lex_state = 744}, + [5825] = {.lex_state = 781}, + [5826] = {.lex_state = 709}, + [5827] = {.lex_state = 266}, + [5828] = {.lex_state = 744}, + [5829] = {.lex_state = 781}, + [5830] = {.lex_state = 3248}, + [5831] = {.lex_state = 3248}, + [5832] = {.lex_state = 266}, + [5833] = {.lex_state = 744}, + [5834] = {.lex_state = 321}, + [5835] = {.lex_state = 312}, + [5836] = {.lex_state = 744}, + [5837] = {.lex_state = 14}, + [5838] = {.lex_state = 744}, + [5839] = {.lex_state = 781}, + [5840] = {.lex_state = 781}, + [5841] = {.lex_state = 71}, + [5842] = {.lex_state = 266}, + [5843] = {.lex_state = 3248}, + [5844] = {.lex_state = 3248}, + [5845] = {.lex_state = 71}, + [5846] = {.lex_state = 266}, + [5847] = {.lex_state = 744}, + [5848] = {.lex_state = 71}, + [5849] = {.lex_state = 71}, [5850] = {.lex_state = 744}, - [5851] = {.lex_state = 364}, - [5852] = {.lex_state = 3248}, - [5853] = {.lex_state = 266}, - [5854] = {.lex_state = 308}, - [5855] = {.lex_state = 370}, - [5856] = {.lex_state = 266}, - [5857] = {.lex_state = 312}, - [5858] = {.lex_state = 331}, - [5859] = {.lex_state = 364}, + [5851] = {.lex_state = 71}, + [5852] = {.lex_state = 266}, + [5853] = {.lex_state = 3248}, + [5854] = {.lex_state = 3248}, + [5855] = {.lex_state = 266}, + [5856] = {.lex_state = 744}, + [5857] = {.lex_state = 744}, + [5858] = {.lex_state = 33}, + [5859] = {.lex_state = 266}, [5860] = {.lex_state = 3248}, - [5861] = {.lex_state = 744}, - [5862] = {.lex_state = 781}, - [5863] = {.lex_state = 782}, - [5864] = {.lex_state = 3248}, - [5865] = {.lex_state = 266}, + [5861] = {.lex_state = 3248}, + [5862] = {.lex_state = 266}, + [5863] = {.lex_state = 781}, + [5864] = {.lex_state = 744}, + [5865] = {.lex_state = 744}, [5866] = {.lex_state = 781}, [5867] = {.lex_state = 744}, [5868] = {.lex_state = 781}, [5869] = {.lex_state = 744}, - [5870] = {.lex_state = 781}, - [5871] = {.lex_state = 744}, - [5872] = {.lex_state = 744}, - [5873] = {.lex_state = 744}, - [5874] = {.lex_state = 312}, - [5875] = {.lex_state = 285}, - [5876] = {.lex_state = 337}, - [5877] = {.lex_state = 781}, - [5878] = {.lex_state = 312}, - [5879] = {.lex_state = 312}, + [5870] = {.lex_state = 266}, + [5871] = {.lex_state = 3248}, + [5872] = {.lex_state = 3248}, + [5873] = {.lex_state = 312}, + [5874] = {.lex_state = 266}, + [5875] = {.lex_state = 744}, + [5876] = {.lex_state = 744}, + [5877] = {.lex_state = 744}, + [5878] = {.lex_state = 744}, + [5879] = {.lex_state = 781}, [5880] = {.lex_state = 781}, - [5881] = {.lex_state = 14}, - [5882] = {.lex_state = 744}, - [5883] = {.lex_state = 266}, - [5884] = {.lex_state = 781}, - [5885] = {.lex_state = 781}, - [5886] = {.lex_state = 781}, - [5887] = {.lex_state = 781}, - [5888] = {.lex_state = 364}, - [5889] = {.lex_state = 744}, - [5890] = {.lex_state = 3248}, - [5891] = {.lex_state = 3248}, - [5892] = {.lex_state = 3248}, + [5881] = {.lex_state = 266}, + [5882] = {.lex_state = 3248}, + [5883] = {.lex_state = 3248}, + [5884] = {.lex_state = 266}, + [5885] = {.lex_state = 314}, + [5886] = {.lex_state = 744}, + [5887] = {.lex_state = 744}, + [5888] = {.lex_state = 744}, + [5889] = {.lex_state = 781}, + [5890] = {.lex_state = 781}, + [5891] = {.lex_state = 781}, + [5892] = {.lex_state = 71}, [5893] = {.lex_state = 266}, - [5894] = {.lex_state = 364}, + [5894] = {.lex_state = 3248}, [5895] = {.lex_state = 3248}, - [5896] = {.lex_state = 744}, - [5897] = {.lex_state = 266}, - [5898] = {.lex_state = 781}, - [5899] = {.lex_state = 744}, - [5900] = {.lex_state = 3248}, - [5901] = {.lex_state = 3248}, - [5902] = {.lex_state = 3248}, - [5903] = {.lex_state = 3248}, - [5904] = {.lex_state = 744}, - [5905] = {.lex_state = 3248}, - [5906] = {.lex_state = 370}, - [5907] = {.lex_state = 781}, - [5908] = {.lex_state = 744}, - [5909] = {.lex_state = 744}, - [5910] = {.lex_state = 781}, + [5896] = {.lex_state = 266}, + [5897] = {.lex_state = 71}, + [5898] = {.lex_state = 744}, + [5899] = {.lex_state = 71}, + [5900] = {.lex_state = 71}, + [5901] = {.lex_state = 744}, + [5902] = {.lex_state = 71}, + [5903] = {.lex_state = 71}, + [5904] = {.lex_state = 71}, + [5905] = {.lex_state = 71}, + [5906] = {.lex_state = 266}, + [5907] = {.lex_state = 3248}, + [5908] = {.lex_state = 3248}, + [5909] = {.lex_state = 781}, + [5910] = {.lex_state = 266}, [5911] = {.lex_state = 781}, - [5912] = {.lex_state = 781}, - [5913] = {.lex_state = 266}, + [5912] = {.lex_state = 744}, + [5913] = {.lex_state = 744}, [5914] = {.lex_state = 781}, - [5915] = {.lex_state = 744}, - [5916] = {.lex_state = 744}, - [5917] = {.lex_state = 781}, + [5915] = {.lex_state = 266}, + [5916] = {.lex_state = 781}, + [5917] = {.lex_state = 266}, [5918] = {.lex_state = 744}, - [5919] = {.lex_state = 374}, - [5920] = {.lex_state = 308}, - [5921] = {.lex_state = 744}, - [5922] = {.lex_state = 781}, - [5923] = {.lex_state = 3248}, - [5924] = {.lex_state = 3248}, - [5925] = {.lex_state = 744}, - [5926] = {.lex_state = 781}, - [5927] = {.lex_state = 266}, - [5928] = {.lex_state = 744}, + [5919] = {.lex_state = 744}, + [5920] = {.lex_state = 266}, + [5921] = {.lex_state = 266}, + [5922] = {.lex_state = 744}, + [5923] = {.lex_state = 744}, + [5924] = {.lex_state = 266}, + [5925] = {.lex_state = 266}, + [5926] = {.lex_state = 266}, + [5927] = {.lex_state = 744}, + [5928] = {.lex_state = 781}, [5929] = {.lex_state = 781}, [5930] = {.lex_state = 744}, - [5931] = {.lex_state = 337}, - [5932] = {.lex_state = 344}, - [5933] = {.lex_state = 308}, - [5934] = {.lex_state = 744}, - [5935] = {.lex_state = 374}, - [5936] = {.lex_state = 266}, - [5937] = {.lex_state = 266}, - [5938] = {.lex_state = 3248}, - [5939] = {.lex_state = 3248}, - [5940] = {.lex_state = 312}, - [5941] = {.lex_state = 744}, - [5942] = {.lex_state = 266}, - [5943] = {.lex_state = 287}, - [5944] = {.lex_state = 294}, - [5945] = {.lex_state = 266}, - [5946] = {.lex_state = 33, .external_lex_state = 2}, - [5947] = {.lex_state = 33, .external_lex_state = 2}, - [5948] = {.lex_state = 285}, + [5931] = {.lex_state = 744}, + [5932] = {.lex_state = 781}, + [5933] = {.lex_state = 781}, + [5934] = {.lex_state = 781}, + [5935] = {.lex_state = 744}, + [5936] = {.lex_state = 744}, + [5937] = {.lex_state = 312}, + [5938] = {.lex_state = 781}, + [5939] = {.lex_state = 744}, + [5940] = {.lex_state = 744}, + [5941] = {.lex_state = 781}, + [5942] = {.lex_state = 781}, + [5943] = {.lex_state = 781}, + [5944] = {.lex_state = 71}, + [5945] = {.lex_state = 71}, + [5946] = {.lex_state = 71}, + [5947] = {.lex_state = 71}, + [5948] = {.lex_state = 781}, [5949] = {.lex_state = 781}, - [5950] = {.lex_state = 312}, - [5951] = {.lex_state = 744}, - [5952] = {.lex_state = 744}, - [5953] = {.lex_state = 370}, - [5954] = {.lex_state = 781}, - [5955] = {.lex_state = 781}, - [5956] = {.lex_state = 744}, - [5957] = {.lex_state = 308}, - [5958] = {.lex_state = 781}, - [5959] = {.lex_state = 364}, - [5960] = {.lex_state = 744}, - [5961] = {.lex_state = 744}, - [5962] = {.lex_state = 744}, - [5963] = {.lex_state = 744}, - [5964] = {.lex_state = 781}, - [5965] = {.lex_state = 781}, - [5966] = {.lex_state = 781}, - [5967] = {.lex_state = 781}, + [5950] = {.lex_state = 781}, + [5951] = {.lex_state = 781}, + [5952] = {.lex_state = 781}, + [5953] = {.lex_state = 266}, + [5954] = {.lex_state = 71}, + [5955] = {.lex_state = 321}, + [5956] = {.lex_state = 781}, + [5957] = {.lex_state = 781}, + [5958] = {.lex_state = 321}, + [5959] = {.lex_state = 781}, + [5960] = {.lex_state = 781}, + [5961] = {.lex_state = 401}, + [5962] = {.lex_state = 401}, + [5963] = {.lex_state = 285}, + [5964] = {.lex_state = 285}, + [5965] = {.lex_state = 285}, + [5966] = {.lex_state = 321}, + [5967] = {.lex_state = 71}, [5968] = {.lex_state = 781}, [5969] = {.lex_state = 781}, - [5970] = {.lex_state = 709}, - [5971] = {.lex_state = 781}, - [5972] = {.lex_state = 781}, - [5973] = {.lex_state = 781}, - [5974] = {.lex_state = 781}, - [5975] = {.lex_state = 33, .external_lex_state = 2}, - [5976] = {.lex_state = 14}, - [5977] = {.lex_state = 744}, + [5970] = {.lex_state = 744}, + [5971] = {.lex_state = 744}, + [5972] = {.lex_state = 287}, + [5973] = {.lex_state = 285}, + [5974] = {.lex_state = 295}, + [5975] = {.lex_state = 288}, + [5976] = {.lex_state = 781}, + [5977] = {.lex_state = 781}, [5978] = {.lex_state = 781}, - [5979] = {.lex_state = 266}, - [5980] = {.lex_state = 709}, - [5981] = {.lex_state = 709}, - [5982] = {.lex_state = 709}, - [5983] = {.lex_state = 14}, - [5984] = {.lex_state = 266}, - [5985] = {.lex_state = 3248}, - [5986] = {.lex_state = 314}, - [5987] = {.lex_state = 312}, + [5979] = {.lex_state = 374}, + [5980] = {.lex_state = 33}, + [5981] = {.lex_state = 744}, + [5982] = {.lex_state = 781}, + [5983] = {.lex_state = 781}, + [5984] = {.lex_state = 33, .external_lex_state = 2}, + [5985] = {.lex_state = 33}, + [5986] = {.lex_state = 312}, + [5987] = {.lex_state = 781}, [5988] = {.lex_state = 781}, - [5989] = {.lex_state = 308}, - [5990] = {.lex_state = 3248}, - [5991] = {.lex_state = 312}, - [5992] = {.lex_state = 33, .external_lex_state = 2}, - [5993] = {.lex_state = 344}, - [5994] = {.lex_state = 781}, - [5995] = {.lex_state = 14}, - [5996] = {.lex_state = 266}, - [5997] = {.lex_state = 744}, - [5998] = {.lex_state = 266}, - [5999] = {.lex_state = 288}, + [5989] = {.lex_state = 71}, + [5990] = {.lex_state = 781}, + [5991] = {.lex_state = 364}, + [5992] = {.lex_state = 312}, + [5993] = {.lex_state = 294}, + [5994] = {.lex_state = 14}, + [5995] = {.lex_state = 71}, + [5996] = {.lex_state = 285}, + [5997] = {.lex_state = 312}, + [5998] = {.lex_state = 781}, + [5999] = {.lex_state = 744}, [6000] = {.lex_state = 744}, - [6001] = {.lex_state = 33}, - [6002] = {.lex_state = 33}, - [6003] = {.lex_state = 344}, - [6004] = {.lex_state = 99}, - [6005] = {.lex_state = 744}, - [6006] = {.lex_state = 744}, - [6007] = {.lex_state = 337}, - [6008] = {.lex_state = 337}, - [6009] = {.lex_state = 710}, - [6010] = {.lex_state = 410}, - [6011] = {.lex_state = 744}, - [6012] = {.lex_state = 744}, - [6013] = {.lex_state = 711}, - [6014] = {.lex_state = 344}, - [6015] = {.lex_state = 710}, - [6016] = {.lex_state = 710}, - [6017] = {.lex_state = 710}, - [6018] = {.lex_state = 710}, - [6019] = {.lex_state = 384}, - [6020] = {.lex_state = 711}, - [6021] = {.lex_state = 711}, - [6022] = {.lex_state = 99}, - [6023] = {.lex_state = 99}, + [6001] = {.lex_state = 781}, + [6002] = {.lex_state = 744}, + [6003] = {.lex_state = 321}, + [6004] = {.lex_state = 344}, + [6005] = {.lex_state = 3248}, + [6006] = {.lex_state = 781}, + [6007] = {.lex_state = 781}, + [6008] = {.lex_state = 709}, + [6009] = {.lex_state = 781}, + [6010] = {.lex_state = 781}, + [6011] = {.lex_state = 781}, + [6012] = {.lex_state = 781}, + [6013] = {.lex_state = 344}, + [6014] = {.lex_state = 14}, + [6015] = {.lex_state = 781}, + [6016] = {.lex_state = 709}, + [6017] = {.lex_state = 709}, + [6018] = {.lex_state = 709}, + [6019] = {.lex_state = 14}, + [6020] = {.lex_state = 312}, + [6021] = {.lex_state = 285}, + [6022] = {.lex_state = 364}, + [6023] = {.lex_state = 266}, [6024] = {.lex_state = 744}, - [6025] = {.lex_state = 744}, - [6026] = {.lex_state = 410}, + [6025] = {.lex_state = 14}, + [6026] = {.lex_state = 744}, [6027] = {.lex_state = 744}, - [6028] = {.lex_state = 711}, - [6029] = {.lex_state = 711}, - [6030] = {.lex_state = 711}, - [6031] = {.lex_state = 711}, - [6032] = {.lex_state = 410}, - [6033] = {.lex_state = 308}, - [6034] = {.lex_state = 99}, - [6035] = {.lex_state = 711}, - [6036] = {.lex_state = 711}, - [6037] = {.lex_state = 711}, - [6038] = {.lex_state = 711}, - [6039] = {.lex_state = 711}, - [6040] = {.lex_state = 711}, - [6041] = {.lex_state = 711}, - [6042] = {.lex_state = 711}, - [6043] = {.lex_state = 711}, - [6044] = {.lex_state = 711}, - [6045] = {.lex_state = 711}, - [6046] = {.lex_state = 337}, - [6047] = {.lex_state = 385}, - [6048] = {.lex_state = 337}, - [6049] = {.lex_state = 33}, - [6050] = {.lex_state = 33}, - [6051] = {.lex_state = 337}, - [6052] = {.lex_state = 328}, - [6053] = {.lex_state = 744}, - [6054] = {.lex_state = 744}, - [6055] = {.lex_state = 744}, - [6056] = {.lex_state = 344}, - [6057] = {.lex_state = 337}, - [6058] = {.lex_state = 372}, - [6059] = {.lex_state = 33}, - [6060] = {.lex_state = 33}, - [6061] = {.lex_state = 33}, + [6028] = {.lex_state = 744}, + [6029] = {.lex_state = 410}, + [6030] = {.lex_state = 290}, + [6031] = {.lex_state = 410}, + [6032] = {.lex_state = 385}, + [6033] = {.lex_state = 711}, + [6034] = {.lex_state = 410}, + [6035] = {.lex_state = 33}, + [6036] = {.lex_state = 33}, + [6037] = {.lex_state = 344}, + [6038] = {.lex_state = 410}, + [6039] = {.lex_state = 410}, + [6040] = {.lex_state = 744}, + [6041] = {.lex_state = 321}, + [6042] = {.lex_state = 743}, + [6043] = {.lex_state = 384}, + [6044] = {.lex_state = 410}, + [6045] = {.lex_state = 337}, + [6046] = {.lex_state = 775}, + [6047] = {.lex_state = 33}, + [6048] = {.lex_state = 711}, + [6049] = {.lex_state = 410}, + [6050] = {.lex_state = 710}, + [6051] = {.lex_state = 334}, + [6052] = {.lex_state = 711}, + [6053] = {.lex_state = 99}, + [6054] = {.lex_state = 711}, + [6055] = {.lex_state = 312}, + [6056] = {.lex_state = 321}, + [6057] = {.lex_state = 373}, + [6058] = {.lex_state = 344}, + [6059] = {.lex_state = 76}, + [6060] = {.lex_state = 321}, + [6061] = {.lex_state = 410}, [6062] = {.lex_state = 385}, - [6063] = {.lex_state = 33}, - [6064] = {.lex_state = 33}, - [6065] = {.lex_state = 33}, - [6066] = {.lex_state = 775}, - [6067] = {.lex_state = 373}, - [6068] = {.lex_state = 373}, - [6069] = {.lex_state = 373}, - [6070] = {.lex_state = 410}, - [6071] = {.lex_state = 373}, - [6072] = {.lex_state = 76}, - [6073] = {.lex_state = 410}, + [6063] = {.lex_state = 744}, + [6064] = {.lex_state = 410}, + [6065] = {.lex_state = 410}, + [6066] = {.lex_state = 33}, + [6067] = {.lex_state = 33}, + [6068] = {.lex_state = 711}, + [6069] = {.lex_state = 744}, + [6070] = {.lex_state = 344}, + [6071] = {.lex_state = 711}, + [6072] = {.lex_state = 711}, + [6073] = {.lex_state = 334}, [6074] = {.lex_state = 744}, - [6075] = {.lex_state = 328}, - [6076] = {.lex_state = 410}, - [6077] = {.lex_state = 292}, - [6078] = {.lex_state = 33}, - [6079] = {.lex_state = 308}, + [6075] = {.lex_state = 744}, + [6076] = {.lex_state = 285}, + [6077] = {.lex_state = 710}, + [6078] = {.lex_state = 292}, + [6079] = {.lex_state = 321}, [6080] = {.lex_state = 744}, [6081] = {.lex_state = 744}, - [6082] = {.lex_state = 410}, - [6083] = {.lex_state = 308}, - [6084] = {.lex_state = 410}, - [6085] = {.lex_state = 410}, - [6086] = {.lex_state = 33}, - [6087] = {.lex_state = 33}, - [6088] = {.lex_state = 33}, - [6089] = {.lex_state = 33}, - [6090] = {.lex_state = 373}, - [6091] = {.lex_state = 410}, - [6092] = {.lex_state = 373}, - [6093] = {.lex_state = 76}, - [6094] = {.lex_state = 410}, + [6082] = {.lex_state = 76}, + [6083] = {.lex_state = 321}, + [6084] = {.lex_state = 744}, + [6085] = {.lex_state = 321}, + [6086] = {.lex_state = 711}, + [6087] = {.lex_state = 744}, + [6088] = {.lex_state = 410}, + [6089] = {.lex_state = 76}, + [6090] = {.lex_state = 33}, + [6091] = {.lex_state = 710}, + [6092] = {.lex_state = 410}, + [6093] = {.lex_state = 710}, + [6094] = {.lex_state = 710}, [6095] = {.lex_state = 33}, - [6096] = {.lex_state = 410}, - [6097] = {.lex_state = 410}, - [6098] = {.lex_state = 33}, - [6099] = {.lex_state = 744}, - [6100] = {.lex_state = 410}, - [6101] = {.lex_state = 745}, - [6102] = {.lex_state = 410}, - [6103] = {.lex_state = 410}, - [6104] = {.lex_state = 33}, - [6105] = {.lex_state = 410}, - [6106] = {.lex_state = 410}, - [6107] = {.lex_state = 410}, - [6108] = {.lex_state = 410}, - [6109] = {.lex_state = 410}, - [6110] = {.lex_state = 410}, - [6111] = {.lex_state = 744}, - [6112] = {.lex_state = 775}, - [6113] = {.lex_state = 410}, - [6114] = {.lex_state = 410}, - [6115] = {.lex_state = 76}, + [6096] = {.lex_state = 99}, + [6097] = {.lex_state = 285}, + [6098] = {.lex_state = 711}, + [6099] = {.lex_state = 711}, + [6100] = {.lex_state = 337}, + [6101] = {.lex_state = 295}, + [6102] = {.lex_state = 328}, + [6103] = {.lex_state = 321}, + [6104] = {.lex_state = 410}, + [6105] = {.lex_state = 711}, + [6106] = {.lex_state = 711}, + [6107] = {.lex_state = 711}, + [6108] = {.lex_state = 711}, + [6109] = {.lex_state = 744}, + [6110] = {.lex_state = 33}, + [6111] = {.lex_state = 33}, + [6112] = {.lex_state = 33}, + [6113] = {.lex_state = 711}, + [6114] = {.lex_state = 711}, + [6115] = {.lex_state = 33}, [6116] = {.lex_state = 711}, - [6117] = {.lex_state = 410}, - [6118] = {.lex_state = 410}, - [6119] = {.lex_state = 743}, - [6120] = {.lex_state = 410}, + [6117] = {.lex_state = 33}, + [6118] = {.lex_state = 711}, + [6119] = {.lex_state = 744}, + [6120] = {.lex_state = 711}, [6121] = {.lex_state = 410}, - [6122] = {.lex_state = 410}, - [6123] = {.lex_state = 410}, - [6124] = {.lex_state = 410}, + [6122] = {.lex_state = 744}, + [6123] = {.lex_state = 744}, + [6124] = {.lex_state = 344}, [6125] = {.lex_state = 410}, [6126] = {.lex_state = 33}, - [6127] = {.lex_state = 344}, - [6128] = {.lex_state = 33}, - [6129] = {.lex_state = 344}, - [6130] = {.lex_state = 33}, - [6131] = {.lex_state = 334}, - [6132] = {.lex_state = 290}, - [6133] = {.lex_state = 312}, - [6134] = {.lex_state = 711}, - [6135] = {.lex_state = 33}, + [6127] = {.lex_state = 285}, + [6128] = {.lex_state = 344}, + [6129] = {.lex_state = 744}, + [6130] = {.lex_state = 344}, + [6131] = {.lex_state = 744}, + [6132] = {.lex_state = 410}, + [6133] = {.lex_state = 288}, + [6134] = {.lex_state = 745}, + [6135] = {.lex_state = 285}, [6136] = {.lex_state = 33}, - [6137] = {.lex_state = 744}, - [6138] = {.lex_state = 344}, - [6139] = {.lex_state = 308}, - [6140] = {.lex_state = 744}, - [6141] = {.lex_state = 99}, - [6142] = {.lex_state = 285}, - [6143] = {.lex_state = 744}, - [6144] = {.lex_state = 76}, - [6145] = {.lex_state = 744}, - [6146] = {.lex_state = 308}, - [6147] = {.lex_state = 334}, - [6148] = {.lex_state = 285}, - [6149] = {.lex_state = 295}, - [6150] = {.lex_state = 308}, + [6137] = {.lex_state = 33}, + [6138] = {.lex_state = 781}, + [6139] = {.lex_state = 410}, + [6140] = {.lex_state = 410}, + [6141] = {.lex_state = 337}, + [6142] = {.lex_state = 410}, + [6143] = {.lex_state = 33}, + [6144] = {.lex_state = 410}, + [6145] = {.lex_state = 410}, + [6146] = {.lex_state = 33}, + [6147] = {.lex_state = 33}, + [6148] = {.lex_state = 781}, + [6149] = {.lex_state = 33}, + [6150] = {.lex_state = 33}, [6151] = {.lex_state = 33}, [6152] = {.lex_state = 33}, - [6153] = {.lex_state = 33}, + [6153] = {.lex_state = 410}, [6154] = {.lex_state = 33}, - [6155] = {.lex_state = 33}, - [6156] = {.lex_state = 285}, - [6157] = {.lex_state = 744}, - [6158] = {.lex_state = 744}, - [6159] = {.lex_state = 313}, - [6160] = {.lex_state = 710}, - [6161] = {.lex_state = 288}, - [6162] = {.lex_state = 285}, - [6163] = {.lex_state = 33}, - [6164] = {.lex_state = 33}, - [6165] = {.lex_state = 33}, - [6166] = {.lex_state = 33}, - [6167] = {.lex_state = 744}, + [6155] = {.lex_state = 744}, + [6156] = {.lex_state = 744}, + [6157] = {.lex_state = 745}, + [6158] = {.lex_state = 711}, + [6159] = {.lex_state = 744}, + [6160] = {.lex_state = 744}, + [6161] = {.lex_state = 313}, + [6162] = {.lex_state = 33}, + [6163] = {.lex_state = 328}, + [6164] = {.lex_state = 744}, + [6165] = {.lex_state = 744}, + [6166] = {.lex_state = 99}, + [6167] = {.lex_state = 410}, [6168] = {.lex_state = 744}, [6169] = {.lex_state = 744}, - [6170] = {.lex_state = 744}, + [6170] = {.lex_state = 373}, [6171] = {.lex_state = 744}, [6172] = {.lex_state = 744}, - [6173] = {.lex_state = 744}, + [6173] = {.lex_state = 99}, [6174] = {.lex_state = 744}, [6175] = {.lex_state = 744}, - [6176] = {.lex_state = 744}, + [6176] = {.lex_state = 76}, [6177] = {.lex_state = 744}, [6178] = {.lex_state = 744}, - [6179] = {.lex_state = 745}, - [6180] = {.lex_state = 745}, - [6181] = {.lex_state = 744}, - [6182] = {.lex_state = 744}, + [6179] = {.lex_state = 744}, + [6180] = {.lex_state = 744}, + [6181] = {.lex_state = 410}, + [6182] = {.lex_state = 33}, [6183] = {.lex_state = 744}, [6184] = {.lex_state = 744}, [6185] = {.lex_state = 744}, [6186] = {.lex_state = 744}, - [6187] = {.lex_state = 344}, + [6187] = {.lex_state = 744}, [6188] = {.lex_state = 744}, - [6189] = {.lex_state = 744}, + [6189] = {.lex_state = 99}, [6190] = {.lex_state = 744}, [6191] = {.lex_state = 744}, [6192] = {.lex_state = 744}, @@ -60599,819 +60753,819 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6199] = {.lex_state = 744}, [6200] = {.lex_state = 744}, [6201] = {.lex_state = 744}, - [6202] = {.lex_state = 330}, + [6202] = {.lex_state = 775}, [6203] = {.lex_state = 33}, [6204] = {.lex_state = 33}, [6205] = {.lex_state = 33}, - [6206] = {.lex_state = 33}, + [6206] = {.lex_state = 781}, [6207] = {.lex_state = 344}, - [6208] = {.lex_state = 344}, - [6209] = {.lex_state = 744}, - [6210] = {.lex_state = 308}, + [6208] = {.lex_state = 33}, + [6209] = {.lex_state = 33}, + [6210] = {.lex_state = 781}, [6211] = {.lex_state = 410}, - [6212] = {.lex_state = 146}, - [6213] = {.lex_state = 264}, - [6214] = {.lex_state = 744}, - [6215] = {.lex_state = 744}, - [6216] = {.lex_state = 392}, - [6217] = {.lex_state = 146}, - [6218] = {.lex_state = 744}, - [6219] = {.lex_state = 744}, - [6220] = {.lex_state = 744}, - [6221] = {.lex_state = 744}, - [6222] = {.lex_state = 146}, - [6223] = {.lex_state = 146}, - [6224] = {.lex_state = 146}, - [6225] = {.lex_state = 146}, - [6226] = {.lex_state = 146}, - [6227] = {.lex_state = 146}, - [6228] = {.lex_state = 146}, - [6229] = {.lex_state = 146}, - [6230] = {.lex_state = 335}, - [6231] = {.lex_state = 744}, - [6232] = {.lex_state = 744}, - [6233] = {.lex_state = 329}, - [6234] = {.lex_state = 312}, - [6235] = {.lex_state = 744}, - [6236] = {.lex_state = 744}, - [6237] = {.lex_state = 329}, - [6238] = {.lex_state = 146}, - [6239] = {.lex_state = 329}, + [6212] = {.lex_state = 744}, + [6213] = {.lex_state = 410}, + [6214] = {.lex_state = 410}, + [6215] = {.lex_state = 337}, + [6216] = {.lex_state = 410}, + [6217] = {.lex_state = 33}, + [6218] = {.lex_state = 410}, + [6219] = {.lex_state = 344}, + [6220] = {.lex_state = 337}, + [6221] = {.lex_state = 710}, + [6222] = {.lex_state = 410}, + [6223] = {.lex_state = 373}, + [6224] = {.lex_state = 744}, + [6225] = {.lex_state = 410}, + [6226] = {.lex_state = 372}, + [6227] = {.lex_state = 744}, + [6228] = {.lex_state = 373}, + [6229] = {.lex_state = 373}, + [6230] = {.lex_state = 330}, + [6231] = {.lex_state = 373}, + [6232] = {.lex_state = 33}, + [6233] = {.lex_state = 410}, + [6234] = {.lex_state = 744}, + [6235] = {.lex_state = 33}, + [6236] = {.lex_state = 337}, + [6237] = {.lex_state = 744}, + [6238] = {.lex_state = 410}, + [6239] = {.lex_state = 33}, [6240] = {.lex_state = 744}, - [6241] = {.lex_state = 332}, - [6242] = {.lex_state = 744}, - [6243] = {.lex_state = 264}, - [6244] = {.lex_state = 335}, - [6245] = {.lex_state = 392}, + [6241] = {.lex_state = 745}, + [6242] = {.lex_state = 344}, + [6243] = {.lex_state = 33}, + [6244] = {.lex_state = 392}, + [6245] = {.lex_state = 744}, [6246] = {.lex_state = 744}, - [6247] = {.lex_state = 264}, + [6247] = {.lex_state = 146}, [6248] = {.lex_state = 744}, - [6249] = {.lex_state = 146}, + [6249] = {.lex_state = 312}, [6250] = {.lex_state = 744}, - [6251] = {.lex_state = 146}, - [6252] = {.lex_state = 264}, - [6253] = {.lex_state = 264}, + [6251] = {.lex_state = 744}, + [6252] = {.lex_state = 744}, + [6253] = {.lex_state = 744}, [6254] = {.lex_state = 744}, - [6255] = {.lex_state = 329}, - [6256] = {.lex_state = 146}, - [6257] = {.lex_state = 146}, - [6258] = {.lex_state = 146}, - [6259] = {.lex_state = 146}, - [6260] = {.lex_state = 146}, + [6255] = {.lex_state = 146}, + [6256] = {.lex_state = 744}, + [6257] = {.lex_state = 744}, + [6258] = {.lex_state = 405}, + [6259] = {.lex_state = 399}, + [6260] = {.lex_state = 744}, [6261] = {.lex_state = 146}, - [6262] = {.lex_state = 146}, - [6263] = {.lex_state = 146}, + [6262] = {.lex_state = 744}, + [6263] = {.lex_state = 744}, [6264] = {.lex_state = 744}, [6265] = {.lex_state = 744}, - [6266] = {.lex_state = 392}, - [6267] = {.lex_state = 264}, - [6268] = {.lex_state = 744}, - [6269] = {.lex_state = 386}, - [6270] = {.lex_state = 744}, - [6271] = {.lex_state = 744}, + [6266] = {.lex_state = 744}, + [6267] = {.lex_state = 744}, + [6268] = {.lex_state = 146}, + [6269] = {.lex_state = 744}, + [6270] = {.lex_state = 264}, + [6271] = {.lex_state = 305}, [6272] = {.lex_state = 744}, - [6273] = {.lex_state = 744}, - [6274] = {.lex_state = 264}, - [6275] = {.lex_state = 744}, + [6273] = {.lex_state = 405}, + [6274] = {.lex_state = 33}, + [6275] = {.lex_state = 405}, [6276] = {.lex_state = 744}, - [6277] = {.lex_state = 392}, - [6278] = {.lex_state = 744}, - [6279] = {.lex_state = 146}, - [6280] = {.lex_state = 146}, - [6281] = {.lex_state = 146}, - [6282] = {.lex_state = 146}, - [6283] = {.lex_state = 146}, - [6284] = {.lex_state = 146}, - [6285] = {.lex_state = 146}, - [6286] = {.lex_state = 146}, - [6287] = {.lex_state = 386}, - [6288] = {.lex_state = 386}, - [6289] = {.lex_state = 344}, - [6290] = {.lex_state = 392}, - [6291] = {.lex_state = 264}, - [6292] = {.lex_state = 399}, - [6293] = {.lex_state = 399}, - [6294] = {.lex_state = 264}, - [6295] = {.lex_state = 744}, - [6296] = {.lex_state = 264}, + [6277] = {.lex_state = 744}, + [6278] = {.lex_state = 312}, + [6279] = {.lex_state = 744}, + [6280] = {.lex_state = 744}, + [6281] = {.lex_state = 392}, + [6282] = {.lex_state = 744}, + [6283] = {.lex_state = 744}, + [6284] = {.lex_state = 264}, + [6285] = {.lex_state = 744}, + [6286] = {.lex_state = 288}, + [6287] = {.lex_state = 744}, + [6288] = {.lex_state = 744}, + [6289] = {.lex_state = 744}, + [6290] = {.lex_state = 744}, + [6291] = {.lex_state = 744}, + [6292] = {.lex_state = 744}, + [6293] = {.lex_state = 387}, + [6294] = {.lex_state = 744}, + [6295] = {.lex_state = 264}, + [6296] = {.lex_state = 399}, [6297] = {.lex_state = 744}, - [6298] = {.lex_state = 710}, + [6298] = {.lex_state = 744}, [6299] = {.lex_state = 744}, [6300] = {.lex_state = 744}, - [6301] = {.lex_state = 146}, - [6302] = {.lex_state = 146}, - [6303] = {.lex_state = 146}, - [6304] = {.lex_state = 146}, - [6305] = {.lex_state = 146}, - [6306] = {.lex_state = 146}, - [6307] = {.lex_state = 146}, - [6308] = {.lex_state = 146}, - [6309] = {.lex_state = 146}, - [6310] = {.lex_state = 392}, - [6311] = {.lex_state = 264}, - [6312] = {.lex_state = 344}, - [6313] = {.lex_state = 146}, - [6314] = {.lex_state = 305}, - [6315] = {.lex_state = 264}, - [6316] = {.lex_state = 399}, - [6317] = {.lex_state = 312}, - [6318] = {.lex_state = 312}, - [6319] = {.lex_state = 146}, - [6320] = {.lex_state = 146}, - [6321] = {.lex_state = 146}, - [6322] = {.lex_state = 146}, - [6323] = {.lex_state = 146}, - [6324] = {.lex_state = 146}, - [6325] = {.lex_state = 146}, - [6326] = {.lex_state = 146}, + [6301] = {.lex_state = 266}, + [6302] = {.lex_state = 386}, + [6303] = {.lex_state = 76}, + [6304] = {.lex_state = 123}, + [6305] = {.lex_state = 386}, + [6306] = {.lex_state = 392}, + [6307] = {.lex_state = 386}, + [6308] = {.lex_state = 386}, + [6309] = {.lex_state = 387}, + [6310] = {.lex_state = 710}, + [6311] = {.lex_state = 266}, + [6312] = {.lex_state = 123}, + [6313] = {.lex_state = 386}, + [6314] = {.lex_state = 744}, + [6315] = {.lex_state = 344}, + [6316] = {.lex_state = 386}, + [6317] = {.lex_state = 264}, + [6318] = {.lex_state = 76}, + [6319] = {.lex_state = 337}, + [6320] = {.lex_state = 266}, + [6321] = {.lex_state = 123}, + [6322] = {.lex_state = 123}, + [6323] = {.lex_state = 123}, + [6324] = {.lex_state = 744}, + [6325] = {.lex_state = 744}, + [6326] = {.lex_state = 744}, [6327] = {.lex_state = 744}, - [6328] = {.lex_state = 392}, - [6329] = {.lex_state = 264}, + [6328] = {.lex_state = 744}, + [6329] = {.lex_state = 744}, [6330] = {.lex_state = 744}, - [6331] = {.lex_state = 744}, - [6332] = {.lex_state = 33}, - [6333] = {.lex_state = 337}, - [6334] = {.lex_state = 264}, - [6335] = {.lex_state = 337}, - [6336] = {.lex_state = 744}, + [6331] = {.lex_state = 408}, + [6332] = {.lex_state = 744}, + [6333] = {.lex_state = 744}, + [6334] = {.lex_state = 744}, + [6335] = {.lex_state = 744}, + [6336] = {.lex_state = 329}, [6337] = {.lex_state = 744}, - [6338] = {.lex_state = 146}, - [6339] = {.lex_state = 146}, - [6340] = {.lex_state = 146}, - [6341] = {.lex_state = 146}, - [6342] = {.lex_state = 146}, - [6343] = {.lex_state = 146}, - [6344] = {.lex_state = 146}, - [6345] = {.lex_state = 146}, - [6346] = {.lex_state = 264}, - [6347] = {.lex_state = 146}, - [6348] = {.lex_state = 392}, - [6349] = {.lex_state = 264}, - [6350] = {.lex_state = 744}, - [6351] = {.lex_state = 264}, - [6352] = {.lex_state = 146}, - [6353] = {.lex_state = 264}, - [6354] = {.lex_state = 146}, - [6355] = {.lex_state = 146}, - [6356] = {.lex_state = 146}, - [6357] = {.lex_state = 146}, - [6358] = {.lex_state = 146}, - [6359] = {.lex_state = 146}, - [6360] = {.lex_state = 146}, - [6361] = {.lex_state = 146}, - [6362] = {.lex_state = 392}, - [6363] = {.lex_state = 264}, - [6364] = {.lex_state = 404}, + [6338] = {.lex_state = 744}, + [6339] = {.lex_state = 744}, + [6340] = {.lex_state = 744}, + [6341] = {.lex_state = 408}, + [6342] = {.lex_state = 123}, + [6343] = {.lex_state = 123}, + [6344] = {.lex_state = 123}, + [6345] = {.lex_state = 744}, + [6346] = {.lex_state = 386}, + [6347] = {.lex_state = 123}, + [6348] = {.lex_state = 744}, + [6349] = {.lex_state = 744}, + [6350] = {.lex_state = 335}, + [6351] = {.lex_state = 744}, + [6352] = {.lex_state = 744}, + [6353] = {.lex_state = 335}, + [6354] = {.lex_state = 337}, + [6355] = {.lex_state = 337}, + [6356] = {.lex_state = 335}, + [6357] = {.lex_state = 264}, + [6358] = {.lex_state = 335}, + [6359] = {.lex_state = 329}, + [6360] = {.lex_state = 744}, + [6361] = {.lex_state = 744}, + [6362] = {.lex_state = 744}, + [6363] = {.lex_state = 744}, + [6364] = {.lex_state = 342}, [6365] = {.lex_state = 744}, - [6366] = {.lex_state = 146}, - [6367] = {.lex_state = 264}, + [6366] = {.lex_state = 744}, + [6367] = {.lex_state = 744}, [6368] = {.lex_state = 744}, - [6369] = {.lex_state = 744}, - [6370] = {.lex_state = 146}, - [6371] = {.lex_state = 146}, - [6372] = {.lex_state = 146}, - [6373] = {.lex_state = 146}, - [6374] = {.lex_state = 146}, - [6375] = {.lex_state = 146}, - [6376] = {.lex_state = 146}, - [6377] = {.lex_state = 146}, + [6369] = {.lex_state = 392}, + [6370] = {.lex_state = 744}, + [6371] = {.lex_state = 744}, + [6372] = {.lex_state = 264}, + [6373] = {.lex_state = 744}, + [6374] = {.lex_state = 744}, + [6375] = {.lex_state = 744}, + [6376] = {.lex_state = 264}, + [6377] = {.lex_state = 335}, [6378] = {.lex_state = 744}, - [6379] = {.lex_state = 392}, - [6380] = {.lex_state = 405}, - [6381] = {.lex_state = 264}, - [6382] = {.lex_state = 81}, - [6383] = {.lex_state = 264}, - [6384] = {.lex_state = 264}, - [6385] = {.lex_state = 329}, - [6386] = {.lex_state = 744}, - [6387] = {.lex_state = 146}, - [6388] = {.lex_state = 146}, - [6389] = {.lex_state = 146}, - [6390] = {.lex_state = 146}, - [6391] = {.lex_state = 146}, - [6392] = {.lex_state = 146}, - [6393] = {.lex_state = 146}, + [6379] = {.lex_state = 123}, + [6380] = {.lex_state = 123}, + [6381] = {.lex_state = 123}, + [6382] = {.lex_state = 123}, + [6383] = {.lex_state = 123}, + [6384] = {.lex_state = 123}, + [6385] = {.lex_state = 123}, + [6386] = {.lex_state = 123}, + [6387] = {.lex_state = 744}, + [6388] = {.lex_state = 744}, + [6389] = {.lex_state = 744}, + [6390] = {.lex_state = 744}, + [6391] = {.lex_state = 744}, + [6392] = {.lex_state = 744}, + [6393] = {.lex_state = 744}, [6394] = {.lex_state = 146}, - [6395] = {.lex_state = 744}, - [6396] = {.lex_state = 392}, - [6397] = {.lex_state = 264}, - [6398] = {.lex_state = 404}, - [6399] = {.lex_state = 266}, - [6400] = {.lex_state = 264}, - [6401] = {.lex_state = 82}, - [6402] = {.lex_state = 404}, - [6403] = {.lex_state = 146}, - [6404] = {.lex_state = 146}, - [6405] = {.lex_state = 146}, - [6406] = {.lex_state = 146}, - [6407] = {.lex_state = 146}, - [6408] = {.lex_state = 146}, - [6409] = {.lex_state = 146}, - [6410] = {.lex_state = 146}, - [6411] = {.lex_state = 392}, - [6412] = {.lex_state = 264}, - [6413] = {.lex_state = 408}, - [6414] = {.lex_state = 744}, - [6415] = {.lex_state = 264}, - [6416] = {.lex_state = 266}, - [6417] = {.lex_state = 146}, - [6418] = {.lex_state = 146}, - [6419] = {.lex_state = 146}, - [6420] = {.lex_state = 146}, - [6421] = {.lex_state = 146}, - [6422] = {.lex_state = 146}, + [6395] = {.lex_state = 123}, + [6396] = {.lex_state = 386}, + [6397] = {.lex_state = 744}, + [6398] = {.lex_state = 744}, + [6399] = {.lex_state = 744}, + [6400] = {.lex_state = 744}, + [6401] = {.lex_state = 392}, + [6402] = {.lex_state = 264}, + [6403] = {.lex_state = 744}, + [6404] = {.lex_state = 744}, + [6405] = {.lex_state = 744}, + [6406] = {.lex_state = 264}, + [6407] = {.lex_state = 744}, + [6408] = {.lex_state = 329}, + [6409] = {.lex_state = 123}, + [6410] = {.lex_state = 123}, + [6411] = {.lex_state = 123}, + [6412] = {.lex_state = 123}, + [6413] = {.lex_state = 123}, + [6414] = {.lex_state = 123}, + [6415] = {.lex_state = 123}, + [6416] = {.lex_state = 123}, + [6417] = {.lex_state = 399}, + [6418] = {.lex_state = 81}, + [6419] = {.lex_state = 392}, + [6420] = {.lex_state = 264}, + [6421] = {.lex_state = 332}, + [6422] = {.lex_state = 264}, [6423] = {.lex_state = 744}, - [6424] = {.lex_state = 146}, + [6424] = {.lex_state = 744}, [6425] = {.lex_state = 744}, - [6426] = {.lex_state = 392}, - [6427] = {.lex_state = 264}, - [6428] = {.lex_state = 408}, - [6429] = {.lex_state = 264}, - [6430] = {.lex_state = 146}, - [6431] = {.lex_state = 146}, - [6432] = {.lex_state = 146}, - [6433] = {.lex_state = 146}, - [6434] = {.lex_state = 146}, - [6435] = {.lex_state = 146}, - [6436] = {.lex_state = 146}, - [6437] = {.lex_state = 146}, - [6438] = {.lex_state = 146}, - [6439] = {.lex_state = 392}, - [6440] = {.lex_state = 264}, - [6441] = {.lex_state = 386}, - [6442] = {.lex_state = 264}, + [6426] = {.lex_state = 386}, + [6427] = {.lex_state = 123}, + [6428] = {.lex_state = 123}, + [6429] = {.lex_state = 123}, + [6430] = {.lex_state = 123}, + [6431] = {.lex_state = 123}, + [6432] = {.lex_state = 123}, + [6433] = {.lex_state = 123}, + [6434] = {.lex_state = 123}, + [6435] = {.lex_state = 744}, + [6436] = {.lex_state = 404}, + [6437] = {.lex_state = 392}, + [6438] = {.lex_state = 82}, + [6439] = {.lex_state = 264}, + [6440] = {.lex_state = 744}, + [6441] = {.lex_state = 264}, + [6442] = {.lex_state = 744}, [6443] = {.lex_state = 744}, - [6444] = {.lex_state = 146}, - [6445] = {.lex_state = 146}, - [6446] = {.lex_state = 146}, - [6447] = {.lex_state = 146}, - [6448] = {.lex_state = 146}, - [6449] = {.lex_state = 146}, - [6450] = {.lex_state = 146}, - [6451] = {.lex_state = 146}, - [6452] = {.lex_state = 404}, + [6444] = {.lex_state = 744}, + [6445] = {.lex_state = 123}, + [6446] = {.lex_state = 123}, + [6447] = {.lex_state = 123}, + [6448] = {.lex_state = 123}, + [6449] = {.lex_state = 123}, + [6450] = {.lex_state = 123}, + [6451] = {.lex_state = 123}, + [6452] = {.lex_state = 123}, [6453] = {.lex_state = 744}, [6454] = {.lex_state = 392}, - [6455] = {.lex_state = 264}, + [6455] = {.lex_state = 744}, [6456] = {.lex_state = 264}, [6457] = {.lex_state = 744}, - [6458] = {.lex_state = 146}, - [6459] = {.lex_state = 146}, - [6460] = {.lex_state = 146}, - [6461] = {.lex_state = 146}, - [6462] = {.lex_state = 146}, - [6463] = {.lex_state = 146}, - [6464] = {.lex_state = 146}, - [6465] = {.lex_state = 146}, - [6466] = {.lex_state = 744}, - [6467] = {.lex_state = 392}, - [6468] = {.lex_state = 264}, - [6469] = {.lex_state = 744}, - [6470] = {.lex_state = 264}, - [6471] = {.lex_state = 744}, - [6472] = {.lex_state = 146}, - [6473] = {.lex_state = 146}, - [6474] = {.lex_state = 146}, - [6475] = {.lex_state = 146}, - [6476] = {.lex_state = 146}, - [6477] = {.lex_state = 146}, - [6478] = {.lex_state = 146}, - [6479] = {.lex_state = 146}, - [6480] = {.lex_state = 744}, - [6481] = {.lex_state = 392}, - [6482] = {.lex_state = 264}, - [6483] = {.lex_state = 264}, - [6484] = {.lex_state = 146}, - [6485] = {.lex_state = 146}, - [6486] = {.lex_state = 146}, - [6487] = {.lex_state = 146}, - [6488] = {.lex_state = 146}, - [6489] = {.lex_state = 146}, - [6490] = {.lex_state = 146}, - [6491] = {.lex_state = 146}, - [6492] = {.lex_state = 392}, + [6458] = {.lex_state = 744}, + [6459] = {.lex_state = 744}, + [6460] = {.lex_state = 744}, + [6461] = {.lex_state = 264}, + [6462] = {.lex_state = 744}, + [6463] = {.lex_state = 744}, + [6464] = {.lex_state = 744}, + [6465] = {.lex_state = 744}, + [6466] = {.lex_state = 399}, + [6467] = {.lex_state = 123}, + [6468] = {.lex_state = 123}, + [6469] = {.lex_state = 123}, + [6470] = {.lex_state = 123}, + [6471] = {.lex_state = 123}, + [6472] = {.lex_state = 123}, + [6473] = {.lex_state = 123}, + [6474] = {.lex_state = 123}, + [6475] = {.lex_state = 399}, + [6476] = {.lex_state = 392}, + [6477] = {.lex_state = 744}, + [6478] = {.lex_state = 264}, + [6479] = {.lex_state = 744}, + [6480] = {.lex_state = 264}, + [6481] = {.lex_state = 335}, + [6482] = {.lex_state = 335}, + [6483] = {.lex_state = 123}, + [6484] = {.lex_state = 123}, + [6485] = {.lex_state = 123}, + [6486] = {.lex_state = 123}, + [6487] = {.lex_state = 123}, + [6488] = {.lex_state = 123}, + [6489] = {.lex_state = 123}, + [6490] = {.lex_state = 123}, + [6491] = {.lex_state = 392}, + [6492] = {.lex_state = 264}, [6493] = {.lex_state = 264}, - [6494] = {.lex_state = 264}, - [6495] = {.lex_state = 744}, - [6496] = {.lex_state = 392}, - [6497] = {.lex_state = 264}, - [6498] = {.lex_state = 264}, - [6499] = {.lex_state = 392}, - [6500] = {.lex_state = 264}, - [6501] = {.lex_state = 264}, - [6502] = {.lex_state = 392}, - [6503] = {.lex_state = 264}, - [6504] = {.lex_state = 264}, - [6505] = {.lex_state = 46}, + [6494] = {.lex_state = 744}, + [6495] = {.lex_state = 329}, + [6496] = {.lex_state = 744}, + [6497] = {.lex_state = 146}, + [6498] = {.lex_state = 123}, + [6499] = {.lex_state = 123}, + [6500] = {.lex_state = 123}, + [6501] = {.lex_state = 123}, + [6502] = {.lex_state = 123}, + [6503] = {.lex_state = 123}, + [6504] = {.lex_state = 123}, + [6505] = {.lex_state = 123}, [6506] = {.lex_state = 392}, - [6507] = {.lex_state = 264}, + [6507] = {.lex_state = 744}, [6508] = {.lex_state = 264}, - [6509] = {.lex_state = 392}, - [6510] = {.lex_state = 264}, - [6511] = {.lex_state = 264}, - [6512] = {.lex_state = 329}, - [6513] = {.lex_state = 264}, - [6514] = {.lex_state = 264}, - [6515] = {.lex_state = 744}, - [6516] = {.lex_state = 392}, - [6517] = {.lex_state = 264}, - [6518] = {.lex_state = 264}, - [6519] = {.lex_state = 744}, - [6520] = {.lex_state = 392}, - [6521] = {.lex_state = 264}, - [6522] = {.lex_state = 264}, - [6523] = {.lex_state = 392}, - [6524] = {.lex_state = 264}, - [6525] = {.lex_state = 264}, + [6509] = {.lex_state = 264}, + [6510] = {.lex_state = 744}, + [6511] = {.lex_state = 744}, + [6512] = {.lex_state = 744}, + [6513] = {.lex_state = 335}, + [6514] = {.lex_state = 123}, + [6515] = {.lex_state = 123}, + [6516] = {.lex_state = 123}, + [6517] = {.lex_state = 123}, + [6518] = {.lex_state = 123}, + [6519] = {.lex_state = 123}, + [6520] = {.lex_state = 123}, + [6521] = {.lex_state = 123}, + [6522] = {.lex_state = 744}, + [6523] = {.lex_state = 744}, + [6524] = {.lex_state = 744}, + [6525] = {.lex_state = 744}, [6526] = {.lex_state = 392}, [6527] = {.lex_state = 264}, [6528] = {.lex_state = 264}, - [6529] = {.lex_state = 392}, - [6530] = {.lex_state = 264}, - [6531] = {.lex_state = 264}, - [6532] = {.lex_state = 337}, - [6533] = {.lex_state = 392}, - [6534] = {.lex_state = 264}, - [6535] = {.lex_state = 264}, - [6536] = {.lex_state = 392}, - [6537] = {.lex_state = 264}, - [6538] = {.lex_state = 264}, - [6539] = {.lex_state = 392}, - [6540] = {.lex_state = 264}, + [6529] = {.lex_state = 123}, + [6530] = {.lex_state = 123}, + [6531] = {.lex_state = 123}, + [6532] = {.lex_state = 123}, + [6533] = {.lex_state = 123}, + [6534] = {.lex_state = 123}, + [6535] = {.lex_state = 123}, + [6536] = {.lex_state = 123}, + [6537] = {.lex_state = 392}, + [6538] = {.lex_state = 744}, + [6539] = {.lex_state = 264}, + [6540] = {.lex_state = 405}, [6541] = {.lex_state = 264}, - [6542] = {.lex_state = 392}, - [6543] = {.lex_state = 264}, - [6544] = {.lex_state = 264}, - [6545] = {.lex_state = 392}, - [6546] = {.lex_state = 264}, - [6547] = {.lex_state = 264}, - [6548] = {.lex_state = 392}, - [6549] = {.lex_state = 264}, - [6550] = {.lex_state = 264}, - [6551] = {.lex_state = 335}, - [6552] = {.lex_state = 392}, - [6553] = {.lex_state = 264}, - [6554] = {.lex_state = 264}, - [6555] = {.lex_state = 392}, - [6556] = {.lex_state = 264}, - [6557] = {.lex_state = 264}, + [6542] = {.lex_state = 329}, + [6543] = {.lex_state = 744}, + [6544] = {.lex_state = 744}, + [6545] = {.lex_state = 329}, + [6546] = {.lex_state = 744}, + [6547] = {.lex_state = 123}, + [6548] = {.lex_state = 123}, + [6549] = {.lex_state = 123}, + [6550] = {.lex_state = 123}, + [6551] = {.lex_state = 123}, + [6552] = {.lex_state = 123}, + [6553] = {.lex_state = 123}, + [6554] = {.lex_state = 123}, + [6555] = {.lex_state = 744}, + [6556] = {.lex_state = 744}, + [6557] = {.lex_state = 392}, [6558] = {.lex_state = 744}, - [6559] = {.lex_state = 392}, + [6559] = {.lex_state = 264}, [6560] = {.lex_state = 264}, - [6561] = {.lex_state = 264}, - [6562] = {.lex_state = 392}, - [6563] = {.lex_state = 264}, - [6564] = {.lex_state = 264}, - [6565] = {.lex_state = 744}, - [6566] = {.lex_state = 392}, - [6567] = {.lex_state = 264}, - [6568] = {.lex_state = 264}, - [6569] = {.lex_state = 392}, - [6570] = {.lex_state = 264}, - [6571] = {.lex_state = 264}, - [6572] = {.lex_state = 392}, - [6573] = {.lex_state = 264}, - [6574] = {.lex_state = 264}, - [6575] = {.lex_state = 392}, + [6561] = {.lex_state = 744}, + [6562] = {.lex_state = 123}, + [6563] = {.lex_state = 744}, + [6564] = {.lex_state = 392}, + [6565] = {.lex_state = 123}, + [6566] = {.lex_state = 123}, + [6567] = {.lex_state = 123}, + [6568] = {.lex_state = 123}, + [6569] = {.lex_state = 123}, + [6570] = {.lex_state = 123}, + [6571] = {.lex_state = 123}, + [6572] = {.lex_state = 744}, + [6573] = {.lex_state = 744}, + [6574] = {.lex_state = 392}, + [6575] = {.lex_state = 744}, [6576] = {.lex_state = 264}, [6577] = {.lex_state = 264}, - [6578] = {.lex_state = 392}, - [6579] = {.lex_state = 264}, - [6580] = {.lex_state = 264}, - [6581] = {.lex_state = 392}, - [6582] = {.lex_state = 264}, - [6583] = {.lex_state = 264}, - [6584] = {.lex_state = 264}, - [6585] = {.lex_state = 264}, - [6586] = {.lex_state = 264}, - [6587] = {.lex_state = 264}, - [6588] = {.lex_state = 264}, - [6589] = {.lex_state = 264}, + [6578] = {.lex_state = 335}, + [6579] = {.lex_state = 123}, + [6580] = {.lex_state = 123}, + [6581] = {.lex_state = 123}, + [6582] = {.lex_state = 123}, + [6583] = {.lex_state = 123}, + [6584] = {.lex_state = 123}, + [6585] = {.lex_state = 123}, + [6586] = {.lex_state = 123}, + [6587] = {.lex_state = 123}, + [6588] = {.lex_state = 744}, + [6589] = {.lex_state = 744}, [6590] = {.lex_state = 392}, - [6591] = {.lex_state = 744}, - [6592] = {.lex_state = 744}, - [6593] = {.lex_state = 744}, - [6594] = {.lex_state = 147}, + [6591] = {.lex_state = 404}, + [6592] = {.lex_state = 264}, + [6593] = {.lex_state = 264}, + [6594] = {.lex_state = 123}, [6595] = {.lex_state = 744}, - [6596] = {.lex_state = 710}, - [6597] = {.lex_state = 146}, - [6598] = {.lex_state = 329}, - [6599] = {.lex_state = 744}, - [6600] = {.lex_state = 744}, - [6601] = {.lex_state = 146}, - [6602] = {.lex_state = 399}, - [6603] = {.lex_state = 744}, + [6596] = {.lex_state = 123}, + [6597] = {.lex_state = 123}, + [6598] = {.lex_state = 123}, + [6599] = {.lex_state = 123}, + [6600] = {.lex_state = 123}, + [6601] = {.lex_state = 123}, + [6602] = {.lex_state = 123}, + [6603] = {.lex_state = 123}, [6604] = {.lex_state = 744}, - [6605] = {.lex_state = 744}, - [6606] = {.lex_state = 744}, + [6605] = {.lex_state = 392}, + [6606] = {.lex_state = 264}, [6607] = {.lex_state = 744}, - [6608] = {.lex_state = 744}, + [6608] = {.lex_state = 264}, [6609] = {.lex_state = 744}, - [6610] = {.lex_state = 744}, - [6611] = {.lex_state = 744}, - [6612] = {.lex_state = 146}, - [6613] = {.lex_state = 744}, - [6614] = {.lex_state = 146}, - [6615] = {.lex_state = 744}, - [6616] = {.lex_state = 744}, - [6617] = {.lex_state = 744}, - [6618] = {.lex_state = 744}, - [6619] = {.lex_state = 744}, - [6620] = {.lex_state = 744}, - [6621] = {.lex_state = 335}, - [6622] = {.lex_state = 146}, - [6623] = {.lex_state = 744}, - [6624] = {.lex_state = 146}, - [6625] = {.lex_state = 744}, - [6626] = {.lex_state = 405}, - [6627] = {.lex_state = 405}, - [6628] = {.lex_state = 744}, - [6629] = {.lex_state = 146}, - [6630] = {.lex_state = 744}, - [6631] = {.lex_state = 335}, - [6632] = {.lex_state = 744}, - [6633] = {.lex_state = 744}, - [6634] = {.lex_state = 146}, - [6635] = {.lex_state = 386}, - [6636] = {.lex_state = 744}, - [6637] = {.lex_state = 744}, - [6638] = {.lex_state = 387}, - [6639] = {.lex_state = 744}, - [6640] = {.lex_state = 744}, - [6641] = {.lex_state = 335}, - [6642] = {.lex_state = 744}, + [6610] = {.lex_state = 123}, + [6611] = {.lex_state = 123}, + [6612] = {.lex_state = 123}, + [6613] = {.lex_state = 123}, + [6614] = {.lex_state = 123}, + [6615] = {.lex_state = 123}, + [6616] = {.lex_state = 123}, + [6617] = {.lex_state = 123}, + [6618] = {.lex_state = 123}, + [6619] = {.lex_state = 392}, + [6620] = {.lex_state = 264}, + [6621] = {.lex_state = 264}, + [6622] = {.lex_state = 123}, + [6623] = {.lex_state = 123}, + [6624] = {.lex_state = 123}, + [6625] = {.lex_state = 123}, + [6626] = {.lex_state = 123}, + [6627] = {.lex_state = 123}, + [6628] = {.lex_state = 123}, + [6629] = {.lex_state = 123}, + [6630] = {.lex_state = 392}, + [6631] = {.lex_state = 264}, + [6632] = {.lex_state = 264}, + [6633] = {.lex_state = 123}, + [6634] = {.lex_state = 123}, + [6635] = {.lex_state = 123}, + [6636] = {.lex_state = 123}, + [6637] = {.lex_state = 123}, + [6638] = {.lex_state = 123}, + [6639] = {.lex_state = 123}, + [6640] = {.lex_state = 123}, + [6641] = {.lex_state = 392}, + [6642] = {.lex_state = 264}, [6643] = {.lex_state = 744}, - [6644] = {.lex_state = 744}, - [6645] = {.lex_state = 744}, - [6646] = {.lex_state = 392}, - [6647] = {.lex_state = 392}, - [6648] = {.lex_state = 744}, - [6649] = {.lex_state = 744}, - [6650] = {.lex_state = 744}, - [6651] = {.lex_state = 288}, - [6652] = {.lex_state = 744}, - [6653] = {.lex_state = 744}, - [6654] = {.lex_state = 344}, - [6655] = {.lex_state = 744}, - [6656] = {.lex_state = 408}, - [6657] = {.lex_state = 744}, - [6658] = {.lex_state = 335}, - [6659] = {.lex_state = 146}, - [6660] = {.lex_state = 744}, - [6661] = {.lex_state = 146}, - [6662] = {.lex_state = 146}, - [6663] = {.lex_state = 146}, - [6664] = {.lex_state = 342}, - [6665] = {.lex_state = 266}, - [6666] = {.lex_state = 146}, - [6667] = {.lex_state = 146}, - [6668] = {.lex_state = 146}, - [6669] = {.lex_state = 744}, - [6670] = {.lex_state = 386}, - [6671] = {.lex_state = 744}, - [6672] = {.lex_state = 386}, - [6673] = {.lex_state = 285}, - [6674] = {.lex_state = 744}, - [6675] = {.lex_state = 744}, - [6676] = {.lex_state = 285}, - [6677] = {.lex_state = 405}, - [6678] = {.lex_state = 744}, - [6679] = {.lex_state = 744}, - [6680] = {.lex_state = 387}, - [6681] = {.lex_state = 386}, - [6682] = {.lex_state = 744}, - [6683] = {.lex_state = 146}, - [6684] = {.lex_state = 744}, - [6685] = {.lex_state = 146}, - [6686] = {.lex_state = 744}, - [6687] = {.lex_state = 744}, - [6688] = {.lex_state = 329}, - [6689] = {.lex_state = 146}, - [6690] = {.lex_state = 744}, - [6691] = {.lex_state = 744}, - [6692] = {.lex_state = 332}, + [6644] = {.lex_state = 264}, + [6645] = {.lex_state = 392}, + [6646] = {.lex_state = 264}, + [6647] = {.lex_state = 744}, + [6648] = {.lex_state = 264}, + [6649] = {.lex_state = 392}, + [6650] = {.lex_state = 264}, + [6651] = {.lex_state = 264}, + [6652] = {.lex_state = 392}, + [6653] = {.lex_state = 264}, + [6654] = {.lex_state = 264}, + [6655] = {.lex_state = 386}, + [6656] = {.lex_state = 392}, + [6657] = {.lex_state = 264}, + [6658] = {.lex_state = 264}, + [6659] = {.lex_state = 392}, + [6660] = {.lex_state = 264}, + [6661] = {.lex_state = 264}, + [6662] = {.lex_state = 392}, + [6663] = {.lex_state = 264}, + [6664] = {.lex_state = 264}, + [6665] = {.lex_state = 392}, + [6666] = {.lex_state = 264}, + [6667] = {.lex_state = 264}, + [6668] = {.lex_state = 392}, + [6669] = {.lex_state = 264}, + [6670] = {.lex_state = 264}, + [6671] = {.lex_state = 392}, + [6672] = {.lex_state = 264}, + [6673] = {.lex_state = 264}, + [6674] = {.lex_state = 392}, + [6675] = {.lex_state = 264}, + [6676] = {.lex_state = 264}, + [6677] = {.lex_state = 392}, + [6678] = {.lex_state = 264}, + [6679] = {.lex_state = 264}, + [6680] = {.lex_state = 392}, + [6681] = {.lex_state = 264}, + [6682] = {.lex_state = 264}, + [6683] = {.lex_state = 392}, + [6684] = {.lex_state = 264}, + [6685] = {.lex_state = 264}, + [6686] = {.lex_state = 392}, + [6687] = {.lex_state = 264}, + [6688] = {.lex_state = 264}, + [6689] = {.lex_state = 392}, + [6690] = {.lex_state = 264}, + [6691] = {.lex_state = 264}, + [6692] = {.lex_state = 146}, [6693] = {.lex_state = 392}, - [6694] = {.lex_state = 386}, - [6695] = {.lex_state = 744}, + [6694] = {.lex_state = 264}, + [6695] = {.lex_state = 264}, [6696] = {.lex_state = 744}, - [6697] = {.lex_state = 386}, - [6698] = {.lex_state = 744}, - [6699] = {.lex_state = 744}, - [6700] = {.lex_state = 146}, - [6701] = {.lex_state = 146}, - [6702] = {.lex_state = 744}, - [6703] = {.lex_state = 744}, + [6697] = {.lex_state = 392}, + [6698] = {.lex_state = 264}, + [6699] = {.lex_state = 264}, + [6700] = {.lex_state = 392}, + [6701] = {.lex_state = 264}, + [6702] = {.lex_state = 264}, + [6703] = {.lex_state = 392}, [6704] = {.lex_state = 264}, - [6705] = {.lex_state = 744}, - [6706] = {.lex_state = 408}, - [6707] = {.lex_state = 335}, - [6708] = {.lex_state = 744}, - [6709] = {.lex_state = 335}, - [6710] = {.lex_state = 76}, - [6711] = {.lex_state = 408}, - [6712] = {.lex_state = 392}, - [6713] = {.lex_state = 711}, - [6714] = {.lex_state = 744}, - [6715] = {.lex_state = 744}, - [6716] = {.lex_state = 744}, - [6717] = {.lex_state = 404}, + [6705] = {.lex_state = 264}, + [6706] = {.lex_state = 392}, + [6707] = {.lex_state = 264}, + [6708] = {.lex_state = 264}, + [6709] = {.lex_state = 744}, + [6710] = {.lex_state = 392}, + [6711] = {.lex_state = 264}, + [6712] = {.lex_state = 264}, + [6713] = {.lex_state = 392}, + [6714] = {.lex_state = 264}, + [6715] = {.lex_state = 264}, + [6716] = {.lex_state = 392}, + [6717] = {.lex_state = 264}, [6718] = {.lex_state = 264}, - [6719] = {.lex_state = 146}, - [6720] = {.lex_state = 744}, - [6721] = {.lex_state = 744}, - [6722] = {.lex_state = 744}, - [6723] = {.lex_state = 744}, - [6724] = {.lex_state = 744}, - [6725] = {.lex_state = 744}, - [6726] = {.lex_state = 744}, - [6727] = {.lex_state = 744}, - [6728] = {.lex_state = 405}, - [6729] = {.lex_state = 146}, - [6730] = {.lex_state = 146}, - [6731] = {.lex_state = 146}, - [6732] = {.lex_state = 76}, - [6733] = {.lex_state = 744}, - [6734] = {.lex_state = 744}, - [6735] = {.lex_state = 744}, - [6736] = {.lex_state = 744}, - [6737] = {.lex_state = 709}, - [6738] = {.lex_state = 709}, - [6739] = {.lex_state = 329}, - [6740] = {.lex_state = 744}, - [6741] = {.lex_state = 399}, + [6719] = {.lex_state = 392}, + [6720] = {.lex_state = 264}, + [6721] = {.lex_state = 264}, + [6722] = {.lex_state = 392}, + [6723] = {.lex_state = 264}, + [6724] = {.lex_state = 264}, + [6725] = {.lex_state = 392}, + [6726] = {.lex_state = 264}, + [6727] = {.lex_state = 264}, + [6728] = {.lex_state = 392}, + [6729] = {.lex_state = 264}, + [6730] = {.lex_state = 264}, + [6731] = {.lex_state = 264}, + [6732] = {.lex_state = 264}, + [6733] = {.lex_state = 264}, + [6734] = {.lex_state = 264}, + [6735] = {.lex_state = 264}, + [6736] = {.lex_state = 264}, + [6737] = {.lex_state = 744}, + [6738] = {.lex_state = 744}, + [6739] = {.lex_state = 392}, + [6740] = {.lex_state = 404}, + [6741] = {.lex_state = 404}, [6742] = {.lex_state = 744}, [6743] = {.lex_state = 744}, - [6744] = {.lex_state = 33}, - [6745] = {.lex_state = 146}, - [6746] = {.lex_state = 744}, - [6747] = {.lex_state = 392}, - [6748] = {.lex_state = 336}, + [6744] = {.lex_state = 744}, + [6745] = {.lex_state = 744}, + [6746] = {.lex_state = 710}, + [6747] = {.lex_state = 744}, + [6748] = {.lex_state = 744}, [6749] = {.lex_state = 744}, - [6750] = {.lex_state = 146}, - [6751] = {.lex_state = 146}, + [6750] = {.lex_state = 744}, + [6751] = {.lex_state = 744}, [6752] = {.lex_state = 744}, - [6753] = {.lex_state = 229}, + [6753] = {.lex_state = 744}, [6754] = {.lex_state = 744}, - [6755] = {.lex_state = 336}, - [6756] = {.lex_state = 403}, - [6757] = {.lex_state = 336}, - [6758] = {.lex_state = 306}, - [6759] = {.lex_state = 146}, - [6760] = {.lex_state = 229}, - [6761] = {.lex_state = 146}, - [6762] = {.lex_state = 146}, - [6763] = {.lex_state = 146}, - [6764] = {.lex_state = 381}, - [6765] = {.lex_state = 146}, + [6755] = {.lex_state = 744}, + [6756] = {.lex_state = 744}, + [6757] = {.lex_state = 744}, + [6758] = {.lex_state = 744}, + [6759] = {.lex_state = 744}, + [6760] = {.lex_state = 408}, + [6761] = {.lex_state = 744}, + [6762] = {.lex_state = 744}, + [6763] = {.lex_state = 744}, + [6764] = {.lex_state = 146}, + [6765] = {.lex_state = 123}, [6766] = {.lex_state = 146}, - [6767] = {.lex_state = 146}, - [6768] = {.lex_state = 146}, - [6769] = {.lex_state = 146}, - [6770] = {.lex_state = 146}, - [6771] = {.lex_state = 400}, - [6772] = {.lex_state = 744}, - [6773] = {.lex_state = 744}, - [6774] = {.lex_state = 744}, - [6775] = {.lex_state = 744}, - [6776] = {.lex_state = 336}, - [6777] = {.lex_state = 388}, - [6778] = {.lex_state = 146}, - [6779] = {.lex_state = 146}, - [6780] = {.lex_state = 409}, - [6781] = {.lex_state = 406}, - [6782] = {.lex_state = 336}, - [6783] = {.lex_state = 146}, - [6784] = {.lex_state = 146}, - [6785] = {.lex_state = 146}, - [6786] = {.lex_state = 146}, - [6787] = {.lex_state = 146}, - [6788] = {.lex_state = 146}, - [6789] = {.lex_state = 146}, - [6790] = {.lex_state = 744}, - [6791] = {.lex_state = 744}, - [6792] = {.lex_state = 146}, - [6793] = {.lex_state = 146}, + [6767] = {.lex_state = 123}, + [6768] = {.lex_state = 123}, + [6769] = {.lex_state = 332}, + [6770] = {.lex_state = 404}, + [6771] = {.lex_state = 744}, + [6772] = {.lex_state = 146}, + [6773] = {.lex_state = 392}, + [6774] = {.lex_state = 329}, + [6775] = {.lex_state = 711}, + [6776] = {.lex_state = 744}, + [6777] = {.lex_state = 744}, + [6778] = {.lex_state = 744}, + [6779] = {.lex_state = 329}, + [6780] = {.lex_state = 285}, + [6781] = {.lex_state = 285}, + [6782] = {.lex_state = 744}, + [6783] = {.lex_state = 312}, + [6784] = {.lex_state = 744}, + [6785] = {.lex_state = 264}, + [6786] = {.lex_state = 123}, + [6787] = {.lex_state = 123}, + [6788] = {.lex_state = 123}, + [6789] = {.lex_state = 123}, + [6790] = {.lex_state = 123}, + [6791] = {.lex_state = 123}, + [6792] = {.lex_state = 408}, + [6793] = {.lex_state = 408}, [6794] = {.lex_state = 744}, [6795] = {.lex_state = 146}, [6796] = {.lex_state = 744}, - [6797] = {.lex_state = 744}, + [6797] = {.lex_state = 329}, [6798] = {.lex_state = 744}, - [6799] = {.lex_state = 744}, - [6800] = {.lex_state = 146}, + [6799] = {.lex_state = 123}, + [6800] = {.lex_state = 744}, [6801] = {.lex_state = 744}, - [6802] = {.lex_state = 40}, - [6803] = {.lex_state = 336}, - [6804] = {.lex_state = 380}, - [6805] = {.lex_state = 206}, - [6806] = {.lex_state = 146}, - [6807] = {.lex_state = 388}, - [6808] = {.lex_state = 336}, - [6809] = {.lex_state = 146}, - [6810] = {.lex_state = 146}, - [6811] = {.lex_state = 146}, - [6812] = {.lex_state = 146}, - [6813] = {.lex_state = 146}, - [6814] = {.lex_state = 146}, - [6815] = {.lex_state = 146}, - [6816] = {.lex_state = 146}, - [6817] = {.lex_state = 146}, + [6802] = {.lex_state = 744}, + [6803] = {.lex_state = 744}, + [6804] = {.lex_state = 405}, + [6805] = {.lex_state = 146}, + [6806] = {.lex_state = 344}, + [6807] = {.lex_state = 744}, + [6808] = {.lex_state = 744}, + [6809] = {.lex_state = 744}, + [6810] = {.lex_state = 744}, + [6811] = {.lex_state = 709}, + [6812] = {.lex_state = 709}, + [6813] = {.lex_state = 44}, + [6814] = {.lex_state = 264}, + [6815] = {.lex_state = 344}, + [6816] = {.lex_state = 33}, + [6817] = {.lex_state = 123}, [6818] = {.lex_state = 146}, - [6819] = {.lex_state = 146}, - [6820] = {.lex_state = 744}, - [6821] = {.lex_state = 744}, + [6819] = {.lex_state = 206}, + [6820] = {.lex_state = 146}, + [6821] = {.lex_state = 146}, [6822] = {.lex_state = 146}, - [6823] = {.lex_state = 336}, - [6824] = {.lex_state = 146}, - [6825] = {.lex_state = 406}, + [6823] = {.lex_state = 146}, + [6824] = {.lex_state = 336}, + [6825] = {.lex_state = 146}, [6826] = {.lex_state = 146}, - [6827] = {.lex_state = 744}, - [6828] = {.lex_state = 406}, + [6827] = {.lex_state = 146}, + [6828] = {.lex_state = 146}, [6829] = {.lex_state = 146}, - [6830] = {.lex_state = 336}, - [6831] = {.lex_state = 743}, - [6832] = {.lex_state = 336}, - [6833] = {.lex_state = 264}, - [6834] = {.lex_state = 336}, - [6835] = {.lex_state = 743}, - [6836] = {.lex_state = 206}, - [6837] = {.lex_state = 146}, - [6838] = {.lex_state = 744}, - [6839] = {.lex_state = 146}, - [6840] = {.lex_state = 146}, - [6841] = {.lex_state = 146}, - [6842] = {.lex_state = 743}, - [6843] = {.lex_state = 146}, - [6844] = {.lex_state = 85}, - [6845] = {.lex_state = 744}, + [6830] = {.lex_state = 744}, + [6831] = {.lex_state = 146}, + [6832] = {.lex_state = 146}, + [6833] = {.lex_state = 285}, + [6834] = {.lex_state = 744}, + [6835] = {.lex_state = 403}, + [6836] = {.lex_state = 744}, + [6837] = {.lex_state = 744}, + [6838] = {.lex_state = 336}, + [6839] = {.lex_state = 336}, + [6840] = {.lex_state = 410}, + [6841] = {.lex_state = 333}, + [6842] = {.lex_state = 744}, + [6843] = {.lex_state = 403}, + [6844] = {.lex_state = 336}, + [6845] = {.lex_state = 336}, [6846] = {.lex_state = 146}, [6847] = {.lex_state = 146}, - [6848] = {.lex_state = 745}, + [6848] = {.lex_state = 146}, [6849] = {.lex_state = 146}, - [6850] = {.lex_state = 722}, + [6850] = {.lex_state = 744}, [6851] = {.lex_state = 146}, - [6852] = {.lex_state = 336}, + [6852] = {.lex_state = 744}, [6853] = {.lex_state = 146}, - [6854] = {.lex_state = 336}, - [6855] = {.lex_state = 410}, - [6856] = {.lex_state = 2}, - [6857] = {.lex_state = 336}, - [6858] = {.lex_state = 146}, - [6859] = {.lex_state = 744}, - [6860] = {.lex_state = 146}, - [6861] = {.lex_state = 146}, - [6862] = {.lex_state = 146}, - [6863] = {.lex_state = 146}, - [6864] = {.lex_state = 146}, - [6865] = {.lex_state = 146}, - [6866] = {.lex_state = 146}, - [6867] = {.lex_state = 14}, - [6868] = {.lex_state = 146}, - [6869] = {.lex_state = 146}, - [6870] = {.lex_state = 743}, - [6871] = {.lex_state = 146}, + [6854] = {.lex_state = 146}, + [6855] = {.lex_state = 146}, + [6856] = {.lex_state = 744}, + [6857] = {.lex_state = 744}, + [6858] = {.lex_state = 381}, + [6859] = {.lex_state = 382}, + [6860] = {.lex_state = 744}, + [6861] = {.lex_state = 306}, + [6862] = {.lex_state = 744}, + [6863] = {.lex_state = 744}, + [6864] = {.lex_state = 336}, + [6865] = {.lex_state = 744}, + [6866] = {.lex_state = 744}, + [6867] = {.lex_state = 744}, + [6868] = {.lex_state = 744}, + [6869] = {.lex_state = 403}, + [6870] = {.lex_state = 336}, + [6871] = {.lex_state = 14}, [6872] = {.lex_state = 146}, [6873] = {.lex_state = 146}, [6874] = {.lex_state = 146}, - [6875] = {.lex_state = 336}, + [6875] = {.lex_state = 146}, [6876] = {.lex_state = 146}, [6877] = {.lex_state = 146}, - [6878] = {.lex_state = 406}, - [6879] = {.lex_state = 744}, - [6880] = {.lex_state = 744}, - [6881] = {.lex_state = 336}, - [6882] = {.lex_state = 146}, + [6878] = {.lex_state = 146}, + [6879] = {.lex_state = 146}, + [6880] = {.lex_state = 146}, + [6881] = {.lex_state = 744}, + [6882] = {.lex_state = 744}, [6883] = {.lex_state = 146}, - [6884] = {.lex_state = 146}, - [6885] = {.lex_state = 146}, - [6886] = {.lex_state = 146}, - [6887] = {.lex_state = 146}, - [6888] = {.lex_state = 146}, - [6889] = {.lex_state = 146}, - [6890] = {.lex_state = 744}, - [6891] = {.lex_state = 146}, - [6892] = {.lex_state = 85}, - [6893] = {.lex_state = 85}, + [6884] = {.lex_state = 264}, + [6885] = {.lex_state = 744}, + [6886] = {.lex_state = 744}, + [6887] = {.lex_state = 744}, + [6888] = {.lex_state = 388}, + [6889] = {.lex_state = 744}, + [6890] = {.lex_state = 336}, + [6891] = {.lex_state = 744}, + [6892] = {.lex_state = 744}, + [6893] = {.lex_state = 336}, [6894] = {.lex_state = 146}, - [6895] = {.lex_state = 146}, + [6895] = {.lex_state = 400}, [6896] = {.lex_state = 146}, [6897] = {.lex_state = 146}, [6898] = {.lex_state = 146}, [6899] = {.lex_state = 146}, - [6900] = {.lex_state = 722}, - [6901] = {.lex_state = 744}, - [6902] = {.lex_state = 410}, - [6903] = {.lex_state = 146}, - [6904] = {.lex_state = 388}, + [6900] = {.lex_state = 146}, + [6901] = {.lex_state = 146}, + [6902] = {.lex_state = 146}, + [6903] = {.lex_state = 156}, + [6904] = {.lex_state = 146}, [6905] = {.lex_state = 146}, - [6906] = {.lex_state = 744}, - [6907] = {.lex_state = 744}, - [6908] = {.lex_state = 336}, + [6906] = {.lex_state = 146}, + [6907] = {.lex_state = 146}, + [6908] = {.lex_state = 146}, [6909] = {.lex_state = 744}, - [6910] = {.lex_state = 146}, - [6911] = {.lex_state = 336}, - [6912] = {.lex_state = 743}, + [6910] = {.lex_state = 744}, + [6911] = {.lex_state = 388}, + [6912] = {.lex_state = 231}, [6913] = {.lex_state = 146}, [6914] = {.lex_state = 744}, [6915] = {.lex_state = 744}, [6916] = {.lex_state = 146}, - [6917] = {.lex_state = 146}, + [6917] = {.lex_state = 336}, [6918] = {.lex_state = 146}, - [6919] = {.lex_state = 410}, - [6920] = {.lex_state = 146}, - [6921] = {.lex_state = 744}, - [6922] = {.lex_state = 146}, - [6923] = {.lex_state = 146}, - [6924] = {.lex_state = 744}, - [6925] = {.lex_state = 146}, - [6926] = {.lex_state = 403}, - [6927] = {.lex_state = 744}, - [6928] = {.lex_state = 336}, - [6929] = {.lex_state = 744}, - [6930] = {.lex_state = 744}, - [6931] = {.lex_state = 744}, - [6932] = {.lex_state = 743}, - [6933] = {.lex_state = 336}, - [6934] = {.lex_state = 336}, + [6919] = {.lex_state = 231}, + [6920] = {.lex_state = 744}, + [6921] = {.lex_state = 146}, + [6922] = {.lex_state = 156}, + [6923] = {.lex_state = 744}, + [6924] = {.lex_state = 336}, + [6925] = {.lex_state = 388}, + [6926] = {.lex_state = 744}, + [6927] = {.lex_state = 146}, + [6928] = {.lex_state = 743}, + [6929] = {.lex_state = 146}, + [6930] = {.lex_state = 146}, + [6931] = {.lex_state = 146}, + [6932] = {.lex_state = 146}, + [6933] = {.lex_state = 146}, + [6934] = {.lex_state = 146}, [6935] = {.lex_state = 146}, - [6936] = {.lex_state = 744}, + [6936] = {.lex_state = 146}, [6937] = {.lex_state = 146}, [6938] = {.lex_state = 146}, - [6939] = {.lex_state = 146}, + [6939] = {.lex_state = 744}, [6940] = {.lex_state = 146}, - [6941] = {.lex_state = 146}, - [6942] = {.lex_state = 146}, - [6943] = {.lex_state = 146}, - [6944] = {.lex_state = 146}, - [6945] = {.lex_state = 388}, - [6946] = {.lex_state = 146}, - [6947] = {.lex_state = 146}, - [6948] = {.lex_state = 146}, - [6949] = {.lex_state = 336}, - [6950] = {.lex_state = 336}, - [6951] = {.lex_state = 388}, - [6952] = {.lex_state = 744}, - [6953] = {.lex_state = 146}, + [6941] = {.lex_state = 231}, + [6942] = {.lex_state = 744}, + [6943] = {.lex_state = 744}, + [6944] = {.lex_state = 744}, + [6945] = {.lex_state = 744}, + [6946] = {.lex_state = 744}, + [6947] = {.lex_state = 744}, + [6948] = {.lex_state = 744}, + [6949] = {.lex_state = 146}, + [6950] = {.lex_state = 744}, + [6951] = {.lex_state = 336}, + [6952] = {.lex_state = 146}, + [6953] = {.lex_state = 744}, [6954] = {.lex_state = 744}, - [6955] = {.lex_state = 336}, - [6956] = {.lex_state = 146}, - [6957] = {.lex_state = 744}, - [6958] = {.lex_state = 206}, - [6959] = {.lex_state = 146}, + [6955] = {.lex_state = 744}, + [6956] = {.lex_state = 336}, + [6957] = {.lex_state = 380}, + [6958] = {.lex_state = 146}, + [6959] = {.lex_state = 744}, [6960] = {.lex_state = 146}, [6961] = {.lex_state = 146}, - [6962] = {.lex_state = 336}, + [6962] = {.lex_state = 146}, [6963] = {.lex_state = 146}, [6964] = {.lex_state = 146}, [6965] = {.lex_state = 146}, [6966] = {.lex_state = 146}, [6967] = {.lex_state = 146}, - [6968] = {.lex_state = 146}, - [6969] = {.lex_state = 146}, - [6970] = {.lex_state = 146}, - [6971] = {.lex_state = 744}, + [6968] = {.lex_state = 744}, + [6969] = {.lex_state = 744}, + [6970] = {.lex_state = 285}, + [6971] = {.lex_state = 85}, [6972] = {.lex_state = 743}, - [6973] = {.lex_state = 388}, + [6973] = {.lex_state = 744}, [6974] = {.lex_state = 744}, [6975] = {.lex_state = 744}, - [6976] = {.lex_state = 336}, - [6977] = {.lex_state = 146}, - [6978] = {.lex_state = 409}, - [6979] = {.lex_state = 744}, - [6980] = {.lex_state = 146}, - [6981] = {.lex_state = 40}, - [6982] = {.lex_state = 146}, - [6983] = {.lex_state = 146}, + [6976] = {.lex_state = 744}, + [6977] = {.lex_state = 744}, + [6978] = {.lex_state = 744}, + [6979] = {.lex_state = 336}, + [6980] = {.lex_state = 744}, + [6981] = {.lex_state = 744}, + [6982] = {.lex_state = 744}, + [6983] = {.lex_state = 336}, [6984] = {.lex_state = 146}, [6985] = {.lex_state = 146}, - [6986] = {.lex_state = 388}, - [6987] = {.lex_state = 388}, - [6988] = {.lex_state = 146}, + [6986] = {.lex_state = 744}, + [6987] = {.lex_state = 146}, + [6988] = {.lex_state = 744}, [6989] = {.lex_state = 146}, [6990] = {.lex_state = 146}, [6991] = {.lex_state = 146}, [6992] = {.lex_state = 146}, - [6993] = {.lex_state = 743}, + [6993] = {.lex_state = 146}, [6994] = {.lex_state = 744}, - [6995] = {.lex_state = 743}, - [6996] = {.lex_state = 744}, - [6997] = {.lex_state = 403}, - [6998] = {.lex_state = 744}, + [6995] = {.lex_state = 40}, + [6996] = {.lex_state = 146}, + [6997] = {.lex_state = 146}, + [6998] = {.lex_state = 146}, [6999] = {.lex_state = 146}, - [7000] = {.lex_state = 85}, - [7001] = {.lex_state = 146}, - [7002] = {.lex_state = 146}, - [7003] = {.lex_state = 146}, - [7004] = {.lex_state = 744}, - [7005] = {.lex_state = 146}, - [7006] = {.lex_state = 744}, + [7000] = {.lex_state = 146}, + [7001] = {.lex_state = 410}, + [7002] = {.lex_state = 744}, + [7003] = {.lex_state = 744}, + [7004] = {.lex_state = 146}, + [7005] = {.lex_state = 744}, + [7006] = {.lex_state = 206}, [7007] = {.lex_state = 146}, - [7008] = {.lex_state = 146}, - [7009] = {.lex_state = 333}, - [7010] = {.lex_state = 146}, + [7008] = {.lex_state = 336}, + [7009] = {.lex_state = 744}, + [7010] = {.lex_state = 743}, [7011] = {.lex_state = 146}, - [7012] = {.lex_state = 744}, - [7013] = {.lex_state = 744}, - [7014] = {.lex_state = 2}, + [7012] = {.lex_state = 146}, + [7013] = {.lex_state = 336}, + [7014] = {.lex_state = 146}, [7015] = {.lex_state = 146}, [7016] = {.lex_state = 146}, [7017] = {.lex_state = 146}, @@ -61419,991 +61573,1159 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7019] = {.lex_state = 146}, [7020] = {.lex_state = 146}, [7021] = {.lex_state = 146}, - [7022] = {.lex_state = 146}, + [7022] = {.lex_state = 14}, [7023] = {.lex_state = 146}, - [7024] = {.lex_state = 744}, - [7025] = {.lex_state = 146}, + [7024] = {.lex_state = 146}, + [7025] = {.lex_state = 740}, [7026] = {.lex_state = 146}, [7027] = {.lex_state = 146}, - [7028] = {.lex_state = 146}, - [7029] = {.lex_state = 744}, - [7030] = {.lex_state = 146}, + [7028] = {.lex_state = 722}, + [7029] = {.lex_state = 146}, + [7030] = {.lex_state = 400}, [7031] = {.lex_state = 146}, [7032] = {.lex_state = 146}, [7033] = {.lex_state = 146}, - [7034] = {.lex_state = 146}, - [7035] = {.lex_state = 744}, - [7036] = {.lex_state = 146}, - [7037] = {.lex_state = 146}, + [7034] = {.lex_state = 744}, + [7035] = {.lex_state = 336}, + [7036] = {.lex_state = 744}, + [7037] = {.lex_state = 336}, [7038] = {.lex_state = 146}, [7039] = {.lex_state = 146}, [7040] = {.lex_state = 744}, - [7041] = {.lex_state = 402}, - [7042] = {.lex_state = 402}, - [7043] = {.lex_state = 743}, - [7044] = {.lex_state = 744}, - [7045] = {.lex_state = 146}, - [7046] = {.lex_state = 329}, - [7047] = {.lex_state = 146}, - [7048] = {.lex_state = 744}, - [7049] = {.lex_state = 744}, - [7050] = {.lex_state = 744}, - [7051] = {.lex_state = 146}, + [7041] = {.lex_state = 146}, + [7042] = {.lex_state = 146}, + [7043] = {.lex_state = 146}, + [7044] = {.lex_state = 146}, + [7045] = {.lex_state = 2}, + [7046] = {.lex_state = 146}, + [7047] = {.lex_state = 406}, + [7048] = {.lex_state = 146}, + [7049] = {.lex_state = 146}, + [7050] = {.lex_state = 146}, + [7051] = {.lex_state = 744}, [7052] = {.lex_state = 146}, - [7053] = {.lex_state = 409}, - [7054] = {.lex_state = 744}, - [7055] = {.lex_state = 744}, - [7056] = {.lex_state = 146}, - [7057] = {.lex_state = 14}, - [7058] = {.lex_state = 336}, - [7059] = {.lex_state = 744}, + [7053] = {.lex_state = 146}, + [7054] = {.lex_state = 146}, + [7055] = {.lex_state = 743}, + [7056] = {.lex_state = 336}, + [7057] = {.lex_state = 744}, + [7058] = {.lex_state = 146}, + [7059] = {.lex_state = 146}, [7060] = {.lex_state = 146}, - [7061] = {.lex_state = 146}, + [7061] = {.lex_state = 336}, [7062] = {.lex_state = 744}, - [7063] = {.lex_state = 743}, - [7064] = {.lex_state = 744}, - [7065] = {.lex_state = 403}, - [7066] = {.lex_state = 336}, - [7067] = {.lex_state = 744}, + [7063] = {.lex_state = 146}, + [7064] = {.lex_state = 146}, + [7065] = {.lex_state = 146}, + [7066] = {.lex_state = 146}, + [7067] = {.lex_state = 146}, [7068] = {.lex_state = 146}, - [7069] = {.lex_state = 336}, - [7070] = {.lex_state = 744}, - [7071] = {.lex_state = 744}, - [7072] = {.lex_state = 206}, - [7073] = {.lex_state = 146}, + [7069] = {.lex_state = 329}, + [7070] = {.lex_state = 146}, + [7071] = {.lex_state = 146}, + [7072] = {.lex_state = 146}, + [7073] = {.lex_state = 744}, [7074] = {.lex_state = 146}, [7075] = {.lex_state = 146}, - [7076] = {.lex_state = 14}, - [7077] = {.lex_state = 146}, - [7078] = {.lex_state = 146}, - [7079] = {.lex_state = 146}, + [7076] = {.lex_state = 146}, + [7077] = {.lex_state = 336}, + [7078] = {.lex_state = 744}, + [7079] = {.lex_state = 336}, [7080] = {.lex_state = 146}, - [7081] = {.lex_state = 388}, + [7081] = {.lex_state = 744}, [7082] = {.lex_state = 146}, - [7083] = {.lex_state = 744}, - [7084] = {.lex_state = 744}, - [7085] = {.lex_state = 744}, - [7086] = {.lex_state = 743}, - [7087] = {.lex_state = 744}, - [7088] = {.lex_state = 744}, + [7083] = {.lex_state = 146}, + [7084] = {.lex_state = 146}, + [7085] = {.lex_state = 146}, + [7086] = {.lex_state = 744}, + [7087] = {.lex_state = 146}, + [7088] = {.lex_state = 146}, [7089] = {.lex_state = 146}, - [7090] = {.lex_state = 206}, - [7091] = {.lex_state = 287}, + [7090] = {.lex_state = 146}, + [7091] = {.lex_state = 744}, [7092] = {.lex_state = 146}, - [7093] = {.lex_state = 2}, - [7094] = {.lex_state = 229}, + [7093] = {.lex_state = 409}, + [7094] = {.lex_state = 146}, [7095] = {.lex_state = 743}, - [7096] = {.lex_state = 2}, - [7097] = {.lex_state = 146}, - [7098] = {.lex_state = 743}, - [7099] = {.lex_state = 402}, - [7100] = {.lex_state = 402}, - [7101] = {.lex_state = 2}, + [7096] = {.lex_state = 336}, + [7097] = {.lex_state = 744}, + [7098] = {.lex_state = 336}, + [7099] = {.lex_state = 146}, + [7100] = {.lex_state = 146}, + [7101] = {.lex_state = 146}, [7102] = {.lex_state = 146}, - [7103] = {.lex_state = 740}, + [7103] = {.lex_state = 146}, [7104] = {.lex_state = 146}, - [7105] = {.lex_state = 2}, - [7106] = {.lex_state = 744}, - [7107] = {.lex_state = 229}, + [7105] = {.lex_state = 146}, + [7106] = {.lex_state = 146}, + [7107] = {.lex_state = 146}, [7108] = {.lex_state = 744}, - [7109] = {.lex_state = 333}, - [7110] = {.lex_state = 333}, - [7111] = {.lex_state = 744}, + [7109] = {.lex_state = 743}, + [7110] = {.lex_state = 388}, + [7111] = {.lex_state = 336}, [7112] = {.lex_state = 744}, - [7113] = {.lex_state = 744}, - [7114] = {.lex_state = 206}, - [7115] = {.lex_state = 85}, + [7113] = {.lex_state = 146}, + [7114] = {.lex_state = 743}, + [7115] = {.lex_state = 146}, [7116] = {.lex_state = 146}, - [7117] = {.lex_state = 744}, - [7118] = {.lex_state = 744}, - [7119] = {.lex_state = 85}, - [7120] = {.lex_state = 156}, + [7117] = {.lex_state = 146}, + [7118] = {.lex_state = 146}, + [7119] = {.lex_state = 146}, + [7120] = {.lex_state = 146}, [7121] = {.lex_state = 744}, - [7122] = {.lex_state = 403}, + [7122] = {.lex_state = 146}, [7123] = {.lex_state = 146}, - [7124] = {.lex_state = 146}, + [7124] = {.lex_state = 388}, [7125] = {.lex_state = 744}, - [7126] = {.lex_state = 744}, + [7126] = {.lex_state = 146}, [7127] = {.lex_state = 744}, [7128] = {.lex_state = 146}, [7129] = {.lex_state = 146}, - [7130] = {.lex_state = 146}, - [7131] = {.lex_state = 400}, - [7132] = {.lex_state = 744}, - [7133] = {.lex_state = 382}, + [7130] = {.lex_state = 744}, + [7131] = {.lex_state = 146}, + [7132] = {.lex_state = 146}, + [7133] = {.lex_state = 146}, [7134] = {.lex_state = 146}, - [7135] = {.lex_state = 335}, + [7135] = {.lex_state = 146}, [7136] = {.lex_state = 146}, [7137] = {.lex_state = 146}, [7138] = {.lex_state = 146}, - [7139] = {.lex_state = 146}, - [7140] = {.lex_state = 146}, + [7139] = {.lex_state = 402}, + [7140] = {.lex_state = 744}, [7141] = {.lex_state = 146}, - [7142] = {.lex_state = 336}, - [7143] = {.lex_state = 740}, + [7142] = {.lex_state = 146}, + [7143] = {.lex_state = 744}, [7144] = {.lex_state = 146}, [7145] = {.lex_state = 146}, [7146] = {.lex_state = 744}, [7147] = {.lex_state = 146}, - [7148] = {.lex_state = 744}, + [7148] = {.lex_state = 743}, [7149] = {.lex_state = 146}, - [7150] = {.lex_state = 403}, - [7151] = {.lex_state = 744}, - [7152] = {.lex_state = 206}, + [7150] = {.lex_state = 744}, + [7151] = {.lex_state = 146}, + [7152] = {.lex_state = 146}, [7153] = {.lex_state = 146}, - [7154] = {.lex_state = 206}, + [7154] = {.lex_state = 146}, [7155] = {.lex_state = 336}, [7156] = {.lex_state = 146}, - [7157] = {.lex_state = 744}, - [7158] = {.lex_state = 744}, + [7157] = {.lex_state = 146}, + [7158] = {.lex_state = 146}, [7159] = {.lex_state = 744}, - [7160] = {.lex_state = 744}, - [7161] = {.lex_state = 744}, - [7162] = {.lex_state = 146}, + [7160] = {.lex_state = 146}, + [7161] = {.lex_state = 146}, + [7162] = {.lex_state = 410}, [7163] = {.lex_state = 744}, - [7164] = {.lex_state = 744}, - [7165] = {.lex_state = 744}, + [7164] = {.lex_state = 743}, + [7165] = {.lex_state = 409}, [7166] = {.lex_state = 744}, - [7167] = {.lex_state = 336}, - [7168] = {.lex_state = 146}, - [7169] = {.lex_state = 146}, + [7167] = {.lex_state = 744}, + [7168] = {.lex_state = 388}, + [7169] = {.lex_state = 744}, [7170] = {.lex_state = 744}, - [7171] = {.lex_state = 146}, - [7172] = {.lex_state = 146}, - [7173] = {.lex_state = 146}, - [7174] = {.lex_state = 285}, - [7175] = {.lex_state = 146}, - [7176] = {.lex_state = 744}, + [7171] = {.lex_state = 744}, + [7172] = {.lex_state = 85}, + [7173] = {.lex_state = 744}, + [7174] = {.lex_state = 745}, + [7175] = {.lex_state = 744}, + [7176] = {.lex_state = 743}, [7177] = {.lex_state = 744}, [7178] = {.lex_state = 146}, [7179] = {.lex_state = 744}, - [7180] = {.lex_state = 85}, - [7181] = {.lex_state = 744}, - [7182] = {.lex_state = 400}, - [7183] = {.lex_state = 206}, - [7184] = {.lex_state = 406}, - [7185] = {.lex_state = 206}, - [7186] = {.lex_state = 146}, - [7187] = {.lex_state = 744}, - [7188] = {.lex_state = 146}, - [7189] = {.lex_state = 744}, - [7190] = {.lex_state = 744}, - [7191] = {.lex_state = 744}, - [7192] = {.lex_state = 744}, + [7180] = {.lex_state = 336}, + [7181] = {.lex_state = 146}, + [7182] = {.lex_state = 336}, + [7183] = {.lex_state = 744}, + [7184] = {.lex_state = 146}, + [7185] = {.lex_state = 744}, + [7186] = {.lex_state = 403}, + [7187] = {.lex_state = 336}, + [7188] = {.lex_state = 744}, + [7189] = {.lex_state = 146}, + [7190] = {.lex_state = 146}, + [7191] = {.lex_state = 146}, + [7192] = {.lex_state = 287}, [7193] = {.lex_state = 146}, - [7194] = {.lex_state = 206}, - [7195] = {.lex_state = 206}, - [7196] = {.lex_state = 146}, - [7197] = {.lex_state = 744}, + [7194] = {.lex_state = 146}, + [7195] = {.lex_state = 146}, + [7196] = {.lex_state = 14}, + [7197] = {.lex_state = 146}, [7198] = {.lex_state = 744}, [7199] = {.lex_state = 146}, - [7200] = {.lex_state = 744}, - [7201] = {.lex_state = 744}, - [7202] = {.lex_state = 206}, - [7203] = {.lex_state = 744}, + [7200] = {.lex_state = 146}, + [7201] = {.lex_state = 146}, + [7202] = {.lex_state = 744}, + [7203] = {.lex_state = 406}, [7204] = {.lex_state = 744}, - [7205] = {.lex_state = 206}, - [7206] = {.lex_state = 744}, - [7207] = {.lex_state = 146}, - [7208] = {.lex_state = 744}, - [7209] = {.lex_state = 744}, - [7210] = {.lex_state = 744}, - [7211] = {.lex_state = 744}, - [7212] = {.lex_state = 206}, - [7213] = {.lex_state = 146}, - [7214] = {.lex_state = 206}, - [7215] = {.lex_state = 744}, - [7216] = {.lex_state = 744}, - [7217] = {.lex_state = 744}, - [7218] = {.lex_state = 744}, + [7205] = {.lex_state = 744}, + [7206] = {.lex_state = 146}, + [7207] = {.lex_state = 206}, + [7208] = {.lex_state = 146}, + [7209] = {.lex_state = 146}, + [7210] = {.lex_state = 146}, + [7211] = {.lex_state = 388}, + [7212] = {.lex_state = 146}, + [7213] = {.lex_state = 2}, + [7214] = {.lex_state = 744}, + [7215] = {.lex_state = 2}, + [7216] = {.lex_state = 2}, + [7217] = {.lex_state = 146}, + [7218] = {.lex_state = 85}, [7219] = {.lex_state = 744}, - [7220] = {.lex_state = 206}, - [7221] = {.lex_state = 744}, + [7220] = {.lex_state = 744}, + [7221] = {.lex_state = 146}, [7222] = {.lex_state = 744}, - [7223] = {.lex_state = 206}, - [7224] = {.lex_state = 744}, - [7225] = {.lex_state = 744}, - [7226] = {.lex_state = 744}, + [7223] = {.lex_state = 146}, + [7224] = {.lex_state = 146}, + [7225] = {.lex_state = 84}, + [7226] = {.lex_state = 206}, [7227] = {.lex_state = 744}, - [7228] = {.lex_state = 206}, - [7229] = {.lex_state = 744}, - [7230] = {.lex_state = 206}, + [7228] = {.lex_state = 146}, + [7229] = {.lex_state = 85}, + [7230] = {.lex_state = 85}, [7231] = {.lex_state = 744}, - [7232] = {.lex_state = 744}, - [7233] = {.lex_state = 744}, + [7232] = {.lex_state = 85}, + [7233] = {.lex_state = 146}, [7234] = {.lex_state = 744}, - [7235] = {.lex_state = 206}, - [7236] = {.lex_state = 156}, - [7237] = {.lex_state = 206}, - [7238] = {.lex_state = 744}, - [7239] = {.lex_state = 744}, - [7240] = {.lex_state = 84}, + [7235] = {.lex_state = 14}, + [7236] = {.lex_state = 744}, + [7237] = {.lex_state = 744}, + [7238] = {.lex_state = 146}, + [7239] = {.lex_state = 146}, + [7240] = {.lex_state = 740}, [7241] = {.lex_state = 744}, - [7242] = {.lex_state = 744}, - [7243] = {.lex_state = 206}, + [7242] = {.lex_state = 743}, + [7243] = {.lex_state = 146}, [7244] = {.lex_state = 146}, - [7245] = {.lex_state = 206}, - [7246] = {.lex_state = 744}, + [7245] = {.lex_state = 2}, + [7246] = {.lex_state = 146}, [7247] = {.lex_state = 744}, - [7248] = {.lex_state = 744}, - [7249] = {.lex_state = 744}, - [7250] = {.lex_state = 206}, - [7251] = {.lex_state = 206}, + [7248] = {.lex_state = 146}, + [7249] = {.lex_state = 146}, + [7250] = {.lex_state = 744}, + [7251] = {.lex_state = 744}, [7252] = {.lex_state = 744}, - [7253] = {.lex_state = 744}, - [7254] = {.lex_state = 744}, - [7255] = {.lex_state = 744}, - [7256] = {.lex_state = 206}, + [7253] = {.lex_state = 146}, + [7254] = {.lex_state = 146}, + [7255] = {.lex_state = 146}, + [7256] = {.lex_state = 744}, [7257] = {.lex_state = 744}, [7258] = {.lex_state = 146}, - [7259] = {.lex_state = 206}, - [7260] = {.lex_state = 744}, + [7259] = {.lex_state = 744}, + [7260] = {.lex_state = 333}, [7261] = {.lex_state = 744}, [7262] = {.lex_state = 744}, - [7263] = {.lex_state = 744}, - [7264] = {.lex_state = 206}, - [7265] = {.lex_state = 146}, - [7266] = {.lex_state = 206}, + [7263] = {.lex_state = 335}, + [7264] = {.lex_state = 146}, + [7265] = {.lex_state = 388}, + [7266] = {.lex_state = 744}, [7267] = {.lex_state = 146}, - [7268] = {.lex_state = 744}, - [7269] = {.lex_state = 744}, - [7270] = {.lex_state = 336}, + [7268] = {.lex_state = 146}, + [7269] = {.lex_state = 146}, + [7270] = {.lex_state = 744}, [7271] = {.lex_state = 744}, - [7272] = {.lex_state = 744}, - [7273] = {.lex_state = 206}, - [7274] = {.lex_state = 206}, - [7275] = {.lex_state = 744}, + [7272] = {.lex_state = 400}, + [7273] = {.lex_state = 744}, + [7274] = {.lex_state = 744}, + [7275] = {.lex_state = 206}, [7276] = {.lex_state = 744}, - [7277] = {.lex_state = 744}, - [7278] = {.lex_state = 744}, + [7277] = {.lex_state = 402}, + [7278] = {.lex_state = 402}, [7279] = {.lex_state = 206}, - [7280] = {.lex_state = 206}, + [7280] = {.lex_state = 744}, [7281] = {.lex_state = 744}, [7282] = {.lex_state = 744}, [7283] = {.lex_state = 744}, [7284] = {.lex_state = 744}, - [7285] = {.lex_state = 744}, - [7286] = {.lex_state = 206}, - [7287] = {.lex_state = 206}, - [7288] = {.lex_state = 285}, + [7285] = {.lex_state = 40}, + [7286] = {.lex_state = 146}, + [7287] = {.lex_state = 744}, + [7288] = {.lex_state = 146}, [7289] = {.lex_state = 744}, [7290] = {.lex_state = 744}, [7291] = {.lex_state = 744}, [7292] = {.lex_state = 744}, - [7293] = {.lex_state = 744}, - [7294] = {.lex_state = 206}, - [7295] = {.lex_state = 206}, - [7296] = {.lex_state = 744}, + [7293] = {.lex_state = 206}, + [7294] = {.lex_state = 85}, + [7295] = {.lex_state = 722}, + [7296] = {.lex_state = 206}, [7297] = {.lex_state = 744}, [7298] = {.lex_state = 744}, [7299] = {.lex_state = 744}, [7300] = {.lex_state = 744}, - [7301] = {.lex_state = 744}, - [7302] = {.lex_state = 206}, + [7301] = {.lex_state = 206}, + [7302] = {.lex_state = 744}, [7303] = {.lex_state = 206}, - [7304] = {.lex_state = 744}, + [7304] = {.lex_state = 2}, [7305] = {.lex_state = 744}, [7306] = {.lex_state = 744}, [7307] = {.lex_state = 744}, [7308] = {.lex_state = 744}, - [7309] = {.lex_state = 403}, - [7310] = {.lex_state = 336}, - [7311] = {.lex_state = 14}, - [7312] = {.lex_state = 146}, + [7309] = {.lex_state = 744}, + [7310] = {.lex_state = 146}, + [7311] = {.lex_state = 744}, + [7312] = {.lex_state = 206}, [7313] = {.lex_state = 146}, - [7314] = {.lex_state = 146}, + [7314] = {.lex_state = 206}, [7315] = {.lex_state = 146}, - [7316] = {.lex_state = 146}, - [7317] = {.lex_state = 146}, - [7318] = {.lex_state = 744}, - [7319] = {.lex_state = 146}, - [7320] = {.lex_state = 146}, - [7321] = {.lex_state = 146}, - [7322] = {.lex_state = 146}, - [7323] = {.lex_state = 146}, - [7324] = {.lex_state = 146}, + [7316] = {.lex_state = 744}, + [7317] = {.lex_state = 744}, + [7318] = {.lex_state = 146}, + [7319] = {.lex_state = 744}, + [7320] = {.lex_state = 744}, + [7321] = {.lex_state = 206}, + [7322] = {.lex_state = 206}, + [7323] = {.lex_state = 744}, + [7324] = {.lex_state = 744}, [7325] = {.lex_state = 744}, - [7326] = {.lex_state = 388}, - [7327] = {.lex_state = 146}, - [7328] = {.lex_state = 333}, + [7326] = {.lex_state = 744}, + [7327] = {.lex_state = 206}, + [7328] = {.lex_state = 206}, [7329] = {.lex_state = 146}, - [7330] = {.lex_state = 146}, + [7330] = {.lex_state = 744}, [7331] = {.lex_state = 744}, - [7332] = {.lex_state = 146}, - [7333] = {.lex_state = 146}, + [7332] = {.lex_state = 744}, + [7333] = {.lex_state = 744}, [7334] = {.lex_state = 744}, - [7335] = {.lex_state = 146}, - [7336] = {.lex_state = 146}, - [7337] = {.lex_state = 146}, - [7338] = {.lex_state = 146}, - [7339] = {.lex_state = 402}, - [7340] = {.lex_state = 146}, - [7341] = {.lex_state = 146}, - [7342] = {.lex_state = 146}, - [7343] = {.lex_state = 146}, - [7344] = {.lex_state = 146}, - [7345] = {.lex_state = 744}, - [7346] = {.lex_state = 744}, - [7347] = {.lex_state = 146}, - [7348] = {.lex_state = 403}, - [7349] = {.lex_state = 146}, + [7335] = {.lex_state = 206}, + [7336] = {.lex_state = 402}, + [7337] = {.lex_state = 402}, + [7338] = {.lex_state = 206}, + [7339] = {.lex_state = 744}, + [7340] = {.lex_state = 744}, + [7341] = {.lex_state = 744}, + [7342] = {.lex_state = 744}, + [7343] = {.lex_state = 744}, + [7344] = {.lex_state = 744}, + [7345] = {.lex_state = 206}, + [7346] = {.lex_state = 123}, + [7347] = {.lex_state = 744}, + [7348] = {.lex_state = 206}, + [7349] = {.lex_state = 333}, [7350] = {.lex_state = 744}, [7351] = {.lex_state = 744}, - [7352] = {.lex_state = 4063}, + [7352] = {.lex_state = 743}, [7353] = {.lex_state = 744}, - [7354] = {.lex_state = 333}, - [7355] = {.lex_state = 744}, - [7356] = {.lex_state = 407}, - [7357] = {.lex_state = 407}, - [7358] = {.lex_state = 4067}, - [7359] = {.lex_state = 144}, + [7354] = {.lex_state = 744}, + [7355] = {.lex_state = 206}, + [7356] = {.lex_state = 743}, + [7357] = {.lex_state = 206}, + [7358] = {.lex_state = 403}, + [7359] = {.lex_state = 744}, [7360] = {.lex_state = 744}, - [7361] = {.lex_state = 744}, + [7361] = {.lex_state = 146}, [7362] = {.lex_state = 744}, - [7363] = {.lex_state = 144}, - [7364] = {.lex_state = 4067}, - [7365] = {.lex_state = 336}, - [7366] = {.lex_state = 407}, - [7367] = {.lex_state = 744}, - [7368] = {.lex_state = 4067}, - [7369] = {.lex_state = 4067}, - [7370] = {.lex_state = 403}, - [7371] = {.lex_state = 144}, + [7363] = {.lex_state = 744}, + [7364] = {.lex_state = 206}, + [7365] = {.lex_state = 146}, + [7366] = {.lex_state = 744}, + [7367] = {.lex_state = 206}, + [7368] = {.lex_state = 406}, + [7369] = {.lex_state = 146}, + [7370] = {.lex_state = 744}, + [7371] = {.lex_state = 744}, [7372] = {.lex_state = 146}, - [7373] = {.lex_state = 144}, - [7374] = {.lex_state = 333}, - [7375] = {.lex_state = 146}, - [7376] = {.lex_state = 333}, - [7377] = {.lex_state = 14}, - [7378] = {.lex_state = 38}, - [7379] = {.lex_state = 4067}, - [7380] = {.lex_state = 4063}, - [7381] = {.lex_state = 144}, + [7373] = {.lex_state = 744}, + [7374] = {.lex_state = 744}, + [7375] = {.lex_state = 206}, + [7376] = {.lex_state = 336}, + [7377] = {.lex_state = 206}, + [7378] = {.lex_state = 403}, + [7379] = {.lex_state = 743}, + [7380] = {.lex_state = 744}, + [7381] = {.lex_state = 744}, [7382] = {.lex_state = 744}, - [7383] = {.lex_state = 146}, - [7384] = {.lex_state = 4063}, - [7385] = {.lex_state = 146}, - [7386] = {.lex_state = 4063}, - [7387] = {.lex_state = 146}, - [7388] = {.lex_state = 744}, + [7383] = {.lex_state = 744}, + [7384] = {.lex_state = 206}, + [7385] = {.lex_state = 206}, + [7386] = {.lex_state = 744}, + [7387] = {.lex_state = 744}, + [7388] = {.lex_state = 409}, [7389] = {.lex_state = 744}, [7390] = {.lex_state = 744}, - [7391] = {.lex_state = 146}, - [7392] = {.lex_state = 4063}, - [7393] = {.lex_state = 4067}, - [7394] = {.lex_state = 146}, + [7391] = {.lex_state = 206}, + [7392] = {.lex_state = 146}, + [7393] = {.lex_state = 206}, + [7394] = {.lex_state = 744}, [7395] = {.lex_state = 744}, - [7396] = {.lex_state = 4063}, - [7397] = {.lex_state = 146}, - [7398] = {.lex_state = 146}, - [7399] = {.lex_state = 744}, - [7400] = {.lex_state = 146}, - [7401] = {.lex_state = 4065}, - [7402] = {.lex_state = 4063}, + [7396] = {.lex_state = 744}, + [7397] = {.lex_state = 744}, + [7398] = {.lex_state = 206}, + [7399] = {.lex_state = 206}, + [7400] = {.lex_state = 744}, + [7401] = {.lex_state = 744}, + [7402] = {.lex_state = 744}, [7403] = {.lex_state = 744}, - [7404] = {.lex_state = 333}, - [7405] = {.lex_state = 4065}, - [7406] = {.lex_state = 146}, + [7404] = {.lex_state = 206}, + [7405] = {.lex_state = 206}, + [7406] = {.lex_state = 744}, [7407] = {.lex_state = 744}, - [7408] = {.lex_state = 144}, - [7409] = {.lex_state = 745}, - [7410] = {.lex_state = 4063}, - [7411] = {.lex_state = 146}, - [7412] = {.lex_state = 4063}, - [7413] = {.lex_state = 146}, + [7408] = {.lex_state = 744}, + [7409] = {.lex_state = 744}, + [7410] = {.lex_state = 206}, + [7411] = {.lex_state = 206}, + [7412] = {.lex_state = 744}, + [7413] = {.lex_state = 744}, [7414] = {.lex_state = 744}, [7415] = {.lex_state = 744}, - [7416] = {.lex_state = 146}, - [7417] = {.lex_state = 744}, - [7418] = {.lex_state = 4063}, - [7419] = {.lex_state = 146}, - [7420] = {.lex_state = 814}, - [7421] = {.lex_state = 333}, - [7422] = {.lex_state = 38}, - [7423] = {.lex_state = 744}, - [7424] = {.lex_state = 144}, - [7425] = {.lex_state = 146}, - [7426] = {.lex_state = 745}, - [7427] = {.lex_state = 144}, - [7428] = {.lex_state = 407}, - [7429] = {.lex_state = 333}, - [7430] = {.lex_state = 146}, - [7431] = {.lex_state = 744}, - [7432] = {.lex_state = 146}, - [7433] = {.lex_state = 146}, - [7434] = {.lex_state = 744}, - [7435] = {.lex_state = 391}, - [7436] = {.lex_state = 4065}, - [7437] = {.lex_state = 4063}, - [7438] = {.lex_state = 744}, - [7439] = {.lex_state = 744}, - [7440] = {.lex_state = 744}, - [7441] = {.lex_state = 4065}, - [7442] = {.lex_state = 4065}, - [7443] = {.lex_state = 697}, - [7444] = {.lex_state = 146}, - [7445] = {.lex_state = 146}, - [7446] = {.lex_state = 4067}, - [7447] = {.lex_state = 744}, - [7448] = {.lex_state = 744}, - [7449] = {.lex_state = 400}, + [7416] = {.lex_state = 206}, + [7417] = {.lex_state = 206}, + [7418] = {.lex_state = 744}, + [7419] = {.lex_state = 744}, + [7420] = {.lex_state = 744}, + [7421] = {.lex_state = 744}, + [7422] = {.lex_state = 206}, + [7423] = {.lex_state = 206}, + [7424] = {.lex_state = 744}, + [7425] = {.lex_state = 744}, + [7426] = {.lex_state = 744}, + [7427] = {.lex_state = 744}, + [7428] = {.lex_state = 744}, + [7429] = {.lex_state = 744}, + [7430] = {.lex_state = 406}, + [7431] = {.lex_state = 406}, + [7432] = {.lex_state = 744}, + [7433] = {.lex_state = 744}, + [7434] = {.lex_state = 388}, + [7435] = {.lex_state = 744}, + [7436] = {.lex_state = 388}, + [7437] = {.lex_state = 146}, + [7438] = {.lex_state = 146}, + [7439] = {.lex_state = 403}, + [7440] = {.lex_state = 336}, + [7441] = {.lex_state = 744}, + [7442] = {.lex_state = 336}, + [7443] = {.lex_state = 146}, + [7444] = {.lex_state = 231}, + [7445] = {.lex_state = 333}, + [7446] = {.lex_state = 336}, + [7447] = {.lex_state = 146}, + [7448] = {.lex_state = 146}, + [7449] = {.lex_state = 146}, [7450] = {.lex_state = 146}, - [7451] = {.lex_state = 333}, + [7451] = {.lex_state = 744}, [7452] = {.lex_state = 744}, - [7453] = {.lex_state = 4065}, - [7454] = {.lex_state = 146}, - [7455] = {.lex_state = 144}, - [7456] = {.lex_state = 4065}, - [7457] = {.lex_state = 740}, - [7458] = {.lex_state = 403}, - [7459] = {.lex_state = 333}, - [7460] = {.lex_state = 2811}, - [7461] = {.lex_state = 146}, - [7462] = {.lex_state = 4065}, - [7463] = {.lex_state = 744}, + [7453] = {.lex_state = 744}, + [7454] = {.lex_state = 744}, + [7455] = {.lex_state = 146}, + [7456] = {.lex_state = 744}, + [7457] = {.lex_state = 744}, + [7458] = {.lex_state = 4063}, + [7459] = {.lex_state = 146}, + [7460] = {.lex_state = 744}, + [7461] = {.lex_state = 744}, + [7462] = {.lex_state = 744}, + [7463] = {.lex_state = 4063}, [7464] = {.lex_state = 744}, - [7465] = {.lex_state = 144}, - [7466] = {.lex_state = 146}, - [7467] = {.lex_state = 333}, - [7468] = {.lex_state = 744}, - [7469] = {.lex_state = 144}, - [7470] = {.lex_state = 744}, + [7465] = {.lex_state = 409}, + [7466] = {.lex_state = 4063}, + [7467] = {.lex_state = 407}, + [7468] = {.lex_state = 146}, + [7469] = {.lex_state = 146}, + [7470] = {.lex_state = 4063}, [7471] = {.lex_state = 744}, - [7472] = {.lex_state = 744}, + [7472] = {.lex_state = 4063}, [7473] = {.lex_state = 146}, - [7474] = {.lex_state = 146}, - [7475] = {.lex_state = 333}, - [7476] = {.lex_state = 4067}, - [7477] = {.lex_state = 146}, + [7474] = {.lex_state = 744}, + [7475] = {.lex_state = 744}, + [7476] = {.lex_state = 744}, + [7477] = {.lex_state = 745}, [7478] = {.lex_state = 146}, - [7479] = {.lex_state = 146}, - [7480] = {.lex_state = 144}, - [7481] = {.lex_state = 146}, - [7482] = {.lex_state = 146}, - [7483] = {.lex_state = 403}, - [7484] = {.lex_state = 144}, - [7485] = {.lex_state = 4063}, - [7486] = {.lex_state = 744}, - [7487] = {.lex_state = 144}, - [7488] = {.lex_state = 14}, + [7479] = {.lex_state = 744}, + [7480] = {.lex_state = 407}, + [7481] = {.lex_state = 407}, + [7482] = {.lex_state = 144}, + [7483] = {.lex_state = 4063}, + [7484] = {.lex_state = 744}, + [7485] = {.lex_state = 144}, + [7486] = {.lex_state = 403}, + [7487] = {.lex_state = 146}, + [7488] = {.lex_state = 4063}, [7489] = {.lex_state = 4063}, [7490] = {.lex_state = 146}, - [7491] = {.lex_state = 4063}, - [7492] = {.lex_state = 14}, - [7493] = {.lex_state = 4067}, - [7494] = {.lex_state = 744}, - [7495] = {.lex_state = 744}, - [7496] = {.lex_state = 745}, - [7497] = {.lex_state = 146}, - [7498] = {.lex_state = 407}, - [7499] = {.lex_state = 146}, - [7500] = {.lex_state = 4067}, - [7501] = {.lex_state = 4063}, - [7502] = {.lex_state = 744}, - [7503] = {.lex_state = 4063}, - [7504] = {.lex_state = 4063}, - [7505] = {.lex_state = 4063}, - [7506] = {.lex_state = 409}, - [7507] = {.lex_state = 4063}, - [7508] = {.lex_state = 4063}, + [7491] = {.lex_state = 146}, + [7492] = {.lex_state = 146}, + [7493] = {.lex_state = 814}, + [7494] = {.lex_state = 4063}, + [7495] = {.lex_state = 4063}, + [7496] = {.lex_state = 744}, + [7497] = {.lex_state = 744}, + [7498] = {.lex_state = 4063}, + [7499] = {.lex_state = 4063}, + [7500] = {.lex_state = 4063}, + [7501] = {.lex_state = 744}, + [7502] = {.lex_state = 403}, + [7503] = {.lex_state = 146}, + [7504] = {.lex_state = 4067}, + [7505] = {.lex_state = 744}, + [7506] = {.lex_state = 4063}, + [7507] = {.lex_state = 333}, + [7508] = {.lex_state = 144}, [7509] = {.lex_state = 744}, - [7510] = {.lex_state = 4067}, - [7511] = {.lex_state = 4063}, - [7512] = {.lex_state = 146}, - [7513] = {.lex_state = 146}, - [7514] = {.lex_state = 745}, - [7515] = {.lex_state = 4063}, - [7516] = {.lex_state = 4063}, - [7517] = {.lex_state = 4063}, - [7518] = {.lex_state = 146}, - [7519] = {.lex_state = 4063}, - [7520] = {.lex_state = 4063}, - [7521] = {.lex_state = 146}, - [7522] = {.lex_state = 33}, - [7523] = {.lex_state = 4063}, + [7510] = {.lex_state = 744}, + [7511] = {.lex_state = 146}, + [7512] = {.lex_state = 744}, + [7513] = {.lex_state = 744}, + [7514] = {.lex_state = 744}, + [7515] = {.lex_state = 4065}, + [7516] = {.lex_state = 146}, + [7517] = {.lex_state = 4065}, + [7518] = {.lex_state = 14}, + [7519] = {.lex_state = 333}, + [7520] = {.lex_state = 744}, + [7521] = {.lex_state = 4063}, + [7522] = {.lex_state = 744}, + [7523] = {.lex_state = 4067}, [7524] = {.lex_state = 146}, [7525] = {.lex_state = 4063}, [7526] = {.lex_state = 744}, [7527] = {.lex_state = 744}, - [7528] = {.lex_state = 4063}, - [7529] = {.lex_state = 744}, - [7530] = {.lex_state = 744}, - [7531] = {.lex_state = 146}, - [7532] = {.lex_state = 4067}, - [7533] = {.lex_state = 4067}, - [7534] = {.lex_state = 744}, - [7535] = {.lex_state = 146}, - [7536] = {.lex_state = 403}, - [7537] = {.lex_state = 146}, - [7538] = {.lex_state = 744}, + [7528] = {.lex_state = 4065}, + [7529] = {.lex_state = 4065}, + [7530] = {.lex_state = 333}, + [7531] = {.lex_state = 744}, + [7532] = {.lex_state = 4063}, + [7533] = {.lex_state = 146}, + [7534] = {.lex_state = 144}, + [7535] = {.lex_state = 4065}, + [7536] = {.lex_state = 4067}, + [7537] = {.lex_state = 4067}, + [7538] = {.lex_state = 146}, [7539] = {.lex_state = 744}, - [7540] = {.lex_state = 722}, - [7541] = {.lex_state = 744}, - [7542] = {.lex_state = 4065}, + [7540] = {.lex_state = 744}, + [7541] = {.lex_state = 146}, + [7542] = {.lex_state = 146}, [7543] = {.lex_state = 146}, - [7544] = {.lex_state = 814}, - [7545] = {.lex_state = 146}, - [7546] = {.lex_state = 144}, - [7547] = {.lex_state = 403}, - [7548] = {.lex_state = 744, .external_lex_state = 3}, - [7549] = {.lex_state = 1841}, + [7544] = {.lex_state = 146}, + [7545] = {.lex_state = 144}, + [7546] = {.lex_state = 740}, + [7547] = {.lex_state = 744}, + [7548] = {.lex_state = 744}, + [7549] = {.lex_state = 744}, [7550] = {.lex_state = 744}, - [7551] = {.lex_state = 2}, - [7552] = {.lex_state = 744}, - [7553] = {.lex_state = 744}, + [7551] = {.lex_state = 400}, + [7552] = {.lex_state = 146}, + [7553] = {.lex_state = 333}, [7554] = {.lex_state = 744}, - [7555] = {.lex_state = 740}, - [7556] = {.lex_state = 745}, - [7557] = {.lex_state = 744, .external_lex_state = 3}, + [7555] = {.lex_state = 333}, + [7556] = {.lex_state = 4067}, + [7557] = {.lex_state = 4067}, [7558] = {.lex_state = 744}, - [7559] = {.lex_state = 828}, - [7560] = {.lex_state = 744}, + [7559] = {.lex_state = 33}, + [7560] = {.lex_state = 146}, [7561] = {.lex_state = 744}, - [7562] = {.lex_state = 4065}, - [7563] = {.lex_state = 744, .external_lex_state = 3}, - [7564] = {.lex_state = 744}, - [7565] = {.lex_state = 333}, - [7566] = {.lex_state = 403}, + [7562] = {.lex_state = 146}, + [7563] = {.lex_state = 144}, + [7564] = {.lex_state = 745}, + [7565] = {.lex_state = 146}, + [7566] = {.lex_state = 333}, [7567] = {.lex_state = 744}, - [7568] = {.lex_state = 744}, + [7568] = {.lex_state = 146}, [7569] = {.lex_state = 744}, - [7570] = {.lex_state = 744}, - [7571] = {.lex_state = 397}, - [7572] = {.lex_state = 333}, - [7573] = {.lex_state = 744, .external_lex_state = 3}, - [7574] = {.lex_state = 744}, + [7570] = {.lex_state = 403}, + [7571] = {.lex_state = 744}, + [7572] = {.lex_state = 144}, + [7573] = {.lex_state = 146}, + [7574] = {.lex_state = 146}, [7575] = {.lex_state = 744}, - [7576] = {.lex_state = 744}, - [7577] = {.lex_state = 1841}, - [7578] = {.lex_state = 397}, + [7576] = {.lex_state = 144}, + [7577] = {.lex_state = 144}, + [7578] = {.lex_state = 4065}, [7579] = {.lex_state = 744}, - [7580] = {.lex_state = 744}, - [7581] = {.lex_state = 227}, - [7582] = {.lex_state = 4067}, - [7583] = {.lex_state = 744}, - [7584] = {.lex_state = 744}, - [7585] = {.lex_state = 403}, - [7586] = {.lex_state = 144}, - [7587] = {.lex_state = 333}, - [7588] = {.lex_state = 1841}, - [7589] = {.lex_state = 403}, - [7590] = {.lex_state = 227}, - [7591] = {.lex_state = 744}, - [7592] = {.lex_state = 33}, + [7580] = {.lex_state = 38}, + [7581] = {.lex_state = 744}, + [7582] = {.lex_state = 744}, + [7583] = {.lex_state = 144}, + [7584] = {.lex_state = 144}, + [7585] = {.lex_state = 146}, + [7586] = {.lex_state = 146}, + [7587] = {.lex_state = 146}, + [7588] = {.lex_state = 744}, + [7589] = {.lex_state = 146}, + [7590] = {.lex_state = 744}, + [7591] = {.lex_state = 146}, + [7592] = {.lex_state = 744}, [7593] = {.lex_state = 744}, - [7594] = {.lex_state = 745}, + [7594] = {.lex_state = 744}, [7595] = {.lex_state = 744}, [7596] = {.lex_state = 744}, [7597] = {.lex_state = 744}, - [7598] = {.lex_state = 744}, + [7598] = {.lex_state = 38}, [7599] = {.lex_state = 744}, [7600] = {.lex_state = 744}, [7601] = {.lex_state = 744}, - [7602] = {.lex_state = 4065}, + [7602] = {.lex_state = 744}, [7603] = {.lex_state = 744}, - [7604] = {.lex_state = 744}, - [7605] = {.lex_state = 744}, - [7606] = {.lex_state = 2}, - [7607] = {.lex_state = 744}, - [7608] = {.lex_state = 740}, + [7604] = {.lex_state = 745}, + [7605] = {.lex_state = 146}, + [7606] = {.lex_state = 333}, + [7607] = {.lex_state = 144}, + [7608] = {.lex_state = 4065}, [7609] = {.lex_state = 744}, - [7610] = {.lex_state = 1841}, - [7611] = {.lex_state = 744, .external_lex_state = 3}, - [7612] = {.lex_state = 744}, - [7613] = {.lex_state = 740}, - [7614] = {.lex_state = 740}, - [7615] = {.lex_state = 227}, + [7610] = {.lex_state = 744}, + [7611] = {.lex_state = 4067}, + [7612] = {.lex_state = 146}, + [7613] = {.lex_state = 144}, + [7614] = {.lex_state = 697}, + [7615] = {.lex_state = 744}, [7616] = {.lex_state = 744}, - [7617] = {.lex_state = 744, .external_lex_state = 3}, - [7618] = {.lex_state = 744, .external_lex_state = 3}, - [7619] = {.lex_state = 744}, - [7620] = {.lex_state = 1841}, - [7621] = {.lex_state = 744}, - [7622] = {.lex_state = 398}, + [7617] = {.lex_state = 4067}, + [7618] = {.lex_state = 4067}, + [7619] = {.lex_state = 144}, + [7620] = {.lex_state = 744}, + [7621] = {.lex_state = 146}, + [7622] = {.lex_state = 403}, [7623] = {.lex_state = 744}, - [7624] = {.lex_state = 2811}, + [7624] = {.lex_state = 144}, [7625] = {.lex_state = 744}, - [7626] = {.lex_state = 397}, - [7627] = {.lex_state = 333}, + [7626] = {.lex_state = 14}, + [7627] = {.lex_state = 403}, [7628] = {.lex_state = 744}, - [7629] = {.lex_state = 744}, - [7630] = {.lex_state = 403}, - [7631] = {.lex_state = 744}, - [7632] = {.lex_state = 744}, - [7633] = {.lex_state = 744}, - [7634] = {.lex_state = 744}, - [7635] = {.lex_state = 744}, - [7636] = {.lex_state = 744}, - [7637] = {.lex_state = 744, .external_lex_state = 4}, - [7638] = {.lex_state = 2}, - [7639] = {.lex_state = 744}, - [7640] = {.lex_state = 2}, - [7641] = {.lex_state = 744}, - [7642] = {.lex_state = 409}, - [7643] = {.lex_state = 2}, - [7644] = {.lex_state = 744}, - [7645] = {.lex_state = 2}, - [7646] = {.lex_state = 744}, - [7647] = {.lex_state = 744}, - [7648] = {.lex_state = 333}, - [7649] = {.lex_state = 744}, + [7629] = {.lex_state = 146}, + [7630] = {.lex_state = 745}, + [7631] = {.lex_state = 403}, + [7632] = {.lex_state = 4063}, + [7633] = {.lex_state = 4063}, + [7634] = {.lex_state = 4067}, + [7635] = {.lex_state = 407}, + [7636] = {.lex_state = 4065}, + [7637] = {.lex_state = 4067}, + [7638] = {.lex_state = 146}, + [7639] = {.lex_state = 146}, + [7640] = {.lex_state = 146}, + [7641] = {.lex_state = 146}, + [7642] = {.lex_state = 4063}, + [7643] = {.lex_state = 744}, + [7644] = {.lex_state = 146}, + [7645] = {.lex_state = 744}, + [7646] = {.lex_state = 4063}, + [7647] = {.lex_state = 4067}, + [7648] = {.lex_state = 744}, + [7649] = {.lex_state = 146}, [7650] = {.lex_state = 744}, - [7651] = {.lex_state = 1841}, + [7651] = {.lex_state = 4065}, [7652] = {.lex_state = 744}, - [7653] = {.lex_state = 740}, - [7654] = {.lex_state = 33}, - [7655] = {.lex_state = 333}, - [7656] = {.lex_state = 740}, + [7653] = {.lex_state = 146}, + [7654] = {.lex_state = 744}, + [7655] = {.lex_state = 744}, + [7656] = {.lex_state = 744}, [7657] = {.lex_state = 744}, - [7658] = {.lex_state = 333}, - [7659] = {.lex_state = 744}, + [7658] = {.lex_state = 744}, + [7659] = {.lex_state = 4063}, [7660] = {.lex_state = 744}, [7661] = {.lex_state = 744}, - [7662] = {.lex_state = 744, .external_lex_state = 3}, - [7663] = {.lex_state = 744, .external_lex_state = 3}, + [7662] = {.lex_state = 407}, + [7663] = {.lex_state = 744}, [7664] = {.lex_state = 744}, - [7665] = {.lex_state = 744}, - [7666] = {.lex_state = 403}, + [7665] = {.lex_state = 814}, + [7666] = {.lex_state = 744}, [7667] = {.lex_state = 744}, - [7668] = {.lex_state = 744}, - [7669] = {.lex_state = 36}, + [7668] = {.lex_state = 391}, + [7669] = {.lex_state = 744}, [7670] = {.lex_state = 744}, [7671] = {.lex_state = 744}, - [7672] = {.lex_state = 396}, - [7673] = {.lex_state = 333}, - [7674] = {.lex_state = 744, .external_lex_state = 3}, - [7675] = {.lex_state = 744}, + [7672] = {.lex_state = 744}, + [7673] = {.lex_state = 4063}, + [7674] = {.lex_state = 744}, + [7675] = {.lex_state = 4063}, [7676] = {.lex_state = 744}, - [7677] = {.lex_state = 403}, + [7677] = {.lex_state = 744}, [7678] = {.lex_state = 744}, [7679] = {.lex_state = 744}, [7680] = {.lex_state = 744}, - [7681] = {.lex_state = 744}, - [7682] = {.lex_state = 33}, + [7681] = {.lex_state = 4063}, + [7682] = {.lex_state = 744}, [7683] = {.lex_state = 744}, - [7684] = {.lex_state = 744}, - [7685] = {.lex_state = 744}, + [7684] = {.lex_state = 4063}, + [7685] = {.lex_state = 722}, [7686] = {.lex_state = 333}, - [7687] = {.lex_state = 744}, + [7687] = {.lex_state = 146}, [7688] = {.lex_state = 744}, - [7689] = {.lex_state = 710}, + [7689] = {.lex_state = 744}, [7690] = {.lex_state = 744}, [7691] = {.lex_state = 744}, [7692] = {.lex_state = 744}, - [7693] = {.lex_state = 4063}, - [7694] = {.lex_state = 744, .external_lex_state = 3}, + [7693] = {.lex_state = 333}, + [7694] = {.lex_state = 744}, [7695] = {.lex_state = 744}, - [7696] = {.lex_state = 1841}, + [7696] = {.lex_state = 744}, [7697] = {.lex_state = 744}, - [7698] = {.lex_state = 744, .external_lex_state = 4}, - [7699] = {.lex_state = 1841}, - [7700] = {.lex_state = 744}, - [7701] = {.lex_state = 2}, - [7702] = {.lex_state = 744}, - [7703] = {.lex_state = 4067}, - [7704] = {.lex_state = 4067}, - [7705] = {.lex_state = 744}, - [7706] = {.lex_state = 333}, - [7707] = {.lex_state = 744, .external_lex_state = 3}, - [7708] = {.lex_state = 744}, + [7698] = {.lex_state = 4063}, + [7699] = {.lex_state = 146}, + [7700] = {.lex_state = 4063}, + [7701] = {.lex_state = 336}, + [7702] = {.lex_state = 146}, + [7703] = {.lex_state = 14}, + [7704] = {.lex_state = 744}, + [7705] = {.lex_state = 146}, + [7706] = {.lex_state = 4067}, + [7707] = {.lex_state = 4063}, + [7708] = {.lex_state = 2811}, [7709] = {.lex_state = 744}, - [7710] = {.lex_state = 14}, + [7710] = {.lex_state = 333}, [7711] = {.lex_state = 744}, [7712] = {.lex_state = 744}, - [7713] = {.lex_state = 1841}, - [7714] = {.lex_state = 828}, + [7713] = {.lex_state = 710}, + [7714] = {.lex_state = 744}, [7715] = {.lex_state = 744, .external_lex_state = 3}, - [7716] = {.lex_state = 744, .external_lex_state = 3}, - [7717] = {.lex_state = 740}, - [7718] = {.lex_state = 744}, - [7719] = {.lex_state = 744, .external_lex_state = 3}, - [7720] = {.lex_state = 744, .external_lex_state = 4}, - [7721] = {.lex_state = 744}, - [7722] = {.lex_state = 2}, - [7723] = {.lex_state = 403}, - [7724] = {.lex_state = 744, .external_lex_state = 3}, - [7725] = {.lex_state = 744, .external_lex_state = 3}, - [7726] = {.lex_state = 744}, - [7727] = {.lex_state = 333}, - [7728] = {.lex_state = 744, .external_lex_state = 4}, - [7729] = {.lex_state = 33}, + [7716] = {.lex_state = 744}, + [7717] = {.lex_state = 744}, + [7718] = {.lex_state = 740}, + [7719] = {.lex_state = 744}, + [7720] = {.lex_state = 333}, + [7721] = {.lex_state = 744, .external_lex_state = 3}, + [7722] = {.lex_state = 744}, + [7723] = {.lex_state = 744}, + [7724] = {.lex_state = 740}, + [7725] = {.lex_state = 1841}, + [7726] = {.lex_state = 333}, + [7727] = {.lex_state = 744}, + [7728] = {.lex_state = 744, .external_lex_state = 3}, + [7729] = {.lex_state = 398}, [7730] = {.lex_state = 744}, - [7731] = {.lex_state = 744, .external_lex_state = 3}, - [7732] = {.lex_state = 744}, - [7733] = {.lex_state = 744}, - [7734] = {.lex_state = 744, .external_lex_state = 3}, - [7735] = {.lex_state = 744, .external_lex_state = 4}, - [7736] = {.lex_state = 2}, - [7737] = {.lex_state = 744}, - [7738] = {.lex_state = 744, .external_lex_state = 3}, - [7739] = {.lex_state = 744}, - [7740] = {.lex_state = 744}, + [7731] = {.lex_state = 744}, + [7732] = {.lex_state = 397}, + [7733] = {.lex_state = 1841}, + [7734] = {.lex_state = 403}, + [7735] = {.lex_state = 333}, + [7736] = {.lex_state = 744, .external_lex_state = 3}, + [7737] = {.lex_state = 744, .external_lex_state = 3}, + [7738] = {.lex_state = 33}, + [7739] = {.lex_state = 333}, + [7740] = {.lex_state = 740}, [7741] = {.lex_state = 398}, - [7742] = {.lex_state = 333}, + [7742] = {.lex_state = 744}, [7743] = {.lex_state = 744, .external_lex_state = 3}, - [7744] = {.lex_state = 744}, - [7745] = {.lex_state = 403}, - [7746] = {.lex_state = 744}, - [7747] = {.lex_state = 333}, + [7744] = {.lex_state = 227}, + [7745] = {.lex_state = 333}, + [7746] = {.lex_state = 403}, + [7747] = {.lex_state = 744}, [7748] = {.lex_state = 744}, - [7749] = {.lex_state = 744, .external_lex_state = 4}, - [7750] = {.lex_state = 2}, - [7751] = {.lex_state = 744, .external_lex_state = 3}, - [7752] = {.lex_state = 2}, - [7753] = {.lex_state = 403}, + [7749] = {.lex_state = 744}, + [7750] = {.lex_state = 744}, + [7751] = {.lex_state = 33}, + [7752] = {.lex_state = 744}, + [7753] = {.lex_state = 744}, [7754] = {.lex_state = 744}, - [7755] = {.lex_state = 33}, - [7756] = {.lex_state = 398}, - [7757] = {.lex_state = 744, .external_lex_state = 3}, + [7755] = {.lex_state = 828}, + [7756] = {.lex_state = 227}, + [7757] = {.lex_state = 403}, [7758] = {.lex_state = 744}, - [7759] = {.lex_state = 4081}, - [7760] = {.lex_state = 744}, + [7759] = {.lex_state = 14}, + [7760] = {.lex_state = 744, .external_lex_state = 3}, [7761] = {.lex_state = 744}, - [7762] = {.lex_state = 744, .external_lex_state = 3}, - [7763] = {.lex_state = 744, .external_lex_state = 4}, - [7764] = {.lex_state = 2}, + [7762] = {.lex_state = 744}, + [7763] = {.lex_state = 744}, + [7764] = {.lex_state = 333}, [7765] = {.lex_state = 744}, - [7766] = {.lex_state = 744}, + [7766] = {.lex_state = 333}, [7767] = {.lex_state = 744}, - [7768] = {.lex_state = 744}, - [7769] = {.lex_state = 744, .external_lex_state = 3}, - [7770] = {.lex_state = 744}, + [7768] = {.lex_state = 744, .external_lex_state = 3}, + [7769] = {.lex_state = 744}, + [7770] = {.lex_state = 36}, [7771] = {.lex_state = 744}, [7772] = {.lex_state = 744}, [7773] = {.lex_state = 744}, [7774] = {.lex_state = 744}, - [7775] = {.lex_state = 744, .external_lex_state = 3}, - [7776] = {.lex_state = 744, .external_lex_state = 4}, - [7777] = {.lex_state = 2}, + [7775] = {.lex_state = 744}, + [7776] = {.lex_state = 2}, + [7777] = {.lex_state = 744}, [7778] = {.lex_state = 744}, - [7779] = {.lex_state = 33}, - [7780] = {.lex_state = 1841}, + [7779] = {.lex_state = 333}, + [7780] = {.lex_state = 333}, [7781] = {.lex_state = 744}, [7782] = {.lex_state = 2}, [7783] = {.lex_state = 744, .external_lex_state = 3}, [7784] = {.lex_state = 744}, - [7785] = {.lex_state = 744}, - [7786] = {.lex_state = 744}, - [7787] = {.lex_state = 744}, - [7788] = {.lex_state = 744, .external_lex_state = 3}, - [7789] = {.lex_state = 744, .external_lex_state = 4}, - [7790] = {.lex_state = 2}, + [7785] = {.lex_state = 403}, + [7786] = {.lex_state = 2}, + [7787] = {.lex_state = 1841}, + [7788] = {.lex_state = 403}, + [7789] = {.lex_state = 744}, + [7790] = {.lex_state = 744}, [7791] = {.lex_state = 744}, - [7792] = {.lex_state = 744}, - [7793] = {.lex_state = 744}, - [7794] = {.lex_state = 744, .external_lex_state = 3}, - [7795] = {.lex_state = 744, .external_lex_state = 3}, + [7792] = {.lex_state = 397}, + [7793] = {.lex_state = 744, .external_lex_state = 3}, + [7794] = {.lex_state = 744}, + [7795] = {.lex_state = 744}, [7796] = {.lex_state = 744}, [7797] = {.lex_state = 744}, - [7798] = {.lex_state = 1841}, - [7799] = {.lex_state = 2}, - [7800] = {.lex_state = 744, .external_lex_state = 3}, - [7801] = {.lex_state = 744, .external_lex_state = 4}, - [7802] = {.lex_state = 2}, - [7803] = {.lex_state = 403}, - [7804] = {.lex_state = 33}, + [7798] = {.lex_state = 744}, + [7799] = {.lex_state = 1841}, + [7800] = {.lex_state = 744}, + [7801] = {.lex_state = 744}, + [7802] = {.lex_state = 403}, + [7803] = {.lex_state = 744, .external_lex_state = 4}, + [7804] = {.lex_state = 744}, [7805] = {.lex_state = 744}, - [7806] = {.lex_state = 744}, - [7807] = {.lex_state = 744}, - [7808] = {.lex_state = 744, .external_lex_state = 3}, - [7809] = {.lex_state = 710}, - [7810] = {.lex_state = 2}, - [7811] = {.lex_state = 403}, - [7812] = {.lex_state = 1841}, - [7813] = {.lex_state = 744}, - [7814] = {.lex_state = 744, .external_lex_state = 4}, - [7815] = {.lex_state = 2}, - [7816] = {.lex_state = 744, .external_lex_state = 3}, - [7817] = {.lex_state = 333}, - [7818] = {.lex_state = 4065}, - [7819] = {.lex_state = 740}, - [7820] = {.lex_state = 744}, - [7821] = {.lex_state = 403}, + [7806] = {.lex_state = 2}, + [7807] = {.lex_state = 333}, + [7808] = {.lex_state = 403}, + [7809] = {.lex_state = 744, .external_lex_state = 3}, + [7810] = {.lex_state = 227}, + [7811] = {.lex_state = 2}, + [7812] = {.lex_state = 4063}, + [7813] = {.lex_state = 1841}, + [7814] = {.lex_state = 744}, + [7815] = {.lex_state = 744}, + [7816] = {.lex_state = 33}, + [7817] = {.lex_state = 744}, + [7818] = {.lex_state = 744}, + [7819] = {.lex_state = 744}, + [7820] = {.lex_state = 745}, + [7821] = {.lex_state = 744}, [7822] = {.lex_state = 744}, [7823] = {.lex_state = 744}, - [7824] = {.lex_state = 744}, + [7824] = {.lex_state = 744, .external_lex_state = 3}, [7825] = {.lex_state = 744}, - [7826] = {.lex_state = 744, .external_lex_state = 3}, - [7827] = {.lex_state = 744, .external_lex_state = 4}, - [7828] = {.lex_state = 2}, - [7829] = {.lex_state = 744}, - [7830] = {.lex_state = 744}, + [7826] = {.lex_state = 744}, + [7827] = {.lex_state = 1841}, + [7828] = {.lex_state = 744}, + [7829] = {.lex_state = 395}, + [7830] = {.lex_state = 2}, [7831] = {.lex_state = 744}, - [7832] = {.lex_state = 744}, - [7833] = {.lex_state = 744}, - [7834] = {.lex_state = 744}, - [7835] = {.lex_state = 744, .external_lex_state = 3}, + [7832] = {.lex_state = 1841}, + [7833] = {.lex_state = 33}, + [7834] = {.lex_state = 744, .external_lex_state = 3}, + [7835] = {.lex_state = 744}, [7836] = {.lex_state = 744}, [7837] = {.lex_state = 744}, - [7838] = {.lex_state = 744}, - [7839] = {.lex_state = 33}, - [7840] = {.lex_state = 744, .external_lex_state = 4}, - [7841] = {.lex_state = 2}, - [7842] = {.lex_state = 744}, - [7843] = {.lex_state = 744, .external_lex_state = 3}, + [7838] = {.lex_state = 744, .external_lex_state = 3}, + [7839] = {.lex_state = 744, .external_lex_state = 3}, + [7840] = {.lex_state = 744, .external_lex_state = 3}, + [7841] = {.lex_state = 744}, + [7842] = {.lex_state = 333}, + [7843] = {.lex_state = 744}, [7844] = {.lex_state = 744}, - [7845] = {.lex_state = 744, .external_lex_state = 3}, - [7846] = {.lex_state = 744}, - [7847] = {.lex_state = 744}, - [7848] = {.lex_state = 744, .external_lex_state = 3}, - [7849] = {.lex_state = 744}, - [7850] = {.lex_state = 1841}, - [7851] = {.lex_state = 744}, - [7852] = {.lex_state = 744}, - [7853] = {.lex_state = 744, .external_lex_state = 4}, - [7854] = {.lex_state = 2}, - [7855] = {.lex_state = 744, .external_lex_state = 3}, - [7856] = {.lex_state = 1841}, - [7857] = {.lex_state = 744}, - [7858] = {.lex_state = 1841}, - [7859] = {.lex_state = 744, .external_lex_state = 3}, + [7845] = {.lex_state = 744}, + [7846] = {.lex_state = 4067}, + [7847] = {.lex_state = 403}, + [7848] = {.lex_state = 1841}, + [7849] = {.lex_state = 744, .external_lex_state = 3}, + [7850] = {.lex_state = 744}, + [7851] = {.lex_state = 744, .external_lex_state = 3}, + [7852] = {.lex_state = 2}, + [7853] = {.lex_state = 740}, + [7854] = {.lex_state = 744}, + [7855] = {.lex_state = 740}, + [7856] = {.lex_state = 744}, + [7857] = {.lex_state = 744, .external_lex_state = 3}, + [7858] = {.lex_state = 740}, + [7859] = {.lex_state = 744}, [7860] = {.lex_state = 744}, [7861] = {.lex_state = 744}, - [7862] = {.lex_state = 744, .external_lex_state = 3}, - [7863] = {.lex_state = 744, .external_lex_state = 4}, - [7864] = {.lex_state = 2}, + [7862] = {.lex_state = 744}, + [7863] = {.lex_state = 744}, + [7864] = {.lex_state = 744, .external_lex_state = 4}, [7865] = {.lex_state = 744, .external_lex_state = 3}, - [7866] = {.lex_state = 333}, - [7867] = {.lex_state = 744}, - [7868] = {.lex_state = 744}, - [7869] = {.lex_state = 744}, - [7870] = {.lex_state = 1841}, - [7871] = {.lex_state = 744}, - [7872] = {.lex_state = 744}, + [7866] = {.lex_state = 744}, + [7867] = {.lex_state = 2}, + [7868] = {.lex_state = 1841}, + [7869] = {.lex_state = 33}, + [7870] = {.lex_state = 744}, + [7871] = {.lex_state = 744, .external_lex_state = 3}, + [7872] = {.lex_state = 409}, [7873] = {.lex_state = 744, .external_lex_state = 4}, [7874] = {.lex_state = 744}, - [7875] = {.lex_state = 744, .external_lex_state = 3}, + [7875] = {.lex_state = 744}, [7876] = {.lex_state = 744}, [7877] = {.lex_state = 744}, [7878] = {.lex_state = 744}, - [7879] = {.lex_state = 744, .external_lex_state = 3}, + [7879] = {.lex_state = 744}, [7880] = {.lex_state = 744}, [7881] = {.lex_state = 744}, - [7882] = {.lex_state = 744, .external_lex_state = 4}, - [7883] = {.lex_state = 744, .external_lex_state = 3}, - [7884] = {.lex_state = 740}, - [7885] = {.lex_state = 744}, - [7886] = {.lex_state = 744, .external_lex_state = 3}, - [7887] = {.lex_state = 740}, - [7888] = {.lex_state = 398}, - [7889] = {.lex_state = 744, .external_lex_state = 3}, - [7890] = {.lex_state = 744}, - [7891] = {.lex_state = 744, .external_lex_state = 4}, - [7892] = {.lex_state = 744, .external_lex_state = 4}, - [7893] = {.lex_state = 2}, + [7882] = {.lex_state = 744}, + [7883] = {.lex_state = 744}, + [7884] = {.lex_state = 333}, + [7885] = {.lex_state = 744, .external_lex_state = 3}, + [7886] = {.lex_state = 744, .external_lex_state = 4}, + [7887] = {.lex_state = 744}, + [7888] = {.lex_state = 2}, + [7889] = {.lex_state = 2}, + [7890] = {.lex_state = 403}, + [7891] = {.lex_state = 744}, + [7892] = {.lex_state = 744}, + [7893] = {.lex_state = 1841}, [7894] = {.lex_state = 744}, - [7895] = {.lex_state = 744}, - [7896] = {.lex_state = 14}, + [7895] = {.lex_state = 744, .external_lex_state = 3}, + [7896] = {.lex_state = 398}, [7897] = {.lex_state = 744}, - [7898] = {.lex_state = 744}, + [7898] = {.lex_state = 333}, [7899] = {.lex_state = 744}, - [7900] = {.lex_state = 744, .external_lex_state = 4}, + [7900] = {.lex_state = 287}, [7901] = {.lex_state = 744, .external_lex_state = 4}, - [7902] = {.lex_state = 744, .external_lex_state = 4}, - [7903] = {.lex_state = 744, .external_lex_state = 4}, - [7904] = {.lex_state = 744, .external_lex_state = 4}, - [7905] = {.lex_state = 744, .external_lex_state = 4}, - [7906] = {.lex_state = 744, .external_lex_state = 4}, - [7907] = {.lex_state = 744, .external_lex_state = 4}, - [7908] = {.lex_state = 744, .external_lex_state = 4}, - [7909] = {.lex_state = 744, .external_lex_state = 4}, - [7910] = {.lex_state = 744, .external_lex_state = 4}, - [7911] = {.lex_state = 744, .external_lex_state = 4}, - [7912] = {.lex_state = 744, .external_lex_state = 4}, - [7913] = {.lex_state = 744, .external_lex_state = 4}, - [7914] = {.lex_state = 744, .external_lex_state = 4}, + [7902] = {.lex_state = 2}, + [7903] = {.lex_state = 1841}, + [7904] = {.lex_state = 403}, + [7905] = {.lex_state = 744, .external_lex_state = 3}, + [7906] = {.lex_state = 333}, + [7907] = {.lex_state = 744}, + [7908] = {.lex_state = 744}, + [7909] = {.lex_state = 33}, + [7910] = {.lex_state = 744, .external_lex_state = 3}, + [7911] = {.lex_state = 744}, + [7912] = {.lex_state = 744}, + [7913] = {.lex_state = 403}, + [7914] = {.lex_state = 740}, [7915] = {.lex_state = 744, .external_lex_state = 4}, - [7916] = {.lex_state = 744, .external_lex_state = 4}, - [7917] = {.lex_state = 744, .external_lex_state = 4}, - [7918] = {.lex_state = 744, .external_lex_state = 4}, - [7919] = {.lex_state = 744, .external_lex_state = 4}, - [7920] = {.lex_state = 744, .external_lex_state = 4}, - [7921] = {.lex_state = 744, .external_lex_state = 4}, - [7922] = {.lex_state = 744, .external_lex_state = 4}, - [7923] = {.lex_state = 744, .external_lex_state = 4}, - [7924] = {.lex_state = 744, .external_lex_state = 4}, - [7925] = {.lex_state = 744, .external_lex_state = 4}, - [7926] = {.lex_state = 744, .external_lex_state = 4}, - [7927] = {.lex_state = 744, .external_lex_state = 4}, - [7928] = {.lex_state = 744, .external_lex_state = 4}, + [7916] = {.lex_state = 2}, + [7917] = {.lex_state = 744, .external_lex_state = 3}, + [7918] = {.lex_state = 744}, + [7919] = {.lex_state = 744}, + [7920] = {.lex_state = 744}, + [7921] = {.lex_state = 744}, + [7922] = {.lex_state = 744}, + [7923] = {.lex_state = 744}, + [7924] = {.lex_state = 744}, + [7925] = {.lex_state = 2}, + [7926] = {.lex_state = 744}, + [7927] = {.lex_state = 744, .external_lex_state = 3}, + [7928] = {.lex_state = 744}, [7929] = {.lex_state = 744, .external_lex_state = 4}, - [7930] = {.lex_state = 744, .external_lex_state = 4}, - [7931] = {.lex_state = 2}, - [7932] = {.lex_state = 744}, - [7933] = {.lex_state = 144}, + [7930] = {.lex_state = 2}, + [7931] = {.lex_state = 744, .external_lex_state = 3}, + [7932] = {.lex_state = 333}, + [7933] = {.lex_state = 744}, [7934] = {.lex_state = 744}, [7935] = {.lex_state = 744}, [7936] = {.lex_state = 744}, [7937] = {.lex_state = 744}, - [7938] = {.lex_state = 744}, - [7939] = {.lex_state = 744}, - [7940] = {.lex_state = 1841}, - [7941] = {.lex_state = 1841}, - [7942] = {.lex_state = 744}, - [7943] = {.lex_state = 744}, - [7944] = {.lex_state = 740}, + [7938] = {.lex_state = 1841}, + [7939] = {.lex_state = 744, .external_lex_state = 3}, + [7940] = {.lex_state = 33}, + [7941] = {.lex_state = 744}, + [7942] = {.lex_state = 744, .external_lex_state = 4}, + [7943] = {.lex_state = 2}, + [7944] = {.lex_state = 744}, [7945] = {.lex_state = 744}, - [7946] = {.lex_state = 227}, - [7947] = {.lex_state = 403}, - [7948] = {.lex_state = 710}, - [7949] = {.lex_state = 287}, + [7946] = {.lex_state = 744}, + [7947] = {.lex_state = 744}, + [7948] = {.lex_state = 744, .external_lex_state = 3}, + [7949] = {.lex_state = 744}, [7950] = {.lex_state = 744}, - [7951] = {.lex_state = 744, .external_lex_state = 3}, - [7952] = {.lex_state = 710}, + [7951] = {.lex_state = 744}, + [7952] = {.lex_state = 744, .external_lex_state = 3}, [7953] = {.lex_state = 744}, - [7954] = {.lex_state = 744}, - [7955] = {.lex_state = 744}, - [7956] = {.lex_state = 740}, + [7954] = {.lex_state = 744, .external_lex_state = 4}, + [7955] = {.lex_state = 2}, + [7956] = {.lex_state = 744}, [7957] = {.lex_state = 744}, - [7958] = {.lex_state = 744}, - [7959] = {.lex_state = 744}, + [7958] = {.lex_state = 144}, + [7959] = {.lex_state = 744, .external_lex_state = 3}, [7960] = {.lex_state = 744}, - [7961] = {.lex_state = 4063}, - [7962] = {.lex_state = 36}, + [7961] = {.lex_state = 744, .external_lex_state = 3}, + [7962] = {.lex_state = 744}, [7963] = {.lex_state = 744}, - [7964] = {.lex_state = 744}, - [7965] = {.lex_state = 744}, - [7966] = {.lex_state = 144}, - [7967] = {.lex_state = 744}, - [7968] = {.lex_state = 744, .external_lex_state = 3}, + [7964] = {.lex_state = 333}, + [7965] = {.lex_state = 403}, + [7966] = {.lex_state = 710}, + [7967] = {.lex_state = 397}, + [7968] = {.lex_state = 2}, [7969] = {.lex_state = 744}, - [7970] = {.lex_state = 744}, + [7970] = {.lex_state = 398}, [7971] = {.lex_state = 744}, - [7972] = {.lex_state = 2}, - [7973] = {.lex_state = 333}, - [7974] = {.lex_state = 403}, - [7975] = {.lex_state = 395}, + [7972] = {.lex_state = 744}, + [7973] = {.lex_state = 744, .external_lex_state = 3}, + [7974] = {.lex_state = 1841}, + [7975] = {.lex_state = 744}, [7976] = {.lex_state = 744}, - [7977] = {.lex_state = 744}, + [7977] = {.lex_state = 1841}, [7978] = {.lex_state = 744, .external_lex_state = 3}, [7979] = {.lex_state = 744}, - [7980] = {.lex_state = 744}, - [7981] = {.lex_state = 744}, - [7982] = {.lex_state = 333}, + [7980] = {.lex_state = 744, .external_lex_state = 4}, + [7981] = {.lex_state = 2}, + [7982] = {.lex_state = 744}, [7983] = {.lex_state = 744}, - [7984] = {.lex_state = 740}, - [7985] = {.lex_state = 2}, - [7986] = {.lex_state = 744}, + [7984] = {.lex_state = 744}, + [7985] = {.lex_state = 744, .external_lex_state = 4}, + [7986] = {.lex_state = 2811}, [7987] = {.lex_state = 744}, [7988] = {.lex_state = 744}, [7989] = {.lex_state = 744}, - [7990] = {.lex_state = 744}, - [7991] = {.lex_state = 333}, + [7990] = {.lex_state = 396}, + [7991] = {.lex_state = 14}, [7992] = {.lex_state = 744}, - [7993] = {.lex_state = 744}, - [7994] = {.lex_state = 333}, - [7995] = {.lex_state = 744}, - [7996] = {.lex_state = 1841}, + [7993] = {.lex_state = 744, .external_lex_state = 4}, + [7994] = {.lex_state = 2}, + [7995] = {.lex_state = 403}, + [7996] = {.lex_state = 744}, [7997] = {.lex_state = 744}, [7998] = {.lex_state = 744}, - [7999] = {.lex_state = 4063}, - [8000] = {.lex_state = 403}, + [7999] = {.lex_state = 710}, + [8000] = {.lex_state = 1841}, [8001] = {.lex_state = 744}, - [8002] = {.lex_state = 744}, - [8003] = {.lex_state = 744}, - [8004] = {.lex_state = 1841}, - [8005] = {.lex_state = 744}, - [8006] = {(TSStateId)(-1)}, + [8002] = {.lex_state = 1841}, + [8003] = {.lex_state = 2}, + [8004] = {.lex_state = 740}, + [8005] = {.lex_state = 4081}, + [8006] = {.lex_state = 744, .external_lex_state = 4}, + [8007] = {.lex_state = 2}, + [8008] = {.lex_state = 33}, + [8009] = {.lex_state = 744}, + [8010] = {.lex_state = 744}, + [8011] = {.lex_state = 744}, + [8012] = {.lex_state = 744, .external_lex_state = 3}, + [8013] = {.lex_state = 744}, + [8014] = {.lex_state = 744}, + [8015] = {.lex_state = 744}, + [8016] = {.lex_state = 745}, + [8017] = {.lex_state = 744}, + [8018] = {.lex_state = 744}, + [8019] = {.lex_state = 744, .external_lex_state = 4}, + [8020] = {.lex_state = 2}, + [8021] = {.lex_state = 744}, + [8022] = {.lex_state = 744}, + [8023] = {.lex_state = 744}, + [8024] = {.lex_state = 4063}, + [8025] = {.lex_state = 1841}, + [8026] = {.lex_state = 744}, + [8027] = {.lex_state = 1841}, + [8028] = {.lex_state = 744}, + [8029] = {.lex_state = 744, .external_lex_state = 4}, + [8030] = {.lex_state = 2}, + [8031] = {.lex_state = 740}, + [8032] = {.lex_state = 744, .external_lex_state = 3}, + [8033] = {.lex_state = 744}, + [8034] = {.lex_state = 744, .external_lex_state = 3}, + [8035] = {.lex_state = 744}, + [8036] = {.lex_state = 744}, + [8037] = {.lex_state = 744, .external_lex_state = 3}, + [8038] = {.lex_state = 744}, + [8039] = {.lex_state = 744, .external_lex_state = 4}, + [8040] = {.lex_state = 744}, + [8041] = {.lex_state = 744}, + [8042] = {.lex_state = 744}, + [8043] = {.lex_state = 227}, + [8044] = {.lex_state = 744}, + [8045] = {.lex_state = 744}, + [8046] = {.lex_state = 744, .external_lex_state = 3}, + [8047] = {.lex_state = 744}, + [8048] = {.lex_state = 744, .external_lex_state = 4}, + [8049] = {.lex_state = 744}, + [8050] = {.lex_state = 4065}, + [8051] = {.lex_state = 744}, + [8052] = {.lex_state = 744}, + [8053] = {.lex_state = 744}, + [8054] = {.lex_state = 333}, + [8055] = {.lex_state = 744, .external_lex_state = 3}, + [8056] = {.lex_state = 403}, + [8057] = {.lex_state = 744, .external_lex_state = 4}, + [8058] = {.lex_state = 2}, + [8059] = {.lex_state = 744}, + [8060] = {.lex_state = 744, .external_lex_state = 3}, + [8061] = {.lex_state = 2}, + [8062] = {.lex_state = 744}, + [8063] = {.lex_state = 4065}, + [8064] = {.lex_state = 744}, + [8065] = {.lex_state = 744}, + [8066] = {.lex_state = 744, .external_lex_state = 4}, + [8067] = {.lex_state = 744, .external_lex_state = 4}, + [8068] = {.lex_state = 744, .external_lex_state = 4}, + [8069] = {.lex_state = 744, .external_lex_state = 4}, + [8070] = {.lex_state = 744, .external_lex_state = 4}, + [8071] = {.lex_state = 744, .external_lex_state = 4}, + [8072] = {.lex_state = 744, .external_lex_state = 4}, + [8073] = {.lex_state = 744, .external_lex_state = 4}, + [8074] = {.lex_state = 744, .external_lex_state = 4}, + [8075] = {.lex_state = 744, .external_lex_state = 4}, + [8076] = {.lex_state = 744, .external_lex_state = 4}, + [8077] = {.lex_state = 744, .external_lex_state = 4}, + [8078] = {.lex_state = 744, .external_lex_state = 4}, + [8079] = {.lex_state = 744, .external_lex_state = 4}, + [8080] = {.lex_state = 744, .external_lex_state = 4}, + [8081] = {.lex_state = 744, .external_lex_state = 4}, + [8082] = {.lex_state = 744, .external_lex_state = 4}, + [8083] = {.lex_state = 744, .external_lex_state = 4}, + [8084] = {.lex_state = 744, .external_lex_state = 4}, + [8085] = {.lex_state = 744, .external_lex_state = 4}, + [8086] = {.lex_state = 744, .external_lex_state = 4}, + [8087] = {.lex_state = 744, .external_lex_state = 4}, + [8088] = {.lex_state = 744, .external_lex_state = 4}, + [8089] = {.lex_state = 744, .external_lex_state = 4}, + [8090] = {.lex_state = 744, .external_lex_state = 4}, + [8091] = {.lex_state = 744, .external_lex_state = 4}, + [8092] = {.lex_state = 744, .external_lex_state = 4}, + [8093] = {.lex_state = 744, .external_lex_state = 4}, + [8094] = {.lex_state = 744, .external_lex_state = 4}, + [8095] = {.lex_state = 744, .external_lex_state = 4}, + [8096] = {.lex_state = 744, .external_lex_state = 4}, + [8097] = {.lex_state = 744}, + [8098] = {.lex_state = 744}, + [8099] = {.lex_state = 144}, + [8100] = {.lex_state = 744}, + [8101] = {.lex_state = 1841}, + [8102] = {.lex_state = 744}, + [8103] = {.lex_state = 744}, + [8104] = {.lex_state = 744}, + [8105] = {.lex_state = 4063}, + [8106] = {.lex_state = 744}, + [8107] = {.lex_state = 744}, + [8108] = {.lex_state = 744}, + [8109] = {.lex_state = 744}, + [8110] = {.lex_state = 744, .external_lex_state = 3}, + [8111] = {.lex_state = 4067}, + [8112] = {.lex_state = 744}, + [8113] = {.lex_state = 744}, + [8114] = {.lex_state = 710}, + [8115] = {.lex_state = 710}, + [8116] = {.lex_state = 744}, + [8117] = {.lex_state = 744}, + [8118] = {.lex_state = 744}, + [8119] = {.lex_state = 710}, + [8120] = {.lex_state = 710}, + [8121] = {.lex_state = 744}, + [8122] = {.lex_state = 710}, + [8123] = {.lex_state = 744}, + [8124] = {.lex_state = 744}, + [8125] = {.lex_state = 403}, + [8126] = {.lex_state = 744}, + [8127] = {.lex_state = 828}, + [8128] = {.lex_state = 744}, + [8129] = {.lex_state = 744}, + [8130] = {.lex_state = 744, .external_lex_state = 3}, + [8131] = {.lex_state = 744}, + [8132] = {.lex_state = 744}, + [8133] = {.lex_state = 36}, + [8134] = {.lex_state = 144}, + [8135] = {.lex_state = 744}, + [8136] = {.lex_state = 744}, + [8137] = {.lex_state = 744}, + [8138] = {.lex_state = 1841}, + [8139] = {.lex_state = 2}, + [8140] = {.lex_state = 744}, + [8141] = {.lex_state = 740}, + [8142] = {.lex_state = 744}, + [8143] = {.lex_state = 740}, + [8144] = {.lex_state = 744}, + [8145] = {.lex_state = 744}, + [8146] = {.lex_state = 744}, + [8147] = {.lex_state = 744}, + [8148] = {.lex_state = 744}, + [8149] = {.lex_state = 333}, + [8150] = {.lex_state = 4065}, + [8151] = {.lex_state = 744}, + [8152] = {.lex_state = 4067}, + [8153] = {.lex_state = 744}, + [8154] = {.lex_state = 744}, + [8155] = {.lex_state = 744, .external_lex_state = 3}, + [8156] = {.lex_state = 740}, + [8157] = {.lex_state = 744}, + [8158] = {.lex_state = 744}, + [8159] = {.lex_state = 744}, + [8160] = {.lex_state = 333}, + [8161] = {.lex_state = 744, .external_lex_state = 3}, + [8162] = {.lex_state = 744, .external_lex_state = 3}, + [8163] = {.lex_state = 744}, + [8164] = {.lex_state = 744}, + [8165] = {.lex_state = 744, .external_lex_state = 3}, + [8166] = {.lex_state = 744}, + [8167] = {.lex_state = 2}, + [8168] = {.lex_state = 744, .external_lex_state = 3}, + [8169] = {.lex_state = 744}, + [8170] = {.lex_state = 744}, + [8171] = {.lex_state = 740}, + [8172] = {.lex_state = 744, .external_lex_state = 3}, + [8173] = {.lex_state = 744, .external_lex_state = 4}, + [8174] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -62505,83 +62827,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_end] = ACTIONS(1), }, [1] = { - [sym_nu_script] = STATE(7688), - [sym_shebang] = STATE(73), - [sym__block_body_statement] = STATE(6678), - [sym__declaration] = STATE(7048), - [sym_decl_alias] = STATE(7040), - [sym_stmt_let] = STATE(7055), - [sym_stmt_mut] = STATE(7055), - [sym_stmt_const] = STATE(7055), - [sym_assignment] = STATE(7055), - [sym__mutable_assignment_pattern] = STATE(7059), - [sym__statement] = STATE(7048), - [sym_pipeline] = STATE(7055), - [sym__block_body] = STATE(7631), - [sym_cmd_identifier] = STATE(4748), - [sym_decl_def] = STATE(7040), - [sym_decl_export] = STATE(7040), - [sym_decl_extern] = STATE(7040), - [sym_decl_module] = STATE(7040), - [sym_decl_use] = STATE(7040), - [sym__ctrl_statement] = STATE(7055), - [sym__ctrl_expression] = STATE(5131), - [sym_ctrl_for] = STATE(7087), - [sym_ctrl_loop] = STATE(7087), - [sym_ctrl_error] = STATE(7087), - [sym_ctrl_while] = STATE(7087), - [sym_ctrl_do] = STATE(5133), - [sym_ctrl_if] = STATE(5133), - [sym_ctrl_match] = STATE(5133), - [sym_ctrl_try] = STATE(5133), - [sym_ctrl_return] = STATE(5133), - [sym_pipe_element] = STATE(4686), - [sym_stmt_source] = STATE(7055), - [sym_stmt_register] = STATE(7055), - [sym__stmt_hide] = STATE(7055), - [sym_hide_mod] = STATE(7049), - [sym_hide_env] = STATE(7049), - [sym__stmt_overlay] = STATE(7055), - [sym_overlay_list] = STATE(7088), - [sym_overlay_hide] = STATE(7088), - [sym_overlay_new] = STATE(7088), - [sym_overlay_use] = STATE(7088), - [sym_where_command] = STATE(5165), - [sym__expression] = STATE(3942), - [sym_expr_unary] = STATE(2469), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2469), - [sym__expr_binary_expression] = STATE(3961), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(3962), - [sym__value] = STATE(2469), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(2487), - [sym_val_variable] = STATE(1508), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(826), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(5165), + [sym_nu_script] = STATE(8159), + [sym_shebang] = STATE(80), + [sym__block_body_statement] = STATE(6245), + [sym__declaration] = STATE(7166), + [sym_decl_alias] = STATE(7170), + [sym_stmt_let] = STATE(6842), + [sym_stmt_mut] = STATE(6842), + [sym_stmt_const] = STATE(6842), + [sym_assignment] = STATE(6842), + [sym__mutable_assignment_pattern] = STATE(6910), + [sym__statement] = STATE(7166), + [sym_pipeline] = STATE(6842), + [sym__block_body] = STATE(7987), + [sym_cmd_identifier] = STATE(4653), + [sym_decl_def] = STATE(7170), + [sym_decl_export] = STATE(7170), + [sym_decl_extern] = STATE(7170), + [sym_decl_module] = STATE(7170), + [sym_decl_use] = STATE(7170), + [sym__ctrl_statement] = STATE(6842), + [sym__ctrl_expression] = STATE(5067), + [sym_ctrl_for] = STATE(7366), + [sym_ctrl_loop] = STATE(7366), + [sym_ctrl_error] = STATE(7366), + [sym_ctrl_while] = STATE(7366), + [sym_ctrl_do] = STATE(5032), + [sym_ctrl_if] = STATE(5032), + [sym_ctrl_match] = STATE(5032), + [sym_ctrl_try] = STATE(5032), + [sym_ctrl_return] = STATE(5032), + [sym_pipe_element] = STATE(4745), + [sym_stmt_source] = STATE(6842), + [sym_stmt_register] = STATE(6842), + [sym__stmt_hide] = STATE(6842), + [sym_hide_mod] = STATE(7441), + [sym_hide_env] = STATE(7441), + [sym__stmt_overlay] = STATE(6842), + [sym_overlay_list] = STATE(6830), + [sym_overlay_hide] = STATE(6830), + [sym_overlay_new] = STATE(6830), + [sym_overlay_use] = STATE(6830), + [sym_where_command] = STATE(5146), + [sym__expression] = STATE(3951), + [sym_expr_unary] = STATE(2522), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2522), + [sym__expr_binary_expression] = STATE(3982), + [sym_expr_parenthesized] = STATE(2170), + [sym_val_range] = STATE(3995), + [sym__value] = STATE(2522), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(2481), + [sym_val_variable] = STATE(1564), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(822), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(5146), [sym_comment] = STATE(1), - [aux_sym_shebang_repeat1] = STATE(6850), + [aux_sym_shebang_repeat1] = STATE(7295), [aux_sym_pipeline_repeat1] = STATE(202), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym__block_body_repeat2] = STATE(146), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym__block_body_repeat1] = STATE(139), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(325), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_POUND_BANG] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), @@ -62692,91 +63014,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(121), }, [2] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7813), - [sym_cmd_identifier] = STATE(4591), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(113), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym__match_pattern_record_variable] = STATE(744), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2063), - [sym__spread_parenthesized] = STATE(664), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(665), - [sym_val_variable] = STATE(165), - [sym_val_number] = STATE(2414), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2414), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(664), - [sym_record_body] = STATE(7880), - [sym_record_entry] = STATE(579), - [sym__record_key] = STATE(7645), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(8109), + [sym_cmd_identifier] = STATE(4561), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(108), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym__match_pattern_record_variable] = STATE(762), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2068), + [sym__spread_parenthesized] = STATE(690), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(691), + [sym_val_variable] = STATE(164), + [sym_val_number] = STATE(2355), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2355), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(690), + [sym_record_body] = STATE(8146), + [sym_record_entry] = STATE(584), + [sym__record_key] = STATE(7811), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(2), - [aux_sym_shebang_repeat1] = STATE(24), + [aux_sym_shebang_repeat1] = STATE(25), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym__match_pattern_record_repeat1] = STATE(212), - [aux_sym_pipe_element_repeat2] = STATE(334), - [aux_sym_record_body_repeat1] = STATE(218), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym__match_pattern_record_repeat1] = STATE(215), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(219), [anon_sym_export] = ACTIONS(123), [anon_sym_alias] = ACTIONS(125), [anon_sym_let] = ACTIONS(127), @@ -62896,89 +63218,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [3] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(8002), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(107), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_body] = STATE(7852), - [sym_record_entry] = STATE(6964), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7801), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(124), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_body] = STATE(8158), + [sym_record_entry] = STATE(6929), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(3), - [aux_sym_shebang_repeat1] = STATE(25), + [aux_sym_shebang_repeat1] = STATE(24), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), - [aux_sym_record_body_repeat1] = STATE(218), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(219), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), [anon_sym_let] = ACTIONS(255), @@ -63098,89 +63420,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [4] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7607), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(107), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_body] = STATE(7852), - [sym_record_entry] = STATE(6964), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(8010), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(124), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_body] = STATE(8158), + [sym_record_entry] = STATE(6929), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(4), - [aux_sym_shebang_repeat1] = STATE(25), + [aux_sym_shebang_repeat1] = STATE(24), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), - [aux_sym_record_body_repeat1] = STATE(218), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(219), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), [anon_sym_let] = ACTIONS(255), @@ -63300,89 +63622,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [5] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7813), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(113), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_body] = STATE(7880), - [sym_record_entry] = STATE(6964), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(8109), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(108), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_body] = STATE(8146), + [sym_record_entry] = STATE(6929), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(5), - [aux_sym_shebang_repeat1] = STATE(24), + [aux_sym_shebang_repeat1] = STATE(25), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), - [aux_sym_record_body_repeat1] = STATE(218), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(219), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), [anon_sym_let] = ACTIONS(255), @@ -63502,89 +63824,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [6] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7793), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(118), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_body] = STATE(7796), - [sym_record_entry] = STATE(6964), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7814), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(131), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_body] = STATE(8163), + [sym_record_entry] = STATE(6929), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(6), [aux_sym_shebang_repeat1] = STATE(26), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), - [aux_sym_record_body_repeat1] = STATE(218), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(219), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), [anon_sym_let] = ACTIONS(255), @@ -63704,89 +64026,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [7] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7791), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(118), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_body] = STATE(7796), - [sym_record_entry] = STATE(6964), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(8131), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(131), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_body] = STATE(8163), + [sym_record_entry] = STATE(6929), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(7), [aux_sym_shebang_repeat1] = STATE(26), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), - [aux_sym_record_body_repeat1] = STATE(218), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(219), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), [anon_sym_let] = ACTIONS(255), @@ -63906,89 +64228,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [8] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7632), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(113), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_body] = STATE(7880), - [sym_record_entry] = STATE(6964), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(8118), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(108), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_body] = STATE(8146), + [sym_record_entry] = STATE(6929), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(8), - [aux_sym_shebang_repeat1] = STATE(24), + [aux_sym_shebang_repeat1] = STATE(25), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), - [aux_sym_record_body_repeat1] = STATE(218), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(219), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), [anon_sym_let] = ACTIONS(255), @@ -64108,89 +64430,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [9] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7791), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(118), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_body] = STATE(7767), - [sym_record_entry] = STATE(6964), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(8131), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(131), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_body] = STATE(7762), + [sym_record_entry] = STATE(6929), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(9), [aux_sym_shebang_repeat1] = STATE(26), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), - [aux_sym_record_body_repeat1] = STATE(218), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(219), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), [anon_sym_let] = ACTIONS(255), @@ -64310,89 +64632,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [10] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7765), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(121), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_body] = STATE(7604), - [sym_record_entry] = STATE(6964), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7758), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(107), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_body] = STATE(7923), + [sym_record_entry] = STATE(6929), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(10), [aux_sym_shebang_repeat1] = STATE(28), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), - [aux_sym_record_body_repeat1] = STATE(218), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(219), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), [anon_sym_let] = ACTIONS(255), @@ -64512,89 +64834,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [11] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7599), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(125), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_body] = STATE(7837), - [sym_record_entry] = STATE(6964), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7919), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(114), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_body] = STATE(8062), + [sym_record_entry] = STATE(6929), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(11), [aux_sym_shebang_repeat1] = STATE(27), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), - [aux_sym_record_body_repeat1] = STATE(218), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(219), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), [anon_sym_let] = ACTIONS(255), @@ -64714,89 +65036,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [12] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7834), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(127), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_body] = STATE(7595), - [sym_record_entry] = STATE(6964), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(8045), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(117), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_body] = STATE(7804), + [sym_record_entry] = STATE(6929), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(12), [aux_sym_shebang_repeat1] = STATE(31), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), - [aux_sym_record_body_repeat1] = STATE(218), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(219), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), [anon_sym_let] = ACTIONS(255), @@ -64916,89 +65238,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [13] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7593), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(129), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_body] = STATE(7691), - [sym_record_entry] = STATE(6964), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7798), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(120), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_body] = STATE(7781), + [sym_record_entry] = STATE(6929), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(13), [aux_sym_shebang_repeat1] = STATE(29), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), - [aux_sym_record_body_repeat1] = STATE(218), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(219), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), [anon_sym_let] = ACTIONS(255), @@ -65118,89 +65440,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [14] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7684), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(131), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_body] = STATE(7683), - [sym_record_entry] = STATE(6964), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(8164), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(123), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_body] = STATE(7775), + [sym_record_entry] = STATE(6929), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(14), [aux_sym_shebang_repeat1] = STATE(32), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), - [aux_sym_record_body_repeat1] = STATE(218), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(219), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), [anon_sym_let] = ACTIONS(255), @@ -65320,89 +65642,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [15] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7681), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(105), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_body] = STATE(7570), - [sym_record_entry] = STATE(6964), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7774), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(126), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_body] = STATE(7976), + [sym_record_entry] = STATE(6929), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(15), [aux_sym_shebang_repeat1] = STATE(33), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), - [aux_sym_record_body_repeat1] = STATE(218), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(219), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), [anon_sym_let] = ACTIONS(255), @@ -65522,89 +65844,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [16] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7569), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(123), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_body] = STATE(7786), - [sym_record_entry] = STATE(6964), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7972), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(111), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_body] = STATE(7989), + [sym_record_entry] = STATE(6929), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(16), [aux_sym_shebang_repeat1] = STATE(30), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), - [aux_sym_record_body_repeat1] = STATE(218), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(219), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), [anon_sym_let] = ACTIONS(255), @@ -65724,89 +66046,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [17] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7684), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(131), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_body] = STATE(7989), - [sym_record_entry] = STATE(6964), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(8164), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(123), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_body] = STATE(7941), + [sym_record_entry] = STATE(6929), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(17), [aux_sym_shebang_repeat1] = STATE(32), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), - [aux_sym_record_body_repeat1] = STATE(218), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(219), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), [anon_sym_let] = ACTIONS(255), @@ -65926,89 +66248,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [18] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7778), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(134), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_body] = STATE(7639), - [sym_record_entry] = STATE(6964), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7962), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(129), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_body] = STATE(7754), + [sym_record_entry] = STATE(6929), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(18), [aux_sym_shebang_repeat1] = STATE(34), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), - [aux_sym_record_body_repeat1] = STATE(218), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(219), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), [anon_sym_let] = ACTIONS(255), @@ -66128,89 +66450,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [19] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7988), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(136), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_body] = STATE(7740), - [sym_record_entry] = STATE(6964), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7935), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(132), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_body] = STATE(7854), + [sym_record_entry] = STATE(6929), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(19), [aux_sym_shebang_repeat1] = STATE(35), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), - [aux_sym_record_body_repeat1] = STATE(218), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(219), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), [anon_sym_let] = ACTIONS(255), @@ -66330,89 +66652,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [20] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7681), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(105), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_body] = STATE(7874), - [sym_record_entry] = STATE(6964), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7774), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(126), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_body] = STATE(7936), + [sym_record_entry] = STATE(6929), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(20), [aux_sym_shebang_repeat1] = STATE(33), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), - [aux_sym_record_body_repeat1] = STATE(218), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(219), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), [anon_sym_let] = ACTIONS(255), @@ -66532,89 +66854,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [21] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7636), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(138), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_body] = STATE(7986), - [sym_record_entry] = STATE(6964), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7753), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(135), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_body] = STATE(7983), + [sym_record_entry] = STATE(6929), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(21), [aux_sym_shebang_repeat1] = STATE(36), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), - [aux_sym_record_body_repeat1] = STATE(218), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(219), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), [anon_sym_let] = ACTIONS(255), @@ -66734,89 +67056,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [22] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7733), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(140), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_body] = STATE(7576), - [sym_record_entry] = STATE(6964), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7845), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(138), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_body] = STATE(8041), + [sym_record_entry] = STATE(6929), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(22), [aux_sym_shebang_repeat1] = STATE(23), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), - [aux_sym_record_body_repeat1] = STATE(218), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(219), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), [anon_sym_let] = ACTIONS(255), @@ -66936,87 +67258,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [23] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7772), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(106), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_entry] = STATE(6910), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7877), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(140), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_entry] = STATE(7286), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(23), [aux_sym_shebang_repeat1] = STATE(205), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_record_body_repeat1] = STATE(220), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), @@ -67136,87 +67458,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [24] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7846), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(115), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_entry] = STATE(6910), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7796), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(112), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_entry] = STATE(7286), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(24), [aux_sym_shebang_repeat1] = STATE(205), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_record_body_repeat1] = STATE(220), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), @@ -67336,87 +67658,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [25] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7851), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(119), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_entry] = STATE(6910), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7881), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(141), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_entry] = STATE(7286), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(25), [aux_sym_shebang_repeat1] = STATE(205), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_record_body_repeat1] = STATE(220), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), @@ -67536,87 +67858,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [26] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7628), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(120), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_entry] = STATE(6910), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(8123), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(121), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_entry] = STATE(7286), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(26), [aux_sym_shebang_repeat1] = STATE(205), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_record_body_repeat1] = STATE(220), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), @@ -67736,87 +68058,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [27] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7937), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(126), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_entry] = STATE(6910), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7926), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(116), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_entry] = STATE(7286), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(27), [aux_sym_shebang_repeat1] = STATE(205), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_record_body_repeat1] = STATE(220), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), @@ -67936,87 +68258,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [28] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7805), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(122), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_entry] = STATE(6910), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7837), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(110), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_entry] = STATE(7286), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(28), [aux_sym_shebang_repeat1] = STATE(205), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_record_body_repeat1] = STATE(220), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), @@ -68136,87 +68458,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [29] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7935), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(130), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_entry] = STATE(6910), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7719), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(122), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_entry] = STATE(7286), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(29), [aux_sym_shebang_repeat1] = STATE(205), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_record_body_repeat1] = STATE(220), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), @@ -68336,87 +68658,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [30] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7647), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(124), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_entry] = STATE(6910), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(8128), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(113), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_entry] = STATE(7286), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(30), [aux_sym_shebang_repeat1] = STATE(205), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_record_body_repeat1] = STATE(220), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), @@ -68536,87 +68858,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [31] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7965), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(128), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_entry] = STATE(6910), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7897), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(119), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_entry] = STATE(7286), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(31), [aux_sym_shebang_repeat1] = STATE(205), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_record_body_repeat1] = STATE(220), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), @@ -68736,87 +69058,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [32] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7842), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(132), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_entry] = STATE(6910), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7821), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(125), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_entry] = STATE(7286), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(32), [aux_sym_shebang_repeat1] = STATE(205), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_record_body_repeat1] = STATE(220), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), @@ -68936,87 +69258,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [33] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7600), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(133), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_entry] = STATE(6910), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(8015), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(128), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_entry] = STATE(7286), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(33), [aux_sym_shebang_repeat1] = STATE(205), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_record_body_repeat1] = STATE(220), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), @@ -69136,87 +69458,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [34] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7831), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(135), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_entry] = STATE(6910), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7765), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(105), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_entry] = STATE(7286), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(34), [aux_sym_shebang_repeat1] = STATE(205), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_record_body_repeat1] = STATE(220), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), @@ -69336,87 +69658,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [35] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7553), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(137), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_entry] = STATE(6910), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(8021), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(134), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_entry] = STATE(7286), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(35), [aux_sym_shebang_repeat1] = STATE(205), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_record_body_repeat1] = STATE(220), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), @@ -69536,87 +69858,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [36] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7660), - [sym_cmd_identifier] = STATE(4506), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(139), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2074), - [sym__spread_parenthesized] = STATE(7543), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(1482), - [sym_val_number] = STATE(2434), - [sym__val_number_decimal] = STATE(816), - [sym__val_number] = STATE(2439), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2434), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym__spread_record] = STATE(7543), - [sym_record_entry] = STATE(6910), - [sym__record_key] = STATE(7810), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7769), + [sym_cmd_identifier] = STATE(4545), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(137), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(2024), + [sym__spread_parenthesized] = STATE(7503), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(1492), + [sym_val_number] = STATE(2390), + [sym__val_number_decimal] = STATE(803), + [sym__val_number] = STATE(2451), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2390), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym__spread_record] = STATE(7503), + [sym_record_entry] = STATE(7286), + [sym__record_key] = STATE(7830), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(36), [aux_sym_shebang_repeat1] = STATE(205), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_record_body_repeat1] = STATE(220), [anon_sym_export] = ACTIONS(251), [anon_sym_alias] = ACTIONS(253), @@ -69736,82 +70058,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [37] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7657), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(123), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7960), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(111), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(37), [aux_sym_shebang_repeat1] = STATE(45), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -69922,82 +70244,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [38] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(8001), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(121), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7814), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(131), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(38), - [aux_sym_shebang_repeat1] = STATE(42), + [aux_sym_shebang_repeat1] = STATE(46), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -70108,82 +70430,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [39] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(8002), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7731), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), [sym_parameter_pipes] = STATE(107), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(39), - [aux_sym_shebang_repeat1] = STATE(44), + [aux_sym_shebang_repeat1] = STATE(41), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -70294,82 +70616,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [40] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7793), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(118), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7801), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(124), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(40), - [aux_sym_shebang_repeat1] = STATE(46), + [aux_sym_shebang_repeat1] = STATE(44), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -70480,82 +70802,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [41] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7607), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(107), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7837), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(110), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(41), - [aux_sym_shebang_repeat1] = STATE(44), + [aux_sym_shebang_repeat1] = STATE(282), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -70665,82 +70987,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [42] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7805), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(122), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(8010), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(124), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(42), - [aux_sym_shebang_repeat1] = STATE(229), + [aux_sym_shebang_repeat1] = STATE(44), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -70850,82 +71172,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [43] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7791), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(118), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(8131), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(131), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(43), [aux_sym_shebang_repeat1] = STATE(46), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -71035,82 +71357,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [44] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7851), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(119), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7796), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(112), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(44), - [aux_sym_shebang_repeat1] = STATE(229), + [aux_sym_shebang_repeat1] = STATE(282), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -71220,82 +71542,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [45] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7647), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(124), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(8128), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(113), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(45), - [aux_sym_shebang_repeat1] = STATE(229), + [aux_sym_shebang_repeat1] = STATE(282), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -71405,82 +71727,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [46] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7628), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym_parameter_pipes] = STATE(120), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(8123), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym_parameter_pipes] = STATE(121), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(46), - [aux_sym_shebang_repeat1] = STATE(229), + [aux_sym_shebang_repeat1] = STATE(282), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -71590,80 +71912,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [47] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7942), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(8108), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), [sym_comment] = STATE(47), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -71774,80 +72096,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [48] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7748), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7928), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), [sym_comment] = STATE(48), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -71958,80 +72280,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [49] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7760), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7844), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), [sym_comment] = STATE(49), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -72142,80 +72464,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [50] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7597), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(8011), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), [sym_comment] = STATE(50), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -72298,7 +72620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(209), [anon_sym_DOT_DOT_LT] = ACTIONS(209), [anon_sym_null] = ACTIONS(211), - [anon_sym_RPAREN2] = ACTIONS(487), + [anon_sym_RPAREN2] = ACTIONS(469), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), [aux_sym__val_number_decimal_token1] = ACTIONS(471), @@ -72326,80 +72648,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [51] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7987), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7934), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), [sym_comment] = STATE(51), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -72510,80 +72832,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [52] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7732), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(8033), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), [sym_comment] = STATE(52), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -72694,80 +73016,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [53] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7833), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7969), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), [sym_comment] = STATE(53), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -72850,7 +73172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(209), [anon_sym_DOT_DOT_LT] = ACTIONS(209), [anon_sym_null] = ACTIONS(211), - [anon_sym_RPAREN2] = ACTIONS(469), + [anon_sym_RPAREN2] = ACTIONS(501), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), [aux_sym__val_number_decimal_token1] = ACTIONS(471), @@ -72878,80 +73200,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [54] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7872), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7982), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), [sym_comment] = STATE(54), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -73007,7 +73329,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(501), + [anon_sym_RPAREN] = ACTIONS(503), [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), @@ -73034,7 +73356,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(209), [anon_sym_DOT_DOT_LT] = ACTIONS(209), [anon_sym_null] = ACTIONS(211), - [anon_sym_RPAREN2] = ACTIONS(503), + [anon_sym_RPAREN2] = ACTIONS(505), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), [aux_sym__val_number_decimal_token1] = ACTIONS(471), @@ -73062,80 +73384,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [55] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7568), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(8040), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), [sym_comment] = STATE(55), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -73191,7 +73513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(505), + [anon_sym_RPAREN] = ACTIONS(507), [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), @@ -73218,7 +73540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(209), [anon_sym_DOT_DOT_LT] = ACTIONS(209), [anon_sym_null] = ACTIONS(211), - [anon_sym_RPAREN2] = ACTIONS(487), + [anon_sym_RPAREN2] = ACTIONS(509), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), [aux_sym__val_number_decimal_token1] = ACTIONS(471), @@ -73246,80 +73568,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [56] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7980), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7907), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), [sym_comment] = STATE(56), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -73375,7 +73697,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(511), [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), @@ -73402,7 +73724,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(209), [anon_sym_DOT_DOT_LT] = ACTIONS(209), [anon_sym_null] = ACTIONS(211), - [anon_sym_RPAREN2] = ACTIONS(509), + [anon_sym_RPAREN2] = ACTIONS(513), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), [aux_sym__val_number_decimal_token1] = ACTIONS(471), @@ -73430,80 +73752,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [57] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7575), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7856), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), [sym_comment] = STATE(57), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -73559,7 +73881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(511), + [anon_sym_RPAREN] = ACTIONS(515), [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), @@ -73586,7 +73908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(209), [anon_sym_DOT_DOT_LT] = ACTIONS(209), [anon_sym_null] = ACTIONS(211), - [anon_sym_RPAREN2] = ACTIONS(513), + [anon_sym_RPAREN2] = ACTIONS(517), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), [aux_sym__val_number_decimal_token1] = ACTIONS(471), @@ -73614,80 +73936,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [58] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7665), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(8124), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), [sym_comment] = STATE(58), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -73743,7 +74065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(515), + [anon_sym_RPAREN] = ACTIONS(519), [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), @@ -73770,7 +74092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(209), [anon_sym_DOT_DOT_LT] = ACTIONS(209), [anon_sym_null] = ACTIONS(211), - [anon_sym_RPAREN2] = ACTIONS(517), + [anon_sym_RPAREN2] = ACTIONS(505), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), [aux_sym__val_number_decimal_token1] = ACTIONS(471), @@ -73798,80 +74120,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [59] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7695), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7911), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), [sym_comment] = STATE(59), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -73927,7 +74249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(519), + [anon_sym_RPAREN] = ACTIONS(521), [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), @@ -73954,7 +74276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(209), [anon_sym_DOT_DOT_LT] = ACTIONS(209), [anon_sym_null] = ACTIONS(211), - [anon_sym_RPAREN2] = ACTIONS(521), + [anon_sym_RPAREN2] = ACTIONS(523), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), [aux_sym__val_number_decimal_token1] = ACTIONS(471), @@ -73982,80 +74304,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [60] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7621), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(8013), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), [sym_comment] = STATE(60), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -74111,7 +74433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(523), + [anon_sym_RPAREN] = ACTIONS(525), [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), @@ -74138,7 +74460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(209), [anon_sym_DOT_DOT_LT] = ACTIONS(209), [anon_sym_null] = ACTIONS(211), - [anon_sym_RPAREN2] = ACTIONS(509), + [anon_sym_RPAREN2] = ACTIONS(527), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), [aux_sym__val_number_decimal_token1] = ACTIONS(471), @@ -74166,80 +74488,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [61] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7708), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(8036), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), [sym_comment] = STATE(61), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -74295,7 +74617,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(525), + [anon_sym_RPAREN] = ACTIONS(529), [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), @@ -74322,7 +74644,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(209), [anon_sym_DOT_DOT_LT] = ACTIONS(209), [anon_sym_null] = ACTIONS(211), - [anon_sym_RPAREN2] = ACTIONS(527), + [anon_sym_RPAREN2] = ACTIONS(531), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), [aux_sym__val_number_decimal_token1] = ACTIONS(471), @@ -74350,80 +74672,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [62] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7718), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7749), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), [sym_comment] = STATE(62), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -74479,7 +74801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(529), + [anon_sym_RPAREN] = ACTIONS(533), [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), @@ -74506,7 +74828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(209), [anon_sym_DOT_DOT_LT] = ACTIONS(209), [anon_sym_null] = ACTIONS(211), - [anon_sym_RPAREN2] = ACTIONS(531), + [anon_sym_RPAREN2] = ACTIONS(501), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), [aux_sym__val_number_decimal_token1] = ACTIONS(471), @@ -74534,80 +74856,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [63] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7726), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7800), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), [sym_comment] = STATE(63), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -74663,7 +74985,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(533), + [anon_sym_RPAREN] = ACTIONS(535), [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), @@ -74690,7 +75012,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(209), [anon_sym_DOT_DOT_LT] = ACTIONS(209), [anon_sym_null] = ACTIONS(211), - [anon_sym_RPAREN2] = ACTIONS(535), + [anon_sym_RPAREN2] = ACTIONS(501), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), [aux_sym__val_number_decimal_token1] = ACTIONS(471), @@ -74718,80 +75040,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [64] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7634), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7863), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), [sym_comment] = STATE(64), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -74874,7 +75196,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(209), [anon_sym_DOT_DOT_LT] = ACTIONS(209), [anon_sym_null] = ACTIONS(211), - [anon_sym_RPAREN2] = ACTIONS(487), + [anon_sym_RPAREN2] = ACTIONS(501), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), [aux_sym__val_number_decimal_token1] = ACTIONS(471), @@ -74902,80 +75224,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [65] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7697), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7918), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), [sym_comment] = STATE(65), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -75058,7 +75380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(209), [anon_sym_DOT_DOT_LT] = ACTIONS(209), [anon_sym_null] = ACTIONS(211), - [anon_sym_RPAREN2] = ACTIONS(487), + [anon_sym_RPAREN2] = ACTIONS(501), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), [aux_sym__val_number_decimal_token1] = ACTIONS(471), @@ -75086,80 +75408,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [66] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7601), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(8129), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), [sym_comment] = STATE(66), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -75270,80 +75592,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [67] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7936), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7882), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), [sym_comment] = STATE(67), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -75453,80 +75775,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [68] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7568), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7778), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), [sym_comment] = STATE(68), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -75636,80 +75958,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [69] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7938), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7969), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), [sym_comment] = STATE(69), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -75819,263 +76141,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [70] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7950), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(8064), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), [sym_comment] = STATE(70), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(441), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [71] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7761), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(71), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -76184,81 +76323,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [72] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7990), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(72), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [71] = { + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(8022), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(71), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -76367,264 +76506,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [73] = { - [sym__block_body_statement] = STATE(6678), - [sym__declaration] = STATE(7048), - [sym_decl_alias] = STATE(7040), - [sym_stmt_let] = STATE(7055), - [sym_stmt_mut] = STATE(7055), - [sym_stmt_const] = STATE(7055), - [sym_assignment] = STATE(7055), - [sym__mutable_assignment_pattern] = STATE(7059), - [sym__statement] = STATE(7048), - [sym_pipeline] = STATE(7055), - [sym__block_body] = STATE(7650), - [sym_cmd_identifier] = STATE(4748), - [sym_decl_def] = STATE(7040), - [sym_decl_export] = STATE(7040), - [sym_decl_extern] = STATE(7040), - [sym_decl_module] = STATE(7040), - [sym_decl_use] = STATE(7040), - [sym__ctrl_statement] = STATE(7055), - [sym__ctrl_expression] = STATE(5131), - [sym_ctrl_for] = STATE(7087), - [sym_ctrl_loop] = STATE(7087), - [sym_ctrl_error] = STATE(7087), - [sym_ctrl_while] = STATE(7087), - [sym_ctrl_do] = STATE(5133), - [sym_ctrl_if] = STATE(5133), - [sym_ctrl_match] = STATE(5133), - [sym_ctrl_try] = STATE(5133), - [sym_ctrl_return] = STATE(5133), - [sym_pipe_element] = STATE(4686), - [sym_stmt_source] = STATE(7055), - [sym_stmt_register] = STATE(7055), - [sym__stmt_hide] = STATE(7055), - [sym_hide_mod] = STATE(7049), - [sym_hide_env] = STATE(7049), - [sym__stmt_overlay] = STATE(7055), - [sym_overlay_list] = STATE(7088), - [sym_overlay_hide] = STATE(7088), - [sym_overlay_new] = STATE(7088), - [sym_overlay_use] = STATE(7088), - [sym_where_command] = STATE(5165), - [sym__expression] = STATE(3942), - [sym_expr_unary] = STATE(2469), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2469), - [sym__expr_binary_expression] = STATE(3961), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(3962), - [sym__value] = STATE(2469), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(2487), - [sym_val_variable] = STATE(1508), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(826), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(5165), - [sym_comment] = STATE(73), - [aux_sym_pipeline_repeat1] = STATE(202), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym__block_body_repeat2] = STATE(146), - [aux_sym_pipe_element_repeat2] = STATE(318), - [ts_builtin_sym_end] = ACTIONS(553), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_let_DASHenv] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(19), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(19), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(19), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(21), - [aux_sym_cmd_identifier_token23] = ACTIONS(21), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(21), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(21), - [aux_sym_cmd_identifier_token28] = ACTIONS(21), - [aux_sym_cmd_identifier_token29] = ACTIONS(21), - [aux_sym_cmd_identifier_token30] = ACTIONS(21), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(19), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(21), - [aux_sym_cmd_identifier_token37] = ACTIONS(21), - [aux_sym_cmd_identifier_token38] = ACTIONS(19), - [aux_sym_cmd_identifier_token39] = ACTIONS(21), - [aux_sym_cmd_identifier_token40] = ACTIONS(21), - [sym__newline] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(25), - [anon_sym_def] = ACTIONS(27), - [anon_sym_export_DASHenv] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_use] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [anon_sym_error] = ACTIONS(43), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_loop] = ACTIONS(53), - [anon_sym_while] = ACTIONS(55), - [anon_sym_do] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_match] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_source] = ACTIONS(71), - [anon_sym_source_DASHenv] = ACTIONS(71), - [anon_sym_register] = ACTIONS(73), - [anon_sym_hide] = ACTIONS(75), - [anon_sym_hide_DASHenv] = ACTIONS(77), - [anon_sym_overlay] = ACTIONS(79), - [anon_sym_where] = ACTIONS(81), - [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(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [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(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [74] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7635), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(74), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [72] = { + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7956), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(72), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -76680,7 +76636,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(555), + [anon_sym_RPAREN] = ACTIONS(553), [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), @@ -76733,81 +76689,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [75] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7869), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(75), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [73] = { + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7771), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(73), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -76863,7 +76819,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(557), + [anon_sym_RPAREN] = ACTIONS(555), [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), @@ -76916,81 +76872,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [76] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7580), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(76), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [74] = { + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7750), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(74), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -77046,7 +77002,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(559), + [anon_sym_RPAREN] = ACTIONS(557), [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), @@ -77099,81 +77055,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [77] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7621), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(77), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [75] = { + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(8113), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(75), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -77229,7 +77185,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(561), + [anon_sym_RPAREN] = ACTIONS(559), [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), @@ -77282,81 +77238,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [78] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7844), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(78), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [76] = { + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7878), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(76), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -77412,7 +77368,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(563), + [anon_sym_RPAREN] = ACTIONS(561), [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), @@ -77465,81 +77421,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [79] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7876), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(79), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [77] = { + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7722), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(77), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -77595,7 +77551,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(565), + [anon_sym_RPAREN] = ACTIONS(563), [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), @@ -77648,81 +77604,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [80] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7603), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(80), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [78] = { + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7791), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(78), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -77778,7 +77734,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(567), + [anon_sym_RPAREN] = ACTIONS(565), [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), @@ -77831,81 +77787,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [81] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7667), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(81), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [79] = { + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7945), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(79), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -77961,7 +77917,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(569), + [anon_sym_RPAREN] = ACTIONS(567), [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), @@ -78014,87 +77970,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [82] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7832), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(82), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [80] = { + [sym__block_body_statement] = STATE(6245), + [sym__declaration] = STATE(7166), + [sym_decl_alias] = STATE(7170), + [sym_stmt_let] = STATE(6842), + [sym_stmt_mut] = STATE(6842), + [sym_stmt_const] = STATE(6842), + [sym_assignment] = STATE(6842), + [sym__mutable_assignment_pattern] = STATE(6910), + [sym__statement] = STATE(7166), + [sym_pipeline] = STATE(6842), + [sym__block_body] = STATE(7876), + [sym_cmd_identifier] = STATE(4653), + [sym_decl_def] = STATE(7170), + [sym_decl_export] = STATE(7170), + [sym_decl_extern] = STATE(7170), + [sym_decl_module] = STATE(7170), + [sym_decl_use] = STATE(7170), + [sym__ctrl_statement] = STATE(6842), + [sym__ctrl_expression] = STATE(5067), + [sym_ctrl_for] = STATE(7366), + [sym_ctrl_loop] = STATE(7366), + [sym_ctrl_error] = STATE(7366), + [sym_ctrl_while] = STATE(7366), + [sym_ctrl_do] = STATE(5032), + [sym_ctrl_if] = STATE(5032), + [sym_ctrl_match] = STATE(5032), + [sym_ctrl_try] = STATE(5032), + [sym_ctrl_return] = STATE(5032), + [sym_pipe_element] = STATE(4745), + [sym_stmt_source] = STATE(6842), + [sym_stmt_register] = STATE(6842), + [sym__stmt_hide] = STATE(6842), + [sym_hide_mod] = STATE(7441), + [sym_hide_env] = STATE(7441), + [sym__stmt_overlay] = STATE(6842), + [sym_overlay_list] = STATE(6830), + [sym_overlay_hide] = STATE(6830), + [sym_overlay_new] = STATE(6830), + [sym_overlay_use] = STATE(6830), + [sym_where_command] = STATE(5146), + [sym__expression] = STATE(3951), + [sym_expr_unary] = STATE(2522), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2522), + [sym__expr_binary_expression] = STATE(3982), + [sym_expr_parenthesized] = STATE(2170), + [sym_val_range] = STATE(3995), + [sym__value] = STATE(2522), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(2481), + [sym_val_variable] = STATE(1564), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(822), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(5146), + [sym_comment] = STATE(80), + [aux_sym_pipeline_repeat1] = STATE(202), + [aux_sym__block_body_repeat1] = STATE(139), + [aux_sym__block_body_repeat2] = STATE(142), + [aux_sym_pipe_element_repeat2] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(569), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_let_DASHenv] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(19), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(19), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(19), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(21), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(21), + [aux_sym_cmd_identifier_token28] = ACTIONS(21), + [aux_sym_cmd_identifier_token29] = ACTIONS(21), + [aux_sym_cmd_identifier_token30] = ACTIONS(21), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(19), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [sym__newline] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(25), + [anon_sym_def] = ACTIONS(27), + [anon_sym_export_DASHenv] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(31), + [anon_sym_module] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [anon_sym_error] = ACTIONS(43), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_loop] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_source] = ACTIONS(71), + [anon_sym_source_DASHenv] = ACTIONS(71), + [anon_sym_register] = ACTIONS(73), + [anon_sym_hide] = ACTIONS(75), + [anon_sym_hide_DASHenv] = ACTIONS(77), + [anon_sym_overlay] = ACTIONS(79), + [anon_sym_where] = ACTIONS(81), + [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(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [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(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), + }, + [81] = { + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7998), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), + [sym_comment] = STATE(81), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -78144,39 +78283,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(571), [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), [anon_sym_for] = ACTIONS(391), [anon_sym_loop] = ACTIONS(393), [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(441), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), [anon_sym_source] = ACTIONS(409), [anon_sym_source_DASHenv] = ACTIONS(409), [anon_sym_register] = ACTIONS(411), [anon_sym_hide] = ACTIONS(413), [anon_sym_hide_DASHenv] = ACTIONS(415), [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), + [anon_sym_where] = ACTIONS(201), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), [anon_sym_DOT_DOT_LT] = ACTIONS(209), [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -78193,85 +78332,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [83] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7847), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(83), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [82] = { + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7992), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(82), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -78327,7 +78466,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(573), + [anon_sym_RPAREN] = ACTIONS(571), [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), @@ -78380,81 +78519,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [84] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7554), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(84), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [83] = { + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(8136), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(83), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -78510,7 +78649,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(575), + [anon_sym_RPAREN] = ACTIONS(573), [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), @@ -78563,81 +78702,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [85] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7671), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(85), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [84] = { + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(8047), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(84), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -78693,7 +78832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(577), + [anon_sym_RPAREN] = ACTIONS(575), [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), @@ -78746,81 +78885,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [86] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7661), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(86), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [85] = { + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(8148), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(85), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -78876,7 +79015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(579), + [anon_sym_RPAREN] = ACTIONS(577), [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), @@ -78929,81 +79068,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [87] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7787), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(87), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [86] = { + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(8023), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(86), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -79059,7 +79198,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(579), [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), @@ -79112,81 +79251,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [88] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7774), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(88), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [87] = { + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7891), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(87), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -79242,7 +79381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(583), + [anon_sym_RPAREN] = ACTIONS(581), [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), @@ -79295,81 +79434,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [89] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7806), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(89), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [88] = { + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7988), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(88), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -79425,7 +79564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(585), + [anon_sym_RPAREN] = ACTIONS(583), [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), @@ -79478,81 +79617,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [90] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7894), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(90), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [89] = { + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7822), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(89), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(585), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [90] = { + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7950), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(90), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -79662,80 +79984,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [91] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7955), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7795), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), [sym_comment] = STATE(91), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -79845,80 +80167,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [92] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7993), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7953), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), [sym_comment] = STATE(92), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -80028,80 +80350,263 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [93] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7934), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(8059), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(93), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(437), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [94] = { + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7975), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(94), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -80210,81 +80715,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [94] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7584), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(94), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [95] = { + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7866), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(95), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -80393,81 +80898,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [95] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7629), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(95), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [96] = { + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(8017), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(96), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -80576,81 +81081,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [96] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7670), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(96), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [97] = { + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7805), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(97), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -80759,81 +81264,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [97] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7702), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(97), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [98] = { + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(8151), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(98), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -80942,81 +81447,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [98] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7711), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(98), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [99] = { + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7797), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(99), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -81125,81 +81630,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [99] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7680), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(99), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [100] = { + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7841), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(100), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -81308,81 +81813,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [100] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7625), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(100), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [101] = { + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7899), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(101), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -81491,87 +81996,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [101] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7623), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), - [sym_comment] = STATE(101), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), + [102] = { + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(8011), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(102), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -81621,39 +82126,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(609), [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), [anon_sym_for] = ACTIONS(391), [anon_sym_loop] = ACTIONS(393), [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(439), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), [anon_sym_source] = ACTIONS(409), [anon_sym_source_DASHenv] = ACTIONS(409), [anon_sym_register] = ACTIONS(411), [anon_sym_hide] = ACTIONS(413), [anon_sym_hide_DASHenv] = ACTIONS(415), [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), + [anon_sym_where] = ACTIONS(467), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), [anon_sym_DOT_DOT_LT] = ACTIONS(209), [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -81670,85 +82175,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(479), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [102] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7649), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(102), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [103] = { + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(7773), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(103), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -81804,7 +82309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(609), + [anon_sym_RPAREN] = ACTIONS(611), [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), @@ -81857,81 +82362,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [103] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7958), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(103), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), + [104] = { + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(8124), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(104), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), [anon_sym_export] = ACTIONS(443), [anon_sym_alias] = ACTIONS(445), [anon_sym_let] = ACTIONS(447), @@ -81987,7 +82492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(611), + [anon_sym_RPAREN] = ACTIONS(613), [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), @@ -82040,87 +82545,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [104] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7833), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(104), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [105] = { + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(8044), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), + [sym_comment] = STATE(105), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -82170,39 +82675,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(613), [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), [anon_sym_for] = ACTIONS(391), [anon_sym_loop] = ACTIONS(393), [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), [anon_sym_source] = ACTIONS(409), [anon_sym_source_DASHenv] = ACTIONS(409), [anon_sym_register] = ACTIONS(411), [anon_sym_hide] = ACTIONS(413), [anon_sym_hide_DASHenv] = ACTIONS(415), [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), + [anon_sym_where] = ACTIONS(201), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), [anon_sym_DOT_DOT_LT] = ACTIONS(209), [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -82219,91 +82723,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [105] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7598), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), - [sym_comment] = STATE(105), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), + [106] = { + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(8132), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1549), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), + [sym_comment] = STATE(106), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(133), + [aux_sym__block_body_repeat2] = STATE(148), + [aux_sym_pipe_element_repeat2] = STATE(323), + [anon_sym_export] = ACTIONS(615), + [anon_sym_alias] = ACTIONS(617), + [anon_sym_let] = ACTIONS(619), + [anon_sym_let_DASHenv] = ACTIONS(619), + [anon_sym_mut] = ACTIONS(621), + [anon_sym_const] = ACTIONS(623), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -82362,12 +82866,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_loop] = ACTIONS(393), [anon_sym_while] = ACTIONS(395), [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), + [anon_sym_if] = ACTIONS(625), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), + [anon_sym_return] = ACTIONS(465), [anon_sym_source] = ACTIONS(409), [anon_sym_source_DASHenv] = ACTIONS(409), [anon_sym_register] = ACTIONS(411), @@ -82381,10 +82885,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -82405,81 +82909,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [106] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7797), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), - [sym_comment] = STATE(106), + [107] = { + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7836), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), + [sym_comment] = STATE(107), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -82587,81 +83091,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [107] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7721), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), - [sym_comment] = STATE(107), + [108] = { + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(8170), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), + [sym_comment] = STATE(108), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -82769,269 +83273,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [108] = { - [sym__block_body_statement] = STATE(6466), - [sym__declaration] = STATE(7048), - [sym_decl_alias] = STATE(7040), - [sym_stmt_let] = STATE(7055), - [sym_stmt_mut] = STATE(7055), - [sym_stmt_const] = STATE(7055), - [sym_assignment] = STATE(7055), - [sym__mutable_assignment_pattern] = STATE(7059), - [sym__statement] = STATE(7048), - [sym_pipeline] = STATE(7055), - [sym_cmd_identifier] = STATE(4748), - [sym_decl_def] = STATE(7040), - [sym_decl_export] = STATE(7040), - [sym_decl_extern] = STATE(7040), - [sym_decl_module] = STATE(7040), - [sym_decl_use] = STATE(7040), - [sym__ctrl_statement] = STATE(7055), - [sym__ctrl_expression] = STATE(5131), - [sym_ctrl_for] = STATE(7087), - [sym_ctrl_loop] = STATE(7087), - [sym_ctrl_error] = STATE(7087), - [sym_ctrl_while] = STATE(7087), - [sym_ctrl_do] = STATE(5133), - [sym_ctrl_if] = STATE(5133), - [sym_ctrl_match] = STATE(5133), - [sym_ctrl_try] = STATE(5133), - [sym_ctrl_return] = STATE(5133), - [sym_pipe_element] = STATE(4686), - [sym_stmt_source] = STATE(7055), - [sym_stmt_register] = STATE(7055), - [sym__stmt_hide] = STATE(7055), - [sym_hide_mod] = STATE(7049), - [sym_hide_env] = STATE(7049), - [sym__stmt_overlay] = STATE(7055), - [sym_overlay_list] = STATE(7088), - [sym_overlay_hide] = STATE(7088), - [sym_overlay_new] = STATE(7088), - [sym_overlay_use] = STATE(7088), - [sym_where_command] = STATE(5165), - [sym__expression] = STATE(3942), - [sym_expr_unary] = STATE(2469), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2469), - [sym__expr_binary_expression] = STATE(3961), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(3962), - [sym__value] = STATE(2469), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(2487), - [sym_val_variable] = STATE(1508), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(826), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(5165), - [sym_comment] = STATE(108), - [aux_sym_pipeline_repeat1] = STATE(202), - [aux_sym__block_body_repeat1] = STATE(305), - [aux_sym__block_body_repeat2] = STATE(150), - [aux_sym_pipe_element_repeat2] = STATE(318), - [ts_builtin_sym_end] = ACTIONS(615), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_let_DASHenv] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(19), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(19), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(19), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(21), - [aux_sym_cmd_identifier_token23] = ACTIONS(21), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(21), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(21), - [aux_sym_cmd_identifier_token28] = ACTIONS(21), - [aux_sym_cmd_identifier_token29] = ACTIONS(21), - [aux_sym_cmd_identifier_token30] = ACTIONS(21), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(19), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(21), - [aux_sym_cmd_identifier_token37] = ACTIONS(21), - [aux_sym_cmd_identifier_token38] = ACTIONS(19), - [aux_sym_cmd_identifier_token39] = ACTIONS(21), - [aux_sym_cmd_identifier_token40] = ACTIONS(21), - [sym__newline] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(25), - [anon_sym_def] = ACTIONS(27), - [anon_sym_export_DASHenv] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_use] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [anon_sym_error] = ACTIONS(43), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_loop] = ACTIONS(53), - [anon_sym_while] = ACTIONS(55), - [anon_sym_do] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_match] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_source] = ACTIONS(71), - [anon_sym_source_DASHenv] = ACTIONS(71), - [anon_sym_register] = ACTIONS(73), - [anon_sym_hide] = ACTIONS(75), - [anon_sym_hide_DASHenv] = ACTIONS(77), - [anon_sym_overlay] = ACTIONS(79), - [anon_sym_where] = ACTIONS(81), - [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(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [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(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, [109] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7768), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), + [sym__block_body_statement] = STATE(6119), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(109), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(223), + [aux_sym__block_body_repeat2] = STATE(143), + [aux_sym_pipe_element_repeat2] = STATE(316), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -83084,35 +83405,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), [anon_sym_for] = ACTIONS(391), [anon_sym_loop] = ACTIONS(393), [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(627), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), [anon_sym_source] = ACTIONS(409), [anon_sym_source_DASHenv] = ACTIONS(409), [anon_sym_register] = ACTIONS(411), [anon_sym_hide] = ACTIONS(413), [anon_sym_hide_DASHenv] = ACTIONS(415), [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), + [anon_sym_where] = ACTIONS(201), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), [anon_sym_DOT_DOT_LT] = ACTIONS(209), [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -83129,90 +83451,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [110] = { - [sym__block_body_statement_parenthesized] = STATE(5861), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7883), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(110), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(223), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(144), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -83262,39 +83585,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(617), [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), [anon_sym_for] = ACTIONS(391), [anon_sym_loop] = ACTIONS(393), [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), [anon_sym_source] = ACTIONS(409), [anon_sym_source_DASHenv] = ACTIONS(409), [anon_sym_register] = ACTIONS(411), [anon_sym_hide] = ACTIONS(413), [anon_sym_hide_DASHenv] = ACTIONS(415), [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), + [anon_sym_where] = ACTIONS(201), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), [anon_sym_DOT_DOT_LT] = ACTIONS(209), [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -83311,84 +83633,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [111] = { - [sym__block_body_statement] = STATE(6053), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(8126), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(111), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(223), - [aux_sym__block_body_repeat2] = STATE(148), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -83456,7 +83779,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(399), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(615), [anon_sym_DOT_DOT] = ACTIONS(185), [anon_sym_try] = ACTIONS(405), [anon_sym_return] = ACTIONS(407), @@ -83498,86 +83820,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [112] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7641), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1560), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(8145), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(112), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(116), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(109), [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(327), - [anon_sym_export] = ACTIONS(619), - [anon_sym_alias] = ACTIONS(621), - [anon_sym_let] = ACTIONS(623), - [anon_sym_let_DASHenv] = ACTIONS(623), - [anon_sym_mut] = ACTIONS(625), - [anon_sym_const] = ACTIONS(627), + [aux_sym_pipe_element_repeat2] = STATE(316), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -83636,12 +83958,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_loop] = ACTIONS(393), [anon_sym_while] = ACTIONS(395), [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(629), + [anon_sym_if] = ACTIONS(399), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(465), + [anon_sym_return] = ACTIONS(407), [anon_sym_source] = ACTIONS(409), [anon_sym_source_DASHenv] = ACTIONS(409), [anon_sym_register] = ACTIONS(411), @@ -83655,10 +83977,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -83680,80 +84002,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [113] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7770), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7815), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(113), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -83862,86 +84184,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [114] = { - [sym__block_body_statement_parenthesized] = STATE(5813), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym__parenthesized_body] = STATE(7878), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7924), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(114), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym__block_body_repeat1] = STATE(110), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(143), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -83994,35 +84316,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), [anon_sym_for] = ACTIONS(391), [anon_sym_loop] = ACTIONS(393), [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), [anon_sym_source] = ACTIONS(409), [anon_sym_source_DASHenv] = ACTIONS(409), [anon_sym_register] = ACTIONS(411), [anon_sym_hide] = ACTIONS(413), [anon_sym_hide_DASHenv] = ACTIONS(415), [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), + [anon_sym_where] = ACTIONS(201), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), [anon_sym_DOT_DOT_LT] = ACTIONS(209), [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -84039,91 +84361,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [115] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7583), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(8035), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), [sym_comment] = STATE(115), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -84176,35 +84498,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), [anon_sym_for] = ACTIONS(391), [anon_sym_loop] = ACTIONS(393), [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), [anon_sym_source] = ACTIONS(409), [anon_sym_source_DASHenv] = ACTIONS(409), [anon_sym_register] = ACTIONS(411), [anon_sym_hide] = ACTIONS(413), [anon_sym_hide_DASHenv] = ACTIONS(415), [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), + [anon_sym_where] = ACTIONS(467), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), [anon_sym_DOT_DOT_LT] = ACTIONS(209), [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -84221,90 +84543,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(479), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [116] = { - [sym__block_body_statement] = STATE(6053), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1560), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(8097), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(116), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(223), - [aux_sym__block_body_repeat2] = STATE(149), - [aux_sym_pipe_element_repeat2] = STATE(327), - [anon_sym_export] = ACTIONS(619), - [anon_sym_alias] = ACTIONS(621), - [anon_sym_let] = ACTIONS(623), - [anon_sym_let_DASHenv] = ACTIONS(623), - [anon_sym_mut] = ACTIONS(625), - [anon_sym_const] = ACTIONS(627), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -84354,7 +84677,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(615), [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), @@ -84364,12 +84686,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_loop] = ACTIONS(393), [anon_sym_while] = ACTIONS(395), [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(629), + [anon_sym_if] = ACTIONS(399), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(465), + [anon_sym_return] = ACTIONS(407), [anon_sym_source] = ACTIONS(409), [anon_sym_source_DASHenv] = ACTIONS(409), [anon_sym_register] = ACTIONS(411), @@ -84383,10 +84705,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -84408,86 +84730,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [117] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7995), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1560), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7894), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(117), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(116), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat1] = STATE(109), [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(327), - [anon_sym_export] = ACTIONS(619), - [anon_sym_alias] = ACTIONS(621), - [anon_sym_let] = ACTIONS(623), - [anon_sym_let_DASHenv] = ACTIONS(623), - [anon_sym_mut] = ACTIONS(625), - [anon_sym_const] = ACTIONS(627), + [aux_sym_pipe_element_repeat2] = STATE(316), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -84546,12 +84868,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_loop] = ACTIONS(393), [anon_sym_while] = ACTIONS(395), [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(629), + [anon_sym_if] = ACTIONS(399), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(465), + [anon_sym_return] = ACTIONS(407), [anon_sym_source] = ACTIONS(409), [anon_sym_source_DASHenv] = ACTIONS(409), [anon_sym_register] = ACTIONS(411), @@ -84565,10 +84887,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -84590,86 +84912,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [118] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7616), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement_parenthesized] = STATE(5887), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym__parenthesized_body] = STATE(8157), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), [sym_comment] = STATE(118), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(127), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(145), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -84722,35 +85044,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), [anon_sym_for] = ACTIONS(391), [anon_sym_loop] = ACTIONS(393), [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), [anon_sym_source] = ACTIONS(409), [anon_sym_source_DASHenv] = ACTIONS(409), [anon_sym_register] = ACTIONS(411), [anon_sym_hide] = ACTIONS(413), [anon_sym_hide_DASHenv] = ACTIONS(415), [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), + [anon_sym_where] = ACTIONS(467), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), [anon_sym_DOT_DOT_LT] = ACTIONS(209), [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -84767,85 +85089,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(479), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [119] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(8003), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7951), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(119), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -84954,80 +85276,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [120] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7591), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7714), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(120), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -85136,80 +85458,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [121] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(8005), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7860), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(121), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -85318,80 +85640,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [122] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7838), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7850), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(122), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -85500,80 +85822,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [123] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7646), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7817), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(123), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -85682,80 +86004,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [124] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7675), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7763), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(124), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -85864,80 +86186,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [125] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7932), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7879), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(125), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -86046,80 +86368,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [126] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7957), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(8009), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(126), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -86228,80 +86550,262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [127] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7959), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement_parenthesized] = STATE(5821), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), [sym_comment] = STATE(127), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(223), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(150), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(629), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [128] = { + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(8053), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), + [sym_comment] = STATE(128), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -86409,81 +86913,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [128] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7644), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), - [sym_comment] = STATE(128), + [129] = { + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7752), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), + [sym_comment] = STATE(129), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -86591,81 +87095,263 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [129] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7899), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), - [sym_comment] = STATE(129), + [130] = { + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7772), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1549), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), + [sym_comment] = STATE(130), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(133), + [aux_sym__block_body_repeat2] = STATE(148), + [aux_sym_pipe_element_repeat2] = STATE(323), + [anon_sym_export] = ACTIONS(615), + [anon_sym_alias] = ACTIONS(617), + [anon_sym_let] = ACTIONS(619), + [anon_sym_let_DASHenv] = ACTIONS(619), + [anon_sym_mut] = ACTIONS(621), + [anon_sym_const] = ACTIONS(623), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(625), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [131] = { + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(8116), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), + [sym_comment] = STATE(131), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -86773,81 +87459,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [130] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7969), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), - [sym_comment] = STATE(130), + [132] = { + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(8018), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), + [sym_comment] = STATE(132), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -86955,87 +87641,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [131] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7822), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), - [sym_comment] = STATE(131), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), + [133] = { + [sym__block_body_statement] = STATE(6119), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1549), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), + [sym_comment] = STATE(133), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(223), + [aux_sym__block_body_repeat2] = STATE(149), + [aux_sym_pipe_element_repeat2] = STATE(323), + [anon_sym_export] = ACTIONS(615), + [anon_sym_alias] = ACTIONS(617), + [anon_sym_let] = ACTIONS(619), + [anon_sym_let_DASHenv] = ACTIONS(619), + [anon_sym_mut] = ACTIONS(621), + [anon_sym_const] = ACTIONS(623), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -87085,6 +87770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(627), [anon_sym_DOLLAR] = ACTIONS(381), [anon_sym_error] = ACTIONS(383), [anon_sym_DASH2] = ACTIONS(385), @@ -87094,12 +87780,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_loop] = ACTIONS(393), [anon_sym_while] = ACTIONS(395), [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), + [anon_sym_if] = ACTIONS(625), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), + [anon_sym_return] = ACTIONS(465), [anon_sym_source] = ACTIONS(409), [anon_sym_source_DASHenv] = ACTIONS(409), [anon_sym_register] = ACTIONS(411), @@ -87113,10 +87799,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -87137,81 +87823,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [132] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7897), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), - [sym_comment] = STATE(132), + [134] = { + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(8112), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), + [sym_comment] = STATE(134), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -87319,81 +88005,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [133] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7652), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), - [sym_comment] = STATE(133), + [135] = { + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7767), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), + [sym_comment] = STATE(135), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -87501,81 +88187,263 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [134] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7829), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), - [sym_comment] = STATE(134), + [136] = { + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7748), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1549), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), + [sym_comment] = STATE(136), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat1] = STATE(133), + [aux_sym__block_body_repeat2] = STATE(148), + [aux_sym_pipe_element_repeat2] = STATE(323), + [anon_sym_export] = ACTIONS(615), + [anon_sym_alias] = ACTIONS(617), + [anon_sym_let] = ACTIONS(619), + [anon_sym_let_DASHenv] = ACTIONS(619), + [anon_sym_mut] = ACTIONS(621), + [anon_sym_const] = ACTIONS(623), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(625), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [137] = { + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7784), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), + [sym_comment] = STATE(137), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -87683,81 +88551,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [135] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7860), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), - [sym_comment] = STATE(135), + [138] = { + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7874), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), + [sym_comment] = STATE(138), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -87865,81 +88733,263 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [136] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7550), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), - [sym_comment] = STATE(136), + [139] = { + [sym__block_body_statement] = STATE(6272), + [sym__declaration] = STATE(7166), + [sym_decl_alias] = STATE(7170), + [sym_stmt_let] = STATE(6842), + [sym_stmt_mut] = STATE(6842), + [sym_stmt_const] = STATE(6842), + [sym_assignment] = STATE(6842), + [sym__mutable_assignment_pattern] = STATE(6910), + [sym__statement] = STATE(7166), + [sym_pipeline] = STATE(6842), + [sym_cmd_identifier] = STATE(4653), + [sym_decl_def] = STATE(7170), + [sym_decl_export] = STATE(7170), + [sym_decl_extern] = STATE(7170), + [sym_decl_module] = STATE(7170), + [sym_decl_use] = STATE(7170), + [sym__ctrl_statement] = STATE(6842), + [sym__ctrl_expression] = STATE(5067), + [sym_ctrl_for] = STATE(7366), + [sym_ctrl_loop] = STATE(7366), + [sym_ctrl_error] = STATE(7366), + [sym_ctrl_while] = STATE(7366), + [sym_ctrl_do] = STATE(5032), + [sym_ctrl_if] = STATE(5032), + [sym_ctrl_match] = STATE(5032), + [sym_ctrl_try] = STATE(5032), + [sym_ctrl_return] = STATE(5032), + [sym_pipe_element] = STATE(4745), + [sym_stmt_source] = STATE(6842), + [sym_stmt_register] = STATE(6842), + [sym__stmt_hide] = STATE(6842), + [sym_hide_mod] = STATE(7441), + [sym_hide_env] = STATE(7441), + [sym__stmt_overlay] = STATE(6842), + [sym_overlay_list] = STATE(6830), + [sym_overlay_hide] = STATE(6830), + [sym_overlay_new] = STATE(6830), + [sym_overlay_use] = STATE(6830), + [sym_where_command] = STATE(5146), + [sym__expression] = STATE(3951), + [sym_expr_unary] = STATE(2522), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2522), + [sym__expr_binary_expression] = STATE(3982), + [sym_expr_parenthesized] = STATE(2170), + [sym_val_range] = STATE(3995), + [sym__value] = STATE(2522), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(2481), + [sym_val_variable] = STATE(1564), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(822), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(5146), + [sym_comment] = STATE(139), + [aux_sym_pipeline_repeat1] = STATE(202), + [aux_sym__block_body_repeat1] = STATE(228), + [aux_sym__block_body_repeat2] = STATE(146), + [aux_sym_pipe_element_repeat2] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(627), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_let_DASHenv] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(19), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(19), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(19), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(21), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(21), + [aux_sym_cmd_identifier_token28] = ACTIONS(21), + [aux_sym_cmd_identifier_token29] = ACTIONS(21), + [aux_sym_cmd_identifier_token30] = ACTIONS(21), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(19), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [sym__newline] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(25), + [anon_sym_def] = ACTIONS(27), + [anon_sym_export_DASHenv] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(31), + [anon_sym_module] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [anon_sym_error] = ACTIONS(43), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_loop] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_source] = ACTIONS(71), + [anon_sym_source_DASHenv] = ACTIONS(71), + [anon_sym_register] = ACTIONS(73), + [anon_sym_hide] = ACTIONS(75), + [anon_sym_hide_DASHenv] = ACTIONS(77), + [anon_sym_overlay] = ACTIONS(79), + [anon_sym_where] = ACTIONS(81), + [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(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [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(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), + }, + [140] = { + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7887), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), + [sym_comment] = STATE(140), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -88047,627 +89097,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [137] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7564), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), - [sym_comment] = STATE(137), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [138] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7659), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), - [sym_comment] = STATE(138), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [139] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7676), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), - [sym_comment] = STATE(139), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [140] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7771), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), - [sym_comment] = STATE(140), + [141] = { + [sym__block_body_statement] = STATE(6234), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym__block_body] = STATE(7730), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), + [sym_comment] = STATE(141), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat1] = STATE(111), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(147), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -88775,261 +89279,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [141] = { - [sym__block_body_statement] = STATE(6000), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym__block_body] = STATE(7746), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1560), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), - [sym_comment] = STATE(141), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat1] = STATE(116), - [aux_sym__block_body_repeat2] = STATE(147), - [aux_sym_pipe_element_repeat2] = STATE(327), - [anon_sym_export] = ACTIONS(619), - [anon_sym_alias] = ACTIONS(621), - [anon_sym_let] = ACTIONS(623), - [anon_sym_let_DASHenv] = ACTIONS(623), - [anon_sym_mut] = ACTIONS(625), - [anon_sym_const] = ACTIONS(627), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(629), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [142] = { + [sym__block_body_statement] = STATE(6272), + [sym__declaration] = STATE(7166), + [sym_decl_alias] = STATE(7170), + [sym_stmt_let] = STATE(6842), + [sym_stmt_mut] = STATE(6842), + [sym_stmt_const] = STATE(6842), + [sym_assignment] = STATE(6842), + [sym__mutable_assignment_pattern] = STATE(6910), + [sym__statement] = STATE(7166), + [sym_pipeline] = STATE(6842), + [sym_cmd_identifier] = STATE(4653), + [sym_decl_def] = STATE(7170), + [sym_decl_export] = STATE(7170), + [sym_decl_extern] = STATE(7170), + [sym_decl_module] = STATE(7170), + [sym_decl_use] = STATE(7170), + [sym__ctrl_statement] = STATE(6842), + [sym__ctrl_expression] = STATE(5067), + [sym_ctrl_for] = STATE(7366), + [sym_ctrl_loop] = STATE(7366), + [sym_ctrl_error] = STATE(7366), + [sym_ctrl_while] = STATE(7366), + [sym_ctrl_do] = STATE(5032), + [sym_ctrl_if] = STATE(5032), + [sym_ctrl_match] = STATE(5032), + [sym_ctrl_try] = STATE(5032), + [sym_ctrl_return] = STATE(5032), + [sym_pipe_element] = STATE(4745), + [sym_stmt_source] = STATE(6842), + [sym_stmt_register] = STATE(6842), + [sym__stmt_hide] = STATE(6842), + [sym_hide_mod] = STATE(7441), + [sym_hide_env] = STATE(7441), + [sym__stmt_overlay] = STATE(6842), + [sym_overlay_list] = STATE(6830), + [sym_overlay_hide] = STATE(6830), + [sym_overlay_new] = STATE(6830), + [sym_overlay_use] = STATE(6830), + [sym_where_command] = STATE(5146), + [sym__expression] = STATE(3951), + [sym_expr_unary] = STATE(2522), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2522), + [sym__expr_binary_expression] = STATE(3982), + [sym_expr_parenthesized] = STATE(2170), + [sym_val_range] = STATE(3995), + [sym__value] = STATE(2522), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(2481), + [sym_val_variable] = STATE(1564), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(822), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(5146), + [sym_comment] = STATE(142), + [aux_sym_pipeline_repeat1] = STATE(202), + [aux_sym__block_body_repeat2] = STATE(144), + [aux_sym_pipe_element_repeat2] = STATE(325), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_let_DASHenv] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(19), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(19), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(19), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(21), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(21), + [aux_sym_cmd_identifier_token28] = ACTIONS(21), + [aux_sym_cmd_identifier_token29] = ACTIONS(21), + [aux_sym_cmd_identifier_token30] = ACTIONS(21), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(19), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [anon_sym_def] = ACTIONS(27), + [anon_sym_export_DASHenv] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(31), + [anon_sym_module] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [anon_sym_error] = ACTIONS(43), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_loop] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_source] = ACTIONS(71), + [anon_sym_source_DASHenv] = ACTIONS(71), + [anon_sym_register] = ACTIONS(73), + [anon_sym_hide] = ACTIONS(75), + [anon_sym_hide_DASHenv] = ACTIONS(77), + [anon_sym_overlay] = ACTIONS(79), + [anon_sym_where] = ACTIONS(81), + [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(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [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(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(119), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [sym_raw_string_begin] = ACTIONS(121), }, - [142] = { - [sym__block_body_statement] = STATE(6053), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), - [sym_comment] = STATE(142), + [143] = { + [sym__block_body_statement] = STATE(6075), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), + [sym_comment] = STATE(143), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat2] = STATE(151), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym__block_body_repeat2] = STATE(144), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -89135,435 +89635,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [143] = { - [sym__block_body_statement_parenthesized] = STATE(5861), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(143), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, [144] = { - [sym__block_body_statement_parenthesized] = STATE(5882), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1565), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), + [sym__block_body_statement] = STATE(7347), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1623), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(839), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(144), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), - [aux_sym__parenthesized_body_repeat2] = STATE(145), - [anon_sym_export] = ACTIONS(443), - [anon_sym_alias] = ACTIONS(445), - [anon_sym_let] = ACTIONS(447), - [anon_sym_let_DASHenv] = ACTIONS(447), - [anon_sym_mut] = ACTIONS(449), - [anon_sym_const] = ACTIONS(451), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(381), - [anon_sym_error] = ACTIONS(383), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_for] = ACTIONS(391), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_while] = ACTIONS(395), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_source] = ACTIONS(409), - [anon_sym_source_DASHenv] = ACTIONS(409), - [anon_sym_register] = ACTIONS(411), - [anon_sym_hide] = ACTIONS(413), - [anon_sym_hide_DASHenv] = ACTIONS(415), - [anon_sym_overlay] = ACTIONS(417), - [anon_sym_where] = ACTIONS(467), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [145] = { - [sym__block_body_statement_parenthesized] = STATE(6652), - [sym__declaration_parenthesized] = STATE(7024), - [sym_decl_alias_parenthesized] = STATE(7299), - [sym_stmt_let_parenthesized] = STATE(7306), - [sym_stmt_mut_parenthesized] = STATE(7306), - [sym_stmt_const_parenthesized] = STATE(7306), - [sym_assignment_parenthesized] = STATE(7306), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7318), - [sym__statement_parenthesized] = STATE(7024), - [sym_pipeline_parenthesized] = STATE(7306), - [sym_cmd_identifier] = STATE(4636), - [sym_decl_def] = STATE(7299), - [sym_decl_export] = STATE(7299), - [sym_decl_extern] = STATE(7299), - [sym_decl_module] = STATE(7299), - [sym_decl_use] = STATE(7299), - [sym__ctrl_statement] = STATE(7306), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_stmt_source] = STATE(7306), - [sym_stmt_register] = STATE(7306), - [sym__stmt_hide] = STATE(7306), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(7306), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1612), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(844), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(145), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(197), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(331), - [aux_sym__parenthesized_body_repeat2] = STATE(145), + [aux_sym_pipeline_repeat1] = STATE(203), + [aux_sym__block_body_repeat2] = STATE(144), + [aux_sym_pipe_element_repeat2] = STATE(333), [anon_sym_export] = ACTIONS(631), [anon_sym_alias] = ACTIONS(634), [anon_sym_let] = ACTIONS(637), @@ -89669,79 +89813,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(793), }, + [145] = { + [sym__block_body_statement_parenthesized] = STATE(5821), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(145), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(151), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, [146] = { - [sym__block_body_statement] = STATE(6466), - [sym__declaration] = STATE(7048), - [sym_decl_alias] = STATE(7040), - [sym_stmt_let] = STATE(7055), - [sym_stmt_mut] = STATE(7055), - [sym_stmt_const] = STATE(7055), - [sym_assignment] = STATE(7055), - [sym__mutable_assignment_pattern] = STATE(7059), - [sym__statement] = STATE(7048), - [sym_pipeline] = STATE(7055), - [sym_cmd_identifier] = STATE(4748), - [sym_decl_def] = STATE(7040), - [sym_decl_export] = STATE(7040), - [sym_decl_extern] = STATE(7040), - [sym_decl_module] = STATE(7040), - [sym_decl_use] = STATE(7040), - [sym__ctrl_statement] = STATE(7055), - [sym__ctrl_expression] = STATE(5131), - [sym_ctrl_for] = STATE(7087), - [sym_ctrl_loop] = STATE(7087), - [sym_ctrl_error] = STATE(7087), - [sym_ctrl_while] = STATE(7087), - [sym_ctrl_do] = STATE(5133), - [sym_ctrl_if] = STATE(5133), - [sym_ctrl_match] = STATE(5133), - [sym_ctrl_try] = STATE(5133), - [sym_ctrl_return] = STATE(5133), - [sym_pipe_element] = STATE(4686), - [sym_stmt_source] = STATE(7055), - [sym_stmt_register] = STATE(7055), - [sym__stmt_hide] = STATE(7055), - [sym_hide_mod] = STATE(7049), - [sym_hide_env] = STATE(7049), - [sym__stmt_overlay] = STATE(7055), - [sym_overlay_list] = STATE(7088), - [sym_overlay_hide] = STATE(7088), - [sym_overlay_new] = STATE(7088), - [sym_overlay_use] = STATE(7088), - [sym_where_command] = STATE(5165), - [sym__expression] = STATE(3942), - [sym_expr_unary] = STATE(2469), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2469), - [sym__expr_binary_expression] = STATE(3961), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(3962), - [sym__value] = STATE(2469), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(2487), - [sym_val_variable] = STATE(1508), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(826), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(5165), + [sym__block_body_statement] = STATE(6784), + [sym__declaration] = STATE(7166), + [sym_decl_alias] = STATE(7170), + [sym_stmt_let] = STATE(6842), + [sym_stmt_mut] = STATE(6842), + [sym_stmt_const] = STATE(6842), + [sym_assignment] = STATE(6842), + [sym__mutable_assignment_pattern] = STATE(6910), + [sym__statement] = STATE(7166), + [sym_pipeline] = STATE(6842), + [sym_cmd_identifier] = STATE(4653), + [sym_decl_def] = STATE(7170), + [sym_decl_export] = STATE(7170), + [sym_decl_extern] = STATE(7170), + [sym_decl_module] = STATE(7170), + [sym_decl_use] = STATE(7170), + [sym__ctrl_statement] = STATE(6842), + [sym__ctrl_expression] = STATE(5067), + [sym_ctrl_for] = STATE(7366), + [sym_ctrl_loop] = STATE(7366), + [sym_ctrl_error] = STATE(7366), + [sym_ctrl_while] = STATE(7366), + [sym_ctrl_do] = STATE(5032), + [sym_ctrl_if] = STATE(5032), + [sym_ctrl_match] = STATE(5032), + [sym_ctrl_try] = STATE(5032), + [sym_ctrl_return] = STATE(5032), + [sym_pipe_element] = STATE(4745), + [sym_stmt_source] = STATE(6842), + [sym_stmt_register] = STATE(6842), + [sym__stmt_hide] = STATE(6842), + [sym_hide_mod] = STATE(7441), + [sym_hide_env] = STATE(7441), + [sym__stmt_overlay] = STATE(6842), + [sym_overlay_list] = STATE(6830), + [sym_overlay_hide] = STATE(6830), + [sym_overlay_new] = STATE(6830), + [sym_overlay_use] = STATE(6830), + [sym_where_command] = STATE(5146), + [sym__expression] = STATE(3951), + [sym_expr_unary] = STATE(2522), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2522), + [sym__expr_binary_expression] = STATE(3982), + [sym_expr_parenthesized] = STATE(2170), + [sym_val_range] = STATE(3995), + [sym__value] = STATE(2522), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(2481), + [sym_val_variable] = STATE(1564), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(822), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(5146), [sym_comment] = STATE(146), [aux_sym_pipeline_repeat1] = STATE(202), - [aux_sym__block_body_repeat2] = STATE(151), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym__block_body_repeat2] = STATE(144), + [aux_sym_pipe_element_repeat2] = STATE(325), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -89848,84 +90170,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(121), }, [147] = { - [sym__block_body_statement] = STATE(6053), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1560), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6119), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1570), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(147), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat2] = STATE(151), - [aux_sym_pipe_element_repeat2] = STATE(327), - [anon_sym_export] = ACTIONS(619), - [anon_sym_alias] = ACTIONS(621), - [anon_sym_let] = ACTIONS(623), - [anon_sym_let_DASHenv] = ACTIONS(623), - [anon_sym_mut] = ACTIONS(625), - [anon_sym_const] = ACTIONS(627), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym__block_body_repeat2] = STATE(144), + [aux_sym_pipe_element_repeat2] = STATE(316), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -89982,12 +90304,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_loop] = ACTIONS(393), [anon_sym_while] = ACTIONS(395), [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(629), + [anon_sym_if] = ACTIONS(399), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(465), + [anon_sym_return] = ACTIONS(407), [anon_sym_source] = ACTIONS(409), [anon_sym_source_DASHenv] = ACTIONS(409), [anon_sym_register] = ACTIONS(411), @@ -90001,10 +90323,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -90026,84 +90348,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [148] = { - [sym__block_body_statement] = STATE(6025), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1507), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6119), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1549), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(148), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym__block_body_repeat2] = STATE(151), - [aux_sym_pipe_element_repeat2] = STATE(334), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym__block_body_repeat2] = STATE(144), + [aux_sym_pipe_element_repeat2] = STATE(323), + [anon_sym_export] = ACTIONS(615), + [anon_sym_alias] = ACTIONS(617), + [anon_sym_let] = ACTIONS(619), + [anon_sym_let_DASHenv] = ACTIONS(619), + [anon_sym_mut] = ACTIONS(621), + [anon_sym_const] = ACTIONS(623), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -90160,12 +90482,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_loop] = ACTIONS(393), [anon_sym_while] = ACTIONS(395), [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), + [anon_sym_if] = ACTIONS(625), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), + [anon_sym_return] = ACTIONS(465), [anon_sym_source] = ACTIONS(409), [anon_sym_source_DASHenv] = ACTIONS(409), [anon_sym_register] = ACTIONS(411), @@ -90179,10 +90501,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -90204,84 +90526,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [149] = { - [sym__block_body_statement] = STATE(6025), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1560), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym__block_body_statement] = STATE(6075), + [sym__declaration] = STATE(6250), + [sym_decl_alias] = STATE(6251), + [sym_stmt_let] = STATE(6256), + [sym_stmt_mut] = STATE(6256), + [sym_stmt_const] = STATE(6256), + [sym_assignment] = STATE(6256), + [sym__mutable_assignment_pattern] = STATE(6257), + [sym__statement] = STATE(6250), + [sym_pipeline] = STATE(6256), + [sym_cmd_identifier] = STATE(4546), + [sym_decl_def] = STATE(6251), + [sym_decl_export] = STATE(6251), + [sym_decl_extern] = STATE(6251), + [sym_decl_module] = STATE(6251), + [sym_decl_use] = STATE(6251), + [sym__ctrl_statement] = STATE(6256), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_stmt_source] = STATE(6256), + [sym_stmt_register] = STATE(6256), + [sym__stmt_hide] = STATE(6256), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(6256), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1549), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(149), [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym__block_body_repeat2] = STATE(151), - [aux_sym_pipe_element_repeat2] = STATE(327), - [anon_sym_export] = ACTIONS(619), - [anon_sym_alias] = ACTIONS(621), - [anon_sym_let] = ACTIONS(623), - [anon_sym_let_DASHenv] = ACTIONS(623), - [anon_sym_mut] = ACTIONS(625), - [anon_sym_const] = ACTIONS(627), + [aux_sym__block_body_repeat2] = STATE(144), + [aux_sym_pipe_element_repeat2] = STATE(323), + [anon_sym_export] = ACTIONS(615), + [anon_sym_alias] = ACTIONS(617), + [anon_sym_let] = ACTIONS(619), + [anon_sym_let_DASHenv] = ACTIONS(619), + [anon_sym_mut] = ACTIONS(621), + [anon_sym_const] = ACTIONS(623), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -90338,7 +90660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_loop] = ACTIONS(393), [anon_sym_while] = ACTIONS(395), [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(629), + [anon_sym_if] = ACTIONS(625), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), @@ -90382,258 +90704,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [150] = { - [sym__block_body_statement] = STATE(6675), - [sym__declaration] = STATE(7048), - [sym_decl_alias] = STATE(7040), - [sym_stmt_let] = STATE(7055), - [sym_stmt_mut] = STATE(7055), - [sym_stmt_const] = STATE(7055), - [sym_assignment] = STATE(7055), - [sym__mutable_assignment_pattern] = STATE(7059), - [sym__statement] = STATE(7048), - [sym_pipeline] = STATE(7055), - [sym_cmd_identifier] = STATE(4748), - [sym_decl_def] = STATE(7040), - [sym_decl_export] = STATE(7040), - [sym_decl_extern] = STATE(7040), - [sym_decl_module] = STATE(7040), - [sym_decl_use] = STATE(7040), - [sym__ctrl_statement] = STATE(7055), - [sym__ctrl_expression] = STATE(5131), - [sym_ctrl_for] = STATE(7087), - [sym_ctrl_loop] = STATE(7087), - [sym_ctrl_error] = STATE(7087), - [sym_ctrl_while] = STATE(7087), - [sym_ctrl_do] = STATE(5133), - [sym_ctrl_if] = STATE(5133), - [sym_ctrl_match] = STATE(5133), - [sym_ctrl_try] = STATE(5133), - [sym_ctrl_return] = STATE(5133), - [sym_pipe_element] = STATE(4686), - [sym_stmt_source] = STATE(7055), - [sym_stmt_register] = STATE(7055), - [sym__stmt_hide] = STATE(7055), - [sym_hide_mod] = STATE(7049), - [sym_hide_env] = STATE(7049), - [sym__stmt_overlay] = STATE(7055), - [sym_overlay_list] = STATE(7088), - [sym_overlay_hide] = STATE(7088), - [sym_overlay_new] = STATE(7088), - [sym_overlay_use] = STATE(7088), - [sym_where_command] = STATE(5165), - [sym__expression] = STATE(3942), - [sym_expr_unary] = STATE(2469), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2469), - [sym__expr_binary_expression] = STATE(3961), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(3962), - [sym__value] = STATE(2469), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(2487), - [sym_val_variable] = STATE(1508), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(826), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(5165), + [sym__block_body_statement_parenthesized] = STATE(5740), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1546), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), [sym_comment] = STATE(150), - [aux_sym_pipeline_repeat1] = STATE(202), - [aux_sym__block_body_repeat2] = STATE(151), - [aux_sym_pipe_element_repeat2] = STATE(318), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_let_DASHenv] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(19), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(19), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(19), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(21), - [aux_sym_cmd_identifier_token23] = ACTIONS(21), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(21), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(21), - [aux_sym_cmd_identifier_token28] = ACTIONS(21), - [aux_sym_cmd_identifier_token29] = ACTIONS(21), - [aux_sym_cmd_identifier_token30] = ACTIONS(21), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(19), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(21), - [aux_sym_cmd_identifier_token37] = ACTIONS(21), - [aux_sym_cmd_identifier_token38] = ACTIONS(19), - [aux_sym_cmd_identifier_token39] = ACTIONS(21), - [aux_sym_cmd_identifier_token40] = ACTIONS(21), - [anon_sym_def] = ACTIONS(27), - [anon_sym_export_DASHenv] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_use] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [anon_sym_error] = ACTIONS(43), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_loop] = ACTIONS(53), - [anon_sym_while] = ACTIONS(55), - [anon_sym_do] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_match] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_source] = ACTIONS(71), - [anon_sym_source_DASHenv] = ACTIONS(71), - [anon_sym_register] = ACTIONS(73), - [anon_sym_hide] = ACTIONS(75), - [anon_sym_hide_DASHenv] = ACTIONS(77), - [anon_sym_overlay] = ACTIONS(79), - [anon_sym_where] = ACTIONS(81), - [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(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [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(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [151] = { - [sym__block_body_statement] = STATE(7106), - [sym__declaration] = STATE(6604), - [sym_decl_alias] = STATE(6606), - [sym_stmt_let] = STATE(6607), - [sym_stmt_mut] = STATE(6607), - [sym_stmt_const] = STATE(6607), - [sym_assignment] = STATE(6607), - [sym__mutable_assignment_pattern] = STATE(6608), - [sym__statement] = STATE(6604), - [sym_pipeline] = STATE(6607), - [sym_cmd_identifier] = STATE(4592), - [sym_decl_def] = STATE(6606), - [sym_decl_export] = STATE(6606), - [sym_decl_extern] = STATE(6606), - [sym_decl_module] = STATE(6606), - [sym_decl_use] = STATE(6606), - [sym__ctrl_statement] = STATE(6607), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_for] = STATE(6616), - [sym_ctrl_loop] = STATE(6616), - [sym_ctrl_error] = STATE(6616), - [sym_ctrl_while] = STATE(6616), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_stmt_source] = STATE(6607), - [sym_stmt_register] = STATE(6607), - [sym__stmt_hide] = STATE(6607), - [sym_hide_mod] = STATE(6618), - [sym_hide_env] = STATE(6618), - [sym__stmt_overlay] = STATE(6607), - [sym_overlay_list] = STATE(6619), - [sym_overlay_hide] = STATE(6619), - [sym_overlay_new] = STATE(6619), - [sym_overlay_use] = STATE(6619), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1624), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(844), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), - [sym_comment] = STATE(151), - [aux_sym_pipeline_repeat1] = STATE(201), - [aux_sym__block_body_repeat2] = STATE(151), - [aux_sym_pipe_element_repeat2] = STATE(329), - [anon_sym_export] = ACTIONS(796), - [anon_sym_alias] = ACTIONS(799), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), + [aux_sym__parenthesized_body_repeat2] = STATE(151), + [anon_sym_export] = ACTIONS(443), + [anon_sym_alias] = ACTIONS(445), + [anon_sym_let] = ACTIONS(447), + [anon_sym_let_DASHenv] = ACTIONS(447), + [anon_sym_mut] = ACTIONS(449), + [anon_sym_const] = ACTIONS(451), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_error] = ACTIONS(383), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_for] = ACTIONS(391), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_source] = ACTIONS(409), + [anon_sym_source_DASHenv] = ACTIONS(409), + [anon_sym_register] = ACTIONS(411), + [anon_sym_hide] = ACTIONS(413), + [anon_sym_hide_DASHenv] = ACTIONS(415), + [anon_sym_overlay] = ACTIONS(417), + [anon_sym_where] = ACTIONS(467), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [151] = { + [sym__block_body_statement_parenthesized] = STATE(6348), + [sym__declaration_parenthesized] = STATE(7280), + [sym_decl_alias_parenthesized] = STATE(7282), + [sym_stmt_let_parenthesized] = STATE(7289), + [sym_stmt_mut_parenthesized] = STATE(7289), + [sym_stmt_const_parenthesized] = STATE(7289), + [sym_assignment_parenthesized] = STATE(7289), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7292), + [sym__statement_parenthesized] = STATE(7280), + [sym_pipeline_parenthesized] = STATE(7289), + [sym_cmd_identifier] = STATE(4794), + [sym_decl_def] = STATE(7282), + [sym_decl_export] = STATE(7282), + [sym_decl_extern] = STATE(7282), + [sym_decl_module] = STATE(7282), + [sym_decl_use] = STATE(7282), + [sym__ctrl_statement] = STATE(7289), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_for] = STATE(6260), + [sym_ctrl_loop] = STATE(6260), + [sym_ctrl_error] = STATE(6260), + [sym_ctrl_while] = STATE(6260), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_stmt_source] = STATE(7289), + [sym_stmt_register] = STATE(7289), + [sym__stmt_hide] = STATE(7289), + [sym_hide_mod] = STATE(6263), + [sym_hide_env] = STATE(6263), + [sym__stmt_overlay] = STATE(7289), + [sym_overlay_list] = STATE(6264), + [sym_overlay_hide] = STATE(6264), + [sym_overlay_new] = STATE(6264), + [sym_overlay_use] = STATE(6264), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(1607), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(839), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(151), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), + [aux_sym__parenthesized_body_repeat2] = STATE(151), + [anon_sym_export] = ACTIONS(796), + [anon_sym_alias] = ACTIONS(799), [anon_sym_let] = ACTIONS(802), [anon_sym_let_DASHenv] = ACTIONS(802), [anon_sym_mut] = ACTIONS(805), @@ -90738,7 +91060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(958), }, [152] = { - [sym_cell_path] = STATE(164), + [sym_cell_path] = STATE(165), [sym_path] = STATE(161), [sym_comment] = STATE(152), [aux_sym_cell_path_repeat1] = STATE(153), @@ -92710,82 +93032,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(164), [anon_sym_export] = ACTIONS(1018), [anon_sym_alias] = ACTIONS(1018), - [anon_sym_EQ] = ACTIONS(1018), + [anon_sym_EQ] = ACTIONS(1020), [anon_sym_let] = ACTIONS(1018), [anon_sym_let_DASHenv] = ACTIONS(1018), [anon_sym_mut] = ACTIONS(1018), [anon_sym_const] = ACTIONS(1018), - [anon_sym_PLUS_EQ] = ACTIONS(1020), - [anon_sym_DASH_EQ] = ACTIONS(1020), - [anon_sym_STAR_EQ] = ACTIONS(1020), - [anon_sym_SLASH_EQ] = ACTIONS(1020), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1020), + [anon_sym_PLUS_EQ] = ACTIONS(1022), + [anon_sym_DASH_EQ] = ACTIONS(1022), + [anon_sym_STAR_EQ] = ACTIONS(1022), + [anon_sym_SLASH_EQ] = ACTIONS(1022), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1022), [aux_sym_cmd_identifier_token1] = ACTIONS(1018), - [aux_sym_cmd_identifier_token2] = ACTIONS(1020), - [aux_sym_cmd_identifier_token3] = ACTIONS(1020), - [aux_sym_cmd_identifier_token4] = ACTIONS(1020), - [aux_sym_cmd_identifier_token5] = ACTIONS(1020), - [aux_sym_cmd_identifier_token6] = ACTIONS(1020), - [aux_sym_cmd_identifier_token7] = ACTIONS(1020), + [aux_sym_cmd_identifier_token2] = ACTIONS(1024), + [aux_sym_cmd_identifier_token3] = ACTIONS(1024), + [aux_sym_cmd_identifier_token4] = ACTIONS(1024), + [aux_sym_cmd_identifier_token5] = ACTIONS(1024), + [aux_sym_cmd_identifier_token6] = ACTIONS(1024), + [aux_sym_cmd_identifier_token7] = ACTIONS(1024), [aux_sym_cmd_identifier_token8] = ACTIONS(1018), [aux_sym_cmd_identifier_token9] = ACTIONS(1018), - [aux_sym_cmd_identifier_token10] = ACTIONS(1020), - [aux_sym_cmd_identifier_token11] = ACTIONS(1020), + [aux_sym_cmd_identifier_token10] = ACTIONS(1024), + [aux_sym_cmd_identifier_token11] = ACTIONS(1024), [aux_sym_cmd_identifier_token12] = ACTIONS(1018), [aux_sym_cmd_identifier_token13] = ACTIONS(1018), [aux_sym_cmd_identifier_token14] = ACTIONS(1018), [aux_sym_cmd_identifier_token15] = ACTIONS(1018), - [aux_sym_cmd_identifier_token16] = ACTIONS(1020), - [aux_sym_cmd_identifier_token17] = ACTIONS(1020), - [aux_sym_cmd_identifier_token18] = ACTIONS(1020), - [aux_sym_cmd_identifier_token19] = ACTIONS(1020), - [aux_sym_cmd_identifier_token20] = ACTIONS(1020), - [aux_sym_cmd_identifier_token21] = ACTIONS(1020), - [aux_sym_cmd_identifier_token22] = ACTIONS(1020), - [aux_sym_cmd_identifier_token23] = ACTIONS(1020), - [aux_sym_cmd_identifier_token24] = ACTIONS(1020), - [aux_sym_cmd_identifier_token25] = ACTIONS(1020), - [aux_sym_cmd_identifier_token26] = ACTIONS(1020), - [aux_sym_cmd_identifier_token27] = ACTIONS(1020), - [aux_sym_cmd_identifier_token28] = ACTIONS(1020), - [aux_sym_cmd_identifier_token29] = ACTIONS(1020), - [aux_sym_cmd_identifier_token30] = ACTIONS(1020), - [aux_sym_cmd_identifier_token31] = ACTIONS(1020), - [aux_sym_cmd_identifier_token32] = ACTIONS(1020), - [aux_sym_cmd_identifier_token33] = ACTIONS(1020), + [aux_sym_cmd_identifier_token16] = ACTIONS(1024), + [aux_sym_cmd_identifier_token17] = ACTIONS(1024), + [aux_sym_cmd_identifier_token18] = ACTIONS(1024), + [aux_sym_cmd_identifier_token19] = ACTIONS(1024), + [aux_sym_cmd_identifier_token20] = ACTIONS(1024), + [aux_sym_cmd_identifier_token21] = ACTIONS(1024), + [aux_sym_cmd_identifier_token22] = ACTIONS(1024), + [aux_sym_cmd_identifier_token23] = ACTIONS(1024), + [aux_sym_cmd_identifier_token24] = ACTIONS(1024), + [aux_sym_cmd_identifier_token25] = ACTIONS(1024), + [aux_sym_cmd_identifier_token26] = ACTIONS(1024), + [aux_sym_cmd_identifier_token27] = ACTIONS(1024), + [aux_sym_cmd_identifier_token28] = ACTIONS(1024), + [aux_sym_cmd_identifier_token29] = ACTIONS(1024), + [aux_sym_cmd_identifier_token30] = ACTIONS(1024), + [aux_sym_cmd_identifier_token31] = ACTIONS(1024), + [aux_sym_cmd_identifier_token32] = ACTIONS(1024), + [aux_sym_cmd_identifier_token33] = ACTIONS(1024), [aux_sym_cmd_identifier_token34] = ACTIONS(1018), - [aux_sym_cmd_identifier_token35] = ACTIONS(1020), - [aux_sym_cmd_identifier_token36] = ACTIONS(1020), - [aux_sym_cmd_identifier_token37] = ACTIONS(1020), + [aux_sym_cmd_identifier_token35] = ACTIONS(1024), + [aux_sym_cmd_identifier_token36] = ACTIONS(1024), + [aux_sym_cmd_identifier_token37] = ACTIONS(1024), [aux_sym_cmd_identifier_token38] = ACTIONS(1018), - [aux_sym_cmd_identifier_token39] = ACTIONS(1020), - [aux_sym_cmd_identifier_token40] = ACTIONS(1020), - [sym__newline] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1020), - [anon_sym_PIPE] = ACTIONS(1020), - [anon_sym_err_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_GT_PIPE] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), + [aux_sym_cmd_identifier_token39] = ACTIONS(1024), + [aux_sym_cmd_identifier_token40] = ACTIONS(1024), + [sym__newline] = ACTIONS(1026), + [anon_sym_SEMI] = ACTIONS(1028), + [anon_sym_PIPE] = ACTIONS(1028), + [anon_sym_err_GT_PIPE] = ACTIONS(1028), + [anon_sym_out_GT_PIPE] = ACTIONS(1028), + [anon_sym_e_GT_PIPE] = ACTIONS(1028), + [anon_sym_o_GT_PIPE] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), [anon_sym_def] = ACTIONS(1018), [anon_sym_export_DASHenv] = ACTIONS(1018), [anon_sym_extern] = ACTIONS(1018), [anon_sym_module] = ACTIONS(1018), [anon_sym_use] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_COMMA] = ACTIONS(1020), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_COMMA] = ACTIONS(1030), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_error] = ACTIONS(1018), - [anon_sym_GT2] = ACTIONS(1018), - [anon_sym_DASH2] = ACTIONS(1018), + [anon_sym_GT2] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(1032), [anon_sym_break] = ACTIONS(1018), [anon_sym_continue] = ACTIONS(1018), [anon_sym_for] = ACTIONS(1018), - [anon_sym_in2] = ACTIONS(1018), + [anon_sym_in2] = ACTIONS(1032), [anon_sym_loop] = ACTIONS(1018), [anon_sym_make] = ACTIONS(1018), [anon_sym_while] = ACTIONS(1018), @@ -92793,7 +93115,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1018), [anon_sym_else] = ACTIONS(1018), [anon_sym_match] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1035), [anon_sym_try] = ACTIONS(1018), [anon_sym_catch] = ACTIONS(1018), [anon_sym_return] = ACTIONS(1018), @@ -92804,275 +93126,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(1018), [anon_sym_overlay] = ACTIONS(1018), [anon_sym_as] = ACTIONS(1018), - [anon_sym_STAR2] = ACTIONS(1018), - [anon_sym_and2] = ACTIONS(1020), - [anon_sym_xor2] = ACTIONS(1020), - [anon_sym_or2] = ACTIONS(1020), - [anon_sym_not_DASHin2] = ACTIONS(1020), - [anon_sym_starts_DASHwith2] = ACTIONS(1020), - [anon_sym_ends_DASHwith2] = ACTIONS(1020), - [anon_sym_EQ_EQ2] = ACTIONS(1020), - [anon_sym_BANG_EQ2] = ACTIONS(1020), - [anon_sym_LT2] = ACTIONS(1018), - [anon_sym_LT_EQ2] = ACTIONS(1020), - [anon_sym_GT_EQ2] = ACTIONS(1020), - [anon_sym_EQ_TILDE2] = ACTIONS(1020), - [anon_sym_BANG_TILDE2] = ACTIONS(1020), - [anon_sym_STAR_STAR2] = ACTIONS(1020), - [anon_sym_PLUS_PLUS2] = ACTIONS(1018), - [anon_sym_SLASH2] = ACTIONS(1018), - [anon_sym_mod2] = ACTIONS(1018), - [anon_sym_SLASH_SLASH2] = ACTIONS(1020), - [anon_sym_PLUS2] = ACTIONS(1018), - [anon_sym_bit_DASHshl2] = ACTIONS(1020), - [anon_sym_bit_DASHshr2] = ACTIONS(1020), - [anon_sym_bit_DASHand2] = ACTIONS(1020), - [anon_sym_bit_DASHxor2] = ACTIONS(1020), - [anon_sym_bit_DASHor2] = ACTIONS(1020), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1020), - [anon_sym_DOT_DOT2] = ACTIONS(1018), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1020), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1020), + [anon_sym_STAR2] = ACTIONS(1026), + [anon_sym_and2] = ACTIONS(1028), + [anon_sym_xor2] = ACTIONS(1028), + [anon_sym_or2] = ACTIONS(1028), + [anon_sym_not_DASHin2] = ACTIONS(1028), + [anon_sym_starts_DASHwith2] = ACTIONS(1028), + [anon_sym_ends_DASHwith2] = ACTIONS(1028), + [anon_sym_EQ_EQ2] = ACTIONS(1028), + [anon_sym_BANG_EQ2] = ACTIONS(1028), + [anon_sym_LT2] = ACTIONS(1026), + [anon_sym_LT_EQ2] = ACTIONS(1028), + [anon_sym_GT_EQ2] = ACTIONS(1028), + [anon_sym_EQ_TILDE2] = ACTIONS(1028), + [anon_sym_BANG_TILDE2] = ACTIONS(1028), + [anon_sym_STAR_STAR2] = ACTIONS(1028), + [anon_sym_PLUS_PLUS2] = ACTIONS(1026), + [anon_sym_SLASH2] = ACTIONS(1026), + [anon_sym_mod2] = ACTIONS(1026), + [anon_sym_SLASH_SLASH2] = ACTIONS(1028), + [anon_sym_PLUS2] = ACTIONS(1032), + [anon_sym_bit_DASHshl2] = ACTIONS(1028), + [anon_sym_bit_DASHshr2] = ACTIONS(1028), + [anon_sym_bit_DASHand2] = ACTIONS(1028), + [anon_sym_bit_DASHxor2] = ACTIONS(1028), + [anon_sym_bit_DASHor2] = ACTIONS(1028), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1024), + [anon_sym_DOT_DOT2] = ACTIONS(1038), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1024), [aux_sym__val_number_decimal_token1] = ACTIONS(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1020), - [aux_sym__val_number_decimal_token3] = ACTIONS(1020), - [aux_sym__val_number_decimal_token4] = ACTIONS(1020), - [aux_sym__val_number_token1] = ACTIONS(1020), - [aux_sym__val_number_token2] = ACTIONS(1020), - [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_decimal_token4] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), [aux_sym__val_number_token4] = ACTIONS(1018), [aux_sym__val_number_token5] = ACTIONS(1018), [aux_sym__val_number_token6] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1020), - [sym__str_single_quotes] = ACTIONS(1020), - [sym__str_back_ticks] = ACTIONS(1020), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1020), - [aux_sym_record_entry_token1] = ACTIONS(1020), - [anon_sym_err_GT] = ACTIONS(1018), - [anon_sym_out_GT] = ACTIONS(1018), - [anon_sym_e_GT] = ACTIONS(1018), - [anon_sym_o_GT] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT] = ACTIONS(1018), - [anon_sym_err_GT_GT] = ACTIONS(1020), - [anon_sym_out_GT_GT] = ACTIONS(1020), - [anon_sym_e_GT_GT] = ACTIONS(1020), - [anon_sym_o_GT_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1024), + [aux_sym_record_entry_token1] = ACTIONS(1042), + [anon_sym_err_GT] = ACTIONS(1026), + [anon_sym_out_GT] = ACTIONS(1026), + [anon_sym_e_GT] = ACTIONS(1026), + [anon_sym_o_GT] = ACTIONS(1026), + [anon_sym_err_PLUSout_GT] = ACTIONS(1026), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), + [anon_sym_o_PLUSe_GT] = ACTIONS(1026), + [anon_sym_e_PLUSo_GT] = ACTIONS(1026), + [anon_sym_err_GT_GT] = ACTIONS(1028), + [anon_sym_out_GT_GT] = ACTIONS(1028), + [anon_sym_e_GT_GT] = ACTIONS(1028), + [anon_sym_o_GT_GT] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1028), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1024), }, [165] = { [sym_comment] = STATE(165), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_alias] = ACTIONS(1022), - [anon_sym_EQ] = ACTIONS(1024), - [anon_sym_let] = ACTIONS(1022), - [anon_sym_let_DASHenv] = ACTIONS(1022), - [anon_sym_mut] = ACTIONS(1022), - [anon_sym_const] = ACTIONS(1022), - [anon_sym_PLUS_EQ] = ACTIONS(1026), - [anon_sym_DASH_EQ] = ACTIONS(1026), - [anon_sym_STAR_EQ] = ACTIONS(1026), - [anon_sym_SLASH_EQ] = ACTIONS(1026), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1026), - [aux_sym_cmd_identifier_token1] = ACTIONS(1022), - [aux_sym_cmd_identifier_token2] = ACTIONS(1028), - [aux_sym_cmd_identifier_token3] = ACTIONS(1028), - [aux_sym_cmd_identifier_token4] = ACTIONS(1028), - [aux_sym_cmd_identifier_token5] = ACTIONS(1028), - [aux_sym_cmd_identifier_token6] = ACTIONS(1028), - [aux_sym_cmd_identifier_token7] = ACTIONS(1028), - [aux_sym_cmd_identifier_token8] = ACTIONS(1022), - [aux_sym_cmd_identifier_token9] = ACTIONS(1022), - [aux_sym_cmd_identifier_token10] = ACTIONS(1028), - [aux_sym_cmd_identifier_token11] = ACTIONS(1028), - [aux_sym_cmd_identifier_token12] = ACTIONS(1022), - [aux_sym_cmd_identifier_token13] = ACTIONS(1022), - [aux_sym_cmd_identifier_token14] = ACTIONS(1022), - [aux_sym_cmd_identifier_token15] = ACTIONS(1022), - [aux_sym_cmd_identifier_token16] = ACTIONS(1028), - [aux_sym_cmd_identifier_token17] = ACTIONS(1028), - [aux_sym_cmd_identifier_token18] = ACTIONS(1028), - [aux_sym_cmd_identifier_token19] = ACTIONS(1028), - [aux_sym_cmd_identifier_token20] = ACTIONS(1028), - [aux_sym_cmd_identifier_token21] = ACTIONS(1028), - [aux_sym_cmd_identifier_token22] = ACTIONS(1028), - [aux_sym_cmd_identifier_token23] = ACTIONS(1028), - [aux_sym_cmd_identifier_token24] = ACTIONS(1028), - [aux_sym_cmd_identifier_token25] = ACTIONS(1028), - [aux_sym_cmd_identifier_token26] = ACTIONS(1028), - [aux_sym_cmd_identifier_token27] = ACTIONS(1028), - [aux_sym_cmd_identifier_token28] = ACTIONS(1028), - [aux_sym_cmd_identifier_token29] = ACTIONS(1028), - [aux_sym_cmd_identifier_token30] = ACTIONS(1028), - [aux_sym_cmd_identifier_token31] = ACTIONS(1028), - [aux_sym_cmd_identifier_token32] = ACTIONS(1028), - [aux_sym_cmd_identifier_token33] = ACTIONS(1028), - [aux_sym_cmd_identifier_token34] = ACTIONS(1022), - [aux_sym_cmd_identifier_token35] = ACTIONS(1028), - [aux_sym_cmd_identifier_token36] = ACTIONS(1028), - [aux_sym_cmd_identifier_token37] = ACTIONS(1028), - [aux_sym_cmd_identifier_token38] = ACTIONS(1022), - [aux_sym_cmd_identifier_token39] = ACTIONS(1028), - [aux_sym_cmd_identifier_token40] = ACTIONS(1028), - [sym__newline] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_err_GT_PIPE] = ACTIONS(1032), - [anon_sym_out_GT_PIPE] = ACTIONS(1032), - [anon_sym_e_GT_PIPE] = ACTIONS(1032), - [anon_sym_o_GT_PIPE] = ACTIONS(1032), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1032), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1032), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1032), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1032), - [anon_sym_def] = ACTIONS(1022), - [anon_sym_export_DASHenv] = ACTIONS(1022), - [anon_sym_extern] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_use] = ACTIONS(1022), - [anon_sym_LPAREN] = ACTIONS(1028), - [anon_sym_COMMA] = ACTIONS(1034), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_error] = ACTIONS(1022), - [anon_sym_GT2] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(1036), - [anon_sym_break] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1022), - [anon_sym_for] = ACTIONS(1022), - [anon_sym_in2] = ACTIONS(1036), - [anon_sym_loop] = ACTIONS(1022), - [anon_sym_make] = ACTIONS(1022), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_do] = ACTIONS(1022), - [anon_sym_if] = ACTIONS(1022), - [anon_sym_else] = ACTIONS(1022), - [anon_sym_match] = ACTIONS(1022), - [anon_sym_RBRACE] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1022), - [anon_sym_catch] = ACTIONS(1022), - [anon_sym_return] = ACTIONS(1022), - [anon_sym_source] = ACTIONS(1022), - [anon_sym_source_DASHenv] = ACTIONS(1022), - [anon_sym_register] = ACTIONS(1022), - [anon_sym_hide] = ACTIONS(1022), - [anon_sym_hide_DASHenv] = ACTIONS(1022), - [anon_sym_overlay] = ACTIONS(1022), - [anon_sym_as] = ACTIONS(1022), - [anon_sym_STAR2] = ACTIONS(1030), - [anon_sym_and2] = ACTIONS(1032), - [anon_sym_xor2] = ACTIONS(1032), - [anon_sym_or2] = ACTIONS(1032), - [anon_sym_not_DASHin2] = ACTIONS(1032), - [anon_sym_starts_DASHwith2] = ACTIONS(1032), - [anon_sym_ends_DASHwith2] = ACTIONS(1032), - [anon_sym_EQ_EQ2] = ACTIONS(1032), - [anon_sym_BANG_EQ2] = ACTIONS(1032), - [anon_sym_LT2] = ACTIONS(1030), - [anon_sym_LT_EQ2] = ACTIONS(1032), - [anon_sym_GT_EQ2] = ACTIONS(1032), - [anon_sym_EQ_TILDE2] = ACTIONS(1032), - [anon_sym_BANG_TILDE2] = ACTIONS(1032), - [anon_sym_STAR_STAR2] = ACTIONS(1032), - [anon_sym_PLUS_PLUS2] = ACTIONS(1030), - [anon_sym_SLASH2] = ACTIONS(1030), - [anon_sym_mod2] = ACTIONS(1030), - [anon_sym_SLASH_SLASH2] = ACTIONS(1032), - [anon_sym_PLUS2] = ACTIONS(1036), - [anon_sym_bit_DASHshl2] = ACTIONS(1032), - [anon_sym_bit_DASHshr2] = ACTIONS(1032), - [anon_sym_bit_DASHand2] = ACTIONS(1032), - [anon_sym_bit_DASHxor2] = ACTIONS(1032), - [anon_sym_bit_DASHor2] = ACTIONS(1032), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1028), - [anon_sym_DOT_DOT2] = ACTIONS(1042), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1028), - [aux_sym__val_number_decimal_token1] = ACTIONS(1022), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1028), - [aux_sym__val_number_decimal_token4] = ACTIONS(1028), - [aux_sym__val_number_token1] = ACTIONS(1028), - [aux_sym__val_number_token2] = ACTIONS(1028), - [aux_sym__val_number_token3] = ACTIONS(1028), - [aux_sym__val_number_token4] = ACTIONS(1022), - [aux_sym__val_number_token5] = ACTIONS(1022), - [aux_sym__val_number_token6] = ACTIONS(1022), - [anon_sym_DQUOTE] = ACTIONS(1028), - [sym__str_single_quotes] = ACTIONS(1028), - [sym__str_back_ticks] = ACTIONS(1028), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1028), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_alias] = ACTIONS(1044), + [anon_sym_EQ] = ACTIONS(1044), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_let_DASHenv] = ACTIONS(1044), + [anon_sym_mut] = ACTIONS(1044), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_PLUS_EQ] = ACTIONS(1046), + [anon_sym_DASH_EQ] = ACTIONS(1046), + [anon_sym_STAR_EQ] = ACTIONS(1046), + [anon_sym_SLASH_EQ] = ACTIONS(1046), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1046), + [aux_sym_cmd_identifier_token1] = ACTIONS(1044), + [aux_sym_cmd_identifier_token2] = ACTIONS(1046), + [aux_sym_cmd_identifier_token3] = ACTIONS(1046), + [aux_sym_cmd_identifier_token4] = ACTIONS(1046), + [aux_sym_cmd_identifier_token5] = ACTIONS(1046), + [aux_sym_cmd_identifier_token6] = ACTIONS(1046), + [aux_sym_cmd_identifier_token7] = ACTIONS(1046), + [aux_sym_cmd_identifier_token8] = ACTIONS(1044), + [aux_sym_cmd_identifier_token9] = ACTIONS(1044), + [aux_sym_cmd_identifier_token10] = ACTIONS(1046), + [aux_sym_cmd_identifier_token11] = ACTIONS(1046), + [aux_sym_cmd_identifier_token12] = ACTIONS(1044), + [aux_sym_cmd_identifier_token13] = ACTIONS(1044), + [aux_sym_cmd_identifier_token14] = ACTIONS(1044), + [aux_sym_cmd_identifier_token15] = ACTIONS(1044), + [aux_sym_cmd_identifier_token16] = ACTIONS(1046), + [aux_sym_cmd_identifier_token17] = ACTIONS(1046), + [aux_sym_cmd_identifier_token18] = ACTIONS(1046), + [aux_sym_cmd_identifier_token19] = ACTIONS(1046), + [aux_sym_cmd_identifier_token20] = ACTIONS(1046), + [aux_sym_cmd_identifier_token21] = ACTIONS(1046), + [aux_sym_cmd_identifier_token22] = ACTIONS(1046), + [aux_sym_cmd_identifier_token23] = ACTIONS(1046), + [aux_sym_cmd_identifier_token24] = ACTIONS(1046), + [aux_sym_cmd_identifier_token25] = ACTIONS(1046), + [aux_sym_cmd_identifier_token26] = ACTIONS(1046), + [aux_sym_cmd_identifier_token27] = ACTIONS(1046), + [aux_sym_cmd_identifier_token28] = ACTIONS(1046), + [aux_sym_cmd_identifier_token29] = ACTIONS(1046), + [aux_sym_cmd_identifier_token30] = ACTIONS(1046), + [aux_sym_cmd_identifier_token31] = ACTIONS(1046), + [aux_sym_cmd_identifier_token32] = ACTIONS(1046), + [aux_sym_cmd_identifier_token33] = ACTIONS(1046), + [aux_sym_cmd_identifier_token34] = ACTIONS(1044), + [aux_sym_cmd_identifier_token35] = ACTIONS(1046), + [aux_sym_cmd_identifier_token36] = ACTIONS(1046), + [aux_sym_cmd_identifier_token37] = ACTIONS(1046), + [aux_sym_cmd_identifier_token38] = ACTIONS(1044), + [aux_sym_cmd_identifier_token39] = ACTIONS(1046), + [aux_sym_cmd_identifier_token40] = ACTIONS(1046), + [sym__newline] = ACTIONS(1044), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_err_GT_PIPE] = ACTIONS(1046), + [anon_sym_out_GT_PIPE] = ACTIONS(1046), + [anon_sym_e_GT_PIPE] = ACTIONS(1046), + [anon_sym_o_GT_PIPE] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1046), + [anon_sym_def] = ACTIONS(1044), + [anon_sym_export_DASHenv] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_use] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_COMMA] = ACTIONS(1046), + [anon_sym_DOLLAR] = ACTIONS(1046), + [anon_sym_error] = ACTIONS(1044), + [anon_sym_GT2] = ACTIONS(1044), + [anon_sym_DASH2] = ACTIONS(1044), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_in2] = ACTIONS(1044), + [anon_sym_loop] = ACTIONS(1044), + [anon_sym_make] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [anon_sym_do] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_else] = ACTIONS(1044), + [anon_sym_match] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_try] = ACTIONS(1044), + [anon_sym_catch] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_source] = ACTIONS(1044), + [anon_sym_source_DASHenv] = ACTIONS(1044), + [anon_sym_register] = ACTIONS(1044), + [anon_sym_hide] = ACTIONS(1044), + [anon_sym_hide_DASHenv] = ACTIONS(1044), + [anon_sym_overlay] = ACTIONS(1044), + [anon_sym_as] = ACTIONS(1044), + [anon_sym_STAR2] = ACTIONS(1044), + [anon_sym_and2] = ACTIONS(1046), + [anon_sym_xor2] = ACTIONS(1046), + [anon_sym_or2] = ACTIONS(1046), + [anon_sym_not_DASHin2] = ACTIONS(1046), + [anon_sym_starts_DASHwith2] = ACTIONS(1046), + [anon_sym_ends_DASHwith2] = ACTIONS(1046), + [anon_sym_EQ_EQ2] = ACTIONS(1046), + [anon_sym_BANG_EQ2] = ACTIONS(1046), + [anon_sym_LT2] = ACTIONS(1044), + [anon_sym_LT_EQ2] = ACTIONS(1046), + [anon_sym_GT_EQ2] = ACTIONS(1046), + [anon_sym_EQ_TILDE2] = ACTIONS(1046), + [anon_sym_BANG_TILDE2] = ACTIONS(1046), + [anon_sym_STAR_STAR2] = ACTIONS(1046), + [anon_sym_PLUS_PLUS2] = ACTIONS(1044), + [anon_sym_SLASH2] = ACTIONS(1044), + [anon_sym_mod2] = ACTIONS(1044), + [anon_sym_SLASH_SLASH2] = ACTIONS(1046), + [anon_sym_PLUS2] = ACTIONS(1044), + [anon_sym_bit_DASHshl2] = ACTIONS(1046), + [anon_sym_bit_DASHshr2] = ACTIONS(1046), + [anon_sym_bit_DASHand2] = ACTIONS(1046), + [anon_sym_bit_DASHxor2] = ACTIONS(1046), + [anon_sym_bit_DASHor2] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1046), + [anon_sym_DOT_DOT2] = ACTIONS(1044), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1046), + [aux_sym__val_number_decimal_token1] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1046), + [aux_sym__val_number_decimal_token3] = ACTIONS(1046), + [aux_sym__val_number_decimal_token4] = ACTIONS(1046), + [aux_sym__val_number_token1] = ACTIONS(1046), + [aux_sym__val_number_token2] = ACTIONS(1046), + [aux_sym__val_number_token3] = ACTIONS(1046), + [aux_sym__val_number_token4] = ACTIONS(1044), + [aux_sym__val_number_token5] = ACTIONS(1044), + [aux_sym__val_number_token6] = ACTIONS(1044), + [anon_sym_DQUOTE] = ACTIONS(1046), + [sym__str_single_quotes] = ACTIONS(1046), + [sym__str_back_ticks] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1046), [aux_sym_record_entry_token1] = ACTIONS(1046), - [anon_sym_err_GT] = ACTIONS(1030), - [anon_sym_out_GT] = ACTIONS(1030), - [anon_sym_e_GT] = ACTIONS(1030), - [anon_sym_o_GT] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT] = ACTIONS(1030), - [anon_sym_err_GT_GT] = ACTIONS(1032), - [anon_sym_out_GT_GT] = ACTIONS(1032), - [anon_sym_e_GT_GT] = ACTIONS(1032), - [anon_sym_o_GT_GT] = ACTIONS(1032), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1032), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1032), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1032), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1032), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1028), + [anon_sym_err_GT] = ACTIONS(1044), + [anon_sym_out_GT] = ACTIONS(1044), + [anon_sym_e_GT] = ACTIONS(1044), + [anon_sym_o_GT] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT] = ACTIONS(1044), + [anon_sym_err_GT_GT] = ACTIONS(1046), + [anon_sym_out_GT_GT] = ACTIONS(1046), + [anon_sym_e_GT_GT] = ACTIONS(1046), + [anon_sym_o_GT_GT] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1046), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1046), }, [166] = { - [sym_pipeline] = STATE(6640), - [sym_cmd_identifier] = STATE(4592), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym_pipeline] = STATE(6330), + [sym_cmd_identifier] = STATE(4546), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(166), [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -93158,48 +93480,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [167] = { - [sym_pipeline_parenthesized] = STATE(6821), - [sym_cmd_identifier] = STATE(4636), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), + [sym_pipeline_parenthesized] = STATE(7251), + [sym_cmd_identifier] = STATE(4794), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(839), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), [sym_comment] = STATE(167), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -93247,12 +93569,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(455), [anon_sym_continue] = ACTIONS(457), [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), + [anon_sym_if] = ACTIONS(1050), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), + [anon_sym_return] = ACTIONS(1052), [anon_sym_where] = ACTIONS(467), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -93260,10 +93582,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1058), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -93285,48 +93607,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [168] = { - [sym_pipeline] = STATE(6295), - [sym_cmd_identifier] = STATE(4592), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym_pipeline] = STATE(7432), + [sym_cmd_identifier] = STATE(4653), + [sym__ctrl_expression] = STATE(5067), + [sym_ctrl_do] = STATE(5032), + [sym_ctrl_if] = STATE(5032), + [sym_ctrl_match] = STATE(5032), + [sym_ctrl_try] = STATE(5032), + [sym_ctrl_return] = STATE(5032), + [sym_pipe_element] = STATE(4745), + [sym_where_command] = STATE(5146), + [sym__expression] = STATE(3951), + [sym_expr_unary] = STATE(2522), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2522), + [sym__expr_binary_expression] = STATE(3982), + [sym_expr_parenthesized] = STATE(2170), + [sym_val_range] = STATE(3995), + [sym__value] = STATE(2522), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(2481), + [sym_val_variable] = STATE(2126), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(822), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(5146), [sym_comment] = STATE(168), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym_pipe_element_repeat2] = STATE(327), + [aux_sym_pipeline_repeat1] = STATE(202), + [aux_sym_pipe_element_repeat2] = STATE(325), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(21), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(21), + [aux_sym_cmd_identifier_token28] = ACTIONS(21), + [aux_sym_cmd_identifier_token29] = ACTIONS(21), + [aux_sym_cmd_identifier_token30] = ACTIONS(21), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(19), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_do] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_where] = ACTIONS(81), + [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(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [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(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), + }, + [169] = { + [sym_pipeline_parenthesized] = STATE(7252), + [sym_cmd_identifier] = STATE(4794), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(839), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(169), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -93371,26 +93820,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(629), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(1050), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(465), - [anon_sym_where] = ACTIONS(201), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_where] = ACTIONS(467), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), [anon_sym_DOT_DOT_LT] = ACTIONS(209), [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1058), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -93407,53 +93856,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(479), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [169] = { - [sym_pipeline] = STATE(6640), - [sym_cmd_identifier] = STATE(4592), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), - [sym_comment] = STATE(169), + [170] = { + [sym_pipeline] = STATE(6248), + [sym_cmd_identifier] = STATE(4546), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), + [sym_comment] = STATE(170), [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym_pipe_element_repeat2] = STATE(327), + [aux_sym_pipe_element_repeat2] = STATE(323), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -93501,7 +93950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(387), [anon_sym_continue] = ACTIONS(389), [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(629), + [anon_sym_if] = ACTIONS(625), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), @@ -93538,49 +93987,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [170] = { - [sym_pipeline_parenthesized] = STATE(7064), - [sym_cmd_identifier] = STATE(4636), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(844), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(170), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(197), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(331), + [171] = { + [sym_pipeline_parenthesized] = STATE(7130), + [sym_cmd_identifier] = STATE(4794), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(839), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(171), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -93665,49 +94114,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [171] = { - [sym_pipeline_parenthesized] = STATE(7070), - [sym_cmd_identifier] = STATE(4636), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(844), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(171), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(197), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(331), + [172] = { + [sym_pipeline] = STATE(6254), + [sym_cmd_identifier] = STATE(4546), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), + [sym_comment] = STATE(172), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym_pipe_element_repeat2] = STATE(323), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -93752,26 +94201,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(1050), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(625), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_where] = ACTIONS(467), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(465), + [anon_sym_where] = ACTIONS(201), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), [anon_sym_DOT_DOT_LT] = ACTIONS(209), [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_decimal_token2] = ACTIONS(1056), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -93788,180 +94237,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [172] = { - [sym_pipeline] = STATE(7067), - [sym_cmd_identifier] = STATE(4748), - [sym__ctrl_expression] = STATE(5131), - [sym_ctrl_do] = STATE(5133), - [sym_ctrl_if] = STATE(5133), - [sym_ctrl_match] = STATE(5133), - [sym_ctrl_try] = STATE(5133), - [sym_ctrl_return] = STATE(5133), - [sym_pipe_element] = STATE(4686), - [sym_where_command] = STATE(5165), - [sym__expression] = STATE(3942), - [sym_expr_unary] = STATE(2469), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2469), - [sym__expr_binary_expression] = STATE(3961), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(3962), - [sym__value] = STATE(2469), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(2487), - [sym_val_variable] = STATE(2113), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(826), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(5165), - [sym_comment] = STATE(172), - [aux_sym_pipeline_repeat1] = STATE(202), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(21), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(21), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(21), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(21), - [aux_sym_cmd_identifier_token23] = ACTIONS(21), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(21), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(21), - [aux_sym_cmd_identifier_token28] = ACTIONS(21), - [aux_sym_cmd_identifier_token29] = ACTIONS(21), - [aux_sym_cmd_identifier_token30] = ACTIONS(21), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(19), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(21), - [aux_sym_cmd_identifier_token37] = ACTIONS(21), - [aux_sym_cmd_identifier_token38] = ACTIONS(19), - [aux_sym_cmd_identifier_token39] = ACTIONS(21), - [aux_sym_cmd_identifier_token40] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1062), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_do] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_match] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_where] = ACTIONS(81), - [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(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [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(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, [173] = { - [sym_pipeline] = STATE(6620), - [sym_cmd_identifier] = STATE(4592), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym_pipeline] = STATE(6269), + [sym_cmd_identifier] = STATE(4546), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(173), [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym_pipe_element_repeat2] = STATE(327), + [aux_sym_pipe_element_repeat2] = STATE(323), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -94009,7 +94331,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(387), [anon_sym_continue] = ACTIONS(389), [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(629), + [anon_sym_if] = ACTIONS(625), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), @@ -94047,48 +94369,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [174] = { - [sym_pipeline] = STATE(6276), - [sym_cmd_identifier] = STATE(4592), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(844), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym_pipeline] = STATE(6324), + [sym_cmd_identifier] = STATE(4546), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(174), - [aux_sym_pipeline_repeat1] = STATE(201), - [aux_sym_pipe_element_repeat2] = STATE(329), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym_pipe_element_repeat2] = STATE(323), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -94136,12 +94458,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(387), [anon_sym_continue] = ACTIONS(389), [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(625), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(465), [anon_sym_where] = ACTIONS(201), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -94149,10 +94471,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_decimal_token2] = ACTIONS(1056), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -94174,175 +94496,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [175] = { - [sym_pipeline] = STATE(6754), - [sym_cmd_identifier] = STATE(4748), - [sym__ctrl_expression] = STATE(5131), - [sym_ctrl_do] = STATE(5133), - [sym_ctrl_if] = STATE(5133), - [sym_ctrl_match] = STATE(5133), - [sym_ctrl_try] = STATE(5133), - [sym_ctrl_return] = STATE(5133), - [sym_pipe_element] = STATE(4686), - [sym_where_command] = STATE(5165), - [sym__expression] = STATE(3942), - [sym_expr_unary] = STATE(2469), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2469), - [sym__expr_binary_expression] = STATE(3961), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(3962), - [sym__value] = STATE(2469), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(2487), - [sym_val_variable] = STATE(2113), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(826), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(5165), + [sym_pipeline] = STATE(6330), + [sym_cmd_identifier] = STATE(4546), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(175), - [aux_sym_pipeline_repeat1] = STATE(202), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(21), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(21), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(21), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(21), - [aux_sym_cmd_identifier_token23] = ACTIONS(21), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(21), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(21), - [aux_sym_cmd_identifier_token28] = ACTIONS(21), - [aux_sym_cmd_identifier_token29] = ACTIONS(21), - [aux_sym_cmd_identifier_token30] = ACTIONS(21), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(19), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(21), - [aux_sym_cmd_identifier_token37] = ACTIONS(21), - [aux_sym_cmd_identifier_token38] = ACTIONS(19), - [aux_sym_cmd_identifier_token39] = ACTIONS(21), - [aux_sym_cmd_identifier_token40] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1062), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_do] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_match] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_where] = ACTIONS(81), - [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(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [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(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [176] = { - [sym_pipeline] = STATE(6295), - [sym_cmd_identifier] = STATE(4592), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(844), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), - [sym_comment] = STATE(176), - [aux_sym_pipeline_repeat1] = STATE(201), - [aux_sym_pipe_element_repeat2] = STATE(329), + [aux_sym_pipeline_repeat1] = STATE(200), + [aux_sym_pipe_element_repeat2] = STATE(323), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -94390,12 +94585,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(387), [anon_sym_continue] = ACTIONS(389), [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(625), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(465), [anon_sym_where] = ACTIONS(201), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -94403,10 +94598,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_decimal_token2] = ACTIONS(1056), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -94427,49 +94622,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [177] = { - [sym_pipeline] = STATE(6879), - [sym_cmd_identifier] = STATE(4748), - [sym__ctrl_expression] = STATE(5131), - [sym_ctrl_do] = STATE(5133), - [sym_ctrl_if] = STATE(5133), - [sym_ctrl_match] = STATE(5133), - [sym_ctrl_try] = STATE(5133), - [sym_ctrl_return] = STATE(5133), - [sym_pipe_element] = STATE(4686), - [sym_where_command] = STATE(5165), - [sym__expression] = STATE(3942), - [sym_expr_unary] = STATE(2469), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2469), - [sym__expr_binary_expression] = STATE(3961), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(3962), - [sym__value] = STATE(2469), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(2487), - [sym_val_variable] = STATE(2113), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(826), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(5165), - [sym_comment] = STATE(177), + [176] = { + [sym_pipeline] = STATE(7433), + [sym_cmd_identifier] = STATE(4653), + [sym__ctrl_expression] = STATE(5067), + [sym_ctrl_do] = STATE(5032), + [sym_ctrl_if] = STATE(5032), + [sym_ctrl_match] = STATE(5032), + [sym_ctrl_try] = STATE(5032), + [sym_ctrl_return] = STATE(5032), + [sym_pipe_element] = STATE(4745), + [sym_where_command] = STATE(5146), + [sym__expression] = STATE(3951), + [sym_expr_unary] = STATE(2522), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2522), + [sym__expr_binary_expression] = STATE(3982), + [sym_expr_parenthesized] = STATE(2170), + [sym_val_range] = STATE(3995), + [sym__value] = STATE(2522), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(2481), + [sym_val_variable] = STATE(2126), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(822), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(5146), + [sym_comment] = STATE(176), [aux_sym_pipeline_repeat1] = STATE(202), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_pipe_element_repeat2] = STATE(325), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -94554,49 +94749,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(121), }, - [178] = { - [sym_pipeline_parenthesized] = STATE(7004), - [sym_cmd_identifier] = STATE(4636), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(178), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [177] = { + [sym_pipeline_parenthesized] = STATE(6892), + [sym_cmd_identifier] = STATE(4794), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(177), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -94681,49 +94876,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, + [178] = { + [sym_pipeline] = STATE(7250), + [sym_cmd_identifier] = STATE(4653), + [sym__ctrl_expression] = STATE(5067), + [sym_ctrl_do] = STATE(5032), + [sym_ctrl_if] = STATE(5032), + [sym_ctrl_match] = STATE(5032), + [sym_ctrl_try] = STATE(5032), + [sym_ctrl_return] = STATE(5032), + [sym_pipe_element] = STATE(4745), + [sym_where_command] = STATE(5146), + [sym__expression] = STATE(3951), + [sym_expr_unary] = STATE(2522), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2522), + [sym__expr_binary_expression] = STATE(3982), + [sym_expr_parenthesized] = STATE(2170), + [sym_val_range] = STATE(3995), + [sym__value] = STATE(2522), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(2481), + [sym_val_variable] = STATE(2126), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(822), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(5146), + [sym_comment] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(202), + [aux_sym_pipe_element_repeat2] = STATE(325), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(21), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(21), + [aux_sym_cmd_identifier_token28] = ACTIONS(21), + [aux_sym_cmd_identifier_token29] = ACTIONS(21), + [aux_sym_cmd_identifier_token30] = ACTIONS(21), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(19), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_do] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_where] = ACTIONS(81), + [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(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [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(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), + }, [179] = { - [sym_pipeline] = STATE(6620), - [sym_cmd_identifier] = STATE(4592), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(844), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym_pipeline_parenthesized] = STATE(6892), + [sym_cmd_identifier] = STATE(4794), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(839), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), [sym_comment] = STATE(179), - [aux_sym_pipeline_repeat1] = STATE(201), - [aux_sym_pipe_element_repeat2] = STATE(329), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -94768,16 +95090,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(1064), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(1050), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), + [anon_sym_try] = ACTIONS(463), [anon_sym_return] = ACTIONS(1052), - [anon_sym_where] = ACTIONS(201), + [anon_sym_where] = ACTIONS(467), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), [anon_sym_DOT_DOT_LT] = ACTIONS(209), @@ -94804,53 +95126,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(479), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [180] = { - [sym_pipeline_parenthesized] = STATE(6821), - [sym_cmd_identifier] = STATE(4636), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(844), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), + [sym_pipeline] = STATE(6254), + [sym_cmd_identifier] = STATE(4546), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(839), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(180), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(197), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(331), + [aux_sym_pipeline_repeat1] = STATE(203), + [aux_sym_pipe_element_repeat2] = STATE(333), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -94895,16 +95217,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(1050), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(1064), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), + [anon_sym_try] = ACTIONS(405), [anon_sym_return] = ACTIONS(1052), - [anon_sym_where] = ACTIONS(467), + [anon_sym_where] = ACTIONS(201), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), [anon_sym_DOT_DOT_LT] = ACTIONS(209), @@ -94931,53 +95253,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [181] = { - [sym_pipeline_parenthesized] = STATE(7085), - [sym_cmd_identifier] = STATE(4636), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), + [sym_pipeline] = STATE(6269), + [sym_cmd_identifier] = STATE(4546), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(839), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(181), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [aux_sym_pipeline_repeat1] = STATE(203), + [aux_sym_pipe_element_repeat2] = STATE(333), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -95022,26 +95344,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(1064), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_where] = ACTIONS(467), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_where] = ACTIONS(201), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), [anon_sym_DOT_DOT_LT] = ACTIONS(209), [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1058), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -95058,53 +95380,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [182] = { - [sym_pipeline] = STATE(6674), - [sym_cmd_identifier] = STATE(4592), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(844), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym_pipeline] = STATE(6324), + [sym_cmd_identifier] = STATE(4546), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(839), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(182), - [aux_sym_pipeline_repeat1] = STATE(201), - [aux_sym_pipe_element_repeat2] = STATE(329), + [aux_sym_pipeline_repeat1] = STATE(203), + [aux_sym_pipe_element_repeat2] = STATE(333), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -95190,48 +95512,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [183] = { - [sym_pipeline] = STATE(6276), - [sym_cmd_identifier] = STATE(4592), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym_pipeline] = STATE(6330), + [sym_cmd_identifier] = STATE(4546), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(839), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(183), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_pipeline_repeat1] = STATE(203), + [aux_sym_pipe_element_repeat2] = STATE(333), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -95279,12 +95601,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(387), [anon_sym_continue] = ACTIONS(389), [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), + [anon_sym_if] = ACTIONS(1064), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), + [anon_sym_return] = ACTIONS(1052), [anon_sym_where] = ACTIONS(201), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -95292,10 +95614,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1058), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -95317,48 +95639,302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [184] = { - [sym_pipeline] = STATE(6295), - [sym_cmd_identifier] = STATE(4592), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym_pipeline] = STATE(6867), + [sym_cmd_identifier] = STATE(4653), + [sym__ctrl_expression] = STATE(5067), + [sym_ctrl_do] = STATE(5032), + [sym_ctrl_if] = STATE(5032), + [sym_ctrl_match] = STATE(5032), + [sym_ctrl_try] = STATE(5032), + [sym_ctrl_return] = STATE(5032), + [sym_pipe_element] = STATE(4745), + [sym_where_command] = STATE(5146), + [sym__expression] = STATE(3951), + [sym_expr_unary] = STATE(2522), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2522), + [sym__expr_binary_expression] = STATE(3982), + [sym_expr_parenthesized] = STATE(2170), + [sym_val_range] = STATE(3995), + [sym__value] = STATE(2522), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(2481), + [sym_val_variable] = STATE(2126), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(822), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(5146), [sym_comment] = STATE(184), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym_pipe_element_repeat2] = STATE(334), + [aux_sym_pipeline_repeat1] = STATE(202), + [aux_sym_pipe_element_repeat2] = STATE(325), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(21), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(21), + [aux_sym_cmd_identifier_token28] = ACTIONS(21), + [aux_sym_cmd_identifier_token29] = ACTIONS(21), + [aux_sym_cmd_identifier_token30] = ACTIONS(21), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(19), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_do] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_where] = ACTIONS(81), + [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(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [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(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), + }, + [185] = { + [sym_pipeline] = STATE(6939), + [sym_cmd_identifier] = STATE(4653), + [sym__ctrl_expression] = STATE(5067), + [sym_ctrl_do] = STATE(5032), + [sym_ctrl_if] = STATE(5032), + [sym_ctrl_match] = STATE(5032), + [sym_ctrl_try] = STATE(5032), + [sym_ctrl_return] = STATE(5032), + [sym_pipe_element] = STATE(4745), + [sym_where_command] = STATE(5146), + [sym__expression] = STATE(3951), + [sym_expr_unary] = STATE(2522), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2522), + [sym__expr_binary_expression] = STATE(3982), + [sym_expr_parenthesized] = STATE(2170), + [sym_val_range] = STATE(3995), + [sym__value] = STATE(2522), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(2481), + [sym_val_variable] = STATE(2126), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(822), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(5146), + [sym_comment] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(202), + [aux_sym_pipe_element_repeat2] = STATE(325), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(21), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(21), + [aux_sym_cmd_identifier_token28] = ACTIONS(21), + [aux_sym_cmd_identifier_token29] = ACTIONS(21), + [aux_sym_cmd_identifier_token30] = ACTIONS(21), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(19), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_do] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_where] = ACTIONS(81), + [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(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [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(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), + }, + [186] = { + [sym_pipeline_parenthesized] = STATE(7251), + [sym_cmd_identifier] = STATE(4794), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(186), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -95403,26 +95979,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_where] = ACTIONS(201), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_where] = ACTIONS(467), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), [anon_sym_DOT_DOT_LT] = ACTIONS(209), [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -95439,53 +96015,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(479), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [185] = { - [sym_pipeline] = STATE(6620), - [sym_cmd_identifier] = STATE(4592), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), - [sym_comment] = STATE(185), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym_pipe_element_repeat2] = STATE(334), + [187] = { + [sym_pipeline_parenthesized] = STATE(7252), + [sym_cmd_identifier] = STATE(4794), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(187), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -95530,26 +96106,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_where] = ACTIONS(201), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_where] = ACTIONS(467), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), [anon_sym_DOT_DOT_LT] = ACTIONS(209), [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -95566,53 +96142,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(479), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [186] = { - [sym_pipeline_parenthesized] = STATE(7064), - [sym_cmd_identifier] = STATE(4636), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(186), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [188] = { + [sym_pipeline_parenthesized] = STATE(7130), + [sym_cmd_identifier] = STATE(4794), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(188), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -95697,49 +96273,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [187] = { - [sym_pipeline] = STATE(6674), - [sym_cmd_identifier] = STATE(4592), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), - [sym_comment] = STATE(187), - [aux_sym_pipeline_repeat1] = STATE(198), - [aux_sym_pipe_element_repeat2] = STATE(334), + [189] = { + [sym_pipeline_parenthesized] = STATE(7146), + [sym_cmd_identifier] = STATE(4794), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(189), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -95784,26 +96360,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), + [anon_sym_break] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(457), + [anon_sym_do] = ACTIONS(459), + [anon_sym_if] = ACTIONS(461), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), - [anon_sym_where] = ACTIONS(201), + [anon_sym_try] = ACTIONS(463), + [anon_sym_return] = ACTIONS(465), + [anon_sym_where] = ACTIONS(467), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), [anon_sym_DOT_DOT_LT] = ACTIONS(209), [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -95820,53 +96396,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(479), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [188] = { - [sym_pipeline_parenthesized] = STATE(7004), - [sym_cmd_identifier] = STATE(4636), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(844), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(188), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(197), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(331), + [190] = { + [sym_pipeline_parenthesized] = STATE(7146), + [sym_cmd_identifier] = STATE(4794), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4668), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(839), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(201), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -95951,49 +96527,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [189] = { - [sym_pipeline_parenthesized] = STATE(7070), - [sym_cmd_identifier] = STATE(4636), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(189), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(199), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [191] = { + [sym_pipeline] = STATE(6248), + [sym_cmd_identifier] = STATE(4546), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), + [sym_comment] = STATE(191), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -96038,26 +96614,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), - [anon_sym_where] = ACTIONS(467), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_where] = ACTIONS(201), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), [anon_sym_DOT_DOT_LT] = ACTIONS(209), [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -96074,53 +96650,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [190] = { - [sym_pipeline] = STATE(6640), - [sym_cmd_identifier] = STATE(4592), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(844), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), - [sym_comment] = STATE(190), - [aux_sym_pipeline_repeat1] = STATE(201), - [aux_sym_pipe_element_repeat2] = STATE(329), + [192] = { + [sym_pipeline] = STATE(6254), + [sym_cmd_identifier] = STATE(4546), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), + [sym_comment] = STATE(192), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -96168,12 +96744,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(387), [anon_sym_continue] = ACTIONS(389), [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(399), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(407), [anon_sym_where] = ACTIONS(201), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -96181,10 +96757,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_decimal_token2] = ACTIONS(1056), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -96205,49 +96781,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [191] = { - [sym_pipeline] = STATE(6674), - [sym_cmd_identifier] = STATE(4592), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), - [sym_comment] = STATE(191), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym_pipe_element_repeat2] = STATE(327), + [193] = { + [sym_pipeline] = STATE(6269), + [sym_cmd_identifier] = STATE(4546), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), + [sym_comment] = STATE(193), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -96295,12 +96871,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(387), [anon_sym_continue] = ACTIONS(389), [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(629), + [anon_sym_if] = ACTIONS(399), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(465), + [anon_sym_return] = ACTIONS(407), [anon_sym_where] = ACTIONS(201), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -96308,10 +96884,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -96332,49 +96908,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [192] = { - [sym_pipeline] = STATE(6276), - [sym_cmd_identifier] = STATE(4592), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4594), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), - [sym_comment] = STATE(192), - [aux_sym_pipeline_repeat1] = STATE(200), - [aux_sym_pipe_element_repeat2] = STATE(327), + [194] = { + [sym_pipeline] = STATE(6324), + [sym_cmd_identifier] = STATE(4546), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), + [sym_comment] = STATE(194), + [aux_sym_pipeline_repeat1] = STATE(198), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -96422,12 +96998,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(387), [anon_sym_continue] = ACTIONS(389), [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(629), + [anon_sym_if] = ACTIONS(399), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(465), + [anon_sym_return] = ACTIONS(407), [anon_sym_where] = ACTIONS(201), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -96435,10 +97011,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -96459,303 +97035,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [193] = { - [sym_pipeline] = STATE(7113), - [sym_cmd_identifier] = STATE(4748), - [sym__ctrl_expression] = STATE(5131), - [sym_ctrl_do] = STATE(5133), - [sym_ctrl_if] = STATE(5133), - [sym_ctrl_match] = STATE(5133), - [sym_ctrl_try] = STATE(5133), - [sym_ctrl_return] = STATE(5133), - [sym_pipe_element] = STATE(4686), - [sym_where_command] = STATE(5165), - [sym__expression] = STATE(3942), - [sym_expr_unary] = STATE(2469), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2469), - [sym__expr_binary_expression] = STATE(3961), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(3962), - [sym__value] = STATE(2469), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(2487), - [sym_val_variable] = STATE(2113), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(826), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(5165), - [sym_comment] = STATE(193), - [aux_sym_pipeline_repeat1] = STATE(202), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(21), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(21), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(21), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(21), - [aux_sym_cmd_identifier_token23] = ACTIONS(21), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(21), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(21), - [aux_sym_cmd_identifier_token28] = ACTIONS(21), - [aux_sym_cmd_identifier_token29] = ACTIONS(21), - [aux_sym_cmd_identifier_token30] = ACTIONS(21), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(19), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(21), - [aux_sym_cmd_identifier_token37] = ACTIONS(21), - [aux_sym_cmd_identifier_token38] = ACTIONS(19), - [aux_sym_cmd_identifier_token39] = ACTIONS(21), - [aux_sym_cmd_identifier_token40] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1062), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_do] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_match] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_where] = ACTIONS(81), - [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(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [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(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [194] = { - [sym_pipeline] = STATE(6749), - [sym_cmd_identifier] = STATE(4748), - [sym__ctrl_expression] = STATE(5131), - [sym_ctrl_do] = STATE(5133), - [sym_ctrl_if] = STATE(5133), - [sym_ctrl_match] = STATE(5133), - [sym_ctrl_try] = STATE(5133), - [sym_ctrl_return] = STATE(5133), - [sym_pipe_element] = STATE(4686), - [sym_where_command] = STATE(5165), - [sym__expression] = STATE(3942), - [sym_expr_unary] = STATE(2469), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2469), - [sym__expr_binary_expression] = STATE(3961), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(3962), - [sym__value] = STATE(2469), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(2487), - [sym_val_variable] = STATE(2113), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(826), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(5165), - [sym_comment] = STATE(194), - [aux_sym_pipeline_repeat1] = STATE(202), - [aux_sym_pipe_element_repeat2] = STATE(318), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(21), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(21), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(21), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(21), - [aux_sym_cmd_identifier_token23] = ACTIONS(21), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(21), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(21), - [aux_sym_cmd_identifier_token28] = ACTIONS(21), - [aux_sym_cmd_identifier_token29] = ACTIONS(21), - [aux_sym_cmd_identifier_token30] = ACTIONS(21), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(19), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(21), - [aux_sym_cmd_identifier_token37] = ACTIONS(21), - [aux_sym_cmd_identifier_token38] = ACTIONS(19), - [aux_sym_cmd_identifier_token39] = ACTIONS(21), - [aux_sym_cmd_identifier_token40] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1062), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_do] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_match] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_where] = ACTIONS(81), - [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(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [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(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [195] = { + [sym_pipeline] = STATE(6248), + [sym_cmd_identifier] = STATE(4546), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4572), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(839), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), + [sym_comment] = STATE(195), + [aux_sym_pipeline_repeat1] = STATE(203), + [aux_sym_pipe_element_repeat2] = STATE(333), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1058), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [sym_raw_string_begin] = ACTIONS(435), }, - [195] = { - [sym_pipeline_parenthesized] = STATE(7085), - [sym_cmd_identifier] = STATE(4636), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4644), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(844), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(195), + [196] = { + [sym_cmd_identifier] = STATE(4794), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4629), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(196), [aux_sym_pipeline_parenthesized_repeat1] = STATE(197), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(331), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(322), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -96803,12 +97251,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(455), [anon_sym_continue] = ACTIONS(457), [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(1050), + [anon_sym_if] = ACTIONS(461), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(1052), + [anon_sym_return] = ACTIONS(465), [anon_sym_where] = ACTIONS(467), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -96816,10 +97264,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_decimal_token2] = ACTIONS(1056), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -96840,48 +97288,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [196] = { - [sym_cmd_identifier] = STATE(4636), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(5013), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(847), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(196), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(336), + [197] = { + [sym_cmd_identifier] = STATE(4794), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(5082), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(857), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(197), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(197), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(329), [aux_sym_cmd_identifier_token1] = ACTIONS(1066), [aux_sym_cmd_identifier_token2] = ACTIONS(1069), [aux_sym_cmd_identifier_token3] = ACTIONS(1069), @@ -96966,48 +97414,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1171), }, - [197] = { - [sym_cmd_identifier] = STATE(4636), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4651), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(844), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(197), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(331), + [198] = { + [sym_cmd_identifier] = STATE(4546), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4598), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), + [sym_comment] = STATE(198), + [aux_sym_pipeline_repeat1] = STATE(199), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -97052,26 +97500,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(457), - [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(1050), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(399), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_where] = ACTIONS(467), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(407), + [anon_sym_where] = ACTIONS(201), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), [anon_sym_DOT_DOT_LT] = ACTIONS(209), [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_decimal_token2] = ACTIONS(1056), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -97088,52 +97536,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [198] = { - [sym_cmd_identifier] = STATE(4592), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4515), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), - [sym_comment] = STATE(198), - [aux_sym_pipeline_repeat1] = STATE(203), - [aux_sym_pipe_element_repeat2] = STATE(334), + [199] = { + [sym_cmd_identifier] = STATE(4546), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(5084), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(857), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), + [sym_comment] = STATE(199), + [aux_sym_pipeline_repeat1] = STATE(199), + [aux_sym_pipe_element_repeat2] = STATE(330), + [aux_sym_cmd_identifier_token1] = ACTIONS(1174), + [aux_sym_cmd_identifier_token2] = ACTIONS(1177), + [aux_sym_cmd_identifier_token3] = ACTIONS(1177), + [aux_sym_cmd_identifier_token4] = ACTIONS(1177), + [aux_sym_cmd_identifier_token5] = ACTIONS(1177), + [aux_sym_cmd_identifier_token6] = ACTIONS(1177), + [aux_sym_cmd_identifier_token7] = ACTIONS(1177), + [aux_sym_cmd_identifier_token8] = ACTIONS(1177), + [aux_sym_cmd_identifier_token9] = ACTIONS(1174), + [aux_sym_cmd_identifier_token10] = ACTIONS(1177), + [aux_sym_cmd_identifier_token11] = ACTIONS(1177), + [aux_sym_cmd_identifier_token12] = ACTIONS(1177), + [aux_sym_cmd_identifier_token13] = ACTIONS(1174), + [aux_sym_cmd_identifier_token14] = ACTIONS(1177), + [aux_sym_cmd_identifier_token15] = ACTIONS(1174), + [aux_sym_cmd_identifier_token16] = ACTIONS(1177), + [aux_sym_cmd_identifier_token17] = ACTIONS(1177), + [aux_sym_cmd_identifier_token18] = ACTIONS(1177), + [aux_sym_cmd_identifier_token19] = ACTIONS(1177), + [aux_sym_cmd_identifier_token20] = ACTIONS(1177), + [aux_sym_cmd_identifier_token21] = ACTIONS(1177), + [aux_sym_cmd_identifier_token22] = ACTIONS(1177), + [aux_sym_cmd_identifier_token23] = ACTIONS(1177), + [aux_sym_cmd_identifier_token24] = ACTIONS(1177), + [aux_sym_cmd_identifier_token25] = ACTIONS(1177), + [aux_sym_cmd_identifier_token26] = ACTIONS(1177), + [aux_sym_cmd_identifier_token27] = ACTIONS(1177), + [aux_sym_cmd_identifier_token28] = ACTIONS(1177), + [aux_sym_cmd_identifier_token29] = ACTIONS(1177), + [aux_sym_cmd_identifier_token30] = ACTIONS(1177), + [aux_sym_cmd_identifier_token31] = ACTIONS(1177), + [aux_sym_cmd_identifier_token32] = ACTIONS(1177), + [aux_sym_cmd_identifier_token33] = ACTIONS(1177), + [aux_sym_cmd_identifier_token34] = ACTIONS(1174), + [aux_sym_cmd_identifier_token35] = ACTIONS(1177), + [aux_sym_cmd_identifier_token36] = ACTIONS(1177), + [aux_sym_cmd_identifier_token37] = ACTIONS(1177), + [aux_sym_cmd_identifier_token38] = ACTIONS(1174), + [aux_sym_cmd_identifier_token39] = ACTIONS(1177), + [aux_sym_cmd_identifier_token40] = ACTIONS(1177), + [anon_sym_LBRACK] = ACTIONS(1180), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_DOLLAR] = ACTIONS(1186), + [anon_sym_DASH2] = ACTIONS(1189), + [anon_sym_break] = ACTIONS(1192), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1198), + [anon_sym_if] = ACTIONS(1201), + [anon_sym_match] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(1207), + [anon_sym_DOT_DOT] = ACTIONS(1210), + [anon_sym_try] = ACTIONS(1213), + [anon_sym_return] = ACTIONS(1216), + [anon_sym_where] = ACTIONS(1219), + [aux_sym_expr_unary_token1] = ACTIONS(1222), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1225), + [anon_sym_DOT_DOT_LT] = ACTIONS(1225), + [anon_sym_null] = ACTIONS(1228), + [anon_sym_true] = ACTIONS(1231), + [anon_sym_false] = ACTIONS(1231), + [aux_sym__val_number_decimal_token1] = ACTIONS(1234), + [aux_sym__val_number_decimal_token2] = ACTIONS(1237), + [aux_sym__val_number_decimal_token3] = ACTIONS(1240), + [aux_sym__val_number_decimal_token4] = ACTIONS(1243), + [aux_sym__val_number_token1] = ACTIONS(1246), + [aux_sym__val_number_token2] = ACTIONS(1246), + [aux_sym__val_number_token3] = ACTIONS(1246), + [aux_sym__val_number_token4] = ACTIONS(1249), + [aux_sym__val_number_token5] = ACTIONS(1249), + [aux_sym__val_number_token6] = ACTIONS(1249), + [anon_sym_0b] = ACTIONS(1252), + [anon_sym_0o] = ACTIONS(1255), + [anon_sym_0x] = ACTIONS(1255), + [sym_val_date] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(1261), + [sym__str_single_quotes] = ACTIONS(1264), + [sym__str_back_ticks] = ACTIONS(1264), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1267), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), + [aux_sym_env_var_token1] = ACTIONS(1273), + [anon_sym_CARET] = ACTIONS(1276), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1279), + }, + [200] = { + [sym_cmd_identifier] = STATE(4546), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4598), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), + [sym_comment] = STATE(200), + [aux_sym_pipeline_repeat1] = STATE(199), + [aux_sym_pipe_element_repeat2] = STATE(323), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -97181,12 +97755,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(387), [anon_sym_continue] = ACTIONS(389), [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(399), + [anon_sym_if] = ACTIONS(625), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(407), + [anon_sym_return] = ACTIONS(465), [anon_sym_where] = ACTIONS(201), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -97194,10 +97768,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -97218,48 +97792,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [199] = { - [sym_cmd_identifier] = STATE(4636), - [sym__ctrl_expression_parenthesized] = STATE(5007), - [sym_ctrl_do_parenthesized] = STATE(5008), - [sym_ctrl_if_parenthesized] = STATE(5008), - [sym_ctrl_match] = STATE(5008), - [sym_ctrl_try_parenthesized] = STATE(5008), - [sym_ctrl_return] = STATE(5008), - [sym_pipe_element_parenthesized] = STATE(4651), - [sym_where_command_parenthesized] = STATE(5022), - [sym__expression_parenthesized] = STATE(3951), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5104), - [sym_comment] = STATE(199), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(319), + [201] = { + [sym_cmd_identifier] = STATE(4794), + [sym__ctrl_expression_parenthesized] = STATE(5153), + [sym_ctrl_do_parenthesized] = STATE(5109), + [sym_ctrl_if_parenthesized] = STATE(5109), + [sym_ctrl_match] = STATE(5109), + [sym_ctrl_try_parenthesized] = STATE(5109), + [sym_ctrl_return] = STATE(5109), + [sym_pipe_element_parenthesized] = STATE(4629), + [sym_where_command_parenthesized] = STATE(5008), + [sym__expression_parenthesized] = STATE(3956), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(839), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5021), + [sym_comment] = STATE(201), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(197), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -97307,12 +97881,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(455), [anon_sym_continue] = ACTIONS(457), [anon_sym_do] = ACTIONS(459), - [anon_sym_if] = ACTIONS(461), + [anon_sym_if] = ACTIONS(1050), [anon_sym_match] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), [anon_sym_try] = ACTIONS(463), - [anon_sym_return] = ACTIONS(465), + [anon_sym_return] = ACTIONS(1052), [anon_sym_where] = ACTIONS(467), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -97320,10 +97894,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1058), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -97344,300 +97918,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [200] = { - [sym_cmd_identifier] = STATE(4592), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4515), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), - [sym_comment] = STATE(200), - [aux_sym_pipeline_repeat1] = STATE(203), - [aux_sym_pipe_element_repeat2] = STATE(327), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(629), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(465), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [201] = { - [sym_cmd_identifier] = STATE(4592), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(4515), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(844), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), - [sym_comment] = STATE(201), - [aux_sym_pipeline_repeat1] = STATE(203), - [aux_sym_pipe_element_repeat2] = STATE(329), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_break] = ACTIONS(387), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_do] = ACTIONS(397), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_match] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(405), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_where] = ACTIONS(201), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_decimal_token2] = ACTIONS(1056), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1060), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, [202] = { - [sym_cmd_identifier] = STATE(4748), - [sym__ctrl_expression] = STATE(5131), - [sym_ctrl_do] = STATE(5133), - [sym_ctrl_if] = STATE(5133), - [sym_ctrl_match] = STATE(5133), - [sym_ctrl_try] = STATE(5133), - [sym_ctrl_return] = STATE(5133), - [sym_pipe_element] = STATE(4687), - [sym_where_command] = STATE(5165), - [sym__expression] = STATE(3942), - [sym_expr_unary] = STATE(2469), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2469), - [sym__expr_binary_expression] = STATE(3961), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(3962), - [sym__value] = STATE(2469), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(2487), - [sym_val_variable] = STATE(2113), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(826), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(5165), + [sym_cmd_identifier] = STATE(4653), + [sym__ctrl_expression] = STATE(5067), + [sym_ctrl_do] = STATE(5032), + [sym_ctrl_if] = STATE(5032), + [sym_ctrl_match] = STATE(5032), + [sym_ctrl_try] = STATE(5032), + [sym_ctrl_return] = STATE(5032), + [sym_pipe_element] = STATE(4727), + [sym_where_command] = STATE(5146), + [sym__expression] = STATE(3951), + [sym_expr_unary] = STATE(2522), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2522), + [sym__expr_binary_expression] = STATE(3982), + [sym_expr_parenthesized] = STATE(2170), + [sym_val_range] = STATE(3995), + [sym__value] = STATE(2522), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(2481), + [sym_val_variable] = STATE(2126), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(822), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(5146), [sym_comment] = STATE(202), - [aux_sym_pipeline_repeat1] = STATE(203), - [aux_sym_pipe_element_repeat2] = STATE(318), + [aux_sym_pipeline_repeat1] = STATE(199), + [aux_sym_pipe_element_repeat2] = STATE(325), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -97723,130 +98045,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(121), }, [203] = { - [sym_cmd_identifier] = STATE(4592), - [sym__ctrl_expression] = STATE(4965), - [sym_ctrl_do] = STATE(4966), - [sym_ctrl_if] = STATE(4966), - [sym_ctrl_match] = STATE(4966), - [sym_ctrl_try] = STATE(4966), - [sym_ctrl_return] = STATE(4966), - [sym_pipe_element] = STATE(5159), - [sym_where_command] = STATE(4967), - [sym__expression] = STATE(3852), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(847), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4967), + [sym_cmd_identifier] = STATE(4546), + [sym__ctrl_expression] = STATE(4909), + [sym_ctrl_do] = STATE(4913), + [sym_ctrl_if] = STATE(4913), + [sym_ctrl_match] = STATE(4913), + [sym_ctrl_try] = STATE(4913), + [sym_ctrl_return] = STATE(4913), + [sym_pipe_element] = STATE(4598), + [sym_where_command] = STATE(4930), + [sym__expression] = STATE(3871), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(839), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4930), [sym_comment] = STATE(203), - [aux_sym_pipeline_repeat1] = STATE(203), - [aux_sym_pipe_element_repeat2] = STATE(338), - [aux_sym_cmd_identifier_token1] = ACTIONS(1174), - [aux_sym_cmd_identifier_token2] = ACTIONS(1177), - [aux_sym_cmd_identifier_token3] = ACTIONS(1177), - [aux_sym_cmd_identifier_token4] = ACTIONS(1177), - [aux_sym_cmd_identifier_token5] = ACTIONS(1177), - [aux_sym_cmd_identifier_token6] = ACTIONS(1177), - [aux_sym_cmd_identifier_token7] = ACTIONS(1177), - [aux_sym_cmd_identifier_token8] = ACTIONS(1177), - [aux_sym_cmd_identifier_token9] = ACTIONS(1174), - [aux_sym_cmd_identifier_token10] = ACTIONS(1177), - [aux_sym_cmd_identifier_token11] = ACTIONS(1177), - [aux_sym_cmd_identifier_token12] = ACTIONS(1177), - [aux_sym_cmd_identifier_token13] = ACTIONS(1174), - [aux_sym_cmd_identifier_token14] = ACTIONS(1177), - [aux_sym_cmd_identifier_token15] = ACTIONS(1174), - [aux_sym_cmd_identifier_token16] = ACTIONS(1177), - [aux_sym_cmd_identifier_token17] = ACTIONS(1177), - [aux_sym_cmd_identifier_token18] = ACTIONS(1177), - [aux_sym_cmd_identifier_token19] = ACTIONS(1177), - [aux_sym_cmd_identifier_token20] = ACTIONS(1177), - [aux_sym_cmd_identifier_token21] = ACTIONS(1177), - [aux_sym_cmd_identifier_token22] = ACTIONS(1177), - [aux_sym_cmd_identifier_token23] = ACTIONS(1177), - [aux_sym_cmd_identifier_token24] = ACTIONS(1177), - [aux_sym_cmd_identifier_token25] = ACTIONS(1177), - [aux_sym_cmd_identifier_token26] = ACTIONS(1177), - [aux_sym_cmd_identifier_token27] = ACTIONS(1177), - [aux_sym_cmd_identifier_token28] = ACTIONS(1177), - [aux_sym_cmd_identifier_token29] = ACTIONS(1177), - [aux_sym_cmd_identifier_token30] = ACTIONS(1177), - [aux_sym_cmd_identifier_token31] = ACTIONS(1177), - [aux_sym_cmd_identifier_token32] = ACTIONS(1177), - [aux_sym_cmd_identifier_token33] = ACTIONS(1177), - [aux_sym_cmd_identifier_token34] = ACTIONS(1174), - [aux_sym_cmd_identifier_token35] = ACTIONS(1177), - [aux_sym_cmd_identifier_token36] = ACTIONS(1177), - [aux_sym_cmd_identifier_token37] = ACTIONS(1177), - [aux_sym_cmd_identifier_token38] = ACTIONS(1174), - [aux_sym_cmd_identifier_token39] = ACTIONS(1177), - [aux_sym_cmd_identifier_token40] = ACTIONS(1177), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_DOLLAR] = ACTIONS(1186), - [anon_sym_DASH2] = ACTIONS(1189), - [anon_sym_break] = ACTIONS(1192), - [anon_sym_continue] = ACTIONS(1195), - [anon_sym_do] = ACTIONS(1198), - [anon_sym_if] = ACTIONS(1201), - [anon_sym_match] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1207), - [anon_sym_DOT_DOT] = ACTIONS(1210), - [anon_sym_try] = ACTIONS(1213), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_where] = ACTIONS(1219), - [aux_sym_expr_unary_token1] = ACTIONS(1222), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1225), - [anon_sym_DOT_DOT_LT] = ACTIONS(1225), - [anon_sym_null] = ACTIONS(1228), - [anon_sym_true] = ACTIONS(1231), - [anon_sym_false] = ACTIONS(1231), - [aux_sym__val_number_decimal_token1] = ACTIONS(1234), - [aux_sym__val_number_decimal_token2] = ACTIONS(1237), - [aux_sym__val_number_decimal_token3] = ACTIONS(1240), - [aux_sym__val_number_decimal_token4] = ACTIONS(1243), - [aux_sym__val_number_token1] = ACTIONS(1246), - [aux_sym__val_number_token2] = ACTIONS(1246), - [aux_sym__val_number_token3] = ACTIONS(1246), - [aux_sym__val_number_token4] = ACTIONS(1249), - [aux_sym__val_number_token5] = ACTIONS(1249), - [aux_sym__val_number_token6] = ACTIONS(1249), - [anon_sym_0b] = ACTIONS(1252), - [anon_sym_0o] = ACTIONS(1255), - [anon_sym_0x] = ACTIONS(1255), - [sym_val_date] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1261), - [sym__str_single_quotes] = ACTIONS(1264), - [sym__str_back_ticks] = ACTIONS(1264), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1267), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1270), - [aux_sym_env_var_token1] = ACTIONS(1273), - [anon_sym_CARET] = ACTIONS(1276), + [aux_sym_pipeline_repeat1] = STATE(199), + [aux_sym_pipe_element_repeat2] = STATE(333), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_break] = ACTIONS(387), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_do] = ACTIONS(397), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_match] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(405), + [anon_sym_return] = ACTIONS(1052), + [anon_sym_where] = ACTIONS(201), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1058), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1279), + [sym_raw_string_begin] = ACTIONS(435), }, [204] = { [sym_comment] = STATE(204), @@ -98208,24 +98530,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1288), }, [207] = { - [sym_cmd_identifier] = STATE(7810), - [sym_expr_parenthesized] = STATE(7606), - [sym__spread_parenthesized] = STATE(7543), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(7606), - [sym_val_number] = STATE(7606), - [sym__val_number_decimal] = STATE(3630), - [sym__val_number] = STATE(2439), - [sym_val_string] = STATE(7606), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym__spread_record] = STATE(7543), - [sym_record_body] = STATE(7852), - [sym_record_entry] = STATE(6964), - [sym__record_key] = STATE(7810), + [sym_cmd_identifier] = STATE(7830), + [sym_expr_parenthesized] = STATE(7852), + [sym__spread_parenthesized] = STATE(7503), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(7852), + [sym_val_number] = STATE(7852), + [sym__val_number_decimal] = STATE(3647), + [sym__val_number] = STATE(2451), + [sym_val_string] = STATE(7852), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym__spread_record] = STATE(7503), + [sym_record_body] = STATE(8135), + [sym_record_entry] = STATE(6929), + [sym__record_key] = STATE(7830), [sym_comment] = STATE(207), - [aux_sym_shebang_repeat1] = STATE(217), - [aux_sym_record_body_repeat1] = STATE(218), + [aux_sym_shebang_repeat1] = STATE(216), + [aux_sym_record_body_repeat1] = STATE(219), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(281), [anon_sym_let] = ACTIONS(281), @@ -98293,7 +98615,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(281), [anon_sym_else] = ACTIONS(281), [anon_sym_match] = ACTIONS(281), - [anon_sym_RBRACE] = ACTIONS(315), + [anon_sym_RBRACE] = ACTIONS(1311), [anon_sym_try] = ACTIONS(281), [anon_sym_catch] = ACTIONS(281), [anon_sym_return] = ACTIONS(281), @@ -98307,10 +98629,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(1311), - [aux_sym__val_number_decimal_token2] = ACTIONS(1313), - [aux_sym__val_number_decimal_token3] = ACTIONS(1315), - [aux_sym__val_number_decimal_token4] = ACTIONS(1317), + [aux_sym__val_number_decimal_token1] = ACTIONS(1313), + [aux_sym__val_number_decimal_token2] = ACTIONS(1315), + [aux_sym__val_number_decimal_token3] = ACTIONS(1317), + [aux_sym__val_number_decimal_token4] = ACTIONS(1319), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), @@ -98325,24 +98647,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [208] = { - [sym_cmd_identifier] = STATE(7810), - [sym_expr_parenthesized] = STATE(7606), - [sym__spread_parenthesized] = STATE(7543), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(7606), - [sym_val_number] = STATE(7606), - [sym__val_number_decimal] = STATE(3630), - [sym__val_number] = STATE(2439), - [sym_val_string] = STATE(7606), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym__spread_record] = STATE(7543), - [sym_record_body] = STATE(7895), - [sym_record_entry] = STATE(6964), - [sym__record_key] = STATE(7810), + [sym_cmd_identifier] = STATE(7830), + [sym_expr_parenthesized] = STATE(7852), + [sym__spread_parenthesized] = STATE(7503), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(7852), + [sym_val_number] = STATE(7852), + [sym__val_number_decimal] = STATE(3647), + [sym__val_number] = STATE(2451), + [sym_val_string] = STATE(7852), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym__spread_record] = STATE(7503), + [sym_record_body] = STATE(7997), + [sym_record_entry] = STATE(6929), + [sym__record_key] = STATE(7830), [sym_comment] = STATE(208), - [aux_sym_shebang_repeat1] = STATE(217), - [aux_sym_record_body_repeat1] = STATE(218), + [aux_sym_shebang_repeat1] = STATE(216), + [aux_sym_record_body_repeat1] = STATE(219), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(281), [anon_sym_let] = ACTIONS(281), @@ -98410,7 +98732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(281), [anon_sym_else] = ACTIONS(281), [anon_sym_match] = ACTIONS(281), - [anon_sym_RBRACE] = ACTIONS(1319), + [anon_sym_RBRACE] = ACTIONS(1321), [anon_sym_try] = ACTIONS(281), [anon_sym_catch] = ACTIONS(281), [anon_sym_return] = ACTIONS(281), @@ -98424,10 +98746,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(1311), - [aux_sym__val_number_decimal_token2] = ACTIONS(1313), - [aux_sym__val_number_decimal_token3] = ACTIONS(1315), - [aux_sym__val_number_decimal_token4] = ACTIONS(1317), + [aux_sym__val_number_decimal_token1] = ACTIONS(1313), + [aux_sym__val_number_decimal_token2] = ACTIONS(1315), + [aux_sym__val_number_decimal_token3] = ACTIONS(1317), + [aux_sym__val_number_decimal_token4] = ACTIONS(1319), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), @@ -98442,24 +98764,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [209] = { - [sym_cmd_identifier] = STATE(7810), - [sym_expr_parenthesized] = STATE(7606), - [sym__spread_parenthesized] = STATE(7543), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(7606), - [sym_val_number] = STATE(7606), - [sym__val_number_decimal] = STATE(3630), - [sym__val_number] = STATE(2439), - [sym_val_string] = STATE(7606), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym__spread_record] = STATE(7543), - [sym_record_body] = STATE(7605), - [sym_record_entry] = STATE(6964), - [sym__record_key] = STATE(7810), + [sym_cmd_identifier] = STATE(7830), + [sym_expr_parenthesized] = STATE(7852), + [sym__spread_parenthesized] = STATE(7503), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(7852), + [sym_val_number] = STATE(7852), + [sym__val_number_decimal] = STATE(3647), + [sym__val_number] = STATE(2451), + [sym_val_string] = STATE(7852), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym__spread_record] = STATE(7503), + [sym_record_body] = STATE(8158), + [sym_record_entry] = STATE(6929), + [sym__record_key] = STATE(7830), [sym_comment] = STATE(209), - [aux_sym_shebang_repeat1] = STATE(217), - [aux_sym_record_body_repeat1] = STATE(218), + [aux_sym_shebang_repeat1] = STATE(216), + [aux_sym_record_body_repeat1] = STATE(219), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(281), [anon_sym_let] = ACTIONS(281), @@ -98527,7 +98849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(281), [anon_sym_else] = ACTIONS(281), [anon_sym_match] = ACTIONS(281), - [anon_sym_RBRACE] = ACTIONS(1321), + [anon_sym_RBRACE] = ACTIONS(315), [anon_sym_try] = ACTIONS(281), [anon_sym_catch] = ACTIONS(281), [anon_sym_return] = ACTIONS(281), @@ -98541,10 +98863,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(1311), - [aux_sym__val_number_decimal_token2] = ACTIONS(1313), - [aux_sym__val_number_decimal_token3] = ACTIONS(1315), - [aux_sym__val_number_decimal_token4] = ACTIONS(1317), + [aux_sym__val_number_decimal_token1] = ACTIONS(1313), + [aux_sym__val_number_decimal_token2] = ACTIONS(1315), + [aux_sym__val_number_decimal_token3] = ACTIONS(1317), + [aux_sym__val_number_decimal_token4] = ACTIONS(1319), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), @@ -98559,24 +98881,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [210] = { - [sym_cmd_identifier] = STATE(7810), - [sym_expr_parenthesized] = STATE(7606), - [sym__spread_parenthesized] = STATE(7543), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(7606), - [sym_val_number] = STATE(7606), - [sym__val_number_decimal] = STATE(3630), - [sym__val_number] = STATE(2439), - [sym_val_string] = STATE(7606), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym__spread_record] = STATE(7543), - [sym_record_body] = STATE(7766), - [sym_record_entry] = STATE(6964), - [sym__record_key] = STATE(7810), + [sym_cmd_identifier] = STATE(7830), + [sym_expr_parenthesized] = STATE(7852), + [sym__spread_parenthesized] = STATE(7503), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(7852), + [sym_val_number] = STATE(7852), + [sym__val_number_decimal] = STATE(3647), + [sym__val_number] = STATE(2451), + [sym_val_string] = STATE(7852), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym__spread_record] = STATE(7503), + [sym_record_body] = STATE(7762), + [sym_record_entry] = STATE(6929), + [sym__record_key] = STATE(7830), [sym_comment] = STATE(210), - [aux_sym_shebang_repeat1] = STATE(217), - [aux_sym_record_body_repeat1] = STATE(218), + [aux_sym_shebang_repeat1] = STATE(216), + [aux_sym_record_body_repeat1] = STATE(219), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(281), [anon_sym_let] = ACTIONS(281), @@ -98644,7 +98966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(281), [anon_sym_else] = ACTIONS(281), [anon_sym_match] = ACTIONS(281), - [anon_sym_RBRACE] = ACTIONS(1323), + [anon_sym_RBRACE] = ACTIONS(325), [anon_sym_try] = ACTIONS(281), [anon_sym_catch] = ACTIONS(281), [anon_sym_return] = ACTIONS(281), @@ -98658,10 +98980,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(1311), - [aux_sym__val_number_decimal_token2] = ACTIONS(1313), - [aux_sym__val_number_decimal_token3] = ACTIONS(1315), - [aux_sym__val_number_decimal_token4] = ACTIONS(1317), + [aux_sym__val_number_decimal_token1] = ACTIONS(1313), + [aux_sym__val_number_decimal_token2] = ACTIONS(1315), + [aux_sym__val_number_decimal_token3] = ACTIONS(1317), + [aux_sym__val_number_decimal_token4] = ACTIONS(1319), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), @@ -98676,24 +98998,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [211] = { - [sym_cmd_identifier] = STATE(7810), - [sym_expr_parenthesized] = STATE(7606), - [sym__spread_parenthesized] = STATE(7543), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(7606), - [sym_val_number] = STATE(7606), - [sym__val_number_decimal] = STATE(3630), - [sym__val_number] = STATE(2439), - [sym_val_string] = STATE(7606), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym__spread_record] = STATE(7543), - [sym_record_body] = STATE(7767), - [sym_record_entry] = STATE(6964), - [sym__record_key] = STATE(7810), + [sym_cmd_identifier] = STATE(7830), + [sym_expr_parenthesized] = STATE(7852), + [sym__spread_parenthesized] = STATE(7503), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(7852), + [sym_val_number] = STATE(7852), + [sym__val_number_decimal] = STATE(3647), + [sym__val_number] = STATE(2451), + [sym_val_string] = STATE(7852), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym__spread_record] = STATE(7503), + [sym_record_body] = STATE(8169), + [sym_record_entry] = STATE(6929), + [sym__record_key] = STATE(7830), [sym_comment] = STATE(211), - [aux_sym_shebang_repeat1] = STATE(217), - [aux_sym_record_body_repeat1] = STATE(218), + [aux_sym_shebang_repeat1] = STATE(216), + [aux_sym_record_body_repeat1] = STATE(219), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(281), [anon_sym_let] = ACTIONS(281), @@ -98761,7 +99083,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(281), [anon_sym_else] = ACTIONS(281), [anon_sym_match] = ACTIONS(281), - [anon_sym_RBRACE] = ACTIONS(325), + [anon_sym_RBRACE] = ACTIONS(1323), [anon_sym_try] = ACTIONS(281), [anon_sym_catch] = ACTIONS(281), [anon_sym_return] = ACTIONS(281), @@ -98775,10 +99097,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(1311), - [aux_sym__val_number_decimal_token2] = ACTIONS(1313), - [aux_sym__val_number_decimal_token3] = ACTIONS(1315), - [aux_sym__val_number_decimal_token4] = ACTIONS(1317), + [aux_sym__val_number_decimal_token1] = ACTIONS(1313), + [aux_sym__val_number_decimal_token2] = ACTIONS(1315), + [aux_sym__val_number_decimal_token3] = ACTIONS(1317), + [aux_sym__val_number_decimal_token4] = ACTIONS(1319), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), @@ -98793,23 +99115,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [212] = { - [sym_cmd_identifier] = STATE(7972), - [sym__match_pattern_record_variable] = STATE(744), - [sym_expr_parenthesized] = STATE(7551), - [sym__spread_parenthesized] = STATE(729), - [sym__spread_variable] = STATE(730), - [sym_val_variable] = STATE(603), - [sym_val_number] = STATE(7551), - [sym__val_number_decimal] = STATE(3630), - [sym__val_number] = STATE(2439), - [sym_val_string] = STATE(7551), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym__spread_record] = STATE(729), - [sym_record_entry] = STATE(744), - [sym__record_key] = STATE(7972), + [sym_cmd_identifier] = STATE(8061), + [sym__match_pattern_record_variable] = STATE(762), + [sym_expr_parenthesized] = STATE(8167), + [sym__spread_parenthesized] = STATE(768), + [sym__spread_variable] = STATE(769), + [sym_val_variable] = STATE(578), + [sym_val_number] = STATE(8167), + [sym__val_number_decimal] = STATE(3647), + [sym__val_number] = STATE(2451), + [sym_val_string] = STATE(8167), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym__spread_record] = STATE(768), + [sym_record_entry] = STATE(762), + [sym__record_key] = STATE(8061), [sym_comment] = STATE(212), - [aux_sym__match_pattern_record_repeat1] = STATE(214), + [aux_sym__match_pattern_record_repeat1] = STATE(215), [anon_sym_export] = ACTIONS(1325), [anon_sym_alias] = ACTIONS(1325), [anon_sym_let] = ACTIONS(1325), @@ -98890,10 +99212,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1331), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1333), - [aux_sym__val_number_decimal_token1] = ACTIONS(1311), - [aux_sym__val_number_decimal_token2] = ACTIONS(1313), - [aux_sym__val_number_decimal_token3] = ACTIONS(1315), - [aux_sym__val_number_decimal_token4] = ACTIONS(1317), + [aux_sym__val_number_decimal_token1] = ACTIONS(1313), + [aux_sym__val_number_decimal_token2] = ACTIONS(1315), + [aux_sym__val_number_decimal_token3] = ACTIONS(1317), + [aux_sym__val_number_decimal_token4] = ACTIONS(1319), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), @@ -98908,23 +99230,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [213] = { - [sym_cmd_identifier] = STATE(7972), - [sym__match_pattern_record_variable] = STATE(744), - [sym_expr_parenthesized] = STATE(7551), - [sym__spread_parenthesized] = STATE(729), - [sym__spread_variable] = STATE(730), - [sym_val_variable] = STATE(603), - [sym_val_number] = STATE(7551), - [sym__val_number_decimal] = STATE(3630), - [sym__val_number] = STATE(2439), - [sym_val_string] = STATE(7551), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym__spread_record] = STATE(729), - [sym_record_entry] = STATE(744), - [sym__record_key] = STATE(7972), + [sym_cmd_identifier] = STATE(8061), + [sym__match_pattern_record_variable] = STATE(762), + [sym_expr_parenthesized] = STATE(8167), + [sym__spread_parenthesized] = STATE(768), + [sym__spread_variable] = STATE(769), + [sym_val_variable] = STATE(578), + [sym_val_number] = STATE(8167), + [sym__val_number_decimal] = STATE(3647), + [sym__val_number] = STATE(2451), + [sym_val_string] = STATE(8167), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym__spread_record] = STATE(768), + [sym_record_entry] = STATE(762), + [sym__record_key] = STATE(8061), [sym_comment] = STATE(213), - [aux_sym__match_pattern_record_repeat1] = STATE(212), + [aux_sym__match_pattern_record_repeat1] = STATE(213), + [anon_sym_export] = ACTIONS(1337), + [anon_sym_alias] = ACTIONS(1337), + [anon_sym_let] = ACTIONS(1337), + [anon_sym_let_DASHenv] = ACTIONS(1337), + [anon_sym_mut] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1337), + [aux_sym_cmd_identifier_token1] = ACTIONS(1340), + [aux_sym_cmd_identifier_token2] = ACTIONS(1343), + [aux_sym_cmd_identifier_token3] = ACTIONS(1343), + [aux_sym_cmd_identifier_token4] = ACTIONS(1343), + [aux_sym_cmd_identifier_token5] = ACTIONS(1343), + [aux_sym_cmd_identifier_token6] = ACTIONS(1343), + [aux_sym_cmd_identifier_token7] = ACTIONS(1343), + [aux_sym_cmd_identifier_token8] = ACTIONS(1340), + [aux_sym_cmd_identifier_token9] = ACTIONS(1340), + [aux_sym_cmd_identifier_token10] = ACTIONS(1343), + [aux_sym_cmd_identifier_token11] = ACTIONS(1343), + [aux_sym_cmd_identifier_token12] = ACTIONS(1340), + [aux_sym_cmd_identifier_token13] = ACTIONS(1340), + [aux_sym_cmd_identifier_token14] = ACTIONS(1340), + [aux_sym_cmd_identifier_token15] = ACTIONS(1340), + [aux_sym_cmd_identifier_token16] = ACTIONS(1343), + [aux_sym_cmd_identifier_token17] = ACTIONS(1343), + [aux_sym_cmd_identifier_token18] = ACTIONS(1343), + [aux_sym_cmd_identifier_token19] = ACTIONS(1343), + [aux_sym_cmd_identifier_token20] = ACTIONS(1343), + [aux_sym_cmd_identifier_token21] = ACTIONS(1343), + [aux_sym_cmd_identifier_token22] = ACTIONS(1343), + [aux_sym_cmd_identifier_token23] = ACTIONS(1343), + [aux_sym_cmd_identifier_token24] = ACTIONS(1343), + [aux_sym_cmd_identifier_token25] = ACTIONS(1343), + [aux_sym_cmd_identifier_token26] = ACTIONS(1343), + [aux_sym_cmd_identifier_token27] = ACTIONS(1343), + [aux_sym_cmd_identifier_token28] = ACTIONS(1343), + [aux_sym_cmd_identifier_token29] = ACTIONS(1343), + [aux_sym_cmd_identifier_token30] = ACTIONS(1343), + [aux_sym_cmd_identifier_token31] = ACTIONS(1343), + [aux_sym_cmd_identifier_token32] = ACTIONS(1343), + [aux_sym_cmd_identifier_token33] = ACTIONS(1343), + [aux_sym_cmd_identifier_token34] = ACTIONS(1340), + [aux_sym_cmd_identifier_token35] = ACTIONS(1343), + [aux_sym_cmd_identifier_token36] = ACTIONS(1343), + [aux_sym_cmd_identifier_token37] = ACTIONS(1343), + [aux_sym_cmd_identifier_token38] = ACTIONS(1340), + [aux_sym_cmd_identifier_token39] = ACTIONS(1343), + [aux_sym_cmd_identifier_token40] = ACTIONS(1343), + [anon_sym_def] = ACTIONS(1337), + [anon_sym_export_DASHenv] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1337), + [anon_sym_module] = ACTIONS(1337), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1349), + [anon_sym_error] = ACTIONS(1337), + [anon_sym_DASH2] = ACTIONS(1352), + [anon_sym_break] = ACTIONS(1337), + [anon_sym_continue] = ACTIONS(1337), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_in2] = ACTIONS(1337), + [anon_sym_loop] = ACTIONS(1337), + [anon_sym_make] = ACTIONS(1337), + [anon_sym_while] = ACTIONS(1337), + [anon_sym_do] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1337), + [anon_sym_else] = ACTIONS(1337), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_RBRACE] = ACTIONS(1355), + [anon_sym_try] = ACTIONS(1337), + [anon_sym_catch] = ACTIONS(1337), + [anon_sym_return] = ACTIONS(1337), + [anon_sym_source] = ACTIONS(1337), + [anon_sym_source_DASHenv] = ACTIONS(1337), + [anon_sym_register] = ACTIONS(1337), + [anon_sym_hide] = ACTIONS(1337), + [anon_sym_hide_DASHenv] = ACTIONS(1337), + [anon_sym_overlay] = ACTIONS(1337), + [anon_sym_as] = ACTIONS(1337), + [anon_sym_PLUS2] = ACTIONS(1352), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1360), + [aux_sym__val_number_decimal_token1] = ACTIONS(1363), + [aux_sym__val_number_decimal_token2] = ACTIONS(1366), + [aux_sym__val_number_decimal_token3] = ACTIONS(1369), + [aux_sym__val_number_decimal_token4] = ACTIONS(1372), + [aux_sym__val_number_token1] = ACTIONS(1375), + [aux_sym__val_number_token2] = ACTIONS(1375), + [aux_sym__val_number_token3] = ACTIONS(1375), + [aux_sym__val_number_token4] = ACTIONS(1378), + [aux_sym__val_number_token5] = ACTIONS(1378), + [aux_sym__val_number_token6] = ACTIONS(1378), + [anon_sym_DQUOTE] = ACTIONS(1381), + [sym__str_single_quotes] = ACTIONS(1384), + [sym__str_back_ticks] = ACTIONS(1384), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1387), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1390), + }, + [214] = { + [sym_cmd_identifier] = STATE(8061), + [sym__match_pattern_record_variable] = STATE(762), + [sym_expr_parenthesized] = STATE(8167), + [sym__spread_parenthesized] = STATE(768), + [sym__spread_variable] = STATE(769), + [sym_val_variable] = STATE(578), + [sym_val_number] = STATE(8167), + [sym__val_number_decimal] = STATE(3647), + [sym__val_number] = STATE(2451), + [sym_val_string] = STATE(8167), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym__spread_record] = STATE(768), + [sym_record_entry] = STATE(762), + [sym__record_key] = STATE(8061), + [sym_comment] = STATE(214), + [aux_sym__match_pattern_record_repeat1] = STATE(213), [anon_sym_export] = ACTIONS(1325), [anon_sym_alias] = ACTIONS(1325), [anon_sym_let] = ACTIONS(1325), @@ -98991,7 +99428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1325), [anon_sym_else] = ACTIONS(1325), [anon_sym_match] = ACTIONS(1325), - [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_RBRACE] = ACTIONS(1393), [anon_sym_try] = ACTIONS(1325), [anon_sym_catch] = ACTIONS(1325), [anon_sym_return] = ACTIONS(1325), @@ -99005,10 +99442,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1331), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1333), - [aux_sym__val_number_decimal_token1] = ACTIONS(1311), - [aux_sym__val_number_decimal_token2] = ACTIONS(1313), - [aux_sym__val_number_decimal_token3] = ACTIONS(1315), - [aux_sym__val_number_decimal_token4] = ACTIONS(1317), + [aux_sym__val_number_decimal_token1] = ACTIONS(1313), + [aux_sym__val_number_decimal_token2] = ACTIONS(1315), + [aux_sym__val_number_decimal_token3] = ACTIONS(1317), + [aux_sym__val_number_decimal_token4] = ACTIONS(1319), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), @@ -99022,139 +99459,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(249), }, - [214] = { - [sym_cmd_identifier] = STATE(7972), - [sym__match_pattern_record_variable] = STATE(744), - [sym_expr_parenthesized] = STATE(7551), - [sym__spread_parenthesized] = STATE(729), - [sym__spread_variable] = STATE(730), - [sym_val_variable] = STATE(603), - [sym_val_number] = STATE(7551), - [sym__val_number_decimal] = STATE(3630), - [sym__val_number] = STATE(2439), - [sym_val_string] = STATE(7551), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym__spread_record] = STATE(729), - [sym_record_entry] = STATE(744), - [sym__record_key] = STATE(7972), - [sym_comment] = STATE(214), - [aux_sym__match_pattern_record_repeat1] = STATE(214), - [anon_sym_export] = ACTIONS(1339), - [anon_sym_alias] = ACTIONS(1339), - [anon_sym_let] = ACTIONS(1339), - [anon_sym_let_DASHenv] = ACTIONS(1339), - [anon_sym_mut] = ACTIONS(1339), - [anon_sym_const] = ACTIONS(1339), - [aux_sym_cmd_identifier_token1] = ACTIONS(1342), - [aux_sym_cmd_identifier_token2] = ACTIONS(1345), - [aux_sym_cmd_identifier_token3] = ACTIONS(1345), - [aux_sym_cmd_identifier_token4] = ACTIONS(1345), - [aux_sym_cmd_identifier_token5] = ACTIONS(1345), - [aux_sym_cmd_identifier_token6] = ACTIONS(1345), - [aux_sym_cmd_identifier_token7] = ACTIONS(1345), - [aux_sym_cmd_identifier_token8] = ACTIONS(1342), - [aux_sym_cmd_identifier_token9] = ACTIONS(1342), - [aux_sym_cmd_identifier_token10] = ACTIONS(1345), - [aux_sym_cmd_identifier_token11] = ACTIONS(1345), - [aux_sym_cmd_identifier_token12] = ACTIONS(1342), - [aux_sym_cmd_identifier_token13] = ACTIONS(1342), - [aux_sym_cmd_identifier_token14] = ACTIONS(1342), - [aux_sym_cmd_identifier_token15] = ACTIONS(1342), - [aux_sym_cmd_identifier_token16] = ACTIONS(1345), - [aux_sym_cmd_identifier_token17] = ACTIONS(1345), - [aux_sym_cmd_identifier_token18] = ACTIONS(1345), - [aux_sym_cmd_identifier_token19] = ACTIONS(1345), - [aux_sym_cmd_identifier_token20] = ACTIONS(1345), - [aux_sym_cmd_identifier_token21] = ACTIONS(1345), - [aux_sym_cmd_identifier_token22] = ACTIONS(1345), - [aux_sym_cmd_identifier_token23] = ACTIONS(1345), - [aux_sym_cmd_identifier_token24] = ACTIONS(1345), - [aux_sym_cmd_identifier_token25] = ACTIONS(1345), - [aux_sym_cmd_identifier_token26] = ACTIONS(1345), - [aux_sym_cmd_identifier_token27] = ACTIONS(1345), - [aux_sym_cmd_identifier_token28] = ACTIONS(1345), - [aux_sym_cmd_identifier_token29] = ACTIONS(1345), - [aux_sym_cmd_identifier_token30] = ACTIONS(1345), - [aux_sym_cmd_identifier_token31] = ACTIONS(1345), - [aux_sym_cmd_identifier_token32] = ACTIONS(1345), - [aux_sym_cmd_identifier_token33] = ACTIONS(1345), - [aux_sym_cmd_identifier_token34] = ACTIONS(1342), - [aux_sym_cmd_identifier_token35] = ACTIONS(1345), - [aux_sym_cmd_identifier_token36] = ACTIONS(1345), - [aux_sym_cmd_identifier_token37] = ACTIONS(1345), - [aux_sym_cmd_identifier_token38] = ACTIONS(1342), - [aux_sym_cmd_identifier_token39] = ACTIONS(1345), - [aux_sym_cmd_identifier_token40] = ACTIONS(1345), - [anon_sym_def] = ACTIONS(1339), - [anon_sym_export_DASHenv] = ACTIONS(1339), - [anon_sym_extern] = ACTIONS(1339), - [anon_sym_module] = ACTIONS(1339), - [anon_sym_use] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_DOLLAR] = ACTIONS(1351), - [anon_sym_error] = ACTIONS(1339), - [anon_sym_DASH2] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1339), - [anon_sym_continue] = ACTIONS(1339), - [anon_sym_for] = ACTIONS(1339), - [anon_sym_in2] = ACTIONS(1339), - [anon_sym_loop] = ACTIONS(1339), - [anon_sym_make] = ACTIONS(1339), - [anon_sym_while] = ACTIONS(1339), - [anon_sym_do] = ACTIONS(1339), - [anon_sym_if] = ACTIONS(1339), - [anon_sym_else] = ACTIONS(1339), - [anon_sym_match] = ACTIONS(1339), - [anon_sym_RBRACE] = ACTIONS(1357), - [anon_sym_try] = ACTIONS(1339), - [anon_sym_catch] = ACTIONS(1339), - [anon_sym_return] = ACTIONS(1339), - [anon_sym_source] = ACTIONS(1339), - [anon_sym_source_DASHenv] = ACTIONS(1339), - [anon_sym_register] = ACTIONS(1339), - [anon_sym_hide] = ACTIONS(1339), - [anon_sym_hide_DASHenv] = ACTIONS(1339), - [anon_sym_overlay] = ACTIONS(1339), - [anon_sym_as] = ACTIONS(1339), - [anon_sym_PLUS2] = ACTIONS(1354), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1359), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1362), - [aux_sym__val_number_decimal_token1] = ACTIONS(1365), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1371), - [aux_sym__val_number_decimal_token4] = ACTIONS(1374), - [aux_sym__val_number_token1] = ACTIONS(1377), - [aux_sym__val_number_token2] = ACTIONS(1377), - [aux_sym__val_number_token3] = ACTIONS(1377), - [aux_sym__val_number_token4] = ACTIONS(1380), - [aux_sym__val_number_token5] = ACTIONS(1380), - [aux_sym__val_number_token6] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1383), - [sym__str_single_quotes] = ACTIONS(1386), - [sym__str_back_ticks] = ACTIONS(1386), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1389), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1392), - }, [215] = { - [sym_cmd_identifier] = STATE(7972), - [sym__match_pattern_record_variable] = STATE(744), - [sym_expr_parenthesized] = STATE(7551), - [sym__spread_parenthesized] = STATE(729), - [sym__spread_variable] = STATE(730), - [sym_val_variable] = STATE(603), - [sym_val_number] = STATE(7551), - [sym__val_number_decimal] = STATE(3630), - [sym__val_number] = STATE(2439), - [sym_val_string] = STATE(7551), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym__spread_record] = STATE(729), - [sym_record_entry] = STATE(744), - [sym__record_key] = STATE(7972), + [sym_cmd_identifier] = STATE(8061), + [sym__match_pattern_record_variable] = STATE(762), + [sym_expr_parenthesized] = STATE(8167), + [sym__spread_parenthesized] = STATE(768), + [sym__spread_variable] = STATE(769), + [sym_val_variable] = STATE(578), + [sym_val_number] = STATE(8167), + [sym__val_number_decimal] = STATE(3647), + [sym__val_number] = STATE(2451), + [sym_val_string] = STATE(8167), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym__spread_record] = STATE(768), + [sym_record_entry] = STATE(762), + [sym__record_key] = STATE(8061), [sym_comment] = STATE(215), - [aux_sym__match_pattern_record_repeat1] = STATE(216), + [aux_sym__match_pattern_record_repeat1] = STATE(213), [anon_sym_export] = ACTIONS(1325), [anon_sym_alias] = ACTIONS(1325), [anon_sym_let] = ACTIONS(1325), @@ -99235,10 +99557,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1331), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1333), - [aux_sym__val_number_decimal_token1] = ACTIONS(1311), - [aux_sym__val_number_decimal_token2] = ACTIONS(1313), - [aux_sym__val_number_decimal_token3] = ACTIONS(1315), - [aux_sym__val_number_decimal_token4] = ACTIONS(1317), + [aux_sym__val_number_decimal_token1] = ACTIONS(1313), + [aux_sym__val_number_decimal_token2] = ACTIONS(1315), + [aux_sym__val_number_decimal_token3] = ACTIONS(1317), + [aux_sym__val_number_decimal_token4] = ACTIONS(1319), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), @@ -99253,29 +99575,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(249), }, [216] = { - [sym_cmd_identifier] = STATE(7972), - [sym__match_pattern_record_variable] = STATE(744), - [sym_expr_parenthesized] = STATE(7551), - [sym__spread_parenthesized] = STATE(729), - [sym__spread_variable] = STATE(730), - [sym_val_variable] = STATE(603), - [sym_val_number] = STATE(7551), - [sym__val_number_decimal] = STATE(3630), - [sym__val_number] = STATE(2439), - [sym_val_string] = STATE(7551), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym__spread_record] = STATE(729), - [sym_record_entry] = STATE(744), - [sym__record_key] = STATE(7972), + [sym_cmd_identifier] = STATE(7830), + [sym_expr_parenthesized] = STATE(7852), + [sym__spread_parenthesized] = STATE(7503), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(7852), + [sym_val_number] = STATE(7852), + [sym__val_number_decimal] = STATE(3647), + [sym__val_number] = STATE(2451), + [sym_val_string] = STATE(7852), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym__spread_record] = STATE(7503), + [sym_record_entry] = STATE(7286), + [sym__record_key] = STATE(7830), [sym_comment] = STATE(216), - [aux_sym__match_pattern_record_repeat1] = STATE(214), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_alias] = ACTIONS(1325), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_let_DASHenv] = ACTIONS(1325), - [anon_sym_mut] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), + [aux_sym_shebang_repeat1] = STATE(629), + [aux_sym_record_body_repeat1] = STATE(220), + [anon_sym_export] = ACTIONS(281), + [anon_sym_alias] = ACTIONS(281), + [anon_sym_let] = ACTIONS(281), + [anon_sym_let_DASHenv] = ACTIONS(281), + [anon_sym_mut] = ACTIONS(281), + [anon_sym_const] = ACTIONS(281), [aux_sym_cmd_identifier_token1] = ACTIONS(1301), [aux_sym_cmd_identifier_token2] = ACTIONS(1303), [aux_sym_cmd_identifier_token3] = ACTIONS(1303), @@ -99316,44 +99638,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(1301), [aux_sym_cmd_identifier_token39] = ACTIONS(1303), [aux_sym_cmd_identifier_token40] = ACTIONS(1303), - [anon_sym_def] = ACTIONS(1325), - [anon_sym_export_DASHenv] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_use] = ACTIONS(1325), + [sym__newline] = ACTIONS(1305), + [anon_sym_def] = ACTIONS(281), + [anon_sym_export_DASHenv] = ACTIONS(281), + [anon_sym_extern] = ACTIONS(281), + [anon_sym_module] = ACTIONS(281), + [anon_sym_use] = ACTIONS(281), [anon_sym_LPAREN] = ACTIONS(1307), - [anon_sym_DOLLAR] = ACTIONS(1327), - [anon_sym_error] = ACTIONS(1325), + [anon_sym_DOLLAR] = ACTIONS(1309), + [anon_sym_error] = ACTIONS(281), [anon_sym_DASH2] = ACTIONS(205), - [anon_sym_break] = ACTIONS(1325), - [anon_sym_continue] = ACTIONS(1325), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_in2] = ACTIONS(1325), - [anon_sym_loop] = ACTIONS(1325), - [anon_sym_make] = ACTIONS(1325), - [anon_sym_while] = ACTIONS(1325), - [anon_sym_do] = ACTIONS(1325), - [anon_sym_if] = ACTIONS(1325), - [anon_sym_else] = ACTIONS(1325), - [anon_sym_match] = ACTIONS(1325), - [anon_sym_RBRACE] = ACTIONS(1397), - [anon_sym_try] = ACTIONS(1325), - [anon_sym_catch] = ACTIONS(1325), - [anon_sym_return] = ACTIONS(1325), - [anon_sym_source] = ACTIONS(1325), - [anon_sym_source_DASHenv] = ACTIONS(1325), - [anon_sym_register] = ACTIONS(1325), - [anon_sym_hide] = ACTIONS(1325), - [anon_sym_hide_DASHenv] = ACTIONS(1325), - [anon_sym_overlay] = ACTIONS(1325), - [anon_sym_as] = ACTIONS(1325), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(281), + [anon_sym_in2] = ACTIONS(281), + [anon_sym_loop] = ACTIONS(281), + [anon_sym_make] = ACTIONS(281), + [anon_sym_while] = ACTIONS(281), + [anon_sym_do] = ACTIONS(281), + [anon_sym_if] = ACTIONS(281), + [anon_sym_else] = ACTIONS(281), + [anon_sym_match] = ACTIONS(281), + [anon_sym_try] = ACTIONS(281), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_return] = ACTIONS(281), + [anon_sym_source] = ACTIONS(281), + [anon_sym_source_DASHenv] = ACTIONS(281), + [anon_sym_register] = ACTIONS(281), + [anon_sym_hide] = ACTIONS(281), + [anon_sym_hide_DASHenv] = ACTIONS(281), + [anon_sym_overlay] = ACTIONS(281), + [anon_sym_as] = ACTIONS(281), [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1331), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1333), - [aux_sym__val_number_decimal_token1] = ACTIONS(1311), - [aux_sym__val_number_decimal_token2] = ACTIONS(1313), - [aux_sym__val_number_decimal_token3] = ACTIONS(1315), - [aux_sym__val_number_decimal_token4] = ACTIONS(1317), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(1313), + [aux_sym__val_number_decimal_token2] = ACTIONS(1315), + [aux_sym__val_number_decimal_token3] = ACTIONS(1317), + [aux_sym__val_number_decimal_token4] = ACTIONS(1319), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), @@ -99363,34 +99685,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(235), [sym__str_single_quotes] = ACTIONS(237), [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1335), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(249), }, [217] = { - [sym_cmd_identifier] = STATE(7810), - [sym_expr_parenthesized] = STATE(7606), - [sym__spread_parenthesized] = STATE(7543), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(7606), - [sym_val_number] = STATE(7606), - [sym__val_number_decimal] = STATE(3630), - [sym__val_number] = STATE(2439), - [sym_val_string] = STATE(7606), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym__spread_record] = STATE(7543), - [sym_record_entry] = STATE(6910), - [sym__record_key] = STATE(7810), + [sym_cmd_identifier] = STATE(8061), + [sym__match_pattern_record_variable] = STATE(762), + [sym_expr_parenthesized] = STATE(8167), + [sym__spread_parenthesized] = STATE(768), + [sym__spread_variable] = STATE(769), + [sym_val_variable] = STATE(578), + [sym_val_number] = STATE(8167), + [sym__val_number_decimal] = STATE(3647), + [sym__val_number] = STATE(2451), + [sym_val_string] = STATE(8167), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym__spread_record] = STATE(768), + [sym_record_entry] = STATE(762), + [sym__record_key] = STATE(8061), [sym_comment] = STATE(217), - [aux_sym_shebang_repeat1] = STATE(666), - [aux_sym_record_body_repeat1] = STATE(220), - [anon_sym_export] = ACTIONS(281), - [anon_sym_alias] = ACTIONS(281), - [anon_sym_let] = ACTIONS(281), - [anon_sym_let_DASHenv] = ACTIONS(281), - [anon_sym_mut] = ACTIONS(281), - [anon_sym_const] = ACTIONS(281), + [aux_sym__match_pattern_record_repeat1] = STATE(214), + [anon_sym_export] = ACTIONS(1325), + [anon_sym_alias] = ACTIONS(1325), + [anon_sym_let] = ACTIONS(1325), + [anon_sym_let_DASHenv] = ACTIONS(1325), + [anon_sym_mut] = ACTIONS(1325), + [anon_sym_const] = ACTIONS(1325), [aux_sym_cmd_identifier_token1] = ACTIONS(1301), [aux_sym_cmd_identifier_token2] = ACTIONS(1303), [aux_sym_cmd_identifier_token3] = ACTIONS(1303), @@ -99431,44 +99753,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(1301), [aux_sym_cmd_identifier_token39] = ACTIONS(1303), [aux_sym_cmd_identifier_token40] = ACTIONS(1303), - [sym__newline] = ACTIONS(1305), - [anon_sym_def] = ACTIONS(281), - [anon_sym_export_DASHenv] = ACTIONS(281), - [anon_sym_extern] = ACTIONS(281), - [anon_sym_module] = ACTIONS(281), - [anon_sym_use] = ACTIONS(281), + [anon_sym_def] = ACTIONS(1325), + [anon_sym_export_DASHenv] = ACTIONS(1325), + [anon_sym_extern] = ACTIONS(1325), + [anon_sym_module] = ACTIONS(1325), + [anon_sym_use] = ACTIONS(1325), [anon_sym_LPAREN] = ACTIONS(1307), - [anon_sym_DOLLAR] = ACTIONS(1309), - [anon_sym_error] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(1327), + [anon_sym_error] = ACTIONS(1325), [anon_sym_DASH2] = ACTIONS(205), - [anon_sym_break] = ACTIONS(281), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(281), - [anon_sym_in2] = ACTIONS(281), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(281), - [anon_sym_while] = ACTIONS(281), - [anon_sym_do] = ACTIONS(281), - [anon_sym_if] = ACTIONS(281), - [anon_sym_else] = ACTIONS(281), - [anon_sym_match] = ACTIONS(281), - [anon_sym_try] = ACTIONS(281), - [anon_sym_catch] = ACTIONS(281), - [anon_sym_return] = ACTIONS(281), - [anon_sym_source] = ACTIONS(281), - [anon_sym_source_DASHenv] = ACTIONS(281), - [anon_sym_register] = ACTIONS(281), - [anon_sym_hide] = ACTIONS(281), - [anon_sym_hide_DASHenv] = ACTIONS(281), - [anon_sym_overlay] = ACTIONS(281), - [anon_sym_as] = ACTIONS(281), + [anon_sym_break] = ACTIONS(1325), + [anon_sym_continue] = ACTIONS(1325), + [anon_sym_for] = ACTIONS(1325), + [anon_sym_in2] = ACTIONS(1325), + [anon_sym_loop] = ACTIONS(1325), + [anon_sym_make] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1325), + [anon_sym_do] = ACTIONS(1325), + [anon_sym_if] = ACTIONS(1325), + [anon_sym_else] = ACTIONS(1325), + [anon_sym_match] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1397), + [anon_sym_try] = ACTIONS(1325), + [anon_sym_catch] = ACTIONS(1325), + [anon_sym_return] = ACTIONS(1325), + [anon_sym_source] = ACTIONS(1325), + [anon_sym_source_DASHenv] = ACTIONS(1325), + [anon_sym_register] = ACTIONS(1325), + [anon_sym_hide] = ACTIONS(1325), + [anon_sym_hide_DASHenv] = ACTIONS(1325), + [anon_sym_overlay] = ACTIONS(1325), + [anon_sym_as] = ACTIONS(1325), [anon_sym_PLUS2] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(1311), - [aux_sym__val_number_decimal_token2] = ACTIONS(1313), - [aux_sym__val_number_decimal_token3] = ACTIONS(1315), - [aux_sym__val_number_decimal_token4] = ACTIONS(1317), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1331), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1333), + [aux_sym__val_number_decimal_token1] = ACTIONS(1313), + [aux_sym__val_number_decimal_token2] = ACTIONS(1315), + [aux_sym__val_number_decimal_token3] = ACTIONS(1317), + [aux_sym__val_number_decimal_token4] = ACTIONS(1319), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), @@ -99478,27 +99800,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(235), [sym__str_single_quotes] = ACTIONS(237), [sym__str_back_ticks] = ACTIONS(237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(313), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1335), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(249), }, [218] = { - [sym_cmd_identifier] = STATE(7810), - [sym_expr_parenthesized] = STATE(7606), - [sym__spread_parenthesized] = STATE(7543), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(7606), - [sym_val_number] = STATE(7606), - [sym__val_number_decimal] = STATE(3630), - [sym__val_number] = STATE(2439), - [sym_val_string] = STATE(7606), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym__spread_record] = STATE(7543), - [sym_record_entry] = STATE(6953), - [sym__record_key] = STATE(7810), + [sym_cmd_identifier] = STATE(7830), + [sym_expr_parenthesized] = STATE(7852), + [sym__spread_parenthesized] = STATE(7503), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(7852), + [sym_val_number] = STATE(7852), + [sym__val_number_decimal] = STATE(3647), + [sym__val_number] = STATE(2451), + [sym_val_string] = STATE(7852), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym__spread_record] = STATE(7503), + [sym_record_entry] = STATE(7699), + [sym__record_key] = STATE(7830), [sym_comment] = STATE(218), - [aux_sym_record_body_repeat1] = STATE(219), + [aux_sym_record_body_repeat1] = STATE(218), + [anon_sym_export] = ACTIONS(1399), + [anon_sym_alias] = ACTIONS(1399), + [anon_sym_let] = ACTIONS(1399), + [anon_sym_let_DASHenv] = ACTIONS(1399), + [anon_sym_mut] = ACTIONS(1399), + [anon_sym_const] = ACTIONS(1399), + [aux_sym_cmd_identifier_token1] = ACTIONS(1402), + [aux_sym_cmd_identifier_token2] = ACTIONS(1405), + [aux_sym_cmd_identifier_token3] = ACTIONS(1405), + [aux_sym_cmd_identifier_token4] = ACTIONS(1405), + [aux_sym_cmd_identifier_token5] = ACTIONS(1405), + [aux_sym_cmd_identifier_token6] = ACTIONS(1405), + [aux_sym_cmd_identifier_token7] = ACTIONS(1405), + [aux_sym_cmd_identifier_token8] = ACTIONS(1402), + [aux_sym_cmd_identifier_token9] = ACTIONS(1402), + [aux_sym_cmd_identifier_token10] = ACTIONS(1405), + [aux_sym_cmd_identifier_token11] = ACTIONS(1405), + [aux_sym_cmd_identifier_token12] = ACTIONS(1402), + [aux_sym_cmd_identifier_token13] = ACTIONS(1402), + [aux_sym_cmd_identifier_token14] = ACTIONS(1402), + [aux_sym_cmd_identifier_token15] = ACTIONS(1402), + [aux_sym_cmd_identifier_token16] = ACTIONS(1405), + [aux_sym_cmd_identifier_token17] = ACTIONS(1405), + [aux_sym_cmd_identifier_token18] = ACTIONS(1405), + [aux_sym_cmd_identifier_token19] = ACTIONS(1405), + [aux_sym_cmd_identifier_token20] = ACTIONS(1405), + [aux_sym_cmd_identifier_token21] = ACTIONS(1405), + [aux_sym_cmd_identifier_token22] = ACTIONS(1405), + [aux_sym_cmd_identifier_token23] = ACTIONS(1405), + [aux_sym_cmd_identifier_token24] = ACTIONS(1405), + [aux_sym_cmd_identifier_token25] = ACTIONS(1405), + [aux_sym_cmd_identifier_token26] = ACTIONS(1405), + [aux_sym_cmd_identifier_token27] = ACTIONS(1405), + [aux_sym_cmd_identifier_token28] = ACTIONS(1405), + [aux_sym_cmd_identifier_token29] = ACTIONS(1405), + [aux_sym_cmd_identifier_token30] = ACTIONS(1405), + [aux_sym_cmd_identifier_token31] = ACTIONS(1405), + [aux_sym_cmd_identifier_token32] = ACTIONS(1405), + [aux_sym_cmd_identifier_token33] = ACTIONS(1405), + [aux_sym_cmd_identifier_token34] = ACTIONS(1402), + [aux_sym_cmd_identifier_token35] = ACTIONS(1405), + [aux_sym_cmd_identifier_token36] = ACTIONS(1405), + [aux_sym_cmd_identifier_token37] = ACTIONS(1405), + [aux_sym_cmd_identifier_token38] = ACTIONS(1402), + [aux_sym_cmd_identifier_token39] = ACTIONS(1405), + [aux_sym_cmd_identifier_token40] = ACTIONS(1405), + [anon_sym_def] = ACTIONS(1399), + [anon_sym_export_DASHenv] = ACTIONS(1399), + [anon_sym_extern] = ACTIONS(1399), + [anon_sym_module] = ACTIONS(1399), + [anon_sym_use] = ACTIONS(1399), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_DOLLAR] = ACTIONS(1411), + [anon_sym_error] = ACTIONS(1399), + [anon_sym_DASH2] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1399), + [anon_sym_continue] = ACTIONS(1399), + [anon_sym_for] = ACTIONS(1399), + [anon_sym_in2] = ACTIONS(1399), + [anon_sym_loop] = ACTIONS(1399), + [anon_sym_make] = ACTIONS(1399), + [anon_sym_while] = ACTIONS(1399), + [anon_sym_do] = ACTIONS(1399), + [anon_sym_if] = ACTIONS(1399), + [anon_sym_else] = ACTIONS(1399), + [anon_sym_match] = ACTIONS(1399), + [anon_sym_try] = ACTIONS(1399), + [anon_sym_catch] = ACTIONS(1399), + [anon_sym_return] = ACTIONS(1399), + [anon_sym_source] = ACTIONS(1399), + [anon_sym_source_DASHenv] = ACTIONS(1399), + [anon_sym_register] = ACTIONS(1399), + [anon_sym_hide] = ACTIONS(1399), + [anon_sym_hide_DASHenv] = ACTIONS(1399), + [anon_sym_overlay] = ACTIONS(1399), + [anon_sym_as] = ACTIONS(1399), + [anon_sym_PLUS2] = ACTIONS(1414), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1417), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1420), + [aux_sym__val_number_decimal_token1] = ACTIONS(1423), + [aux_sym__val_number_decimal_token2] = ACTIONS(1426), + [aux_sym__val_number_decimal_token3] = ACTIONS(1429), + [aux_sym__val_number_decimal_token4] = ACTIONS(1432), + [aux_sym__val_number_token1] = ACTIONS(1435), + [aux_sym__val_number_token2] = ACTIONS(1435), + [aux_sym__val_number_token3] = ACTIONS(1435), + [aux_sym__val_number_token4] = ACTIONS(1438), + [aux_sym__val_number_token5] = ACTIONS(1438), + [aux_sym__val_number_token6] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1441), + [sym__str_single_quotes] = ACTIONS(1444), + [sym__str_back_ticks] = ACTIONS(1444), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1447), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1450), + }, + [219] = { + [sym_cmd_identifier] = STATE(7830), + [sym_expr_parenthesized] = STATE(7852), + [sym__spread_parenthesized] = STATE(7503), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(7852), + [sym_val_number] = STATE(7852), + [sym__val_number_decimal] = STATE(3647), + [sym__val_number] = STATE(2451), + [sym_val_string] = STATE(7852), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym__spread_record] = STATE(7503), + [sym_record_entry] = STATE(7310), + [sym__record_key] = STATE(7830), + [sym_comment] = STATE(219), + [aux_sym_record_body_repeat1] = STATE(218), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(281), [anon_sym_let] = ACTIONS(281), @@ -99578,10 +100013,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(1311), - [aux_sym__val_number_decimal_token2] = ACTIONS(1313), - [aux_sym__val_number_decimal_token3] = ACTIONS(1315), - [aux_sym__val_number_decimal_token4] = ACTIONS(1317), + [aux_sym__val_number_decimal_token1] = ACTIONS(1313), + [aux_sym__val_number_decimal_token2] = ACTIONS(1315), + [aux_sym__val_number_decimal_token3] = ACTIONS(1317), + [aux_sym__val_number_decimal_token4] = ACTIONS(1319), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), @@ -99595,136 +100030,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(249), }, - [219] = { - [sym_cmd_identifier] = STATE(7810), - [sym_expr_parenthesized] = STATE(7606), - [sym__spread_parenthesized] = STATE(7543), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(7606), - [sym_val_number] = STATE(7606), - [sym__val_number_decimal] = STATE(3630), - [sym__val_number] = STATE(2439), - [sym_val_string] = STATE(7606), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym__spread_record] = STATE(7543), - [sym_record_entry] = STATE(7481), - [sym__record_key] = STATE(7810), - [sym_comment] = STATE(219), - [aux_sym_record_body_repeat1] = STATE(219), - [anon_sym_export] = ACTIONS(1399), - [anon_sym_alias] = ACTIONS(1399), - [anon_sym_let] = ACTIONS(1399), - [anon_sym_let_DASHenv] = ACTIONS(1399), - [anon_sym_mut] = ACTIONS(1399), - [anon_sym_const] = ACTIONS(1399), - [aux_sym_cmd_identifier_token1] = ACTIONS(1402), - [aux_sym_cmd_identifier_token2] = ACTIONS(1405), - [aux_sym_cmd_identifier_token3] = ACTIONS(1405), - [aux_sym_cmd_identifier_token4] = ACTIONS(1405), - [aux_sym_cmd_identifier_token5] = ACTIONS(1405), - [aux_sym_cmd_identifier_token6] = ACTIONS(1405), - [aux_sym_cmd_identifier_token7] = ACTIONS(1405), - [aux_sym_cmd_identifier_token8] = ACTIONS(1402), - [aux_sym_cmd_identifier_token9] = ACTIONS(1402), - [aux_sym_cmd_identifier_token10] = ACTIONS(1405), - [aux_sym_cmd_identifier_token11] = ACTIONS(1405), - [aux_sym_cmd_identifier_token12] = ACTIONS(1402), - [aux_sym_cmd_identifier_token13] = ACTIONS(1402), - [aux_sym_cmd_identifier_token14] = ACTIONS(1402), - [aux_sym_cmd_identifier_token15] = ACTIONS(1402), - [aux_sym_cmd_identifier_token16] = ACTIONS(1405), - [aux_sym_cmd_identifier_token17] = ACTIONS(1405), - [aux_sym_cmd_identifier_token18] = ACTIONS(1405), - [aux_sym_cmd_identifier_token19] = ACTIONS(1405), - [aux_sym_cmd_identifier_token20] = ACTIONS(1405), - [aux_sym_cmd_identifier_token21] = ACTIONS(1405), - [aux_sym_cmd_identifier_token22] = ACTIONS(1405), - [aux_sym_cmd_identifier_token23] = ACTIONS(1405), - [aux_sym_cmd_identifier_token24] = ACTIONS(1405), - [aux_sym_cmd_identifier_token25] = ACTIONS(1405), - [aux_sym_cmd_identifier_token26] = ACTIONS(1405), - [aux_sym_cmd_identifier_token27] = ACTIONS(1405), - [aux_sym_cmd_identifier_token28] = ACTIONS(1405), - [aux_sym_cmd_identifier_token29] = ACTIONS(1405), - [aux_sym_cmd_identifier_token30] = ACTIONS(1405), - [aux_sym_cmd_identifier_token31] = ACTIONS(1405), - [aux_sym_cmd_identifier_token32] = ACTIONS(1405), - [aux_sym_cmd_identifier_token33] = ACTIONS(1405), - [aux_sym_cmd_identifier_token34] = ACTIONS(1402), - [aux_sym_cmd_identifier_token35] = ACTIONS(1405), - [aux_sym_cmd_identifier_token36] = ACTIONS(1405), - [aux_sym_cmd_identifier_token37] = ACTIONS(1405), - [aux_sym_cmd_identifier_token38] = ACTIONS(1402), - [aux_sym_cmd_identifier_token39] = ACTIONS(1405), - [aux_sym_cmd_identifier_token40] = ACTIONS(1405), - [anon_sym_def] = ACTIONS(1399), - [anon_sym_export_DASHenv] = ACTIONS(1399), - [anon_sym_extern] = ACTIONS(1399), - [anon_sym_module] = ACTIONS(1399), - [anon_sym_use] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_DOLLAR] = ACTIONS(1411), - [anon_sym_error] = ACTIONS(1399), - [anon_sym_DASH2] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1399), - [anon_sym_continue] = ACTIONS(1399), - [anon_sym_for] = ACTIONS(1399), - [anon_sym_in2] = ACTIONS(1399), - [anon_sym_loop] = ACTIONS(1399), - [anon_sym_make] = ACTIONS(1399), - [anon_sym_while] = ACTIONS(1399), - [anon_sym_do] = ACTIONS(1399), - [anon_sym_if] = ACTIONS(1399), - [anon_sym_else] = ACTIONS(1399), - [anon_sym_match] = ACTIONS(1399), - [anon_sym_try] = ACTIONS(1399), - [anon_sym_catch] = ACTIONS(1399), - [anon_sym_return] = ACTIONS(1399), - [anon_sym_source] = ACTIONS(1399), - [anon_sym_source_DASHenv] = ACTIONS(1399), - [anon_sym_register] = ACTIONS(1399), - [anon_sym_hide] = ACTIONS(1399), - [anon_sym_hide_DASHenv] = ACTIONS(1399), - [anon_sym_overlay] = ACTIONS(1399), - [anon_sym_as] = ACTIONS(1399), - [anon_sym_PLUS2] = ACTIONS(1414), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1417), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1420), - [aux_sym__val_number_decimal_token1] = ACTIONS(1423), - [aux_sym__val_number_decimal_token2] = ACTIONS(1426), - [aux_sym__val_number_decimal_token3] = ACTIONS(1429), - [aux_sym__val_number_decimal_token4] = ACTIONS(1432), - [aux_sym__val_number_token1] = ACTIONS(1435), - [aux_sym__val_number_token2] = ACTIONS(1435), - [aux_sym__val_number_token3] = ACTIONS(1435), - [aux_sym__val_number_token4] = ACTIONS(1438), - [aux_sym__val_number_token5] = ACTIONS(1438), - [aux_sym__val_number_token6] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1441), - [sym__str_single_quotes] = ACTIONS(1444), - [sym__str_back_ticks] = ACTIONS(1444), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1447), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1450), - }, [220] = { - [sym_cmd_identifier] = STATE(7810), - [sym_expr_parenthesized] = STATE(7606), - [sym__spread_parenthesized] = STATE(7543), - [sym__spread_variable] = STATE(7385), - [sym_val_variable] = STATE(7606), - [sym_val_number] = STATE(7606), - [sym__val_number_decimal] = STATE(3630), - [sym__val_number] = STATE(2439), - [sym_val_string] = STATE(7606), - [sym__raw_str] = STATE(1551), - [sym__str_double_quotes] = STATE(1551), - [sym__spread_record] = STATE(7543), - [sym_record_entry] = STATE(7102), - [sym__record_key] = STATE(7810), + [sym_cmd_identifier] = STATE(7830), + [sym_expr_parenthesized] = STATE(7852), + [sym__spread_parenthesized] = STATE(7503), + [sym__spread_variable] = STATE(7585), + [sym_val_variable] = STATE(7852), + [sym_val_number] = STATE(7852), + [sym__val_number_decimal] = STATE(3647), + [sym__val_number] = STATE(2451), + [sym_val_string] = STATE(7852), + [sym__raw_str] = STATE(1544), + [sym__str_double_quotes] = STATE(1544), + [sym__spread_record] = STATE(7503), + [sym_record_entry] = STATE(7443), + [sym__record_key] = STATE(7830), [sym_comment] = STATE(220), - [aux_sym_record_body_repeat1] = STATE(219), + [aux_sym_record_body_repeat1] = STATE(218), [anon_sym_export] = ACTIONS(281), [anon_sym_alias] = ACTIONS(281), [anon_sym_let] = ACTIONS(281), @@ -99804,10 +100126,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(1311), - [aux_sym__val_number_decimal_token2] = ACTIONS(1313), - [aux_sym__val_number_decimal_token3] = ACTIONS(1315), - [aux_sym__val_number_decimal_token4] = ACTIONS(1317), + [aux_sym__val_number_decimal_token1] = ACTIONS(1313), + [aux_sym__val_number_decimal_token2] = ACTIONS(1315), + [aux_sym__val_number_decimal_token3] = ACTIONS(1317), + [aux_sym__val_number_decimal_token4] = ACTIONS(1319), [aux_sym__val_number_token1] = ACTIONS(225), [aux_sym__val_number_token2] = ACTIONS(225), [aux_sym__val_number_token3] = ACTIONS(225), @@ -100270,30 +100592,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1455), }, [225] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5057), + [sym_block] = STATE(5063), + [sym__expression_parenthesized] = STATE(5063), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1255), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5063), [sym_comment] = STATE(225), - [ts_builtin_sym_end] = ACTIONS(1292), - [anon_sym_POUND_BANG] = ACTIONS(1288), - [anon_sym_export] = ACTIONS(1470), - [anon_sym_alias] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_let_DASHenv] = ACTIONS(1470), - [anon_sym_mut] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [aux_sym_cmd_identifier_token1] = ACTIONS(1470), + [aux_sym_shebang_repeat1] = STATE(1177), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [226] = { + [sym_comment] = STATE(226), + [anon_sym_export] = ACTIONS(1484), + [anon_sym_alias] = ACTIONS(1484), + [anon_sym_let] = ACTIONS(1484), + [anon_sym_let_DASHenv] = ACTIONS(1484), + [anon_sym_mut] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [aux_sym_cmd_identifier_token1] = ACTIONS(1484), [aux_sym_cmd_identifier_token2] = ACTIONS(1292), [aux_sym_cmd_identifier_token3] = ACTIONS(1292), [aux_sym_cmd_identifier_token4] = ACTIONS(1292), [aux_sym_cmd_identifier_token5] = ACTIONS(1292), [aux_sym_cmd_identifier_token6] = ACTIONS(1292), [aux_sym_cmd_identifier_token7] = ACTIONS(1292), - [aux_sym_cmd_identifier_token8] = ACTIONS(1470), - [aux_sym_cmd_identifier_token9] = ACTIONS(1470), + [aux_sym_cmd_identifier_token8] = ACTIONS(1484), + [aux_sym_cmd_identifier_token9] = ACTIONS(1484), [aux_sym_cmd_identifier_token10] = ACTIONS(1292), [aux_sym_cmd_identifier_token11] = ACTIONS(1292), - [aux_sym_cmd_identifier_token12] = ACTIONS(1470), - [aux_sym_cmd_identifier_token13] = ACTIONS(1470), - [aux_sym_cmd_identifier_token14] = ACTIONS(1470), - [aux_sym_cmd_identifier_token15] = ACTIONS(1470), + [aux_sym_cmd_identifier_token12] = ACTIONS(1484), + [aux_sym_cmd_identifier_token13] = ACTIONS(1484), + [aux_sym_cmd_identifier_token14] = ACTIONS(1484), + [aux_sym_cmd_identifier_token15] = ACTIONS(1484), [aux_sym_cmd_identifier_token16] = ACTIONS(1292), [aux_sym_cmd_identifier_token17] = ACTIONS(1292), [aux_sym_cmd_identifier_token18] = ACTIONS(1292), @@ -100312,189 +100743,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(1292), [aux_sym_cmd_identifier_token32] = ACTIONS(1292), [aux_sym_cmd_identifier_token33] = ACTIONS(1292), - [aux_sym_cmd_identifier_token34] = ACTIONS(1470), + [aux_sym_cmd_identifier_token34] = ACTIONS(1484), [aux_sym_cmd_identifier_token35] = ACTIONS(1292), [aux_sym_cmd_identifier_token36] = ACTIONS(1292), [aux_sym_cmd_identifier_token37] = ACTIONS(1292), - [aux_sym_cmd_identifier_token38] = ACTIONS(1470), + [aux_sym_cmd_identifier_token38] = ACTIONS(1484), [aux_sym_cmd_identifier_token39] = ACTIONS(1292), [aux_sym_cmd_identifier_token40] = ACTIONS(1292), - [sym__newline] = ACTIONS(1285), + [sym__newline] = ACTIONS(1292), [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym_def] = ACTIONS(1470), - [anon_sym_export_DASHenv] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_module] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), + [anon_sym_def] = ACTIONS(1484), + [anon_sym_export_DASHenv] = ACTIONS(1484), + [anon_sym_extern] = ACTIONS(1484), + [anon_sym_module] = ACTIONS(1484), + [anon_sym_use] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(1292), [anon_sym_LPAREN] = ACTIONS(1292), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_error] = ACTIONS(1470), - [anon_sym_DASH2] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_do] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), + [anon_sym_RPAREN] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_error] = ACTIONS(1484), + [anon_sym_DASH2] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), + [anon_sym_loop] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_do] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_match] = ACTIONS(1484), [anon_sym_LBRACE] = ACTIONS(1292), - [anon_sym_DOT_DOT] = ACTIONS(1470), - [anon_sym_try] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_source] = ACTIONS(1470), - [anon_sym_source_DASHenv] = ACTIONS(1470), - [anon_sym_register] = ACTIONS(1470), - [anon_sym_hide] = ACTIONS(1470), - [anon_sym_hide_DASHenv] = ACTIONS(1470), - [anon_sym_overlay] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_try] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_source] = ACTIONS(1484), + [anon_sym_source_DASHenv] = ACTIONS(1484), + [anon_sym_register] = ACTIONS(1484), + [anon_sym_hide] = ACTIONS(1484), + [anon_sym_hide_DASHenv] = ACTIONS(1484), + [anon_sym_overlay] = ACTIONS(1484), [anon_sym_where] = ACTIONS(1292), [aux_sym_expr_unary_token1] = ACTIONS(1292), [anon_sym_DOT_DOT_EQ] = ACTIONS(1292), [anon_sym_DOT_DOT_LT] = ACTIONS(1292), - [anon_sym_null] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1470), - [anon_sym_false] = ACTIONS(1470), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), + [anon_sym_null] = ACTIONS(1484), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [aux_sym__val_number_decimal_token1] = ACTIONS(1484), [aux_sym__val_number_decimal_token2] = ACTIONS(1292), [aux_sym__val_number_decimal_token3] = ACTIONS(1292), [aux_sym__val_number_decimal_token4] = ACTIONS(1292), [aux_sym__val_number_token1] = ACTIONS(1292), [aux_sym__val_number_token2] = ACTIONS(1292), [aux_sym__val_number_token3] = ACTIONS(1292), - [aux_sym__val_number_token4] = ACTIONS(1470), - [aux_sym__val_number_token5] = ACTIONS(1470), - [aux_sym__val_number_token6] = ACTIONS(1470), - [anon_sym_0b] = ACTIONS(1470), - [anon_sym_0o] = ACTIONS(1470), - [anon_sym_0x] = ACTIONS(1470), + [aux_sym__val_number_token4] = ACTIONS(1484), + [aux_sym__val_number_token5] = ACTIONS(1484), + [aux_sym__val_number_token6] = ACTIONS(1484), + [anon_sym_0b] = ACTIONS(1484), + [anon_sym_0o] = ACTIONS(1484), + [anon_sym_0x] = ACTIONS(1484), [sym_val_date] = ACTIONS(1292), [anon_sym_DQUOTE] = ACTIONS(1292), [sym__str_single_quotes] = ACTIONS(1292), [sym__str_back_ticks] = ACTIONS(1292), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1292), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1292), - [aux_sym_env_var_token1] = ACTIONS(1470), + [aux_sym_env_var_token1] = ACTIONS(1484), [anon_sym_CARET] = ACTIONS(1292), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1292), - }, - [226] = { - [sym_comment] = STATE(226), - [anon_sym_export] = ACTIONS(1282), - [anon_sym_alias] = ACTIONS(1282), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_let_DASHenv] = ACTIONS(1282), - [anon_sym_mut] = ACTIONS(1282), - [anon_sym_const] = ACTIONS(1282), - [aux_sym_cmd_identifier_token1] = ACTIONS(1282), - [aux_sym_cmd_identifier_token2] = ACTIONS(1285), - [aux_sym_cmd_identifier_token3] = ACTIONS(1285), - [aux_sym_cmd_identifier_token4] = ACTIONS(1285), - [aux_sym_cmd_identifier_token5] = ACTIONS(1285), - [aux_sym_cmd_identifier_token6] = ACTIONS(1285), - [aux_sym_cmd_identifier_token7] = ACTIONS(1285), - [aux_sym_cmd_identifier_token8] = ACTIONS(1282), - [aux_sym_cmd_identifier_token9] = ACTIONS(1282), - [aux_sym_cmd_identifier_token10] = ACTIONS(1285), - [aux_sym_cmd_identifier_token11] = ACTIONS(1285), - [aux_sym_cmd_identifier_token12] = ACTIONS(1282), - [aux_sym_cmd_identifier_token13] = ACTIONS(1282), - [aux_sym_cmd_identifier_token14] = ACTIONS(1282), - [aux_sym_cmd_identifier_token15] = ACTIONS(1282), - [aux_sym_cmd_identifier_token16] = ACTIONS(1285), - [aux_sym_cmd_identifier_token17] = ACTIONS(1285), - [aux_sym_cmd_identifier_token18] = ACTIONS(1285), - [aux_sym_cmd_identifier_token19] = ACTIONS(1285), - [aux_sym_cmd_identifier_token20] = ACTIONS(1285), - [aux_sym_cmd_identifier_token21] = ACTIONS(1285), - [aux_sym_cmd_identifier_token22] = ACTIONS(1285), - [aux_sym_cmd_identifier_token23] = ACTIONS(1285), - [aux_sym_cmd_identifier_token24] = ACTIONS(1285), - [aux_sym_cmd_identifier_token25] = ACTIONS(1285), - [aux_sym_cmd_identifier_token26] = ACTIONS(1285), - [aux_sym_cmd_identifier_token27] = ACTIONS(1285), - [aux_sym_cmd_identifier_token28] = ACTIONS(1285), - [aux_sym_cmd_identifier_token29] = ACTIONS(1285), - [aux_sym_cmd_identifier_token30] = ACTIONS(1285), - [aux_sym_cmd_identifier_token31] = ACTIONS(1285), - [aux_sym_cmd_identifier_token32] = ACTIONS(1285), - [aux_sym_cmd_identifier_token33] = ACTIONS(1285), - [aux_sym_cmd_identifier_token34] = ACTIONS(1282), - [aux_sym_cmd_identifier_token35] = ACTIONS(1285), - [aux_sym_cmd_identifier_token36] = ACTIONS(1285), - [aux_sym_cmd_identifier_token37] = ACTIONS(1285), - [aux_sym_cmd_identifier_token38] = ACTIONS(1282), - [aux_sym_cmd_identifier_token39] = ACTIONS(1285), - [aux_sym_cmd_identifier_token40] = ACTIONS(1285), - [sym__newline] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_PIPE] = ACTIONS(1288), - [anon_sym_def] = ACTIONS(1282), - [anon_sym_export_DASHenv] = ACTIONS(1282), - [anon_sym_extern] = ACTIONS(1282), - [anon_sym_module] = ACTIONS(1282), - [anon_sym_use] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1282), - [anon_sym_error] = ACTIONS(1282), - [anon_sym_DASH2] = ACTIONS(1282), - [anon_sym_break] = ACTIONS(1282), - [anon_sym_continue] = ACTIONS(1282), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_loop] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1282), - [anon_sym_do] = ACTIONS(1282), - [anon_sym_if] = ACTIONS(1282), - [anon_sym_match] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1285), - [anon_sym_RBRACE] = ACTIONS(1292), - [anon_sym_DOT_DOT] = ACTIONS(1282), - [anon_sym_try] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(1282), - [anon_sym_source] = ACTIONS(1282), - [anon_sym_source_DASHenv] = ACTIONS(1282), - [anon_sym_register] = ACTIONS(1282), - [anon_sym_hide] = ACTIONS(1282), - [anon_sym_hide_DASHenv] = ACTIONS(1282), - [anon_sym_overlay] = ACTIONS(1282), - [anon_sym_where] = ACTIONS(1285), - [aux_sym_expr_unary_token1] = ACTIONS(1285), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), - [anon_sym_DOT_DOT_LT] = ACTIONS(1285), - [anon_sym_null] = ACTIONS(1282), - [anon_sym_true] = ACTIONS(1282), - [anon_sym_false] = ACTIONS(1282), - [aux_sym__val_number_decimal_token1] = ACTIONS(1282), - [aux_sym__val_number_decimal_token2] = ACTIONS(1285), - [aux_sym__val_number_decimal_token3] = ACTIONS(1285), - [aux_sym__val_number_decimal_token4] = ACTIONS(1285), - [aux_sym__val_number_token1] = ACTIONS(1285), - [aux_sym__val_number_token2] = ACTIONS(1285), - [aux_sym__val_number_token3] = ACTIONS(1285), - [aux_sym__val_number_token4] = ACTIONS(1282), - [aux_sym__val_number_token5] = ACTIONS(1282), - [aux_sym__val_number_token6] = ACTIONS(1282), - [anon_sym_0b] = ACTIONS(1282), - [anon_sym_0o] = ACTIONS(1282), - [anon_sym_0x] = ACTIONS(1282), - [sym_val_date] = ACTIONS(1285), - [anon_sym_DQUOTE] = ACTIONS(1285), - [sym__str_single_quotes] = ACTIONS(1285), - [sym__str_back_ticks] = ACTIONS(1285), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1285), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1285), - [aux_sym_env_var_token1] = ACTIONS(1282), - [anon_sym_CARET] = ACTIONS(1285), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1285), + [sym_raw_string_begin] = ACTIONS(1292), }, [227] = { [sym_comment] = STATE(227), - [aux_sym__block_body_repeat1] = STATE(305), - [ts_builtin_sym_end] = ACTIONS(1459), + [aux_sym__block_body_repeat1] = STATE(228), + [ts_builtin_sym_end] = ACTIONS(1457), [anon_sym_export] = ACTIONS(1453), [anon_sym_alias] = ACTIONS(1453), [anon_sym_let] = ACTIONS(1453), @@ -100604,482 +100926,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [228] = { [sym_comment] = STATE(228), - [aux_sym_shebang_repeat1] = STATE(6772), - [aux_sym__parenthesized_body_repeat1] = STATE(228), - [anon_sym_export] = ACTIONS(1472), - [anon_sym_alias] = ACTIONS(1472), - [anon_sym_let] = ACTIONS(1472), - [anon_sym_let_DASHenv] = ACTIONS(1472), - [anon_sym_mut] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [aux_sym_cmd_identifier_token1] = ACTIONS(1472), - [aux_sym_cmd_identifier_token2] = ACTIONS(1474), - [aux_sym_cmd_identifier_token3] = ACTIONS(1474), - [aux_sym_cmd_identifier_token4] = ACTIONS(1474), - [aux_sym_cmd_identifier_token5] = ACTIONS(1474), - [aux_sym_cmd_identifier_token6] = ACTIONS(1474), - [aux_sym_cmd_identifier_token7] = ACTIONS(1474), - [aux_sym_cmd_identifier_token8] = ACTIONS(1472), - [aux_sym_cmd_identifier_token9] = ACTIONS(1472), - [aux_sym_cmd_identifier_token10] = ACTIONS(1474), - [aux_sym_cmd_identifier_token11] = ACTIONS(1474), - [aux_sym_cmd_identifier_token12] = ACTIONS(1472), - [aux_sym_cmd_identifier_token13] = ACTIONS(1472), - [aux_sym_cmd_identifier_token14] = ACTIONS(1472), - [aux_sym_cmd_identifier_token15] = ACTIONS(1472), - [aux_sym_cmd_identifier_token16] = ACTIONS(1474), - [aux_sym_cmd_identifier_token17] = ACTIONS(1474), - [aux_sym_cmd_identifier_token18] = ACTIONS(1474), - [aux_sym_cmd_identifier_token19] = ACTIONS(1474), - [aux_sym_cmd_identifier_token20] = ACTIONS(1474), - [aux_sym_cmd_identifier_token21] = ACTIONS(1474), - [aux_sym_cmd_identifier_token22] = ACTIONS(1474), - [aux_sym_cmd_identifier_token23] = ACTIONS(1474), - [aux_sym_cmd_identifier_token24] = ACTIONS(1474), - [aux_sym_cmd_identifier_token25] = ACTIONS(1474), - [aux_sym_cmd_identifier_token26] = ACTIONS(1474), - [aux_sym_cmd_identifier_token27] = ACTIONS(1474), - [aux_sym_cmd_identifier_token28] = ACTIONS(1474), - [aux_sym_cmd_identifier_token29] = ACTIONS(1474), - [aux_sym_cmd_identifier_token30] = ACTIONS(1474), - [aux_sym_cmd_identifier_token31] = ACTIONS(1474), - [aux_sym_cmd_identifier_token32] = ACTIONS(1474), - [aux_sym_cmd_identifier_token33] = ACTIONS(1474), - [aux_sym_cmd_identifier_token34] = ACTIONS(1472), - [aux_sym_cmd_identifier_token35] = ACTIONS(1474), - [aux_sym_cmd_identifier_token36] = ACTIONS(1474), - [aux_sym_cmd_identifier_token37] = ACTIONS(1474), - [aux_sym_cmd_identifier_token38] = ACTIONS(1472), - [aux_sym_cmd_identifier_token39] = ACTIONS(1474), - [aux_sym_cmd_identifier_token40] = ACTIONS(1474), - [sym__newline] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_def] = ACTIONS(1472), - [anon_sym_export_DASHenv] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym_module] = ACTIONS(1472), - [anon_sym_use] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1474), - [anon_sym_LPAREN] = ACTIONS(1474), - [anon_sym_DOLLAR] = ACTIONS(1472), - [anon_sym_error] = ACTIONS(1472), - [anon_sym_DASH2] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_loop] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(1472), - [anon_sym_try] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_source] = ACTIONS(1472), - [anon_sym_source_DASHenv] = ACTIONS(1472), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_hide] = ACTIONS(1472), - [anon_sym_hide_DASHenv] = ACTIONS(1472), - [anon_sym_overlay] = ACTIONS(1472), - [anon_sym_where] = ACTIONS(1474), - [aux_sym_expr_unary_token1] = ACTIONS(1474), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1474), - [anon_sym_DOT_DOT_LT] = ACTIONS(1474), - [anon_sym_null] = ACTIONS(1472), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [aux_sym__val_number_decimal_token1] = ACTIONS(1472), - [aux_sym__val_number_decimal_token2] = ACTIONS(1474), - [aux_sym__val_number_decimal_token3] = ACTIONS(1474), - [aux_sym__val_number_decimal_token4] = ACTIONS(1474), - [aux_sym__val_number_token1] = ACTIONS(1474), - [aux_sym__val_number_token2] = ACTIONS(1474), - [aux_sym__val_number_token3] = ACTIONS(1474), - [aux_sym__val_number_token4] = ACTIONS(1472), - [aux_sym__val_number_token5] = ACTIONS(1472), - [aux_sym__val_number_token6] = ACTIONS(1472), - [anon_sym_0b] = ACTIONS(1472), - [anon_sym_0o] = ACTIONS(1472), - [anon_sym_0x] = ACTIONS(1472), - [sym_val_date] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [sym__str_single_quotes] = ACTIONS(1474), - [sym__str_back_ticks] = ACTIONS(1474), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1474), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1474), - [aux_sym_env_var_token1] = ACTIONS(1472), - [anon_sym_CARET] = ACTIONS(1474), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1474), + [aux_sym__block_body_repeat1] = STATE(228), + [ts_builtin_sym_end] = ACTIONS(1463), + [anon_sym_export] = ACTIONS(1461), + [anon_sym_alias] = ACTIONS(1461), + [anon_sym_let] = ACTIONS(1461), + [anon_sym_let_DASHenv] = ACTIONS(1461), + [anon_sym_mut] = ACTIONS(1461), + [anon_sym_const] = ACTIONS(1461), + [aux_sym_cmd_identifier_token1] = ACTIONS(1461), + [aux_sym_cmd_identifier_token2] = ACTIONS(1463), + [aux_sym_cmd_identifier_token3] = ACTIONS(1463), + [aux_sym_cmd_identifier_token4] = ACTIONS(1463), + [aux_sym_cmd_identifier_token5] = ACTIONS(1463), + [aux_sym_cmd_identifier_token6] = ACTIONS(1463), + [aux_sym_cmd_identifier_token7] = ACTIONS(1463), + [aux_sym_cmd_identifier_token8] = ACTIONS(1461), + [aux_sym_cmd_identifier_token9] = ACTIONS(1461), + [aux_sym_cmd_identifier_token10] = ACTIONS(1463), + [aux_sym_cmd_identifier_token11] = ACTIONS(1463), + [aux_sym_cmd_identifier_token12] = ACTIONS(1461), + [aux_sym_cmd_identifier_token13] = ACTIONS(1461), + [aux_sym_cmd_identifier_token14] = ACTIONS(1461), + [aux_sym_cmd_identifier_token15] = ACTIONS(1461), + [aux_sym_cmd_identifier_token16] = ACTIONS(1463), + [aux_sym_cmd_identifier_token17] = ACTIONS(1463), + [aux_sym_cmd_identifier_token18] = ACTIONS(1463), + [aux_sym_cmd_identifier_token19] = ACTIONS(1463), + [aux_sym_cmd_identifier_token20] = ACTIONS(1463), + [aux_sym_cmd_identifier_token21] = ACTIONS(1463), + [aux_sym_cmd_identifier_token22] = ACTIONS(1463), + [aux_sym_cmd_identifier_token23] = ACTIONS(1463), + [aux_sym_cmd_identifier_token24] = ACTIONS(1463), + [aux_sym_cmd_identifier_token25] = ACTIONS(1463), + [aux_sym_cmd_identifier_token26] = ACTIONS(1463), + [aux_sym_cmd_identifier_token27] = ACTIONS(1463), + [aux_sym_cmd_identifier_token28] = ACTIONS(1463), + [aux_sym_cmd_identifier_token29] = ACTIONS(1463), + [aux_sym_cmd_identifier_token30] = ACTIONS(1463), + [aux_sym_cmd_identifier_token31] = ACTIONS(1463), + [aux_sym_cmd_identifier_token32] = ACTIONS(1463), + [aux_sym_cmd_identifier_token33] = ACTIONS(1463), + [aux_sym_cmd_identifier_token34] = ACTIONS(1461), + [aux_sym_cmd_identifier_token35] = ACTIONS(1463), + [aux_sym_cmd_identifier_token36] = ACTIONS(1463), + [aux_sym_cmd_identifier_token37] = ACTIONS(1463), + [aux_sym_cmd_identifier_token38] = ACTIONS(1461), + [aux_sym_cmd_identifier_token39] = ACTIONS(1463), + [aux_sym_cmd_identifier_token40] = ACTIONS(1463), + [sym__newline] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_def] = ACTIONS(1461), + [anon_sym_export_DASHenv] = ACTIONS(1461), + [anon_sym_extern] = ACTIONS(1461), + [anon_sym_module] = ACTIONS(1461), + [anon_sym_use] = ACTIONS(1461), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_DOLLAR] = ACTIONS(1461), + [anon_sym_error] = ACTIONS(1461), + [anon_sym_DASH2] = ACTIONS(1461), + [anon_sym_break] = ACTIONS(1461), + [anon_sym_continue] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_loop] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_match] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1463), + [anon_sym_DOT_DOT] = ACTIONS(1461), + [anon_sym_try] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_source] = ACTIONS(1461), + [anon_sym_source_DASHenv] = ACTIONS(1461), + [anon_sym_register] = ACTIONS(1461), + [anon_sym_hide] = ACTIONS(1461), + [anon_sym_hide_DASHenv] = ACTIONS(1461), + [anon_sym_overlay] = ACTIONS(1461), + [anon_sym_where] = ACTIONS(1463), + [aux_sym_expr_unary_token1] = ACTIONS(1463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1463), + [anon_sym_DOT_DOT_LT] = ACTIONS(1463), + [anon_sym_null] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(1461), + [anon_sym_false] = ACTIONS(1461), + [aux_sym__val_number_decimal_token1] = ACTIONS(1461), + [aux_sym__val_number_decimal_token2] = ACTIONS(1463), + [aux_sym__val_number_decimal_token3] = ACTIONS(1463), + [aux_sym__val_number_decimal_token4] = ACTIONS(1463), + [aux_sym__val_number_token1] = ACTIONS(1463), + [aux_sym__val_number_token2] = ACTIONS(1463), + [aux_sym__val_number_token3] = ACTIONS(1463), + [aux_sym__val_number_token4] = ACTIONS(1461), + [aux_sym__val_number_token5] = ACTIONS(1461), + [aux_sym__val_number_token6] = ACTIONS(1461), + [anon_sym_0b] = ACTIONS(1461), + [anon_sym_0o] = ACTIONS(1461), + [anon_sym_0x] = ACTIONS(1461), + [sym_val_date] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(1463), + [sym__str_single_quotes] = ACTIONS(1463), + [sym__str_back_ticks] = ACTIONS(1463), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1463), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1463), + [aux_sym_env_var_token1] = ACTIONS(1461), + [anon_sym_CARET] = ACTIONS(1463), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1463), }, [229] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5105), + [sym_block] = STATE(5107), + [sym__expression_parenthesized] = STATE(5107), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1255), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5107), [sym_comment] = STATE(229), - [aux_sym_shebang_repeat1] = STATE(229), - [anon_sym_export] = ACTIONS(1294), - [anon_sym_alias] = ACTIONS(1294), - [anon_sym_let] = ACTIONS(1294), - [anon_sym_let_DASHenv] = ACTIONS(1294), - [anon_sym_mut] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [aux_sym_cmd_identifier_token1] = ACTIONS(1294), - [aux_sym_cmd_identifier_token2] = ACTIONS(1296), - [aux_sym_cmd_identifier_token3] = ACTIONS(1296), - [aux_sym_cmd_identifier_token4] = ACTIONS(1296), - [aux_sym_cmd_identifier_token5] = ACTIONS(1296), - [aux_sym_cmd_identifier_token6] = ACTIONS(1296), - [aux_sym_cmd_identifier_token7] = ACTIONS(1296), - [aux_sym_cmd_identifier_token8] = ACTIONS(1294), - [aux_sym_cmd_identifier_token9] = ACTIONS(1294), - [aux_sym_cmd_identifier_token10] = ACTIONS(1296), - [aux_sym_cmd_identifier_token11] = ACTIONS(1296), - [aux_sym_cmd_identifier_token12] = ACTIONS(1294), - [aux_sym_cmd_identifier_token13] = ACTIONS(1294), - [aux_sym_cmd_identifier_token14] = ACTIONS(1294), - [aux_sym_cmd_identifier_token15] = ACTIONS(1294), - [aux_sym_cmd_identifier_token16] = ACTIONS(1296), - [aux_sym_cmd_identifier_token17] = ACTIONS(1296), - [aux_sym_cmd_identifier_token18] = ACTIONS(1296), - [aux_sym_cmd_identifier_token19] = ACTIONS(1296), - [aux_sym_cmd_identifier_token20] = ACTIONS(1296), - [aux_sym_cmd_identifier_token21] = ACTIONS(1296), - [aux_sym_cmd_identifier_token22] = ACTIONS(1296), - [aux_sym_cmd_identifier_token23] = ACTIONS(1296), - [aux_sym_cmd_identifier_token24] = ACTIONS(1296), - [aux_sym_cmd_identifier_token25] = ACTIONS(1296), - [aux_sym_cmd_identifier_token26] = ACTIONS(1296), - [aux_sym_cmd_identifier_token27] = ACTIONS(1296), - [aux_sym_cmd_identifier_token28] = ACTIONS(1296), - [aux_sym_cmd_identifier_token29] = ACTIONS(1296), - [aux_sym_cmd_identifier_token30] = ACTIONS(1296), - [aux_sym_cmd_identifier_token31] = ACTIONS(1296), - [aux_sym_cmd_identifier_token32] = ACTIONS(1296), - [aux_sym_cmd_identifier_token33] = ACTIONS(1296), - [aux_sym_cmd_identifier_token34] = ACTIONS(1294), - [aux_sym_cmd_identifier_token35] = ACTIONS(1296), - [aux_sym_cmd_identifier_token36] = ACTIONS(1296), - [aux_sym_cmd_identifier_token37] = ACTIONS(1296), - [aux_sym_cmd_identifier_token38] = ACTIONS(1294), - [aux_sym_cmd_identifier_token39] = ACTIONS(1296), - [aux_sym_cmd_identifier_token40] = ACTIONS(1296), - [sym__newline] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1296), - [anon_sym_def] = ACTIONS(1294), - [anon_sym_export_DASHenv] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym_module] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(1296), - [anon_sym_LPAREN] = ACTIONS(1296), - [anon_sym_DOLLAR] = ACTIONS(1294), - [anon_sym_error] = ACTIONS(1294), - [anon_sym_DASH2] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_loop] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_match] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_try] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_source] = ACTIONS(1294), - [anon_sym_source_DASHenv] = ACTIONS(1294), - [anon_sym_register] = ACTIONS(1294), - [anon_sym_hide] = ACTIONS(1294), - [anon_sym_hide_DASHenv] = ACTIONS(1294), - [anon_sym_overlay] = ACTIONS(1294), - [anon_sym_where] = ACTIONS(1296), - [aux_sym_expr_unary_token1] = ACTIONS(1296), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1296), - [anon_sym_DOT_DOT_LT] = ACTIONS(1296), - [anon_sym_null] = ACTIONS(1294), - [anon_sym_true] = ACTIONS(1294), - [anon_sym_false] = ACTIONS(1294), - [aux_sym__val_number_decimal_token1] = ACTIONS(1294), - [aux_sym__val_number_decimal_token2] = ACTIONS(1296), - [aux_sym__val_number_decimal_token3] = ACTIONS(1296), - [aux_sym__val_number_decimal_token4] = ACTIONS(1296), - [aux_sym__val_number_token1] = ACTIONS(1296), - [aux_sym__val_number_token2] = ACTIONS(1296), - [aux_sym__val_number_token3] = ACTIONS(1296), - [aux_sym__val_number_token4] = ACTIONS(1294), - [aux_sym__val_number_token5] = ACTIONS(1294), - [aux_sym__val_number_token6] = ACTIONS(1294), - [anon_sym_0b] = ACTIONS(1294), - [anon_sym_0o] = ACTIONS(1294), - [anon_sym_0x] = ACTIONS(1294), - [sym_val_date] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym__str_single_quotes] = ACTIONS(1296), - [sym__str_back_ticks] = ACTIONS(1296), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1296), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1296), - [aux_sym_env_var_token1] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1296), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1296), - }, - [230] = { - [sym_comment] = STATE(230), - [aux_sym__block_body_repeat1] = STATE(305), - [ts_builtin_sym_end] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1453), - [anon_sym_alias] = ACTIONS(1453), - [anon_sym_let] = ACTIONS(1453), - [anon_sym_let_DASHenv] = ACTIONS(1453), - [anon_sym_mut] = ACTIONS(1453), - [anon_sym_const] = ACTIONS(1453), - [aux_sym_cmd_identifier_token1] = ACTIONS(1453), - [aux_sym_cmd_identifier_token2] = ACTIONS(1455), - [aux_sym_cmd_identifier_token3] = ACTIONS(1455), - [aux_sym_cmd_identifier_token4] = ACTIONS(1455), - [aux_sym_cmd_identifier_token5] = ACTIONS(1455), - [aux_sym_cmd_identifier_token6] = ACTIONS(1455), - [aux_sym_cmd_identifier_token7] = ACTIONS(1455), - [aux_sym_cmd_identifier_token8] = ACTIONS(1453), - [aux_sym_cmd_identifier_token9] = ACTIONS(1453), - [aux_sym_cmd_identifier_token10] = ACTIONS(1455), - [aux_sym_cmd_identifier_token11] = ACTIONS(1455), - [aux_sym_cmd_identifier_token12] = ACTIONS(1453), - [aux_sym_cmd_identifier_token13] = ACTIONS(1453), - [aux_sym_cmd_identifier_token14] = ACTIONS(1453), - [aux_sym_cmd_identifier_token15] = ACTIONS(1453), - [aux_sym_cmd_identifier_token16] = ACTIONS(1455), - [aux_sym_cmd_identifier_token17] = ACTIONS(1455), - [aux_sym_cmd_identifier_token18] = ACTIONS(1455), - [aux_sym_cmd_identifier_token19] = ACTIONS(1455), - [aux_sym_cmd_identifier_token20] = ACTIONS(1455), - [aux_sym_cmd_identifier_token21] = ACTIONS(1455), - [aux_sym_cmd_identifier_token22] = ACTIONS(1455), - [aux_sym_cmd_identifier_token23] = ACTIONS(1455), - [aux_sym_cmd_identifier_token24] = ACTIONS(1455), - [aux_sym_cmd_identifier_token25] = ACTIONS(1455), - [aux_sym_cmd_identifier_token26] = ACTIONS(1455), - [aux_sym_cmd_identifier_token27] = ACTIONS(1455), - [aux_sym_cmd_identifier_token28] = ACTIONS(1455), - [aux_sym_cmd_identifier_token29] = ACTIONS(1455), - [aux_sym_cmd_identifier_token30] = ACTIONS(1455), - [aux_sym_cmd_identifier_token31] = ACTIONS(1455), - [aux_sym_cmd_identifier_token32] = ACTIONS(1455), - [aux_sym_cmd_identifier_token33] = ACTIONS(1455), - [aux_sym_cmd_identifier_token34] = ACTIONS(1453), - [aux_sym_cmd_identifier_token35] = ACTIONS(1455), - [aux_sym_cmd_identifier_token36] = ACTIONS(1455), - [aux_sym_cmd_identifier_token37] = ACTIONS(1455), - [aux_sym_cmd_identifier_token38] = ACTIONS(1453), - [aux_sym_cmd_identifier_token39] = ACTIONS(1455), - [aux_sym_cmd_identifier_token40] = ACTIONS(1455), - [sym__newline] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(25), - [anon_sym_def] = ACTIONS(1453), - [anon_sym_export_DASHenv] = ACTIONS(1453), - [anon_sym_extern] = ACTIONS(1453), - [anon_sym_module] = ACTIONS(1453), - [anon_sym_use] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1455), - [anon_sym_DOLLAR] = ACTIONS(1453), - [anon_sym_error] = ACTIONS(1453), - [anon_sym_DASH2] = ACTIONS(1453), - [anon_sym_break] = ACTIONS(1453), - [anon_sym_continue] = ACTIONS(1453), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_loop] = ACTIONS(1453), - [anon_sym_while] = ACTIONS(1453), - [anon_sym_do] = ACTIONS(1453), - [anon_sym_if] = ACTIONS(1453), - [anon_sym_match] = ACTIONS(1453), - [anon_sym_LBRACE] = ACTIONS(1455), - [anon_sym_DOT_DOT] = ACTIONS(1453), - [anon_sym_try] = ACTIONS(1453), - [anon_sym_return] = ACTIONS(1453), - [anon_sym_source] = ACTIONS(1453), - [anon_sym_source_DASHenv] = ACTIONS(1453), - [anon_sym_register] = ACTIONS(1453), - [anon_sym_hide] = ACTIONS(1453), - [anon_sym_hide_DASHenv] = ACTIONS(1453), - [anon_sym_overlay] = ACTIONS(1453), - [anon_sym_where] = ACTIONS(1455), - [aux_sym_expr_unary_token1] = ACTIONS(1455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), - [anon_sym_DOT_DOT_LT] = ACTIONS(1455), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_true] = ACTIONS(1453), - [anon_sym_false] = ACTIONS(1453), - [aux_sym__val_number_decimal_token1] = ACTIONS(1453), - [aux_sym__val_number_decimal_token2] = ACTIONS(1455), - [aux_sym__val_number_decimal_token3] = ACTIONS(1455), - [aux_sym__val_number_decimal_token4] = ACTIONS(1455), - [aux_sym__val_number_token1] = ACTIONS(1455), - [aux_sym__val_number_token2] = ACTIONS(1455), - [aux_sym__val_number_token3] = ACTIONS(1455), - [aux_sym__val_number_token4] = ACTIONS(1453), - [aux_sym__val_number_token5] = ACTIONS(1453), - [aux_sym__val_number_token6] = ACTIONS(1453), - [anon_sym_0b] = ACTIONS(1453), - [anon_sym_0o] = ACTIONS(1453), - [anon_sym_0x] = ACTIONS(1453), - [sym_val_date] = ACTIONS(1455), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym__str_single_quotes] = ACTIONS(1455), - [sym__str_back_ticks] = ACTIONS(1455), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1455), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1455), - [aux_sym_env_var_token1] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1455), - }, - [231] = { - [sym_comment] = STATE(231), - [aux_sym_shebang_repeat1] = STATE(313), - [aux_sym__parenthesized_body_repeat1] = STATE(228), - [anon_sym_export] = ACTIONS(1485), - [anon_sym_alias] = ACTIONS(1485), - [anon_sym_let] = ACTIONS(1485), - [anon_sym_let_DASHenv] = ACTIONS(1485), - [anon_sym_mut] = ACTIONS(1485), - [anon_sym_const] = ACTIONS(1485), - [aux_sym_cmd_identifier_token1] = ACTIONS(1485), - [aux_sym_cmd_identifier_token2] = ACTIONS(1487), - [aux_sym_cmd_identifier_token3] = ACTIONS(1487), - [aux_sym_cmd_identifier_token4] = ACTIONS(1487), - [aux_sym_cmd_identifier_token5] = ACTIONS(1487), - [aux_sym_cmd_identifier_token6] = ACTIONS(1487), - [aux_sym_cmd_identifier_token7] = ACTIONS(1487), - [aux_sym_cmd_identifier_token8] = ACTIONS(1485), - [aux_sym_cmd_identifier_token9] = ACTIONS(1485), - [aux_sym_cmd_identifier_token10] = ACTIONS(1487), - [aux_sym_cmd_identifier_token11] = ACTIONS(1487), - [aux_sym_cmd_identifier_token12] = ACTIONS(1485), - [aux_sym_cmd_identifier_token13] = ACTIONS(1485), - [aux_sym_cmd_identifier_token14] = ACTIONS(1485), - [aux_sym_cmd_identifier_token15] = ACTIONS(1485), - [aux_sym_cmd_identifier_token16] = ACTIONS(1487), - [aux_sym_cmd_identifier_token17] = ACTIONS(1487), - [aux_sym_cmd_identifier_token18] = ACTIONS(1487), - [aux_sym_cmd_identifier_token19] = ACTIONS(1487), - [aux_sym_cmd_identifier_token20] = ACTIONS(1487), - [aux_sym_cmd_identifier_token21] = ACTIONS(1487), - [aux_sym_cmd_identifier_token22] = ACTIONS(1487), - [aux_sym_cmd_identifier_token23] = ACTIONS(1487), - [aux_sym_cmd_identifier_token24] = ACTIONS(1487), - [aux_sym_cmd_identifier_token25] = ACTIONS(1487), - [aux_sym_cmd_identifier_token26] = ACTIONS(1487), - [aux_sym_cmd_identifier_token27] = ACTIONS(1487), - [aux_sym_cmd_identifier_token28] = ACTIONS(1487), - [aux_sym_cmd_identifier_token29] = ACTIONS(1487), - [aux_sym_cmd_identifier_token30] = ACTIONS(1487), - [aux_sym_cmd_identifier_token31] = ACTIONS(1487), - [aux_sym_cmd_identifier_token32] = ACTIONS(1487), - [aux_sym_cmd_identifier_token33] = ACTIONS(1487), - [aux_sym_cmd_identifier_token34] = ACTIONS(1485), - [aux_sym_cmd_identifier_token35] = ACTIONS(1487), - [aux_sym_cmd_identifier_token36] = ACTIONS(1487), - [aux_sym_cmd_identifier_token37] = ACTIONS(1487), - [aux_sym_cmd_identifier_token38] = ACTIONS(1485), - [aux_sym_cmd_identifier_token39] = ACTIONS(1487), - [aux_sym_cmd_identifier_token40] = ACTIONS(1487), - [sym__newline] = ACTIONS(1489), - [anon_sym_SEMI] = ACTIONS(1491), - [anon_sym_def] = ACTIONS(1485), - [anon_sym_export_DASHenv] = ACTIONS(1485), - [anon_sym_extern] = ACTIONS(1485), - [anon_sym_module] = ACTIONS(1485), - [anon_sym_use] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1487), - [anon_sym_DOLLAR] = ACTIONS(1485), - [anon_sym_error] = ACTIONS(1485), - [anon_sym_DASH2] = ACTIONS(1485), - [anon_sym_break] = ACTIONS(1485), - [anon_sym_continue] = ACTIONS(1485), - [anon_sym_for] = ACTIONS(1485), - [anon_sym_loop] = ACTIONS(1485), - [anon_sym_while] = ACTIONS(1485), - [anon_sym_do] = ACTIONS(1485), - [anon_sym_if] = ACTIONS(1485), - [anon_sym_match] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1485), - [anon_sym_try] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(1485), - [anon_sym_source] = ACTIONS(1485), - [anon_sym_source_DASHenv] = ACTIONS(1485), - [anon_sym_register] = ACTIONS(1485), - [anon_sym_hide] = ACTIONS(1485), - [anon_sym_hide_DASHenv] = ACTIONS(1485), - [anon_sym_overlay] = ACTIONS(1485), - [anon_sym_where] = ACTIONS(1487), - [aux_sym_expr_unary_token1] = ACTIONS(1487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1487), - [anon_sym_DOT_DOT_LT] = ACTIONS(1487), - [anon_sym_null] = ACTIONS(1485), - [anon_sym_true] = ACTIONS(1485), - [anon_sym_false] = ACTIONS(1485), - [aux_sym__val_number_decimal_token1] = ACTIONS(1485), - [aux_sym__val_number_decimal_token2] = ACTIONS(1487), - [aux_sym__val_number_decimal_token3] = ACTIONS(1487), - [aux_sym__val_number_decimal_token4] = ACTIONS(1487), - [aux_sym__val_number_token1] = ACTIONS(1487), - [aux_sym__val_number_token2] = ACTIONS(1487), - [aux_sym__val_number_token3] = ACTIONS(1487), - [aux_sym__val_number_token4] = ACTIONS(1485), - [aux_sym__val_number_token5] = ACTIONS(1485), - [aux_sym__val_number_token6] = ACTIONS(1485), - [anon_sym_0b] = ACTIONS(1485), - [anon_sym_0o] = ACTIONS(1485), - [anon_sym_0x] = ACTIONS(1485), - [sym_val_date] = ACTIONS(1487), - [anon_sym_DQUOTE] = ACTIONS(1487), - [sym__str_single_quotes] = ACTIONS(1487), - [sym__str_back_ticks] = ACTIONS(1487), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1487), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1487), - [aux_sym_env_var_token1] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1487), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1487), - }, - [232] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5001), - [sym_block] = STATE(5004), - [sym__expression_parenthesized] = STATE(5004), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1207), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5004), - [sym_comment] = STATE(232), - [aux_sym_shebang_repeat1] = STATE(257), + [aux_sym_shebang_repeat1] = STATE(230), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -101120,13 +101109,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -101134,10 +101123,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -101157,40 +101146,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [233] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5001), - [sym_block] = STATE(5004), - [sym__expression_parenthesized] = STATE(5004), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), + [230] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5066), + [sym_block] = STATE(5177), + [sym__expression_parenthesized] = STATE(5177), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5004), - [sym_comment] = STATE(233), - [aux_sym_shebang_repeat1] = STATE(234), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5177), + [sym_comment] = STATE(230), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -101231,13 +101220,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -101245,10 +101234,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_decimal_token2] = ACTIONS(1509), - [aux_sym__val_number_decimal_token3] = ACTIONS(1511), - [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -101268,40 +101257,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [234] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5138), - [sym_block] = STATE(5140), - [sym__expression_parenthesized] = STATE(5140), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), + [231] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5066), + [sym_block] = STATE(5177), + [sym__expression_parenthesized] = STATE(5177), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5140), - [sym_comment] = STATE(234), - [aux_sym_shebang_repeat1] = STATE(1184), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5177), + [sym_comment] = STATE(231), + [aux_sym_shebang_repeat1] = STATE(234), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -101342,13 +101331,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -101356,10 +101345,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_decimal_token2] = ACTIONS(1509), - [aux_sym__val_number_decimal_token3] = ACTIONS(1511), - [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -101379,40 +101368,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [235] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5138), - [sym_block] = STATE(5140), - [sym__expression_parenthesized] = STATE(5140), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), + [232] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5154), + [sym_block] = STATE(5155), + [sym__expression_parenthesized] = STATE(5155), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5140), - [sym_comment] = STATE(235), - [aux_sym_shebang_repeat1] = STATE(238), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5155), + [sym_comment] = STATE(232), + [aux_sym_shebang_repeat1] = STATE(236), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -101453,13 +101442,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -101467,10 +101456,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_decimal_token2] = ACTIONS(1509), - [aux_sym__val_number_decimal_token3] = ACTIONS(1511), - [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -101490,40 +101479,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [236] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5141), - [sym_block] = STATE(5152), - [sym__expression_parenthesized] = STATE(5152), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), + [233] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5007), + [sym_block] = STATE(5009), + [sym__expression_parenthesized] = STATE(5009), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5152), - [sym_comment] = STATE(236), - [aux_sym_shebang_repeat1] = STATE(240), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5009), + [sym_comment] = STATE(233), + [aux_sym_shebang_repeat1] = STATE(238), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -101564,13 +101553,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -101578,10 +101567,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_decimal_token2] = ACTIONS(1509), - [aux_sym__val_number_decimal_token3] = ACTIONS(1511), - [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -101601,40 +101590,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [237] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5160), - [sym_block] = STATE(5161), - [sym__expression_parenthesized] = STATE(5161), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), + [234] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5118), + [sym_block] = STATE(5106), + [sym__expression_parenthesized] = STATE(5106), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5161), - [sym_comment] = STATE(237), - [aux_sym_shebang_repeat1] = STATE(242), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5106), + [sym_comment] = STATE(234), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -101675,13 +101664,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -101689,10 +101678,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_decimal_token2] = ACTIONS(1509), - [aux_sym__val_number_decimal_token3] = ACTIONS(1511), - [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -101712,40 +101701,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [238] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5042), - [sym_block] = STATE(5043), - [sym__expression_parenthesized] = STATE(5043), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), + [235] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5118), + [sym_block] = STATE(5106), + [sym__expression_parenthesized] = STATE(5106), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5043), - [sym_comment] = STATE(238), - [aux_sym_shebang_repeat1] = STATE(1184), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5106), + [sym_comment] = STATE(235), + [aux_sym_shebang_repeat1] = STATE(241), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -101786,13 +101775,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -101800,10 +101789,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_decimal_token2] = ACTIONS(1509), - [aux_sym__val_number_decimal_token3] = ACTIONS(1511), - [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -101823,40 +101812,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [239] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5042), - [sym_block] = STATE(5043), - [sym__expression_parenthesized] = STATE(5043), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), + [236] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5044), + [sym_block] = STATE(5015), + [sym__expression_parenthesized] = STATE(5015), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5043), - [sym_comment] = STATE(239), - [aux_sym_shebang_repeat1] = STATE(245), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5015), + [sym_comment] = STATE(236), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -101897,13 +101886,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -101911,10 +101900,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_decimal_token2] = ACTIONS(1509), - [aux_sym__val_number_decimal_token3] = ACTIONS(1511), - [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -101934,40 +101923,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [240] = { - [sym_cmd_identifier] = STATE(4592), + [237] = { + [sym_cmd_identifier] = STATE(4546), [sym_ctrl_if_parenthesized] = STATE(5044), - [sym_block] = STATE(5045), - [sym__expression_parenthesized] = STATE(5045), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), + [sym_block] = STATE(5015), + [sym__expression_parenthesized] = STATE(5015), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5045), - [sym_comment] = STATE(240), - [aux_sym_shebang_repeat1] = STATE(1184), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5015), + [sym_comment] = STATE(237), + [aux_sym_shebang_repeat1] = STATE(242), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -102008,13 +101997,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -102022,10 +102011,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_decimal_token2] = ACTIONS(1509), - [aux_sym__val_number_decimal_token3] = ACTIONS(1511), - [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -102045,40 +102034,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [241] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5044), - [sym_block] = STATE(5045), - [sym__expression_parenthesized] = STATE(5045), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), + [238] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5047), + [sym_block] = STATE(5038), + [sym__expression_parenthesized] = STATE(5038), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5045), - [sym_comment] = STATE(241), - [aux_sym_shebang_repeat1] = STATE(246), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5038), + [sym_comment] = STATE(238), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -102119,13 +102108,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -102133,10 +102122,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_decimal_token2] = ACTIONS(1509), - [aux_sym__val_number_decimal_token3] = ACTIONS(1511), - [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -102156,40 +102145,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [242] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5046), - [sym_block] = STATE(5048), - [sym__expression_parenthesized] = STATE(5048), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), + [239] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5047), + [sym_block] = STATE(5038), + [sym__expression_parenthesized] = STATE(5038), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5048), - [sym_comment] = STATE(242), - [aux_sym_shebang_repeat1] = STATE(1184), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5038), + [sym_comment] = STATE(239), + [aux_sym_shebang_repeat1] = STATE(225), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -102230,13 +102219,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -102244,10 +102233,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_decimal_token2] = ACTIONS(1509), - [aux_sym__val_number_decimal_token3] = ACTIONS(1511), - [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -102267,40 +102256,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [243] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5046), - [sym_block] = STATE(5048), - [sym__expression_parenthesized] = STATE(5048), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), + [240] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5048), + [sym_block] = STATE(5023), + [sym__expression_parenthesized] = STATE(5023), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5048), - [sym_comment] = STATE(243), - [aux_sym_shebang_repeat1] = STATE(248), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5023), + [sym_comment] = STATE(240), + [aux_sym_shebang_repeat1] = STATE(245), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -102341,13 +102330,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -102355,10 +102344,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_decimal_token2] = ACTIONS(1509), - [aux_sym__val_number_decimal_token3] = ACTIONS(1511), - [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -102378,40 +102367,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [244] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5049), - [sym_block] = STATE(5050), - [sym__expression_parenthesized] = STATE(5050), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), + [241] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5120), + [sym_block] = STATE(5131), + [sym__expression_parenthesized] = STATE(5131), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5050), - [sym_comment] = STATE(244), - [aux_sym_shebang_repeat1] = STATE(250), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5131), + [sym_comment] = STATE(241), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -102452,13 +102441,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -102466,10 +102455,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_decimal_token2] = ACTIONS(1509), - [aux_sym__val_number_decimal_token3] = ACTIONS(1511), - [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -102489,40 +102478,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [245] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5078), - [sym_block] = STATE(5079), - [sym__expression_parenthesized] = STATE(5079), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), + [242] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5149), + [sym_block] = STATE(5026), + [sym__expression_parenthesized] = STATE(5026), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5079), - [sym_comment] = STATE(245), - [aux_sym_shebang_repeat1] = STATE(1184), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5026), + [sym_comment] = STATE(242), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -102563,13 +102552,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -102577,10 +102566,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_decimal_token2] = ACTIONS(1509), - [aux_sym__val_number_decimal_token3] = ACTIONS(1511), - [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -102600,40 +102589,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [246] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5080), - [sym_block] = STATE(5081), - [sym__expression_parenthesized] = STATE(5081), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), + [243] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5149), + [sym_block] = STATE(5026), + [sym__expression_parenthesized] = STATE(5026), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5081), - [sym_comment] = STATE(246), - [aux_sym_shebang_repeat1] = STATE(1184), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5026), + [sym_comment] = STATE(243), + [aux_sym_shebang_repeat1] = STATE(247), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -102674,13 +102663,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -102688,10 +102677,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_decimal_token2] = ACTIONS(1509), - [aux_sym__val_number_decimal_token3] = ACTIONS(1511), - [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -102711,40 +102700,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [247] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5080), - [sym_block] = STATE(5081), - [sym__expression_parenthesized] = STATE(5081), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), + [244] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5057), + [sym_block] = STATE(5063), + [sym__expression_parenthesized] = STATE(5063), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5081), - [sym_comment] = STATE(247), - [aux_sym_shebang_repeat1] = STATE(252), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5063), + [sym_comment] = STATE(244), + [aux_sym_shebang_repeat1] = STATE(248), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -102785,13 +102774,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -102799,10 +102788,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_decimal_token2] = ACTIONS(1509), - [aux_sym__val_number_decimal_token3] = ACTIONS(1511), - [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -102822,40 +102811,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [248] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5082), - [sym_block] = STATE(5083), - [sym__expression_parenthesized] = STATE(5083), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), + [245] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5095), + [sym_block] = STATE(5097), + [sym__expression_parenthesized] = STATE(5097), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5083), - [sym_comment] = STATE(248), - [aux_sym_shebang_repeat1] = STATE(1184), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5097), + [sym_comment] = STATE(245), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -102896,13 +102885,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -102910,10 +102899,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_decimal_token2] = ACTIONS(1509), - [aux_sym__val_number_decimal_token3] = ACTIONS(1511), - [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -102933,40 +102922,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [249] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5082), - [sym_block] = STATE(5083), - [sym__expression_parenthesized] = STATE(5083), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), + [246] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5095), + [sym_block] = STATE(5097), + [sym__expression_parenthesized] = STATE(5097), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5083), - [sym_comment] = STATE(249), - [aux_sym_shebang_repeat1] = STATE(253), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5097), + [sym_comment] = STATE(246), + [aux_sym_shebang_repeat1] = STATE(249), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -103007,13 +102996,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -103021,10 +103010,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_decimal_token2] = ACTIONS(1509), - [aux_sym__val_number_decimal_token3] = ACTIONS(1511), - [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -103044,40 +103033,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [250] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5084), - [sym_block] = STATE(5166), - [sym__expression_parenthesized] = STATE(5166), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), + [247] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5019), + [sym_block] = STATE(5173), + [sym__expression_parenthesized] = STATE(5173), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5166), - [sym_comment] = STATE(250), - [aux_sym_shebang_repeat1] = STATE(1184), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5173), + [sym_comment] = STATE(247), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -103118,13 +103107,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -103132,10 +103121,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_decimal_token2] = ACTIONS(1509), - [aux_sym__val_number_decimal_token3] = ACTIONS(1511), - [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -103155,40 +103144,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [251] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5084), - [sym_block] = STATE(5166), - [sym__expression_parenthesized] = STATE(5166), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), + [248] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5029), + [sym_block] = STATE(5140), + [sym__expression_parenthesized] = STATE(5140), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5166), - [sym_comment] = STATE(251), - [aux_sym_shebang_repeat1] = STATE(254), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5140), + [sym_comment] = STATE(248), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -103229,13 +103218,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -103243,10 +103232,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_decimal_token2] = ACTIONS(1509), - [aux_sym__val_number_decimal_token3] = ACTIONS(1511), - [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -103266,40 +103255,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [252] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5087), - [sym_block] = STATE(5088), - [sym__expression_parenthesized] = STATE(5088), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), + [249] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_block] = STATE(5051), + [sym__expression_parenthesized] = STATE(5051), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5088), - [sym_comment] = STATE(252), - [aux_sym_shebang_repeat1] = STATE(1184), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5051), + [sym_comment] = STATE(249), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -103340,13 +103329,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -103354,10 +103343,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_decimal_token2] = ACTIONS(1509), - [aux_sym__val_number_decimal_token3] = ACTIONS(1511), - [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -103377,40 +103366,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [253] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5089), - [sym_block] = STATE(5090), - [sym__expression_parenthesized] = STATE(5090), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), + [250] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_block] = STATE(5051), + [sym__expression_parenthesized] = STATE(5051), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5090), - [sym_comment] = STATE(253), - [aux_sym_shebang_repeat1] = STATE(1184), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5051), + [sym_comment] = STATE(250), + [aux_sym_shebang_repeat1] = STATE(251), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -103451,13 +103440,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -103465,10 +103454,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_decimal_token2] = ACTIONS(1509), - [aux_sym__val_number_decimal_token3] = ACTIONS(1511), - [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -103488,40 +103477,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [254] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_block] = STATE(5092), - [sym__expression_parenthesized] = STATE(5092), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), + [251] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5137), + [sym_block] = STATE(5006), + [sym__expression_parenthesized] = STATE(5006), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5092), - [sym_comment] = STATE(254), - [aux_sym_shebang_repeat1] = STATE(1184), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5006), + [sym_comment] = STATE(251), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -103562,13 +103551,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [252] = { + [sym_comment] = STATE(252), + [aux_sym_shebang_repeat1] = STATE(308), + [aux_sym__parenthesized_body_repeat1] = STATE(279), + [anon_sym_export] = ACTIONS(1489), + [anon_sym_alias] = ACTIONS(1489), + [anon_sym_let] = ACTIONS(1489), + [anon_sym_let_DASHenv] = ACTIONS(1489), + [anon_sym_mut] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [aux_sym_cmd_identifier_token1] = ACTIONS(1489), + [aux_sym_cmd_identifier_token2] = ACTIONS(1491), + [aux_sym_cmd_identifier_token3] = ACTIONS(1491), + [aux_sym_cmd_identifier_token4] = ACTIONS(1491), + [aux_sym_cmd_identifier_token5] = ACTIONS(1491), + [aux_sym_cmd_identifier_token6] = ACTIONS(1491), + [aux_sym_cmd_identifier_token7] = ACTIONS(1491), + [aux_sym_cmd_identifier_token8] = ACTIONS(1489), + [aux_sym_cmd_identifier_token9] = ACTIONS(1489), + [aux_sym_cmd_identifier_token10] = ACTIONS(1491), + [aux_sym_cmd_identifier_token11] = ACTIONS(1491), + [aux_sym_cmd_identifier_token12] = ACTIONS(1489), + [aux_sym_cmd_identifier_token13] = ACTIONS(1489), + [aux_sym_cmd_identifier_token14] = ACTIONS(1489), + [aux_sym_cmd_identifier_token15] = ACTIONS(1489), + [aux_sym_cmd_identifier_token16] = ACTIONS(1491), + [aux_sym_cmd_identifier_token17] = ACTIONS(1491), + [aux_sym_cmd_identifier_token18] = ACTIONS(1491), + [aux_sym_cmd_identifier_token19] = ACTIONS(1491), + [aux_sym_cmd_identifier_token20] = ACTIONS(1491), + [aux_sym_cmd_identifier_token21] = ACTIONS(1491), + [aux_sym_cmd_identifier_token22] = ACTIONS(1491), + [aux_sym_cmd_identifier_token23] = ACTIONS(1491), + [aux_sym_cmd_identifier_token24] = ACTIONS(1491), + [aux_sym_cmd_identifier_token25] = ACTIONS(1491), + [aux_sym_cmd_identifier_token26] = ACTIONS(1491), + [aux_sym_cmd_identifier_token27] = ACTIONS(1491), + [aux_sym_cmd_identifier_token28] = ACTIONS(1491), + [aux_sym_cmd_identifier_token29] = ACTIONS(1491), + [aux_sym_cmd_identifier_token30] = ACTIONS(1491), + [aux_sym_cmd_identifier_token31] = ACTIONS(1491), + [aux_sym_cmd_identifier_token32] = ACTIONS(1491), + [aux_sym_cmd_identifier_token33] = ACTIONS(1491), + [aux_sym_cmd_identifier_token34] = ACTIONS(1489), + [aux_sym_cmd_identifier_token35] = ACTIONS(1491), + [aux_sym_cmd_identifier_token36] = ACTIONS(1491), + [aux_sym_cmd_identifier_token37] = ACTIONS(1491), + [aux_sym_cmd_identifier_token38] = ACTIONS(1489), + [aux_sym_cmd_identifier_token39] = ACTIONS(1491), + [aux_sym_cmd_identifier_token40] = ACTIONS(1491), [sym__newline] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_def] = ACTIONS(1489), + [anon_sym_export_DASHenv] = ACTIONS(1489), + [anon_sym_extern] = ACTIONS(1489), + [anon_sym_module] = ACTIONS(1489), + [anon_sym_use] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_DOLLAR] = ACTIONS(1489), + [anon_sym_error] = ACTIONS(1489), + [anon_sym_DASH2] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_loop] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_match] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1491), + [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_try] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_source] = ACTIONS(1489), + [anon_sym_source_DASHenv] = ACTIONS(1489), + [anon_sym_register] = ACTIONS(1489), + [anon_sym_hide] = ACTIONS(1489), + [anon_sym_hide_DASHenv] = ACTIONS(1489), + [anon_sym_overlay] = ACTIONS(1489), + [anon_sym_where] = ACTIONS(1491), + [aux_sym_expr_unary_token1] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1491), + [anon_sym_DOT_DOT_LT] = ACTIONS(1491), + [anon_sym_null] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [aux_sym__val_number_decimal_token1] = ACTIONS(1489), + [aux_sym__val_number_decimal_token2] = ACTIONS(1491), + [aux_sym__val_number_decimal_token3] = ACTIONS(1491), + [aux_sym__val_number_decimal_token4] = ACTIONS(1491), + [aux_sym__val_number_token1] = ACTIONS(1491), + [aux_sym__val_number_token2] = ACTIONS(1491), + [aux_sym__val_number_token3] = ACTIONS(1491), + [aux_sym__val_number_token4] = ACTIONS(1489), + [aux_sym__val_number_token5] = ACTIONS(1489), + [aux_sym__val_number_token6] = ACTIONS(1489), + [anon_sym_0b] = ACTIONS(1489), + [anon_sym_0o] = ACTIONS(1489), + [anon_sym_0x] = ACTIONS(1489), + [sym_val_date] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(1491), + [sym__str_single_quotes] = ACTIONS(1491), + [sym__str_back_ticks] = ACTIONS(1491), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1491), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1491), + [aux_sym_env_var_token1] = ACTIONS(1489), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1491), + }, + [253] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5105), + [sym_block] = STATE(5107), + [sym__expression_parenthesized] = STATE(5107), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1245), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5107), + [sym_comment] = STATE(253), + [aux_sym_shebang_repeat1] = STATE(254), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -103576,10 +103787,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_decimal_token2] = ACTIONS(1509), - [aux_sym__val_number_decimal_token3] = ACTIONS(1511), - [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -103599,40 +103810,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [255] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_block] = STATE(5092), - [sym__expression_parenthesized] = STATE(5092), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5092), - [sym_comment] = STATE(255), - [aux_sym_shebang_repeat1] = STATE(256), + [254] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5066), + [sym_block] = STATE(5177), + [sym__expression_parenthesized] = STATE(5177), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1245), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5177), + [sym_comment] = STATE(254), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -103673,13 +103884,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -103687,10 +103898,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_decimal_token2] = ACTIONS(1509), - [aux_sym__val_number_decimal_token3] = ACTIONS(1511), - [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -103710,40 +103921,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [256] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5093), - [sym_block] = STATE(5094), - [sym__expression_parenthesized] = STATE(5094), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5094), - [sym_comment] = STATE(256), - [aux_sym_shebang_repeat1] = STATE(1184), + [255] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5066), + [sym_block] = STATE(5177), + [sym__expression_parenthesized] = STATE(5177), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1245), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5177), + [sym_comment] = STATE(255), + [aux_sym_shebang_repeat1] = STATE(258), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -103784,13 +103995,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -103798,10 +104009,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_decimal_token2] = ACTIONS(1509), - [aux_sym__val_number_decimal_token3] = ACTIONS(1511), - [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -103821,40 +104032,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [257] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5138), - [sym_block] = STATE(5140), - [sym__expression_parenthesized] = STATE(5140), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1207), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5140), - [sym_comment] = STATE(257), - [aux_sym_shebang_repeat1] = STATE(1184), + [256] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5154), + [sym_block] = STATE(5155), + [sym__expression_parenthesized] = STATE(5155), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1245), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5155), + [sym_comment] = STATE(256), + [aux_sym_shebang_repeat1] = STATE(260), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -103895,13 +104106,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -103932,40 +104143,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [258] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5138), - [sym_block] = STATE(5140), - [sym__expression_parenthesized] = STATE(5140), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1207), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5140), - [sym_comment] = STATE(258), - [aux_sym_shebang_repeat1] = STATE(261), + [257] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5007), + [sym_block] = STATE(5009), + [sym__expression_parenthesized] = STATE(5009), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1245), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5009), + [sym_comment] = STATE(257), + [aux_sym_shebang_repeat1] = STATE(262), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -104006,13 +104217,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -104043,40 +104254,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [259] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5141), - [sym_block] = STATE(5152), - [sym__expression_parenthesized] = STATE(5152), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1207), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5152), - [sym_comment] = STATE(259), - [aux_sym_shebang_repeat1] = STATE(263), + [258] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5118), + [sym_block] = STATE(5106), + [sym__expression_parenthesized] = STATE(5106), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1245), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5106), + [sym_comment] = STATE(258), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -104117,13 +104328,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -104154,40 +104365,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [260] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5160), - [sym_block] = STATE(5161), - [sym__expression_parenthesized] = STATE(5161), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1207), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5161), - [sym_comment] = STATE(260), - [aux_sym_shebang_repeat1] = STATE(266), + [259] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5118), + [sym_block] = STATE(5106), + [sym__expression_parenthesized] = STATE(5106), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1245), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5106), + [sym_comment] = STATE(259), + [aux_sym_shebang_repeat1] = STATE(265), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -104228,13 +104439,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -104265,40 +104476,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [261] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5042), - [sym_block] = STATE(5043), - [sym__expression_parenthesized] = STATE(5043), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1207), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5043), - [sym_comment] = STATE(261), - [aux_sym_shebang_repeat1] = STATE(1184), + [260] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5044), + [sym_block] = STATE(5015), + [sym__expression_parenthesized] = STATE(5015), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1245), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5015), + [sym_comment] = STATE(260), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -104339,13 +104550,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -104376,40 +104587,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [262] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5042), - [sym_block] = STATE(5043), - [sym__expression_parenthesized] = STATE(5043), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1207), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5043), - [sym_comment] = STATE(262), - [aux_sym_shebang_repeat1] = STATE(291), + [261] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5044), + [sym_block] = STATE(5015), + [sym__expression_parenthesized] = STATE(5015), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1245), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5015), + [sym_comment] = STATE(261), + [aux_sym_shebang_repeat1] = STATE(266), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -104450,13 +104661,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -104487,40 +104698,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [263] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5044), - [sym_block] = STATE(5045), - [sym__expression_parenthesized] = STATE(5045), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1207), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5045), - [sym_comment] = STATE(263), - [aux_sym_shebang_repeat1] = STATE(1184), + [262] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5047), + [sym_block] = STATE(5038), + [sym__expression_parenthesized] = STATE(5038), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1245), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5038), + [sym_comment] = STATE(262), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -104561,13 +104772,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -104598,40 +104809,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [264] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5044), - [sym_block] = STATE(5045), - [sym__expression_parenthesized] = STATE(5045), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1207), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5045), - [sym_comment] = STATE(264), - [aux_sym_shebang_repeat1] = STATE(292), + [263] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5047), + [sym_block] = STATE(5038), + [sym__expression_parenthesized] = STATE(5038), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1245), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5038), + [sym_comment] = STATE(263), + [aux_sym_shebang_repeat1] = STATE(306), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -104672,13 +104883,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -104709,40 +104920,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [265] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5001), - [sym_block] = STATE(5004), - [sym__expression_parenthesized] = STATE(5004), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1232), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5004), - [sym_comment] = STATE(265), - [aux_sym_shebang_repeat1] = STATE(306), + [264] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5048), + [sym_block] = STATE(5023), + [sym__expression_parenthesized] = STATE(5023), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1245), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5023), + [sym_comment] = STATE(264), + [aux_sym_shebang_repeat1] = STATE(269), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -104783,124 +104994,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [266] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5046), - [sym_block] = STATE(5048), - [sym__expression_parenthesized] = STATE(5048), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1207), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5048), - [sym_comment] = STATE(266), - [aux_sym_shebang_repeat1] = STATE(1184), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -104931,40 +105031,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [267] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5138), - [sym_block] = STATE(5140), - [sym__expression_parenthesized] = STATE(5140), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1232), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5140), - [sym_comment] = STATE(267), - [aux_sym_shebang_repeat1] = STATE(270), + [265] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5120), + [sym_block] = STATE(5131), + [sym__expression_parenthesized] = STATE(5131), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1245), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5131), + [sym_comment] = STATE(265), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -105005,13 +105105,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -105019,10 +105119,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -105042,40 +105142,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [268] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5141), - [sym_block] = STATE(5152), - [sym__expression_parenthesized] = STATE(5152), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1232), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5152), - [sym_comment] = STATE(268), - [aux_sym_shebang_repeat1] = STATE(272), + [266] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5149), + [sym_block] = STATE(5026), + [sym__expression_parenthesized] = STATE(5026), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1245), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5026), + [sym_comment] = STATE(266), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -105116,13 +105216,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -105130,10 +105230,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -105153,40 +105253,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [269] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5160), - [sym_block] = STATE(5161), - [sym__expression_parenthesized] = STATE(5161), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1232), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5161), - [sym_comment] = STATE(269), - [aux_sym_shebang_repeat1] = STATE(274), + [267] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5149), + [sym_block] = STATE(5026), + [sym__expression_parenthesized] = STATE(5026), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1245), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5026), + [sym_comment] = STATE(267), + [aux_sym_shebang_repeat1] = STATE(271), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -105227,13 +105327,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -105241,10 +105341,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -105264,40 +105364,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [270] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5042), - [sym_block] = STATE(5043), - [sym__expression_parenthesized] = STATE(5043), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1232), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5043), - [sym_comment] = STATE(270), - [aux_sym_shebang_repeat1] = STATE(1184), + [268] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5057), + [sym_block] = STATE(5063), + [sym__expression_parenthesized] = STATE(5063), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1245), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5063), + [sym_comment] = STATE(268), + [aux_sym_shebang_repeat1] = STATE(272), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -105338,13 +105438,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -105352,10 +105452,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -105375,40 +105475,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [271] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5042), - [sym_block] = STATE(5043), - [sym__expression_parenthesized] = STATE(5043), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1232), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5043), - [sym_comment] = STATE(271), - [aux_sym_shebang_repeat1] = STATE(277), + [269] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5095), + [sym_block] = STATE(5097), + [sym__expression_parenthesized] = STATE(5097), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1245), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5097), + [sym_comment] = STATE(269), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -105449,13 +105549,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -105463,10 +105563,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -105486,40 +105586,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [272] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5044), - [sym_block] = STATE(5045), - [sym__expression_parenthesized] = STATE(5045), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1232), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5045), - [sym_comment] = STATE(272), - [aux_sym_shebang_repeat1] = STATE(1184), + [270] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5095), + [sym_block] = STATE(5097), + [sym__expression_parenthesized] = STATE(5097), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1245), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5097), + [sym_comment] = STATE(270), + [aux_sym_shebang_repeat1] = STATE(273), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -105560,13 +105660,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -105574,10 +105674,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -105597,40 +105697,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [273] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5044), - [sym_block] = STATE(5045), - [sym__expression_parenthesized] = STATE(5045), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1232), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5045), - [sym_comment] = STATE(273), - [aux_sym_shebang_repeat1] = STATE(278), + [271] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5019), + [sym_block] = STATE(5173), + [sym__expression_parenthesized] = STATE(5173), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1245), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5173), + [sym_comment] = STATE(271), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -105671,13 +105771,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -105685,10 +105785,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -105708,40 +105808,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [274] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5046), - [sym_block] = STATE(5048), - [sym__expression_parenthesized] = STATE(5048), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1232), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5048), - [sym_comment] = STATE(274), - [aux_sym_shebang_repeat1] = STATE(1184), + [272] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5029), + [sym_block] = STATE(5140), + [sym__expression_parenthesized] = STATE(5140), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1245), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5140), + [sym_comment] = STATE(272), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -105782,13 +105882,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -105796,10 +105896,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -105819,40 +105919,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [275] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5046), - [sym_block] = STATE(5048), - [sym__expression_parenthesized] = STATE(5048), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1232), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5048), - [sym_comment] = STATE(275), - [aux_sym_shebang_repeat1] = STATE(280), + [273] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_block] = STATE(5051), + [sym__expression_parenthesized] = STATE(5051), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1245), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5051), + [sym_comment] = STATE(273), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -105893,13 +105993,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -105907,10 +106007,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -105930,40 +106030,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [276] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5049), - [sym_block] = STATE(5050), - [sym__expression_parenthesized] = STATE(5050), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1232), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5050), - [sym_comment] = STATE(276), - [aux_sym_shebang_repeat1] = STATE(282), + [274] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_block] = STATE(5051), + [sym__expression_parenthesized] = STATE(5051), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1245), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5051), + [sym_comment] = STATE(274), + [aux_sym_shebang_repeat1] = STATE(275), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -106004,13 +106104,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -106018,10 +106118,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -106041,40 +106141,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [277] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5078), - [sym_block] = STATE(5079), - [sym__expression_parenthesized] = STATE(5079), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1232), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5079), - [sym_comment] = STATE(277), - [aux_sym_shebang_repeat1] = STATE(1184), + [275] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5137), + [sym_block] = STATE(5006), + [sym__expression_parenthesized] = STATE(5006), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1245), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5006), + [sym_comment] = STATE(275), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -106115,13 +106215,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -106129,10 +106229,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -106152,40 +106252,595 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, + [276] = { + [sym_comment] = STATE(276), + [ts_builtin_sym_end] = ACTIONS(1292), + [anon_sym_POUND_BANG] = ACTIONS(1288), + [anon_sym_export] = ACTIONS(1484), + [anon_sym_alias] = ACTIONS(1484), + [anon_sym_let] = ACTIONS(1484), + [anon_sym_let_DASHenv] = ACTIONS(1484), + [anon_sym_mut] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [aux_sym_cmd_identifier_token1] = ACTIONS(1484), + [aux_sym_cmd_identifier_token2] = ACTIONS(1292), + [aux_sym_cmd_identifier_token3] = ACTIONS(1292), + [aux_sym_cmd_identifier_token4] = ACTIONS(1292), + [aux_sym_cmd_identifier_token5] = ACTIONS(1292), + [aux_sym_cmd_identifier_token6] = ACTIONS(1292), + [aux_sym_cmd_identifier_token7] = ACTIONS(1292), + [aux_sym_cmd_identifier_token8] = ACTIONS(1484), + [aux_sym_cmd_identifier_token9] = ACTIONS(1484), + [aux_sym_cmd_identifier_token10] = ACTIONS(1292), + [aux_sym_cmd_identifier_token11] = ACTIONS(1292), + [aux_sym_cmd_identifier_token12] = ACTIONS(1484), + [aux_sym_cmd_identifier_token13] = ACTIONS(1484), + [aux_sym_cmd_identifier_token14] = ACTIONS(1484), + [aux_sym_cmd_identifier_token15] = ACTIONS(1484), + [aux_sym_cmd_identifier_token16] = ACTIONS(1292), + [aux_sym_cmd_identifier_token17] = ACTIONS(1292), + [aux_sym_cmd_identifier_token18] = ACTIONS(1292), + [aux_sym_cmd_identifier_token19] = ACTIONS(1292), + [aux_sym_cmd_identifier_token20] = ACTIONS(1292), + [aux_sym_cmd_identifier_token21] = ACTIONS(1292), + [aux_sym_cmd_identifier_token22] = ACTIONS(1292), + [aux_sym_cmd_identifier_token23] = ACTIONS(1292), + [aux_sym_cmd_identifier_token24] = ACTIONS(1292), + [aux_sym_cmd_identifier_token25] = ACTIONS(1292), + [aux_sym_cmd_identifier_token26] = ACTIONS(1292), + [aux_sym_cmd_identifier_token27] = ACTIONS(1292), + [aux_sym_cmd_identifier_token28] = ACTIONS(1292), + [aux_sym_cmd_identifier_token29] = ACTIONS(1292), + [aux_sym_cmd_identifier_token30] = ACTIONS(1292), + [aux_sym_cmd_identifier_token31] = ACTIONS(1292), + [aux_sym_cmd_identifier_token32] = ACTIONS(1292), + [aux_sym_cmd_identifier_token33] = ACTIONS(1292), + [aux_sym_cmd_identifier_token34] = ACTIONS(1484), + [aux_sym_cmd_identifier_token35] = ACTIONS(1292), + [aux_sym_cmd_identifier_token36] = ACTIONS(1292), + [aux_sym_cmd_identifier_token37] = ACTIONS(1292), + [aux_sym_cmd_identifier_token38] = ACTIONS(1484), + [aux_sym_cmd_identifier_token39] = ACTIONS(1292), + [aux_sym_cmd_identifier_token40] = ACTIONS(1292), + [sym__newline] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym_def] = ACTIONS(1484), + [anon_sym_export_DASHenv] = ACTIONS(1484), + [anon_sym_extern] = ACTIONS(1484), + [anon_sym_module] = ACTIONS(1484), + [anon_sym_use] = ACTIONS(1484), + [anon_sym_LBRACK] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_error] = ACTIONS(1484), + [anon_sym_DASH2] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), + [anon_sym_loop] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_do] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_match] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_try] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_source] = ACTIONS(1484), + [anon_sym_source_DASHenv] = ACTIONS(1484), + [anon_sym_register] = ACTIONS(1484), + [anon_sym_hide] = ACTIONS(1484), + [anon_sym_hide_DASHenv] = ACTIONS(1484), + [anon_sym_overlay] = ACTIONS(1484), + [anon_sym_where] = ACTIONS(1292), + [aux_sym_expr_unary_token1] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1292), + [anon_sym_DOT_DOT_LT] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1484), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [aux_sym__val_number_decimal_token1] = ACTIONS(1484), + [aux_sym__val_number_decimal_token2] = ACTIONS(1292), + [aux_sym__val_number_decimal_token3] = ACTIONS(1292), + [aux_sym__val_number_decimal_token4] = ACTIONS(1292), + [aux_sym__val_number_token1] = ACTIONS(1292), + [aux_sym__val_number_token2] = ACTIONS(1292), + [aux_sym__val_number_token3] = ACTIONS(1292), + [aux_sym__val_number_token4] = ACTIONS(1484), + [aux_sym__val_number_token5] = ACTIONS(1484), + [aux_sym__val_number_token6] = ACTIONS(1484), + [anon_sym_0b] = ACTIONS(1484), + [anon_sym_0o] = ACTIONS(1484), + [anon_sym_0x] = ACTIONS(1484), + [sym_val_date] = ACTIONS(1292), + [anon_sym_DQUOTE] = ACTIONS(1292), + [sym__str_single_quotes] = ACTIONS(1292), + [sym__str_back_ticks] = ACTIONS(1292), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1292), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1292), + [aux_sym_env_var_token1] = ACTIONS(1484), + [anon_sym_CARET] = ACTIONS(1292), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1292), + }, + [277] = { + [sym_comment] = STATE(277), + [aux_sym__block_body_repeat1] = STATE(228), + [ts_builtin_sym_end] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1453), + [anon_sym_alias] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1453), + [anon_sym_let_DASHenv] = ACTIONS(1453), + [anon_sym_mut] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(1453), + [aux_sym_cmd_identifier_token1] = ACTIONS(1453), + [aux_sym_cmd_identifier_token2] = ACTIONS(1455), + [aux_sym_cmd_identifier_token3] = ACTIONS(1455), + [aux_sym_cmd_identifier_token4] = ACTIONS(1455), + [aux_sym_cmd_identifier_token5] = ACTIONS(1455), + [aux_sym_cmd_identifier_token6] = ACTIONS(1455), + [aux_sym_cmd_identifier_token7] = ACTIONS(1455), + [aux_sym_cmd_identifier_token8] = ACTIONS(1453), + [aux_sym_cmd_identifier_token9] = ACTIONS(1453), + [aux_sym_cmd_identifier_token10] = ACTIONS(1455), + [aux_sym_cmd_identifier_token11] = ACTIONS(1455), + [aux_sym_cmd_identifier_token12] = ACTIONS(1453), + [aux_sym_cmd_identifier_token13] = ACTIONS(1453), + [aux_sym_cmd_identifier_token14] = ACTIONS(1453), + [aux_sym_cmd_identifier_token15] = ACTIONS(1453), + [aux_sym_cmd_identifier_token16] = ACTIONS(1455), + [aux_sym_cmd_identifier_token17] = ACTIONS(1455), + [aux_sym_cmd_identifier_token18] = ACTIONS(1455), + [aux_sym_cmd_identifier_token19] = ACTIONS(1455), + [aux_sym_cmd_identifier_token20] = ACTIONS(1455), + [aux_sym_cmd_identifier_token21] = ACTIONS(1455), + [aux_sym_cmd_identifier_token22] = ACTIONS(1455), + [aux_sym_cmd_identifier_token23] = ACTIONS(1455), + [aux_sym_cmd_identifier_token24] = ACTIONS(1455), + [aux_sym_cmd_identifier_token25] = ACTIONS(1455), + [aux_sym_cmd_identifier_token26] = ACTIONS(1455), + [aux_sym_cmd_identifier_token27] = ACTIONS(1455), + [aux_sym_cmd_identifier_token28] = ACTIONS(1455), + [aux_sym_cmd_identifier_token29] = ACTIONS(1455), + [aux_sym_cmd_identifier_token30] = ACTIONS(1455), + [aux_sym_cmd_identifier_token31] = ACTIONS(1455), + [aux_sym_cmd_identifier_token32] = ACTIONS(1455), + [aux_sym_cmd_identifier_token33] = ACTIONS(1455), + [aux_sym_cmd_identifier_token34] = ACTIONS(1453), + [aux_sym_cmd_identifier_token35] = ACTIONS(1455), + [aux_sym_cmd_identifier_token36] = ACTIONS(1455), + [aux_sym_cmd_identifier_token37] = ACTIONS(1455), + [aux_sym_cmd_identifier_token38] = ACTIONS(1453), + [aux_sym_cmd_identifier_token39] = ACTIONS(1455), + [aux_sym_cmd_identifier_token40] = ACTIONS(1455), + [sym__newline] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(25), + [anon_sym_def] = ACTIONS(1453), + [anon_sym_export_DASHenv] = ACTIONS(1453), + [anon_sym_extern] = ACTIONS(1453), + [anon_sym_module] = ACTIONS(1453), + [anon_sym_use] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_DOLLAR] = ACTIONS(1453), + [anon_sym_error] = ACTIONS(1453), + [anon_sym_DASH2] = ACTIONS(1453), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_loop] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_do] = ACTIONS(1453), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_try] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_source] = ACTIONS(1453), + [anon_sym_source_DASHenv] = ACTIONS(1453), + [anon_sym_register] = ACTIONS(1453), + [anon_sym_hide] = ACTIONS(1453), + [anon_sym_hide_DASHenv] = ACTIONS(1453), + [anon_sym_overlay] = ACTIONS(1453), + [anon_sym_where] = ACTIONS(1455), + [aux_sym_expr_unary_token1] = ACTIONS(1455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), + [anon_sym_DOT_DOT_LT] = ACTIONS(1455), + [anon_sym_null] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [aux_sym__val_number_decimal_token1] = ACTIONS(1453), + [aux_sym__val_number_decimal_token2] = ACTIONS(1455), + [aux_sym__val_number_decimal_token3] = ACTIONS(1455), + [aux_sym__val_number_decimal_token4] = ACTIONS(1455), + [aux_sym__val_number_token1] = ACTIONS(1455), + [aux_sym__val_number_token2] = ACTIONS(1455), + [aux_sym__val_number_token3] = ACTIONS(1455), + [aux_sym__val_number_token4] = ACTIONS(1453), + [aux_sym__val_number_token5] = ACTIONS(1453), + [aux_sym__val_number_token6] = ACTIONS(1453), + [anon_sym_0b] = ACTIONS(1453), + [anon_sym_0o] = ACTIONS(1453), + [anon_sym_0x] = ACTIONS(1453), + [sym_val_date] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym__str_single_quotes] = ACTIONS(1455), + [sym__str_back_ticks] = ACTIONS(1455), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1455), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1455), + [aux_sym_env_var_token1] = ACTIONS(1453), + [anon_sym_CARET] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1455), + }, [278] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5080), - [sym_block] = STATE(5081), - [sym__expression_parenthesized] = STATE(5081), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1232), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5081), [sym_comment] = STATE(278), - [aux_sym_shebang_repeat1] = STATE(1184), + [anon_sym_export] = ACTIONS(1282), + [anon_sym_alias] = ACTIONS(1282), + [anon_sym_let] = ACTIONS(1282), + [anon_sym_let_DASHenv] = ACTIONS(1282), + [anon_sym_mut] = ACTIONS(1282), + [anon_sym_const] = ACTIONS(1282), + [aux_sym_cmd_identifier_token1] = ACTIONS(1282), + [aux_sym_cmd_identifier_token2] = ACTIONS(1285), + [aux_sym_cmd_identifier_token3] = ACTIONS(1285), + [aux_sym_cmd_identifier_token4] = ACTIONS(1285), + [aux_sym_cmd_identifier_token5] = ACTIONS(1285), + [aux_sym_cmd_identifier_token6] = ACTIONS(1285), + [aux_sym_cmd_identifier_token7] = ACTIONS(1285), + [aux_sym_cmd_identifier_token8] = ACTIONS(1282), + [aux_sym_cmd_identifier_token9] = ACTIONS(1282), + [aux_sym_cmd_identifier_token10] = ACTIONS(1285), + [aux_sym_cmd_identifier_token11] = ACTIONS(1285), + [aux_sym_cmd_identifier_token12] = ACTIONS(1282), + [aux_sym_cmd_identifier_token13] = ACTIONS(1282), + [aux_sym_cmd_identifier_token14] = ACTIONS(1282), + [aux_sym_cmd_identifier_token15] = ACTIONS(1282), + [aux_sym_cmd_identifier_token16] = ACTIONS(1285), + [aux_sym_cmd_identifier_token17] = ACTIONS(1285), + [aux_sym_cmd_identifier_token18] = ACTIONS(1285), + [aux_sym_cmd_identifier_token19] = ACTIONS(1285), + [aux_sym_cmd_identifier_token20] = ACTIONS(1285), + [aux_sym_cmd_identifier_token21] = ACTIONS(1285), + [aux_sym_cmd_identifier_token22] = ACTIONS(1285), + [aux_sym_cmd_identifier_token23] = ACTIONS(1285), + [aux_sym_cmd_identifier_token24] = ACTIONS(1285), + [aux_sym_cmd_identifier_token25] = ACTIONS(1285), + [aux_sym_cmd_identifier_token26] = ACTIONS(1285), + [aux_sym_cmd_identifier_token27] = ACTIONS(1285), + [aux_sym_cmd_identifier_token28] = ACTIONS(1285), + [aux_sym_cmd_identifier_token29] = ACTIONS(1285), + [aux_sym_cmd_identifier_token30] = ACTIONS(1285), + [aux_sym_cmd_identifier_token31] = ACTIONS(1285), + [aux_sym_cmd_identifier_token32] = ACTIONS(1285), + [aux_sym_cmd_identifier_token33] = ACTIONS(1285), + [aux_sym_cmd_identifier_token34] = ACTIONS(1282), + [aux_sym_cmd_identifier_token35] = ACTIONS(1285), + [aux_sym_cmd_identifier_token36] = ACTIONS(1285), + [aux_sym_cmd_identifier_token37] = ACTIONS(1285), + [aux_sym_cmd_identifier_token38] = ACTIONS(1282), + [aux_sym_cmd_identifier_token39] = ACTIONS(1285), + [aux_sym_cmd_identifier_token40] = ACTIONS(1285), + [sym__newline] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_def] = ACTIONS(1282), + [anon_sym_export_DASHenv] = ACTIONS(1282), + [anon_sym_extern] = ACTIONS(1282), + [anon_sym_module] = ACTIONS(1282), + [anon_sym_use] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1282), + [anon_sym_error] = ACTIONS(1282), + [anon_sym_DASH2] = ACTIONS(1282), + [anon_sym_break] = ACTIONS(1282), + [anon_sym_continue] = ACTIONS(1282), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_loop] = ACTIONS(1282), + [anon_sym_while] = ACTIONS(1282), + [anon_sym_do] = ACTIONS(1282), + [anon_sym_if] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1282), + [anon_sym_try] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(1282), + [anon_sym_source] = ACTIONS(1282), + [anon_sym_source_DASHenv] = ACTIONS(1282), + [anon_sym_register] = ACTIONS(1282), + [anon_sym_hide] = ACTIONS(1282), + [anon_sym_hide_DASHenv] = ACTIONS(1282), + [anon_sym_overlay] = ACTIONS(1282), + [anon_sym_where] = ACTIONS(1285), + [aux_sym_expr_unary_token1] = ACTIONS(1285), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_DOT_DOT_LT] = ACTIONS(1285), + [anon_sym_null] = ACTIONS(1282), + [anon_sym_true] = ACTIONS(1282), + [anon_sym_false] = ACTIONS(1282), + [aux_sym__val_number_decimal_token1] = ACTIONS(1282), + [aux_sym__val_number_decimal_token2] = ACTIONS(1285), + [aux_sym__val_number_decimal_token3] = ACTIONS(1285), + [aux_sym__val_number_decimal_token4] = ACTIONS(1285), + [aux_sym__val_number_token1] = ACTIONS(1285), + [aux_sym__val_number_token2] = ACTIONS(1285), + [aux_sym__val_number_token3] = ACTIONS(1285), + [aux_sym__val_number_token4] = ACTIONS(1282), + [aux_sym__val_number_token5] = ACTIONS(1282), + [aux_sym__val_number_token6] = ACTIONS(1282), + [anon_sym_0b] = ACTIONS(1282), + [anon_sym_0o] = ACTIONS(1282), + [anon_sym_0x] = ACTIONS(1282), + [sym_val_date] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym__str_single_quotes] = ACTIONS(1285), + [sym__str_back_ticks] = ACTIONS(1285), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1285), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1285), + [aux_sym_env_var_token1] = ACTIONS(1282), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1285), + }, + [279] = { + [sym_comment] = STATE(279), + [aux_sym_shebang_repeat1] = STATE(6852), + [aux_sym__parenthesized_body_repeat1] = STATE(279), + [anon_sym_export] = ACTIONS(1505), + [anon_sym_alias] = ACTIONS(1505), + [anon_sym_let] = ACTIONS(1505), + [anon_sym_let_DASHenv] = ACTIONS(1505), + [anon_sym_mut] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [aux_sym_cmd_identifier_token1] = ACTIONS(1505), + [aux_sym_cmd_identifier_token2] = ACTIONS(1507), + [aux_sym_cmd_identifier_token3] = ACTIONS(1507), + [aux_sym_cmd_identifier_token4] = ACTIONS(1507), + [aux_sym_cmd_identifier_token5] = ACTIONS(1507), + [aux_sym_cmd_identifier_token6] = ACTIONS(1507), + [aux_sym_cmd_identifier_token7] = ACTIONS(1507), + [aux_sym_cmd_identifier_token8] = ACTIONS(1505), + [aux_sym_cmd_identifier_token9] = ACTIONS(1505), + [aux_sym_cmd_identifier_token10] = ACTIONS(1507), + [aux_sym_cmd_identifier_token11] = ACTIONS(1507), + [aux_sym_cmd_identifier_token12] = ACTIONS(1505), + [aux_sym_cmd_identifier_token13] = ACTIONS(1505), + [aux_sym_cmd_identifier_token14] = ACTIONS(1505), + [aux_sym_cmd_identifier_token15] = ACTIONS(1505), + [aux_sym_cmd_identifier_token16] = ACTIONS(1507), + [aux_sym_cmd_identifier_token17] = ACTIONS(1507), + [aux_sym_cmd_identifier_token18] = ACTIONS(1507), + [aux_sym_cmd_identifier_token19] = ACTIONS(1507), + [aux_sym_cmd_identifier_token20] = ACTIONS(1507), + [aux_sym_cmd_identifier_token21] = ACTIONS(1507), + [aux_sym_cmd_identifier_token22] = ACTIONS(1507), + [aux_sym_cmd_identifier_token23] = ACTIONS(1507), + [aux_sym_cmd_identifier_token24] = ACTIONS(1507), + [aux_sym_cmd_identifier_token25] = ACTIONS(1507), + [aux_sym_cmd_identifier_token26] = ACTIONS(1507), + [aux_sym_cmd_identifier_token27] = ACTIONS(1507), + [aux_sym_cmd_identifier_token28] = ACTIONS(1507), + [aux_sym_cmd_identifier_token29] = ACTIONS(1507), + [aux_sym_cmd_identifier_token30] = ACTIONS(1507), + [aux_sym_cmd_identifier_token31] = ACTIONS(1507), + [aux_sym_cmd_identifier_token32] = ACTIONS(1507), + [aux_sym_cmd_identifier_token33] = ACTIONS(1507), + [aux_sym_cmd_identifier_token34] = ACTIONS(1505), + [aux_sym_cmd_identifier_token35] = ACTIONS(1507), + [aux_sym_cmd_identifier_token36] = ACTIONS(1507), + [aux_sym_cmd_identifier_token37] = ACTIONS(1507), + [aux_sym_cmd_identifier_token38] = ACTIONS(1505), + [aux_sym_cmd_identifier_token39] = ACTIONS(1507), + [aux_sym_cmd_identifier_token40] = ACTIONS(1507), + [sym__newline] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_def] = ACTIONS(1505), + [anon_sym_export_DASHenv] = ACTIONS(1505), + [anon_sym_extern] = ACTIONS(1505), + [anon_sym_module] = ACTIONS(1505), + [anon_sym_use] = ACTIONS(1505), + [anon_sym_LBRACK] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_DOLLAR] = ACTIONS(1505), + [anon_sym_error] = ACTIONS(1505), + [anon_sym_DASH2] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_loop] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_match] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1505), + [anon_sym_try] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_source] = ACTIONS(1505), + [anon_sym_source_DASHenv] = ACTIONS(1505), + [anon_sym_register] = ACTIONS(1505), + [anon_sym_hide] = ACTIONS(1505), + [anon_sym_hide_DASHenv] = ACTIONS(1505), + [anon_sym_overlay] = ACTIONS(1505), + [anon_sym_where] = ACTIONS(1507), + [aux_sym_expr_unary_token1] = ACTIONS(1507), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1507), + [anon_sym_DOT_DOT_LT] = ACTIONS(1507), + [anon_sym_null] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [aux_sym__val_number_decimal_token1] = ACTIONS(1505), + [aux_sym__val_number_decimal_token2] = ACTIONS(1507), + [aux_sym__val_number_decimal_token3] = ACTIONS(1507), + [aux_sym__val_number_decimal_token4] = ACTIONS(1507), + [aux_sym__val_number_token1] = ACTIONS(1507), + [aux_sym__val_number_token2] = ACTIONS(1507), + [aux_sym__val_number_token3] = ACTIONS(1507), + [aux_sym__val_number_token4] = ACTIONS(1505), + [aux_sym__val_number_token5] = ACTIONS(1505), + [aux_sym__val_number_token6] = ACTIONS(1505), + [anon_sym_0b] = ACTIONS(1505), + [anon_sym_0o] = ACTIONS(1505), + [anon_sym_0x] = ACTIONS(1505), + [sym_val_date] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1507), + [sym__str_single_quotes] = ACTIONS(1507), + [sym__str_back_ticks] = ACTIONS(1507), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1507), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1507), + [aux_sym_env_var_token1] = ACTIONS(1505), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1507), + }, + [280] = { + [sym_comment] = STATE(280), + [aux_sym__block_body_repeat1] = STATE(228), + [ts_builtin_sym_end] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1453), + [anon_sym_alias] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1453), + [anon_sym_let_DASHenv] = ACTIONS(1453), + [anon_sym_mut] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(1453), + [aux_sym_cmd_identifier_token1] = ACTIONS(1453), + [aux_sym_cmd_identifier_token2] = ACTIONS(1455), + [aux_sym_cmd_identifier_token3] = ACTIONS(1455), + [aux_sym_cmd_identifier_token4] = ACTIONS(1455), + [aux_sym_cmd_identifier_token5] = ACTIONS(1455), + [aux_sym_cmd_identifier_token6] = ACTIONS(1455), + [aux_sym_cmd_identifier_token7] = ACTIONS(1455), + [aux_sym_cmd_identifier_token8] = ACTIONS(1453), + [aux_sym_cmd_identifier_token9] = ACTIONS(1453), + [aux_sym_cmd_identifier_token10] = ACTIONS(1455), + [aux_sym_cmd_identifier_token11] = ACTIONS(1455), + [aux_sym_cmd_identifier_token12] = ACTIONS(1453), + [aux_sym_cmd_identifier_token13] = ACTIONS(1453), + [aux_sym_cmd_identifier_token14] = ACTIONS(1453), + [aux_sym_cmd_identifier_token15] = ACTIONS(1453), + [aux_sym_cmd_identifier_token16] = ACTIONS(1455), + [aux_sym_cmd_identifier_token17] = ACTIONS(1455), + [aux_sym_cmd_identifier_token18] = ACTIONS(1455), + [aux_sym_cmd_identifier_token19] = ACTIONS(1455), + [aux_sym_cmd_identifier_token20] = ACTIONS(1455), + [aux_sym_cmd_identifier_token21] = ACTIONS(1455), + [aux_sym_cmd_identifier_token22] = ACTIONS(1455), + [aux_sym_cmd_identifier_token23] = ACTIONS(1455), + [aux_sym_cmd_identifier_token24] = ACTIONS(1455), + [aux_sym_cmd_identifier_token25] = ACTIONS(1455), + [aux_sym_cmd_identifier_token26] = ACTIONS(1455), + [aux_sym_cmd_identifier_token27] = ACTIONS(1455), + [aux_sym_cmd_identifier_token28] = ACTIONS(1455), + [aux_sym_cmd_identifier_token29] = ACTIONS(1455), + [aux_sym_cmd_identifier_token30] = ACTIONS(1455), + [aux_sym_cmd_identifier_token31] = ACTIONS(1455), + [aux_sym_cmd_identifier_token32] = ACTIONS(1455), + [aux_sym_cmd_identifier_token33] = ACTIONS(1455), + [aux_sym_cmd_identifier_token34] = ACTIONS(1453), + [aux_sym_cmd_identifier_token35] = ACTIONS(1455), + [aux_sym_cmd_identifier_token36] = ACTIONS(1455), + [aux_sym_cmd_identifier_token37] = ACTIONS(1455), + [aux_sym_cmd_identifier_token38] = ACTIONS(1453), + [aux_sym_cmd_identifier_token39] = ACTIONS(1455), + [aux_sym_cmd_identifier_token40] = ACTIONS(1455), + [sym__newline] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(25), + [anon_sym_def] = ACTIONS(1453), + [anon_sym_export_DASHenv] = ACTIONS(1453), + [anon_sym_extern] = ACTIONS(1453), + [anon_sym_module] = ACTIONS(1453), + [anon_sym_use] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_DOLLAR] = ACTIONS(1453), + [anon_sym_error] = ACTIONS(1453), + [anon_sym_DASH2] = ACTIONS(1453), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_loop] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_do] = ACTIONS(1453), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_try] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_source] = ACTIONS(1453), + [anon_sym_source_DASHenv] = ACTIONS(1453), + [anon_sym_register] = ACTIONS(1453), + [anon_sym_hide] = ACTIONS(1453), + [anon_sym_hide_DASHenv] = ACTIONS(1453), + [anon_sym_overlay] = ACTIONS(1453), + [anon_sym_where] = ACTIONS(1455), + [aux_sym_expr_unary_token1] = ACTIONS(1455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), + [anon_sym_DOT_DOT_LT] = ACTIONS(1455), + [anon_sym_null] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [aux_sym__val_number_decimal_token1] = ACTIONS(1453), + [aux_sym__val_number_decimal_token2] = ACTIONS(1455), + [aux_sym__val_number_decimal_token3] = ACTIONS(1455), + [aux_sym__val_number_decimal_token4] = ACTIONS(1455), + [aux_sym__val_number_token1] = ACTIONS(1455), + [aux_sym__val_number_token2] = ACTIONS(1455), + [aux_sym__val_number_token3] = ACTIONS(1455), + [aux_sym__val_number_token4] = ACTIONS(1453), + [aux_sym__val_number_token5] = ACTIONS(1453), + [aux_sym__val_number_token6] = ACTIONS(1453), + [anon_sym_0b] = ACTIONS(1453), + [anon_sym_0o] = ACTIONS(1453), + [anon_sym_0x] = ACTIONS(1453), + [sym_val_date] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym__str_single_quotes] = ACTIONS(1455), + [sym__str_back_ticks] = ACTIONS(1455), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1455), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1455), + [aux_sym_env_var_token1] = ACTIONS(1453), + [anon_sym_CARET] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1455), + }, + [281] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5105), + [sym_block] = STATE(5107), + [sym__expression_parenthesized] = STATE(5107), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1214), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5107), + [sym_comment] = STATE(281), + [aux_sym_shebang_repeat1] = STATE(283), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -106226,13 +106881,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -106263,40 +106918,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [279] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5080), - [sym_block] = STATE(5081), - [sym__expression_parenthesized] = STATE(5081), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1232), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5081), - [sym_comment] = STATE(279), - [aux_sym_shebang_repeat1] = STATE(284), + [282] = { + [sym_comment] = STATE(282), + [aux_sym_shebang_repeat1] = STATE(282), + [anon_sym_export] = ACTIONS(1294), + [anon_sym_alias] = ACTIONS(1294), + [anon_sym_let] = ACTIONS(1294), + [anon_sym_let_DASHenv] = ACTIONS(1294), + [anon_sym_mut] = ACTIONS(1294), + [anon_sym_const] = ACTIONS(1294), + [aux_sym_cmd_identifier_token1] = ACTIONS(1294), + [aux_sym_cmd_identifier_token2] = ACTIONS(1296), + [aux_sym_cmd_identifier_token3] = ACTIONS(1296), + [aux_sym_cmd_identifier_token4] = ACTIONS(1296), + [aux_sym_cmd_identifier_token5] = ACTIONS(1296), + [aux_sym_cmd_identifier_token6] = ACTIONS(1296), + [aux_sym_cmd_identifier_token7] = ACTIONS(1296), + [aux_sym_cmd_identifier_token8] = ACTIONS(1294), + [aux_sym_cmd_identifier_token9] = ACTIONS(1294), + [aux_sym_cmd_identifier_token10] = ACTIONS(1296), + [aux_sym_cmd_identifier_token11] = ACTIONS(1296), + [aux_sym_cmd_identifier_token12] = ACTIONS(1294), + [aux_sym_cmd_identifier_token13] = ACTIONS(1294), + [aux_sym_cmd_identifier_token14] = ACTIONS(1294), + [aux_sym_cmd_identifier_token15] = ACTIONS(1294), + [aux_sym_cmd_identifier_token16] = ACTIONS(1296), + [aux_sym_cmd_identifier_token17] = ACTIONS(1296), + [aux_sym_cmd_identifier_token18] = ACTIONS(1296), + [aux_sym_cmd_identifier_token19] = ACTIONS(1296), + [aux_sym_cmd_identifier_token20] = ACTIONS(1296), + [aux_sym_cmd_identifier_token21] = ACTIONS(1296), + [aux_sym_cmd_identifier_token22] = ACTIONS(1296), + [aux_sym_cmd_identifier_token23] = ACTIONS(1296), + [aux_sym_cmd_identifier_token24] = ACTIONS(1296), + [aux_sym_cmd_identifier_token25] = ACTIONS(1296), + [aux_sym_cmd_identifier_token26] = ACTIONS(1296), + [aux_sym_cmd_identifier_token27] = ACTIONS(1296), + [aux_sym_cmd_identifier_token28] = ACTIONS(1296), + [aux_sym_cmd_identifier_token29] = ACTIONS(1296), + [aux_sym_cmd_identifier_token30] = ACTIONS(1296), + [aux_sym_cmd_identifier_token31] = ACTIONS(1296), + [aux_sym_cmd_identifier_token32] = ACTIONS(1296), + [aux_sym_cmd_identifier_token33] = ACTIONS(1296), + [aux_sym_cmd_identifier_token34] = ACTIONS(1294), + [aux_sym_cmd_identifier_token35] = ACTIONS(1296), + [aux_sym_cmd_identifier_token36] = ACTIONS(1296), + [aux_sym_cmd_identifier_token37] = ACTIONS(1296), + [aux_sym_cmd_identifier_token38] = ACTIONS(1294), + [aux_sym_cmd_identifier_token39] = ACTIONS(1296), + [aux_sym_cmd_identifier_token40] = ACTIONS(1296), + [sym__newline] = ACTIONS(1523), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1296), + [anon_sym_def] = ACTIONS(1294), + [anon_sym_export_DASHenv] = ACTIONS(1294), + [anon_sym_extern] = ACTIONS(1294), + [anon_sym_module] = ACTIONS(1294), + [anon_sym_use] = ACTIONS(1294), + [anon_sym_LBRACK] = ACTIONS(1296), + [anon_sym_LPAREN] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1294), + [anon_sym_error] = ACTIONS(1294), + [anon_sym_DASH2] = ACTIONS(1294), + [anon_sym_break] = ACTIONS(1294), + [anon_sym_continue] = ACTIONS(1294), + [anon_sym_for] = ACTIONS(1294), + [anon_sym_loop] = ACTIONS(1294), + [anon_sym_while] = ACTIONS(1294), + [anon_sym_do] = ACTIONS(1294), + [anon_sym_if] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_DOT_DOT] = ACTIONS(1294), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_return] = ACTIONS(1294), + [anon_sym_source] = ACTIONS(1294), + [anon_sym_source_DASHenv] = ACTIONS(1294), + [anon_sym_register] = ACTIONS(1294), + [anon_sym_hide] = ACTIONS(1294), + [anon_sym_hide_DASHenv] = ACTIONS(1294), + [anon_sym_overlay] = ACTIONS(1294), + [anon_sym_where] = ACTIONS(1296), + [aux_sym_expr_unary_token1] = ACTIONS(1296), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1296), + [anon_sym_DOT_DOT_LT] = ACTIONS(1296), + [anon_sym_null] = ACTIONS(1294), + [anon_sym_true] = ACTIONS(1294), + [anon_sym_false] = ACTIONS(1294), + [aux_sym__val_number_decimal_token1] = ACTIONS(1294), + [aux_sym__val_number_decimal_token2] = ACTIONS(1296), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(1296), + [aux_sym__val_number_token2] = ACTIONS(1296), + [aux_sym__val_number_token3] = ACTIONS(1296), + [aux_sym__val_number_token4] = ACTIONS(1294), + [aux_sym__val_number_token5] = ACTIONS(1294), + [aux_sym__val_number_token6] = ACTIONS(1294), + [anon_sym_0b] = ACTIONS(1294), + [anon_sym_0o] = ACTIONS(1294), + [anon_sym_0x] = ACTIONS(1294), + [sym_val_date] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [sym__str_single_quotes] = ACTIONS(1296), + [sym__str_back_ticks] = ACTIONS(1296), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1296), + [aux_sym_env_var_token1] = ACTIONS(1294), + [anon_sym_CARET] = ACTIONS(1296), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1296), + }, + [283] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5066), + [sym_block] = STATE(5177), + [sym__expression_parenthesized] = STATE(5177), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1214), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5177), + [sym_comment] = STATE(283), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -106337,13 +107103,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -106374,40 +107140,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [280] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5082), - [sym_block] = STATE(5083), - [sym__expression_parenthesized] = STATE(5083), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1232), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5083), - [sym_comment] = STATE(280), - [aux_sym_shebang_repeat1] = STATE(1184), + [284] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5066), + [sym_block] = STATE(5177), + [sym__expression_parenthesized] = STATE(5177), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1214), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5177), + [sym_comment] = STATE(284), + [aux_sym_shebang_repeat1] = STATE(287), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -106448,13 +107214,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -106485,40 +107251,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [281] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5082), - [sym_block] = STATE(5083), - [sym__expression_parenthesized] = STATE(5083), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1232), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5083), - [sym_comment] = STATE(281), - [aux_sym_shebang_repeat1] = STATE(285), + [285] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5154), + [sym_block] = STATE(5155), + [sym__expression_parenthesized] = STATE(5155), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1214), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5155), + [sym_comment] = STATE(285), + [aux_sym_shebang_repeat1] = STATE(289), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -106559,13 +107325,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -106596,40 +107362,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [282] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5084), - [sym_block] = STATE(5166), - [sym__expression_parenthesized] = STATE(5166), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1232), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5166), - [sym_comment] = STATE(282), - [aux_sym_shebang_repeat1] = STATE(1184), + [286] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5007), + [sym_block] = STATE(5009), + [sym__expression_parenthesized] = STATE(5009), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1214), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5009), + [sym_comment] = STATE(286), + [aux_sym_shebang_repeat1] = STATE(291), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -106670,13 +107436,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -106707,40 +107473,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [283] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5084), - [sym_block] = STATE(5166), - [sym__expression_parenthesized] = STATE(5166), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1232), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5166), - [sym_comment] = STATE(283), - [aux_sym_shebang_repeat1] = STATE(286), + [287] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5118), + [sym_block] = STATE(5106), + [sym__expression_parenthesized] = STATE(5106), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1214), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5106), + [sym_comment] = STATE(287), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -106781,13 +107547,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -106818,40 +107584,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [284] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5087), - [sym_block] = STATE(5088), - [sym__expression_parenthesized] = STATE(5088), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1232), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5088), - [sym_comment] = STATE(284), - [aux_sym_shebang_repeat1] = STATE(1184), + [288] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5118), + [sym_block] = STATE(5106), + [sym__expression_parenthesized] = STATE(5106), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1214), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5106), + [sym_comment] = STATE(288), + [aux_sym_shebang_repeat1] = STATE(294), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -106892,13 +107658,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -106929,40 +107695,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [285] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5089), - [sym_block] = STATE(5090), - [sym__expression_parenthesized] = STATE(5090), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1232), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5090), - [sym_comment] = STATE(285), - [aux_sym_shebang_repeat1] = STATE(1184), + [289] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5044), + [sym_block] = STATE(5015), + [sym__expression_parenthesized] = STATE(5015), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1214), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5015), + [sym_comment] = STATE(289), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -107003,13 +107769,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -107040,40 +107806,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [286] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_block] = STATE(5092), - [sym__expression_parenthesized] = STATE(5092), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1232), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5092), - [sym_comment] = STATE(286), - [aux_sym_shebang_repeat1] = STATE(1184), + [290] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5044), + [sym_block] = STATE(5015), + [sym__expression_parenthesized] = STATE(5015), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1214), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5015), + [sym_comment] = STATE(290), + [aux_sym_shebang_repeat1] = STATE(295), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -107114,13 +107880,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -107151,40 +107917,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [287] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_block] = STATE(5092), - [sym__expression_parenthesized] = STATE(5092), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1232), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5092), - [sym_comment] = STATE(287), - [aux_sym_shebang_repeat1] = STATE(288), + [291] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5047), + [sym_block] = STATE(5038), + [sym__expression_parenthesized] = STATE(5038), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1214), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5038), + [sym_comment] = STATE(291), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -107225,13 +107991,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -107262,40 +108028,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [288] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5093), - [sym_block] = STATE(5094), - [sym__expression_parenthesized] = STATE(5094), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1232), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5094), - [sym_comment] = STATE(288), - [aux_sym_shebang_repeat1] = STATE(1184), + [292] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5047), + [sym_block] = STATE(5038), + [sym__expression_parenthesized] = STATE(5038), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1214), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5038), + [sym_comment] = STATE(292), + [aux_sym_shebang_repeat1] = STATE(297), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -107336,13 +108102,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -107373,40 +108139,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [289] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5046), - [sym_block] = STATE(5048), - [sym__expression_parenthesized] = STATE(5048), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1207), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5048), - [sym_comment] = STATE(289), - [aux_sym_shebang_repeat1] = STATE(294), + [293] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5048), + [sym_block] = STATE(5023), + [sym__expression_parenthesized] = STATE(5023), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1214), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5023), + [sym_comment] = STATE(293), + [aux_sym_shebang_repeat1] = STATE(299), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -107447,13 +108213,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -107461,10 +108227,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -107484,40 +108250,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [290] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5049), - [sym_block] = STATE(5050), - [sym__expression_parenthesized] = STATE(5050), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1207), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5050), - [sym_comment] = STATE(290), - [aux_sym_shebang_repeat1] = STATE(296), + [294] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5120), + [sym_block] = STATE(5131), + [sym__expression_parenthesized] = STATE(5131), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1214), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5131), + [sym_comment] = STATE(294), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -107558,13 +108324,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -107572,10 +108338,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -107595,40 +108361,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [291] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5078), - [sym_block] = STATE(5079), - [sym__expression_parenthesized] = STATE(5079), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1207), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5079), - [sym_comment] = STATE(291), - [aux_sym_shebang_repeat1] = STATE(1184), + [295] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5149), + [sym_block] = STATE(5026), + [sym__expression_parenthesized] = STATE(5026), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1214), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5026), + [sym_comment] = STATE(295), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -107669,13 +108435,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -107683,10 +108449,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -107706,40 +108472,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [292] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5080), - [sym_block] = STATE(5081), - [sym__expression_parenthesized] = STATE(5081), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1207), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5081), - [sym_comment] = STATE(292), - [aux_sym_shebang_repeat1] = STATE(1184), + [296] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5149), + [sym_block] = STATE(5026), + [sym__expression_parenthesized] = STATE(5026), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1214), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5026), + [sym_comment] = STATE(296), + [aux_sym_shebang_repeat1] = STATE(301), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -107780,13 +108546,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -107794,10 +108560,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -107817,40 +108583,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [293] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5080), - [sym_block] = STATE(5081), - [sym__expression_parenthesized] = STATE(5081), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1207), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5081), - [sym_comment] = STATE(293), - [aux_sym_shebang_repeat1] = STATE(298), + [297] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5057), + [sym_block] = STATE(5063), + [sym__expression_parenthesized] = STATE(5063), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1214), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5063), + [sym_comment] = STATE(297), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -107891,13 +108657,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -107905,10 +108671,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -107928,40 +108694,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [294] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5082), - [sym_block] = STATE(5083), - [sym__expression_parenthesized] = STATE(5083), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1207), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5083), - [sym_comment] = STATE(294), - [aux_sym_shebang_repeat1] = STATE(1184), + [298] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5057), + [sym_block] = STATE(5063), + [sym__expression_parenthesized] = STATE(5063), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1214), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5063), + [sym_comment] = STATE(298), + [aux_sym_shebang_repeat1] = STATE(302), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -108002,13 +108768,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -108016,10 +108782,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -108039,40 +108805,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [295] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5082), - [sym_block] = STATE(5083), - [sym__expression_parenthesized] = STATE(5083), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1207), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5083), - [sym_comment] = STATE(295), - [aux_sym_shebang_repeat1] = STATE(299), + [299] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5095), + [sym_block] = STATE(5097), + [sym__expression_parenthesized] = STATE(5097), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1214), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5097), + [sym_comment] = STATE(299), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -108113,13 +108879,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -108127,10 +108893,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -108150,40 +108916,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [296] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5084), - [sym_block] = STATE(5166), - [sym__expression_parenthesized] = STATE(5166), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1207), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5166), - [sym_comment] = STATE(296), - [aux_sym_shebang_repeat1] = STATE(1184), + [300] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5095), + [sym_block] = STATE(5097), + [sym__expression_parenthesized] = STATE(5097), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1214), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5097), + [sym_comment] = STATE(300), + [aux_sym_shebang_repeat1] = STATE(303), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -108224,13 +108990,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -108238,10 +109004,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -108261,40 +109027,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [297] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5084), - [sym_block] = STATE(5166), - [sym__expression_parenthesized] = STATE(5166), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1207), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5166), - [sym_comment] = STATE(297), - [aux_sym_shebang_repeat1] = STATE(300), + [301] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5019), + [sym_block] = STATE(5173), + [sym__expression_parenthesized] = STATE(5173), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1214), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5173), + [sym_comment] = STATE(301), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -108335,13 +109101,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -108349,10 +109115,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -108372,40 +109138,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [298] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5087), - [sym_block] = STATE(5088), - [sym__expression_parenthesized] = STATE(5088), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1207), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5088), - [sym_comment] = STATE(298), - [aux_sym_shebang_repeat1] = STATE(1184), + [302] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5029), + [sym_block] = STATE(5140), + [sym__expression_parenthesized] = STATE(5140), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1214), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5140), + [sym_comment] = STATE(302), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -108446,13 +109212,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -108460,10 +109226,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -108483,40 +109249,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [299] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5089), - [sym_block] = STATE(5090), - [sym__expression_parenthesized] = STATE(5090), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1207), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5090), - [sym_comment] = STATE(299), - [aux_sym_shebang_repeat1] = STATE(1184), + [303] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_block] = STATE(5051), + [sym__expression_parenthesized] = STATE(5051), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1214), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5051), + [sym_comment] = STATE(303), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -108557,13 +109323,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -108571,10 +109337,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -108594,40 +109360,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [300] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_block] = STATE(5092), - [sym__expression_parenthesized] = STATE(5092), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1207), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5092), - [sym_comment] = STATE(300), - [aux_sym_shebang_repeat1] = STATE(1184), + [304] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5027), + [sym_block] = STATE(5051), + [sym__expression_parenthesized] = STATE(5051), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1214), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5051), + [sym_comment] = STATE(304), + [aux_sym_shebang_repeat1] = STATE(305), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -108668,13 +109434,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), + [sym__newline] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [305] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5137), + [sym_block] = STATE(5006), + [sym__expression_parenthesized] = STATE(5006), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1214), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5006), + [sym_comment] = STATE(305), + [aux_sym_shebang_repeat1] = STATE(1177), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [306] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if_parenthesized] = STATE(5057), + [sym_block] = STATE(5063), + [sym__expression_parenthesized] = STATE(5063), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3920), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1245), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(5063), + [sym_comment] = STATE(306), + [aux_sym_shebang_repeat1] = STATE(1177), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -108705,672 +109693,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [301] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5091), - [sym_block] = STATE(5092), - [sym__expression_parenthesized] = STATE(5092), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1207), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5092), - [sym_comment] = STATE(301), - [aux_sym_shebang_repeat1] = STATE(302), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [302] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5093), - [sym_block] = STATE(5094), - [sym__expression_parenthesized] = STATE(5094), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1207), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5094), - [sym_comment] = STATE(302), - [aux_sym_shebang_repeat1] = STATE(1184), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [303] = { - [sym_comment] = STATE(303), - [aux_sym__block_body_repeat1] = STATE(305), - [ts_builtin_sym_end] = ACTIONS(1457), - [anon_sym_export] = ACTIONS(1453), - [anon_sym_alias] = ACTIONS(1453), - [anon_sym_let] = ACTIONS(1453), - [anon_sym_let_DASHenv] = ACTIONS(1453), - [anon_sym_mut] = ACTIONS(1453), - [anon_sym_const] = ACTIONS(1453), - [aux_sym_cmd_identifier_token1] = ACTIONS(1453), - [aux_sym_cmd_identifier_token2] = ACTIONS(1455), - [aux_sym_cmd_identifier_token3] = ACTIONS(1455), - [aux_sym_cmd_identifier_token4] = ACTIONS(1455), - [aux_sym_cmd_identifier_token5] = ACTIONS(1455), - [aux_sym_cmd_identifier_token6] = ACTIONS(1455), - [aux_sym_cmd_identifier_token7] = ACTIONS(1455), - [aux_sym_cmd_identifier_token8] = ACTIONS(1453), - [aux_sym_cmd_identifier_token9] = ACTIONS(1453), - [aux_sym_cmd_identifier_token10] = ACTIONS(1455), - [aux_sym_cmd_identifier_token11] = ACTIONS(1455), - [aux_sym_cmd_identifier_token12] = ACTIONS(1453), - [aux_sym_cmd_identifier_token13] = ACTIONS(1453), - [aux_sym_cmd_identifier_token14] = ACTIONS(1453), - [aux_sym_cmd_identifier_token15] = ACTIONS(1453), - [aux_sym_cmd_identifier_token16] = ACTIONS(1455), - [aux_sym_cmd_identifier_token17] = ACTIONS(1455), - [aux_sym_cmd_identifier_token18] = ACTIONS(1455), - [aux_sym_cmd_identifier_token19] = ACTIONS(1455), - [aux_sym_cmd_identifier_token20] = ACTIONS(1455), - [aux_sym_cmd_identifier_token21] = ACTIONS(1455), - [aux_sym_cmd_identifier_token22] = ACTIONS(1455), - [aux_sym_cmd_identifier_token23] = ACTIONS(1455), - [aux_sym_cmd_identifier_token24] = ACTIONS(1455), - [aux_sym_cmd_identifier_token25] = ACTIONS(1455), - [aux_sym_cmd_identifier_token26] = ACTIONS(1455), - [aux_sym_cmd_identifier_token27] = ACTIONS(1455), - [aux_sym_cmd_identifier_token28] = ACTIONS(1455), - [aux_sym_cmd_identifier_token29] = ACTIONS(1455), - [aux_sym_cmd_identifier_token30] = ACTIONS(1455), - [aux_sym_cmd_identifier_token31] = ACTIONS(1455), - [aux_sym_cmd_identifier_token32] = ACTIONS(1455), - [aux_sym_cmd_identifier_token33] = ACTIONS(1455), - [aux_sym_cmd_identifier_token34] = ACTIONS(1453), - [aux_sym_cmd_identifier_token35] = ACTIONS(1455), - [aux_sym_cmd_identifier_token36] = ACTIONS(1455), - [aux_sym_cmd_identifier_token37] = ACTIONS(1455), - [aux_sym_cmd_identifier_token38] = ACTIONS(1453), - [aux_sym_cmd_identifier_token39] = ACTIONS(1455), - [aux_sym_cmd_identifier_token40] = ACTIONS(1455), - [sym__newline] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(25), - [anon_sym_def] = ACTIONS(1453), - [anon_sym_export_DASHenv] = ACTIONS(1453), - [anon_sym_extern] = ACTIONS(1453), - [anon_sym_module] = ACTIONS(1453), - [anon_sym_use] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1455), - [anon_sym_DOLLAR] = ACTIONS(1453), - [anon_sym_error] = ACTIONS(1453), - [anon_sym_DASH2] = ACTIONS(1453), - [anon_sym_break] = ACTIONS(1453), - [anon_sym_continue] = ACTIONS(1453), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_loop] = ACTIONS(1453), - [anon_sym_while] = ACTIONS(1453), - [anon_sym_do] = ACTIONS(1453), - [anon_sym_if] = ACTIONS(1453), - [anon_sym_match] = ACTIONS(1453), - [anon_sym_LBRACE] = ACTIONS(1455), - [anon_sym_DOT_DOT] = ACTIONS(1453), - [anon_sym_try] = ACTIONS(1453), - [anon_sym_return] = ACTIONS(1453), - [anon_sym_source] = ACTIONS(1453), - [anon_sym_source_DASHenv] = ACTIONS(1453), - [anon_sym_register] = ACTIONS(1453), - [anon_sym_hide] = ACTIONS(1453), - [anon_sym_hide_DASHenv] = ACTIONS(1453), - [anon_sym_overlay] = ACTIONS(1453), - [anon_sym_where] = ACTIONS(1455), - [aux_sym_expr_unary_token1] = ACTIONS(1455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), - [anon_sym_DOT_DOT_LT] = ACTIONS(1455), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_true] = ACTIONS(1453), - [anon_sym_false] = ACTIONS(1453), - [aux_sym__val_number_decimal_token1] = ACTIONS(1453), - [aux_sym__val_number_decimal_token2] = ACTIONS(1455), - [aux_sym__val_number_decimal_token3] = ACTIONS(1455), - [aux_sym__val_number_decimal_token4] = ACTIONS(1455), - [aux_sym__val_number_token1] = ACTIONS(1455), - [aux_sym__val_number_token2] = ACTIONS(1455), - [aux_sym__val_number_token3] = ACTIONS(1455), - [aux_sym__val_number_token4] = ACTIONS(1453), - [aux_sym__val_number_token5] = ACTIONS(1453), - [aux_sym__val_number_token6] = ACTIONS(1453), - [anon_sym_0b] = ACTIONS(1453), - [anon_sym_0o] = ACTIONS(1453), - [anon_sym_0x] = ACTIONS(1453), - [sym_val_date] = ACTIONS(1455), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym__str_single_quotes] = ACTIONS(1455), - [sym__str_back_ticks] = ACTIONS(1455), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1455), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1455), - [aux_sym_env_var_token1] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1455), - }, - [304] = { - [sym_comment] = STATE(304), - [anon_sym_export] = ACTIONS(1470), - [anon_sym_alias] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_let_DASHenv] = ACTIONS(1470), - [anon_sym_mut] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [aux_sym_cmd_identifier_token1] = ACTIONS(1470), - [aux_sym_cmd_identifier_token2] = ACTIONS(1292), - [aux_sym_cmd_identifier_token3] = ACTIONS(1292), - [aux_sym_cmd_identifier_token4] = ACTIONS(1292), - [aux_sym_cmd_identifier_token5] = ACTIONS(1292), - [aux_sym_cmd_identifier_token6] = ACTIONS(1292), - [aux_sym_cmd_identifier_token7] = ACTIONS(1292), - [aux_sym_cmd_identifier_token8] = ACTIONS(1470), - [aux_sym_cmd_identifier_token9] = ACTIONS(1470), - [aux_sym_cmd_identifier_token10] = ACTIONS(1292), - [aux_sym_cmd_identifier_token11] = ACTIONS(1292), - [aux_sym_cmd_identifier_token12] = ACTIONS(1470), - [aux_sym_cmd_identifier_token13] = ACTIONS(1470), - [aux_sym_cmd_identifier_token14] = ACTIONS(1470), - [aux_sym_cmd_identifier_token15] = ACTIONS(1470), - [aux_sym_cmd_identifier_token16] = ACTIONS(1292), - [aux_sym_cmd_identifier_token17] = ACTIONS(1292), - [aux_sym_cmd_identifier_token18] = ACTIONS(1292), - [aux_sym_cmd_identifier_token19] = ACTIONS(1292), - [aux_sym_cmd_identifier_token20] = ACTIONS(1292), - [aux_sym_cmd_identifier_token21] = ACTIONS(1292), - [aux_sym_cmd_identifier_token22] = ACTIONS(1292), - [aux_sym_cmd_identifier_token23] = ACTIONS(1292), - [aux_sym_cmd_identifier_token24] = ACTIONS(1292), - [aux_sym_cmd_identifier_token25] = ACTIONS(1292), - [aux_sym_cmd_identifier_token26] = ACTIONS(1292), - [aux_sym_cmd_identifier_token27] = ACTIONS(1292), - [aux_sym_cmd_identifier_token28] = ACTIONS(1292), - [aux_sym_cmd_identifier_token29] = ACTIONS(1292), - [aux_sym_cmd_identifier_token30] = ACTIONS(1292), - [aux_sym_cmd_identifier_token31] = ACTIONS(1292), - [aux_sym_cmd_identifier_token32] = ACTIONS(1292), - [aux_sym_cmd_identifier_token33] = ACTIONS(1292), - [aux_sym_cmd_identifier_token34] = ACTIONS(1470), - [aux_sym_cmd_identifier_token35] = ACTIONS(1292), - [aux_sym_cmd_identifier_token36] = ACTIONS(1292), - [aux_sym_cmd_identifier_token37] = ACTIONS(1292), - [aux_sym_cmd_identifier_token38] = ACTIONS(1470), - [aux_sym_cmd_identifier_token39] = ACTIONS(1292), - [aux_sym_cmd_identifier_token40] = ACTIONS(1292), - [sym__newline] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym_def] = ACTIONS(1470), - [anon_sym_export_DASHenv] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_module] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(1292), - [anon_sym_LPAREN] = ACTIONS(1292), - [anon_sym_RPAREN] = ACTIONS(1292), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_error] = ACTIONS(1470), - [anon_sym_DASH2] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_do] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_LBRACE] = ACTIONS(1292), - [anon_sym_RBRACE] = ACTIONS(1292), - [anon_sym_DOT_DOT] = ACTIONS(1470), - [anon_sym_try] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_source] = ACTIONS(1470), - [anon_sym_source_DASHenv] = ACTIONS(1470), - [anon_sym_register] = ACTIONS(1470), - [anon_sym_hide] = ACTIONS(1470), - [anon_sym_hide_DASHenv] = ACTIONS(1470), - [anon_sym_overlay] = ACTIONS(1470), - [anon_sym_where] = ACTIONS(1292), - [aux_sym_expr_unary_token1] = ACTIONS(1292), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1292), - [anon_sym_DOT_DOT_LT] = ACTIONS(1292), - [anon_sym_null] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1470), - [anon_sym_false] = ACTIONS(1470), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), - [aux_sym__val_number_decimal_token2] = ACTIONS(1292), - [aux_sym__val_number_decimal_token3] = ACTIONS(1292), - [aux_sym__val_number_decimal_token4] = ACTIONS(1292), - [aux_sym__val_number_token1] = ACTIONS(1292), - [aux_sym__val_number_token2] = ACTIONS(1292), - [aux_sym__val_number_token3] = ACTIONS(1292), - [aux_sym__val_number_token4] = ACTIONS(1470), - [aux_sym__val_number_token5] = ACTIONS(1470), - [aux_sym__val_number_token6] = ACTIONS(1470), - [anon_sym_0b] = ACTIONS(1470), - [anon_sym_0o] = ACTIONS(1470), - [anon_sym_0x] = ACTIONS(1470), - [sym_val_date] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1292), - [sym__str_single_quotes] = ACTIONS(1292), - [sym__str_back_ticks] = ACTIONS(1292), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1292), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1292), - [aux_sym_env_var_token1] = ACTIONS(1470), - [anon_sym_CARET] = ACTIONS(1292), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1292), - }, - [305] = { - [sym_comment] = STATE(305), - [aux_sym__block_body_repeat1] = STATE(305), - [ts_builtin_sym_end] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1461), - [anon_sym_alias] = ACTIONS(1461), - [anon_sym_let] = ACTIONS(1461), - [anon_sym_let_DASHenv] = ACTIONS(1461), - [anon_sym_mut] = ACTIONS(1461), - [anon_sym_const] = ACTIONS(1461), - [aux_sym_cmd_identifier_token1] = ACTIONS(1461), - [aux_sym_cmd_identifier_token2] = ACTIONS(1463), - [aux_sym_cmd_identifier_token3] = ACTIONS(1463), - [aux_sym_cmd_identifier_token4] = ACTIONS(1463), - [aux_sym_cmd_identifier_token5] = ACTIONS(1463), - [aux_sym_cmd_identifier_token6] = ACTIONS(1463), - [aux_sym_cmd_identifier_token7] = ACTIONS(1463), - [aux_sym_cmd_identifier_token8] = ACTIONS(1461), - [aux_sym_cmd_identifier_token9] = ACTIONS(1461), - [aux_sym_cmd_identifier_token10] = ACTIONS(1463), - [aux_sym_cmd_identifier_token11] = ACTIONS(1463), - [aux_sym_cmd_identifier_token12] = ACTIONS(1461), - [aux_sym_cmd_identifier_token13] = ACTIONS(1461), - [aux_sym_cmd_identifier_token14] = ACTIONS(1461), - [aux_sym_cmd_identifier_token15] = ACTIONS(1461), - [aux_sym_cmd_identifier_token16] = ACTIONS(1463), - [aux_sym_cmd_identifier_token17] = ACTIONS(1463), - [aux_sym_cmd_identifier_token18] = ACTIONS(1463), - [aux_sym_cmd_identifier_token19] = ACTIONS(1463), - [aux_sym_cmd_identifier_token20] = ACTIONS(1463), - [aux_sym_cmd_identifier_token21] = ACTIONS(1463), - [aux_sym_cmd_identifier_token22] = ACTIONS(1463), - [aux_sym_cmd_identifier_token23] = ACTIONS(1463), - [aux_sym_cmd_identifier_token24] = ACTIONS(1463), - [aux_sym_cmd_identifier_token25] = ACTIONS(1463), - [aux_sym_cmd_identifier_token26] = ACTIONS(1463), - [aux_sym_cmd_identifier_token27] = ACTIONS(1463), - [aux_sym_cmd_identifier_token28] = ACTIONS(1463), - [aux_sym_cmd_identifier_token29] = ACTIONS(1463), - [aux_sym_cmd_identifier_token30] = ACTIONS(1463), - [aux_sym_cmd_identifier_token31] = ACTIONS(1463), - [aux_sym_cmd_identifier_token32] = ACTIONS(1463), - [aux_sym_cmd_identifier_token33] = ACTIONS(1463), - [aux_sym_cmd_identifier_token34] = ACTIONS(1461), - [aux_sym_cmd_identifier_token35] = ACTIONS(1463), - [aux_sym_cmd_identifier_token36] = ACTIONS(1463), - [aux_sym_cmd_identifier_token37] = ACTIONS(1463), - [aux_sym_cmd_identifier_token38] = ACTIONS(1461), - [aux_sym_cmd_identifier_token39] = ACTIONS(1463), - [aux_sym_cmd_identifier_token40] = ACTIONS(1463), - [sym__newline] = ACTIONS(1523), - [anon_sym_SEMI] = ACTIONS(1523), - [anon_sym_def] = ACTIONS(1461), - [anon_sym_export_DASHenv] = ACTIONS(1461), - [anon_sym_extern] = ACTIONS(1461), - [anon_sym_module] = ACTIONS(1461), - [anon_sym_use] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(1463), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_DOLLAR] = ACTIONS(1461), - [anon_sym_error] = ACTIONS(1461), - [anon_sym_DASH2] = ACTIONS(1461), - [anon_sym_break] = ACTIONS(1461), - [anon_sym_continue] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [anon_sym_loop] = ACTIONS(1461), - [anon_sym_while] = ACTIONS(1461), - [anon_sym_do] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_try] = ACTIONS(1461), - [anon_sym_return] = ACTIONS(1461), - [anon_sym_source] = ACTIONS(1461), - [anon_sym_source_DASHenv] = ACTIONS(1461), - [anon_sym_register] = ACTIONS(1461), - [anon_sym_hide] = ACTIONS(1461), - [anon_sym_hide_DASHenv] = ACTIONS(1461), - [anon_sym_overlay] = ACTIONS(1461), - [anon_sym_where] = ACTIONS(1463), - [aux_sym_expr_unary_token1] = ACTIONS(1463), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1463), - [anon_sym_DOT_DOT_LT] = ACTIONS(1463), - [anon_sym_null] = ACTIONS(1461), - [anon_sym_true] = ACTIONS(1461), - [anon_sym_false] = ACTIONS(1461), - [aux_sym__val_number_decimal_token1] = ACTIONS(1461), - [aux_sym__val_number_decimal_token2] = ACTIONS(1463), - [aux_sym__val_number_decimal_token3] = ACTIONS(1463), - [aux_sym__val_number_decimal_token4] = ACTIONS(1463), - [aux_sym__val_number_token1] = ACTIONS(1463), - [aux_sym__val_number_token2] = ACTIONS(1463), - [aux_sym__val_number_token3] = ACTIONS(1463), - [aux_sym__val_number_token4] = ACTIONS(1461), - [aux_sym__val_number_token5] = ACTIONS(1461), - [aux_sym__val_number_token6] = ACTIONS(1461), - [anon_sym_0b] = ACTIONS(1461), - [anon_sym_0o] = ACTIONS(1461), - [anon_sym_0x] = ACTIONS(1461), - [sym_val_date] = ACTIONS(1463), - [anon_sym_DQUOTE] = ACTIONS(1463), - [sym__str_single_quotes] = ACTIONS(1463), - [sym__str_back_ticks] = ACTIONS(1463), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1463), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1463), - [aux_sym_env_var_token1] = ACTIONS(1461), - [anon_sym_CARET] = ACTIONS(1463), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1463), - }, - [306] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if_parenthesized] = STATE(5138), - [sym_block] = STATE(5140), - [sym__expression_parenthesized] = STATE(5140), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3860), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1232), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(5140), - [sym_comment] = STATE(306), - [aux_sym_shebang_repeat1] = STATE(1184), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, [307] = { [sym_comment] = STATE(307), [ts_builtin_sym_end] = ACTIONS(1526), @@ -109483,6 +109805,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [308] = { [sym_comment] = STATE(308), + [aux_sym_shebang_repeat1] = STATE(282), + [anon_sym_export] = ACTIONS(1530), + [anon_sym_alias] = ACTIONS(1530), + [anon_sym_let] = ACTIONS(1530), + [anon_sym_let_DASHenv] = ACTIONS(1530), + [anon_sym_mut] = ACTIONS(1530), + [anon_sym_const] = ACTIONS(1530), + [aux_sym_cmd_identifier_token1] = ACTIONS(1530), + [aux_sym_cmd_identifier_token2] = ACTIONS(1532), + [aux_sym_cmd_identifier_token3] = ACTIONS(1532), + [aux_sym_cmd_identifier_token4] = ACTIONS(1532), + [aux_sym_cmd_identifier_token5] = ACTIONS(1532), + [aux_sym_cmd_identifier_token6] = ACTIONS(1532), + [aux_sym_cmd_identifier_token7] = ACTIONS(1532), + [aux_sym_cmd_identifier_token8] = ACTIONS(1530), + [aux_sym_cmd_identifier_token9] = ACTIONS(1530), + [aux_sym_cmd_identifier_token10] = ACTIONS(1532), + [aux_sym_cmd_identifier_token11] = ACTIONS(1532), + [aux_sym_cmd_identifier_token12] = ACTIONS(1530), + [aux_sym_cmd_identifier_token13] = ACTIONS(1530), + [aux_sym_cmd_identifier_token14] = ACTIONS(1530), + [aux_sym_cmd_identifier_token15] = ACTIONS(1530), + [aux_sym_cmd_identifier_token16] = ACTIONS(1532), + [aux_sym_cmd_identifier_token17] = ACTIONS(1532), + [aux_sym_cmd_identifier_token18] = ACTIONS(1532), + [aux_sym_cmd_identifier_token19] = ACTIONS(1532), + [aux_sym_cmd_identifier_token20] = ACTIONS(1532), + [aux_sym_cmd_identifier_token21] = ACTIONS(1532), + [aux_sym_cmd_identifier_token22] = ACTIONS(1532), + [aux_sym_cmd_identifier_token23] = ACTIONS(1532), + [aux_sym_cmd_identifier_token24] = ACTIONS(1532), + [aux_sym_cmd_identifier_token25] = ACTIONS(1532), + [aux_sym_cmd_identifier_token26] = ACTIONS(1532), + [aux_sym_cmd_identifier_token27] = ACTIONS(1532), + [aux_sym_cmd_identifier_token28] = ACTIONS(1532), + [aux_sym_cmd_identifier_token29] = ACTIONS(1532), + [aux_sym_cmd_identifier_token30] = ACTIONS(1532), + [aux_sym_cmd_identifier_token31] = ACTIONS(1532), + [aux_sym_cmd_identifier_token32] = ACTIONS(1532), + [aux_sym_cmd_identifier_token33] = ACTIONS(1532), + [aux_sym_cmd_identifier_token34] = ACTIONS(1530), + [aux_sym_cmd_identifier_token35] = ACTIONS(1532), + [aux_sym_cmd_identifier_token36] = ACTIONS(1532), + [aux_sym_cmd_identifier_token37] = ACTIONS(1532), + [aux_sym_cmd_identifier_token38] = ACTIONS(1530), + [aux_sym_cmd_identifier_token39] = ACTIONS(1532), + [aux_sym_cmd_identifier_token40] = ACTIONS(1532), + [sym__newline] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1534), + [anon_sym_def] = ACTIONS(1530), + [anon_sym_export_DASHenv] = ACTIONS(1530), + [anon_sym_extern] = ACTIONS(1530), + [anon_sym_module] = ACTIONS(1530), + [anon_sym_use] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_DOLLAR] = ACTIONS(1530), + [anon_sym_error] = ACTIONS(1530), + [anon_sym_DASH2] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_continue] = ACTIONS(1530), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_loop] = ACTIONS(1530), + [anon_sym_while] = ACTIONS(1530), + [anon_sym_do] = ACTIONS(1530), + [anon_sym_if] = ACTIONS(1530), + [anon_sym_match] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_DOT_DOT] = ACTIONS(1530), + [anon_sym_try] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1530), + [anon_sym_source] = ACTIONS(1530), + [anon_sym_source_DASHenv] = ACTIONS(1530), + [anon_sym_register] = ACTIONS(1530), + [anon_sym_hide] = ACTIONS(1530), + [anon_sym_hide_DASHenv] = ACTIONS(1530), + [anon_sym_overlay] = ACTIONS(1530), + [anon_sym_where] = ACTIONS(1532), + [aux_sym_expr_unary_token1] = ACTIONS(1532), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1532), + [anon_sym_DOT_DOT_LT] = ACTIONS(1532), + [anon_sym_null] = ACTIONS(1530), + [anon_sym_true] = ACTIONS(1530), + [anon_sym_false] = ACTIONS(1530), + [aux_sym__val_number_decimal_token1] = ACTIONS(1530), + [aux_sym__val_number_decimal_token2] = ACTIONS(1532), + [aux_sym__val_number_decimal_token3] = ACTIONS(1532), + [aux_sym__val_number_decimal_token4] = ACTIONS(1532), + [aux_sym__val_number_token1] = ACTIONS(1532), + [aux_sym__val_number_token2] = ACTIONS(1532), + [aux_sym__val_number_token3] = ACTIONS(1532), + [aux_sym__val_number_token4] = ACTIONS(1530), + [aux_sym__val_number_token5] = ACTIONS(1530), + [aux_sym__val_number_token6] = ACTIONS(1530), + [anon_sym_0b] = ACTIONS(1530), + [anon_sym_0o] = ACTIONS(1530), + [anon_sym_0x] = ACTIONS(1530), + [sym_val_date] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1532), + [sym__str_single_quotes] = ACTIONS(1532), + [sym__str_back_ticks] = ACTIONS(1532), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1532), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1532), + [aux_sym_env_var_token1] = ACTIONS(1530), + [anon_sym_CARET] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1532), + }, + [309] = { + [sym_comment] = STATE(309), + [aux_sym__block_body_repeat1] = STATE(223), + [anon_sym_export] = ACTIONS(1453), + [anon_sym_alias] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1453), + [anon_sym_let_DASHenv] = ACTIONS(1453), + [anon_sym_mut] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(1453), + [aux_sym_cmd_identifier_token1] = ACTIONS(1453), + [aux_sym_cmd_identifier_token2] = ACTIONS(1455), + [aux_sym_cmd_identifier_token3] = ACTIONS(1455), + [aux_sym_cmd_identifier_token4] = ACTIONS(1455), + [aux_sym_cmd_identifier_token5] = ACTIONS(1455), + [aux_sym_cmd_identifier_token6] = ACTIONS(1455), + [aux_sym_cmd_identifier_token7] = ACTIONS(1455), + [aux_sym_cmd_identifier_token8] = ACTIONS(1453), + [aux_sym_cmd_identifier_token9] = ACTIONS(1453), + [aux_sym_cmd_identifier_token10] = ACTIONS(1455), + [aux_sym_cmd_identifier_token11] = ACTIONS(1455), + [aux_sym_cmd_identifier_token12] = ACTIONS(1453), + [aux_sym_cmd_identifier_token13] = ACTIONS(1453), + [aux_sym_cmd_identifier_token14] = ACTIONS(1453), + [aux_sym_cmd_identifier_token15] = ACTIONS(1453), + [aux_sym_cmd_identifier_token16] = ACTIONS(1455), + [aux_sym_cmd_identifier_token17] = ACTIONS(1455), + [aux_sym_cmd_identifier_token18] = ACTIONS(1455), + [aux_sym_cmd_identifier_token19] = ACTIONS(1455), + [aux_sym_cmd_identifier_token20] = ACTIONS(1455), + [aux_sym_cmd_identifier_token21] = ACTIONS(1455), + [aux_sym_cmd_identifier_token22] = ACTIONS(1455), + [aux_sym_cmd_identifier_token23] = ACTIONS(1455), + [aux_sym_cmd_identifier_token24] = ACTIONS(1455), + [aux_sym_cmd_identifier_token25] = ACTIONS(1455), + [aux_sym_cmd_identifier_token26] = ACTIONS(1455), + [aux_sym_cmd_identifier_token27] = ACTIONS(1455), + [aux_sym_cmd_identifier_token28] = ACTIONS(1455), + [aux_sym_cmd_identifier_token29] = ACTIONS(1455), + [aux_sym_cmd_identifier_token30] = ACTIONS(1455), + [aux_sym_cmd_identifier_token31] = ACTIONS(1455), + [aux_sym_cmd_identifier_token32] = ACTIONS(1455), + [aux_sym_cmd_identifier_token33] = ACTIONS(1455), + [aux_sym_cmd_identifier_token34] = ACTIONS(1453), + [aux_sym_cmd_identifier_token35] = ACTIONS(1455), + [aux_sym_cmd_identifier_token36] = ACTIONS(1455), + [aux_sym_cmd_identifier_token37] = ACTIONS(1455), + [aux_sym_cmd_identifier_token38] = ACTIONS(1453), + [aux_sym_cmd_identifier_token39] = ACTIONS(1455), + [aux_sym_cmd_identifier_token40] = ACTIONS(1455), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_def] = ACTIONS(1453), + [anon_sym_export_DASHenv] = ACTIONS(1453), + [anon_sym_extern] = ACTIONS(1453), + [anon_sym_module] = ACTIONS(1453), + [anon_sym_use] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_DOLLAR] = ACTIONS(1453), + [anon_sym_error] = ACTIONS(1453), + [anon_sym_DASH2] = ACTIONS(1453), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_loop] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_do] = ACTIONS(1453), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_try] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_source] = ACTIONS(1453), + [anon_sym_source_DASHenv] = ACTIONS(1453), + [anon_sym_register] = ACTIONS(1453), + [anon_sym_hide] = ACTIONS(1453), + [anon_sym_hide_DASHenv] = ACTIONS(1453), + [anon_sym_overlay] = ACTIONS(1453), + [anon_sym_where] = ACTIONS(1455), + [aux_sym_expr_unary_token1] = ACTIONS(1455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), + [anon_sym_DOT_DOT_LT] = ACTIONS(1455), + [anon_sym_null] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [aux_sym__val_number_decimal_token1] = ACTIONS(1453), + [aux_sym__val_number_decimal_token2] = ACTIONS(1455), + [aux_sym__val_number_decimal_token3] = ACTIONS(1455), + [aux_sym__val_number_decimal_token4] = ACTIONS(1455), + [aux_sym__val_number_token1] = ACTIONS(1455), + [aux_sym__val_number_token2] = ACTIONS(1455), + [aux_sym__val_number_token3] = ACTIONS(1455), + [aux_sym__val_number_token4] = ACTIONS(1453), + [aux_sym__val_number_token5] = ACTIONS(1453), + [aux_sym__val_number_token6] = ACTIONS(1453), + [anon_sym_0b] = ACTIONS(1453), + [anon_sym_0o] = ACTIONS(1453), + [anon_sym_0x] = ACTIONS(1453), + [sym_val_date] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [sym__str_single_quotes] = ACTIONS(1455), + [sym__str_back_ticks] = ACTIONS(1455), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1455), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1455), + [aux_sym_env_var_token1] = ACTIONS(1453), + [anon_sym_CARET] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1455), + }, + [310] = { + [sym_comment] = STATE(310), [anon_sym_export] = ACTIONS(1290), [anon_sym_alias] = ACTIONS(1290), [anon_sym_let] = ACTIONS(1290), @@ -109591,30 +110133,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1288), }, - [309] = { - [sym_comment] = STATE(309), + [311] = { + [sym_comment] = STATE(311), [ts_builtin_sym_end] = ACTIONS(1292), - [anon_sym_export] = ACTIONS(1470), - [anon_sym_alias] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_let_DASHenv] = ACTIONS(1470), - [anon_sym_mut] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [aux_sym_cmd_identifier_token1] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1484), + [anon_sym_alias] = ACTIONS(1484), + [anon_sym_let] = ACTIONS(1484), + [anon_sym_let_DASHenv] = ACTIONS(1484), + [anon_sym_mut] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [aux_sym_cmd_identifier_token1] = ACTIONS(1484), [aux_sym_cmd_identifier_token2] = ACTIONS(1292), [aux_sym_cmd_identifier_token3] = ACTIONS(1292), [aux_sym_cmd_identifier_token4] = ACTIONS(1292), [aux_sym_cmd_identifier_token5] = ACTIONS(1292), [aux_sym_cmd_identifier_token6] = ACTIONS(1292), [aux_sym_cmd_identifier_token7] = ACTIONS(1292), - [aux_sym_cmd_identifier_token8] = ACTIONS(1470), - [aux_sym_cmd_identifier_token9] = ACTIONS(1470), + [aux_sym_cmd_identifier_token8] = ACTIONS(1484), + [aux_sym_cmd_identifier_token9] = ACTIONS(1484), [aux_sym_cmd_identifier_token10] = ACTIONS(1292), [aux_sym_cmd_identifier_token11] = ACTIONS(1292), - [aux_sym_cmd_identifier_token12] = ACTIONS(1470), - [aux_sym_cmd_identifier_token13] = ACTIONS(1470), - [aux_sym_cmd_identifier_token14] = ACTIONS(1470), - [aux_sym_cmd_identifier_token15] = ACTIONS(1470), + [aux_sym_cmd_identifier_token12] = ACTIONS(1484), + [aux_sym_cmd_identifier_token13] = ACTIONS(1484), + [aux_sym_cmd_identifier_token14] = ACTIONS(1484), + [aux_sym_cmd_identifier_token15] = ACTIONS(1484), [aux_sym_cmd_identifier_token16] = ACTIONS(1292), [aux_sym_cmd_identifier_token17] = ACTIONS(1292), [aux_sym_cmd_identifier_token18] = ACTIONS(1292), @@ -109633,428 +110175,318 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(1292), [aux_sym_cmd_identifier_token32] = ACTIONS(1292), [aux_sym_cmd_identifier_token33] = ACTIONS(1292), - [aux_sym_cmd_identifier_token34] = ACTIONS(1470), + [aux_sym_cmd_identifier_token34] = ACTIONS(1484), [aux_sym_cmd_identifier_token35] = ACTIONS(1292), [aux_sym_cmd_identifier_token36] = ACTIONS(1292), [aux_sym_cmd_identifier_token37] = ACTIONS(1292), - [aux_sym_cmd_identifier_token38] = ACTIONS(1470), + [aux_sym_cmd_identifier_token38] = ACTIONS(1484), [aux_sym_cmd_identifier_token39] = ACTIONS(1292), [aux_sym_cmd_identifier_token40] = ACTIONS(1292), [sym__newline] = ACTIONS(1292), [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym_def] = ACTIONS(1470), - [anon_sym_export_DASHenv] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_module] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), + [anon_sym_def] = ACTIONS(1484), + [anon_sym_export_DASHenv] = ACTIONS(1484), + [anon_sym_extern] = ACTIONS(1484), + [anon_sym_module] = ACTIONS(1484), + [anon_sym_use] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(1292), [anon_sym_LPAREN] = ACTIONS(1292), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_error] = ACTIONS(1470), - [anon_sym_DASH2] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_do] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_error] = ACTIONS(1484), + [anon_sym_DASH2] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), + [anon_sym_loop] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_do] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_match] = ACTIONS(1484), [anon_sym_LBRACE] = ACTIONS(1292), - [anon_sym_DOT_DOT] = ACTIONS(1470), - [anon_sym_try] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_source] = ACTIONS(1470), - [anon_sym_source_DASHenv] = ACTIONS(1470), - [anon_sym_register] = ACTIONS(1470), - [anon_sym_hide] = ACTIONS(1470), - [anon_sym_hide_DASHenv] = ACTIONS(1470), - [anon_sym_overlay] = ACTIONS(1470), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_try] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_source] = ACTIONS(1484), + [anon_sym_source_DASHenv] = ACTIONS(1484), + [anon_sym_register] = ACTIONS(1484), + [anon_sym_hide] = ACTIONS(1484), + [anon_sym_hide_DASHenv] = ACTIONS(1484), + [anon_sym_overlay] = ACTIONS(1484), [anon_sym_where] = ACTIONS(1292), [aux_sym_expr_unary_token1] = ACTIONS(1292), [anon_sym_DOT_DOT_EQ] = ACTIONS(1292), [anon_sym_DOT_DOT_LT] = ACTIONS(1292), - [anon_sym_null] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1470), - [anon_sym_false] = ACTIONS(1470), - [aux_sym__val_number_decimal_token1] = ACTIONS(1470), + [anon_sym_null] = ACTIONS(1484), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [aux_sym__val_number_decimal_token1] = ACTIONS(1484), [aux_sym__val_number_decimal_token2] = ACTIONS(1292), [aux_sym__val_number_decimal_token3] = ACTIONS(1292), [aux_sym__val_number_decimal_token4] = ACTIONS(1292), [aux_sym__val_number_token1] = ACTIONS(1292), [aux_sym__val_number_token2] = ACTIONS(1292), [aux_sym__val_number_token3] = ACTIONS(1292), - [aux_sym__val_number_token4] = ACTIONS(1470), - [aux_sym__val_number_token5] = ACTIONS(1470), - [aux_sym__val_number_token6] = ACTIONS(1470), - [anon_sym_0b] = ACTIONS(1470), - [anon_sym_0o] = ACTIONS(1470), - [anon_sym_0x] = ACTIONS(1470), + [aux_sym__val_number_token4] = ACTIONS(1484), + [aux_sym__val_number_token5] = ACTIONS(1484), + [aux_sym__val_number_token6] = ACTIONS(1484), + [anon_sym_0b] = ACTIONS(1484), + [anon_sym_0o] = ACTIONS(1484), + [anon_sym_0x] = ACTIONS(1484), [sym_val_date] = ACTIONS(1292), [anon_sym_DQUOTE] = ACTIONS(1292), [sym__str_single_quotes] = ACTIONS(1292), [sym__str_back_ticks] = ACTIONS(1292), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1292), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1292), - [aux_sym_env_var_token1] = ACTIONS(1470), + [aux_sym_env_var_token1] = ACTIONS(1484), [anon_sym_CARET] = ACTIONS(1292), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1292), }, - [310] = { - [sym__expr_parenthesized_immediate] = STATE(481), - [sym__immediate_decimal] = STATE(388), - [sym_val_variable] = STATE(481), - [sym_comment] = STATE(310), - [anon_sym_export] = ACTIONS(1530), - [anon_sym_alias] = ACTIONS(1530), - [anon_sym_let] = ACTIONS(1530), - [anon_sym_let_DASHenv] = ACTIONS(1530), - [anon_sym_mut] = ACTIONS(1530), - [anon_sym_const] = ACTIONS(1530), - [aux_sym_cmd_identifier_token1] = ACTIONS(1530), - [aux_sym_cmd_identifier_token2] = ACTIONS(1530), - [aux_sym_cmd_identifier_token3] = ACTIONS(1530), - [aux_sym_cmd_identifier_token4] = ACTIONS(1530), - [aux_sym_cmd_identifier_token5] = ACTIONS(1530), - [aux_sym_cmd_identifier_token6] = ACTIONS(1530), - [aux_sym_cmd_identifier_token7] = ACTIONS(1530), - [aux_sym_cmd_identifier_token8] = ACTIONS(1530), - [aux_sym_cmd_identifier_token9] = ACTIONS(1530), - [aux_sym_cmd_identifier_token10] = ACTIONS(1530), - [aux_sym_cmd_identifier_token11] = ACTIONS(1530), - [aux_sym_cmd_identifier_token12] = ACTIONS(1530), - [aux_sym_cmd_identifier_token13] = ACTIONS(1530), - [aux_sym_cmd_identifier_token14] = ACTIONS(1530), - [aux_sym_cmd_identifier_token15] = ACTIONS(1530), - [aux_sym_cmd_identifier_token16] = ACTIONS(1530), - [aux_sym_cmd_identifier_token17] = ACTIONS(1530), - [aux_sym_cmd_identifier_token18] = ACTIONS(1530), - [aux_sym_cmd_identifier_token19] = ACTIONS(1530), - [aux_sym_cmd_identifier_token20] = ACTIONS(1530), - [aux_sym_cmd_identifier_token21] = ACTIONS(1530), - [aux_sym_cmd_identifier_token22] = ACTIONS(1530), - [aux_sym_cmd_identifier_token23] = ACTIONS(1530), - [aux_sym_cmd_identifier_token24] = ACTIONS(1530), - [aux_sym_cmd_identifier_token25] = ACTIONS(1530), - [aux_sym_cmd_identifier_token26] = ACTIONS(1530), - [aux_sym_cmd_identifier_token27] = ACTIONS(1530), - [aux_sym_cmd_identifier_token28] = ACTIONS(1530), - [aux_sym_cmd_identifier_token29] = ACTIONS(1530), - [aux_sym_cmd_identifier_token30] = ACTIONS(1530), - [aux_sym_cmd_identifier_token31] = ACTIONS(1530), - [aux_sym_cmd_identifier_token32] = ACTIONS(1530), - [aux_sym_cmd_identifier_token33] = ACTIONS(1530), - [aux_sym_cmd_identifier_token34] = ACTIONS(1530), - [aux_sym_cmd_identifier_token35] = ACTIONS(1530), - [aux_sym_cmd_identifier_token36] = ACTIONS(1530), - [aux_sym_cmd_identifier_token37] = ACTIONS(1530), - [aux_sym_cmd_identifier_token38] = ACTIONS(1530), - [aux_sym_cmd_identifier_token39] = ACTIONS(1530), - [aux_sym_cmd_identifier_token40] = ACTIONS(1530), - [anon_sym_def] = ACTIONS(1530), - [anon_sym_export_DASHenv] = ACTIONS(1530), - [anon_sym_extern] = ACTIONS(1530), - [anon_sym_module] = ACTIONS(1530), - [anon_sym_use] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_DOLLAR] = ACTIONS(1532), - [anon_sym_error] = ACTIONS(1530), - [anon_sym_DASH2] = ACTIONS(1530), - [anon_sym_break] = ACTIONS(1530), - [anon_sym_continue] = ACTIONS(1530), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_in2] = ACTIONS(1530), - [anon_sym_loop] = ACTIONS(1530), - [anon_sym_make] = ACTIONS(1530), - [anon_sym_while] = ACTIONS(1530), - [anon_sym_do] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1530), - [anon_sym_else] = ACTIONS(1530), - [anon_sym_match] = ACTIONS(1530), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_try] = ACTIONS(1530), - [anon_sym_catch] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1530), - [anon_sym_source] = ACTIONS(1530), - [anon_sym_source_DASHenv] = ACTIONS(1530), - [anon_sym_register] = ACTIONS(1530), - [anon_sym_hide] = ACTIONS(1530), - [anon_sym_hide_DASHenv] = ACTIONS(1530), - [anon_sym_overlay] = ACTIONS(1530), - [anon_sym_as] = ACTIONS(1530), - [anon_sym_LPAREN2] = ACTIONS(1534), - [anon_sym_PLUS2] = ACTIONS(1530), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1530), - [anon_sym_DOT] = ACTIONS(1536), - [aux_sym__immediate_decimal_token1] = ACTIONS(1538), - [aux_sym__immediate_decimal_token3] = ACTIONS(1538), - [aux_sym__immediate_decimal_token4] = ACTIONS(1540), - [aux_sym__immediate_decimal_token5] = ACTIONS(1542), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1530), - [aux_sym__val_number_decimal_token1] = ACTIONS(1530), - [aux_sym__val_number_decimal_token2] = ACTIONS(1530), - [aux_sym__val_number_decimal_token3] = ACTIONS(1530), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(1530), - [aux_sym__val_number_token2] = ACTIONS(1530), - [aux_sym__val_number_token3] = ACTIONS(1530), - [aux_sym__val_number_token4] = ACTIONS(1530), - [aux_sym__val_number_token5] = ACTIONS(1530), - [aux_sym__val_number_token6] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1530), - [sym__str_single_quotes] = ACTIONS(1530), - [sym__str_back_ticks] = ACTIONS(1530), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1530), - [sym__entry_separator] = ACTIONS(1544), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1546), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1544), - }, - [311] = { - [sym_comment] = STATE(311), - [ts_builtin_sym_end] = ACTIONS(1548), - [anon_sym_export] = ACTIONS(1550), - [anon_sym_alias] = ACTIONS(1550), - [anon_sym_let] = ACTIONS(1550), - [anon_sym_let_DASHenv] = ACTIONS(1550), - [anon_sym_mut] = ACTIONS(1550), - [anon_sym_const] = ACTIONS(1550), - [aux_sym_cmd_identifier_token1] = ACTIONS(1550), - [aux_sym_cmd_identifier_token2] = ACTIONS(1548), - [aux_sym_cmd_identifier_token3] = ACTIONS(1548), - [aux_sym_cmd_identifier_token4] = ACTIONS(1548), - [aux_sym_cmd_identifier_token5] = ACTIONS(1548), - [aux_sym_cmd_identifier_token6] = ACTIONS(1548), - [aux_sym_cmd_identifier_token7] = ACTIONS(1548), - [aux_sym_cmd_identifier_token8] = ACTIONS(1550), - [aux_sym_cmd_identifier_token9] = ACTIONS(1550), - [aux_sym_cmd_identifier_token10] = ACTIONS(1548), - [aux_sym_cmd_identifier_token11] = ACTIONS(1548), - [aux_sym_cmd_identifier_token12] = ACTIONS(1550), - [aux_sym_cmd_identifier_token13] = ACTIONS(1550), - [aux_sym_cmd_identifier_token14] = ACTIONS(1550), - [aux_sym_cmd_identifier_token15] = ACTIONS(1550), - [aux_sym_cmd_identifier_token16] = ACTIONS(1548), - [aux_sym_cmd_identifier_token17] = ACTIONS(1548), - [aux_sym_cmd_identifier_token18] = ACTIONS(1548), - [aux_sym_cmd_identifier_token19] = ACTIONS(1548), - [aux_sym_cmd_identifier_token20] = ACTIONS(1548), - [aux_sym_cmd_identifier_token21] = ACTIONS(1548), - [aux_sym_cmd_identifier_token22] = ACTIONS(1548), - [aux_sym_cmd_identifier_token23] = ACTIONS(1548), - [aux_sym_cmd_identifier_token24] = ACTIONS(1548), - [aux_sym_cmd_identifier_token25] = ACTIONS(1548), - [aux_sym_cmd_identifier_token26] = ACTIONS(1548), - [aux_sym_cmd_identifier_token27] = ACTIONS(1548), - [aux_sym_cmd_identifier_token28] = ACTIONS(1548), - [aux_sym_cmd_identifier_token29] = ACTIONS(1548), - [aux_sym_cmd_identifier_token30] = ACTIONS(1548), - [aux_sym_cmd_identifier_token31] = ACTIONS(1548), - [aux_sym_cmd_identifier_token32] = ACTIONS(1548), - [aux_sym_cmd_identifier_token33] = ACTIONS(1548), - [aux_sym_cmd_identifier_token34] = ACTIONS(1550), - [aux_sym_cmd_identifier_token35] = ACTIONS(1548), - [aux_sym_cmd_identifier_token36] = ACTIONS(1548), - [aux_sym_cmd_identifier_token37] = ACTIONS(1548), - [aux_sym_cmd_identifier_token38] = ACTIONS(1550), - [aux_sym_cmd_identifier_token39] = ACTIONS(1548), - [aux_sym_cmd_identifier_token40] = ACTIONS(1548), - [sym__newline] = ACTIONS(1548), - [anon_sym_SEMI] = ACTIONS(1548), - [anon_sym_def] = ACTIONS(1550), - [anon_sym_export_DASHenv] = ACTIONS(1550), - [anon_sym_extern] = ACTIONS(1550), - [anon_sym_module] = ACTIONS(1550), - [anon_sym_use] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1548), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_error] = ACTIONS(1550), - [anon_sym_DASH2] = ACTIONS(1550), - [anon_sym_break] = ACTIONS(1550), - [anon_sym_continue] = ACTIONS(1550), - [anon_sym_for] = ACTIONS(1550), - [anon_sym_loop] = ACTIONS(1550), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_do] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_match] = ACTIONS(1550), - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_DOT_DOT] = ACTIONS(1550), - [anon_sym_try] = ACTIONS(1550), - [anon_sym_return] = ACTIONS(1550), - [anon_sym_source] = ACTIONS(1550), - [anon_sym_source_DASHenv] = ACTIONS(1550), - [anon_sym_register] = ACTIONS(1550), - [anon_sym_hide] = ACTIONS(1550), - [anon_sym_hide_DASHenv] = ACTIONS(1550), - [anon_sym_overlay] = ACTIONS(1550), - [anon_sym_where] = ACTIONS(1548), - [aux_sym_expr_unary_token1] = ACTIONS(1548), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1548), - [anon_sym_DOT_DOT_LT] = ACTIONS(1548), - [anon_sym_null] = ACTIONS(1550), - [anon_sym_true] = ACTIONS(1550), - [anon_sym_false] = ACTIONS(1550), - [aux_sym__val_number_decimal_token1] = ACTIONS(1550), - [aux_sym__val_number_decimal_token2] = ACTIONS(1548), - [aux_sym__val_number_decimal_token3] = ACTIONS(1548), - [aux_sym__val_number_decimal_token4] = ACTIONS(1548), - [aux_sym__val_number_token1] = ACTIONS(1548), - [aux_sym__val_number_token2] = ACTIONS(1548), - [aux_sym__val_number_token3] = ACTIONS(1548), - [aux_sym__val_number_token4] = ACTIONS(1550), - [aux_sym__val_number_token5] = ACTIONS(1550), - [aux_sym__val_number_token6] = ACTIONS(1550), - [anon_sym_0b] = ACTIONS(1550), - [anon_sym_0o] = ACTIONS(1550), - [anon_sym_0x] = ACTIONS(1550), - [sym_val_date] = ACTIONS(1548), - [anon_sym_DQUOTE] = ACTIONS(1548), - [sym__str_single_quotes] = ACTIONS(1548), - [sym__str_back_ticks] = ACTIONS(1548), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1548), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1548), - [aux_sym_env_var_token1] = ACTIONS(1550), - [anon_sym_CARET] = ACTIONS(1548), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1548), - }, [312] = { [sym_comment] = STATE(312), - [anon_sym_export] = ACTIONS(1552), - [anon_sym_alias] = ACTIONS(1552), - [anon_sym_let] = ACTIONS(1552), - [anon_sym_let_DASHenv] = ACTIONS(1552), - [anon_sym_mut] = ACTIONS(1552), - [anon_sym_const] = ACTIONS(1552), - [aux_sym_cmd_identifier_token1] = ACTIONS(1552), - [aux_sym_cmd_identifier_token2] = ACTIONS(1554), - [aux_sym_cmd_identifier_token3] = ACTIONS(1554), - [aux_sym_cmd_identifier_token4] = ACTIONS(1554), - [aux_sym_cmd_identifier_token5] = ACTIONS(1554), - [aux_sym_cmd_identifier_token6] = ACTIONS(1554), - [aux_sym_cmd_identifier_token7] = ACTIONS(1554), - [aux_sym_cmd_identifier_token8] = ACTIONS(1552), - [aux_sym_cmd_identifier_token9] = ACTIONS(1552), - [aux_sym_cmd_identifier_token10] = ACTIONS(1554), - [aux_sym_cmd_identifier_token11] = ACTIONS(1554), - [aux_sym_cmd_identifier_token12] = ACTIONS(1552), - [aux_sym_cmd_identifier_token13] = ACTIONS(1552), - [aux_sym_cmd_identifier_token14] = ACTIONS(1552), - [aux_sym_cmd_identifier_token15] = ACTIONS(1552), - [aux_sym_cmd_identifier_token16] = ACTIONS(1554), - [aux_sym_cmd_identifier_token17] = ACTIONS(1554), - [aux_sym_cmd_identifier_token18] = ACTIONS(1554), - [aux_sym_cmd_identifier_token19] = ACTIONS(1554), - [aux_sym_cmd_identifier_token20] = ACTIONS(1554), - [aux_sym_cmd_identifier_token21] = ACTIONS(1554), - [aux_sym_cmd_identifier_token22] = ACTIONS(1554), - [aux_sym_cmd_identifier_token23] = ACTIONS(1554), - [aux_sym_cmd_identifier_token24] = ACTIONS(1554), - [aux_sym_cmd_identifier_token25] = ACTIONS(1554), - [aux_sym_cmd_identifier_token26] = ACTIONS(1554), - [aux_sym_cmd_identifier_token27] = ACTIONS(1554), - [aux_sym_cmd_identifier_token28] = ACTIONS(1554), - [aux_sym_cmd_identifier_token29] = ACTIONS(1554), - [aux_sym_cmd_identifier_token30] = ACTIONS(1554), - [aux_sym_cmd_identifier_token31] = ACTIONS(1554), - [aux_sym_cmd_identifier_token32] = ACTIONS(1554), - [aux_sym_cmd_identifier_token33] = ACTIONS(1554), - [aux_sym_cmd_identifier_token34] = ACTIONS(1552), - [aux_sym_cmd_identifier_token35] = ACTIONS(1554), - [aux_sym_cmd_identifier_token36] = ACTIONS(1554), - [aux_sym_cmd_identifier_token37] = ACTIONS(1554), - [aux_sym_cmd_identifier_token38] = ACTIONS(1552), - [aux_sym_cmd_identifier_token39] = ACTIONS(1554), - [aux_sym_cmd_identifier_token40] = ACTIONS(1554), - [sym__newline] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_def] = ACTIONS(1552), - [anon_sym_export_DASHenv] = ACTIONS(1552), - [anon_sym_extern] = ACTIONS(1552), - [anon_sym_module] = ACTIONS(1552), - [anon_sym_use] = ACTIONS(1552), - [anon_sym_LBRACK] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1554), + [anon_sym_export] = ACTIONS(1536), + [anon_sym_alias] = ACTIONS(1536), + [anon_sym_let] = ACTIONS(1536), + [anon_sym_let_DASHenv] = ACTIONS(1536), + [anon_sym_mut] = ACTIONS(1536), + [anon_sym_const] = ACTIONS(1536), + [aux_sym_cmd_identifier_token1] = ACTIONS(1536), + [aux_sym_cmd_identifier_token2] = ACTIONS(1538), + [aux_sym_cmd_identifier_token3] = ACTIONS(1538), + [aux_sym_cmd_identifier_token4] = ACTIONS(1538), + [aux_sym_cmd_identifier_token5] = ACTIONS(1538), + [aux_sym_cmd_identifier_token6] = ACTIONS(1538), + [aux_sym_cmd_identifier_token7] = ACTIONS(1538), + [aux_sym_cmd_identifier_token8] = ACTIONS(1536), + [aux_sym_cmd_identifier_token9] = ACTIONS(1536), + [aux_sym_cmd_identifier_token10] = ACTIONS(1538), + [aux_sym_cmd_identifier_token11] = ACTIONS(1538), + [aux_sym_cmd_identifier_token12] = ACTIONS(1536), + [aux_sym_cmd_identifier_token13] = ACTIONS(1536), + [aux_sym_cmd_identifier_token14] = ACTIONS(1536), + [aux_sym_cmd_identifier_token15] = ACTIONS(1536), + [aux_sym_cmd_identifier_token16] = ACTIONS(1538), + [aux_sym_cmd_identifier_token17] = ACTIONS(1538), + [aux_sym_cmd_identifier_token18] = ACTIONS(1538), + [aux_sym_cmd_identifier_token19] = ACTIONS(1538), + [aux_sym_cmd_identifier_token20] = ACTIONS(1538), + [aux_sym_cmd_identifier_token21] = ACTIONS(1538), + [aux_sym_cmd_identifier_token22] = ACTIONS(1538), + [aux_sym_cmd_identifier_token23] = ACTIONS(1538), + [aux_sym_cmd_identifier_token24] = ACTIONS(1538), + [aux_sym_cmd_identifier_token25] = ACTIONS(1538), + [aux_sym_cmd_identifier_token26] = ACTIONS(1538), + [aux_sym_cmd_identifier_token27] = ACTIONS(1538), + [aux_sym_cmd_identifier_token28] = ACTIONS(1538), + [aux_sym_cmd_identifier_token29] = ACTIONS(1538), + [aux_sym_cmd_identifier_token30] = ACTIONS(1538), + [aux_sym_cmd_identifier_token31] = ACTIONS(1538), + [aux_sym_cmd_identifier_token32] = ACTIONS(1538), + [aux_sym_cmd_identifier_token33] = ACTIONS(1538), + [aux_sym_cmd_identifier_token34] = ACTIONS(1536), + [aux_sym_cmd_identifier_token35] = ACTIONS(1538), + [aux_sym_cmd_identifier_token36] = ACTIONS(1538), + [aux_sym_cmd_identifier_token37] = ACTIONS(1538), + [aux_sym_cmd_identifier_token38] = ACTIONS(1536), + [aux_sym_cmd_identifier_token39] = ACTIONS(1538), + [aux_sym_cmd_identifier_token40] = ACTIONS(1538), + [sym__newline] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_def] = ACTIONS(1536), + [anon_sym_export_DASHenv] = ACTIONS(1536), + [anon_sym_extern] = ACTIONS(1536), + [anon_sym_module] = ACTIONS(1536), + [anon_sym_use] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1538), [anon_sym_RPAREN] = ACTIONS(1292), - [anon_sym_DOLLAR] = ACTIONS(1552), - [anon_sym_error] = ACTIONS(1552), - [anon_sym_DASH2] = ACTIONS(1552), - [anon_sym_break] = ACTIONS(1552), - [anon_sym_continue] = ACTIONS(1552), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_loop] = ACTIONS(1552), - [anon_sym_while] = ACTIONS(1552), - [anon_sym_do] = ACTIONS(1552), - [anon_sym_if] = ACTIONS(1552), - [anon_sym_match] = ACTIONS(1552), - [anon_sym_LBRACE] = ACTIONS(1554), - [anon_sym_DOT_DOT] = ACTIONS(1552), - [anon_sym_try] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1552), - [anon_sym_source] = ACTIONS(1552), - [anon_sym_source_DASHenv] = ACTIONS(1552), - [anon_sym_register] = ACTIONS(1552), - [anon_sym_hide] = ACTIONS(1552), - [anon_sym_hide_DASHenv] = ACTIONS(1552), - [anon_sym_overlay] = ACTIONS(1552), - [anon_sym_where] = ACTIONS(1554), - [aux_sym_expr_unary_token1] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1554), - [anon_sym_DOT_DOT_LT] = ACTIONS(1554), - [anon_sym_null] = ACTIONS(1552), - [anon_sym_true] = ACTIONS(1552), - [anon_sym_false] = ACTIONS(1552), - [aux_sym__val_number_decimal_token1] = ACTIONS(1552), - [aux_sym__val_number_decimal_token2] = ACTIONS(1554), - [aux_sym__val_number_decimal_token3] = ACTIONS(1554), - [aux_sym__val_number_decimal_token4] = ACTIONS(1554), - [aux_sym__val_number_token1] = ACTIONS(1554), - [aux_sym__val_number_token2] = ACTIONS(1554), - [aux_sym__val_number_token3] = ACTIONS(1554), - [aux_sym__val_number_token4] = ACTIONS(1552), - [aux_sym__val_number_token5] = ACTIONS(1552), - [aux_sym__val_number_token6] = ACTIONS(1552), - [anon_sym_0b] = ACTIONS(1552), - [anon_sym_0o] = ACTIONS(1552), - [anon_sym_0x] = ACTIONS(1552), - [sym_val_date] = ACTIONS(1554), - [anon_sym_DQUOTE] = ACTIONS(1554), - [sym__str_single_quotes] = ACTIONS(1554), - [sym__str_back_ticks] = ACTIONS(1554), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1554), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1554), - [aux_sym_env_var_token1] = ACTIONS(1552), - [anon_sym_CARET] = ACTIONS(1554), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1554), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_error] = ACTIONS(1536), + [anon_sym_DASH2] = ACTIONS(1536), + [anon_sym_break] = ACTIONS(1536), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_loop] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(1536), + [anon_sym_do] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_match] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_DOT_DOT] = ACTIONS(1536), + [anon_sym_try] = ACTIONS(1536), + [anon_sym_return] = ACTIONS(1536), + [anon_sym_source] = ACTIONS(1536), + [anon_sym_source_DASHenv] = ACTIONS(1536), + [anon_sym_register] = ACTIONS(1536), + [anon_sym_hide] = ACTIONS(1536), + [anon_sym_hide_DASHenv] = ACTIONS(1536), + [anon_sym_overlay] = ACTIONS(1536), + [anon_sym_where] = ACTIONS(1538), + [aux_sym_expr_unary_token1] = ACTIONS(1538), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT] = ACTIONS(1538), + [anon_sym_null] = ACTIONS(1536), + [anon_sym_true] = ACTIONS(1536), + [anon_sym_false] = ACTIONS(1536), + [aux_sym__val_number_decimal_token1] = ACTIONS(1536), + [aux_sym__val_number_decimal_token2] = ACTIONS(1538), + [aux_sym__val_number_decimal_token3] = ACTIONS(1538), + [aux_sym__val_number_decimal_token4] = ACTIONS(1538), + [aux_sym__val_number_token1] = ACTIONS(1538), + [aux_sym__val_number_token2] = ACTIONS(1538), + [aux_sym__val_number_token3] = ACTIONS(1538), + [aux_sym__val_number_token4] = ACTIONS(1536), + [aux_sym__val_number_token5] = ACTIONS(1536), + [aux_sym__val_number_token6] = ACTIONS(1536), + [anon_sym_0b] = ACTIONS(1536), + [anon_sym_0o] = ACTIONS(1536), + [anon_sym_0x] = ACTIONS(1536), + [sym_val_date] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [sym__str_single_quotes] = ACTIONS(1538), + [sym__str_back_ticks] = ACTIONS(1538), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1538), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1538), + [aux_sym_env_var_token1] = ACTIONS(1536), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1538), }, [313] = { + [sym__expr_parenthesized_immediate] = STATE(487), + [sym__immediate_decimal] = STATE(380), + [sym_val_variable] = STATE(487), [sym_comment] = STATE(313), - [aux_sym_shebang_repeat1] = STATE(229), - [anon_sym_export] = ACTIONS(1559), - [anon_sym_alias] = ACTIONS(1559), - [anon_sym_let] = ACTIONS(1559), - [anon_sym_let_DASHenv] = ACTIONS(1559), - [anon_sym_mut] = ACTIONS(1559), - [anon_sym_const] = ACTIONS(1559), - [aux_sym_cmd_identifier_token1] = ACTIONS(1559), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_alias] = ACTIONS(1543), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_let_DASHenv] = ACTIONS(1543), + [anon_sym_mut] = ACTIONS(1543), + [anon_sym_const] = ACTIONS(1543), + [aux_sym_cmd_identifier_token1] = ACTIONS(1543), + [aux_sym_cmd_identifier_token2] = ACTIONS(1543), + [aux_sym_cmd_identifier_token3] = ACTIONS(1543), + [aux_sym_cmd_identifier_token4] = ACTIONS(1543), + [aux_sym_cmd_identifier_token5] = ACTIONS(1543), + [aux_sym_cmd_identifier_token6] = ACTIONS(1543), + [aux_sym_cmd_identifier_token7] = ACTIONS(1543), + [aux_sym_cmd_identifier_token8] = ACTIONS(1543), + [aux_sym_cmd_identifier_token9] = ACTIONS(1543), + [aux_sym_cmd_identifier_token10] = ACTIONS(1543), + [aux_sym_cmd_identifier_token11] = ACTIONS(1543), + [aux_sym_cmd_identifier_token12] = ACTIONS(1543), + [aux_sym_cmd_identifier_token13] = ACTIONS(1543), + [aux_sym_cmd_identifier_token14] = ACTIONS(1543), + [aux_sym_cmd_identifier_token15] = ACTIONS(1543), + [aux_sym_cmd_identifier_token16] = ACTIONS(1543), + [aux_sym_cmd_identifier_token17] = ACTIONS(1543), + [aux_sym_cmd_identifier_token18] = ACTIONS(1543), + [aux_sym_cmd_identifier_token19] = ACTIONS(1543), + [aux_sym_cmd_identifier_token20] = ACTIONS(1543), + [aux_sym_cmd_identifier_token21] = ACTIONS(1543), + [aux_sym_cmd_identifier_token22] = ACTIONS(1543), + [aux_sym_cmd_identifier_token23] = ACTIONS(1543), + [aux_sym_cmd_identifier_token24] = ACTIONS(1543), + [aux_sym_cmd_identifier_token25] = ACTIONS(1543), + [aux_sym_cmd_identifier_token26] = ACTIONS(1543), + [aux_sym_cmd_identifier_token27] = ACTIONS(1543), + [aux_sym_cmd_identifier_token28] = ACTIONS(1543), + [aux_sym_cmd_identifier_token29] = ACTIONS(1543), + [aux_sym_cmd_identifier_token30] = ACTIONS(1543), + [aux_sym_cmd_identifier_token31] = ACTIONS(1543), + [aux_sym_cmd_identifier_token32] = ACTIONS(1543), + [aux_sym_cmd_identifier_token33] = ACTIONS(1543), + [aux_sym_cmd_identifier_token34] = ACTIONS(1543), + [aux_sym_cmd_identifier_token35] = ACTIONS(1543), + [aux_sym_cmd_identifier_token36] = ACTIONS(1543), + [aux_sym_cmd_identifier_token37] = ACTIONS(1543), + [aux_sym_cmd_identifier_token38] = ACTIONS(1543), + [aux_sym_cmd_identifier_token39] = ACTIONS(1543), + [aux_sym_cmd_identifier_token40] = ACTIONS(1543), + [anon_sym_def] = ACTIONS(1543), + [anon_sym_export_DASHenv] = ACTIONS(1543), + [anon_sym_extern] = ACTIONS(1543), + [anon_sym_module] = ACTIONS(1543), + [anon_sym_use] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1545), + [anon_sym_error] = ACTIONS(1543), + [anon_sym_DASH2] = ACTIONS(1543), + [anon_sym_break] = ACTIONS(1543), + [anon_sym_continue] = ACTIONS(1543), + [anon_sym_for] = ACTIONS(1543), + [anon_sym_in2] = ACTIONS(1543), + [anon_sym_loop] = ACTIONS(1543), + [anon_sym_make] = ACTIONS(1543), + [anon_sym_while] = ACTIONS(1543), + [anon_sym_do] = ACTIONS(1543), + [anon_sym_if] = ACTIONS(1543), + [anon_sym_else] = ACTIONS(1543), + [anon_sym_match] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1543), + [anon_sym_catch] = ACTIONS(1543), + [anon_sym_return] = ACTIONS(1543), + [anon_sym_source] = ACTIONS(1543), + [anon_sym_source_DASHenv] = ACTIONS(1543), + [anon_sym_register] = ACTIONS(1543), + [anon_sym_hide] = ACTIONS(1543), + [anon_sym_hide_DASHenv] = ACTIONS(1543), + [anon_sym_overlay] = ACTIONS(1543), + [anon_sym_as] = ACTIONS(1543), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_PLUS2] = ACTIONS(1543), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1543), + [anon_sym_DOT] = ACTIONS(1549), + [aux_sym__immediate_decimal_token1] = ACTIONS(1551), + [aux_sym__immediate_decimal_token3] = ACTIONS(1551), + [aux_sym__immediate_decimal_token4] = ACTIONS(1553), + [aux_sym__immediate_decimal_token5] = ACTIONS(1555), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1543), + [aux_sym__val_number_decimal_token1] = ACTIONS(1543), + [aux_sym__val_number_decimal_token2] = ACTIONS(1543), + [aux_sym__val_number_decimal_token3] = ACTIONS(1543), + [aux_sym__val_number_decimal_token4] = ACTIONS(1543), + [aux_sym__val_number_token1] = ACTIONS(1543), + [aux_sym__val_number_token2] = ACTIONS(1543), + [aux_sym__val_number_token3] = ACTIONS(1543), + [aux_sym__val_number_token4] = ACTIONS(1543), + [aux_sym__val_number_token5] = ACTIONS(1543), + [aux_sym__val_number_token6] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1543), + [sym__str_single_quotes] = ACTIONS(1543), + [sym__str_back_ticks] = ACTIONS(1543), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1543), + [sym__entry_separator] = ACTIONS(1557), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1559), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1557), + }, + [314] = { + [sym_comment] = STATE(314), + [ts_builtin_sym_end] = ACTIONS(1561), + [anon_sym_export] = ACTIONS(1563), + [anon_sym_alias] = ACTIONS(1563), + [anon_sym_let] = ACTIONS(1563), + [anon_sym_let_DASHenv] = ACTIONS(1563), + [anon_sym_mut] = ACTIONS(1563), + [anon_sym_const] = ACTIONS(1563), + [aux_sym_cmd_identifier_token1] = ACTIONS(1563), [aux_sym_cmd_identifier_token2] = ACTIONS(1561), [aux_sym_cmd_identifier_token3] = ACTIONS(1561), [aux_sym_cmd_identifier_token4] = ACTIONS(1561), [aux_sym_cmd_identifier_token5] = ACTIONS(1561), [aux_sym_cmd_identifier_token6] = ACTIONS(1561), [aux_sym_cmd_identifier_token7] = ACTIONS(1561), - [aux_sym_cmd_identifier_token8] = ACTIONS(1559), - [aux_sym_cmd_identifier_token9] = ACTIONS(1559), + [aux_sym_cmd_identifier_token8] = ACTIONS(1563), + [aux_sym_cmd_identifier_token9] = ACTIONS(1563), [aux_sym_cmd_identifier_token10] = ACTIONS(1561), [aux_sym_cmd_identifier_token11] = ACTIONS(1561), - [aux_sym_cmd_identifier_token12] = ACTIONS(1559), - [aux_sym_cmd_identifier_token13] = ACTIONS(1559), - [aux_sym_cmd_identifier_token14] = ACTIONS(1559), - [aux_sym_cmd_identifier_token15] = ACTIONS(1559), + [aux_sym_cmd_identifier_token12] = ACTIONS(1563), + [aux_sym_cmd_identifier_token13] = ACTIONS(1563), + [aux_sym_cmd_identifier_token14] = ACTIONS(1563), + [aux_sym_cmd_identifier_token15] = ACTIONS(1563), [aux_sym_cmd_identifier_token16] = ACTIONS(1561), [aux_sym_cmd_identifier_token17] = ACTIONS(1561), [aux_sym_cmd_identifier_token18] = ACTIONS(1561), @@ -110073,216 +110505,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(1561), [aux_sym_cmd_identifier_token32] = ACTIONS(1561), [aux_sym_cmd_identifier_token33] = ACTIONS(1561), - [aux_sym_cmd_identifier_token34] = ACTIONS(1559), + [aux_sym_cmd_identifier_token34] = ACTIONS(1563), [aux_sym_cmd_identifier_token35] = ACTIONS(1561), [aux_sym_cmd_identifier_token36] = ACTIONS(1561), [aux_sym_cmd_identifier_token37] = ACTIONS(1561), - [aux_sym_cmd_identifier_token38] = ACTIONS(1559), + [aux_sym_cmd_identifier_token38] = ACTIONS(1563), [aux_sym_cmd_identifier_token39] = ACTIONS(1561), [aux_sym_cmd_identifier_token40] = ACTIONS(1561), - [sym__newline] = ACTIONS(1489), - [anon_sym_SEMI] = ACTIONS(1563), - [anon_sym_def] = ACTIONS(1559), - [anon_sym_export_DASHenv] = ACTIONS(1559), - [anon_sym_extern] = ACTIONS(1559), - [anon_sym_module] = ACTIONS(1559), - [anon_sym_use] = ACTIONS(1559), + [sym__newline] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_def] = ACTIONS(1563), + [anon_sym_export_DASHenv] = ACTIONS(1563), + [anon_sym_extern] = ACTIONS(1563), + [anon_sym_module] = ACTIONS(1563), + [anon_sym_use] = ACTIONS(1563), [anon_sym_LBRACK] = ACTIONS(1561), [anon_sym_LPAREN] = ACTIONS(1561), - [anon_sym_DOLLAR] = ACTIONS(1559), - [anon_sym_error] = ACTIONS(1559), - [anon_sym_DASH2] = ACTIONS(1559), - [anon_sym_break] = ACTIONS(1559), - [anon_sym_continue] = ACTIONS(1559), - [anon_sym_for] = ACTIONS(1559), - [anon_sym_loop] = ACTIONS(1559), - [anon_sym_while] = ACTIONS(1559), - [anon_sym_do] = ACTIONS(1559), - [anon_sym_if] = ACTIONS(1559), - [anon_sym_match] = ACTIONS(1559), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_error] = ACTIONS(1563), + [anon_sym_DASH2] = ACTIONS(1563), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1563), + [anon_sym_for] = ACTIONS(1563), + [anon_sym_loop] = ACTIONS(1563), + [anon_sym_while] = ACTIONS(1563), + [anon_sym_do] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1563), + [anon_sym_match] = ACTIONS(1563), [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_DOT_DOT] = ACTIONS(1559), - [anon_sym_try] = ACTIONS(1559), - [anon_sym_return] = ACTIONS(1559), - [anon_sym_source] = ACTIONS(1559), - [anon_sym_source_DASHenv] = ACTIONS(1559), - [anon_sym_register] = ACTIONS(1559), - [anon_sym_hide] = ACTIONS(1559), - [anon_sym_hide_DASHenv] = ACTIONS(1559), - [anon_sym_overlay] = ACTIONS(1559), + [anon_sym_DOT_DOT] = ACTIONS(1563), + [anon_sym_try] = ACTIONS(1563), + [anon_sym_return] = ACTIONS(1563), + [anon_sym_source] = ACTIONS(1563), + [anon_sym_source_DASHenv] = ACTIONS(1563), + [anon_sym_register] = ACTIONS(1563), + [anon_sym_hide] = ACTIONS(1563), + [anon_sym_hide_DASHenv] = ACTIONS(1563), + [anon_sym_overlay] = ACTIONS(1563), [anon_sym_where] = ACTIONS(1561), [aux_sym_expr_unary_token1] = ACTIONS(1561), [anon_sym_DOT_DOT_EQ] = ACTIONS(1561), [anon_sym_DOT_DOT_LT] = ACTIONS(1561), - [anon_sym_null] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1559), - [anon_sym_false] = ACTIONS(1559), - [aux_sym__val_number_decimal_token1] = ACTIONS(1559), + [anon_sym_null] = ACTIONS(1563), + [anon_sym_true] = ACTIONS(1563), + [anon_sym_false] = ACTIONS(1563), + [aux_sym__val_number_decimal_token1] = ACTIONS(1563), [aux_sym__val_number_decimal_token2] = ACTIONS(1561), [aux_sym__val_number_decimal_token3] = ACTIONS(1561), [aux_sym__val_number_decimal_token4] = ACTIONS(1561), [aux_sym__val_number_token1] = ACTIONS(1561), [aux_sym__val_number_token2] = ACTIONS(1561), [aux_sym__val_number_token3] = ACTIONS(1561), - [aux_sym__val_number_token4] = ACTIONS(1559), - [aux_sym__val_number_token5] = ACTIONS(1559), - [aux_sym__val_number_token6] = ACTIONS(1559), - [anon_sym_0b] = ACTIONS(1559), - [anon_sym_0o] = ACTIONS(1559), - [anon_sym_0x] = ACTIONS(1559), + [aux_sym__val_number_token4] = ACTIONS(1563), + [aux_sym__val_number_token5] = ACTIONS(1563), + [aux_sym__val_number_token6] = ACTIONS(1563), + [anon_sym_0b] = ACTIONS(1563), + [anon_sym_0o] = ACTIONS(1563), + [anon_sym_0x] = ACTIONS(1563), [sym_val_date] = ACTIONS(1561), [anon_sym_DQUOTE] = ACTIONS(1561), [sym__str_single_quotes] = ACTIONS(1561), [sym__str_back_ticks] = ACTIONS(1561), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1561), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1561), - [aux_sym_env_var_token1] = ACTIONS(1559), + [aux_sym_env_var_token1] = ACTIONS(1563), [anon_sym_CARET] = ACTIONS(1561), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1561), }, - [314] = { - [sym_comment] = STATE(314), - [aux_sym__block_body_repeat1] = STATE(223), - [anon_sym_export] = ACTIONS(1453), - [anon_sym_alias] = ACTIONS(1453), - [anon_sym_let] = ACTIONS(1453), - [anon_sym_let_DASHenv] = ACTIONS(1453), - [anon_sym_mut] = ACTIONS(1453), - [anon_sym_const] = ACTIONS(1453), - [aux_sym_cmd_identifier_token1] = ACTIONS(1453), - [aux_sym_cmd_identifier_token2] = ACTIONS(1455), - [aux_sym_cmd_identifier_token3] = ACTIONS(1455), - [aux_sym_cmd_identifier_token4] = ACTIONS(1455), - [aux_sym_cmd_identifier_token5] = ACTIONS(1455), - [aux_sym_cmd_identifier_token6] = ACTIONS(1455), - [aux_sym_cmd_identifier_token7] = ACTIONS(1455), - [aux_sym_cmd_identifier_token8] = ACTIONS(1453), - [aux_sym_cmd_identifier_token9] = ACTIONS(1453), - [aux_sym_cmd_identifier_token10] = ACTIONS(1455), - [aux_sym_cmd_identifier_token11] = ACTIONS(1455), - [aux_sym_cmd_identifier_token12] = ACTIONS(1453), - [aux_sym_cmd_identifier_token13] = ACTIONS(1453), - [aux_sym_cmd_identifier_token14] = ACTIONS(1453), - [aux_sym_cmd_identifier_token15] = ACTIONS(1453), - [aux_sym_cmd_identifier_token16] = ACTIONS(1455), - [aux_sym_cmd_identifier_token17] = ACTIONS(1455), - [aux_sym_cmd_identifier_token18] = ACTIONS(1455), - [aux_sym_cmd_identifier_token19] = ACTIONS(1455), - [aux_sym_cmd_identifier_token20] = ACTIONS(1455), - [aux_sym_cmd_identifier_token21] = ACTIONS(1455), - [aux_sym_cmd_identifier_token22] = ACTIONS(1455), - [aux_sym_cmd_identifier_token23] = ACTIONS(1455), - [aux_sym_cmd_identifier_token24] = ACTIONS(1455), - [aux_sym_cmd_identifier_token25] = ACTIONS(1455), - [aux_sym_cmd_identifier_token26] = ACTIONS(1455), - [aux_sym_cmd_identifier_token27] = ACTIONS(1455), - [aux_sym_cmd_identifier_token28] = ACTIONS(1455), - [aux_sym_cmd_identifier_token29] = ACTIONS(1455), - [aux_sym_cmd_identifier_token30] = ACTIONS(1455), - [aux_sym_cmd_identifier_token31] = ACTIONS(1455), - [aux_sym_cmd_identifier_token32] = ACTIONS(1455), - [aux_sym_cmd_identifier_token33] = ACTIONS(1455), - [aux_sym_cmd_identifier_token34] = ACTIONS(1453), - [aux_sym_cmd_identifier_token35] = ACTIONS(1455), - [aux_sym_cmd_identifier_token36] = ACTIONS(1455), - [aux_sym_cmd_identifier_token37] = ACTIONS(1455), - [aux_sym_cmd_identifier_token38] = ACTIONS(1453), - [aux_sym_cmd_identifier_token39] = ACTIONS(1455), - [aux_sym_cmd_identifier_token40] = ACTIONS(1455), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_def] = ACTIONS(1453), - [anon_sym_export_DASHenv] = ACTIONS(1453), - [anon_sym_extern] = ACTIONS(1453), - [anon_sym_module] = ACTIONS(1453), - [anon_sym_use] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1455), - [anon_sym_DOLLAR] = ACTIONS(1453), - [anon_sym_error] = ACTIONS(1453), - [anon_sym_DASH2] = ACTIONS(1453), - [anon_sym_break] = ACTIONS(1453), - [anon_sym_continue] = ACTIONS(1453), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_loop] = ACTIONS(1453), - [anon_sym_while] = ACTIONS(1453), - [anon_sym_do] = ACTIONS(1453), - [anon_sym_if] = ACTIONS(1453), - [anon_sym_match] = ACTIONS(1453), - [anon_sym_LBRACE] = ACTIONS(1455), - [anon_sym_DOT_DOT] = ACTIONS(1453), - [anon_sym_try] = ACTIONS(1453), - [anon_sym_return] = ACTIONS(1453), - [anon_sym_source] = ACTIONS(1453), - [anon_sym_source_DASHenv] = ACTIONS(1453), - [anon_sym_register] = ACTIONS(1453), - [anon_sym_hide] = ACTIONS(1453), - [anon_sym_hide_DASHenv] = ACTIONS(1453), - [anon_sym_overlay] = ACTIONS(1453), - [anon_sym_where] = ACTIONS(1455), - [aux_sym_expr_unary_token1] = ACTIONS(1455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), - [anon_sym_DOT_DOT_LT] = ACTIONS(1455), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_true] = ACTIONS(1453), - [anon_sym_false] = ACTIONS(1453), - [aux_sym__val_number_decimal_token1] = ACTIONS(1453), - [aux_sym__val_number_decimal_token2] = ACTIONS(1455), - [aux_sym__val_number_decimal_token3] = ACTIONS(1455), - [aux_sym__val_number_decimal_token4] = ACTIONS(1455), - [aux_sym__val_number_token1] = ACTIONS(1455), - [aux_sym__val_number_token2] = ACTIONS(1455), - [aux_sym__val_number_token3] = ACTIONS(1455), - [aux_sym__val_number_token4] = ACTIONS(1453), - [aux_sym__val_number_token5] = ACTIONS(1453), - [aux_sym__val_number_token6] = ACTIONS(1453), - [anon_sym_0b] = ACTIONS(1453), - [anon_sym_0o] = ACTIONS(1453), - [anon_sym_0x] = ACTIONS(1453), - [sym_val_date] = ACTIONS(1455), - [anon_sym_DQUOTE] = ACTIONS(1455), - [sym__str_single_quotes] = ACTIONS(1455), - [sym__str_back_ticks] = ACTIONS(1455), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1455), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1455), - [aux_sym_env_var_token1] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1455), - }, [315] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if] = STATE(4895), - [sym_block] = STATE(4896), - [sym__expression] = STATE(4896), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3969), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1207), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(4896), + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if] = STATE(4871), + [sym_block] = STATE(4874), + [sym__expression] = STATE(4874), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3981), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1226), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(4874), [sym_comment] = STATE(315), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), @@ -110328,8 +110650,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -110337,10 +110659,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1497), - [aux_sym__val_number_decimal_token2] = ACTIONS(1499), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_decimal_token1] = ACTIONS(1565), + [aux_sym__val_number_decimal_token2] = ACTIONS(1567), + [aux_sym__val_number_decimal_token3] = ACTIONS(1569), + [aux_sym__val_number_decimal_token4] = ACTIONS(1571), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -110361,119 +110683,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(435), }, [316] = { - [sym__expr_parenthesized_immediate] = STATE(663), - [sym__immediate_decimal] = STATE(537), - [sym_val_variable] = STATE(663), + [sym_cmd_identifier] = STATE(4546), + [sym__expression] = STATE(3867), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4804), [sym_comment] = STATE(316), - [anon_sym_export] = ACTIONS(1565), - [anon_sym_alias] = ACTIONS(1565), - [anon_sym_let] = ACTIONS(1565), - [anon_sym_let_DASHenv] = ACTIONS(1565), - [anon_sym_mut] = ACTIONS(1565), - [anon_sym_const] = ACTIONS(1565), - [aux_sym_cmd_identifier_token1] = ACTIONS(1565), - [aux_sym_cmd_identifier_token2] = ACTIONS(1565), - [aux_sym_cmd_identifier_token3] = ACTIONS(1565), - [aux_sym_cmd_identifier_token4] = ACTIONS(1565), - [aux_sym_cmd_identifier_token5] = ACTIONS(1565), - [aux_sym_cmd_identifier_token6] = ACTIONS(1565), - [aux_sym_cmd_identifier_token7] = ACTIONS(1565), - [aux_sym_cmd_identifier_token8] = ACTIONS(1565), - [aux_sym_cmd_identifier_token9] = ACTIONS(1565), - [aux_sym_cmd_identifier_token10] = ACTIONS(1565), - [aux_sym_cmd_identifier_token11] = ACTIONS(1565), - [aux_sym_cmd_identifier_token12] = ACTIONS(1565), - [aux_sym_cmd_identifier_token13] = ACTIONS(1565), - [aux_sym_cmd_identifier_token14] = ACTIONS(1565), - [aux_sym_cmd_identifier_token15] = ACTIONS(1565), - [aux_sym_cmd_identifier_token16] = ACTIONS(1565), - [aux_sym_cmd_identifier_token17] = ACTIONS(1565), - [aux_sym_cmd_identifier_token18] = ACTIONS(1565), - [aux_sym_cmd_identifier_token19] = ACTIONS(1565), - [aux_sym_cmd_identifier_token20] = ACTIONS(1565), - [aux_sym_cmd_identifier_token21] = ACTIONS(1565), - [aux_sym_cmd_identifier_token22] = ACTIONS(1565), - [aux_sym_cmd_identifier_token23] = ACTIONS(1565), - [aux_sym_cmd_identifier_token24] = ACTIONS(1565), - [aux_sym_cmd_identifier_token25] = ACTIONS(1565), - [aux_sym_cmd_identifier_token26] = ACTIONS(1565), - [aux_sym_cmd_identifier_token27] = ACTIONS(1565), - [aux_sym_cmd_identifier_token28] = ACTIONS(1565), - [aux_sym_cmd_identifier_token29] = ACTIONS(1565), - [aux_sym_cmd_identifier_token30] = ACTIONS(1565), - [aux_sym_cmd_identifier_token31] = ACTIONS(1565), - [aux_sym_cmd_identifier_token32] = ACTIONS(1565), - [aux_sym_cmd_identifier_token33] = ACTIONS(1565), - [aux_sym_cmd_identifier_token34] = ACTIONS(1565), - [aux_sym_cmd_identifier_token35] = ACTIONS(1565), - [aux_sym_cmd_identifier_token36] = ACTIONS(1565), - [aux_sym_cmd_identifier_token37] = ACTIONS(1565), - [aux_sym_cmd_identifier_token38] = ACTIONS(1565), - [aux_sym_cmd_identifier_token39] = ACTIONS(1565), - [aux_sym_cmd_identifier_token40] = ACTIONS(1565), - [anon_sym_def] = ACTIONS(1565), - [anon_sym_export_DASHenv] = ACTIONS(1565), - [anon_sym_extern] = ACTIONS(1565), - [anon_sym_module] = ACTIONS(1565), - [anon_sym_use] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_DOLLAR] = ACTIONS(1567), - [anon_sym_error] = ACTIONS(1565), - [anon_sym_DASH2] = ACTIONS(1565), - [anon_sym_break] = ACTIONS(1565), - [anon_sym_continue] = ACTIONS(1565), - [anon_sym_for] = ACTIONS(1565), - [anon_sym_in2] = ACTIONS(1565), - [anon_sym_loop] = ACTIONS(1565), - [anon_sym_make] = ACTIONS(1565), - [anon_sym_while] = ACTIONS(1565), - [anon_sym_do] = ACTIONS(1565), - [anon_sym_if] = ACTIONS(1565), - [anon_sym_else] = ACTIONS(1565), - [anon_sym_match] = ACTIONS(1565), - [anon_sym_RBRACE] = ACTIONS(1565), - [anon_sym_try] = ACTIONS(1565), - [anon_sym_catch] = ACTIONS(1565), - [anon_sym_return] = ACTIONS(1565), - [anon_sym_source] = ACTIONS(1565), - [anon_sym_source_DASHenv] = ACTIONS(1565), - [anon_sym_register] = ACTIONS(1565), - [anon_sym_hide] = ACTIONS(1565), - [anon_sym_hide_DASHenv] = ACTIONS(1565), - [anon_sym_overlay] = ACTIONS(1565), - [anon_sym_as] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(1569), - [anon_sym_PLUS2] = ACTIONS(1565), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1565), - [aux_sym__immediate_decimal_token1] = ACTIONS(1571), - [aux_sym__immediate_decimal_token3] = ACTIONS(1571), - [aux_sym__immediate_decimal_token4] = ACTIONS(1573), - [aux_sym__immediate_decimal_token5] = ACTIONS(1575), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1565), - [aux_sym__val_number_decimal_token1] = ACTIONS(1565), - [aux_sym__val_number_decimal_token2] = ACTIONS(1565), - [aux_sym__val_number_decimal_token3] = ACTIONS(1565), - [aux_sym__val_number_decimal_token4] = ACTIONS(1565), - [aux_sym__val_number_token1] = ACTIONS(1565), - [aux_sym__val_number_token2] = ACTIONS(1565), - [aux_sym__val_number_token3] = ACTIONS(1565), - [aux_sym__val_number_token4] = ACTIONS(1565), - [aux_sym__val_number_token5] = ACTIONS(1565), - [aux_sym__val_number_token6] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(1565), - [sym__str_single_quotes] = ACTIONS(1565), - [sym__str_back_ticks] = ACTIONS(1565), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1565), - [sym__entry_separator] = ACTIONS(1577), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1579), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1577), + [aux_sym_pipe_element_repeat2] = STATE(1173), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(365), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(365), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(211), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [aux_sym__val_number_decimal_token1] = ACTIONS(419), + [aux_sym__val_number_decimal_token2] = ACTIONS(421), + [aux_sym__val_number_decimal_token3] = ACTIONS(423), + [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(429), + [aux_sym__val_number_token5] = ACTIONS(429), + [aux_sym__val_number_token6] = ACTIONS(429), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [317] = { - [sym__expr_parenthesized_immediate] = STATE(511), - [sym__immediate_decimal] = STATE(512), - [sym_val_variable] = STATE(511), [sym_comment] = STATE(317), + [anon_sym_export] = ACTIONS(1573), + [anon_sym_alias] = ACTIONS(1573), + [anon_sym_let] = ACTIONS(1573), + [anon_sym_let_DASHenv] = ACTIONS(1573), + [anon_sym_mut] = ACTIONS(1573), + [anon_sym_const] = ACTIONS(1573), + [aux_sym_cmd_identifier_token1] = ACTIONS(1573), + [aux_sym_cmd_identifier_token2] = ACTIONS(1573), + [aux_sym_cmd_identifier_token3] = ACTIONS(1573), + [aux_sym_cmd_identifier_token4] = ACTIONS(1573), + [aux_sym_cmd_identifier_token5] = ACTIONS(1573), + [aux_sym_cmd_identifier_token6] = ACTIONS(1573), + [aux_sym_cmd_identifier_token7] = ACTIONS(1573), + [aux_sym_cmd_identifier_token8] = ACTIONS(1573), + [aux_sym_cmd_identifier_token9] = ACTIONS(1573), + [aux_sym_cmd_identifier_token10] = ACTIONS(1573), + [aux_sym_cmd_identifier_token11] = ACTIONS(1573), + [aux_sym_cmd_identifier_token12] = ACTIONS(1573), + [aux_sym_cmd_identifier_token13] = ACTIONS(1573), + [aux_sym_cmd_identifier_token14] = ACTIONS(1573), + [aux_sym_cmd_identifier_token15] = ACTIONS(1573), + [aux_sym_cmd_identifier_token16] = ACTIONS(1573), + [aux_sym_cmd_identifier_token17] = ACTIONS(1573), + [aux_sym_cmd_identifier_token18] = ACTIONS(1573), + [aux_sym_cmd_identifier_token19] = ACTIONS(1573), + [aux_sym_cmd_identifier_token20] = ACTIONS(1573), + [aux_sym_cmd_identifier_token21] = ACTIONS(1573), + [aux_sym_cmd_identifier_token22] = ACTIONS(1573), + [aux_sym_cmd_identifier_token23] = ACTIONS(1573), + [aux_sym_cmd_identifier_token24] = ACTIONS(1573), + [aux_sym_cmd_identifier_token25] = ACTIONS(1573), + [aux_sym_cmd_identifier_token26] = ACTIONS(1573), + [aux_sym_cmd_identifier_token27] = ACTIONS(1573), + [aux_sym_cmd_identifier_token28] = ACTIONS(1573), + [aux_sym_cmd_identifier_token29] = ACTIONS(1573), + [aux_sym_cmd_identifier_token30] = ACTIONS(1573), + [aux_sym_cmd_identifier_token31] = ACTIONS(1573), + [aux_sym_cmd_identifier_token32] = ACTIONS(1573), + [aux_sym_cmd_identifier_token33] = ACTIONS(1573), + [aux_sym_cmd_identifier_token34] = ACTIONS(1573), + [aux_sym_cmd_identifier_token35] = ACTIONS(1573), + [aux_sym_cmd_identifier_token36] = ACTIONS(1573), + [aux_sym_cmd_identifier_token37] = ACTIONS(1573), + [aux_sym_cmd_identifier_token38] = ACTIONS(1573), + [aux_sym_cmd_identifier_token39] = ACTIONS(1573), + [aux_sym_cmd_identifier_token40] = ACTIONS(1573), + [anon_sym_def] = ACTIONS(1573), + [anon_sym_export_DASHenv] = ACTIONS(1573), + [anon_sym_extern] = ACTIONS(1573), + [anon_sym_module] = ACTIONS(1573), + [anon_sym_use] = ACTIONS(1573), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_DOLLAR] = ACTIONS(1573), + [anon_sym_error] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_loop] = ACTIONS(1573), + [anon_sym_make] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_else] = ACTIONS(1573), + [anon_sym_match] = ACTIONS(1573), + [anon_sym_RBRACE] = ACTIONS(1573), + [anon_sym_try] = ACTIONS(1573), + [anon_sym_catch] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_source] = ACTIONS(1573), + [anon_sym_source_DASHenv] = ACTIONS(1573), + [anon_sym_register] = ACTIONS(1573), + [anon_sym_hide] = ACTIONS(1573), + [anon_sym_hide_DASHenv] = ACTIONS(1573), + [anon_sym_overlay] = ACTIONS(1573), + [anon_sym_as] = ACTIONS(1573), + [anon_sym_LPAREN2] = ACTIONS(1575), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT] = ACTIONS(1577), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(1579), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1573), + [aux_sym__val_number_decimal_token1] = ACTIONS(1573), + [aux_sym__val_number_decimal_token2] = ACTIONS(1573), + [aux_sym__val_number_decimal_token3] = ACTIONS(1573), + [aux_sym__val_number_decimal_token4] = ACTIONS(1573), + [aux_sym__val_number_token1] = ACTIONS(1573), + [aux_sym__val_number_token2] = ACTIONS(1573), + [aux_sym__val_number_token3] = ACTIONS(1573), + [aux_sym__val_number_token4] = ACTIONS(1573), + [aux_sym__val_number_token5] = ACTIONS(1573), + [aux_sym__val_number_token6] = ACTIONS(1573), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1573), + [anon_sym_DQUOTE] = ACTIONS(1573), + [sym__str_single_quotes] = ACTIONS(1573), + [sym__str_back_ticks] = ACTIONS(1573), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1573), + [sym__entry_separator] = ACTIONS(1575), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1573), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1575), + }, + [318] = { + [sym_comment] = STATE(318), [anon_sym_export] = ACTIONS(1581), [anon_sym_alias] = ACTIONS(1581), [anon_sym_let] = ACTIONS(1581), @@ -110481,68 +110909,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(1581), [anon_sym_const] = ACTIONS(1581), [aux_sym_cmd_identifier_token1] = ACTIONS(1581), - [aux_sym_cmd_identifier_token2] = ACTIONS(1581), - [aux_sym_cmd_identifier_token3] = ACTIONS(1581), - [aux_sym_cmd_identifier_token4] = ACTIONS(1581), - [aux_sym_cmd_identifier_token5] = ACTIONS(1581), - [aux_sym_cmd_identifier_token6] = ACTIONS(1581), - [aux_sym_cmd_identifier_token7] = ACTIONS(1581), + [aux_sym_cmd_identifier_token2] = ACTIONS(1583), + [aux_sym_cmd_identifier_token3] = ACTIONS(1583), + [aux_sym_cmd_identifier_token4] = ACTIONS(1583), + [aux_sym_cmd_identifier_token5] = ACTIONS(1583), + [aux_sym_cmd_identifier_token6] = ACTIONS(1583), + [aux_sym_cmd_identifier_token7] = ACTIONS(1583), [aux_sym_cmd_identifier_token8] = ACTIONS(1581), [aux_sym_cmd_identifier_token9] = ACTIONS(1581), - [aux_sym_cmd_identifier_token10] = ACTIONS(1581), - [aux_sym_cmd_identifier_token11] = ACTIONS(1581), + [aux_sym_cmd_identifier_token10] = ACTIONS(1583), + [aux_sym_cmd_identifier_token11] = ACTIONS(1583), [aux_sym_cmd_identifier_token12] = ACTIONS(1581), [aux_sym_cmd_identifier_token13] = ACTIONS(1581), [aux_sym_cmd_identifier_token14] = ACTIONS(1581), [aux_sym_cmd_identifier_token15] = ACTIONS(1581), - [aux_sym_cmd_identifier_token16] = ACTIONS(1581), - [aux_sym_cmd_identifier_token17] = ACTIONS(1581), - [aux_sym_cmd_identifier_token18] = ACTIONS(1581), - [aux_sym_cmd_identifier_token19] = ACTIONS(1581), - [aux_sym_cmd_identifier_token20] = ACTIONS(1581), - [aux_sym_cmd_identifier_token21] = ACTIONS(1581), - [aux_sym_cmd_identifier_token22] = ACTIONS(1581), - [aux_sym_cmd_identifier_token23] = ACTIONS(1581), - [aux_sym_cmd_identifier_token24] = ACTIONS(1581), - [aux_sym_cmd_identifier_token25] = ACTIONS(1581), - [aux_sym_cmd_identifier_token26] = ACTIONS(1581), - [aux_sym_cmd_identifier_token27] = ACTIONS(1581), - [aux_sym_cmd_identifier_token28] = ACTIONS(1581), - [aux_sym_cmd_identifier_token29] = ACTIONS(1581), - [aux_sym_cmd_identifier_token30] = ACTIONS(1581), - [aux_sym_cmd_identifier_token31] = ACTIONS(1581), - [aux_sym_cmd_identifier_token32] = ACTIONS(1581), - [aux_sym_cmd_identifier_token33] = ACTIONS(1581), + [aux_sym_cmd_identifier_token16] = ACTIONS(1583), + [aux_sym_cmd_identifier_token17] = ACTIONS(1583), + [aux_sym_cmd_identifier_token18] = ACTIONS(1583), + [aux_sym_cmd_identifier_token19] = ACTIONS(1583), + [aux_sym_cmd_identifier_token20] = ACTIONS(1583), + [aux_sym_cmd_identifier_token21] = ACTIONS(1583), + [aux_sym_cmd_identifier_token22] = ACTIONS(1583), + [aux_sym_cmd_identifier_token23] = ACTIONS(1583), + [aux_sym_cmd_identifier_token24] = ACTIONS(1583), + [aux_sym_cmd_identifier_token25] = ACTIONS(1583), + [aux_sym_cmd_identifier_token26] = ACTIONS(1583), + [aux_sym_cmd_identifier_token27] = ACTIONS(1583), + [aux_sym_cmd_identifier_token28] = ACTIONS(1583), + [aux_sym_cmd_identifier_token29] = ACTIONS(1583), + [aux_sym_cmd_identifier_token30] = ACTIONS(1583), + [aux_sym_cmd_identifier_token31] = ACTIONS(1583), + [aux_sym_cmd_identifier_token32] = ACTIONS(1583), + [aux_sym_cmd_identifier_token33] = ACTIONS(1583), [aux_sym_cmd_identifier_token34] = ACTIONS(1581), - [aux_sym_cmd_identifier_token35] = ACTIONS(1581), - [aux_sym_cmd_identifier_token36] = ACTIONS(1581), - [aux_sym_cmd_identifier_token37] = ACTIONS(1581), + [aux_sym_cmd_identifier_token35] = ACTIONS(1583), + [aux_sym_cmd_identifier_token36] = ACTIONS(1583), + [aux_sym_cmd_identifier_token37] = ACTIONS(1583), [aux_sym_cmd_identifier_token38] = ACTIONS(1581), - [aux_sym_cmd_identifier_token39] = ACTIONS(1581), - [aux_sym_cmd_identifier_token40] = ACTIONS(1581), + [aux_sym_cmd_identifier_token39] = ACTIONS(1583), + [aux_sym_cmd_identifier_token40] = ACTIONS(1583), + [sym__newline] = ACTIONS(1583), + [anon_sym_SEMI] = ACTIONS(1583), [anon_sym_def] = ACTIONS(1581), [anon_sym_export_DASHenv] = ACTIONS(1581), [anon_sym_extern] = ACTIONS(1581), [anon_sym_module] = ACTIONS(1581), [anon_sym_use] = ACTIONS(1581), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_DOLLAR] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_DOLLAR] = ACTIONS(1581), [anon_sym_error] = ACTIONS(1581), [anon_sym_DASH2] = ACTIONS(1581), [anon_sym_break] = ACTIONS(1581), [anon_sym_continue] = ACTIONS(1581), [anon_sym_for] = ACTIONS(1581), - [anon_sym_in2] = ACTIONS(1581), [anon_sym_loop] = ACTIONS(1581), - [anon_sym_make] = ACTIONS(1581), [anon_sym_while] = ACTIONS(1581), [anon_sym_do] = ACTIONS(1581), [anon_sym_if] = ACTIONS(1581), - [anon_sym_else] = ACTIONS(1581), [anon_sym_match] = ACTIONS(1581), - [anon_sym_RBRACE] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1583), + [anon_sym_DOT_DOT] = ACTIONS(1581), [anon_sym_try] = ACTIONS(1581), - [anon_sym_catch] = ACTIONS(1581), [anon_sym_return] = ACTIONS(1581), [anon_sym_source] = ACTIONS(1581), [anon_sym_source_DASHenv] = ACTIONS(1581), @@ -110550,67 +110978,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1581), [anon_sym_hide_DASHenv] = ACTIONS(1581), [anon_sym_overlay] = ACTIONS(1581), - [anon_sym_as] = ACTIONS(1581), - [anon_sym_LPAREN2] = ACTIONS(1534), - [anon_sym_PLUS2] = ACTIONS(1581), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1581), - [anon_sym_DOT] = ACTIONS(1583), - [aux_sym__immediate_decimal_token1] = ACTIONS(1585), - [aux_sym__immediate_decimal_token3] = ACTIONS(1585), - [aux_sym__immediate_decimal_token4] = ACTIONS(1587), - [aux_sym__immediate_decimal_token5] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1581), + [anon_sym_where] = ACTIONS(1583), + [aux_sym_expr_unary_token1] = ACTIONS(1583), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1583), + [anon_sym_DOT_DOT_LT] = ACTIONS(1583), + [anon_sym_null] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1581), + [anon_sym_false] = ACTIONS(1581), [aux_sym__val_number_decimal_token1] = ACTIONS(1581), - [aux_sym__val_number_decimal_token2] = ACTIONS(1581), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1581), - [aux_sym__val_number_token1] = ACTIONS(1581), - [aux_sym__val_number_token2] = ACTIONS(1581), - [aux_sym__val_number_token3] = ACTIONS(1581), + [aux_sym__val_number_decimal_token2] = ACTIONS(1583), + [aux_sym__val_number_decimal_token3] = ACTIONS(1583), + [aux_sym__val_number_decimal_token4] = ACTIONS(1583), + [aux_sym__val_number_token1] = ACTIONS(1583), + [aux_sym__val_number_token2] = ACTIONS(1583), + [aux_sym__val_number_token3] = ACTIONS(1583), [aux_sym__val_number_token4] = ACTIONS(1581), [aux_sym__val_number_token5] = ACTIONS(1581), [aux_sym__val_number_token6] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1581), - [sym__str_single_quotes] = ACTIONS(1581), - [sym__str_back_ticks] = ACTIONS(1581), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1581), - [sym__entry_separator] = ACTIONS(1591), + [anon_sym_0b] = ACTIONS(1581), + [anon_sym_0o] = ACTIONS(1581), + [anon_sym_0x] = ACTIONS(1581), + [sym_val_date] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1583), + [sym__str_single_quotes] = ACTIONS(1583), + [sym__str_back_ticks] = ACTIONS(1583), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1583), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1583), + [aux_sym_env_var_token1] = ACTIONS(1581), + [anon_sym_CARET] = ACTIONS(1583), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1583), + }, + [319] = { + [sym_comment] = STATE(319), + [anon_sym_export] = ACTIONS(1585), + [anon_sym_alias] = ACTIONS(1585), + [anon_sym_let] = ACTIONS(1585), + [anon_sym_let_DASHenv] = ACTIONS(1585), + [anon_sym_mut] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [aux_sym_cmd_identifier_token1] = ACTIONS(1585), + [aux_sym_cmd_identifier_token2] = ACTIONS(1585), + [aux_sym_cmd_identifier_token3] = ACTIONS(1585), + [aux_sym_cmd_identifier_token4] = ACTIONS(1585), + [aux_sym_cmd_identifier_token5] = ACTIONS(1585), + [aux_sym_cmd_identifier_token6] = ACTIONS(1585), + [aux_sym_cmd_identifier_token7] = ACTIONS(1585), + [aux_sym_cmd_identifier_token8] = ACTIONS(1585), + [aux_sym_cmd_identifier_token9] = ACTIONS(1585), + [aux_sym_cmd_identifier_token10] = ACTIONS(1585), + [aux_sym_cmd_identifier_token11] = ACTIONS(1585), + [aux_sym_cmd_identifier_token12] = ACTIONS(1585), + [aux_sym_cmd_identifier_token13] = ACTIONS(1585), + [aux_sym_cmd_identifier_token14] = ACTIONS(1585), + [aux_sym_cmd_identifier_token15] = ACTIONS(1585), + [aux_sym_cmd_identifier_token16] = ACTIONS(1585), + [aux_sym_cmd_identifier_token17] = ACTIONS(1585), + [aux_sym_cmd_identifier_token18] = ACTIONS(1585), + [aux_sym_cmd_identifier_token19] = ACTIONS(1585), + [aux_sym_cmd_identifier_token20] = ACTIONS(1585), + [aux_sym_cmd_identifier_token21] = ACTIONS(1585), + [aux_sym_cmd_identifier_token22] = ACTIONS(1585), + [aux_sym_cmd_identifier_token23] = ACTIONS(1585), + [aux_sym_cmd_identifier_token24] = ACTIONS(1585), + [aux_sym_cmd_identifier_token25] = ACTIONS(1585), + [aux_sym_cmd_identifier_token26] = ACTIONS(1585), + [aux_sym_cmd_identifier_token27] = ACTIONS(1585), + [aux_sym_cmd_identifier_token28] = ACTIONS(1585), + [aux_sym_cmd_identifier_token29] = ACTIONS(1585), + [aux_sym_cmd_identifier_token30] = ACTIONS(1585), + [aux_sym_cmd_identifier_token31] = ACTIONS(1585), + [aux_sym_cmd_identifier_token32] = ACTIONS(1585), + [aux_sym_cmd_identifier_token33] = ACTIONS(1585), + [aux_sym_cmd_identifier_token34] = ACTIONS(1585), + [aux_sym_cmd_identifier_token35] = ACTIONS(1585), + [aux_sym_cmd_identifier_token36] = ACTIONS(1585), + [aux_sym_cmd_identifier_token37] = ACTIONS(1585), + [aux_sym_cmd_identifier_token38] = ACTIONS(1585), + [aux_sym_cmd_identifier_token39] = ACTIONS(1585), + [aux_sym_cmd_identifier_token40] = ACTIONS(1585), + [anon_sym_def] = ACTIONS(1585), + [anon_sym_export_DASHenv] = ACTIONS(1585), + [anon_sym_extern] = ACTIONS(1585), + [anon_sym_module] = ACTIONS(1585), + [anon_sym_use] = ACTIONS(1585), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_DOLLAR] = ACTIONS(1585), + [anon_sym_error] = ACTIONS(1585), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_in2] = ACTIONS(1585), + [anon_sym_loop] = ACTIONS(1585), + [anon_sym_make] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_do] = ACTIONS(1585), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_else] = ACTIONS(1585), + [anon_sym_match] = ACTIONS(1585), + [anon_sym_RBRACE] = ACTIONS(1585), + [anon_sym_try] = ACTIONS(1585), + [anon_sym_catch] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_source] = ACTIONS(1585), + [anon_sym_source_DASHenv] = ACTIONS(1585), + [anon_sym_register] = ACTIONS(1585), + [anon_sym_hide] = ACTIONS(1585), + [anon_sym_hide_DASHenv] = ACTIONS(1585), + [anon_sym_overlay] = ACTIONS(1585), + [anon_sym_as] = ACTIONS(1585), + [anon_sym_LPAREN2] = ACTIONS(1587), + [anon_sym_PLUS2] = ACTIONS(1585), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1585), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [aux_sym__immediate_decimal_token1] = ACTIONS(1589), + [aux_sym__immediate_decimal_token2] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1585), + [aux_sym__val_number_decimal_token1] = ACTIONS(1585), + [aux_sym__val_number_decimal_token2] = ACTIONS(1585), + [aux_sym__val_number_decimal_token3] = ACTIONS(1585), + [aux_sym__val_number_decimal_token4] = ACTIONS(1585), + [aux_sym__val_number_token1] = ACTIONS(1585), + [aux_sym__val_number_token2] = ACTIONS(1585), + [aux_sym__val_number_token3] = ACTIONS(1585), + [aux_sym__val_number_token4] = ACTIONS(1585), + [aux_sym__val_number_token5] = ACTIONS(1585), + [aux_sym__val_number_token6] = ACTIONS(1585), + [sym_filesize_unit] = ACTIONS(1585), + [sym_duration_unit] = ACTIONS(1585), + [anon_sym_DQUOTE] = ACTIONS(1585), + [sym__str_single_quotes] = ACTIONS(1585), + [sym__str_back_ticks] = ACTIONS(1585), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1585), + [sym__entry_separator] = ACTIONS(1587), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1585), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1591), + [sym_raw_string_begin] = ACTIONS(1587), }, - [318] = { - [sym_cmd_identifier] = STATE(4748), - [sym__expression] = STATE(3952), - [sym_expr_unary] = STATE(2469), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2469), - [sym__expr_binary_expression] = STATE(3961), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(3962), - [sym__value] = STATE(2469), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(2487), - [sym_val_variable] = STATE(2113), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(826), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(5128), - [sym_comment] = STATE(318), - [aux_sym_pipe_element_repeat2] = STATE(1180), + [320] = { + [sym__expr_parenthesized_immediate] = STATE(482), + [sym__immediate_decimal] = STATE(483), + [sym_val_variable] = STATE(482), + [sym_comment] = STATE(320), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_alias] = ACTIONS(1593), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_let_DASHenv] = ACTIONS(1593), + [anon_sym_mut] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [aux_sym_cmd_identifier_token1] = ACTIONS(1593), + [aux_sym_cmd_identifier_token2] = ACTIONS(1593), + [aux_sym_cmd_identifier_token3] = ACTIONS(1593), + [aux_sym_cmd_identifier_token4] = ACTIONS(1593), + [aux_sym_cmd_identifier_token5] = ACTIONS(1593), + [aux_sym_cmd_identifier_token6] = ACTIONS(1593), + [aux_sym_cmd_identifier_token7] = ACTIONS(1593), + [aux_sym_cmd_identifier_token8] = ACTIONS(1593), + [aux_sym_cmd_identifier_token9] = ACTIONS(1593), + [aux_sym_cmd_identifier_token10] = ACTIONS(1593), + [aux_sym_cmd_identifier_token11] = ACTIONS(1593), + [aux_sym_cmd_identifier_token12] = ACTIONS(1593), + [aux_sym_cmd_identifier_token13] = ACTIONS(1593), + [aux_sym_cmd_identifier_token14] = ACTIONS(1593), + [aux_sym_cmd_identifier_token15] = ACTIONS(1593), + [aux_sym_cmd_identifier_token16] = ACTIONS(1593), + [aux_sym_cmd_identifier_token17] = ACTIONS(1593), + [aux_sym_cmd_identifier_token18] = ACTIONS(1593), + [aux_sym_cmd_identifier_token19] = ACTIONS(1593), + [aux_sym_cmd_identifier_token20] = ACTIONS(1593), + [aux_sym_cmd_identifier_token21] = ACTIONS(1593), + [aux_sym_cmd_identifier_token22] = ACTIONS(1593), + [aux_sym_cmd_identifier_token23] = ACTIONS(1593), + [aux_sym_cmd_identifier_token24] = ACTIONS(1593), + [aux_sym_cmd_identifier_token25] = ACTIONS(1593), + [aux_sym_cmd_identifier_token26] = ACTIONS(1593), + [aux_sym_cmd_identifier_token27] = ACTIONS(1593), + [aux_sym_cmd_identifier_token28] = ACTIONS(1593), + [aux_sym_cmd_identifier_token29] = ACTIONS(1593), + [aux_sym_cmd_identifier_token30] = ACTIONS(1593), + [aux_sym_cmd_identifier_token31] = ACTIONS(1593), + [aux_sym_cmd_identifier_token32] = ACTIONS(1593), + [aux_sym_cmd_identifier_token33] = ACTIONS(1593), + [aux_sym_cmd_identifier_token34] = ACTIONS(1593), + [aux_sym_cmd_identifier_token35] = ACTIONS(1593), + [aux_sym_cmd_identifier_token36] = ACTIONS(1593), + [aux_sym_cmd_identifier_token37] = ACTIONS(1593), + [aux_sym_cmd_identifier_token38] = ACTIONS(1593), + [aux_sym_cmd_identifier_token39] = ACTIONS(1593), + [aux_sym_cmd_identifier_token40] = ACTIONS(1593), + [anon_sym_def] = ACTIONS(1593), + [anon_sym_export_DASHenv] = ACTIONS(1593), + [anon_sym_extern] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_use] = ACTIONS(1593), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_DOLLAR] = ACTIONS(1545), + [anon_sym_error] = ACTIONS(1593), + [anon_sym_DASH2] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_in2] = ACTIONS(1593), + [anon_sym_loop] = ACTIONS(1593), + [anon_sym_make] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_else] = ACTIONS(1593), + [anon_sym_match] = ACTIONS(1593), + [anon_sym_RBRACE] = ACTIONS(1593), + [anon_sym_try] = ACTIONS(1593), + [anon_sym_catch] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_source] = ACTIONS(1593), + [anon_sym_source_DASHenv] = ACTIONS(1593), + [anon_sym_register] = ACTIONS(1593), + [anon_sym_hide] = ACTIONS(1593), + [anon_sym_hide_DASHenv] = ACTIONS(1593), + [anon_sym_overlay] = ACTIONS(1593), + [anon_sym_as] = ACTIONS(1593), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_PLUS2] = ACTIONS(1593), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1593), + [anon_sym_DOT] = ACTIONS(1595), + [aux_sym__immediate_decimal_token1] = ACTIONS(1597), + [aux_sym__immediate_decimal_token3] = ACTIONS(1597), + [aux_sym__immediate_decimal_token4] = ACTIONS(1599), + [aux_sym__immediate_decimal_token5] = ACTIONS(1601), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1593), + [aux_sym__val_number_decimal_token1] = ACTIONS(1593), + [aux_sym__val_number_decimal_token2] = ACTIONS(1593), + [aux_sym__val_number_decimal_token3] = ACTIONS(1593), + [aux_sym__val_number_decimal_token4] = ACTIONS(1593), + [aux_sym__val_number_token1] = ACTIONS(1593), + [aux_sym__val_number_token2] = ACTIONS(1593), + [aux_sym__val_number_token3] = ACTIONS(1593), + [aux_sym__val_number_token4] = ACTIONS(1593), + [aux_sym__val_number_token5] = ACTIONS(1593), + [aux_sym__val_number_token6] = ACTIONS(1593), + [anon_sym_DQUOTE] = ACTIONS(1593), + [sym__str_single_quotes] = ACTIONS(1593), + [sym__str_back_ticks] = ACTIONS(1593), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1593), + [sym__entry_separator] = ACTIONS(1603), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1603), + }, + [321] = { + [sym_cmd_identifier] = STATE(4653), + [sym_ctrl_if] = STATE(5054), + [sym_block] = STATE(5102), + [sym__expression] = STATE(5102), + [sym_expr_unary] = STATE(2522), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2522), + [sym__expr_binary_expression] = STATE(3992), + [sym_expr_parenthesized] = STATE(2170), + [sym_val_range] = STATE(3995), + [sym__value] = STATE(2522), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(2481), + [sym_val_variable] = STATE(2126), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(1209), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_command] = STATE(5102), + [sym_comment] = STATE(321), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -110655,7 +111304,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(1062), [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_if] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(1605), [anon_sym_DOT_DOT] = ACTIONS(65), [aux_sym_expr_unary_token1] = ACTIONS(83), [anon_sym_DOT_DOT_EQ] = ACTIONS(85), @@ -110663,10 +111313,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(87), [anon_sym_true] = ACTIONS(89), [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [aux_sym__val_number_decimal_token1] = ACTIONS(1607), + [aux_sym__val_number_decimal_token2] = ACTIONS(1609), + [aux_sym__val_number_decimal_token3] = ACTIONS(1611), + [aux_sym__val_number_decimal_token4] = ACTIONS(1613), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), @@ -110682,44 +111332,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(119), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(121), }, - [319] = { - [sym_cmd_identifier] = STATE(4636), - [sym__expression_parenthesized] = STATE(3932), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5065), - [sym_comment] = STATE(319), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1189), + [322] = { + [sym_cmd_identifier] = STATE(4794), + [sym__expression_parenthesized] = STATE(3940), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5163), + [sym_comment] = STATE(322), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1190), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -110796,584 +111445,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [320] = { - [sym_comment] = STATE(320), - [anon_sym_export] = ACTIONS(1472), - [anon_sym_alias] = ACTIONS(1472), - [anon_sym_let] = ACTIONS(1472), - [anon_sym_let_DASHenv] = ACTIONS(1472), - [anon_sym_mut] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [aux_sym_cmd_identifier_token1] = ACTIONS(1472), - [aux_sym_cmd_identifier_token2] = ACTIONS(1474), - [aux_sym_cmd_identifier_token3] = ACTIONS(1474), - [aux_sym_cmd_identifier_token4] = ACTIONS(1474), - [aux_sym_cmd_identifier_token5] = ACTIONS(1474), - [aux_sym_cmd_identifier_token6] = ACTIONS(1474), - [aux_sym_cmd_identifier_token7] = ACTIONS(1474), - [aux_sym_cmd_identifier_token8] = ACTIONS(1472), - [aux_sym_cmd_identifier_token9] = ACTIONS(1472), - [aux_sym_cmd_identifier_token10] = ACTIONS(1474), - [aux_sym_cmd_identifier_token11] = ACTIONS(1474), - [aux_sym_cmd_identifier_token12] = ACTIONS(1472), - [aux_sym_cmd_identifier_token13] = ACTIONS(1472), - [aux_sym_cmd_identifier_token14] = ACTIONS(1472), - [aux_sym_cmd_identifier_token15] = ACTIONS(1472), - [aux_sym_cmd_identifier_token16] = ACTIONS(1474), - [aux_sym_cmd_identifier_token17] = ACTIONS(1474), - [aux_sym_cmd_identifier_token18] = ACTIONS(1474), - [aux_sym_cmd_identifier_token19] = ACTIONS(1474), - [aux_sym_cmd_identifier_token20] = ACTIONS(1474), - [aux_sym_cmd_identifier_token21] = ACTIONS(1474), - [aux_sym_cmd_identifier_token22] = ACTIONS(1474), - [aux_sym_cmd_identifier_token23] = ACTIONS(1474), - [aux_sym_cmd_identifier_token24] = ACTIONS(1474), - [aux_sym_cmd_identifier_token25] = ACTIONS(1474), - [aux_sym_cmd_identifier_token26] = ACTIONS(1474), - [aux_sym_cmd_identifier_token27] = ACTIONS(1474), - [aux_sym_cmd_identifier_token28] = ACTIONS(1474), - [aux_sym_cmd_identifier_token29] = ACTIONS(1474), - [aux_sym_cmd_identifier_token30] = ACTIONS(1474), - [aux_sym_cmd_identifier_token31] = ACTIONS(1474), - [aux_sym_cmd_identifier_token32] = ACTIONS(1474), - [aux_sym_cmd_identifier_token33] = ACTIONS(1474), - [aux_sym_cmd_identifier_token34] = ACTIONS(1472), - [aux_sym_cmd_identifier_token35] = ACTIONS(1474), - [aux_sym_cmd_identifier_token36] = ACTIONS(1474), - [aux_sym_cmd_identifier_token37] = ACTIONS(1474), - [aux_sym_cmd_identifier_token38] = ACTIONS(1472), - [aux_sym_cmd_identifier_token39] = ACTIONS(1474), - [aux_sym_cmd_identifier_token40] = ACTIONS(1474), - [sym__newline] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym_def] = ACTIONS(1472), - [anon_sym_export_DASHenv] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym_module] = ACTIONS(1472), - [anon_sym_use] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1474), - [anon_sym_LPAREN] = ACTIONS(1474), - [anon_sym_DOLLAR] = ACTIONS(1472), - [anon_sym_error] = ACTIONS(1472), - [anon_sym_DASH2] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_loop] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(1472), - [anon_sym_try] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_source] = ACTIONS(1472), - [anon_sym_source_DASHenv] = ACTIONS(1472), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_hide] = ACTIONS(1472), - [anon_sym_hide_DASHenv] = ACTIONS(1472), - [anon_sym_overlay] = ACTIONS(1472), - [anon_sym_where] = ACTIONS(1474), - [aux_sym_expr_unary_token1] = ACTIONS(1474), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1474), - [anon_sym_DOT_DOT_LT] = ACTIONS(1474), - [anon_sym_null] = ACTIONS(1472), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [aux_sym__val_number_decimal_token1] = ACTIONS(1472), - [aux_sym__val_number_decimal_token2] = ACTIONS(1474), - [aux_sym__val_number_decimal_token3] = ACTIONS(1474), - [aux_sym__val_number_decimal_token4] = ACTIONS(1474), - [aux_sym__val_number_token1] = ACTIONS(1474), - [aux_sym__val_number_token2] = ACTIONS(1474), - [aux_sym__val_number_token3] = ACTIONS(1474), - [aux_sym__val_number_token4] = ACTIONS(1472), - [aux_sym__val_number_token5] = ACTIONS(1472), - [aux_sym__val_number_token6] = ACTIONS(1472), - [anon_sym_0b] = ACTIONS(1472), - [anon_sym_0o] = ACTIONS(1472), - [anon_sym_0x] = ACTIONS(1472), - [sym_val_date] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [sym__str_single_quotes] = ACTIONS(1474), - [sym__str_back_ticks] = ACTIONS(1474), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1474), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1474), - [aux_sym_env_var_token1] = ACTIONS(1472), - [anon_sym_CARET] = ACTIONS(1474), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1474), - }, - [321] = { - [sym_comment] = STATE(321), - [anon_sym_export] = ACTIONS(1552), - [anon_sym_alias] = ACTIONS(1552), - [anon_sym_let] = ACTIONS(1552), - [anon_sym_let_DASHenv] = ACTIONS(1552), - [anon_sym_mut] = ACTIONS(1552), - [anon_sym_const] = ACTIONS(1552), - [aux_sym_cmd_identifier_token1] = ACTIONS(1552), - [aux_sym_cmd_identifier_token2] = ACTIONS(1554), - [aux_sym_cmd_identifier_token3] = ACTIONS(1554), - [aux_sym_cmd_identifier_token4] = ACTIONS(1554), - [aux_sym_cmd_identifier_token5] = ACTIONS(1554), - [aux_sym_cmd_identifier_token6] = ACTIONS(1554), - [aux_sym_cmd_identifier_token7] = ACTIONS(1554), - [aux_sym_cmd_identifier_token8] = ACTIONS(1552), - [aux_sym_cmd_identifier_token9] = ACTIONS(1552), - [aux_sym_cmd_identifier_token10] = ACTIONS(1554), - [aux_sym_cmd_identifier_token11] = ACTIONS(1554), - [aux_sym_cmd_identifier_token12] = ACTIONS(1552), - [aux_sym_cmd_identifier_token13] = ACTIONS(1552), - [aux_sym_cmd_identifier_token14] = ACTIONS(1552), - [aux_sym_cmd_identifier_token15] = ACTIONS(1552), - [aux_sym_cmd_identifier_token16] = ACTIONS(1554), - [aux_sym_cmd_identifier_token17] = ACTIONS(1554), - [aux_sym_cmd_identifier_token18] = ACTIONS(1554), - [aux_sym_cmd_identifier_token19] = ACTIONS(1554), - [aux_sym_cmd_identifier_token20] = ACTIONS(1554), - [aux_sym_cmd_identifier_token21] = ACTIONS(1554), - [aux_sym_cmd_identifier_token22] = ACTIONS(1554), - [aux_sym_cmd_identifier_token23] = ACTIONS(1554), - [aux_sym_cmd_identifier_token24] = ACTIONS(1554), - [aux_sym_cmd_identifier_token25] = ACTIONS(1554), - [aux_sym_cmd_identifier_token26] = ACTIONS(1554), - [aux_sym_cmd_identifier_token27] = ACTIONS(1554), - [aux_sym_cmd_identifier_token28] = ACTIONS(1554), - [aux_sym_cmd_identifier_token29] = ACTIONS(1554), - [aux_sym_cmd_identifier_token30] = ACTIONS(1554), - [aux_sym_cmd_identifier_token31] = ACTIONS(1554), - [aux_sym_cmd_identifier_token32] = ACTIONS(1554), - [aux_sym_cmd_identifier_token33] = ACTIONS(1554), - [aux_sym_cmd_identifier_token34] = ACTIONS(1552), - [aux_sym_cmd_identifier_token35] = ACTIONS(1554), - [aux_sym_cmd_identifier_token36] = ACTIONS(1554), - [aux_sym_cmd_identifier_token37] = ACTIONS(1554), - [aux_sym_cmd_identifier_token38] = ACTIONS(1552), - [aux_sym_cmd_identifier_token39] = ACTIONS(1554), - [aux_sym_cmd_identifier_token40] = ACTIONS(1554), - [sym__newline] = ACTIONS(1554), - [anon_sym_SEMI] = ACTIONS(1554), - [anon_sym_def] = ACTIONS(1552), - [anon_sym_export_DASHenv] = ACTIONS(1552), - [anon_sym_extern] = ACTIONS(1552), - [anon_sym_module] = ACTIONS(1552), - [anon_sym_use] = ACTIONS(1552), - [anon_sym_LBRACK] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_DOLLAR] = ACTIONS(1552), - [anon_sym_error] = ACTIONS(1552), - [anon_sym_DASH2] = ACTIONS(1552), - [anon_sym_break] = ACTIONS(1552), - [anon_sym_continue] = ACTIONS(1552), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_loop] = ACTIONS(1552), - [anon_sym_while] = ACTIONS(1552), - [anon_sym_do] = ACTIONS(1552), - [anon_sym_if] = ACTIONS(1552), - [anon_sym_match] = ACTIONS(1552), - [anon_sym_LBRACE] = ACTIONS(1554), - [anon_sym_DOT_DOT] = ACTIONS(1552), - [anon_sym_try] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1552), - [anon_sym_source] = ACTIONS(1552), - [anon_sym_source_DASHenv] = ACTIONS(1552), - [anon_sym_register] = ACTIONS(1552), - [anon_sym_hide] = ACTIONS(1552), - [anon_sym_hide_DASHenv] = ACTIONS(1552), - [anon_sym_overlay] = ACTIONS(1552), - [anon_sym_where] = ACTIONS(1554), - [aux_sym_expr_unary_token1] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1554), - [anon_sym_DOT_DOT_LT] = ACTIONS(1554), - [anon_sym_null] = ACTIONS(1552), - [anon_sym_true] = ACTIONS(1552), - [anon_sym_false] = ACTIONS(1552), - [aux_sym__val_number_decimal_token1] = ACTIONS(1552), - [aux_sym__val_number_decimal_token2] = ACTIONS(1554), - [aux_sym__val_number_decimal_token3] = ACTIONS(1554), - [aux_sym__val_number_decimal_token4] = ACTIONS(1554), - [aux_sym__val_number_token1] = ACTIONS(1554), - [aux_sym__val_number_token2] = ACTIONS(1554), - [aux_sym__val_number_token3] = ACTIONS(1554), - [aux_sym__val_number_token4] = ACTIONS(1552), - [aux_sym__val_number_token5] = ACTIONS(1552), - [aux_sym__val_number_token6] = ACTIONS(1552), - [anon_sym_0b] = ACTIONS(1552), - [anon_sym_0o] = ACTIONS(1552), - [anon_sym_0x] = ACTIONS(1552), - [sym_val_date] = ACTIONS(1554), - [anon_sym_DQUOTE] = ACTIONS(1554), - [sym__str_single_quotes] = ACTIONS(1554), - [sym__str_back_ticks] = ACTIONS(1554), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1554), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1554), - [aux_sym_env_var_token1] = ACTIONS(1552), - [anon_sym_CARET] = ACTIONS(1554), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1554), - }, - [322] = { - [sym__expr_parenthesized_immediate] = STATE(684), - [sym__immediate_decimal] = STATE(518), - [sym_val_variable] = STATE(684), - [sym_comment] = STATE(322), - [anon_sym_export] = ACTIONS(1530), - [anon_sym_alias] = ACTIONS(1530), - [anon_sym_let] = ACTIONS(1530), - [anon_sym_let_DASHenv] = ACTIONS(1530), - [anon_sym_mut] = ACTIONS(1530), - [anon_sym_const] = ACTIONS(1530), - [aux_sym_cmd_identifier_token1] = ACTIONS(1530), - [aux_sym_cmd_identifier_token2] = ACTIONS(1530), - [aux_sym_cmd_identifier_token3] = ACTIONS(1530), - [aux_sym_cmd_identifier_token4] = ACTIONS(1530), - [aux_sym_cmd_identifier_token5] = ACTIONS(1530), - [aux_sym_cmd_identifier_token6] = ACTIONS(1530), - [aux_sym_cmd_identifier_token7] = ACTIONS(1530), - [aux_sym_cmd_identifier_token8] = ACTIONS(1530), - [aux_sym_cmd_identifier_token9] = ACTIONS(1530), - [aux_sym_cmd_identifier_token10] = ACTIONS(1530), - [aux_sym_cmd_identifier_token11] = ACTIONS(1530), - [aux_sym_cmd_identifier_token12] = ACTIONS(1530), - [aux_sym_cmd_identifier_token13] = ACTIONS(1530), - [aux_sym_cmd_identifier_token14] = ACTIONS(1530), - [aux_sym_cmd_identifier_token15] = ACTIONS(1530), - [aux_sym_cmd_identifier_token16] = ACTIONS(1530), - [aux_sym_cmd_identifier_token17] = ACTIONS(1530), - [aux_sym_cmd_identifier_token18] = ACTIONS(1530), - [aux_sym_cmd_identifier_token19] = ACTIONS(1530), - [aux_sym_cmd_identifier_token20] = ACTIONS(1530), - [aux_sym_cmd_identifier_token21] = ACTIONS(1530), - [aux_sym_cmd_identifier_token22] = ACTIONS(1530), - [aux_sym_cmd_identifier_token23] = ACTIONS(1530), - [aux_sym_cmd_identifier_token24] = ACTIONS(1530), - [aux_sym_cmd_identifier_token25] = ACTIONS(1530), - [aux_sym_cmd_identifier_token26] = ACTIONS(1530), - [aux_sym_cmd_identifier_token27] = ACTIONS(1530), - [aux_sym_cmd_identifier_token28] = ACTIONS(1530), - [aux_sym_cmd_identifier_token29] = ACTIONS(1530), - [aux_sym_cmd_identifier_token30] = ACTIONS(1530), - [aux_sym_cmd_identifier_token31] = ACTIONS(1530), - [aux_sym_cmd_identifier_token32] = ACTIONS(1530), - [aux_sym_cmd_identifier_token33] = ACTIONS(1530), - [aux_sym_cmd_identifier_token34] = ACTIONS(1530), - [aux_sym_cmd_identifier_token35] = ACTIONS(1530), - [aux_sym_cmd_identifier_token36] = ACTIONS(1530), - [aux_sym_cmd_identifier_token37] = ACTIONS(1530), - [aux_sym_cmd_identifier_token38] = ACTIONS(1530), - [aux_sym_cmd_identifier_token39] = ACTIONS(1530), - [aux_sym_cmd_identifier_token40] = ACTIONS(1530), - [anon_sym_def] = ACTIONS(1530), - [anon_sym_export_DASHenv] = ACTIONS(1530), - [anon_sym_extern] = ACTIONS(1530), - [anon_sym_module] = ACTIONS(1530), - [anon_sym_use] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_DOLLAR] = ACTIONS(1567), - [anon_sym_error] = ACTIONS(1530), - [anon_sym_DASH2] = ACTIONS(1530), - [anon_sym_break] = ACTIONS(1530), - [anon_sym_continue] = ACTIONS(1530), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_in2] = ACTIONS(1530), - [anon_sym_loop] = ACTIONS(1530), - [anon_sym_make] = ACTIONS(1530), - [anon_sym_while] = ACTIONS(1530), - [anon_sym_do] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1530), - [anon_sym_else] = ACTIONS(1530), - [anon_sym_match] = ACTIONS(1530), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_try] = ACTIONS(1530), - [anon_sym_catch] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1530), - [anon_sym_source] = ACTIONS(1530), - [anon_sym_source_DASHenv] = ACTIONS(1530), - [anon_sym_register] = ACTIONS(1530), - [anon_sym_hide] = ACTIONS(1530), - [anon_sym_hide_DASHenv] = ACTIONS(1530), - [anon_sym_overlay] = ACTIONS(1530), - [anon_sym_as] = ACTIONS(1530), - [anon_sym_LPAREN2] = ACTIONS(1569), - [anon_sym_PLUS2] = ACTIONS(1530), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1530), - [aux_sym__immediate_decimal_token1] = ACTIONS(1571), - [aux_sym__immediate_decimal_token3] = ACTIONS(1571), - [aux_sym__immediate_decimal_token4] = ACTIONS(1573), - [aux_sym__immediate_decimal_token5] = ACTIONS(1575), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1530), - [aux_sym__val_number_decimal_token1] = ACTIONS(1530), - [aux_sym__val_number_decimal_token2] = ACTIONS(1530), - [aux_sym__val_number_decimal_token3] = ACTIONS(1530), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(1530), - [aux_sym__val_number_token2] = ACTIONS(1530), - [aux_sym__val_number_token3] = ACTIONS(1530), - [aux_sym__val_number_token4] = ACTIONS(1530), - [aux_sym__val_number_token5] = ACTIONS(1530), - [aux_sym__val_number_token6] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1530), - [sym__str_single_quotes] = ACTIONS(1530), - [sym__str_back_ticks] = ACTIONS(1530), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1530), - [sym__entry_separator] = ACTIONS(1544), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1546), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1544), - }, [323] = { - [sym__expr_parenthesized_immediate] = STATE(542), - [sym__immediate_decimal] = STATE(408), - [sym_val_variable] = STATE(542), + [sym_cmd_identifier] = STATE(4546), + [sym__expression] = STATE(3867), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(837), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4804), [sym_comment] = STATE(323), - [anon_sym_export] = ACTIONS(1530), - [anon_sym_alias] = ACTIONS(1530), - [anon_sym_let] = ACTIONS(1530), - [anon_sym_let_DASHenv] = ACTIONS(1530), - [anon_sym_mut] = ACTIONS(1530), - [anon_sym_const] = ACTIONS(1530), - [aux_sym_cmd_identifier_token1] = ACTIONS(1530), - [aux_sym_cmd_identifier_token2] = ACTIONS(1544), - [aux_sym_cmd_identifier_token3] = ACTIONS(1544), - [aux_sym_cmd_identifier_token4] = ACTIONS(1544), - [aux_sym_cmd_identifier_token5] = ACTIONS(1544), - [aux_sym_cmd_identifier_token6] = ACTIONS(1544), - [aux_sym_cmd_identifier_token7] = ACTIONS(1544), - [aux_sym_cmd_identifier_token8] = ACTIONS(1530), - [aux_sym_cmd_identifier_token9] = ACTIONS(1530), - [aux_sym_cmd_identifier_token10] = ACTIONS(1544), - [aux_sym_cmd_identifier_token11] = ACTIONS(1544), - [aux_sym_cmd_identifier_token12] = ACTIONS(1530), - [aux_sym_cmd_identifier_token13] = ACTIONS(1530), - [aux_sym_cmd_identifier_token14] = ACTIONS(1530), - [aux_sym_cmd_identifier_token15] = ACTIONS(1530), - [aux_sym_cmd_identifier_token16] = ACTIONS(1544), - [aux_sym_cmd_identifier_token17] = ACTIONS(1544), - [aux_sym_cmd_identifier_token18] = ACTIONS(1544), - [aux_sym_cmd_identifier_token19] = ACTIONS(1544), - [aux_sym_cmd_identifier_token20] = ACTIONS(1544), - [aux_sym_cmd_identifier_token21] = ACTIONS(1544), - [aux_sym_cmd_identifier_token22] = ACTIONS(1544), - [aux_sym_cmd_identifier_token23] = ACTIONS(1544), - [aux_sym_cmd_identifier_token24] = ACTIONS(1544), - [aux_sym_cmd_identifier_token25] = ACTIONS(1544), - [aux_sym_cmd_identifier_token26] = ACTIONS(1544), - [aux_sym_cmd_identifier_token27] = ACTIONS(1544), - [aux_sym_cmd_identifier_token28] = ACTIONS(1544), - [aux_sym_cmd_identifier_token29] = ACTIONS(1544), - [aux_sym_cmd_identifier_token30] = ACTIONS(1544), - [aux_sym_cmd_identifier_token31] = ACTIONS(1544), - [aux_sym_cmd_identifier_token32] = ACTIONS(1544), - [aux_sym_cmd_identifier_token33] = ACTIONS(1544), - [aux_sym_cmd_identifier_token34] = ACTIONS(1530), - [aux_sym_cmd_identifier_token35] = ACTIONS(1544), - [aux_sym_cmd_identifier_token36] = ACTIONS(1544), - [aux_sym_cmd_identifier_token37] = ACTIONS(1544), - [aux_sym_cmd_identifier_token38] = ACTIONS(1530), - [aux_sym_cmd_identifier_token39] = ACTIONS(1544), - [aux_sym_cmd_identifier_token40] = ACTIONS(1544), - [anon_sym_def] = ACTIONS(1530), - [anon_sym_export_DASHenv] = ACTIONS(1530), - [anon_sym_extern] = ACTIONS(1530), - [anon_sym_module] = ACTIONS(1530), - [anon_sym_use] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_DOLLAR] = ACTIONS(1593), - [anon_sym_error] = ACTIONS(1530), - [anon_sym_DASH2] = ACTIONS(1530), - [anon_sym_break] = ACTIONS(1530), - [anon_sym_continue] = ACTIONS(1530), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_in2] = ACTIONS(1530), - [anon_sym_loop] = ACTIONS(1530), - [anon_sym_make] = ACTIONS(1530), - [anon_sym_while] = ACTIONS(1530), - [anon_sym_do] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1530), - [anon_sym_else] = ACTIONS(1530), - [anon_sym_match] = ACTIONS(1530), - [anon_sym_RBRACE] = ACTIONS(1544), - [anon_sym_try] = ACTIONS(1530), - [anon_sym_catch] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1530), - [anon_sym_source] = ACTIONS(1530), - [anon_sym_source_DASHenv] = ACTIONS(1530), - [anon_sym_register] = ACTIONS(1530), - [anon_sym_hide] = ACTIONS(1530), - [anon_sym_hide_DASHenv] = ACTIONS(1530), - [anon_sym_overlay] = ACTIONS(1530), - [anon_sym_as] = ACTIONS(1530), - [anon_sym_LPAREN2] = ACTIONS(1595), - [anon_sym_PLUS2] = ACTIONS(1530), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1544), - [anon_sym_DOT] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(1599), - [aux_sym__immediate_decimal_token3] = ACTIONS(1601), - [aux_sym__immediate_decimal_token4] = ACTIONS(1603), - [aux_sym__immediate_decimal_token5] = ACTIONS(1605), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1544), - [aux_sym__val_number_decimal_token1] = ACTIONS(1530), - [aux_sym__val_number_decimal_token2] = ACTIONS(1530), - [aux_sym__val_number_decimal_token3] = ACTIONS(1530), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(1544), - [aux_sym__val_number_token2] = ACTIONS(1544), - [aux_sym__val_number_token3] = ACTIONS(1544), - [aux_sym__val_number_token4] = ACTIONS(1530), - [aux_sym__val_number_token5] = ACTIONS(1530), - [aux_sym__val_number_token6] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1544), - [sym__str_single_quotes] = ACTIONS(1544), - [sym__str_back_ticks] = ACTIONS(1544), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1544), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1546), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1544), - }, - [324] = { - [sym_comment] = STATE(324), - [anon_sym_export] = ACTIONS(1607), - [anon_sym_alias] = ACTIONS(1607), - [anon_sym_let] = ACTIONS(1607), - [anon_sym_let_DASHenv] = ACTIONS(1607), - [anon_sym_mut] = ACTIONS(1607), - [anon_sym_const] = ACTIONS(1607), - [aux_sym_cmd_identifier_token1] = ACTIONS(1607), - [aux_sym_cmd_identifier_token2] = ACTIONS(1607), - [aux_sym_cmd_identifier_token3] = ACTIONS(1607), - [aux_sym_cmd_identifier_token4] = ACTIONS(1607), - [aux_sym_cmd_identifier_token5] = ACTIONS(1607), - [aux_sym_cmd_identifier_token6] = ACTIONS(1607), - [aux_sym_cmd_identifier_token7] = ACTIONS(1607), - [aux_sym_cmd_identifier_token8] = ACTIONS(1607), - [aux_sym_cmd_identifier_token9] = ACTIONS(1607), - [aux_sym_cmd_identifier_token10] = ACTIONS(1607), - [aux_sym_cmd_identifier_token11] = ACTIONS(1607), - [aux_sym_cmd_identifier_token12] = ACTIONS(1607), - [aux_sym_cmd_identifier_token13] = ACTIONS(1607), - [aux_sym_cmd_identifier_token14] = ACTIONS(1607), - [aux_sym_cmd_identifier_token15] = ACTIONS(1607), - [aux_sym_cmd_identifier_token16] = ACTIONS(1607), - [aux_sym_cmd_identifier_token17] = ACTIONS(1607), - [aux_sym_cmd_identifier_token18] = ACTIONS(1607), - [aux_sym_cmd_identifier_token19] = ACTIONS(1607), - [aux_sym_cmd_identifier_token20] = ACTIONS(1607), - [aux_sym_cmd_identifier_token21] = ACTIONS(1607), - [aux_sym_cmd_identifier_token22] = ACTIONS(1607), - [aux_sym_cmd_identifier_token23] = ACTIONS(1607), - [aux_sym_cmd_identifier_token24] = ACTIONS(1607), - [aux_sym_cmd_identifier_token25] = ACTIONS(1607), - [aux_sym_cmd_identifier_token26] = ACTIONS(1607), - [aux_sym_cmd_identifier_token27] = ACTIONS(1607), - [aux_sym_cmd_identifier_token28] = ACTIONS(1607), - [aux_sym_cmd_identifier_token29] = ACTIONS(1607), - [aux_sym_cmd_identifier_token30] = ACTIONS(1607), - [aux_sym_cmd_identifier_token31] = ACTIONS(1607), - [aux_sym_cmd_identifier_token32] = ACTIONS(1607), - [aux_sym_cmd_identifier_token33] = ACTIONS(1607), - [aux_sym_cmd_identifier_token34] = ACTIONS(1607), - [aux_sym_cmd_identifier_token35] = ACTIONS(1607), - [aux_sym_cmd_identifier_token36] = ACTIONS(1607), - [aux_sym_cmd_identifier_token37] = ACTIONS(1607), - [aux_sym_cmd_identifier_token38] = ACTIONS(1607), - [aux_sym_cmd_identifier_token39] = ACTIONS(1607), - [aux_sym_cmd_identifier_token40] = ACTIONS(1607), - [anon_sym_def] = ACTIONS(1607), - [anon_sym_export_DASHenv] = ACTIONS(1607), - [anon_sym_extern] = ACTIONS(1607), - [anon_sym_module] = ACTIONS(1607), - [anon_sym_use] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_DOLLAR] = ACTIONS(1607), - [anon_sym_error] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_break] = ACTIONS(1607), - [anon_sym_continue] = ACTIONS(1607), - [anon_sym_for] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_loop] = ACTIONS(1607), - [anon_sym_make] = ACTIONS(1607), - [anon_sym_while] = ACTIONS(1607), - [anon_sym_do] = ACTIONS(1607), - [anon_sym_if] = ACTIONS(1607), - [anon_sym_else] = ACTIONS(1607), - [anon_sym_match] = ACTIONS(1607), - [anon_sym_RBRACE] = ACTIONS(1607), - [anon_sym_try] = ACTIONS(1607), - [anon_sym_catch] = ACTIONS(1607), - [anon_sym_return] = ACTIONS(1607), - [anon_sym_source] = ACTIONS(1607), - [anon_sym_source_DASHenv] = ACTIONS(1607), - [anon_sym_register] = ACTIONS(1607), - [anon_sym_hide] = ACTIONS(1607), - [anon_sym_hide_DASHenv] = ACTIONS(1607), - [anon_sym_overlay] = ACTIONS(1607), - [anon_sym_as] = ACTIONS(1607), - [anon_sym_LPAREN2] = ACTIONS(1609), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT] = ACTIONS(1611), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1607), - [aux_sym__val_number_decimal_token1] = ACTIONS(1607), - [aux_sym__val_number_decimal_token2] = ACTIONS(1607), - [aux_sym__val_number_decimal_token3] = ACTIONS(1607), - [aux_sym__val_number_decimal_token4] = ACTIONS(1607), - [aux_sym__val_number_token1] = ACTIONS(1607), - [aux_sym__val_number_token2] = ACTIONS(1607), - [aux_sym__val_number_token3] = ACTIONS(1607), - [aux_sym__val_number_token4] = ACTIONS(1607), - [aux_sym__val_number_token5] = ACTIONS(1607), - [aux_sym__val_number_token6] = ACTIONS(1607), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1607), - [sym__str_single_quotes] = ACTIONS(1607), - [sym__str_back_ticks] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1607), - [sym__entry_separator] = ACTIONS(1609), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1607), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1609), - }, - [325] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if] = STATE(4895), - [sym_block] = STATE(4896), - [sym__expression] = STATE(4896), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3969), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1255), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(4896), - [sym_comment] = STATE(325), + [aux_sym_pipe_element_repeat2] = STATE(1173), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -111418,8 +111522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -111427,10 +111530,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1507), - [aux_sym__val_number_decimal_token2] = ACTIONS(1509), - [aux_sym__val_number_decimal_token3] = ACTIONS(1511), - [aux_sym__val_number_decimal_token4] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(471), + [aux_sym__val_number_decimal_token2] = ACTIONS(473), + [aux_sym__val_number_decimal_token3] = ACTIONS(475), + [aux_sym__val_number_decimal_token4] = ACTIONS(477), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -111446,152 +111549,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [326] = { - [sym_comment] = STATE(326), - [anon_sym_export] = ACTIONS(1617), - [anon_sym_alias] = ACTIONS(1617), - [anon_sym_let] = ACTIONS(1617), - [anon_sym_let_DASHenv] = ACTIONS(1617), - [anon_sym_mut] = ACTIONS(1617), - [anon_sym_const] = ACTIONS(1617), - [aux_sym_cmd_identifier_token1] = ACTIONS(1617), - [aux_sym_cmd_identifier_token2] = ACTIONS(1619), - [aux_sym_cmd_identifier_token3] = ACTIONS(1619), - [aux_sym_cmd_identifier_token4] = ACTIONS(1619), - [aux_sym_cmd_identifier_token5] = ACTIONS(1619), - [aux_sym_cmd_identifier_token6] = ACTIONS(1619), - [aux_sym_cmd_identifier_token7] = ACTIONS(1619), - [aux_sym_cmd_identifier_token8] = ACTIONS(1617), - [aux_sym_cmd_identifier_token9] = ACTIONS(1617), - [aux_sym_cmd_identifier_token10] = ACTIONS(1619), - [aux_sym_cmd_identifier_token11] = ACTIONS(1619), - [aux_sym_cmd_identifier_token12] = ACTIONS(1617), - [aux_sym_cmd_identifier_token13] = ACTIONS(1617), - [aux_sym_cmd_identifier_token14] = ACTIONS(1617), - [aux_sym_cmd_identifier_token15] = ACTIONS(1617), - [aux_sym_cmd_identifier_token16] = ACTIONS(1619), - [aux_sym_cmd_identifier_token17] = ACTIONS(1619), - [aux_sym_cmd_identifier_token18] = ACTIONS(1619), - [aux_sym_cmd_identifier_token19] = ACTIONS(1619), - [aux_sym_cmd_identifier_token20] = ACTIONS(1619), - [aux_sym_cmd_identifier_token21] = ACTIONS(1619), - [aux_sym_cmd_identifier_token22] = ACTIONS(1619), - [aux_sym_cmd_identifier_token23] = ACTIONS(1619), - [aux_sym_cmd_identifier_token24] = ACTIONS(1619), - [aux_sym_cmd_identifier_token25] = ACTIONS(1619), - [aux_sym_cmd_identifier_token26] = ACTIONS(1619), - [aux_sym_cmd_identifier_token27] = ACTIONS(1619), - [aux_sym_cmd_identifier_token28] = ACTIONS(1619), - [aux_sym_cmd_identifier_token29] = ACTIONS(1619), - [aux_sym_cmd_identifier_token30] = ACTIONS(1619), - [aux_sym_cmd_identifier_token31] = ACTIONS(1619), - [aux_sym_cmd_identifier_token32] = ACTIONS(1619), - [aux_sym_cmd_identifier_token33] = ACTIONS(1619), - [aux_sym_cmd_identifier_token34] = ACTIONS(1617), - [aux_sym_cmd_identifier_token35] = ACTIONS(1619), - [aux_sym_cmd_identifier_token36] = ACTIONS(1619), - [aux_sym_cmd_identifier_token37] = ACTIONS(1619), - [aux_sym_cmd_identifier_token38] = ACTIONS(1617), - [aux_sym_cmd_identifier_token39] = ACTIONS(1619), - [aux_sym_cmd_identifier_token40] = ACTIONS(1619), - [sym__newline] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1619), - [anon_sym_def] = ACTIONS(1617), - [anon_sym_export_DASHenv] = ACTIONS(1617), - [anon_sym_extern] = ACTIONS(1617), - [anon_sym_module] = ACTIONS(1617), - [anon_sym_use] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1619), - [anon_sym_DOLLAR] = ACTIONS(1617), - [anon_sym_error] = ACTIONS(1617), - [anon_sym_DASH2] = ACTIONS(1617), - [anon_sym_break] = ACTIONS(1617), - [anon_sym_continue] = ACTIONS(1617), - [anon_sym_for] = ACTIONS(1617), - [anon_sym_loop] = ACTIONS(1617), - [anon_sym_while] = ACTIONS(1617), - [anon_sym_do] = ACTIONS(1617), - [anon_sym_if] = ACTIONS(1617), - [anon_sym_match] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1619), - [anon_sym_DOT_DOT] = ACTIONS(1617), - [anon_sym_try] = ACTIONS(1617), - [anon_sym_return] = ACTIONS(1617), - [anon_sym_source] = ACTIONS(1617), - [anon_sym_source_DASHenv] = ACTIONS(1617), - [anon_sym_register] = ACTIONS(1617), - [anon_sym_hide] = ACTIONS(1617), - [anon_sym_hide_DASHenv] = ACTIONS(1617), - [anon_sym_overlay] = ACTIONS(1617), - [anon_sym_where] = ACTIONS(1619), - [aux_sym_expr_unary_token1] = ACTIONS(1619), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1619), - [anon_sym_DOT_DOT_LT] = ACTIONS(1619), - [anon_sym_null] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1617), - [anon_sym_false] = ACTIONS(1617), - [aux_sym__val_number_decimal_token1] = ACTIONS(1617), - [aux_sym__val_number_decimal_token2] = ACTIONS(1619), - [aux_sym__val_number_decimal_token3] = ACTIONS(1619), - [aux_sym__val_number_decimal_token4] = ACTIONS(1619), - [aux_sym__val_number_token1] = ACTIONS(1619), - [aux_sym__val_number_token2] = ACTIONS(1619), - [aux_sym__val_number_token3] = ACTIONS(1619), - [aux_sym__val_number_token4] = ACTIONS(1617), - [aux_sym__val_number_token5] = ACTIONS(1617), - [aux_sym__val_number_token6] = ACTIONS(1617), - [anon_sym_0b] = ACTIONS(1617), - [anon_sym_0o] = ACTIONS(1617), - [anon_sym_0x] = ACTIONS(1617), - [sym_val_date] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1619), - [sym__str_single_quotes] = ACTIONS(1619), - [sym__str_back_ticks] = ACTIONS(1619), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1619), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1619), - [aux_sym_env_var_token1] = ACTIONS(1617), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1619), - }, - [327] = { - [sym_cmd_identifier] = STATE(4592), - [sym__expression] = STATE(3851), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4783), - [sym_comment] = STATE(327), - [aux_sym_pipe_element_repeat2] = STATE(1180), + [324] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if] = STATE(4871), + [sym_block] = STATE(4874), + [sym__expression] = STATE(4874), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3981), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1214), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(4874), + [sym_comment] = STATE(324), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -111636,7 +111631,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_if] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -111644,10 +111640,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(471), - [aux_sym__val_number_decimal_token2] = ACTIONS(473), - [aux_sym__val_number_decimal_token3] = ACTIONS(475), - [aux_sym__val_number_decimal_token4] = ACTIONS(477), + [aux_sym__val_number_decimal_token1] = ACTIONS(1515), + [aux_sym__val_number_decimal_token2] = ACTIONS(1517), + [aux_sym__val_number_decimal_token3] = ACTIONS(1519), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -111663,153 +111659,261 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [328] = { - [sym_comment] = STATE(328), - [anon_sym_export] = ACTIONS(1621), - [anon_sym_alias] = ACTIONS(1621), - [anon_sym_let] = ACTIONS(1621), - [anon_sym_let_DASHenv] = ACTIONS(1621), - [anon_sym_mut] = ACTIONS(1621), - [anon_sym_const] = ACTIONS(1621), - [aux_sym_cmd_identifier_token1] = ACTIONS(1621), - [aux_sym_cmd_identifier_token2] = ACTIONS(1621), - [aux_sym_cmd_identifier_token3] = ACTIONS(1621), - [aux_sym_cmd_identifier_token4] = ACTIONS(1621), - [aux_sym_cmd_identifier_token5] = ACTIONS(1621), - [aux_sym_cmd_identifier_token6] = ACTIONS(1621), - [aux_sym_cmd_identifier_token7] = ACTIONS(1621), - [aux_sym_cmd_identifier_token8] = ACTIONS(1621), - [aux_sym_cmd_identifier_token9] = ACTIONS(1621), - [aux_sym_cmd_identifier_token10] = ACTIONS(1621), - [aux_sym_cmd_identifier_token11] = ACTIONS(1621), - [aux_sym_cmd_identifier_token12] = ACTIONS(1621), - [aux_sym_cmd_identifier_token13] = ACTIONS(1621), - [aux_sym_cmd_identifier_token14] = ACTIONS(1621), - [aux_sym_cmd_identifier_token15] = ACTIONS(1621), - [aux_sym_cmd_identifier_token16] = ACTIONS(1621), - [aux_sym_cmd_identifier_token17] = ACTIONS(1621), - [aux_sym_cmd_identifier_token18] = ACTIONS(1621), - [aux_sym_cmd_identifier_token19] = ACTIONS(1621), - [aux_sym_cmd_identifier_token20] = ACTIONS(1621), - [aux_sym_cmd_identifier_token21] = ACTIONS(1621), - [aux_sym_cmd_identifier_token22] = ACTIONS(1621), - [aux_sym_cmd_identifier_token23] = ACTIONS(1621), - [aux_sym_cmd_identifier_token24] = ACTIONS(1621), - [aux_sym_cmd_identifier_token25] = ACTIONS(1621), - [aux_sym_cmd_identifier_token26] = ACTIONS(1621), - [aux_sym_cmd_identifier_token27] = ACTIONS(1621), - [aux_sym_cmd_identifier_token28] = ACTIONS(1621), - [aux_sym_cmd_identifier_token29] = ACTIONS(1621), - [aux_sym_cmd_identifier_token30] = ACTIONS(1621), - [aux_sym_cmd_identifier_token31] = ACTIONS(1621), - [aux_sym_cmd_identifier_token32] = ACTIONS(1621), - [aux_sym_cmd_identifier_token33] = ACTIONS(1621), - [aux_sym_cmd_identifier_token34] = ACTIONS(1621), - [aux_sym_cmd_identifier_token35] = ACTIONS(1621), - [aux_sym_cmd_identifier_token36] = ACTIONS(1621), - [aux_sym_cmd_identifier_token37] = ACTIONS(1621), - [aux_sym_cmd_identifier_token38] = ACTIONS(1621), - [aux_sym_cmd_identifier_token39] = ACTIONS(1621), - [aux_sym_cmd_identifier_token40] = ACTIONS(1621), - [anon_sym_def] = ACTIONS(1621), - [anon_sym_export_DASHenv] = ACTIONS(1621), - [anon_sym_extern] = ACTIONS(1621), - [anon_sym_module] = ACTIONS(1621), - [anon_sym_use] = ACTIONS(1621), - [anon_sym_LPAREN] = ACTIONS(1621), - [anon_sym_DOLLAR] = ACTIONS(1621), - [anon_sym_error] = ACTIONS(1621), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_break] = ACTIONS(1621), - [anon_sym_continue] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1621), - [anon_sym_in2] = ACTIONS(1621), - [anon_sym_loop] = ACTIONS(1621), - [anon_sym_make] = ACTIONS(1621), - [anon_sym_while] = ACTIONS(1621), - [anon_sym_do] = ACTIONS(1621), - [anon_sym_if] = ACTIONS(1621), - [anon_sym_else] = ACTIONS(1621), - [anon_sym_match] = ACTIONS(1621), - [anon_sym_RBRACE] = ACTIONS(1621), - [anon_sym_try] = ACTIONS(1621), - [anon_sym_catch] = ACTIONS(1621), - [anon_sym_return] = ACTIONS(1621), - [anon_sym_source] = ACTIONS(1621), - [anon_sym_source_DASHenv] = ACTIONS(1621), - [anon_sym_register] = ACTIONS(1621), - [anon_sym_hide] = ACTIONS(1621), - [anon_sym_hide_DASHenv] = ACTIONS(1621), - [anon_sym_overlay] = ACTIONS(1621), - [anon_sym_as] = ACTIONS(1621), - [anon_sym_LPAREN2] = ACTIONS(1623), - [anon_sym_PLUS2] = ACTIONS(1621), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1621), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [aux_sym__immediate_decimal_token1] = ACTIONS(1625), - [aux_sym__immediate_decimal_token2] = ACTIONS(1627), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1621), - [aux_sym__val_number_decimal_token1] = ACTIONS(1621), - [aux_sym__val_number_decimal_token2] = ACTIONS(1621), - [aux_sym__val_number_decimal_token3] = ACTIONS(1621), - [aux_sym__val_number_decimal_token4] = ACTIONS(1621), - [aux_sym__val_number_token1] = ACTIONS(1621), - [aux_sym__val_number_token2] = ACTIONS(1621), - [aux_sym__val_number_token3] = ACTIONS(1621), - [aux_sym__val_number_token4] = ACTIONS(1621), - [aux_sym__val_number_token5] = ACTIONS(1621), - [aux_sym__val_number_token6] = ACTIONS(1621), - [sym_filesize_unit] = ACTIONS(1621), - [sym_duration_unit] = ACTIONS(1621), - [anon_sym_DQUOTE] = ACTIONS(1621), - [sym__str_single_quotes] = ACTIONS(1621), - [sym__str_back_ticks] = ACTIONS(1621), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1621), - [sym__entry_separator] = ACTIONS(1623), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1621), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1623), + [325] = { + [sym_cmd_identifier] = STATE(4653), + [sym__expression] = STATE(3958), + [sym_expr_unary] = STATE(2522), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2522), + [sym__expr_binary_expression] = STATE(3982), + [sym_expr_parenthesized] = STATE(2170), + [sym_val_range] = STATE(3995), + [sym__value] = STATE(2522), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(2481), + [sym_val_variable] = STATE(2126), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(822), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(5014), + [sym_comment] = STATE(325), + [aux_sym_pipe_element_repeat2] = STATE(1173), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(21), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(21), + [aux_sym_cmd_identifier_token28] = ACTIONS(21), + [aux_sym_cmd_identifier_token29] = ACTIONS(21), + [aux_sym_cmd_identifier_token30] = ACTIONS(21), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(19), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [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(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [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(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), }, - [329] = { - [sym_cmd_identifier] = STATE(4592), - [sym__expression] = STATE(3851), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(844), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4783), - [sym_comment] = STATE(329), - [aux_sym_pipe_element_repeat2] = STATE(1180), + [326] = { + [sym__expr_parenthesized_immediate] = STATE(517), + [sym__immediate_decimal] = STATE(439), + [sym_val_variable] = STATE(517), + [sym_comment] = STATE(326), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_alias] = ACTIONS(1543), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_let_DASHenv] = ACTIONS(1543), + [anon_sym_mut] = ACTIONS(1543), + [anon_sym_const] = ACTIONS(1543), + [aux_sym_cmd_identifier_token1] = ACTIONS(1543), + [aux_sym_cmd_identifier_token2] = ACTIONS(1557), + [aux_sym_cmd_identifier_token3] = ACTIONS(1557), + [aux_sym_cmd_identifier_token4] = ACTIONS(1557), + [aux_sym_cmd_identifier_token5] = ACTIONS(1557), + [aux_sym_cmd_identifier_token6] = ACTIONS(1557), + [aux_sym_cmd_identifier_token7] = ACTIONS(1557), + [aux_sym_cmd_identifier_token8] = ACTIONS(1543), + [aux_sym_cmd_identifier_token9] = ACTIONS(1543), + [aux_sym_cmd_identifier_token10] = ACTIONS(1557), + [aux_sym_cmd_identifier_token11] = ACTIONS(1557), + [aux_sym_cmd_identifier_token12] = ACTIONS(1543), + [aux_sym_cmd_identifier_token13] = ACTIONS(1543), + [aux_sym_cmd_identifier_token14] = ACTIONS(1543), + [aux_sym_cmd_identifier_token15] = ACTIONS(1543), + [aux_sym_cmd_identifier_token16] = ACTIONS(1557), + [aux_sym_cmd_identifier_token17] = ACTIONS(1557), + [aux_sym_cmd_identifier_token18] = ACTIONS(1557), + [aux_sym_cmd_identifier_token19] = ACTIONS(1557), + [aux_sym_cmd_identifier_token20] = ACTIONS(1557), + [aux_sym_cmd_identifier_token21] = ACTIONS(1557), + [aux_sym_cmd_identifier_token22] = ACTIONS(1557), + [aux_sym_cmd_identifier_token23] = ACTIONS(1557), + [aux_sym_cmd_identifier_token24] = ACTIONS(1557), + [aux_sym_cmd_identifier_token25] = ACTIONS(1557), + [aux_sym_cmd_identifier_token26] = ACTIONS(1557), + [aux_sym_cmd_identifier_token27] = ACTIONS(1557), + [aux_sym_cmd_identifier_token28] = ACTIONS(1557), + [aux_sym_cmd_identifier_token29] = ACTIONS(1557), + [aux_sym_cmd_identifier_token30] = ACTIONS(1557), + [aux_sym_cmd_identifier_token31] = ACTIONS(1557), + [aux_sym_cmd_identifier_token32] = ACTIONS(1557), + [aux_sym_cmd_identifier_token33] = ACTIONS(1557), + [aux_sym_cmd_identifier_token34] = ACTIONS(1543), + [aux_sym_cmd_identifier_token35] = ACTIONS(1557), + [aux_sym_cmd_identifier_token36] = ACTIONS(1557), + [aux_sym_cmd_identifier_token37] = ACTIONS(1557), + [aux_sym_cmd_identifier_token38] = ACTIONS(1543), + [aux_sym_cmd_identifier_token39] = ACTIONS(1557), + [aux_sym_cmd_identifier_token40] = ACTIONS(1557), + [anon_sym_def] = ACTIONS(1543), + [anon_sym_export_DASHenv] = ACTIONS(1543), + [anon_sym_extern] = ACTIONS(1543), + [anon_sym_module] = ACTIONS(1543), + [anon_sym_use] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1615), + [anon_sym_error] = ACTIONS(1543), + [anon_sym_DASH2] = ACTIONS(1543), + [anon_sym_break] = ACTIONS(1543), + [anon_sym_continue] = ACTIONS(1543), + [anon_sym_for] = ACTIONS(1543), + [anon_sym_in2] = ACTIONS(1543), + [anon_sym_loop] = ACTIONS(1543), + [anon_sym_make] = ACTIONS(1543), + [anon_sym_while] = ACTIONS(1543), + [anon_sym_do] = ACTIONS(1543), + [anon_sym_if] = ACTIONS(1543), + [anon_sym_else] = ACTIONS(1543), + [anon_sym_match] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1557), + [anon_sym_try] = ACTIONS(1543), + [anon_sym_catch] = ACTIONS(1543), + [anon_sym_return] = ACTIONS(1543), + [anon_sym_source] = ACTIONS(1543), + [anon_sym_source_DASHenv] = ACTIONS(1543), + [anon_sym_register] = ACTIONS(1543), + [anon_sym_hide] = ACTIONS(1543), + [anon_sym_hide_DASHenv] = ACTIONS(1543), + [anon_sym_overlay] = ACTIONS(1543), + [anon_sym_as] = ACTIONS(1543), + [anon_sym_LPAREN2] = ACTIONS(1617), + [anon_sym_PLUS2] = ACTIONS(1543), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1557), + [anon_sym_DOT] = ACTIONS(1619), + [aux_sym__immediate_decimal_token1] = ACTIONS(1621), + [aux_sym__immediate_decimal_token3] = ACTIONS(1623), + [aux_sym__immediate_decimal_token4] = ACTIONS(1625), + [aux_sym__immediate_decimal_token5] = ACTIONS(1627), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1557), + [aux_sym__val_number_decimal_token1] = ACTIONS(1543), + [aux_sym__val_number_decimal_token2] = ACTIONS(1543), + [aux_sym__val_number_decimal_token3] = ACTIONS(1543), + [aux_sym__val_number_decimal_token4] = ACTIONS(1543), + [aux_sym__val_number_token1] = ACTIONS(1557), + [aux_sym__val_number_token2] = ACTIONS(1557), + [aux_sym__val_number_token3] = ACTIONS(1557), + [aux_sym__val_number_token4] = ACTIONS(1543), + [aux_sym__val_number_token5] = ACTIONS(1543), + [aux_sym__val_number_token6] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1557), + [sym__str_single_quotes] = ACTIONS(1557), + [sym__str_back_ticks] = ACTIONS(1557), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1557), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1559), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1557), + }, + [327] = { + [sym_cmd_identifier] = STATE(4794), + [sym__expression_parenthesized] = STATE(3940), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(839), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5163), + [sym_comment] = STATE(327), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1190), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -111882,43 +111986,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), + [anon_sym_CARET] = ACTIONS(479), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [330] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if] = STATE(4895), - [sym_block] = STATE(4896), - [sym__expression] = STATE(4896), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3969), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1232), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(4896), - [sym_comment] = STATE(330), + [328] = { + [sym_comment] = STATE(328), + [anon_sym_export] = ACTIONS(1629), + [anon_sym_alias] = ACTIONS(1629), + [anon_sym_let] = ACTIONS(1629), + [anon_sym_let_DASHenv] = ACTIONS(1629), + [anon_sym_mut] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1629), + [aux_sym_cmd_identifier_token1] = ACTIONS(1629), + [aux_sym_cmd_identifier_token2] = ACTIONS(1631), + [aux_sym_cmd_identifier_token3] = ACTIONS(1631), + [aux_sym_cmd_identifier_token4] = ACTIONS(1631), + [aux_sym_cmd_identifier_token5] = ACTIONS(1631), + [aux_sym_cmd_identifier_token6] = ACTIONS(1631), + [aux_sym_cmd_identifier_token7] = ACTIONS(1631), + [aux_sym_cmd_identifier_token8] = ACTIONS(1629), + [aux_sym_cmd_identifier_token9] = ACTIONS(1629), + [aux_sym_cmd_identifier_token10] = ACTIONS(1631), + [aux_sym_cmd_identifier_token11] = ACTIONS(1631), + [aux_sym_cmd_identifier_token12] = ACTIONS(1629), + [aux_sym_cmd_identifier_token13] = ACTIONS(1629), + [aux_sym_cmd_identifier_token14] = ACTIONS(1629), + [aux_sym_cmd_identifier_token15] = ACTIONS(1629), + [aux_sym_cmd_identifier_token16] = ACTIONS(1631), + [aux_sym_cmd_identifier_token17] = ACTIONS(1631), + [aux_sym_cmd_identifier_token18] = ACTIONS(1631), + [aux_sym_cmd_identifier_token19] = ACTIONS(1631), + [aux_sym_cmd_identifier_token20] = ACTIONS(1631), + [aux_sym_cmd_identifier_token21] = ACTIONS(1631), + [aux_sym_cmd_identifier_token22] = ACTIONS(1631), + [aux_sym_cmd_identifier_token23] = ACTIONS(1631), + [aux_sym_cmd_identifier_token24] = ACTIONS(1631), + [aux_sym_cmd_identifier_token25] = ACTIONS(1631), + [aux_sym_cmd_identifier_token26] = ACTIONS(1631), + [aux_sym_cmd_identifier_token27] = ACTIONS(1631), + [aux_sym_cmd_identifier_token28] = ACTIONS(1631), + [aux_sym_cmd_identifier_token29] = ACTIONS(1631), + [aux_sym_cmd_identifier_token30] = ACTIONS(1631), + [aux_sym_cmd_identifier_token31] = ACTIONS(1631), + [aux_sym_cmd_identifier_token32] = ACTIONS(1631), + [aux_sym_cmd_identifier_token33] = ACTIONS(1631), + [aux_sym_cmd_identifier_token34] = ACTIONS(1629), + [aux_sym_cmd_identifier_token35] = ACTIONS(1631), + [aux_sym_cmd_identifier_token36] = ACTIONS(1631), + [aux_sym_cmd_identifier_token37] = ACTIONS(1631), + [aux_sym_cmd_identifier_token38] = ACTIONS(1629), + [aux_sym_cmd_identifier_token39] = ACTIONS(1631), + [aux_sym_cmd_identifier_token40] = ACTIONS(1631), + [sym__newline] = ACTIONS(1631), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_def] = ACTIONS(1629), + [anon_sym_export_DASHenv] = ACTIONS(1629), + [anon_sym_extern] = ACTIONS(1629), + [anon_sym_module] = ACTIONS(1629), + [anon_sym_use] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_DOLLAR] = ACTIONS(1629), + [anon_sym_error] = ACTIONS(1629), + [anon_sym_DASH2] = ACTIONS(1629), + [anon_sym_break] = ACTIONS(1629), + [anon_sym_continue] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_loop] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_do] = ACTIONS(1629), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_match] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1631), + [anon_sym_DOT_DOT] = ACTIONS(1629), + [anon_sym_try] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_source] = ACTIONS(1629), + [anon_sym_source_DASHenv] = ACTIONS(1629), + [anon_sym_register] = ACTIONS(1629), + [anon_sym_hide] = ACTIONS(1629), + [anon_sym_hide_DASHenv] = ACTIONS(1629), + [anon_sym_overlay] = ACTIONS(1629), + [anon_sym_where] = ACTIONS(1631), + [aux_sym_expr_unary_token1] = ACTIONS(1631), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1631), + [anon_sym_DOT_DOT_LT] = ACTIONS(1631), + [anon_sym_null] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1629), + [anon_sym_false] = ACTIONS(1629), + [aux_sym__val_number_decimal_token1] = ACTIONS(1629), + [aux_sym__val_number_decimal_token2] = ACTIONS(1631), + [aux_sym__val_number_decimal_token3] = ACTIONS(1631), + [aux_sym__val_number_decimal_token4] = ACTIONS(1631), + [aux_sym__val_number_token1] = ACTIONS(1631), + [aux_sym__val_number_token2] = ACTIONS(1631), + [aux_sym__val_number_token3] = ACTIONS(1631), + [aux_sym__val_number_token4] = ACTIONS(1629), + [aux_sym__val_number_token5] = ACTIONS(1629), + [aux_sym__val_number_token6] = ACTIONS(1629), + [anon_sym_0b] = ACTIONS(1629), + [anon_sym_0o] = ACTIONS(1629), + [anon_sym_0x] = ACTIONS(1629), + [sym_val_date] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [sym__str_single_quotes] = ACTIONS(1631), + [sym__str_back_ticks] = ACTIONS(1631), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1631), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1631), + [aux_sym_env_var_token1] = ACTIONS(1629), + [anon_sym_CARET] = ACTIONS(1631), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1631), + }, + [329] = { + [sym_cmd_identifier] = STATE(4794), + [sym__expression_parenthesized] = STATE(3940), + [sym_expr_unary] = STATE(2460), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2460), + [sym__expr_binary_expression_parenthesized] = STATE(3868), + [sym_expr_parenthesized] = STATE(2173), + [sym_val_range] = STATE(3942), + [sym__value] = STATE(2460), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(857), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7174), + [sym__command_parenthesized] = STATE(5163), + [sym_comment] = STATE(329), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1190), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -111963,8 +112176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(1064), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -111972,10 +112184,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1515), - [aux_sym__val_number_decimal_token2] = ACTIONS(1517), - [aux_sym__val_number_decimal_token3] = ACTIONS(1519), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_decimal_token1] = ACTIONS(1633), + [aux_sym__val_number_decimal_token2] = ACTIONS(1635), + [aux_sym__val_number_decimal_token3] = ACTIONS(1637), + [aux_sym__val_number_decimal_token4] = ACTIONS(1639), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -111991,43 +112203,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_CARET] = ACTIONS(245), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(479), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [331] = { - [sym_cmd_identifier] = STATE(4636), - [sym__expression_parenthesized] = STATE(3932), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(844), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5065), - [sym_comment] = STATE(331), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1189), + [330] = { + [sym_cmd_identifier] = STATE(4546), + [sym__expression] = STATE(3867), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(857), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4804), + [sym_comment] = STATE(330), + [aux_sym_pipe_element_repeat2] = STATE(1173), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -112080,10 +112293,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_decimal_token2] = ACTIONS(1056), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_decimal_token1] = ACTIONS(1633), + [aux_sym__val_number_decimal_token2] = ACTIONS(1635), + [aux_sym__val_number_decimal_token3] = ACTIONS(1637), + [aux_sym__val_number_decimal_token4] = ACTIONS(1639), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -112100,261 +112313,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [332] = { - [sym_cmd_identifier] = STATE(4748), - [sym_ctrl_if] = STATE(4996), - [sym_block] = STATE(4997), - [sym__expression] = STATE(4997), - [sym_expr_unary] = STATE(2469), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2469), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(3962), - [sym__value] = STATE(2469), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(2487), - [sym_val_variable] = STATE(2113), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(1220), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_command] = STATE(4997), - [sym_comment] = STATE(332), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(21), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(21), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(21), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(21), - [aux_sym_cmd_identifier_token23] = ACTIONS(21), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(21), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(21), - [aux_sym_cmd_identifier_token28] = ACTIONS(21), - [aux_sym_cmd_identifier_token29] = ACTIONS(21), - [aux_sym_cmd_identifier_token30] = ACTIONS(21), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(19), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(21), - [aux_sym_cmd_identifier_token37] = ACTIONS(21), - [aux_sym_cmd_identifier_token38] = ACTIONS(19), - [aux_sym_cmd_identifier_token39] = ACTIONS(21), - [aux_sym_cmd_identifier_token40] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1062), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_if] = ACTIONS(59), - [anon_sym_LBRACE] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(65), - [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(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(1631), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1635), - [aux_sym__val_number_decimal_token4] = ACTIONS(1637), - [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(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_CARET] = ACTIONS(119), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [333] = { - [sym_comment] = STATE(333), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_alias] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_let_DASHenv] = ACTIONS(1639), - [anon_sym_mut] = ACTIONS(1639), - [anon_sym_const] = ACTIONS(1639), - [aux_sym_cmd_identifier_token1] = ACTIONS(1639), - [aux_sym_cmd_identifier_token2] = ACTIONS(1641), - [aux_sym_cmd_identifier_token3] = ACTIONS(1641), - [aux_sym_cmd_identifier_token4] = ACTIONS(1641), - [aux_sym_cmd_identifier_token5] = ACTIONS(1641), - [aux_sym_cmd_identifier_token6] = ACTIONS(1641), - [aux_sym_cmd_identifier_token7] = ACTIONS(1641), - [aux_sym_cmd_identifier_token8] = ACTIONS(1639), - [aux_sym_cmd_identifier_token9] = ACTIONS(1639), - [aux_sym_cmd_identifier_token10] = ACTIONS(1641), - [aux_sym_cmd_identifier_token11] = ACTIONS(1641), - [aux_sym_cmd_identifier_token12] = ACTIONS(1639), - [aux_sym_cmd_identifier_token13] = ACTIONS(1639), - [aux_sym_cmd_identifier_token14] = ACTIONS(1639), - [aux_sym_cmd_identifier_token15] = ACTIONS(1639), - [aux_sym_cmd_identifier_token16] = ACTIONS(1641), - [aux_sym_cmd_identifier_token17] = ACTIONS(1641), - [aux_sym_cmd_identifier_token18] = ACTIONS(1641), - [aux_sym_cmd_identifier_token19] = ACTIONS(1641), - [aux_sym_cmd_identifier_token20] = ACTIONS(1641), - [aux_sym_cmd_identifier_token21] = ACTIONS(1641), - [aux_sym_cmd_identifier_token22] = ACTIONS(1641), - [aux_sym_cmd_identifier_token23] = ACTIONS(1641), - [aux_sym_cmd_identifier_token24] = ACTIONS(1641), - [aux_sym_cmd_identifier_token25] = ACTIONS(1641), - [aux_sym_cmd_identifier_token26] = ACTIONS(1641), - [aux_sym_cmd_identifier_token27] = ACTIONS(1641), - [aux_sym_cmd_identifier_token28] = ACTIONS(1641), - [aux_sym_cmd_identifier_token29] = ACTIONS(1641), - [aux_sym_cmd_identifier_token30] = ACTIONS(1641), - [aux_sym_cmd_identifier_token31] = ACTIONS(1641), - [aux_sym_cmd_identifier_token32] = ACTIONS(1641), - [aux_sym_cmd_identifier_token33] = ACTIONS(1641), - [aux_sym_cmd_identifier_token34] = ACTIONS(1639), - [aux_sym_cmd_identifier_token35] = ACTIONS(1641), - [aux_sym_cmd_identifier_token36] = ACTIONS(1641), - [aux_sym_cmd_identifier_token37] = ACTIONS(1641), - [aux_sym_cmd_identifier_token38] = ACTIONS(1639), - [aux_sym_cmd_identifier_token39] = ACTIONS(1641), - [aux_sym_cmd_identifier_token40] = ACTIONS(1641), - [sym__newline] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_def] = ACTIONS(1639), - [anon_sym_export_DASHenv] = ACTIONS(1639), - [anon_sym_extern] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_use] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_LPAREN] = ACTIONS(1641), - [anon_sym_DOLLAR] = ACTIONS(1639), - [anon_sym_error] = ACTIONS(1639), - [anon_sym_DASH2] = ACTIONS(1639), - [anon_sym_break] = ACTIONS(1639), - [anon_sym_continue] = ACTIONS(1639), - [anon_sym_for] = ACTIONS(1639), - [anon_sym_loop] = ACTIONS(1639), - [anon_sym_while] = ACTIONS(1639), - [anon_sym_do] = ACTIONS(1639), - [anon_sym_if] = ACTIONS(1639), - [anon_sym_match] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1639), - [anon_sym_try] = ACTIONS(1639), - [anon_sym_return] = ACTIONS(1639), - [anon_sym_source] = ACTIONS(1639), - [anon_sym_source_DASHenv] = ACTIONS(1639), - [anon_sym_register] = ACTIONS(1639), - [anon_sym_hide] = ACTIONS(1639), - [anon_sym_hide_DASHenv] = ACTIONS(1639), - [anon_sym_overlay] = ACTIONS(1639), - [anon_sym_where] = ACTIONS(1641), - [aux_sym_expr_unary_token1] = ACTIONS(1641), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT] = ACTIONS(1641), - [anon_sym_null] = ACTIONS(1639), - [anon_sym_true] = ACTIONS(1639), - [anon_sym_false] = ACTIONS(1639), - [aux_sym__val_number_decimal_token1] = ACTIONS(1639), - [aux_sym__val_number_decimal_token2] = ACTIONS(1641), - [aux_sym__val_number_decimal_token3] = ACTIONS(1641), - [aux_sym__val_number_decimal_token4] = ACTIONS(1641), - [aux_sym__val_number_token1] = ACTIONS(1641), - [aux_sym__val_number_token2] = ACTIONS(1641), - [aux_sym__val_number_token3] = ACTIONS(1641), - [aux_sym__val_number_token4] = ACTIONS(1639), - [aux_sym__val_number_token5] = ACTIONS(1639), - [aux_sym__val_number_token6] = ACTIONS(1639), - [anon_sym_0b] = ACTIONS(1639), - [anon_sym_0o] = ACTIONS(1639), - [anon_sym_0x] = ACTIONS(1639), - [sym_val_date] = ACTIONS(1641), - [anon_sym_DQUOTE] = ACTIONS(1641), - [sym__str_single_quotes] = ACTIONS(1641), - [sym__str_back_ticks] = ACTIONS(1641), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1641), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1641), - [aux_sym_env_var_token1] = ACTIONS(1639), - [anon_sym_CARET] = ACTIONS(1641), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1641), - }, - [334] = { - [sym_cmd_identifier] = STATE(4592), - [sym__expression] = STATE(3851), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(827), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4783), - [sym_comment] = STATE(334), - [aux_sym_pipe_element_repeat2] = STATE(1180), + [331] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if] = STATE(4871), + [sym_block] = STATE(4874), + [sym__expression] = STATE(4874), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3981), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1255), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(4874), + [sym_comment] = STATE(331), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -112399,7 +112394,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_if] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -112407,10 +112403,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(419), - [aux_sym__val_number_decimal_token2] = ACTIONS(421), - [aux_sym__val_number_decimal_token3] = ACTIONS(423), - [aux_sym__val_number_decimal_token4] = ACTIONS(425), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -112426,13 +112422,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [335] = { - [sym_comment] = STATE(335), + [332] = { + [sym_comment] = STATE(332), [anon_sym_export] = ACTIONS(1643), [anon_sym_alias] = ACTIONS(1643), [anon_sym_let] = ACTIONS(1643), @@ -112540,39 +112535,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1645), }, - [336] = { - [sym_cmd_identifier] = STATE(4636), - [sym__expression_parenthesized] = STATE(3932), - [sym_expr_unary] = STATE(2413), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2413), - [sym__expr_binary_expression_parenthesized] = STATE(3908), - [sym_expr_parenthesized] = STATE(2111), - [sym_val_range] = STATE(3925), - [sym__value] = STATE(2413), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(847), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(6848), - [sym__command_parenthesized] = STATE(5065), - [sym_comment] = STATE(336), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1189), + [333] = { + [sym_cmd_identifier] = STATE(4546), + [sym__expression] = STATE(3867), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3983), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(839), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_env_var] = STATE(7604), + [sym_command] = STATE(4804), + [sym_comment] = STATE(333), + [aux_sym_pipe_element_repeat2] = STATE(1173), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -112625,10 +112620,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1647), - [aux_sym__val_number_decimal_token2] = ACTIONS(1649), - [aux_sym__val_number_decimal_token3] = ACTIONS(1651), - [aux_sym__val_number_decimal_token4] = ACTIONS(1653), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1058), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -112645,43 +112640,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(479), + [anon_sym_CARET] = ACTIONS(245), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [337] = { - [sym_cmd_identifier] = STATE(4592), - [sym_ctrl_if] = STATE(4895), - [sym_block] = STATE(4896), - [sym__expression] = STATE(4896), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3969), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1211), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_command] = STATE(4896), - [sym_comment] = STATE(337), + [334] = { + [sym_cmd_identifier] = STATE(4546), + [sym_ctrl_if] = STATE(4871), + [sym_block] = STATE(4874), + [sym__expression] = STATE(4874), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3981), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1245), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_command] = STATE(4874), + [sym_comment] = STATE(334), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -112726,8 +112721,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_if] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_LBRACE] = ACTIONS(1474), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(209), @@ -112735,10 +112730,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(211), [anon_sym_true] = ACTIONS(213), [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1655), - [aux_sym__val_number_decimal_token2] = ACTIONS(1657), - [aux_sym__val_number_decimal_token3] = ACTIONS(1659), - [aux_sym__val_number_decimal_token4] = ACTIONS(1661), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -112758,119 +112753,446 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, + [335] = { + [sym__expr_parenthesized_immediate] = STATE(659), + [sym__immediate_decimal] = STATE(541), + [sym_val_variable] = STATE(659), + [sym_comment] = STATE(335), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_alias] = ACTIONS(1543), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_let_DASHenv] = ACTIONS(1543), + [anon_sym_mut] = ACTIONS(1543), + [anon_sym_const] = ACTIONS(1543), + [aux_sym_cmd_identifier_token1] = ACTIONS(1543), + [aux_sym_cmd_identifier_token2] = ACTIONS(1543), + [aux_sym_cmd_identifier_token3] = ACTIONS(1543), + [aux_sym_cmd_identifier_token4] = ACTIONS(1543), + [aux_sym_cmd_identifier_token5] = ACTIONS(1543), + [aux_sym_cmd_identifier_token6] = ACTIONS(1543), + [aux_sym_cmd_identifier_token7] = ACTIONS(1543), + [aux_sym_cmd_identifier_token8] = ACTIONS(1543), + [aux_sym_cmd_identifier_token9] = ACTIONS(1543), + [aux_sym_cmd_identifier_token10] = ACTIONS(1543), + [aux_sym_cmd_identifier_token11] = ACTIONS(1543), + [aux_sym_cmd_identifier_token12] = ACTIONS(1543), + [aux_sym_cmd_identifier_token13] = ACTIONS(1543), + [aux_sym_cmd_identifier_token14] = ACTIONS(1543), + [aux_sym_cmd_identifier_token15] = ACTIONS(1543), + [aux_sym_cmd_identifier_token16] = ACTIONS(1543), + [aux_sym_cmd_identifier_token17] = ACTIONS(1543), + [aux_sym_cmd_identifier_token18] = ACTIONS(1543), + [aux_sym_cmd_identifier_token19] = ACTIONS(1543), + [aux_sym_cmd_identifier_token20] = ACTIONS(1543), + [aux_sym_cmd_identifier_token21] = ACTIONS(1543), + [aux_sym_cmd_identifier_token22] = ACTIONS(1543), + [aux_sym_cmd_identifier_token23] = ACTIONS(1543), + [aux_sym_cmd_identifier_token24] = ACTIONS(1543), + [aux_sym_cmd_identifier_token25] = ACTIONS(1543), + [aux_sym_cmd_identifier_token26] = ACTIONS(1543), + [aux_sym_cmd_identifier_token27] = ACTIONS(1543), + [aux_sym_cmd_identifier_token28] = ACTIONS(1543), + [aux_sym_cmd_identifier_token29] = ACTIONS(1543), + [aux_sym_cmd_identifier_token30] = ACTIONS(1543), + [aux_sym_cmd_identifier_token31] = ACTIONS(1543), + [aux_sym_cmd_identifier_token32] = ACTIONS(1543), + [aux_sym_cmd_identifier_token33] = ACTIONS(1543), + [aux_sym_cmd_identifier_token34] = ACTIONS(1543), + [aux_sym_cmd_identifier_token35] = ACTIONS(1543), + [aux_sym_cmd_identifier_token36] = ACTIONS(1543), + [aux_sym_cmd_identifier_token37] = ACTIONS(1543), + [aux_sym_cmd_identifier_token38] = ACTIONS(1543), + [aux_sym_cmd_identifier_token39] = ACTIONS(1543), + [aux_sym_cmd_identifier_token40] = ACTIONS(1543), + [anon_sym_def] = ACTIONS(1543), + [anon_sym_export_DASHenv] = ACTIONS(1543), + [anon_sym_extern] = ACTIONS(1543), + [anon_sym_module] = ACTIONS(1543), + [anon_sym_use] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1647), + [anon_sym_error] = ACTIONS(1543), + [anon_sym_DASH2] = ACTIONS(1543), + [anon_sym_break] = ACTIONS(1543), + [anon_sym_continue] = ACTIONS(1543), + [anon_sym_for] = ACTIONS(1543), + [anon_sym_in2] = ACTIONS(1543), + [anon_sym_loop] = ACTIONS(1543), + [anon_sym_make] = ACTIONS(1543), + [anon_sym_while] = ACTIONS(1543), + [anon_sym_do] = ACTIONS(1543), + [anon_sym_if] = ACTIONS(1543), + [anon_sym_else] = ACTIONS(1543), + [anon_sym_match] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1543), + [anon_sym_catch] = ACTIONS(1543), + [anon_sym_return] = ACTIONS(1543), + [anon_sym_source] = ACTIONS(1543), + [anon_sym_source_DASHenv] = ACTIONS(1543), + [anon_sym_register] = ACTIONS(1543), + [anon_sym_hide] = ACTIONS(1543), + [anon_sym_hide_DASHenv] = ACTIONS(1543), + [anon_sym_overlay] = ACTIONS(1543), + [anon_sym_as] = ACTIONS(1543), + [anon_sym_LPAREN2] = ACTIONS(1649), + [anon_sym_PLUS2] = ACTIONS(1543), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1543), + [aux_sym__immediate_decimal_token1] = ACTIONS(1651), + [aux_sym__immediate_decimal_token3] = ACTIONS(1651), + [aux_sym__immediate_decimal_token4] = ACTIONS(1653), + [aux_sym__immediate_decimal_token5] = ACTIONS(1655), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1543), + [aux_sym__val_number_decimal_token1] = ACTIONS(1543), + [aux_sym__val_number_decimal_token2] = ACTIONS(1543), + [aux_sym__val_number_decimal_token3] = ACTIONS(1543), + [aux_sym__val_number_decimal_token4] = ACTIONS(1543), + [aux_sym__val_number_token1] = ACTIONS(1543), + [aux_sym__val_number_token2] = ACTIONS(1543), + [aux_sym__val_number_token3] = ACTIONS(1543), + [aux_sym__val_number_token4] = ACTIONS(1543), + [aux_sym__val_number_token5] = ACTIONS(1543), + [aux_sym__val_number_token6] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1543), + [sym__str_single_quotes] = ACTIONS(1543), + [sym__str_back_ticks] = ACTIONS(1543), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1543), + [sym__entry_separator] = ACTIONS(1557), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1559), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1557), + }, + [336] = { + [sym__expr_parenthesized_immediate] = STATE(619), + [sym__immediate_decimal] = STATE(548), + [sym_val_variable] = STATE(619), + [sym_comment] = STATE(336), + [anon_sym_export] = ACTIONS(1657), + [anon_sym_alias] = ACTIONS(1657), + [anon_sym_let] = ACTIONS(1657), + [anon_sym_let_DASHenv] = ACTIONS(1657), + [anon_sym_mut] = ACTIONS(1657), + [anon_sym_const] = ACTIONS(1657), + [aux_sym_cmd_identifier_token1] = ACTIONS(1657), + [aux_sym_cmd_identifier_token2] = ACTIONS(1657), + [aux_sym_cmd_identifier_token3] = ACTIONS(1657), + [aux_sym_cmd_identifier_token4] = ACTIONS(1657), + [aux_sym_cmd_identifier_token5] = ACTIONS(1657), + [aux_sym_cmd_identifier_token6] = ACTIONS(1657), + [aux_sym_cmd_identifier_token7] = ACTIONS(1657), + [aux_sym_cmd_identifier_token8] = ACTIONS(1657), + [aux_sym_cmd_identifier_token9] = ACTIONS(1657), + [aux_sym_cmd_identifier_token10] = ACTIONS(1657), + [aux_sym_cmd_identifier_token11] = ACTIONS(1657), + [aux_sym_cmd_identifier_token12] = ACTIONS(1657), + [aux_sym_cmd_identifier_token13] = ACTIONS(1657), + [aux_sym_cmd_identifier_token14] = ACTIONS(1657), + [aux_sym_cmd_identifier_token15] = ACTIONS(1657), + [aux_sym_cmd_identifier_token16] = ACTIONS(1657), + [aux_sym_cmd_identifier_token17] = ACTIONS(1657), + [aux_sym_cmd_identifier_token18] = ACTIONS(1657), + [aux_sym_cmd_identifier_token19] = ACTIONS(1657), + [aux_sym_cmd_identifier_token20] = ACTIONS(1657), + [aux_sym_cmd_identifier_token21] = ACTIONS(1657), + [aux_sym_cmd_identifier_token22] = ACTIONS(1657), + [aux_sym_cmd_identifier_token23] = ACTIONS(1657), + [aux_sym_cmd_identifier_token24] = ACTIONS(1657), + [aux_sym_cmd_identifier_token25] = ACTIONS(1657), + [aux_sym_cmd_identifier_token26] = ACTIONS(1657), + [aux_sym_cmd_identifier_token27] = ACTIONS(1657), + [aux_sym_cmd_identifier_token28] = ACTIONS(1657), + [aux_sym_cmd_identifier_token29] = ACTIONS(1657), + [aux_sym_cmd_identifier_token30] = ACTIONS(1657), + [aux_sym_cmd_identifier_token31] = ACTIONS(1657), + [aux_sym_cmd_identifier_token32] = ACTIONS(1657), + [aux_sym_cmd_identifier_token33] = ACTIONS(1657), + [aux_sym_cmd_identifier_token34] = ACTIONS(1657), + [aux_sym_cmd_identifier_token35] = ACTIONS(1657), + [aux_sym_cmd_identifier_token36] = ACTIONS(1657), + [aux_sym_cmd_identifier_token37] = ACTIONS(1657), + [aux_sym_cmd_identifier_token38] = ACTIONS(1657), + [aux_sym_cmd_identifier_token39] = ACTIONS(1657), + [aux_sym_cmd_identifier_token40] = ACTIONS(1657), + [anon_sym_def] = ACTIONS(1657), + [anon_sym_export_DASHenv] = ACTIONS(1657), + [anon_sym_extern] = ACTIONS(1657), + [anon_sym_module] = ACTIONS(1657), + [anon_sym_use] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym_DOLLAR] = ACTIONS(1647), + [anon_sym_error] = ACTIONS(1657), + [anon_sym_DASH2] = ACTIONS(1657), + [anon_sym_break] = ACTIONS(1657), + [anon_sym_continue] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1657), + [anon_sym_in2] = ACTIONS(1657), + [anon_sym_loop] = ACTIONS(1657), + [anon_sym_make] = ACTIONS(1657), + [anon_sym_while] = ACTIONS(1657), + [anon_sym_do] = ACTIONS(1657), + [anon_sym_if] = ACTIONS(1657), + [anon_sym_else] = ACTIONS(1657), + [anon_sym_match] = ACTIONS(1657), + [anon_sym_RBRACE] = ACTIONS(1657), + [anon_sym_try] = ACTIONS(1657), + [anon_sym_catch] = ACTIONS(1657), + [anon_sym_return] = ACTIONS(1657), + [anon_sym_source] = ACTIONS(1657), + [anon_sym_source_DASHenv] = ACTIONS(1657), + [anon_sym_register] = ACTIONS(1657), + [anon_sym_hide] = ACTIONS(1657), + [anon_sym_hide_DASHenv] = ACTIONS(1657), + [anon_sym_overlay] = ACTIONS(1657), + [anon_sym_as] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(1649), + [anon_sym_PLUS2] = ACTIONS(1657), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1657), + [aux_sym__immediate_decimal_token1] = ACTIONS(1651), + [aux_sym__immediate_decimal_token3] = ACTIONS(1651), + [aux_sym__immediate_decimal_token4] = ACTIONS(1653), + [aux_sym__immediate_decimal_token5] = ACTIONS(1655), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1657), + [aux_sym__val_number_decimal_token1] = ACTIONS(1657), + [aux_sym__val_number_decimal_token2] = ACTIONS(1657), + [aux_sym__val_number_decimal_token3] = ACTIONS(1657), + [aux_sym__val_number_decimal_token4] = ACTIONS(1657), + [aux_sym__val_number_token1] = ACTIONS(1657), + [aux_sym__val_number_token2] = ACTIONS(1657), + [aux_sym__val_number_token3] = ACTIONS(1657), + [aux_sym__val_number_token4] = ACTIONS(1657), + [aux_sym__val_number_token5] = ACTIONS(1657), + [aux_sym__val_number_token6] = ACTIONS(1657), + [anon_sym_DQUOTE] = ACTIONS(1657), + [sym__str_single_quotes] = ACTIONS(1657), + [sym__str_back_ticks] = ACTIONS(1657), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1657), + [sym__entry_separator] = ACTIONS(1659), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1661), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1659), + }, + [337] = { + [sym_comment] = STATE(337), + [anon_sym_export] = ACTIONS(1536), + [anon_sym_alias] = ACTIONS(1536), + [anon_sym_let] = ACTIONS(1536), + [anon_sym_let_DASHenv] = ACTIONS(1536), + [anon_sym_mut] = ACTIONS(1536), + [anon_sym_const] = ACTIONS(1536), + [aux_sym_cmd_identifier_token1] = ACTIONS(1536), + [aux_sym_cmd_identifier_token2] = ACTIONS(1538), + [aux_sym_cmd_identifier_token3] = ACTIONS(1538), + [aux_sym_cmd_identifier_token4] = ACTIONS(1538), + [aux_sym_cmd_identifier_token5] = ACTIONS(1538), + [aux_sym_cmd_identifier_token6] = ACTIONS(1538), + [aux_sym_cmd_identifier_token7] = ACTIONS(1538), + [aux_sym_cmd_identifier_token8] = ACTIONS(1536), + [aux_sym_cmd_identifier_token9] = ACTIONS(1536), + [aux_sym_cmd_identifier_token10] = ACTIONS(1538), + [aux_sym_cmd_identifier_token11] = ACTIONS(1538), + [aux_sym_cmd_identifier_token12] = ACTIONS(1536), + [aux_sym_cmd_identifier_token13] = ACTIONS(1536), + [aux_sym_cmd_identifier_token14] = ACTIONS(1536), + [aux_sym_cmd_identifier_token15] = ACTIONS(1536), + [aux_sym_cmd_identifier_token16] = ACTIONS(1538), + [aux_sym_cmd_identifier_token17] = ACTIONS(1538), + [aux_sym_cmd_identifier_token18] = ACTIONS(1538), + [aux_sym_cmd_identifier_token19] = ACTIONS(1538), + [aux_sym_cmd_identifier_token20] = ACTIONS(1538), + [aux_sym_cmd_identifier_token21] = ACTIONS(1538), + [aux_sym_cmd_identifier_token22] = ACTIONS(1538), + [aux_sym_cmd_identifier_token23] = ACTIONS(1538), + [aux_sym_cmd_identifier_token24] = ACTIONS(1538), + [aux_sym_cmd_identifier_token25] = ACTIONS(1538), + [aux_sym_cmd_identifier_token26] = ACTIONS(1538), + [aux_sym_cmd_identifier_token27] = ACTIONS(1538), + [aux_sym_cmd_identifier_token28] = ACTIONS(1538), + [aux_sym_cmd_identifier_token29] = ACTIONS(1538), + [aux_sym_cmd_identifier_token30] = ACTIONS(1538), + [aux_sym_cmd_identifier_token31] = ACTIONS(1538), + [aux_sym_cmd_identifier_token32] = ACTIONS(1538), + [aux_sym_cmd_identifier_token33] = ACTIONS(1538), + [aux_sym_cmd_identifier_token34] = ACTIONS(1536), + [aux_sym_cmd_identifier_token35] = ACTIONS(1538), + [aux_sym_cmd_identifier_token36] = ACTIONS(1538), + [aux_sym_cmd_identifier_token37] = ACTIONS(1538), + [aux_sym_cmd_identifier_token38] = ACTIONS(1536), + [aux_sym_cmd_identifier_token39] = ACTIONS(1538), + [aux_sym_cmd_identifier_token40] = ACTIONS(1538), + [sym__newline] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_def] = ACTIONS(1536), + [anon_sym_export_DASHenv] = ACTIONS(1536), + [anon_sym_extern] = ACTIONS(1536), + [anon_sym_module] = ACTIONS(1536), + [anon_sym_use] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_error] = ACTIONS(1536), + [anon_sym_DASH2] = ACTIONS(1536), + [anon_sym_break] = ACTIONS(1536), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_loop] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(1536), + [anon_sym_do] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_match] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_DOT_DOT] = ACTIONS(1536), + [anon_sym_try] = ACTIONS(1536), + [anon_sym_return] = ACTIONS(1536), + [anon_sym_source] = ACTIONS(1536), + [anon_sym_source_DASHenv] = ACTIONS(1536), + [anon_sym_register] = ACTIONS(1536), + [anon_sym_hide] = ACTIONS(1536), + [anon_sym_hide_DASHenv] = ACTIONS(1536), + [anon_sym_overlay] = ACTIONS(1536), + [anon_sym_where] = ACTIONS(1538), + [aux_sym_expr_unary_token1] = ACTIONS(1538), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT] = ACTIONS(1538), + [anon_sym_null] = ACTIONS(1536), + [anon_sym_true] = ACTIONS(1536), + [anon_sym_false] = ACTIONS(1536), + [aux_sym__val_number_decimal_token1] = ACTIONS(1536), + [aux_sym__val_number_decimal_token2] = ACTIONS(1538), + [aux_sym__val_number_decimal_token3] = ACTIONS(1538), + [aux_sym__val_number_decimal_token4] = ACTIONS(1538), + [aux_sym__val_number_token1] = ACTIONS(1538), + [aux_sym__val_number_token2] = ACTIONS(1538), + [aux_sym__val_number_token3] = ACTIONS(1538), + [aux_sym__val_number_token4] = ACTIONS(1536), + [aux_sym__val_number_token5] = ACTIONS(1536), + [aux_sym__val_number_token6] = ACTIONS(1536), + [anon_sym_0b] = ACTIONS(1536), + [anon_sym_0o] = ACTIONS(1536), + [anon_sym_0x] = ACTIONS(1536), + [sym_val_date] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [sym__str_single_quotes] = ACTIONS(1538), + [sym__str_back_ticks] = ACTIONS(1538), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1538), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1538), + [aux_sym_env_var_token1] = ACTIONS(1536), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1538), + }, [338] = { - [sym_cmd_identifier] = STATE(4592), - [sym__expression] = STATE(3851), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3975), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(847), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_env_var] = STATE(7496), - [sym_command] = STATE(4783), [sym_comment] = STATE(338), - [aux_sym_pipe_element_repeat2] = STATE(1180), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(365), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(365), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_true] = ACTIONS(213), - [anon_sym_false] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1647), - [aux_sym__val_number_decimal_token2] = ACTIONS(1649), - [aux_sym__val_number_decimal_token3] = ACTIONS(1651), - [aux_sym__val_number_decimal_token4] = ACTIONS(1653), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(429), - [aux_sym__val_number_token5] = ACTIONS(429), - [aux_sym__val_number_token6] = ACTIONS(429), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_export] = ACTIONS(1505), + [anon_sym_alias] = ACTIONS(1505), + [anon_sym_let] = ACTIONS(1505), + [anon_sym_let_DASHenv] = ACTIONS(1505), + [anon_sym_mut] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [aux_sym_cmd_identifier_token1] = ACTIONS(1505), + [aux_sym_cmd_identifier_token2] = ACTIONS(1507), + [aux_sym_cmd_identifier_token3] = ACTIONS(1507), + [aux_sym_cmd_identifier_token4] = ACTIONS(1507), + [aux_sym_cmd_identifier_token5] = ACTIONS(1507), + [aux_sym_cmd_identifier_token6] = ACTIONS(1507), + [aux_sym_cmd_identifier_token7] = ACTIONS(1507), + [aux_sym_cmd_identifier_token8] = ACTIONS(1505), + [aux_sym_cmd_identifier_token9] = ACTIONS(1505), + [aux_sym_cmd_identifier_token10] = ACTIONS(1507), + [aux_sym_cmd_identifier_token11] = ACTIONS(1507), + [aux_sym_cmd_identifier_token12] = ACTIONS(1505), + [aux_sym_cmd_identifier_token13] = ACTIONS(1505), + [aux_sym_cmd_identifier_token14] = ACTIONS(1505), + [aux_sym_cmd_identifier_token15] = ACTIONS(1505), + [aux_sym_cmd_identifier_token16] = ACTIONS(1507), + [aux_sym_cmd_identifier_token17] = ACTIONS(1507), + [aux_sym_cmd_identifier_token18] = ACTIONS(1507), + [aux_sym_cmd_identifier_token19] = ACTIONS(1507), + [aux_sym_cmd_identifier_token20] = ACTIONS(1507), + [aux_sym_cmd_identifier_token21] = ACTIONS(1507), + [aux_sym_cmd_identifier_token22] = ACTIONS(1507), + [aux_sym_cmd_identifier_token23] = ACTIONS(1507), + [aux_sym_cmd_identifier_token24] = ACTIONS(1507), + [aux_sym_cmd_identifier_token25] = ACTIONS(1507), + [aux_sym_cmd_identifier_token26] = ACTIONS(1507), + [aux_sym_cmd_identifier_token27] = ACTIONS(1507), + [aux_sym_cmd_identifier_token28] = ACTIONS(1507), + [aux_sym_cmd_identifier_token29] = ACTIONS(1507), + [aux_sym_cmd_identifier_token30] = ACTIONS(1507), + [aux_sym_cmd_identifier_token31] = ACTIONS(1507), + [aux_sym_cmd_identifier_token32] = ACTIONS(1507), + [aux_sym_cmd_identifier_token33] = ACTIONS(1507), + [aux_sym_cmd_identifier_token34] = ACTIONS(1505), + [aux_sym_cmd_identifier_token35] = ACTIONS(1507), + [aux_sym_cmd_identifier_token36] = ACTIONS(1507), + [aux_sym_cmd_identifier_token37] = ACTIONS(1507), + [aux_sym_cmd_identifier_token38] = ACTIONS(1505), + [aux_sym_cmd_identifier_token39] = ACTIONS(1507), + [aux_sym_cmd_identifier_token40] = ACTIONS(1507), + [sym__newline] = ACTIONS(1507), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_def] = ACTIONS(1505), + [anon_sym_export_DASHenv] = ACTIONS(1505), + [anon_sym_extern] = ACTIONS(1505), + [anon_sym_module] = ACTIONS(1505), + [anon_sym_use] = ACTIONS(1505), + [anon_sym_LBRACK] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_DOLLAR] = ACTIONS(1505), + [anon_sym_error] = ACTIONS(1505), + [anon_sym_DASH2] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_loop] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_match] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1505), + [anon_sym_try] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_source] = ACTIONS(1505), + [anon_sym_source_DASHenv] = ACTIONS(1505), + [anon_sym_register] = ACTIONS(1505), + [anon_sym_hide] = ACTIONS(1505), + [anon_sym_hide_DASHenv] = ACTIONS(1505), + [anon_sym_overlay] = ACTIONS(1505), + [anon_sym_where] = ACTIONS(1507), + [aux_sym_expr_unary_token1] = ACTIONS(1507), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1507), + [anon_sym_DOT_DOT_LT] = ACTIONS(1507), + [anon_sym_null] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [aux_sym__val_number_decimal_token1] = ACTIONS(1505), + [aux_sym__val_number_decimal_token2] = ACTIONS(1507), + [aux_sym__val_number_decimal_token3] = ACTIONS(1507), + [aux_sym__val_number_decimal_token4] = ACTIONS(1507), + [aux_sym__val_number_token1] = ACTIONS(1507), + [aux_sym__val_number_token2] = ACTIONS(1507), + [aux_sym__val_number_token3] = ACTIONS(1507), + [aux_sym__val_number_token4] = ACTIONS(1505), + [aux_sym__val_number_token5] = ACTIONS(1505), + [aux_sym__val_number_token6] = ACTIONS(1505), + [anon_sym_0b] = ACTIONS(1505), + [anon_sym_0o] = ACTIONS(1505), + [anon_sym_0x] = ACTIONS(1505), + [sym_val_date] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1507), + [sym__str_single_quotes] = ACTIONS(1507), + [sym__str_back_ticks] = ACTIONS(1507), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1507), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1507), + [aux_sym_env_var_token1] = ACTIONS(1505), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1507), }, [339] = { - [sym__expr_parenthesized_immediate] = STATE(649), - [sym__immediate_decimal] = STATE(655), - [sym_val_variable] = STATE(649), + [sym__expr_parenthesized_immediate] = STATE(688), + [sym__immediate_decimal] = STATE(689), + [sym_val_variable] = STATE(688), [sym_comment] = STATE(339), [anon_sym_export] = ACTIONS(1663), [anon_sym_alias] = ACTIONS(1663), @@ -112924,7 +113246,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(1663), [anon_sym_use] = ACTIONS(1663), [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_DOLLAR] = ACTIONS(1567), + [anon_sym_DOLLAR] = ACTIONS(1647), [anon_sym_error] = ACTIONS(1663), [anon_sym_DASH2] = ACTIONS(1663), [anon_sym_break] = ACTIONS(1663), @@ -112949,7 +113271,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(1663), [anon_sym_overlay] = ACTIONS(1663), [anon_sym_as] = ACTIONS(1663), - [anon_sym_LPAREN2] = ACTIONS(1569), + [anon_sym_LPAREN2] = ACTIONS(1649), [anon_sym_PLUS2] = ACTIONS(1663), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1663), [aux_sym__immediate_decimal_token1] = ACTIONS(1665), @@ -112976,6 +113298,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1671), }, [340] = { + [sym__expr_parenthesized_immediate] = STATE(693), + [sym__immediate_decimal] = STATE(614), + [sym_val_variable] = STATE(693), [sym_comment] = STATE(340), [anon_sym_export] = ACTIONS(1673), [anon_sym_alias] = ACTIONS(1673), @@ -113029,7 +113354,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(1673), [anon_sym_use] = ACTIONS(1673), [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_DOLLAR] = ACTIONS(1673), + [anon_sym_DOLLAR] = ACTIONS(1647), [anon_sym_error] = ACTIONS(1673), [anon_sym_DASH2] = ACTIONS(1673), [anon_sym_break] = ACTIONS(1673), @@ -113054,13 +113379,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(1673), [anon_sym_overlay] = ACTIONS(1673), [anon_sym_as] = ACTIONS(1673), - [anon_sym_LPAREN2] = ACTIONS(1675), + [anon_sym_LPAREN2] = ACTIONS(1649), [anon_sym_PLUS2] = ACTIONS(1673), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1673), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [aux_sym__immediate_decimal_token2] = ACTIONS(1677), + [aux_sym__immediate_decimal_token1] = ACTIONS(1665), + [aux_sym__immediate_decimal_token3] = ACTIONS(1665), + [aux_sym__immediate_decimal_token4] = ACTIONS(1667), + [aux_sym__immediate_decimal_token5] = ACTIONS(1669), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1673), [aux_sym__val_number_decimal_token1] = ACTIONS(1673), [aux_sym__val_number_decimal_token2] = ACTIONS(1673), @@ -113072,1634 +113397,1310 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(1673), [aux_sym__val_number_token5] = ACTIONS(1673), [aux_sym__val_number_token6] = ACTIONS(1673), - [sym_filesize_unit] = ACTIONS(1673), - [sym_duration_unit] = ACTIONS(1673), [anon_sym_DQUOTE] = ACTIONS(1673), [sym__str_single_quotes] = ACTIONS(1673), [sym__str_back_ticks] = ACTIONS(1673), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1673), [sym__entry_separator] = ACTIONS(1675), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1673), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1675), }, [341] = { - [sym__expr_parenthesized_immediate] = STATE(706), - [sym__immediate_decimal] = STATE(609), - [sym_val_variable] = STATE(706), + [sym__expr_parenthesized_immediate] = STATE(617), + [sym__immediate_decimal] = STATE(618), + [sym_val_variable] = STATE(617), [sym_comment] = STATE(341), - [anon_sym_export] = ACTIONS(1530), - [anon_sym_alias] = ACTIONS(1530), - [anon_sym_let] = ACTIONS(1530), - [anon_sym_let_DASHenv] = ACTIONS(1530), - [anon_sym_mut] = ACTIONS(1530), - [anon_sym_const] = ACTIONS(1530), - [aux_sym_cmd_identifier_token1] = ACTIONS(1530), - [aux_sym_cmd_identifier_token2] = ACTIONS(1544), - [aux_sym_cmd_identifier_token3] = ACTIONS(1544), - [aux_sym_cmd_identifier_token4] = ACTIONS(1544), - [aux_sym_cmd_identifier_token5] = ACTIONS(1544), - [aux_sym_cmd_identifier_token6] = ACTIONS(1544), - [aux_sym_cmd_identifier_token7] = ACTIONS(1544), - [aux_sym_cmd_identifier_token8] = ACTIONS(1530), - [aux_sym_cmd_identifier_token9] = ACTIONS(1530), - [aux_sym_cmd_identifier_token10] = ACTIONS(1544), - [aux_sym_cmd_identifier_token11] = ACTIONS(1544), - [aux_sym_cmd_identifier_token12] = ACTIONS(1530), - [aux_sym_cmd_identifier_token13] = ACTIONS(1530), - [aux_sym_cmd_identifier_token14] = ACTIONS(1530), - [aux_sym_cmd_identifier_token15] = ACTIONS(1530), - [aux_sym_cmd_identifier_token16] = ACTIONS(1544), - [aux_sym_cmd_identifier_token17] = ACTIONS(1544), - [aux_sym_cmd_identifier_token18] = ACTIONS(1544), - [aux_sym_cmd_identifier_token19] = ACTIONS(1544), - [aux_sym_cmd_identifier_token20] = ACTIONS(1544), - [aux_sym_cmd_identifier_token21] = ACTIONS(1544), - [aux_sym_cmd_identifier_token22] = ACTIONS(1544), - [aux_sym_cmd_identifier_token23] = ACTIONS(1544), - [aux_sym_cmd_identifier_token24] = ACTIONS(1544), - [aux_sym_cmd_identifier_token25] = ACTIONS(1544), - [aux_sym_cmd_identifier_token26] = ACTIONS(1544), - [aux_sym_cmd_identifier_token27] = ACTIONS(1544), - [aux_sym_cmd_identifier_token28] = ACTIONS(1544), - [aux_sym_cmd_identifier_token29] = ACTIONS(1544), - [aux_sym_cmd_identifier_token30] = ACTIONS(1544), - [aux_sym_cmd_identifier_token31] = ACTIONS(1544), - [aux_sym_cmd_identifier_token32] = ACTIONS(1544), - [aux_sym_cmd_identifier_token33] = ACTIONS(1544), - [aux_sym_cmd_identifier_token34] = ACTIONS(1530), - [aux_sym_cmd_identifier_token35] = ACTIONS(1544), - [aux_sym_cmd_identifier_token36] = ACTIONS(1544), - [aux_sym_cmd_identifier_token37] = ACTIONS(1544), - [aux_sym_cmd_identifier_token38] = ACTIONS(1530), - [aux_sym_cmd_identifier_token39] = ACTIONS(1544), - [aux_sym_cmd_identifier_token40] = ACTIONS(1544), - [anon_sym_def] = ACTIONS(1530), - [anon_sym_export_DASHenv] = ACTIONS(1530), - [anon_sym_extern] = ACTIONS(1530), - [anon_sym_module] = ACTIONS(1530), - [anon_sym_use] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_DOLLAR] = ACTIONS(1679), - [anon_sym_error] = ACTIONS(1530), - [anon_sym_DASH2] = ACTIONS(1530), - [anon_sym_break] = ACTIONS(1530), - [anon_sym_continue] = ACTIONS(1530), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_in2] = ACTIONS(1530), - [anon_sym_loop] = ACTIONS(1530), - [anon_sym_make] = ACTIONS(1530), - [anon_sym_while] = ACTIONS(1530), - [anon_sym_do] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1530), - [anon_sym_else] = ACTIONS(1530), - [anon_sym_match] = ACTIONS(1530), - [anon_sym_RBRACE] = ACTIONS(1544), - [anon_sym_try] = ACTIONS(1530), - [anon_sym_catch] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1530), - [anon_sym_source] = ACTIONS(1530), - [anon_sym_source_DASHenv] = ACTIONS(1530), - [anon_sym_register] = ACTIONS(1530), - [anon_sym_hide] = ACTIONS(1530), - [anon_sym_hide_DASHenv] = ACTIONS(1530), - [anon_sym_overlay] = ACTIONS(1530), - [anon_sym_as] = ACTIONS(1530), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1530), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1544), - [aux_sym__immediate_decimal_token1] = ACTIONS(1683), - [aux_sym__immediate_decimal_token3] = ACTIONS(1685), - [aux_sym__immediate_decimal_token4] = ACTIONS(1687), - [aux_sym__immediate_decimal_token5] = ACTIONS(1689), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1544), - [aux_sym__val_number_decimal_token1] = ACTIONS(1530), - [aux_sym__val_number_decimal_token2] = ACTIONS(1530), - [aux_sym__val_number_decimal_token3] = ACTIONS(1530), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(1544), - [aux_sym__val_number_token2] = ACTIONS(1544), - [aux_sym__val_number_token3] = ACTIONS(1544), - [aux_sym__val_number_token4] = ACTIONS(1530), - [aux_sym__val_number_token5] = ACTIONS(1530), - [aux_sym__val_number_token6] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1544), - [sym__str_single_quotes] = ACTIONS(1544), - [sym__str_back_ticks] = ACTIONS(1544), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1544), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1546), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1544), - }, - [342] = { - [sym__expr_parenthesized_immediate] = STATE(638), - [sym__immediate_decimal] = STATE(645), - [sym_val_variable] = STATE(638), - [sym_comment] = STATE(342), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_alias] = ACTIONS(1691), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_let_DASHenv] = ACTIONS(1691), - [anon_sym_mut] = ACTIONS(1691), - [anon_sym_const] = ACTIONS(1691), - [aux_sym_cmd_identifier_token1] = ACTIONS(1691), - [aux_sym_cmd_identifier_token2] = ACTIONS(1691), - [aux_sym_cmd_identifier_token3] = ACTIONS(1691), - [aux_sym_cmd_identifier_token4] = ACTIONS(1691), - [aux_sym_cmd_identifier_token5] = ACTIONS(1691), - [aux_sym_cmd_identifier_token6] = ACTIONS(1691), - [aux_sym_cmd_identifier_token7] = ACTIONS(1691), - [aux_sym_cmd_identifier_token8] = ACTIONS(1691), - [aux_sym_cmd_identifier_token9] = ACTIONS(1691), - [aux_sym_cmd_identifier_token10] = ACTIONS(1691), - [aux_sym_cmd_identifier_token11] = ACTIONS(1691), - [aux_sym_cmd_identifier_token12] = ACTIONS(1691), - [aux_sym_cmd_identifier_token13] = ACTIONS(1691), - [aux_sym_cmd_identifier_token14] = ACTIONS(1691), - [aux_sym_cmd_identifier_token15] = ACTIONS(1691), - [aux_sym_cmd_identifier_token16] = ACTIONS(1691), - [aux_sym_cmd_identifier_token17] = ACTIONS(1691), - [aux_sym_cmd_identifier_token18] = ACTIONS(1691), - [aux_sym_cmd_identifier_token19] = ACTIONS(1691), - [aux_sym_cmd_identifier_token20] = ACTIONS(1691), - [aux_sym_cmd_identifier_token21] = ACTIONS(1691), - [aux_sym_cmd_identifier_token22] = ACTIONS(1691), - [aux_sym_cmd_identifier_token23] = ACTIONS(1691), - [aux_sym_cmd_identifier_token24] = ACTIONS(1691), - [aux_sym_cmd_identifier_token25] = ACTIONS(1691), - [aux_sym_cmd_identifier_token26] = ACTIONS(1691), - [aux_sym_cmd_identifier_token27] = ACTIONS(1691), - [aux_sym_cmd_identifier_token28] = ACTIONS(1691), - [aux_sym_cmd_identifier_token29] = ACTIONS(1691), - [aux_sym_cmd_identifier_token30] = ACTIONS(1691), - [aux_sym_cmd_identifier_token31] = ACTIONS(1691), - [aux_sym_cmd_identifier_token32] = ACTIONS(1691), - [aux_sym_cmd_identifier_token33] = ACTIONS(1691), - [aux_sym_cmd_identifier_token34] = ACTIONS(1691), - [aux_sym_cmd_identifier_token35] = ACTIONS(1691), - [aux_sym_cmd_identifier_token36] = ACTIONS(1691), - [aux_sym_cmd_identifier_token37] = ACTIONS(1691), - [aux_sym_cmd_identifier_token38] = ACTIONS(1691), - [aux_sym_cmd_identifier_token39] = ACTIONS(1691), - [aux_sym_cmd_identifier_token40] = ACTIONS(1691), - [anon_sym_def] = ACTIONS(1691), - [anon_sym_export_DASHenv] = ACTIONS(1691), - [anon_sym_extern] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_use] = ACTIONS(1691), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_DOLLAR] = ACTIONS(1567), - [anon_sym_error] = ACTIONS(1691), - [anon_sym_DASH2] = ACTIONS(1691), - [anon_sym_break] = ACTIONS(1691), - [anon_sym_continue] = ACTIONS(1691), - [anon_sym_for] = ACTIONS(1691), - [anon_sym_in2] = ACTIONS(1691), - [anon_sym_loop] = ACTIONS(1691), - [anon_sym_make] = ACTIONS(1691), - [anon_sym_while] = ACTIONS(1691), - [anon_sym_do] = ACTIONS(1691), - [anon_sym_if] = ACTIONS(1691), - [anon_sym_else] = ACTIONS(1691), - [anon_sym_match] = ACTIONS(1691), - [anon_sym_RBRACE] = ACTIONS(1691), - [anon_sym_try] = ACTIONS(1691), - [anon_sym_catch] = ACTIONS(1691), - [anon_sym_return] = ACTIONS(1691), - [anon_sym_source] = ACTIONS(1691), - [anon_sym_source_DASHenv] = ACTIONS(1691), - [anon_sym_register] = ACTIONS(1691), - [anon_sym_hide] = ACTIONS(1691), - [anon_sym_hide_DASHenv] = ACTIONS(1691), - [anon_sym_overlay] = ACTIONS(1691), - [anon_sym_as] = ACTIONS(1691), - [anon_sym_LPAREN2] = ACTIONS(1569), - [anon_sym_PLUS2] = ACTIONS(1691), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1691), + [anon_sym_export] = ACTIONS(1677), + [anon_sym_alias] = ACTIONS(1677), + [anon_sym_let] = ACTIONS(1677), + [anon_sym_let_DASHenv] = ACTIONS(1677), + [anon_sym_mut] = ACTIONS(1677), + [anon_sym_const] = ACTIONS(1677), + [aux_sym_cmd_identifier_token1] = ACTIONS(1677), + [aux_sym_cmd_identifier_token2] = ACTIONS(1677), + [aux_sym_cmd_identifier_token3] = ACTIONS(1677), + [aux_sym_cmd_identifier_token4] = ACTIONS(1677), + [aux_sym_cmd_identifier_token5] = ACTIONS(1677), + [aux_sym_cmd_identifier_token6] = ACTIONS(1677), + [aux_sym_cmd_identifier_token7] = ACTIONS(1677), + [aux_sym_cmd_identifier_token8] = ACTIONS(1677), + [aux_sym_cmd_identifier_token9] = ACTIONS(1677), + [aux_sym_cmd_identifier_token10] = ACTIONS(1677), + [aux_sym_cmd_identifier_token11] = ACTIONS(1677), + [aux_sym_cmd_identifier_token12] = ACTIONS(1677), + [aux_sym_cmd_identifier_token13] = ACTIONS(1677), + [aux_sym_cmd_identifier_token14] = ACTIONS(1677), + [aux_sym_cmd_identifier_token15] = ACTIONS(1677), + [aux_sym_cmd_identifier_token16] = ACTIONS(1677), + [aux_sym_cmd_identifier_token17] = ACTIONS(1677), + [aux_sym_cmd_identifier_token18] = ACTIONS(1677), + [aux_sym_cmd_identifier_token19] = ACTIONS(1677), + [aux_sym_cmd_identifier_token20] = ACTIONS(1677), + [aux_sym_cmd_identifier_token21] = ACTIONS(1677), + [aux_sym_cmd_identifier_token22] = ACTIONS(1677), + [aux_sym_cmd_identifier_token23] = ACTIONS(1677), + [aux_sym_cmd_identifier_token24] = ACTIONS(1677), + [aux_sym_cmd_identifier_token25] = ACTIONS(1677), + [aux_sym_cmd_identifier_token26] = ACTIONS(1677), + [aux_sym_cmd_identifier_token27] = ACTIONS(1677), + [aux_sym_cmd_identifier_token28] = ACTIONS(1677), + [aux_sym_cmd_identifier_token29] = ACTIONS(1677), + [aux_sym_cmd_identifier_token30] = ACTIONS(1677), + [aux_sym_cmd_identifier_token31] = ACTIONS(1677), + [aux_sym_cmd_identifier_token32] = ACTIONS(1677), + [aux_sym_cmd_identifier_token33] = ACTIONS(1677), + [aux_sym_cmd_identifier_token34] = ACTIONS(1677), + [aux_sym_cmd_identifier_token35] = ACTIONS(1677), + [aux_sym_cmd_identifier_token36] = ACTIONS(1677), + [aux_sym_cmd_identifier_token37] = ACTIONS(1677), + [aux_sym_cmd_identifier_token38] = ACTIONS(1677), + [aux_sym_cmd_identifier_token39] = ACTIONS(1677), + [aux_sym_cmd_identifier_token40] = ACTIONS(1677), + [anon_sym_def] = ACTIONS(1677), + [anon_sym_export_DASHenv] = ACTIONS(1677), + [anon_sym_extern] = ACTIONS(1677), + [anon_sym_module] = ACTIONS(1677), + [anon_sym_use] = ACTIONS(1677), + [anon_sym_LPAREN] = ACTIONS(1677), + [anon_sym_DOLLAR] = ACTIONS(1647), + [anon_sym_error] = ACTIONS(1677), + [anon_sym_DASH2] = ACTIONS(1677), + [anon_sym_break] = ACTIONS(1677), + [anon_sym_continue] = ACTIONS(1677), + [anon_sym_for] = ACTIONS(1677), + [anon_sym_in2] = ACTIONS(1677), + [anon_sym_loop] = ACTIONS(1677), + [anon_sym_make] = ACTIONS(1677), + [anon_sym_while] = ACTIONS(1677), + [anon_sym_do] = ACTIONS(1677), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_else] = ACTIONS(1677), + [anon_sym_match] = ACTIONS(1677), + [anon_sym_RBRACE] = ACTIONS(1677), + [anon_sym_try] = ACTIONS(1677), + [anon_sym_catch] = ACTIONS(1677), + [anon_sym_return] = ACTIONS(1677), + [anon_sym_source] = ACTIONS(1677), + [anon_sym_source_DASHenv] = ACTIONS(1677), + [anon_sym_register] = ACTIONS(1677), + [anon_sym_hide] = ACTIONS(1677), + [anon_sym_hide_DASHenv] = ACTIONS(1677), + [anon_sym_overlay] = ACTIONS(1677), + [anon_sym_as] = ACTIONS(1677), + [anon_sym_LPAREN2] = ACTIONS(1649), + [anon_sym_PLUS2] = ACTIONS(1677), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1677), [aux_sym__immediate_decimal_token1] = ACTIONS(1665), [aux_sym__immediate_decimal_token3] = ACTIONS(1665), [aux_sym__immediate_decimal_token4] = ACTIONS(1667), [aux_sym__immediate_decimal_token5] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1691), - [aux_sym__val_number_decimal_token1] = ACTIONS(1691), - [aux_sym__val_number_decimal_token2] = ACTIONS(1691), - [aux_sym__val_number_decimal_token3] = ACTIONS(1691), - [aux_sym__val_number_decimal_token4] = ACTIONS(1691), - [aux_sym__val_number_token1] = ACTIONS(1691), - [aux_sym__val_number_token2] = ACTIONS(1691), - [aux_sym__val_number_token3] = ACTIONS(1691), - [aux_sym__val_number_token4] = ACTIONS(1691), - [aux_sym__val_number_token5] = ACTIONS(1691), - [aux_sym__val_number_token6] = ACTIONS(1691), - [anon_sym_DQUOTE] = ACTIONS(1691), - [sym__str_single_quotes] = ACTIONS(1691), - [sym__str_back_ticks] = ACTIONS(1691), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1691), - [sym__entry_separator] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1677), + [aux_sym__val_number_decimal_token1] = ACTIONS(1677), + [aux_sym__val_number_decimal_token2] = ACTIONS(1677), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1677), + [aux_sym__val_number_token1] = ACTIONS(1677), + [aux_sym__val_number_token2] = ACTIONS(1677), + [aux_sym__val_number_token3] = ACTIONS(1677), + [aux_sym__val_number_token4] = ACTIONS(1677), + [aux_sym__val_number_token5] = ACTIONS(1677), + [aux_sym__val_number_token6] = ACTIONS(1677), + [anon_sym_DQUOTE] = ACTIONS(1677), + [sym__str_single_quotes] = ACTIONS(1677), + [sym__str_back_ticks] = ACTIONS(1677), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1677), + [sym__entry_separator] = ACTIONS(1679), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1693), + [sym_raw_string_begin] = ACTIONS(1679), }, - [343] = { - [sym_comment] = STATE(343), - [anon_sym_export] = ACTIONS(1607), - [anon_sym_alias] = ACTIONS(1607), - [anon_sym_let] = ACTIONS(1607), - [anon_sym_let_DASHenv] = ACTIONS(1607), - [anon_sym_mut] = ACTIONS(1607), - [anon_sym_const] = ACTIONS(1607), - [aux_sym_cmd_identifier_token1] = ACTIONS(1607), - [aux_sym_cmd_identifier_token2] = ACTIONS(1607), - [aux_sym_cmd_identifier_token3] = ACTIONS(1607), - [aux_sym_cmd_identifier_token4] = ACTIONS(1607), - [aux_sym_cmd_identifier_token5] = ACTIONS(1607), - [aux_sym_cmd_identifier_token6] = ACTIONS(1607), - [aux_sym_cmd_identifier_token7] = ACTIONS(1607), - [aux_sym_cmd_identifier_token8] = ACTIONS(1607), - [aux_sym_cmd_identifier_token9] = ACTIONS(1607), - [aux_sym_cmd_identifier_token10] = ACTIONS(1607), - [aux_sym_cmd_identifier_token11] = ACTIONS(1607), - [aux_sym_cmd_identifier_token12] = ACTIONS(1607), - [aux_sym_cmd_identifier_token13] = ACTIONS(1607), - [aux_sym_cmd_identifier_token14] = ACTIONS(1607), - [aux_sym_cmd_identifier_token15] = ACTIONS(1607), - [aux_sym_cmd_identifier_token16] = ACTIONS(1607), - [aux_sym_cmd_identifier_token17] = ACTIONS(1607), - [aux_sym_cmd_identifier_token18] = ACTIONS(1607), - [aux_sym_cmd_identifier_token19] = ACTIONS(1607), - [aux_sym_cmd_identifier_token20] = ACTIONS(1607), - [aux_sym_cmd_identifier_token21] = ACTIONS(1607), - [aux_sym_cmd_identifier_token22] = ACTIONS(1607), - [aux_sym_cmd_identifier_token23] = ACTIONS(1607), - [aux_sym_cmd_identifier_token24] = ACTIONS(1607), - [aux_sym_cmd_identifier_token25] = ACTIONS(1607), - [aux_sym_cmd_identifier_token26] = ACTIONS(1607), - [aux_sym_cmd_identifier_token27] = ACTIONS(1607), - [aux_sym_cmd_identifier_token28] = ACTIONS(1607), - [aux_sym_cmd_identifier_token29] = ACTIONS(1607), - [aux_sym_cmd_identifier_token30] = ACTIONS(1607), - [aux_sym_cmd_identifier_token31] = ACTIONS(1607), - [aux_sym_cmd_identifier_token32] = ACTIONS(1607), - [aux_sym_cmd_identifier_token33] = ACTIONS(1607), - [aux_sym_cmd_identifier_token34] = ACTIONS(1607), - [aux_sym_cmd_identifier_token35] = ACTIONS(1607), - [aux_sym_cmd_identifier_token36] = ACTIONS(1607), - [aux_sym_cmd_identifier_token37] = ACTIONS(1607), - [aux_sym_cmd_identifier_token38] = ACTIONS(1607), - [aux_sym_cmd_identifier_token39] = ACTIONS(1607), - [aux_sym_cmd_identifier_token40] = ACTIONS(1607), - [anon_sym_def] = ACTIONS(1607), - [anon_sym_export_DASHenv] = ACTIONS(1607), - [anon_sym_extern] = ACTIONS(1607), - [anon_sym_module] = ACTIONS(1607), - [anon_sym_use] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_DOLLAR] = ACTIONS(1607), - [anon_sym_error] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_break] = ACTIONS(1607), - [anon_sym_continue] = ACTIONS(1607), - [anon_sym_for] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_loop] = ACTIONS(1607), - [anon_sym_make] = ACTIONS(1607), - [anon_sym_while] = ACTIONS(1607), - [anon_sym_do] = ACTIONS(1607), - [anon_sym_if] = ACTIONS(1607), - [anon_sym_else] = ACTIONS(1607), - [anon_sym_match] = ACTIONS(1607), - [anon_sym_RBRACE] = ACTIONS(1607), - [anon_sym_try] = ACTIONS(1607), - [anon_sym_catch] = ACTIONS(1607), - [anon_sym_return] = ACTIONS(1607), - [anon_sym_source] = ACTIONS(1607), - [anon_sym_source_DASHenv] = ACTIONS(1607), - [anon_sym_register] = ACTIONS(1607), - [anon_sym_hide] = ACTIONS(1607), - [anon_sym_hide_DASHenv] = ACTIONS(1607), - [anon_sym_overlay] = ACTIONS(1607), - [anon_sym_as] = ACTIONS(1607), - [anon_sym_LPAREN2] = ACTIONS(1609), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1607), - [aux_sym__val_number_decimal_token1] = ACTIONS(1607), - [aux_sym__val_number_decimal_token2] = ACTIONS(1607), - [aux_sym__val_number_decimal_token3] = ACTIONS(1607), - [aux_sym__val_number_decimal_token4] = ACTIONS(1607), - [aux_sym__val_number_token1] = ACTIONS(1607), - [aux_sym__val_number_token2] = ACTIONS(1607), - [aux_sym__val_number_token3] = ACTIONS(1607), - [aux_sym__val_number_token4] = ACTIONS(1607), - [aux_sym__val_number_token5] = ACTIONS(1607), - [aux_sym__val_number_token6] = ACTIONS(1607), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1607), - [sym__str_single_quotes] = ACTIONS(1607), - [sym__str_back_ticks] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1607), - [sym__entry_separator] = ACTIONS(1609), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1607), + [342] = { + [sym_comment] = STATE(342), + [anon_sym_export] = ACTIONS(1681), + [anon_sym_alias] = ACTIONS(1681), + [anon_sym_let] = ACTIONS(1681), + [anon_sym_let_DASHenv] = ACTIONS(1681), + [anon_sym_mut] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1681), + [aux_sym_cmd_identifier_token1] = ACTIONS(1681), + [aux_sym_cmd_identifier_token2] = ACTIONS(1681), + [aux_sym_cmd_identifier_token3] = ACTIONS(1681), + [aux_sym_cmd_identifier_token4] = ACTIONS(1681), + [aux_sym_cmd_identifier_token5] = ACTIONS(1681), + [aux_sym_cmd_identifier_token6] = ACTIONS(1681), + [aux_sym_cmd_identifier_token7] = ACTIONS(1681), + [aux_sym_cmd_identifier_token8] = ACTIONS(1681), + [aux_sym_cmd_identifier_token9] = ACTIONS(1681), + [aux_sym_cmd_identifier_token10] = ACTIONS(1681), + [aux_sym_cmd_identifier_token11] = ACTIONS(1681), + [aux_sym_cmd_identifier_token12] = ACTIONS(1681), + [aux_sym_cmd_identifier_token13] = ACTIONS(1681), + [aux_sym_cmd_identifier_token14] = ACTIONS(1681), + [aux_sym_cmd_identifier_token15] = ACTIONS(1681), + [aux_sym_cmd_identifier_token16] = ACTIONS(1681), + [aux_sym_cmd_identifier_token17] = ACTIONS(1681), + [aux_sym_cmd_identifier_token18] = ACTIONS(1681), + [aux_sym_cmd_identifier_token19] = ACTIONS(1681), + [aux_sym_cmd_identifier_token20] = ACTIONS(1681), + [aux_sym_cmd_identifier_token21] = ACTIONS(1681), + [aux_sym_cmd_identifier_token22] = ACTIONS(1681), + [aux_sym_cmd_identifier_token23] = ACTIONS(1681), + [aux_sym_cmd_identifier_token24] = ACTIONS(1681), + [aux_sym_cmd_identifier_token25] = ACTIONS(1681), + [aux_sym_cmd_identifier_token26] = ACTIONS(1681), + [aux_sym_cmd_identifier_token27] = ACTIONS(1681), + [aux_sym_cmd_identifier_token28] = ACTIONS(1681), + [aux_sym_cmd_identifier_token29] = ACTIONS(1681), + [aux_sym_cmd_identifier_token30] = ACTIONS(1681), + [aux_sym_cmd_identifier_token31] = ACTIONS(1681), + [aux_sym_cmd_identifier_token32] = ACTIONS(1681), + [aux_sym_cmd_identifier_token33] = ACTIONS(1681), + [aux_sym_cmd_identifier_token34] = ACTIONS(1681), + [aux_sym_cmd_identifier_token35] = ACTIONS(1681), + [aux_sym_cmd_identifier_token36] = ACTIONS(1681), + [aux_sym_cmd_identifier_token37] = ACTIONS(1681), + [aux_sym_cmd_identifier_token38] = ACTIONS(1681), + [aux_sym_cmd_identifier_token39] = ACTIONS(1681), + [aux_sym_cmd_identifier_token40] = ACTIONS(1681), + [anon_sym_def] = ACTIONS(1681), + [anon_sym_export_DASHenv] = ACTIONS(1681), + [anon_sym_extern] = ACTIONS(1681), + [anon_sym_module] = ACTIONS(1681), + [anon_sym_use] = ACTIONS(1681), + [anon_sym_LPAREN] = ACTIONS(1681), + [anon_sym_DOLLAR] = ACTIONS(1681), + [anon_sym_error] = ACTIONS(1681), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_break] = ACTIONS(1681), + [anon_sym_continue] = ACTIONS(1681), + [anon_sym_for] = ACTIONS(1681), + [anon_sym_in2] = ACTIONS(1681), + [anon_sym_loop] = ACTIONS(1681), + [anon_sym_make] = ACTIONS(1681), + [anon_sym_while] = ACTIONS(1681), + [anon_sym_do] = ACTIONS(1681), + [anon_sym_if] = ACTIONS(1681), + [anon_sym_else] = ACTIONS(1681), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_RBRACE] = ACTIONS(1681), + [anon_sym_try] = ACTIONS(1681), + [anon_sym_catch] = ACTIONS(1681), + [anon_sym_return] = ACTIONS(1681), + [anon_sym_source] = ACTIONS(1681), + [anon_sym_source_DASHenv] = ACTIONS(1681), + [anon_sym_register] = ACTIONS(1681), + [anon_sym_hide] = ACTIONS(1681), + [anon_sym_hide_DASHenv] = ACTIONS(1681), + [anon_sym_overlay] = ACTIONS(1681), + [anon_sym_as] = ACTIONS(1681), + [anon_sym_LPAREN2] = ACTIONS(1683), + [anon_sym_PLUS2] = ACTIONS(1681), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1681), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [aux_sym__immediate_decimal_token2] = ACTIONS(1685), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1681), + [aux_sym__val_number_decimal_token1] = ACTIONS(1681), + [aux_sym__val_number_decimal_token2] = ACTIONS(1681), + [aux_sym__val_number_decimal_token3] = ACTIONS(1681), + [aux_sym__val_number_decimal_token4] = ACTIONS(1681), + [aux_sym__val_number_token1] = ACTIONS(1681), + [aux_sym__val_number_token2] = ACTIONS(1681), + [aux_sym__val_number_token3] = ACTIONS(1681), + [aux_sym__val_number_token4] = ACTIONS(1681), + [aux_sym__val_number_token5] = ACTIONS(1681), + [aux_sym__val_number_token6] = ACTIONS(1681), + [sym_filesize_unit] = ACTIONS(1681), + [sym_duration_unit] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [sym__str_single_quotes] = ACTIONS(1681), + [sym__str_back_ticks] = ACTIONS(1681), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1681), + [sym__entry_separator] = ACTIONS(1683), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1681), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1609), + [sym_raw_string_begin] = ACTIONS(1683), }, - [344] = { - [sym__expr_parenthesized_immediate] = STATE(648), - [sym__immediate_decimal] = STATE(650), - [sym_val_variable] = STATE(648), - [sym_comment] = STATE(344), - [anon_sym_export] = ACTIONS(1581), - [anon_sym_alias] = ACTIONS(1581), - [anon_sym_let] = ACTIONS(1581), - [anon_sym_let_DASHenv] = ACTIONS(1581), - [anon_sym_mut] = ACTIONS(1581), - [anon_sym_const] = ACTIONS(1581), - [aux_sym_cmd_identifier_token1] = ACTIONS(1581), - [aux_sym_cmd_identifier_token2] = ACTIONS(1581), - [aux_sym_cmd_identifier_token3] = ACTIONS(1581), - [aux_sym_cmd_identifier_token4] = ACTIONS(1581), - [aux_sym_cmd_identifier_token5] = ACTIONS(1581), - [aux_sym_cmd_identifier_token6] = ACTIONS(1581), - [aux_sym_cmd_identifier_token7] = ACTIONS(1581), - [aux_sym_cmd_identifier_token8] = ACTIONS(1581), - [aux_sym_cmd_identifier_token9] = ACTIONS(1581), - [aux_sym_cmd_identifier_token10] = ACTIONS(1581), - [aux_sym_cmd_identifier_token11] = ACTIONS(1581), - [aux_sym_cmd_identifier_token12] = ACTIONS(1581), - [aux_sym_cmd_identifier_token13] = ACTIONS(1581), - [aux_sym_cmd_identifier_token14] = ACTIONS(1581), - [aux_sym_cmd_identifier_token15] = ACTIONS(1581), - [aux_sym_cmd_identifier_token16] = ACTIONS(1581), - [aux_sym_cmd_identifier_token17] = ACTIONS(1581), - [aux_sym_cmd_identifier_token18] = ACTIONS(1581), - [aux_sym_cmd_identifier_token19] = ACTIONS(1581), - [aux_sym_cmd_identifier_token20] = ACTIONS(1581), - [aux_sym_cmd_identifier_token21] = ACTIONS(1581), - [aux_sym_cmd_identifier_token22] = ACTIONS(1581), - [aux_sym_cmd_identifier_token23] = ACTIONS(1581), - [aux_sym_cmd_identifier_token24] = ACTIONS(1581), - [aux_sym_cmd_identifier_token25] = ACTIONS(1581), - [aux_sym_cmd_identifier_token26] = ACTIONS(1581), - [aux_sym_cmd_identifier_token27] = ACTIONS(1581), - [aux_sym_cmd_identifier_token28] = ACTIONS(1581), - [aux_sym_cmd_identifier_token29] = ACTIONS(1581), - [aux_sym_cmd_identifier_token30] = ACTIONS(1581), - [aux_sym_cmd_identifier_token31] = ACTIONS(1581), - [aux_sym_cmd_identifier_token32] = ACTIONS(1581), - [aux_sym_cmd_identifier_token33] = ACTIONS(1581), - [aux_sym_cmd_identifier_token34] = ACTIONS(1581), - [aux_sym_cmd_identifier_token35] = ACTIONS(1581), - [aux_sym_cmd_identifier_token36] = ACTIONS(1581), - [aux_sym_cmd_identifier_token37] = ACTIONS(1581), - [aux_sym_cmd_identifier_token38] = ACTIONS(1581), - [aux_sym_cmd_identifier_token39] = ACTIONS(1581), - [aux_sym_cmd_identifier_token40] = ACTIONS(1581), - [anon_sym_def] = ACTIONS(1581), - [anon_sym_export_DASHenv] = ACTIONS(1581), - [anon_sym_extern] = ACTIONS(1581), - [anon_sym_module] = ACTIONS(1581), - [anon_sym_use] = ACTIONS(1581), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_DOLLAR] = ACTIONS(1567), - [anon_sym_error] = ACTIONS(1581), - [anon_sym_DASH2] = ACTIONS(1581), - [anon_sym_break] = ACTIONS(1581), - [anon_sym_continue] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_in2] = ACTIONS(1581), - [anon_sym_loop] = ACTIONS(1581), - [anon_sym_make] = ACTIONS(1581), - [anon_sym_while] = ACTIONS(1581), - [anon_sym_do] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_else] = ACTIONS(1581), - [anon_sym_match] = ACTIONS(1581), - [anon_sym_RBRACE] = ACTIONS(1581), - [anon_sym_try] = ACTIONS(1581), - [anon_sym_catch] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1581), - [anon_sym_source] = ACTIONS(1581), - [anon_sym_source_DASHenv] = ACTIONS(1581), - [anon_sym_register] = ACTIONS(1581), - [anon_sym_hide] = ACTIONS(1581), - [anon_sym_hide_DASHenv] = ACTIONS(1581), - [anon_sym_overlay] = ACTIONS(1581), - [anon_sym_as] = ACTIONS(1581), - [anon_sym_LPAREN2] = ACTIONS(1569), - [anon_sym_PLUS2] = ACTIONS(1581), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1581), + [343] = { + [sym__expr_parenthesized_immediate] = STATE(634), + [sym__immediate_decimal] = STATE(665), + [sym_val_variable] = STATE(634), + [sym_comment] = STATE(343), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_alias] = ACTIONS(1593), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_let_DASHenv] = ACTIONS(1593), + [anon_sym_mut] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [aux_sym_cmd_identifier_token1] = ACTIONS(1593), + [aux_sym_cmd_identifier_token2] = ACTIONS(1593), + [aux_sym_cmd_identifier_token3] = ACTIONS(1593), + [aux_sym_cmd_identifier_token4] = ACTIONS(1593), + [aux_sym_cmd_identifier_token5] = ACTIONS(1593), + [aux_sym_cmd_identifier_token6] = ACTIONS(1593), + [aux_sym_cmd_identifier_token7] = ACTIONS(1593), + [aux_sym_cmd_identifier_token8] = ACTIONS(1593), + [aux_sym_cmd_identifier_token9] = ACTIONS(1593), + [aux_sym_cmd_identifier_token10] = ACTIONS(1593), + [aux_sym_cmd_identifier_token11] = ACTIONS(1593), + [aux_sym_cmd_identifier_token12] = ACTIONS(1593), + [aux_sym_cmd_identifier_token13] = ACTIONS(1593), + [aux_sym_cmd_identifier_token14] = ACTIONS(1593), + [aux_sym_cmd_identifier_token15] = ACTIONS(1593), + [aux_sym_cmd_identifier_token16] = ACTIONS(1593), + [aux_sym_cmd_identifier_token17] = ACTIONS(1593), + [aux_sym_cmd_identifier_token18] = ACTIONS(1593), + [aux_sym_cmd_identifier_token19] = ACTIONS(1593), + [aux_sym_cmd_identifier_token20] = ACTIONS(1593), + [aux_sym_cmd_identifier_token21] = ACTIONS(1593), + [aux_sym_cmd_identifier_token22] = ACTIONS(1593), + [aux_sym_cmd_identifier_token23] = ACTIONS(1593), + [aux_sym_cmd_identifier_token24] = ACTIONS(1593), + [aux_sym_cmd_identifier_token25] = ACTIONS(1593), + [aux_sym_cmd_identifier_token26] = ACTIONS(1593), + [aux_sym_cmd_identifier_token27] = ACTIONS(1593), + [aux_sym_cmd_identifier_token28] = ACTIONS(1593), + [aux_sym_cmd_identifier_token29] = ACTIONS(1593), + [aux_sym_cmd_identifier_token30] = ACTIONS(1593), + [aux_sym_cmd_identifier_token31] = ACTIONS(1593), + [aux_sym_cmd_identifier_token32] = ACTIONS(1593), + [aux_sym_cmd_identifier_token33] = ACTIONS(1593), + [aux_sym_cmd_identifier_token34] = ACTIONS(1593), + [aux_sym_cmd_identifier_token35] = ACTIONS(1593), + [aux_sym_cmd_identifier_token36] = ACTIONS(1593), + [aux_sym_cmd_identifier_token37] = ACTIONS(1593), + [aux_sym_cmd_identifier_token38] = ACTIONS(1593), + [aux_sym_cmd_identifier_token39] = ACTIONS(1593), + [aux_sym_cmd_identifier_token40] = ACTIONS(1593), + [anon_sym_def] = ACTIONS(1593), + [anon_sym_export_DASHenv] = ACTIONS(1593), + [anon_sym_extern] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_use] = ACTIONS(1593), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_DOLLAR] = ACTIONS(1647), + [anon_sym_error] = ACTIONS(1593), + [anon_sym_DASH2] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_in2] = ACTIONS(1593), + [anon_sym_loop] = ACTIONS(1593), + [anon_sym_make] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_else] = ACTIONS(1593), + [anon_sym_match] = ACTIONS(1593), + [anon_sym_RBRACE] = ACTIONS(1593), + [anon_sym_try] = ACTIONS(1593), + [anon_sym_catch] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_source] = ACTIONS(1593), + [anon_sym_source_DASHenv] = ACTIONS(1593), + [anon_sym_register] = ACTIONS(1593), + [anon_sym_hide] = ACTIONS(1593), + [anon_sym_hide_DASHenv] = ACTIONS(1593), + [anon_sym_overlay] = ACTIONS(1593), + [anon_sym_as] = ACTIONS(1593), + [anon_sym_LPAREN2] = ACTIONS(1649), + [anon_sym_PLUS2] = ACTIONS(1593), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1593), [aux_sym__immediate_decimal_token1] = ACTIONS(1665), [aux_sym__immediate_decimal_token3] = ACTIONS(1665), [aux_sym__immediate_decimal_token4] = ACTIONS(1667), [aux_sym__immediate_decimal_token5] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1581), - [aux_sym__val_number_decimal_token1] = ACTIONS(1581), - [aux_sym__val_number_decimal_token2] = ACTIONS(1581), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1581), - [aux_sym__val_number_token1] = ACTIONS(1581), - [aux_sym__val_number_token2] = ACTIONS(1581), - [aux_sym__val_number_token3] = ACTIONS(1581), - [aux_sym__val_number_token4] = ACTIONS(1581), - [aux_sym__val_number_token5] = ACTIONS(1581), - [aux_sym__val_number_token6] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1581), - [sym__str_single_quotes] = ACTIONS(1581), - [sym__str_back_ticks] = ACTIONS(1581), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1581), - [sym__entry_separator] = ACTIONS(1591), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1593), + [aux_sym__val_number_decimal_token1] = ACTIONS(1593), + [aux_sym__val_number_decimal_token2] = ACTIONS(1593), + [aux_sym__val_number_decimal_token3] = ACTIONS(1593), + [aux_sym__val_number_decimal_token4] = ACTIONS(1593), + [aux_sym__val_number_token1] = ACTIONS(1593), + [aux_sym__val_number_token2] = ACTIONS(1593), + [aux_sym__val_number_token3] = ACTIONS(1593), + [aux_sym__val_number_token4] = ACTIONS(1593), + [aux_sym__val_number_token5] = ACTIONS(1593), + [aux_sym__val_number_token6] = ACTIONS(1593), + [anon_sym_DQUOTE] = ACTIONS(1593), + [sym__str_single_quotes] = ACTIONS(1593), + [sym__str_back_ticks] = ACTIONS(1593), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1593), + [sym__entry_separator] = ACTIONS(1603), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1591), + [sym_raw_string_begin] = ACTIONS(1603), + }, + [344] = { + [sym_comment] = STATE(344), + [anon_sym_export] = ACTIONS(1585), + [anon_sym_alias] = ACTIONS(1585), + [anon_sym_let] = ACTIONS(1585), + [anon_sym_let_DASHenv] = ACTIONS(1585), + [anon_sym_mut] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [aux_sym_cmd_identifier_token1] = ACTIONS(1585), + [aux_sym_cmd_identifier_token2] = ACTIONS(1587), + [aux_sym_cmd_identifier_token3] = ACTIONS(1587), + [aux_sym_cmd_identifier_token4] = ACTIONS(1587), + [aux_sym_cmd_identifier_token5] = ACTIONS(1587), + [aux_sym_cmd_identifier_token6] = ACTIONS(1587), + [aux_sym_cmd_identifier_token7] = ACTIONS(1587), + [aux_sym_cmd_identifier_token8] = ACTIONS(1585), + [aux_sym_cmd_identifier_token9] = ACTIONS(1585), + [aux_sym_cmd_identifier_token10] = ACTIONS(1587), + [aux_sym_cmd_identifier_token11] = ACTIONS(1587), + [aux_sym_cmd_identifier_token12] = ACTIONS(1585), + [aux_sym_cmd_identifier_token13] = ACTIONS(1585), + [aux_sym_cmd_identifier_token14] = ACTIONS(1585), + [aux_sym_cmd_identifier_token15] = ACTIONS(1585), + [aux_sym_cmd_identifier_token16] = ACTIONS(1587), + [aux_sym_cmd_identifier_token17] = ACTIONS(1587), + [aux_sym_cmd_identifier_token18] = ACTIONS(1587), + [aux_sym_cmd_identifier_token19] = ACTIONS(1587), + [aux_sym_cmd_identifier_token20] = ACTIONS(1587), + [aux_sym_cmd_identifier_token21] = ACTIONS(1587), + [aux_sym_cmd_identifier_token22] = ACTIONS(1587), + [aux_sym_cmd_identifier_token23] = ACTIONS(1587), + [aux_sym_cmd_identifier_token24] = ACTIONS(1587), + [aux_sym_cmd_identifier_token25] = ACTIONS(1587), + [aux_sym_cmd_identifier_token26] = ACTIONS(1587), + [aux_sym_cmd_identifier_token27] = ACTIONS(1587), + [aux_sym_cmd_identifier_token28] = ACTIONS(1587), + [aux_sym_cmd_identifier_token29] = ACTIONS(1587), + [aux_sym_cmd_identifier_token30] = ACTIONS(1587), + [aux_sym_cmd_identifier_token31] = ACTIONS(1587), + [aux_sym_cmd_identifier_token32] = ACTIONS(1587), + [aux_sym_cmd_identifier_token33] = ACTIONS(1587), + [aux_sym_cmd_identifier_token34] = ACTIONS(1585), + [aux_sym_cmd_identifier_token35] = ACTIONS(1587), + [aux_sym_cmd_identifier_token36] = ACTIONS(1587), + [aux_sym_cmd_identifier_token37] = ACTIONS(1587), + [aux_sym_cmd_identifier_token38] = ACTIONS(1585), + [aux_sym_cmd_identifier_token39] = ACTIONS(1587), + [aux_sym_cmd_identifier_token40] = ACTIONS(1587), + [anon_sym_def] = ACTIONS(1585), + [anon_sym_export_DASHenv] = ACTIONS(1585), + [anon_sym_extern] = ACTIONS(1585), + [anon_sym_module] = ACTIONS(1585), + [anon_sym_use] = ACTIONS(1585), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_DOLLAR] = ACTIONS(1587), + [anon_sym_error] = ACTIONS(1585), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_in2] = ACTIONS(1585), + [anon_sym_loop] = ACTIONS(1585), + [anon_sym_make] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_do] = ACTIONS(1585), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_else] = ACTIONS(1585), + [anon_sym_match] = ACTIONS(1585), + [anon_sym_RBRACE] = ACTIONS(1587), + [anon_sym_try] = ACTIONS(1585), + [anon_sym_catch] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_source] = ACTIONS(1585), + [anon_sym_source_DASHenv] = ACTIONS(1585), + [anon_sym_register] = ACTIONS(1585), + [anon_sym_hide] = ACTIONS(1585), + [anon_sym_hide_DASHenv] = ACTIONS(1585), + [anon_sym_overlay] = ACTIONS(1585), + [anon_sym_as] = ACTIONS(1585), + [anon_sym_LPAREN2] = ACTIONS(1587), + [anon_sym_PLUS2] = ACTIONS(1585), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1587), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [aux_sym__immediate_decimal_token1] = ACTIONS(1687), + [aux_sym__immediate_decimal_token2] = ACTIONS(1689), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1587), + [aux_sym__val_number_decimal_token1] = ACTIONS(1585), + [aux_sym__val_number_decimal_token2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1587), + [aux_sym__val_number_token2] = ACTIONS(1587), + [aux_sym__val_number_token3] = ACTIONS(1587), + [aux_sym__val_number_token4] = ACTIONS(1585), + [aux_sym__val_number_token5] = ACTIONS(1585), + [aux_sym__val_number_token6] = ACTIONS(1585), + [sym_filesize_unit] = ACTIONS(1585), + [sym_duration_unit] = ACTIONS(1585), + [anon_sym_DQUOTE] = ACTIONS(1587), + [sym__str_single_quotes] = ACTIONS(1587), + [sym__str_back_ticks] = ACTIONS(1587), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1587), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1587), }, [345] = { - [sym__expr_parenthesized_immediate] = STATE(533), - [sym__immediate_decimal] = STATE(539), - [sym_val_variable] = STATE(533), + [sym__expr_parenthesized_immediate] = STATE(708), + [sym__immediate_decimal] = STATE(588), + [sym_val_variable] = STATE(708), [sym_comment] = STATE(345), - [anon_sym_export] = ACTIONS(1581), - [anon_sym_alias] = ACTIONS(1581), - [anon_sym_let] = ACTIONS(1581), - [anon_sym_let_DASHenv] = ACTIONS(1581), - [anon_sym_mut] = ACTIONS(1581), - [anon_sym_const] = ACTIONS(1581), - [aux_sym_cmd_identifier_token1] = ACTIONS(1581), - [aux_sym_cmd_identifier_token2] = ACTIONS(1591), - [aux_sym_cmd_identifier_token3] = ACTIONS(1591), - [aux_sym_cmd_identifier_token4] = ACTIONS(1591), - [aux_sym_cmd_identifier_token5] = ACTIONS(1591), - [aux_sym_cmd_identifier_token6] = ACTIONS(1591), - [aux_sym_cmd_identifier_token7] = ACTIONS(1591), - [aux_sym_cmd_identifier_token8] = ACTIONS(1581), - [aux_sym_cmd_identifier_token9] = ACTIONS(1581), - [aux_sym_cmd_identifier_token10] = ACTIONS(1591), - [aux_sym_cmd_identifier_token11] = ACTIONS(1591), - [aux_sym_cmd_identifier_token12] = ACTIONS(1581), - [aux_sym_cmd_identifier_token13] = ACTIONS(1581), - [aux_sym_cmd_identifier_token14] = ACTIONS(1581), - [aux_sym_cmd_identifier_token15] = ACTIONS(1581), - [aux_sym_cmd_identifier_token16] = ACTIONS(1591), - [aux_sym_cmd_identifier_token17] = ACTIONS(1591), - [aux_sym_cmd_identifier_token18] = ACTIONS(1591), - [aux_sym_cmd_identifier_token19] = ACTIONS(1591), - [aux_sym_cmd_identifier_token20] = ACTIONS(1591), - [aux_sym_cmd_identifier_token21] = ACTIONS(1591), - [aux_sym_cmd_identifier_token22] = ACTIONS(1591), - [aux_sym_cmd_identifier_token23] = ACTIONS(1591), - [aux_sym_cmd_identifier_token24] = ACTIONS(1591), - [aux_sym_cmd_identifier_token25] = ACTIONS(1591), - [aux_sym_cmd_identifier_token26] = ACTIONS(1591), - [aux_sym_cmd_identifier_token27] = ACTIONS(1591), - [aux_sym_cmd_identifier_token28] = ACTIONS(1591), - [aux_sym_cmd_identifier_token29] = ACTIONS(1591), - [aux_sym_cmd_identifier_token30] = ACTIONS(1591), - [aux_sym_cmd_identifier_token31] = ACTIONS(1591), - [aux_sym_cmd_identifier_token32] = ACTIONS(1591), - [aux_sym_cmd_identifier_token33] = ACTIONS(1591), - [aux_sym_cmd_identifier_token34] = ACTIONS(1581), - [aux_sym_cmd_identifier_token35] = ACTIONS(1591), - [aux_sym_cmd_identifier_token36] = ACTIONS(1591), - [aux_sym_cmd_identifier_token37] = ACTIONS(1591), - [aux_sym_cmd_identifier_token38] = ACTIONS(1581), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [anon_sym_def] = ACTIONS(1581), - [anon_sym_export_DASHenv] = ACTIONS(1581), - [anon_sym_extern] = ACTIONS(1581), - [anon_sym_module] = ACTIONS(1581), - [anon_sym_use] = ACTIONS(1581), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_DOLLAR] = ACTIONS(1593), - [anon_sym_error] = ACTIONS(1581), - [anon_sym_DASH2] = ACTIONS(1581), - [anon_sym_break] = ACTIONS(1581), - [anon_sym_continue] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_in2] = ACTIONS(1581), - [anon_sym_loop] = ACTIONS(1581), - [anon_sym_make] = ACTIONS(1581), - [anon_sym_while] = ACTIONS(1581), - [anon_sym_do] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_else] = ACTIONS(1581), - [anon_sym_match] = ACTIONS(1581), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_try] = ACTIONS(1581), - [anon_sym_catch] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1581), - [anon_sym_source] = ACTIONS(1581), - [anon_sym_source_DASHenv] = ACTIONS(1581), - [anon_sym_register] = ACTIONS(1581), - [anon_sym_hide] = ACTIONS(1581), - [anon_sym_hide_DASHenv] = ACTIONS(1581), - [anon_sym_overlay] = ACTIONS(1581), - [anon_sym_as] = ACTIONS(1581), - [anon_sym_LPAREN2] = ACTIONS(1595), - [anon_sym_PLUS2] = ACTIONS(1581), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1591), - [anon_sym_DOT] = ACTIONS(1695), - [aux_sym__immediate_decimal_token1] = ACTIONS(1697), - [aux_sym__immediate_decimal_token3] = ACTIONS(1699), - [aux_sym__immediate_decimal_token4] = ACTIONS(1701), - [aux_sym__immediate_decimal_token5] = ACTIONS(1703), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1591), - [aux_sym__val_number_decimal_token1] = ACTIONS(1581), - [aux_sym__val_number_decimal_token2] = ACTIONS(1581), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1581), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [aux_sym__val_number_token4] = ACTIONS(1581), - [aux_sym__val_number_token5] = ACTIONS(1581), - [aux_sym__val_number_token6] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1591), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1591), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_alias] = ACTIONS(1543), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_let_DASHenv] = ACTIONS(1543), + [anon_sym_mut] = ACTIONS(1543), + [anon_sym_const] = ACTIONS(1543), + [aux_sym_cmd_identifier_token1] = ACTIONS(1543), + [aux_sym_cmd_identifier_token2] = ACTIONS(1557), + [aux_sym_cmd_identifier_token3] = ACTIONS(1557), + [aux_sym_cmd_identifier_token4] = ACTIONS(1557), + [aux_sym_cmd_identifier_token5] = ACTIONS(1557), + [aux_sym_cmd_identifier_token6] = ACTIONS(1557), + [aux_sym_cmd_identifier_token7] = ACTIONS(1557), + [aux_sym_cmd_identifier_token8] = ACTIONS(1543), + [aux_sym_cmd_identifier_token9] = ACTIONS(1543), + [aux_sym_cmd_identifier_token10] = ACTIONS(1557), + [aux_sym_cmd_identifier_token11] = ACTIONS(1557), + [aux_sym_cmd_identifier_token12] = ACTIONS(1543), + [aux_sym_cmd_identifier_token13] = ACTIONS(1543), + [aux_sym_cmd_identifier_token14] = ACTIONS(1543), + [aux_sym_cmd_identifier_token15] = ACTIONS(1543), + [aux_sym_cmd_identifier_token16] = ACTIONS(1557), + [aux_sym_cmd_identifier_token17] = ACTIONS(1557), + [aux_sym_cmd_identifier_token18] = ACTIONS(1557), + [aux_sym_cmd_identifier_token19] = ACTIONS(1557), + [aux_sym_cmd_identifier_token20] = ACTIONS(1557), + [aux_sym_cmd_identifier_token21] = ACTIONS(1557), + [aux_sym_cmd_identifier_token22] = ACTIONS(1557), + [aux_sym_cmd_identifier_token23] = ACTIONS(1557), + [aux_sym_cmd_identifier_token24] = ACTIONS(1557), + [aux_sym_cmd_identifier_token25] = ACTIONS(1557), + [aux_sym_cmd_identifier_token26] = ACTIONS(1557), + [aux_sym_cmd_identifier_token27] = ACTIONS(1557), + [aux_sym_cmd_identifier_token28] = ACTIONS(1557), + [aux_sym_cmd_identifier_token29] = ACTIONS(1557), + [aux_sym_cmd_identifier_token30] = ACTIONS(1557), + [aux_sym_cmd_identifier_token31] = ACTIONS(1557), + [aux_sym_cmd_identifier_token32] = ACTIONS(1557), + [aux_sym_cmd_identifier_token33] = ACTIONS(1557), + [aux_sym_cmd_identifier_token34] = ACTIONS(1543), + [aux_sym_cmd_identifier_token35] = ACTIONS(1557), + [aux_sym_cmd_identifier_token36] = ACTIONS(1557), + [aux_sym_cmd_identifier_token37] = ACTIONS(1557), + [aux_sym_cmd_identifier_token38] = ACTIONS(1543), + [aux_sym_cmd_identifier_token39] = ACTIONS(1557), + [aux_sym_cmd_identifier_token40] = ACTIONS(1557), + [anon_sym_def] = ACTIONS(1543), + [anon_sym_export_DASHenv] = ACTIONS(1543), + [anon_sym_extern] = ACTIONS(1543), + [anon_sym_module] = ACTIONS(1543), + [anon_sym_use] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1691), + [anon_sym_error] = ACTIONS(1543), + [anon_sym_DASH2] = ACTIONS(1543), + [anon_sym_break] = ACTIONS(1543), + [anon_sym_continue] = ACTIONS(1543), + [anon_sym_for] = ACTIONS(1543), + [anon_sym_in2] = ACTIONS(1543), + [anon_sym_loop] = ACTIONS(1543), + [anon_sym_make] = ACTIONS(1543), + [anon_sym_while] = ACTIONS(1543), + [anon_sym_do] = ACTIONS(1543), + [anon_sym_if] = ACTIONS(1543), + [anon_sym_else] = ACTIONS(1543), + [anon_sym_match] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1557), + [anon_sym_try] = ACTIONS(1543), + [anon_sym_catch] = ACTIONS(1543), + [anon_sym_return] = ACTIONS(1543), + [anon_sym_source] = ACTIONS(1543), + [anon_sym_source_DASHenv] = ACTIONS(1543), + [anon_sym_register] = ACTIONS(1543), + [anon_sym_hide] = ACTIONS(1543), + [anon_sym_hide_DASHenv] = ACTIONS(1543), + [anon_sym_overlay] = ACTIONS(1543), + [anon_sym_as] = ACTIONS(1543), + [anon_sym_LPAREN2] = ACTIONS(1693), + [anon_sym_PLUS2] = ACTIONS(1543), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1557), + [aux_sym__immediate_decimal_token1] = ACTIONS(1695), + [aux_sym__immediate_decimal_token3] = ACTIONS(1697), + [aux_sym__immediate_decimal_token4] = ACTIONS(1699), + [aux_sym__immediate_decimal_token5] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1557), + [aux_sym__val_number_decimal_token1] = ACTIONS(1543), + [aux_sym__val_number_decimal_token2] = ACTIONS(1543), + [aux_sym__val_number_decimal_token3] = ACTIONS(1543), + [aux_sym__val_number_decimal_token4] = ACTIONS(1543), + [aux_sym__val_number_token1] = ACTIONS(1557), + [aux_sym__val_number_token2] = ACTIONS(1557), + [aux_sym__val_number_token3] = ACTIONS(1557), + [aux_sym__val_number_token4] = ACTIONS(1543), + [aux_sym__val_number_token5] = ACTIONS(1543), + [aux_sym__val_number_token6] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1557), + [sym__str_single_quotes] = ACTIONS(1557), + [sym__str_back_ticks] = ACTIONS(1557), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1557), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1559), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1557), }, [346] = { - [sym__expr_parenthesized_immediate] = STATE(657), - [sym__immediate_decimal] = STATE(660), - [sym_val_variable] = STATE(657), [sym_comment] = STATE(346), - [anon_sym_export] = ACTIONS(1705), - [anon_sym_alias] = ACTIONS(1705), - [anon_sym_let] = ACTIONS(1705), - [anon_sym_let_DASHenv] = ACTIONS(1705), - [anon_sym_mut] = ACTIONS(1705), - [anon_sym_const] = ACTIONS(1705), - [aux_sym_cmd_identifier_token1] = ACTIONS(1705), - [aux_sym_cmd_identifier_token2] = ACTIONS(1705), - [aux_sym_cmd_identifier_token3] = ACTIONS(1705), - [aux_sym_cmd_identifier_token4] = ACTIONS(1705), - [aux_sym_cmd_identifier_token5] = ACTIONS(1705), - [aux_sym_cmd_identifier_token6] = ACTIONS(1705), - [aux_sym_cmd_identifier_token7] = ACTIONS(1705), - [aux_sym_cmd_identifier_token8] = ACTIONS(1705), - [aux_sym_cmd_identifier_token9] = ACTIONS(1705), - [aux_sym_cmd_identifier_token10] = ACTIONS(1705), - [aux_sym_cmd_identifier_token11] = ACTIONS(1705), - [aux_sym_cmd_identifier_token12] = ACTIONS(1705), - [aux_sym_cmd_identifier_token13] = ACTIONS(1705), - [aux_sym_cmd_identifier_token14] = ACTIONS(1705), - [aux_sym_cmd_identifier_token15] = ACTIONS(1705), - [aux_sym_cmd_identifier_token16] = ACTIONS(1705), - [aux_sym_cmd_identifier_token17] = ACTIONS(1705), - [aux_sym_cmd_identifier_token18] = ACTIONS(1705), - [aux_sym_cmd_identifier_token19] = ACTIONS(1705), - [aux_sym_cmd_identifier_token20] = ACTIONS(1705), - [aux_sym_cmd_identifier_token21] = ACTIONS(1705), - [aux_sym_cmd_identifier_token22] = ACTIONS(1705), - [aux_sym_cmd_identifier_token23] = ACTIONS(1705), - [aux_sym_cmd_identifier_token24] = ACTIONS(1705), - [aux_sym_cmd_identifier_token25] = ACTIONS(1705), - [aux_sym_cmd_identifier_token26] = ACTIONS(1705), - [aux_sym_cmd_identifier_token27] = ACTIONS(1705), - [aux_sym_cmd_identifier_token28] = ACTIONS(1705), - [aux_sym_cmd_identifier_token29] = ACTIONS(1705), - [aux_sym_cmd_identifier_token30] = ACTIONS(1705), - [aux_sym_cmd_identifier_token31] = ACTIONS(1705), - [aux_sym_cmd_identifier_token32] = ACTIONS(1705), - [aux_sym_cmd_identifier_token33] = ACTIONS(1705), - [aux_sym_cmd_identifier_token34] = ACTIONS(1705), - [aux_sym_cmd_identifier_token35] = ACTIONS(1705), - [aux_sym_cmd_identifier_token36] = ACTIONS(1705), - [aux_sym_cmd_identifier_token37] = ACTIONS(1705), - [aux_sym_cmd_identifier_token38] = ACTIONS(1705), - [aux_sym_cmd_identifier_token39] = ACTIONS(1705), - [aux_sym_cmd_identifier_token40] = ACTIONS(1705), - [anon_sym_def] = ACTIONS(1705), - [anon_sym_export_DASHenv] = ACTIONS(1705), - [anon_sym_extern] = ACTIONS(1705), - [anon_sym_module] = ACTIONS(1705), - [anon_sym_use] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1567), - [anon_sym_error] = ACTIONS(1705), - [anon_sym_DASH2] = ACTIONS(1705), - [anon_sym_break] = ACTIONS(1705), - [anon_sym_continue] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_in2] = ACTIONS(1705), - [anon_sym_loop] = ACTIONS(1705), - [anon_sym_make] = ACTIONS(1705), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_do] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_else] = ACTIONS(1705), - [anon_sym_match] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1705), - [anon_sym_catch] = ACTIONS(1705), - [anon_sym_return] = ACTIONS(1705), - [anon_sym_source] = ACTIONS(1705), - [anon_sym_source_DASHenv] = ACTIONS(1705), - [anon_sym_register] = ACTIONS(1705), - [anon_sym_hide] = ACTIONS(1705), - [anon_sym_hide_DASHenv] = ACTIONS(1705), - [anon_sym_overlay] = ACTIONS(1705), - [anon_sym_as] = ACTIONS(1705), - [anon_sym_LPAREN2] = ACTIONS(1569), - [anon_sym_PLUS2] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), - [aux_sym__immediate_decimal_token1] = ACTIONS(1665), - [aux_sym__immediate_decimal_token3] = ACTIONS(1665), - [aux_sym__immediate_decimal_token4] = ACTIONS(1667), - [aux_sym__immediate_decimal_token5] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), - [aux_sym__val_number_decimal_token1] = ACTIONS(1705), - [aux_sym__val_number_decimal_token2] = ACTIONS(1705), - [aux_sym__val_number_decimal_token3] = ACTIONS(1705), - [aux_sym__val_number_decimal_token4] = ACTIONS(1705), - [aux_sym__val_number_token1] = ACTIONS(1705), - [aux_sym__val_number_token2] = ACTIONS(1705), - [aux_sym__val_number_token3] = ACTIONS(1705), - [aux_sym__val_number_token4] = ACTIONS(1705), - [aux_sym__val_number_token5] = ACTIONS(1705), - [aux_sym__val_number_token6] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym__str_single_quotes] = ACTIONS(1705), - [sym__str_back_ticks] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1705), - [sym__entry_separator] = ACTIONS(1707), + [anon_sym_export] = ACTIONS(1573), + [anon_sym_alias] = ACTIONS(1573), + [anon_sym_let] = ACTIONS(1573), + [anon_sym_let_DASHenv] = ACTIONS(1573), + [anon_sym_mut] = ACTIONS(1573), + [anon_sym_const] = ACTIONS(1573), + [aux_sym_cmd_identifier_token1] = ACTIONS(1573), + [aux_sym_cmd_identifier_token2] = ACTIONS(1573), + [aux_sym_cmd_identifier_token3] = ACTIONS(1573), + [aux_sym_cmd_identifier_token4] = ACTIONS(1573), + [aux_sym_cmd_identifier_token5] = ACTIONS(1573), + [aux_sym_cmd_identifier_token6] = ACTIONS(1573), + [aux_sym_cmd_identifier_token7] = ACTIONS(1573), + [aux_sym_cmd_identifier_token8] = ACTIONS(1573), + [aux_sym_cmd_identifier_token9] = ACTIONS(1573), + [aux_sym_cmd_identifier_token10] = ACTIONS(1573), + [aux_sym_cmd_identifier_token11] = ACTIONS(1573), + [aux_sym_cmd_identifier_token12] = ACTIONS(1573), + [aux_sym_cmd_identifier_token13] = ACTIONS(1573), + [aux_sym_cmd_identifier_token14] = ACTIONS(1573), + [aux_sym_cmd_identifier_token15] = ACTIONS(1573), + [aux_sym_cmd_identifier_token16] = ACTIONS(1573), + [aux_sym_cmd_identifier_token17] = ACTIONS(1573), + [aux_sym_cmd_identifier_token18] = ACTIONS(1573), + [aux_sym_cmd_identifier_token19] = ACTIONS(1573), + [aux_sym_cmd_identifier_token20] = ACTIONS(1573), + [aux_sym_cmd_identifier_token21] = ACTIONS(1573), + [aux_sym_cmd_identifier_token22] = ACTIONS(1573), + [aux_sym_cmd_identifier_token23] = ACTIONS(1573), + [aux_sym_cmd_identifier_token24] = ACTIONS(1573), + [aux_sym_cmd_identifier_token25] = ACTIONS(1573), + [aux_sym_cmd_identifier_token26] = ACTIONS(1573), + [aux_sym_cmd_identifier_token27] = ACTIONS(1573), + [aux_sym_cmd_identifier_token28] = ACTIONS(1573), + [aux_sym_cmd_identifier_token29] = ACTIONS(1573), + [aux_sym_cmd_identifier_token30] = ACTIONS(1573), + [aux_sym_cmd_identifier_token31] = ACTIONS(1573), + [aux_sym_cmd_identifier_token32] = ACTIONS(1573), + [aux_sym_cmd_identifier_token33] = ACTIONS(1573), + [aux_sym_cmd_identifier_token34] = ACTIONS(1573), + [aux_sym_cmd_identifier_token35] = ACTIONS(1573), + [aux_sym_cmd_identifier_token36] = ACTIONS(1573), + [aux_sym_cmd_identifier_token37] = ACTIONS(1573), + [aux_sym_cmd_identifier_token38] = ACTIONS(1573), + [aux_sym_cmd_identifier_token39] = ACTIONS(1573), + [aux_sym_cmd_identifier_token40] = ACTIONS(1573), + [anon_sym_def] = ACTIONS(1573), + [anon_sym_export_DASHenv] = ACTIONS(1573), + [anon_sym_extern] = ACTIONS(1573), + [anon_sym_module] = ACTIONS(1573), + [anon_sym_use] = ACTIONS(1573), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_DOLLAR] = ACTIONS(1573), + [anon_sym_error] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_loop] = ACTIONS(1573), + [anon_sym_make] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_else] = ACTIONS(1573), + [anon_sym_match] = ACTIONS(1573), + [anon_sym_RBRACE] = ACTIONS(1573), + [anon_sym_try] = ACTIONS(1573), + [anon_sym_catch] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_source] = ACTIONS(1573), + [anon_sym_source_DASHenv] = ACTIONS(1573), + [anon_sym_register] = ACTIONS(1573), + [anon_sym_hide] = ACTIONS(1573), + [anon_sym_hide_DASHenv] = ACTIONS(1573), + [anon_sym_overlay] = ACTIONS(1573), + [anon_sym_as] = ACTIONS(1573), + [anon_sym_LPAREN2] = ACTIONS(1575), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(1579), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1573), + [aux_sym__val_number_decimal_token1] = ACTIONS(1573), + [aux_sym__val_number_decimal_token2] = ACTIONS(1573), + [aux_sym__val_number_decimal_token3] = ACTIONS(1573), + [aux_sym__val_number_decimal_token4] = ACTIONS(1573), + [aux_sym__val_number_token1] = ACTIONS(1573), + [aux_sym__val_number_token2] = ACTIONS(1573), + [aux_sym__val_number_token3] = ACTIONS(1573), + [aux_sym__val_number_token4] = ACTIONS(1573), + [aux_sym__val_number_token5] = ACTIONS(1573), + [aux_sym__val_number_token6] = ACTIONS(1573), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1573), + [anon_sym_DQUOTE] = ACTIONS(1573), + [sym__str_single_quotes] = ACTIONS(1573), + [sym__str_back_ticks] = ACTIONS(1573), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1573), + [sym__entry_separator] = ACTIONS(1575), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1573), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1707), + [sym_raw_string_begin] = ACTIONS(1575), }, [347] = { - [sym__expr_parenthesized_immediate] = STATE(7364), [sym_comment] = STATE(347), - [anon_sym_export] = ACTIONS(1709), - [anon_sym_alias] = ACTIONS(1709), - [anon_sym_let] = ACTIONS(1709), - [anon_sym_let_DASHenv] = ACTIONS(1709), - [anon_sym_mut] = ACTIONS(1709), - [anon_sym_const] = ACTIONS(1709), - [aux_sym_cmd_identifier_token1] = ACTIONS(1709), - [aux_sym_cmd_identifier_token2] = ACTIONS(1709), - [aux_sym_cmd_identifier_token3] = ACTIONS(1709), - [aux_sym_cmd_identifier_token4] = ACTIONS(1709), - [aux_sym_cmd_identifier_token5] = ACTIONS(1709), - [aux_sym_cmd_identifier_token6] = ACTIONS(1709), - [aux_sym_cmd_identifier_token7] = ACTIONS(1709), - [aux_sym_cmd_identifier_token8] = ACTIONS(1709), - [aux_sym_cmd_identifier_token9] = ACTIONS(1709), - [aux_sym_cmd_identifier_token10] = ACTIONS(1709), - [aux_sym_cmd_identifier_token11] = ACTIONS(1709), - [aux_sym_cmd_identifier_token12] = ACTIONS(1709), - [aux_sym_cmd_identifier_token13] = ACTIONS(1709), - [aux_sym_cmd_identifier_token14] = ACTIONS(1709), - [aux_sym_cmd_identifier_token15] = ACTIONS(1709), - [aux_sym_cmd_identifier_token16] = ACTIONS(1709), - [aux_sym_cmd_identifier_token17] = ACTIONS(1709), - [aux_sym_cmd_identifier_token18] = ACTIONS(1709), - [aux_sym_cmd_identifier_token19] = ACTIONS(1709), - [aux_sym_cmd_identifier_token20] = ACTIONS(1709), - [aux_sym_cmd_identifier_token21] = ACTIONS(1709), - [aux_sym_cmd_identifier_token22] = ACTIONS(1709), - [aux_sym_cmd_identifier_token23] = ACTIONS(1709), - [aux_sym_cmd_identifier_token24] = ACTIONS(1709), - [aux_sym_cmd_identifier_token25] = ACTIONS(1709), - [aux_sym_cmd_identifier_token26] = ACTIONS(1709), - [aux_sym_cmd_identifier_token27] = ACTIONS(1709), - [aux_sym_cmd_identifier_token28] = ACTIONS(1709), - [aux_sym_cmd_identifier_token29] = ACTIONS(1709), - [aux_sym_cmd_identifier_token30] = ACTIONS(1709), - [aux_sym_cmd_identifier_token31] = ACTIONS(1709), - [aux_sym_cmd_identifier_token32] = ACTIONS(1709), - [aux_sym_cmd_identifier_token33] = ACTIONS(1709), - [aux_sym_cmd_identifier_token34] = ACTIONS(1709), - [aux_sym_cmd_identifier_token35] = ACTIONS(1709), - [aux_sym_cmd_identifier_token36] = ACTIONS(1709), - [aux_sym_cmd_identifier_token37] = ACTIONS(1709), - [aux_sym_cmd_identifier_token38] = ACTIONS(1709), - [aux_sym_cmd_identifier_token39] = ACTIONS(1709), - [aux_sym_cmd_identifier_token40] = ACTIONS(1709), - [anon_sym_def] = ACTIONS(1709), - [anon_sym_export_DASHenv] = ACTIONS(1709), - [anon_sym_extern] = ACTIONS(1709), - [anon_sym_module] = ACTIONS(1709), - [anon_sym_use] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_error] = ACTIONS(1709), - [anon_sym_DASH2] = ACTIONS(1709), - [anon_sym_break] = ACTIONS(1709), - [anon_sym_continue] = ACTIONS(1709), - [anon_sym_for] = ACTIONS(1709), - [anon_sym_in2] = ACTIONS(1709), - [anon_sym_loop] = ACTIONS(1709), - [anon_sym_make] = ACTIONS(1709), - [anon_sym_while] = ACTIONS(1709), - [anon_sym_do] = ACTIONS(1709), - [anon_sym_if] = ACTIONS(1709), - [anon_sym_else] = ACTIONS(1709), - [anon_sym_match] = ACTIONS(1709), - [anon_sym_RBRACE] = ACTIONS(1709), - [anon_sym_try] = ACTIONS(1709), - [anon_sym_catch] = ACTIONS(1709), - [anon_sym_return] = ACTIONS(1709), - [anon_sym_source] = ACTIONS(1709), - [anon_sym_source_DASHenv] = ACTIONS(1709), - [anon_sym_register] = ACTIONS(1709), - [anon_sym_hide] = ACTIONS(1709), - [anon_sym_hide_DASHenv] = ACTIONS(1709), - [anon_sym_overlay] = ACTIONS(1709), - [anon_sym_as] = ACTIONS(1709), - [anon_sym_LPAREN2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1709), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1709), - [anon_sym_DOT_DOT2] = ACTIONS(1713), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1715), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1709), - [aux_sym__val_number_decimal_token1] = ACTIONS(1709), - [aux_sym__val_number_decimal_token2] = ACTIONS(1709), - [aux_sym__val_number_decimal_token3] = ACTIONS(1709), - [aux_sym__val_number_decimal_token4] = ACTIONS(1709), - [aux_sym__val_number_token1] = ACTIONS(1709), - [aux_sym__val_number_token2] = ACTIONS(1709), - [aux_sym__val_number_token3] = ACTIONS(1709), - [aux_sym__val_number_token4] = ACTIONS(1709), - [aux_sym__val_number_token5] = ACTIONS(1709), - [aux_sym__val_number_token6] = ACTIONS(1709), - [sym_filesize_unit] = ACTIONS(1717), - [sym_duration_unit] = ACTIONS(1719), - [anon_sym_DQUOTE] = ACTIONS(1709), - [sym__str_single_quotes] = ACTIONS(1709), - [sym__str_back_ticks] = ACTIONS(1709), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1709), - [sym__entry_separator] = ACTIONS(1721), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1723), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1721), + [anon_sym_export] = ACTIONS(1573), + [anon_sym_alias] = ACTIONS(1573), + [anon_sym_let] = ACTIONS(1573), + [anon_sym_let_DASHenv] = ACTIONS(1573), + [anon_sym_mut] = ACTIONS(1573), + [anon_sym_const] = ACTIONS(1573), + [aux_sym_cmd_identifier_token1] = ACTIONS(1573), + [aux_sym_cmd_identifier_token2] = ACTIONS(1575), + [aux_sym_cmd_identifier_token3] = ACTIONS(1575), + [aux_sym_cmd_identifier_token4] = ACTIONS(1575), + [aux_sym_cmd_identifier_token5] = ACTIONS(1575), + [aux_sym_cmd_identifier_token6] = ACTIONS(1575), + [aux_sym_cmd_identifier_token7] = ACTIONS(1575), + [aux_sym_cmd_identifier_token8] = ACTIONS(1573), + [aux_sym_cmd_identifier_token9] = ACTIONS(1573), + [aux_sym_cmd_identifier_token10] = ACTIONS(1575), + [aux_sym_cmd_identifier_token11] = ACTIONS(1575), + [aux_sym_cmd_identifier_token12] = ACTIONS(1573), + [aux_sym_cmd_identifier_token13] = ACTIONS(1573), + [aux_sym_cmd_identifier_token14] = ACTIONS(1573), + [aux_sym_cmd_identifier_token15] = ACTIONS(1573), + [aux_sym_cmd_identifier_token16] = ACTIONS(1575), + [aux_sym_cmd_identifier_token17] = ACTIONS(1575), + [aux_sym_cmd_identifier_token18] = ACTIONS(1575), + [aux_sym_cmd_identifier_token19] = ACTIONS(1575), + [aux_sym_cmd_identifier_token20] = ACTIONS(1575), + [aux_sym_cmd_identifier_token21] = ACTIONS(1575), + [aux_sym_cmd_identifier_token22] = ACTIONS(1575), + [aux_sym_cmd_identifier_token23] = ACTIONS(1575), + [aux_sym_cmd_identifier_token24] = ACTIONS(1575), + [aux_sym_cmd_identifier_token25] = ACTIONS(1575), + [aux_sym_cmd_identifier_token26] = ACTIONS(1575), + [aux_sym_cmd_identifier_token27] = ACTIONS(1575), + [aux_sym_cmd_identifier_token28] = ACTIONS(1575), + [aux_sym_cmd_identifier_token29] = ACTIONS(1575), + [aux_sym_cmd_identifier_token30] = ACTIONS(1575), + [aux_sym_cmd_identifier_token31] = ACTIONS(1575), + [aux_sym_cmd_identifier_token32] = ACTIONS(1575), + [aux_sym_cmd_identifier_token33] = ACTIONS(1575), + [aux_sym_cmd_identifier_token34] = ACTIONS(1573), + [aux_sym_cmd_identifier_token35] = ACTIONS(1575), + [aux_sym_cmd_identifier_token36] = ACTIONS(1575), + [aux_sym_cmd_identifier_token37] = ACTIONS(1575), + [aux_sym_cmd_identifier_token38] = ACTIONS(1573), + [aux_sym_cmd_identifier_token39] = ACTIONS(1575), + [aux_sym_cmd_identifier_token40] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(1573), + [anon_sym_export_DASHenv] = ACTIONS(1573), + [anon_sym_extern] = ACTIONS(1573), + [anon_sym_module] = ACTIONS(1573), + [anon_sym_use] = ACTIONS(1573), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_DOLLAR] = ACTIONS(1575), + [anon_sym_error] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_loop] = ACTIONS(1573), + [anon_sym_make] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_else] = ACTIONS(1573), + [anon_sym_match] = ACTIONS(1573), + [anon_sym_RBRACE] = ACTIONS(1575), + [anon_sym_try] = ACTIONS(1573), + [anon_sym_catch] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_source] = ACTIONS(1573), + [anon_sym_source_DASHenv] = ACTIONS(1573), + [anon_sym_register] = ACTIONS(1573), + [anon_sym_hide] = ACTIONS(1573), + [anon_sym_hide_DASHenv] = ACTIONS(1573), + [anon_sym_overlay] = ACTIONS(1573), + [anon_sym_as] = ACTIONS(1573), + [anon_sym_LPAREN2] = ACTIONS(1575), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1575), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1575), + [aux_sym__val_number_decimal_token1] = ACTIONS(1573), + [aux_sym__val_number_decimal_token2] = ACTIONS(1575), + [aux_sym__val_number_decimal_token3] = ACTIONS(1575), + [aux_sym__val_number_decimal_token4] = ACTIONS(1575), + [aux_sym__val_number_token1] = ACTIONS(1575), + [aux_sym__val_number_token2] = ACTIONS(1575), + [aux_sym__val_number_token3] = ACTIONS(1575), + [aux_sym__val_number_token4] = ACTIONS(1573), + [aux_sym__val_number_token5] = ACTIONS(1573), + [aux_sym__val_number_token6] = ACTIONS(1573), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1573), + [anon_sym_DQUOTE] = ACTIONS(1575), + [sym__str_single_quotes] = ACTIONS(1575), + [sym__str_back_ticks] = ACTIONS(1575), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1575), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1573), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1575), }, [348] = { - [sym__expr_parenthesized_immediate] = STATE(755), - [sym__immediate_decimal] = STATE(567), - [sym_val_variable] = STATE(755), + [sym__expr_parenthesized_immediate] = STATE(7504), [sym_comment] = STATE(348), - [anon_sym_export] = ACTIONS(1565), - [anon_sym_alias] = ACTIONS(1565), - [anon_sym_let] = ACTIONS(1565), - [anon_sym_let_DASHenv] = ACTIONS(1565), - [anon_sym_mut] = ACTIONS(1565), - [anon_sym_const] = ACTIONS(1565), - [aux_sym_cmd_identifier_token1] = ACTIONS(1565), - [aux_sym_cmd_identifier_token2] = ACTIONS(1577), - [aux_sym_cmd_identifier_token3] = ACTIONS(1577), - [aux_sym_cmd_identifier_token4] = ACTIONS(1577), - [aux_sym_cmd_identifier_token5] = ACTIONS(1577), - [aux_sym_cmd_identifier_token6] = ACTIONS(1577), - [aux_sym_cmd_identifier_token7] = ACTIONS(1577), - [aux_sym_cmd_identifier_token8] = ACTIONS(1565), - [aux_sym_cmd_identifier_token9] = ACTIONS(1565), - [aux_sym_cmd_identifier_token10] = ACTIONS(1577), - [aux_sym_cmd_identifier_token11] = ACTIONS(1577), - [aux_sym_cmd_identifier_token12] = ACTIONS(1565), - [aux_sym_cmd_identifier_token13] = ACTIONS(1565), - [aux_sym_cmd_identifier_token14] = ACTIONS(1565), - [aux_sym_cmd_identifier_token15] = ACTIONS(1565), - [aux_sym_cmd_identifier_token16] = ACTIONS(1577), - [aux_sym_cmd_identifier_token17] = ACTIONS(1577), - [aux_sym_cmd_identifier_token18] = ACTIONS(1577), - [aux_sym_cmd_identifier_token19] = ACTIONS(1577), - [aux_sym_cmd_identifier_token20] = ACTIONS(1577), - [aux_sym_cmd_identifier_token21] = ACTIONS(1577), - [aux_sym_cmd_identifier_token22] = ACTIONS(1577), - [aux_sym_cmd_identifier_token23] = ACTIONS(1577), - [aux_sym_cmd_identifier_token24] = ACTIONS(1577), - [aux_sym_cmd_identifier_token25] = ACTIONS(1577), - [aux_sym_cmd_identifier_token26] = ACTIONS(1577), - [aux_sym_cmd_identifier_token27] = ACTIONS(1577), - [aux_sym_cmd_identifier_token28] = ACTIONS(1577), - [aux_sym_cmd_identifier_token29] = ACTIONS(1577), - [aux_sym_cmd_identifier_token30] = ACTIONS(1577), - [aux_sym_cmd_identifier_token31] = ACTIONS(1577), - [aux_sym_cmd_identifier_token32] = ACTIONS(1577), - [aux_sym_cmd_identifier_token33] = ACTIONS(1577), - [aux_sym_cmd_identifier_token34] = ACTIONS(1565), - [aux_sym_cmd_identifier_token35] = ACTIONS(1577), - [aux_sym_cmd_identifier_token36] = ACTIONS(1577), - [aux_sym_cmd_identifier_token37] = ACTIONS(1577), - [aux_sym_cmd_identifier_token38] = ACTIONS(1565), - [aux_sym_cmd_identifier_token39] = ACTIONS(1577), - [aux_sym_cmd_identifier_token40] = ACTIONS(1577), - [anon_sym_def] = ACTIONS(1565), - [anon_sym_export_DASHenv] = ACTIONS(1565), - [anon_sym_extern] = ACTIONS(1565), - [anon_sym_module] = ACTIONS(1565), - [anon_sym_use] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_DOLLAR] = ACTIONS(1679), - [anon_sym_error] = ACTIONS(1565), - [anon_sym_DASH2] = ACTIONS(1565), - [anon_sym_break] = ACTIONS(1565), - [anon_sym_continue] = ACTIONS(1565), - [anon_sym_for] = ACTIONS(1565), - [anon_sym_in2] = ACTIONS(1565), - [anon_sym_loop] = ACTIONS(1565), - [anon_sym_make] = ACTIONS(1565), - [anon_sym_while] = ACTIONS(1565), - [anon_sym_do] = ACTIONS(1565), - [anon_sym_if] = ACTIONS(1565), - [anon_sym_else] = ACTIONS(1565), - [anon_sym_match] = ACTIONS(1565), - [anon_sym_RBRACE] = ACTIONS(1577), - [anon_sym_try] = ACTIONS(1565), - [anon_sym_catch] = ACTIONS(1565), - [anon_sym_return] = ACTIONS(1565), - [anon_sym_source] = ACTIONS(1565), - [anon_sym_source_DASHenv] = ACTIONS(1565), - [anon_sym_register] = ACTIONS(1565), - [anon_sym_hide] = ACTIONS(1565), - [anon_sym_hide_DASHenv] = ACTIONS(1565), - [anon_sym_overlay] = ACTIONS(1565), - [anon_sym_as] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1565), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1577), - [aux_sym__immediate_decimal_token1] = ACTIONS(1683), - [aux_sym__immediate_decimal_token3] = ACTIONS(1685), - [aux_sym__immediate_decimal_token4] = ACTIONS(1687), - [aux_sym__immediate_decimal_token5] = ACTIONS(1689), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1577), - [aux_sym__val_number_decimal_token1] = ACTIONS(1565), - [aux_sym__val_number_decimal_token2] = ACTIONS(1565), - [aux_sym__val_number_decimal_token3] = ACTIONS(1565), - [aux_sym__val_number_decimal_token4] = ACTIONS(1565), - [aux_sym__val_number_token1] = ACTIONS(1577), - [aux_sym__val_number_token2] = ACTIONS(1577), - [aux_sym__val_number_token3] = ACTIONS(1577), - [aux_sym__val_number_token4] = ACTIONS(1565), - [aux_sym__val_number_token5] = ACTIONS(1565), - [aux_sym__val_number_token6] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(1577), - [sym__str_single_quotes] = ACTIONS(1577), - [sym__str_back_ticks] = ACTIONS(1577), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1577), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1579), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1577), + [anon_sym_export] = ACTIONS(1707), + [anon_sym_alias] = ACTIONS(1707), + [anon_sym_let] = ACTIONS(1707), + [anon_sym_let_DASHenv] = ACTIONS(1707), + [anon_sym_mut] = ACTIONS(1707), + [anon_sym_const] = ACTIONS(1707), + [aux_sym_cmd_identifier_token1] = ACTIONS(1707), + [aux_sym_cmd_identifier_token2] = ACTIONS(1707), + [aux_sym_cmd_identifier_token3] = ACTIONS(1707), + [aux_sym_cmd_identifier_token4] = ACTIONS(1707), + [aux_sym_cmd_identifier_token5] = ACTIONS(1707), + [aux_sym_cmd_identifier_token6] = ACTIONS(1707), + [aux_sym_cmd_identifier_token7] = ACTIONS(1707), + [aux_sym_cmd_identifier_token8] = ACTIONS(1707), + [aux_sym_cmd_identifier_token9] = ACTIONS(1707), + [aux_sym_cmd_identifier_token10] = ACTIONS(1707), + [aux_sym_cmd_identifier_token11] = ACTIONS(1707), + [aux_sym_cmd_identifier_token12] = ACTIONS(1707), + [aux_sym_cmd_identifier_token13] = ACTIONS(1707), + [aux_sym_cmd_identifier_token14] = ACTIONS(1707), + [aux_sym_cmd_identifier_token15] = ACTIONS(1707), + [aux_sym_cmd_identifier_token16] = ACTIONS(1707), + [aux_sym_cmd_identifier_token17] = ACTIONS(1707), + [aux_sym_cmd_identifier_token18] = ACTIONS(1707), + [aux_sym_cmd_identifier_token19] = ACTIONS(1707), + [aux_sym_cmd_identifier_token20] = ACTIONS(1707), + [aux_sym_cmd_identifier_token21] = ACTIONS(1707), + [aux_sym_cmd_identifier_token22] = ACTIONS(1707), + [aux_sym_cmd_identifier_token23] = ACTIONS(1707), + [aux_sym_cmd_identifier_token24] = ACTIONS(1707), + [aux_sym_cmd_identifier_token25] = ACTIONS(1707), + [aux_sym_cmd_identifier_token26] = ACTIONS(1707), + [aux_sym_cmd_identifier_token27] = ACTIONS(1707), + [aux_sym_cmd_identifier_token28] = ACTIONS(1707), + [aux_sym_cmd_identifier_token29] = ACTIONS(1707), + [aux_sym_cmd_identifier_token30] = ACTIONS(1707), + [aux_sym_cmd_identifier_token31] = ACTIONS(1707), + [aux_sym_cmd_identifier_token32] = ACTIONS(1707), + [aux_sym_cmd_identifier_token33] = ACTIONS(1707), + [aux_sym_cmd_identifier_token34] = ACTIONS(1707), + [aux_sym_cmd_identifier_token35] = ACTIONS(1707), + [aux_sym_cmd_identifier_token36] = ACTIONS(1707), + [aux_sym_cmd_identifier_token37] = ACTIONS(1707), + [aux_sym_cmd_identifier_token38] = ACTIONS(1707), + [aux_sym_cmd_identifier_token39] = ACTIONS(1707), + [aux_sym_cmd_identifier_token40] = ACTIONS(1707), + [anon_sym_def] = ACTIONS(1707), + [anon_sym_export_DASHenv] = ACTIONS(1707), + [anon_sym_extern] = ACTIONS(1707), + [anon_sym_module] = ACTIONS(1707), + [anon_sym_use] = ACTIONS(1707), + [anon_sym_LPAREN] = ACTIONS(1707), + [anon_sym_DOLLAR] = ACTIONS(1707), + [anon_sym_error] = ACTIONS(1707), + [anon_sym_DASH2] = ACTIONS(1707), + [anon_sym_break] = ACTIONS(1707), + [anon_sym_continue] = ACTIONS(1707), + [anon_sym_for] = ACTIONS(1707), + [anon_sym_in2] = ACTIONS(1707), + [anon_sym_loop] = ACTIONS(1707), + [anon_sym_make] = ACTIONS(1707), + [anon_sym_while] = ACTIONS(1707), + [anon_sym_do] = ACTIONS(1707), + [anon_sym_if] = ACTIONS(1707), + [anon_sym_else] = ACTIONS(1707), + [anon_sym_match] = ACTIONS(1707), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_try] = ACTIONS(1707), + [anon_sym_catch] = ACTIONS(1707), + [anon_sym_return] = ACTIONS(1707), + [anon_sym_source] = ACTIONS(1707), + [anon_sym_source_DASHenv] = ACTIONS(1707), + [anon_sym_register] = ACTIONS(1707), + [anon_sym_hide] = ACTIONS(1707), + [anon_sym_hide_DASHenv] = ACTIONS(1707), + [anon_sym_overlay] = ACTIONS(1707), + [anon_sym_as] = ACTIONS(1707), + [anon_sym_LPAREN2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1707), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1707), + [aux_sym__val_number_decimal_token1] = ACTIONS(1707), + [aux_sym__val_number_decimal_token2] = ACTIONS(1707), + [aux_sym__val_number_decimal_token3] = ACTIONS(1707), + [aux_sym__val_number_decimal_token4] = ACTIONS(1707), + [aux_sym__val_number_token1] = ACTIONS(1707), + [aux_sym__val_number_token2] = ACTIONS(1707), + [aux_sym__val_number_token3] = ACTIONS(1707), + [aux_sym__val_number_token4] = ACTIONS(1707), + [aux_sym__val_number_token5] = ACTIONS(1707), + [aux_sym__val_number_token6] = ACTIONS(1707), + [sym_filesize_unit] = ACTIONS(1715), + [sym_duration_unit] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1707), + [sym__str_single_quotes] = ACTIONS(1707), + [sym__str_back_ticks] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1707), + [sym__entry_separator] = ACTIONS(1719), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1721), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1719), }, [349] = { + [sym__expr_parenthesized_immediate] = STATE(718), + [sym__immediate_decimal] = STATE(582), + [sym_val_variable] = STATE(718), [sym_comment] = STATE(349), - [anon_sym_export] = ACTIONS(1607), - [anon_sym_alias] = ACTIONS(1607), - [anon_sym_let] = ACTIONS(1607), - [anon_sym_let_DASHenv] = ACTIONS(1607), - [anon_sym_mut] = ACTIONS(1607), - [anon_sym_const] = ACTIONS(1607), - [aux_sym_cmd_identifier_token1] = ACTIONS(1607), - [aux_sym_cmd_identifier_token2] = ACTIONS(1609), - [aux_sym_cmd_identifier_token3] = ACTIONS(1609), - [aux_sym_cmd_identifier_token4] = ACTIONS(1609), - [aux_sym_cmd_identifier_token5] = ACTIONS(1609), - [aux_sym_cmd_identifier_token6] = ACTIONS(1609), - [aux_sym_cmd_identifier_token7] = ACTIONS(1609), - [aux_sym_cmd_identifier_token8] = ACTIONS(1607), - [aux_sym_cmd_identifier_token9] = ACTIONS(1607), - [aux_sym_cmd_identifier_token10] = ACTIONS(1609), - [aux_sym_cmd_identifier_token11] = ACTIONS(1609), - [aux_sym_cmd_identifier_token12] = ACTIONS(1607), - [aux_sym_cmd_identifier_token13] = ACTIONS(1607), - [aux_sym_cmd_identifier_token14] = ACTIONS(1607), - [aux_sym_cmd_identifier_token15] = ACTIONS(1607), - [aux_sym_cmd_identifier_token16] = ACTIONS(1609), - [aux_sym_cmd_identifier_token17] = ACTIONS(1609), - [aux_sym_cmd_identifier_token18] = ACTIONS(1609), - [aux_sym_cmd_identifier_token19] = ACTIONS(1609), - [aux_sym_cmd_identifier_token20] = ACTIONS(1609), - [aux_sym_cmd_identifier_token21] = ACTIONS(1609), - [aux_sym_cmd_identifier_token22] = ACTIONS(1609), - [aux_sym_cmd_identifier_token23] = ACTIONS(1609), - [aux_sym_cmd_identifier_token24] = ACTIONS(1609), - [aux_sym_cmd_identifier_token25] = ACTIONS(1609), - [aux_sym_cmd_identifier_token26] = ACTIONS(1609), - [aux_sym_cmd_identifier_token27] = ACTIONS(1609), - [aux_sym_cmd_identifier_token28] = ACTIONS(1609), - [aux_sym_cmd_identifier_token29] = ACTIONS(1609), - [aux_sym_cmd_identifier_token30] = ACTIONS(1609), - [aux_sym_cmd_identifier_token31] = ACTIONS(1609), - [aux_sym_cmd_identifier_token32] = ACTIONS(1609), - [aux_sym_cmd_identifier_token33] = ACTIONS(1609), - [aux_sym_cmd_identifier_token34] = ACTIONS(1607), - [aux_sym_cmd_identifier_token35] = ACTIONS(1609), - [aux_sym_cmd_identifier_token36] = ACTIONS(1609), - [aux_sym_cmd_identifier_token37] = ACTIONS(1609), - [aux_sym_cmd_identifier_token38] = ACTIONS(1607), - [aux_sym_cmd_identifier_token39] = ACTIONS(1609), - [aux_sym_cmd_identifier_token40] = ACTIONS(1609), - [anon_sym_def] = ACTIONS(1607), - [anon_sym_export_DASHenv] = ACTIONS(1607), - [anon_sym_extern] = ACTIONS(1607), - [anon_sym_module] = ACTIONS(1607), - [anon_sym_use] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_DOLLAR] = ACTIONS(1609), - [anon_sym_error] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_break] = ACTIONS(1607), - [anon_sym_continue] = ACTIONS(1607), - [anon_sym_for] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_loop] = ACTIONS(1607), - [anon_sym_make] = ACTIONS(1607), - [anon_sym_while] = ACTIONS(1607), - [anon_sym_do] = ACTIONS(1607), - [anon_sym_if] = ACTIONS(1607), - [anon_sym_else] = ACTIONS(1607), - [anon_sym_match] = ACTIONS(1607), - [anon_sym_RBRACE] = ACTIONS(1609), - [anon_sym_try] = ACTIONS(1607), - [anon_sym_catch] = ACTIONS(1607), - [anon_sym_return] = ACTIONS(1607), - [anon_sym_source] = ACTIONS(1607), - [anon_sym_source_DASHenv] = ACTIONS(1607), - [anon_sym_register] = ACTIONS(1607), - [anon_sym_hide] = ACTIONS(1607), - [anon_sym_hide_DASHenv] = ACTIONS(1607), - [anon_sym_overlay] = ACTIONS(1607), - [anon_sym_as] = ACTIONS(1607), - [anon_sym_LPAREN2] = ACTIONS(1609), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1609), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(1727), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1609), - [aux_sym__val_number_decimal_token1] = ACTIONS(1607), - [aux_sym__val_number_decimal_token2] = ACTIONS(1609), - [aux_sym__val_number_decimal_token3] = ACTIONS(1609), - [aux_sym__val_number_decimal_token4] = ACTIONS(1609), - [aux_sym__val_number_token1] = ACTIONS(1609), - [aux_sym__val_number_token2] = ACTIONS(1609), - [aux_sym__val_number_token3] = ACTIONS(1609), - [aux_sym__val_number_token4] = ACTIONS(1607), - [aux_sym__val_number_token5] = ACTIONS(1607), - [aux_sym__val_number_token6] = ACTIONS(1607), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1609), - [sym__str_single_quotes] = ACTIONS(1609), - [sym__str_back_ticks] = ACTIONS(1609), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1609), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1607), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1609), + [anon_sym_export] = ACTIONS(1657), + [anon_sym_alias] = ACTIONS(1657), + [anon_sym_let] = ACTIONS(1657), + [anon_sym_let_DASHenv] = ACTIONS(1657), + [anon_sym_mut] = ACTIONS(1657), + [anon_sym_const] = ACTIONS(1657), + [aux_sym_cmd_identifier_token1] = ACTIONS(1657), + [aux_sym_cmd_identifier_token2] = ACTIONS(1659), + [aux_sym_cmd_identifier_token3] = ACTIONS(1659), + [aux_sym_cmd_identifier_token4] = ACTIONS(1659), + [aux_sym_cmd_identifier_token5] = ACTIONS(1659), + [aux_sym_cmd_identifier_token6] = ACTIONS(1659), + [aux_sym_cmd_identifier_token7] = ACTIONS(1659), + [aux_sym_cmd_identifier_token8] = ACTIONS(1657), + [aux_sym_cmd_identifier_token9] = ACTIONS(1657), + [aux_sym_cmd_identifier_token10] = ACTIONS(1659), + [aux_sym_cmd_identifier_token11] = ACTIONS(1659), + [aux_sym_cmd_identifier_token12] = ACTIONS(1657), + [aux_sym_cmd_identifier_token13] = ACTIONS(1657), + [aux_sym_cmd_identifier_token14] = ACTIONS(1657), + [aux_sym_cmd_identifier_token15] = ACTIONS(1657), + [aux_sym_cmd_identifier_token16] = ACTIONS(1659), + [aux_sym_cmd_identifier_token17] = ACTIONS(1659), + [aux_sym_cmd_identifier_token18] = ACTIONS(1659), + [aux_sym_cmd_identifier_token19] = ACTIONS(1659), + [aux_sym_cmd_identifier_token20] = ACTIONS(1659), + [aux_sym_cmd_identifier_token21] = ACTIONS(1659), + [aux_sym_cmd_identifier_token22] = ACTIONS(1659), + [aux_sym_cmd_identifier_token23] = ACTIONS(1659), + [aux_sym_cmd_identifier_token24] = ACTIONS(1659), + [aux_sym_cmd_identifier_token25] = ACTIONS(1659), + [aux_sym_cmd_identifier_token26] = ACTIONS(1659), + [aux_sym_cmd_identifier_token27] = ACTIONS(1659), + [aux_sym_cmd_identifier_token28] = ACTIONS(1659), + [aux_sym_cmd_identifier_token29] = ACTIONS(1659), + [aux_sym_cmd_identifier_token30] = ACTIONS(1659), + [aux_sym_cmd_identifier_token31] = ACTIONS(1659), + [aux_sym_cmd_identifier_token32] = ACTIONS(1659), + [aux_sym_cmd_identifier_token33] = ACTIONS(1659), + [aux_sym_cmd_identifier_token34] = ACTIONS(1657), + [aux_sym_cmd_identifier_token35] = ACTIONS(1659), + [aux_sym_cmd_identifier_token36] = ACTIONS(1659), + [aux_sym_cmd_identifier_token37] = ACTIONS(1659), + [aux_sym_cmd_identifier_token38] = ACTIONS(1657), + [aux_sym_cmd_identifier_token39] = ACTIONS(1659), + [aux_sym_cmd_identifier_token40] = ACTIONS(1659), + [anon_sym_def] = ACTIONS(1657), + [anon_sym_export_DASHenv] = ACTIONS(1657), + [anon_sym_extern] = ACTIONS(1657), + [anon_sym_module] = ACTIONS(1657), + [anon_sym_use] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym_DOLLAR] = ACTIONS(1691), + [anon_sym_error] = ACTIONS(1657), + [anon_sym_DASH2] = ACTIONS(1657), + [anon_sym_break] = ACTIONS(1657), + [anon_sym_continue] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1657), + [anon_sym_in2] = ACTIONS(1657), + [anon_sym_loop] = ACTIONS(1657), + [anon_sym_make] = ACTIONS(1657), + [anon_sym_while] = ACTIONS(1657), + [anon_sym_do] = ACTIONS(1657), + [anon_sym_if] = ACTIONS(1657), + [anon_sym_else] = ACTIONS(1657), + [anon_sym_match] = ACTIONS(1657), + [anon_sym_RBRACE] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1657), + [anon_sym_catch] = ACTIONS(1657), + [anon_sym_return] = ACTIONS(1657), + [anon_sym_source] = ACTIONS(1657), + [anon_sym_source_DASHenv] = ACTIONS(1657), + [anon_sym_register] = ACTIONS(1657), + [anon_sym_hide] = ACTIONS(1657), + [anon_sym_hide_DASHenv] = ACTIONS(1657), + [anon_sym_overlay] = ACTIONS(1657), + [anon_sym_as] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(1693), + [anon_sym_PLUS2] = ACTIONS(1657), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1659), + [aux_sym__immediate_decimal_token1] = ACTIONS(1695), + [aux_sym__immediate_decimal_token3] = ACTIONS(1697), + [aux_sym__immediate_decimal_token4] = ACTIONS(1699), + [aux_sym__immediate_decimal_token5] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1659), + [aux_sym__val_number_decimal_token1] = ACTIONS(1657), + [aux_sym__val_number_decimal_token2] = ACTIONS(1657), + [aux_sym__val_number_decimal_token3] = ACTIONS(1657), + [aux_sym__val_number_decimal_token4] = ACTIONS(1657), + [aux_sym__val_number_token1] = ACTIONS(1659), + [aux_sym__val_number_token2] = ACTIONS(1659), + [aux_sym__val_number_token3] = ACTIONS(1659), + [aux_sym__val_number_token4] = ACTIONS(1657), + [aux_sym__val_number_token5] = ACTIONS(1657), + [aux_sym__val_number_token6] = ACTIONS(1657), + [anon_sym_DQUOTE] = ACTIONS(1659), + [sym__str_single_quotes] = ACTIONS(1659), + [sym__str_back_ticks] = ACTIONS(1659), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1659), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1661), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1659), }, [350] = { + [sym__expr_parenthesized_immediate] = STATE(515), + [sym__immediate_decimal] = STATE(516), + [sym_val_variable] = STATE(515), [sym_comment] = STATE(350), - [anon_sym_export] = ACTIONS(1621), - [anon_sym_alias] = ACTIONS(1621), - [anon_sym_let] = ACTIONS(1621), - [anon_sym_let_DASHenv] = ACTIONS(1621), - [anon_sym_mut] = ACTIONS(1621), - [anon_sym_const] = ACTIONS(1621), - [aux_sym_cmd_identifier_token1] = ACTIONS(1621), - [aux_sym_cmd_identifier_token2] = ACTIONS(1623), - [aux_sym_cmd_identifier_token3] = ACTIONS(1623), - [aux_sym_cmd_identifier_token4] = ACTIONS(1623), - [aux_sym_cmd_identifier_token5] = ACTIONS(1623), - [aux_sym_cmd_identifier_token6] = ACTIONS(1623), - [aux_sym_cmd_identifier_token7] = ACTIONS(1623), - [aux_sym_cmd_identifier_token8] = ACTIONS(1621), - [aux_sym_cmd_identifier_token9] = ACTIONS(1621), - [aux_sym_cmd_identifier_token10] = ACTIONS(1623), - [aux_sym_cmd_identifier_token11] = ACTIONS(1623), - [aux_sym_cmd_identifier_token12] = ACTIONS(1621), - [aux_sym_cmd_identifier_token13] = ACTIONS(1621), - [aux_sym_cmd_identifier_token14] = ACTIONS(1621), - [aux_sym_cmd_identifier_token15] = ACTIONS(1621), - [aux_sym_cmd_identifier_token16] = ACTIONS(1623), - [aux_sym_cmd_identifier_token17] = ACTIONS(1623), - [aux_sym_cmd_identifier_token18] = ACTIONS(1623), - [aux_sym_cmd_identifier_token19] = ACTIONS(1623), - [aux_sym_cmd_identifier_token20] = ACTIONS(1623), - [aux_sym_cmd_identifier_token21] = ACTIONS(1623), - [aux_sym_cmd_identifier_token22] = ACTIONS(1623), - [aux_sym_cmd_identifier_token23] = ACTIONS(1623), - [aux_sym_cmd_identifier_token24] = ACTIONS(1623), - [aux_sym_cmd_identifier_token25] = ACTIONS(1623), - [aux_sym_cmd_identifier_token26] = ACTIONS(1623), - [aux_sym_cmd_identifier_token27] = ACTIONS(1623), - [aux_sym_cmd_identifier_token28] = ACTIONS(1623), - [aux_sym_cmd_identifier_token29] = ACTIONS(1623), - [aux_sym_cmd_identifier_token30] = ACTIONS(1623), - [aux_sym_cmd_identifier_token31] = ACTIONS(1623), - [aux_sym_cmd_identifier_token32] = ACTIONS(1623), - [aux_sym_cmd_identifier_token33] = ACTIONS(1623), - [aux_sym_cmd_identifier_token34] = ACTIONS(1621), - [aux_sym_cmd_identifier_token35] = ACTIONS(1623), - [aux_sym_cmd_identifier_token36] = ACTIONS(1623), - [aux_sym_cmd_identifier_token37] = ACTIONS(1623), - [aux_sym_cmd_identifier_token38] = ACTIONS(1621), - [aux_sym_cmd_identifier_token39] = ACTIONS(1623), - [aux_sym_cmd_identifier_token40] = ACTIONS(1623), - [anon_sym_def] = ACTIONS(1621), - [anon_sym_export_DASHenv] = ACTIONS(1621), - [anon_sym_extern] = ACTIONS(1621), - [anon_sym_module] = ACTIONS(1621), - [anon_sym_use] = ACTIONS(1621), - [anon_sym_LPAREN] = ACTIONS(1621), - [anon_sym_DOLLAR] = ACTIONS(1623), - [anon_sym_error] = ACTIONS(1621), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_break] = ACTIONS(1621), - [anon_sym_continue] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1621), - [anon_sym_in2] = ACTIONS(1621), - [anon_sym_loop] = ACTIONS(1621), - [anon_sym_make] = ACTIONS(1621), - [anon_sym_while] = ACTIONS(1621), - [anon_sym_do] = ACTIONS(1621), - [anon_sym_if] = ACTIONS(1621), - [anon_sym_else] = ACTIONS(1621), - [anon_sym_match] = ACTIONS(1621), - [anon_sym_RBRACE] = ACTIONS(1623), - [anon_sym_try] = ACTIONS(1621), - [anon_sym_catch] = ACTIONS(1621), - [anon_sym_return] = ACTIONS(1621), - [anon_sym_source] = ACTIONS(1621), - [anon_sym_source_DASHenv] = ACTIONS(1621), - [anon_sym_register] = ACTIONS(1621), - [anon_sym_hide] = ACTIONS(1621), - [anon_sym_hide_DASHenv] = ACTIONS(1621), - [anon_sym_overlay] = ACTIONS(1621), - [anon_sym_as] = ACTIONS(1621), - [anon_sym_LPAREN2] = ACTIONS(1623), - [anon_sym_PLUS2] = ACTIONS(1621), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1623), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [aux_sym__immediate_decimal_token1] = ACTIONS(1729), - [aux_sym__immediate_decimal_token2] = ACTIONS(1731), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1623), - [aux_sym__val_number_decimal_token1] = ACTIONS(1621), - [aux_sym__val_number_decimal_token2] = ACTIONS(1623), - [aux_sym__val_number_decimal_token3] = ACTIONS(1623), - [aux_sym__val_number_decimal_token4] = ACTIONS(1623), - [aux_sym__val_number_token1] = ACTIONS(1623), - [aux_sym__val_number_token2] = ACTIONS(1623), - [aux_sym__val_number_token3] = ACTIONS(1623), - [aux_sym__val_number_token4] = ACTIONS(1621), - [aux_sym__val_number_token5] = ACTIONS(1621), - [aux_sym__val_number_token6] = ACTIONS(1621), - [sym_filesize_unit] = ACTIONS(1621), - [sym_duration_unit] = ACTIONS(1621), - [anon_sym_DQUOTE] = ACTIONS(1623), - [sym__str_single_quotes] = ACTIONS(1623), - [sym__str_back_ticks] = ACTIONS(1623), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1623), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1621), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1623), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_alias] = ACTIONS(1593), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_let_DASHenv] = ACTIONS(1593), + [anon_sym_mut] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [aux_sym_cmd_identifier_token1] = ACTIONS(1593), + [aux_sym_cmd_identifier_token2] = ACTIONS(1603), + [aux_sym_cmd_identifier_token3] = ACTIONS(1603), + [aux_sym_cmd_identifier_token4] = ACTIONS(1603), + [aux_sym_cmd_identifier_token5] = ACTIONS(1603), + [aux_sym_cmd_identifier_token6] = ACTIONS(1603), + [aux_sym_cmd_identifier_token7] = ACTIONS(1603), + [aux_sym_cmd_identifier_token8] = ACTIONS(1593), + [aux_sym_cmd_identifier_token9] = ACTIONS(1593), + [aux_sym_cmd_identifier_token10] = ACTIONS(1603), + [aux_sym_cmd_identifier_token11] = ACTIONS(1603), + [aux_sym_cmd_identifier_token12] = ACTIONS(1593), + [aux_sym_cmd_identifier_token13] = ACTIONS(1593), + [aux_sym_cmd_identifier_token14] = ACTIONS(1593), + [aux_sym_cmd_identifier_token15] = ACTIONS(1593), + [aux_sym_cmd_identifier_token16] = ACTIONS(1603), + [aux_sym_cmd_identifier_token17] = ACTIONS(1603), + [aux_sym_cmd_identifier_token18] = ACTIONS(1603), + [aux_sym_cmd_identifier_token19] = ACTIONS(1603), + [aux_sym_cmd_identifier_token20] = ACTIONS(1603), + [aux_sym_cmd_identifier_token21] = ACTIONS(1603), + [aux_sym_cmd_identifier_token22] = ACTIONS(1603), + [aux_sym_cmd_identifier_token23] = ACTIONS(1603), + [aux_sym_cmd_identifier_token24] = ACTIONS(1603), + [aux_sym_cmd_identifier_token25] = ACTIONS(1603), + [aux_sym_cmd_identifier_token26] = ACTIONS(1603), + [aux_sym_cmd_identifier_token27] = ACTIONS(1603), + [aux_sym_cmd_identifier_token28] = ACTIONS(1603), + [aux_sym_cmd_identifier_token29] = ACTIONS(1603), + [aux_sym_cmd_identifier_token30] = ACTIONS(1603), + [aux_sym_cmd_identifier_token31] = ACTIONS(1603), + [aux_sym_cmd_identifier_token32] = ACTIONS(1603), + [aux_sym_cmd_identifier_token33] = ACTIONS(1603), + [aux_sym_cmd_identifier_token34] = ACTIONS(1593), + [aux_sym_cmd_identifier_token35] = ACTIONS(1603), + [aux_sym_cmd_identifier_token36] = ACTIONS(1603), + [aux_sym_cmd_identifier_token37] = ACTIONS(1603), + [aux_sym_cmd_identifier_token38] = ACTIONS(1593), + [aux_sym_cmd_identifier_token39] = ACTIONS(1603), + [aux_sym_cmd_identifier_token40] = ACTIONS(1603), + [anon_sym_def] = ACTIONS(1593), + [anon_sym_export_DASHenv] = ACTIONS(1593), + [anon_sym_extern] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_use] = ACTIONS(1593), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_DOLLAR] = ACTIONS(1615), + [anon_sym_error] = ACTIONS(1593), + [anon_sym_DASH2] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_in2] = ACTIONS(1593), + [anon_sym_loop] = ACTIONS(1593), + [anon_sym_make] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_else] = ACTIONS(1593), + [anon_sym_match] = ACTIONS(1593), + [anon_sym_RBRACE] = ACTIONS(1603), + [anon_sym_try] = ACTIONS(1593), + [anon_sym_catch] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_source] = ACTIONS(1593), + [anon_sym_source_DASHenv] = ACTIONS(1593), + [anon_sym_register] = ACTIONS(1593), + [anon_sym_hide] = ACTIONS(1593), + [anon_sym_hide_DASHenv] = ACTIONS(1593), + [anon_sym_overlay] = ACTIONS(1593), + [anon_sym_as] = ACTIONS(1593), + [anon_sym_LPAREN2] = ACTIONS(1617), + [anon_sym_PLUS2] = ACTIONS(1593), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1603), + [anon_sym_DOT] = ACTIONS(1723), + [aux_sym__immediate_decimal_token1] = ACTIONS(1725), + [aux_sym__immediate_decimal_token3] = ACTIONS(1727), + [aux_sym__immediate_decimal_token4] = ACTIONS(1729), + [aux_sym__immediate_decimal_token5] = ACTIONS(1731), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1603), + [aux_sym__val_number_decimal_token1] = ACTIONS(1593), + [aux_sym__val_number_decimal_token2] = ACTIONS(1593), + [aux_sym__val_number_decimal_token3] = ACTIONS(1593), + [aux_sym__val_number_decimal_token4] = ACTIONS(1593), + [aux_sym__val_number_token1] = ACTIONS(1603), + [aux_sym__val_number_token2] = ACTIONS(1603), + [aux_sym__val_number_token3] = ACTIONS(1603), + [aux_sym__val_number_token4] = ACTIONS(1593), + [aux_sym__val_number_token5] = ACTIONS(1593), + [aux_sym__val_number_token6] = ACTIONS(1593), + [anon_sym_DQUOTE] = ACTIONS(1603), + [sym__str_single_quotes] = ACTIONS(1603), + [sym__str_back_ticks] = ACTIONS(1603), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1603), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1603), }, [351] = { - [sym_cell_path] = STATE(494), - [sym_path] = STATE(418), [sym_comment] = STATE(351), - [aux_sym_cell_path_repeat1] = STATE(376), - [anon_sym_export] = ACTIONS(961), - [anon_sym_alias] = ACTIONS(961), - [anon_sym_let] = ACTIONS(961), - [anon_sym_let_DASHenv] = ACTIONS(961), - [anon_sym_mut] = ACTIONS(961), - [anon_sym_const] = ACTIONS(961), - [aux_sym_cmd_identifier_token1] = ACTIONS(961), - [aux_sym_cmd_identifier_token2] = ACTIONS(961), - [aux_sym_cmd_identifier_token3] = ACTIONS(961), - [aux_sym_cmd_identifier_token4] = ACTIONS(961), - [aux_sym_cmd_identifier_token5] = ACTIONS(961), - [aux_sym_cmd_identifier_token6] = ACTIONS(961), - [aux_sym_cmd_identifier_token7] = ACTIONS(961), - [aux_sym_cmd_identifier_token8] = ACTIONS(961), - [aux_sym_cmd_identifier_token9] = ACTIONS(961), - [aux_sym_cmd_identifier_token10] = ACTIONS(961), - [aux_sym_cmd_identifier_token11] = ACTIONS(961), - [aux_sym_cmd_identifier_token12] = ACTIONS(961), - [aux_sym_cmd_identifier_token13] = ACTIONS(961), - [aux_sym_cmd_identifier_token14] = ACTIONS(961), - [aux_sym_cmd_identifier_token15] = ACTIONS(961), - [aux_sym_cmd_identifier_token16] = ACTIONS(961), - [aux_sym_cmd_identifier_token17] = ACTIONS(961), - [aux_sym_cmd_identifier_token18] = ACTIONS(961), - [aux_sym_cmd_identifier_token19] = ACTIONS(961), - [aux_sym_cmd_identifier_token20] = ACTIONS(961), - [aux_sym_cmd_identifier_token21] = ACTIONS(961), - [aux_sym_cmd_identifier_token22] = ACTIONS(961), - [aux_sym_cmd_identifier_token23] = ACTIONS(961), - [aux_sym_cmd_identifier_token24] = ACTIONS(961), - [aux_sym_cmd_identifier_token25] = ACTIONS(961), - [aux_sym_cmd_identifier_token26] = ACTIONS(961), - [aux_sym_cmd_identifier_token27] = ACTIONS(961), - [aux_sym_cmd_identifier_token28] = ACTIONS(961), - [aux_sym_cmd_identifier_token29] = ACTIONS(961), - [aux_sym_cmd_identifier_token30] = ACTIONS(961), - [aux_sym_cmd_identifier_token31] = ACTIONS(961), - [aux_sym_cmd_identifier_token32] = ACTIONS(961), - [aux_sym_cmd_identifier_token33] = ACTIONS(961), - [aux_sym_cmd_identifier_token34] = ACTIONS(961), - [aux_sym_cmd_identifier_token35] = ACTIONS(961), - [aux_sym_cmd_identifier_token36] = ACTIONS(961), - [aux_sym_cmd_identifier_token37] = ACTIONS(961), - [aux_sym_cmd_identifier_token38] = ACTIONS(961), - [aux_sym_cmd_identifier_token39] = ACTIONS(961), - [aux_sym_cmd_identifier_token40] = ACTIONS(961), - [anon_sym_def] = ACTIONS(961), - [anon_sym_export_DASHenv] = ACTIONS(961), - [anon_sym_extern] = ACTIONS(961), - [anon_sym_module] = ACTIONS(961), - [anon_sym_use] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_DOLLAR] = ACTIONS(961), - [anon_sym_error] = ACTIONS(961), - [anon_sym_DASH2] = ACTIONS(961), - [anon_sym_break] = ACTIONS(961), - [anon_sym_continue] = ACTIONS(961), - [anon_sym_for] = ACTIONS(961), - [anon_sym_in2] = ACTIONS(961), - [anon_sym_loop] = ACTIONS(961), - [anon_sym_make] = ACTIONS(961), - [anon_sym_while] = ACTIONS(961), - [anon_sym_do] = ACTIONS(961), - [anon_sym_if] = ACTIONS(961), - [anon_sym_else] = ACTIONS(961), - [anon_sym_match] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(961), - [anon_sym_try] = ACTIONS(961), - [anon_sym_catch] = ACTIONS(961), - [anon_sym_return] = ACTIONS(961), - [anon_sym_source] = ACTIONS(961), - [anon_sym_source_DASHenv] = ACTIONS(961), - [anon_sym_register] = ACTIONS(961), - [anon_sym_hide] = ACTIONS(961), - [anon_sym_hide_DASHenv] = ACTIONS(961), - [anon_sym_overlay] = ACTIONS(961), - [anon_sym_as] = ACTIONS(961), - [anon_sym_PLUS2] = ACTIONS(961), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(961), - [anon_sym_DOT_DOT2] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), - [anon_sym_DOT_DOT_LT2] = ACTIONS(963), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(961), - [aux_sym__val_number_decimal_token1] = ACTIONS(961), - [aux_sym__val_number_decimal_token2] = ACTIONS(961), - [aux_sym__val_number_decimal_token3] = ACTIONS(961), - [aux_sym__val_number_decimal_token4] = ACTIONS(961), - [aux_sym__val_number_token1] = ACTIONS(961), - [aux_sym__val_number_token2] = ACTIONS(961), - [aux_sym__val_number_token3] = ACTIONS(961), - [aux_sym__val_number_token4] = ACTIONS(961), - [aux_sym__val_number_token5] = ACTIONS(961), - [aux_sym__val_number_token6] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(961), - [sym__str_single_quotes] = ACTIONS(961), - [sym__str_back_ticks] = ACTIONS(961), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(961), - [sym__entry_separator] = ACTIONS(963), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(963), + [anon_sym_export] = ACTIONS(1573), + [anon_sym_alias] = ACTIONS(1573), + [anon_sym_let] = ACTIONS(1573), + [anon_sym_let_DASHenv] = ACTIONS(1573), + [anon_sym_mut] = ACTIONS(1573), + [anon_sym_const] = ACTIONS(1573), + [aux_sym_cmd_identifier_token1] = ACTIONS(1573), + [aux_sym_cmd_identifier_token2] = ACTIONS(1575), + [aux_sym_cmd_identifier_token3] = ACTIONS(1575), + [aux_sym_cmd_identifier_token4] = ACTIONS(1575), + [aux_sym_cmd_identifier_token5] = ACTIONS(1575), + [aux_sym_cmd_identifier_token6] = ACTIONS(1575), + [aux_sym_cmd_identifier_token7] = ACTIONS(1575), + [aux_sym_cmd_identifier_token8] = ACTIONS(1573), + [aux_sym_cmd_identifier_token9] = ACTIONS(1573), + [aux_sym_cmd_identifier_token10] = ACTIONS(1575), + [aux_sym_cmd_identifier_token11] = ACTIONS(1575), + [aux_sym_cmd_identifier_token12] = ACTIONS(1573), + [aux_sym_cmd_identifier_token13] = ACTIONS(1573), + [aux_sym_cmd_identifier_token14] = ACTIONS(1573), + [aux_sym_cmd_identifier_token15] = ACTIONS(1573), + [aux_sym_cmd_identifier_token16] = ACTIONS(1575), + [aux_sym_cmd_identifier_token17] = ACTIONS(1575), + [aux_sym_cmd_identifier_token18] = ACTIONS(1575), + [aux_sym_cmd_identifier_token19] = ACTIONS(1575), + [aux_sym_cmd_identifier_token20] = ACTIONS(1575), + [aux_sym_cmd_identifier_token21] = ACTIONS(1575), + [aux_sym_cmd_identifier_token22] = ACTIONS(1575), + [aux_sym_cmd_identifier_token23] = ACTIONS(1575), + [aux_sym_cmd_identifier_token24] = ACTIONS(1575), + [aux_sym_cmd_identifier_token25] = ACTIONS(1575), + [aux_sym_cmd_identifier_token26] = ACTIONS(1575), + [aux_sym_cmd_identifier_token27] = ACTIONS(1575), + [aux_sym_cmd_identifier_token28] = ACTIONS(1575), + [aux_sym_cmd_identifier_token29] = ACTIONS(1575), + [aux_sym_cmd_identifier_token30] = ACTIONS(1575), + [aux_sym_cmd_identifier_token31] = ACTIONS(1575), + [aux_sym_cmd_identifier_token32] = ACTIONS(1575), + [aux_sym_cmd_identifier_token33] = ACTIONS(1575), + [aux_sym_cmd_identifier_token34] = ACTIONS(1573), + [aux_sym_cmd_identifier_token35] = ACTIONS(1575), + [aux_sym_cmd_identifier_token36] = ACTIONS(1575), + [aux_sym_cmd_identifier_token37] = ACTIONS(1575), + [aux_sym_cmd_identifier_token38] = ACTIONS(1573), + [aux_sym_cmd_identifier_token39] = ACTIONS(1575), + [aux_sym_cmd_identifier_token40] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(1573), + [anon_sym_export_DASHenv] = ACTIONS(1573), + [anon_sym_extern] = ACTIONS(1573), + [anon_sym_module] = ACTIONS(1573), + [anon_sym_use] = ACTIONS(1573), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_DOLLAR] = ACTIONS(1575), + [anon_sym_error] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_loop] = ACTIONS(1573), + [anon_sym_make] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_else] = ACTIONS(1573), + [anon_sym_match] = ACTIONS(1573), + [anon_sym_RBRACE] = ACTIONS(1575), + [anon_sym_try] = ACTIONS(1573), + [anon_sym_catch] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_source] = ACTIONS(1573), + [anon_sym_source_DASHenv] = ACTIONS(1573), + [anon_sym_register] = ACTIONS(1573), + [anon_sym_hide] = ACTIONS(1573), + [anon_sym_hide_DASHenv] = ACTIONS(1573), + [anon_sym_overlay] = ACTIONS(1573), + [anon_sym_as] = ACTIONS(1573), + [anon_sym_LPAREN2] = ACTIONS(1575), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1575), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1575), + [aux_sym__val_number_decimal_token1] = ACTIONS(1573), + [aux_sym__val_number_decimal_token2] = ACTIONS(1575), + [aux_sym__val_number_decimal_token3] = ACTIONS(1575), + [aux_sym__val_number_decimal_token4] = ACTIONS(1575), + [aux_sym__val_number_token1] = ACTIONS(1575), + [aux_sym__val_number_token2] = ACTIONS(1575), + [aux_sym__val_number_token3] = ACTIONS(1575), + [aux_sym__val_number_token4] = ACTIONS(1573), + [aux_sym__val_number_token5] = ACTIONS(1573), + [aux_sym__val_number_token6] = ACTIONS(1573), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1573), + [anon_sym_DQUOTE] = ACTIONS(1575), + [sym__str_single_quotes] = ACTIONS(1575), + [sym__str_back_ticks] = ACTIONS(1575), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1575), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1573), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1575), }, [352] = { + [sym_cell_path] = STATE(454), + [sym_path] = STATE(442), [sym_comment] = STATE(352), - [anon_sym_export] = ACTIONS(1607), - [anon_sym_alias] = ACTIONS(1607), - [anon_sym_let] = ACTIONS(1607), - [anon_sym_let_DASHenv] = ACTIONS(1607), - [anon_sym_mut] = ACTIONS(1607), - [anon_sym_const] = ACTIONS(1607), - [aux_sym_cmd_identifier_token1] = ACTIONS(1607), - [aux_sym_cmd_identifier_token2] = ACTIONS(1607), - [aux_sym_cmd_identifier_token3] = ACTIONS(1607), - [aux_sym_cmd_identifier_token4] = ACTIONS(1607), - [aux_sym_cmd_identifier_token5] = ACTIONS(1607), - [aux_sym_cmd_identifier_token6] = ACTIONS(1607), - [aux_sym_cmd_identifier_token7] = ACTIONS(1607), - [aux_sym_cmd_identifier_token8] = ACTIONS(1607), - [aux_sym_cmd_identifier_token9] = ACTIONS(1607), - [aux_sym_cmd_identifier_token10] = ACTIONS(1607), - [aux_sym_cmd_identifier_token11] = ACTIONS(1607), - [aux_sym_cmd_identifier_token12] = ACTIONS(1607), - [aux_sym_cmd_identifier_token13] = ACTIONS(1607), - [aux_sym_cmd_identifier_token14] = ACTIONS(1607), - [aux_sym_cmd_identifier_token15] = ACTIONS(1607), - [aux_sym_cmd_identifier_token16] = ACTIONS(1607), - [aux_sym_cmd_identifier_token17] = ACTIONS(1607), - [aux_sym_cmd_identifier_token18] = ACTIONS(1607), - [aux_sym_cmd_identifier_token19] = ACTIONS(1607), - [aux_sym_cmd_identifier_token20] = ACTIONS(1607), - [aux_sym_cmd_identifier_token21] = ACTIONS(1607), - [aux_sym_cmd_identifier_token22] = ACTIONS(1607), - [aux_sym_cmd_identifier_token23] = ACTIONS(1607), - [aux_sym_cmd_identifier_token24] = ACTIONS(1607), - [aux_sym_cmd_identifier_token25] = ACTIONS(1607), - [aux_sym_cmd_identifier_token26] = ACTIONS(1607), - [aux_sym_cmd_identifier_token27] = ACTIONS(1607), - [aux_sym_cmd_identifier_token28] = ACTIONS(1607), - [aux_sym_cmd_identifier_token29] = ACTIONS(1607), - [aux_sym_cmd_identifier_token30] = ACTIONS(1607), - [aux_sym_cmd_identifier_token31] = ACTIONS(1607), - [aux_sym_cmd_identifier_token32] = ACTIONS(1607), - [aux_sym_cmd_identifier_token33] = ACTIONS(1607), - [aux_sym_cmd_identifier_token34] = ACTIONS(1607), - [aux_sym_cmd_identifier_token35] = ACTIONS(1607), - [aux_sym_cmd_identifier_token36] = ACTIONS(1607), - [aux_sym_cmd_identifier_token37] = ACTIONS(1607), - [aux_sym_cmd_identifier_token38] = ACTIONS(1607), - [aux_sym_cmd_identifier_token39] = ACTIONS(1607), - [aux_sym_cmd_identifier_token40] = ACTIONS(1607), - [anon_sym_def] = ACTIONS(1607), - [anon_sym_export_DASHenv] = ACTIONS(1607), - [anon_sym_extern] = ACTIONS(1607), - [anon_sym_module] = ACTIONS(1607), - [anon_sym_use] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_DOLLAR] = ACTIONS(1607), - [anon_sym_error] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_break] = ACTIONS(1607), - [anon_sym_continue] = ACTIONS(1607), - [anon_sym_for] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_loop] = ACTIONS(1607), - [anon_sym_make] = ACTIONS(1607), - [anon_sym_while] = ACTIONS(1607), - [anon_sym_do] = ACTIONS(1607), - [anon_sym_if] = ACTIONS(1607), - [anon_sym_else] = ACTIONS(1607), - [anon_sym_match] = ACTIONS(1607), - [anon_sym_RBRACE] = ACTIONS(1607), - [anon_sym_try] = ACTIONS(1607), - [anon_sym_catch] = ACTIONS(1607), - [anon_sym_return] = ACTIONS(1607), - [anon_sym_source] = ACTIONS(1607), - [anon_sym_source_DASHenv] = ACTIONS(1607), - [anon_sym_register] = ACTIONS(1607), - [anon_sym_hide] = ACTIONS(1607), - [anon_sym_hide_DASHenv] = ACTIONS(1607), - [anon_sym_overlay] = ACTIONS(1607), - [anon_sym_as] = ACTIONS(1607), - [anon_sym_LPAREN2] = ACTIONS(1609), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1607), - [aux_sym__val_number_decimal_token1] = ACTIONS(1607), - [aux_sym__val_number_decimal_token2] = ACTIONS(1607), - [aux_sym__val_number_decimal_token3] = ACTIONS(1607), - [aux_sym__val_number_decimal_token4] = ACTIONS(1607), - [aux_sym__val_number_token1] = ACTIONS(1607), - [aux_sym__val_number_token2] = ACTIONS(1607), - [aux_sym__val_number_token3] = ACTIONS(1607), - [aux_sym__val_number_token4] = ACTIONS(1607), - [aux_sym__val_number_token5] = ACTIONS(1607), - [aux_sym__val_number_token6] = ACTIONS(1607), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1607), - [sym__str_single_quotes] = ACTIONS(1607), - [sym__str_back_ticks] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1607), - [sym__entry_separator] = ACTIONS(1609), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1607), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1609), - }, - [353] = { - [sym_comment] = STATE(353), - [anon_sym_export] = ACTIONS(1621), - [anon_sym_alias] = ACTIONS(1621), - [anon_sym_let] = ACTIONS(1621), - [anon_sym_let_DASHenv] = ACTIONS(1621), - [anon_sym_mut] = ACTIONS(1621), - [anon_sym_const] = ACTIONS(1621), - [aux_sym_cmd_identifier_token1] = ACTIONS(1621), - [aux_sym_cmd_identifier_token2] = ACTIONS(1621), - [aux_sym_cmd_identifier_token3] = ACTIONS(1621), - [aux_sym_cmd_identifier_token4] = ACTIONS(1621), - [aux_sym_cmd_identifier_token5] = ACTIONS(1621), - [aux_sym_cmd_identifier_token6] = ACTIONS(1621), - [aux_sym_cmd_identifier_token7] = ACTIONS(1621), - [aux_sym_cmd_identifier_token8] = ACTIONS(1621), - [aux_sym_cmd_identifier_token9] = ACTIONS(1621), - [aux_sym_cmd_identifier_token10] = ACTIONS(1621), - [aux_sym_cmd_identifier_token11] = ACTIONS(1621), - [aux_sym_cmd_identifier_token12] = ACTIONS(1621), - [aux_sym_cmd_identifier_token13] = ACTIONS(1621), - [aux_sym_cmd_identifier_token14] = ACTIONS(1621), - [aux_sym_cmd_identifier_token15] = ACTIONS(1621), - [aux_sym_cmd_identifier_token16] = ACTIONS(1621), - [aux_sym_cmd_identifier_token17] = ACTIONS(1621), - [aux_sym_cmd_identifier_token18] = ACTIONS(1621), - [aux_sym_cmd_identifier_token19] = ACTIONS(1621), - [aux_sym_cmd_identifier_token20] = ACTIONS(1621), - [aux_sym_cmd_identifier_token21] = ACTIONS(1621), - [aux_sym_cmd_identifier_token22] = ACTIONS(1621), - [aux_sym_cmd_identifier_token23] = ACTIONS(1621), - [aux_sym_cmd_identifier_token24] = ACTIONS(1621), - [aux_sym_cmd_identifier_token25] = ACTIONS(1621), - [aux_sym_cmd_identifier_token26] = ACTIONS(1621), - [aux_sym_cmd_identifier_token27] = ACTIONS(1621), - [aux_sym_cmd_identifier_token28] = ACTIONS(1621), - [aux_sym_cmd_identifier_token29] = ACTIONS(1621), - [aux_sym_cmd_identifier_token30] = ACTIONS(1621), - [aux_sym_cmd_identifier_token31] = ACTIONS(1621), - [aux_sym_cmd_identifier_token32] = ACTIONS(1621), - [aux_sym_cmd_identifier_token33] = ACTIONS(1621), - [aux_sym_cmd_identifier_token34] = ACTIONS(1621), - [aux_sym_cmd_identifier_token35] = ACTIONS(1621), - [aux_sym_cmd_identifier_token36] = ACTIONS(1621), - [aux_sym_cmd_identifier_token37] = ACTIONS(1621), - [aux_sym_cmd_identifier_token38] = ACTIONS(1621), - [aux_sym_cmd_identifier_token39] = ACTIONS(1621), - [aux_sym_cmd_identifier_token40] = ACTIONS(1621), - [anon_sym_def] = ACTIONS(1621), - [anon_sym_export_DASHenv] = ACTIONS(1621), - [anon_sym_extern] = ACTIONS(1621), - [anon_sym_module] = ACTIONS(1621), - [anon_sym_use] = ACTIONS(1621), - [anon_sym_LPAREN] = ACTIONS(1621), - [anon_sym_DOLLAR] = ACTIONS(1621), - [anon_sym_error] = ACTIONS(1621), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_break] = ACTIONS(1621), - [anon_sym_continue] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1621), - [anon_sym_in2] = ACTIONS(1621), - [anon_sym_loop] = ACTIONS(1621), - [anon_sym_make] = ACTIONS(1621), - [anon_sym_while] = ACTIONS(1621), - [anon_sym_do] = ACTIONS(1621), - [anon_sym_if] = ACTIONS(1621), - [anon_sym_else] = ACTIONS(1621), - [anon_sym_match] = ACTIONS(1621), - [anon_sym_RBRACE] = ACTIONS(1621), - [anon_sym_try] = ACTIONS(1621), - [anon_sym_catch] = ACTIONS(1621), - [anon_sym_return] = ACTIONS(1621), - [anon_sym_source] = ACTIONS(1621), - [anon_sym_source_DASHenv] = ACTIONS(1621), - [anon_sym_register] = ACTIONS(1621), - [anon_sym_hide] = ACTIONS(1621), - [anon_sym_hide_DASHenv] = ACTIONS(1621), - [anon_sym_overlay] = ACTIONS(1621), - [anon_sym_as] = ACTIONS(1621), - [anon_sym_LPAREN2] = ACTIONS(1623), - [anon_sym_PLUS2] = ACTIONS(1621), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1621), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1621), - [aux_sym__val_number_decimal_token1] = ACTIONS(1621), - [aux_sym__val_number_decimal_token2] = ACTIONS(1621), - [aux_sym__val_number_decimal_token3] = ACTIONS(1621), - [aux_sym__val_number_decimal_token4] = ACTIONS(1621), - [aux_sym__val_number_token1] = ACTIONS(1621), - [aux_sym__val_number_token2] = ACTIONS(1621), - [aux_sym__val_number_token3] = ACTIONS(1621), - [aux_sym__val_number_token4] = ACTIONS(1621), - [aux_sym__val_number_token5] = ACTIONS(1621), - [aux_sym__val_number_token6] = ACTIONS(1621), - [sym_filesize_unit] = ACTIONS(1621), - [sym_duration_unit] = ACTIONS(1621), - [anon_sym_DQUOTE] = ACTIONS(1621), - [sym__str_single_quotes] = ACTIONS(1621), - [sym__str_back_ticks] = ACTIONS(1621), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1621), - [sym__entry_separator] = ACTIONS(1623), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1621), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1623), - }, - [354] = { - [sym_cell_path] = STATE(473), - [sym_path] = STATE(418), - [sym_comment] = STATE(354), - [aux_sym_cell_path_repeat1] = STATE(376), - [anon_sym_export] = ACTIONS(1735), - [anon_sym_alias] = ACTIONS(1735), - [anon_sym_let] = ACTIONS(1735), - [anon_sym_let_DASHenv] = ACTIONS(1735), - [anon_sym_mut] = ACTIONS(1735), - [anon_sym_const] = ACTIONS(1735), - [aux_sym_cmd_identifier_token1] = ACTIONS(1735), - [aux_sym_cmd_identifier_token2] = ACTIONS(1735), - [aux_sym_cmd_identifier_token3] = ACTIONS(1735), - [aux_sym_cmd_identifier_token4] = ACTIONS(1735), - [aux_sym_cmd_identifier_token5] = ACTIONS(1735), - [aux_sym_cmd_identifier_token6] = ACTIONS(1735), - [aux_sym_cmd_identifier_token7] = ACTIONS(1735), - [aux_sym_cmd_identifier_token8] = ACTIONS(1735), - [aux_sym_cmd_identifier_token9] = ACTIONS(1735), - [aux_sym_cmd_identifier_token10] = ACTIONS(1735), - [aux_sym_cmd_identifier_token11] = ACTIONS(1735), - [aux_sym_cmd_identifier_token12] = ACTIONS(1735), - [aux_sym_cmd_identifier_token13] = ACTIONS(1735), - [aux_sym_cmd_identifier_token14] = ACTIONS(1735), - [aux_sym_cmd_identifier_token15] = ACTIONS(1735), - [aux_sym_cmd_identifier_token16] = ACTIONS(1735), - [aux_sym_cmd_identifier_token17] = ACTIONS(1735), - [aux_sym_cmd_identifier_token18] = ACTIONS(1735), - [aux_sym_cmd_identifier_token19] = ACTIONS(1735), - [aux_sym_cmd_identifier_token20] = ACTIONS(1735), - [aux_sym_cmd_identifier_token21] = ACTIONS(1735), - [aux_sym_cmd_identifier_token22] = ACTIONS(1735), - [aux_sym_cmd_identifier_token23] = ACTIONS(1735), - [aux_sym_cmd_identifier_token24] = ACTIONS(1735), - [aux_sym_cmd_identifier_token25] = ACTIONS(1735), - [aux_sym_cmd_identifier_token26] = ACTIONS(1735), - [aux_sym_cmd_identifier_token27] = ACTIONS(1735), - [aux_sym_cmd_identifier_token28] = ACTIONS(1735), - [aux_sym_cmd_identifier_token29] = ACTIONS(1735), - [aux_sym_cmd_identifier_token30] = ACTIONS(1735), - [aux_sym_cmd_identifier_token31] = ACTIONS(1735), - [aux_sym_cmd_identifier_token32] = ACTIONS(1735), - [aux_sym_cmd_identifier_token33] = ACTIONS(1735), - [aux_sym_cmd_identifier_token34] = ACTIONS(1735), - [aux_sym_cmd_identifier_token35] = ACTIONS(1735), - [aux_sym_cmd_identifier_token36] = ACTIONS(1735), - [aux_sym_cmd_identifier_token37] = ACTIONS(1735), - [aux_sym_cmd_identifier_token38] = ACTIONS(1735), - [aux_sym_cmd_identifier_token39] = ACTIONS(1735), - [aux_sym_cmd_identifier_token40] = ACTIONS(1735), - [anon_sym_def] = ACTIONS(1735), - [anon_sym_export_DASHenv] = ACTIONS(1735), - [anon_sym_extern] = ACTIONS(1735), - [anon_sym_module] = ACTIONS(1735), - [anon_sym_use] = ACTIONS(1735), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_DOLLAR] = ACTIONS(1735), - [anon_sym_error] = ACTIONS(1735), - [anon_sym_DASH2] = ACTIONS(1735), - [anon_sym_break] = ACTIONS(1735), - [anon_sym_continue] = ACTIONS(1735), - [anon_sym_for] = ACTIONS(1735), - [anon_sym_in2] = ACTIONS(1735), - [anon_sym_loop] = ACTIONS(1735), - [anon_sym_make] = ACTIONS(1735), - [anon_sym_while] = ACTIONS(1735), - [anon_sym_do] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(1735), - [anon_sym_else] = ACTIONS(1735), - [anon_sym_match] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(1735), - [anon_sym_try] = ACTIONS(1735), - [anon_sym_catch] = ACTIONS(1735), - [anon_sym_return] = ACTIONS(1735), - [anon_sym_source] = ACTIONS(1735), - [anon_sym_source_DASHenv] = ACTIONS(1735), - [anon_sym_register] = ACTIONS(1735), - [anon_sym_hide] = ACTIONS(1735), - [anon_sym_hide_DASHenv] = ACTIONS(1735), - [anon_sym_overlay] = ACTIONS(1735), - [anon_sym_as] = ACTIONS(1735), - [anon_sym_PLUS2] = ACTIONS(1735), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1735), - [anon_sym_DOT_DOT2] = ACTIONS(1735), - [anon_sym_DOT] = ACTIONS(1733), + [aux_sym_cell_path_repeat1] = STATE(379), + [anon_sym_export] = ACTIONS(1733), + [anon_sym_alias] = ACTIONS(1733), + [anon_sym_let] = ACTIONS(1733), + [anon_sym_let_DASHenv] = ACTIONS(1733), + [anon_sym_mut] = ACTIONS(1733), + [anon_sym_const] = ACTIONS(1733), + [aux_sym_cmd_identifier_token1] = ACTIONS(1733), + [aux_sym_cmd_identifier_token2] = ACTIONS(1733), + [aux_sym_cmd_identifier_token3] = ACTIONS(1733), + [aux_sym_cmd_identifier_token4] = ACTIONS(1733), + [aux_sym_cmd_identifier_token5] = ACTIONS(1733), + [aux_sym_cmd_identifier_token6] = ACTIONS(1733), + [aux_sym_cmd_identifier_token7] = ACTIONS(1733), + [aux_sym_cmd_identifier_token8] = ACTIONS(1733), + [aux_sym_cmd_identifier_token9] = ACTIONS(1733), + [aux_sym_cmd_identifier_token10] = ACTIONS(1733), + [aux_sym_cmd_identifier_token11] = ACTIONS(1733), + [aux_sym_cmd_identifier_token12] = ACTIONS(1733), + [aux_sym_cmd_identifier_token13] = ACTIONS(1733), + [aux_sym_cmd_identifier_token14] = ACTIONS(1733), + [aux_sym_cmd_identifier_token15] = ACTIONS(1733), + [aux_sym_cmd_identifier_token16] = ACTIONS(1733), + [aux_sym_cmd_identifier_token17] = ACTIONS(1733), + [aux_sym_cmd_identifier_token18] = ACTIONS(1733), + [aux_sym_cmd_identifier_token19] = ACTIONS(1733), + [aux_sym_cmd_identifier_token20] = ACTIONS(1733), + [aux_sym_cmd_identifier_token21] = ACTIONS(1733), + [aux_sym_cmd_identifier_token22] = ACTIONS(1733), + [aux_sym_cmd_identifier_token23] = ACTIONS(1733), + [aux_sym_cmd_identifier_token24] = ACTIONS(1733), + [aux_sym_cmd_identifier_token25] = ACTIONS(1733), + [aux_sym_cmd_identifier_token26] = ACTIONS(1733), + [aux_sym_cmd_identifier_token27] = ACTIONS(1733), + [aux_sym_cmd_identifier_token28] = ACTIONS(1733), + [aux_sym_cmd_identifier_token29] = ACTIONS(1733), + [aux_sym_cmd_identifier_token30] = ACTIONS(1733), + [aux_sym_cmd_identifier_token31] = ACTIONS(1733), + [aux_sym_cmd_identifier_token32] = ACTIONS(1733), + [aux_sym_cmd_identifier_token33] = ACTIONS(1733), + [aux_sym_cmd_identifier_token34] = ACTIONS(1733), + [aux_sym_cmd_identifier_token35] = ACTIONS(1733), + [aux_sym_cmd_identifier_token36] = ACTIONS(1733), + [aux_sym_cmd_identifier_token37] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1733), + [aux_sym_cmd_identifier_token39] = ACTIONS(1733), + [aux_sym_cmd_identifier_token40] = ACTIONS(1733), + [anon_sym_def] = ACTIONS(1733), + [anon_sym_export_DASHenv] = ACTIONS(1733), + [anon_sym_extern] = ACTIONS(1733), + [anon_sym_module] = ACTIONS(1733), + [anon_sym_use] = ACTIONS(1733), + [anon_sym_LPAREN] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1733), + [anon_sym_error] = ACTIONS(1733), + [anon_sym_DASH2] = ACTIONS(1733), + [anon_sym_break] = ACTIONS(1733), + [anon_sym_continue] = ACTIONS(1733), + [anon_sym_for] = ACTIONS(1733), + [anon_sym_in2] = ACTIONS(1733), + [anon_sym_loop] = ACTIONS(1733), + [anon_sym_make] = ACTIONS(1733), + [anon_sym_while] = ACTIONS(1733), + [anon_sym_do] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1733), + [anon_sym_else] = ACTIONS(1733), + [anon_sym_match] = ACTIONS(1733), + [anon_sym_RBRACE] = ACTIONS(1733), + [anon_sym_try] = ACTIONS(1733), + [anon_sym_catch] = ACTIONS(1733), + [anon_sym_return] = ACTIONS(1733), + [anon_sym_source] = ACTIONS(1733), + [anon_sym_source_DASHenv] = ACTIONS(1733), + [anon_sym_register] = ACTIONS(1733), + [anon_sym_hide] = ACTIONS(1733), + [anon_sym_hide_DASHenv] = ACTIONS(1733), + [anon_sym_overlay] = ACTIONS(1733), + [anon_sym_as] = ACTIONS(1733), + [anon_sym_PLUS2] = ACTIONS(1733), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1733), + [anon_sym_DOT_DOT2] = ACTIONS(1733), + [anon_sym_DOT] = ACTIONS(1735), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1735), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), - [aux_sym__val_number_decimal_token2] = ACTIONS(1735), - [aux_sym__val_number_decimal_token3] = ACTIONS(1735), - [aux_sym__val_number_decimal_token4] = ACTIONS(1735), - [aux_sym__val_number_token1] = ACTIONS(1735), - [aux_sym__val_number_token2] = ACTIONS(1735), - [aux_sym__val_number_token3] = ACTIONS(1735), - [aux_sym__val_number_token4] = ACTIONS(1735), - [aux_sym__val_number_token5] = ACTIONS(1735), - [aux_sym__val_number_token6] = ACTIONS(1735), - [anon_sym_DQUOTE] = ACTIONS(1735), - [sym__str_single_quotes] = ACTIONS(1735), - [sym__str_back_ticks] = ACTIONS(1735), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1733), + [aux_sym__val_number_decimal_token1] = ACTIONS(1733), + [aux_sym__val_number_decimal_token2] = ACTIONS(1733), + [aux_sym__val_number_decimal_token3] = ACTIONS(1733), + [aux_sym__val_number_decimal_token4] = ACTIONS(1733), + [aux_sym__val_number_token1] = ACTIONS(1733), + [aux_sym__val_number_token2] = ACTIONS(1733), + [aux_sym__val_number_token3] = ACTIONS(1733), + [aux_sym__val_number_token4] = ACTIONS(1733), + [aux_sym__val_number_token5] = ACTIONS(1733), + [aux_sym__val_number_token6] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(1733), + [sym__str_single_quotes] = ACTIONS(1733), + [sym__str_back_ticks] = ACTIONS(1733), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1733), [sym__entry_separator] = ACTIONS(1737), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1737), }, - [355] = { - [sym_comment] = STATE(355), - [anon_sym_export] = ACTIONS(1673), - [anon_sym_alias] = ACTIONS(1673), - [anon_sym_let] = ACTIONS(1673), - [anon_sym_let_DASHenv] = ACTIONS(1673), - [anon_sym_mut] = ACTIONS(1673), - [anon_sym_const] = ACTIONS(1673), - [aux_sym_cmd_identifier_token1] = ACTIONS(1673), - [aux_sym_cmd_identifier_token2] = ACTIONS(1673), - [aux_sym_cmd_identifier_token3] = ACTIONS(1673), - [aux_sym_cmd_identifier_token4] = ACTIONS(1673), - [aux_sym_cmd_identifier_token5] = ACTIONS(1673), - [aux_sym_cmd_identifier_token6] = ACTIONS(1673), - [aux_sym_cmd_identifier_token7] = ACTIONS(1673), - [aux_sym_cmd_identifier_token8] = ACTIONS(1673), - [aux_sym_cmd_identifier_token9] = ACTIONS(1673), - [aux_sym_cmd_identifier_token10] = ACTIONS(1673), - [aux_sym_cmd_identifier_token11] = ACTIONS(1673), - [aux_sym_cmd_identifier_token12] = ACTIONS(1673), - [aux_sym_cmd_identifier_token13] = ACTIONS(1673), - [aux_sym_cmd_identifier_token14] = ACTIONS(1673), - [aux_sym_cmd_identifier_token15] = ACTIONS(1673), - [aux_sym_cmd_identifier_token16] = ACTIONS(1673), - [aux_sym_cmd_identifier_token17] = ACTIONS(1673), - [aux_sym_cmd_identifier_token18] = ACTIONS(1673), - [aux_sym_cmd_identifier_token19] = ACTIONS(1673), - [aux_sym_cmd_identifier_token20] = ACTIONS(1673), - [aux_sym_cmd_identifier_token21] = ACTIONS(1673), - [aux_sym_cmd_identifier_token22] = ACTIONS(1673), - [aux_sym_cmd_identifier_token23] = ACTIONS(1673), - [aux_sym_cmd_identifier_token24] = ACTIONS(1673), - [aux_sym_cmd_identifier_token25] = ACTIONS(1673), - [aux_sym_cmd_identifier_token26] = ACTIONS(1673), - [aux_sym_cmd_identifier_token27] = ACTIONS(1673), - [aux_sym_cmd_identifier_token28] = ACTIONS(1673), - [aux_sym_cmd_identifier_token29] = ACTIONS(1673), - [aux_sym_cmd_identifier_token30] = ACTIONS(1673), - [aux_sym_cmd_identifier_token31] = ACTIONS(1673), - [aux_sym_cmd_identifier_token32] = ACTIONS(1673), - [aux_sym_cmd_identifier_token33] = ACTIONS(1673), - [aux_sym_cmd_identifier_token34] = ACTIONS(1673), - [aux_sym_cmd_identifier_token35] = ACTIONS(1673), - [aux_sym_cmd_identifier_token36] = ACTIONS(1673), - [aux_sym_cmd_identifier_token37] = ACTIONS(1673), - [aux_sym_cmd_identifier_token38] = ACTIONS(1673), - [aux_sym_cmd_identifier_token39] = ACTIONS(1673), - [aux_sym_cmd_identifier_token40] = ACTIONS(1673), - [anon_sym_def] = ACTIONS(1673), - [anon_sym_export_DASHenv] = ACTIONS(1673), - [anon_sym_extern] = ACTIONS(1673), - [anon_sym_module] = ACTIONS(1673), - [anon_sym_use] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_DOLLAR] = ACTIONS(1673), - [anon_sym_error] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_break] = ACTIONS(1673), - [anon_sym_continue] = ACTIONS(1673), - [anon_sym_for] = ACTIONS(1673), - [anon_sym_in2] = ACTIONS(1673), - [anon_sym_loop] = ACTIONS(1673), - [anon_sym_make] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1673), - [anon_sym_do] = ACTIONS(1673), - [anon_sym_if] = ACTIONS(1673), - [anon_sym_else] = ACTIONS(1673), - [anon_sym_match] = ACTIONS(1673), - [anon_sym_RBRACE] = ACTIONS(1673), - [anon_sym_try] = ACTIONS(1673), - [anon_sym_catch] = ACTIONS(1673), - [anon_sym_return] = ACTIONS(1673), - [anon_sym_source] = ACTIONS(1673), - [anon_sym_source_DASHenv] = ACTIONS(1673), - [anon_sym_register] = ACTIONS(1673), - [anon_sym_hide] = ACTIONS(1673), - [anon_sym_hide_DASHenv] = ACTIONS(1673), - [anon_sym_overlay] = ACTIONS(1673), - [anon_sym_as] = ACTIONS(1673), - [anon_sym_LPAREN2] = ACTIONS(1675), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1673), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1673), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1673), - [aux_sym__val_number_decimal_token3] = ACTIONS(1673), - [aux_sym__val_number_decimal_token4] = ACTIONS(1673), - [aux_sym__val_number_token1] = ACTIONS(1673), - [aux_sym__val_number_token2] = ACTIONS(1673), - [aux_sym__val_number_token3] = ACTIONS(1673), - [aux_sym__val_number_token4] = ACTIONS(1673), - [aux_sym__val_number_token5] = ACTIONS(1673), - [aux_sym__val_number_token6] = ACTIONS(1673), - [sym_filesize_unit] = ACTIONS(1673), - [sym_duration_unit] = ACTIONS(1673), - [anon_sym_DQUOTE] = ACTIONS(1673), - [sym__str_single_quotes] = ACTIONS(1673), - [sym__str_back_ticks] = ACTIONS(1673), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1673), - [sym__entry_separator] = ACTIONS(1675), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1673), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1675), - }, - [356] = { - [sym_comment] = STATE(356), + [353] = { + [sym_comment] = STATE(353), [anon_sym_export] = ACTIONS(1739), [anon_sym_alias] = ACTIONS(1739), [anon_sym_let] = ACTIONS(1739), @@ -114805,867 +114806,867 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1741), }, + [354] = { + [sym_cell_path] = STATE(479), + [sym_path] = STATE(442), + [sym_comment] = STATE(354), + [aux_sym_cell_path_repeat1] = STATE(379), + [anon_sym_export] = ACTIONS(1747), + [anon_sym_alias] = ACTIONS(1747), + [anon_sym_let] = ACTIONS(1747), + [anon_sym_let_DASHenv] = ACTIONS(1747), + [anon_sym_mut] = ACTIONS(1747), + [anon_sym_const] = ACTIONS(1747), + [aux_sym_cmd_identifier_token1] = ACTIONS(1747), + [aux_sym_cmd_identifier_token2] = ACTIONS(1747), + [aux_sym_cmd_identifier_token3] = ACTIONS(1747), + [aux_sym_cmd_identifier_token4] = ACTIONS(1747), + [aux_sym_cmd_identifier_token5] = ACTIONS(1747), + [aux_sym_cmd_identifier_token6] = ACTIONS(1747), + [aux_sym_cmd_identifier_token7] = ACTIONS(1747), + [aux_sym_cmd_identifier_token8] = ACTIONS(1747), + [aux_sym_cmd_identifier_token9] = ACTIONS(1747), + [aux_sym_cmd_identifier_token10] = ACTIONS(1747), + [aux_sym_cmd_identifier_token11] = ACTIONS(1747), + [aux_sym_cmd_identifier_token12] = ACTIONS(1747), + [aux_sym_cmd_identifier_token13] = ACTIONS(1747), + [aux_sym_cmd_identifier_token14] = ACTIONS(1747), + [aux_sym_cmd_identifier_token15] = ACTIONS(1747), + [aux_sym_cmd_identifier_token16] = ACTIONS(1747), + [aux_sym_cmd_identifier_token17] = ACTIONS(1747), + [aux_sym_cmd_identifier_token18] = ACTIONS(1747), + [aux_sym_cmd_identifier_token19] = ACTIONS(1747), + [aux_sym_cmd_identifier_token20] = ACTIONS(1747), + [aux_sym_cmd_identifier_token21] = ACTIONS(1747), + [aux_sym_cmd_identifier_token22] = ACTIONS(1747), + [aux_sym_cmd_identifier_token23] = ACTIONS(1747), + [aux_sym_cmd_identifier_token24] = ACTIONS(1747), + [aux_sym_cmd_identifier_token25] = ACTIONS(1747), + [aux_sym_cmd_identifier_token26] = ACTIONS(1747), + [aux_sym_cmd_identifier_token27] = ACTIONS(1747), + [aux_sym_cmd_identifier_token28] = ACTIONS(1747), + [aux_sym_cmd_identifier_token29] = ACTIONS(1747), + [aux_sym_cmd_identifier_token30] = ACTIONS(1747), + [aux_sym_cmd_identifier_token31] = ACTIONS(1747), + [aux_sym_cmd_identifier_token32] = ACTIONS(1747), + [aux_sym_cmd_identifier_token33] = ACTIONS(1747), + [aux_sym_cmd_identifier_token34] = ACTIONS(1747), + [aux_sym_cmd_identifier_token35] = ACTIONS(1747), + [aux_sym_cmd_identifier_token36] = ACTIONS(1747), + [aux_sym_cmd_identifier_token37] = ACTIONS(1747), + [aux_sym_cmd_identifier_token38] = ACTIONS(1747), + [aux_sym_cmd_identifier_token39] = ACTIONS(1747), + [aux_sym_cmd_identifier_token40] = ACTIONS(1747), + [anon_sym_def] = ACTIONS(1747), + [anon_sym_export_DASHenv] = ACTIONS(1747), + [anon_sym_extern] = ACTIONS(1747), + [anon_sym_module] = ACTIONS(1747), + [anon_sym_use] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1747), + [anon_sym_DOLLAR] = ACTIONS(1747), + [anon_sym_error] = ACTIONS(1747), + [anon_sym_DASH2] = ACTIONS(1747), + [anon_sym_break] = ACTIONS(1747), + [anon_sym_continue] = ACTIONS(1747), + [anon_sym_for] = ACTIONS(1747), + [anon_sym_in2] = ACTIONS(1747), + [anon_sym_loop] = ACTIONS(1747), + [anon_sym_make] = ACTIONS(1747), + [anon_sym_while] = ACTIONS(1747), + [anon_sym_do] = ACTIONS(1747), + [anon_sym_if] = ACTIONS(1747), + [anon_sym_else] = ACTIONS(1747), + [anon_sym_match] = ACTIONS(1747), + [anon_sym_RBRACE] = ACTIONS(1747), + [anon_sym_try] = ACTIONS(1747), + [anon_sym_catch] = ACTIONS(1747), + [anon_sym_return] = ACTIONS(1747), + [anon_sym_source] = ACTIONS(1747), + [anon_sym_source_DASHenv] = ACTIONS(1747), + [anon_sym_register] = ACTIONS(1747), + [anon_sym_hide] = ACTIONS(1747), + [anon_sym_hide_DASHenv] = ACTIONS(1747), + [anon_sym_overlay] = ACTIONS(1747), + [anon_sym_as] = ACTIONS(1747), + [anon_sym_PLUS2] = ACTIONS(1747), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1747), + [anon_sym_DOT_DOT2] = ACTIONS(1747), + [anon_sym_DOT] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1747), + [aux_sym__val_number_decimal_token1] = ACTIONS(1747), + [aux_sym__val_number_decimal_token2] = ACTIONS(1747), + [aux_sym__val_number_decimal_token3] = ACTIONS(1747), + [aux_sym__val_number_decimal_token4] = ACTIONS(1747), + [aux_sym__val_number_token1] = ACTIONS(1747), + [aux_sym__val_number_token2] = ACTIONS(1747), + [aux_sym__val_number_token3] = ACTIONS(1747), + [aux_sym__val_number_token4] = ACTIONS(1747), + [aux_sym__val_number_token5] = ACTIONS(1747), + [aux_sym__val_number_token6] = ACTIONS(1747), + [anon_sym_DQUOTE] = ACTIONS(1747), + [sym__str_single_quotes] = ACTIONS(1747), + [sym__str_back_ticks] = ACTIONS(1747), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1747), + [sym__entry_separator] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1749), + }, + [355] = { + [sym_comment] = STATE(355), + [anon_sym_export] = ACTIONS(1681), + [anon_sym_alias] = ACTIONS(1681), + [anon_sym_let] = ACTIONS(1681), + [anon_sym_let_DASHenv] = ACTIONS(1681), + [anon_sym_mut] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1681), + [aux_sym_cmd_identifier_token1] = ACTIONS(1681), + [aux_sym_cmd_identifier_token2] = ACTIONS(1683), + [aux_sym_cmd_identifier_token3] = ACTIONS(1683), + [aux_sym_cmd_identifier_token4] = ACTIONS(1683), + [aux_sym_cmd_identifier_token5] = ACTIONS(1683), + [aux_sym_cmd_identifier_token6] = ACTIONS(1683), + [aux_sym_cmd_identifier_token7] = ACTIONS(1683), + [aux_sym_cmd_identifier_token8] = ACTIONS(1681), + [aux_sym_cmd_identifier_token9] = ACTIONS(1681), + [aux_sym_cmd_identifier_token10] = ACTIONS(1683), + [aux_sym_cmd_identifier_token11] = ACTIONS(1683), + [aux_sym_cmd_identifier_token12] = ACTIONS(1681), + [aux_sym_cmd_identifier_token13] = ACTIONS(1681), + [aux_sym_cmd_identifier_token14] = ACTIONS(1681), + [aux_sym_cmd_identifier_token15] = ACTIONS(1681), + [aux_sym_cmd_identifier_token16] = ACTIONS(1683), + [aux_sym_cmd_identifier_token17] = ACTIONS(1683), + [aux_sym_cmd_identifier_token18] = ACTIONS(1683), + [aux_sym_cmd_identifier_token19] = ACTIONS(1683), + [aux_sym_cmd_identifier_token20] = ACTIONS(1683), + [aux_sym_cmd_identifier_token21] = ACTIONS(1683), + [aux_sym_cmd_identifier_token22] = ACTIONS(1683), + [aux_sym_cmd_identifier_token23] = ACTIONS(1683), + [aux_sym_cmd_identifier_token24] = ACTIONS(1683), + [aux_sym_cmd_identifier_token25] = ACTIONS(1683), + [aux_sym_cmd_identifier_token26] = ACTIONS(1683), + [aux_sym_cmd_identifier_token27] = ACTIONS(1683), + [aux_sym_cmd_identifier_token28] = ACTIONS(1683), + [aux_sym_cmd_identifier_token29] = ACTIONS(1683), + [aux_sym_cmd_identifier_token30] = ACTIONS(1683), + [aux_sym_cmd_identifier_token31] = ACTIONS(1683), + [aux_sym_cmd_identifier_token32] = ACTIONS(1683), + [aux_sym_cmd_identifier_token33] = ACTIONS(1683), + [aux_sym_cmd_identifier_token34] = ACTIONS(1681), + [aux_sym_cmd_identifier_token35] = ACTIONS(1683), + [aux_sym_cmd_identifier_token36] = ACTIONS(1683), + [aux_sym_cmd_identifier_token37] = ACTIONS(1683), + [aux_sym_cmd_identifier_token38] = ACTIONS(1681), + [aux_sym_cmd_identifier_token39] = ACTIONS(1683), + [aux_sym_cmd_identifier_token40] = ACTIONS(1683), + [anon_sym_def] = ACTIONS(1681), + [anon_sym_export_DASHenv] = ACTIONS(1681), + [anon_sym_extern] = ACTIONS(1681), + [anon_sym_module] = ACTIONS(1681), + [anon_sym_use] = ACTIONS(1681), + [anon_sym_LPAREN] = ACTIONS(1681), + [anon_sym_DOLLAR] = ACTIONS(1683), + [anon_sym_error] = ACTIONS(1681), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_break] = ACTIONS(1681), + [anon_sym_continue] = ACTIONS(1681), + [anon_sym_for] = ACTIONS(1681), + [anon_sym_in2] = ACTIONS(1681), + [anon_sym_loop] = ACTIONS(1681), + [anon_sym_make] = ACTIONS(1681), + [anon_sym_while] = ACTIONS(1681), + [anon_sym_do] = ACTIONS(1681), + [anon_sym_if] = ACTIONS(1681), + [anon_sym_else] = ACTIONS(1681), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_RBRACE] = ACTIONS(1683), + [anon_sym_try] = ACTIONS(1681), + [anon_sym_catch] = ACTIONS(1681), + [anon_sym_return] = ACTIONS(1681), + [anon_sym_source] = ACTIONS(1681), + [anon_sym_source_DASHenv] = ACTIONS(1681), + [anon_sym_register] = ACTIONS(1681), + [anon_sym_hide] = ACTIONS(1681), + [anon_sym_hide_DASHenv] = ACTIONS(1681), + [anon_sym_overlay] = ACTIONS(1681), + [anon_sym_as] = ACTIONS(1681), + [anon_sym_LPAREN2] = ACTIONS(1683), + [anon_sym_PLUS2] = ACTIONS(1681), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1683), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [aux_sym__immediate_decimal_token2] = ACTIONS(1751), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1683), + [aux_sym__val_number_decimal_token1] = ACTIONS(1681), + [aux_sym__val_number_decimal_token2] = ACTIONS(1683), + [aux_sym__val_number_decimal_token3] = ACTIONS(1683), + [aux_sym__val_number_decimal_token4] = ACTIONS(1683), + [aux_sym__val_number_token1] = ACTIONS(1683), + [aux_sym__val_number_token2] = ACTIONS(1683), + [aux_sym__val_number_token3] = ACTIONS(1683), + [aux_sym__val_number_token4] = ACTIONS(1681), + [aux_sym__val_number_token5] = ACTIONS(1681), + [aux_sym__val_number_token6] = ACTIONS(1681), + [sym_filesize_unit] = ACTIONS(1681), + [sym_duration_unit] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1683), + [sym__str_single_quotes] = ACTIONS(1683), + [sym__str_back_ticks] = ACTIONS(1683), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1683), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1681), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1683), + }, + [356] = { + [sym_comment] = STATE(356), + [anon_sym_export] = ACTIONS(1573), + [anon_sym_alias] = ACTIONS(1573), + [anon_sym_let] = ACTIONS(1573), + [anon_sym_let_DASHenv] = ACTIONS(1573), + [anon_sym_mut] = ACTIONS(1573), + [anon_sym_const] = ACTIONS(1573), + [aux_sym_cmd_identifier_token1] = ACTIONS(1573), + [aux_sym_cmd_identifier_token2] = ACTIONS(1573), + [aux_sym_cmd_identifier_token3] = ACTIONS(1573), + [aux_sym_cmd_identifier_token4] = ACTIONS(1573), + [aux_sym_cmd_identifier_token5] = ACTIONS(1573), + [aux_sym_cmd_identifier_token6] = ACTIONS(1573), + [aux_sym_cmd_identifier_token7] = ACTIONS(1573), + [aux_sym_cmd_identifier_token8] = ACTIONS(1573), + [aux_sym_cmd_identifier_token9] = ACTIONS(1573), + [aux_sym_cmd_identifier_token10] = ACTIONS(1573), + [aux_sym_cmd_identifier_token11] = ACTIONS(1573), + [aux_sym_cmd_identifier_token12] = ACTIONS(1573), + [aux_sym_cmd_identifier_token13] = ACTIONS(1573), + [aux_sym_cmd_identifier_token14] = ACTIONS(1573), + [aux_sym_cmd_identifier_token15] = ACTIONS(1573), + [aux_sym_cmd_identifier_token16] = ACTIONS(1573), + [aux_sym_cmd_identifier_token17] = ACTIONS(1573), + [aux_sym_cmd_identifier_token18] = ACTIONS(1573), + [aux_sym_cmd_identifier_token19] = ACTIONS(1573), + [aux_sym_cmd_identifier_token20] = ACTIONS(1573), + [aux_sym_cmd_identifier_token21] = ACTIONS(1573), + [aux_sym_cmd_identifier_token22] = ACTIONS(1573), + [aux_sym_cmd_identifier_token23] = ACTIONS(1573), + [aux_sym_cmd_identifier_token24] = ACTIONS(1573), + [aux_sym_cmd_identifier_token25] = ACTIONS(1573), + [aux_sym_cmd_identifier_token26] = ACTIONS(1573), + [aux_sym_cmd_identifier_token27] = ACTIONS(1573), + [aux_sym_cmd_identifier_token28] = ACTIONS(1573), + [aux_sym_cmd_identifier_token29] = ACTIONS(1573), + [aux_sym_cmd_identifier_token30] = ACTIONS(1573), + [aux_sym_cmd_identifier_token31] = ACTIONS(1573), + [aux_sym_cmd_identifier_token32] = ACTIONS(1573), + [aux_sym_cmd_identifier_token33] = ACTIONS(1573), + [aux_sym_cmd_identifier_token34] = ACTIONS(1573), + [aux_sym_cmd_identifier_token35] = ACTIONS(1573), + [aux_sym_cmd_identifier_token36] = ACTIONS(1573), + [aux_sym_cmd_identifier_token37] = ACTIONS(1573), + [aux_sym_cmd_identifier_token38] = ACTIONS(1573), + [aux_sym_cmd_identifier_token39] = ACTIONS(1573), + [aux_sym_cmd_identifier_token40] = ACTIONS(1573), + [anon_sym_def] = ACTIONS(1573), + [anon_sym_export_DASHenv] = ACTIONS(1573), + [anon_sym_extern] = ACTIONS(1573), + [anon_sym_module] = ACTIONS(1573), + [anon_sym_use] = ACTIONS(1573), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_DOLLAR] = ACTIONS(1573), + [anon_sym_error] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_loop] = ACTIONS(1573), + [anon_sym_make] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_else] = ACTIONS(1573), + [anon_sym_match] = ACTIONS(1573), + [anon_sym_RBRACE] = ACTIONS(1573), + [anon_sym_try] = ACTIONS(1573), + [anon_sym_catch] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_source] = ACTIONS(1573), + [anon_sym_source_DASHenv] = ACTIONS(1573), + [anon_sym_register] = ACTIONS(1573), + [anon_sym_hide] = ACTIONS(1573), + [anon_sym_hide_DASHenv] = ACTIONS(1573), + [anon_sym_overlay] = ACTIONS(1573), + [anon_sym_as] = ACTIONS(1573), + [anon_sym_LPAREN2] = ACTIONS(1575), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1573), + [aux_sym__val_number_decimal_token1] = ACTIONS(1573), + [aux_sym__val_number_decimal_token2] = ACTIONS(1573), + [aux_sym__val_number_decimal_token3] = ACTIONS(1573), + [aux_sym__val_number_decimal_token4] = ACTIONS(1573), + [aux_sym__val_number_token1] = ACTIONS(1573), + [aux_sym__val_number_token2] = ACTIONS(1573), + [aux_sym__val_number_token3] = ACTIONS(1573), + [aux_sym__val_number_token4] = ACTIONS(1573), + [aux_sym__val_number_token5] = ACTIONS(1573), + [aux_sym__val_number_token6] = ACTIONS(1573), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1573), + [anon_sym_DQUOTE] = ACTIONS(1573), + [sym__str_single_quotes] = ACTIONS(1573), + [sym__str_back_ticks] = ACTIONS(1573), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1573), + [sym__entry_separator] = ACTIONS(1575), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1573), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1575), + }, [357] = { - [sym__expr_parenthesized_immediate] = STATE(703), - [sym__immediate_decimal] = STATE(704), - [sym_val_variable] = STATE(703), + [sym__expr_parenthesized_immediate] = STATE(706), + [sym__immediate_decimal] = STATE(707), + [sym_val_variable] = STATE(706), [sym_comment] = STATE(357), - [anon_sym_export] = ACTIONS(1581), - [anon_sym_alias] = ACTIONS(1581), - [anon_sym_let] = ACTIONS(1581), - [anon_sym_let_DASHenv] = ACTIONS(1581), - [anon_sym_mut] = ACTIONS(1581), - [anon_sym_const] = ACTIONS(1581), - [aux_sym_cmd_identifier_token1] = ACTIONS(1581), - [aux_sym_cmd_identifier_token2] = ACTIONS(1591), - [aux_sym_cmd_identifier_token3] = ACTIONS(1591), - [aux_sym_cmd_identifier_token4] = ACTIONS(1591), - [aux_sym_cmd_identifier_token5] = ACTIONS(1591), - [aux_sym_cmd_identifier_token6] = ACTIONS(1591), - [aux_sym_cmd_identifier_token7] = ACTIONS(1591), - [aux_sym_cmd_identifier_token8] = ACTIONS(1581), - [aux_sym_cmd_identifier_token9] = ACTIONS(1581), - [aux_sym_cmd_identifier_token10] = ACTIONS(1591), - [aux_sym_cmd_identifier_token11] = ACTIONS(1591), - [aux_sym_cmd_identifier_token12] = ACTIONS(1581), - [aux_sym_cmd_identifier_token13] = ACTIONS(1581), - [aux_sym_cmd_identifier_token14] = ACTIONS(1581), - [aux_sym_cmd_identifier_token15] = ACTIONS(1581), - [aux_sym_cmd_identifier_token16] = ACTIONS(1591), - [aux_sym_cmd_identifier_token17] = ACTIONS(1591), - [aux_sym_cmd_identifier_token18] = ACTIONS(1591), - [aux_sym_cmd_identifier_token19] = ACTIONS(1591), - [aux_sym_cmd_identifier_token20] = ACTIONS(1591), - [aux_sym_cmd_identifier_token21] = ACTIONS(1591), - [aux_sym_cmd_identifier_token22] = ACTIONS(1591), - [aux_sym_cmd_identifier_token23] = ACTIONS(1591), - [aux_sym_cmd_identifier_token24] = ACTIONS(1591), - [aux_sym_cmd_identifier_token25] = ACTIONS(1591), - [aux_sym_cmd_identifier_token26] = ACTIONS(1591), - [aux_sym_cmd_identifier_token27] = ACTIONS(1591), - [aux_sym_cmd_identifier_token28] = ACTIONS(1591), - [aux_sym_cmd_identifier_token29] = ACTIONS(1591), - [aux_sym_cmd_identifier_token30] = ACTIONS(1591), - [aux_sym_cmd_identifier_token31] = ACTIONS(1591), - [aux_sym_cmd_identifier_token32] = ACTIONS(1591), - [aux_sym_cmd_identifier_token33] = ACTIONS(1591), - [aux_sym_cmd_identifier_token34] = ACTIONS(1581), - [aux_sym_cmd_identifier_token35] = ACTIONS(1591), - [aux_sym_cmd_identifier_token36] = ACTIONS(1591), - [aux_sym_cmd_identifier_token37] = ACTIONS(1591), - [aux_sym_cmd_identifier_token38] = ACTIONS(1581), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [anon_sym_def] = ACTIONS(1581), - [anon_sym_export_DASHenv] = ACTIONS(1581), - [anon_sym_extern] = ACTIONS(1581), - [anon_sym_module] = ACTIONS(1581), - [anon_sym_use] = ACTIONS(1581), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_DOLLAR] = ACTIONS(1679), - [anon_sym_error] = ACTIONS(1581), - [anon_sym_DASH2] = ACTIONS(1581), - [anon_sym_break] = ACTIONS(1581), - [anon_sym_continue] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_in2] = ACTIONS(1581), - [anon_sym_loop] = ACTIONS(1581), - [anon_sym_make] = ACTIONS(1581), - [anon_sym_while] = ACTIONS(1581), - [anon_sym_do] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_else] = ACTIONS(1581), - [anon_sym_match] = ACTIONS(1581), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_try] = ACTIONS(1581), - [anon_sym_catch] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1581), - [anon_sym_source] = ACTIONS(1581), - [anon_sym_source_DASHenv] = ACTIONS(1581), - [anon_sym_register] = ACTIONS(1581), - [anon_sym_hide] = ACTIONS(1581), - [anon_sym_hide_DASHenv] = ACTIONS(1581), - [anon_sym_overlay] = ACTIONS(1581), - [anon_sym_as] = ACTIONS(1581), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1581), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1591), - [aux_sym__immediate_decimal_token1] = ACTIONS(1747), - [aux_sym__immediate_decimal_token3] = ACTIONS(1749), - [aux_sym__immediate_decimal_token4] = ACTIONS(1751), - [aux_sym__immediate_decimal_token5] = ACTIONS(1753), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1591), - [aux_sym__val_number_decimal_token1] = ACTIONS(1581), - [aux_sym__val_number_decimal_token2] = ACTIONS(1581), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1581), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [aux_sym__val_number_token4] = ACTIONS(1581), - [aux_sym__val_number_token5] = ACTIONS(1581), - [aux_sym__val_number_token6] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1591), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1591), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_alias] = ACTIONS(1593), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_let_DASHenv] = ACTIONS(1593), + [anon_sym_mut] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [aux_sym_cmd_identifier_token1] = ACTIONS(1593), + [aux_sym_cmd_identifier_token2] = ACTIONS(1603), + [aux_sym_cmd_identifier_token3] = ACTIONS(1603), + [aux_sym_cmd_identifier_token4] = ACTIONS(1603), + [aux_sym_cmd_identifier_token5] = ACTIONS(1603), + [aux_sym_cmd_identifier_token6] = ACTIONS(1603), + [aux_sym_cmd_identifier_token7] = ACTIONS(1603), + [aux_sym_cmd_identifier_token8] = ACTIONS(1593), + [aux_sym_cmd_identifier_token9] = ACTIONS(1593), + [aux_sym_cmd_identifier_token10] = ACTIONS(1603), + [aux_sym_cmd_identifier_token11] = ACTIONS(1603), + [aux_sym_cmd_identifier_token12] = ACTIONS(1593), + [aux_sym_cmd_identifier_token13] = ACTIONS(1593), + [aux_sym_cmd_identifier_token14] = ACTIONS(1593), + [aux_sym_cmd_identifier_token15] = ACTIONS(1593), + [aux_sym_cmd_identifier_token16] = ACTIONS(1603), + [aux_sym_cmd_identifier_token17] = ACTIONS(1603), + [aux_sym_cmd_identifier_token18] = ACTIONS(1603), + [aux_sym_cmd_identifier_token19] = ACTIONS(1603), + [aux_sym_cmd_identifier_token20] = ACTIONS(1603), + [aux_sym_cmd_identifier_token21] = ACTIONS(1603), + [aux_sym_cmd_identifier_token22] = ACTIONS(1603), + [aux_sym_cmd_identifier_token23] = ACTIONS(1603), + [aux_sym_cmd_identifier_token24] = ACTIONS(1603), + [aux_sym_cmd_identifier_token25] = ACTIONS(1603), + [aux_sym_cmd_identifier_token26] = ACTIONS(1603), + [aux_sym_cmd_identifier_token27] = ACTIONS(1603), + [aux_sym_cmd_identifier_token28] = ACTIONS(1603), + [aux_sym_cmd_identifier_token29] = ACTIONS(1603), + [aux_sym_cmd_identifier_token30] = ACTIONS(1603), + [aux_sym_cmd_identifier_token31] = ACTIONS(1603), + [aux_sym_cmd_identifier_token32] = ACTIONS(1603), + [aux_sym_cmd_identifier_token33] = ACTIONS(1603), + [aux_sym_cmd_identifier_token34] = ACTIONS(1593), + [aux_sym_cmd_identifier_token35] = ACTIONS(1603), + [aux_sym_cmd_identifier_token36] = ACTIONS(1603), + [aux_sym_cmd_identifier_token37] = ACTIONS(1603), + [aux_sym_cmd_identifier_token38] = ACTIONS(1593), + [aux_sym_cmd_identifier_token39] = ACTIONS(1603), + [aux_sym_cmd_identifier_token40] = ACTIONS(1603), + [anon_sym_def] = ACTIONS(1593), + [anon_sym_export_DASHenv] = ACTIONS(1593), + [anon_sym_extern] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_use] = ACTIONS(1593), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_DOLLAR] = ACTIONS(1691), + [anon_sym_error] = ACTIONS(1593), + [anon_sym_DASH2] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_in2] = ACTIONS(1593), + [anon_sym_loop] = ACTIONS(1593), + [anon_sym_make] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_else] = ACTIONS(1593), + [anon_sym_match] = ACTIONS(1593), + [anon_sym_RBRACE] = ACTIONS(1603), + [anon_sym_try] = ACTIONS(1593), + [anon_sym_catch] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_source] = ACTIONS(1593), + [anon_sym_source_DASHenv] = ACTIONS(1593), + [anon_sym_register] = ACTIONS(1593), + [anon_sym_hide] = ACTIONS(1593), + [anon_sym_hide_DASHenv] = ACTIONS(1593), + [anon_sym_overlay] = ACTIONS(1593), + [anon_sym_as] = ACTIONS(1593), + [anon_sym_LPAREN2] = ACTIONS(1693), + [anon_sym_PLUS2] = ACTIONS(1593), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1603), + [aux_sym__immediate_decimal_token1] = ACTIONS(1753), + [aux_sym__immediate_decimal_token3] = ACTIONS(1755), + [aux_sym__immediate_decimal_token4] = ACTIONS(1757), + [aux_sym__immediate_decimal_token5] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1603), + [aux_sym__val_number_decimal_token1] = ACTIONS(1593), + [aux_sym__val_number_decimal_token2] = ACTIONS(1593), + [aux_sym__val_number_decimal_token3] = ACTIONS(1593), + [aux_sym__val_number_decimal_token4] = ACTIONS(1593), + [aux_sym__val_number_token1] = ACTIONS(1603), + [aux_sym__val_number_token2] = ACTIONS(1603), + [aux_sym__val_number_token3] = ACTIONS(1603), + [aux_sym__val_number_token4] = ACTIONS(1593), + [aux_sym__val_number_token5] = ACTIONS(1593), + [aux_sym__val_number_token6] = ACTIONS(1593), + [anon_sym_DQUOTE] = ACTIONS(1603), + [sym__str_single_quotes] = ACTIONS(1603), + [sym__str_back_ticks] = ACTIONS(1603), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1603), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1603), }, [358] = { [sym_comment] = STATE(358), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_alias] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_let_DASHenv] = ACTIONS(1755), - [anon_sym_mut] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1755), - [aux_sym_cmd_identifier_token3] = ACTIONS(1755), - [aux_sym_cmd_identifier_token4] = ACTIONS(1755), - [aux_sym_cmd_identifier_token5] = ACTIONS(1755), - [aux_sym_cmd_identifier_token6] = ACTIONS(1755), - [aux_sym_cmd_identifier_token7] = ACTIONS(1755), - [aux_sym_cmd_identifier_token8] = ACTIONS(1755), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1755), - [aux_sym_cmd_identifier_token11] = ACTIONS(1755), - [aux_sym_cmd_identifier_token12] = ACTIONS(1755), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1755), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1755), - [aux_sym_cmd_identifier_token17] = ACTIONS(1755), - [aux_sym_cmd_identifier_token18] = ACTIONS(1755), - [aux_sym_cmd_identifier_token19] = ACTIONS(1755), - [aux_sym_cmd_identifier_token20] = ACTIONS(1755), - [aux_sym_cmd_identifier_token21] = ACTIONS(1755), - [aux_sym_cmd_identifier_token22] = ACTIONS(1755), - [aux_sym_cmd_identifier_token23] = ACTIONS(1755), - [aux_sym_cmd_identifier_token24] = ACTIONS(1755), - [aux_sym_cmd_identifier_token25] = ACTIONS(1755), - [aux_sym_cmd_identifier_token26] = ACTIONS(1755), - [aux_sym_cmd_identifier_token27] = ACTIONS(1755), - [aux_sym_cmd_identifier_token28] = ACTIONS(1755), - [aux_sym_cmd_identifier_token29] = ACTIONS(1755), - [aux_sym_cmd_identifier_token30] = ACTIONS(1755), - [aux_sym_cmd_identifier_token31] = ACTIONS(1755), - [aux_sym_cmd_identifier_token32] = ACTIONS(1755), - [aux_sym_cmd_identifier_token33] = ACTIONS(1755), - [aux_sym_cmd_identifier_token34] = ACTIONS(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1755), - [aux_sym_cmd_identifier_token36] = ACTIONS(1755), - [aux_sym_cmd_identifier_token37] = ACTIONS(1755), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1755), - [aux_sym_cmd_identifier_token40] = ACTIONS(1755), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_export_DASHenv] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_make] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1755), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_source] = ACTIONS(1755), - [anon_sym_source_DASHenv] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_hide] = ACTIONS(1755), - [anon_sym_hide_DASHenv] = ACTIONS(1755), - [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT] = ACTIONS(1759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(1761), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1755), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1755), - [aux_sym__val_number_decimal_token3] = ACTIONS(1755), - [aux_sym__val_number_decimal_token4] = ACTIONS(1755), - [aux_sym__val_number_token1] = ACTIONS(1755), - [aux_sym__val_number_token2] = ACTIONS(1755), - [aux_sym__val_number_token3] = ACTIONS(1755), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym__str_single_quotes] = ACTIONS(1755), - [sym__str_back_ticks] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1755), - [sym__entry_separator] = ACTIONS(1757), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), + [anon_sym_export] = ACTIONS(1585), + [anon_sym_alias] = ACTIONS(1585), + [anon_sym_let] = ACTIONS(1585), + [anon_sym_let_DASHenv] = ACTIONS(1585), + [anon_sym_mut] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [aux_sym_cmd_identifier_token1] = ACTIONS(1585), + [aux_sym_cmd_identifier_token2] = ACTIONS(1585), + [aux_sym_cmd_identifier_token3] = ACTIONS(1585), + [aux_sym_cmd_identifier_token4] = ACTIONS(1585), + [aux_sym_cmd_identifier_token5] = ACTIONS(1585), + [aux_sym_cmd_identifier_token6] = ACTIONS(1585), + [aux_sym_cmd_identifier_token7] = ACTIONS(1585), + [aux_sym_cmd_identifier_token8] = ACTIONS(1585), + [aux_sym_cmd_identifier_token9] = ACTIONS(1585), + [aux_sym_cmd_identifier_token10] = ACTIONS(1585), + [aux_sym_cmd_identifier_token11] = ACTIONS(1585), + [aux_sym_cmd_identifier_token12] = ACTIONS(1585), + [aux_sym_cmd_identifier_token13] = ACTIONS(1585), + [aux_sym_cmd_identifier_token14] = ACTIONS(1585), + [aux_sym_cmd_identifier_token15] = ACTIONS(1585), + [aux_sym_cmd_identifier_token16] = ACTIONS(1585), + [aux_sym_cmd_identifier_token17] = ACTIONS(1585), + [aux_sym_cmd_identifier_token18] = ACTIONS(1585), + [aux_sym_cmd_identifier_token19] = ACTIONS(1585), + [aux_sym_cmd_identifier_token20] = ACTIONS(1585), + [aux_sym_cmd_identifier_token21] = ACTIONS(1585), + [aux_sym_cmd_identifier_token22] = ACTIONS(1585), + [aux_sym_cmd_identifier_token23] = ACTIONS(1585), + [aux_sym_cmd_identifier_token24] = ACTIONS(1585), + [aux_sym_cmd_identifier_token25] = ACTIONS(1585), + [aux_sym_cmd_identifier_token26] = ACTIONS(1585), + [aux_sym_cmd_identifier_token27] = ACTIONS(1585), + [aux_sym_cmd_identifier_token28] = ACTIONS(1585), + [aux_sym_cmd_identifier_token29] = ACTIONS(1585), + [aux_sym_cmd_identifier_token30] = ACTIONS(1585), + [aux_sym_cmd_identifier_token31] = ACTIONS(1585), + [aux_sym_cmd_identifier_token32] = ACTIONS(1585), + [aux_sym_cmd_identifier_token33] = ACTIONS(1585), + [aux_sym_cmd_identifier_token34] = ACTIONS(1585), + [aux_sym_cmd_identifier_token35] = ACTIONS(1585), + [aux_sym_cmd_identifier_token36] = ACTIONS(1585), + [aux_sym_cmd_identifier_token37] = ACTIONS(1585), + [aux_sym_cmd_identifier_token38] = ACTIONS(1585), + [aux_sym_cmd_identifier_token39] = ACTIONS(1585), + [aux_sym_cmd_identifier_token40] = ACTIONS(1585), + [anon_sym_def] = ACTIONS(1585), + [anon_sym_export_DASHenv] = ACTIONS(1585), + [anon_sym_extern] = ACTIONS(1585), + [anon_sym_module] = ACTIONS(1585), + [anon_sym_use] = ACTIONS(1585), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_DOLLAR] = ACTIONS(1585), + [anon_sym_error] = ACTIONS(1585), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_in2] = ACTIONS(1585), + [anon_sym_loop] = ACTIONS(1585), + [anon_sym_make] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_do] = ACTIONS(1585), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_else] = ACTIONS(1585), + [anon_sym_match] = ACTIONS(1585), + [anon_sym_RBRACE] = ACTIONS(1585), + [anon_sym_try] = ACTIONS(1585), + [anon_sym_catch] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_source] = ACTIONS(1585), + [anon_sym_source_DASHenv] = ACTIONS(1585), + [anon_sym_register] = ACTIONS(1585), + [anon_sym_hide] = ACTIONS(1585), + [anon_sym_hide_DASHenv] = ACTIONS(1585), + [anon_sym_overlay] = ACTIONS(1585), + [anon_sym_as] = ACTIONS(1585), + [anon_sym_LPAREN2] = ACTIONS(1587), + [anon_sym_PLUS2] = ACTIONS(1585), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1585), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1585), + [aux_sym__val_number_decimal_token1] = ACTIONS(1585), + [aux_sym__val_number_decimal_token2] = ACTIONS(1585), + [aux_sym__val_number_decimal_token3] = ACTIONS(1585), + [aux_sym__val_number_decimal_token4] = ACTIONS(1585), + [aux_sym__val_number_token1] = ACTIONS(1585), + [aux_sym__val_number_token2] = ACTIONS(1585), + [aux_sym__val_number_token3] = ACTIONS(1585), + [aux_sym__val_number_token4] = ACTIONS(1585), + [aux_sym__val_number_token5] = ACTIONS(1585), + [aux_sym__val_number_token6] = ACTIONS(1585), + [sym_filesize_unit] = ACTIONS(1585), + [sym_duration_unit] = ACTIONS(1585), + [anon_sym_DQUOTE] = ACTIONS(1585), + [sym__str_single_quotes] = ACTIONS(1585), + [sym__str_back_ticks] = ACTIONS(1585), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1585), + [sym__entry_separator] = ACTIONS(1587), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1585), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1757), + [sym_raw_string_begin] = ACTIONS(1587), }, [359] = { + [sym_cell_path] = STATE(488), + [sym_path] = STATE(442), [sym_comment] = STATE(359), - [anon_sym_export] = ACTIONS(1607), - [anon_sym_alias] = ACTIONS(1607), - [anon_sym_let] = ACTIONS(1607), - [anon_sym_let_DASHenv] = ACTIONS(1607), - [anon_sym_mut] = ACTIONS(1607), - [anon_sym_const] = ACTIONS(1607), - [aux_sym_cmd_identifier_token1] = ACTIONS(1607), - [aux_sym_cmd_identifier_token2] = ACTIONS(1609), - [aux_sym_cmd_identifier_token3] = ACTIONS(1609), - [aux_sym_cmd_identifier_token4] = ACTIONS(1609), - [aux_sym_cmd_identifier_token5] = ACTIONS(1609), - [aux_sym_cmd_identifier_token6] = ACTIONS(1609), - [aux_sym_cmd_identifier_token7] = ACTIONS(1609), - [aux_sym_cmd_identifier_token8] = ACTIONS(1607), - [aux_sym_cmd_identifier_token9] = ACTIONS(1607), - [aux_sym_cmd_identifier_token10] = ACTIONS(1609), - [aux_sym_cmd_identifier_token11] = ACTIONS(1609), - [aux_sym_cmd_identifier_token12] = ACTIONS(1607), - [aux_sym_cmd_identifier_token13] = ACTIONS(1607), - [aux_sym_cmd_identifier_token14] = ACTIONS(1607), - [aux_sym_cmd_identifier_token15] = ACTIONS(1607), - [aux_sym_cmd_identifier_token16] = ACTIONS(1609), - [aux_sym_cmd_identifier_token17] = ACTIONS(1609), - [aux_sym_cmd_identifier_token18] = ACTIONS(1609), - [aux_sym_cmd_identifier_token19] = ACTIONS(1609), - [aux_sym_cmd_identifier_token20] = ACTIONS(1609), - [aux_sym_cmd_identifier_token21] = ACTIONS(1609), - [aux_sym_cmd_identifier_token22] = ACTIONS(1609), - [aux_sym_cmd_identifier_token23] = ACTIONS(1609), - [aux_sym_cmd_identifier_token24] = ACTIONS(1609), - [aux_sym_cmd_identifier_token25] = ACTIONS(1609), - [aux_sym_cmd_identifier_token26] = ACTIONS(1609), - [aux_sym_cmd_identifier_token27] = ACTIONS(1609), - [aux_sym_cmd_identifier_token28] = ACTIONS(1609), - [aux_sym_cmd_identifier_token29] = ACTIONS(1609), - [aux_sym_cmd_identifier_token30] = ACTIONS(1609), - [aux_sym_cmd_identifier_token31] = ACTIONS(1609), - [aux_sym_cmd_identifier_token32] = ACTIONS(1609), - [aux_sym_cmd_identifier_token33] = ACTIONS(1609), - [aux_sym_cmd_identifier_token34] = ACTIONS(1607), - [aux_sym_cmd_identifier_token35] = ACTIONS(1609), - [aux_sym_cmd_identifier_token36] = ACTIONS(1609), - [aux_sym_cmd_identifier_token37] = ACTIONS(1609), - [aux_sym_cmd_identifier_token38] = ACTIONS(1607), - [aux_sym_cmd_identifier_token39] = ACTIONS(1609), - [aux_sym_cmd_identifier_token40] = ACTIONS(1609), - [anon_sym_def] = ACTIONS(1607), - [anon_sym_export_DASHenv] = ACTIONS(1607), - [anon_sym_extern] = ACTIONS(1607), - [anon_sym_module] = ACTIONS(1607), - [anon_sym_use] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_DOLLAR] = ACTIONS(1609), - [anon_sym_error] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_break] = ACTIONS(1607), - [anon_sym_continue] = ACTIONS(1607), - [anon_sym_for] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_loop] = ACTIONS(1607), - [anon_sym_make] = ACTIONS(1607), - [anon_sym_while] = ACTIONS(1607), - [anon_sym_do] = ACTIONS(1607), - [anon_sym_if] = ACTIONS(1607), - [anon_sym_else] = ACTIONS(1607), - [anon_sym_match] = ACTIONS(1607), - [anon_sym_RBRACE] = ACTIONS(1609), - [anon_sym_try] = ACTIONS(1607), - [anon_sym_catch] = ACTIONS(1607), - [anon_sym_return] = ACTIONS(1607), - [anon_sym_source] = ACTIONS(1607), - [anon_sym_source_DASHenv] = ACTIONS(1607), - [anon_sym_register] = ACTIONS(1607), - [anon_sym_hide] = ACTIONS(1607), - [anon_sym_hide_DASHenv] = ACTIONS(1607), - [anon_sym_overlay] = ACTIONS(1607), - [anon_sym_as] = ACTIONS(1607), - [anon_sym_LPAREN2] = ACTIONS(1609), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1609), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(1727), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1609), - [aux_sym__val_number_decimal_token1] = ACTIONS(1607), - [aux_sym__val_number_decimal_token2] = ACTIONS(1609), - [aux_sym__val_number_decimal_token3] = ACTIONS(1609), - [aux_sym__val_number_decimal_token4] = ACTIONS(1609), - [aux_sym__val_number_token1] = ACTIONS(1609), - [aux_sym__val_number_token2] = ACTIONS(1609), - [aux_sym__val_number_token3] = ACTIONS(1609), - [aux_sym__val_number_token4] = ACTIONS(1607), - [aux_sym__val_number_token5] = ACTIONS(1607), - [aux_sym__val_number_token6] = ACTIONS(1607), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1609), - [sym__str_single_quotes] = ACTIONS(1609), - [sym__str_back_ticks] = ACTIONS(1609), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1609), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1607), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1609), + [aux_sym_cell_path_repeat1] = STATE(379), + [anon_sym_export] = ACTIONS(961), + [anon_sym_alias] = ACTIONS(961), + [anon_sym_let] = ACTIONS(961), + [anon_sym_let_DASHenv] = ACTIONS(961), + [anon_sym_mut] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [aux_sym_cmd_identifier_token1] = ACTIONS(961), + [aux_sym_cmd_identifier_token2] = ACTIONS(961), + [aux_sym_cmd_identifier_token3] = ACTIONS(961), + [aux_sym_cmd_identifier_token4] = ACTIONS(961), + [aux_sym_cmd_identifier_token5] = ACTIONS(961), + [aux_sym_cmd_identifier_token6] = ACTIONS(961), + [aux_sym_cmd_identifier_token7] = ACTIONS(961), + [aux_sym_cmd_identifier_token8] = ACTIONS(961), + [aux_sym_cmd_identifier_token9] = ACTIONS(961), + [aux_sym_cmd_identifier_token10] = ACTIONS(961), + [aux_sym_cmd_identifier_token11] = ACTIONS(961), + [aux_sym_cmd_identifier_token12] = ACTIONS(961), + [aux_sym_cmd_identifier_token13] = ACTIONS(961), + [aux_sym_cmd_identifier_token14] = ACTIONS(961), + [aux_sym_cmd_identifier_token15] = ACTIONS(961), + [aux_sym_cmd_identifier_token16] = ACTIONS(961), + [aux_sym_cmd_identifier_token17] = ACTIONS(961), + [aux_sym_cmd_identifier_token18] = ACTIONS(961), + [aux_sym_cmd_identifier_token19] = ACTIONS(961), + [aux_sym_cmd_identifier_token20] = ACTIONS(961), + [aux_sym_cmd_identifier_token21] = ACTIONS(961), + [aux_sym_cmd_identifier_token22] = ACTIONS(961), + [aux_sym_cmd_identifier_token23] = ACTIONS(961), + [aux_sym_cmd_identifier_token24] = ACTIONS(961), + [aux_sym_cmd_identifier_token25] = ACTIONS(961), + [aux_sym_cmd_identifier_token26] = ACTIONS(961), + [aux_sym_cmd_identifier_token27] = ACTIONS(961), + [aux_sym_cmd_identifier_token28] = ACTIONS(961), + [aux_sym_cmd_identifier_token29] = ACTIONS(961), + [aux_sym_cmd_identifier_token30] = ACTIONS(961), + [aux_sym_cmd_identifier_token31] = ACTIONS(961), + [aux_sym_cmd_identifier_token32] = ACTIONS(961), + [aux_sym_cmd_identifier_token33] = ACTIONS(961), + [aux_sym_cmd_identifier_token34] = ACTIONS(961), + [aux_sym_cmd_identifier_token35] = ACTIONS(961), + [aux_sym_cmd_identifier_token36] = ACTIONS(961), + [aux_sym_cmd_identifier_token37] = ACTIONS(961), + [aux_sym_cmd_identifier_token38] = ACTIONS(961), + [aux_sym_cmd_identifier_token39] = ACTIONS(961), + [aux_sym_cmd_identifier_token40] = ACTIONS(961), + [anon_sym_def] = ACTIONS(961), + [anon_sym_export_DASHenv] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym_module] = ACTIONS(961), + [anon_sym_use] = ACTIONS(961), + [anon_sym_LPAREN] = ACTIONS(961), + [anon_sym_DOLLAR] = ACTIONS(961), + [anon_sym_error] = ACTIONS(961), + [anon_sym_DASH2] = ACTIONS(961), + [anon_sym_break] = ACTIONS(961), + [anon_sym_continue] = ACTIONS(961), + [anon_sym_for] = ACTIONS(961), + [anon_sym_in2] = ACTIONS(961), + [anon_sym_loop] = ACTIONS(961), + [anon_sym_make] = ACTIONS(961), + [anon_sym_while] = ACTIONS(961), + [anon_sym_do] = ACTIONS(961), + [anon_sym_if] = ACTIONS(961), + [anon_sym_else] = ACTIONS(961), + [anon_sym_match] = ACTIONS(961), + [anon_sym_RBRACE] = ACTIONS(961), + [anon_sym_try] = ACTIONS(961), + [anon_sym_catch] = ACTIONS(961), + [anon_sym_return] = ACTIONS(961), + [anon_sym_source] = ACTIONS(961), + [anon_sym_source_DASHenv] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_hide] = ACTIONS(961), + [anon_sym_hide_DASHenv] = ACTIONS(961), + [anon_sym_overlay] = ACTIONS(961), + [anon_sym_as] = ACTIONS(961), + [anon_sym_PLUS2] = ACTIONS(961), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(961), + [anon_sym_DOT_DOT2] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), + [anon_sym_DOT_DOT_LT2] = ACTIONS(963), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(961), + [aux_sym__val_number_decimal_token1] = ACTIONS(961), + [aux_sym__val_number_decimal_token2] = ACTIONS(961), + [aux_sym__val_number_decimal_token3] = ACTIONS(961), + [aux_sym__val_number_decimal_token4] = ACTIONS(961), + [aux_sym__val_number_token1] = ACTIONS(961), + [aux_sym__val_number_token2] = ACTIONS(961), + [aux_sym__val_number_token3] = ACTIONS(961), + [aux_sym__val_number_token4] = ACTIONS(961), + [aux_sym__val_number_token5] = ACTIONS(961), + [aux_sym__val_number_token6] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [sym__str_single_quotes] = ACTIONS(961), + [sym__str_back_ticks] = ACTIONS(961), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(961), + [sym__entry_separator] = ACTIONS(963), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(963), }, [360] = { [sym_comment] = STATE(360), - [anon_sym_export] = ACTIONS(1763), - [anon_sym_alias] = ACTIONS(1763), - [anon_sym_let] = ACTIONS(1763), - [anon_sym_let_DASHenv] = ACTIONS(1763), - [anon_sym_mut] = ACTIONS(1763), - [anon_sym_const] = ACTIONS(1763), - [aux_sym_cmd_identifier_token1] = ACTIONS(1763), - [aux_sym_cmd_identifier_token2] = ACTIONS(1763), - [aux_sym_cmd_identifier_token3] = ACTIONS(1763), - [aux_sym_cmd_identifier_token4] = ACTIONS(1763), - [aux_sym_cmd_identifier_token5] = ACTIONS(1763), - [aux_sym_cmd_identifier_token6] = ACTIONS(1763), - [aux_sym_cmd_identifier_token7] = ACTIONS(1763), - [aux_sym_cmd_identifier_token8] = ACTIONS(1763), - [aux_sym_cmd_identifier_token9] = ACTIONS(1763), - [aux_sym_cmd_identifier_token10] = ACTIONS(1763), - [aux_sym_cmd_identifier_token11] = ACTIONS(1763), - [aux_sym_cmd_identifier_token12] = ACTIONS(1763), - [aux_sym_cmd_identifier_token13] = ACTIONS(1763), - [aux_sym_cmd_identifier_token14] = ACTIONS(1763), - [aux_sym_cmd_identifier_token15] = ACTIONS(1763), - [aux_sym_cmd_identifier_token16] = ACTIONS(1763), - [aux_sym_cmd_identifier_token17] = ACTIONS(1763), - [aux_sym_cmd_identifier_token18] = ACTIONS(1763), - [aux_sym_cmd_identifier_token19] = ACTIONS(1763), - [aux_sym_cmd_identifier_token20] = ACTIONS(1763), - [aux_sym_cmd_identifier_token21] = ACTIONS(1763), - [aux_sym_cmd_identifier_token22] = ACTIONS(1763), - [aux_sym_cmd_identifier_token23] = ACTIONS(1763), - [aux_sym_cmd_identifier_token24] = ACTIONS(1763), - [aux_sym_cmd_identifier_token25] = ACTIONS(1763), - [aux_sym_cmd_identifier_token26] = ACTIONS(1763), - [aux_sym_cmd_identifier_token27] = ACTIONS(1763), - [aux_sym_cmd_identifier_token28] = ACTIONS(1763), - [aux_sym_cmd_identifier_token29] = ACTIONS(1763), - [aux_sym_cmd_identifier_token30] = ACTIONS(1763), - [aux_sym_cmd_identifier_token31] = ACTIONS(1763), - [aux_sym_cmd_identifier_token32] = ACTIONS(1763), - [aux_sym_cmd_identifier_token33] = ACTIONS(1763), - [aux_sym_cmd_identifier_token34] = ACTIONS(1763), - [aux_sym_cmd_identifier_token35] = ACTIONS(1763), - [aux_sym_cmd_identifier_token36] = ACTIONS(1763), - [aux_sym_cmd_identifier_token37] = ACTIONS(1763), - [aux_sym_cmd_identifier_token38] = ACTIONS(1763), - [aux_sym_cmd_identifier_token39] = ACTIONS(1763), - [aux_sym_cmd_identifier_token40] = ACTIONS(1763), - [anon_sym_def] = ACTIONS(1763), - [anon_sym_export_DASHenv] = ACTIONS(1763), - [anon_sym_extern] = ACTIONS(1763), - [anon_sym_module] = ACTIONS(1763), - [anon_sym_use] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1763), - [anon_sym_error] = ACTIONS(1763), - [anon_sym_DASH2] = ACTIONS(1763), - [anon_sym_break] = ACTIONS(1763), - [anon_sym_continue] = ACTIONS(1763), - [anon_sym_for] = ACTIONS(1763), - [anon_sym_in2] = ACTIONS(1763), - [anon_sym_loop] = ACTIONS(1763), - [anon_sym_make] = ACTIONS(1763), - [anon_sym_while] = ACTIONS(1763), - [anon_sym_do] = ACTIONS(1763), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_else] = ACTIONS(1763), - [anon_sym_match] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_try] = ACTIONS(1763), - [anon_sym_catch] = ACTIONS(1763), - [anon_sym_return] = ACTIONS(1763), - [anon_sym_source] = ACTIONS(1763), - [anon_sym_source_DASHenv] = ACTIONS(1763), - [anon_sym_register] = ACTIONS(1763), - [anon_sym_hide] = ACTIONS(1763), - [anon_sym_hide_DASHenv] = ACTIONS(1763), - [anon_sym_overlay] = ACTIONS(1763), - [anon_sym_as] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(1765), - [anon_sym_PLUS2] = ACTIONS(1763), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1763), - [anon_sym_DOT_DOT2] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1763), - [aux_sym__val_number_decimal_token1] = ACTIONS(1763), - [aux_sym__val_number_decimal_token2] = ACTIONS(1763), - [aux_sym__val_number_decimal_token3] = ACTIONS(1763), - [aux_sym__val_number_decimal_token4] = ACTIONS(1763), - [aux_sym__val_number_token1] = ACTIONS(1763), - [aux_sym__val_number_token2] = ACTIONS(1763), - [aux_sym__val_number_token3] = ACTIONS(1763), - [aux_sym__val_number_token4] = ACTIONS(1763), - [aux_sym__val_number_token5] = ACTIONS(1763), - [aux_sym__val_number_token6] = ACTIONS(1763), - [sym_filesize_unit] = ACTIONS(1763), - [sym_duration_unit] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [sym__str_single_quotes] = ACTIONS(1763), - [sym__str_back_ticks] = ACTIONS(1763), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1763), - [sym__entry_separator] = ACTIONS(1765), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1763), + [anon_sym_export] = ACTIONS(1681), + [anon_sym_alias] = ACTIONS(1681), + [anon_sym_let] = ACTIONS(1681), + [anon_sym_let_DASHenv] = ACTIONS(1681), + [anon_sym_mut] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1681), + [aux_sym_cmd_identifier_token1] = ACTIONS(1681), + [aux_sym_cmd_identifier_token2] = ACTIONS(1681), + [aux_sym_cmd_identifier_token3] = ACTIONS(1681), + [aux_sym_cmd_identifier_token4] = ACTIONS(1681), + [aux_sym_cmd_identifier_token5] = ACTIONS(1681), + [aux_sym_cmd_identifier_token6] = ACTIONS(1681), + [aux_sym_cmd_identifier_token7] = ACTIONS(1681), + [aux_sym_cmd_identifier_token8] = ACTIONS(1681), + [aux_sym_cmd_identifier_token9] = ACTIONS(1681), + [aux_sym_cmd_identifier_token10] = ACTIONS(1681), + [aux_sym_cmd_identifier_token11] = ACTIONS(1681), + [aux_sym_cmd_identifier_token12] = ACTIONS(1681), + [aux_sym_cmd_identifier_token13] = ACTIONS(1681), + [aux_sym_cmd_identifier_token14] = ACTIONS(1681), + [aux_sym_cmd_identifier_token15] = ACTIONS(1681), + [aux_sym_cmd_identifier_token16] = ACTIONS(1681), + [aux_sym_cmd_identifier_token17] = ACTIONS(1681), + [aux_sym_cmd_identifier_token18] = ACTIONS(1681), + [aux_sym_cmd_identifier_token19] = ACTIONS(1681), + [aux_sym_cmd_identifier_token20] = ACTIONS(1681), + [aux_sym_cmd_identifier_token21] = ACTIONS(1681), + [aux_sym_cmd_identifier_token22] = ACTIONS(1681), + [aux_sym_cmd_identifier_token23] = ACTIONS(1681), + [aux_sym_cmd_identifier_token24] = ACTIONS(1681), + [aux_sym_cmd_identifier_token25] = ACTIONS(1681), + [aux_sym_cmd_identifier_token26] = ACTIONS(1681), + [aux_sym_cmd_identifier_token27] = ACTIONS(1681), + [aux_sym_cmd_identifier_token28] = ACTIONS(1681), + [aux_sym_cmd_identifier_token29] = ACTIONS(1681), + [aux_sym_cmd_identifier_token30] = ACTIONS(1681), + [aux_sym_cmd_identifier_token31] = ACTIONS(1681), + [aux_sym_cmd_identifier_token32] = ACTIONS(1681), + [aux_sym_cmd_identifier_token33] = ACTIONS(1681), + [aux_sym_cmd_identifier_token34] = ACTIONS(1681), + [aux_sym_cmd_identifier_token35] = ACTIONS(1681), + [aux_sym_cmd_identifier_token36] = ACTIONS(1681), + [aux_sym_cmd_identifier_token37] = ACTIONS(1681), + [aux_sym_cmd_identifier_token38] = ACTIONS(1681), + [aux_sym_cmd_identifier_token39] = ACTIONS(1681), + [aux_sym_cmd_identifier_token40] = ACTIONS(1681), + [anon_sym_def] = ACTIONS(1681), + [anon_sym_export_DASHenv] = ACTIONS(1681), + [anon_sym_extern] = ACTIONS(1681), + [anon_sym_module] = ACTIONS(1681), + [anon_sym_use] = ACTIONS(1681), + [anon_sym_LPAREN] = ACTIONS(1681), + [anon_sym_DOLLAR] = ACTIONS(1681), + [anon_sym_error] = ACTIONS(1681), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_break] = ACTIONS(1681), + [anon_sym_continue] = ACTIONS(1681), + [anon_sym_for] = ACTIONS(1681), + [anon_sym_in2] = ACTIONS(1681), + [anon_sym_loop] = ACTIONS(1681), + [anon_sym_make] = ACTIONS(1681), + [anon_sym_while] = ACTIONS(1681), + [anon_sym_do] = ACTIONS(1681), + [anon_sym_if] = ACTIONS(1681), + [anon_sym_else] = ACTIONS(1681), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_RBRACE] = ACTIONS(1681), + [anon_sym_try] = ACTIONS(1681), + [anon_sym_catch] = ACTIONS(1681), + [anon_sym_return] = ACTIONS(1681), + [anon_sym_source] = ACTIONS(1681), + [anon_sym_source_DASHenv] = ACTIONS(1681), + [anon_sym_register] = ACTIONS(1681), + [anon_sym_hide] = ACTIONS(1681), + [anon_sym_hide_DASHenv] = ACTIONS(1681), + [anon_sym_overlay] = ACTIONS(1681), + [anon_sym_as] = ACTIONS(1681), + [anon_sym_LPAREN2] = ACTIONS(1683), + [anon_sym_PLUS2] = ACTIONS(1681), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1681), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1681), + [aux_sym__val_number_decimal_token1] = ACTIONS(1681), + [aux_sym__val_number_decimal_token2] = ACTIONS(1681), + [aux_sym__val_number_decimal_token3] = ACTIONS(1681), + [aux_sym__val_number_decimal_token4] = ACTIONS(1681), + [aux_sym__val_number_token1] = ACTIONS(1681), + [aux_sym__val_number_token2] = ACTIONS(1681), + [aux_sym__val_number_token3] = ACTIONS(1681), + [aux_sym__val_number_token4] = ACTIONS(1681), + [aux_sym__val_number_token5] = ACTIONS(1681), + [aux_sym__val_number_token6] = ACTIONS(1681), + [sym_filesize_unit] = ACTIONS(1681), + [sym_duration_unit] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [sym__str_single_quotes] = ACTIONS(1681), + [sym__str_back_ticks] = ACTIONS(1681), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1681), + [sym__entry_separator] = ACTIONS(1683), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1681), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1765), + [sym_raw_string_begin] = ACTIONS(1683), }, [361] = { [sym_comment] = STATE(361), - [anon_sym_export] = ACTIONS(1673), - [anon_sym_alias] = ACTIONS(1673), - [anon_sym_let] = ACTIONS(1673), - [anon_sym_let_DASHenv] = ACTIONS(1673), - [anon_sym_mut] = ACTIONS(1673), - [anon_sym_const] = ACTIONS(1673), - [aux_sym_cmd_identifier_token1] = ACTIONS(1673), - [aux_sym_cmd_identifier_token2] = ACTIONS(1675), - [aux_sym_cmd_identifier_token3] = ACTIONS(1675), - [aux_sym_cmd_identifier_token4] = ACTIONS(1675), - [aux_sym_cmd_identifier_token5] = ACTIONS(1675), - [aux_sym_cmd_identifier_token6] = ACTIONS(1675), - [aux_sym_cmd_identifier_token7] = ACTIONS(1675), - [aux_sym_cmd_identifier_token8] = ACTIONS(1673), - [aux_sym_cmd_identifier_token9] = ACTIONS(1673), - [aux_sym_cmd_identifier_token10] = ACTIONS(1675), - [aux_sym_cmd_identifier_token11] = ACTIONS(1675), - [aux_sym_cmd_identifier_token12] = ACTIONS(1673), - [aux_sym_cmd_identifier_token13] = ACTIONS(1673), - [aux_sym_cmd_identifier_token14] = ACTIONS(1673), - [aux_sym_cmd_identifier_token15] = ACTIONS(1673), - [aux_sym_cmd_identifier_token16] = ACTIONS(1675), - [aux_sym_cmd_identifier_token17] = ACTIONS(1675), - [aux_sym_cmd_identifier_token18] = ACTIONS(1675), - [aux_sym_cmd_identifier_token19] = ACTIONS(1675), - [aux_sym_cmd_identifier_token20] = ACTIONS(1675), - [aux_sym_cmd_identifier_token21] = ACTIONS(1675), - [aux_sym_cmd_identifier_token22] = ACTIONS(1675), - [aux_sym_cmd_identifier_token23] = ACTIONS(1675), - [aux_sym_cmd_identifier_token24] = ACTIONS(1675), - [aux_sym_cmd_identifier_token25] = ACTIONS(1675), - [aux_sym_cmd_identifier_token26] = ACTIONS(1675), - [aux_sym_cmd_identifier_token27] = ACTIONS(1675), - [aux_sym_cmd_identifier_token28] = ACTIONS(1675), - [aux_sym_cmd_identifier_token29] = ACTIONS(1675), - [aux_sym_cmd_identifier_token30] = ACTIONS(1675), - [aux_sym_cmd_identifier_token31] = ACTIONS(1675), - [aux_sym_cmd_identifier_token32] = ACTIONS(1675), - [aux_sym_cmd_identifier_token33] = ACTIONS(1675), - [aux_sym_cmd_identifier_token34] = ACTIONS(1673), - [aux_sym_cmd_identifier_token35] = ACTIONS(1675), - [aux_sym_cmd_identifier_token36] = ACTIONS(1675), - [aux_sym_cmd_identifier_token37] = ACTIONS(1675), - [aux_sym_cmd_identifier_token38] = ACTIONS(1673), - [aux_sym_cmd_identifier_token39] = ACTIONS(1675), - [aux_sym_cmd_identifier_token40] = ACTIONS(1675), - [anon_sym_def] = ACTIONS(1673), - [anon_sym_export_DASHenv] = ACTIONS(1673), - [anon_sym_extern] = ACTIONS(1673), - [anon_sym_module] = ACTIONS(1673), - [anon_sym_use] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_DOLLAR] = ACTIONS(1675), - [anon_sym_error] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_break] = ACTIONS(1673), - [anon_sym_continue] = ACTIONS(1673), - [anon_sym_for] = ACTIONS(1673), - [anon_sym_in2] = ACTIONS(1673), - [anon_sym_loop] = ACTIONS(1673), - [anon_sym_make] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1673), - [anon_sym_do] = ACTIONS(1673), - [anon_sym_if] = ACTIONS(1673), - [anon_sym_else] = ACTIONS(1673), - [anon_sym_match] = ACTIONS(1673), - [anon_sym_RBRACE] = ACTIONS(1675), - [anon_sym_try] = ACTIONS(1673), - [anon_sym_catch] = ACTIONS(1673), - [anon_sym_return] = ACTIONS(1673), - [anon_sym_source] = ACTIONS(1673), - [anon_sym_source_DASHenv] = ACTIONS(1673), - [anon_sym_register] = ACTIONS(1673), - [anon_sym_hide] = ACTIONS(1673), - [anon_sym_hide_DASHenv] = ACTIONS(1673), - [anon_sym_overlay] = ACTIONS(1673), - [anon_sym_as] = ACTIONS(1673), - [anon_sym_LPAREN2] = ACTIONS(1675), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1675), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [aux_sym__immediate_decimal_token2] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1675), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1675), - [aux_sym__val_number_decimal_token4] = ACTIONS(1675), - [aux_sym__val_number_token1] = ACTIONS(1675), - [aux_sym__val_number_token2] = ACTIONS(1675), - [aux_sym__val_number_token3] = ACTIONS(1675), - [aux_sym__val_number_token4] = ACTIONS(1673), - [aux_sym__val_number_token5] = ACTIONS(1673), - [aux_sym__val_number_token6] = ACTIONS(1673), - [sym_filesize_unit] = ACTIONS(1673), - [sym_duration_unit] = ACTIONS(1673), - [anon_sym_DQUOTE] = ACTIONS(1675), - [sym__str_single_quotes] = ACTIONS(1675), - [sym__str_back_ticks] = ACTIONS(1675), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1675), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1673), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1675), + [anon_sym_export] = ACTIONS(1761), + [anon_sym_alias] = ACTIONS(1761), + [anon_sym_let] = ACTIONS(1761), + [anon_sym_let_DASHenv] = ACTIONS(1761), + [anon_sym_mut] = ACTIONS(1761), + [anon_sym_const] = ACTIONS(1761), + [aux_sym_cmd_identifier_token1] = ACTIONS(1761), + [aux_sym_cmd_identifier_token2] = ACTIONS(1761), + [aux_sym_cmd_identifier_token3] = ACTIONS(1761), + [aux_sym_cmd_identifier_token4] = ACTIONS(1761), + [aux_sym_cmd_identifier_token5] = ACTIONS(1761), + [aux_sym_cmd_identifier_token6] = ACTIONS(1761), + [aux_sym_cmd_identifier_token7] = ACTIONS(1761), + [aux_sym_cmd_identifier_token8] = ACTIONS(1761), + [aux_sym_cmd_identifier_token9] = ACTIONS(1761), + [aux_sym_cmd_identifier_token10] = ACTIONS(1761), + [aux_sym_cmd_identifier_token11] = ACTIONS(1761), + [aux_sym_cmd_identifier_token12] = ACTIONS(1761), + [aux_sym_cmd_identifier_token13] = ACTIONS(1761), + [aux_sym_cmd_identifier_token14] = ACTIONS(1761), + [aux_sym_cmd_identifier_token15] = ACTIONS(1761), + [aux_sym_cmd_identifier_token16] = ACTIONS(1761), + [aux_sym_cmd_identifier_token17] = ACTIONS(1761), + [aux_sym_cmd_identifier_token18] = ACTIONS(1761), + [aux_sym_cmd_identifier_token19] = ACTIONS(1761), + [aux_sym_cmd_identifier_token20] = ACTIONS(1761), + [aux_sym_cmd_identifier_token21] = ACTIONS(1761), + [aux_sym_cmd_identifier_token22] = ACTIONS(1761), + [aux_sym_cmd_identifier_token23] = ACTIONS(1761), + [aux_sym_cmd_identifier_token24] = ACTIONS(1761), + [aux_sym_cmd_identifier_token25] = ACTIONS(1761), + [aux_sym_cmd_identifier_token26] = ACTIONS(1761), + [aux_sym_cmd_identifier_token27] = ACTIONS(1761), + [aux_sym_cmd_identifier_token28] = ACTIONS(1761), + [aux_sym_cmd_identifier_token29] = ACTIONS(1761), + [aux_sym_cmd_identifier_token30] = ACTIONS(1761), + [aux_sym_cmd_identifier_token31] = ACTIONS(1761), + [aux_sym_cmd_identifier_token32] = ACTIONS(1761), + [aux_sym_cmd_identifier_token33] = ACTIONS(1761), + [aux_sym_cmd_identifier_token34] = ACTIONS(1761), + [aux_sym_cmd_identifier_token35] = ACTIONS(1761), + [aux_sym_cmd_identifier_token36] = ACTIONS(1761), + [aux_sym_cmd_identifier_token37] = ACTIONS(1761), + [aux_sym_cmd_identifier_token38] = ACTIONS(1761), + [aux_sym_cmd_identifier_token39] = ACTIONS(1761), + [aux_sym_cmd_identifier_token40] = ACTIONS(1761), + [anon_sym_def] = ACTIONS(1761), + [anon_sym_export_DASHenv] = ACTIONS(1761), + [anon_sym_extern] = ACTIONS(1761), + [anon_sym_module] = ACTIONS(1761), + [anon_sym_use] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1761), + [anon_sym_DOLLAR] = ACTIONS(1761), + [anon_sym_error] = ACTIONS(1761), + [anon_sym_DASH2] = ACTIONS(1761), + [anon_sym_break] = ACTIONS(1761), + [anon_sym_continue] = ACTIONS(1761), + [anon_sym_for] = ACTIONS(1761), + [anon_sym_in2] = ACTIONS(1761), + [anon_sym_loop] = ACTIONS(1761), + [anon_sym_make] = ACTIONS(1761), + [anon_sym_while] = ACTIONS(1761), + [anon_sym_do] = ACTIONS(1761), + [anon_sym_if] = ACTIONS(1761), + [anon_sym_else] = ACTIONS(1761), + [anon_sym_match] = ACTIONS(1761), + [anon_sym_RBRACE] = ACTIONS(1761), + [anon_sym_try] = ACTIONS(1761), + [anon_sym_catch] = ACTIONS(1761), + [anon_sym_return] = ACTIONS(1761), + [anon_sym_source] = ACTIONS(1761), + [anon_sym_source_DASHenv] = ACTIONS(1761), + [anon_sym_register] = ACTIONS(1761), + [anon_sym_hide] = ACTIONS(1761), + [anon_sym_hide_DASHenv] = ACTIONS(1761), + [anon_sym_overlay] = ACTIONS(1761), + [anon_sym_as] = ACTIONS(1761), + [anon_sym_LPAREN2] = ACTIONS(1763), + [anon_sym_PLUS2] = ACTIONS(1761), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1761), + [anon_sym_DOT_DOT2] = ACTIONS(1761), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1761), + [aux_sym__val_number_decimal_token1] = ACTIONS(1761), + [aux_sym__val_number_decimal_token2] = ACTIONS(1761), + [aux_sym__val_number_decimal_token3] = ACTIONS(1761), + [aux_sym__val_number_decimal_token4] = ACTIONS(1761), + [aux_sym__val_number_token1] = ACTIONS(1761), + [aux_sym__val_number_token2] = ACTIONS(1761), + [aux_sym__val_number_token3] = ACTIONS(1761), + [aux_sym__val_number_token4] = ACTIONS(1761), + [aux_sym__val_number_token5] = ACTIONS(1761), + [aux_sym__val_number_token6] = ACTIONS(1761), + [sym_filesize_unit] = ACTIONS(1761), + [sym_duration_unit] = ACTIONS(1761), + [anon_sym_DQUOTE] = ACTIONS(1761), + [sym__str_single_quotes] = ACTIONS(1761), + [sym__str_back_ticks] = ACTIONS(1761), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1761), + [sym__entry_separator] = ACTIONS(1763), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1761), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1763), }, [362] = { - [sym_cell_path] = STATE(464), - [sym_path] = STATE(418), + [sym__expr_parenthesized_immediate] = STATE(712), + [sym__immediate_decimal] = STATE(713), + [sym_val_variable] = STATE(712), [sym_comment] = STATE(362), - [aux_sym_cell_path_repeat1] = STATE(376), - [anon_sym_export] = ACTIONS(1769), - [anon_sym_alias] = ACTIONS(1769), - [anon_sym_let] = ACTIONS(1769), - [anon_sym_let_DASHenv] = ACTIONS(1769), - [anon_sym_mut] = ACTIONS(1769), - [anon_sym_const] = ACTIONS(1769), - [aux_sym_cmd_identifier_token1] = ACTIONS(1769), - [aux_sym_cmd_identifier_token2] = ACTIONS(1769), - [aux_sym_cmd_identifier_token3] = ACTIONS(1769), - [aux_sym_cmd_identifier_token4] = ACTIONS(1769), - [aux_sym_cmd_identifier_token5] = ACTIONS(1769), - [aux_sym_cmd_identifier_token6] = ACTIONS(1769), - [aux_sym_cmd_identifier_token7] = ACTIONS(1769), - [aux_sym_cmd_identifier_token8] = ACTIONS(1769), - [aux_sym_cmd_identifier_token9] = ACTIONS(1769), - [aux_sym_cmd_identifier_token10] = ACTIONS(1769), - [aux_sym_cmd_identifier_token11] = ACTIONS(1769), - [aux_sym_cmd_identifier_token12] = ACTIONS(1769), - [aux_sym_cmd_identifier_token13] = ACTIONS(1769), - [aux_sym_cmd_identifier_token14] = ACTIONS(1769), - [aux_sym_cmd_identifier_token15] = ACTIONS(1769), - [aux_sym_cmd_identifier_token16] = ACTIONS(1769), - [aux_sym_cmd_identifier_token17] = ACTIONS(1769), - [aux_sym_cmd_identifier_token18] = ACTIONS(1769), - [aux_sym_cmd_identifier_token19] = ACTIONS(1769), - [aux_sym_cmd_identifier_token20] = ACTIONS(1769), - [aux_sym_cmd_identifier_token21] = ACTIONS(1769), - [aux_sym_cmd_identifier_token22] = ACTIONS(1769), - [aux_sym_cmd_identifier_token23] = ACTIONS(1769), - [aux_sym_cmd_identifier_token24] = ACTIONS(1769), - [aux_sym_cmd_identifier_token25] = ACTIONS(1769), - [aux_sym_cmd_identifier_token26] = ACTIONS(1769), - [aux_sym_cmd_identifier_token27] = ACTIONS(1769), - [aux_sym_cmd_identifier_token28] = ACTIONS(1769), - [aux_sym_cmd_identifier_token29] = ACTIONS(1769), - [aux_sym_cmd_identifier_token30] = ACTIONS(1769), - [aux_sym_cmd_identifier_token31] = ACTIONS(1769), - [aux_sym_cmd_identifier_token32] = ACTIONS(1769), - [aux_sym_cmd_identifier_token33] = ACTIONS(1769), - [aux_sym_cmd_identifier_token34] = ACTIONS(1769), - [aux_sym_cmd_identifier_token35] = ACTIONS(1769), - [aux_sym_cmd_identifier_token36] = ACTIONS(1769), - [aux_sym_cmd_identifier_token37] = ACTIONS(1769), - [aux_sym_cmd_identifier_token38] = ACTIONS(1769), - [aux_sym_cmd_identifier_token39] = ACTIONS(1769), - [aux_sym_cmd_identifier_token40] = ACTIONS(1769), - [anon_sym_def] = ACTIONS(1769), - [anon_sym_export_DASHenv] = ACTIONS(1769), - [anon_sym_extern] = ACTIONS(1769), - [anon_sym_module] = ACTIONS(1769), - [anon_sym_use] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_error] = ACTIONS(1769), - [anon_sym_DASH2] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_in2] = ACTIONS(1769), - [anon_sym_loop] = ACTIONS(1769), - [anon_sym_make] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1769), - [anon_sym_do] = ACTIONS(1769), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_else] = ACTIONS(1769), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_RBRACE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1769), - [anon_sym_catch] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_source] = ACTIONS(1769), - [anon_sym_source_DASHenv] = ACTIONS(1769), - [anon_sym_register] = ACTIONS(1769), - [anon_sym_hide] = ACTIONS(1769), - [anon_sym_hide_DASHenv] = ACTIONS(1769), - [anon_sym_overlay] = ACTIONS(1769), - [anon_sym_as] = ACTIONS(1769), - [anon_sym_PLUS2] = ACTIONS(1769), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1769), - [anon_sym_DOT_DOT2] = ACTIONS(1769), - [anon_sym_DOT] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1769), - [aux_sym__val_number_decimal_token1] = ACTIONS(1769), - [aux_sym__val_number_decimal_token2] = ACTIONS(1769), - [aux_sym__val_number_decimal_token3] = ACTIONS(1769), - [aux_sym__val_number_decimal_token4] = ACTIONS(1769), - [aux_sym__val_number_token1] = ACTIONS(1769), - [aux_sym__val_number_token2] = ACTIONS(1769), - [aux_sym__val_number_token3] = ACTIONS(1769), - [aux_sym__val_number_token4] = ACTIONS(1769), - [aux_sym__val_number_token5] = ACTIONS(1769), - [aux_sym__val_number_token6] = ACTIONS(1769), - [anon_sym_DQUOTE] = ACTIONS(1769), - [sym__str_single_quotes] = ACTIONS(1769), - [sym__str_back_ticks] = ACTIONS(1769), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1769), - [sym__entry_separator] = ACTIONS(1771), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1771), - }, - [363] = { - [sym__expr_parenthesized_immediate] = STATE(7446), - [sym_comment] = STATE(363), - [anon_sym_export] = ACTIONS(1709), - [anon_sym_alias] = ACTIONS(1709), - [anon_sym_let] = ACTIONS(1709), - [anon_sym_let_DASHenv] = ACTIONS(1709), - [anon_sym_mut] = ACTIONS(1709), - [anon_sym_const] = ACTIONS(1709), - [aux_sym_cmd_identifier_token1] = ACTIONS(1709), - [aux_sym_cmd_identifier_token2] = ACTIONS(1721), - [aux_sym_cmd_identifier_token3] = ACTIONS(1721), - [aux_sym_cmd_identifier_token4] = ACTIONS(1721), - [aux_sym_cmd_identifier_token5] = ACTIONS(1721), - [aux_sym_cmd_identifier_token6] = ACTIONS(1721), - [aux_sym_cmd_identifier_token7] = ACTIONS(1721), - [aux_sym_cmd_identifier_token8] = ACTIONS(1709), - [aux_sym_cmd_identifier_token9] = ACTIONS(1709), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1709), - [aux_sym_cmd_identifier_token13] = ACTIONS(1709), - [aux_sym_cmd_identifier_token14] = ACTIONS(1709), - [aux_sym_cmd_identifier_token15] = ACTIONS(1709), - [aux_sym_cmd_identifier_token16] = ACTIONS(1721), - [aux_sym_cmd_identifier_token17] = ACTIONS(1721), - [aux_sym_cmd_identifier_token18] = ACTIONS(1721), - [aux_sym_cmd_identifier_token19] = ACTIONS(1721), - [aux_sym_cmd_identifier_token20] = ACTIONS(1721), - [aux_sym_cmd_identifier_token21] = ACTIONS(1721), - [aux_sym_cmd_identifier_token22] = ACTIONS(1721), - [aux_sym_cmd_identifier_token23] = ACTIONS(1721), - [aux_sym_cmd_identifier_token24] = ACTIONS(1721), - [aux_sym_cmd_identifier_token25] = ACTIONS(1721), - [aux_sym_cmd_identifier_token26] = ACTIONS(1721), - [aux_sym_cmd_identifier_token27] = ACTIONS(1721), - [aux_sym_cmd_identifier_token28] = ACTIONS(1721), - [aux_sym_cmd_identifier_token29] = ACTIONS(1721), - [aux_sym_cmd_identifier_token30] = ACTIONS(1721), - [aux_sym_cmd_identifier_token31] = ACTIONS(1721), - [aux_sym_cmd_identifier_token32] = ACTIONS(1721), - [aux_sym_cmd_identifier_token33] = ACTIONS(1721), - [aux_sym_cmd_identifier_token34] = ACTIONS(1709), - [aux_sym_cmd_identifier_token35] = ACTIONS(1721), - [aux_sym_cmd_identifier_token36] = ACTIONS(1721), - [aux_sym_cmd_identifier_token37] = ACTIONS(1721), - [aux_sym_cmd_identifier_token38] = ACTIONS(1709), - [aux_sym_cmd_identifier_token39] = ACTIONS(1721), - [aux_sym_cmd_identifier_token40] = ACTIONS(1721), - [anon_sym_def] = ACTIONS(1709), - [anon_sym_export_DASHenv] = ACTIONS(1709), - [anon_sym_extern] = ACTIONS(1709), - [anon_sym_module] = ACTIONS(1709), - [anon_sym_use] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_error] = ACTIONS(1709), - [anon_sym_DASH2] = ACTIONS(1709), - [anon_sym_break] = ACTIONS(1709), - [anon_sym_continue] = ACTIONS(1709), - [anon_sym_for] = ACTIONS(1709), - [anon_sym_in2] = ACTIONS(1709), - [anon_sym_loop] = ACTIONS(1709), - [anon_sym_make] = ACTIONS(1709), - [anon_sym_while] = ACTIONS(1709), - [anon_sym_do] = ACTIONS(1709), - [anon_sym_if] = ACTIONS(1709), - [anon_sym_else] = ACTIONS(1709), - [anon_sym_match] = ACTIONS(1709), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1709), - [anon_sym_catch] = ACTIONS(1709), - [anon_sym_return] = ACTIONS(1709), - [anon_sym_source] = ACTIONS(1709), - [anon_sym_source_DASHenv] = ACTIONS(1709), - [anon_sym_register] = ACTIONS(1709), - [anon_sym_hide] = ACTIONS(1709), - [anon_sym_hide_DASHenv] = ACTIONS(1709), - [anon_sym_overlay] = ACTIONS(1709), - [anon_sym_as] = ACTIONS(1709), - [anon_sym_LPAREN2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1709), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), - [anon_sym_DOT_DOT2] = ACTIONS(1773), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1775), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1775), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1709), - [aux_sym__val_number_decimal_token2] = ACTIONS(1721), - [aux_sym__val_number_decimal_token3] = ACTIONS(1721), - [aux_sym__val_number_decimal_token4] = ACTIONS(1721), - [aux_sym__val_number_token1] = ACTIONS(1721), - [aux_sym__val_number_token2] = ACTIONS(1721), - [aux_sym__val_number_token3] = ACTIONS(1721), - [aux_sym__val_number_token4] = ACTIONS(1709), - [aux_sym__val_number_token5] = ACTIONS(1709), - [aux_sym__val_number_token6] = ACTIONS(1709), - [sym_filesize_unit] = ACTIONS(1777), - [sym_duration_unit] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym__str_single_quotes] = ACTIONS(1721), - [sym__str_back_ticks] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1781), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1721), - }, - [364] = { - [sym__expr_parenthesized_immediate] = STATE(716), - [sym__immediate_decimal] = STATE(717), - [sym_val_variable] = STATE(716), - [sym_comment] = STATE(364), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_alias] = ACTIONS(1691), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_let_DASHenv] = ACTIONS(1691), - [anon_sym_mut] = ACTIONS(1691), - [anon_sym_const] = ACTIONS(1691), - [aux_sym_cmd_identifier_token1] = ACTIONS(1691), - [aux_sym_cmd_identifier_token2] = ACTIONS(1693), - [aux_sym_cmd_identifier_token3] = ACTIONS(1693), - [aux_sym_cmd_identifier_token4] = ACTIONS(1693), - [aux_sym_cmd_identifier_token5] = ACTIONS(1693), - [aux_sym_cmd_identifier_token6] = ACTIONS(1693), - [aux_sym_cmd_identifier_token7] = ACTIONS(1693), - [aux_sym_cmd_identifier_token8] = ACTIONS(1691), - [aux_sym_cmd_identifier_token9] = ACTIONS(1691), - [aux_sym_cmd_identifier_token10] = ACTIONS(1693), - [aux_sym_cmd_identifier_token11] = ACTIONS(1693), - [aux_sym_cmd_identifier_token12] = ACTIONS(1691), - [aux_sym_cmd_identifier_token13] = ACTIONS(1691), - [aux_sym_cmd_identifier_token14] = ACTIONS(1691), - [aux_sym_cmd_identifier_token15] = ACTIONS(1691), - [aux_sym_cmd_identifier_token16] = ACTIONS(1693), - [aux_sym_cmd_identifier_token17] = ACTIONS(1693), - [aux_sym_cmd_identifier_token18] = ACTIONS(1693), - [aux_sym_cmd_identifier_token19] = ACTIONS(1693), - [aux_sym_cmd_identifier_token20] = ACTIONS(1693), - [aux_sym_cmd_identifier_token21] = ACTIONS(1693), - [aux_sym_cmd_identifier_token22] = ACTIONS(1693), - [aux_sym_cmd_identifier_token23] = ACTIONS(1693), - [aux_sym_cmd_identifier_token24] = ACTIONS(1693), - [aux_sym_cmd_identifier_token25] = ACTIONS(1693), - [aux_sym_cmd_identifier_token26] = ACTIONS(1693), - [aux_sym_cmd_identifier_token27] = ACTIONS(1693), - [aux_sym_cmd_identifier_token28] = ACTIONS(1693), - [aux_sym_cmd_identifier_token29] = ACTIONS(1693), - [aux_sym_cmd_identifier_token30] = ACTIONS(1693), - [aux_sym_cmd_identifier_token31] = ACTIONS(1693), - [aux_sym_cmd_identifier_token32] = ACTIONS(1693), - [aux_sym_cmd_identifier_token33] = ACTIONS(1693), - [aux_sym_cmd_identifier_token34] = ACTIONS(1691), - [aux_sym_cmd_identifier_token35] = ACTIONS(1693), - [aux_sym_cmd_identifier_token36] = ACTIONS(1693), - [aux_sym_cmd_identifier_token37] = ACTIONS(1693), - [aux_sym_cmd_identifier_token38] = ACTIONS(1691), - [aux_sym_cmd_identifier_token39] = ACTIONS(1693), - [aux_sym_cmd_identifier_token40] = ACTIONS(1693), - [anon_sym_def] = ACTIONS(1691), - [anon_sym_export_DASHenv] = ACTIONS(1691), - [anon_sym_extern] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_use] = ACTIONS(1691), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_DOLLAR] = ACTIONS(1679), - [anon_sym_error] = ACTIONS(1691), - [anon_sym_DASH2] = ACTIONS(1691), - [anon_sym_break] = ACTIONS(1691), - [anon_sym_continue] = ACTIONS(1691), - [anon_sym_for] = ACTIONS(1691), - [anon_sym_in2] = ACTIONS(1691), - [anon_sym_loop] = ACTIONS(1691), - [anon_sym_make] = ACTIONS(1691), - [anon_sym_while] = ACTIONS(1691), - [anon_sym_do] = ACTIONS(1691), - [anon_sym_if] = ACTIONS(1691), - [anon_sym_else] = ACTIONS(1691), - [anon_sym_match] = ACTIONS(1691), - [anon_sym_RBRACE] = ACTIONS(1693), - [anon_sym_try] = ACTIONS(1691), - [anon_sym_catch] = ACTIONS(1691), - [anon_sym_return] = ACTIONS(1691), - [anon_sym_source] = ACTIONS(1691), - [anon_sym_source_DASHenv] = ACTIONS(1691), - [anon_sym_register] = ACTIONS(1691), - [anon_sym_hide] = ACTIONS(1691), - [anon_sym_hide_DASHenv] = ACTIONS(1691), - [anon_sym_overlay] = ACTIONS(1691), - [anon_sym_as] = ACTIONS(1691), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1691), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1693), - [aux_sym__immediate_decimal_token1] = ACTIONS(1747), - [aux_sym__immediate_decimal_token3] = ACTIONS(1749), - [aux_sym__immediate_decimal_token4] = ACTIONS(1751), - [aux_sym__immediate_decimal_token5] = ACTIONS(1753), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1693), - [aux_sym__val_number_decimal_token1] = ACTIONS(1691), - [aux_sym__val_number_decimal_token2] = ACTIONS(1691), - [aux_sym__val_number_decimal_token3] = ACTIONS(1691), - [aux_sym__val_number_decimal_token4] = ACTIONS(1691), - [aux_sym__val_number_token1] = ACTIONS(1693), - [aux_sym__val_number_token2] = ACTIONS(1693), - [aux_sym__val_number_token3] = ACTIONS(1693), - [aux_sym__val_number_token4] = ACTIONS(1691), - [aux_sym__val_number_token5] = ACTIONS(1691), - [aux_sym__val_number_token6] = ACTIONS(1691), - [anon_sym_DQUOTE] = ACTIONS(1693), - [sym__str_single_quotes] = ACTIONS(1693), - [sym__str_back_ticks] = ACTIONS(1693), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1693), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1693), - }, - [365] = { - [sym__expr_parenthesized_immediate] = STATE(721), - [sym__immediate_decimal] = STATE(722), - [sym_val_variable] = STATE(721), - [sym_comment] = STATE(365), [anon_sym_export] = ACTIONS(1663), [anon_sym_alias] = ACTIONS(1663), [anon_sym_let] = ACTIONS(1663), @@ -115718,7 +115719,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(1663), [anon_sym_use] = ACTIONS(1663), [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_DOLLAR] = ACTIONS(1679), + [anon_sym_DOLLAR] = ACTIONS(1691), [anon_sym_error] = ACTIONS(1663), [anon_sym_DASH2] = ACTIONS(1663), [anon_sym_break] = ACTIONS(1663), @@ -115743,13 +115744,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(1663), [anon_sym_overlay] = ACTIONS(1663), [anon_sym_as] = ACTIONS(1663), - [anon_sym_LPAREN2] = ACTIONS(1681), + [anon_sym_LPAREN2] = ACTIONS(1693), [anon_sym_PLUS2] = ACTIONS(1663), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1671), - [aux_sym__immediate_decimal_token1] = ACTIONS(1747), - [aux_sym__immediate_decimal_token3] = ACTIONS(1749), - [aux_sym__immediate_decimal_token4] = ACTIONS(1751), - [aux_sym__immediate_decimal_token5] = ACTIONS(1753), + [aux_sym__immediate_decimal_token1] = ACTIONS(1753), + [aux_sym__immediate_decimal_token3] = ACTIONS(1755), + [aux_sym__immediate_decimal_token4] = ACTIONS(1757), + [aux_sym__immediate_decimal_token5] = ACTIONS(1759), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1671), [aux_sym__val_number_decimal_token1] = ACTIONS(1663), [aux_sym__val_number_decimal_token2] = ACTIONS(1663), @@ -115768,136 +115769,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1671), }, - [366] = { - [sym__expr_parenthesized_immediate] = STATE(752), - [sym__immediate_decimal] = STATE(754), - [sym_val_variable] = STATE(752), - [sym_comment] = STATE(366), - [anon_sym_export] = ACTIONS(1705), - [anon_sym_alias] = ACTIONS(1705), - [anon_sym_let] = ACTIONS(1705), - [anon_sym_let_DASHenv] = ACTIONS(1705), - [anon_sym_mut] = ACTIONS(1705), - [anon_sym_const] = ACTIONS(1705), - [aux_sym_cmd_identifier_token1] = ACTIONS(1705), - [aux_sym_cmd_identifier_token2] = ACTIONS(1707), - [aux_sym_cmd_identifier_token3] = ACTIONS(1707), - [aux_sym_cmd_identifier_token4] = ACTIONS(1707), - [aux_sym_cmd_identifier_token5] = ACTIONS(1707), - [aux_sym_cmd_identifier_token6] = ACTIONS(1707), - [aux_sym_cmd_identifier_token7] = ACTIONS(1707), - [aux_sym_cmd_identifier_token8] = ACTIONS(1705), - [aux_sym_cmd_identifier_token9] = ACTIONS(1705), - [aux_sym_cmd_identifier_token10] = ACTIONS(1707), - [aux_sym_cmd_identifier_token11] = ACTIONS(1707), - [aux_sym_cmd_identifier_token12] = ACTIONS(1705), - [aux_sym_cmd_identifier_token13] = ACTIONS(1705), - [aux_sym_cmd_identifier_token14] = ACTIONS(1705), - [aux_sym_cmd_identifier_token15] = ACTIONS(1705), - [aux_sym_cmd_identifier_token16] = ACTIONS(1707), - [aux_sym_cmd_identifier_token17] = ACTIONS(1707), - [aux_sym_cmd_identifier_token18] = ACTIONS(1707), - [aux_sym_cmd_identifier_token19] = ACTIONS(1707), - [aux_sym_cmd_identifier_token20] = ACTIONS(1707), - [aux_sym_cmd_identifier_token21] = ACTIONS(1707), - [aux_sym_cmd_identifier_token22] = ACTIONS(1707), - [aux_sym_cmd_identifier_token23] = ACTIONS(1707), - [aux_sym_cmd_identifier_token24] = ACTIONS(1707), - [aux_sym_cmd_identifier_token25] = ACTIONS(1707), - [aux_sym_cmd_identifier_token26] = ACTIONS(1707), - [aux_sym_cmd_identifier_token27] = ACTIONS(1707), - [aux_sym_cmd_identifier_token28] = ACTIONS(1707), - [aux_sym_cmd_identifier_token29] = ACTIONS(1707), - [aux_sym_cmd_identifier_token30] = ACTIONS(1707), - [aux_sym_cmd_identifier_token31] = ACTIONS(1707), - [aux_sym_cmd_identifier_token32] = ACTIONS(1707), - [aux_sym_cmd_identifier_token33] = ACTIONS(1707), - [aux_sym_cmd_identifier_token34] = ACTIONS(1705), - [aux_sym_cmd_identifier_token35] = ACTIONS(1707), - [aux_sym_cmd_identifier_token36] = ACTIONS(1707), - [aux_sym_cmd_identifier_token37] = ACTIONS(1707), - [aux_sym_cmd_identifier_token38] = ACTIONS(1705), - [aux_sym_cmd_identifier_token39] = ACTIONS(1707), - [aux_sym_cmd_identifier_token40] = ACTIONS(1707), - [anon_sym_def] = ACTIONS(1705), - [anon_sym_export_DASHenv] = ACTIONS(1705), - [anon_sym_extern] = ACTIONS(1705), - [anon_sym_module] = ACTIONS(1705), - [anon_sym_use] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(1679), - [anon_sym_error] = ACTIONS(1705), - [anon_sym_DASH2] = ACTIONS(1705), - [anon_sym_break] = ACTIONS(1705), - [anon_sym_continue] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_in2] = ACTIONS(1705), - [anon_sym_loop] = ACTIONS(1705), - [anon_sym_make] = ACTIONS(1705), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_do] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_else] = ACTIONS(1705), - [anon_sym_match] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_try] = ACTIONS(1705), - [anon_sym_catch] = ACTIONS(1705), - [anon_sym_return] = ACTIONS(1705), - [anon_sym_source] = ACTIONS(1705), - [anon_sym_source_DASHenv] = ACTIONS(1705), - [anon_sym_register] = ACTIONS(1705), - [anon_sym_hide] = ACTIONS(1705), - [anon_sym_hide_DASHenv] = ACTIONS(1705), - [anon_sym_overlay] = ACTIONS(1705), - [anon_sym_as] = ACTIONS(1705), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1707), - [aux_sym__immediate_decimal_token1] = ACTIONS(1747), - [aux_sym__immediate_decimal_token3] = ACTIONS(1749), - [aux_sym__immediate_decimal_token4] = ACTIONS(1751), - [aux_sym__immediate_decimal_token5] = ACTIONS(1753), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1707), - [aux_sym__val_number_decimal_token1] = ACTIONS(1705), - [aux_sym__val_number_decimal_token2] = ACTIONS(1705), - [aux_sym__val_number_decimal_token3] = ACTIONS(1705), - [aux_sym__val_number_decimal_token4] = ACTIONS(1705), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [aux_sym__val_number_token4] = ACTIONS(1705), - [aux_sym__val_number_token5] = ACTIONS(1705), - [aux_sym__val_number_token6] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1707), - [sym__str_single_quotes] = ACTIONS(1707), - [sym__str_back_ticks] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1707), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1707), - }, - [367] = { - [sym_comment] = STATE(367), - [anon_sym_export] = ACTIONS(1763), - [anon_sym_alias] = ACTIONS(1763), - [anon_sym_let] = ACTIONS(1763), - [anon_sym_let_DASHenv] = ACTIONS(1763), - [anon_sym_mut] = ACTIONS(1763), - [anon_sym_const] = ACTIONS(1763), - [aux_sym_cmd_identifier_token1] = ACTIONS(1763), + [363] = { + [sym_comment] = STATE(363), + [anon_sym_export] = ACTIONS(1765), + [anon_sym_alias] = ACTIONS(1765), + [anon_sym_let] = ACTIONS(1765), + [anon_sym_let_DASHenv] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [aux_sym_cmd_identifier_token1] = ACTIONS(1765), [aux_sym_cmd_identifier_token2] = ACTIONS(1765), [aux_sym_cmd_identifier_token3] = ACTIONS(1765), [aux_sym_cmd_identifier_token4] = ACTIONS(1765), [aux_sym_cmd_identifier_token5] = ACTIONS(1765), [aux_sym_cmd_identifier_token6] = ACTIONS(1765), [aux_sym_cmd_identifier_token7] = ACTIONS(1765), - [aux_sym_cmd_identifier_token8] = ACTIONS(1763), - [aux_sym_cmd_identifier_token9] = ACTIONS(1763), + [aux_sym_cmd_identifier_token8] = ACTIONS(1765), + [aux_sym_cmd_identifier_token9] = ACTIONS(1765), [aux_sym_cmd_identifier_token10] = ACTIONS(1765), [aux_sym_cmd_identifier_token11] = ACTIONS(1765), - [aux_sym_cmd_identifier_token12] = ACTIONS(1763), - [aux_sym_cmd_identifier_token13] = ACTIONS(1763), - [aux_sym_cmd_identifier_token14] = ACTIONS(1763), - [aux_sym_cmd_identifier_token15] = ACTIONS(1763), + [aux_sym_cmd_identifier_token12] = ACTIONS(1765), + [aux_sym_cmd_identifier_token13] = ACTIONS(1765), + [aux_sym_cmd_identifier_token14] = ACTIONS(1765), + [aux_sym_cmd_identifier_token15] = ACTIONS(1765), [aux_sym_cmd_identifier_token16] = ACTIONS(1765), [aux_sym_cmd_identifier_token17] = ACTIONS(1765), [aux_sym_cmd_identifier_token18] = ACTIONS(1765), @@ -115916,627 +115810,843 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(1765), [aux_sym_cmd_identifier_token32] = ACTIONS(1765), [aux_sym_cmd_identifier_token33] = ACTIONS(1765), - [aux_sym_cmd_identifier_token34] = ACTIONS(1763), + [aux_sym_cmd_identifier_token34] = ACTIONS(1765), [aux_sym_cmd_identifier_token35] = ACTIONS(1765), [aux_sym_cmd_identifier_token36] = ACTIONS(1765), [aux_sym_cmd_identifier_token37] = ACTIONS(1765), - [aux_sym_cmd_identifier_token38] = ACTIONS(1763), + [aux_sym_cmd_identifier_token38] = ACTIONS(1765), [aux_sym_cmd_identifier_token39] = ACTIONS(1765), [aux_sym_cmd_identifier_token40] = ACTIONS(1765), - [anon_sym_def] = ACTIONS(1763), - [anon_sym_export_DASHenv] = ACTIONS(1763), - [anon_sym_extern] = ACTIONS(1763), - [anon_sym_module] = ACTIONS(1763), - [anon_sym_use] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(1763), + [anon_sym_def] = ACTIONS(1765), + [anon_sym_export_DASHenv] = ACTIONS(1765), + [anon_sym_extern] = ACTIONS(1765), + [anon_sym_module] = ACTIONS(1765), + [anon_sym_use] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1765), [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_error] = ACTIONS(1763), - [anon_sym_DASH2] = ACTIONS(1763), - [anon_sym_break] = ACTIONS(1763), - [anon_sym_continue] = ACTIONS(1763), - [anon_sym_for] = ACTIONS(1763), - [anon_sym_in2] = ACTIONS(1763), - [anon_sym_loop] = ACTIONS(1763), - [anon_sym_make] = ACTIONS(1763), - [anon_sym_while] = ACTIONS(1763), - [anon_sym_do] = ACTIONS(1763), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_else] = ACTIONS(1763), - [anon_sym_match] = ACTIONS(1763), + [anon_sym_error] = ACTIONS(1765), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_in2] = ACTIONS(1765), + [anon_sym_loop] = ACTIONS(1765), + [anon_sym_make] = ACTIONS(1765), + [anon_sym_while] = ACTIONS(1765), + [anon_sym_do] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_else] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_try] = ACTIONS(1763), - [anon_sym_catch] = ACTIONS(1763), - [anon_sym_return] = ACTIONS(1763), - [anon_sym_source] = ACTIONS(1763), - [anon_sym_source_DASHenv] = ACTIONS(1763), - [anon_sym_register] = ACTIONS(1763), - [anon_sym_hide] = ACTIONS(1763), - [anon_sym_hide_DASHenv] = ACTIONS(1763), - [anon_sym_overlay] = ACTIONS(1763), - [anon_sym_as] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(1765), - [anon_sym_PLUS2] = ACTIONS(1763), + [anon_sym_try] = ACTIONS(1765), + [anon_sym_catch] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_source] = ACTIONS(1765), + [anon_sym_source_DASHenv] = ACTIONS(1765), + [anon_sym_register] = ACTIONS(1765), + [anon_sym_hide] = ACTIONS(1765), + [anon_sym_hide_DASHenv] = ACTIONS(1765), + [anon_sym_overlay] = ACTIONS(1765), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1767), + [anon_sym_PLUS2] = ACTIONS(1765), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), - [anon_sym_DOT_DOT2] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), + [anon_sym_DOT_DOT2] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(1769), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), + [aux_sym__immediate_decimal_token2] = ACTIONS(1771), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), - [aux_sym__val_number_decimal_token1] = ACTIONS(1763), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), [aux_sym__val_number_decimal_token2] = ACTIONS(1765), [aux_sym__val_number_decimal_token3] = ACTIONS(1765), [aux_sym__val_number_decimal_token4] = ACTIONS(1765), [aux_sym__val_number_token1] = ACTIONS(1765), [aux_sym__val_number_token2] = ACTIONS(1765), [aux_sym__val_number_token3] = ACTIONS(1765), - [aux_sym__val_number_token4] = ACTIONS(1763), - [aux_sym__val_number_token5] = ACTIONS(1763), - [aux_sym__val_number_token6] = ACTIONS(1763), - [sym_filesize_unit] = ACTIONS(1763), - [sym_duration_unit] = ACTIONS(1763), + [aux_sym__val_number_token4] = ACTIONS(1765), + [aux_sym__val_number_token5] = ACTIONS(1765), + [aux_sym__val_number_token6] = ACTIONS(1765), [anon_sym_DQUOTE] = ACTIONS(1765), [sym__str_single_quotes] = ACTIONS(1765), [sym__str_back_ticks] = ACTIONS(1765), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1763), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1765), - }, - [368] = { - [sym_comment] = STATE(368), - [anon_sym_export] = ACTIONS(1621), - [anon_sym_alias] = ACTIONS(1621), - [anon_sym_let] = ACTIONS(1621), - [anon_sym_let_DASHenv] = ACTIONS(1621), - [anon_sym_mut] = ACTIONS(1621), - [anon_sym_const] = ACTIONS(1621), - [aux_sym_cmd_identifier_token1] = ACTIONS(1621), - [aux_sym_cmd_identifier_token2] = ACTIONS(1623), - [aux_sym_cmd_identifier_token3] = ACTIONS(1623), - [aux_sym_cmd_identifier_token4] = ACTIONS(1623), - [aux_sym_cmd_identifier_token5] = ACTIONS(1623), - [aux_sym_cmd_identifier_token6] = ACTIONS(1623), - [aux_sym_cmd_identifier_token7] = ACTIONS(1623), - [aux_sym_cmd_identifier_token8] = ACTIONS(1621), - [aux_sym_cmd_identifier_token9] = ACTIONS(1621), - [aux_sym_cmd_identifier_token10] = ACTIONS(1623), - [aux_sym_cmd_identifier_token11] = ACTIONS(1623), - [aux_sym_cmd_identifier_token12] = ACTIONS(1621), - [aux_sym_cmd_identifier_token13] = ACTIONS(1621), - [aux_sym_cmd_identifier_token14] = ACTIONS(1621), - [aux_sym_cmd_identifier_token15] = ACTIONS(1621), - [aux_sym_cmd_identifier_token16] = ACTIONS(1623), - [aux_sym_cmd_identifier_token17] = ACTIONS(1623), - [aux_sym_cmd_identifier_token18] = ACTIONS(1623), - [aux_sym_cmd_identifier_token19] = ACTIONS(1623), - [aux_sym_cmd_identifier_token20] = ACTIONS(1623), - [aux_sym_cmd_identifier_token21] = ACTIONS(1623), - [aux_sym_cmd_identifier_token22] = ACTIONS(1623), - [aux_sym_cmd_identifier_token23] = ACTIONS(1623), - [aux_sym_cmd_identifier_token24] = ACTIONS(1623), - [aux_sym_cmd_identifier_token25] = ACTIONS(1623), - [aux_sym_cmd_identifier_token26] = ACTIONS(1623), - [aux_sym_cmd_identifier_token27] = ACTIONS(1623), - [aux_sym_cmd_identifier_token28] = ACTIONS(1623), - [aux_sym_cmd_identifier_token29] = ACTIONS(1623), - [aux_sym_cmd_identifier_token30] = ACTIONS(1623), - [aux_sym_cmd_identifier_token31] = ACTIONS(1623), - [aux_sym_cmd_identifier_token32] = ACTIONS(1623), - [aux_sym_cmd_identifier_token33] = ACTIONS(1623), - [aux_sym_cmd_identifier_token34] = ACTIONS(1621), - [aux_sym_cmd_identifier_token35] = ACTIONS(1623), - [aux_sym_cmd_identifier_token36] = ACTIONS(1623), - [aux_sym_cmd_identifier_token37] = ACTIONS(1623), - [aux_sym_cmd_identifier_token38] = ACTIONS(1621), - [aux_sym_cmd_identifier_token39] = ACTIONS(1623), - [aux_sym_cmd_identifier_token40] = ACTIONS(1623), - [anon_sym_def] = ACTIONS(1621), - [anon_sym_export_DASHenv] = ACTIONS(1621), - [anon_sym_extern] = ACTIONS(1621), - [anon_sym_module] = ACTIONS(1621), - [anon_sym_use] = ACTIONS(1621), - [anon_sym_LPAREN] = ACTIONS(1621), - [anon_sym_DOLLAR] = ACTIONS(1623), - [anon_sym_error] = ACTIONS(1621), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_break] = ACTIONS(1621), - [anon_sym_continue] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1621), - [anon_sym_in2] = ACTIONS(1621), - [anon_sym_loop] = ACTIONS(1621), - [anon_sym_make] = ACTIONS(1621), - [anon_sym_while] = ACTIONS(1621), - [anon_sym_do] = ACTIONS(1621), - [anon_sym_if] = ACTIONS(1621), - [anon_sym_else] = ACTIONS(1621), - [anon_sym_match] = ACTIONS(1621), - [anon_sym_RBRACE] = ACTIONS(1623), - [anon_sym_try] = ACTIONS(1621), - [anon_sym_catch] = ACTIONS(1621), - [anon_sym_return] = ACTIONS(1621), - [anon_sym_source] = ACTIONS(1621), - [anon_sym_source_DASHenv] = ACTIONS(1621), - [anon_sym_register] = ACTIONS(1621), - [anon_sym_hide] = ACTIONS(1621), - [anon_sym_hide_DASHenv] = ACTIONS(1621), - [anon_sym_overlay] = ACTIONS(1621), - [anon_sym_as] = ACTIONS(1621), - [anon_sym_LPAREN2] = ACTIONS(1623), - [anon_sym_PLUS2] = ACTIONS(1621), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1623), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1623), - [aux_sym__val_number_decimal_token1] = ACTIONS(1621), - [aux_sym__val_number_decimal_token2] = ACTIONS(1623), - [aux_sym__val_number_decimal_token3] = ACTIONS(1623), - [aux_sym__val_number_decimal_token4] = ACTIONS(1623), - [aux_sym__val_number_token1] = ACTIONS(1623), - [aux_sym__val_number_token2] = ACTIONS(1623), - [aux_sym__val_number_token3] = ACTIONS(1623), - [aux_sym__val_number_token4] = ACTIONS(1621), - [aux_sym__val_number_token5] = ACTIONS(1621), - [aux_sym__val_number_token6] = ACTIONS(1621), - [sym_filesize_unit] = ACTIONS(1621), - [sym_duration_unit] = ACTIONS(1621), - [anon_sym_DQUOTE] = ACTIONS(1623), - [sym__str_single_quotes] = ACTIONS(1623), - [sym__str_back_ticks] = ACTIONS(1623), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1623), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1621), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1623), - }, - [369] = { - [sym_comment] = STATE(369), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_alias] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_let_DASHenv] = ACTIONS(1755), - [anon_sym_mut] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1755), - [aux_sym_cmd_identifier_token3] = ACTIONS(1755), - [aux_sym_cmd_identifier_token4] = ACTIONS(1755), - [aux_sym_cmd_identifier_token5] = ACTIONS(1755), - [aux_sym_cmd_identifier_token6] = ACTIONS(1755), - [aux_sym_cmd_identifier_token7] = ACTIONS(1755), - [aux_sym_cmd_identifier_token8] = ACTIONS(1755), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1755), - [aux_sym_cmd_identifier_token11] = ACTIONS(1755), - [aux_sym_cmd_identifier_token12] = ACTIONS(1755), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1755), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1755), - [aux_sym_cmd_identifier_token17] = ACTIONS(1755), - [aux_sym_cmd_identifier_token18] = ACTIONS(1755), - [aux_sym_cmd_identifier_token19] = ACTIONS(1755), - [aux_sym_cmd_identifier_token20] = ACTIONS(1755), - [aux_sym_cmd_identifier_token21] = ACTIONS(1755), - [aux_sym_cmd_identifier_token22] = ACTIONS(1755), - [aux_sym_cmd_identifier_token23] = ACTIONS(1755), - [aux_sym_cmd_identifier_token24] = ACTIONS(1755), - [aux_sym_cmd_identifier_token25] = ACTIONS(1755), - [aux_sym_cmd_identifier_token26] = ACTIONS(1755), - [aux_sym_cmd_identifier_token27] = ACTIONS(1755), - [aux_sym_cmd_identifier_token28] = ACTIONS(1755), - [aux_sym_cmd_identifier_token29] = ACTIONS(1755), - [aux_sym_cmd_identifier_token30] = ACTIONS(1755), - [aux_sym_cmd_identifier_token31] = ACTIONS(1755), - [aux_sym_cmd_identifier_token32] = ACTIONS(1755), - [aux_sym_cmd_identifier_token33] = ACTIONS(1755), - [aux_sym_cmd_identifier_token34] = ACTIONS(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1755), - [aux_sym_cmd_identifier_token36] = ACTIONS(1755), - [aux_sym_cmd_identifier_token37] = ACTIONS(1755), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1755), - [aux_sym_cmd_identifier_token40] = ACTIONS(1755), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_export_DASHenv] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_make] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1755), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_source] = ACTIONS(1755), - [anon_sym_source_DASHenv] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_hide] = ACTIONS(1755), - [anon_sym_hide_DASHenv] = ACTIONS(1755), - [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(1761), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1755), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1755), - [aux_sym__val_number_decimal_token3] = ACTIONS(1755), - [aux_sym__val_number_decimal_token4] = ACTIONS(1755), - [aux_sym__val_number_token1] = ACTIONS(1755), - [aux_sym__val_number_token2] = ACTIONS(1755), - [aux_sym__val_number_token3] = ACTIONS(1755), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym__str_single_quotes] = ACTIONS(1755), - [sym__str_back_ticks] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1755), - [sym__entry_separator] = ACTIONS(1757), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), + [sym__entry_separator] = ACTIONS(1767), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1765), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1757), + [sym_raw_string_begin] = ACTIONS(1767), }, - [370] = { - [sym_comment] = STATE(370), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_alias] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_let_DASHenv] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [aux_sym_cmd_identifier_token1] = ACTIONS(1783), - [aux_sym_cmd_identifier_token2] = ACTIONS(1783), - [aux_sym_cmd_identifier_token3] = ACTIONS(1783), - [aux_sym_cmd_identifier_token4] = ACTIONS(1783), - [aux_sym_cmd_identifier_token5] = ACTIONS(1783), - [aux_sym_cmd_identifier_token6] = ACTIONS(1783), - [aux_sym_cmd_identifier_token7] = ACTIONS(1783), - [aux_sym_cmd_identifier_token8] = ACTIONS(1783), - [aux_sym_cmd_identifier_token9] = ACTIONS(1783), - [aux_sym_cmd_identifier_token10] = ACTIONS(1783), - [aux_sym_cmd_identifier_token11] = ACTIONS(1783), - [aux_sym_cmd_identifier_token12] = ACTIONS(1783), - [aux_sym_cmd_identifier_token13] = ACTIONS(1783), - [aux_sym_cmd_identifier_token14] = ACTIONS(1783), - [aux_sym_cmd_identifier_token15] = ACTIONS(1783), - [aux_sym_cmd_identifier_token16] = ACTIONS(1783), - [aux_sym_cmd_identifier_token17] = ACTIONS(1783), - [aux_sym_cmd_identifier_token18] = ACTIONS(1783), - [aux_sym_cmd_identifier_token19] = ACTIONS(1783), - [aux_sym_cmd_identifier_token20] = ACTIONS(1783), - [aux_sym_cmd_identifier_token21] = ACTIONS(1783), - [aux_sym_cmd_identifier_token22] = ACTIONS(1783), - [aux_sym_cmd_identifier_token23] = ACTIONS(1783), - [aux_sym_cmd_identifier_token24] = ACTIONS(1783), - [aux_sym_cmd_identifier_token25] = ACTIONS(1783), - [aux_sym_cmd_identifier_token26] = ACTIONS(1783), - [aux_sym_cmd_identifier_token27] = ACTIONS(1783), - [aux_sym_cmd_identifier_token28] = ACTIONS(1783), - [aux_sym_cmd_identifier_token29] = ACTIONS(1783), - [aux_sym_cmd_identifier_token30] = ACTIONS(1783), - [aux_sym_cmd_identifier_token31] = ACTIONS(1783), - [aux_sym_cmd_identifier_token32] = ACTIONS(1783), - [aux_sym_cmd_identifier_token33] = ACTIONS(1783), - [aux_sym_cmd_identifier_token34] = ACTIONS(1783), - [aux_sym_cmd_identifier_token35] = ACTIONS(1783), - [aux_sym_cmd_identifier_token36] = ACTIONS(1783), - [aux_sym_cmd_identifier_token37] = ACTIONS(1783), - [aux_sym_cmd_identifier_token38] = ACTIONS(1783), - [aux_sym_cmd_identifier_token39] = ACTIONS(1783), - [aux_sym_cmd_identifier_token40] = ACTIONS(1783), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_export_DASHenv] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_error] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_make] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_catch] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_source] = ACTIONS(1783), - [anon_sym_source_DASHenv] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_hide] = ACTIONS(1783), - [anon_sym_hide_DASHenv] = ACTIONS(1783), - [anon_sym_overlay] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1783), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), - [aux_sym__immediate_decimal_token2] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1783), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1783), - [aux_sym__val_number_decimal_token3] = ACTIONS(1783), - [aux_sym__val_number_decimal_token4] = ACTIONS(1783), - [aux_sym__val_number_token1] = ACTIONS(1783), - [aux_sym__val_number_token2] = ACTIONS(1783), - [aux_sym__val_number_token3] = ACTIONS(1783), - [aux_sym__val_number_token4] = ACTIONS(1783), - [aux_sym__val_number_token5] = ACTIONS(1783), - [aux_sym__val_number_token6] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1783), - [sym__str_single_quotes] = ACTIONS(1783), - [sym__str_back_ticks] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1783), - [sym__entry_separator] = ACTIONS(1785), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1785), + [364] = { + [sym__expr_parenthesized_immediate] = STATE(714), + [sym__immediate_decimal] = STATE(715), + [sym_val_variable] = STATE(714), + [sym_comment] = STATE(364), + [anon_sym_export] = ACTIONS(1673), + [anon_sym_alias] = ACTIONS(1673), + [anon_sym_let] = ACTIONS(1673), + [anon_sym_let_DASHenv] = ACTIONS(1673), + [anon_sym_mut] = ACTIONS(1673), + [anon_sym_const] = ACTIONS(1673), + [aux_sym_cmd_identifier_token1] = ACTIONS(1673), + [aux_sym_cmd_identifier_token2] = ACTIONS(1675), + [aux_sym_cmd_identifier_token3] = ACTIONS(1675), + [aux_sym_cmd_identifier_token4] = ACTIONS(1675), + [aux_sym_cmd_identifier_token5] = ACTIONS(1675), + [aux_sym_cmd_identifier_token6] = ACTIONS(1675), + [aux_sym_cmd_identifier_token7] = ACTIONS(1675), + [aux_sym_cmd_identifier_token8] = ACTIONS(1673), + [aux_sym_cmd_identifier_token9] = ACTIONS(1673), + [aux_sym_cmd_identifier_token10] = ACTIONS(1675), + [aux_sym_cmd_identifier_token11] = ACTIONS(1675), + [aux_sym_cmd_identifier_token12] = ACTIONS(1673), + [aux_sym_cmd_identifier_token13] = ACTIONS(1673), + [aux_sym_cmd_identifier_token14] = ACTIONS(1673), + [aux_sym_cmd_identifier_token15] = ACTIONS(1673), + [aux_sym_cmd_identifier_token16] = ACTIONS(1675), + [aux_sym_cmd_identifier_token17] = ACTIONS(1675), + [aux_sym_cmd_identifier_token18] = ACTIONS(1675), + [aux_sym_cmd_identifier_token19] = ACTIONS(1675), + [aux_sym_cmd_identifier_token20] = ACTIONS(1675), + [aux_sym_cmd_identifier_token21] = ACTIONS(1675), + [aux_sym_cmd_identifier_token22] = ACTIONS(1675), + [aux_sym_cmd_identifier_token23] = ACTIONS(1675), + [aux_sym_cmd_identifier_token24] = ACTIONS(1675), + [aux_sym_cmd_identifier_token25] = ACTIONS(1675), + [aux_sym_cmd_identifier_token26] = ACTIONS(1675), + [aux_sym_cmd_identifier_token27] = ACTIONS(1675), + [aux_sym_cmd_identifier_token28] = ACTIONS(1675), + [aux_sym_cmd_identifier_token29] = ACTIONS(1675), + [aux_sym_cmd_identifier_token30] = ACTIONS(1675), + [aux_sym_cmd_identifier_token31] = ACTIONS(1675), + [aux_sym_cmd_identifier_token32] = ACTIONS(1675), + [aux_sym_cmd_identifier_token33] = ACTIONS(1675), + [aux_sym_cmd_identifier_token34] = ACTIONS(1673), + [aux_sym_cmd_identifier_token35] = ACTIONS(1675), + [aux_sym_cmd_identifier_token36] = ACTIONS(1675), + [aux_sym_cmd_identifier_token37] = ACTIONS(1675), + [aux_sym_cmd_identifier_token38] = ACTIONS(1673), + [aux_sym_cmd_identifier_token39] = ACTIONS(1675), + [aux_sym_cmd_identifier_token40] = ACTIONS(1675), + [anon_sym_def] = ACTIONS(1673), + [anon_sym_export_DASHenv] = ACTIONS(1673), + [anon_sym_extern] = ACTIONS(1673), + [anon_sym_module] = ACTIONS(1673), + [anon_sym_use] = ACTIONS(1673), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_DOLLAR] = ACTIONS(1691), + [anon_sym_error] = ACTIONS(1673), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_break] = ACTIONS(1673), + [anon_sym_continue] = ACTIONS(1673), + [anon_sym_for] = ACTIONS(1673), + [anon_sym_in2] = ACTIONS(1673), + [anon_sym_loop] = ACTIONS(1673), + [anon_sym_make] = ACTIONS(1673), + [anon_sym_while] = ACTIONS(1673), + [anon_sym_do] = ACTIONS(1673), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_else] = ACTIONS(1673), + [anon_sym_match] = ACTIONS(1673), + [anon_sym_RBRACE] = ACTIONS(1675), + [anon_sym_try] = ACTIONS(1673), + [anon_sym_catch] = ACTIONS(1673), + [anon_sym_return] = ACTIONS(1673), + [anon_sym_source] = ACTIONS(1673), + [anon_sym_source_DASHenv] = ACTIONS(1673), + [anon_sym_register] = ACTIONS(1673), + [anon_sym_hide] = ACTIONS(1673), + [anon_sym_hide_DASHenv] = ACTIONS(1673), + [anon_sym_overlay] = ACTIONS(1673), + [anon_sym_as] = ACTIONS(1673), + [anon_sym_LPAREN2] = ACTIONS(1693), + [anon_sym_PLUS2] = ACTIONS(1673), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1675), + [aux_sym__immediate_decimal_token1] = ACTIONS(1753), + [aux_sym__immediate_decimal_token3] = ACTIONS(1755), + [aux_sym__immediate_decimal_token4] = ACTIONS(1757), + [aux_sym__immediate_decimal_token5] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1675), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [aux_sym__val_number_decimal_token2] = ACTIONS(1673), + [aux_sym__val_number_decimal_token3] = ACTIONS(1673), + [aux_sym__val_number_decimal_token4] = ACTIONS(1673), + [aux_sym__val_number_token1] = ACTIONS(1675), + [aux_sym__val_number_token2] = ACTIONS(1675), + [aux_sym__val_number_token3] = ACTIONS(1675), + [aux_sym__val_number_token4] = ACTIONS(1673), + [aux_sym__val_number_token5] = ACTIONS(1673), + [aux_sym__val_number_token6] = ACTIONS(1673), + [anon_sym_DQUOTE] = ACTIONS(1675), + [sym__str_single_quotes] = ACTIONS(1675), + [sym__str_back_ticks] = ACTIONS(1675), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1675), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1675), }, - [371] = { - [sym_comment] = STATE(371), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_alias] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_let_DASHenv] = ACTIONS(1755), - [anon_sym_mut] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1757), - [aux_sym_cmd_identifier_token3] = ACTIONS(1757), - [aux_sym_cmd_identifier_token4] = ACTIONS(1757), - [aux_sym_cmd_identifier_token5] = ACTIONS(1757), - [aux_sym_cmd_identifier_token6] = ACTIONS(1757), - [aux_sym_cmd_identifier_token7] = ACTIONS(1757), - [aux_sym_cmd_identifier_token8] = ACTIONS(1755), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1757), - [aux_sym_cmd_identifier_token11] = ACTIONS(1757), - [aux_sym_cmd_identifier_token12] = ACTIONS(1755), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1755), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1757), - [aux_sym_cmd_identifier_token17] = ACTIONS(1757), - [aux_sym_cmd_identifier_token18] = ACTIONS(1757), - [aux_sym_cmd_identifier_token19] = ACTIONS(1757), - [aux_sym_cmd_identifier_token20] = ACTIONS(1757), - [aux_sym_cmd_identifier_token21] = ACTIONS(1757), - [aux_sym_cmd_identifier_token22] = ACTIONS(1757), - [aux_sym_cmd_identifier_token23] = ACTIONS(1757), - [aux_sym_cmd_identifier_token24] = ACTIONS(1757), - [aux_sym_cmd_identifier_token25] = ACTIONS(1757), - [aux_sym_cmd_identifier_token26] = ACTIONS(1757), - [aux_sym_cmd_identifier_token27] = ACTIONS(1757), - [aux_sym_cmd_identifier_token28] = ACTIONS(1757), - [aux_sym_cmd_identifier_token29] = ACTIONS(1757), - [aux_sym_cmd_identifier_token30] = ACTIONS(1757), - [aux_sym_cmd_identifier_token31] = ACTIONS(1757), - [aux_sym_cmd_identifier_token32] = ACTIONS(1757), - [aux_sym_cmd_identifier_token33] = ACTIONS(1757), - [aux_sym_cmd_identifier_token34] = ACTIONS(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [aux_sym_cmd_identifier_token37] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_export_DASHenv] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_make] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_source] = ACTIONS(1755), - [anon_sym_source_DASHenv] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_hide] = ACTIONS(1755), - [anon_sym_hide_DASHenv] = ACTIONS(1755), - [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT] = ACTIONS(1789), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(1791), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1757), + [365] = { + [sym__expr_parenthesized_immediate] = STATE(716), + [sym__immediate_decimal] = STATE(717), + [sym_val_variable] = STATE(716), + [sym_comment] = STATE(365), + [anon_sym_export] = ACTIONS(1677), + [anon_sym_alias] = ACTIONS(1677), + [anon_sym_let] = ACTIONS(1677), + [anon_sym_let_DASHenv] = ACTIONS(1677), + [anon_sym_mut] = ACTIONS(1677), + [anon_sym_const] = ACTIONS(1677), + [aux_sym_cmd_identifier_token1] = ACTIONS(1677), + [aux_sym_cmd_identifier_token2] = ACTIONS(1679), + [aux_sym_cmd_identifier_token3] = ACTIONS(1679), + [aux_sym_cmd_identifier_token4] = ACTIONS(1679), + [aux_sym_cmd_identifier_token5] = ACTIONS(1679), + [aux_sym_cmd_identifier_token6] = ACTIONS(1679), + [aux_sym_cmd_identifier_token7] = ACTIONS(1679), + [aux_sym_cmd_identifier_token8] = ACTIONS(1677), + [aux_sym_cmd_identifier_token9] = ACTIONS(1677), + [aux_sym_cmd_identifier_token10] = ACTIONS(1679), + [aux_sym_cmd_identifier_token11] = ACTIONS(1679), + [aux_sym_cmd_identifier_token12] = ACTIONS(1677), + [aux_sym_cmd_identifier_token13] = ACTIONS(1677), + [aux_sym_cmd_identifier_token14] = ACTIONS(1677), + [aux_sym_cmd_identifier_token15] = ACTIONS(1677), + [aux_sym_cmd_identifier_token16] = ACTIONS(1679), + [aux_sym_cmd_identifier_token17] = ACTIONS(1679), + [aux_sym_cmd_identifier_token18] = ACTIONS(1679), + [aux_sym_cmd_identifier_token19] = ACTIONS(1679), + [aux_sym_cmd_identifier_token20] = ACTIONS(1679), + [aux_sym_cmd_identifier_token21] = ACTIONS(1679), + [aux_sym_cmd_identifier_token22] = ACTIONS(1679), + [aux_sym_cmd_identifier_token23] = ACTIONS(1679), + [aux_sym_cmd_identifier_token24] = ACTIONS(1679), + [aux_sym_cmd_identifier_token25] = ACTIONS(1679), + [aux_sym_cmd_identifier_token26] = ACTIONS(1679), + [aux_sym_cmd_identifier_token27] = ACTIONS(1679), + [aux_sym_cmd_identifier_token28] = ACTIONS(1679), + [aux_sym_cmd_identifier_token29] = ACTIONS(1679), + [aux_sym_cmd_identifier_token30] = ACTIONS(1679), + [aux_sym_cmd_identifier_token31] = ACTIONS(1679), + [aux_sym_cmd_identifier_token32] = ACTIONS(1679), + [aux_sym_cmd_identifier_token33] = ACTIONS(1679), + [aux_sym_cmd_identifier_token34] = ACTIONS(1677), + [aux_sym_cmd_identifier_token35] = ACTIONS(1679), + [aux_sym_cmd_identifier_token36] = ACTIONS(1679), + [aux_sym_cmd_identifier_token37] = ACTIONS(1679), + [aux_sym_cmd_identifier_token38] = ACTIONS(1677), + [aux_sym_cmd_identifier_token39] = ACTIONS(1679), + [aux_sym_cmd_identifier_token40] = ACTIONS(1679), + [anon_sym_def] = ACTIONS(1677), + [anon_sym_export_DASHenv] = ACTIONS(1677), + [anon_sym_extern] = ACTIONS(1677), + [anon_sym_module] = ACTIONS(1677), + [anon_sym_use] = ACTIONS(1677), + [anon_sym_LPAREN] = ACTIONS(1677), + [anon_sym_DOLLAR] = ACTIONS(1691), + [anon_sym_error] = ACTIONS(1677), + [anon_sym_DASH2] = ACTIONS(1677), + [anon_sym_break] = ACTIONS(1677), + [anon_sym_continue] = ACTIONS(1677), + [anon_sym_for] = ACTIONS(1677), + [anon_sym_in2] = ACTIONS(1677), + [anon_sym_loop] = ACTIONS(1677), + [anon_sym_make] = ACTIONS(1677), + [anon_sym_while] = ACTIONS(1677), + [anon_sym_do] = ACTIONS(1677), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_else] = ACTIONS(1677), + [anon_sym_match] = ACTIONS(1677), + [anon_sym_RBRACE] = ACTIONS(1679), + [anon_sym_try] = ACTIONS(1677), + [anon_sym_catch] = ACTIONS(1677), + [anon_sym_return] = ACTIONS(1677), + [anon_sym_source] = ACTIONS(1677), + [anon_sym_source_DASHenv] = ACTIONS(1677), + [anon_sym_register] = ACTIONS(1677), + [anon_sym_hide] = ACTIONS(1677), + [anon_sym_hide_DASHenv] = ACTIONS(1677), + [anon_sym_overlay] = ACTIONS(1677), + [anon_sym_as] = ACTIONS(1677), + [anon_sym_LPAREN2] = ACTIONS(1693), + [anon_sym_PLUS2] = ACTIONS(1677), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1679), + [aux_sym__immediate_decimal_token1] = ACTIONS(1753), + [aux_sym__immediate_decimal_token3] = ACTIONS(1755), + [aux_sym__immediate_decimal_token4] = ACTIONS(1757), + [aux_sym__immediate_decimal_token5] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1679), + [aux_sym__val_number_decimal_token1] = ACTIONS(1677), + [aux_sym__val_number_decimal_token2] = ACTIONS(1677), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1677), + [aux_sym__val_number_token1] = ACTIONS(1679), + [aux_sym__val_number_token2] = ACTIONS(1679), + [aux_sym__val_number_token3] = ACTIONS(1679), + [aux_sym__val_number_token4] = ACTIONS(1677), + [aux_sym__val_number_token5] = ACTIONS(1677), + [aux_sym__val_number_token6] = ACTIONS(1677), + [anon_sym_DQUOTE] = ACTIONS(1679), + [sym__str_single_quotes] = ACTIONS(1679), + [sym__str_back_ticks] = ACTIONS(1679), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1679), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1679), }, - [372] = { - [sym_cell_path] = STATE(552), - [sym_path] = STATE(460), - [sym_comment] = STATE(372), - [aux_sym_cell_path_repeat1] = STATE(380), - [anon_sym_export] = ACTIONS(1769), - [anon_sym_alias] = ACTIONS(1769), - [anon_sym_let] = ACTIONS(1769), - [anon_sym_let_DASHenv] = ACTIONS(1769), - [anon_sym_mut] = ACTIONS(1769), - [anon_sym_const] = ACTIONS(1769), - [aux_sym_cmd_identifier_token1] = ACTIONS(1769), - [aux_sym_cmd_identifier_token2] = ACTIONS(1771), - [aux_sym_cmd_identifier_token3] = ACTIONS(1771), - [aux_sym_cmd_identifier_token4] = ACTIONS(1771), - [aux_sym_cmd_identifier_token5] = ACTIONS(1771), - [aux_sym_cmd_identifier_token6] = ACTIONS(1771), - [aux_sym_cmd_identifier_token7] = ACTIONS(1771), - [aux_sym_cmd_identifier_token8] = ACTIONS(1769), - [aux_sym_cmd_identifier_token9] = ACTIONS(1769), - [aux_sym_cmd_identifier_token10] = ACTIONS(1771), - [aux_sym_cmd_identifier_token11] = ACTIONS(1771), - [aux_sym_cmd_identifier_token12] = ACTIONS(1769), - [aux_sym_cmd_identifier_token13] = ACTIONS(1769), - [aux_sym_cmd_identifier_token14] = ACTIONS(1769), - [aux_sym_cmd_identifier_token15] = ACTIONS(1769), - [aux_sym_cmd_identifier_token16] = ACTIONS(1771), - [aux_sym_cmd_identifier_token17] = ACTIONS(1771), - [aux_sym_cmd_identifier_token18] = ACTIONS(1771), - [aux_sym_cmd_identifier_token19] = ACTIONS(1771), - [aux_sym_cmd_identifier_token20] = ACTIONS(1771), - [aux_sym_cmd_identifier_token21] = ACTIONS(1771), - [aux_sym_cmd_identifier_token22] = ACTIONS(1771), - [aux_sym_cmd_identifier_token23] = ACTIONS(1771), - [aux_sym_cmd_identifier_token24] = ACTIONS(1771), - [aux_sym_cmd_identifier_token25] = ACTIONS(1771), - [aux_sym_cmd_identifier_token26] = ACTIONS(1771), - [aux_sym_cmd_identifier_token27] = ACTIONS(1771), - [aux_sym_cmd_identifier_token28] = ACTIONS(1771), - [aux_sym_cmd_identifier_token29] = ACTIONS(1771), - [aux_sym_cmd_identifier_token30] = ACTIONS(1771), - [aux_sym_cmd_identifier_token31] = ACTIONS(1771), - [aux_sym_cmd_identifier_token32] = ACTIONS(1771), - [aux_sym_cmd_identifier_token33] = ACTIONS(1771), - [aux_sym_cmd_identifier_token34] = ACTIONS(1769), - [aux_sym_cmd_identifier_token35] = ACTIONS(1771), - [aux_sym_cmd_identifier_token36] = ACTIONS(1771), - [aux_sym_cmd_identifier_token37] = ACTIONS(1771), - [aux_sym_cmd_identifier_token38] = ACTIONS(1769), - [aux_sym_cmd_identifier_token39] = ACTIONS(1771), - [aux_sym_cmd_identifier_token40] = ACTIONS(1771), - [anon_sym_def] = ACTIONS(1769), - [anon_sym_export_DASHenv] = ACTIONS(1769), - [anon_sym_extern] = ACTIONS(1769), - [anon_sym_module] = ACTIONS(1769), - [anon_sym_use] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1771), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_error] = ACTIONS(1769), - [anon_sym_DASH2] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_in2] = ACTIONS(1769), - [anon_sym_loop] = ACTIONS(1769), - [anon_sym_make] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1769), - [anon_sym_do] = ACTIONS(1769), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_else] = ACTIONS(1769), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_RBRACE] = ACTIONS(1771), - [anon_sym_try] = ACTIONS(1769), - [anon_sym_catch] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_source] = ACTIONS(1769), - [anon_sym_source_DASHenv] = ACTIONS(1769), - [anon_sym_register] = ACTIONS(1769), - [anon_sym_hide] = ACTIONS(1769), - [anon_sym_hide_DASHenv] = ACTIONS(1769), - [anon_sym_overlay] = ACTIONS(1769), - [anon_sym_as] = ACTIONS(1769), - [anon_sym_PLUS2] = ACTIONS(1769), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1771), - [anon_sym_DOT_DOT2] = ACTIONS(1769), - [anon_sym_DOT] = ACTIONS(1793), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1771), - [aux_sym__val_number_decimal_token1] = ACTIONS(1769), - [aux_sym__val_number_decimal_token2] = ACTIONS(1771), - [aux_sym__val_number_decimal_token3] = ACTIONS(1771), - [aux_sym__val_number_decimal_token4] = ACTIONS(1771), - [aux_sym__val_number_token1] = ACTIONS(1771), - [aux_sym__val_number_token2] = ACTIONS(1771), - [aux_sym__val_number_token3] = ACTIONS(1771), - [aux_sym__val_number_token4] = ACTIONS(1769), - [aux_sym__val_number_token5] = ACTIONS(1769), - [aux_sym__val_number_token6] = ACTIONS(1769), - [anon_sym_DQUOTE] = ACTIONS(1771), - [sym__str_single_quotes] = ACTIONS(1771), - [sym__str_back_ticks] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1771), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1771), + [366] = { + [sym__expr_parenthesized_immediate] = STATE(7536), + [sym_comment] = STATE(366), + [anon_sym_export] = ACTIONS(1707), + [anon_sym_alias] = ACTIONS(1707), + [anon_sym_let] = ACTIONS(1707), + [anon_sym_let_DASHenv] = ACTIONS(1707), + [anon_sym_mut] = ACTIONS(1707), + [anon_sym_const] = ACTIONS(1707), + [aux_sym_cmd_identifier_token1] = ACTIONS(1707), + [aux_sym_cmd_identifier_token2] = ACTIONS(1719), + [aux_sym_cmd_identifier_token3] = ACTIONS(1719), + [aux_sym_cmd_identifier_token4] = ACTIONS(1719), + [aux_sym_cmd_identifier_token5] = ACTIONS(1719), + [aux_sym_cmd_identifier_token6] = ACTIONS(1719), + [aux_sym_cmd_identifier_token7] = ACTIONS(1719), + [aux_sym_cmd_identifier_token8] = ACTIONS(1707), + [aux_sym_cmd_identifier_token9] = ACTIONS(1707), + [aux_sym_cmd_identifier_token10] = ACTIONS(1719), + [aux_sym_cmd_identifier_token11] = ACTIONS(1719), + [aux_sym_cmd_identifier_token12] = ACTIONS(1707), + [aux_sym_cmd_identifier_token13] = ACTIONS(1707), + [aux_sym_cmd_identifier_token14] = ACTIONS(1707), + [aux_sym_cmd_identifier_token15] = ACTIONS(1707), + [aux_sym_cmd_identifier_token16] = ACTIONS(1719), + [aux_sym_cmd_identifier_token17] = ACTIONS(1719), + [aux_sym_cmd_identifier_token18] = ACTIONS(1719), + [aux_sym_cmd_identifier_token19] = ACTIONS(1719), + [aux_sym_cmd_identifier_token20] = ACTIONS(1719), + [aux_sym_cmd_identifier_token21] = ACTIONS(1719), + [aux_sym_cmd_identifier_token22] = ACTIONS(1719), + [aux_sym_cmd_identifier_token23] = ACTIONS(1719), + [aux_sym_cmd_identifier_token24] = ACTIONS(1719), + [aux_sym_cmd_identifier_token25] = ACTIONS(1719), + [aux_sym_cmd_identifier_token26] = ACTIONS(1719), + [aux_sym_cmd_identifier_token27] = ACTIONS(1719), + [aux_sym_cmd_identifier_token28] = ACTIONS(1719), + [aux_sym_cmd_identifier_token29] = ACTIONS(1719), + [aux_sym_cmd_identifier_token30] = ACTIONS(1719), + [aux_sym_cmd_identifier_token31] = ACTIONS(1719), + [aux_sym_cmd_identifier_token32] = ACTIONS(1719), + [aux_sym_cmd_identifier_token33] = ACTIONS(1719), + [aux_sym_cmd_identifier_token34] = ACTIONS(1707), + [aux_sym_cmd_identifier_token35] = ACTIONS(1719), + [aux_sym_cmd_identifier_token36] = ACTIONS(1719), + [aux_sym_cmd_identifier_token37] = ACTIONS(1719), + [aux_sym_cmd_identifier_token38] = ACTIONS(1707), + [aux_sym_cmd_identifier_token39] = ACTIONS(1719), + [aux_sym_cmd_identifier_token40] = ACTIONS(1719), + [anon_sym_def] = ACTIONS(1707), + [anon_sym_export_DASHenv] = ACTIONS(1707), + [anon_sym_extern] = ACTIONS(1707), + [anon_sym_module] = ACTIONS(1707), + [anon_sym_use] = ACTIONS(1707), + [anon_sym_LPAREN] = ACTIONS(1707), + [anon_sym_DOLLAR] = ACTIONS(1719), + [anon_sym_error] = ACTIONS(1707), + [anon_sym_DASH2] = ACTIONS(1707), + [anon_sym_break] = ACTIONS(1707), + [anon_sym_continue] = ACTIONS(1707), + [anon_sym_for] = ACTIONS(1707), + [anon_sym_in2] = ACTIONS(1707), + [anon_sym_loop] = ACTIONS(1707), + [anon_sym_make] = ACTIONS(1707), + [anon_sym_while] = ACTIONS(1707), + [anon_sym_do] = ACTIONS(1707), + [anon_sym_if] = ACTIONS(1707), + [anon_sym_else] = ACTIONS(1707), + [anon_sym_match] = ACTIONS(1707), + [anon_sym_RBRACE] = ACTIONS(1719), + [anon_sym_try] = ACTIONS(1707), + [anon_sym_catch] = ACTIONS(1707), + [anon_sym_return] = ACTIONS(1707), + [anon_sym_source] = ACTIONS(1707), + [anon_sym_source_DASHenv] = ACTIONS(1707), + [anon_sym_register] = ACTIONS(1707), + [anon_sym_hide] = ACTIONS(1707), + [anon_sym_hide_DASHenv] = ACTIONS(1707), + [anon_sym_overlay] = ACTIONS(1707), + [anon_sym_as] = ACTIONS(1707), + [anon_sym_LPAREN2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1719), + [anon_sym_DOT_DOT2] = ACTIONS(1773), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1775), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1775), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1719), + [aux_sym__val_number_decimal_token1] = ACTIONS(1707), + [aux_sym__val_number_decimal_token2] = ACTIONS(1719), + [aux_sym__val_number_decimal_token3] = ACTIONS(1719), + [aux_sym__val_number_decimal_token4] = ACTIONS(1719), + [aux_sym__val_number_token1] = ACTIONS(1719), + [aux_sym__val_number_token2] = ACTIONS(1719), + [aux_sym__val_number_token3] = ACTIONS(1719), + [aux_sym__val_number_token4] = ACTIONS(1707), + [aux_sym__val_number_token5] = ACTIONS(1707), + [aux_sym__val_number_token6] = ACTIONS(1707), + [sym_filesize_unit] = ACTIONS(1777), + [sym_duration_unit] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1719), + [sym__str_single_quotes] = ACTIONS(1719), + [sym__str_back_ticks] = ACTIONS(1719), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1719), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1781), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1719), }, - [373] = { - [sym_cell_path] = STATE(562), - [sym_path] = STATE(460), - [sym_comment] = STATE(373), - [aux_sym_cell_path_repeat1] = STATE(380), - [anon_sym_export] = ACTIONS(1735), - [anon_sym_alias] = ACTIONS(1735), - [anon_sym_let] = ACTIONS(1735), - [anon_sym_let_DASHenv] = ACTIONS(1735), - [anon_sym_mut] = ACTIONS(1735), - [anon_sym_const] = ACTIONS(1735), - [aux_sym_cmd_identifier_token1] = ACTIONS(1735), + [367] = { + [sym_comment] = STATE(367), + [anon_sym_export] = ACTIONS(1681), + [anon_sym_alias] = ACTIONS(1681), + [anon_sym_let] = ACTIONS(1681), + [anon_sym_let_DASHenv] = ACTIONS(1681), + [anon_sym_mut] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1681), + [aux_sym_cmd_identifier_token1] = ACTIONS(1681), + [aux_sym_cmd_identifier_token2] = ACTIONS(1683), + [aux_sym_cmd_identifier_token3] = ACTIONS(1683), + [aux_sym_cmd_identifier_token4] = ACTIONS(1683), + [aux_sym_cmd_identifier_token5] = ACTIONS(1683), + [aux_sym_cmd_identifier_token6] = ACTIONS(1683), + [aux_sym_cmd_identifier_token7] = ACTIONS(1683), + [aux_sym_cmd_identifier_token8] = ACTIONS(1681), + [aux_sym_cmd_identifier_token9] = ACTIONS(1681), + [aux_sym_cmd_identifier_token10] = ACTIONS(1683), + [aux_sym_cmd_identifier_token11] = ACTIONS(1683), + [aux_sym_cmd_identifier_token12] = ACTIONS(1681), + [aux_sym_cmd_identifier_token13] = ACTIONS(1681), + [aux_sym_cmd_identifier_token14] = ACTIONS(1681), + [aux_sym_cmd_identifier_token15] = ACTIONS(1681), + [aux_sym_cmd_identifier_token16] = ACTIONS(1683), + [aux_sym_cmd_identifier_token17] = ACTIONS(1683), + [aux_sym_cmd_identifier_token18] = ACTIONS(1683), + [aux_sym_cmd_identifier_token19] = ACTIONS(1683), + [aux_sym_cmd_identifier_token20] = ACTIONS(1683), + [aux_sym_cmd_identifier_token21] = ACTIONS(1683), + [aux_sym_cmd_identifier_token22] = ACTIONS(1683), + [aux_sym_cmd_identifier_token23] = ACTIONS(1683), + [aux_sym_cmd_identifier_token24] = ACTIONS(1683), + [aux_sym_cmd_identifier_token25] = ACTIONS(1683), + [aux_sym_cmd_identifier_token26] = ACTIONS(1683), + [aux_sym_cmd_identifier_token27] = ACTIONS(1683), + [aux_sym_cmd_identifier_token28] = ACTIONS(1683), + [aux_sym_cmd_identifier_token29] = ACTIONS(1683), + [aux_sym_cmd_identifier_token30] = ACTIONS(1683), + [aux_sym_cmd_identifier_token31] = ACTIONS(1683), + [aux_sym_cmd_identifier_token32] = ACTIONS(1683), + [aux_sym_cmd_identifier_token33] = ACTIONS(1683), + [aux_sym_cmd_identifier_token34] = ACTIONS(1681), + [aux_sym_cmd_identifier_token35] = ACTIONS(1683), + [aux_sym_cmd_identifier_token36] = ACTIONS(1683), + [aux_sym_cmd_identifier_token37] = ACTIONS(1683), + [aux_sym_cmd_identifier_token38] = ACTIONS(1681), + [aux_sym_cmd_identifier_token39] = ACTIONS(1683), + [aux_sym_cmd_identifier_token40] = ACTIONS(1683), + [anon_sym_def] = ACTIONS(1681), + [anon_sym_export_DASHenv] = ACTIONS(1681), + [anon_sym_extern] = ACTIONS(1681), + [anon_sym_module] = ACTIONS(1681), + [anon_sym_use] = ACTIONS(1681), + [anon_sym_LPAREN] = ACTIONS(1681), + [anon_sym_DOLLAR] = ACTIONS(1683), + [anon_sym_error] = ACTIONS(1681), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_break] = ACTIONS(1681), + [anon_sym_continue] = ACTIONS(1681), + [anon_sym_for] = ACTIONS(1681), + [anon_sym_in2] = ACTIONS(1681), + [anon_sym_loop] = ACTIONS(1681), + [anon_sym_make] = ACTIONS(1681), + [anon_sym_while] = ACTIONS(1681), + [anon_sym_do] = ACTIONS(1681), + [anon_sym_if] = ACTIONS(1681), + [anon_sym_else] = ACTIONS(1681), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_RBRACE] = ACTIONS(1683), + [anon_sym_try] = ACTIONS(1681), + [anon_sym_catch] = ACTIONS(1681), + [anon_sym_return] = ACTIONS(1681), + [anon_sym_source] = ACTIONS(1681), + [anon_sym_source_DASHenv] = ACTIONS(1681), + [anon_sym_register] = ACTIONS(1681), + [anon_sym_hide] = ACTIONS(1681), + [anon_sym_hide_DASHenv] = ACTIONS(1681), + [anon_sym_overlay] = ACTIONS(1681), + [anon_sym_as] = ACTIONS(1681), + [anon_sym_LPAREN2] = ACTIONS(1683), + [anon_sym_PLUS2] = ACTIONS(1681), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1683), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1683), + [aux_sym__val_number_decimal_token1] = ACTIONS(1681), + [aux_sym__val_number_decimal_token2] = ACTIONS(1683), + [aux_sym__val_number_decimal_token3] = ACTIONS(1683), + [aux_sym__val_number_decimal_token4] = ACTIONS(1683), + [aux_sym__val_number_token1] = ACTIONS(1683), + [aux_sym__val_number_token2] = ACTIONS(1683), + [aux_sym__val_number_token3] = ACTIONS(1683), + [aux_sym__val_number_token4] = ACTIONS(1681), + [aux_sym__val_number_token5] = ACTIONS(1681), + [aux_sym__val_number_token6] = ACTIONS(1681), + [sym_filesize_unit] = ACTIONS(1681), + [sym_duration_unit] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1683), + [sym__str_single_quotes] = ACTIONS(1683), + [sym__str_back_ticks] = ACTIONS(1683), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1683), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1681), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1683), + }, + [368] = { + [sym_comment] = STATE(368), + [anon_sym_export] = ACTIONS(1573), + [anon_sym_alias] = ACTIONS(1573), + [anon_sym_let] = ACTIONS(1573), + [anon_sym_let_DASHenv] = ACTIONS(1573), + [anon_sym_mut] = ACTIONS(1573), + [anon_sym_const] = ACTIONS(1573), + [aux_sym_cmd_identifier_token1] = ACTIONS(1573), + [aux_sym_cmd_identifier_token2] = ACTIONS(1575), + [aux_sym_cmd_identifier_token3] = ACTIONS(1575), + [aux_sym_cmd_identifier_token4] = ACTIONS(1575), + [aux_sym_cmd_identifier_token5] = ACTIONS(1575), + [aux_sym_cmd_identifier_token6] = ACTIONS(1575), + [aux_sym_cmd_identifier_token7] = ACTIONS(1575), + [aux_sym_cmd_identifier_token8] = ACTIONS(1573), + [aux_sym_cmd_identifier_token9] = ACTIONS(1573), + [aux_sym_cmd_identifier_token10] = ACTIONS(1575), + [aux_sym_cmd_identifier_token11] = ACTIONS(1575), + [aux_sym_cmd_identifier_token12] = ACTIONS(1573), + [aux_sym_cmd_identifier_token13] = ACTIONS(1573), + [aux_sym_cmd_identifier_token14] = ACTIONS(1573), + [aux_sym_cmd_identifier_token15] = ACTIONS(1573), + [aux_sym_cmd_identifier_token16] = ACTIONS(1575), + [aux_sym_cmd_identifier_token17] = ACTIONS(1575), + [aux_sym_cmd_identifier_token18] = ACTIONS(1575), + [aux_sym_cmd_identifier_token19] = ACTIONS(1575), + [aux_sym_cmd_identifier_token20] = ACTIONS(1575), + [aux_sym_cmd_identifier_token21] = ACTIONS(1575), + [aux_sym_cmd_identifier_token22] = ACTIONS(1575), + [aux_sym_cmd_identifier_token23] = ACTIONS(1575), + [aux_sym_cmd_identifier_token24] = ACTIONS(1575), + [aux_sym_cmd_identifier_token25] = ACTIONS(1575), + [aux_sym_cmd_identifier_token26] = ACTIONS(1575), + [aux_sym_cmd_identifier_token27] = ACTIONS(1575), + [aux_sym_cmd_identifier_token28] = ACTIONS(1575), + [aux_sym_cmd_identifier_token29] = ACTIONS(1575), + [aux_sym_cmd_identifier_token30] = ACTIONS(1575), + [aux_sym_cmd_identifier_token31] = ACTIONS(1575), + [aux_sym_cmd_identifier_token32] = ACTIONS(1575), + [aux_sym_cmd_identifier_token33] = ACTIONS(1575), + [aux_sym_cmd_identifier_token34] = ACTIONS(1573), + [aux_sym_cmd_identifier_token35] = ACTIONS(1575), + [aux_sym_cmd_identifier_token36] = ACTIONS(1575), + [aux_sym_cmd_identifier_token37] = ACTIONS(1575), + [aux_sym_cmd_identifier_token38] = ACTIONS(1573), + [aux_sym_cmd_identifier_token39] = ACTIONS(1575), + [aux_sym_cmd_identifier_token40] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(1573), + [anon_sym_export_DASHenv] = ACTIONS(1573), + [anon_sym_extern] = ACTIONS(1573), + [anon_sym_module] = ACTIONS(1573), + [anon_sym_use] = ACTIONS(1573), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_DOLLAR] = ACTIONS(1575), + [anon_sym_error] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_loop] = ACTIONS(1573), + [anon_sym_make] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_else] = ACTIONS(1573), + [anon_sym_match] = ACTIONS(1573), + [anon_sym_RBRACE] = ACTIONS(1575), + [anon_sym_try] = ACTIONS(1573), + [anon_sym_catch] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_source] = ACTIONS(1573), + [anon_sym_source_DASHenv] = ACTIONS(1573), + [anon_sym_register] = ACTIONS(1573), + [anon_sym_hide] = ACTIONS(1573), + [anon_sym_hide_DASHenv] = ACTIONS(1573), + [anon_sym_overlay] = ACTIONS(1573), + [anon_sym_as] = ACTIONS(1573), + [anon_sym_LPAREN2] = ACTIONS(1575), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1575), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1575), + [aux_sym__val_number_decimal_token1] = ACTIONS(1573), + [aux_sym__val_number_decimal_token2] = ACTIONS(1575), + [aux_sym__val_number_decimal_token3] = ACTIONS(1575), + [aux_sym__val_number_decimal_token4] = ACTIONS(1575), + [aux_sym__val_number_token1] = ACTIONS(1575), + [aux_sym__val_number_token2] = ACTIONS(1575), + [aux_sym__val_number_token3] = ACTIONS(1575), + [aux_sym__val_number_token4] = ACTIONS(1573), + [aux_sym__val_number_token5] = ACTIONS(1573), + [aux_sym__val_number_token6] = ACTIONS(1573), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1573), + [anon_sym_DQUOTE] = ACTIONS(1575), + [sym__str_single_quotes] = ACTIONS(1575), + [sym__str_back_ticks] = ACTIONS(1575), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1575), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1573), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1575), + }, + [369] = { + [sym_cell_path] = STATE(557), + [sym_path] = STATE(497), + [sym_comment] = STATE(369), + [aux_sym_cell_path_repeat1] = STATE(388), + [anon_sym_export] = ACTIONS(1747), + [anon_sym_alias] = ACTIONS(1747), + [anon_sym_let] = ACTIONS(1747), + [anon_sym_let_DASHenv] = ACTIONS(1747), + [anon_sym_mut] = ACTIONS(1747), + [anon_sym_const] = ACTIONS(1747), + [aux_sym_cmd_identifier_token1] = ACTIONS(1747), + [aux_sym_cmd_identifier_token2] = ACTIONS(1749), + [aux_sym_cmd_identifier_token3] = ACTIONS(1749), + [aux_sym_cmd_identifier_token4] = ACTIONS(1749), + [aux_sym_cmd_identifier_token5] = ACTIONS(1749), + [aux_sym_cmd_identifier_token6] = ACTIONS(1749), + [aux_sym_cmd_identifier_token7] = ACTIONS(1749), + [aux_sym_cmd_identifier_token8] = ACTIONS(1747), + [aux_sym_cmd_identifier_token9] = ACTIONS(1747), + [aux_sym_cmd_identifier_token10] = ACTIONS(1749), + [aux_sym_cmd_identifier_token11] = ACTIONS(1749), + [aux_sym_cmd_identifier_token12] = ACTIONS(1747), + [aux_sym_cmd_identifier_token13] = ACTIONS(1747), + [aux_sym_cmd_identifier_token14] = ACTIONS(1747), + [aux_sym_cmd_identifier_token15] = ACTIONS(1747), + [aux_sym_cmd_identifier_token16] = ACTIONS(1749), + [aux_sym_cmd_identifier_token17] = ACTIONS(1749), + [aux_sym_cmd_identifier_token18] = ACTIONS(1749), + [aux_sym_cmd_identifier_token19] = ACTIONS(1749), + [aux_sym_cmd_identifier_token20] = ACTIONS(1749), + [aux_sym_cmd_identifier_token21] = ACTIONS(1749), + [aux_sym_cmd_identifier_token22] = ACTIONS(1749), + [aux_sym_cmd_identifier_token23] = ACTIONS(1749), + [aux_sym_cmd_identifier_token24] = ACTIONS(1749), + [aux_sym_cmd_identifier_token25] = ACTIONS(1749), + [aux_sym_cmd_identifier_token26] = ACTIONS(1749), + [aux_sym_cmd_identifier_token27] = ACTIONS(1749), + [aux_sym_cmd_identifier_token28] = ACTIONS(1749), + [aux_sym_cmd_identifier_token29] = ACTIONS(1749), + [aux_sym_cmd_identifier_token30] = ACTIONS(1749), + [aux_sym_cmd_identifier_token31] = ACTIONS(1749), + [aux_sym_cmd_identifier_token32] = ACTIONS(1749), + [aux_sym_cmd_identifier_token33] = ACTIONS(1749), + [aux_sym_cmd_identifier_token34] = ACTIONS(1747), + [aux_sym_cmd_identifier_token35] = ACTIONS(1749), + [aux_sym_cmd_identifier_token36] = ACTIONS(1749), + [aux_sym_cmd_identifier_token37] = ACTIONS(1749), + [aux_sym_cmd_identifier_token38] = ACTIONS(1747), + [aux_sym_cmd_identifier_token39] = ACTIONS(1749), + [aux_sym_cmd_identifier_token40] = ACTIONS(1749), + [anon_sym_def] = ACTIONS(1747), + [anon_sym_export_DASHenv] = ACTIONS(1747), + [anon_sym_extern] = ACTIONS(1747), + [anon_sym_module] = ACTIONS(1747), + [anon_sym_use] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_error] = ACTIONS(1747), + [anon_sym_DASH2] = ACTIONS(1747), + [anon_sym_break] = ACTIONS(1747), + [anon_sym_continue] = ACTIONS(1747), + [anon_sym_for] = ACTIONS(1747), + [anon_sym_in2] = ACTIONS(1747), + [anon_sym_loop] = ACTIONS(1747), + [anon_sym_make] = ACTIONS(1747), + [anon_sym_while] = ACTIONS(1747), + [anon_sym_do] = ACTIONS(1747), + [anon_sym_if] = ACTIONS(1747), + [anon_sym_else] = ACTIONS(1747), + [anon_sym_match] = ACTIONS(1747), + [anon_sym_RBRACE] = ACTIONS(1749), + [anon_sym_try] = ACTIONS(1747), + [anon_sym_catch] = ACTIONS(1747), + [anon_sym_return] = ACTIONS(1747), + [anon_sym_source] = ACTIONS(1747), + [anon_sym_source_DASHenv] = ACTIONS(1747), + [anon_sym_register] = ACTIONS(1747), + [anon_sym_hide] = ACTIONS(1747), + [anon_sym_hide_DASHenv] = ACTIONS(1747), + [anon_sym_overlay] = ACTIONS(1747), + [anon_sym_as] = ACTIONS(1747), + [anon_sym_PLUS2] = ACTIONS(1747), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1749), + [anon_sym_DOT_DOT2] = ACTIONS(1747), + [anon_sym_DOT] = ACTIONS(1783), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1749), + [aux_sym__val_number_decimal_token1] = ACTIONS(1747), + [aux_sym__val_number_decimal_token2] = ACTIONS(1749), + [aux_sym__val_number_decimal_token3] = ACTIONS(1749), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(1749), + [aux_sym__val_number_token2] = ACTIONS(1749), + [aux_sym__val_number_token3] = ACTIONS(1749), + [aux_sym__val_number_token4] = ACTIONS(1747), + [aux_sym__val_number_token5] = ACTIONS(1747), + [aux_sym__val_number_token6] = ACTIONS(1747), + [anon_sym_DQUOTE] = ACTIONS(1749), + [sym__str_single_quotes] = ACTIONS(1749), + [sym__str_back_ticks] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1749), + }, + [370] = { + [sym_comment] = STATE(370), + [anon_sym_export] = ACTIONS(1765), + [anon_sym_alias] = ACTIONS(1765), + [anon_sym_let] = ACTIONS(1765), + [anon_sym_let_DASHenv] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [aux_sym_cmd_identifier_token1] = ACTIONS(1765), + [aux_sym_cmd_identifier_token2] = ACTIONS(1765), + [aux_sym_cmd_identifier_token3] = ACTIONS(1765), + [aux_sym_cmd_identifier_token4] = ACTIONS(1765), + [aux_sym_cmd_identifier_token5] = ACTIONS(1765), + [aux_sym_cmd_identifier_token6] = ACTIONS(1765), + [aux_sym_cmd_identifier_token7] = ACTIONS(1765), + [aux_sym_cmd_identifier_token8] = ACTIONS(1765), + [aux_sym_cmd_identifier_token9] = ACTIONS(1765), + [aux_sym_cmd_identifier_token10] = ACTIONS(1765), + [aux_sym_cmd_identifier_token11] = ACTIONS(1765), + [aux_sym_cmd_identifier_token12] = ACTIONS(1765), + [aux_sym_cmd_identifier_token13] = ACTIONS(1765), + [aux_sym_cmd_identifier_token14] = ACTIONS(1765), + [aux_sym_cmd_identifier_token15] = ACTIONS(1765), + [aux_sym_cmd_identifier_token16] = ACTIONS(1765), + [aux_sym_cmd_identifier_token17] = ACTIONS(1765), + [aux_sym_cmd_identifier_token18] = ACTIONS(1765), + [aux_sym_cmd_identifier_token19] = ACTIONS(1765), + [aux_sym_cmd_identifier_token20] = ACTIONS(1765), + [aux_sym_cmd_identifier_token21] = ACTIONS(1765), + [aux_sym_cmd_identifier_token22] = ACTIONS(1765), + [aux_sym_cmd_identifier_token23] = ACTIONS(1765), + [aux_sym_cmd_identifier_token24] = ACTIONS(1765), + [aux_sym_cmd_identifier_token25] = ACTIONS(1765), + [aux_sym_cmd_identifier_token26] = ACTIONS(1765), + [aux_sym_cmd_identifier_token27] = ACTIONS(1765), + [aux_sym_cmd_identifier_token28] = ACTIONS(1765), + [aux_sym_cmd_identifier_token29] = ACTIONS(1765), + [aux_sym_cmd_identifier_token30] = ACTIONS(1765), + [aux_sym_cmd_identifier_token31] = ACTIONS(1765), + [aux_sym_cmd_identifier_token32] = ACTIONS(1765), + [aux_sym_cmd_identifier_token33] = ACTIONS(1765), + [aux_sym_cmd_identifier_token34] = ACTIONS(1765), + [aux_sym_cmd_identifier_token35] = ACTIONS(1765), + [aux_sym_cmd_identifier_token36] = ACTIONS(1765), + [aux_sym_cmd_identifier_token37] = ACTIONS(1765), + [aux_sym_cmd_identifier_token38] = ACTIONS(1765), + [aux_sym_cmd_identifier_token39] = ACTIONS(1765), + [aux_sym_cmd_identifier_token40] = ACTIONS(1765), + [anon_sym_def] = ACTIONS(1765), + [anon_sym_export_DASHenv] = ACTIONS(1765), + [anon_sym_extern] = ACTIONS(1765), + [anon_sym_module] = ACTIONS(1765), + [anon_sym_use] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_DOLLAR] = ACTIONS(1765), + [anon_sym_error] = ACTIONS(1765), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_in2] = ACTIONS(1765), + [anon_sym_loop] = ACTIONS(1765), + [anon_sym_make] = ACTIONS(1765), + [anon_sym_while] = ACTIONS(1765), + [anon_sym_do] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_else] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_try] = ACTIONS(1765), + [anon_sym_catch] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_source] = ACTIONS(1765), + [anon_sym_source_DASHenv] = ACTIONS(1765), + [anon_sym_register] = ACTIONS(1765), + [anon_sym_hide] = ACTIONS(1765), + [anon_sym_hide_DASHenv] = ACTIONS(1765), + [anon_sym_overlay] = ACTIONS(1765), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1767), + [anon_sym_PLUS2] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), + [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(1771), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1765), + [aux_sym__val_number_decimal_token3] = ACTIONS(1765), + [aux_sym__val_number_decimal_token4] = ACTIONS(1765), + [aux_sym__val_number_token1] = ACTIONS(1765), + [aux_sym__val_number_token2] = ACTIONS(1765), + [aux_sym__val_number_token3] = ACTIONS(1765), + [aux_sym__val_number_token4] = ACTIONS(1765), + [aux_sym__val_number_token5] = ACTIONS(1765), + [aux_sym__val_number_token6] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1765), + [sym__str_single_quotes] = ACTIONS(1765), + [sym__str_back_ticks] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), + [sym__entry_separator] = ACTIONS(1767), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1767), + }, + [371] = { + [sym_cell_path] = STATE(561), + [sym_path] = STATE(497), + [sym_comment] = STATE(371), + [aux_sym_cell_path_repeat1] = STATE(388), + [anon_sym_export] = ACTIONS(1733), + [anon_sym_alias] = ACTIONS(1733), + [anon_sym_let] = ACTIONS(1733), + [anon_sym_let_DASHenv] = ACTIONS(1733), + [anon_sym_mut] = ACTIONS(1733), + [anon_sym_const] = ACTIONS(1733), + [aux_sym_cmd_identifier_token1] = ACTIONS(1733), [aux_sym_cmd_identifier_token2] = ACTIONS(1737), [aux_sym_cmd_identifier_token3] = ACTIONS(1737), [aux_sym_cmd_identifier_token4] = ACTIONS(1737), [aux_sym_cmd_identifier_token5] = ACTIONS(1737), [aux_sym_cmd_identifier_token6] = ACTIONS(1737), [aux_sym_cmd_identifier_token7] = ACTIONS(1737), - [aux_sym_cmd_identifier_token8] = ACTIONS(1735), - [aux_sym_cmd_identifier_token9] = ACTIONS(1735), + [aux_sym_cmd_identifier_token8] = ACTIONS(1733), + [aux_sym_cmd_identifier_token9] = ACTIONS(1733), [aux_sym_cmd_identifier_token10] = ACTIONS(1737), [aux_sym_cmd_identifier_token11] = ACTIONS(1737), - [aux_sym_cmd_identifier_token12] = ACTIONS(1735), - [aux_sym_cmd_identifier_token13] = ACTIONS(1735), - [aux_sym_cmd_identifier_token14] = ACTIONS(1735), - [aux_sym_cmd_identifier_token15] = ACTIONS(1735), + [aux_sym_cmd_identifier_token12] = ACTIONS(1733), + [aux_sym_cmd_identifier_token13] = ACTIONS(1733), + [aux_sym_cmd_identifier_token14] = ACTIONS(1733), + [aux_sym_cmd_identifier_token15] = ACTIONS(1733), [aux_sym_cmd_identifier_token16] = ACTIONS(1737), [aux_sym_cmd_identifier_token17] = ACTIONS(1737), [aux_sym_cmd_identifier_token18] = ACTIONS(1737), @@ -116555,61 +116665,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(1737), [aux_sym_cmd_identifier_token32] = ACTIONS(1737), [aux_sym_cmd_identifier_token33] = ACTIONS(1737), - [aux_sym_cmd_identifier_token34] = ACTIONS(1735), + [aux_sym_cmd_identifier_token34] = ACTIONS(1733), [aux_sym_cmd_identifier_token35] = ACTIONS(1737), [aux_sym_cmd_identifier_token36] = ACTIONS(1737), [aux_sym_cmd_identifier_token37] = ACTIONS(1737), - [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token38] = ACTIONS(1733), [aux_sym_cmd_identifier_token39] = ACTIONS(1737), [aux_sym_cmd_identifier_token40] = ACTIONS(1737), - [anon_sym_def] = ACTIONS(1735), - [anon_sym_export_DASHenv] = ACTIONS(1735), - [anon_sym_extern] = ACTIONS(1735), - [anon_sym_module] = ACTIONS(1735), - [anon_sym_use] = ACTIONS(1735), + [anon_sym_def] = ACTIONS(1733), + [anon_sym_export_DASHenv] = ACTIONS(1733), + [anon_sym_extern] = ACTIONS(1733), + [anon_sym_module] = ACTIONS(1733), + [anon_sym_use] = ACTIONS(1733), [anon_sym_LPAREN] = ACTIONS(1737), [anon_sym_DOLLAR] = ACTIONS(1737), - [anon_sym_error] = ACTIONS(1735), - [anon_sym_DASH2] = ACTIONS(1735), - [anon_sym_break] = ACTIONS(1735), - [anon_sym_continue] = ACTIONS(1735), - [anon_sym_for] = ACTIONS(1735), - [anon_sym_in2] = ACTIONS(1735), - [anon_sym_loop] = ACTIONS(1735), - [anon_sym_make] = ACTIONS(1735), - [anon_sym_while] = ACTIONS(1735), - [anon_sym_do] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(1735), - [anon_sym_else] = ACTIONS(1735), - [anon_sym_match] = ACTIONS(1735), + [anon_sym_error] = ACTIONS(1733), + [anon_sym_DASH2] = ACTIONS(1733), + [anon_sym_break] = ACTIONS(1733), + [anon_sym_continue] = ACTIONS(1733), + [anon_sym_for] = ACTIONS(1733), + [anon_sym_in2] = ACTIONS(1733), + [anon_sym_loop] = ACTIONS(1733), + [anon_sym_make] = ACTIONS(1733), + [anon_sym_while] = ACTIONS(1733), + [anon_sym_do] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1733), + [anon_sym_else] = ACTIONS(1733), + [anon_sym_match] = ACTIONS(1733), [anon_sym_RBRACE] = ACTIONS(1737), - [anon_sym_try] = ACTIONS(1735), - [anon_sym_catch] = ACTIONS(1735), - [anon_sym_return] = ACTIONS(1735), - [anon_sym_source] = ACTIONS(1735), - [anon_sym_source_DASHenv] = ACTIONS(1735), - [anon_sym_register] = ACTIONS(1735), - [anon_sym_hide] = ACTIONS(1735), - [anon_sym_hide_DASHenv] = ACTIONS(1735), - [anon_sym_overlay] = ACTIONS(1735), - [anon_sym_as] = ACTIONS(1735), - [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_try] = ACTIONS(1733), + [anon_sym_catch] = ACTIONS(1733), + [anon_sym_return] = ACTIONS(1733), + [anon_sym_source] = ACTIONS(1733), + [anon_sym_source_DASHenv] = ACTIONS(1733), + [anon_sym_register] = ACTIONS(1733), + [anon_sym_hide] = ACTIONS(1733), + [anon_sym_hide_DASHenv] = ACTIONS(1733), + [anon_sym_overlay] = ACTIONS(1733), + [anon_sym_as] = ACTIONS(1733), + [anon_sym_PLUS2] = ACTIONS(1733), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1737), - [anon_sym_DOT_DOT2] = ACTIONS(1735), - [anon_sym_DOT] = ACTIONS(1793), + [anon_sym_DOT_DOT2] = ACTIONS(1733), + [anon_sym_DOT] = ACTIONS(1783), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1737), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token1] = ACTIONS(1733), [aux_sym__val_number_decimal_token2] = ACTIONS(1737), [aux_sym__val_number_decimal_token3] = ACTIONS(1737), [aux_sym__val_number_decimal_token4] = ACTIONS(1737), [aux_sym__val_number_token1] = ACTIONS(1737), [aux_sym__val_number_token2] = ACTIONS(1737), [aux_sym__val_number_token3] = ACTIONS(1737), - [aux_sym__val_number_token4] = ACTIONS(1735), - [aux_sym__val_number_token5] = ACTIONS(1735), - [aux_sym__val_number_token6] = ACTIONS(1735), + [aux_sym__val_number_token4] = ACTIONS(1733), + [aux_sym__val_number_token5] = ACTIONS(1733), + [aux_sym__val_number_token6] = ACTIONS(1733), [anon_sym_DQUOTE] = ACTIONS(1737), [sym__str_single_quotes] = ACTIONS(1737), [sym__str_back_ticks] = ACTIONS(1737), @@ -116617,328 +116727,328 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1737), }, + [372] = { + [sym_comment] = STATE(372), + [anon_sym_export] = ACTIONS(1585), + [anon_sym_alias] = ACTIONS(1585), + [anon_sym_let] = ACTIONS(1585), + [anon_sym_let_DASHenv] = ACTIONS(1585), + [anon_sym_mut] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [aux_sym_cmd_identifier_token1] = ACTIONS(1585), + [aux_sym_cmd_identifier_token2] = ACTIONS(1587), + [aux_sym_cmd_identifier_token3] = ACTIONS(1587), + [aux_sym_cmd_identifier_token4] = ACTIONS(1587), + [aux_sym_cmd_identifier_token5] = ACTIONS(1587), + [aux_sym_cmd_identifier_token6] = ACTIONS(1587), + [aux_sym_cmd_identifier_token7] = ACTIONS(1587), + [aux_sym_cmd_identifier_token8] = ACTIONS(1585), + [aux_sym_cmd_identifier_token9] = ACTIONS(1585), + [aux_sym_cmd_identifier_token10] = ACTIONS(1587), + [aux_sym_cmd_identifier_token11] = ACTIONS(1587), + [aux_sym_cmd_identifier_token12] = ACTIONS(1585), + [aux_sym_cmd_identifier_token13] = ACTIONS(1585), + [aux_sym_cmd_identifier_token14] = ACTIONS(1585), + [aux_sym_cmd_identifier_token15] = ACTIONS(1585), + [aux_sym_cmd_identifier_token16] = ACTIONS(1587), + [aux_sym_cmd_identifier_token17] = ACTIONS(1587), + [aux_sym_cmd_identifier_token18] = ACTIONS(1587), + [aux_sym_cmd_identifier_token19] = ACTIONS(1587), + [aux_sym_cmd_identifier_token20] = ACTIONS(1587), + [aux_sym_cmd_identifier_token21] = ACTIONS(1587), + [aux_sym_cmd_identifier_token22] = ACTIONS(1587), + [aux_sym_cmd_identifier_token23] = ACTIONS(1587), + [aux_sym_cmd_identifier_token24] = ACTIONS(1587), + [aux_sym_cmd_identifier_token25] = ACTIONS(1587), + [aux_sym_cmd_identifier_token26] = ACTIONS(1587), + [aux_sym_cmd_identifier_token27] = ACTIONS(1587), + [aux_sym_cmd_identifier_token28] = ACTIONS(1587), + [aux_sym_cmd_identifier_token29] = ACTIONS(1587), + [aux_sym_cmd_identifier_token30] = ACTIONS(1587), + [aux_sym_cmd_identifier_token31] = ACTIONS(1587), + [aux_sym_cmd_identifier_token32] = ACTIONS(1587), + [aux_sym_cmd_identifier_token33] = ACTIONS(1587), + [aux_sym_cmd_identifier_token34] = ACTIONS(1585), + [aux_sym_cmd_identifier_token35] = ACTIONS(1587), + [aux_sym_cmd_identifier_token36] = ACTIONS(1587), + [aux_sym_cmd_identifier_token37] = ACTIONS(1587), + [aux_sym_cmd_identifier_token38] = ACTIONS(1585), + [aux_sym_cmd_identifier_token39] = ACTIONS(1587), + [aux_sym_cmd_identifier_token40] = ACTIONS(1587), + [anon_sym_def] = ACTIONS(1585), + [anon_sym_export_DASHenv] = ACTIONS(1585), + [anon_sym_extern] = ACTIONS(1585), + [anon_sym_module] = ACTIONS(1585), + [anon_sym_use] = ACTIONS(1585), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_DOLLAR] = ACTIONS(1587), + [anon_sym_error] = ACTIONS(1585), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_in2] = ACTIONS(1585), + [anon_sym_loop] = ACTIONS(1585), + [anon_sym_make] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_do] = ACTIONS(1585), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_else] = ACTIONS(1585), + [anon_sym_match] = ACTIONS(1585), + [anon_sym_RBRACE] = ACTIONS(1587), + [anon_sym_try] = ACTIONS(1585), + [anon_sym_catch] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_source] = ACTIONS(1585), + [anon_sym_source_DASHenv] = ACTIONS(1585), + [anon_sym_register] = ACTIONS(1585), + [anon_sym_hide] = ACTIONS(1585), + [anon_sym_hide_DASHenv] = ACTIONS(1585), + [anon_sym_overlay] = ACTIONS(1585), + [anon_sym_as] = ACTIONS(1585), + [anon_sym_LPAREN2] = ACTIONS(1587), + [anon_sym_PLUS2] = ACTIONS(1585), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1587), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1587), + [aux_sym__val_number_decimal_token1] = ACTIONS(1585), + [aux_sym__val_number_decimal_token2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1587), + [aux_sym__val_number_token2] = ACTIONS(1587), + [aux_sym__val_number_token3] = ACTIONS(1587), + [aux_sym__val_number_token4] = ACTIONS(1585), + [aux_sym__val_number_token5] = ACTIONS(1585), + [aux_sym__val_number_token6] = ACTIONS(1585), + [sym_filesize_unit] = ACTIONS(1585), + [sym_duration_unit] = ACTIONS(1585), + [anon_sym_DQUOTE] = ACTIONS(1587), + [sym__str_single_quotes] = ACTIONS(1587), + [sym__str_back_ticks] = ACTIONS(1587), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1587), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1587), + }, + [373] = { + [sym_comment] = STATE(373), + [anon_sym_export] = ACTIONS(1785), + [anon_sym_alias] = ACTIONS(1785), + [anon_sym_let] = ACTIONS(1785), + [anon_sym_let_DASHenv] = ACTIONS(1785), + [anon_sym_mut] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(1785), + [aux_sym_cmd_identifier_token1] = ACTIONS(1785), + [aux_sym_cmd_identifier_token2] = ACTIONS(1785), + [aux_sym_cmd_identifier_token3] = ACTIONS(1785), + [aux_sym_cmd_identifier_token4] = ACTIONS(1785), + [aux_sym_cmd_identifier_token5] = ACTIONS(1785), + [aux_sym_cmd_identifier_token6] = ACTIONS(1785), + [aux_sym_cmd_identifier_token7] = ACTIONS(1785), + [aux_sym_cmd_identifier_token8] = ACTIONS(1785), + [aux_sym_cmd_identifier_token9] = ACTIONS(1785), + [aux_sym_cmd_identifier_token10] = ACTIONS(1785), + [aux_sym_cmd_identifier_token11] = ACTIONS(1785), + [aux_sym_cmd_identifier_token12] = ACTIONS(1785), + [aux_sym_cmd_identifier_token13] = ACTIONS(1785), + [aux_sym_cmd_identifier_token14] = ACTIONS(1785), + [aux_sym_cmd_identifier_token15] = ACTIONS(1785), + [aux_sym_cmd_identifier_token16] = ACTIONS(1785), + [aux_sym_cmd_identifier_token17] = ACTIONS(1785), + [aux_sym_cmd_identifier_token18] = ACTIONS(1785), + [aux_sym_cmd_identifier_token19] = ACTIONS(1785), + [aux_sym_cmd_identifier_token20] = ACTIONS(1785), + [aux_sym_cmd_identifier_token21] = ACTIONS(1785), + [aux_sym_cmd_identifier_token22] = ACTIONS(1785), + [aux_sym_cmd_identifier_token23] = ACTIONS(1785), + [aux_sym_cmd_identifier_token24] = ACTIONS(1785), + [aux_sym_cmd_identifier_token25] = ACTIONS(1785), + [aux_sym_cmd_identifier_token26] = ACTIONS(1785), + [aux_sym_cmd_identifier_token27] = ACTIONS(1785), + [aux_sym_cmd_identifier_token28] = ACTIONS(1785), + [aux_sym_cmd_identifier_token29] = ACTIONS(1785), + [aux_sym_cmd_identifier_token30] = ACTIONS(1785), + [aux_sym_cmd_identifier_token31] = ACTIONS(1785), + [aux_sym_cmd_identifier_token32] = ACTIONS(1785), + [aux_sym_cmd_identifier_token33] = ACTIONS(1785), + [aux_sym_cmd_identifier_token34] = ACTIONS(1785), + [aux_sym_cmd_identifier_token35] = ACTIONS(1785), + [aux_sym_cmd_identifier_token36] = ACTIONS(1785), + [aux_sym_cmd_identifier_token37] = ACTIONS(1785), + [aux_sym_cmd_identifier_token38] = ACTIONS(1785), + [aux_sym_cmd_identifier_token39] = ACTIONS(1785), + [aux_sym_cmd_identifier_token40] = ACTIONS(1785), + [anon_sym_def] = ACTIONS(1785), + [anon_sym_export_DASHenv] = ACTIONS(1785), + [anon_sym_extern] = ACTIONS(1785), + [anon_sym_module] = ACTIONS(1785), + [anon_sym_use] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1785), + [anon_sym_error] = ACTIONS(1785), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_break] = ACTIONS(1785), + [anon_sym_continue] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1785), + [anon_sym_in2] = ACTIONS(1785), + [anon_sym_loop] = ACTIONS(1785), + [anon_sym_make] = ACTIONS(1785), + [anon_sym_while] = ACTIONS(1785), + [anon_sym_do] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1785), + [anon_sym_else] = ACTIONS(1785), + [anon_sym_match] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1785), + [anon_sym_catch] = ACTIONS(1785), + [anon_sym_return] = ACTIONS(1785), + [anon_sym_source] = ACTIONS(1785), + [anon_sym_source_DASHenv] = ACTIONS(1785), + [anon_sym_register] = ACTIONS(1785), + [anon_sym_hide] = ACTIONS(1785), + [anon_sym_hide_DASHenv] = ACTIONS(1785), + [anon_sym_overlay] = ACTIONS(1785), + [anon_sym_as] = ACTIONS(1785), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_PLUS2] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), + [anon_sym_DOT_DOT2] = ACTIONS(1785), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), + [aux_sym__immediate_decimal_token2] = ACTIONS(1789), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), + [aux_sym__val_number_decimal_token1] = ACTIONS(1785), + [aux_sym__val_number_decimal_token2] = ACTIONS(1785), + [aux_sym__val_number_decimal_token3] = ACTIONS(1785), + [aux_sym__val_number_decimal_token4] = ACTIONS(1785), + [aux_sym__val_number_token1] = ACTIONS(1785), + [aux_sym__val_number_token2] = ACTIONS(1785), + [aux_sym__val_number_token3] = ACTIONS(1785), + [aux_sym__val_number_token4] = ACTIONS(1785), + [aux_sym__val_number_token5] = ACTIONS(1785), + [aux_sym__val_number_token6] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1785), + [sym__str_single_quotes] = ACTIONS(1785), + [sym__str_back_ticks] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), + [sym__entry_separator] = ACTIONS(1787), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1787), + }, [374] = { - [sym_cell_path] = STATE(516), - [sym_path] = STATE(460), [sym_comment] = STATE(374), - [aux_sym_cell_path_repeat1] = STATE(380), - [anon_sym_export] = ACTIONS(961), - [anon_sym_alias] = ACTIONS(961), - [anon_sym_let] = ACTIONS(961), - [anon_sym_let_DASHenv] = ACTIONS(961), - [anon_sym_mut] = ACTIONS(961), - [anon_sym_const] = ACTIONS(961), - [aux_sym_cmd_identifier_token1] = ACTIONS(961), - [aux_sym_cmd_identifier_token2] = ACTIONS(963), - [aux_sym_cmd_identifier_token3] = ACTIONS(963), - [aux_sym_cmd_identifier_token4] = ACTIONS(963), - [aux_sym_cmd_identifier_token5] = ACTIONS(963), - [aux_sym_cmd_identifier_token6] = ACTIONS(963), - [aux_sym_cmd_identifier_token7] = ACTIONS(963), - [aux_sym_cmd_identifier_token8] = ACTIONS(961), - [aux_sym_cmd_identifier_token9] = ACTIONS(961), - [aux_sym_cmd_identifier_token10] = ACTIONS(963), - [aux_sym_cmd_identifier_token11] = ACTIONS(963), - [aux_sym_cmd_identifier_token12] = ACTIONS(961), - [aux_sym_cmd_identifier_token13] = ACTIONS(961), - [aux_sym_cmd_identifier_token14] = ACTIONS(961), - [aux_sym_cmd_identifier_token15] = ACTIONS(961), - [aux_sym_cmd_identifier_token16] = ACTIONS(963), - [aux_sym_cmd_identifier_token17] = ACTIONS(963), - [aux_sym_cmd_identifier_token18] = ACTIONS(963), - [aux_sym_cmd_identifier_token19] = ACTIONS(963), - [aux_sym_cmd_identifier_token20] = ACTIONS(963), - [aux_sym_cmd_identifier_token21] = ACTIONS(963), - [aux_sym_cmd_identifier_token22] = ACTIONS(963), - [aux_sym_cmd_identifier_token23] = ACTIONS(963), - [aux_sym_cmd_identifier_token24] = ACTIONS(963), - [aux_sym_cmd_identifier_token25] = ACTIONS(963), - [aux_sym_cmd_identifier_token26] = ACTIONS(963), - [aux_sym_cmd_identifier_token27] = ACTIONS(963), - [aux_sym_cmd_identifier_token28] = ACTIONS(963), - [aux_sym_cmd_identifier_token29] = ACTIONS(963), - [aux_sym_cmd_identifier_token30] = ACTIONS(963), - [aux_sym_cmd_identifier_token31] = ACTIONS(963), - [aux_sym_cmd_identifier_token32] = ACTIONS(963), - [aux_sym_cmd_identifier_token33] = ACTIONS(963), - [aux_sym_cmd_identifier_token34] = ACTIONS(961), - [aux_sym_cmd_identifier_token35] = ACTIONS(963), - [aux_sym_cmd_identifier_token36] = ACTIONS(963), - [aux_sym_cmd_identifier_token37] = ACTIONS(963), - [aux_sym_cmd_identifier_token38] = ACTIONS(961), - [aux_sym_cmd_identifier_token39] = ACTIONS(963), - [aux_sym_cmd_identifier_token40] = ACTIONS(963), - [anon_sym_def] = ACTIONS(961), - [anon_sym_export_DASHenv] = ACTIONS(961), - [anon_sym_extern] = ACTIONS(961), - [anon_sym_module] = ACTIONS(961), - [anon_sym_use] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(963), - [anon_sym_DOLLAR] = ACTIONS(963), - [anon_sym_error] = ACTIONS(961), - [anon_sym_DASH2] = ACTIONS(961), - [anon_sym_break] = ACTIONS(961), - [anon_sym_continue] = ACTIONS(961), - [anon_sym_for] = ACTIONS(961), - [anon_sym_in2] = ACTIONS(961), - [anon_sym_loop] = ACTIONS(961), - [anon_sym_make] = ACTIONS(961), - [anon_sym_while] = ACTIONS(961), - [anon_sym_do] = ACTIONS(961), - [anon_sym_if] = ACTIONS(961), - [anon_sym_else] = ACTIONS(961), - [anon_sym_match] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_try] = ACTIONS(961), - [anon_sym_catch] = ACTIONS(961), - [anon_sym_return] = ACTIONS(961), - [anon_sym_source] = ACTIONS(961), - [anon_sym_source_DASHenv] = ACTIONS(961), - [anon_sym_register] = ACTIONS(961), - [anon_sym_hide] = ACTIONS(961), - [anon_sym_hide_DASHenv] = ACTIONS(961), - [anon_sym_overlay] = ACTIONS(961), - [anon_sym_as] = ACTIONS(961), - [anon_sym_PLUS2] = ACTIONS(961), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(963), - [anon_sym_DOT_DOT2] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(1793), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), - [anon_sym_DOT_DOT_LT2] = ACTIONS(963), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(963), - [aux_sym__val_number_decimal_token1] = ACTIONS(961), - [aux_sym__val_number_decimal_token2] = ACTIONS(963), - [aux_sym__val_number_decimal_token3] = ACTIONS(963), - [aux_sym__val_number_decimal_token4] = ACTIONS(963), - [aux_sym__val_number_token1] = ACTIONS(963), - [aux_sym__val_number_token2] = ACTIONS(963), - [aux_sym__val_number_token3] = ACTIONS(963), - [aux_sym__val_number_token4] = ACTIONS(961), - [aux_sym__val_number_token5] = ACTIONS(961), - [aux_sym__val_number_token6] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(963), - [sym__str_single_quotes] = ACTIONS(963), - [sym__str_back_ticks] = ACTIONS(963), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(963), + [anon_sym_export] = ACTIONS(1761), + [anon_sym_alias] = ACTIONS(1761), + [anon_sym_let] = ACTIONS(1761), + [anon_sym_let_DASHenv] = ACTIONS(1761), + [anon_sym_mut] = ACTIONS(1761), + [anon_sym_const] = ACTIONS(1761), + [aux_sym_cmd_identifier_token1] = ACTIONS(1761), + [aux_sym_cmd_identifier_token2] = ACTIONS(1763), + [aux_sym_cmd_identifier_token3] = ACTIONS(1763), + [aux_sym_cmd_identifier_token4] = ACTIONS(1763), + [aux_sym_cmd_identifier_token5] = ACTIONS(1763), + [aux_sym_cmd_identifier_token6] = ACTIONS(1763), + [aux_sym_cmd_identifier_token7] = ACTIONS(1763), + [aux_sym_cmd_identifier_token8] = ACTIONS(1761), + [aux_sym_cmd_identifier_token9] = ACTIONS(1761), + [aux_sym_cmd_identifier_token10] = ACTIONS(1763), + [aux_sym_cmd_identifier_token11] = ACTIONS(1763), + [aux_sym_cmd_identifier_token12] = ACTIONS(1761), + [aux_sym_cmd_identifier_token13] = ACTIONS(1761), + [aux_sym_cmd_identifier_token14] = ACTIONS(1761), + [aux_sym_cmd_identifier_token15] = ACTIONS(1761), + [aux_sym_cmd_identifier_token16] = ACTIONS(1763), + [aux_sym_cmd_identifier_token17] = ACTIONS(1763), + [aux_sym_cmd_identifier_token18] = ACTIONS(1763), + [aux_sym_cmd_identifier_token19] = ACTIONS(1763), + [aux_sym_cmd_identifier_token20] = ACTIONS(1763), + [aux_sym_cmd_identifier_token21] = ACTIONS(1763), + [aux_sym_cmd_identifier_token22] = ACTIONS(1763), + [aux_sym_cmd_identifier_token23] = ACTIONS(1763), + [aux_sym_cmd_identifier_token24] = ACTIONS(1763), + [aux_sym_cmd_identifier_token25] = ACTIONS(1763), + [aux_sym_cmd_identifier_token26] = ACTIONS(1763), + [aux_sym_cmd_identifier_token27] = ACTIONS(1763), + [aux_sym_cmd_identifier_token28] = ACTIONS(1763), + [aux_sym_cmd_identifier_token29] = ACTIONS(1763), + [aux_sym_cmd_identifier_token30] = ACTIONS(1763), + [aux_sym_cmd_identifier_token31] = ACTIONS(1763), + [aux_sym_cmd_identifier_token32] = ACTIONS(1763), + [aux_sym_cmd_identifier_token33] = ACTIONS(1763), + [aux_sym_cmd_identifier_token34] = ACTIONS(1761), + [aux_sym_cmd_identifier_token35] = ACTIONS(1763), + [aux_sym_cmd_identifier_token36] = ACTIONS(1763), + [aux_sym_cmd_identifier_token37] = ACTIONS(1763), + [aux_sym_cmd_identifier_token38] = ACTIONS(1761), + [aux_sym_cmd_identifier_token39] = ACTIONS(1763), + [aux_sym_cmd_identifier_token40] = ACTIONS(1763), + [anon_sym_def] = ACTIONS(1761), + [anon_sym_export_DASHenv] = ACTIONS(1761), + [anon_sym_extern] = ACTIONS(1761), + [anon_sym_module] = ACTIONS(1761), + [anon_sym_use] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1761), + [anon_sym_DOLLAR] = ACTIONS(1763), + [anon_sym_error] = ACTIONS(1761), + [anon_sym_DASH2] = ACTIONS(1761), + [anon_sym_break] = ACTIONS(1761), + [anon_sym_continue] = ACTIONS(1761), + [anon_sym_for] = ACTIONS(1761), + [anon_sym_in2] = ACTIONS(1761), + [anon_sym_loop] = ACTIONS(1761), + [anon_sym_make] = ACTIONS(1761), + [anon_sym_while] = ACTIONS(1761), + [anon_sym_do] = ACTIONS(1761), + [anon_sym_if] = ACTIONS(1761), + [anon_sym_else] = ACTIONS(1761), + [anon_sym_match] = ACTIONS(1761), + [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_try] = ACTIONS(1761), + [anon_sym_catch] = ACTIONS(1761), + [anon_sym_return] = ACTIONS(1761), + [anon_sym_source] = ACTIONS(1761), + [anon_sym_source_DASHenv] = ACTIONS(1761), + [anon_sym_register] = ACTIONS(1761), + [anon_sym_hide] = ACTIONS(1761), + [anon_sym_hide_DASHenv] = ACTIONS(1761), + [anon_sym_overlay] = ACTIONS(1761), + [anon_sym_as] = ACTIONS(1761), + [anon_sym_LPAREN2] = ACTIONS(1763), + [anon_sym_PLUS2] = ACTIONS(1761), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1763), + [anon_sym_DOT_DOT2] = ACTIONS(1761), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1763), + [aux_sym__val_number_decimal_token1] = ACTIONS(1761), + [aux_sym__val_number_decimal_token2] = ACTIONS(1763), + [aux_sym__val_number_decimal_token3] = ACTIONS(1763), + [aux_sym__val_number_decimal_token4] = ACTIONS(1763), + [aux_sym__val_number_token1] = ACTIONS(1763), + [aux_sym__val_number_token2] = ACTIONS(1763), + [aux_sym__val_number_token3] = ACTIONS(1763), + [aux_sym__val_number_token4] = ACTIONS(1761), + [aux_sym__val_number_token5] = ACTIONS(1761), + [aux_sym__val_number_token6] = ACTIONS(1761), + [sym_filesize_unit] = ACTIONS(1761), + [sym_duration_unit] = ACTIONS(1761), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym__str_single_quotes] = ACTIONS(1763), + [sym__str_back_ticks] = ACTIONS(1763), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1763), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1761), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(963), + [sym_raw_string_begin] = ACTIONS(1763), }, [375] = { + [sym_path] = STATE(442), [sym_comment] = STATE(375), - [anon_sym_export] = ACTIONS(1673), - [anon_sym_alias] = ACTIONS(1673), - [anon_sym_let] = ACTIONS(1673), - [anon_sym_let_DASHenv] = ACTIONS(1673), - [anon_sym_mut] = ACTIONS(1673), - [anon_sym_const] = ACTIONS(1673), - [aux_sym_cmd_identifier_token1] = ACTIONS(1673), - [aux_sym_cmd_identifier_token2] = ACTIONS(1675), - [aux_sym_cmd_identifier_token3] = ACTIONS(1675), - [aux_sym_cmd_identifier_token4] = ACTIONS(1675), - [aux_sym_cmd_identifier_token5] = ACTIONS(1675), - [aux_sym_cmd_identifier_token6] = ACTIONS(1675), - [aux_sym_cmd_identifier_token7] = ACTIONS(1675), - [aux_sym_cmd_identifier_token8] = ACTIONS(1673), - [aux_sym_cmd_identifier_token9] = ACTIONS(1673), - [aux_sym_cmd_identifier_token10] = ACTIONS(1675), - [aux_sym_cmd_identifier_token11] = ACTIONS(1675), - [aux_sym_cmd_identifier_token12] = ACTIONS(1673), - [aux_sym_cmd_identifier_token13] = ACTIONS(1673), - [aux_sym_cmd_identifier_token14] = ACTIONS(1673), - [aux_sym_cmd_identifier_token15] = ACTIONS(1673), - [aux_sym_cmd_identifier_token16] = ACTIONS(1675), - [aux_sym_cmd_identifier_token17] = ACTIONS(1675), - [aux_sym_cmd_identifier_token18] = ACTIONS(1675), - [aux_sym_cmd_identifier_token19] = ACTIONS(1675), - [aux_sym_cmd_identifier_token20] = ACTIONS(1675), - [aux_sym_cmd_identifier_token21] = ACTIONS(1675), - [aux_sym_cmd_identifier_token22] = ACTIONS(1675), - [aux_sym_cmd_identifier_token23] = ACTIONS(1675), - [aux_sym_cmd_identifier_token24] = ACTIONS(1675), - [aux_sym_cmd_identifier_token25] = ACTIONS(1675), - [aux_sym_cmd_identifier_token26] = ACTIONS(1675), - [aux_sym_cmd_identifier_token27] = ACTIONS(1675), - [aux_sym_cmd_identifier_token28] = ACTIONS(1675), - [aux_sym_cmd_identifier_token29] = ACTIONS(1675), - [aux_sym_cmd_identifier_token30] = ACTIONS(1675), - [aux_sym_cmd_identifier_token31] = ACTIONS(1675), - [aux_sym_cmd_identifier_token32] = ACTIONS(1675), - [aux_sym_cmd_identifier_token33] = ACTIONS(1675), - [aux_sym_cmd_identifier_token34] = ACTIONS(1673), - [aux_sym_cmd_identifier_token35] = ACTIONS(1675), - [aux_sym_cmd_identifier_token36] = ACTIONS(1675), - [aux_sym_cmd_identifier_token37] = ACTIONS(1675), - [aux_sym_cmd_identifier_token38] = ACTIONS(1673), - [aux_sym_cmd_identifier_token39] = ACTIONS(1675), - [aux_sym_cmd_identifier_token40] = ACTIONS(1675), - [anon_sym_def] = ACTIONS(1673), - [anon_sym_export_DASHenv] = ACTIONS(1673), - [anon_sym_extern] = ACTIONS(1673), - [anon_sym_module] = ACTIONS(1673), - [anon_sym_use] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_DOLLAR] = ACTIONS(1675), - [anon_sym_error] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_break] = ACTIONS(1673), - [anon_sym_continue] = ACTIONS(1673), - [anon_sym_for] = ACTIONS(1673), - [anon_sym_in2] = ACTIONS(1673), - [anon_sym_loop] = ACTIONS(1673), - [anon_sym_make] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1673), - [anon_sym_do] = ACTIONS(1673), - [anon_sym_if] = ACTIONS(1673), - [anon_sym_else] = ACTIONS(1673), - [anon_sym_match] = ACTIONS(1673), - [anon_sym_RBRACE] = ACTIONS(1675), - [anon_sym_try] = ACTIONS(1673), - [anon_sym_catch] = ACTIONS(1673), - [anon_sym_return] = ACTIONS(1673), - [anon_sym_source] = ACTIONS(1673), - [anon_sym_source_DASHenv] = ACTIONS(1673), - [anon_sym_register] = ACTIONS(1673), - [anon_sym_hide] = ACTIONS(1673), - [anon_sym_hide_DASHenv] = ACTIONS(1673), - [anon_sym_overlay] = ACTIONS(1673), - [anon_sym_as] = ACTIONS(1673), - [anon_sym_LPAREN2] = ACTIONS(1675), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1675), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1675), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1675), - [aux_sym__val_number_decimal_token4] = ACTIONS(1675), - [aux_sym__val_number_token1] = ACTIONS(1675), - [aux_sym__val_number_token2] = ACTIONS(1675), - [aux_sym__val_number_token3] = ACTIONS(1675), - [aux_sym__val_number_token4] = ACTIONS(1673), - [aux_sym__val_number_token5] = ACTIONS(1673), - [aux_sym__val_number_token6] = ACTIONS(1673), - [sym_filesize_unit] = ACTIONS(1673), - [sym_duration_unit] = ACTIONS(1673), - [anon_sym_DQUOTE] = ACTIONS(1675), - [sym__str_single_quotes] = ACTIONS(1675), - [sym__str_back_ticks] = ACTIONS(1675), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1675), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1673), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1675), - }, - [376] = { - [sym_path] = STATE(418), - [sym_comment] = STATE(376), - [aux_sym_cell_path_repeat1] = STATE(377), - [anon_sym_export] = ACTIONS(967), - [anon_sym_alias] = ACTIONS(967), - [anon_sym_let] = ACTIONS(967), - [anon_sym_let_DASHenv] = ACTIONS(967), - [anon_sym_mut] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [aux_sym_cmd_identifier_token1] = ACTIONS(967), - [aux_sym_cmd_identifier_token2] = ACTIONS(967), - [aux_sym_cmd_identifier_token3] = ACTIONS(967), - [aux_sym_cmd_identifier_token4] = ACTIONS(967), - [aux_sym_cmd_identifier_token5] = ACTIONS(967), - [aux_sym_cmd_identifier_token6] = ACTIONS(967), - [aux_sym_cmd_identifier_token7] = ACTIONS(967), - [aux_sym_cmd_identifier_token8] = ACTIONS(967), - [aux_sym_cmd_identifier_token9] = ACTIONS(967), - [aux_sym_cmd_identifier_token10] = ACTIONS(967), - [aux_sym_cmd_identifier_token11] = ACTIONS(967), - [aux_sym_cmd_identifier_token12] = ACTIONS(967), - [aux_sym_cmd_identifier_token13] = ACTIONS(967), - [aux_sym_cmd_identifier_token14] = ACTIONS(967), - [aux_sym_cmd_identifier_token15] = ACTIONS(967), - [aux_sym_cmd_identifier_token16] = ACTIONS(967), - [aux_sym_cmd_identifier_token17] = ACTIONS(967), - [aux_sym_cmd_identifier_token18] = ACTIONS(967), - [aux_sym_cmd_identifier_token19] = ACTIONS(967), - [aux_sym_cmd_identifier_token20] = ACTIONS(967), - [aux_sym_cmd_identifier_token21] = ACTIONS(967), - [aux_sym_cmd_identifier_token22] = ACTIONS(967), - [aux_sym_cmd_identifier_token23] = ACTIONS(967), - [aux_sym_cmd_identifier_token24] = ACTIONS(967), - [aux_sym_cmd_identifier_token25] = ACTIONS(967), - [aux_sym_cmd_identifier_token26] = ACTIONS(967), - [aux_sym_cmd_identifier_token27] = ACTIONS(967), - [aux_sym_cmd_identifier_token28] = ACTIONS(967), - [aux_sym_cmd_identifier_token29] = ACTIONS(967), - [aux_sym_cmd_identifier_token30] = ACTIONS(967), - [aux_sym_cmd_identifier_token31] = ACTIONS(967), - [aux_sym_cmd_identifier_token32] = ACTIONS(967), - [aux_sym_cmd_identifier_token33] = ACTIONS(967), - [aux_sym_cmd_identifier_token34] = ACTIONS(967), - [aux_sym_cmd_identifier_token35] = ACTIONS(967), - [aux_sym_cmd_identifier_token36] = ACTIONS(967), - [aux_sym_cmd_identifier_token37] = ACTIONS(967), - [aux_sym_cmd_identifier_token38] = ACTIONS(967), - [aux_sym_cmd_identifier_token39] = ACTIONS(967), - [aux_sym_cmd_identifier_token40] = ACTIONS(967), - [anon_sym_def] = ACTIONS(967), - [anon_sym_export_DASHenv] = ACTIONS(967), - [anon_sym_extern] = ACTIONS(967), - [anon_sym_module] = ACTIONS(967), - [anon_sym_use] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_error] = ACTIONS(967), - [anon_sym_DASH2] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_in2] = ACTIONS(967), - [anon_sym_loop] = ACTIONS(967), - [anon_sym_make] = ACTIONS(967), - [anon_sym_while] = ACTIONS(967), - [anon_sym_do] = ACTIONS(967), - [anon_sym_if] = ACTIONS(967), - [anon_sym_else] = ACTIONS(967), - [anon_sym_match] = ACTIONS(967), - [anon_sym_RBRACE] = ACTIONS(967), - [anon_sym_try] = ACTIONS(967), - [anon_sym_catch] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_source] = ACTIONS(967), - [anon_sym_source_DASHenv] = ACTIONS(967), - [anon_sym_register] = ACTIONS(967), - [anon_sym_hide] = ACTIONS(967), - [anon_sym_hide_DASHenv] = ACTIONS(967), - [anon_sym_overlay] = ACTIONS(967), - [anon_sym_as] = ACTIONS(967), - [anon_sym_PLUS2] = ACTIONS(967), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(967), - [anon_sym_DOT_DOT2] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(969), - [anon_sym_DOT_DOT_LT2] = ACTIONS(969), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(967), - [aux_sym__val_number_decimal_token1] = ACTIONS(967), - [aux_sym__val_number_decimal_token2] = ACTIONS(967), - [aux_sym__val_number_decimal_token3] = ACTIONS(967), - [aux_sym__val_number_decimal_token4] = ACTIONS(967), - [aux_sym__val_number_token1] = ACTIONS(967), - [aux_sym__val_number_token2] = ACTIONS(967), - [aux_sym__val_number_token3] = ACTIONS(967), - [aux_sym__val_number_token4] = ACTIONS(967), - [aux_sym__val_number_token5] = ACTIONS(967), - [aux_sym__val_number_token6] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(967), - [sym__str_single_quotes] = ACTIONS(967), - [sym__str_back_ticks] = ACTIONS(967), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(967), - [sym__entry_separator] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(969), - }, - [377] = { - [sym_path] = STATE(418), - [sym_comment] = STATE(377), - [aux_sym_cell_path_repeat1] = STATE(377), + [aux_sym_cell_path_repeat1] = STATE(375), [anon_sym_export] = ACTIONS(971), [anon_sym_alias] = ACTIONS(971), [anon_sym_let] = ACTIONS(971), @@ -117019,7 +117129,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(971), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(971), [anon_sym_DOT_DOT2] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(1795), + [anon_sym_DOT] = ACTIONS(1791), [anon_sym_DOT_DOT_EQ2] = ACTIONS(973), [anon_sym_DOT_DOT_LT2] = ACTIONS(973), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(971), @@ -117041,8 +117151,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(973), }, - [378] = { - [sym_comment] = STATE(378), + [376] = { + [sym_comment] = STATE(376), [anon_sym_export] = ACTIONS(1739), [anon_sym_alias] = ACTIONS(1739), [anon_sym_let] = ACTIONS(1739), @@ -117126,8 +117236,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), - [aux_sym__immediate_decimal_token1] = ACTIONS(1798), - [aux_sym__immediate_decimal_token2] = ACTIONS(1800), + [aux_sym__immediate_decimal_token1] = ACTIONS(1794), + [aux_sym__immediate_decimal_token2] = ACTIONS(1796), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1741), [aux_sym__val_number_decimal_token1] = ACTIONS(1739), [aux_sym__val_number_decimal_token2] = ACTIONS(1741), @@ -117147,116 +117257,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1741), }, + [377] = { + [sym_cell_path] = STATE(528), + [sym_path] = STATE(497), + [sym_comment] = STATE(377), + [aux_sym_cell_path_repeat1] = STATE(388), + [anon_sym_export] = ACTIONS(961), + [anon_sym_alias] = ACTIONS(961), + [anon_sym_let] = ACTIONS(961), + [anon_sym_let_DASHenv] = ACTIONS(961), + [anon_sym_mut] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [aux_sym_cmd_identifier_token1] = ACTIONS(961), + [aux_sym_cmd_identifier_token2] = ACTIONS(963), + [aux_sym_cmd_identifier_token3] = ACTIONS(963), + [aux_sym_cmd_identifier_token4] = ACTIONS(963), + [aux_sym_cmd_identifier_token5] = ACTIONS(963), + [aux_sym_cmd_identifier_token6] = ACTIONS(963), + [aux_sym_cmd_identifier_token7] = ACTIONS(963), + [aux_sym_cmd_identifier_token8] = ACTIONS(961), + [aux_sym_cmd_identifier_token9] = ACTIONS(961), + [aux_sym_cmd_identifier_token10] = ACTIONS(963), + [aux_sym_cmd_identifier_token11] = ACTIONS(963), + [aux_sym_cmd_identifier_token12] = ACTIONS(961), + [aux_sym_cmd_identifier_token13] = ACTIONS(961), + [aux_sym_cmd_identifier_token14] = ACTIONS(961), + [aux_sym_cmd_identifier_token15] = ACTIONS(961), + [aux_sym_cmd_identifier_token16] = ACTIONS(963), + [aux_sym_cmd_identifier_token17] = ACTIONS(963), + [aux_sym_cmd_identifier_token18] = ACTIONS(963), + [aux_sym_cmd_identifier_token19] = ACTIONS(963), + [aux_sym_cmd_identifier_token20] = ACTIONS(963), + [aux_sym_cmd_identifier_token21] = ACTIONS(963), + [aux_sym_cmd_identifier_token22] = ACTIONS(963), + [aux_sym_cmd_identifier_token23] = ACTIONS(963), + [aux_sym_cmd_identifier_token24] = ACTIONS(963), + [aux_sym_cmd_identifier_token25] = ACTIONS(963), + [aux_sym_cmd_identifier_token26] = ACTIONS(963), + [aux_sym_cmd_identifier_token27] = ACTIONS(963), + [aux_sym_cmd_identifier_token28] = ACTIONS(963), + [aux_sym_cmd_identifier_token29] = ACTIONS(963), + [aux_sym_cmd_identifier_token30] = ACTIONS(963), + [aux_sym_cmd_identifier_token31] = ACTIONS(963), + [aux_sym_cmd_identifier_token32] = ACTIONS(963), + [aux_sym_cmd_identifier_token33] = ACTIONS(963), + [aux_sym_cmd_identifier_token34] = ACTIONS(961), + [aux_sym_cmd_identifier_token35] = ACTIONS(963), + [aux_sym_cmd_identifier_token36] = ACTIONS(963), + [aux_sym_cmd_identifier_token37] = ACTIONS(963), + [aux_sym_cmd_identifier_token38] = ACTIONS(961), + [aux_sym_cmd_identifier_token39] = ACTIONS(963), + [aux_sym_cmd_identifier_token40] = ACTIONS(963), + [anon_sym_def] = ACTIONS(961), + [anon_sym_export_DASHenv] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym_module] = ACTIONS(961), + [anon_sym_use] = ACTIONS(961), + [anon_sym_LPAREN] = ACTIONS(963), + [anon_sym_DOLLAR] = ACTIONS(963), + [anon_sym_error] = ACTIONS(961), + [anon_sym_DASH2] = ACTIONS(961), + [anon_sym_break] = ACTIONS(961), + [anon_sym_continue] = ACTIONS(961), + [anon_sym_for] = ACTIONS(961), + [anon_sym_in2] = ACTIONS(961), + [anon_sym_loop] = ACTIONS(961), + [anon_sym_make] = ACTIONS(961), + [anon_sym_while] = ACTIONS(961), + [anon_sym_do] = ACTIONS(961), + [anon_sym_if] = ACTIONS(961), + [anon_sym_else] = ACTIONS(961), + [anon_sym_match] = ACTIONS(961), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_try] = ACTIONS(961), + [anon_sym_catch] = ACTIONS(961), + [anon_sym_return] = ACTIONS(961), + [anon_sym_source] = ACTIONS(961), + [anon_sym_source_DASHenv] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_hide] = ACTIONS(961), + [anon_sym_hide_DASHenv] = ACTIONS(961), + [anon_sym_overlay] = ACTIONS(961), + [anon_sym_as] = ACTIONS(961), + [anon_sym_PLUS2] = ACTIONS(961), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(963), + [anon_sym_DOT_DOT2] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(1783), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), + [anon_sym_DOT_DOT_LT2] = ACTIONS(963), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(963), + [aux_sym__val_number_decimal_token1] = ACTIONS(961), + [aux_sym__val_number_decimal_token2] = ACTIONS(963), + [aux_sym__val_number_decimal_token3] = ACTIONS(963), + [aux_sym__val_number_decimal_token4] = ACTIONS(963), + [aux_sym__val_number_token1] = ACTIONS(963), + [aux_sym__val_number_token2] = ACTIONS(963), + [aux_sym__val_number_token3] = ACTIONS(963), + [aux_sym__val_number_token4] = ACTIONS(961), + [aux_sym__val_number_token5] = ACTIONS(961), + [aux_sym__val_number_token6] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(963), + [sym__str_single_quotes] = ACTIONS(963), + [sym__str_back_ticks] = ACTIONS(963), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(963), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(963), + }, + [378] = { + [sym_comment] = STATE(378), + [anon_sym_export] = ACTIONS(1765), + [anon_sym_alias] = ACTIONS(1765), + [anon_sym_let] = ACTIONS(1765), + [anon_sym_let_DASHenv] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [aux_sym_cmd_identifier_token1] = ACTIONS(1765), + [aux_sym_cmd_identifier_token2] = ACTIONS(1767), + [aux_sym_cmd_identifier_token3] = ACTIONS(1767), + [aux_sym_cmd_identifier_token4] = ACTIONS(1767), + [aux_sym_cmd_identifier_token5] = ACTIONS(1767), + [aux_sym_cmd_identifier_token6] = ACTIONS(1767), + [aux_sym_cmd_identifier_token7] = ACTIONS(1767), + [aux_sym_cmd_identifier_token8] = ACTIONS(1765), + [aux_sym_cmd_identifier_token9] = ACTIONS(1765), + [aux_sym_cmd_identifier_token10] = ACTIONS(1767), + [aux_sym_cmd_identifier_token11] = ACTIONS(1767), + [aux_sym_cmd_identifier_token12] = ACTIONS(1765), + [aux_sym_cmd_identifier_token13] = ACTIONS(1765), + [aux_sym_cmd_identifier_token14] = ACTIONS(1765), + [aux_sym_cmd_identifier_token15] = ACTIONS(1765), + [aux_sym_cmd_identifier_token16] = ACTIONS(1767), + [aux_sym_cmd_identifier_token17] = ACTIONS(1767), + [aux_sym_cmd_identifier_token18] = ACTIONS(1767), + [aux_sym_cmd_identifier_token19] = ACTIONS(1767), + [aux_sym_cmd_identifier_token20] = ACTIONS(1767), + [aux_sym_cmd_identifier_token21] = ACTIONS(1767), + [aux_sym_cmd_identifier_token22] = ACTIONS(1767), + [aux_sym_cmd_identifier_token23] = ACTIONS(1767), + [aux_sym_cmd_identifier_token24] = ACTIONS(1767), + [aux_sym_cmd_identifier_token25] = ACTIONS(1767), + [aux_sym_cmd_identifier_token26] = ACTIONS(1767), + [aux_sym_cmd_identifier_token27] = ACTIONS(1767), + [aux_sym_cmd_identifier_token28] = ACTIONS(1767), + [aux_sym_cmd_identifier_token29] = ACTIONS(1767), + [aux_sym_cmd_identifier_token30] = ACTIONS(1767), + [aux_sym_cmd_identifier_token31] = ACTIONS(1767), + [aux_sym_cmd_identifier_token32] = ACTIONS(1767), + [aux_sym_cmd_identifier_token33] = ACTIONS(1767), + [aux_sym_cmd_identifier_token34] = ACTIONS(1765), + [aux_sym_cmd_identifier_token35] = ACTIONS(1767), + [aux_sym_cmd_identifier_token36] = ACTIONS(1767), + [aux_sym_cmd_identifier_token37] = ACTIONS(1767), + [aux_sym_cmd_identifier_token38] = ACTIONS(1765), + [aux_sym_cmd_identifier_token39] = ACTIONS(1767), + [aux_sym_cmd_identifier_token40] = ACTIONS(1767), + [anon_sym_def] = ACTIONS(1765), + [anon_sym_export_DASHenv] = ACTIONS(1765), + [anon_sym_extern] = ACTIONS(1765), + [anon_sym_module] = ACTIONS(1765), + [anon_sym_use] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_DOLLAR] = ACTIONS(1767), + [anon_sym_error] = ACTIONS(1765), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_in2] = ACTIONS(1765), + [anon_sym_loop] = ACTIONS(1765), + [anon_sym_make] = ACTIONS(1765), + [anon_sym_while] = ACTIONS(1765), + [anon_sym_do] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_else] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_try] = ACTIONS(1765), + [anon_sym_catch] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_source] = ACTIONS(1765), + [anon_sym_source_DASHenv] = ACTIONS(1765), + [anon_sym_register] = ACTIONS(1765), + [anon_sym_hide] = ACTIONS(1765), + [anon_sym_hide_DASHenv] = ACTIONS(1765), + [anon_sym_overlay] = ACTIONS(1765), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1767), + [anon_sym_PLUS2] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), + [anon_sym_DOT_DOT2] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(1798), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), + [aux_sym__immediate_decimal_token2] = ACTIONS(1800), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1765), + [aux_sym__val_number_token5] = ACTIONS(1765), + [aux_sym__val_number_token6] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1767), + }, [379] = { + [sym_path] = STATE(442), [sym_comment] = STATE(379), - [anon_sym_export] = ACTIONS(1607), - [anon_sym_alias] = ACTIONS(1607), - [anon_sym_let] = ACTIONS(1607), - [anon_sym_let_DASHenv] = ACTIONS(1607), - [anon_sym_mut] = ACTIONS(1607), - [anon_sym_const] = ACTIONS(1607), - [aux_sym_cmd_identifier_token1] = ACTIONS(1607), - [aux_sym_cmd_identifier_token2] = ACTIONS(1609), - [aux_sym_cmd_identifier_token3] = ACTIONS(1609), - [aux_sym_cmd_identifier_token4] = ACTIONS(1609), - [aux_sym_cmd_identifier_token5] = ACTIONS(1609), - [aux_sym_cmd_identifier_token6] = ACTIONS(1609), - [aux_sym_cmd_identifier_token7] = ACTIONS(1609), - [aux_sym_cmd_identifier_token8] = ACTIONS(1607), - [aux_sym_cmd_identifier_token9] = ACTIONS(1607), - [aux_sym_cmd_identifier_token10] = ACTIONS(1609), - [aux_sym_cmd_identifier_token11] = ACTIONS(1609), - [aux_sym_cmd_identifier_token12] = ACTIONS(1607), - [aux_sym_cmd_identifier_token13] = ACTIONS(1607), - [aux_sym_cmd_identifier_token14] = ACTIONS(1607), - [aux_sym_cmd_identifier_token15] = ACTIONS(1607), - [aux_sym_cmd_identifier_token16] = ACTIONS(1609), - [aux_sym_cmd_identifier_token17] = ACTIONS(1609), - [aux_sym_cmd_identifier_token18] = ACTIONS(1609), - [aux_sym_cmd_identifier_token19] = ACTIONS(1609), - [aux_sym_cmd_identifier_token20] = ACTIONS(1609), - [aux_sym_cmd_identifier_token21] = ACTIONS(1609), - [aux_sym_cmd_identifier_token22] = ACTIONS(1609), - [aux_sym_cmd_identifier_token23] = ACTIONS(1609), - [aux_sym_cmd_identifier_token24] = ACTIONS(1609), - [aux_sym_cmd_identifier_token25] = ACTIONS(1609), - [aux_sym_cmd_identifier_token26] = ACTIONS(1609), - [aux_sym_cmd_identifier_token27] = ACTIONS(1609), - [aux_sym_cmd_identifier_token28] = ACTIONS(1609), - [aux_sym_cmd_identifier_token29] = ACTIONS(1609), - [aux_sym_cmd_identifier_token30] = ACTIONS(1609), - [aux_sym_cmd_identifier_token31] = ACTIONS(1609), - [aux_sym_cmd_identifier_token32] = ACTIONS(1609), - [aux_sym_cmd_identifier_token33] = ACTIONS(1609), - [aux_sym_cmd_identifier_token34] = ACTIONS(1607), - [aux_sym_cmd_identifier_token35] = ACTIONS(1609), - [aux_sym_cmd_identifier_token36] = ACTIONS(1609), - [aux_sym_cmd_identifier_token37] = ACTIONS(1609), - [aux_sym_cmd_identifier_token38] = ACTIONS(1607), - [aux_sym_cmd_identifier_token39] = ACTIONS(1609), - [aux_sym_cmd_identifier_token40] = ACTIONS(1609), - [anon_sym_def] = ACTIONS(1607), - [anon_sym_export_DASHenv] = ACTIONS(1607), - [anon_sym_extern] = ACTIONS(1607), - [anon_sym_module] = ACTIONS(1607), - [anon_sym_use] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_DOLLAR] = ACTIONS(1609), - [anon_sym_error] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_break] = ACTIONS(1607), - [anon_sym_continue] = ACTIONS(1607), - [anon_sym_for] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_loop] = ACTIONS(1607), - [anon_sym_make] = ACTIONS(1607), - [anon_sym_while] = ACTIONS(1607), - [anon_sym_do] = ACTIONS(1607), - [anon_sym_if] = ACTIONS(1607), - [anon_sym_else] = ACTIONS(1607), - [anon_sym_match] = ACTIONS(1607), - [anon_sym_RBRACE] = ACTIONS(1609), - [anon_sym_try] = ACTIONS(1607), - [anon_sym_catch] = ACTIONS(1607), - [anon_sym_return] = ACTIONS(1607), - [anon_sym_source] = ACTIONS(1607), - [anon_sym_source_DASHenv] = ACTIONS(1607), - [anon_sym_register] = ACTIONS(1607), - [anon_sym_hide] = ACTIONS(1607), - [anon_sym_hide_DASHenv] = ACTIONS(1607), - [anon_sym_overlay] = ACTIONS(1607), - [anon_sym_as] = ACTIONS(1607), - [anon_sym_LPAREN2] = ACTIONS(1609), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1609), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1609), - [aux_sym__val_number_decimal_token1] = ACTIONS(1607), - [aux_sym__val_number_decimal_token2] = ACTIONS(1609), - [aux_sym__val_number_decimal_token3] = ACTIONS(1609), - [aux_sym__val_number_decimal_token4] = ACTIONS(1609), - [aux_sym__val_number_token1] = ACTIONS(1609), - [aux_sym__val_number_token2] = ACTIONS(1609), - [aux_sym__val_number_token3] = ACTIONS(1609), - [aux_sym__val_number_token4] = ACTIONS(1607), - [aux_sym__val_number_token5] = ACTIONS(1607), - [aux_sym__val_number_token6] = ACTIONS(1607), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1609), - [sym__str_single_quotes] = ACTIONS(1609), - [sym__str_back_ticks] = ACTIONS(1609), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1609), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1607), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1609), - }, - [380] = { - [sym_path] = STATE(460), - [sym_comment] = STATE(380), - [aux_sym_cell_path_repeat1] = STATE(390), + [aux_sym_cell_path_repeat1] = STATE(375), [anon_sym_export] = ACTIONS(967), [anon_sym_alias] = ACTIONS(967), [anon_sym_let] = ACTIONS(967), @@ -117264,52 +117480,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(967), [anon_sym_const] = ACTIONS(967), [aux_sym_cmd_identifier_token1] = ACTIONS(967), - [aux_sym_cmd_identifier_token2] = ACTIONS(969), - [aux_sym_cmd_identifier_token3] = ACTIONS(969), - [aux_sym_cmd_identifier_token4] = ACTIONS(969), - [aux_sym_cmd_identifier_token5] = ACTIONS(969), - [aux_sym_cmd_identifier_token6] = ACTIONS(969), - [aux_sym_cmd_identifier_token7] = ACTIONS(969), + [aux_sym_cmd_identifier_token2] = ACTIONS(967), + [aux_sym_cmd_identifier_token3] = ACTIONS(967), + [aux_sym_cmd_identifier_token4] = ACTIONS(967), + [aux_sym_cmd_identifier_token5] = ACTIONS(967), + [aux_sym_cmd_identifier_token6] = ACTIONS(967), + [aux_sym_cmd_identifier_token7] = ACTIONS(967), [aux_sym_cmd_identifier_token8] = ACTIONS(967), [aux_sym_cmd_identifier_token9] = ACTIONS(967), - [aux_sym_cmd_identifier_token10] = ACTIONS(969), - [aux_sym_cmd_identifier_token11] = ACTIONS(969), + [aux_sym_cmd_identifier_token10] = ACTIONS(967), + [aux_sym_cmd_identifier_token11] = ACTIONS(967), [aux_sym_cmd_identifier_token12] = ACTIONS(967), [aux_sym_cmd_identifier_token13] = ACTIONS(967), [aux_sym_cmd_identifier_token14] = ACTIONS(967), [aux_sym_cmd_identifier_token15] = ACTIONS(967), - [aux_sym_cmd_identifier_token16] = ACTIONS(969), - [aux_sym_cmd_identifier_token17] = ACTIONS(969), - [aux_sym_cmd_identifier_token18] = ACTIONS(969), - [aux_sym_cmd_identifier_token19] = ACTIONS(969), - [aux_sym_cmd_identifier_token20] = ACTIONS(969), - [aux_sym_cmd_identifier_token21] = ACTIONS(969), - [aux_sym_cmd_identifier_token22] = ACTIONS(969), - [aux_sym_cmd_identifier_token23] = ACTIONS(969), - [aux_sym_cmd_identifier_token24] = ACTIONS(969), - [aux_sym_cmd_identifier_token25] = ACTIONS(969), - [aux_sym_cmd_identifier_token26] = ACTIONS(969), - [aux_sym_cmd_identifier_token27] = ACTIONS(969), - [aux_sym_cmd_identifier_token28] = ACTIONS(969), - [aux_sym_cmd_identifier_token29] = ACTIONS(969), - [aux_sym_cmd_identifier_token30] = ACTIONS(969), - [aux_sym_cmd_identifier_token31] = ACTIONS(969), - [aux_sym_cmd_identifier_token32] = ACTIONS(969), - [aux_sym_cmd_identifier_token33] = ACTIONS(969), + [aux_sym_cmd_identifier_token16] = ACTIONS(967), + [aux_sym_cmd_identifier_token17] = ACTIONS(967), + [aux_sym_cmd_identifier_token18] = ACTIONS(967), + [aux_sym_cmd_identifier_token19] = ACTIONS(967), + [aux_sym_cmd_identifier_token20] = ACTIONS(967), + [aux_sym_cmd_identifier_token21] = ACTIONS(967), + [aux_sym_cmd_identifier_token22] = ACTIONS(967), + [aux_sym_cmd_identifier_token23] = ACTIONS(967), + [aux_sym_cmd_identifier_token24] = ACTIONS(967), + [aux_sym_cmd_identifier_token25] = ACTIONS(967), + [aux_sym_cmd_identifier_token26] = ACTIONS(967), + [aux_sym_cmd_identifier_token27] = ACTIONS(967), + [aux_sym_cmd_identifier_token28] = ACTIONS(967), + [aux_sym_cmd_identifier_token29] = ACTIONS(967), + [aux_sym_cmd_identifier_token30] = ACTIONS(967), + [aux_sym_cmd_identifier_token31] = ACTIONS(967), + [aux_sym_cmd_identifier_token32] = ACTIONS(967), + [aux_sym_cmd_identifier_token33] = ACTIONS(967), [aux_sym_cmd_identifier_token34] = ACTIONS(967), - [aux_sym_cmd_identifier_token35] = ACTIONS(969), - [aux_sym_cmd_identifier_token36] = ACTIONS(969), - [aux_sym_cmd_identifier_token37] = ACTIONS(969), + [aux_sym_cmd_identifier_token35] = ACTIONS(967), + [aux_sym_cmd_identifier_token36] = ACTIONS(967), + [aux_sym_cmd_identifier_token37] = ACTIONS(967), [aux_sym_cmd_identifier_token38] = ACTIONS(967), - [aux_sym_cmd_identifier_token39] = ACTIONS(969), - [aux_sym_cmd_identifier_token40] = ACTIONS(969), + [aux_sym_cmd_identifier_token39] = ACTIONS(967), + [aux_sym_cmd_identifier_token40] = ACTIONS(967), [anon_sym_def] = ACTIONS(967), [anon_sym_export_DASHenv] = ACTIONS(967), [anon_sym_extern] = ACTIONS(967), [anon_sym_module] = ACTIONS(967), [anon_sym_use] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_DOLLAR] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_DOLLAR] = ACTIONS(967), [anon_sym_error] = ACTIONS(967), [anon_sym_DASH2] = ACTIONS(967), [anon_sym_break] = ACTIONS(967), @@ -117323,7 +117539,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(967), [anon_sym_else] = ACTIONS(967), [anon_sym_match] = ACTIONS(967), - [anon_sym_RBRACE] = ACTIONS(969), + [anon_sym_RBRACE] = ACTIONS(967), [anon_sym_try] = ACTIONS(967), [anon_sym_catch] = ACTIONS(967), [anon_sym_return] = ACTIONS(967), @@ -117335,241 +117551,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(967), [anon_sym_as] = ACTIONS(967), [anon_sym_PLUS2] = ACTIONS(967), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(969), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(967), [anon_sym_DOT_DOT2] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(1793), + [anon_sym_DOT] = ACTIONS(1735), [anon_sym_DOT_DOT_EQ2] = ACTIONS(969), [anon_sym_DOT_DOT_LT2] = ACTIONS(969), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(969), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(967), [aux_sym__val_number_decimal_token1] = ACTIONS(967), - [aux_sym__val_number_decimal_token2] = ACTIONS(969), - [aux_sym__val_number_decimal_token3] = ACTIONS(969), - [aux_sym__val_number_decimal_token4] = ACTIONS(969), - [aux_sym__val_number_token1] = ACTIONS(969), - [aux_sym__val_number_token2] = ACTIONS(969), - [aux_sym__val_number_token3] = ACTIONS(969), + [aux_sym__val_number_decimal_token2] = ACTIONS(967), + [aux_sym__val_number_decimal_token3] = ACTIONS(967), + [aux_sym__val_number_decimal_token4] = ACTIONS(967), + [aux_sym__val_number_token1] = ACTIONS(967), + [aux_sym__val_number_token2] = ACTIONS(967), + [aux_sym__val_number_token3] = ACTIONS(967), [aux_sym__val_number_token4] = ACTIONS(967), [aux_sym__val_number_token5] = ACTIONS(967), [aux_sym__val_number_token6] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(969), - [sym__str_single_quotes] = ACTIONS(969), - [sym__str_back_ticks] = ACTIONS(969), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_DQUOTE] = ACTIONS(967), + [sym__str_single_quotes] = ACTIONS(967), + [sym__str_back_ticks] = ACTIONS(967), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(967), + [sym__entry_separator] = ACTIONS(969), + [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(969), }, + [380] = { + [sym_comment] = STATE(380), + [anon_sym_export] = ACTIONS(1802), + [anon_sym_alias] = ACTIONS(1802), + [anon_sym_let] = ACTIONS(1802), + [anon_sym_let_DASHenv] = ACTIONS(1802), + [anon_sym_mut] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1802), + [aux_sym_cmd_identifier_token1] = ACTIONS(1802), + [aux_sym_cmd_identifier_token2] = ACTIONS(1802), + [aux_sym_cmd_identifier_token3] = ACTIONS(1802), + [aux_sym_cmd_identifier_token4] = ACTIONS(1802), + [aux_sym_cmd_identifier_token5] = ACTIONS(1802), + [aux_sym_cmd_identifier_token6] = ACTIONS(1802), + [aux_sym_cmd_identifier_token7] = ACTIONS(1802), + [aux_sym_cmd_identifier_token8] = ACTIONS(1802), + [aux_sym_cmd_identifier_token9] = ACTIONS(1802), + [aux_sym_cmd_identifier_token10] = ACTIONS(1802), + [aux_sym_cmd_identifier_token11] = ACTIONS(1802), + [aux_sym_cmd_identifier_token12] = ACTIONS(1802), + [aux_sym_cmd_identifier_token13] = ACTIONS(1802), + [aux_sym_cmd_identifier_token14] = ACTIONS(1802), + [aux_sym_cmd_identifier_token15] = ACTIONS(1802), + [aux_sym_cmd_identifier_token16] = ACTIONS(1802), + [aux_sym_cmd_identifier_token17] = ACTIONS(1802), + [aux_sym_cmd_identifier_token18] = ACTIONS(1802), + [aux_sym_cmd_identifier_token19] = ACTIONS(1802), + [aux_sym_cmd_identifier_token20] = ACTIONS(1802), + [aux_sym_cmd_identifier_token21] = ACTIONS(1802), + [aux_sym_cmd_identifier_token22] = ACTIONS(1802), + [aux_sym_cmd_identifier_token23] = ACTIONS(1802), + [aux_sym_cmd_identifier_token24] = ACTIONS(1802), + [aux_sym_cmd_identifier_token25] = ACTIONS(1802), + [aux_sym_cmd_identifier_token26] = ACTIONS(1802), + [aux_sym_cmd_identifier_token27] = ACTIONS(1802), + [aux_sym_cmd_identifier_token28] = ACTIONS(1802), + [aux_sym_cmd_identifier_token29] = ACTIONS(1802), + [aux_sym_cmd_identifier_token30] = ACTIONS(1802), + [aux_sym_cmd_identifier_token31] = ACTIONS(1802), + [aux_sym_cmd_identifier_token32] = ACTIONS(1802), + [aux_sym_cmd_identifier_token33] = ACTIONS(1802), + [aux_sym_cmd_identifier_token34] = ACTIONS(1802), + [aux_sym_cmd_identifier_token35] = ACTIONS(1802), + [aux_sym_cmd_identifier_token36] = ACTIONS(1802), + [aux_sym_cmd_identifier_token37] = ACTIONS(1802), + [aux_sym_cmd_identifier_token38] = ACTIONS(1802), + [aux_sym_cmd_identifier_token39] = ACTIONS(1802), + [aux_sym_cmd_identifier_token40] = ACTIONS(1802), + [anon_sym_def] = ACTIONS(1802), + [anon_sym_export_DASHenv] = ACTIONS(1802), + [anon_sym_extern] = ACTIONS(1802), + [anon_sym_module] = ACTIONS(1802), + [anon_sym_use] = ACTIONS(1802), + [anon_sym_LPAREN] = ACTIONS(1802), + [anon_sym_DOLLAR] = ACTIONS(1802), + [anon_sym_error] = ACTIONS(1802), + [anon_sym_DASH2] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_for] = ACTIONS(1802), + [anon_sym_in2] = ACTIONS(1802), + [anon_sym_loop] = ACTIONS(1802), + [anon_sym_make] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_do] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_match] = ACTIONS(1802), + [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_catch] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_source] = ACTIONS(1802), + [anon_sym_source_DASHenv] = ACTIONS(1802), + [anon_sym_register] = ACTIONS(1802), + [anon_sym_hide] = ACTIONS(1802), + [anon_sym_hide_DASHenv] = ACTIONS(1802), + [anon_sym_overlay] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LPAREN2] = ACTIONS(1804), + [anon_sym_PLUS2] = ACTIONS(1802), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1802), + [anon_sym_DOT_DOT2] = ACTIONS(1806), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1808), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1808), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1802), + [aux_sym__val_number_decimal_token1] = ACTIONS(1802), + [aux_sym__val_number_decimal_token2] = ACTIONS(1802), + [aux_sym__val_number_decimal_token3] = ACTIONS(1802), + [aux_sym__val_number_decimal_token4] = ACTIONS(1802), + [aux_sym__val_number_token1] = ACTIONS(1802), + [aux_sym__val_number_token2] = ACTIONS(1802), + [aux_sym__val_number_token3] = ACTIONS(1802), + [aux_sym__val_number_token4] = ACTIONS(1802), + [aux_sym__val_number_token5] = ACTIONS(1802), + [aux_sym__val_number_token6] = ACTIONS(1802), + [anon_sym_DQUOTE] = ACTIONS(1802), + [sym__str_single_quotes] = ACTIONS(1802), + [sym__str_back_ticks] = ACTIONS(1802), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1802), + [sym__entry_separator] = ACTIONS(1810), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1812), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1810), + }, [381] = { - [sym_expr_parenthesized] = STATE(4257), - [sym__spread_parenthesized] = STATE(4659), - [sym_val_range] = STATE(4661), - [sym__val_range] = STATE(7658), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(4661), - [sym_val_nothing] = STATE(4616), - [sym_val_bool] = STATE(4396), - [sym__spread_variable] = STATE(4662), - [sym_val_variable] = STATE(4245), - [sym_val_number] = STATE(4616), - [sym__val_number_decimal] = STATE(4018), - [sym__val_number] = STATE(4634), - [sym_val_duration] = STATE(4616), - [sym_val_filesize] = STATE(4616), - [sym_val_binary] = STATE(4616), - [sym_val_string] = STATE(4616), - [sym__raw_str] = STATE(4465), - [sym__str_double_quotes] = STATE(4465), - [sym_val_interpolated] = STATE(4616), - [sym__inter_single_quotes] = STATE(4689), - [sym__inter_double_quotes] = STATE(4701), - [sym_val_list] = STATE(4616), - [sym__spread_list] = STATE(4659), - [sym_val_record] = STATE(4616), - [sym_val_table] = STATE(4616), - [sym_val_closure] = STATE(4616), - [sym__cmd_arg] = STATE(4668), - [sym_redirection] = STATE(4678), - [sym__flag] = STATE(4679), - [sym_short_flag] = STATE(4685), - [sym_long_flag] = STATE(4685), - [sym_unquoted] = STATE(4464), - [sym__unquoted_with_expr] = STATE(4692), - [sym__unquoted_anonymous_prefix] = STATE(7065), [sym_comment] = STATE(381), - [sym__newline] = ACTIONS(1802), - [sym__space] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_LBRACK] = ACTIONS(1806), - [anon_sym_LPAREN] = ACTIONS(1808), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1812), - [anon_sym_DASH2] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1816), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1820), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1822), - [anon_sym_DOT_DOT_LT] = ACTIONS(1822), - [anon_sym_null] = ACTIONS(1824), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1828), - [aux_sym__val_number_decimal_token1] = ACTIONS(1830), - [aux_sym__val_number_decimal_token2] = ACTIONS(1830), - [aux_sym__val_number_decimal_token3] = ACTIONS(1832), - [aux_sym__val_number_decimal_token4] = ACTIONS(1834), - [aux_sym__val_number_token1] = ACTIONS(1836), - [aux_sym__val_number_token2] = ACTIONS(1836), - [aux_sym__val_number_token3] = ACTIONS(1836), - [aux_sym__val_number_token4] = ACTIONS(1838), - [aux_sym__val_number_token5] = ACTIONS(1838), - [aux_sym__val_number_token6] = ACTIONS(1838), - [anon_sym_0b] = ACTIONS(1840), - [anon_sym_0o] = ACTIONS(1842), - [anon_sym_0x] = ACTIONS(1842), - [sym_val_date] = ACTIONS(1844), - [anon_sym_DQUOTE] = ACTIONS(1846), - [sym__str_single_quotes] = ACTIONS(1848), - [sym__str_back_ticks] = ACTIONS(1848), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1852), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1854), - [anon_sym_err_GT] = ACTIONS(1856), - [anon_sym_out_GT] = ACTIONS(1856), - [anon_sym_e_GT] = ACTIONS(1856), - [anon_sym_o_GT] = ACTIONS(1856), - [anon_sym_err_PLUSout_GT] = ACTIONS(1856), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1856), - [anon_sym_o_PLUSe_GT] = ACTIONS(1856), - [anon_sym_e_PLUSo_GT] = ACTIONS(1856), - [anon_sym_err_GT_GT] = ACTIONS(1856), - [anon_sym_out_GT_GT] = ACTIONS(1856), - [anon_sym_e_GT_GT] = ACTIONS(1856), - [anon_sym_o_GT_GT] = ACTIONS(1856), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1856), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1856), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1856), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1856), - [aux_sym_unquoted_token1] = ACTIONS(1858), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [aux_sym_cmd_identifier_token1] = ACTIONS(1002), + [aux_sym_cmd_identifier_token2] = ACTIONS(1002), + [aux_sym_cmd_identifier_token3] = ACTIONS(1002), + [aux_sym_cmd_identifier_token4] = ACTIONS(1002), + [aux_sym_cmd_identifier_token5] = ACTIONS(1002), + [aux_sym_cmd_identifier_token6] = ACTIONS(1002), + [aux_sym_cmd_identifier_token7] = ACTIONS(1002), + [aux_sym_cmd_identifier_token8] = ACTIONS(1002), + [aux_sym_cmd_identifier_token9] = ACTIONS(1002), + [aux_sym_cmd_identifier_token10] = ACTIONS(1002), + [aux_sym_cmd_identifier_token11] = ACTIONS(1002), + [aux_sym_cmd_identifier_token12] = ACTIONS(1002), + [aux_sym_cmd_identifier_token13] = ACTIONS(1002), + [aux_sym_cmd_identifier_token14] = ACTIONS(1002), + [aux_sym_cmd_identifier_token15] = ACTIONS(1002), + [aux_sym_cmd_identifier_token16] = ACTIONS(1002), + [aux_sym_cmd_identifier_token17] = ACTIONS(1002), + [aux_sym_cmd_identifier_token18] = ACTIONS(1002), + [aux_sym_cmd_identifier_token19] = ACTIONS(1002), + [aux_sym_cmd_identifier_token20] = ACTIONS(1002), + [aux_sym_cmd_identifier_token21] = ACTIONS(1002), + [aux_sym_cmd_identifier_token22] = ACTIONS(1002), + [aux_sym_cmd_identifier_token23] = ACTIONS(1002), + [aux_sym_cmd_identifier_token24] = ACTIONS(1002), + [aux_sym_cmd_identifier_token25] = ACTIONS(1002), + [aux_sym_cmd_identifier_token26] = ACTIONS(1002), + [aux_sym_cmd_identifier_token27] = ACTIONS(1002), + [aux_sym_cmd_identifier_token28] = ACTIONS(1002), + [aux_sym_cmd_identifier_token29] = ACTIONS(1002), + [aux_sym_cmd_identifier_token30] = ACTIONS(1002), + [aux_sym_cmd_identifier_token31] = ACTIONS(1002), + [aux_sym_cmd_identifier_token32] = ACTIONS(1002), + [aux_sym_cmd_identifier_token33] = ACTIONS(1002), + [aux_sym_cmd_identifier_token34] = ACTIONS(1002), + [aux_sym_cmd_identifier_token35] = ACTIONS(1002), + [aux_sym_cmd_identifier_token36] = ACTIONS(1002), + [aux_sym_cmd_identifier_token37] = ACTIONS(1002), + [aux_sym_cmd_identifier_token38] = ACTIONS(1002), + [aux_sym_cmd_identifier_token39] = ACTIONS(1002), + [aux_sym_cmd_identifier_token40] = ACTIONS(1002), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in2] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_make] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_else] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_catch] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_as] = ACTIONS(1002), + [anon_sym_QMARK2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1002), + [anon_sym_DOT_DOT2] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1002), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = ACTIONS(1002), + [aux_sym__val_number_decimal_token4] = ACTIONS(1002), + [aux_sym__val_number_token1] = ACTIONS(1002), + [aux_sym__val_number_token2] = ACTIONS(1002), + [aux_sym__val_number_token3] = ACTIONS(1002), + [aux_sym__val_number_token4] = ACTIONS(1002), + [aux_sym__val_number_token5] = ACTIONS(1002), + [aux_sym__val_number_token6] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1002), + [sym__entry_separator] = ACTIONS(1004), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1860), + [sym_raw_string_begin] = ACTIONS(1004), }, [382] = { [sym_comment] = STATE(382), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_alias] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_let_DASHenv] = ACTIONS(1755), - [anon_sym_mut] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1755), - [aux_sym_cmd_identifier_token3] = ACTIONS(1755), - [aux_sym_cmd_identifier_token4] = ACTIONS(1755), - [aux_sym_cmd_identifier_token5] = ACTIONS(1755), - [aux_sym_cmd_identifier_token6] = ACTIONS(1755), - [aux_sym_cmd_identifier_token7] = ACTIONS(1755), - [aux_sym_cmd_identifier_token8] = ACTIONS(1755), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1755), - [aux_sym_cmd_identifier_token11] = ACTIONS(1755), - [aux_sym_cmd_identifier_token12] = ACTIONS(1755), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1755), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1755), - [aux_sym_cmd_identifier_token17] = ACTIONS(1755), - [aux_sym_cmd_identifier_token18] = ACTIONS(1755), - [aux_sym_cmd_identifier_token19] = ACTIONS(1755), - [aux_sym_cmd_identifier_token20] = ACTIONS(1755), - [aux_sym_cmd_identifier_token21] = ACTIONS(1755), - [aux_sym_cmd_identifier_token22] = ACTIONS(1755), - [aux_sym_cmd_identifier_token23] = ACTIONS(1755), - [aux_sym_cmd_identifier_token24] = ACTIONS(1755), - [aux_sym_cmd_identifier_token25] = ACTIONS(1755), - [aux_sym_cmd_identifier_token26] = ACTIONS(1755), - [aux_sym_cmd_identifier_token27] = ACTIONS(1755), - [aux_sym_cmd_identifier_token28] = ACTIONS(1755), - [aux_sym_cmd_identifier_token29] = ACTIONS(1755), - [aux_sym_cmd_identifier_token30] = ACTIONS(1755), - [aux_sym_cmd_identifier_token31] = ACTIONS(1755), - [aux_sym_cmd_identifier_token32] = ACTIONS(1755), - [aux_sym_cmd_identifier_token33] = ACTIONS(1755), - [aux_sym_cmd_identifier_token34] = ACTIONS(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1755), - [aux_sym_cmd_identifier_token36] = ACTIONS(1755), - [aux_sym_cmd_identifier_token37] = ACTIONS(1755), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1755), - [aux_sym_cmd_identifier_token40] = ACTIONS(1755), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_export_DASHenv] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_make] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1755), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_source] = ACTIONS(1755), - [anon_sym_source_DASHenv] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_hide] = ACTIONS(1755), - [anon_sym_hide_DASHenv] = ACTIONS(1755), - [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT] = ACTIONS(1862), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(1864), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1755), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1755), - [aux_sym__val_number_decimal_token3] = ACTIONS(1755), - [aux_sym__val_number_decimal_token4] = ACTIONS(1755), - [aux_sym__val_number_token1] = ACTIONS(1755), - [aux_sym__val_number_token2] = ACTIONS(1755), - [aux_sym__val_number_token3] = ACTIONS(1755), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym__str_single_quotes] = ACTIONS(1755), - [sym__str_back_ticks] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1755), - [sym__entry_separator] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [383] = { - [sym_comment] = STATE(383), [anon_sym_export] = ACTIONS(1739), [anon_sym_alias] = ACTIONS(1739), [anon_sym_let] = ACTIONS(1739), @@ -117673,676 +117890,781 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1741), }, + [383] = { + [sym_comment] = STATE(383), + [anon_sym_export] = ACTIONS(1765), + [anon_sym_alias] = ACTIONS(1765), + [anon_sym_let] = ACTIONS(1765), + [anon_sym_let_DASHenv] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [aux_sym_cmd_identifier_token1] = ACTIONS(1765), + [aux_sym_cmd_identifier_token2] = ACTIONS(1765), + [aux_sym_cmd_identifier_token3] = ACTIONS(1765), + [aux_sym_cmd_identifier_token4] = ACTIONS(1765), + [aux_sym_cmd_identifier_token5] = ACTIONS(1765), + [aux_sym_cmd_identifier_token6] = ACTIONS(1765), + [aux_sym_cmd_identifier_token7] = ACTIONS(1765), + [aux_sym_cmd_identifier_token8] = ACTIONS(1765), + [aux_sym_cmd_identifier_token9] = ACTIONS(1765), + [aux_sym_cmd_identifier_token10] = ACTIONS(1765), + [aux_sym_cmd_identifier_token11] = ACTIONS(1765), + [aux_sym_cmd_identifier_token12] = ACTIONS(1765), + [aux_sym_cmd_identifier_token13] = ACTIONS(1765), + [aux_sym_cmd_identifier_token14] = ACTIONS(1765), + [aux_sym_cmd_identifier_token15] = ACTIONS(1765), + [aux_sym_cmd_identifier_token16] = ACTIONS(1765), + [aux_sym_cmd_identifier_token17] = ACTIONS(1765), + [aux_sym_cmd_identifier_token18] = ACTIONS(1765), + [aux_sym_cmd_identifier_token19] = ACTIONS(1765), + [aux_sym_cmd_identifier_token20] = ACTIONS(1765), + [aux_sym_cmd_identifier_token21] = ACTIONS(1765), + [aux_sym_cmd_identifier_token22] = ACTIONS(1765), + [aux_sym_cmd_identifier_token23] = ACTIONS(1765), + [aux_sym_cmd_identifier_token24] = ACTIONS(1765), + [aux_sym_cmd_identifier_token25] = ACTIONS(1765), + [aux_sym_cmd_identifier_token26] = ACTIONS(1765), + [aux_sym_cmd_identifier_token27] = ACTIONS(1765), + [aux_sym_cmd_identifier_token28] = ACTIONS(1765), + [aux_sym_cmd_identifier_token29] = ACTIONS(1765), + [aux_sym_cmd_identifier_token30] = ACTIONS(1765), + [aux_sym_cmd_identifier_token31] = ACTIONS(1765), + [aux_sym_cmd_identifier_token32] = ACTIONS(1765), + [aux_sym_cmd_identifier_token33] = ACTIONS(1765), + [aux_sym_cmd_identifier_token34] = ACTIONS(1765), + [aux_sym_cmd_identifier_token35] = ACTIONS(1765), + [aux_sym_cmd_identifier_token36] = ACTIONS(1765), + [aux_sym_cmd_identifier_token37] = ACTIONS(1765), + [aux_sym_cmd_identifier_token38] = ACTIONS(1765), + [aux_sym_cmd_identifier_token39] = ACTIONS(1765), + [aux_sym_cmd_identifier_token40] = ACTIONS(1765), + [anon_sym_def] = ACTIONS(1765), + [anon_sym_export_DASHenv] = ACTIONS(1765), + [anon_sym_extern] = ACTIONS(1765), + [anon_sym_module] = ACTIONS(1765), + [anon_sym_use] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_DOLLAR] = ACTIONS(1765), + [anon_sym_error] = ACTIONS(1765), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_in2] = ACTIONS(1765), + [anon_sym_loop] = ACTIONS(1765), + [anon_sym_make] = ACTIONS(1765), + [anon_sym_while] = ACTIONS(1765), + [anon_sym_do] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_else] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_try] = ACTIONS(1765), + [anon_sym_catch] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_source] = ACTIONS(1765), + [anon_sym_source_DASHenv] = ACTIONS(1765), + [anon_sym_register] = ACTIONS(1765), + [anon_sym_hide] = ACTIONS(1765), + [anon_sym_hide_DASHenv] = ACTIONS(1765), + [anon_sym_overlay] = ACTIONS(1765), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_PLUS2] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), + [anon_sym_DOT_DOT2] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), + [aux_sym__immediate_decimal_token2] = ACTIONS(1816), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1765), + [aux_sym__val_number_decimal_token3] = ACTIONS(1765), + [aux_sym__val_number_decimal_token4] = ACTIONS(1765), + [aux_sym__val_number_token1] = ACTIONS(1765), + [aux_sym__val_number_token2] = ACTIONS(1765), + [aux_sym__val_number_token3] = ACTIONS(1765), + [aux_sym__val_number_token4] = ACTIONS(1765), + [aux_sym__val_number_token5] = ACTIONS(1765), + [aux_sym__val_number_token6] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1765), + [sym__str_single_quotes] = ACTIONS(1765), + [sym__str_back_ticks] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), + [sym__entry_separator] = ACTIONS(1767), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1767), + }, [384] = { [sym_comment] = STATE(384), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_alias] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_let_DASHenv] = ACTIONS(1755), - [anon_sym_mut] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1755), - [aux_sym_cmd_identifier_token3] = ACTIONS(1755), - [aux_sym_cmd_identifier_token4] = ACTIONS(1755), - [aux_sym_cmd_identifier_token5] = ACTIONS(1755), - [aux_sym_cmd_identifier_token6] = ACTIONS(1755), - [aux_sym_cmd_identifier_token7] = ACTIONS(1755), - [aux_sym_cmd_identifier_token8] = ACTIONS(1755), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1755), - [aux_sym_cmd_identifier_token11] = ACTIONS(1755), - [aux_sym_cmd_identifier_token12] = ACTIONS(1755), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1755), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1755), - [aux_sym_cmd_identifier_token17] = ACTIONS(1755), - [aux_sym_cmd_identifier_token18] = ACTIONS(1755), - [aux_sym_cmd_identifier_token19] = ACTIONS(1755), - [aux_sym_cmd_identifier_token20] = ACTIONS(1755), - [aux_sym_cmd_identifier_token21] = ACTIONS(1755), - [aux_sym_cmd_identifier_token22] = ACTIONS(1755), - [aux_sym_cmd_identifier_token23] = ACTIONS(1755), - [aux_sym_cmd_identifier_token24] = ACTIONS(1755), - [aux_sym_cmd_identifier_token25] = ACTIONS(1755), - [aux_sym_cmd_identifier_token26] = ACTIONS(1755), - [aux_sym_cmd_identifier_token27] = ACTIONS(1755), - [aux_sym_cmd_identifier_token28] = ACTIONS(1755), - [aux_sym_cmd_identifier_token29] = ACTIONS(1755), - [aux_sym_cmd_identifier_token30] = ACTIONS(1755), - [aux_sym_cmd_identifier_token31] = ACTIONS(1755), - [aux_sym_cmd_identifier_token32] = ACTIONS(1755), - [aux_sym_cmd_identifier_token33] = ACTIONS(1755), - [aux_sym_cmd_identifier_token34] = ACTIONS(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1755), - [aux_sym_cmd_identifier_token36] = ACTIONS(1755), - [aux_sym_cmd_identifier_token37] = ACTIONS(1755), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1755), - [aux_sym_cmd_identifier_token40] = ACTIONS(1755), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_export_DASHenv] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_make] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1755), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_source] = ACTIONS(1755), - [anon_sym_source_DASHenv] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_hide] = ACTIONS(1755), - [anon_sym_hide_DASHenv] = ACTIONS(1755), - [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1755), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1755), - [aux_sym__val_number_decimal_token3] = ACTIONS(1755), - [aux_sym__val_number_decimal_token4] = ACTIONS(1755), - [aux_sym__val_number_token1] = ACTIONS(1755), - [aux_sym__val_number_token2] = ACTIONS(1755), - [aux_sym__val_number_token3] = ACTIONS(1755), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym__str_single_quotes] = ACTIONS(1755), - [sym__str_back_ticks] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1755), - [sym__entry_separator] = ACTIONS(1757), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1785), + [anon_sym_alias] = ACTIONS(1785), + [anon_sym_let] = ACTIONS(1785), + [anon_sym_let_DASHenv] = ACTIONS(1785), + [anon_sym_mut] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(1785), + [aux_sym_cmd_identifier_token1] = ACTIONS(1785), + [aux_sym_cmd_identifier_token2] = ACTIONS(1787), + [aux_sym_cmd_identifier_token3] = ACTIONS(1787), + [aux_sym_cmd_identifier_token4] = ACTIONS(1787), + [aux_sym_cmd_identifier_token5] = ACTIONS(1787), + [aux_sym_cmd_identifier_token6] = ACTIONS(1787), + [aux_sym_cmd_identifier_token7] = ACTIONS(1787), + [aux_sym_cmd_identifier_token8] = ACTIONS(1785), + [aux_sym_cmd_identifier_token9] = ACTIONS(1785), + [aux_sym_cmd_identifier_token10] = ACTIONS(1787), + [aux_sym_cmd_identifier_token11] = ACTIONS(1787), + [aux_sym_cmd_identifier_token12] = ACTIONS(1785), + [aux_sym_cmd_identifier_token13] = ACTIONS(1785), + [aux_sym_cmd_identifier_token14] = ACTIONS(1785), + [aux_sym_cmd_identifier_token15] = ACTIONS(1785), + [aux_sym_cmd_identifier_token16] = ACTIONS(1787), + [aux_sym_cmd_identifier_token17] = ACTIONS(1787), + [aux_sym_cmd_identifier_token18] = ACTIONS(1787), + [aux_sym_cmd_identifier_token19] = ACTIONS(1787), + [aux_sym_cmd_identifier_token20] = ACTIONS(1787), + [aux_sym_cmd_identifier_token21] = ACTIONS(1787), + [aux_sym_cmd_identifier_token22] = ACTIONS(1787), + [aux_sym_cmd_identifier_token23] = ACTIONS(1787), + [aux_sym_cmd_identifier_token24] = ACTIONS(1787), + [aux_sym_cmd_identifier_token25] = ACTIONS(1787), + [aux_sym_cmd_identifier_token26] = ACTIONS(1787), + [aux_sym_cmd_identifier_token27] = ACTIONS(1787), + [aux_sym_cmd_identifier_token28] = ACTIONS(1787), + [aux_sym_cmd_identifier_token29] = ACTIONS(1787), + [aux_sym_cmd_identifier_token30] = ACTIONS(1787), + [aux_sym_cmd_identifier_token31] = ACTIONS(1787), + [aux_sym_cmd_identifier_token32] = ACTIONS(1787), + [aux_sym_cmd_identifier_token33] = ACTIONS(1787), + [aux_sym_cmd_identifier_token34] = ACTIONS(1785), + [aux_sym_cmd_identifier_token35] = ACTIONS(1787), + [aux_sym_cmd_identifier_token36] = ACTIONS(1787), + [aux_sym_cmd_identifier_token37] = ACTIONS(1787), + [aux_sym_cmd_identifier_token38] = ACTIONS(1785), + [aux_sym_cmd_identifier_token39] = ACTIONS(1787), + [aux_sym_cmd_identifier_token40] = ACTIONS(1787), + [anon_sym_def] = ACTIONS(1785), + [anon_sym_export_DASHenv] = ACTIONS(1785), + [anon_sym_extern] = ACTIONS(1785), + [anon_sym_module] = ACTIONS(1785), + [anon_sym_use] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1787), + [anon_sym_error] = ACTIONS(1785), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_break] = ACTIONS(1785), + [anon_sym_continue] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1785), + [anon_sym_in2] = ACTIONS(1785), + [anon_sym_loop] = ACTIONS(1785), + [anon_sym_make] = ACTIONS(1785), + [anon_sym_while] = ACTIONS(1785), + [anon_sym_do] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1785), + [anon_sym_else] = ACTIONS(1785), + [anon_sym_match] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1787), + [anon_sym_try] = ACTIONS(1785), + [anon_sym_catch] = ACTIONS(1785), + [anon_sym_return] = ACTIONS(1785), + [anon_sym_source] = ACTIONS(1785), + [anon_sym_source_DASHenv] = ACTIONS(1785), + [anon_sym_register] = ACTIONS(1785), + [anon_sym_hide] = ACTIONS(1785), + [anon_sym_hide_DASHenv] = ACTIONS(1785), + [anon_sym_overlay] = ACTIONS(1785), + [anon_sym_as] = ACTIONS(1785), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_PLUS2] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1787), + [anon_sym_DOT_DOT2] = ACTIONS(1785), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), + [aux_sym__immediate_decimal_token2] = ACTIONS(1818), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1787), + [aux_sym__val_number_decimal_token1] = ACTIONS(1785), + [aux_sym__val_number_decimal_token2] = ACTIONS(1787), + [aux_sym__val_number_decimal_token3] = ACTIONS(1787), + [aux_sym__val_number_decimal_token4] = ACTIONS(1787), + [aux_sym__val_number_token1] = ACTIONS(1787), + [aux_sym__val_number_token2] = ACTIONS(1787), + [aux_sym__val_number_token3] = ACTIONS(1787), + [aux_sym__val_number_token4] = ACTIONS(1785), + [aux_sym__val_number_token5] = ACTIONS(1785), + [aux_sym__val_number_token6] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1787), + [sym__str_single_quotes] = ACTIONS(1787), + [sym__str_back_ticks] = ACTIONS(1787), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1787), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1787), }, [385] = { [sym_comment] = STATE(385), - [anon_sym_export] = ACTIONS(1866), - [anon_sym_alias] = ACTIONS(1866), - [anon_sym_let] = ACTIONS(1866), - [anon_sym_let_DASHenv] = ACTIONS(1866), - [anon_sym_mut] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [aux_sym_cmd_identifier_token1] = ACTIONS(1866), - [aux_sym_cmd_identifier_token2] = ACTIONS(1866), - [aux_sym_cmd_identifier_token3] = ACTIONS(1866), - [aux_sym_cmd_identifier_token4] = ACTIONS(1866), - [aux_sym_cmd_identifier_token5] = ACTIONS(1866), - [aux_sym_cmd_identifier_token6] = ACTIONS(1866), - [aux_sym_cmd_identifier_token7] = ACTIONS(1866), - [aux_sym_cmd_identifier_token8] = ACTIONS(1866), - [aux_sym_cmd_identifier_token9] = ACTIONS(1866), - [aux_sym_cmd_identifier_token10] = ACTIONS(1866), - [aux_sym_cmd_identifier_token11] = ACTIONS(1866), - [aux_sym_cmd_identifier_token12] = ACTIONS(1866), - [aux_sym_cmd_identifier_token13] = ACTIONS(1866), - [aux_sym_cmd_identifier_token14] = ACTIONS(1866), - [aux_sym_cmd_identifier_token15] = ACTIONS(1866), - [aux_sym_cmd_identifier_token16] = ACTIONS(1866), - [aux_sym_cmd_identifier_token17] = ACTIONS(1866), - [aux_sym_cmd_identifier_token18] = ACTIONS(1866), - [aux_sym_cmd_identifier_token19] = ACTIONS(1866), - [aux_sym_cmd_identifier_token20] = ACTIONS(1866), - [aux_sym_cmd_identifier_token21] = ACTIONS(1866), - [aux_sym_cmd_identifier_token22] = ACTIONS(1866), - [aux_sym_cmd_identifier_token23] = ACTIONS(1866), - [aux_sym_cmd_identifier_token24] = ACTIONS(1866), - [aux_sym_cmd_identifier_token25] = ACTIONS(1866), - [aux_sym_cmd_identifier_token26] = ACTIONS(1866), - [aux_sym_cmd_identifier_token27] = ACTIONS(1866), - [aux_sym_cmd_identifier_token28] = ACTIONS(1866), - [aux_sym_cmd_identifier_token29] = ACTIONS(1866), - [aux_sym_cmd_identifier_token30] = ACTIONS(1866), - [aux_sym_cmd_identifier_token31] = ACTIONS(1866), - [aux_sym_cmd_identifier_token32] = ACTIONS(1866), - [aux_sym_cmd_identifier_token33] = ACTIONS(1866), - [aux_sym_cmd_identifier_token34] = ACTIONS(1866), - [aux_sym_cmd_identifier_token35] = ACTIONS(1866), - [aux_sym_cmd_identifier_token36] = ACTIONS(1866), - [aux_sym_cmd_identifier_token37] = ACTIONS(1866), - [aux_sym_cmd_identifier_token38] = ACTIONS(1866), - [aux_sym_cmd_identifier_token39] = ACTIONS(1866), - [aux_sym_cmd_identifier_token40] = ACTIONS(1866), - [anon_sym_def] = ACTIONS(1866), - [anon_sym_export_DASHenv] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym_module] = ACTIONS(1866), - [anon_sym_use] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1866), - [anon_sym_error] = ACTIONS(1866), - [anon_sym_DASH2] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_in2] = ACTIONS(1866), - [anon_sym_loop] = ACTIONS(1866), - [anon_sym_make] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_else] = ACTIONS(1866), - [anon_sym_match] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_try] = ACTIONS(1866), - [anon_sym_catch] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_source] = ACTIONS(1866), - [anon_sym_source_DASHenv] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_hide] = ACTIONS(1866), - [anon_sym_hide_DASHenv] = ACTIONS(1866), - [anon_sym_overlay] = ACTIONS(1866), - [anon_sym_as] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_PLUS2] = ACTIONS(1866), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1866), - [anon_sym_DOT_DOT2] = ACTIONS(1870), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1872), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1872), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1866), - [aux_sym__val_number_decimal_token1] = ACTIONS(1866), - [aux_sym__val_number_decimal_token2] = ACTIONS(1866), - [aux_sym__val_number_decimal_token3] = ACTIONS(1866), - [aux_sym__val_number_decimal_token4] = ACTIONS(1866), - [aux_sym__val_number_token1] = ACTIONS(1866), - [aux_sym__val_number_token2] = ACTIONS(1866), - [aux_sym__val_number_token3] = ACTIONS(1866), - [aux_sym__val_number_token4] = ACTIONS(1866), - [aux_sym__val_number_token5] = ACTIONS(1866), - [aux_sym__val_number_token6] = ACTIONS(1866), - [anon_sym_DQUOTE] = ACTIONS(1866), - [sym__str_single_quotes] = ACTIONS(1866), - [sym__str_back_ticks] = ACTIONS(1866), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1866), - [sym__entry_separator] = ACTIONS(1874), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1546), + [anon_sym_export] = ACTIONS(1820), + [anon_sym_alias] = ACTIONS(1820), + [anon_sym_let] = ACTIONS(1820), + [anon_sym_let_DASHenv] = ACTIONS(1820), + [anon_sym_mut] = ACTIONS(1820), + [anon_sym_const] = ACTIONS(1820), + [aux_sym_cmd_identifier_token1] = ACTIONS(1820), + [aux_sym_cmd_identifier_token2] = ACTIONS(1820), + [aux_sym_cmd_identifier_token3] = ACTIONS(1820), + [aux_sym_cmd_identifier_token4] = ACTIONS(1820), + [aux_sym_cmd_identifier_token5] = ACTIONS(1820), + [aux_sym_cmd_identifier_token6] = ACTIONS(1820), + [aux_sym_cmd_identifier_token7] = ACTIONS(1820), + [aux_sym_cmd_identifier_token8] = ACTIONS(1820), + [aux_sym_cmd_identifier_token9] = ACTIONS(1820), + [aux_sym_cmd_identifier_token10] = ACTIONS(1820), + [aux_sym_cmd_identifier_token11] = ACTIONS(1820), + [aux_sym_cmd_identifier_token12] = ACTIONS(1820), + [aux_sym_cmd_identifier_token13] = ACTIONS(1820), + [aux_sym_cmd_identifier_token14] = ACTIONS(1820), + [aux_sym_cmd_identifier_token15] = ACTIONS(1820), + [aux_sym_cmd_identifier_token16] = ACTIONS(1820), + [aux_sym_cmd_identifier_token17] = ACTIONS(1820), + [aux_sym_cmd_identifier_token18] = ACTIONS(1820), + [aux_sym_cmd_identifier_token19] = ACTIONS(1820), + [aux_sym_cmd_identifier_token20] = ACTIONS(1820), + [aux_sym_cmd_identifier_token21] = ACTIONS(1820), + [aux_sym_cmd_identifier_token22] = ACTIONS(1820), + [aux_sym_cmd_identifier_token23] = ACTIONS(1820), + [aux_sym_cmd_identifier_token24] = ACTIONS(1820), + [aux_sym_cmd_identifier_token25] = ACTIONS(1820), + [aux_sym_cmd_identifier_token26] = ACTIONS(1820), + [aux_sym_cmd_identifier_token27] = ACTIONS(1820), + [aux_sym_cmd_identifier_token28] = ACTIONS(1820), + [aux_sym_cmd_identifier_token29] = ACTIONS(1820), + [aux_sym_cmd_identifier_token30] = ACTIONS(1820), + [aux_sym_cmd_identifier_token31] = ACTIONS(1820), + [aux_sym_cmd_identifier_token32] = ACTIONS(1820), + [aux_sym_cmd_identifier_token33] = ACTIONS(1820), + [aux_sym_cmd_identifier_token34] = ACTIONS(1820), + [aux_sym_cmd_identifier_token35] = ACTIONS(1820), + [aux_sym_cmd_identifier_token36] = ACTIONS(1820), + [aux_sym_cmd_identifier_token37] = ACTIONS(1820), + [aux_sym_cmd_identifier_token38] = ACTIONS(1820), + [aux_sym_cmd_identifier_token39] = ACTIONS(1820), + [aux_sym_cmd_identifier_token40] = ACTIONS(1820), + [anon_sym_def] = ACTIONS(1820), + [anon_sym_export_DASHenv] = ACTIONS(1820), + [anon_sym_extern] = ACTIONS(1820), + [anon_sym_module] = ACTIONS(1820), + [anon_sym_use] = ACTIONS(1820), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_error] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_break] = ACTIONS(1820), + [anon_sym_continue] = ACTIONS(1820), + [anon_sym_for] = ACTIONS(1820), + [anon_sym_in2] = ACTIONS(1820), + [anon_sym_loop] = ACTIONS(1820), + [anon_sym_make] = ACTIONS(1820), + [anon_sym_while] = ACTIONS(1820), + [anon_sym_do] = ACTIONS(1820), + [anon_sym_if] = ACTIONS(1820), + [anon_sym_else] = ACTIONS(1820), + [anon_sym_match] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_try] = ACTIONS(1820), + [anon_sym_catch] = ACTIONS(1820), + [anon_sym_return] = ACTIONS(1820), + [anon_sym_source] = ACTIONS(1820), + [anon_sym_source_DASHenv] = ACTIONS(1820), + [anon_sym_register] = ACTIONS(1820), + [anon_sym_hide] = ACTIONS(1820), + [anon_sym_hide_DASHenv] = ACTIONS(1820), + [anon_sym_overlay] = ACTIONS(1820), + [anon_sym_as] = ACTIONS(1820), + [anon_sym_LPAREN2] = ACTIONS(1822), + [anon_sym_PLUS2] = ACTIONS(1820), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1820), + [anon_sym_DOT_DOT2] = ACTIONS(1824), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1826), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1826), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1820), + [aux_sym__val_number_decimal_token1] = ACTIONS(1820), + [aux_sym__val_number_decimal_token2] = ACTIONS(1820), + [aux_sym__val_number_decimal_token3] = ACTIONS(1820), + [aux_sym__val_number_decimal_token4] = ACTIONS(1820), + [aux_sym__val_number_token1] = ACTIONS(1820), + [aux_sym__val_number_token2] = ACTIONS(1820), + [aux_sym__val_number_token3] = ACTIONS(1820), + [aux_sym__val_number_token4] = ACTIONS(1820), + [aux_sym__val_number_token5] = ACTIONS(1820), + [aux_sym__val_number_token6] = ACTIONS(1820), + [anon_sym_DQUOTE] = ACTIONS(1820), + [sym__str_single_quotes] = ACTIONS(1820), + [sym__str_back_ticks] = ACTIONS(1820), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1820), + [sym__entry_separator] = ACTIONS(1828), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1559), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1874), + [sym_raw_string_begin] = ACTIONS(1828), }, [386] = { - [sym_cell_path] = STATE(602), - [sym_path] = STATE(517), [sym_comment] = STATE(386), - [aux_sym_cell_path_repeat1] = STATE(409), - [anon_sym_export] = ACTIONS(961), - [anon_sym_alias] = ACTIONS(961), - [anon_sym_let] = ACTIONS(961), - [anon_sym_let_DASHenv] = ACTIONS(961), - [anon_sym_mut] = ACTIONS(961), - [anon_sym_const] = ACTIONS(961), - [aux_sym_cmd_identifier_token1] = ACTIONS(961), - [aux_sym_cmd_identifier_token2] = ACTIONS(963), - [aux_sym_cmd_identifier_token3] = ACTIONS(963), - [aux_sym_cmd_identifier_token4] = ACTIONS(963), - [aux_sym_cmd_identifier_token5] = ACTIONS(963), - [aux_sym_cmd_identifier_token6] = ACTIONS(963), - [aux_sym_cmd_identifier_token7] = ACTIONS(963), - [aux_sym_cmd_identifier_token8] = ACTIONS(961), - [aux_sym_cmd_identifier_token9] = ACTIONS(961), - [aux_sym_cmd_identifier_token10] = ACTIONS(963), - [aux_sym_cmd_identifier_token11] = ACTIONS(963), - [aux_sym_cmd_identifier_token12] = ACTIONS(961), - [aux_sym_cmd_identifier_token13] = ACTIONS(961), - [aux_sym_cmd_identifier_token14] = ACTIONS(961), - [aux_sym_cmd_identifier_token15] = ACTIONS(961), - [aux_sym_cmd_identifier_token16] = ACTIONS(963), - [aux_sym_cmd_identifier_token17] = ACTIONS(963), - [aux_sym_cmd_identifier_token18] = ACTIONS(963), - [aux_sym_cmd_identifier_token19] = ACTIONS(963), - [aux_sym_cmd_identifier_token20] = ACTIONS(963), - [aux_sym_cmd_identifier_token21] = ACTIONS(963), - [aux_sym_cmd_identifier_token22] = ACTIONS(963), - [aux_sym_cmd_identifier_token23] = ACTIONS(963), - [aux_sym_cmd_identifier_token24] = ACTIONS(963), - [aux_sym_cmd_identifier_token25] = ACTIONS(963), - [aux_sym_cmd_identifier_token26] = ACTIONS(963), - [aux_sym_cmd_identifier_token27] = ACTIONS(963), - [aux_sym_cmd_identifier_token28] = ACTIONS(963), - [aux_sym_cmd_identifier_token29] = ACTIONS(963), - [aux_sym_cmd_identifier_token30] = ACTIONS(963), - [aux_sym_cmd_identifier_token31] = ACTIONS(963), - [aux_sym_cmd_identifier_token32] = ACTIONS(963), - [aux_sym_cmd_identifier_token33] = ACTIONS(963), - [aux_sym_cmd_identifier_token34] = ACTIONS(961), - [aux_sym_cmd_identifier_token35] = ACTIONS(963), - [aux_sym_cmd_identifier_token36] = ACTIONS(963), - [aux_sym_cmd_identifier_token37] = ACTIONS(963), - [aux_sym_cmd_identifier_token38] = ACTIONS(961), - [aux_sym_cmd_identifier_token39] = ACTIONS(963), - [aux_sym_cmd_identifier_token40] = ACTIONS(963), - [anon_sym_def] = ACTIONS(961), - [anon_sym_export_DASHenv] = ACTIONS(961), - [anon_sym_extern] = ACTIONS(961), - [anon_sym_module] = ACTIONS(961), - [anon_sym_use] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(963), - [anon_sym_COMMA] = ACTIONS(963), - [anon_sym_DOLLAR] = ACTIONS(963), - [anon_sym_error] = ACTIONS(961), - [anon_sym_DASH2] = ACTIONS(961), - [anon_sym_break] = ACTIONS(961), - [anon_sym_continue] = ACTIONS(961), - [anon_sym_for] = ACTIONS(961), - [anon_sym_in2] = ACTIONS(961), - [anon_sym_loop] = ACTIONS(961), - [anon_sym_make] = ACTIONS(961), - [anon_sym_while] = ACTIONS(961), - [anon_sym_do] = ACTIONS(961), - [anon_sym_if] = ACTIONS(961), - [anon_sym_else] = ACTIONS(961), - [anon_sym_match] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_try] = ACTIONS(961), - [anon_sym_catch] = ACTIONS(961), - [anon_sym_return] = ACTIONS(961), - [anon_sym_source] = ACTIONS(961), - [anon_sym_source_DASHenv] = ACTIONS(961), - [anon_sym_register] = ACTIONS(961), - [anon_sym_hide] = ACTIONS(961), - [anon_sym_hide_DASHenv] = ACTIONS(961), - [anon_sym_overlay] = ACTIONS(961), - [anon_sym_as] = ACTIONS(961), - [anon_sym_PLUS2] = ACTIONS(961), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(963), - [anon_sym_DOT] = ACTIONS(1876), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(963), - [aux_sym__val_number_decimal_token1] = ACTIONS(961), - [aux_sym__val_number_decimal_token2] = ACTIONS(963), - [aux_sym__val_number_decimal_token3] = ACTIONS(963), - [aux_sym__val_number_decimal_token4] = ACTIONS(963), - [aux_sym__val_number_token1] = ACTIONS(963), - [aux_sym__val_number_token2] = ACTIONS(963), - [aux_sym__val_number_token3] = ACTIONS(963), - [aux_sym__val_number_token4] = ACTIONS(961), - [aux_sym__val_number_token5] = ACTIONS(961), - [aux_sym__val_number_token6] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(963), - [sym__str_single_quotes] = ACTIONS(963), - [sym__str_back_ticks] = ACTIONS(963), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(963), - [aux_sym_record_entry_token1] = ACTIONS(963), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(963), - }, - [387] = { - [sym_comment] = STATE(387), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_alias] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_let_DASHenv] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [aux_sym_cmd_identifier_token1] = ACTIONS(1783), - [aux_sym_cmd_identifier_token2] = ACTIONS(1783), - [aux_sym_cmd_identifier_token3] = ACTIONS(1783), - [aux_sym_cmd_identifier_token4] = ACTIONS(1783), - [aux_sym_cmd_identifier_token5] = ACTIONS(1783), - [aux_sym_cmd_identifier_token6] = ACTIONS(1783), - [aux_sym_cmd_identifier_token7] = ACTIONS(1783), - [aux_sym_cmd_identifier_token8] = ACTIONS(1783), - [aux_sym_cmd_identifier_token9] = ACTIONS(1783), - [aux_sym_cmd_identifier_token10] = ACTIONS(1783), - [aux_sym_cmd_identifier_token11] = ACTIONS(1783), - [aux_sym_cmd_identifier_token12] = ACTIONS(1783), - [aux_sym_cmd_identifier_token13] = ACTIONS(1783), - [aux_sym_cmd_identifier_token14] = ACTIONS(1783), - [aux_sym_cmd_identifier_token15] = ACTIONS(1783), - [aux_sym_cmd_identifier_token16] = ACTIONS(1783), - [aux_sym_cmd_identifier_token17] = ACTIONS(1783), - [aux_sym_cmd_identifier_token18] = ACTIONS(1783), - [aux_sym_cmd_identifier_token19] = ACTIONS(1783), - [aux_sym_cmd_identifier_token20] = ACTIONS(1783), - [aux_sym_cmd_identifier_token21] = ACTIONS(1783), - [aux_sym_cmd_identifier_token22] = ACTIONS(1783), - [aux_sym_cmd_identifier_token23] = ACTIONS(1783), - [aux_sym_cmd_identifier_token24] = ACTIONS(1783), - [aux_sym_cmd_identifier_token25] = ACTIONS(1783), - [aux_sym_cmd_identifier_token26] = ACTIONS(1783), - [aux_sym_cmd_identifier_token27] = ACTIONS(1783), - [aux_sym_cmd_identifier_token28] = ACTIONS(1783), - [aux_sym_cmd_identifier_token29] = ACTIONS(1783), - [aux_sym_cmd_identifier_token30] = ACTIONS(1783), - [aux_sym_cmd_identifier_token31] = ACTIONS(1783), - [aux_sym_cmd_identifier_token32] = ACTIONS(1783), - [aux_sym_cmd_identifier_token33] = ACTIONS(1783), - [aux_sym_cmd_identifier_token34] = ACTIONS(1783), - [aux_sym_cmd_identifier_token35] = ACTIONS(1783), - [aux_sym_cmd_identifier_token36] = ACTIONS(1783), - [aux_sym_cmd_identifier_token37] = ACTIONS(1783), - [aux_sym_cmd_identifier_token38] = ACTIONS(1783), - [aux_sym_cmd_identifier_token39] = ACTIONS(1783), - [aux_sym_cmd_identifier_token40] = ACTIONS(1783), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_export_DASHenv] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_error] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_make] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_catch] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_source] = ACTIONS(1783), - [anon_sym_source_DASHenv] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_hide] = ACTIONS(1783), - [anon_sym_hide_DASHenv] = ACTIONS(1783), - [anon_sym_overlay] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1783), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1783), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1783), - [aux_sym__val_number_decimal_token3] = ACTIONS(1783), - [aux_sym__val_number_decimal_token4] = ACTIONS(1783), - [aux_sym__val_number_token1] = ACTIONS(1783), - [aux_sym__val_number_token2] = ACTIONS(1783), - [aux_sym__val_number_token3] = ACTIONS(1783), - [aux_sym__val_number_token4] = ACTIONS(1783), - [aux_sym__val_number_token5] = ACTIONS(1783), - [aux_sym__val_number_token6] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1783), - [sym__str_single_quotes] = ACTIONS(1783), - [sym__str_back_ticks] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1783), - [sym__entry_separator] = ACTIONS(1785), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1785), - }, - [388] = { - [sym_comment] = STATE(388), - [anon_sym_export] = ACTIONS(1878), - [anon_sym_alias] = ACTIONS(1878), - [anon_sym_let] = ACTIONS(1878), - [anon_sym_let_DASHenv] = ACTIONS(1878), - [anon_sym_mut] = ACTIONS(1878), - [anon_sym_const] = ACTIONS(1878), - [aux_sym_cmd_identifier_token1] = ACTIONS(1878), - [aux_sym_cmd_identifier_token2] = ACTIONS(1878), - [aux_sym_cmd_identifier_token3] = ACTIONS(1878), - [aux_sym_cmd_identifier_token4] = ACTIONS(1878), - [aux_sym_cmd_identifier_token5] = ACTIONS(1878), - [aux_sym_cmd_identifier_token6] = ACTIONS(1878), - [aux_sym_cmd_identifier_token7] = ACTIONS(1878), - [aux_sym_cmd_identifier_token8] = ACTIONS(1878), - [aux_sym_cmd_identifier_token9] = ACTIONS(1878), - [aux_sym_cmd_identifier_token10] = ACTIONS(1878), - [aux_sym_cmd_identifier_token11] = ACTIONS(1878), - [aux_sym_cmd_identifier_token12] = ACTIONS(1878), - [aux_sym_cmd_identifier_token13] = ACTIONS(1878), - [aux_sym_cmd_identifier_token14] = ACTIONS(1878), - [aux_sym_cmd_identifier_token15] = ACTIONS(1878), - [aux_sym_cmd_identifier_token16] = ACTIONS(1878), - [aux_sym_cmd_identifier_token17] = ACTIONS(1878), - [aux_sym_cmd_identifier_token18] = ACTIONS(1878), - [aux_sym_cmd_identifier_token19] = ACTIONS(1878), - [aux_sym_cmd_identifier_token20] = ACTIONS(1878), - [aux_sym_cmd_identifier_token21] = ACTIONS(1878), - [aux_sym_cmd_identifier_token22] = ACTIONS(1878), - [aux_sym_cmd_identifier_token23] = ACTIONS(1878), - [aux_sym_cmd_identifier_token24] = ACTIONS(1878), - [aux_sym_cmd_identifier_token25] = ACTIONS(1878), - [aux_sym_cmd_identifier_token26] = ACTIONS(1878), - [aux_sym_cmd_identifier_token27] = ACTIONS(1878), - [aux_sym_cmd_identifier_token28] = ACTIONS(1878), - [aux_sym_cmd_identifier_token29] = ACTIONS(1878), - [aux_sym_cmd_identifier_token30] = ACTIONS(1878), - [aux_sym_cmd_identifier_token31] = ACTIONS(1878), - [aux_sym_cmd_identifier_token32] = ACTIONS(1878), - [aux_sym_cmd_identifier_token33] = ACTIONS(1878), - [aux_sym_cmd_identifier_token34] = ACTIONS(1878), - [aux_sym_cmd_identifier_token35] = ACTIONS(1878), - [aux_sym_cmd_identifier_token36] = ACTIONS(1878), - [aux_sym_cmd_identifier_token37] = ACTIONS(1878), - [aux_sym_cmd_identifier_token38] = ACTIONS(1878), - [aux_sym_cmd_identifier_token39] = ACTIONS(1878), - [aux_sym_cmd_identifier_token40] = ACTIONS(1878), - [anon_sym_def] = ACTIONS(1878), - [anon_sym_export_DASHenv] = ACTIONS(1878), - [anon_sym_extern] = ACTIONS(1878), - [anon_sym_module] = ACTIONS(1878), - [anon_sym_use] = ACTIONS(1878), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_DOLLAR] = ACTIONS(1878), - [anon_sym_error] = ACTIONS(1878), - [anon_sym_DASH2] = ACTIONS(1878), - [anon_sym_break] = ACTIONS(1878), - [anon_sym_continue] = ACTIONS(1878), - [anon_sym_for] = ACTIONS(1878), - [anon_sym_in2] = ACTIONS(1878), - [anon_sym_loop] = ACTIONS(1878), - [anon_sym_make] = ACTIONS(1878), - [anon_sym_while] = ACTIONS(1878), - [anon_sym_do] = ACTIONS(1878), - [anon_sym_if] = ACTIONS(1878), - [anon_sym_else] = ACTIONS(1878), - [anon_sym_match] = ACTIONS(1878), - [anon_sym_RBRACE] = ACTIONS(1878), - [anon_sym_try] = ACTIONS(1878), - [anon_sym_catch] = ACTIONS(1878), - [anon_sym_return] = ACTIONS(1878), - [anon_sym_source] = ACTIONS(1878), - [anon_sym_source_DASHenv] = ACTIONS(1878), - [anon_sym_register] = ACTIONS(1878), - [anon_sym_hide] = ACTIONS(1878), - [anon_sym_hide_DASHenv] = ACTIONS(1878), - [anon_sym_overlay] = ACTIONS(1878), - [anon_sym_as] = ACTIONS(1878), - [anon_sym_LPAREN2] = ACTIONS(1880), - [anon_sym_PLUS2] = ACTIONS(1878), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1878), - [anon_sym_DOT_DOT2] = ACTIONS(1882), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1884), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1884), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1878), - [aux_sym__val_number_decimal_token1] = ACTIONS(1878), - [aux_sym__val_number_decimal_token2] = ACTIONS(1878), - [aux_sym__val_number_decimal_token3] = ACTIONS(1878), - [aux_sym__val_number_decimal_token4] = ACTIONS(1878), - [aux_sym__val_number_token1] = ACTIONS(1878), - [aux_sym__val_number_token2] = ACTIONS(1878), - [aux_sym__val_number_token3] = ACTIONS(1878), - [aux_sym__val_number_token4] = ACTIONS(1878), - [aux_sym__val_number_token5] = ACTIONS(1878), - [aux_sym__val_number_token6] = ACTIONS(1878), - [anon_sym_DQUOTE] = ACTIONS(1878), - [sym__str_single_quotes] = ACTIONS(1878), - [sym__str_back_ticks] = ACTIONS(1878), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1878), - [sym__entry_separator] = ACTIONS(1886), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1888), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1886), - }, - [389] = { - [sym_comment] = STATE(389), - [anon_sym_export] = ACTIONS(1890), - [anon_sym_alias] = ACTIONS(1890), - [anon_sym_let] = ACTIONS(1890), - [anon_sym_let_DASHenv] = ACTIONS(1890), - [anon_sym_mut] = ACTIONS(1890), - [anon_sym_const] = ACTIONS(1890), - [aux_sym_cmd_identifier_token1] = ACTIONS(1890), - [aux_sym_cmd_identifier_token2] = ACTIONS(1890), - [aux_sym_cmd_identifier_token3] = ACTIONS(1890), - [aux_sym_cmd_identifier_token4] = ACTIONS(1890), - [aux_sym_cmd_identifier_token5] = ACTIONS(1890), - [aux_sym_cmd_identifier_token6] = ACTIONS(1890), - [aux_sym_cmd_identifier_token7] = ACTIONS(1890), - [aux_sym_cmd_identifier_token8] = ACTIONS(1890), - [aux_sym_cmd_identifier_token9] = ACTIONS(1890), - [aux_sym_cmd_identifier_token10] = ACTIONS(1890), - [aux_sym_cmd_identifier_token11] = ACTIONS(1890), - [aux_sym_cmd_identifier_token12] = ACTIONS(1890), - [aux_sym_cmd_identifier_token13] = ACTIONS(1890), - [aux_sym_cmd_identifier_token14] = ACTIONS(1890), - [aux_sym_cmd_identifier_token15] = ACTIONS(1890), - [aux_sym_cmd_identifier_token16] = ACTIONS(1890), - [aux_sym_cmd_identifier_token17] = ACTIONS(1890), - [aux_sym_cmd_identifier_token18] = ACTIONS(1890), - [aux_sym_cmd_identifier_token19] = ACTIONS(1890), - [aux_sym_cmd_identifier_token20] = ACTIONS(1890), - [aux_sym_cmd_identifier_token21] = ACTIONS(1890), - [aux_sym_cmd_identifier_token22] = ACTIONS(1890), - [aux_sym_cmd_identifier_token23] = ACTIONS(1890), - [aux_sym_cmd_identifier_token24] = ACTIONS(1890), - [aux_sym_cmd_identifier_token25] = ACTIONS(1890), - [aux_sym_cmd_identifier_token26] = ACTIONS(1890), - [aux_sym_cmd_identifier_token27] = ACTIONS(1890), - [aux_sym_cmd_identifier_token28] = ACTIONS(1890), - [aux_sym_cmd_identifier_token29] = ACTIONS(1890), - [aux_sym_cmd_identifier_token30] = ACTIONS(1890), - [aux_sym_cmd_identifier_token31] = ACTIONS(1890), - [aux_sym_cmd_identifier_token32] = ACTIONS(1890), - [aux_sym_cmd_identifier_token33] = ACTIONS(1890), - [aux_sym_cmd_identifier_token34] = ACTIONS(1890), - [aux_sym_cmd_identifier_token35] = ACTIONS(1890), - [aux_sym_cmd_identifier_token36] = ACTIONS(1890), - [aux_sym_cmd_identifier_token37] = ACTIONS(1890), - [aux_sym_cmd_identifier_token38] = ACTIONS(1890), - [aux_sym_cmd_identifier_token39] = ACTIONS(1890), - [aux_sym_cmd_identifier_token40] = ACTIONS(1890), - [anon_sym_def] = ACTIONS(1890), - [anon_sym_export_DASHenv] = ACTIONS(1890), - [anon_sym_extern] = ACTIONS(1890), - [anon_sym_module] = ACTIONS(1890), - [anon_sym_use] = ACTIONS(1890), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(1890), - [anon_sym_error] = ACTIONS(1890), - [anon_sym_DASH2] = ACTIONS(1890), - [anon_sym_break] = ACTIONS(1890), - [anon_sym_continue] = ACTIONS(1890), - [anon_sym_for] = ACTIONS(1890), - [anon_sym_in2] = ACTIONS(1890), - [anon_sym_loop] = ACTIONS(1890), - [anon_sym_make] = ACTIONS(1890), - [anon_sym_while] = ACTIONS(1890), - [anon_sym_do] = ACTIONS(1890), - [anon_sym_if] = ACTIONS(1890), - [anon_sym_else] = ACTIONS(1890), - [anon_sym_match] = ACTIONS(1890), - [anon_sym_RBRACE] = ACTIONS(1890), - [anon_sym_try] = ACTIONS(1890), - [anon_sym_catch] = ACTIONS(1890), - [anon_sym_return] = ACTIONS(1890), - [anon_sym_source] = ACTIONS(1890), - [anon_sym_source_DASHenv] = ACTIONS(1890), - [anon_sym_register] = ACTIONS(1890), - [anon_sym_hide] = ACTIONS(1890), - [anon_sym_hide_DASHenv] = ACTIONS(1890), - [anon_sym_overlay] = ACTIONS(1890), - [anon_sym_as] = ACTIONS(1890), - [anon_sym_LPAREN2] = ACTIONS(1892), - [anon_sym_PLUS2] = ACTIONS(1890), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1890), - [anon_sym_DOT_DOT2] = ACTIONS(1890), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1890), - [aux_sym__val_number_decimal_token1] = ACTIONS(1890), - [aux_sym__val_number_decimal_token2] = ACTIONS(1890), - [aux_sym__val_number_decimal_token3] = ACTIONS(1890), - [aux_sym__val_number_decimal_token4] = ACTIONS(1890), - [aux_sym__val_number_token1] = ACTIONS(1890), - [aux_sym__val_number_token2] = ACTIONS(1890), - [aux_sym__val_number_token3] = ACTIONS(1890), - [aux_sym__val_number_token4] = ACTIONS(1890), - [aux_sym__val_number_token5] = ACTIONS(1890), - [aux_sym__val_number_token6] = ACTIONS(1890), - [anon_sym_DQUOTE] = ACTIONS(1890), - [sym__str_single_quotes] = ACTIONS(1890), - [sym__str_back_ticks] = ACTIONS(1890), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1890), - [sym__entry_separator] = ACTIONS(1892), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1890), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1892), - }, - [390] = { - [sym_path] = STATE(460), - [sym_comment] = STATE(390), - [aux_sym_cell_path_repeat1] = STATE(390), - [anon_sym_export] = ACTIONS(971), - [anon_sym_alias] = ACTIONS(971), - [anon_sym_let] = ACTIONS(971), - [anon_sym_let_DASHenv] = ACTIONS(971), - [anon_sym_mut] = ACTIONS(971), - [anon_sym_const] = ACTIONS(971), - [aux_sym_cmd_identifier_token1] = ACTIONS(971), - [aux_sym_cmd_identifier_token2] = ACTIONS(973), - [aux_sym_cmd_identifier_token3] = ACTIONS(973), - [aux_sym_cmd_identifier_token4] = ACTIONS(973), - [aux_sym_cmd_identifier_token5] = ACTIONS(973), - [aux_sym_cmd_identifier_token6] = ACTIONS(973), - [aux_sym_cmd_identifier_token7] = ACTIONS(973), - [aux_sym_cmd_identifier_token8] = ACTIONS(971), - [aux_sym_cmd_identifier_token9] = ACTIONS(971), - [aux_sym_cmd_identifier_token10] = ACTIONS(973), - [aux_sym_cmd_identifier_token11] = ACTIONS(973), - [aux_sym_cmd_identifier_token12] = ACTIONS(971), - [aux_sym_cmd_identifier_token13] = ACTIONS(971), - [aux_sym_cmd_identifier_token14] = ACTIONS(971), - [aux_sym_cmd_identifier_token15] = ACTIONS(971), - [aux_sym_cmd_identifier_token16] = ACTIONS(973), - [aux_sym_cmd_identifier_token17] = ACTIONS(973), - [aux_sym_cmd_identifier_token18] = ACTIONS(973), - [aux_sym_cmd_identifier_token19] = ACTIONS(973), - [aux_sym_cmd_identifier_token20] = ACTIONS(973), - [aux_sym_cmd_identifier_token21] = ACTIONS(973), - [aux_sym_cmd_identifier_token22] = ACTIONS(973), - [aux_sym_cmd_identifier_token23] = ACTIONS(973), - [aux_sym_cmd_identifier_token24] = ACTIONS(973), - [aux_sym_cmd_identifier_token25] = ACTIONS(973), - [aux_sym_cmd_identifier_token26] = ACTIONS(973), - [aux_sym_cmd_identifier_token27] = ACTIONS(973), - [aux_sym_cmd_identifier_token28] = ACTIONS(973), - [aux_sym_cmd_identifier_token29] = ACTIONS(973), - [aux_sym_cmd_identifier_token30] = ACTIONS(973), + [anon_sym_export] = ACTIONS(990), + [anon_sym_alias] = ACTIONS(990), + [anon_sym_let] = ACTIONS(990), + [anon_sym_let_DASHenv] = ACTIONS(990), + [anon_sym_mut] = ACTIONS(990), + [anon_sym_const] = ACTIONS(990), + [aux_sym_cmd_identifier_token1] = ACTIONS(990), + [aux_sym_cmd_identifier_token2] = ACTIONS(990), + [aux_sym_cmd_identifier_token3] = ACTIONS(990), + [aux_sym_cmd_identifier_token4] = ACTIONS(990), + [aux_sym_cmd_identifier_token5] = ACTIONS(990), + [aux_sym_cmd_identifier_token6] = ACTIONS(990), + [aux_sym_cmd_identifier_token7] = ACTIONS(990), + [aux_sym_cmd_identifier_token8] = ACTIONS(990), + [aux_sym_cmd_identifier_token9] = ACTIONS(990), + [aux_sym_cmd_identifier_token10] = ACTIONS(990), + [aux_sym_cmd_identifier_token11] = ACTIONS(990), + [aux_sym_cmd_identifier_token12] = ACTIONS(990), + [aux_sym_cmd_identifier_token13] = ACTIONS(990), + [aux_sym_cmd_identifier_token14] = ACTIONS(990), + [aux_sym_cmd_identifier_token15] = ACTIONS(990), + [aux_sym_cmd_identifier_token16] = ACTIONS(990), + [aux_sym_cmd_identifier_token17] = ACTIONS(990), + [aux_sym_cmd_identifier_token18] = ACTIONS(990), + [aux_sym_cmd_identifier_token19] = ACTIONS(990), + [aux_sym_cmd_identifier_token20] = ACTIONS(990), + [aux_sym_cmd_identifier_token21] = ACTIONS(990), + [aux_sym_cmd_identifier_token22] = ACTIONS(990), + [aux_sym_cmd_identifier_token23] = ACTIONS(990), + [aux_sym_cmd_identifier_token24] = ACTIONS(990), + [aux_sym_cmd_identifier_token25] = ACTIONS(990), + [aux_sym_cmd_identifier_token26] = ACTIONS(990), + [aux_sym_cmd_identifier_token27] = ACTIONS(990), + [aux_sym_cmd_identifier_token28] = ACTIONS(990), + [aux_sym_cmd_identifier_token29] = ACTIONS(990), + [aux_sym_cmd_identifier_token30] = ACTIONS(990), + [aux_sym_cmd_identifier_token31] = ACTIONS(990), + [aux_sym_cmd_identifier_token32] = ACTIONS(990), + [aux_sym_cmd_identifier_token33] = ACTIONS(990), + [aux_sym_cmd_identifier_token34] = ACTIONS(990), + [aux_sym_cmd_identifier_token35] = ACTIONS(990), + [aux_sym_cmd_identifier_token36] = ACTIONS(990), + [aux_sym_cmd_identifier_token37] = ACTIONS(990), + [aux_sym_cmd_identifier_token38] = ACTIONS(990), + [aux_sym_cmd_identifier_token39] = ACTIONS(990), + [aux_sym_cmd_identifier_token40] = ACTIONS(990), + [anon_sym_def] = ACTIONS(990), + [anon_sym_export_DASHenv] = ACTIONS(990), + [anon_sym_extern] = ACTIONS(990), + [anon_sym_module] = ACTIONS(990), + [anon_sym_use] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(990), + [anon_sym_DOLLAR] = ACTIONS(990), + [anon_sym_error] = ACTIONS(990), + [anon_sym_DASH2] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_continue] = ACTIONS(990), + [anon_sym_for] = ACTIONS(990), + [anon_sym_in2] = ACTIONS(990), + [anon_sym_loop] = ACTIONS(990), + [anon_sym_make] = ACTIONS(990), + [anon_sym_while] = ACTIONS(990), + [anon_sym_do] = ACTIONS(990), + [anon_sym_if] = ACTIONS(990), + [anon_sym_else] = ACTIONS(990), + [anon_sym_match] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_try] = ACTIONS(990), + [anon_sym_catch] = ACTIONS(990), + [anon_sym_return] = ACTIONS(990), + [anon_sym_source] = ACTIONS(990), + [anon_sym_source_DASHenv] = ACTIONS(990), + [anon_sym_register] = ACTIONS(990), + [anon_sym_hide] = ACTIONS(990), + [anon_sym_hide_DASHenv] = ACTIONS(990), + [anon_sym_overlay] = ACTIONS(990), + [anon_sym_as] = ACTIONS(990), + [anon_sym_QMARK2] = ACTIONS(990), + [anon_sym_PLUS2] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(990), + [anon_sym_DOT_DOT2] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), + [anon_sym_DOT_DOT_LT2] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(990), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [aux_sym__val_number_decimal_token2] = ACTIONS(990), + [aux_sym__val_number_decimal_token3] = ACTIONS(990), + [aux_sym__val_number_decimal_token4] = ACTIONS(990), + [aux_sym__val_number_token1] = ACTIONS(990), + [aux_sym__val_number_token2] = ACTIONS(990), + [aux_sym__val_number_token3] = ACTIONS(990), + [aux_sym__val_number_token4] = ACTIONS(990), + [aux_sym__val_number_token5] = ACTIONS(990), + [aux_sym__val_number_token6] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym__str_single_quotes] = ACTIONS(990), + [sym__str_back_ticks] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(990), + [sym__entry_separator] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(992), + }, + [387] = { + [sym_comment] = STATE(387), + [anon_sym_export] = ACTIONS(998), + [anon_sym_alias] = ACTIONS(998), + [anon_sym_let] = ACTIONS(998), + [anon_sym_let_DASHenv] = ACTIONS(998), + [anon_sym_mut] = ACTIONS(998), + [anon_sym_const] = ACTIONS(998), + [aux_sym_cmd_identifier_token1] = ACTIONS(998), + [aux_sym_cmd_identifier_token2] = ACTIONS(998), + [aux_sym_cmd_identifier_token3] = ACTIONS(998), + [aux_sym_cmd_identifier_token4] = ACTIONS(998), + [aux_sym_cmd_identifier_token5] = ACTIONS(998), + [aux_sym_cmd_identifier_token6] = ACTIONS(998), + [aux_sym_cmd_identifier_token7] = ACTIONS(998), + [aux_sym_cmd_identifier_token8] = ACTIONS(998), + [aux_sym_cmd_identifier_token9] = ACTIONS(998), + [aux_sym_cmd_identifier_token10] = ACTIONS(998), + [aux_sym_cmd_identifier_token11] = ACTIONS(998), + [aux_sym_cmd_identifier_token12] = ACTIONS(998), + [aux_sym_cmd_identifier_token13] = ACTIONS(998), + [aux_sym_cmd_identifier_token14] = ACTIONS(998), + [aux_sym_cmd_identifier_token15] = ACTIONS(998), + [aux_sym_cmd_identifier_token16] = ACTIONS(998), + [aux_sym_cmd_identifier_token17] = ACTIONS(998), + [aux_sym_cmd_identifier_token18] = ACTIONS(998), + [aux_sym_cmd_identifier_token19] = ACTIONS(998), + [aux_sym_cmd_identifier_token20] = ACTIONS(998), + [aux_sym_cmd_identifier_token21] = ACTIONS(998), + [aux_sym_cmd_identifier_token22] = ACTIONS(998), + [aux_sym_cmd_identifier_token23] = ACTIONS(998), + [aux_sym_cmd_identifier_token24] = ACTIONS(998), + [aux_sym_cmd_identifier_token25] = ACTIONS(998), + [aux_sym_cmd_identifier_token26] = ACTIONS(998), + [aux_sym_cmd_identifier_token27] = ACTIONS(998), + [aux_sym_cmd_identifier_token28] = ACTIONS(998), + [aux_sym_cmd_identifier_token29] = ACTIONS(998), + [aux_sym_cmd_identifier_token30] = ACTIONS(998), + [aux_sym_cmd_identifier_token31] = ACTIONS(998), + [aux_sym_cmd_identifier_token32] = ACTIONS(998), + [aux_sym_cmd_identifier_token33] = ACTIONS(998), + [aux_sym_cmd_identifier_token34] = ACTIONS(998), + [aux_sym_cmd_identifier_token35] = ACTIONS(998), + [aux_sym_cmd_identifier_token36] = ACTIONS(998), + [aux_sym_cmd_identifier_token37] = ACTIONS(998), + [aux_sym_cmd_identifier_token38] = ACTIONS(998), + [aux_sym_cmd_identifier_token39] = ACTIONS(998), + [aux_sym_cmd_identifier_token40] = ACTIONS(998), + [anon_sym_def] = ACTIONS(998), + [anon_sym_export_DASHenv] = ACTIONS(998), + [anon_sym_extern] = ACTIONS(998), + [anon_sym_module] = ACTIONS(998), + [anon_sym_use] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_error] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(998), + [anon_sym_break] = ACTIONS(998), + [anon_sym_continue] = ACTIONS(998), + [anon_sym_for] = ACTIONS(998), + [anon_sym_in2] = ACTIONS(998), + [anon_sym_loop] = ACTIONS(998), + [anon_sym_make] = ACTIONS(998), + [anon_sym_while] = ACTIONS(998), + [anon_sym_do] = ACTIONS(998), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(998), + [anon_sym_match] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_try] = ACTIONS(998), + [anon_sym_catch] = ACTIONS(998), + [anon_sym_return] = ACTIONS(998), + [anon_sym_source] = ACTIONS(998), + [anon_sym_source_DASHenv] = ACTIONS(998), + [anon_sym_register] = ACTIONS(998), + [anon_sym_hide] = ACTIONS(998), + [anon_sym_hide_DASHenv] = ACTIONS(998), + [anon_sym_overlay] = ACTIONS(998), + [anon_sym_as] = ACTIONS(998), + [anon_sym_QMARK2] = ACTIONS(998), + [anon_sym_PLUS2] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(998), + [anon_sym_DOT_DOT2] = ACTIONS(998), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1000), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(998), + [aux_sym__val_number_decimal_token1] = ACTIONS(998), + [aux_sym__val_number_decimal_token2] = ACTIONS(998), + [aux_sym__val_number_decimal_token3] = ACTIONS(998), + [aux_sym__val_number_decimal_token4] = ACTIONS(998), + [aux_sym__val_number_token1] = ACTIONS(998), + [aux_sym__val_number_token2] = ACTIONS(998), + [aux_sym__val_number_token3] = ACTIONS(998), + [aux_sym__val_number_token4] = ACTIONS(998), + [aux_sym__val_number_token5] = ACTIONS(998), + [aux_sym__val_number_token6] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym__str_single_quotes] = ACTIONS(998), + [sym__str_back_ticks] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(998), + [sym__entry_separator] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1000), + }, + [388] = { + [sym_path] = STATE(497), + [sym_comment] = STATE(388), + [aux_sym_cell_path_repeat1] = STATE(390), + [anon_sym_export] = ACTIONS(967), + [anon_sym_alias] = ACTIONS(967), + [anon_sym_let] = ACTIONS(967), + [anon_sym_let_DASHenv] = ACTIONS(967), + [anon_sym_mut] = ACTIONS(967), + [anon_sym_const] = ACTIONS(967), + [aux_sym_cmd_identifier_token1] = ACTIONS(967), + [aux_sym_cmd_identifier_token2] = ACTIONS(969), + [aux_sym_cmd_identifier_token3] = ACTIONS(969), + [aux_sym_cmd_identifier_token4] = ACTIONS(969), + [aux_sym_cmd_identifier_token5] = ACTIONS(969), + [aux_sym_cmd_identifier_token6] = ACTIONS(969), + [aux_sym_cmd_identifier_token7] = ACTIONS(969), + [aux_sym_cmd_identifier_token8] = ACTIONS(967), + [aux_sym_cmd_identifier_token9] = ACTIONS(967), + [aux_sym_cmd_identifier_token10] = ACTIONS(969), + [aux_sym_cmd_identifier_token11] = ACTIONS(969), + [aux_sym_cmd_identifier_token12] = ACTIONS(967), + [aux_sym_cmd_identifier_token13] = ACTIONS(967), + [aux_sym_cmd_identifier_token14] = ACTIONS(967), + [aux_sym_cmd_identifier_token15] = ACTIONS(967), + [aux_sym_cmd_identifier_token16] = ACTIONS(969), + [aux_sym_cmd_identifier_token17] = ACTIONS(969), + [aux_sym_cmd_identifier_token18] = ACTIONS(969), + [aux_sym_cmd_identifier_token19] = ACTIONS(969), + [aux_sym_cmd_identifier_token20] = ACTIONS(969), + [aux_sym_cmd_identifier_token21] = ACTIONS(969), + [aux_sym_cmd_identifier_token22] = ACTIONS(969), + [aux_sym_cmd_identifier_token23] = ACTIONS(969), + [aux_sym_cmd_identifier_token24] = ACTIONS(969), + [aux_sym_cmd_identifier_token25] = ACTIONS(969), + [aux_sym_cmd_identifier_token26] = ACTIONS(969), + [aux_sym_cmd_identifier_token27] = ACTIONS(969), + [aux_sym_cmd_identifier_token28] = ACTIONS(969), + [aux_sym_cmd_identifier_token29] = ACTIONS(969), + [aux_sym_cmd_identifier_token30] = ACTIONS(969), + [aux_sym_cmd_identifier_token31] = ACTIONS(969), + [aux_sym_cmd_identifier_token32] = ACTIONS(969), + [aux_sym_cmd_identifier_token33] = ACTIONS(969), + [aux_sym_cmd_identifier_token34] = ACTIONS(967), + [aux_sym_cmd_identifier_token35] = ACTIONS(969), + [aux_sym_cmd_identifier_token36] = ACTIONS(969), + [aux_sym_cmd_identifier_token37] = ACTIONS(969), + [aux_sym_cmd_identifier_token38] = ACTIONS(967), + [aux_sym_cmd_identifier_token39] = ACTIONS(969), + [aux_sym_cmd_identifier_token40] = ACTIONS(969), + [anon_sym_def] = ACTIONS(967), + [anon_sym_export_DASHenv] = ACTIONS(967), + [anon_sym_extern] = ACTIONS(967), + [anon_sym_module] = ACTIONS(967), + [anon_sym_use] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(969), + [anon_sym_DOLLAR] = ACTIONS(969), + [anon_sym_error] = ACTIONS(967), + [anon_sym_DASH2] = ACTIONS(967), + [anon_sym_break] = ACTIONS(967), + [anon_sym_continue] = ACTIONS(967), + [anon_sym_for] = ACTIONS(967), + [anon_sym_in2] = ACTIONS(967), + [anon_sym_loop] = ACTIONS(967), + [anon_sym_make] = ACTIONS(967), + [anon_sym_while] = ACTIONS(967), + [anon_sym_do] = ACTIONS(967), + [anon_sym_if] = ACTIONS(967), + [anon_sym_else] = ACTIONS(967), + [anon_sym_match] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(969), + [anon_sym_try] = ACTIONS(967), + [anon_sym_catch] = ACTIONS(967), + [anon_sym_return] = ACTIONS(967), + [anon_sym_source] = ACTIONS(967), + [anon_sym_source_DASHenv] = ACTIONS(967), + [anon_sym_register] = ACTIONS(967), + [anon_sym_hide] = ACTIONS(967), + [anon_sym_hide_DASHenv] = ACTIONS(967), + [anon_sym_overlay] = ACTIONS(967), + [anon_sym_as] = ACTIONS(967), + [anon_sym_PLUS2] = ACTIONS(967), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(969), + [anon_sym_DOT_DOT2] = ACTIONS(967), + [anon_sym_DOT] = ACTIONS(1783), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(969), + [anon_sym_DOT_DOT_LT2] = ACTIONS(969), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(969), + [aux_sym__val_number_decimal_token1] = ACTIONS(967), + [aux_sym__val_number_decimal_token2] = ACTIONS(969), + [aux_sym__val_number_decimal_token3] = ACTIONS(969), + [aux_sym__val_number_decimal_token4] = ACTIONS(969), + [aux_sym__val_number_token1] = ACTIONS(969), + [aux_sym__val_number_token2] = ACTIONS(969), + [aux_sym__val_number_token3] = ACTIONS(969), + [aux_sym__val_number_token4] = ACTIONS(967), + [aux_sym__val_number_token5] = ACTIONS(967), + [aux_sym__val_number_token6] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(969), + [sym__str_single_quotes] = ACTIONS(969), + [sym__str_back_ticks] = ACTIONS(969), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(969), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(969), + }, + [389] = { + [sym_comment] = STATE(389), + [anon_sym_export] = ACTIONS(994), + [anon_sym_alias] = ACTIONS(994), + [anon_sym_let] = ACTIONS(994), + [anon_sym_let_DASHenv] = ACTIONS(994), + [anon_sym_mut] = ACTIONS(994), + [anon_sym_const] = ACTIONS(994), + [aux_sym_cmd_identifier_token1] = ACTIONS(994), + [aux_sym_cmd_identifier_token2] = ACTIONS(994), + [aux_sym_cmd_identifier_token3] = ACTIONS(994), + [aux_sym_cmd_identifier_token4] = ACTIONS(994), + [aux_sym_cmd_identifier_token5] = ACTIONS(994), + [aux_sym_cmd_identifier_token6] = ACTIONS(994), + [aux_sym_cmd_identifier_token7] = ACTIONS(994), + [aux_sym_cmd_identifier_token8] = ACTIONS(994), + [aux_sym_cmd_identifier_token9] = ACTIONS(994), + [aux_sym_cmd_identifier_token10] = ACTIONS(994), + [aux_sym_cmd_identifier_token11] = ACTIONS(994), + [aux_sym_cmd_identifier_token12] = ACTIONS(994), + [aux_sym_cmd_identifier_token13] = ACTIONS(994), + [aux_sym_cmd_identifier_token14] = ACTIONS(994), + [aux_sym_cmd_identifier_token15] = ACTIONS(994), + [aux_sym_cmd_identifier_token16] = ACTIONS(994), + [aux_sym_cmd_identifier_token17] = ACTIONS(994), + [aux_sym_cmd_identifier_token18] = ACTIONS(994), + [aux_sym_cmd_identifier_token19] = ACTIONS(994), + [aux_sym_cmd_identifier_token20] = ACTIONS(994), + [aux_sym_cmd_identifier_token21] = ACTIONS(994), + [aux_sym_cmd_identifier_token22] = ACTIONS(994), + [aux_sym_cmd_identifier_token23] = ACTIONS(994), + [aux_sym_cmd_identifier_token24] = ACTIONS(994), + [aux_sym_cmd_identifier_token25] = ACTIONS(994), + [aux_sym_cmd_identifier_token26] = ACTIONS(994), + [aux_sym_cmd_identifier_token27] = ACTIONS(994), + [aux_sym_cmd_identifier_token28] = ACTIONS(994), + [aux_sym_cmd_identifier_token29] = ACTIONS(994), + [aux_sym_cmd_identifier_token30] = ACTIONS(994), + [aux_sym_cmd_identifier_token31] = ACTIONS(994), + [aux_sym_cmd_identifier_token32] = ACTIONS(994), + [aux_sym_cmd_identifier_token33] = ACTIONS(994), + [aux_sym_cmd_identifier_token34] = ACTIONS(994), + [aux_sym_cmd_identifier_token35] = ACTIONS(994), + [aux_sym_cmd_identifier_token36] = ACTIONS(994), + [aux_sym_cmd_identifier_token37] = ACTIONS(994), + [aux_sym_cmd_identifier_token38] = ACTIONS(994), + [aux_sym_cmd_identifier_token39] = ACTIONS(994), + [aux_sym_cmd_identifier_token40] = ACTIONS(994), + [anon_sym_def] = ACTIONS(994), + [anon_sym_export_DASHenv] = ACTIONS(994), + [anon_sym_extern] = ACTIONS(994), + [anon_sym_module] = ACTIONS(994), + [anon_sym_use] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_error] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_break] = ACTIONS(994), + [anon_sym_continue] = ACTIONS(994), + [anon_sym_for] = ACTIONS(994), + [anon_sym_in2] = ACTIONS(994), + [anon_sym_loop] = ACTIONS(994), + [anon_sym_make] = ACTIONS(994), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(994), + [anon_sym_if] = ACTIONS(994), + [anon_sym_else] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_try] = ACTIONS(994), + [anon_sym_catch] = ACTIONS(994), + [anon_sym_return] = ACTIONS(994), + [anon_sym_source] = ACTIONS(994), + [anon_sym_source_DASHenv] = ACTIONS(994), + [anon_sym_register] = ACTIONS(994), + [anon_sym_hide] = ACTIONS(994), + [anon_sym_hide_DASHenv] = ACTIONS(994), + [anon_sym_overlay] = ACTIONS(994), + [anon_sym_as] = ACTIONS(994), + [anon_sym_QMARK2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(994), + [anon_sym_DOT_DOT2] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), + [anon_sym_DOT_DOT_LT2] = ACTIONS(996), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(994), + [aux_sym__val_number_decimal_token1] = ACTIONS(994), + [aux_sym__val_number_decimal_token2] = ACTIONS(994), + [aux_sym__val_number_decimal_token3] = ACTIONS(994), + [aux_sym__val_number_decimal_token4] = ACTIONS(994), + [aux_sym__val_number_token1] = ACTIONS(994), + [aux_sym__val_number_token2] = ACTIONS(994), + [aux_sym__val_number_token3] = ACTIONS(994), + [aux_sym__val_number_token4] = ACTIONS(994), + [aux_sym__val_number_token5] = ACTIONS(994), + [aux_sym__val_number_token6] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym__str_single_quotes] = ACTIONS(994), + [sym__str_back_ticks] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(994), + [sym__entry_separator] = ACTIONS(996), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(996), + }, + [390] = { + [sym_path] = STATE(497), + [sym_comment] = STATE(390), + [aux_sym_cell_path_repeat1] = STATE(390), + [anon_sym_export] = ACTIONS(971), + [anon_sym_alias] = ACTIONS(971), + [anon_sym_let] = ACTIONS(971), + [anon_sym_let_DASHenv] = ACTIONS(971), + [anon_sym_mut] = ACTIONS(971), + [anon_sym_const] = ACTIONS(971), + [aux_sym_cmd_identifier_token1] = ACTIONS(971), + [aux_sym_cmd_identifier_token2] = ACTIONS(973), + [aux_sym_cmd_identifier_token3] = ACTIONS(973), + [aux_sym_cmd_identifier_token4] = ACTIONS(973), + [aux_sym_cmd_identifier_token5] = ACTIONS(973), + [aux_sym_cmd_identifier_token6] = ACTIONS(973), + [aux_sym_cmd_identifier_token7] = ACTIONS(973), + [aux_sym_cmd_identifier_token8] = ACTIONS(971), + [aux_sym_cmd_identifier_token9] = ACTIONS(971), + [aux_sym_cmd_identifier_token10] = ACTIONS(973), + [aux_sym_cmd_identifier_token11] = ACTIONS(973), + [aux_sym_cmd_identifier_token12] = ACTIONS(971), + [aux_sym_cmd_identifier_token13] = ACTIONS(971), + [aux_sym_cmd_identifier_token14] = ACTIONS(971), + [aux_sym_cmd_identifier_token15] = ACTIONS(971), + [aux_sym_cmd_identifier_token16] = ACTIONS(973), + [aux_sym_cmd_identifier_token17] = ACTIONS(973), + [aux_sym_cmd_identifier_token18] = ACTIONS(973), + [aux_sym_cmd_identifier_token19] = ACTIONS(973), + [aux_sym_cmd_identifier_token20] = ACTIONS(973), + [aux_sym_cmd_identifier_token21] = ACTIONS(973), + [aux_sym_cmd_identifier_token22] = ACTIONS(973), + [aux_sym_cmd_identifier_token23] = ACTIONS(973), + [aux_sym_cmd_identifier_token24] = ACTIONS(973), + [aux_sym_cmd_identifier_token25] = ACTIONS(973), + [aux_sym_cmd_identifier_token26] = ACTIONS(973), + [aux_sym_cmd_identifier_token27] = ACTIONS(973), + [aux_sym_cmd_identifier_token28] = ACTIONS(973), + [aux_sym_cmd_identifier_token29] = ACTIONS(973), + [aux_sym_cmd_identifier_token30] = ACTIONS(973), [aux_sym_cmd_identifier_token31] = ACTIONS(973), [aux_sym_cmd_identifier_token32] = ACTIONS(973), [aux_sym_cmd_identifier_token33] = ACTIONS(973), @@ -118387,7 +118709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(971), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(973), [anon_sym_DOT_DOT2] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(1894), + [anon_sym_DOT] = ACTIONS(1830), [anon_sym_DOT_DOT_EQ2] = ACTIONS(973), [anon_sym_DOT_DOT_LT2] = ACTIONS(973), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(973), @@ -118409,7 +118731,322 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(973), }, [391] = { + [sym_cell_path] = STATE(593), + [sym_path] = STATE(529), [sym_comment] = STATE(391), + [aux_sym_cell_path_repeat1] = STATE(425), + [anon_sym_export] = ACTIONS(961), + [anon_sym_alias] = ACTIONS(961), + [anon_sym_let] = ACTIONS(961), + [anon_sym_let_DASHenv] = ACTIONS(961), + [anon_sym_mut] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [aux_sym_cmd_identifier_token1] = ACTIONS(961), + [aux_sym_cmd_identifier_token2] = ACTIONS(963), + [aux_sym_cmd_identifier_token3] = ACTIONS(963), + [aux_sym_cmd_identifier_token4] = ACTIONS(963), + [aux_sym_cmd_identifier_token5] = ACTIONS(963), + [aux_sym_cmd_identifier_token6] = ACTIONS(963), + [aux_sym_cmd_identifier_token7] = ACTIONS(963), + [aux_sym_cmd_identifier_token8] = ACTIONS(961), + [aux_sym_cmd_identifier_token9] = ACTIONS(961), + [aux_sym_cmd_identifier_token10] = ACTIONS(963), + [aux_sym_cmd_identifier_token11] = ACTIONS(963), + [aux_sym_cmd_identifier_token12] = ACTIONS(961), + [aux_sym_cmd_identifier_token13] = ACTIONS(961), + [aux_sym_cmd_identifier_token14] = ACTIONS(961), + [aux_sym_cmd_identifier_token15] = ACTIONS(961), + [aux_sym_cmd_identifier_token16] = ACTIONS(963), + [aux_sym_cmd_identifier_token17] = ACTIONS(963), + [aux_sym_cmd_identifier_token18] = ACTIONS(963), + [aux_sym_cmd_identifier_token19] = ACTIONS(963), + [aux_sym_cmd_identifier_token20] = ACTIONS(963), + [aux_sym_cmd_identifier_token21] = ACTIONS(963), + [aux_sym_cmd_identifier_token22] = ACTIONS(963), + [aux_sym_cmd_identifier_token23] = ACTIONS(963), + [aux_sym_cmd_identifier_token24] = ACTIONS(963), + [aux_sym_cmd_identifier_token25] = ACTIONS(963), + [aux_sym_cmd_identifier_token26] = ACTIONS(963), + [aux_sym_cmd_identifier_token27] = ACTIONS(963), + [aux_sym_cmd_identifier_token28] = ACTIONS(963), + [aux_sym_cmd_identifier_token29] = ACTIONS(963), + [aux_sym_cmd_identifier_token30] = ACTIONS(963), + [aux_sym_cmd_identifier_token31] = ACTIONS(963), + [aux_sym_cmd_identifier_token32] = ACTIONS(963), + [aux_sym_cmd_identifier_token33] = ACTIONS(963), + [aux_sym_cmd_identifier_token34] = ACTIONS(961), + [aux_sym_cmd_identifier_token35] = ACTIONS(963), + [aux_sym_cmd_identifier_token36] = ACTIONS(963), + [aux_sym_cmd_identifier_token37] = ACTIONS(963), + [aux_sym_cmd_identifier_token38] = ACTIONS(961), + [aux_sym_cmd_identifier_token39] = ACTIONS(963), + [aux_sym_cmd_identifier_token40] = ACTIONS(963), + [anon_sym_def] = ACTIONS(961), + [anon_sym_export_DASHenv] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym_module] = ACTIONS(961), + [anon_sym_use] = ACTIONS(961), + [anon_sym_LPAREN] = ACTIONS(963), + [anon_sym_COMMA] = ACTIONS(963), + [anon_sym_DOLLAR] = ACTIONS(963), + [anon_sym_error] = ACTIONS(961), + [anon_sym_DASH2] = ACTIONS(961), + [anon_sym_break] = ACTIONS(961), + [anon_sym_continue] = ACTIONS(961), + [anon_sym_for] = ACTIONS(961), + [anon_sym_in2] = ACTIONS(961), + [anon_sym_loop] = ACTIONS(961), + [anon_sym_make] = ACTIONS(961), + [anon_sym_while] = ACTIONS(961), + [anon_sym_do] = ACTIONS(961), + [anon_sym_if] = ACTIONS(961), + [anon_sym_else] = ACTIONS(961), + [anon_sym_match] = ACTIONS(961), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_try] = ACTIONS(961), + [anon_sym_catch] = ACTIONS(961), + [anon_sym_return] = ACTIONS(961), + [anon_sym_source] = ACTIONS(961), + [anon_sym_source_DASHenv] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_hide] = ACTIONS(961), + [anon_sym_hide_DASHenv] = ACTIONS(961), + [anon_sym_overlay] = ACTIONS(961), + [anon_sym_as] = ACTIONS(961), + [anon_sym_PLUS2] = ACTIONS(961), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(963), + [anon_sym_DOT] = ACTIONS(1833), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(963), + [aux_sym__val_number_decimal_token1] = ACTIONS(961), + [aux_sym__val_number_decimal_token2] = ACTIONS(963), + [aux_sym__val_number_decimal_token3] = ACTIONS(963), + [aux_sym__val_number_decimal_token4] = ACTIONS(963), + [aux_sym__val_number_token1] = ACTIONS(963), + [aux_sym__val_number_token2] = ACTIONS(963), + [aux_sym__val_number_token3] = ACTIONS(963), + [aux_sym__val_number_token4] = ACTIONS(961), + [aux_sym__val_number_token5] = ACTIONS(961), + [aux_sym__val_number_token6] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(963), + [sym__str_single_quotes] = ACTIONS(963), + [sym__str_back_ticks] = ACTIONS(963), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(963), + [aux_sym_record_entry_token1] = ACTIONS(963), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(963), + }, + [392] = { + [sym_comment] = STATE(392), + [anon_sym_export] = ACTIONS(1739), + [anon_sym_alias] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_let_DASHenv] = ACTIONS(1739), + [anon_sym_mut] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [aux_sym_cmd_identifier_token1] = ACTIONS(1739), + [aux_sym_cmd_identifier_token2] = ACTIONS(1739), + [aux_sym_cmd_identifier_token3] = ACTIONS(1739), + [aux_sym_cmd_identifier_token4] = ACTIONS(1739), + [aux_sym_cmd_identifier_token5] = ACTIONS(1739), + [aux_sym_cmd_identifier_token6] = ACTIONS(1739), + [aux_sym_cmd_identifier_token7] = ACTIONS(1739), + [aux_sym_cmd_identifier_token8] = ACTIONS(1739), + [aux_sym_cmd_identifier_token9] = ACTIONS(1739), + [aux_sym_cmd_identifier_token10] = ACTIONS(1739), + [aux_sym_cmd_identifier_token11] = ACTIONS(1739), + [aux_sym_cmd_identifier_token12] = ACTIONS(1739), + [aux_sym_cmd_identifier_token13] = ACTIONS(1739), + [aux_sym_cmd_identifier_token14] = ACTIONS(1739), + [aux_sym_cmd_identifier_token15] = ACTIONS(1739), + [aux_sym_cmd_identifier_token16] = ACTIONS(1739), + [aux_sym_cmd_identifier_token17] = ACTIONS(1739), + [aux_sym_cmd_identifier_token18] = ACTIONS(1739), + [aux_sym_cmd_identifier_token19] = ACTIONS(1739), + [aux_sym_cmd_identifier_token20] = ACTIONS(1739), + [aux_sym_cmd_identifier_token21] = ACTIONS(1739), + [aux_sym_cmd_identifier_token22] = ACTIONS(1739), + [aux_sym_cmd_identifier_token23] = ACTIONS(1739), + [aux_sym_cmd_identifier_token24] = ACTIONS(1739), + [aux_sym_cmd_identifier_token25] = ACTIONS(1739), + [aux_sym_cmd_identifier_token26] = ACTIONS(1739), + [aux_sym_cmd_identifier_token27] = ACTIONS(1739), + [aux_sym_cmd_identifier_token28] = ACTIONS(1739), + [aux_sym_cmd_identifier_token29] = ACTIONS(1739), + [aux_sym_cmd_identifier_token30] = ACTIONS(1739), + [aux_sym_cmd_identifier_token31] = ACTIONS(1739), + [aux_sym_cmd_identifier_token32] = ACTIONS(1739), + [aux_sym_cmd_identifier_token33] = ACTIONS(1739), + [aux_sym_cmd_identifier_token34] = ACTIONS(1739), + [aux_sym_cmd_identifier_token35] = ACTIONS(1739), + [aux_sym_cmd_identifier_token36] = ACTIONS(1739), + [aux_sym_cmd_identifier_token37] = ACTIONS(1739), + [aux_sym_cmd_identifier_token38] = ACTIONS(1739), + [aux_sym_cmd_identifier_token39] = ACTIONS(1739), + [aux_sym_cmd_identifier_token40] = ACTIONS(1739), + [anon_sym_def] = ACTIONS(1739), + [anon_sym_export_DASHenv] = ACTIONS(1739), + [anon_sym_extern] = ACTIONS(1739), + [anon_sym_module] = ACTIONS(1739), + [anon_sym_use] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_error] = ACTIONS(1739), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_break] = ACTIONS(1739), + [anon_sym_continue] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_in2] = ACTIONS(1739), + [anon_sym_loop] = ACTIONS(1739), + [anon_sym_make] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_do] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_else] = ACTIONS(1739), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1739), + [anon_sym_try] = ACTIONS(1739), + [anon_sym_catch] = ACTIONS(1739), + [anon_sym_return] = ACTIONS(1739), + [anon_sym_source] = ACTIONS(1739), + [anon_sym_source_DASHenv] = ACTIONS(1739), + [anon_sym_register] = ACTIONS(1739), + [anon_sym_hide] = ACTIONS(1739), + [anon_sym_hide_DASHenv] = ACTIONS(1739), + [anon_sym_overlay] = ACTIONS(1739), + [anon_sym_as] = ACTIONS(1739), + [anon_sym_PLUS2] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1739), + [anon_sym_DOT_DOT2] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), + [aux_sym__immediate_decimal_token1] = ACTIONS(1835), + [aux_sym__immediate_decimal_token2] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1739), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1739), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1739), + [aux_sym__val_number_token1] = ACTIONS(1739), + [aux_sym__val_number_token2] = ACTIONS(1739), + [aux_sym__val_number_token3] = ACTIONS(1739), + [aux_sym__val_number_token4] = ACTIONS(1739), + [aux_sym__val_number_token5] = ACTIONS(1739), + [aux_sym__val_number_token6] = ACTIONS(1739), + [anon_sym_DQUOTE] = ACTIONS(1739), + [sym__str_single_quotes] = ACTIONS(1739), + [sym__str_back_ticks] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1739), + [sym__entry_separator] = ACTIONS(1741), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1741), + }, + [393] = { + [sym_comment] = STATE(393), + [anon_sym_export] = ACTIONS(1785), + [anon_sym_alias] = ACTIONS(1785), + [anon_sym_let] = ACTIONS(1785), + [anon_sym_let_DASHenv] = ACTIONS(1785), + [anon_sym_mut] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(1785), + [aux_sym_cmd_identifier_token1] = ACTIONS(1785), + [aux_sym_cmd_identifier_token2] = ACTIONS(1785), + [aux_sym_cmd_identifier_token3] = ACTIONS(1785), + [aux_sym_cmd_identifier_token4] = ACTIONS(1785), + [aux_sym_cmd_identifier_token5] = ACTIONS(1785), + [aux_sym_cmd_identifier_token6] = ACTIONS(1785), + [aux_sym_cmd_identifier_token7] = ACTIONS(1785), + [aux_sym_cmd_identifier_token8] = ACTIONS(1785), + [aux_sym_cmd_identifier_token9] = ACTIONS(1785), + [aux_sym_cmd_identifier_token10] = ACTIONS(1785), + [aux_sym_cmd_identifier_token11] = ACTIONS(1785), + [aux_sym_cmd_identifier_token12] = ACTIONS(1785), + [aux_sym_cmd_identifier_token13] = ACTIONS(1785), + [aux_sym_cmd_identifier_token14] = ACTIONS(1785), + [aux_sym_cmd_identifier_token15] = ACTIONS(1785), + [aux_sym_cmd_identifier_token16] = ACTIONS(1785), + [aux_sym_cmd_identifier_token17] = ACTIONS(1785), + [aux_sym_cmd_identifier_token18] = ACTIONS(1785), + [aux_sym_cmd_identifier_token19] = ACTIONS(1785), + [aux_sym_cmd_identifier_token20] = ACTIONS(1785), + [aux_sym_cmd_identifier_token21] = ACTIONS(1785), + [aux_sym_cmd_identifier_token22] = ACTIONS(1785), + [aux_sym_cmd_identifier_token23] = ACTIONS(1785), + [aux_sym_cmd_identifier_token24] = ACTIONS(1785), + [aux_sym_cmd_identifier_token25] = ACTIONS(1785), + [aux_sym_cmd_identifier_token26] = ACTIONS(1785), + [aux_sym_cmd_identifier_token27] = ACTIONS(1785), + [aux_sym_cmd_identifier_token28] = ACTIONS(1785), + [aux_sym_cmd_identifier_token29] = ACTIONS(1785), + [aux_sym_cmd_identifier_token30] = ACTIONS(1785), + [aux_sym_cmd_identifier_token31] = ACTIONS(1785), + [aux_sym_cmd_identifier_token32] = ACTIONS(1785), + [aux_sym_cmd_identifier_token33] = ACTIONS(1785), + [aux_sym_cmd_identifier_token34] = ACTIONS(1785), + [aux_sym_cmd_identifier_token35] = ACTIONS(1785), + [aux_sym_cmd_identifier_token36] = ACTIONS(1785), + [aux_sym_cmd_identifier_token37] = ACTIONS(1785), + [aux_sym_cmd_identifier_token38] = ACTIONS(1785), + [aux_sym_cmd_identifier_token39] = ACTIONS(1785), + [aux_sym_cmd_identifier_token40] = ACTIONS(1785), + [anon_sym_def] = ACTIONS(1785), + [anon_sym_export_DASHenv] = ACTIONS(1785), + [anon_sym_extern] = ACTIONS(1785), + [anon_sym_module] = ACTIONS(1785), + [anon_sym_use] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1785), + [anon_sym_error] = ACTIONS(1785), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_break] = ACTIONS(1785), + [anon_sym_continue] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1785), + [anon_sym_in2] = ACTIONS(1785), + [anon_sym_loop] = ACTIONS(1785), + [anon_sym_make] = ACTIONS(1785), + [anon_sym_while] = ACTIONS(1785), + [anon_sym_do] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1785), + [anon_sym_else] = ACTIONS(1785), + [anon_sym_match] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1785), + [anon_sym_catch] = ACTIONS(1785), + [anon_sym_return] = ACTIONS(1785), + [anon_sym_source] = ACTIONS(1785), + [anon_sym_source_DASHenv] = ACTIONS(1785), + [anon_sym_register] = ACTIONS(1785), + [anon_sym_hide] = ACTIONS(1785), + [anon_sym_hide_DASHenv] = ACTIONS(1785), + [anon_sym_overlay] = ACTIONS(1785), + [anon_sym_as] = ACTIONS(1785), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_PLUS2] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), + [anon_sym_DOT_DOT2] = ACTIONS(1785), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), + [aux_sym__val_number_decimal_token1] = ACTIONS(1785), + [aux_sym__val_number_decimal_token2] = ACTIONS(1785), + [aux_sym__val_number_decimal_token3] = ACTIONS(1785), + [aux_sym__val_number_decimal_token4] = ACTIONS(1785), + [aux_sym__val_number_token1] = ACTIONS(1785), + [aux_sym__val_number_token2] = ACTIONS(1785), + [aux_sym__val_number_token3] = ACTIONS(1785), + [aux_sym__val_number_token4] = ACTIONS(1785), + [aux_sym__val_number_token5] = ACTIONS(1785), + [aux_sym__val_number_token6] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1785), + [sym__str_single_quotes] = ACTIONS(1785), + [sym__str_back_ticks] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), + [sym__entry_separator] = ACTIONS(1787), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1787), + }, + [394] = { + [sym_comment] = STATE(394), [anon_sym_export] = ACTIONS(978), [anon_sym_alias] = ACTIONS(978), [anon_sym_let] = ACTIONS(978), @@ -118487,7 +119124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(978), [anon_sym_overlay] = ACTIONS(978), [anon_sym_as] = ACTIONS(978), - [anon_sym_QMARK2] = ACTIONS(1897), + [anon_sym_QMARK2] = ACTIONS(1839), [anon_sym_PLUS2] = ACTIONS(978), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), [anon_sym_DOT_DOT2] = ACTIONS(978), @@ -118513,8 +119150,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(980), }, - [392] = { - [sym_comment] = STATE(392), + [395] = { + [sym_comment] = STATE(395), + [anon_sym_export] = ACTIONS(1841), + [anon_sym_alias] = ACTIONS(1841), + [anon_sym_let] = ACTIONS(1841), + [anon_sym_let_DASHenv] = ACTIONS(1841), + [anon_sym_mut] = ACTIONS(1841), + [anon_sym_const] = ACTIONS(1841), + [aux_sym_cmd_identifier_token1] = ACTIONS(1841), + [aux_sym_cmd_identifier_token2] = ACTIONS(1841), + [aux_sym_cmd_identifier_token3] = ACTIONS(1841), + [aux_sym_cmd_identifier_token4] = ACTIONS(1841), + [aux_sym_cmd_identifier_token5] = ACTIONS(1841), + [aux_sym_cmd_identifier_token6] = ACTIONS(1841), + [aux_sym_cmd_identifier_token7] = ACTIONS(1841), + [aux_sym_cmd_identifier_token8] = ACTIONS(1841), + [aux_sym_cmd_identifier_token9] = ACTIONS(1841), + [aux_sym_cmd_identifier_token10] = ACTIONS(1841), + [aux_sym_cmd_identifier_token11] = ACTIONS(1841), + [aux_sym_cmd_identifier_token12] = ACTIONS(1841), + [aux_sym_cmd_identifier_token13] = ACTIONS(1841), + [aux_sym_cmd_identifier_token14] = ACTIONS(1841), + [aux_sym_cmd_identifier_token15] = ACTIONS(1841), + [aux_sym_cmd_identifier_token16] = ACTIONS(1841), + [aux_sym_cmd_identifier_token17] = ACTIONS(1841), + [aux_sym_cmd_identifier_token18] = ACTIONS(1841), + [aux_sym_cmd_identifier_token19] = ACTIONS(1841), + [aux_sym_cmd_identifier_token20] = ACTIONS(1841), + [aux_sym_cmd_identifier_token21] = ACTIONS(1841), + [aux_sym_cmd_identifier_token22] = ACTIONS(1841), + [aux_sym_cmd_identifier_token23] = ACTIONS(1841), + [aux_sym_cmd_identifier_token24] = ACTIONS(1841), + [aux_sym_cmd_identifier_token25] = ACTIONS(1841), + [aux_sym_cmd_identifier_token26] = ACTIONS(1841), + [aux_sym_cmd_identifier_token27] = ACTIONS(1841), + [aux_sym_cmd_identifier_token28] = ACTIONS(1841), + [aux_sym_cmd_identifier_token29] = ACTIONS(1841), + [aux_sym_cmd_identifier_token30] = ACTIONS(1841), + [aux_sym_cmd_identifier_token31] = ACTIONS(1841), + [aux_sym_cmd_identifier_token32] = ACTIONS(1841), + [aux_sym_cmd_identifier_token33] = ACTIONS(1841), + [aux_sym_cmd_identifier_token34] = ACTIONS(1841), + [aux_sym_cmd_identifier_token35] = ACTIONS(1841), + [aux_sym_cmd_identifier_token36] = ACTIONS(1841), + [aux_sym_cmd_identifier_token37] = ACTIONS(1841), + [aux_sym_cmd_identifier_token38] = ACTIONS(1841), + [aux_sym_cmd_identifier_token39] = ACTIONS(1841), + [aux_sym_cmd_identifier_token40] = ACTIONS(1841), + [anon_sym_def] = ACTIONS(1841), + [anon_sym_export_DASHenv] = ACTIONS(1841), + [anon_sym_extern] = ACTIONS(1841), + [anon_sym_module] = ACTIONS(1841), + [anon_sym_use] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_error] = ACTIONS(1841), + [anon_sym_DASH2] = ACTIONS(1841), + [anon_sym_break] = ACTIONS(1841), + [anon_sym_continue] = ACTIONS(1841), + [anon_sym_for] = ACTIONS(1841), + [anon_sym_in2] = ACTIONS(1841), + [anon_sym_loop] = ACTIONS(1841), + [anon_sym_make] = ACTIONS(1841), + [anon_sym_while] = ACTIONS(1841), + [anon_sym_do] = ACTIONS(1841), + [anon_sym_if] = ACTIONS(1841), + [anon_sym_else] = ACTIONS(1841), + [anon_sym_match] = ACTIONS(1841), + [anon_sym_RBRACE] = ACTIONS(1841), + [anon_sym_try] = ACTIONS(1841), + [anon_sym_catch] = ACTIONS(1841), + [anon_sym_return] = ACTIONS(1841), + [anon_sym_source] = ACTIONS(1841), + [anon_sym_source_DASHenv] = ACTIONS(1841), + [anon_sym_register] = ACTIONS(1841), + [anon_sym_hide] = ACTIONS(1841), + [anon_sym_hide_DASHenv] = ACTIONS(1841), + [anon_sym_overlay] = ACTIONS(1841), + [anon_sym_as] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(1843), + [anon_sym_PLUS2] = ACTIONS(1841), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1841), + [anon_sym_DOT_DOT2] = ACTIONS(1841), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1843), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1841), + [aux_sym__val_number_decimal_token1] = ACTIONS(1841), + [aux_sym__val_number_decimal_token2] = ACTIONS(1841), + [aux_sym__val_number_decimal_token3] = ACTIONS(1841), + [aux_sym__val_number_decimal_token4] = ACTIONS(1841), + [aux_sym__val_number_token1] = ACTIONS(1841), + [aux_sym__val_number_token2] = ACTIONS(1841), + [aux_sym__val_number_token3] = ACTIONS(1841), + [aux_sym__val_number_token4] = ACTIONS(1841), + [aux_sym__val_number_token5] = ACTIONS(1841), + [aux_sym__val_number_token6] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym__str_single_quotes] = ACTIONS(1841), + [sym__str_back_ticks] = ACTIONS(1841), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1841), + [sym__entry_separator] = ACTIONS(1843), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1841), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1843), + }, + [396] = { + [sym_comment] = STATE(396), + [anon_sym_export] = ACTIONS(1765), + [anon_sym_alias] = ACTIONS(1765), + [anon_sym_let] = ACTIONS(1765), + [anon_sym_let_DASHenv] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [aux_sym_cmd_identifier_token1] = ACTIONS(1765), + [aux_sym_cmd_identifier_token2] = ACTIONS(1767), + [aux_sym_cmd_identifier_token3] = ACTIONS(1767), + [aux_sym_cmd_identifier_token4] = ACTIONS(1767), + [aux_sym_cmd_identifier_token5] = ACTIONS(1767), + [aux_sym_cmd_identifier_token6] = ACTIONS(1767), + [aux_sym_cmd_identifier_token7] = ACTIONS(1767), + [aux_sym_cmd_identifier_token8] = ACTIONS(1765), + [aux_sym_cmd_identifier_token9] = ACTIONS(1765), + [aux_sym_cmd_identifier_token10] = ACTIONS(1767), + [aux_sym_cmd_identifier_token11] = ACTIONS(1767), + [aux_sym_cmd_identifier_token12] = ACTIONS(1765), + [aux_sym_cmd_identifier_token13] = ACTIONS(1765), + [aux_sym_cmd_identifier_token14] = ACTIONS(1765), + [aux_sym_cmd_identifier_token15] = ACTIONS(1765), + [aux_sym_cmd_identifier_token16] = ACTIONS(1767), + [aux_sym_cmd_identifier_token17] = ACTIONS(1767), + [aux_sym_cmd_identifier_token18] = ACTIONS(1767), + [aux_sym_cmd_identifier_token19] = ACTIONS(1767), + [aux_sym_cmd_identifier_token20] = ACTIONS(1767), + [aux_sym_cmd_identifier_token21] = ACTIONS(1767), + [aux_sym_cmd_identifier_token22] = ACTIONS(1767), + [aux_sym_cmd_identifier_token23] = ACTIONS(1767), + [aux_sym_cmd_identifier_token24] = ACTIONS(1767), + [aux_sym_cmd_identifier_token25] = ACTIONS(1767), + [aux_sym_cmd_identifier_token26] = ACTIONS(1767), + [aux_sym_cmd_identifier_token27] = ACTIONS(1767), + [aux_sym_cmd_identifier_token28] = ACTIONS(1767), + [aux_sym_cmd_identifier_token29] = ACTIONS(1767), + [aux_sym_cmd_identifier_token30] = ACTIONS(1767), + [aux_sym_cmd_identifier_token31] = ACTIONS(1767), + [aux_sym_cmd_identifier_token32] = ACTIONS(1767), + [aux_sym_cmd_identifier_token33] = ACTIONS(1767), + [aux_sym_cmd_identifier_token34] = ACTIONS(1765), + [aux_sym_cmd_identifier_token35] = ACTIONS(1767), + [aux_sym_cmd_identifier_token36] = ACTIONS(1767), + [aux_sym_cmd_identifier_token37] = ACTIONS(1767), + [aux_sym_cmd_identifier_token38] = ACTIONS(1765), + [aux_sym_cmd_identifier_token39] = ACTIONS(1767), + [aux_sym_cmd_identifier_token40] = ACTIONS(1767), + [anon_sym_def] = ACTIONS(1765), + [anon_sym_export_DASHenv] = ACTIONS(1765), + [anon_sym_extern] = ACTIONS(1765), + [anon_sym_module] = ACTIONS(1765), + [anon_sym_use] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_DOLLAR] = ACTIONS(1767), + [anon_sym_error] = ACTIONS(1765), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_in2] = ACTIONS(1765), + [anon_sym_loop] = ACTIONS(1765), + [anon_sym_make] = ACTIONS(1765), + [anon_sym_while] = ACTIONS(1765), + [anon_sym_do] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_else] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_try] = ACTIONS(1765), + [anon_sym_catch] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_source] = ACTIONS(1765), + [anon_sym_source_DASHenv] = ACTIONS(1765), + [anon_sym_register] = ACTIONS(1765), + [anon_sym_hide] = ACTIONS(1765), + [anon_sym_hide_DASHenv] = ACTIONS(1765), + [anon_sym_overlay] = ACTIONS(1765), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1767), + [anon_sym_PLUS2] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), + [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(1800), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1765), + [aux_sym__val_number_token5] = ACTIONS(1765), + [aux_sym__val_number_token6] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1767), + }, + [397] = { + [sym_comment] = STATE(397), [anon_sym_export] = ACTIONS(984), [anon_sym_alias] = ACTIONS(984), [anon_sym_let] = ACTIONS(984), @@ -118592,7 +119439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(984), [anon_sym_overlay] = ACTIONS(984), [anon_sym_as] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(1899), + [anon_sym_QMARK2] = ACTIONS(1845), [anon_sym_PLUS2] = ACTIONS(984), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(984), [anon_sym_DOT_DOT2] = ACTIONS(984), @@ -118618,239 +119465,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(986), }, - [393] = { - [sym_comment] = STATE(393), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_alias] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_let_DASHenv] = ACTIONS(1755), - [anon_sym_mut] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1757), - [aux_sym_cmd_identifier_token3] = ACTIONS(1757), - [aux_sym_cmd_identifier_token4] = ACTIONS(1757), - [aux_sym_cmd_identifier_token5] = ACTIONS(1757), - [aux_sym_cmd_identifier_token6] = ACTIONS(1757), - [aux_sym_cmd_identifier_token7] = ACTIONS(1757), - [aux_sym_cmd_identifier_token8] = ACTIONS(1755), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1757), - [aux_sym_cmd_identifier_token11] = ACTIONS(1757), - [aux_sym_cmd_identifier_token12] = ACTIONS(1755), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1755), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1757), - [aux_sym_cmd_identifier_token17] = ACTIONS(1757), - [aux_sym_cmd_identifier_token18] = ACTIONS(1757), - [aux_sym_cmd_identifier_token19] = ACTIONS(1757), - [aux_sym_cmd_identifier_token20] = ACTIONS(1757), - [aux_sym_cmd_identifier_token21] = ACTIONS(1757), - [aux_sym_cmd_identifier_token22] = ACTIONS(1757), - [aux_sym_cmd_identifier_token23] = ACTIONS(1757), - [aux_sym_cmd_identifier_token24] = ACTIONS(1757), - [aux_sym_cmd_identifier_token25] = ACTIONS(1757), - [aux_sym_cmd_identifier_token26] = ACTIONS(1757), - [aux_sym_cmd_identifier_token27] = ACTIONS(1757), - [aux_sym_cmd_identifier_token28] = ACTIONS(1757), - [aux_sym_cmd_identifier_token29] = ACTIONS(1757), - [aux_sym_cmd_identifier_token30] = ACTIONS(1757), - [aux_sym_cmd_identifier_token31] = ACTIONS(1757), - [aux_sym_cmd_identifier_token32] = ACTIONS(1757), - [aux_sym_cmd_identifier_token33] = ACTIONS(1757), - [aux_sym_cmd_identifier_token34] = ACTIONS(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [aux_sym_cmd_identifier_token37] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_export_DASHenv] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_make] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_source] = ACTIONS(1755), - [anon_sym_source_DASHenv] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_hide] = ACTIONS(1755), - [anon_sym_hide_DASHenv] = ACTIONS(1755), - [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(1791), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1757), + [398] = { + [sym_comment] = STATE(398), + [anon_sym_export] = ACTIONS(1765), + [anon_sym_alias] = ACTIONS(1765), + [anon_sym_let] = ACTIONS(1765), + [anon_sym_let_DASHenv] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [aux_sym_cmd_identifier_token1] = ACTIONS(1765), + [aux_sym_cmd_identifier_token2] = ACTIONS(1765), + [aux_sym_cmd_identifier_token3] = ACTIONS(1765), + [aux_sym_cmd_identifier_token4] = ACTIONS(1765), + [aux_sym_cmd_identifier_token5] = ACTIONS(1765), + [aux_sym_cmd_identifier_token6] = ACTIONS(1765), + [aux_sym_cmd_identifier_token7] = ACTIONS(1765), + [aux_sym_cmd_identifier_token8] = ACTIONS(1765), + [aux_sym_cmd_identifier_token9] = ACTIONS(1765), + [aux_sym_cmd_identifier_token10] = ACTIONS(1765), + [aux_sym_cmd_identifier_token11] = ACTIONS(1765), + [aux_sym_cmd_identifier_token12] = ACTIONS(1765), + [aux_sym_cmd_identifier_token13] = ACTIONS(1765), + [aux_sym_cmd_identifier_token14] = ACTIONS(1765), + [aux_sym_cmd_identifier_token15] = ACTIONS(1765), + [aux_sym_cmd_identifier_token16] = ACTIONS(1765), + [aux_sym_cmd_identifier_token17] = ACTIONS(1765), + [aux_sym_cmd_identifier_token18] = ACTIONS(1765), + [aux_sym_cmd_identifier_token19] = ACTIONS(1765), + [aux_sym_cmd_identifier_token20] = ACTIONS(1765), + [aux_sym_cmd_identifier_token21] = ACTIONS(1765), + [aux_sym_cmd_identifier_token22] = ACTIONS(1765), + [aux_sym_cmd_identifier_token23] = ACTIONS(1765), + [aux_sym_cmd_identifier_token24] = ACTIONS(1765), + [aux_sym_cmd_identifier_token25] = ACTIONS(1765), + [aux_sym_cmd_identifier_token26] = ACTIONS(1765), + [aux_sym_cmd_identifier_token27] = ACTIONS(1765), + [aux_sym_cmd_identifier_token28] = ACTIONS(1765), + [aux_sym_cmd_identifier_token29] = ACTIONS(1765), + [aux_sym_cmd_identifier_token30] = ACTIONS(1765), + [aux_sym_cmd_identifier_token31] = ACTIONS(1765), + [aux_sym_cmd_identifier_token32] = ACTIONS(1765), + [aux_sym_cmd_identifier_token33] = ACTIONS(1765), + [aux_sym_cmd_identifier_token34] = ACTIONS(1765), + [aux_sym_cmd_identifier_token35] = ACTIONS(1765), + [aux_sym_cmd_identifier_token36] = ACTIONS(1765), + [aux_sym_cmd_identifier_token37] = ACTIONS(1765), + [aux_sym_cmd_identifier_token38] = ACTIONS(1765), + [aux_sym_cmd_identifier_token39] = ACTIONS(1765), + [aux_sym_cmd_identifier_token40] = ACTIONS(1765), + [anon_sym_def] = ACTIONS(1765), + [anon_sym_export_DASHenv] = ACTIONS(1765), + [anon_sym_extern] = ACTIONS(1765), + [anon_sym_module] = ACTIONS(1765), + [anon_sym_use] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_DOLLAR] = ACTIONS(1765), + [anon_sym_error] = ACTIONS(1765), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_in2] = ACTIONS(1765), + [anon_sym_loop] = ACTIONS(1765), + [anon_sym_make] = ACTIONS(1765), + [anon_sym_while] = ACTIONS(1765), + [anon_sym_do] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_else] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_try] = ACTIONS(1765), + [anon_sym_catch] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_source] = ACTIONS(1765), + [anon_sym_source_DASHenv] = ACTIONS(1765), + [anon_sym_register] = ACTIONS(1765), + [anon_sym_hide] = ACTIONS(1765), + [anon_sym_hide_DASHenv] = ACTIONS(1765), + [anon_sym_overlay] = ACTIONS(1765), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1767), + [anon_sym_PLUS2] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), + [anon_sym_DOT_DOT2] = ACTIONS(1765), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1765), + [aux_sym__val_number_decimal_token3] = ACTIONS(1765), + [aux_sym__val_number_decimal_token4] = ACTIONS(1765), + [aux_sym__val_number_token1] = ACTIONS(1765), + [aux_sym__val_number_token2] = ACTIONS(1765), + [aux_sym__val_number_token3] = ACTIONS(1765), + [aux_sym__val_number_token4] = ACTIONS(1765), + [aux_sym__val_number_token5] = ACTIONS(1765), + [aux_sym__val_number_token6] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1765), + [sym__str_single_quotes] = ACTIONS(1765), + [sym__str_back_ticks] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), + [sym__entry_separator] = ACTIONS(1767), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1767), }, - [394] = { - [sym_comment] = STATE(394), - [anon_sym_export] = ACTIONS(1739), - [anon_sym_alias] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1739), - [anon_sym_let_DASHenv] = ACTIONS(1739), - [anon_sym_mut] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [aux_sym_cmd_identifier_token1] = ACTIONS(1739), - [aux_sym_cmd_identifier_token2] = ACTIONS(1739), - [aux_sym_cmd_identifier_token3] = ACTIONS(1739), - [aux_sym_cmd_identifier_token4] = ACTIONS(1739), - [aux_sym_cmd_identifier_token5] = ACTIONS(1739), - [aux_sym_cmd_identifier_token6] = ACTIONS(1739), - [aux_sym_cmd_identifier_token7] = ACTIONS(1739), - [aux_sym_cmd_identifier_token8] = ACTIONS(1739), - [aux_sym_cmd_identifier_token9] = ACTIONS(1739), - [aux_sym_cmd_identifier_token10] = ACTIONS(1739), - [aux_sym_cmd_identifier_token11] = ACTIONS(1739), - [aux_sym_cmd_identifier_token12] = ACTIONS(1739), - [aux_sym_cmd_identifier_token13] = ACTIONS(1739), - [aux_sym_cmd_identifier_token14] = ACTIONS(1739), - [aux_sym_cmd_identifier_token15] = ACTIONS(1739), - [aux_sym_cmd_identifier_token16] = ACTIONS(1739), - [aux_sym_cmd_identifier_token17] = ACTIONS(1739), - [aux_sym_cmd_identifier_token18] = ACTIONS(1739), - [aux_sym_cmd_identifier_token19] = ACTIONS(1739), - [aux_sym_cmd_identifier_token20] = ACTIONS(1739), - [aux_sym_cmd_identifier_token21] = ACTIONS(1739), - [aux_sym_cmd_identifier_token22] = ACTIONS(1739), - [aux_sym_cmd_identifier_token23] = ACTIONS(1739), - [aux_sym_cmd_identifier_token24] = ACTIONS(1739), - [aux_sym_cmd_identifier_token25] = ACTIONS(1739), - [aux_sym_cmd_identifier_token26] = ACTIONS(1739), - [aux_sym_cmd_identifier_token27] = ACTIONS(1739), - [aux_sym_cmd_identifier_token28] = ACTIONS(1739), - [aux_sym_cmd_identifier_token29] = ACTIONS(1739), - [aux_sym_cmd_identifier_token30] = ACTIONS(1739), - [aux_sym_cmd_identifier_token31] = ACTIONS(1739), - [aux_sym_cmd_identifier_token32] = ACTIONS(1739), - [aux_sym_cmd_identifier_token33] = ACTIONS(1739), - [aux_sym_cmd_identifier_token34] = ACTIONS(1739), - [aux_sym_cmd_identifier_token35] = ACTIONS(1739), - [aux_sym_cmd_identifier_token36] = ACTIONS(1739), - [aux_sym_cmd_identifier_token37] = ACTIONS(1739), - [aux_sym_cmd_identifier_token38] = ACTIONS(1739), - [aux_sym_cmd_identifier_token39] = ACTIONS(1739), - [aux_sym_cmd_identifier_token40] = ACTIONS(1739), - [anon_sym_def] = ACTIONS(1739), - [anon_sym_export_DASHenv] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1739), - [anon_sym_module] = ACTIONS(1739), - [anon_sym_use] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_error] = ACTIONS(1739), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_in2] = ACTIONS(1739), - [anon_sym_loop] = ACTIONS(1739), - [anon_sym_make] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_else] = ACTIONS(1739), - [anon_sym_match] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_catch] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_source] = ACTIONS(1739), - [anon_sym_source_DASHenv] = ACTIONS(1739), - [anon_sym_register] = ACTIONS(1739), - [anon_sym_hide] = ACTIONS(1739), - [anon_sym_hide_DASHenv] = ACTIONS(1739), - [anon_sym_overlay] = ACTIONS(1739), - [anon_sym_as] = ACTIONS(1739), - [anon_sym_PLUS2] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1739), - [anon_sym_DOT_DOT2] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), - [aux_sym__immediate_decimal_token1] = ACTIONS(1901), - [aux_sym__immediate_decimal_token2] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1739), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1739), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1739), - [aux_sym__val_number_token1] = ACTIONS(1739), - [aux_sym__val_number_token2] = ACTIONS(1739), - [aux_sym__val_number_token3] = ACTIONS(1739), - [aux_sym__val_number_token4] = ACTIONS(1739), - [aux_sym__val_number_token5] = ACTIONS(1739), - [aux_sym__val_number_token6] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1739), - [sym__str_single_quotes] = ACTIONS(1739), - [sym__str_back_ticks] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1739), - [sym__entry_separator] = ACTIONS(1741), + [399] = { + [sym_cell_path] = STATE(664), + [sym_path] = STATE(567), + [sym_comment] = STATE(399), + [aux_sym_cell_path_repeat1] = STATE(495), + [anon_sym_export] = ACTIONS(1847), + [anon_sym_alias] = ACTIONS(1847), + [anon_sym_let] = ACTIONS(1847), + [anon_sym_let_DASHenv] = ACTIONS(1847), + [anon_sym_mut] = ACTIONS(1847), + [anon_sym_const] = ACTIONS(1847), + [aux_sym_cmd_identifier_token1] = ACTIONS(1847), + [aux_sym_cmd_identifier_token2] = ACTIONS(1847), + [aux_sym_cmd_identifier_token3] = ACTIONS(1847), + [aux_sym_cmd_identifier_token4] = ACTIONS(1847), + [aux_sym_cmd_identifier_token5] = ACTIONS(1847), + [aux_sym_cmd_identifier_token6] = ACTIONS(1847), + [aux_sym_cmd_identifier_token7] = ACTIONS(1847), + [aux_sym_cmd_identifier_token8] = ACTIONS(1847), + [aux_sym_cmd_identifier_token9] = ACTIONS(1847), + [aux_sym_cmd_identifier_token10] = ACTIONS(1847), + [aux_sym_cmd_identifier_token11] = ACTIONS(1847), + [aux_sym_cmd_identifier_token12] = ACTIONS(1847), + [aux_sym_cmd_identifier_token13] = ACTIONS(1847), + [aux_sym_cmd_identifier_token14] = ACTIONS(1847), + [aux_sym_cmd_identifier_token15] = ACTIONS(1847), + [aux_sym_cmd_identifier_token16] = ACTIONS(1847), + [aux_sym_cmd_identifier_token17] = ACTIONS(1847), + [aux_sym_cmd_identifier_token18] = ACTIONS(1847), + [aux_sym_cmd_identifier_token19] = ACTIONS(1847), + [aux_sym_cmd_identifier_token20] = ACTIONS(1847), + [aux_sym_cmd_identifier_token21] = ACTIONS(1847), + [aux_sym_cmd_identifier_token22] = ACTIONS(1847), + [aux_sym_cmd_identifier_token23] = ACTIONS(1847), + [aux_sym_cmd_identifier_token24] = ACTIONS(1847), + [aux_sym_cmd_identifier_token25] = ACTIONS(1847), + [aux_sym_cmd_identifier_token26] = ACTIONS(1847), + [aux_sym_cmd_identifier_token27] = ACTIONS(1847), + [aux_sym_cmd_identifier_token28] = ACTIONS(1847), + [aux_sym_cmd_identifier_token29] = ACTIONS(1847), + [aux_sym_cmd_identifier_token30] = ACTIONS(1847), + [aux_sym_cmd_identifier_token31] = ACTIONS(1847), + [aux_sym_cmd_identifier_token32] = ACTIONS(1847), + [aux_sym_cmd_identifier_token33] = ACTIONS(1847), + [aux_sym_cmd_identifier_token34] = ACTIONS(1847), + [aux_sym_cmd_identifier_token35] = ACTIONS(1847), + [aux_sym_cmd_identifier_token36] = ACTIONS(1847), + [aux_sym_cmd_identifier_token37] = ACTIONS(1847), + [aux_sym_cmd_identifier_token38] = ACTIONS(1847), + [aux_sym_cmd_identifier_token39] = ACTIONS(1847), + [aux_sym_cmd_identifier_token40] = ACTIONS(1847), + [anon_sym_def] = ACTIONS(1847), + [anon_sym_export_DASHenv] = ACTIONS(1847), + [anon_sym_extern] = ACTIONS(1847), + [anon_sym_module] = ACTIONS(1847), + [anon_sym_use] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1847), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_error] = ACTIONS(1847), + [anon_sym_DASH2] = ACTIONS(1847), + [anon_sym_break] = ACTIONS(1847), + [anon_sym_continue] = ACTIONS(1847), + [anon_sym_for] = ACTIONS(1847), + [anon_sym_in2] = ACTIONS(1847), + [anon_sym_loop] = ACTIONS(1847), + [anon_sym_make] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1847), + [anon_sym_do] = ACTIONS(1847), + [anon_sym_if] = ACTIONS(1847), + [anon_sym_else] = ACTIONS(1847), + [anon_sym_match] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(1847), + [anon_sym_try] = ACTIONS(1847), + [anon_sym_catch] = ACTIONS(1847), + [anon_sym_return] = ACTIONS(1847), + [anon_sym_source] = ACTIONS(1847), + [anon_sym_source_DASHenv] = ACTIONS(1847), + [anon_sym_register] = ACTIONS(1847), + [anon_sym_hide] = ACTIONS(1847), + [anon_sym_hide_DASHenv] = ACTIONS(1847), + [anon_sym_overlay] = ACTIONS(1847), + [anon_sym_as] = ACTIONS(1847), + [anon_sym_PLUS2] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1847), + [anon_sym_DOT] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1847), + [aux_sym__val_number_decimal_token1] = ACTIONS(1847), + [aux_sym__val_number_decimal_token2] = ACTIONS(1847), + [aux_sym__val_number_decimal_token3] = ACTIONS(1847), + [aux_sym__val_number_decimal_token4] = ACTIONS(1847), + [aux_sym__val_number_token1] = ACTIONS(1847), + [aux_sym__val_number_token2] = ACTIONS(1847), + [aux_sym__val_number_token3] = ACTIONS(1847), + [aux_sym__val_number_token4] = ACTIONS(1847), + [aux_sym__val_number_token5] = ACTIONS(1847), + [aux_sym__val_number_token6] = ACTIONS(1847), + [anon_sym_DQUOTE] = ACTIONS(1847), + [sym__str_single_quotes] = ACTIONS(1847), + [sym__str_back_ticks] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1847), + [sym__entry_separator] = ACTIONS(1851), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1741), + [sym_raw_string_begin] = ACTIONS(1851), }, - [395] = { - [sym_comment] = STATE(395), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_alias] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_let_DASHenv] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [aux_sym_cmd_identifier_token1] = ACTIONS(1783), + [400] = { + [sym_cell_path] = STATE(624), + [sym_path] = STATE(567), + [sym_comment] = STATE(400), + [aux_sym_cell_path_repeat1] = STATE(495), + [anon_sym_export] = ACTIONS(1853), + [anon_sym_alias] = ACTIONS(1853), + [anon_sym_let] = ACTIONS(1853), + [anon_sym_let_DASHenv] = ACTIONS(1853), + [anon_sym_mut] = ACTIONS(1853), + [anon_sym_const] = ACTIONS(1853), + [aux_sym_cmd_identifier_token1] = ACTIONS(1853), + [aux_sym_cmd_identifier_token2] = ACTIONS(1853), + [aux_sym_cmd_identifier_token3] = ACTIONS(1853), + [aux_sym_cmd_identifier_token4] = ACTIONS(1853), + [aux_sym_cmd_identifier_token5] = ACTIONS(1853), + [aux_sym_cmd_identifier_token6] = ACTIONS(1853), + [aux_sym_cmd_identifier_token7] = ACTIONS(1853), + [aux_sym_cmd_identifier_token8] = ACTIONS(1853), + [aux_sym_cmd_identifier_token9] = ACTIONS(1853), + [aux_sym_cmd_identifier_token10] = ACTIONS(1853), + [aux_sym_cmd_identifier_token11] = ACTIONS(1853), + [aux_sym_cmd_identifier_token12] = ACTIONS(1853), + [aux_sym_cmd_identifier_token13] = ACTIONS(1853), + [aux_sym_cmd_identifier_token14] = ACTIONS(1853), + [aux_sym_cmd_identifier_token15] = ACTIONS(1853), + [aux_sym_cmd_identifier_token16] = ACTIONS(1853), + [aux_sym_cmd_identifier_token17] = ACTIONS(1853), + [aux_sym_cmd_identifier_token18] = ACTIONS(1853), + [aux_sym_cmd_identifier_token19] = ACTIONS(1853), + [aux_sym_cmd_identifier_token20] = ACTIONS(1853), + [aux_sym_cmd_identifier_token21] = ACTIONS(1853), + [aux_sym_cmd_identifier_token22] = ACTIONS(1853), + [aux_sym_cmd_identifier_token23] = ACTIONS(1853), + [aux_sym_cmd_identifier_token24] = ACTIONS(1853), + [aux_sym_cmd_identifier_token25] = ACTIONS(1853), + [aux_sym_cmd_identifier_token26] = ACTIONS(1853), + [aux_sym_cmd_identifier_token27] = ACTIONS(1853), + [aux_sym_cmd_identifier_token28] = ACTIONS(1853), + [aux_sym_cmd_identifier_token29] = ACTIONS(1853), + [aux_sym_cmd_identifier_token30] = ACTIONS(1853), + [aux_sym_cmd_identifier_token31] = ACTIONS(1853), + [aux_sym_cmd_identifier_token32] = ACTIONS(1853), + [aux_sym_cmd_identifier_token33] = ACTIONS(1853), + [aux_sym_cmd_identifier_token34] = ACTIONS(1853), + [aux_sym_cmd_identifier_token35] = ACTIONS(1853), + [aux_sym_cmd_identifier_token36] = ACTIONS(1853), + [aux_sym_cmd_identifier_token37] = ACTIONS(1853), + [aux_sym_cmd_identifier_token38] = ACTIONS(1853), + [aux_sym_cmd_identifier_token39] = ACTIONS(1853), + [aux_sym_cmd_identifier_token40] = ACTIONS(1853), + [anon_sym_def] = ACTIONS(1853), + [anon_sym_export_DASHenv] = ACTIONS(1853), + [anon_sym_extern] = ACTIONS(1853), + [anon_sym_module] = ACTIONS(1853), + [anon_sym_use] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1853), + [anon_sym_DOLLAR] = ACTIONS(1853), + [anon_sym_error] = ACTIONS(1853), + [anon_sym_DASH2] = ACTIONS(1853), + [anon_sym_break] = ACTIONS(1853), + [anon_sym_continue] = ACTIONS(1853), + [anon_sym_for] = ACTIONS(1853), + [anon_sym_in2] = ACTIONS(1853), + [anon_sym_loop] = ACTIONS(1853), + [anon_sym_make] = ACTIONS(1853), + [anon_sym_while] = ACTIONS(1853), + [anon_sym_do] = ACTIONS(1853), + [anon_sym_if] = ACTIONS(1853), + [anon_sym_else] = ACTIONS(1853), + [anon_sym_match] = ACTIONS(1853), + [anon_sym_RBRACE] = ACTIONS(1853), + [anon_sym_try] = ACTIONS(1853), + [anon_sym_catch] = ACTIONS(1853), + [anon_sym_return] = ACTIONS(1853), + [anon_sym_source] = ACTIONS(1853), + [anon_sym_source_DASHenv] = ACTIONS(1853), + [anon_sym_register] = ACTIONS(1853), + [anon_sym_hide] = ACTIONS(1853), + [anon_sym_hide_DASHenv] = ACTIONS(1853), + [anon_sym_overlay] = ACTIONS(1853), + [anon_sym_as] = ACTIONS(1853), + [anon_sym_PLUS2] = ACTIONS(1853), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1853), + [anon_sym_DOT] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1853), + [aux_sym__val_number_decimal_token1] = ACTIONS(1853), + [aux_sym__val_number_decimal_token2] = ACTIONS(1853), + [aux_sym__val_number_decimal_token3] = ACTIONS(1853), + [aux_sym__val_number_decimal_token4] = ACTIONS(1853), + [aux_sym__val_number_token1] = ACTIONS(1853), + [aux_sym__val_number_token2] = ACTIONS(1853), + [aux_sym__val_number_token3] = ACTIONS(1853), + [aux_sym__val_number_token4] = ACTIONS(1853), + [aux_sym__val_number_token5] = ACTIONS(1853), + [aux_sym__val_number_token6] = ACTIONS(1853), + [anon_sym_DQUOTE] = ACTIONS(1853), + [sym__str_single_quotes] = ACTIONS(1853), + [sym__str_back_ticks] = ACTIONS(1853), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1853), + [sym__entry_separator] = ACTIONS(1855), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1855), + }, + [401] = { + [sym_comment] = STATE(401), + [anon_sym_export] = ACTIONS(1785), + [anon_sym_alias] = ACTIONS(1785), + [anon_sym_let] = ACTIONS(1785), + [anon_sym_let_DASHenv] = ACTIONS(1785), + [anon_sym_mut] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(1785), + [aux_sym_cmd_identifier_token1] = ACTIONS(1785), [aux_sym_cmd_identifier_token2] = ACTIONS(1785), [aux_sym_cmd_identifier_token3] = ACTIONS(1785), [aux_sym_cmd_identifier_token4] = ACTIONS(1785), [aux_sym_cmd_identifier_token5] = ACTIONS(1785), [aux_sym_cmd_identifier_token6] = ACTIONS(1785), [aux_sym_cmd_identifier_token7] = ACTIONS(1785), - [aux_sym_cmd_identifier_token8] = ACTIONS(1783), - [aux_sym_cmd_identifier_token9] = ACTIONS(1783), + [aux_sym_cmd_identifier_token8] = ACTIONS(1785), + [aux_sym_cmd_identifier_token9] = ACTIONS(1785), [aux_sym_cmd_identifier_token10] = ACTIONS(1785), [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1783), - [aux_sym_cmd_identifier_token13] = ACTIONS(1783), - [aux_sym_cmd_identifier_token14] = ACTIONS(1783), - [aux_sym_cmd_identifier_token15] = ACTIONS(1783), + [aux_sym_cmd_identifier_token12] = ACTIONS(1785), + [aux_sym_cmd_identifier_token13] = ACTIONS(1785), + [aux_sym_cmd_identifier_token14] = ACTIONS(1785), + [aux_sym_cmd_identifier_token15] = ACTIONS(1785), [aux_sym_cmd_identifier_token16] = ACTIONS(1785), [aux_sym_cmd_identifier_token17] = ACTIONS(1785), [aux_sym_cmd_identifier_token18] = ACTIONS(1785), @@ -118869,492 +119819,487 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(1785), [aux_sym_cmd_identifier_token32] = ACTIONS(1785), [aux_sym_cmd_identifier_token33] = ACTIONS(1785), - [aux_sym_cmd_identifier_token34] = ACTIONS(1783), + [aux_sym_cmd_identifier_token34] = ACTIONS(1785), [aux_sym_cmd_identifier_token35] = ACTIONS(1785), [aux_sym_cmd_identifier_token36] = ACTIONS(1785), [aux_sym_cmd_identifier_token37] = ACTIONS(1785), - [aux_sym_cmd_identifier_token38] = ACTIONS(1783), + [aux_sym_cmd_identifier_token38] = ACTIONS(1785), [aux_sym_cmd_identifier_token39] = ACTIONS(1785), [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_export_DASHenv] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1783), + [anon_sym_def] = ACTIONS(1785), + [anon_sym_export_DASHenv] = ACTIONS(1785), + [anon_sym_extern] = ACTIONS(1785), + [anon_sym_module] = ACTIONS(1785), + [anon_sym_use] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1785), [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_error] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_make] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), + [anon_sym_error] = ACTIONS(1785), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_break] = ACTIONS(1785), + [anon_sym_continue] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1785), + [anon_sym_in2] = ACTIONS(1785), + [anon_sym_loop] = ACTIONS(1785), + [anon_sym_make] = ACTIONS(1785), + [anon_sym_while] = ACTIONS(1785), + [anon_sym_do] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1785), + [anon_sym_else] = ACTIONS(1785), + [anon_sym_match] = ACTIONS(1785), [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_catch] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_source] = ACTIONS(1783), - [anon_sym_source_DASHenv] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_hide] = ACTIONS(1783), - [anon_sym_hide_DASHenv] = ACTIONS(1783), - [anon_sym_overlay] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1783), + [anon_sym_try] = ACTIONS(1785), + [anon_sym_catch] = ACTIONS(1785), + [anon_sym_return] = ACTIONS(1785), + [anon_sym_source] = ACTIONS(1785), + [anon_sym_source_DASHenv] = ACTIONS(1785), + [anon_sym_register] = ACTIONS(1785), + [anon_sym_hide] = ACTIONS(1785), + [anon_sym_hide_DASHenv] = ACTIONS(1785), + [anon_sym_overlay] = ACTIONS(1785), + [anon_sym_as] = ACTIONS(1785), + [anon_sym_PLUS2] = ACTIONS(1785), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), - [aux_sym__immediate_decimal_token2] = ACTIONS(1905), + [anon_sym_DOT_DOT2] = ACTIONS(1785), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), + [aux_sym__immediate_decimal_token2] = ACTIONS(1857), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), + [aux_sym__val_number_decimal_token1] = ACTIONS(1785), [aux_sym__val_number_decimal_token2] = ACTIONS(1785), [aux_sym__val_number_decimal_token3] = ACTIONS(1785), [aux_sym__val_number_decimal_token4] = ACTIONS(1785), [aux_sym__val_number_token1] = ACTIONS(1785), [aux_sym__val_number_token2] = ACTIONS(1785), [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1783), - [aux_sym__val_number_token5] = ACTIONS(1783), - [aux_sym__val_number_token6] = ACTIONS(1783), + [aux_sym__val_number_token4] = ACTIONS(1785), + [aux_sym__val_number_token5] = ACTIONS(1785), + [aux_sym__val_number_token6] = ACTIONS(1785), [anon_sym_DQUOTE] = ACTIONS(1785), [sym__str_single_quotes] = ACTIONS(1785), [sym__str_back_ticks] = ACTIONS(1785), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1785), + [sym__entry_separator] = ACTIONS(1787), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1787), }, - [396] = { - [sym_comment] = STATE(396), - [anon_sym_export] = ACTIONS(994), - [anon_sym_alias] = ACTIONS(994), - [anon_sym_let] = ACTIONS(994), - [anon_sym_let_DASHenv] = ACTIONS(994), - [anon_sym_mut] = ACTIONS(994), - [anon_sym_const] = ACTIONS(994), - [aux_sym_cmd_identifier_token1] = ACTIONS(994), - [aux_sym_cmd_identifier_token2] = ACTIONS(994), - [aux_sym_cmd_identifier_token3] = ACTIONS(994), - [aux_sym_cmd_identifier_token4] = ACTIONS(994), - [aux_sym_cmd_identifier_token5] = ACTIONS(994), - [aux_sym_cmd_identifier_token6] = ACTIONS(994), - [aux_sym_cmd_identifier_token7] = ACTIONS(994), - [aux_sym_cmd_identifier_token8] = ACTIONS(994), - [aux_sym_cmd_identifier_token9] = ACTIONS(994), - [aux_sym_cmd_identifier_token10] = ACTIONS(994), - [aux_sym_cmd_identifier_token11] = ACTIONS(994), - [aux_sym_cmd_identifier_token12] = ACTIONS(994), - [aux_sym_cmd_identifier_token13] = ACTIONS(994), - [aux_sym_cmd_identifier_token14] = ACTIONS(994), - [aux_sym_cmd_identifier_token15] = ACTIONS(994), - [aux_sym_cmd_identifier_token16] = ACTIONS(994), - [aux_sym_cmd_identifier_token17] = ACTIONS(994), - [aux_sym_cmd_identifier_token18] = ACTIONS(994), - [aux_sym_cmd_identifier_token19] = ACTIONS(994), - [aux_sym_cmd_identifier_token20] = ACTIONS(994), - [aux_sym_cmd_identifier_token21] = ACTIONS(994), - [aux_sym_cmd_identifier_token22] = ACTIONS(994), - [aux_sym_cmd_identifier_token23] = ACTIONS(994), - [aux_sym_cmd_identifier_token24] = ACTIONS(994), - [aux_sym_cmd_identifier_token25] = ACTIONS(994), - [aux_sym_cmd_identifier_token26] = ACTIONS(994), - [aux_sym_cmd_identifier_token27] = ACTIONS(994), - [aux_sym_cmd_identifier_token28] = ACTIONS(994), - [aux_sym_cmd_identifier_token29] = ACTIONS(994), - [aux_sym_cmd_identifier_token30] = ACTIONS(994), - [aux_sym_cmd_identifier_token31] = ACTIONS(994), - [aux_sym_cmd_identifier_token32] = ACTIONS(994), - [aux_sym_cmd_identifier_token33] = ACTIONS(994), - [aux_sym_cmd_identifier_token34] = ACTIONS(994), - [aux_sym_cmd_identifier_token35] = ACTIONS(994), - [aux_sym_cmd_identifier_token36] = ACTIONS(994), - [aux_sym_cmd_identifier_token37] = ACTIONS(994), - [aux_sym_cmd_identifier_token38] = ACTIONS(994), - [aux_sym_cmd_identifier_token39] = ACTIONS(994), - [aux_sym_cmd_identifier_token40] = ACTIONS(994), - [anon_sym_def] = ACTIONS(994), - [anon_sym_export_DASHenv] = ACTIONS(994), - [anon_sym_extern] = ACTIONS(994), - [anon_sym_module] = ACTIONS(994), - [anon_sym_use] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(994), - [anon_sym_error] = ACTIONS(994), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_break] = ACTIONS(994), - [anon_sym_continue] = ACTIONS(994), - [anon_sym_for] = ACTIONS(994), - [anon_sym_in2] = ACTIONS(994), - [anon_sym_loop] = ACTIONS(994), - [anon_sym_make] = ACTIONS(994), - [anon_sym_while] = ACTIONS(994), - [anon_sym_do] = ACTIONS(994), - [anon_sym_if] = ACTIONS(994), - [anon_sym_else] = ACTIONS(994), - [anon_sym_match] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(994), - [anon_sym_try] = ACTIONS(994), - [anon_sym_catch] = ACTIONS(994), - [anon_sym_return] = ACTIONS(994), - [anon_sym_source] = ACTIONS(994), - [anon_sym_source_DASHenv] = ACTIONS(994), - [anon_sym_register] = ACTIONS(994), - [anon_sym_hide] = ACTIONS(994), - [anon_sym_hide_DASHenv] = ACTIONS(994), - [anon_sym_overlay] = ACTIONS(994), - [anon_sym_as] = ACTIONS(994), - [anon_sym_QMARK2] = ACTIONS(994), - [anon_sym_PLUS2] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(994), - [anon_sym_DOT_DOT2] = ACTIONS(994), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), - [anon_sym_DOT_DOT_LT2] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(994), - [aux_sym__val_number_decimal_token1] = ACTIONS(994), - [aux_sym__val_number_decimal_token2] = ACTIONS(994), - [aux_sym__val_number_decimal_token3] = ACTIONS(994), - [aux_sym__val_number_decimal_token4] = ACTIONS(994), - [aux_sym__val_number_token1] = ACTIONS(994), - [aux_sym__val_number_token2] = ACTIONS(994), - [aux_sym__val_number_token3] = ACTIONS(994), - [aux_sym__val_number_token4] = ACTIONS(994), - [aux_sym__val_number_token5] = ACTIONS(994), - [aux_sym__val_number_token6] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym__str_single_quotes] = ACTIONS(994), - [sym__str_back_ticks] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(994), - [sym__entry_separator] = ACTIONS(996), + [402] = { + [sym_cell_path] = STATE(635), + [sym_path] = STATE(567), + [sym_comment] = STATE(402), + [aux_sym_cell_path_repeat1] = STATE(495), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_alias] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_let_DASHenv] = ACTIONS(1859), + [anon_sym_mut] = ACTIONS(1859), + [anon_sym_const] = ACTIONS(1859), + [aux_sym_cmd_identifier_token1] = ACTIONS(1859), + [aux_sym_cmd_identifier_token2] = ACTIONS(1859), + [aux_sym_cmd_identifier_token3] = ACTIONS(1859), + [aux_sym_cmd_identifier_token4] = ACTIONS(1859), + [aux_sym_cmd_identifier_token5] = ACTIONS(1859), + [aux_sym_cmd_identifier_token6] = ACTIONS(1859), + [aux_sym_cmd_identifier_token7] = ACTIONS(1859), + [aux_sym_cmd_identifier_token8] = ACTIONS(1859), + [aux_sym_cmd_identifier_token9] = ACTIONS(1859), + [aux_sym_cmd_identifier_token10] = ACTIONS(1859), + [aux_sym_cmd_identifier_token11] = ACTIONS(1859), + [aux_sym_cmd_identifier_token12] = ACTIONS(1859), + [aux_sym_cmd_identifier_token13] = ACTIONS(1859), + [aux_sym_cmd_identifier_token14] = ACTIONS(1859), + [aux_sym_cmd_identifier_token15] = ACTIONS(1859), + [aux_sym_cmd_identifier_token16] = ACTIONS(1859), + [aux_sym_cmd_identifier_token17] = ACTIONS(1859), + [aux_sym_cmd_identifier_token18] = ACTIONS(1859), + [aux_sym_cmd_identifier_token19] = ACTIONS(1859), + [aux_sym_cmd_identifier_token20] = ACTIONS(1859), + [aux_sym_cmd_identifier_token21] = ACTIONS(1859), + [aux_sym_cmd_identifier_token22] = ACTIONS(1859), + [aux_sym_cmd_identifier_token23] = ACTIONS(1859), + [aux_sym_cmd_identifier_token24] = ACTIONS(1859), + [aux_sym_cmd_identifier_token25] = ACTIONS(1859), + [aux_sym_cmd_identifier_token26] = ACTIONS(1859), + [aux_sym_cmd_identifier_token27] = ACTIONS(1859), + [aux_sym_cmd_identifier_token28] = ACTIONS(1859), + [aux_sym_cmd_identifier_token29] = ACTIONS(1859), + [aux_sym_cmd_identifier_token30] = ACTIONS(1859), + [aux_sym_cmd_identifier_token31] = ACTIONS(1859), + [aux_sym_cmd_identifier_token32] = ACTIONS(1859), + [aux_sym_cmd_identifier_token33] = ACTIONS(1859), + [aux_sym_cmd_identifier_token34] = ACTIONS(1859), + [aux_sym_cmd_identifier_token35] = ACTIONS(1859), + [aux_sym_cmd_identifier_token36] = ACTIONS(1859), + [aux_sym_cmd_identifier_token37] = ACTIONS(1859), + [aux_sym_cmd_identifier_token38] = ACTIONS(1859), + [aux_sym_cmd_identifier_token39] = ACTIONS(1859), + [aux_sym_cmd_identifier_token40] = ACTIONS(1859), + [anon_sym_def] = ACTIONS(1859), + [anon_sym_export_DASHenv] = ACTIONS(1859), + [anon_sym_extern] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_use] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1859), + [anon_sym_DOLLAR] = ACTIONS(1859), + [anon_sym_error] = ACTIONS(1859), + [anon_sym_DASH2] = ACTIONS(1859), + [anon_sym_break] = ACTIONS(1859), + [anon_sym_continue] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_in2] = ACTIONS(1859), + [anon_sym_loop] = ACTIONS(1859), + [anon_sym_make] = ACTIONS(1859), + [anon_sym_while] = ACTIONS(1859), + [anon_sym_do] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1859), + [anon_sym_else] = ACTIONS(1859), + [anon_sym_match] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(1859), + [anon_sym_try] = ACTIONS(1859), + [anon_sym_catch] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(1859), + [anon_sym_source] = ACTIONS(1859), + [anon_sym_source_DASHenv] = ACTIONS(1859), + [anon_sym_register] = ACTIONS(1859), + [anon_sym_hide] = ACTIONS(1859), + [anon_sym_hide_DASHenv] = ACTIONS(1859), + [anon_sym_overlay] = ACTIONS(1859), + [anon_sym_as] = ACTIONS(1859), + [anon_sym_PLUS2] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1859), + [anon_sym_DOT] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1859), + [aux_sym__val_number_decimal_token1] = ACTIONS(1859), + [aux_sym__val_number_decimal_token2] = ACTIONS(1859), + [aux_sym__val_number_decimal_token3] = ACTIONS(1859), + [aux_sym__val_number_decimal_token4] = ACTIONS(1859), + [aux_sym__val_number_token1] = ACTIONS(1859), + [aux_sym__val_number_token2] = ACTIONS(1859), + [aux_sym__val_number_token3] = ACTIONS(1859), + [aux_sym__val_number_token4] = ACTIONS(1859), + [aux_sym__val_number_token5] = ACTIONS(1859), + [aux_sym__val_number_token6] = ACTIONS(1859), + [anon_sym_DQUOTE] = ACTIONS(1859), + [sym__str_single_quotes] = ACTIONS(1859), + [sym__str_back_ticks] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1859), + [sym__entry_separator] = ACTIONS(1861), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(996), + [sym_raw_string_begin] = ACTIONS(1861), }, - [397] = { - [sym_comment] = STATE(397), - [anon_sym_export] = ACTIONS(998), - [anon_sym_alias] = ACTIONS(998), - [anon_sym_let] = ACTIONS(998), - [anon_sym_let_DASHenv] = ACTIONS(998), - [anon_sym_mut] = ACTIONS(998), - [anon_sym_const] = ACTIONS(998), - [aux_sym_cmd_identifier_token1] = ACTIONS(998), - [aux_sym_cmd_identifier_token2] = ACTIONS(998), - [aux_sym_cmd_identifier_token3] = ACTIONS(998), - [aux_sym_cmd_identifier_token4] = ACTIONS(998), - [aux_sym_cmd_identifier_token5] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(998), - [aux_sym_cmd_identifier_token7] = ACTIONS(998), - [aux_sym_cmd_identifier_token8] = ACTIONS(998), - [aux_sym_cmd_identifier_token9] = ACTIONS(998), - [aux_sym_cmd_identifier_token10] = ACTIONS(998), - [aux_sym_cmd_identifier_token11] = ACTIONS(998), - [aux_sym_cmd_identifier_token12] = ACTIONS(998), - [aux_sym_cmd_identifier_token13] = ACTIONS(998), - [aux_sym_cmd_identifier_token14] = ACTIONS(998), - [aux_sym_cmd_identifier_token15] = ACTIONS(998), - [aux_sym_cmd_identifier_token16] = ACTIONS(998), - [aux_sym_cmd_identifier_token17] = ACTIONS(998), - [aux_sym_cmd_identifier_token18] = ACTIONS(998), - [aux_sym_cmd_identifier_token19] = ACTIONS(998), - [aux_sym_cmd_identifier_token20] = ACTIONS(998), - [aux_sym_cmd_identifier_token21] = ACTIONS(998), - [aux_sym_cmd_identifier_token22] = ACTIONS(998), - [aux_sym_cmd_identifier_token23] = ACTIONS(998), - [aux_sym_cmd_identifier_token24] = ACTIONS(998), - [aux_sym_cmd_identifier_token25] = ACTIONS(998), - [aux_sym_cmd_identifier_token26] = ACTIONS(998), - [aux_sym_cmd_identifier_token27] = ACTIONS(998), - [aux_sym_cmd_identifier_token28] = ACTIONS(998), - [aux_sym_cmd_identifier_token29] = ACTIONS(998), - [aux_sym_cmd_identifier_token30] = ACTIONS(998), - [aux_sym_cmd_identifier_token31] = ACTIONS(998), - [aux_sym_cmd_identifier_token32] = ACTIONS(998), - [aux_sym_cmd_identifier_token33] = ACTIONS(998), - [aux_sym_cmd_identifier_token34] = ACTIONS(998), - [aux_sym_cmd_identifier_token35] = ACTIONS(998), - [aux_sym_cmd_identifier_token36] = ACTIONS(998), - [aux_sym_cmd_identifier_token37] = ACTIONS(998), - [aux_sym_cmd_identifier_token38] = ACTIONS(998), - [aux_sym_cmd_identifier_token39] = ACTIONS(998), - [aux_sym_cmd_identifier_token40] = ACTIONS(998), - [anon_sym_def] = ACTIONS(998), - [anon_sym_export_DASHenv] = ACTIONS(998), - [anon_sym_extern] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_use] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_error] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(998), - [anon_sym_break] = ACTIONS(998), - [anon_sym_continue] = ACTIONS(998), - [anon_sym_for] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_loop] = ACTIONS(998), - [anon_sym_make] = ACTIONS(998), - [anon_sym_while] = ACTIONS(998), - [anon_sym_do] = ACTIONS(998), - [anon_sym_if] = ACTIONS(998), - [anon_sym_else] = ACTIONS(998), - [anon_sym_match] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_try] = ACTIONS(998), - [anon_sym_catch] = ACTIONS(998), - [anon_sym_return] = ACTIONS(998), - [anon_sym_source] = ACTIONS(998), - [anon_sym_source_DASHenv] = ACTIONS(998), - [anon_sym_register] = ACTIONS(998), - [anon_sym_hide] = ACTIONS(998), - [anon_sym_hide_DASHenv] = ACTIONS(998), - [anon_sym_overlay] = ACTIONS(998), - [anon_sym_as] = ACTIONS(998), - [anon_sym_QMARK2] = ACTIONS(998), - [anon_sym_PLUS2] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(998), - [anon_sym_DOT_DOT2] = ACTIONS(998), - [anon_sym_DOT] = ACTIONS(998), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1000), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(998), - [aux_sym__val_number_decimal_token1] = ACTIONS(998), - [aux_sym__val_number_decimal_token2] = ACTIONS(998), - [aux_sym__val_number_decimal_token3] = ACTIONS(998), - [aux_sym__val_number_decimal_token4] = ACTIONS(998), - [aux_sym__val_number_token1] = ACTIONS(998), - [aux_sym__val_number_token2] = ACTIONS(998), - [aux_sym__val_number_token3] = ACTIONS(998), - [aux_sym__val_number_token4] = ACTIONS(998), - [aux_sym__val_number_token5] = ACTIONS(998), - [aux_sym__val_number_token6] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym__str_single_quotes] = ACTIONS(998), - [sym__str_back_ticks] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(998), - [sym__entry_separator] = ACTIONS(1000), + [403] = { + [sym_cell_path] = STATE(640), + [sym_path] = STATE(567), + [sym_comment] = STATE(403), + [aux_sym_cell_path_repeat1] = STATE(495), + [anon_sym_export] = ACTIONS(1863), + [anon_sym_alias] = ACTIONS(1863), + [anon_sym_let] = ACTIONS(1863), + [anon_sym_let_DASHenv] = ACTIONS(1863), + [anon_sym_mut] = ACTIONS(1863), + [anon_sym_const] = ACTIONS(1863), + [aux_sym_cmd_identifier_token1] = ACTIONS(1863), + [aux_sym_cmd_identifier_token2] = ACTIONS(1863), + [aux_sym_cmd_identifier_token3] = ACTIONS(1863), + [aux_sym_cmd_identifier_token4] = ACTIONS(1863), + [aux_sym_cmd_identifier_token5] = ACTIONS(1863), + [aux_sym_cmd_identifier_token6] = ACTIONS(1863), + [aux_sym_cmd_identifier_token7] = ACTIONS(1863), + [aux_sym_cmd_identifier_token8] = ACTIONS(1863), + [aux_sym_cmd_identifier_token9] = ACTIONS(1863), + [aux_sym_cmd_identifier_token10] = ACTIONS(1863), + [aux_sym_cmd_identifier_token11] = ACTIONS(1863), + [aux_sym_cmd_identifier_token12] = ACTIONS(1863), + [aux_sym_cmd_identifier_token13] = ACTIONS(1863), + [aux_sym_cmd_identifier_token14] = ACTIONS(1863), + [aux_sym_cmd_identifier_token15] = ACTIONS(1863), + [aux_sym_cmd_identifier_token16] = ACTIONS(1863), + [aux_sym_cmd_identifier_token17] = ACTIONS(1863), + [aux_sym_cmd_identifier_token18] = ACTIONS(1863), + [aux_sym_cmd_identifier_token19] = ACTIONS(1863), + [aux_sym_cmd_identifier_token20] = ACTIONS(1863), + [aux_sym_cmd_identifier_token21] = ACTIONS(1863), + [aux_sym_cmd_identifier_token22] = ACTIONS(1863), + [aux_sym_cmd_identifier_token23] = ACTIONS(1863), + [aux_sym_cmd_identifier_token24] = ACTIONS(1863), + [aux_sym_cmd_identifier_token25] = ACTIONS(1863), + [aux_sym_cmd_identifier_token26] = ACTIONS(1863), + [aux_sym_cmd_identifier_token27] = ACTIONS(1863), + [aux_sym_cmd_identifier_token28] = ACTIONS(1863), + [aux_sym_cmd_identifier_token29] = ACTIONS(1863), + [aux_sym_cmd_identifier_token30] = ACTIONS(1863), + [aux_sym_cmd_identifier_token31] = ACTIONS(1863), + [aux_sym_cmd_identifier_token32] = ACTIONS(1863), + [aux_sym_cmd_identifier_token33] = ACTIONS(1863), + [aux_sym_cmd_identifier_token34] = ACTIONS(1863), + [aux_sym_cmd_identifier_token35] = ACTIONS(1863), + [aux_sym_cmd_identifier_token36] = ACTIONS(1863), + [aux_sym_cmd_identifier_token37] = ACTIONS(1863), + [aux_sym_cmd_identifier_token38] = ACTIONS(1863), + [aux_sym_cmd_identifier_token39] = ACTIONS(1863), + [aux_sym_cmd_identifier_token40] = ACTIONS(1863), + [anon_sym_def] = ACTIONS(1863), + [anon_sym_export_DASHenv] = ACTIONS(1863), + [anon_sym_extern] = ACTIONS(1863), + [anon_sym_module] = ACTIONS(1863), + [anon_sym_use] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_DOLLAR] = ACTIONS(1863), + [anon_sym_error] = ACTIONS(1863), + [anon_sym_DASH2] = ACTIONS(1863), + [anon_sym_break] = ACTIONS(1863), + [anon_sym_continue] = ACTIONS(1863), + [anon_sym_for] = ACTIONS(1863), + [anon_sym_in2] = ACTIONS(1863), + [anon_sym_loop] = ACTIONS(1863), + [anon_sym_make] = ACTIONS(1863), + [anon_sym_while] = ACTIONS(1863), + [anon_sym_do] = ACTIONS(1863), + [anon_sym_if] = ACTIONS(1863), + [anon_sym_else] = ACTIONS(1863), + [anon_sym_match] = ACTIONS(1863), + [anon_sym_RBRACE] = ACTIONS(1863), + [anon_sym_try] = ACTIONS(1863), + [anon_sym_catch] = ACTIONS(1863), + [anon_sym_return] = ACTIONS(1863), + [anon_sym_source] = ACTIONS(1863), + [anon_sym_source_DASHenv] = ACTIONS(1863), + [anon_sym_register] = ACTIONS(1863), + [anon_sym_hide] = ACTIONS(1863), + [anon_sym_hide_DASHenv] = ACTIONS(1863), + [anon_sym_overlay] = ACTIONS(1863), + [anon_sym_as] = ACTIONS(1863), + [anon_sym_PLUS2] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1863), + [anon_sym_DOT] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1863), + [aux_sym__val_number_decimal_token1] = ACTIONS(1863), + [aux_sym__val_number_decimal_token2] = ACTIONS(1863), + [aux_sym__val_number_decimal_token3] = ACTIONS(1863), + [aux_sym__val_number_decimal_token4] = ACTIONS(1863), + [aux_sym__val_number_token1] = ACTIONS(1863), + [aux_sym__val_number_token2] = ACTIONS(1863), + [aux_sym__val_number_token3] = ACTIONS(1863), + [aux_sym__val_number_token4] = ACTIONS(1863), + [aux_sym__val_number_token5] = ACTIONS(1863), + [aux_sym__val_number_token6] = ACTIONS(1863), + [anon_sym_DQUOTE] = ACTIONS(1863), + [sym__str_single_quotes] = ACTIONS(1863), + [sym__str_back_ticks] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1863), + [sym__entry_separator] = ACTIONS(1865), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1000), + [sym_raw_string_begin] = ACTIONS(1865), }, - [398] = { - [sym_comment] = STATE(398), - [anon_sym_export] = ACTIONS(1002), - [anon_sym_alias] = ACTIONS(1002), - [anon_sym_let] = ACTIONS(1002), - [anon_sym_let_DASHenv] = ACTIONS(1002), - [anon_sym_mut] = ACTIONS(1002), - [anon_sym_const] = ACTIONS(1002), - [aux_sym_cmd_identifier_token1] = ACTIONS(1002), - [aux_sym_cmd_identifier_token2] = ACTIONS(1002), - [aux_sym_cmd_identifier_token3] = ACTIONS(1002), - [aux_sym_cmd_identifier_token4] = ACTIONS(1002), - [aux_sym_cmd_identifier_token5] = ACTIONS(1002), - [aux_sym_cmd_identifier_token6] = ACTIONS(1002), - [aux_sym_cmd_identifier_token7] = ACTIONS(1002), - [aux_sym_cmd_identifier_token8] = ACTIONS(1002), - [aux_sym_cmd_identifier_token9] = ACTIONS(1002), - [aux_sym_cmd_identifier_token10] = ACTIONS(1002), - [aux_sym_cmd_identifier_token11] = ACTIONS(1002), - [aux_sym_cmd_identifier_token12] = ACTIONS(1002), - [aux_sym_cmd_identifier_token13] = ACTIONS(1002), - [aux_sym_cmd_identifier_token14] = ACTIONS(1002), - [aux_sym_cmd_identifier_token15] = ACTIONS(1002), - [aux_sym_cmd_identifier_token16] = ACTIONS(1002), - [aux_sym_cmd_identifier_token17] = ACTIONS(1002), - [aux_sym_cmd_identifier_token18] = ACTIONS(1002), - [aux_sym_cmd_identifier_token19] = ACTIONS(1002), - [aux_sym_cmd_identifier_token20] = ACTIONS(1002), - [aux_sym_cmd_identifier_token21] = ACTIONS(1002), - [aux_sym_cmd_identifier_token22] = ACTIONS(1002), - [aux_sym_cmd_identifier_token23] = ACTIONS(1002), - [aux_sym_cmd_identifier_token24] = ACTIONS(1002), - [aux_sym_cmd_identifier_token25] = ACTIONS(1002), - [aux_sym_cmd_identifier_token26] = ACTIONS(1002), - [aux_sym_cmd_identifier_token27] = ACTIONS(1002), - [aux_sym_cmd_identifier_token28] = ACTIONS(1002), - [aux_sym_cmd_identifier_token29] = ACTIONS(1002), - [aux_sym_cmd_identifier_token30] = ACTIONS(1002), - [aux_sym_cmd_identifier_token31] = ACTIONS(1002), - [aux_sym_cmd_identifier_token32] = ACTIONS(1002), - [aux_sym_cmd_identifier_token33] = ACTIONS(1002), - [aux_sym_cmd_identifier_token34] = ACTIONS(1002), - [aux_sym_cmd_identifier_token35] = ACTIONS(1002), - [aux_sym_cmd_identifier_token36] = ACTIONS(1002), - [aux_sym_cmd_identifier_token37] = ACTIONS(1002), - [aux_sym_cmd_identifier_token38] = ACTIONS(1002), - [aux_sym_cmd_identifier_token39] = ACTIONS(1002), - [aux_sym_cmd_identifier_token40] = ACTIONS(1002), - [anon_sym_def] = ACTIONS(1002), - [anon_sym_export_DASHenv] = ACTIONS(1002), - [anon_sym_extern] = ACTIONS(1002), - [anon_sym_module] = ACTIONS(1002), - [anon_sym_use] = ACTIONS(1002), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_error] = ACTIONS(1002), - [anon_sym_DASH2] = ACTIONS(1002), - [anon_sym_break] = ACTIONS(1002), - [anon_sym_continue] = ACTIONS(1002), - [anon_sym_for] = ACTIONS(1002), - [anon_sym_in2] = ACTIONS(1002), - [anon_sym_loop] = ACTIONS(1002), - [anon_sym_make] = ACTIONS(1002), - [anon_sym_while] = ACTIONS(1002), - [anon_sym_do] = ACTIONS(1002), - [anon_sym_if] = ACTIONS(1002), - [anon_sym_else] = ACTIONS(1002), - [anon_sym_match] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_try] = ACTIONS(1002), - [anon_sym_catch] = ACTIONS(1002), - [anon_sym_return] = ACTIONS(1002), - [anon_sym_source] = ACTIONS(1002), - [anon_sym_source_DASHenv] = ACTIONS(1002), - [anon_sym_register] = ACTIONS(1002), - [anon_sym_hide] = ACTIONS(1002), - [anon_sym_hide_DASHenv] = ACTIONS(1002), - [anon_sym_overlay] = ACTIONS(1002), - [anon_sym_as] = ACTIONS(1002), - [anon_sym_QMARK2] = ACTIONS(1002), - [anon_sym_PLUS2] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1002), - [anon_sym_DOT_DOT2] = ACTIONS(1002), - [anon_sym_DOT] = ACTIONS(1002), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1002), - [aux_sym__val_number_decimal_token1] = ACTIONS(1002), - [aux_sym__val_number_decimal_token2] = ACTIONS(1002), - [aux_sym__val_number_decimal_token3] = ACTIONS(1002), - [aux_sym__val_number_decimal_token4] = ACTIONS(1002), - [aux_sym__val_number_token1] = ACTIONS(1002), - [aux_sym__val_number_token2] = ACTIONS(1002), - [aux_sym__val_number_token3] = ACTIONS(1002), - [aux_sym__val_number_token4] = ACTIONS(1002), - [aux_sym__val_number_token5] = ACTIONS(1002), - [aux_sym__val_number_token6] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym__str_single_quotes] = ACTIONS(1002), - [sym__str_back_ticks] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1002), - [sym__entry_separator] = ACTIONS(1004), + [404] = { + [sym_cell_path] = STATE(656), + [sym_path] = STATE(567), + [sym_comment] = STATE(404), + [aux_sym_cell_path_repeat1] = STATE(495), + [anon_sym_export] = ACTIONS(1867), + [anon_sym_alias] = ACTIONS(1867), + [anon_sym_let] = ACTIONS(1867), + [anon_sym_let_DASHenv] = ACTIONS(1867), + [anon_sym_mut] = ACTIONS(1867), + [anon_sym_const] = ACTIONS(1867), + [aux_sym_cmd_identifier_token1] = ACTIONS(1867), + [aux_sym_cmd_identifier_token2] = ACTIONS(1867), + [aux_sym_cmd_identifier_token3] = ACTIONS(1867), + [aux_sym_cmd_identifier_token4] = ACTIONS(1867), + [aux_sym_cmd_identifier_token5] = ACTIONS(1867), + [aux_sym_cmd_identifier_token6] = ACTIONS(1867), + [aux_sym_cmd_identifier_token7] = ACTIONS(1867), + [aux_sym_cmd_identifier_token8] = ACTIONS(1867), + [aux_sym_cmd_identifier_token9] = ACTIONS(1867), + [aux_sym_cmd_identifier_token10] = ACTIONS(1867), + [aux_sym_cmd_identifier_token11] = ACTIONS(1867), + [aux_sym_cmd_identifier_token12] = ACTIONS(1867), + [aux_sym_cmd_identifier_token13] = ACTIONS(1867), + [aux_sym_cmd_identifier_token14] = ACTIONS(1867), + [aux_sym_cmd_identifier_token15] = ACTIONS(1867), + [aux_sym_cmd_identifier_token16] = ACTIONS(1867), + [aux_sym_cmd_identifier_token17] = ACTIONS(1867), + [aux_sym_cmd_identifier_token18] = ACTIONS(1867), + [aux_sym_cmd_identifier_token19] = ACTIONS(1867), + [aux_sym_cmd_identifier_token20] = ACTIONS(1867), + [aux_sym_cmd_identifier_token21] = ACTIONS(1867), + [aux_sym_cmd_identifier_token22] = ACTIONS(1867), + [aux_sym_cmd_identifier_token23] = ACTIONS(1867), + [aux_sym_cmd_identifier_token24] = ACTIONS(1867), + [aux_sym_cmd_identifier_token25] = ACTIONS(1867), + [aux_sym_cmd_identifier_token26] = ACTIONS(1867), + [aux_sym_cmd_identifier_token27] = ACTIONS(1867), + [aux_sym_cmd_identifier_token28] = ACTIONS(1867), + [aux_sym_cmd_identifier_token29] = ACTIONS(1867), + [aux_sym_cmd_identifier_token30] = ACTIONS(1867), + [aux_sym_cmd_identifier_token31] = ACTIONS(1867), + [aux_sym_cmd_identifier_token32] = ACTIONS(1867), + [aux_sym_cmd_identifier_token33] = ACTIONS(1867), + [aux_sym_cmd_identifier_token34] = ACTIONS(1867), + [aux_sym_cmd_identifier_token35] = ACTIONS(1867), + [aux_sym_cmd_identifier_token36] = ACTIONS(1867), + [aux_sym_cmd_identifier_token37] = ACTIONS(1867), + [aux_sym_cmd_identifier_token38] = ACTIONS(1867), + [aux_sym_cmd_identifier_token39] = ACTIONS(1867), + [aux_sym_cmd_identifier_token40] = ACTIONS(1867), + [anon_sym_def] = ACTIONS(1867), + [anon_sym_export_DASHenv] = ACTIONS(1867), + [anon_sym_extern] = ACTIONS(1867), + [anon_sym_module] = ACTIONS(1867), + [anon_sym_use] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1867), + [anon_sym_error] = ACTIONS(1867), + [anon_sym_DASH2] = ACTIONS(1867), + [anon_sym_break] = ACTIONS(1867), + [anon_sym_continue] = ACTIONS(1867), + [anon_sym_for] = ACTIONS(1867), + [anon_sym_in2] = ACTIONS(1867), + [anon_sym_loop] = ACTIONS(1867), + [anon_sym_make] = ACTIONS(1867), + [anon_sym_while] = ACTIONS(1867), + [anon_sym_do] = ACTIONS(1867), + [anon_sym_if] = ACTIONS(1867), + [anon_sym_else] = ACTIONS(1867), + [anon_sym_match] = ACTIONS(1867), + [anon_sym_RBRACE] = ACTIONS(1867), + [anon_sym_try] = ACTIONS(1867), + [anon_sym_catch] = ACTIONS(1867), + [anon_sym_return] = ACTIONS(1867), + [anon_sym_source] = ACTIONS(1867), + [anon_sym_source_DASHenv] = ACTIONS(1867), + [anon_sym_register] = ACTIONS(1867), + [anon_sym_hide] = ACTIONS(1867), + [anon_sym_hide_DASHenv] = ACTIONS(1867), + [anon_sym_overlay] = ACTIONS(1867), + [anon_sym_as] = ACTIONS(1867), + [anon_sym_PLUS2] = ACTIONS(1867), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1867), + [anon_sym_DOT] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1867), + [aux_sym__val_number_decimal_token1] = ACTIONS(1867), + [aux_sym__val_number_decimal_token2] = ACTIONS(1867), + [aux_sym__val_number_decimal_token3] = ACTIONS(1867), + [aux_sym__val_number_decimal_token4] = ACTIONS(1867), + [aux_sym__val_number_token1] = ACTIONS(1867), + [aux_sym__val_number_token2] = ACTIONS(1867), + [aux_sym__val_number_token3] = ACTIONS(1867), + [aux_sym__val_number_token4] = ACTIONS(1867), + [aux_sym__val_number_token5] = ACTIONS(1867), + [aux_sym__val_number_token6] = ACTIONS(1867), + [anon_sym_DQUOTE] = ACTIONS(1867), + [sym__str_single_quotes] = ACTIONS(1867), + [sym__str_back_ticks] = ACTIONS(1867), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1867), + [sym__entry_separator] = ACTIONS(1869), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1004), + [sym_raw_string_begin] = ACTIONS(1869), }, - [399] = { - [sym_comment] = STATE(399), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [aux_sym_cmd_identifier_token1] = ACTIONS(990), - [aux_sym_cmd_identifier_token2] = ACTIONS(990), - [aux_sym_cmd_identifier_token3] = ACTIONS(990), - [aux_sym_cmd_identifier_token4] = ACTIONS(990), - [aux_sym_cmd_identifier_token5] = ACTIONS(990), - [aux_sym_cmd_identifier_token6] = ACTIONS(990), - [aux_sym_cmd_identifier_token7] = ACTIONS(990), - [aux_sym_cmd_identifier_token8] = ACTIONS(990), - [aux_sym_cmd_identifier_token9] = ACTIONS(990), - [aux_sym_cmd_identifier_token10] = ACTIONS(990), - [aux_sym_cmd_identifier_token11] = ACTIONS(990), - [aux_sym_cmd_identifier_token12] = ACTIONS(990), - [aux_sym_cmd_identifier_token13] = ACTIONS(990), - [aux_sym_cmd_identifier_token14] = ACTIONS(990), - [aux_sym_cmd_identifier_token15] = ACTIONS(990), - [aux_sym_cmd_identifier_token16] = ACTIONS(990), - [aux_sym_cmd_identifier_token17] = ACTIONS(990), - [aux_sym_cmd_identifier_token18] = ACTIONS(990), - [aux_sym_cmd_identifier_token19] = ACTIONS(990), - [aux_sym_cmd_identifier_token20] = ACTIONS(990), - [aux_sym_cmd_identifier_token21] = ACTIONS(990), - [aux_sym_cmd_identifier_token22] = ACTIONS(990), - [aux_sym_cmd_identifier_token23] = ACTIONS(990), - [aux_sym_cmd_identifier_token24] = ACTIONS(990), - [aux_sym_cmd_identifier_token25] = ACTIONS(990), - [aux_sym_cmd_identifier_token26] = ACTIONS(990), - [aux_sym_cmd_identifier_token27] = ACTIONS(990), - [aux_sym_cmd_identifier_token28] = ACTIONS(990), - [aux_sym_cmd_identifier_token29] = ACTIONS(990), - [aux_sym_cmd_identifier_token30] = ACTIONS(990), - [aux_sym_cmd_identifier_token31] = ACTIONS(990), - [aux_sym_cmd_identifier_token32] = ACTIONS(990), - [aux_sym_cmd_identifier_token33] = ACTIONS(990), - [aux_sym_cmd_identifier_token34] = ACTIONS(990), - [aux_sym_cmd_identifier_token35] = ACTIONS(990), - [aux_sym_cmd_identifier_token36] = ACTIONS(990), - [aux_sym_cmd_identifier_token37] = ACTIONS(990), - [aux_sym_cmd_identifier_token38] = ACTIONS(990), - [aux_sym_cmd_identifier_token39] = ACTIONS(990), - [aux_sym_cmd_identifier_token40] = ACTIONS(990), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_error] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in2] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_make] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_try] = ACTIONS(990), - [anon_sym_catch] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(990), - [anon_sym_PLUS2] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(990), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(990), - [aux_sym__val_number_decimal_token3] = ACTIONS(990), - [aux_sym__val_number_decimal_token4] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(990), - [aux_sym__val_number_token2] = ACTIONS(990), - [aux_sym__val_number_token3] = ACTIONS(990), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(990), - [sym__entry_separator] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(992), + [405] = { + [sym_comment] = STATE(405), + [anon_sym_export] = ACTIONS(1765), + [anon_sym_alias] = ACTIONS(1765), + [anon_sym_let] = ACTIONS(1765), + [anon_sym_let_DASHenv] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [aux_sym_cmd_identifier_token1] = ACTIONS(1765), + [aux_sym_cmd_identifier_token2] = ACTIONS(1767), + [aux_sym_cmd_identifier_token3] = ACTIONS(1767), + [aux_sym_cmd_identifier_token4] = ACTIONS(1767), + [aux_sym_cmd_identifier_token5] = ACTIONS(1767), + [aux_sym_cmd_identifier_token6] = ACTIONS(1767), + [aux_sym_cmd_identifier_token7] = ACTIONS(1767), + [aux_sym_cmd_identifier_token8] = ACTIONS(1765), + [aux_sym_cmd_identifier_token9] = ACTIONS(1765), + [aux_sym_cmd_identifier_token10] = ACTIONS(1767), + [aux_sym_cmd_identifier_token11] = ACTIONS(1767), + [aux_sym_cmd_identifier_token12] = ACTIONS(1765), + [aux_sym_cmd_identifier_token13] = ACTIONS(1765), + [aux_sym_cmd_identifier_token14] = ACTIONS(1765), + [aux_sym_cmd_identifier_token15] = ACTIONS(1765), + [aux_sym_cmd_identifier_token16] = ACTIONS(1767), + [aux_sym_cmd_identifier_token17] = ACTIONS(1767), + [aux_sym_cmd_identifier_token18] = ACTIONS(1767), + [aux_sym_cmd_identifier_token19] = ACTIONS(1767), + [aux_sym_cmd_identifier_token20] = ACTIONS(1767), + [aux_sym_cmd_identifier_token21] = ACTIONS(1767), + [aux_sym_cmd_identifier_token22] = ACTIONS(1767), + [aux_sym_cmd_identifier_token23] = ACTIONS(1767), + [aux_sym_cmd_identifier_token24] = ACTIONS(1767), + [aux_sym_cmd_identifier_token25] = ACTIONS(1767), + [aux_sym_cmd_identifier_token26] = ACTIONS(1767), + [aux_sym_cmd_identifier_token27] = ACTIONS(1767), + [aux_sym_cmd_identifier_token28] = ACTIONS(1767), + [aux_sym_cmd_identifier_token29] = ACTIONS(1767), + [aux_sym_cmd_identifier_token30] = ACTIONS(1767), + [aux_sym_cmd_identifier_token31] = ACTIONS(1767), + [aux_sym_cmd_identifier_token32] = ACTIONS(1767), + [aux_sym_cmd_identifier_token33] = ACTIONS(1767), + [aux_sym_cmd_identifier_token34] = ACTIONS(1765), + [aux_sym_cmd_identifier_token35] = ACTIONS(1767), + [aux_sym_cmd_identifier_token36] = ACTIONS(1767), + [aux_sym_cmd_identifier_token37] = ACTIONS(1767), + [aux_sym_cmd_identifier_token38] = ACTIONS(1765), + [aux_sym_cmd_identifier_token39] = ACTIONS(1767), + [aux_sym_cmd_identifier_token40] = ACTIONS(1767), + [anon_sym_def] = ACTIONS(1765), + [anon_sym_export_DASHenv] = ACTIONS(1765), + [anon_sym_extern] = ACTIONS(1765), + [anon_sym_module] = ACTIONS(1765), + [anon_sym_use] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_DOLLAR] = ACTIONS(1767), + [anon_sym_error] = ACTIONS(1765), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_in2] = ACTIONS(1765), + [anon_sym_loop] = ACTIONS(1765), + [anon_sym_make] = ACTIONS(1765), + [anon_sym_while] = ACTIONS(1765), + [anon_sym_do] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_else] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_try] = ACTIONS(1765), + [anon_sym_catch] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_source] = ACTIONS(1765), + [anon_sym_source_DASHenv] = ACTIONS(1765), + [anon_sym_register] = ACTIONS(1765), + [anon_sym_hide] = ACTIONS(1765), + [anon_sym_hide_DASHenv] = ACTIONS(1765), + [anon_sym_overlay] = ACTIONS(1765), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1767), + [anon_sym_PLUS2] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), + [anon_sym_DOT_DOT2] = ACTIONS(1765), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1765), + [aux_sym__val_number_token5] = ACTIONS(1765), + [aux_sym__val_number_token6] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1767), }, - [400] = { - [sym_comment] = STATE(400), + [406] = { + [sym_comment] = STATE(406), [anon_sym_export] = ACTIONS(1010), [anon_sym_alias] = ACTIONS(1010), [anon_sym_let] = ACTIONS(1010), @@ -119457,11 +120402,1051 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1012), }, - [401] = { - [sym_cell_path] = STATE(616), - [sym_path] = STATE(569), - [sym_comment] = STATE(401), - [aux_sym_cell_path_repeat1] = STATE(458), + [407] = { + [sym_cell_path] = STATE(638), + [sym_path] = STATE(567), + [sym_comment] = STATE(407), + [aux_sym_cell_path_repeat1] = STATE(495), + [anon_sym_export] = ACTIONS(1871), + [anon_sym_alias] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1871), + [anon_sym_let_DASHenv] = ACTIONS(1871), + [anon_sym_mut] = ACTIONS(1871), + [anon_sym_const] = ACTIONS(1871), + [aux_sym_cmd_identifier_token1] = ACTIONS(1871), + [aux_sym_cmd_identifier_token2] = ACTIONS(1871), + [aux_sym_cmd_identifier_token3] = ACTIONS(1871), + [aux_sym_cmd_identifier_token4] = ACTIONS(1871), + [aux_sym_cmd_identifier_token5] = ACTIONS(1871), + [aux_sym_cmd_identifier_token6] = ACTIONS(1871), + [aux_sym_cmd_identifier_token7] = ACTIONS(1871), + [aux_sym_cmd_identifier_token8] = ACTIONS(1871), + [aux_sym_cmd_identifier_token9] = ACTIONS(1871), + [aux_sym_cmd_identifier_token10] = ACTIONS(1871), + [aux_sym_cmd_identifier_token11] = ACTIONS(1871), + [aux_sym_cmd_identifier_token12] = ACTIONS(1871), + [aux_sym_cmd_identifier_token13] = ACTIONS(1871), + [aux_sym_cmd_identifier_token14] = ACTIONS(1871), + [aux_sym_cmd_identifier_token15] = ACTIONS(1871), + [aux_sym_cmd_identifier_token16] = ACTIONS(1871), + [aux_sym_cmd_identifier_token17] = ACTIONS(1871), + [aux_sym_cmd_identifier_token18] = ACTIONS(1871), + [aux_sym_cmd_identifier_token19] = ACTIONS(1871), + [aux_sym_cmd_identifier_token20] = ACTIONS(1871), + [aux_sym_cmd_identifier_token21] = ACTIONS(1871), + [aux_sym_cmd_identifier_token22] = ACTIONS(1871), + [aux_sym_cmd_identifier_token23] = ACTIONS(1871), + [aux_sym_cmd_identifier_token24] = ACTIONS(1871), + [aux_sym_cmd_identifier_token25] = ACTIONS(1871), + [aux_sym_cmd_identifier_token26] = ACTIONS(1871), + [aux_sym_cmd_identifier_token27] = ACTIONS(1871), + [aux_sym_cmd_identifier_token28] = ACTIONS(1871), + [aux_sym_cmd_identifier_token29] = ACTIONS(1871), + [aux_sym_cmd_identifier_token30] = ACTIONS(1871), + [aux_sym_cmd_identifier_token31] = ACTIONS(1871), + [aux_sym_cmd_identifier_token32] = ACTIONS(1871), + [aux_sym_cmd_identifier_token33] = ACTIONS(1871), + [aux_sym_cmd_identifier_token34] = ACTIONS(1871), + [aux_sym_cmd_identifier_token35] = ACTIONS(1871), + [aux_sym_cmd_identifier_token36] = ACTIONS(1871), + [aux_sym_cmd_identifier_token37] = ACTIONS(1871), + [aux_sym_cmd_identifier_token38] = ACTIONS(1871), + [aux_sym_cmd_identifier_token39] = ACTIONS(1871), + [aux_sym_cmd_identifier_token40] = ACTIONS(1871), + [anon_sym_def] = ACTIONS(1871), + [anon_sym_export_DASHenv] = ACTIONS(1871), + [anon_sym_extern] = ACTIONS(1871), + [anon_sym_module] = ACTIONS(1871), + [anon_sym_use] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_DOLLAR] = ACTIONS(1871), + [anon_sym_error] = ACTIONS(1871), + [anon_sym_DASH2] = ACTIONS(1871), + [anon_sym_break] = ACTIONS(1871), + [anon_sym_continue] = ACTIONS(1871), + [anon_sym_for] = ACTIONS(1871), + [anon_sym_in2] = ACTIONS(1871), + [anon_sym_loop] = ACTIONS(1871), + [anon_sym_make] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_if] = ACTIONS(1871), + [anon_sym_else] = ACTIONS(1871), + [anon_sym_match] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_try] = ACTIONS(1871), + [anon_sym_catch] = ACTIONS(1871), + [anon_sym_return] = ACTIONS(1871), + [anon_sym_source] = ACTIONS(1871), + [anon_sym_source_DASHenv] = ACTIONS(1871), + [anon_sym_register] = ACTIONS(1871), + [anon_sym_hide] = ACTIONS(1871), + [anon_sym_hide_DASHenv] = ACTIONS(1871), + [anon_sym_overlay] = ACTIONS(1871), + [anon_sym_as] = ACTIONS(1871), + [anon_sym_PLUS2] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1871), + [aux_sym__val_number_decimal_token1] = ACTIONS(1871), + [aux_sym__val_number_decimal_token2] = ACTIONS(1871), + [aux_sym__val_number_decimal_token3] = ACTIONS(1871), + [aux_sym__val_number_decimal_token4] = ACTIONS(1871), + [aux_sym__val_number_token1] = ACTIONS(1871), + [aux_sym__val_number_token2] = ACTIONS(1871), + [aux_sym__val_number_token3] = ACTIONS(1871), + [aux_sym__val_number_token4] = ACTIONS(1871), + [aux_sym__val_number_token5] = ACTIONS(1871), + [aux_sym__val_number_token6] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [sym__str_single_quotes] = ACTIONS(1871), + [sym__str_back_ticks] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1871), + [sym__entry_separator] = ACTIONS(1873), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1873), + }, + [408] = { + [sym_comment] = STATE(408), + [anon_sym_export] = ACTIONS(1820), + [anon_sym_alias] = ACTIONS(1820), + [anon_sym_let] = ACTIONS(1820), + [anon_sym_let_DASHenv] = ACTIONS(1820), + [anon_sym_mut] = ACTIONS(1820), + [anon_sym_const] = ACTIONS(1820), + [aux_sym_cmd_identifier_token1] = ACTIONS(1820), + [aux_sym_cmd_identifier_token2] = ACTIONS(1828), + [aux_sym_cmd_identifier_token3] = ACTIONS(1828), + [aux_sym_cmd_identifier_token4] = ACTIONS(1828), + [aux_sym_cmd_identifier_token5] = ACTIONS(1828), + [aux_sym_cmd_identifier_token6] = ACTIONS(1828), + [aux_sym_cmd_identifier_token7] = ACTIONS(1828), + [aux_sym_cmd_identifier_token8] = ACTIONS(1820), + [aux_sym_cmd_identifier_token9] = ACTIONS(1820), + [aux_sym_cmd_identifier_token10] = ACTIONS(1828), + [aux_sym_cmd_identifier_token11] = ACTIONS(1828), + [aux_sym_cmd_identifier_token12] = ACTIONS(1820), + [aux_sym_cmd_identifier_token13] = ACTIONS(1820), + [aux_sym_cmd_identifier_token14] = ACTIONS(1820), + [aux_sym_cmd_identifier_token15] = ACTIONS(1820), + [aux_sym_cmd_identifier_token16] = ACTIONS(1828), + [aux_sym_cmd_identifier_token17] = ACTIONS(1828), + [aux_sym_cmd_identifier_token18] = ACTIONS(1828), + [aux_sym_cmd_identifier_token19] = ACTIONS(1828), + [aux_sym_cmd_identifier_token20] = ACTIONS(1828), + [aux_sym_cmd_identifier_token21] = ACTIONS(1828), + [aux_sym_cmd_identifier_token22] = ACTIONS(1828), + [aux_sym_cmd_identifier_token23] = ACTIONS(1828), + [aux_sym_cmd_identifier_token24] = ACTIONS(1828), + [aux_sym_cmd_identifier_token25] = ACTIONS(1828), + [aux_sym_cmd_identifier_token26] = ACTIONS(1828), + [aux_sym_cmd_identifier_token27] = ACTIONS(1828), + [aux_sym_cmd_identifier_token28] = ACTIONS(1828), + [aux_sym_cmd_identifier_token29] = ACTIONS(1828), + [aux_sym_cmd_identifier_token30] = ACTIONS(1828), + [aux_sym_cmd_identifier_token31] = ACTIONS(1828), + [aux_sym_cmd_identifier_token32] = ACTIONS(1828), + [aux_sym_cmd_identifier_token33] = ACTIONS(1828), + [aux_sym_cmd_identifier_token34] = ACTIONS(1820), + [aux_sym_cmd_identifier_token35] = ACTIONS(1828), + [aux_sym_cmd_identifier_token36] = ACTIONS(1828), + [aux_sym_cmd_identifier_token37] = ACTIONS(1828), + [aux_sym_cmd_identifier_token38] = ACTIONS(1820), + [aux_sym_cmd_identifier_token39] = ACTIONS(1828), + [aux_sym_cmd_identifier_token40] = ACTIONS(1828), + [anon_sym_def] = ACTIONS(1820), + [anon_sym_export_DASHenv] = ACTIONS(1820), + [anon_sym_extern] = ACTIONS(1820), + [anon_sym_module] = ACTIONS(1820), + [anon_sym_use] = ACTIONS(1820), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_error] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_break] = ACTIONS(1820), + [anon_sym_continue] = ACTIONS(1820), + [anon_sym_for] = ACTIONS(1820), + [anon_sym_in2] = ACTIONS(1820), + [anon_sym_loop] = ACTIONS(1820), + [anon_sym_make] = ACTIONS(1820), + [anon_sym_while] = ACTIONS(1820), + [anon_sym_do] = ACTIONS(1820), + [anon_sym_if] = ACTIONS(1820), + [anon_sym_else] = ACTIONS(1820), + [anon_sym_match] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_try] = ACTIONS(1820), + [anon_sym_catch] = ACTIONS(1820), + [anon_sym_return] = ACTIONS(1820), + [anon_sym_source] = ACTIONS(1820), + [anon_sym_source_DASHenv] = ACTIONS(1820), + [anon_sym_register] = ACTIONS(1820), + [anon_sym_hide] = ACTIONS(1820), + [anon_sym_hide_DASHenv] = ACTIONS(1820), + [anon_sym_overlay] = ACTIONS(1820), + [anon_sym_as] = ACTIONS(1820), + [anon_sym_LPAREN2] = ACTIONS(1822), + [anon_sym_PLUS2] = ACTIONS(1820), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1828), + [anon_sym_DOT_DOT2] = ACTIONS(1875), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1877), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1828), + [aux_sym__val_number_decimal_token1] = ACTIONS(1820), + [aux_sym__val_number_decimal_token2] = ACTIONS(1828), + [aux_sym__val_number_decimal_token3] = ACTIONS(1828), + [aux_sym__val_number_decimal_token4] = ACTIONS(1828), + [aux_sym__val_number_token1] = ACTIONS(1828), + [aux_sym__val_number_token2] = ACTIONS(1828), + [aux_sym__val_number_token3] = ACTIONS(1828), + [aux_sym__val_number_token4] = ACTIONS(1820), + [aux_sym__val_number_token5] = ACTIONS(1820), + [aux_sym__val_number_token6] = ACTIONS(1820), + [anon_sym_DQUOTE] = ACTIONS(1828), + [sym__str_single_quotes] = ACTIONS(1828), + [sym__str_back_ticks] = ACTIONS(1828), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1828), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1559), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1828), + }, + [409] = { + [sym_cell_path] = STATE(682), + [sym_path] = STATE(567), + [sym_comment] = STATE(409), + [aux_sym_cell_path_repeat1] = STATE(495), + [anon_sym_export] = ACTIONS(1879), + [anon_sym_alias] = ACTIONS(1879), + [anon_sym_let] = ACTIONS(1879), + [anon_sym_let_DASHenv] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [aux_sym_cmd_identifier_token1] = ACTIONS(1879), + [aux_sym_cmd_identifier_token2] = ACTIONS(1879), + [aux_sym_cmd_identifier_token3] = ACTIONS(1879), + [aux_sym_cmd_identifier_token4] = ACTIONS(1879), + [aux_sym_cmd_identifier_token5] = ACTIONS(1879), + [aux_sym_cmd_identifier_token6] = ACTIONS(1879), + [aux_sym_cmd_identifier_token7] = ACTIONS(1879), + [aux_sym_cmd_identifier_token8] = ACTIONS(1879), + [aux_sym_cmd_identifier_token9] = ACTIONS(1879), + [aux_sym_cmd_identifier_token10] = ACTIONS(1879), + [aux_sym_cmd_identifier_token11] = ACTIONS(1879), + [aux_sym_cmd_identifier_token12] = ACTIONS(1879), + [aux_sym_cmd_identifier_token13] = ACTIONS(1879), + [aux_sym_cmd_identifier_token14] = ACTIONS(1879), + [aux_sym_cmd_identifier_token15] = ACTIONS(1879), + [aux_sym_cmd_identifier_token16] = ACTIONS(1879), + [aux_sym_cmd_identifier_token17] = ACTIONS(1879), + [aux_sym_cmd_identifier_token18] = ACTIONS(1879), + [aux_sym_cmd_identifier_token19] = ACTIONS(1879), + [aux_sym_cmd_identifier_token20] = ACTIONS(1879), + [aux_sym_cmd_identifier_token21] = ACTIONS(1879), + [aux_sym_cmd_identifier_token22] = ACTIONS(1879), + [aux_sym_cmd_identifier_token23] = ACTIONS(1879), + [aux_sym_cmd_identifier_token24] = ACTIONS(1879), + [aux_sym_cmd_identifier_token25] = ACTIONS(1879), + [aux_sym_cmd_identifier_token26] = ACTIONS(1879), + [aux_sym_cmd_identifier_token27] = ACTIONS(1879), + [aux_sym_cmd_identifier_token28] = ACTIONS(1879), + [aux_sym_cmd_identifier_token29] = ACTIONS(1879), + [aux_sym_cmd_identifier_token30] = ACTIONS(1879), + [aux_sym_cmd_identifier_token31] = ACTIONS(1879), + [aux_sym_cmd_identifier_token32] = ACTIONS(1879), + [aux_sym_cmd_identifier_token33] = ACTIONS(1879), + [aux_sym_cmd_identifier_token34] = ACTIONS(1879), + [aux_sym_cmd_identifier_token35] = ACTIONS(1879), + [aux_sym_cmd_identifier_token36] = ACTIONS(1879), + [aux_sym_cmd_identifier_token37] = ACTIONS(1879), + [aux_sym_cmd_identifier_token38] = ACTIONS(1879), + [aux_sym_cmd_identifier_token39] = ACTIONS(1879), + [aux_sym_cmd_identifier_token40] = ACTIONS(1879), + [anon_sym_def] = ACTIONS(1879), + [anon_sym_export_DASHenv] = ACTIONS(1879), + [anon_sym_extern] = ACTIONS(1879), + [anon_sym_module] = ACTIONS(1879), + [anon_sym_use] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1879), + [anon_sym_DOLLAR] = ACTIONS(1879), + [anon_sym_error] = ACTIONS(1879), + [anon_sym_DASH2] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_in2] = ACTIONS(1879), + [anon_sym_loop] = ACTIONS(1879), + [anon_sym_make] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_do] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_else] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_try] = ACTIONS(1879), + [anon_sym_catch] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_source] = ACTIONS(1879), + [anon_sym_source_DASHenv] = ACTIONS(1879), + [anon_sym_register] = ACTIONS(1879), + [anon_sym_hide] = ACTIONS(1879), + [anon_sym_hide_DASHenv] = ACTIONS(1879), + [anon_sym_overlay] = ACTIONS(1879), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_PLUS2] = ACTIONS(1879), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1879), + [anon_sym_DOT] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1879), + [aux_sym__val_number_decimal_token1] = ACTIONS(1879), + [aux_sym__val_number_decimal_token2] = ACTIONS(1879), + [aux_sym__val_number_decimal_token3] = ACTIONS(1879), + [aux_sym__val_number_decimal_token4] = ACTIONS(1879), + [aux_sym__val_number_token1] = ACTIONS(1879), + [aux_sym__val_number_token2] = ACTIONS(1879), + [aux_sym__val_number_token3] = ACTIONS(1879), + [aux_sym__val_number_token4] = ACTIONS(1879), + [aux_sym__val_number_token5] = ACTIONS(1879), + [aux_sym__val_number_token6] = ACTIONS(1879), + [anon_sym_DQUOTE] = ACTIONS(1879), + [sym__str_single_quotes] = ACTIONS(1879), + [sym__str_back_ticks] = ACTIONS(1879), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1879), + [sym__entry_separator] = ACTIONS(1881), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1881), + }, + [410] = { + [sym_cell_path] = STATE(612), + [sym_path] = STATE(567), + [sym_comment] = STATE(410), + [aux_sym_cell_path_repeat1] = STATE(495), + [anon_sym_export] = ACTIONS(1883), + [anon_sym_alias] = ACTIONS(1883), + [anon_sym_let] = ACTIONS(1883), + [anon_sym_let_DASHenv] = ACTIONS(1883), + [anon_sym_mut] = ACTIONS(1883), + [anon_sym_const] = ACTIONS(1883), + [aux_sym_cmd_identifier_token1] = ACTIONS(1883), + [aux_sym_cmd_identifier_token2] = ACTIONS(1883), + [aux_sym_cmd_identifier_token3] = ACTIONS(1883), + [aux_sym_cmd_identifier_token4] = ACTIONS(1883), + [aux_sym_cmd_identifier_token5] = ACTIONS(1883), + [aux_sym_cmd_identifier_token6] = ACTIONS(1883), + [aux_sym_cmd_identifier_token7] = ACTIONS(1883), + [aux_sym_cmd_identifier_token8] = ACTIONS(1883), + [aux_sym_cmd_identifier_token9] = ACTIONS(1883), + [aux_sym_cmd_identifier_token10] = ACTIONS(1883), + [aux_sym_cmd_identifier_token11] = ACTIONS(1883), + [aux_sym_cmd_identifier_token12] = ACTIONS(1883), + [aux_sym_cmd_identifier_token13] = ACTIONS(1883), + [aux_sym_cmd_identifier_token14] = ACTIONS(1883), + [aux_sym_cmd_identifier_token15] = ACTIONS(1883), + [aux_sym_cmd_identifier_token16] = ACTIONS(1883), + [aux_sym_cmd_identifier_token17] = ACTIONS(1883), + [aux_sym_cmd_identifier_token18] = ACTIONS(1883), + [aux_sym_cmd_identifier_token19] = ACTIONS(1883), + [aux_sym_cmd_identifier_token20] = ACTIONS(1883), + [aux_sym_cmd_identifier_token21] = ACTIONS(1883), + [aux_sym_cmd_identifier_token22] = ACTIONS(1883), + [aux_sym_cmd_identifier_token23] = ACTIONS(1883), + [aux_sym_cmd_identifier_token24] = ACTIONS(1883), + [aux_sym_cmd_identifier_token25] = ACTIONS(1883), + [aux_sym_cmd_identifier_token26] = ACTIONS(1883), + [aux_sym_cmd_identifier_token27] = ACTIONS(1883), + [aux_sym_cmd_identifier_token28] = ACTIONS(1883), + [aux_sym_cmd_identifier_token29] = ACTIONS(1883), + [aux_sym_cmd_identifier_token30] = ACTIONS(1883), + [aux_sym_cmd_identifier_token31] = ACTIONS(1883), + [aux_sym_cmd_identifier_token32] = ACTIONS(1883), + [aux_sym_cmd_identifier_token33] = ACTIONS(1883), + [aux_sym_cmd_identifier_token34] = ACTIONS(1883), + [aux_sym_cmd_identifier_token35] = ACTIONS(1883), + [aux_sym_cmd_identifier_token36] = ACTIONS(1883), + [aux_sym_cmd_identifier_token37] = ACTIONS(1883), + [aux_sym_cmd_identifier_token38] = ACTIONS(1883), + [aux_sym_cmd_identifier_token39] = ACTIONS(1883), + [aux_sym_cmd_identifier_token40] = ACTIONS(1883), + [anon_sym_def] = ACTIONS(1883), + [anon_sym_export_DASHenv] = ACTIONS(1883), + [anon_sym_extern] = ACTIONS(1883), + [anon_sym_module] = ACTIONS(1883), + [anon_sym_use] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_DOLLAR] = ACTIONS(1883), + [anon_sym_error] = ACTIONS(1883), + [anon_sym_DASH2] = ACTIONS(1883), + [anon_sym_break] = ACTIONS(1883), + [anon_sym_continue] = ACTIONS(1883), + [anon_sym_for] = ACTIONS(1883), + [anon_sym_in2] = ACTIONS(1883), + [anon_sym_loop] = ACTIONS(1883), + [anon_sym_make] = ACTIONS(1883), + [anon_sym_while] = ACTIONS(1883), + [anon_sym_do] = ACTIONS(1883), + [anon_sym_if] = ACTIONS(1883), + [anon_sym_else] = ACTIONS(1883), + [anon_sym_match] = ACTIONS(1883), + [anon_sym_RBRACE] = ACTIONS(1883), + [anon_sym_try] = ACTIONS(1883), + [anon_sym_catch] = ACTIONS(1883), + [anon_sym_return] = ACTIONS(1883), + [anon_sym_source] = ACTIONS(1883), + [anon_sym_source_DASHenv] = ACTIONS(1883), + [anon_sym_register] = ACTIONS(1883), + [anon_sym_hide] = ACTIONS(1883), + [anon_sym_hide_DASHenv] = ACTIONS(1883), + [anon_sym_overlay] = ACTIONS(1883), + [anon_sym_as] = ACTIONS(1883), + [anon_sym_PLUS2] = ACTIONS(1883), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1883), + [anon_sym_DOT] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1883), + [aux_sym__val_number_decimal_token1] = ACTIONS(1883), + [aux_sym__val_number_decimal_token2] = ACTIONS(1883), + [aux_sym__val_number_decimal_token3] = ACTIONS(1883), + [aux_sym__val_number_decimal_token4] = ACTIONS(1883), + [aux_sym__val_number_token1] = ACTIONS(1883), + [aux_sym__val_number_token2] = ACTIONS(1883), + [aux_sym__val_number_token3] = ACTIONS(1883), + [aux_sym__val_number_token4] = ACTIONS(1883), + [aux_sym__val_number_token5] = ACTIONS(1883), + [aux_sym__val_number_token6] = ACTIONS(1883), + [anon_sym_DQUOTE] = ACTIONS(1883), + [sym__str_single_quotes] = ACTIONS(1883), + [sym__str_back_ticks] = ACTIONS(1883), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1883), + [sym__entry_separator] = ACTIONS(1885), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1885), + }, + [411] = { + [sym_cell_path] = STATE(649), + [sym_path] = STATE(567), + [sym_comment] = STATE(411), + [aux_sym_cell_path_repeat1] = STATE(495), + [anon_sym_export] = ACTIONS(1887), + [anon_sym_alias] = ACTIONS(1887), + [anon_sym_let] = ACTIONS(1887), + [anon_sym_let_DASHenv] = ACTIONS(1887), + [anon_sym_mut] = ACTIONS(1887), + [anon_sym_const] = ACTIONS(1887), + [aux_sym_cmd_identifier_token1] = ACTIONS(1887), + [aux_sym_cmd_identifier_token2] = ACTIONS(1887), + [aux_sym_cmd_identifier_token3] = ACTIONS(1887), + [aux_sym_cmd_identifier_token4] = ACTIONS(1887), + [aux_sym_cmd_identifier_token5] = ACTIONS(1887), + [aux_sym_cmd_identifier_token6] = ACTIONS(1887), + [aux_sym_cmd_identifier_token7] = ACTIONS(1887), + [aux_sym_cmd_identifier_token8] = ACTIONS(1887), + [aux_sym_cmd_identifier_token9] = ACTIONS(1887), + [aux_sym_cmd_identifier_token10] = ACTIONS(1887), + [aux_sym_cmd_identifier_token11] = ACTIONS(1887), + [aux_sym_cmd_identifier_token12] = ACTIONS(1887), + [aux_sym_cmd_identifier_token13] = ACTIONS(1887), + [aux_sym_cmd_identifier_token14] = ACTIONS(1887), + [aux_sym_cmd_identifier_token15] = ACTIONS(1887), + [aux_sym_cmd_identifier_token16] = ACTIONS(1887), + [aux_sym_cmd_identifier_token17] = ACTIONS(1887), + [aux_sym_cmd_identifier_token18] = ACTIONS(1887), + [aux_sym_cmd_identifier_token19] = ACTIONS(1887), + [aux_sym_cmd_identifier_token20] = ACTIONS(1887), + [aux_sym_cmd_identifier_token21] = ACTIONS(1887), + [aux_sym_cmd_identifier_token22] = ACTIONS(1887), + [aux_sym_cmd_identifier_token23] = ACTIONS(1887), + [aux_sym_cmd_identifier_token24] = ACTIONS(1887), + [aux_sym_cmd_identifier_token25] = ACTIONS(1887), + [aux_sym_cmd_identifier_token26] = ACTIONS(1887), + [aux_sym_cmd_identifier_token27] = ACTIONS(1887), + [aux_sym_cmd_identifier_token28] = ACTIONS(1887), + [aux_sym_cmd_identifier_token29] = ACTIONS(1887), + [aux_sym_cmd_identifier_token30] = ACTIONS(1887), + [aux_sym_cmd_identifier_token31] = ACTIONS(1887), + [aux_sym_cmd_identifier_token32] = ACTIONS(1887), + [aux_sym_cmd_identifier_token33] = ACTIONS(1887), + [aux_sym_cmd_identifier_token34] = ACTIONS(1887), + [aux_sym_cmd_identifier_token35] = ACTIONS(1887), + [aux_sym_cmd_identifier_token36] = ACTIONS(1887), + [aux_sym_cmd_identifier_token37] = ACTIONS(1887), + [aux_sym_cmd_identifier_token38] = ACTIONS(1887), + [aux_sym_cmd_identifier_token39] = ACTIONS(1887), + [aux_sym_cmd_identifier_token40] = ACTIONS(1887), + [anon_sym_def] = ACTIONS(1887), + [anon_sym_export_DASHenv] = ACTIONS(1887), + [anon_sym_extern] = ACTIONS(1887), + [anon_sym_module] = ACTIONS(1887), + [anon_sym_use] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1887), + [anon_sym_DOLLAR] = ACTIONS(1887), + [anon_sym_error] = ACTIONS(1887), + [anon_sym_DASH2] = ACTIONS(1887), + [anon_sym_break] = ACTIONS(1887), + [anon_sym_continue] = ACTIONS(1887), + [anon_sym_for] = ACTIONS(1887), + [anon_sym_in2] = ACTIONS(1887), + [anon_sym_loop] = ACTIONS(1887), + [anon_sym_make] = ACTIONS(1887), + [anon_sym_while] = ACTIONS(1887), + [anon_sym_do] = ACTIONS(1887), + [anon_sym_if] = ACTIONS(1887), + [anon_sym_else] = ACTIONS(1887), + [anon_sym_match] = ACTIONS(1887), + [anon_sym_RBRACE] = ACTIONS(1887), + [anon_sym_try] = ACTIONS(1887), + [anon_sym_catch] = ACTIONS(1887), + [anon_sym_return] = ACTIONS(1887), + [anon_sym_source] = ACTIONS(1887), + [anon_sym_source_DASHenv] = ACTIONS(1887), + [anon_sym_register] = ACTIONS(1887), + [anon_sym_hide] = ACTIONS(1887), + [anon_sym_hide_DASHenv] = ACTIONS(1887), + [anon_sym_overlay] = ACTIONS(1887), + [anon_sym_as] = ACTIONS(1887), + [anon_sym_PLUS2] = ACTIONS(1887), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1887), + [anon_sym_DOT] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1887), + [aux_sym__val_number_decimal_token1] = ACTIONS(1887), + [aux_sym__val_number_decimal_token2] = ACTIONS(1887), + [aux_sym__val_number_decimal_token3] = ACTIONS(1887), + [aux_sym__val_number_decimal_token4] = ACTIONS(1887), + [aux_sym__val_number_token1] = ACTIONS(1887), + [aux_sym__val_number_token2] = ACTIONS(1887), + [aux_sym__val_number_token3] = ACTIONS(1887), + [aux_sym__val_number_token4] = ACTIONS(1887), + [aux_sym__val_number_token5] = ACTIONS(1887), + [aux_sym__val_number_token6] = ACTIONS(1887), + [anon_sym_DQUOTE] = ACTIONS(1887), + [sym__str_single_quotes] = ACTIONS(1887), + [sym__str_back_ticks] = ACTIONS(1887), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1887), + [sym__entry_separator] = ACTIONS(1889), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1889), + }, + [412] = { + [sym_cell_path] = STATE(661), + [sym_path] = STATE(567), + [sym_comment] = STATE(412), + [aux_sym_cell_path_repeat1] = STATE(495), + [anon_sym_export] = ACTIONS(1891), + [anon_sym_alias] = ACTIONS(1891), + [anon_sym_let] = ACTIONS(1891), + [anon_sym_let_DASHenv] = ACTIONS(1891), + [anon_sym_mut] = ACTIONS(1891), + [anon_sym_const] = ACTIONS(1891), + [aux_sym_cmd_identifier_token1] = ACTIONS(1891), + [aux_sym_cmd_identifier_token2] = ACTIONS(1891), + [aux_sym_cmd_identifier_token3] = ACTIONS(1891), + [aux_sym_cmd_identifier_token4] = ACTIONS(1891), + [aux_sym_cmd_identifier_token5] = ACTIONS(1891), + [aux_sym_cmd_identifier_token6] = ACTIONS(1891), + [aux_sym_cmd_identifier_token7] = ACTIONS(1891), + [aux_sym_cmd_identifier_token8] = ACTIONS(1891), + [aux_sym_cmd_identifier_token9] = ACTIONS(1891), + [aux_sym_cmd_identifier_token10] = ACTIONS(1891), + [aux_sym_cmd_identifier_token11] = ACTIONS(1891), + [aux_sym_cmd_identifier_token12] = ACTIONS(1891), + [aux_sym_cmd_identifier_token13] = ACTIONS(1891), + [aux_sym_cmd_identifier_token14] = ACTIONS(1891), + [aux_sym_cmd_identifier_token15] = ACTIONS(1891), + [aux_sym_cmd_identifier_token16] = ACTIONS(1891), + [aux_sym_cmd_identifier_token17] = ACTIONS(1891), + [aux_sym_cmd_identifier_token18] = ACTIONS(1891), + [aux_sym_cmd_identifier_token19] = ACTIONS(1891), + [aux_sym_cmd_identifier_token20] = ACTIONS(1891), + [aux_sym_cmd_identifier_token21] = ACTIONS(1891), + [aux_sym_cmd_identifier_token22] = ACTIONS(1891), + [aux_sym_cmd_identifier_token23] = ACTIONS(1891), + [aux_sym_cmd_identifier_token24] = ACTIONS(1891), + [aux_sym_cmd_identifier_token25] = ACTIONS(1891), + [aux_sym_cmd_identifier_token26] = ACTIONS(1891), + [aux_sym_cmd_identifier_token27] = ACTIONS(1891), + [aux_sym_cmd_identifier_token28] = ACTIONS(1891), + [aux_sym_cmd_identifier_token29] = ACTIONS(1891), + [aux_sym_cmd_identifier_token30] = ACTIONS(1891), + [aux_sym_cmd_identifier_token31] = ACTIONS(1891), + [aux_sym_cmd_identifier_token32] = ACTIONS(1891), + [aux_sym_cmd_identifier_token33] = ACTIONS(1891), + [aux_sym_cmd_identifier_token34] = ACTIONS(1891), + [aux_sym_cmd_identifier_token35] = ACTIONS(1891), + [aux_sym_cmd_identifier_token36] = ACTIONS(1891), + [aux_sym_cmd_identifier_token37] = ACTIONS(1891), + [aux_sym_cmd_identifier_token38] = ACTIONS(1891), + [aux_sym_cmd_identifier_token39] = ACTIONS(1891), + [aux_sym_cmd_identifier_token40] = ACTIONS(1891), + [anon_sym_def] = ACTIONS(1891), + [anon_sym_export_DASHenv] = ACTIONS(1891), + [anon_sym_extern] = ACTIONS(1891), + [anon_sym_module] = ACTIONS(1891), + [anon_sym_use] = ACTIONS(1891), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1891), + [anon_sym_error] = ACTIONS(1891), + [anon_sym_DASH2] = ACTIONS(1891), + [anon_sym_break] = ACTIONS(1891), + [anon_sym_continue] = ACTIONS(1891), + [anon_sym_for] = ACTIONS(1891), + [anon_sym_in2] = ACTIONS(1891), + [anon_sym_loop] = ACTIONS(1891), + [anon_sym_make] = ACTIONS(1891), + [anon_sym_while] = ACTIONS(1891), + [anon_sym_do] = ACTIONS(1891), + [anon_sym_if] = ACTIONS(1891), + [anon_sym_else] = ACTIONS(1891), + [anon_sym_match] = ACTIONS(1891), + [anon_sym_RBRACE] = ACTIONS(1891), + [anon_sym_try] = ACTIONS(1891), + [anon_sym_catch] = ACTIONS(1891), + [anon_sym_return] = ACTIONS(1891), + [anon_sym_source] = ACTIONS(1891), + [anon_sym_source_DASHenv] = ACTIONS(1891), + [anon_sym_register] = ACTIONS(1891), + [anon_sym_hide] = ACTIONS(1891), + [anon_sym_hide_DASHenv] = ACTIONS(1891), + [anon_sym_overlay] = ACTIONS(1891), + [anon_sym_as] = ACTIONS(1891), + [anon_sym_PLUS2] = ACTIONS(1891), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1891), + [anon_sym_DOT] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1891), + [aux_sym__val_number_decimal_token1] = ACTIONS(1891), + [aux_sym__val_number_decimal_token2] = ACTIONS(1891), + [aux_sym__val_number_decimal_token3] = ACTIONS(1891), + [aux_sym__val_number_decimal_token4] = ACTIONS(1891), + [aux_sym__val_number_token1] = ACTIONS(1891), + [aux_sym__val_number_token2] = ACTIONS(1891), + [aux_sym__val_number_token3] = ACTIONS(1891), + [aux_sym__val_number_token4] = ACTIONS(1891), + [aux_sym__val_number_token5] = ACTIONS(1891), + [aux_sym__val_number_token6] = ACTIONS(1891), + [anon_sym_DQUOTE] = ACTIONS(1891), + [sym__str_single_quotes] = ACTIONS(1891), + [sym__str_back_ticks] = ACTIONS(1891), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1891), + [sym__entry_separator] = ACTIONS(1893), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1893), + }, + [413] = { + [sym_comment] = STATE(413), + [anon_sym_export] = ACTIONS(1841), + [anon_sym_alias] = ACTIONS(1841), + [anon_sym_let] = ACTIONS(1841), + [anon_sym_let_DASHenv] = ACTIONS(1841), + [anon_sym_mut] = ACTIONS(1841), + [anon_sym_const] = ACTIONS(1841), + [aux_sym_cmd_identifier_token1] = ACTIONS(1841), + [aux_sym_cmd_identifier_token2] = ACTIONS(1843), + [aux_sym_cmd_identifier_token3] = ACTIONS(1843), + [aux_sym_cmd_identifier_token4] = ACTIONS(1843), + [aux_sym_cmd_identifier_token5] = ACTIONS(1843), + [aux_sym_cmd_identifier_token6] = ACTIONS(1843), + [aux_sym_cmd_identifier_token7] = ACTIONS(1843), + [aux_sym_cmd_identifier_token8] = ACTIONS(1841), + [aux_sym_cmd_identifier_token9] = ACTIONS(1841), + [aux_sym_cmd_identifier_token10] = ACTIONS(1843), + [aux_sym_cmd_identifier_token11] = ACTIONS(1843), + [aux_sym_cmd_identifier_token12] = ACTIONS(1841), + [aux_sym_cmd_identifier_token13] = ACTIONS(1841), + [aux_sym_cmd_identifier_token14] = ACTIONS(1841), + [aux_sym_cmd_identifier_token15] = ACTIONS(1841), + [aux_sym_cmd_identifier_token16] = ACTIONS(1843), + [aux_sym_cmd_identifier_token17] = ACTIONS(1843), + [aux_sym_cmd_identifier_token18] = ACTIONS(1843), + [aux_sym_cmd_identifier_token19] = ACTIONS(1843), + [aux_sym_cmd_identifier_token20] = ACTIONS(1843), + [aux_sym_cmd_identifier_token21] = ACTIONS(1843), + [aux_sym_cmd_identifier_token22] = ACTIONS(1843), + [aux_sym_cmd_identifier_token23] = ACTIONS(1843), + [aux_sym_cmd_identifier_token24] = ACTIONS(1843), + [aux_sym_cmd_identifier_token25] = ACTIONS(1843), + [aux_sym_cmd_identifier_token26] = ACTIONS(1843), + [aux_sym_cmd_identifier_token27] = ACTIONS(1843), + [aux_sym_cmd_identifier_token28] = ACTIONS(1843), + [aux_sym_cmd_identifier_token29] = ACTIONS(1843), + [aux_sym_cmd_identifier_token30] = ACTIONS(1843), + [aux_sym_cmd_identifier_token31] = ACTIONS(1843), + [aux_sym_cmd_identifier_token32] = ACTIONS(1843), + [aux_sym_cmd_identifier_token33] = ACTIONS(1843), + [aux_sym_cmd_identifier_token34] = ACTIONS(1841), + [aux_sym_cmd_identifier_token35] = ACTIONS(1843), + [aux_sym_cmd_identifier_token36] = ACTIONS(1843), + [aux_sym_cmd_identifier_token37] = ACTIONS(1843), + [aux_sym_cmd_identifier_token38] = ACTIONS(1841), + [aux_sym_cmd_identifier_token39] = ACTIONS(1843), + [aux_sym_cmd_identifier_token40] = ACTIONS(1843), + [anon_sym_def] = ACTIONS(1841), + [anon_sym_export_DASHenv] = ACTIONS(1841), + [anon_sym_extern] = ACTIONS(1841), + [anon_sym_module] = ACTIONS(1841), + [anon_sym_use] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [anon_sym_error] = ACTIONS(1841), + [anon_sym_DASH2] = ACTIONS(1841), + [anon_sym_break] = ACTIONS(1841), + [anon_sym_continue] = ACTIONS(1841), + [anon_sym_for] = ACTIONS(1841), + [anon_sym_in2] = ACTIONS(1841), + [anon_sym_loop] = ACTIONS(1841), + [anon_sym_make] = ACTIONS(1841), + [anon_sym_while] = ACTIONS(1841), + [anon_sym_do] = ACTIONS(1841), + [anon_sym_if] = ACTIONS(1841), + [anon_sym_else] = ACTIONS(1841), + [anon_sym_match] = ACTIONS(1841), + [anon_sym_RBRACE] = ACTIONS(1843), + [anon_sym_try] = ACTIONS(1841), + [anon_sym_catch] = ACTIONS(1841), + [anon_sym_return] = ACTIONS(1841), + [anon_sym_source] = ACTIONS(1841), + [anon_sym_source_DASHenv] = ACTIONS(1841), + [anon_sym_register] = ACTIONS(1841), + [anon_sym_hide] = ACTIONS(1841), + [anon_sym_hide_DASHenv] = ACTIONS(1841), + [anon_sym_overlay] = ACTIONS(1841), + [anon_sym_as] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(1843), + [anon_sym_PLUS2] = ACTIONS(1841), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1843), + [anon_sym_DOT_DOT2] = ACTIONS(1841), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1843), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1843), + [aux_sym__val_number_decimal_token1] = ACTIONS(1841), + [aux_sym__val_number_decimal_token2] = ACTIONS(1843), + [aux_sym__val_number_decimal_token3] = ACTIONS(1843), + [aux_sym__val_number_decimal_token4] = ACTIONS(1843), + [aux_sym__val_number_token1] = ACTIONS(1843), + [aux_sym__val_number_token2] = ACTIONS(1843), + [aux_sym__val_number_token3] = ACTIONS(1843), + [aux_sym__val_number_token4] = ACTIONS(1841), + [aux_sym__val_number_token5] = ACTIONS(1841), + [aux_sym__val_number_token6] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1843), + [sym__str_single_quotes] = ACTIONS(1843), + [sym__str_back_ticks] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1843), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1841), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1843), + }, + [414] = { + [sym_cell_path] = STATE(678), + [sym_path] = STATE(567), + [sym_comment] = STATE(414), + [aux_sym_cell_path_repeat1] = STATE(495), + [anon_sym_export] = ACTIONS(1895), + [anon_sym_alias] = ACTIONS(1895), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_let_DASHenv] = ACTIONS(1895), + [anon_sym_mut] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(1895), + [aux_sym_cmd_identifier_token1] = ACTIONS(1895), + [aux_sym_cmd_identifier_token2] = ACTIONS(1895), + [aux_sym_cmd_identifier_token3] = ACTIONS(1895), + [aux_sym_cmd_identifier_token4] = ACTIONS(1895), + [aux_sym_cmd_identifier_token5] = ACTIONS(1895), + [aux_sym_cmd_identifier_token6] = ACTIONS(1895), + [aux_sym_cmd_identifier_token7] = ACTIONS(1895), + [aux_sym_cmd_identifier_token8] = ACTIONS(1895), + [aux_sym_cmd_identifier_token9] = ACTIONS(1895), + [aux_sym_cmd_identifier_token10] = ACTIONS(1895), + [aux_sym_cmd_identifier_token11] = ACTIONS(1895), + [aux_sym_cmd_identifier_token12] = ACTIONS(1895), + [aux_sym_cmd_identifier_token13] = ACTIONS(1895), + [aux_sym_cmd_identifier_token14] = ACTIONS(1895), + [aux_sym_cmd_identifier_token15] = ACTIONS(1895), + [aux_sym_cmd_identifier_token16] = ACTIONS(1895), + [aux_sym_cmd_identifier_token17] = ACTIONS(1895), + [aux_sym_cmd_identifier_token18] = ACTIONS(1895), + [aux_sym_cmd_identifier_token19] = ACTIONS(1895), + [aux_sym_cmd_identifier_token20] = ACTIONS(1895), + [aux_sym_cmd_identifier_token21] = ACTIONS(1895), + [aux_sym_cmd_identifier_token22] = ACTIONS(1895), + [aux_sym_cmd_identifier_token23] = ACTIONS(1895), + [aux_sym_cmd_identifier_token24] = ACTIONS(1895), + [aux_sym_cmd_identifier_token25] = ACTIONS(1895), + [aux_sym_cmd_identifier_token26] = ACTIONS(1895), + [aux_sym_cmd_identifier_token27] = ACTIONS(1895), + [aux_sym_cmd_identifier_token28] = ACTIONS(1895), + [aux_sym_cmd_identifier_token29] = ACTIONS(1895), + [aux_sym_cmd_identifier_token30] = ACTIONS(1895), + [aux_sym_cmd_identifier_token31] = ACTIONS(1895), + [aux_sym_cmd_identifier_token32] = ACTIONS(1895), + [aux_sym_cmd_identifier_token33] = ACTIONS(1895), + [aux_sym_cmd_identifier_token34] = ACTIONS(1895), + [aux_sym_cmd_identifier_token35] = ACTIONS(1895), + [aux_sym_cmd_identifier_token36] = ACTIONS(1895), + [aux_sym_cmd_identifier_token37] = ACTIONS(1895), + [aux_sym_cmd_identifier_token38] = ACTIONS(1895), + [aux_sym_cmd_identifier_token39] = ACTIONS(1895), + [aux_sym_cmd_identifier_token40] = ACTIONS(1895), + [anon_sym_def] = ACTIONS(1895), + [anon_sym_export_DASHenv] = ACTIONS(1895), + [anon_sym_extern] = ACTIONS(1895), + [anon_sym_module] = ACTIONS(1895), + [anon_sym_use] = ACTIONS(1895), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(1895), + [anon_sym_error] = ACTIONS(1895), + [anon_sym_DASH2] = ACTIONS(1895), + [anon_sym_break] = ACTIONS(1895), + [anon_sym_continue] = ACTIONS(1895), + [anon_sym_for] = ACTIONS(1895), + [anon_sym_in2] = ACTIONS(1895), + [anon_sym_loop] = ACTIONS(1895), + [anon_sym_make] = ACTIONS(1895), + [anon_sym_while] = ACTIONS(1895), + [anon_sym_do] = ACTIONS(1895), + [anon_sym_if] = ACTIONS(1895), + [anon_sym_else] = ACTIONS(1895), + [anon_sym_match] = ACTIONS(1895), + [anon_sym_RBRACE] = ACTIONS(1895), + [anon_sym_try] = ACTIONS(1895), + [anon_sym_catch] = ACTIONS(1895), + [anon_sym_return] = ACTIONS(1895), + [anon_sym_source] = ACTIONS(1895), + [anon_sym_source_DASHenv] = ACTIONS(1895), + [anon_sym_register] = ACTIONS(1895), + [anon_sym_hide] = ACTIONS(1895), + [anon_sym_hide_DASHenv] = ACTIONS(1895), + [anon_sym_overlay] = ACTIONS(1895), + [anon_sym_as] = ACTIONS(1895), + [anon_sym_PLUS2] = ACTIONS(1895), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1895), + [anon_sym_DOT] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1895), + [aux_sym__val_number_decimal_token1] = ACTIONS(1895), + [aux_sym__val_number_decimal_token2] = ACTIONS(1895), + [aux_sym__val_number_decimal_token3] = ACTIONS(1895), + [aux_sym__val_number_decimal_token4] = ACTIONS(1895), + [aux_sym__val_number_token1] = ACTIONS(1895), + [aux_sym__val_number_token2] = ACTIONS(1895), + [aux_sym__val_number_token3] = ACTIONS(1895), + [aux_sym__val_number_token4] = ACTIONS(1895), + [aux_sym__val_number_token5] = ACTIONS(1895), + [aux_sym__val_number_token6] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(1895), + [sym__str_single_quotes] = ACTIONS(1895), + [sym__str_back_ticks] = ACTIONS(1895), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1895), + [sym__entry_separator] = ACTIONS(1897), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1897), + }, + [415] = { + [sym_cell_path] = STATE(670), + [sym_path] = STATE(567), + [sym_comment] = STATE(415), + [aux_sym_cell_path_repeat1] = STATE(495), + [anon_sym_export] = ACTIONS(1899), + [anon_sym_alias] = ACTIONS(1899), + [anon_sym_let] = ACTIONS(1899), + [anon_sym_let_DASHenv] = ACTIONS(1899), + [anon_sym_mut] = ACTIONS(1899), + [anon_sym_const] = ACTIONS(1899), + [aux_sym_cmd_identifier_token1] = ACTIONS(1899), + [aux_sym_cmd_identifier_token2] = ACTIONS(1899), + [aux_sym_cmd_identifier_token3] = ACTIONS(1899), + [aux_sym_cmd_identifier_token4] = ACTIONS(1899), + [aux_sym_cmd_identifier_token5] = ACTIONS(1899), + [aux_sym_cmd_identifier_token6] = ACTIONS(1899), + [aux_sym_cmd_identifier_token7] = ACTIONS(1899), + [aux_sym_cmd_identifier_token8] = ACTIONS(1899), + [aux_sym_cmd_identifier_token9] = ACTIONS(1899), + [aux_sym_cmd_identifier_token10] = ACTIONS(1899), + [aux_sym_cmd_identifier_token11] = ACTIONS(1899), + [aux_sym_cmd_identifier_token12] = ACTIONS(1899), + [aux_sym_cmd_identifier_token13] = ACTIONS(1899), + [aux_sym_cmd_identifier_token14] = ACTIONS(1899), + [aux_sym_cmd_identifier_token15] = ACTIONS(1899), + [aux_sym_cmd_identifier_token16] = ACTIONS(1899), + [aux_sym_cmd_identifier_token17] = ACTIONS(1899), + [aux_sym_cmd_identifier_token18] = ACTIONS(1899), + [aux_sym_cmd_identifier_token19] = ACTIONS(1899), + [aux_sym_cmd_identifier_token20] = ACTIONS(1899), + [aux_sym_cmd_identifier_token21] = ACTIONS(1899), + [aux_sym_cmd_identifier_token22] = ACTIONS(1899), + [aux_sym_cmd_identifier_token23] = ACTIONS(1899), + [aux_sym_cmd_identifier_token24] = ACTIONS(1899), + [aux_sym_cmd_identifier_token25] = ACTIONS(1899), + [aux_sym_cmd_identifier_token26] = ACTIONS(1899), + [aux_sym_cmd_identifier_token27] = ACTIONS(1899), + [aux_sym_cmd_identifier_token28] = ACTIONS(1899), + [aux_sym_cmd_identifier_token29] = ACTIONS(1899), + [aux_sym_cmd_identifier_token30] = ACTIONS(1899), + [aux_sym_cmd_identifier_token31] = ACTIONS(1899), + [aux_sym_cmd_identifier_token32] = ACTIONS(1899), + [aux_sym_cmd_identifier_token33] = ACTIONS(1899), + [aux_sym_cmd_identifier_token34] = ACTIONS(1899), + [aux_sym_cmd_identifier_token35] = ACTIONS(1899), + [aux_sym_cmd_identifier_token36] = ACTIONS(1899), + [aux_sym_cmd_identifier_token37] = ACTIONS(1899), + [aux_sym_cmd_identifier_token38] = ACTIONS(1899), + [aux_sym_cmd_identifier_token39] = ACTIONS(1899), + [aux_sym_cmd_identifier_token40] = ACTIONS(1899), + [anon_sym_def] = ACTIONS(1899), + [anon_sym_export_DASHenv] = ACTIONS(1899), + [anon_sym_extern] = ACTIONS(1899), + [anon_sym_module] = ACTIONS(1899), + [anon_sym_use] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym_DOLLAR] = ACTIONS(1899), + [anon_sym_error] = ACTIONS(1899), + [anon_sym_DASH2] = ACTIONS(1899), + [anon_sym_break] = ACTIONS(1899), + [anon_sym_continue] = ACTIONS(1899), + [anon_sym_for] = ACTIONS(1899), + [anon_sym_in2] = ACTIONS(1899), + [anon_sym_loop] = ACTIONS(1899), + [anon_sym_make] = ACTIONS(1899), + [anon_sym_while] = ACTIONS(1899), + [anon_sym_do] = ACTIONS(1899), + [anon_sym_if] = ACTIONS(1899), + [anon_sym_else] = ACTIONS(1899), + [anon_sym_match] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(1899), + [anon_sym_try] = ACTIONS(1899), + [anon_sym_catch] = ACTIONS(1899), + [anon_sym_return] = ACTIONS(1899), + [anon_sym_source] = ACTIONS(1899), + [anon_sym_source_DASHenv] = ACTIONS(1899), + [anon_sym_register] = ACTIONS(1899), + [anon_sym_hide] = ACTIONS(1899), + [anon_sym_hide_DASHenv] = ACTIONS(1899), + [anon_sym_overlay] = ACTIONS(1899), + [anon_sym_as] = ACTIONS(1899), + [anon_sym_PLUS2] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1899), + [anon_sym_DOT] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1899), + [aux_sym__val_number_decimal_token1] = ACTIONS(1899), + [aux_sym__val_number_decimal_token2] = ACTIONS(1899), + [aux_sym__val_number_decimal_token3] = ACTIONS(1899), + [aux_sym__val_number_decimal_token4] = ACTIONS(1899), + [aux_sym__val_number_token1] = ACTIONS(1899), + [aux_sym__val_number_token2] = ACTIONS(1899), + [aux_sym__val_number_token3] = ACTIONS(1899), + [aux_sym__val_number_token4] = ACTIONS(1899), + [aux_sym__val_number_token5] = ACTIONS(1899), + [aux_sym__val_number_token6] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1899), + [sym__str_single_quotes] = ACTIONS(1899), + [sym__str_back_ticks] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1899), + [sym__entry_separator] = ACTIONS(1901), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1901), + }, + [416] = { + [sym_comment] = STATE(416), + [anon_sym_export] = ACTIONS(1765), + [anon_sym_alias] = ACTIONS(1765), + [anon_sym_let] = ACTIONS(1765), + [anon_sym_let_DASHenv] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [aux_sym_cmd_identifier_token1] = ACTIONS(1765), + [aux_sym_cmd_identifier_token2] = ACTIONS(1767), + [aux_sym_cmd_identifier_token3] = ACTIONS(1767), + [aux_sym_cmd_identifier_token4] = ACTIONS(1767), + [aux_sym_cmd_identifier_token5] = ACTIONS(1767), + [aux_sym_cmd_identifier_token6] = ACTIONS(1767), + [aux_sym_cmd_identifier_token7] = ACTIONS(1767), + [aux_sym_cmd_identifier_token8] = ACTIONS(1765), + [aux_sym_cmd_identifier_token9] = ACTIONS(1765), + [aux_sym_cmd_identifier_token10] = ACTIONS(1767), + [aux_sym_cmd_identifier_token11] = ACTIONS(1767), + [aux_sym_cmd_identifier_token12] = ACTIONS(1765), + [aux_sym_cmd_identifier_token13] = ACTIONS(1765), + [aux_sym_cmd_identifier_token14] = ACTIONS(1765), + [aux_sym_cmd_identifier_token15] = ACTIONS(1765), + [aux_sym_cmd_identifier_token16] = ACTIONS(1767), + [aux_sym_cmd_identifier_token17] = ACTIONS(1767), + [aux_sym_cmd_identifier_token18] = ACTIONS(1767), + [aux_sym_cmd_identifier_token19] = ACTIONS(1767), + [aux_sym_cmd_identifier_token20] = ACTIONS(1767), + [aux_sym_cmd_identifier_token21] = ACTIONS(1767), + [aux_sym_cmd_identifier_token22] = ACTIONS(1767), + [aux_sym_cmd_identifier_token23] = ACTIONS(1767), + [aux_sym_cmd_identifier_token24] = ACTIONS(1767), + [aux_sym_cmd_identifier_token25] = ACTIONS(1767), + [aux_sym_cmd_identifier_token26] = ACTIONS(1767), + [aux_sym_cmd_identifier_token27] = ACTIONS(1767), + [aux_sym_cmd_identifier_token28] = ACTIONS(1767), + [aux_sym_cmd_identifier_token29] = ACTIONS(1767), + [aux_sym_cmd_identifier_token30] = ACTIONS(1767), + [aux_sym_cmd_identifier_token31] = ACTIONS(1767), + [aux_sym_cmd_identifier_token32] = ACTIONS(1767), + [aux_sym_cmd_identifier_token33] = ACTIONS(1767), + [aux_sym_cmd_identifier_token34] = ACTIONS(1765), + [aux_sym_cmd_identifier_token35] = ACTIONS(1767), + [aux_sym_cmd_identifier_token36] = ACTIONS(1767), + [aux_sym_cmd_identifier_token37] = ACTIONS(1767), + [aux_sym_cmd_identifier_token38] = ACTIONS(1765), + [aux_sym_cmd_identifier_token39] = ACTIONS(1767), + [aux_sym_cmd_identifier_token40] = ACTIONS(1767), + [anon_sym_def] = ACTIONS(1765), + [anon_sym_export_DASHenv] = ACTIONS(1765), + [anon_sym_extern] = ACTIONS(1765), + [anon_sym_module] = ACTIONS(1765), + [anon_sym_use] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1767), + [anon_sym_error] = ACTIONS(1765), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_in2] = ACTIONS(1765), + [anon_sym_loop] = ACTIONS(1765), + [anon_sym_make] = ACTIONS(1765), + [anon_sym_while] = ACTIONS(1765), + [anon_sym_do] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_else] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_try] = ACTIONS(1765), + [anon_sym_catch] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_source] = ACTIONS(1765), + [anon_sym_source_DASHenv] = ACTIONS(1765), + [anon_sym_register] = ACTIONS(1765), + [anon_sym_hide] = ACTIONS(1765), + [anon_sym_hide_DASHenv] = ACTIONS(1765), + [anon_sym_overlay] = ACTIONS(1765), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_PLUS2] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), + [anon_sym_DOT_DOT2] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), + [aux_sym__immediate_decimal_token2] = ACTIONS(1905), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1765), + [aux_sym__val_number_token5] = ACTIONS(1765), + [aux_sym__val_number_token6] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1767), + }, + [417] = { + [sym_cell_path] = STATE(681), + [sym_path] = STATE(567), + [sym_comment] = STATE(417), + [aux_sym_cell_path_repeat1] = STATE(495), [anon_sym_export] = ACTIONS(1907), [anon_sym_alias] = ACTIONS(1907), [anon_sym_let] = ACTIONS(1907), @@ -119541,7 +121526,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1907), [anon_sym_PLUS2] = ACTIONS(1907), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1907), - [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DOT] = ACTIONS(1849), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1907), [aux_sym__val_number_decimal_token1] = ACTIONS(1907), [aux_sym__val_number_decimal_token2] = ACTIONS(1907), @@ -119557,742 +121542,742 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(1907), [sym__str_back_ticks] = ACTIONS(1907), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1907), - [sym__entry_separator] = ACTIONS(1911), + [sym__entry_separator] = ACTIONS(1909), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1911), + [sym_raw_string_begin] = ACTIONS(1909), }, - [402] = { - [sym_cell_path] = STATE(619), - [sym_path] = STATE(569), - [sym_comment] = STATE(402), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1913), - [anon_sym_alias] = ACTIONS(1913), - [anon_sym_let] = ACTIONS(1913), - [anon_sym_let_DASHenv] = ACTIONS(1913), - [anon_sym_mut] = ACTIONS(1913), - [anon_sym_const] = ACTIONS(1913), - [aux_sym_cmd_identifier_token1] = ACTIONS(1913), - [aux_sym_cmd_identifier_token2] = ACTIONS(1913), - [aux_sym_cmd_identifier_token3] = ACTIONS(1913), - [aux_sym_cmd_identifier_token4] = ACTIONS(1913), - [aux_sym_cmd_identifier_token5] = ACTIONS(1913), - [aux_sym_cmd_identifier_token6] = ACTIONS(1913), - [aux_sym_cmd_identifier_token7] = ACTIONS(1913), - [aux_sym_cmd_identifier_token8] = ACTIONS(1913), - [aux_sym_cmd_identifier_token9] = ACTIONS(1913), - [aux_sym_cmd_identifier_token10] = ACTIONS(1913), - [aux_sym_cmd_identifier_token11] = ACTIONS(1913), - [aux_sym_cmd_identifier_token12] = ACTIONS(1913), - [aux_sym_cmd_identifier_token13] = ACTIONS(1913), - [aux_sym_cmd_identifier_token14] = ACTIONS(1913), - [aux_sym_cmd_identifier_token15] = ACTIONS(1913), - [aux_sym_cmd_identifier_token16] = ACTIONS(1913), - [aux_sym_cmd_identifier_token17] = ACTIONS(1913), - [aux_sym_cmd_identifier_token18] = ACTIONS(1913), - [aux_sym_cmd_identifier_token19] = ACTIONS(1913), - [aux_sym_cmd_identifier_token20] = ACTIONS(1913), - [aux_sym_cmd_identifier_token21] = ACTIONS(1913), - [aux_sym_cmd_identifier_token22] = ACTIONS(1913), - [aux_sym_cmd_identifier_token23] = ACTIONS(1913), - [aux_sym_cmd_identifier_token24] = ACTIONS(1913), - [aux_sym_cmd_identifier_token25] = ACTIONS(1913), - [aux_sym_cmd_identifier_token26] = ACTIONS(1913), - [aux_sym_cmd_identifier_token27] = ACTIONS(1913), - [aux_sym_cmd_identifier_token28] = ACTIONS(1913), - [aux_sym_cmd_identifier_token29] = ACTIONS(1913), - [aux_sym_cmd_identifier_token30] = ACTIONS(1913), - [aux_sym_cmd_identifier_token31] = ACTIONS(1913), - [aux_sym_cmd_identifier_token32] = ACTIONS(1913), - [aux_sym_cmd_identifier_token33] = ACTIONS(1913), - [aux_sym_cmd_identifier_token34] = ACTIONS(1913), - [aux_sym_cmd_identifier_token35] = ACTIONS(1913), - [aux_sym_cmd_identifier_token36] = ACTIONS(1913), - [aux_sym_cmd_identifier_token37] = ACTIONS(1913), - [aux_sym_cmd_identifier_token38] = ACTIONS(1913), - [aux_sym_cmd_identifier_token39] = ACTIONS(1913), - [aux_sym_cmd_identifier_token40] = ACTIONS(1913), - [anon_sym_def] = ACTIONS(1913), - [anon_sym_export_DASHenv] = ACTIONS(1913), - [anon_sym_extern] = ACTIONS(1913), - [anon_sym_module] = ACTIONS(1913), - [anon_sym_use] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_DOLLAR] = ACTIONS(1913), - [anon_sym_error] = ACTIONS(1913), - [anon_sym_DASH2] = ACTIONS(1913), - [anon_sym_break] = ACTIONS(1913), - [anon_sym_continue] = ACTIONS(1913), - [anon_sym_for] = ACTIONS(1913), - [anon_sym_in2] = ACTIONS(1913), - [anon_sym_loop] = ACTIONS(1913), - [anon_sym_make] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1913), - [anon_sym_do] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1913), - [anon_sym_else] = ACTIONS(1913), - [anon_sym_match] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_try] = ACTIONS(1913), - [anon_sym_catch] = ACTIONS(1913), - [anon_sym_return] = ACTIONS(1913), - [anon_sym_source] = ACTIONS(1913), - [anon_sym_source_DASHenv] = ACTIONS(1913), - [anon_sym_register] = ACTIONS(1913), - [anon_sym_hide] = ACTIONS(1913), - [anon_sym_hide_DASHenv] = ACTIONS(1913), - [anon_sym_overlay] = ACTIONS(1913), - [anon_sym_as] = ACTIONS(1913), - [anon_sym_PLUS2] = ACTIONS(1913), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1913), - [anon_sym_DOT] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1913), - [aux_sym__val_number_decimal_token1] = ACTIONS(1913), - [aux_sym__val_number_decimal_token2] = ACTIONS(1913), - [aux_sym__val_number_decimal_token3] = ACTIONS(1913), - [aux_sym__val_number_decimal_token4] = ACTIONS(1913), - [aux_sym__val_number_token1] = ACTIONS(1913), - [aux_sym__val_number_token2] = ACTIONS(1913), - [aux_sym__val_number_token3] = ACTIONS(1913), - [aux_sym__val_number_token4] = ACTIONS(1913), - [aux_sym__val_number_token5] = ACTIONS(1913), - [aux_sym__val_number_token6] = ACTIONS(1913), - [anon_sym_DQUOTE] = ACTIONS(1913), - [sym__str_single_quotes] = ACTIONS(1913), - [sym__str_back_ticks] = ACTIONS(1913), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1913), - [sym__entry_separator] = ACTIONS(1915), + [418] = { + [sym_cell_path] = STATE(683), + [sym_path] = STATE(567), + [sym_comment] = STATE(418), + [aux_sym_cell_path_repeat1] = STATE(495), + [anon_sym_export] = ACTIONS(1911), + [anon_sym_alias] = ACTIONS(1911), + [anon_sym_let] = ACTIONS(1911), + [anon_sym_let_DASHenv] = ACTIONS(1911), + [anon_sym_mut] = ACTIONS(1911), + [anon_sym_const] = ACTIONS(1911), + [aux_sym_cmd_identifier_token1] = ACTIONS(1911), + [aux_sym_cmd_identifier_token2] = ACTIONS(1911), + [aux_sym_cmd_identifier_token3] = ACTIONS(1911), + [aux_sym_cmd_identifier_token4] = ACTIONS(1911), + [aux_sym_cmd_identifier_token5] = ACTIONS(1911), + [aux_sym_cmd_identifier_token6] = ACTIONS(1911), + [aux_sym_cmd_identifier_token7] = ACTIONS(1911), + [aux_sym_cmd_identifier_token8] = ACTIONS(1911), + [aux_sym_cmd_identifier_token9] = ACTIONS(1911), + [aux_sym_cmd_identifier_token10] = ACTIONS(1911), + [aux_sym_cmd_identifier_token11] = ACTIONS(1911), + [aux_sym_cmd_identifier_token12] = ACTIONS(1911), + [aux_sym_cmd_identifier_token13] = ACTIONS(1911), + [aux_sym_cmd_identifier_token14] = ACTIONS(1911), + [aux_sym_cmd_identifier_token15] = ACTIONS(1911), + [aux_sym_cmd_identifier_token16] = ACTIONS(1911), + [aux_sym_cmd_identifier_token17] = ACTIONS(1911), + [aux_sym_cmd_identifier_token18] = ACTIONS(1911), + [aux_sym_cmd_identifier_token19] = ACTIONS(1911), + [aux_sym_cmd_identifier_token20] = ACTIONS(1911), + [aux_sym_cmd_identifier_token21] = ACTIONS(1911), + [aux_sym_cmd_identifier_token22] = ACTIONS(1911), + [aux_sym_cmd_identifier_token23] = ACTIONS(1911), + [aux_sym_cmd_identifier_token24] = ACTIONS(1911), + [aux_sym_cmd_identifier_token25] = ACTIONS(1911), + [aux_sym_cmd_identifier_token26] = ACTIONS(1911), + [aux_sym_cmd_identifier_token27] = ACTIONS(1911), + [aux_sym_cmd_identifier_token28] = ACTIONS(1911), + [aux_sym_cmd_identifier_token29] = ACTIONS(1911), + [aux_sym_cmd_identifier_token30] = ACTIONS(1911), + [aux_sym_cmd_identifier_token31] = ACTIONS(1911), + [aux_sym_cmd_identifier_token32] = ACTIONS(1911), + [aux_sym_cmd_identifier_token33] = ACTIONS(1911), + [aux_sym_cmd_identifier_token34] = ACTIONS(1911), + [aux_sym_cmd_identifier_token35] = ACTIONS(1911), + [aux_sym_cmd_identifier_token36] = ACTIONS(1911), + [aux_sym_cmd_identifier_token37] = ACTIONS(1911), + [aux_sym_cmd_identifier_token38] = ACTIONS(1911), + [aux_sym_cmd_identifier_token39] = ACTIONS(1911), + [aux_sym_cmd_identifier_token40] = ACTIONS(1911), + [anon_sym_def] = ACTIONS(1911), + [anon_sym_export_DASHenv] = ACTIONS(1911), + [anon_sym_extern] = ACTIONS(1911), + [anon_sym_module] = ACTIONS(1911), + [anon_sym_use] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1911), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_error] = ACTIONS(1911), + [anon_sym_DASH2] = ACTIONS(1911), + [anon_sym_break] = ACTIONS(1911), + [anon_sym_continue] = ACTIONS(1911), + [anon_sym_for] = ACTIONS(1911), + [anon_sym_in2] = ACTIONS(1911), + [anon_sym_loop] = ACTIONS(1911), + [anon_sym_make] = ACTIONS(1911), + [anon_sym_while] = ACTIONS(1911), + [anon_sym_do] = ACTIONS(1911), + [anon_sym_if] = ACTIONS(1911), + [anon_sym_else] = ACTIONS(1911), + [anon_sym_match] = ACTIONS(1911), + [anon_sym_RBRACE] = ACTIONS(1911), + [anon_sym_try] = ACTIONS(1911), + [anon_sym_catch] = ACTIONS(1911), + [anon_sym_return] = ACTIONS(1911), + [anon_sym_source] = ACTIONS(1911), + [anon_sym_source_DASHenv] = ACTIONS(1911), + [anon_sym_register] = ACTIONS(1911), + [anon_sym_hide] = ACTIONS(1911), + [anon_sym_hide_DASHenv] = ACTIONS(1911), + [anon_sym_overlay] = ACTIONS(1911), + [anon_sym_as] = ACTIONS(1911), + [anon_sym_PLUS2] = ACTIONS(1911), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1911), + [anon_sym_DOT] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1911), + [aux_sym__val_number_decimal_token1] = ACTIONS(1911), + [aux_sym__val_number_decimal_token2] = ACTIONS(1911), + [aux_sym__val_number_decimal_token3] = ACTIONS(1911), + [aux_sym__val_number_decimal_token4] = ACTIONS(1911), + [aux_sym__val_number_token1] = ACTIONS(1911), + [aux_sym__val_number_token2] = ACTIONS(1911), + [aux_sym__val_number_token3] = ACTIONS(1911), + [aux_sym__val_number_token4] = ACTIONS(1911), + [aux_sym__val_number_token5] = ACTIONS(1911), + [aux_sym__val_number_token6] = ACTIONS(1911), + [anon_sym_DQUOTE] = ACTIONS(1911), + [sym__str_single_quotes] = ACTIONS(1911), + [sym__str_back_ticks] = ACTIONS(1911), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1911), + [sym__entry_separator] = ACTIONS(1913), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1915), + [sym_raw_string_begin] = ACTIONS(1913), }, - [403] = { - [sym_comment] = STATE(403), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_alias] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_let_DASHenv] = ACTIONS(1755), - [anon_sym_mut] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1755), - [aux_sym_cmd_identifier_token3] = ACTIONS(1755), - [aux_sym_cmd_identifier_token4] = ACTIONS(1755), - [aux_sym_cmd_identifier_token5] = ACTIONS(1755), - [aux_sym_cmd_identifier_token6] = ACTIONS(1755), - [aux_sym_cmd_identifier_token7] = ACTIONS(1755), - [aux_sym_cmd_identifier_token8] = ACTIONS(1755), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1755), - [aux_sym_cmd_identifier_token11] = ACTIONS(1755), - [aux_sym_cmd_identifier_token12] = ACTIONS(1755), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1755), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1755), - [aux_sym_cmd_identifier_token17] = ACTIONS(1755), - [aux_sym_cmd_identifier_token18] = ACTIONS(1755), - [aux_sym_cmd_identifier_token19] = ACTIONS(1755), - [aux_sym_cmd_identifier_token20] = ACTIONS(1755), - [aux_sym_cmd_identifier_token21] = ACTIONS(1755), - [aux_sym_cmd_identifier_token22] = ACTIONS(1755), - [aux_sym_cmd_identifier_token23] = ACTIONS(1755), - [aux_sym_cmd_identifier_token24] = ACTIONS(1755), - [aux_sym_cmd_identifier_token25] = ACTIONS(1755), - [aux_sym_cmd_identifier_token26] = ACTIONS(1755), - [aux_sym_cmd_identifier_token27] = ACTIONS(1755), - [aux_sym_cmd_identifier_token28] = ACTIONS(1755), - [aux_sym_cmd_identifier_token29] = ACTIONS(1755), - [aux_sym_cmd_identifier_token30] = ACTIONS(1755), - [aux_sym_cmd_identifier_token31] = ACTIONS(1755), - [aux_sym_cmd_identifier_token32] = ACTIONS(1755), - [aux_sym_cmd_identifier_token33] = ACTIONS(1755), - [aux_sym_cmd_identifier_token34] = ACTIONS(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1755), - [aux_sym_cmd_identifier_token36] = ACTIONS(1755), - [aux_sym_cmd_identifier_token37] = ACTIONS(1755), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1755), - [aux_sym_cmd_identifier_token40] = ACTIONS(1755), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_export_DASHenv] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_make] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1755), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_source] = ACTIONS(1755), - [anon_sym_source_DASHenv] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_hide] = ACTIONS(1755), - [anon_sym_hide_DASHenv] = ACTIONS(1755), - [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), - [anon_sym_DOT] = ACTIONS(1917), - [aux_sym__immediate_decimal_token2] = ACTIONS(1919), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1755), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1755), - [aux_sym__val_number_decimal_token3] = ACTIONS(1755), - [aux_sym__val_number_decimal_token4] = ACTIONS(1755), - [aux_sym__val_number_token1] = ACTIONS(1755), - [aux_sym__val_number_token2] = ACTIONS(1755), - [aux_sym__val_number_token3] = ACTIONS(1755), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym__str_single_quotes] = ACTIONS(1755), - [sym__str_back_ticks] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1755), - [sym__entry_separator] = ACTIONS(1757), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), + [419] = { + [sym_cell_path] = STATE(686), + [sym_path] = STATE(567), + [sym_comment] = STATE(419), + [aux_sym_cell_path_repeat1] = STATE(495), + [anon_sym_export] = ACTIONS(1915), + [anon_sym_alias] = ACTIONS(1915), + [anon_sym_let] = ACTIONS(1915), + [anon_sym_let_DASHenv] = ACTIONS(1915), + [anon_sym_mut] = ACTIONS(1915), + [anon_sym_const] = ACTIONS(1915), + [aux_sym_cmd_identifier_token1] = ACTIONS(1915), + [aux_sym_cmd_identifier_token2] = ACTIONS(1915), + [aux_sym_cmd_identifier_token3] = ACTIONS(1915), + [aux_sym_cmd_identifier_token4] = ACTIONS(1915), + [aux_sym_cmd_identifier_token5] = ACTIONS(1915), + [aux_sym_cmd_identifier_token6] = ACTIONS(1915), + [aux_sym_cmd_identifier_token7] = ACTIONS(1915), + [aux_sym_cmd_identifier_token8] = ACTIONS(1915), + [aux_sym_cmd_identifier_token9] = ACTIONS(1915), + [aux_sym_cmd_identifier_token10] = ACTIONS(1915), + [aux_sym_cmd_identifier_token11] = ACTIONS(1915), + [aux_sym_cmd_identifier_token12] = ACTIONS(1915), + [aux_sym_cmd_identifier_token13] = ACTIONS(1915), + [aux_sym_cmd_identifier_token14] = ACTIONS(1915), + [aux_sym_cmd_identifier_token15] = ACTIONS(1915), + [aux_sym_cmd_identifier_token16] = ACTIONS(1915), + [aux_sym_cmd_identifier_token17] = ACTIONS(1915), + [aux_sym_cmd_identifier_token18] = ACTIONS(1915), + [aux_sym_cmd_identifier_token19] = ACTIONS(1915), + [aux_sym_cmd_identifier_token20] = ACTIONS(1915), + [aux_sym_cmd_identifier_token21] = ACTIONS(1915), + [aux_sym_cmd_identifier_token22] = ACTIONS(1915), + [aux_sym_cmd_identifier_token23] = ACTIONS(1915), + [aux_sym_cmd_identifier_token24] = ACTIONS(1915), + [aux_sym_cmd_identifier_token25] = ACTIONS(1915), + [aux_sym_cmd_identifier_token26] = ACTIONS(1915), + [aux_sym_cmd_identifier_token27] = ACTIONS(1915), + [aux_sym_cmd_identifier_token28] = ACTIONS(1915), + [aux_sym_cmd_identifier_token29] = ACTIONS(1915), + [aux_sym_cmd_identifier_token30] = ACTIONS(1915), + [aux_sym_cmd_identifier_token31] = ACTIONS(1915), + [aux_sym_cmd_identifier_token32] = ACTIONS(1915), + [aux_sym_cmd_identifier_token33] = ACTIONS(1915), + [aux_sym_cmd_identifier_token34] = ACTIONS(1915), + [aux_sym_cmd_identifier_token35] = ACTIONS(1915), + [aux_sym_cmd_identifier_token36] = ACTIONS(1915), + [aux_sym_cmd_identifier_token37] = ACTIONS(1915), + [aux_sym_cmd_identifier_token38] = ACTIONS(1915), + [aux_sym_cmd_identifier_token39] = ACTIONS(1915), + [aux_sym_cmd_identifier_token40] = ACTIONS(1915), + [anon_sym_def] = ACTIONS(1915), + [anon_sym_export_DASHenv] = ACTIONS(1915), + [anon_sym_extern] = ACTIONS(1915), + [anon_sym_module] = ACTIONS(1915), + [anon_sym_use] = ACTIONS(1915), + [anon_sym_LPAREN] = ACTIONS(1915), + [anon_sym_DOLLAR] = ACTIONS(1915), + [anon_sym_error] = ACTIONS(1915), + [anon_sym_DASH2] = ACTIONS(1915), + [anon_sym_break] = ACTIONS(1915), + [anon_sym_continue] = ACTIONS(1915), + [anon_sym_for] = ACTIONS(1915), + [anon_sym_in2] = ACTIONS(1915), + [anon_sym_loop] = ACTIONS(1915), + [anon_sym_make] = ACTIONS(1915), + [anon_sym_while] = ACTIONS(1915), + [anon_sym_do] = ACTIONS(1915), + [anon_sym_if] = ACTIONS(1915), + [anon_sym_else] = ACTIONS(1915), + [anon_sym_match] = ACTIONS(1915), + [anon_sym_RBRACE] = ACTIONS(1915), + [anon_sym_try] = ACTIONS(1915), + [anon_sym_catch] = ACTIONS(1915), + [anon_sym_return] = ACTIONS(1915), + [anon_sym_source] = ACTIONS(1915), + [anon_sym_source_DASHenv] = ACTIONS(1915), + [anon_sym_register] = ACTIONS(1915), + [anon_sym_hide] = ACTIONS(1915), + [anon_sym_hide_DASHenv] = ACTIONS(1915), + [anon_sym_overlay] = ACTIONS(1915), + [anon_sym_as] = ACTIONS(1915), + [anon_sym_PLUS2] = ACTIONS(1915), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1915), + [anon_sym_DOT] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1915), + [aux_sym__val_number_decimal_token1] = ACTIONS(1915), + [aux_sym__val_number_decimal_token2] = ACTIONS(1915), + [aux_sym__val_number_decimal_token3] = ACTIONS(1915), + [aux_sym__val_number_decimal_token4] = ACTIONS(1915), + [aux_sym__val_number_token1] = ACTIONS(1915), + [aux_sym__val_number_token2] = ACTIONS(1915), + [aux_sym__val_number_token3] = ACTIONS(1915), + [aux_sym__val_number_token4] = ACTIONS(1915), + [aux_sym__val_number_token5] = ACTIONS(1915), + [aux_sym__val_number_token6] = ACTIONS(1915), + [anon_sym_DQUOTE] = ACTIONS(1915), + [sym__str_single_quotes] = ACTIONS(1915), + [sym__str_back_ticks] = ACTIONS(1915), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1915), + [sym__entry_separator] = ACTIONS(1917), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1757), + [sym_raw_string_begin] = ACTIONS(1917), }, - [404] = { - [sym_expr_parenthesized] = STATE(4257), - [sym__spread_parenthesized] = STATE(4659), - [sym_val_range] = STATE(4661), - [sym__val_range] = STATE(7658), - [sym__val_range_with_end] = STATE(7546), - [sym__value] = STATE(4661), - [sym_val_nothing] = STATE(4616), - [sym_val_bool] = STATE(4396), - [sym__spread_variable] = STATE(4662), - [sym_val_variable] = STATE(4245), - [sym_val_number] = STATE(4616), - [sym__val_number_decimal] = STATE(4018), - [sym__val_number] = STATE(4634), - [sym_val_duration] = STATE(4616), - [sym_val_filesize] = STATE(4616), - [sym_val_binary] = STATE(4616), - [sym_val_string] = STATE(4616), - [sym__raw_str] = STATE(4465), - [sym__str_double_quotes] = STATE(4465), - [sym_val_interpolated] = STATE(4616), - [sym__inter_single_quotes] = STATE(4689), - [sym__inter_double_quotes] = STATE(4701), - [sym_val_list] = STATE(4616), - [sym__spread_list] = STATE(4659), - [sym_val_record] = STATE(4616), - [sym_val_table] = STATE(4616), - [sym_val_closure] = STATE(4616), - [sym__cmd_arg] = STATE(4876), - [sym_redirection] = STATE(4678), - [sym__flag] = STATE(4679), - [sym_short_flag] = STATE(4685), - [sym_long_flag] = STATE(4685), - [sym_unquoted] = STATE(4464), - [sym__unquoted_with_expr] = STATE(4692), - [sym__unquoted_anonymous_prefix] = STATE(7065), - [sym_comment] = STATE(404), - [sym__newline] = ACTIONS(1921), - [sym__space] = ACTIONS(1923), - [anon_sym_SEMI] = ACTIONS(1921), - [anon_sym_PIPE] = ACTIONS(1921), - [anon_sym_err_GT_PIPE] = ACTIONS(1921), - [anon_sym_out_GT_PIPE] = ACTIONS(1921), - [anon_sym_e_GT_PIPE] = ACTIONS(1921), - [anon_sym_o_GT_PIPE] = ACTIONS(1921), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1921), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1921), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1921), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1806), - [anon_sym_LPAREN] = ACTIONS(1808), - [anon_sym_RPAREN] = ACTIONS(1921), - [anon_sym_DOLLAR] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1812), - [anon_sym_DASH2] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1820), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1822), - [anon_sym_DOT_DOT_LT] = ACTIONS(1822), - [anon_sym_null] = ACTIONS(1824), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1828), - [aux_sym__val_number_decimal_token1] = ACTIONS(1830), - [aux_sym__val_number_decimal_token2] = ACTIONS(1830), - [aux_sym__val_number_decimal_token3] = ACTIONS(1832), - [aux_sym__val_number_decimal_token4] = ACTIONS(1834), - [aux_sym__val_number_token1] = ACTIONS(1836), - [aux_sym__val_number_token2] = ACTIONS(1836), - [aux_sym__val_number_token3] = ACTIONS(1836), - [aux_sym__val_number_token4] = ACTIONS(1838), - [aux_sym__val_number_token5] = ACTIONS(1838), - [aux_sym__val_number_token6] = ACTIONS(1838), - [anon_sym_0b] = ACTIONS(1840), - [anon_sym_0o] = ACTIONS(1842), - [anon_sym_0x] = ACTIONS(1842), - [sym_val_date] = ACTIONS(1844), - [anon_sym_DQUOTE] = ACTIONS(1846), - [sym__str_single_quotes] = ACTIONS(1848), - [sym__str_back_ticks] = ACTIONS(1848), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1852), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1854), - [anon_sym_err_GT] = ACTIONS(1856), - [anon_sym_out_GT] = ACTIONS(1856), - [anon_sym_e_GT] = ACTIONS(1856), - [anon_sym_o_GT] = ACTIONS(1856), - [anon_sym_err_PLUSout_GT] = ACTIONS(1856), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1856), - [anon_sym_o_PLUSe_GT] = ACTIONS(1856), - [anon_sym_e_PLUSo_GT] = ACTIONS(1856), - [anon_sym_err_GT_GT] = ACTIONS(1856), - [anon_sym_out_GT_GT] = ACTIONS(1856), - [anon_sym_e_GT_GT] = ACTIONS(1856), - [anon_sym_o_GT_GT] = ACTIONS(1856), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1856), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1856), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1856), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1856), - [aux_sym_unquoted_token1] = ACTIONS(1858), + [420] = { + [sym_cell_path] = STATE(611), + [sym_path] = STATE(567), + [sym_comment] = STATE(420), + [aux_sym_cell_path_repeat1] = STATE(495), + [anon_sym_export] = ACTIONS(1919), + [anon_sym_alias] = ACTIONS(1919), + [anon_sym_let] = ACTIONS(1919), + [anon_sym_let_DASHenv] = ACTIONS(1919), + [anon_sym_mut] = ACTIONS(1919), + [anon_sym_const] = ACTIONS(1919), + [aux_sym_cmd_identifier_token1] = ACTIONS(1919), + [aux_sym_cmd_identifier_token2] = ACTIONS(1919), + [aux_sym_cmd_identifier_token3] = ACTIONS(1919), + [aux_sym_cmd_identifier_token4] = ACTIONS(1919), + [aux_sym_cmd_identifier_token5] = ACTIONS(1919), + [aux_sym_cmd_identifier_token6] = ACTIONS(1919), + [aux_sym_cmd_identifier_token7] = ACTIONS(1919), + [aux_sym_cmd_identifier_token8] = ACTIONS(1919), + [aux_sym_cmd_identifier_token9] = ACTIONS(1919), + [aux_sym_cmd_identifier_token10] = ACTIONS(1919), + [aux_sym_cmd_identifier_token11] = ACTIONS(1919), + [aux_sym_cmd_identifier_token12] = ACTIONS(1919), + [aux_sym_cmd_identifier_token13] = ACTIONS(1919), + [aux_sym_cmd_identifier_token14] = ACTIONS(1919), + [aux_sym_cmd_identifier_token15] = ACTIONS(1919), + [aux_sym_cmd_identifier_token16] = ACTIONS(1919), + [aux_sym_cmd_identifier_token17] = ACTIONS(1919), + [aux_sym_cmd_identifier_token18] = ACTIONS(1919), + [aux_sym_cmd_identifier_token19] = ACTIONS(1919), + [aux_sym_cmd_identifier_token20] = ACTIONS(1919), + [aux_sym_cmd_identifier_token21] = ACTIONS(1919), + [aux_sym_cmd_identifier_token22] = ACTIONS(1919), + [aux_sym_cmd_identifier_token23] = ACTIONS(1919), + [aux_sym_cmd_identifier_token24] = ACTIONS(1919), + [aux_sym_cmd_identifier_token25] = ACTIONS(1919), + [aux_sym_cmd_identifier_token26] = ACTIONS(1919), + [aux_sym_cmd_identifier_token27] = ACTIONS(1919), + [aux_sym_cmd_identifier_token28] = ACTIONS(1919), + [aux_sym_cmd_identifier_token29] = ACTIONS(1919), + [aux_sym_cmd_identifier_token30] = ACTIONS(1919), + [aux_sym_cmd_identifier_token31] = ACTIONS(1919), + [aux_sym_cmd_identifier_token32] = ACTIONS(1919), + [aux_sym_cmd_identifier_token33] = ACTIONS(1919), + [aux_sym_cmd_identifier_token34] = ACTIONS(1919), + [aux_sym_cmd_identifier_token35] = ACTIONS(1919), + [aux_sym_cmd_identifier_token36] = ACTIONS(1919), + [aux_sym_cmd_identifier_token37] = ACTIONS(1919), + [aux_sym_cmd_identifier_token38] = ACTIONS(1919), + [aux_sym_cmd_identifier_token39] = ACTIONS(1919), + [aux_sym_cmd_identifier_token40] = ACTIONS(1919), + [anon_sym_def] = ACTIONS(1919), + [anon_sym_export_DASHenv] = ACTIONS(1919), + [anon_sym_extern] = ACTIONS(1919), + [anon_sym_module] = ACTIONS(1919), + [anon_sym_use] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_DOLLAR] = ACTIONS(1919), + [anon_sym_error] = ACTIONS(1919), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_break] = ACTIONS(1919), + [anon_sym_continue] = ACTIONS(1919), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_in2] = ACTIONS(1919), + [anon_sym_loop] = ACTIONS(1919), + [anon_sym_make] = ACTIONS(1919), + [anon_sym_while] = ACTIONS(1919), + [anon_sym_do] = ACTIONS(1919), + [anon_sym_if] = ACTIONS(1919), + [anon_sym_else] = ACTIONS(1919), + [anon_sym_match] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1919), + [anon_sym_try] = ACTIONS(1919), + [anon_sym_catch] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1919), + [anon_sym_source] = ACTIONS(1919), + [anon_sym_source_DASHenv] = ACTIONS(1919), + [anon_sym_register] = ACTIONS(1919), + [anon_sym_hide] = ACTIONS(1919), + [anon_sym_hide_DASHenv] = ACTIONS(1919), + [anon_sym_overlay] = ACTIONS(1919), + [anon_sym_as] = ACTIONS(1919), + [anon_sym_PLUS2] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1919), + [anon_sym_DOT] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1919), + [aux_sym__val_number_decimal_token1] = ACTIONS(1919), + [aux_sym__val_number_decimal_token2] = ACTIONS(1919), + [aux_sym__val_number_decimal_token3] = ACTIONS(1919), + [aux_sym__val_number_decimal_token4] = ACTIONS(1919), + [aux_sym__val_number_token1] = ACTIONS(1919), + [aux_sym__val_number_token2] = ACTIONS(1919), + [aux_sym__val_number_token3] = ACTIONS(1919), + [aux_sym__val_number_token4] = ACTIONS(1919), + [aux_sym__val_number_token5] = ACTIONS(1919), + [aux_sym__val_number_token6] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1919), + [sym__str_single_quotes] = ACTIONS(1919), + [sym__str_back_ticks] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1919), + [sym__entry_separator] = ACTIONS(1921), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1860), + [sym_raw_string_begin] = ACTIONS(1921), }, - [405] = { - [sym_cell_path] = STATE(683), - [sym_path] = STATE(569), - [sym_comment] = STATE(405), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1925), - [anon_sym_alias] = ACTIONS(1925), - [anon_sym_let] = ACTIONS(1925), - [anon_sym_let_DASHenv] = ACTIONS(1925), - [anon_sym_mut] = ACTIONS(1925), - [anon_sym_const] = ACTIONS(1925), - [aux_sym_cmd_identifier_token1] = ACTIONS(1925), - [aux_sym_cmd_identifier_token2] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1925), - [aux_sym_cmd_identifier_token4] = ACTIONS(1925), - [aux_sym_cmd_identifier_token5] = ACTIONS(1925), - [aux_sym_cmd_identifier_token6] = ACTIONS(1925), - [aux_sym_cmd_identifier_token7] = ACTIONS(1925), - [aux_sym_cmd_identifier_token8] = ACTIONS(1925), - [aux_sym_cmd_identifier_token9] = ACTIONS(1925), - [aux_sym_cmd_identifier_token10] = ACTIONS(1925), - [aux_sym_cmd_identifier_token11] = ACTIONS(1925), - [aux_sym_cmd_identifier_token12] = ACTIONS(1925), - [aux_sym_cmd_identifier_token13] = ACTIONS(1925), - [aux_sym_cmd_identifier_token14] = ACTIONS(1925), - [aux_sym_cmd_identifier_token15] = ACTIONS(1925), - [aux_sym_cmd_identifier_token16] = ACTIONS(1925), - [aux_sym_cmd_identifier_token17] = ACTIONS(1925), - [aux_sym_cmd_identifier_token18] = ACTIONS(1925), - [aux_sym_cmd_identifier_token19] = ACTIONS(1925), - [aux_sym_cmd_identifier_token20] = ACTIONS(1925), - [aux_sym_cmd_identifier_token21] = ACTIONS(1925), - [aux_sym_cmd_identifier_token22] = ACTIONS(1925), - [aux_sym_cmd_identifier_token23] = ACTIONS(1925), - [aux_sym_cmd_identifier_token24] = ACTIONS(1925), - [aux_sym_cmd_identifier_token25] = ACTIONS(1925), - [aux_sym_cmd_identifier_token26] = ACTIONS(1925), - [aux_sym_cmd_identifier_token27] = ACTIONS(1925), - [aux_sym_cmd_identifier_token28] = ACTIONS(1925), - [aux_sym_cmd_identifier_token29] = ACTIONS(1925), - [aux_sym_cmd_identifier_token30] = ACTIONS(1925), - [aux_sym_cmd_identifier_token31] = ACTIONS(1925), - [aux_sym_cmd_identifier_token32] = ACTIONS(1925), - [aux_sym_cmd_identifier_token33] = ACTIONS(1925), - [aux_sym_cmd_identifier_token34] = ACTIONS(1925), - [aux_sym_cmd_identifier_token35] = ACTIONS(1925), - [aux_sym_cmd_identifier_token36] = ACTIONS(1925), - [aux_sym_cmd_identifier_token37] = ACTIONS(1925), - [aux_sym_cmd_identifier_token38] = ACTIONS(1925), - [aux_sym_cmd_identifier_token39] = ACTIONS(1925), - [aux_sym_cmd_identifier_token40] = ACTIONS(1925), - [anon_sym_def] = ACTIONS(1925), - [anon_sym_export_DASHenv] = ACTIONS(1925), - [anon_sym_extern] = ACTIONS(1925), - [anon_sym_module] = ACTIONS(1925), - [anon_sym_use] = ACTIONS(1925), - [anon_sym_LPAREN] = ACTIONS(1925), - [anon_sym_DOLLAR] = ACTIONS(1925), - [anon_sym_error] = ACTIONS(1925), - [anon_sym_DASH2] = ACTIONS(1925), - [anon_sym_break] = ACTIONS(1925), - [anon_sym_continue] = ACTIONS(1925), - [anon_sym_for] = ACTIONS(1925), - [anon_sym_in2] = ACTIONS(1925), - [anon_sym_loop] = ACTIONS(1925), - [anon_sym_make] = ACTIONS(1925), - [anon_sym_while] = ACTIONS(1925), - [anon_sym_do] = ACTIONS(1925), - [anon_sym_if] = ACTIONS(1925), - [anon_sym_else] = ACTIONS(1925), - [anon_sym_match] = ACTIONS(1925), - [anon_sym_RBRACE] = ACTIONS(1925), - [anon_sym_try] = ACTIONS(1925), - [anon_sym_catch] = ACTIONS(1925), - [anon_sym_return] = ACTIONS(1925), - [anon_sym_source] = ACTIONS(1925), - [anon_sym_source_DASHenv] = ACTIONS(1925), - [anon_sym_register] = ACTIONS(1925), - [anon_sym_hide] = ACTIONS(1925), - [anon_sym_hide_DASHenv] = ACTIONS(1925), - [anon_sym_overlay] = ACTIONS(1925), - [anon_sym_as] = ACTIONS(1925), - [anon_sym_PLUS2] = ACTIONS(1925), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1925), - [anon_sym_DOT] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1925), - [aux_sym__val_number_decimal_token1] = ACTIONS(1925), - [aux_sym__val_number_decimal_token2] = ACTIONS(1925), - [aux_sym__val_number_decimal_token3] = ACTIONS(1925), - [aux_sym__val_number_decimal_token4] = ACTIONS(1925), - [aux_sym__val_number_token1] = ACTIONS(1925), - [aux_sym__val_number_token2] = ACTIONS(1925), - [aux_sym__val_number_token3] = ACTIONS(1925), - [aux_sym__val_number_token4] = ACTIONS(1925), - [aux_sym__val_number_token5] = ACTIONS(1925), - [aux_sym__val_number_token6] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1925), - [sym__str_single_quotes] = ACTIONS(1925), - [sym__str_back_ticks] = ACTIONS(1925), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1925), - [sym__entry_separator] = ACTIONS(1927), + [421] = { + [sym_comment] = STATE(421), + [anon_sym_export] = ACTIONS(1765), + [anon_sym_alias] = ACTIONS(1765), + [anon_sym_let] = ACTIONS(1765), + [anon_sym_let_DASHenv] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [aux_sym_cmd_identifier_token1] = ACTIONS(1765), + [aux_sym_cmd_identifier_token2] = ACTIONS(1765), + [aux_sym_cmd_identifier_token3] = ACTIONS(1765), + [aux_sym_cmd_identifier_token4] = ACTIONS(1765), + [aux_sym_cmd_identifier_token5] = ACTIONS(1765), + [aux_sym_cmd_identifier_token6] = ACTIONS(1765), + [aux_sym_cmd_identifier_token7] = ACTIONS(1765), + [aux_sym_cmd_identifier_token8] = ACTIONS(1765), + [aux_sym_cmd_identifier_token9] = ACTIONS(1765), + [aux_sym_cmd_identifier_token10] = ACTIONS(1765), + [aux_sym_cmd_identifier_token11] = ACTIONS(1765), + [aux_sym_cmd_identifier_token12] = ACTIONS(1765), + [aux_sym_cmd_identifier_token13] = ACTIONS(1765), + [aux_sym_cmd_identifier_token14] = ACTIONS(1765), + [aux_sym_cmd_identifier_token15] = ACTIONS(1765), + [aux_sym_cmd_identifier_token16] = ACTIONS(1765), + [aux_sym_cmd_identifier_token17] = ACTIONS(1765), + [aux_sym_cmd_identifier_token18] = ACTIONS(1765), + [aux_sym_cmd_identifier_token19] = ACTIONS(1765), + [aux_sym_cmd_identifier_token20] = ACTIONS(1765), + [aux_sym_cmd_identifier_token21] = ACTIONS(1765), + [aux_sym_cmd_identifier_token22] = ACTIONS(1765), + [aux_sym_cmd_identifier_token23] = ACTIONS(1765), + [aux_sym_cmd_identifier_token24] = ACTIONS(1765), + [aux_sym_cmd_identifier_token25] = ACTIONS(1765), + [aux_sym_cmd_identifier_token26] = ACTIONS(1765), + [aux_sym_cmd_identifier_token27] = ACTIONS(1765), + [aux_sym_cmd_identifier_token28] = ACTIONS(1765), + [aux_sym_cmd_identifier_token29] = ACTIONS(1765), + [aux_sym_cmd_identifier_token30] = ACTIONS(1765), + [aux_sym_cmd_identifier_token31] = ACTIONS(1765), + [aux_sym_cmd_identifier_token32] = ACTIONS(1765), + [aux_sym_cmd_identifier_token33] = ACTIONS(1765), + [aux_sym_cmd_identifier_token34] = ACTIONS(1765), + [aux_sym_cmd_identifier_token35] = ACTIONS(1765), + [aux_sym_cmd_identifier_token36] = ACTIONS(1765), + [aux_sym_cmd_identifier_token37] = ACTIONS(1765), + [aux_sym_cmd_identifier_token38] = ACTIONS(1765), + [aux_sym_cmd_identifier_token39] = ACTIONS(1765), + [aux_sym_cmd_identifier_token40] = ACTIONS(1765), + [anon_sym_def] = ACTIONS(1765), + [anon_sym_export_DASHenv] = ACTIONS(1765), + [anon_sym_extern] = ACTIONS(1765), + [anon_sym_module] = ACTIONS(1765), + [anon_sym_use] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_DOLLAR] = ACTIONS(1765), + [anon_sym_error] = ACTIONS(1765), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_in2] = ACTIONS(1765), + [anon_sym_loop] = ACTIONS(1765), + [anon_sym_make] = ACTIONS(1765), + [anon_sym_while] = ACTIONS(1765), + [anon_sym_do] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_else] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_try] = ACTIONS(1765), + [anon_sym_catch] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_source] = ACTIONS(1765), + [anon_sym_source_DASHenv] = ACTIONS(1765), + [anon_sym_register] = ACTIONS(1765), + [anon_sym_hide] = ACTIONS(1765), + [anon_sym_hide_DASHenv] = ACTIONS(1765), + [anon_sym_overlay] = ACTIONS(1765), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1767), + [anon_sym_PLUS2] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(1923), + [aux_sym__immediate_decimal_token2] = ACTIONS(1925), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1765), + [aux_sym__val_number_decimal_token3] = ACTIONS(1765), + [aux_sym__val_number_decimal_token4] = ACTIONS(1765), + [aux_sym__val_number_token1] = ACTIONS(1765), + [aux_sym__val_number_token2] = ACTIONS(1765), + [aux_sym__val_number_token3] = ACTIONS(1765), + [aux_sym__val_number_token4] = ACTIONS(1765), + [aux_sym__val_number_token5] = ACTIONS(1765), + [aux_sym__val_number_token6] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1765), + [sym__str_single_quotes] = ACTIONS(1765), + [sym__str_back_ticks] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), + [sym__entry_separator] = ACTIONS(1767), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1765), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1927), + [sym_raw_string_begin] = ACTIONS(1767), }, - [406] = { - [sym_comment] = STATE(406), - [anon_sym_export] = ACTIONS(1866), - [anon_sym_alias] = ACTIONS(1866), - [anon_sym_let] = ACTIONS(1866), - [anon_sym_let_DASHenv] = ACTIONS(1866), - [anon_sym_mut] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [aux_sym_cmd_identifier_token1] = ACTIONS(1866), - [aux_sym_cmd_identifier_token2] = ACTIONS(1874), - [aux_sym_cmd_identifier_token3] = ACTIONS(1874), - [aux_sym_cmd_identifier_token4] = ACTIONS(1874), - [aux_sym_cmd_identifier_token5] = ACTIONS(1874), - [aux_sym_cmd_identifier_token6] = ACTIONS(1874), - [aux_sym_cmd_identifier_token7] = ACTIONS(1874), - [aux_sym_cmd_identifier_token8] = ACTIONS(1866), - [aux_sym_cmd_identifier_token9] = ACTIONS(1866), - [aux_sym_cmd_identifier_token10] = ACTIONS(1874), - [aux_sym_cmd_identifier_token11] = ACTIONS(1874), - [aux_sym_cmd_identifier_token12] = ACTIONS(1866), - [aux_sym_cmd_identifier_token13] = ACTIONS(1866), - [aux_sym_cmd_identifier_token14] = ACTIONS(1866), - [aux_sym_cmd_identifier_token15] = ACTIONS(1866), - [aux_sym_cmd_identifier_token16] = ACTIONS(1874), - [aux_sym_cmd_identifier_token17] = ACTIONS(1874), - [aux_sym_cmd_identifier_token18] = ACTIONS(1874), - [aux_sym_cmd_identifier_token19] = ACTIONS(1874), - [aux_sym_cmd_identifier_token20] = ACTIONS(1874), - [aux_sym_cmd_identifier_token21] = ACTIONS(1874), - [aux_sym_cmd_identifier_token22] = ACTIONS(1874), - [aux_sym_cmd_identifier_token23] = ACTIONS(1874), - [aux_sym_cmd_identifier_token24] = ACTIONS(1874), - [aux_sym_cmd_identifier_token25] = ACTIONS(1874), - [aux_sym_cmd_identifier_token26] = ACTIONS(1874), - [aux_sym_cmd_identifier_token27] = ACTIONS(1874), - [aux_sym_cmd_identifier_token28] = ACTIONS(1874), - [aux_sym_cmd_identifier_token29] = ACTIONS(1874), - [aux_sym_cmd_identifier_token30] = ACTIONS(1874), - [aux_sym_cmd_identifier_token31] = ACTIONS(1874), - [aux_sym_cmd_identifier_token32] = ACTIONS(1874), - [aux_sym_cmd_identifier_token33] = ACTIONS(1874), - [aux_sym_cmd_identifier_token34] = ACTIONS(1866), - [aux_sym_cmd_identifier_token35] = ACTIONS(1874), - [aux_sym_cmd_identifier_token36] = ACTIONS(1874), - [aux_sym_cmd_identifier_token37] = ACTIONS(1874), - [aux_sym_cmd_identifier_token38] = ACTIONS(1866), - [aux_sym_cmd_identifier_token39] = ACTIONS(1874), - [aux_sym_cmd_identifier_token40] = ACTIONS(1874), - [anon_sym_def] = ACTIONS(1866), - [anon_sym_export_DASHenv] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym_module] = ACTIONS(1866), - [anon_sym_use] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1874), - [anon_sym_error] = ACTIONS(1866), - [anon_sym_DASH2] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_in2] = ACTIONS(1866), - [anon_sym_loop] = ACTIONS(1866), - [anon_sym_make] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_else] = ACTIONS(1866), - [anon_sym_match] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1874), - [anon_sym_try] = ACTIONS(1866), - [anon_sym_catch] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_source] = ACTIONS(1866), - [anon_sym_source_DASHenv] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_hide] = ACTIONS(1866), - [anon_sym_hide_DASHenv] = ACTIONS(1866), - [anon_sym_overlay] = ACTIONS(1866), - [anon_sym_as] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_PLUS2] = ACTIONS(1866), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1874), - [anon_sym_DOT_DOT2] = ACTIONS(1929), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1931), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1931), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1874), - [aux_sym__val_number_decimal_token1] = ACTIONS(1866), - [aux_sym__val_number_decimal_token2] = ACTIONS(1874), - [aux_sym__val_number_decimal_token3] = ACTIONS(1874), - [aux_sym__val_number_decimal_token4] = ACTIONS(1874), - [aux_sym__val_number_token1] = ACTIONS(1874), - [aux_sym__val_number_token2] = ACTIONS(1874), - [aux_sym__val_number_token3] = ACTIONS(1874), - [aux_sym__val_number_token4] = ACTIONS(1866), - [aux_sym__val_number_token5] = ACTIONS(1866), - [aux_sym__val_number_token6] = ACTIONS(1866), - [anon_sym_DQUOTE] = ACTIONS(1874), - [sym__str_single_quotes] = ACTIONS(1874), - [sym__str_back_ticks] = ACTIONS(1874), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1874), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1546), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1874), + [422] = { + [sym_cell_path] = STATE(621), + [sym_path] = STATE(567), + [sym_comment] = STATE(422), + [aux_sym_cell_path_repeat1] = STATE(495), + [anon_sym_export] = ACTIONS(1927), + [anon_sym_alias] = ACTIONS(1927), + [anon_sym_let] = ACTIONS(1927), + [anon_sym_let_DASHenv] = ACTIONS(1927), + [anon_sym_mut] = ACTIONS(1927), + [anon_sym_const] = ACTIONS(1927), + [aux_sym_cmd_identifier_token1] = ACTIONS(1927), + [aux_sym_cmd_identifier_token2] = ACTIONS(1927), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [aux_sym_cmd_identifier_token6] = ACTIONS(1927), + [aux_sym_cmd_identifier_token7] = ACTIONS(1927), + [aux_sym_cmd_identifier_token8] = ACTIONS(1927), + [aux_sym_cmd_identifier_token9] = ACTIONS(1927), + [aux_sym_cmd_identifier_token10] = ACTIONS(1927), + [aux_sym_cmd_identifier_token11] = ACTIONS(1927), + [aux_sym_cmd_identifier_token12] = ACTIONS(1927), + [aux_sym_cmd_identifier_token13] = ACTIONS(1927), + [aux_sym_cmd_identifier_token14] = ACTIONS(1927), + [aux_sym_cmd_identifier_token15] = ACTIONS(1927), + [aux_sym_cmd_identifier_token16] = ACTIONS(1927), + [aux_sym_cmd_identifier_token17] = ACTIONS(1927), + [aux_sym_cmd_identifier_token18] = ACTIONS(1927), + [aux_sym_cmd_identifier_token19] = ACTIONS(1927), + [aux_sym_cmd_identifier_token20] = ACTIONS(1927), + [aux_sym_cmd_identifier_token21] = ACTIONS(1927), + [aux_sym_cmd_identifier_token22] = ACTIONS(1927), + [aux_sym_cmd_identifier_token23] = ACTIONS(1927), + [aux_sym_cmd_identifier_token24] = ACTIONS(1927), + [aux_sym_cmd_identifier_token25] = ACTIONS(1927), + [aux_sym_cmd_identifier_token26] = ACTIONS(1927), + [aux_sym_cmd_identifier_token27] = ACTIONS(1927), + [aux_sym_cmd_identifier_token28] = ACTIONS(1927), + [aux_sym_cmd_identifier_token29] = ACTIONS(1927), + [aux_sym_cmd_identifier_token30] = ACTIONS(1927), + [aux_sym_cmd_identifier_token31] = ACTIONS(1927), + [aux_sym_cmd_identifier_token32] = ACTIONS(1927), + [aux_sym_cmd_identifier_token33] = ACTIONS(1927), + [aux_sym_cmd_identifier_token34] = ACTIONS(1927), + [aux_sym_cmd_identifier_token35] = ACTIONS(1927), + [aux_sym_cmd_identifier_token36] = ACTIONS(1927), + [aux_sym_cmd_identifier_token37] = ACTIONS(1927), + [aux_sym_cmd_identifier_token38] = ACTIONS(1927), + [aux_sym_cmd_identifier_token39] = ACTIONS(1927), + [aux_sym_cmd_identifier_token40] = ACTIONS(1927), + [anon_sym_def] = ACTIONS(1927), + [anon_sym_export_DASHenv] = ACTIONS(1927), + [anon_sym_extern] = ACTIONS(1927), + [anon_sym_module] = ACTIONS(1927), + [anon_sym_use] = ACTIONS(1927), + [anon_sym_LPAREN] = ACTIONS(1927), + [anon_sym_DOLLAR] = ACTIONS(1927), + [anon_sym_error] = ACTIONS(1927), + [anon_sym_DASH2] = ACTIONS(1927), + [anon_sym_break] = ACTIONS(1927), + [anon_sym_continue] = ACTIONS(1927), + [anon_sym_for] = ACTIONS(1927), + [anon_sym_in2] = ACTIONS(1927), + [anon_sym_loop] = ACTIONS(1927), + [anon_sym_make] = ACTIONS(1927), + [anon_sym_while] = ACTIONS(1927), + [anon_sym_do] = ACTIONS(1927), + [anon_sym_if] = ACTIONS(1927), + [anon_sym_else] = ACTIONS(1927), + [anon_sym_match] = ACTIONS(1927), + [anon_sym_RBRACE] = ACTIONS(1927), + [anon_sym_try] = ACTIONS(1927), + [anon_sym_catch] = ACTIONS(1927), + [anon_sym_return] = ACTIONS(1927), + [anon_sym_source] = ACTIONS(1927), + [anon_sym_source_DASHenv] = ACTIONS(1927), + [anon_sym_register] = ACTIONS(1927), + [anon_sym_hide] = ACTIONS(1927), + [anon_sym_hide_DASHenv] = ACTIONS(1927), + [anon_sym_overlay] = ACTIONS(1927), + [anon_sym_as] = ACTIONS(1927), + [anon_sym_PLUS2] = ACTIONS(1927), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1927), + [anon_sym_DOT] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1927), + [aux_sym__val_number_decimal_token1] = ACTIONS(1927), + [aux_sym__val_number_decimal_token2] = ACTIONS(1927), + [aux_sym__val_number_decimal_token3] = ACTIONS(1927), + [aux_sym__val_number_decimal_token4] = ACTIONS(1927), + [aux_sym__val_number_token1] = ACTIONS(1927), + [aux_sym__val_number_token2] = ACTIONS(1927), + [aux_sym__val_number_token3] = ACTIONS(1927), + [aux_sym__val_number_token4] = ACTIONS(1927), + [aux_sym__val_number_token5] = ACTIONS(1927), + [aux_sym__val_number_token6] = ACTIONS(1927), + [anon_sym_DQUOTE] = ACTIONS(1927), + [sym__str_single_quotes] = ACTIONS(1927), + [sym__str_back_ticks] = ACTIONS(1927), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1927), + [sym__entry_separator] = ACTIONS(1929), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1929), }, - [407] = { - [sym_cell_path] = STATE(637), - [sym_path] = STATE(569), - [sym_comment] = STATE(407), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1933), - [anon_sym_alias] = ACTIONS(1933), - [anon_sym_let] = ACTIONS(1933), - [anon_sym_let_DASHenv] = ACTIONS(1933), - [anon_sym_mut] = ACTIONS(1933), - [anon_sym_const] = ACTIONS(1933), - [aux_sym_cmd_identifier_token1] = ACTIONS(1933), - [aux_sym_cmd_identifier_token2] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1933), - [aux_sym_cmd_identifier_token4] = ACTIONS(1933), - [aux_sym_cmd_identifier_token5] = ACTIONS(1933), - [aux_sym_cmd_identifier_token6] = ACTIONS(1933), - [aux_sym_cmd_identifier_token7] = ACTIONS(1933), - [aux_sym_cmd_identifier_token8] = ACTIONS(1933), - [aux_sym_cmd_identifier_token9] = ACTIONS(1933), - [aux_sym_cmd_identifier_token10] = ACTIONS(1933), - [aux_sym_cmd_identifier_token11] = ACTIONS(1933), - [aux_sym_cmd_identifier_token12] = ACTIONS(1933), - [aux_sym_cmd_identifier_token13] = ACTIONS(1933), - [aux_sym_cmd_identifier_token14] = ACTIONS(1933), - [aux_sym_cmd_identifier_token15] = ACTIONS(1933), - [aux_sym_cmd_identifier_token16] = ACTIONS(1933), - [aux_sym_cmd_identifier_token17] = ACTIONS(1933), - [aux_sym_cmd_identifier_token18] = ACTIONS(1933), - [aux_sym_cmd_identifier_token19] = ACTIONS(1933), - [aux_sym_cmd_identifier_token20] = ACTIONS(1933), - [aux_sym_cmd_identifier_token21] = ACTIONS(1933), - [aux_sym_cmd_identifier_token22] = ACTIONS(1933), - [aux_sym_cmd_identifier_token23] = ACTIONS(1933), - [aux_sym_cmd_identifier_token24] = ACTIONS(1933), - [aux_sym_cmd_identifier_token25] = ACTIONS(1933), - [aux_sym_cmd_identifier_token26] = ACTIONS(1933), - [aux_sym_cmd_identifier_token27] = ACTIONS(1933), - [aux_sym_cmd_identifier_token28] = ACTIONS(1933), - [aux_sym_cmd_identifier_token29] = ACTIONS(1933), - [aux_sym_cmd_identifier_token30] = ACTIONS(1933), - [aux_sym_cmd_identifier_token31] = ACTIONS(1933), - [aux_sym_cmd_identifier_token32] = ACTIONS(1933), - [aux_sym_cmd_identifier_token33] = ACTIONS(1933), - [aux_sym_cmd_identifier_token34] = ACTIONS(1933), - [aux_sym_cmd_identifier_token35] = ACTIONS(1933), - [aux_sym_cmd_identifier_token36] = ACTIONS(1933), - [aux_sym_cmd_identifier_token37] = ACTIONS(1933), - [aux_sym_cmd_identifier_token38] = ACTIONS(1933), - [aux_sym_cmd_identifier_token39] = ACTIONS(1933), - [aux_sym_cmd_identifier_token40] = ACTIONS(1933), - [anon_sym_def] = ACTIONS(1933), - [anon_sym_export_DASHenv] = ACTIONS(1933), - [anon_sym_extern] = ACTIONS(1933), - [anon_sym_module] = ACTIONS(1933), - [anon_sym_use] = ACTIONS(1933), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_DOLLAR] = ACTIONS(1933), - [anon_sym_error] = ACTIONS(1933), - [anon_sym_DASH2] = ACTIONS(1933), - [anon_sym_break] = ACTIONS(1933), - [anon_sym_continue] = ACTIONS(1933), - [anon_sym_for] = ACTIONS(1933), - [anon_sym_in2] = ACTIONS(1933), - [anon_sym_loop] = ACTIONS(1933), - [anon_sym_make] = ACTIONS(1933), - [anon_sym_while] = ACTIONS(1933), - [anon_sym_do] = ACTIONS(1933), - [anon_sym_if] = ACTIONS(1933), - [anon_sym_else] = ACTIONS(1933), - [anon_sym_match] = ACTIONS(1933), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_try] = ACTIONS(1933), - [anon_sym_catch] = ACTIONS(1933), - [anon_sym_return] = ACTIONS(1933), - [anon_sym_source] = ACTIONS(1933), - [anon_sym_source_DASHenv] = ACTIONS(1933), - [anon_sym_register] = ACTIONS(1933), - [anon_sym_hide] = ACTIONS(1933), - [anon_sym_hide_DASHenv] = ACTIONS(1933), - [anon_sym_overlay] = ACTIONS(1933), - [anon_sym_as] = ACTIONS(1933), - [anon_sym_PLUS2] = ACTIONS(1933), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1933), - [anon_sym_DOT] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1933), - [aux_sym__val_number_decimal_token2] = ACTIONS(1933), - [aux_sym__val_number_decimal_token3] = ACTIONS(1933), - [aux_sym__val_number_decimal_token4] = ACTIONS(1933), - [aux_sym__val_number_token1] = ACTIONS(1933), - [aux_sym__val_number_token2] = ACTIONS(1933), - [aux_sym__val_number_token3] = ACTIONS(1933), - [aux_sym__val_number_token4] = ACTIONS(1933), - [aux_sym__val_number_token5] = ACTIONS(1933), - [aux_sym__val_number_token6] = ACTIONS(1933), - [anon_sym_DQUOTE] = ACTIONS(1933), - [sym__str_single_quotes] = ACTIONS(1933), - [sym__str_back_ticks] = ACTIONS(1933), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1933), - [sym__entry_separator] = ACTIONS(1935), + [423] = { + [sym_cell_path] = STATE(660), + [sym_path] = STATE(567), + [sym_comment] = STATE(423), + [aux_sym_cell_path_repeat1] = STATE(495), + [anon_sym_export] = ACTIONS(1931), + [anon_sym_alias] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_let_DASHenv] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(1931), + [anon_sym_const] = ACTIONS(1931), + [aux_sym_cmd_identifier_token1] = ACTIONS(1931), + [aux_sym_cmd_identifier_token2] = ACTIONS(1931), + [aux_sym_cmd_identifier_token3] = ACTIONS(1931), + [aux_sym_cmd_identifier_token4] = ACTIONS(1931), + [aux_sym_cmd_identifier_token5] = ACTIONS(1931), + [aux_sym_cmd_identifier_token6] = ACTIONS(1931), + [aux_sym_cmd_identifier_token7] = ACTIONS(1931), + [aux_sym_cmd_identifier_token8] = ACTIONS(1931), + [aux_sym_cmd_identifier_token9] = ACTIONS(1931), + [aux_sym_cmd_identifier_token10] = ACTIONS(1931), + [aux_sym_cmd_identifier_token11] = ACTIONS(1931), + [aux_sym_cmd_identifier_token12] = ACTIONS(1931), + [aux_sym_cmd_identifier_token13] = ACTIONS(1931), + [aux_sym_cmd_identifier_token14] = ACTIONS(1931), + [aux_sym_cmd_identifier_token15] = ACTIONS(1931), + [aux_sym_cmd_identifier_token16] = ACTIONS(1931), + [aux_sym_cmd_identifier_token17] = ACTIONS(1931), + [aux_sym_cmd_identifier_token18] = ACTIONS(1931), + [aux_sym_cmd_identifier_token19] = ACTIONS(1931), + [aux_sym_cmd_identifier_token20] = ACTIONS(1931), + [aux_sym_cmd_identifier_token21] = ACTIONS(1931), + [aux_sym_cmd_identifier_token22] = ACTIONS(1931), + [aux_sym_cmd_identifier_token23] = ACTIONS(1931), + [aux_sym_cmd_identifier_token24] = ACTIONS(1931), + [aux_sym_cmd_identifier_token25] = ACTIONS(1931), + [aux_sym_cmd_identifier_token26] = ACTIONS(1931), + [aux_sym_cmd_identifier_token27] = ACTIONS(1931), + [aux_sym_cmd_identifier_token28] = ACTIONS(1931), + [aux_sym_cmd_identifier_token29] = ACTIONS(1931), + [aux_sym_cmd_identifier_token30] = ACTIONS(1931), + [aux_sym_cmd_identifier_token31] = ACTIONS(1931), + [aux_sym_cmd_identifier_token32] = ACTIONS(1931), + [aux_sym_cmd_identifier_token33] = ACTIONS(1931), + [aux_sym_cmd_identifier_token34] = ACTIONS(1931), + [aux_sym_cmd_identifier_token35] = ACTIONS(1931), + [aux_sym_cmd_identifier_token36] = ACTIONS(1931), + [aux_sym_cmd_identifier_token37] = ACTIONS(1931), + [aux_sym_cmd_identifier_token38] = ACTIONS(1931), + [aux_sym_cmd_identifier_token39] = ACTIONS(1931), + [aux_sym_cmd_identifier_token40] = ACTIONS(1931), + [anon_sym_def] = ACTIONS(1931), + [anon_sym_export_DASHenv] = ACTIONS(1931), + [anon_sym_extern] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), + [anon_sym_use] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_DOLLAR] = ACTIONS(1931), + [anon_sym_error] = ACTIONS(1931), + [anon_sym_DASH2] = ACTIONS(1931), + [anon_sym_break] = ACTIONS(1931), + [anon_sym_continue] = ACTIONS(1931), + [anon_sym_for] = ACTIONS(1931), + [anon_sym_in2] = ACTIONS(1931), + [anon_sym_loop] = ACTIONS(1931), + [anon_sym_make] = ACTIONS(1931), + [anon_sym_while] = ACTIONS(1931), + [anon_sym_do] = ACTIONS(1931), + [anon_sym_if] = ACTIONS(1931), + [anon_sym_else] = ACTIONS(1931), + [anon_sym_match] = ACTIONS(1931), + [anon_sym_RBRACE] = ACTIONS(1931), + [anon_sym_try] = ACTIONS(1931), + [anon_sym_catch] = ACTIONS(1931), + [anon_sym_return] = ACTIONS(1931), + [anon_sym_source] = ACTIONS(1931), + [anon_sym_source_DASHenv] = ACTIONS(1931), + [anon_sym_register] = ACTIONS(1931), + [anon_sym_hide] = ACTIONS(1931), + [anon_sym_hide_DASHenv] = ACTIONS(1931), + [anon_sym_overlay] = ACTIONS(1931), + [anon_sym_as] = ACTIONS(1931), + [anon_sym_PLUS2] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1931), + [aux_sym__val_number_decimal_token1] = ACTIONS(1931), + [aux_sym__val_number_decimal_token2] = ACTIONS(1931), + [aux_sym__val_number_decimal_token3] = ACTIONS(1931), + [aux_sym__val_number_decimal_token4] = ACTIONS(1931), + [aux_sym__val_number_token1] = ACTIONS(1931), + [aux_sym__val_number_token2] = ACTIONS(1931), + [aux_sym__val_number_token3] = ACTIONS(1931), + [aux_sym__val_number_token4] = ACTIONS(1931), + [aux_sym__val_number_token5] = ACTIONS(1931), + [aux_sym__val_number_token6] = ACTIONS(1931), + [anon_sym_DQUOTE] = ACTIONS(1931), + [sym__str_single_quotes] = ACTIONS(1931), + [sym__str_back_ticks] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1931), + [sym__entry_separator] = ACTIONS(1933), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1935), + [sym_raw_string_begin] = ACTIONS(1933), }, - [408] = { - [sym_comment] = STATE(408), - [anon_sym_export] = ACTIONS(1878), - [anon_sym_alias] = ACTIONS(1878), - [anon_sym_let] = ACTIONS(1878), - [anon_sym_let_DASHenv] = ACTIONS(1878), - [anon_sym_mut] = ACTIONS(1878), - [anon_sym_const] = ACTIONS(1878), - [aux_sym_cmd_identifier_token1] = ACTIONS(1878), - [aux_sym_cmd_identifier_token2] = ACTIONS(1886), - [aux_sym_cmd_identifier_token3] = ACTIONS(1886), - [aux_sym_cmd_identifier_token4] = ACTIONS(1886), - [aux_sym_cmd_identifier_token5] = ACTIONS(1886), - [aux_sym_cmd_identifier_token6] = ACTIONS(1886), - [aux_sym_cmd_identifier_token7] = ACTIONS(1886), - [aux_sym_cmd_identifier_token8] = ACTIONS(1878), - [aux_sym_cmd_identifier_token9] = ACTIONS(1878), - [aux_sym_cmd_identifier_token10] = ACTIONS(1886), - [aux_sym_cmd_identifier_token11] = ACTIONS(1886), - [aux_sym_cmd_identifier_token12] = ACTIONS(1878), - [aux_sym_cmd_identifier_token13] = ACTIONS(1878), - [aux_sym_cmd_identifier_token14] = ACTIONS(1878), - [aux_sym_cmd_identifier_token15] = ACTIONS(1878), - [aux_sym_cmd_identifier_token16] = ACTIONS(1886), - [aux_sym_cmd_identifier_token17] = ACTIONS(1886), - [aux_sym_cmd_identifier_token18] = ACTIONS(1886), - [aux_sym_cmd_identifier_token19] = ACTIONS(1886), - [aux_sym_cmd_identifier_token20] = ACTIONS(1886), - [aux_sym_cmd_identifier_token21] = ACTIONS(1886), - [aux_sym_cmd_identifier_token22] = ACTIONS(1886), - [aux_sym_cmd_identifier_token23] = ACTIONS(1886), - [aux_sym_cmd_identifier_token24] = ACTIONS(1886), - [aux_sym_cmd_identifier_token25] = ACTIONS(1886), - [aux_sym_cmd_identifier_token26] = ACTIONS(1886), - [aux_sym_cmd_identifier_token27] = ACTIONS(1886), - [aux_sym_cmd_identifier_token28] = ACTIONS(1886), - [aux_sym_cmd_identifier_token29] = ACTIONS(1886), - [aux_sym_cmd_identifier_token30] = ACTIONS(1886), - [aux_sym_cmd_identifier_token31] = ACTIONS(1886), - [aux_sym_cmd_identifier_token32] = ACTIONS(1886), - [aux_sym_cmd_identifier_token33] = ACTIONS(1886), - [aux_sym_cmd_identifier_token34] = ACTIONS(1878), - [aux_sym_cmd_identifier_token35] = ACTIONS(1886), - [aux_sym_cmd_identifier_token36] = ACTIONS(1886), - [aux_sym_cmd_identifier_token37] = ACTIONS(1886), - [aux_sym_cmd_identifier_token38] = ACTIONS(1878), - [aux_sym_cmd_identifier_token39] = ACTIONS(1886), - [aux_sym_cmd_identifier_token40] = ACTIONS(1886), - [anon_sym_def] = ACTIONS(1878), - [anon_sym_export_DASHenv] = ACTIONS(1878), - [anon_sym_extern] = ACTIONS(1878), - [anon_sym_module] = ACTIONS(1878), - [anon_sym_use] = ACTIONS(1878), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_DOLLAR] = ACTIONS(1886), - [anon_sym_error] = ACTIONS(1878), - [anon_sym_DASH2] = ACTIONS(1878), - [anon_sym_break] = ACTIONS(1878), - [anon_sym_continue] = ACTIONS(1878), - [anon_sym_for] = ACTIONS(1878), - [anon_sym_in2] = ACTIONS(1878), - [anon_sym_loop] = ACTIONS(1878), - [anon_sym_make] = ACTIONS(1878), - [anon_sym_while] = ACTIONS(1878), - [anon_sym_do] = ACTIONS(1878), - [anon_sym_if] = ACTIONS(1878), - [anon_sym_else] = ACTIONS(1878), - [anon_sym_match] = ACTIONS(1878), - [anon_sym_RBRACE] = ACTIONS(1886), - [anon_sym_try] = ACTIONS(1878), - [anon_sym_catch] = ACTIONS(1878), - [anon_sym_return] = ACTIONS(1878), - [anon_sym_source] = ACTIONS(1878), - [anon_sym_source_DASHenv] = ACTIONS(1878), - [anon_sym_register] = ACTIONS(1878), - [anon_sym_hide] = ACTIONS(1878), - [anon_sym_hide_DASHenv] = ACTIONS(1878), - [anon_sym_overlay] = ACTIONS(1878), - [anon_sym_as] = ACTIONS(1878), - [anon_sym_LPAREN2] = ACTIONS(1880), - [anon_sym_PLUS2] = ACTIONS(1878), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1886), - [anon_sym_DOT_DOT2] = ACTIONS(1937), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1939), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1939), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1886), - [aux_sym__val_number_decimal_token1] = ACTIONS(1878), - [aux_sym__val_number_decimal_token2] = ACTIONS(1886), - [aux_sym__val_number_decimal_token3] = ACTIONS(1886), - [aux_sym__val_number_decimal_token4] = ACTIONS(1886), - [aux_sym__val_number_token1] = ACTIONS(1886), - [aux_sym__val_number_token2] = ACTIONS(1886), - [aux_sym__val_number_token3] = ACTIONS(1886), - [aux_sym__val_number_token4] = ACTIONS(1878), - [aux_sym__val_number_token5] = ACTIONS(1878), - [aux_sym__val_number_token6] = ACTIONS(1878), - [anon_sym_DQUOTE] = ACTIONS(1886), - [sym__str_single_quotes] = ACTIONS(1886), - [sym__str_back_ticks] = ACTIONS(1886), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1886), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1888), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1886), + [424] = { + [sym_comment] = STATE(424), + [anon_sym_export] = ACTIONS(990), + [anon_sym_alias] = ACTIONS(990), + [anon_sym_let] = ACTIONS(990), + [anon_sym_let_DASHenv] = ACTIONS(990), + [anon_sym_mut] = ACTIONS(990), + [anon_sym_const] = ACTIONS(990), + [aux_sym_cmd_identifier_token1] = ACTIONS(990), + [aux_sym_cmd_identifier_token2] = ACTIONS(992), + [aux_sym_cmd_identifier_token3] = ACTIONS(992), + [aux_sym_cmd_identifier_token4] = ACTIONS(992), + [aux_sym_cmd_identifier_token5] = ACTIONS(992), + [aux_sym_cmd_identifier_token6] = ACTIONS(992), + [aux_sym_cmd_identifier_token7] = ACTIONS(992), + [aux_sym_cmd_identifier_token8] = ACTIONS(990), + [aux_sym_cmd_identifier_token9] = ACTIONS(990), + [aux_sym_cmd_identifier_token10] = ACTIONS(992), + [aux_sym_cmd_identifier_token11] = ACTIONS(992), + [aux_sym_cmd_identifier_token12] = ACTIONS(990), + [aux_sym_cmd_identifier_token13] = ACTIONS(990), + [aux_sym_cmd_identifier_token14] = ACTIONS(990), + [aux_sym_cmd_identifier_token15] = ACTIONS(990), + [aux_sym_cmd_identifier_token16] = ACTIONS(992), + [aux_sym_cmd_identifier_token17] = ACTIONS(992), + [aux_sym_cmd_identifier_token18] = ACTIONS(992), + [aux_sym_cmd_identifier_token19] = ACTIONS(992), + [aux_sym_cmd_identifier_token20] = ACTIONS(992), + [aux_sym_cmd_identifier_token21] = ACTIONS(992), + [aux_sym_cmd_identifier_token22] = ACTIONS(992), + [aux_sym_cmd_identifier_token23] = ACTIONS(992), + [aux_sym_cmd_identifier_token24] = ACTIONS(992), + [aux_sym_cmd_identifier_token25] = ACTIONS(992), + [aux_sym_cmd_identifier_token26] = ACTIONS(992), + [aux_sym_cmd_identifier_token27] = ACTIONS(992), + [aux_sym_cmd_identifier_token28] = ACTIONS(992), + [aux_sym_cmd_identifier_token29] = ACTIONS(992), + [aux_sym_cmd_identifier_token30] = ACTIONS(992), + [aux_sym_cmd_identifier_token31] = ACTIONS(992), + [aux_sym_cmd_identifier_token32] = ACTIONS(992), + [aux_sym_cmd_identifier_token33] = ACTIONS(992), + [aux_sym_cmd_identifier_token34] = ACTIONS(990), + [aux_sym_cmd_identifier_token35] = ACTIONS(992), + [aux_sym_cmd_identifier_token36] = ACTIONS(992), + [aux_sym_cmd_identifier_token37] = ACTIONS(992), + [aux_sym_cmd_identifier_token38] = ACTIONS(990), + [aux_sym_cmd_identifier_token39] = ACTIONS(992), + [aux_sym_cmd_identifier_token40] = ACTIONS(992), + [anon_sym_def] = ACTIONS(990), + [anon_sym_export_DASHenv] = ACTIONS(990), + [anon_sym_extern] = ACTIONS(990), + [anon_sym_module] = ACTIONS(990), + [anon_sym_use] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(992), + [anon_sym_error] = ACTIONS(990), + [anon_sym_DASH2] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_continue] = ACTIONS(990), + [anon_sym_for] = ACTIONS(990), + [anon_sym_in2] = ACTIONS(990), + [anon_sym_loop] = ACTIONS(990), + [anon_sym_make] = ACTIONS(990), + [anon_sym_while] = ACTIONS(990), + [anon_sym_do] = ACTIONS(990), + [anon_sym_if] = ACTIONS(990), + [anon_sym_else] = ACTIONS(990), + [anon_sym_match] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_try] = ACTIONS(990), + [anon_sym_catch] = ACTIONS(990), + [anon_sym_return] = ACTIONS(990), + [anon_sym_source] = ACTIONS(990), + [anon_sym_source_DASHenv] = ACTIONS(990), + [anon_sym_register] = ACTIONS(990), + [anon_sym_hide] = ACTIONS(990), + [anon_sym_hide_DASHenv] = ACTIONS(990), + [anon_sym_overlay] = ACTIONS(990), + [anon_sym_as] = ACTIONS(990), + [anon_sym_QMARK2] = ACTIONS(992), + [anon_sym_PLUS2] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), + [anon_sym_DOT_DOT2] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), + [anon_sym_DOT_DOT_LT2] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = ACTIONS(992), + [aux_sym__val_number_decimal_token4] = ACTIONS(992), + [aux_sym__val_number_token1] = ACTIONS(992), + [aux_sym__val_number_token2] = ACTIONS(992), + [aux_sym__val_number_token3] = ACTIONS(992), + [aux_sym__val_number_token4] = ACTIONS(990), + [aux_sym__val_number_token5] = ACTIONS(990), + [aux_sym__val_number_token6] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(992), }, - [409] = { - [sym_path] = STATE(517), - [sym_comment] = STATE(409), - [aux_sym_cell_path_repeat1] = STATE(410), + [425] = { + [sym_path] = STATE(529), + [sym_comment] = STATE(425), + [aux_sym_cell_path_repeat1] = STATE(427), [anon_sym_export] = ACTIONS(967), [anon_sym_alias] = ACTIONS(967), [anon_sym_let] = ACTIONS(967), @@ -120373,7 +122358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(967), [anon_sym_PLUS2] = ACTIONS(967), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(969), - [anon_sym_DOT] = ACTIONS(1876), + [anon_sym_DOT] = ACTIONS(1833), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(969), [aux_sym__val_number_decimal_token1] = ACTIONS(967), [aux_sym__val_number_decimal_token2] = ACTIONS(969), @@ -120393,10 +122378,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(969), }, - [410] = { - [sym_path] = STATE(517), - [sym_comment] = STATE(410), - [aux_sym_cell_path_repeat1] = STATE(410), + [426] = { + [sym_comment] = STATE(426), + [anon_sym_export] = ACTIONS(994), + [anon_sym_alias] = ACTIONS(994), + [anon_sym_let] = ACTIONS(994), + [anon_sym_let_DASHenv] = ACTIONS(994), + [anon_sym_mut] = ACTIONS(994), + [anon_sym_const] = ACTIONS(994), + [aux_sym_cmd_identifier_token1] = ACTIONS(994), + [aux_sym_cmd_identifier_token2] = ACTIONS(996), + [aux_sym_cmd_identifier_token3] = ACTIONS(996), + [aux_sym_cmd_identifier_token4] = ACTIONS(996), + [aux_sym_cmd_identifier_token5] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(996), + [aux_sym_cmd_identifier_token7] = ACTIONS(996), + [aux_sym_cmd_identifier_token8] = ACTIONS(994), + [aux_sym_cmd_identifier_token9] = ACTIONS(994), + [aux_sym_cmd_identifier_token10] = ACTIONS(996), + [aux_sym_cmd_identifier_token11] = ACTIONS(996), + [aux_sym_cmd_identifier_token12] = ACTIONS(994), + [aux_sym_cmd_identifier_token13] = ACTIONS(994), + [aux_sym_cmd_identifier_token14] = ACTIONS(994), + [aux_sym_cmd_identifier_token15] = ACTIONS(994), + [aux_sym_cmd_identifier_token16] = ACTIONS(996), + [aux_sym_cmd_identifier_token17] = ACTIONS(996), + [aux_sym_cmd_identifier_token18] = ACTIONS(996), + [aux_sym_cmd_identifier_token19] = ACTIONS(996), + [aux_sym_cmd_identifier_token20] = ACTIONS(996), + [aux_sym_cmd_identifier_token21] = ACTIONS(996), + [aux_sym_cmd_identifier_token22] = ACTIONS(996), + [aux_sym_cmd_identifier_token23] = ACTIONS(996), + [aux_sym_cmd_identifier_token24] = ACTIONS(996), + [aux_sym_cmd_identifier_token25] = ACTIONS(996), + [aux_sym_cmd_identifier_token26] = ACTIONS(996), + [aux_sym_cmd_identifier_token27] = ACTIONS(996), + [aux_sym_cmd_identifier_token28] = ACTIONS(996), + [aux_sym_cmd_identifier_token29] = ACTIONS(996), + [aux_sym_cmd_identifier_token30] = ACTIONS(996), + [aux_sym_cmd_identifier_token31] = ACTIONS(996), + [aux_sym_cmd_identifier_token32] = ACTIONS(996), + [aux_sym_cmd_identifier_token33] = ACTIONS(996), + [aux_sym_cmd_identifier_token34] = ACTIONS(994), + [aux_sym_cmd_identifier_token35] = ACTIONS(996), + [aux_sym_cmd_identifier_token36] = ACTIONS(996), + [aux_sym_cmd_identifier_token37] = ACTIONS(996), + [aux_sym_cmd_identifier_token38] = ACTIONS(994), + [aux_sym_cmd_identifier_token39] = ACTIONS(996), + [aux_sym_cmd_identifier_token40] = ACTIONS(996), + [anon_sym_def] = ACTIONS(994), + [anon_sym_export_DASHenv] = ACTIONS(994), + [anon_sym_extern] = ACTIONS(994), + [anon_sym_module] = ACTIONS(994), + [anon_sym_use] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(996), + [anon_sym_error] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_break] = ACTIONS(994), + [anon_sym_continue] = ACTIONS(994), + [anon_sym_for] = ACTIONS(994), + [anon_sym_in2] = ACTIONS(994), + [anon_sym_loop] = ACTIONS(994), + [anon_sym_make] = ACTIONS(994), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(994), + [anon_sym_if] = ACTIONS(994), + [anon_sym_else] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_try] = ACTIONS(994), + [anon_sym_catch] = ACTIONS(994), + [anon_sym_return] = ACTIONS(994), + [anon_sym_source] = ACTIONS(994), + [anon_sym_source_DASHenv] = ACTIONS(994), + [anon_sym_register] = ACTIONS(994), + [anon_sym_hide] = ACTIONS(994), + [anon_sym_hide_DASHenv] = ACTIONS(994), + [anon_sym_overlay] = ACTIONS(994), + [anon_sym_as] = ACTIONS(994), + [anon_sym_QMARK2] = ACTIONS(996), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(996), + [anon_sym_DOT_DOT2] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), + [anon_sym_DOT_DOT_LT2] = ACTIONS(996), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(996), + [aux_sym__val_number_decimal_token1] = ACTIONS(994), + [aux_sym__val_number_decimal_token2] = ACTIONS(996), + [aux_sym__val_number_decimal_token3] = ACTIONS(996), + [aux_sym__val_number_decimal_token4] = ACTIONS(996), + [aux_sym__val_number_token1] = ACTIONS(996), + [aux_sym__val_number_token2] = ACTIONS(996), + [aux_sym__val_number_token3] = ACTIONS(996), + [aux_sym__val_number_token4] = ACTIONS(994), + [aux_sym__val_number_token5] = ACTIONS(994), + [aux_sym__val_number_token6] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(996), + [sym__str_single_quotes] = ACTIONS(996), + [sym__str_back_ticks] = ACTIONS(996), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(996), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(996), + }, + [427] = { + [sym_path] = STATE(529), + [sym_comment] = STATE(427), + [aux_sym_cell_path_repeat1] = STATE(427), [anon_sym_export] = ACTIONS(971), [anon_sym_alias] = ACTIONS(971), [anon_sym_let] = ACTIONS(971), @@ -120477,7 +122566,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(971), [anon_sym_PLUS2] = ACTIONS(971), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(1941), + [anon_sym_DOT] = ACTIONS(1935), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(973), [aux_sym__val_number_decimal_token1] = ACTIONS(971), [aux_sym__val_number_decimal_token2] = ACTIONS(973), @@ -120497,219 +122586,323 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(973), }, - [411] = { - [sym_cell_path] = STATE(636), - [sym_path] = STATE(569), - [sym_comment] = STATE(411), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1944), - [anon_sym_alias] = ACTIONS(1944), - [anon_sym_let] = ACTIONS(1944), - [anon_sym_let_DASHenv] = ACTIONS(1944), - [anon_sym_mut] = ACTIONS(1944), - [anon_sym_const] = ACTIONS(1944), - [aux_sym_cmd_identifier_token1] = ACTIONS(1944), - [aux_sym_cmd_identifier_token2] = ACTIONS(1944), - [aux_sym_cmd_identifier_token3] = ACTIONS(1944), - [aux_sym_cmd_identifier_token4] = ACTIONS(1944), - [aux_sym_cmd_identifier_token5] = ACTIONS(1944), - [aux_sym_cmd_identifier_token6] = ACTIONS(1944), - [aux_sym_cmd_identifier_token7] = ACTIONS(1944), - [aux_sym_cmd_identifier_token8] = ACTIONS(1944), - [aux_sym_cmd_identifier_token9] = ACTIONS(1944), - [aux_sym_cmd_identifier_token10] = ACTIONS(1944), - [aux_sym_cmd_identifier_token11] = ACTIONS(1944), - [aux_sym_cmd_identifier_token12] = ACTIONS(1944), - [aux_sym_cmd_identifier_token13] = ACTIONS(1944), - [aux_sym_cmd_identifier_token14] = ACTIONS(1944), - [aux_sym_cmd_identifier_token15] = ACTIONS(1944), - [aux_sym_cmd_identifier_token16] = ACTIONS(1944), - [aux_sym_cmd_identifier_token17] = ACTIONS(1944), - [aux_sym_cmd_identifier_token18] = ACTIONS(1944), - [aux_sym_cmd_identifier_token19] = ACTIONS(1944), - [aux_sym_cmd_identifier_token20] = ACTIONS(1944), - [aux_sym_cmd_identifier_token21] = ACTIONS(1944), - [aux_sym_cmd_identifier_token22] = ACTIONS(1944), - [aux_sym_cmd_identifier_token23] = ACTIONS(1944), - [aux_sym_cmd_identifier_token24] = ACTIONS(1944), - [aux_sym_cmd_identifier_token25] = ACTIONS(1944), - [aux_sym_cmd_identifier_token26] = ACTIONS(1944), - [aux_sym_cmd_identifier_token27] = ACTIONS(1944), - [aux_sym_cmd_identifier_token28] = ACTIONS(1944), - [aux_sym_cmd_identifier_token29] = ACTIONS(1944), - [aux_sym_cmd_identifier_token30] = ACTIONS(1944), - [aux_sym_cmd_identifier_token31] = ACTIONS(1944), - [aux_sym_cmd_identifier_token32] = ACTIONS(1944), - [aux_sym_cmd_identifier_token33] = ACTIONS(1944), - [aux_sym_cmd_identifier_token34] = ACTIONS(1944), - [aux_sym_cmd_identifier_token35] = ACTIONS(1944), - [aux_sym_cmd_identifier_token36] = ACTIONS(1944), - [aux_sym_cmd_identifier_token37] = ACTIONS(1944), - [aux_sym_cmd_identifier_token38] = ACTIONS(1944), - [aux_sym_cmd_identifier_token39] = ACTIONS(1944), - [aux_sym_cmd_identifier_token40] = ACTIONS(1944), - [anon_sym_def] = ACTIONS(1944), - [anon_sym_export_DASHenv] = ACTIONS(1944), - [anon_sym_extern] = ACTIONS(1944), - [anon_sym_module] = ACTIONS(1944), - [anon_sym_use] = ACTIONS(1944), - [anon_sym_LPAREN] = ACTIONS(1944), - [anon_sym_DOLLAR] = ACTIONS(1944), - [anon_sym_error] = ACTIONS(1944), - [anon_sym_DASH2] = ACTIONS(1944), - [anon_sym_break] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(1944), - [anon_sym_for] = ACTIONS(1944), - [anon_sym_in2] = ACTIONS(1944), - [anon_sym_loop] = ACTIONS(1944), - [anon_sym_make] = ACTIONS(1944), - [anon_sym_while] = ACTIONS(1944), - [anon_sym_do] = ACTIONS(1944), - [anon_sym_if] = ACTIONS(1944), - [anon_sym_else] = ACTIONS(1944), - [anon_sym_match] = ACTIONS(1944), - [anon_sym_RBRACE] = ACTIONS(1944), - [anon_sym_try] = ACTIONS(1944), - [anon_sym_catch] = ACTIONS(1944), - [anon_sym_return] = ACTIONS(1944), - [anon_sym_source] = ACTIONS(1944), - [anon_sym_source_DASHenv] = ACTIONS(1944), - [anon_sym_register] = ACTIONS(1944), - [anon_sym_hide] = ACTIONS(1944), - [anon_sym_hide_DASHenv] = ACTIONS(1944), - [anon_sym_overlay] = ACTIONS(1944), - [anon_sym_as] = ACTIONS(1944), - [anon_sym_PLUS2] = ACTIONS(1944), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1944), - [anon_sym_DOT] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1944), - [aux_sym__val_number_decimal_token1] = ACTIONS(1944), - [aux_sym__val_number_decimal_token2] = ACTIONS(1944), - [aux_sym__val_number_decimal_token3] = ACTIONS(1944), - [aux_sym__val_number_decimal_token4] = ACTIONS(1944), - [aux_sym__val_number_token1] = ACTIONS(1944), - [aux_sym__val_number_token2] = ACTIONS(1944), - [aux_sym__val_number_token3] = ACTIONS(1944), - [aux_sym__val_number_token4] = ACTIONS(1944), - [aux_sym__val_number_token5] = ACTIONS(1944), - [aux_sym__val_number_token6] = ACTIONS(1944), - [anon_sym_DQUOTE] = ACTIONS(1944), - [sym__str_single_quotes] = ACTIONS(1944), - [sym__str_back_ticks] = ACTIONS(1944), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1944), - [sym__entry_separator] = ACTIONS(1946), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1946), - }, - [412] = { - [sym_cell_path] = STATE(623), - [sym_path] = STATE(569), - [sym_comment] = STATE(412), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1948), - [anon_sym_alias] = ACTIONS(1948), - [anon_sym_let] = ACTIONS(1948), - [anon_sym_let_DASHenv] = ACTIONS(1948), - [anon_sym_mut] = ACTIONS(1948), - [anon_sym_const] = ACTIONS(1948), - [aux_sym_cmd_identifier_token1] = ACTIONS(1948), - [aux_sym_cmd_identifier_token2] = ACTIONS(1948), - [aux_sym_cmd_identifier_token3] = ACTIONS(1948), - [aux_sym_cmd_identifier_token4] = ACTIONS(1948), - [aux_sym_cmd_identifier_token5] = ACTIONS(1948), - [aux_sym_cmd_identifier_token6] = ACTIONS(1948), - [aux_sym_cmd_identifier_token7] = ACTIONS(1948), - [aux_sym_cmd_identifier_token8] = ACTIONS(1948), - [aux_sym_cmd_identifier_token9] = ACTIONS(1948), - [aux_sym_cmd_identifier_token10] = ACTIONS(1948), - [aux_sym_cmd_identifier_token11] = ACTIONS(1948), - [aux_sym_cmd_identifier_token12] = ACTIONS(1948), - [aux_sym_cmd_identifier_token13] = ACTIONS(1948), - [aux_sym_cmd_identifier_token14] = ACTIONS(1948), - [aux_sym_cmd_identifier_token15] = ACTIONS(1948), - [aux_sym_cmd_identifier_token16] = ACTIONS(1948), - [aux_sym_cmd_identifier_token17] = ACTIONS(1948), - [aux_sym_cmd_identifier_token18] = ACTIONS(1948), - [aux_sym_cmd_identifier_token19] = ACTIONS(1948), - [aux_sym_cmd_identifier_token20] = ACTIONS(1948), - [aux_sym_cmd_identifier_token21] = ACTIONS(1948), - [aux_sym_cmd_identifier_token22] = ACTIONS(1948), - [aux_sym_cmd_identifier_token23] = ACTIONS(1948), - [aux_sym_cmd_identifier_token24] = ACTIONS(1948), - [aux_sym_cmd_identifier_token25] = ACTIONS(1948), - [aux_sym_cmd_identifier_token26] = ACTIONS(1948), - [aux_sym_cmd_identifier_token27] = ACTIONS(1948), - [aux_sym_cmd_identifier_token28] = ACTIONS(1948), - [aux_sym_cmd_identifier_token29] = ACTIONS(1948), - [aux_sym_cmd_identifier_token30] = ACTIONS(1948), - [aux_sym_cmd_identifier_token31] = ACTIONS(1948), - [aux_sym_cmd_identifier_token32] = ACTIONS(1948), - [aux_sym_cmd_identifier_token33] = ACTIONS(1948), - [aux_sym_cmd_identifier_token34] = ACTIONS(1948), - [aux_sym_cmd_identifier_token35] = ACTIONS(1948), - [aux_sym_cmd_identifier_token36] = ACTIONS(1948), - [aux_sym_cmd_identifier_token37] = ACTIONS(1948), - [aux_sym_cmd_identifier_token38] = ACTIONS(1948), - [aux_sym_cmd_identifier_token39] = ACTIONS(1948), - [aux_sym_cmd_identifier_token40] = ACTIONS(1948), - [anon_sym_def] = ACTIONS(1948), - [anon_sym_export_DASHenv] = ACTIONS(1948), - [anon_sym_extern] = ACTIONS(1948), - [anon_sym_module] = ACTIONS(1948), - [anon_sym_use] = ACTIONS(1948), - [anon_sym_LPAREN] = ACTIONS(1948), - [anon_sym_DOLLAR] = ACTIONS(1948), - [anon_sym_error] = ACTIONS(1948), - [anon_sym_DASH2] = ACTIONS(1948), - [anon_sym_break] = ACTIONS(1948), - [anon_sym_continue] = ACTIONS(1948), - [anon_sym_for] = ACTIONS(1948), - [anon_sym_in2] = ACTIONS(1948), - [anon_sym_loop] = ACTIONS(1948), - [anon_sym_make] = ACTIONS(1948), - [anon_sym_while] = ACTIONS(1948), - [anon_sym_do] = ACTIONS(1948), - [anon_sym_if] = ACTIONS(1948), - [anon_sym_else] = ACTIONS(1948), - [anon_sym_match] = ACTIONS(1948), - [anon_sym_RBRACE] = ACTIONS(1948), - [anon_sym_try] = ACTIONS(1948), - [anon_sym_catch] = ACTIONS(1948), - [anon_sym_return] = ACTIONS(1948), - [anon_sym_source] = ACTIONS(1948), - [anon_sym_source_DASHenv] = ACTIONS(1948), - [anon_sym_register] = ACTIONS(1948), - [anon_sym_hide] = ACTIONS(1948), - [anon_sym_hide_DASHenv] = ACTIONS(1948), - [anon_sym_overlay] = ACTIONS(1948), - [anon_sym_as] = ACTIONS(1948), - [anon_sym_PLUS2] = ACTIONS(1948), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1948), - [anon_sym_DOT] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1948), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1948), - [aux_sym__val_number_decimal_token3] = ACTIONS(1948), - [aux_sym__val_number_decimal_token4] = ACTIONS(1948), - [aux_sym__val_number_token1] = ACTIONS(1948), - [aux_sym__val_number_token2] = ACTIONS(1948), - [aux_sym__val_number_token3] = ACTIONS(1948), - [aux_sym__val_number_token4] = ACTIONS(1948), - [aux_sym__val_number_token5] = ACTIONS(1948), - [aux_sym__val_number_token6] = ACTIONS(1948), - [anon_sym_DQUOTE] = ACTIONS(1948), - [sym__str_single_quotes] = ACTIONS(1948), - [sym__str_back_ticks] = ACTIONS(1948), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1948), - [sym__entry_separator] = ACTIONS(1950), + [428] = { + [sym_comment] = STATE(428), + [anon_sym_export] = ACTIONS(998), + [anon_sym_alias] = ACTIONS(998), + [anon_sym_let] = ACTIONS(998), + [anon_sym_let_DASHenv] = ACTIONS(998), + [anon_sym_mut] = ACTIONS(998), + [anon_sym_const] = ACTIONS(998), + [aux_sym_cmd_identifier_token1] = ACTIONS(998), + [aux_sym_cmd_identifier_token2] = ACTIONS(1000), + [aux_sym_cmd_identifier_token3] = ACTIONS(1000), + [aux_sym_cmd_identifier_token4] = ACTIONS(1000), + [aux_sym_cmd_identifier_token5] = ACTIONS(1000), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [aux_sym_cmd_identifier_token7] = ACTIONS(1000), + [aux_sym_cmd_identifier_token8] = ACTIONS(998), + [aux_sym_cmd_identifier_token9] = ACTIONS(998), + [aux_sym_cmd_identifier_token10] = ACTIONS(1000), + [aux_sym_cmd_identifier_token11] = ACTIONS(1000), + [aux_sym_cmd_identifier_token12] = ACTIONS(998), + [aux_sym_cmd_identifier_token13] = ACTIONS(998), + [aux_sym_cmd_identifier_token14] = ACTIONS(998), + [aux_sym_cmd_identifier_token15] = ACTIONS(998), + [aux_sym_cmd_identifier_token16] = ACTIONS(1000), + [aux_sym_cmd_identifier_token17] = ACTIONS(1000), + [aux_sym_cmd_identifier_token18] = ACTIONS(1000), + [aux_sym_cmd_identifier_token19] = ACTIONS(1000), + [aux_sym_cmd_identifier_token20] = ACTIONS(1000), + [aux_sym_cmd_identifier_token21] = ACTIONS(1000), + [aux_sym_cmd_identifier_token22] = ACTIONS(1000), + [aux_sym_cmd_identifier_token23] = ACTIONS(1000), + [aux_sym_cmd_identifier_token24] = ACTIONS(1000), + [aux_sym_cmd_identifier_token25] = ACTIONS(1000), + [aux_sym_cmd_identifier_token26] = ACTIONS(1000), + [aux_sym_cmd_identifier_token27] = ACTIONS(1000), + [aux_sym_cmd_identifier_token28] = ACTIONS(1000), + [aux_sym_cmd_identifier_token29] = ACTIONS(1000), + [aux_sym_cmd_identifier_token30] = ACTIONS(1000), + [aux_sym_cmd_identifier_token31] = ACTIONS(1000), + [aux_sym_cmd_identifier_token32] = ACTIONS(1000), + [aux_sym_cmd_identifier_token33] = ACTIONS(1000), + [aux_sym_cmd_identifier_token34] = ACTIONS(998), + [aux_sym_cmd_identifier_token35] = ACTIONS(1000), + [aux_sym_cmd_identifier_token36] = ACTIONS(1000), + [aux_sym_cmd_identifier_token37] = ACTIONS(1000), + [aux_sym_cmd_identifier_token38] = ACTIONS(998), + [aux_sym_cmd_identifier_token39] = ACTIONS(1000), + [aux_sym_cmd_identifier_token40] = ACTIONS(1000), + [anon_sym_def] = ACTIONS(998), + [anon_sym_export_DASHenv] = ACTIONS(998), + [anon_sym_extern] = ACTIONS(998), + [anon_sym_module] = ACTIONS(998), + [anon_sym_use] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(1000), + [anon_sym_error] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(998), + [anon_sym_break] = ACTIONS(998), + [anon_sym_continue] = ACTIONS(998), + [anon_sym_for] = ACTIONS(998), + [anon_sym_in2] = ACTIONS(998), + [anon_sym_loop] = ACTIONS(998), + [anon_sym_make] = ACTIONS(998), + [anon_sym_while] = ACTIONS(998), + [anon_sym_do] = ACTIONS(998), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(998), + [anon_sym_match] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_try] = ACTIONS(998), + [anon_sym_catch] = ACTIONS(998), + [anon_sym_return] = ACTIONS(998), + [anon_sym_source] = ACTIONS(998), + [anon_sym_source_DASHenv] = ACTIONS(998), + [anon_sym_register] = ACTIONS(998), + [anon_sym_hide] = ACTIONS(998), + [anon_sym_hide_DASHenv] = ACTIONS(998), + [anon_sym_overlay] = ACTIONS(998), + [anon_sym_as] = ACTIONS(998), + [anon_sym_QMARK2] = ACTIONS(1000), + [anon_sym_PLUS2] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1000), + [anon_sym_DOT_DOT2] = ACTIONS(998), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1000), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1000), + [aux_sym__val_number_decimal_token1] = ACTIONS(998), + [aux_sym__val_number_decimal_token2] = ACTIONS(1000), + [aux_sym__val_number_decimal_token3] = ACTIONS(1000), + [aux_sym__val_number_decimal_token4] = ACTIONS(1000), + [aux_sym__val_number_token1] = ACTIONS(1000), + [aux_sym__val_number_token2] = ACTIONS(1000), + [aux_sym__val_number_token3] = ACTIONS(1000), + [aux_sym__val_number_token4] = ACTIONS(998), + [aux_sym__val_number_token5] = ACTIONS(998), + [aux_sym__val_number_token6] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym__str_single_quotes] = ACTIONS(1000), + [sym__str_back_ticks] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1000), + }, + [429] = { + [sym_comment] = STATE(429), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [aux_sym_cmd_identifier_token1] = ACTIONS(1002), + [aux_sym_cmd_identifier_token2] = ACTIONS(1004), + [aux_sym_cmd_identifier_token3] = ACTIONS(1004), + [aux_sym_cmd_identifier_token4] = ACTIONS(1004), + [aux_sym_cmd_identifier_token5] = ACTIONS(1004), + [aux_sym_cmd_identifier_token6] = ACTIONS(1004), + [aux_sym_cmd_identifier_token7] = ACTIONS(1004), + [aux_sym_cmd_identifier_token8] = ACTIONS(1002), + [aux_sym_cmd_identifier_token9] = ACTIONS(1002), + [aux_sym_cmd_identifier_token10] = ACTIONS(1004), + [aux_sym_cmd_identifier_token11] = ACTIONS(1004), + [aux_sym_cmd_identifier_token12] = ACTIONS(1002), + [aux_sym_cmd_identifier_token13] = ACTIONS(1002), + [aux_sym_cmd_identifier_token14] = ACTIONS(1002), + [aux_sym_cmd_identifier_token15] = ACTIONS(1002), + [aux_sym_cmd_identifier_token16] = ACTIONS(1004), + [aux_sym_cmd_identifier_token17] = ACTIONS(1004), + [aux_sym_cmd_identifier_token18] = ACTIONS(1004), + [aux_sym_cmd_identifier_token19] = ACTIONS(1004), + [aux_sym_cmd_identifier_token20] = ACTIONS(1004), + [aux_sym_cmd_identifier_token21] = ACTIONS(1004), + [aux_sym_cmd_identifier_token22] = ACTIONS(1004), + [aux_sym_cmd_identifier_token23] = ACTIONS(1004), + [aux_sym_cmd_identifier_token24] = ACTIONS(1004), + [aux_sym_cmd_identifier_token25] = ACTIONS(1004), + [aux_sym_cmd_identifier_token26] = ACTIONS(1004), + [aux_sym_cmd_identifier_token27] = ACTIONS(1004), + [aux_sym_cmd_identifier_token28] = ACTIONS(1004), + [aux_sym_cmd_identifier_token29] = ACTIONS(1004), + [aux_sym_cmd_identifier_token30] = ACTIONS(1004), + [aux_sym_cmd_identifier_token31] = ACTIONS(1004), + [aux_sym_cmd_identifier_token32] = ACTIONS(1004), + [aux_sym_cmd_identifier_token33] = ACTIONS(1004), + [aux_sym_cmd_identifier_token34] = ACTIONS(1002), + [aux_sym_cmd_identifier_token35] = ACTIONS(1004), + [aux_sym_cmd_identifier_token36] = ACTIONS(1004), + [aux_sym_cmd_identifier_token37] = ACTIONS(1004), + [aux_sym_cmd_identifier_token38] = ACTIONS(1002), + [aux_sym_cmd_identifier_token39] = ACTIONS(1004), + [aux_sym_cmd_identifier_token40] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in2] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_make] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_else] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_catch] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_as] = ACTIONS(1002), + [anon_sym_QMARK2] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1004), + [anon_sym_DOT_DOT2] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(1004), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_token1] = ACTIONS(1004), + [aux_sym__val_number_token2] = ACTIONS(1004), + [aux_sym__val_number_token3] = ACTIONS(1004), + [aux_sym__val_number_token4] = ACTIONS(1002), + [aux_sym__val_number_token5] = ACTIONS(1002), + [aux_sym__val_number_token6] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1004), + [sym__str_single_quotes] = ACTIONS(1004), + [sym__str_back_ticks] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1004), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1004), + }, + [430] = { + [sym_cell_path] = STATE(652), + [sym_path] = STATE(567), + [sym_comment] = STATE(430), + [aux_sym_cell_path_repeat1] = STATE(495), + [anon_sym_export] = ACTIONS(1938), + [anon_sym_alias] = ACTIONS(1938), + [anon_sym_let] = ACTIONS(1938), + [anon_sym_let_DASHenv] = ACTIONS(1938), + [anon_sym_mut] = ACTIONS(1938), + [anon_sym_const] = ACTIONS(1938), + [aux_sym_cmd_identifier_token1] = ACTIONS(1938), + [aux_sym_cmd_identifier_token2] = ACTIONS(1938), + [aux_sym_cmd_identifier_token3] = ACTIONS(1938), + [aux_sym_cmd_identifier_token4] = ACTIONS(1938), + [aux_sym_cmd_identifier_token5] = ACTIONS(1938), + [aux_sym_cmd_identifier_token6] = ACTIONS(1938), + [aux_sym_cmd_identifier_token7] = ACTIONS(1938), + [aux_sym_cmd_identifier_token8] = ACTIONS(1938), + [aux_sym_cmd_identifier_token9] = ACTIONS(1938), + [aux_sym_cmd_identifier_token10] = ACTIONS(1938), + [aux_sym_cmd_identifier_token11] = ACTIONS(1938), + [aux_sym_cmd_identifier_token12] = ACTIONS(1938), + [aux_sym_cmd_identifier_token13] = ACTIONS(1938), + [aux_sym_cmd_identifier_token14] = ACTIONS(1938), + [aux_sym_cmd_identifier_token15] = ACTIONS(1938), + [aux_sym_cmd_identifier_token16] = ACTIONS(1938), + [aux_sym_cmd_identifier_token17] = ACTIONS(1938), + [aux_sym_cmd_identifier_token18] = ACTIONS(1938), + [aux_sym_cmd_identifier_token19] = ACTIONS(1938), + [aux_sym_cmd_identifier_token20] = ACTIONS(1938), + [aux_sym_cmd_identifier_token21] = ACTIONS(1938), + [aux_sym_cmd_identifier_token22] = ACTIONS(1938), + [aux_sym_cmd_identifier_token23] = ACTIONS(1938), + [aux_sym_cmd_identifier_token24] = ACTIONS(1938), + [aux_sym_cmd_identifier_token25] = ACTIONS(1938), + [aux_sym_cmd_identifier_token26] = ACTIONS(1938), + [aux_sym_cmd_identifier_token27] = ACTIONS(1938), + [aux_sym_cmd_identifier_token28] = ACTIONS(1938), + [aux_sym_cmd_identifier_token29] = ACTIONS(1938), + [aux_sym_cmd_identifier_token30] = ACTIONS(1938), + [aux_sym_cmd_identifier_token31] = ACTIONS(1938), + [aux_sym_cmd_identifier_token32] = ACTIONS(1938), + [aux_sym_cmd_identifier_token33] = ACTIONS(1938), + [aux_sym_cmd_identifier_token34] = ACTIONS(1938), + [aux_sym_cmd_identifier_token35] = ACTIONS(1938), + [aux_sym_cmd_identifier_token36] = ACTIONS(1938), + [aux_sym_cmd_identifier_token37] = ACTIONS(1938), + [aux_sym_cmd_identifier_token38] = ACTIONS(1938), + [aux_sym_cmd_identifier_token39] = ACTIONS(1938), + [aux_sym_cmd_identifier_token40] = ACTIONS(1938), + [anon_sym_def] = ACTIONS(1938), + [anon_sym_export_DASHenv] = ACTIONS(1938), + [anon_sym_extern] = ACTIONS(1938), + [anon_sym_module] = ACTIONS(1938), + [anon_sym_use] = ACTIONS(1938), + [anon_sym_LPAREN] = ACTIONS(1938), + [anon_sym_DOLLAR] = ACTIONS(1938), + [anon_sym_error] = ACTIONS(1938), + [anon_sym_DASH2] = ACTIONS(1938), + [anon_sym_break] = ACTIONS(1938), + [anon_sym_continue] = ACTIONS(1938), + [anon_sym_for] = ACTIONS(1938), + [anon_sym_in2] = ACTIONS(1938), + [anon_sym_loop] = ACTIONS(1938), + [anon_sym_make] = ACTIONS(1938), + [anon_sym_while] = ACTIONS(1938), + [anon_sym_do] = ACTIONS(1938), + [anon_sym_if] = ACTIONS(1938), + [anon_sym_else] = ACTIONS(1938), + [anon_sym_match] = ACTIONS(1938), + [anon_sym_RBRACE] = ACTIONS(1938), + [anon_sym_try] = ACTIONS(1938), + [anon_sym_catch] = ACTIONS(1938), + [anon_sym_return] = ACTIONS(1938), + [anon_sym_source] = ACTIONS(1938), + [anon_sym_source_DASHenv] = ACTIONS(1938), + [anon_sym_register] = ACTIONS(1938), + [anon_sym_hide] = ACTIONS(1938), + [anon_sym_hide_DASHenv] = ACTIONS(1938), + [anon_sym_overlay] = ACTIONS(1938), + [anon_sym_as] = ACTIONS(1938), + [anon_sym_PLUS2] = ACTIONS(1938), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1938), + [anon_sym_DOT] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1938), + [aux_sym__val_number_decimal_token1] = ACTIONS(1938), + [aux_sym__val_number_decimal_token2] = ACTIONS(1938), + [aux_sym__val_number_decimal_token3] = ACTIONS(1938), + [aux_sym__val_number_decimal_token4] = ACTIONS(1938), + [aux_sym__val_number_token1] = ACTIONS(1938), + [aux_sym__val_number_token2] = ACTIONS(1938), + [aux_sym__val_number_token3] = ACTIONS(1938), + [aux_sym__val_number_token4] = ACTIONS(1938), + [aux_sym__val_number_token5] = ACTIONS(1938), + [aux_sym__val_number_token6] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1938), + [sym__str_single_quotes] = ACTIONS(1938), + [sym__str_back_ticks] = ACTIONS(1938), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1938), + [sym__entry_separator] = ACTIONS(1940), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1950), + [sym_raw_string_begin] = ACTIONS(1940), }, - [413] = { - [sym_cell_path] = STATE(618), - [sym_path] = STATE(569), - [sym_comment] = STATE(413), - [aux_sym_cell_path_repeat1] = STATE(458), + [431] = { + [sym_cell_path] = STATE(653), + [sym_path] = STATE(567), + [sym_comment] = STATE(431), + [aux_sym_cell_path_repeat1] = STATE(495), [anon_sym_export] = ACTIONS(961), [anon_sym_alias] = ACTIONS(961), [anon_sym_let] = ACTIONS(961), @@ -120789,7 +122982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(961), [anon_sym_PLUS2] = ACTIONS(961), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DOT] = ACTIONS(1849), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(961), [aux_sym__val_number_decimal_token1] = ACTIONS(961), [aux_sym__val_number_decimal_token2] = ACTIONS(961), @@ -120809,112 +123002,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(963), }, - [414] = { - [sym_cell_path] = STATE(632), - [sym_path] = STATE(569), - [sym_comment] = STATE(414), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1952), - [anon_sym_alias] = ACTIONS(1952), - [anon_sym_let] = ACTIONS(1952), - [anon_sym_let_DASHenv] = ACTIONS(1952), - [anon_sym_mut] = ACTIONS(1952), - [anon_sym_const] = ACTIONS(1952), - [aux_sym_cmd_identifier_token1] = ACTIONS(1952), - [aux_sym_cmd_identifier_token2] = ACTIONS(1952), - [aux_sym_cmd_identifier_token3] = ACTIONS(1952), - [aux_sym_cmd_identifier_token4] = ACTIONS(1952), - [aux_sym_cmd_identifier_token5] = ACTIONS(1952), - [aux_sym_cmd_identifier_token6] = ACTIONS(1952), - [aux_sym_cmd_identifier_token7] = ACTIONS(1952), - [aux_sym_cmd_identifier_token8] = ACTIONS(1952), - [aux_sym_cmd_identifier_token9] = ACTIONS(1952), - [aux_sym_cmd_identifier_token10] = ACTIONS(1952), - [aux_sym_cmd_identifier_token11] = ACTIONS(1952), - [aux_sym_cmd_identifier_token12] = ACTIONS(1952), - [aux_sym_cmd_identifier_token13] = ACTIONS(1952), - [aux_sym_cmd_identifier_token14] = ACTIONS(1952), - [aux_sym_cmd_identifier_token15] = ACTIONS(1952), - [aux_sym_cmd_identifier_token16] = ACTIONS(1952), - [aux_sym_cmd_identifier_token17] = ACTIONS(1952), - [aux_sym_cmd_identifier_token18] = ACTIONS(1952), - [aux_sym_cmd_identifier_token19] = ACTIONS(1952), - [aux_sym_cmd_identifier_token20] = ACTIONS(1952), - [aux_sym_cmd_identifier_token21] = ACTIONS(1952), - [aux_sym_cmd_identifier_token22] = ACTIONS(1952), - [aux_sym_cmd_identifier_token23] = ACTIONS(1952), - [aux_sym_cmd_identifier_token24] = ACTIONS(1952), - [aux_sym_cmd_identifier_token25] = ACTIONS(1952), - [aux_sym_cmd_identifier_token26] = ACTIONS(1952), - [aux_sym_cmd_identifier_token27] = ACTIONS(1952), - [aux_sym_cmd_identifier_token28] = ACTIONS(1952), - [aux_sym_cmd_identifier_token29] = ACTIONS(1952), - [aux_sym_cmd_identifier_token30] = ACTIONS(1952), - [aux_sym_cmd_identifier_token31] = ACTIONS(1952), - [aux_sym_cmd_identifier_token32] = ACTIONS(1952), - [aux_sym_cmd_identifier_token33] = ACTIONS(1952), - [aux_sym_cmd_identifier_token34] = ACTIONS(1952), - [aux_sym_cmd_identifier_token35] = ACTIONS(1952), - [aux_sym_cmd_identifier_token36] = ACTIONS(1952), - [aux_sym_cmd_identifier_token37] = ACTIONS(1952), - [aux_sym_cmd_identifier_token38] = ACTIONS(1952), - [aux_sym_cmd_identifier_token39] = ACTIONS(1952), - [aux_sym_cmd_identifier_token40] = ACTIONS(1952), - [anon_sym_def] = ACTIONS(1952), - [anon_sym_export_DASHenv] = ACTIONS(1952), - [anon_sym_extern] = ACTIONS(1952), - [anon_sym_module] = ACTIONS(1952), - [anon_sym_use] = ACTIONS(1952), - [anon_sym_LPAREN] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1952), - [anon_sym_error] = ACTIONS(1952), - [anon_sym_DASH2] = ACTIONS(1952), - [anon_sym_break] = ACTIONS(1952), - [anon_sym_continue] = ACTIONS(1952), - [anon_sym_for] = ACTIONS(1952), - [anon_sym_in2] = ACTIONS(1952), - [anon_sym_loop] = ACTIONS(1952), - [anon_sym_make] = ACTIONS(1952), - [anon_sym_while] = ACTIONS(1952), - [anon_sym_do] = ACTIONS(1952), - [anon_sym_if] = ACTIONS(1952), - [anon_sym_else] = ACTIONS(1952), - [anon_sym_match] = ACTIONS(1952), - [anon_sym_RBRACE] = ACTIONS(1952), - [anon_sym_try] = ACTIONS(1952), - [anon_sym_catch] = ACTIONS(1952), - [anon_sym_return] = ACTIONS(1952), - [anon_sym_source] = ACTIONS(1952), - [anon_sym_source_DASHenv] = ACTIONS(1952), - [anon_sym_register] = ACTIONS(1952), - [anon_sym_hide] = ACTIONS(1952), - [anon_sym_hide_DASHenv] = ACTIONS(1952), - [anon_sym_overlay] = ACTIONS(1952), - [anon_sym_as] = ACTIONS(1952), - [anon_sym_PLUS2] = ACTIONS(1952), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1952), - [anon_sym_DOT] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1952), - [aux_sym__val_number_decimal_token1] = ACTIONS(1952), - [aux_sym__val_number_decimal_token2] = ACTIONS(1952), - [aux_sym__val_number_decimal_token3] = ACTIONS(1952), - [aux_sym__val_number_decimal_token4] = ACTIONS(1952), - [aux_sym__val_number_token1] = ACTIONS(1952), - [aux_sym__val_number_token2] = ACTIONS(1952), - [aux_sym__val_number_token3] = ACTIONS(1952), - [aux_sym__val_number_token4] = ACTIONS(1952), - [aux_sym__val_number_token5] = ACTIONS(1952), - [aux_sym__val_number_token6] = ACTIONS(1952), - [anon_sym_DQUOTE] = ACTIONS(1952), - [sym__str_single_quotes] = ACTIONS(1952), - [sym__str_back_ticks] = ACTIONS(1952), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1952), - [sym__entry_separator] = ACTIONS(1954), + [432] = { + [sym_comment] = STATE(432), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_alias] = ACTIONS(1014), + [anon_sym_let] = ACTIONS(1014), + [anon_sym_let_DASHenv] = ACTIONS(1014), + [anon_sym_mut] = ACTIONS(1014), + [anon_sym_const] = ACTIONS(1014), + [aux_sym_cmd_identifier_token1] = ACTIONS(1014), + [aux_sym_cmd_identifier_token2] = ACTIONS(1014), + [aux_sym_cmd_identifier_token3] = ACTIONS(1014), + [aux_sym_cmd_identifier_token4] = ACTIONS(1014), + [aux_sym_cmd_identifier_token5] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1014), + [aux_sym_cmd_identifier_token7] = ACTIONS(1014), + [aux_sym_cmd_identifier_token8] = ACTIONS(1014), + [aux_sym_cmd_identifier_token9] = ACTIONS(1014), + [aux_sym_cmd_identifier_token10] = ACTIONS(1014), + [aux_sym_cmd_identifier_token11] = ACTIONS(1014), + [aux_sym_cmd_identifier_token12] = ACTIONS(1014), + [aux_sym_cmd_identifier_token13] = ACTIONS(1014), + [aux_sym_cmd_identifier_token14] = ACTIONS(1014), + [aux_sym_cmd_identifier_token15] = ACTIONS(1014), + [aux_sym_cmd_identifier_token16] = ACTIONS(1014), + [aux_sym_cmd_identifier_token17] = ACTIONS(1014), + [aux_sym_cmd_identifier_token18] = ACTIONS(1014), + [aux_sym_cmd_identifier_token19] = ACTIONS(1014), + [aux_sym_cmd_identifier_token20] = ACTIONS(1014), + [aux_sym_cmd_identifier_token21] = ACTIONS(1014), + [aux_sym_cmd_identifier_token22] = ACTIONS(1014), + [aux_sym_cmd_identifier_token23] = ACTIONS(1014), + [aux_sym_cmd_identifier_token24] = ACTIONS(1014), + [aux_sym_cmd_identifier_token25] = ACTIONS(1014), + [aux_sym_cmd_identifier_token26] = ACTIONS(1014), + [aux_sym_cmd_identifier_token27] = ACTIONS(1014), + [aux_sym_cmd_identifier_token28] = ACTIONS(1014), + [aux_sym_cmd_identifier_token29] = ACTIONS(1014), + [aux_sym_cmd_identifier_token30] = ACTIONS(1014), + [aux_sym_cmd_identifier_token31] = ACTIONS(1014), + [aux_sym_cmd_identifier_token32] = ACTIONS(1014), + [aux_sym_cmd_identifier_token33] = ACTIONS(1014), + [aux_sym_cmd_identifier_token34] = ACTIONS(1014), + [aux_sym_cmd_identifier_token35] = ACTIONS(1014), + [aux_sym_cmd_identifier_token36] = ACTIONS(1014), + [aux_sym_cmd_identifier_token37] = ACTIONS(1014), + [aux_sym_cmd_identifier_token38] = ACTIONS(1014), + [aux_sym_cmd_identifier_token39] = ACTIONS(1014), + [aux_sym_cmd_identifier_token40] = ACTIONS(1014), + [anon_sym_def] = ACTIONS(1014), + [anon_sym_export_DASHenv] = ACTIONS(1014), + [anon_sym_extern] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_use] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1014), + [anon_sym_DOLLAR] = ACTIONS(1014), + [anon_sym_error] = ACTIONS(1014), + [anon_sym_DASH2] = ACTIONS(1014), + [anon_sym_break] = ACTIONS(1014), + [anon_sym_continue] = ACTIONS(1014), + [anon_sym_for] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_loop] = ACTIONS(1014), + [anon_sym_make] = ACTIONS(1014), + [anon_sym_while] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1014), + [anon_sym_if] = ACTIONS(1014), + [anon_sym_else] = ACTIONS(1014), + [anon_sym_match] = ACTIONS(1014), + [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_try] = ACTIONS(1014), + [anon_sym_catch] = ACTIONS(1014), + [anon_sym_return] = ACTIONS(1014), + [anon_sym_source] = ACTIONS(1014), + [anon_sym_source_DASHenv] = ACTIONS(1014), + [anon_sym_register] = ACTIONS(1014), + [anon_sym_hide] = ACTIONS(1014), + [anon_sym_hide_DASHenv] = ACTIONS(1014), + [anon_sym_overlay] = ACTIONS(1014), + [anon_sym_as] = ACTIONS(1014), + [anon_sym_PLUS2] = ACTIONS(1014), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1014), + [anon_sym_DOT_DOT2] = ACTIONS(1014), + [anon_sym_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1016), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1016), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1014), + [aux_sym__val_number_decimal_token1] = ACTIONS(1014), + [aux_sym__val_number_decimal_token2] = ACTIONS(1014), + [aux_sym__val_number_decimal_token3] = ACTIONS(1014), + [aux_sym__val_number_decimal_token4] = ACTIONS(1014), + [aux_sym__val_number_token1] = ACTIONS(1014), + [aux_sym__val_number_token2] = ACTIONS(1014), + [aux_sym__val_number_token3] = ACTIONS(1014), + [aux_sym__val_number_token4] = ACTIONS(1014), + [aux_sym__val_number_token5] = ACTIONS(1014), + [aux_sym__val_number_token6] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym__str_single_quotes] = ACTIONS(1014), + [sym__str_back_ticks] = ACTIONS(1014), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1014), + [sym__entry_separator] = ACTIONS(1016), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1954), + [sym_raw_string_begin] = ACTIONS(1016), }, - [415] = { - [sym_comment] = STATE(415), + [433] = { + [sym_cell_path] = STATE(625), + [sym_path] = STATE(567), + [sym_comment] = STATE(433), + [aux_sym_cell_path_repeat1] = STATE(495), + [anon_sym_export] = ACTIONS(1942), + [anon_sym_alias] = ACTIONS(1942), + [anon_sym_let] = ACTIONS(1942), + [anon_sym_let_DASHenv] = ACTIONS(1942), + [anon_sym_mut] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1942), + [aux_sym_cmd_identifier_token1] = ACTIONS(1942), + [aux_sym_cmd_identifier_token2] = ACTIONS(1942), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [aux_sym_cmd_identifier_token6] = ACTIONS(1942), + [aux_sym_cmd_identifier_token7] = ACTIONS(1942), + [aux_sym_cmd_identifier_token8] = ACTIONS(1942), + [aux_sym_cmd_identifier_token9] = ACTIONS(1942), + [aux_sym_cmd_identifier_token10] = ACTIONS(1942), + [aux_sym_cmd_identifier_token11] = ACTIONS(1942), + [aux_sym_cmd_identifier_token12] = ACTIONS(1942), + [aux_sym_cmd_identifier_token13] = ACTIONS(1942), + [aux_sym_cmd_identifier_token14] = ACTIONS(1942), + [aux_sym_cmd_identifier_token15] = ACTIONS(1942), + [aux_sym_cmd_identifier_token16] = ACTIONS(1942), + [aux_sym_cmd_identifier_token17] = ACTIONS(1942), + [aux_sym_cmd_identifier_token18] = ACTIONS(1942), + [aux_sym_cmd_identifier_token19] = ACTIONS(1942), + [aux_sym_cmd_identifier_token20] = ACTIONS(1942), + [aux_sym_cmd_identifier_token21] = ACTIONS(1942), + [aux_sym_cmd_identifier_token22] = ACTIONS(1942), + [aux_sym_cmd_identifier_token23] = ACTIONS(1942), + [aux_sym_cmd_identifier_token24] = ACTIONS(1942), + [aux_sym_cmd_identifier_token25] = ACTIONS(1942), + [aux_sym_cmd_identifier_token26] = ACTIONS(1942), + [aux_sym_cmd_identifier_token27] = ACTIONS(1942), + [aux_sym_cmd_identifier_token28] = ACTIONS(1942), + [aux_sym_cmd_identifier_token29] = ACTIONS(1942), + [aux_sym_cmd_identifier_token30] = ACTIONS(1942), + [aux_sym_cmd_identifier_token31] = ACTIONS(1942), + [aux_sym_cmd_identifier_token32] = ACTIONS(1942), + [aux_sym_cmd_identifier_token33] = ACTIONS(1942), + [aux_sym_cmd_identifier_token34] = ACTIONS(1942), + [aux_sym_cmd_identifier_token35] = ACTIONS(1942), + [aux_sym_cmd_identifier_token36] = ACTIONS(1942), + [aux_sym_cmd_identifier_token37] = ACTIONS(1942), + [aux_sym_cmd_identifier_token38] = ACTIONS(1942), + [aux_sym_cmd_identifier_token39] = ACTIONS(1942), + [aux_sym_cmd_identifier_token40] = ACTIONS(1942), + [anon_sym_def] = ACTIONS(1942), + [anon_sym_export_DASHenv] = ACTIONS(1942), + [anon_sym_extern] = ACTIONS(1942), + [anon_sym_module] = ACTIONS(1942), + [anon_sym_use] = ACTIONS(1942), + [anon_sym_LPAREN] = ACTIONS(1942), + [anon_sym_DOLLAR] = ACTIONS(1942), + [anon_sym_error] = ACTIONS(1942), + [anon_sym_DASH2] = ACTIONS(1942), + [anon_sym_break] = ACTIONS(1942), + [anon_sym_continue] = ACTIONS(1942), + [anon_sym_for] = ACTIONS(1942), + [anon_sym_in2] = ACTIONS(1942), + [anon_sym_loop] = ACTIONS(1942), + [anon_sym_make] = ACTIONS(1942), + [anon_sym_while] = ACTIONS(1942), + [anon_sym_do] = ACTIONS(1942), + [anon_sym_if] = ACTIONS(1942), + [anon_sym_else] = ACTIONS(1942), + [anon_sym_match] = ACTIONS(1942), + [anon_sym_RBRACE] = ACTIONS(1942), + [anon_sym_try] = ACTIONS(1942), + [anon_sym_catch] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1942), + [anon_sym_source] = ACTIONS(1942), + [anon_sym_source_DASHenv] = ACTIONS(1942), + [anon_sym_register] = ACTIONS(1942), + [anon_sym_hide] = ACTIONS(1942), + [anon_sym_hide_DASHenv] = ACTIONS(1942), + [anon_sym_overlay] = ACTIONS(1942), + [anon_sym_as] = ACTIONS(1942), + [anon_sym_PLUS2] = ACTIONS(1942), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1942), + [anon_sym_DOT] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1942), + [aux_sym__val_number_decimal_token1] = ACTIONS(1942), + [aux_sym__val_number_decimal_token2] = ACTIONS(1942), + [aux_sym__val_number_decimal_token3] = ACTIONS(1942), + [aux_sym__val_number_decimal_token4] = ACTIONS(1942), + [aux_sym__val_number_token1] = ACTIONS(1942), + [aux_sym__val_number_token2] = ACTIONS(1942), + [aux_sym__val_number_token3] = ACTIONS(1942), + [aux_sym__val_number_token4] = ACTIONS(1942), + [aux_sym__val_number_token5] = ACTIONS(1942), + [aux_sym__val_number_token6] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym__str_single_quotes] = ACTIONS(1942), + [sym__str_back_ticks] = ACTIONS(1942), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1942), + [sym__entry_separator] = ACTIONS(1944), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1944), + }, + [434] = { + [sym_cell_path] = STATE(687), + [sym_path] = STATE(567), + [sym_comment] = STATE(434), + [aux_sym_cell_path_repeat1] = STATE(495), + [anon_sym_export] = ACTIONS(1946), + [anon_sym_alias] = ACTIONS(1946), + [anon_sym_let] = ACTIONS(1946), + [anon_sym_let_DASHenv] = ACTIONS(1946), + [anon_sym_mut] = ACTIONS(1946), + [anon_sym_const] = ACTIONS(1946), + [aux_sym_cmd_identifier_token1] = ACTIONS(1946), + [aux_sym_cmd_identifier_token2] = ACTIONS(1946), + [aux_sym_cmd_identifier_token3] = ACTIONS(1946), + [aux_sym_cmd_identifier_token4] = ACTIONS(1946), + [aux_sym_cmd_identifier_token5] = ACTIONS(1946), + [aux_sym_cmd_identifier_token6] = ACTIONS(1946), + [aux_sym_cmd_identifier_token7] = ACTIONS(1946), + [aux_sym_cmd_identifier_token8] = ACTIONS(1946), + [aux_sym_cmd_identifier_token9] = ACTIONS(1946), + [aux_sym_cmd_identifier_token10] = ACTIONS(1946), + [aux_sym_cmd_identifier_token11] = ACTIONS(1946), + [aux_sym_cmd_identifier_token12] = ACTIONS(1946), + [aux_sym_cmd_identifier_token13] = ACTIONS(1946), + [aux_sym_cmd_identifier_token14] = ACTIONS(1946), + [aux_sym_cmd_identifier_token15] = ACTIONS(1946), + [aux_sym_cmd_identifier_token16] = ACTIONS(1946), + [aux_sym_cmd_identifier_token17] = ACTIONS(1946), + [aux_sym_cmd_identifier_token18] = ACTIONS(1946), + [aux_sym_cmd_identifier_token19] = ACTIONS(1946), + [aux_sym_cmd_identifier_token20] = ACTIONS(1946), + [aux_sym_cmd_identifier_token21] = ACTIONS(1946), + [aux_sym_cmd_identifier_token22] = ACTIONS(1946), + [aux_sym_cmd_identifier_token23] = ACTIONS(1946), + [aux_sym_cmd_identifier_token24] = ACTIONS(1946), + [aux_sym_cmd_identifier_token25] = ACTIONS(1946), + [aux_sym_cmd_identifier_token26] = ACTIONS(1946), + [aux_sym_cmd_identifier_token27] = ACTIONS(1946), + [aux_sym_cmd_identifier_token28] = ACTIONS(1946), + [aux_sym_cmd_identifier_token29] = ACTIONS(1946), + [aux_sym_cmd_identifier_token30] = ACTIONS(1946), + [aux_sym_cmd_identifier_token31] = ACTIONS(1946), + [aux_sym_cmd_identifier_token32] = ACTIONS(1946), + [aux_sym_cmd_identifier_token33] = ACTIONS(1946), + [aux_sym_cmd_identifier_token34] = ACTIONS(1946), + [aux_sym_cmd_identifier_token35] = ACTIONS(1946), + [aux_sym_cmd_identifier_token36] = ACTIONS(1946), + [aux_sym_cmd_identifier_token37] = ACTIONS(1946), + [aux_sym_cmd_identifier_token38] = ACTIONS(1946), + [aux_sym_cmd_identifier_token39] = ACTIONS(1946), + [aux_sym_cmd_identifier_token40] = ACTIONS(1946), + [anon_sym_def] = ACTIONS(1946), + [anon_sym_export_DASHenv] = ACTIONS(1946), + [anon_sym_extern] = ACTIONS(1946), + [anon_sym_module] = ACTIONS(1946), + [anon_sym_use] = ACTIONS(1946), + [anon_sym_LPAREN] = ACTIONS(1946), + [anon_sym_DOLLAR] = ACTIONS(1946), + [anon_sym_error] = ACTIONS(1946), + [anon_sym_DASH2] = ACTIONS(1946), + [anon_sym_break] = ACTIONS(1946), + [anon_sym_continue] = ACTIONS(1946), + [anon_sym_for] = ACTIONS(1946), + [anon_sym_in2] = ACTIONS(1946), + [anon_sym_loop] = ACTIONS(1946), + [anon_sym_make] = ACTIONS(1946), + [anon_sym_while] = ACTIONS(1946), + [anon_sym_do] = ACTIONS(1946), + [anon_sym_if] = ACTIONS(1946), + [anon_sym_else] = ACTIONS(1946), + [anon_sym_match] = ACTIONS(1946), + [anon_sym_RBRACE] = ACTIONS(1946), + [anon_sym_try] = ACTIONS(1946), + [anon_sym_catch] = ACTIONS(1946), + [anon_sym_return] = ACTIONS(1946), + [anon_sym_source] = ACTIONS(1946), + [anon_sym_source_DASHenv] = ACTIONS(1946), + [anon_sym_register] = ACTIONS(1946), + [anon_sym_hide] = ACTIONS(1946), + [anon_sym_hide_DASHenv] = ACTIONS(1946), + [anon_sym_overlay] = ACTIONS(1946), + [anon_sym_as] = ACTIONS(1946), + [anon_sym_PLUS2] = ACTIONS(1946), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1946), + [anon_sym_DOT] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1946), + [aux_sym__val_number_decimal_token1] = ACTIONS(1946), + [aux_sym__val_number_decimal_token2] = ACTIONS(1946), + [aux_sym__val_number_decimal_token3] = ACTIONS(1946), + [aux_sym__val_number_decimal_token4] = ACTIONS(1946), + [aux_sym__val_number_token1] = ACTIONS(1946), + [aux_sym__val_number_token2] = ACTIONS(1946), + [aux_sym__val_number_token3] = ACTIONS(1946), + [aux_sym__val_number_token4] = ACTIONS(1946), + [aux_sym__val_number_token5] = ACTIONS(1946), + [aux_sym__val_number_token6] = ACTIONS(1946), + [anon_sym_DQUOTE] = ACTIONS(1946), + [sym__str_single_quotes] = ACTIONS(1946), + [sym__str_back_ticks] = ACTIONS(1946), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1946), + [sym__entry_separator] = ACTIONS(1948), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1948), + }, + [435] = { + [sym_comment] = STATE(435), [anon_sym_export] = ACTIONS(978), [anon_sym_alias] = ACTIONS(978), [anon_sym_let] = ACTIONS(978), @@ -120992,7 +123393,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(978), [anon_sym_overlay] = ACTIONS(978), [anon_sym_as] = ACTIONS(978), - [anon_sym_QMARK2] = ACTIONS(1956), + [anon_sym_QMARK2] = ACTIONS(1950), [anon_sym_PLUS2] = ACTIONS(978), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(980), [anon_sym_DOT_DOT2] = ACTIONS(978), @@ -121017,8 +123418,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(980), }, - [416] = { - [sym_comment] = STATE(416), + [436] = { + [sym_expr_parenthesized] = STATE(4270), + [sym__spread_parenthesized] = STATE(4636), + [sym_val_range] = STATE(4637), + [sym__val_range] = STATE(8054), + [sym__val_range_with_end] = STATE(7607), + [sym__value] = STATE(4637), + [sym_val_nothing] = STATE(4729), + [sym_val_bool] = STATE(4448), + [sym__spread_variable] = STATE(4638), + [sym_val_variable] = STATE(4308), + [sym_val_number] = STATE(4729), + [sym__val_number_decimal] = STATE(4053), + [sym__val_number] = STATE(4716), + [sym_val_duration] = STATE(4729), + [sym_val_filesize] = STATE(4729), + [sym_val_binary] = STATE(4729), + [sym_val_string] = STATE(4729), + [sym__raw_str] = STATE(4371), + [sym__str_double_quotes] = STATE(4371), + [sym_val_interpolated] = STATE(4729), + [sym__inter_single_quotes] = STATE(4731), + [sym__inter_double_quotes] = STATE(4732), + [sym_val_list] = STATE(4729), + [sym__spread_list] = STATE(4636), + [sym_val_record] = STATE(4729), + [sym_val_table] = STATE(4729), + [sym_val_closure] = STATE(4729), + [sym__cmd_arg] = STATE(4641), + [sym_redirection] = STATE(4642), + [sym_short_flag] = STATE(4644), + [sym_long_flag] = STATE(4644), + [sym_unquoted] = STATE(4395), + [sym__unquoted_with_expr] = STATE(4646), + [sym__unquoted_anonymous_prefix] = STATE(7186), + [sym_comment] = STATE(436), + [sym__newline] = ACTIONS(1952), + [sym__space] = ACTIONS(1954), + [anon_sym_SEMI] = ACTIONS(1952), + [anon_sym_PIPE] = ACTIONS(1952), + [anon_sym_err_GT_PIPE] = ACTIONS(1952), + [anon_sym_out_GT_PIPE] = ACTIONS(1952), + [anon_sym_e_GT_PIPE] = ACTIONS(1952), + [anon_sym_o_GT_PIPE] = ACTIONS(1952), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1952), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1952), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1952), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1952), + [anon_sym_LBRACK] = ACTIONS(1956), + [anon_sym_LPAREN] = ACTIONS(1958), + [anon_sym_RPAREN] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1960), + [anon_sym_DASH_DASH] = ACTIONS(1962), + [anon_sym_DASH2] = ACTIONS(1964), + [anon_sym_LBRACE] = ACTIONS(1966), + [anon_sym_RBRACE] = ACTIONS(1952), + [anon_sym_DOT_DOT] = ACTIONS(1968), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1970), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1972), + [anon_sym_DOT_DOT_LT] = ACTIONS(1972), + [anon_sym_null] = ACTIONS(1974), + [anon_sym_true] = ACTIONS(1976), + [anon_sym_false] = ACTIONS(1976), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1978), + [aux_sym__val_number_decimal_token1] = ACTIONS(1980), + [aux_sym__val_number_decimal_token2] = ACTIONS(1980), + [aux_sym__val_number_decimal_token3] = ACTIONS(1982), + [aux_sym__val_number_decimal_token4] = ACTIONS(1984), + [aux_sym__val_number_token1] = ACTIONS(1986), + [aux_sym__val_number_token2] = ACTIONS(1986), + [aux_sym__val_number_token3] = ACTIONS(1986), + [aux_sym__val_number_token4] = ACTIONS(1988), + [aux_sym__val_number_token5] = ACTIONS(1988), + [aux_sym__val_number_token6] = ACTIONS(1988), + [anon_sym_0b] = ACTIONS(1990), + [anon_sym_0o] = ACTIONS(1992), + [anon_sym_0x] = ACTIONS(1992), + [sym_val_date] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1996), + [sym__str_single_quotes] = ACTIONS(1998), + [sym__str_back_ticks] = ACTIONS(1998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2002), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2004), + [anon_sym_err_GT] = ACTIONS(2006), + [anon_sym_out_GT] = ACTIONS(2006), + [anon_sym_e_GT] = ACTIONS(2006), + [anon_sym_o_GT] = ACTIONS(2006), + [anon_sym_err_PLUSout_GT] = ACTIONS(2006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2006), + [anon_sym_o_PLUSe_GT] = ACTIONS(2006), + [anon_sym_e_PLUSo_GT] = ACTIONS(2006), + [anon_sym_err_GT_GT] = ACTIONS(2006), + [anon_sym_out_GT_GT] = ACTIONS(2006), + [anon_sym_e_GT_GT] = ACTIONS(2006), + [anon_sym_o_GT_GT] = ACTIONS(2006), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2006), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2006), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2006), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2006), + [aux_sym_unquoted_token1] = ACTIONS(2008), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2010), + }, + [437] = { + [sym_comment] = STATE(437), [anon_sym_export] = ACTIONS(984), [anon_sym_alias] = ACTIONS(984), [anon_sym_let] = ACTIONS(984), @@ -121096,7 +123601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(984), [anon_sym_overlay] = ACTIONS(984), [anon_sym_as] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(1958), + [anon_sym_QMARK2] = ACTIONS(2012), [anon_sym_PLUS2] = ACTIONS(984), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), [anon_sym_DOT_DOT2] = ACTIONS(984), @@ -121121,112 +123626,424 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(986), }, - [417] = { - [sym_cell_path] = STATE(647), - [sym_path] = STATE(569), - [sym_comment] = STATE(417), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1960), - [anon_sym_alias] = ACTIONS(1960), - [anon_sym_let] = ACTIONS(1960), - [anon_sym_let_DASHenv] = ACTIONS(1960), - [anon_sym_mut] = ACTIONS(1960), - [anon_sym_const] = ACTIONS(1960), - [aux_sym_cmd_identifier_token1] = ACTIONS(1960), - [aux_sym_cmd_identifier_token2] = ACTIONS(1960), - [aux_sym_cmd_identifier_token3] = ACTIONS(1960), - [aux_sym_cmd_identifier_token4] = ACTIONS(1960), - [aux_sym_cmd_identifier_token5] = ACTIONS(1960), - [aux_sym_cmd_identifier_token6] = ACTIONS(1960), - [aux_sym_cmd_identifier_token7] = ACTIONS(1960), - [aux_sym_cmd_identifier_token8] = ACTIONS(1960), - [aux_sym_cmd_identifier_token9] = ACTIONS(1960), - [aux_sym_cmd_identifier_token10] = ACTIONS(1960), - [aux_sym_cmd_identifier_token11] = ACTIONS(1960), - [aux_sym_cmd_identifier_token12] = ACTIONS(1960), - [aux_sym_cmd_identifier_token13] = ACTIONS(1960), - [aux_sym_cmd_identifier_token14] = ACTIONS(1960), - [aux_sym_cmd_identifier_token15] = ACTIONS(1960), - [aux_sym_cmd_identifier_token16] = ACTIONS(1960), - [aux_sym_cmd_identifier_token17] = ACTIONS(1960), - [aux_sym_cmd_identifier_token18] = ACTIONS(1960), - [aux_sym_cmd_identifier_token19] = ACTIONS(1960), - [aux_sym_cmd_identifier_token20] = ACTIONS(1960), - [aux_sym_cmd_identifier_token21] = ACTIONS(1960), - [aux_sym_cmd_identifier_token22] = ACTIONS(1960), - [aux_sym_cmd_identifier_token23] = ACTIONS(1960), - [aux_sym_cmd_identifier_token24] = ACTIONS(1960), - [aux_sym_cmd_identifier_token25] = ACTIONS(1960), - [aux_sym_cmd_identifier_token26] = ACTIONS(1960), - [aux_sym_cmd_identifier_token27] = ACTIONS(1960), - [aux_sym_cmd_identifier_token28] = ACTIONS(1960), - [aux_sym_cmd_identifier_token29] = ACTIONS(1960), - [aux_sym_cmd_identifier_token30] = ACTIONS(1960), - [aux_sym_cmd_identifier_token31] = ACTIONS(1960), - [aux_sym_cmd_identifier_token32] = ACTIONS(1960), - [aux_sym_cmd_identifier_token33] = ACTIONS(1960), - [aux_sym_cmd_identifier_token34] = ACTIONS(1960), - [aux_sym_cmd_identifier_token35] = ACTIONS(1960), - [aux_sym_cmd_identifier_token36] = ACTIONS(1960), - [aux_sym_cmd_identifier_token37] = ACTIONS(1960), - [aux_sym_cmd_identifier_token38] = ACTIONS(1960), - [aux_sym_cmd_identifier_token39] = ACTIONS(1960), - [aux_sym_cmd_identifier_token40] = ACTIONS(1960), - [anon_sym_def] = ACTIONS(1960), - [anon_sym_export_DASHenv] = ACTIONS(1960), - [anon_sym_extern] = ACTIONS(1960), - [anon_sym_module] = ACTIONS(1960), - [anon_sym_use] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1960), - [anon_sym_DOLLAR] = ACTIONS(1960), - [anon_sym_error] = ACTIONS(1960), - [anon_sym_DASH2] = ACTIONS(1960), - [anon_sym_break] = ACTIONS(1960), - [anon_sym_continue] = ACTIONS(1960), - [anon_sym_for] = ACTIONS(1960), - [anon_sym_in2] = ACTIONS(1960), - [anon_sym_loop] = ACTIONS(1960), - [anon_sym_make] = ACTIONS(1960), - [anon_sym_while] = ACTIONS(1960), - [anon_sym_do] = ACTIONS(1960), - [anon_sym_if] = ACTIONS(1960), - [anon_sym_else] = ACTIONS(1960), - [anon_sym_match] = ACTIONS(1960), - [anon_sym_RBRACE] = ACTIONS(1960), - [anon_sym_try] = ACTIONS(1960), - [anon_sym_catch] = ACTIONS(1960), - [anon_sym_return] = ACTIONS(1960), - [anon_sym_source] = ACTIONS(1960), - [anon_sym_source_DASHenv] = ACTIONS(1960), - [anon_sym_register] = ACTIONS(1960), - [anon_sym_hide] = ACTIONS(1960), - [anon_sym_hide_DASHenv] = ACTIONS(1960), - [anon_sym_overlay] = ACTIONS(1960), - [anon_sym_as] = ACTIONS(1960), - [anon_sym_PLUS2] = ACTIONS(1960), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1960), - [anon_sym_DOT] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1960), - [aux_sym__val_number_decimal_token1] = ACTIONS(1960), - [aux_sym__val_number_decimal_token2] = ACTIONS(1960), - [aux_sym__val_number_decimal_token3] = ACTIONS(1960), - [aux_sym__val_number_decimal_token4] = ACTIONS(1960), - [aux_sym__val_number_token1] = ACTIONS(1960), - [aux_sym__val_number_token2] = ACTIONS(1960), - [aux_sym__val_number_token3] = ACTIONS(1960), - [aux_sym__val_number_token4] = ACTIONS(1960), - [aux_sym__val_number_token5] = ACTIONS(1960), - [aux_sym__val_number_token6] = ACTIONS(1960), - [anon_sym_DQUOTE] = ACTIONS(1960), - [sym__str_single_quotes] = ACTIONS(1960), - [sym__str_back_ticks] = ACTIONS(1960), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1960), - [sym__entry_separator] = ACTIONS(1962), + [438] = { + [sym_comment] = STATE(438), + [anon_sym_export] = ACTIONS(1739), + [anon_sym_alias] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_let_DASHenv] = ACTIONS(1739), + [anon_sym_mut] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [aux_sym_cmd_identifier_token1] = ACTIONS(1739), + [aux_sym_cmd_identifier_token2] = ACTIONS(1741), + [aux_sym_cmd_identifier_token3] = ACTIONS(1741), + [aux_sym_cmd_identifier_token4] = ACTIONS(1741), + [aux_sym_cmd_identifier_token5] = ACTIONS(1741), + [aux_sym_cmd_identifier_token6] = ACTIONS(1741), + [aux_sym_cmd_identifier_token7] = ACTIONS(1741), + [aux_sym_cmd_identifier_token8] = ACTIONS(1739), + [aux_sym_cmd_identifier_token9] = ACTIONS(1739), + [aux_sym_cmd_identifier_token10] = ACTIONS(1741), + [aux_sym_cmd_identifier_token11] = ACTIONS(1741), + [aux_sym_cmd_identifier_token12] = ACTIONS(1739), + [aux_sym_cmd_identifier_token13] = ACTIONS(1739), + [aux_sym_cmd_identifier_token14] = ACTIONS(1739), + [aux_sym_cmd_identifier_token15] = ACTIONS(1739), + [aux_sym_cmd_identifier_token16] = ACTIONS(1741), + [aux_sym_cmd_identifier_token17] = ACTIONS(1741), + [aux_sym_cmd_identifier_token18] = ACTIONS(1741), + [aux_sym_cmd_identifier_token19] = ACTIONS(1741), + [aux_sym_cmd_identifier_token20] = ACTIONS(1741), + [aux_sym_cmd_identifier_token21] = ACTIONS(1741), + [aux_sym_cmd_identifier_token22] = ACTIONS(1741), + [aux_sym_cmd_identifier_token23] = ACTIONS(1741), + [aux_sym_cmd_identifier_token24] = ACTIONS(1741), + [aux_sym_cmd_identifier_token25] = ACTIONS(1741), + [aux_sym_cmd_identifier_token26] = ACTIONS(1741), + [aux_sym_cmd_identifier_token27] = ACTIONS(1741), + [aux_sym_cmd_identifier_token28] = ACTIONS(1741), + [aux_sym_cmd_identifier_token29] = ACTIONS(1741), + [aux_sym_cmd_identifier_token30] = ACTIONS(1741), + [aux_sym_cmd_identifier_token31] = ACTIONS(1741), + [aux_sym_cmd_identifier_token32] = ACTIONS(1741), + [aux_sym_cmd_identifier_token33] = ACTIONS(1741), + [aux_sym_cmd_identifier_token34] = ACTIONS(1739), + [aux_sym_cmd_identifier_token35] = ACTIONS(1741), + [aux_sym_cmd_identifier_token36] = ACTIONS(1741), + [aux_sym_cmd_identifier_token37] = ACTIONS(1741), + [aux_sym_cmd_identifier_token38] = ACTIONS(1739), + [aux_sym_cmd_identifier_token39] = ACTIONS(1741), + [aux_sym_cmd_identifier_token40] = ACTIONS(1741), + [anon_sym_def] = ACTIONS(1739), + [anon_sym_export_DASHenv] = ACTIONS(1739), + [anon_sym_extern] = ACTIONS(1739), + [anon_sym_module] = ACTIONS(1739), + [anon_sym_use] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_DOLLAR] = ACTIONS(1741), + [anon_sym_error] = ACTIONS(1739), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_break] = ACTIONS(1739), + [anon_sym_continue] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_in2] = ACTIONS(1739), + [anon_sym_loop] = ACTIONS(1739), + [anon_sym_make] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_do] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_else] = ACTIONS(1739), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1741), + [anon_sym_try] = ACTIONS(1739), + [anon_sym_catch] = ACTIONS(1739), + [anon_sym_return] = ACTIONS(1739), + [anon_sym_source] = ACTIONS(1739), + [anon_sym_source_DASHenv] = ACTIONS(1739), + [anon_sym_register] = ACTIONS(1739), + [anon_sym_hide] = ACTIONS(1739), + [anon_sym_hide_DASHenv] = ACTIONS(1739), + [anon_sym_overlay] = ACTIONS(1739), + [anon_sym_as] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_PLUS2] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1741), + [anon_sym_DOT_DOT2] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1739), + [aux_sym__val_number_token5] = ACTIONS(1739), + [aux_sym__val_number_token6] = ACTIONS(1739), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1741), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), + }, + [439] = { + [sym_comment] = STATE(439), + [anon_sym_export] = ACTIONS(1802), + [anon_sym_alias] = ACTIONS(1802), + [anon_sym_let] = ACTIONS(1802), + [anon_sym_let_DASHenv] = ACTIONS(1802), + [anon_sym_mut] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1802), + [aux_sym_cmd_identifier_token1] = ACTIONS(1802), + [aux_sym_cmd_identifier_token2] = ACTIONS(1810), + [aux_sym_cmd_identifier_token3] = ACTIONS(1810), + [aux_sym_cmd_identifier_token4] = ACTIONS(1810), + [aux_sym_cmd_identifier_token5] = ACTIONS(1810), + [aux_sym_cmd_identifier_token6] = ACTIONS(1810), + [aux_sym_cmd_identifier_token7] = ACTIONS(1810), + [aux_sym_cmd_identifier_token8] = ACTIONS(1802), + [aux_sym_cmd_identifier_token9] = ACTIONS(1802), + [aux_sym_cmd_identifier_token10] = ACTIONS(1810), + [aux_sym_cmd_identifier_token11] = ACTIONS(1810), + [aux_sym_cmd_identifier_token12] = ACTIONS(1802), + [aux_sym_cmd_identifier_token13] = ACTIONS(1802), + [aux_sym_cmd_identifier_token14] = ACTIONS(1802), + [aux_sym_cmd_identifier_token15] = ACTIONS(1802), + [aux_sym_cmd_identifier_token16] = ACTIONS(1810), + [aux_sym_cmd_identifier_token17] = ACTIONS(1810), + [aux_sym_cmd_identifier_token18] = ACTIONS(1810), + [aux_sym_cmd_identifier_token19] = ACTIONS(1810), + [aux_sym_cmd_identifier_token20] = ACTIONS(1810), + [aux_sym_cmd_identifier_token21] = ACTIONS(1810), + [aux_sym_cmd_identifier_token22] = ACTIONS(1810), + [aux_sym_cmd_identifier_token23] = ACTIONS(1810), + [aux_sym_cmd_identifier_token24] = ACTIONS(1810), + [aux_sym_cmd_identifier_token25] = ACTIONS(1810), + [aux_sym_cmd_identifier_token26] = ACTIONS(1810), + [aux_sym_cmd_identifier_token27] = ACTIONS(1810), + [aux_sym_cmd_identifier_token28] = ACTIONS(1810), + [aux_sym_cmd_identifier_token29] = ACTIONS(1810), + [aux_sym_cmd_identifier_token30] = ACTIONS(1810), + [aux_sym_cmd_identifier_token31] = ACTIONS(1810), + [aux_sym_cmd_identifier_token32] = ACTIONS(1810), + [aux_sym_cmd_identifier_token33] = ACTIONS(1810), + [aux_sym_cmd_identifier_token34] = ACTIONS(1802), + [aux_sym_cmd_identifier_token35] = ACTIONS(1810), + [aux_sym_cmd_identifier_token36] = ACTIONS(1810), + [aux_sym_cmd_identifier_token37] = ACTIONS(1810), + [aux_sym_cmd_identifier_token38] = ACTIONS(1802), + [aux_sym_cmd_identifier_token39] = ACTIONS(1810), + [aux_sym_cmd_identifier_token40] = ACTIONS(1810), + [anon_sym_def] = ACTIONS(1802), + [anon_sym_export_DASHenv] = ACTIONS(1802), + [anon_sym_extern] = ACTIONS(1802), + [anon_sym_module] = ACTIONS(1802), + [anon_sym_use] = ACTIONS(1802), + [anon_sym_LPAREN] = ACTIONS(1802), + [anon_sym_DOLLAR] = ACTIONS(1810), + [anon_sym_error] = ACTIONS(1802), + [anon_sym_DASH2] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_for] = ACTIONS(1802), + [anon_sym_in2] = ACTIONS(1802), + [anon_sym_loop] = ACTIONS(1802), + [anon_sym_make] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_do] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_match] = ACTIONS(1802), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_catch] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_source] = ACTIONS(1802), + [anon_sym_source_DASHenv] = ACTIONS(1802), + [anon_sym_register] = ACTIONS(1802), + [anon_sym_hide] = ACTIONS(1802), + [anon_sym_hide_DASHenv] = ACTIONS(1802), + [anon_sym_overlay] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LPAREN2] = ACTIONS(1804), + [anon_sym_PLUS2] = ACTIONS(1802), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1810), + [anon_sym_DOT_DOT2] = ACTIONS(2014), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2016), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2016), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1810), + [aux_sym__val_number_decimal_token1] = ACTIONS(1802), + [aux_sym__val_number_decimal_token2] = ACTIONS(1810), + [aux_sym__val_number_decimal_token3] = ACTIONS(1810), + [aux_sym__val_number_decimal_token4] = ACTIONS(1810), + [aux_sym__val_number_token1] = ACTIONS(1810), + [aux_sym__val_number_token2] = ACTIONS(1810), + [aux_sym__val_number_token3] = ACTIONS(1810), + [aux_sym__val_number_token4] = ACTIONS(1802), + [aux_sym__val_number_token5] = ACTIONS(1802), + [aux_sym__val_number_token6] = ACTIONS(1802), + [anon_sym_DQUOTE] = ACTIONS(1810), + [sym__str_single_quotes] = ACTIONS(1810), + [sym__str_back_ticks] = ACTIONS(1810), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1810), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1812), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1810), + }, + [440] = { + [sym_comment] = STATE(440), + [anon_sym_export] = ACTIONS(1765), + [anon_sym_alias] = ACTIONS(1765), + [anon_sym_let] = ACTIONS(1765), + [anon_sym_let_DASHenv] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [aux_sym_cmd_identifier_token1] = ACTIONS(1765), + [aux_sym_cmd_identifier_token2] = ACTIONS(1765), + [aux_sym_cmd_identifier_token3] = ACTIONS(1765), + [aux_sym_cmd_identifier_token4] = ACTIONS(1765), + [aux_sym_cmd_identifier_token5] = ACTIONS(1765), + [aux_sym_cmd_identifier_token6] = ACTIONS(1765), + [aux_sym_cmd_identifier_token7] = ACTIONS(1765), + [aux_sym_cmd_identifier_token8] = ACTIONS(1765), + [aux_sym_cmd_identifier_token9] = ACTIONS(1765), + [aux_sym_cmd_identifier_token10] = ACTIONS(1765), + [aux_sym_cmd_identifier_token11] = ACTIONS(1765), + [aux_sym_cmd_identifier_token12] = ACTIONS(1765), + [aux_sym_cmd_identifier_token13] = ACTIONS(1765), + [aux_sym_cmd_identifier_token14] = ACTIONS(1765), + [aux_sym_cmd_identifier_token15] = ACTIONS(1765), + [aux_sym_cmd_identifier_token16] = ACTIONS(1765), + [aux_sym_cmd_identifier_token17] = ACTIONS(1765), + [aux_sym_cmd_identifier_token18] = ACTIONS(1765), + [aux_sym_cmd_identifier_token19] = ACTIONS(1765), + [aux_sym_cmd_identifier_token20] = ACTIONS(1765), + [aux_sym_cmd_identifier_token21] = ACTIONS(1765), + [aux_sym_cmd_identifier_token22] = ACTIONS(1765), + [aux_sym_cmd_identifier_token23] = ACTIONS(1765), + [aux_sym_cmd_identifier_token24] = ACTIONS(1765), + [aux_sym_cmd_identifier_token25] = ACTIONS(1765), + [aux_sym_cmd_identifier_token26] = ACTIONS(1765), + [aux_sym_cmd_identifier_token27] = ACTIONS(1765), + [aux_sym_cmd_identifier_token28] = ACTIONS(1765), + [aux_sym_cmd_identifier_token29] = ACTIONS(1765), + [aux_sym_cmd_identifier_token30] = ACTIONS(1765), + [aux_sym_cmd_identifier_token31] = ACTIONS(1765), + [aux_sym_cmd_identifier_token32] = ACTIONS(1765), + [aux_sym_cmd_identifier_token33] = ACTIONS(1765), + [aux_sym_cmd_identifier_token34] = ACTIONS(1765), + [aux_sym_cmd_identifier_token35] = ACTIONS(1765), + [aux_sym_cmd_identifier_token36] = ACTIONS(1765), + [aux_sym_cmd_identifier_token37] = ACTIONS(1765), + [aux_sym_cmd_identifier_token38] = ACTIONS(1765), + [aux_sym_cmd_identifier_token39] = ACTIONS(1765), + [aux_sym_cmd_identifier_token40] = ACTIONS(1765), + [anon_sym_def] = ACTIONS(1765), + [anon_sym_export_DASHenv] = ACTIONS(1765), + [anon_sym_extern] = ACTIONS(1765), + [anon_sym_module] = ACTIONS(1765), + [anon_sym_use] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_DOLLAR] = ACTIONS(1765), + [anon_sym_error] = ACTIONS(1765), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_in2] = ACTIONS(1765), + [anon_sym_loop] = ACTIONS(1765), + [anon_sym_make] = ACTIONS(1765), + [anon_sym_while] = ACTIONS(1765), + [anon_sym_do] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_else] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_try] = ACTIONS(1765), + [anon_sym_catch] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_source] = ACTIONS(1765), + [anon_sym_source_DASHenv] = ACTIONS(1765), + [anon_sym_register] = ACTIONS(1765), + [anon_sym_hide] = ACTIONS(1765), + [anon_sym_hide_DASHenv] = ACTIONS(1765), + [anon_sym_overlay] = ACTIONS(1765), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_PLUS2] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), + [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(1816), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1765), + [aux_sym__val_number_decimal_token3] = ACTIONS(1765), + [aux_sym__val_number_decimal_token4] = ACTIONS(1765), + [aux_sym__val_number_token1] = ACTIONS(1765), + [aux_sym__val_number_token2] = ACTIONS(1765), + [aux_sym__val_number_token3] = ACTIONS(1765), + [aux_sym__val_number_token4] = ACTIONS(1765), + [aux_sym__val_number_token5] = ACTIONS(1765), + [aux_sym__val_number_token6] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1765), + [sym__str_single_quotes] = ACTIONS(1765), + [sym__str_back_ticks] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), + [sym__entry_separator] = ACTIONS(1767), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1962), + [sym_raw_string_begin] = ACTIONS(1767), }, - [418] = { - [sym_comment] = STATE(418), + [441] = { + [sym_cell_path] = STATE(633), + [sym_path] = STATE(567), + [sym_comment] = STATE(441), + [aux_sym_cell_path_repeat1] = STATE(495), + [anon_sym_export] = ACTIONS(2018), + [anon_sym_alias] = ACTIONS(2018), + [anon_sym_let] = ACTIONS(2018), + [anon_sym_let_DASHenv] = ACTIONS(2018), + [anon_sym_mut] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(2018), + [aux_sym_cmd_identifier_token1] = ACTIONS(2018), + [aux_sym_cmd_identifier_token2] = ACTIONS(2018), + [aux_sym_cmd_identifier_token3] = ACTIONS(2018), + [aux_sym_cmd_identifier_token4] = ACTIONS(2018), + [aux_sym_cmd_identifier_token5] = ACTIONS(2018), + [aux_sym_cmd_identifier_token6] = ACTIONS(2018), + [aux_sym_cmd_identifier_token7] = ACTIONS(2018), + [aux_sym_cmd_identifier_token8] = ACTIONS(2018), + [aux_sym_cmd_identifier_token9] = ACTIONS(2018), + [aux_sym_cmd_identifier_token10] = ACTIONS(2018), + [aux_sym_cmd_identifier_token11] = ACTIONS(2018), + [aux_sym_cmd_identifier_token12] = ACTIONS(2018), + [aux_sym_cmd_identifier_token13] = ACTIONS(2018), + [aux_sym_cmd_identifier_token14] = ACTIONS(2018), + [aux_sym_cmd_identifier_token15] = ACTIONS(2018), + [aux_sym_cmd_identifier_token16] = ACTIONS(2018), + [aux_sym_cmd_identifier_token17] = ACTIONS(2018), + [aux_sym_cmd_identifier_token18] = ACTIONS(2018), + [aux_sym_cmd_identifier_token19] = ACTIONS(2018), + [aux_sym_cmd_identifier_token20] = ACTIONS(2018), + [aux_sym_cmd_identifier_token21] = ACTIONS(2018), + [aux_sym_cmd_identifier_token22] = ACTIONS(2018), + [aux_sym_cmd_identifier_token23] = ACTIONS(2018), + [aux_sym_cmd_identifier_token24] = ACTIONS(2018), + [aux_sym_cmd_identifier_token25] = ACTIONS(2018), + [aux_sym_cmd_identifier_token26] = ACTIONS(2018), + [aux_sym_cmd_identifier_token27] = ACTIONS(2018), + [aux_sym_cmd_identifier_token28] = ACTIONS(2018), + [aux_sym_cmd_identifier_token29] = ACTIONS(2018), + [aux_sym_cmd_identifier_token30] = ACTIONS(2018), + [aux_sym_cmd_identifier_token31] = ACTIONS(2018), + [aux_sym_cmd_identifier_token32] = ACTIONS(2018), + [aux_sym_cmd_identifier_token33] = ACTIONS(2018), + [aux_sym_cmd_identifier_token34] = ACTIONS(2018), + [aux_sym_cmd_identifier_token35] = ACTIONS(2018), + [aux_sym_cmd_identifier_token36] = ACTIONS(2018), + [aux_sym_cmd_identifier_token37] = ACTIONS(2018), + [aux_sym_cmd_identifier_token38] = ACTIONS(2018), + [aux_sym_cmd_identifier_token39] = ACTIONS(2018), + [aux_sym_cmd_identifier_token40] = ACTIONS(2018), + [anon_sym_def] = ACTIONS(2018), + [anon_sym_export_DASHenv] = ACTIONS(2018), + [anon_sym_extern] = ACTIONS(2018), + [anon_sym_module] = ACTIONS(2018), + [anon_sym_use] = ACTIONS(2018), + [anon_sym_LPAREN] = ACTIONS(2018), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_error] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2018), + [anon_sym_break] = ACTIONS(2018), + [anon_sym_continue] = ACTIONS(2018), + [anon_sym_for] = ACTIONS(2018), + [anon_sym_in2] = ACTIONS(2018), + [anon_sym_loop] = ACTIONS(2018), + [anon_sym_make] = ACTIONS(2018), + [anon_sym_while] = ACTIONS(2018), + [anon_sym_do] = ACTIONS(2018), + [anon_sym_if] = ACTIONS(2018), + [anon_sym_else] = ACTIONS(2018), + [anon_sym_match] = ACTIONS(2018), + [anon_sym_RBRACE] = ACTIONS(2018), + [anon_sym_try] = ACTIONS(2018), + [anon_sym_catch] = ACTIONS(2018), + [anon_sym_return] = ACTIONS(2018), + [anon_sym_source] = ACTIONS(2018), + [anon_sym_source_DASHenv] = ACTIONS(2018), + [anon_sym_register] = ACTIONS(2018), + [anon_sym_hide] = ACTIONS(2018), + [anon_sym_hide_DASHenv] = ACTIONS(2018), + [anon_sym_overlay] = ACTIONS(2018), + [anon_sym_as] = ACTIONS(2018), + [anon_sym_PLUS2] = ACTIONS(2018), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2018), + [anon_sym_DOT] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2018), + [aux_sym__val_number_decimal_token1] = ACTIONS(2018), + [aux_sym__val_number_decimal_token2] = ACTIONS(2018), + [aux_sym__val_number_decimal_token3] = ACTIONS(2018), + [aux_sym__val_number_decimal_token4] = ACTIONS(2018), + [aux_sym__val_number_token1] = ACTIONS(2018), + [aux_sym__val_number_token2] = ACTIONS(2018), + [aux_sym__val_number_token3] = ACTIONS(2018), + [aux_sym__val_number_token4] = ACTIONS(2018), + [aux_sym__val_number_token5] = ACTIONS(2018), + [aux_sym__val_number_token6] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2018), + [sym__str_single_quotes] = ACTIONS(2018), + [sym__str_back_ticks] = ACTIONS(2018), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2018), + [sym__entry_separator] = ACTIONS(2020), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2020), + }, + [442] = { + [sym_comment] = STATE(442), [anon_sym_export] = ACTIONS(1006), [anon_sym_alias] = ACTIONS(1006), [anon_sym_let] = ACTIONS(1006), @@ -121329,8 +124146,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1008), }, - [419] = { - [sym_comment] = STATE(419), + [443] = { + [sym_comment] = STATE(443), [anon_sym_export] = ACTIONS(1739), [anon_sym_alias] = ACTIONS(1739), [anon_sym_let] = ACTIONS(1739), @@ -121338,52 +124155,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(1739), [anon_sym_const] = ACTIONS(1739), [aux_sym_cmd_identifier_token1] = ACTIONS(1739), - [aux_sym_cmd_identifier_token2] = ACTIONS(1739), - [aux_sym_cmd_identifier_token3] = ACTIONS(1739), - [aux_sym_cmd_identifier_token4] = ACTIONS(1739), - [aux_sym_cmd_identifier_token5] = ACTIONS(1739), - [aux_sym_cmd_identifier_token6] = ACTIONS(1739), - [aux_sym_cmd_identifier_token7] = ACTIONS(1739), + [aux_sym_cmd_identifier_token2] = ACTIONS(1741), + [aux_sym_cmd_identifier_token3] = ACTIONS(1741), + [aux_sym_cmd_identifier_token4] = ACTIONS(1741), + [aux_sym_cmd_identifier_token5] = ACTIONS(1741), + [aux_sym_cmd_identifier_token6] = ACTIONS(1741), + [aux_sym_cmd_identifier_token7] = ACTIONS(1741), [aux_sym_cmd_identifier_token8] = ACTIONS(1739), [aux_sym_cmd_identifier_token9] = ACTIONS(1739), - [aux_sym_cmd_identifier_token10] = ACTIONS(1739), - [aux_sym_cmd_identifier_token11] = ACTIONS(1739), + [aux_sym_cmd_identifier_token10] = ACTIONS(1741), + [aux_sym_cmd_identifier_token11] = ACTIONS(1741), [aux_sym_cmd_identifier_token12] = ACTIONS(1739), [aux_sym_cmd_identifier_token13] = ACTIONS(1739), [aux_sym_cmd_identifier_token14] = ACTIONS(1739), [aux_sym_cmd_identifier_token15] = ACTIONS(1739), - [aux_sym_cmd_identifier_token16] = ACTIONS(1739), - [aux_sym_cmd_identifier_token17] = ACTIONS(1739), - [aux_sym_cmd_identifier_token18] = ACTIONS(1739), - [aux_sym_cmd_identifier_token19] = ACTIONS(1739), - [aux_sym_cmd_identifier_token20] = ACTIONS(1739), - [aux_sym_cmd_identifier_token21] = ACTIONS(1739), - [aux_sym_cmd_identifier_token22] = ACTIONS(1739), - [aux_sym_cmd_identifier_token23] = ACTIONS(1739), - [aux_sym_cmd_identifier_token24] = ACTIONS(1739), - [aux_sym_cmd_identifier_token25] = ACTIONS(1739), - [aux_sym_cmd_identifier_token26] = ACTIONS(1739), - [aux_sym_cmd_identifier_token27] = ACTIONS(1739), - [aux_sym_cmd_identifier_token28] = ACTIONS(1739), - [aux_sym_cmd_identifier_token29] = ACTIONS(1739), - [aux_sym_cmd_identifier_token30] = ACTIONS(1739), - [aux_sym_cmd_identifier_token31] = ACTIONS(1739), - [aux_sym_cmd_identifier_token32] = ACTIONS(1739), - [aux_sym_cmd_identifier_token33] = ACTIONS(1739), + [aux_sym_cmd_identifier_token16] = ACTIONS(1741), + [aux_sym_cmd_identifier_token17] = ACTIONS(1741), + [aux_sym_cmd_identifier_token18] = ACTIONS(1741), + [aux_sym_cmd_identifier_token19] = ACTIONS(1741), + [aux_sym_cmd_identifier_token20] = ACTIONS(1741), + [aux_sym_cmd_identifier_token21] = ACTIONS(1741), + [aux_sym_cmd_identifier_token22] = ACTIONS(1741), + [aux_sym_cmd_identifier_token23] = ACTIONS(1741), + [aux_sym_cmd_identifier_token24] = ACTIONS(1741), + [aux_sym_cmd_identifier_token25] = ACTIONS(1741), + [aux_sym_cmd_identifier_token26] = ACTIONS(1741), + [aux_sym_cmd_identifier_token27] = ACTIONS(1741), + [aux_sym_cmd_identifier_token28] = ACTIONS(1741), + [aux_sym_cmd_identifier_token29] = ACTIONS(1741), + [aux_sym_cmd_identifier_token30] = ACTIONS(1741), + [aux_sym_cmd_identifier_token31] = ACTIONS(1741), + [aux_sym_cmd_identifier_token32] = ACTIONS(1741), + [aux_sym_cmd_identifier_token33] = ACTIONS(1741), [aux_sym_cmd_identifier_token34] = ACTIONS(1739), - [aux_sym_cmd_identifier_token35] = ACTIONS(1739), - [aux_sym_cmd_identifier_token36] = ACTIONS(1739), - [aux_sym_cmd_identifier_token37] = ACTIONS(1739), + [aux_sym_cmd_identifier_token35] = ACTIONS(1741), + [aux_sym_cmd_identifier_token36] = ACTIONS(1741), + [aux_sym_cmd_identifier_token37] = ACTIONS(1741), [aux_sym_cmd_identifier_token38] = ACTIONS(1739), - [aux_sym_cmd_identifier_token39] = ACTIONS(1739), - [aux_sym_cmd_identifier_token40] = ACTIONS(1739), + [aux_sym_cmd_identifier_token39] = ACTIONS(1741), + [aux_sym_cmd_identifier_token40] = ACTIONS(1741), [anon_sym_def] = ACTIONS(1739), [anon_sym_export_DASHenv] = ACTIONS(1739), [anon_sym_extern] = ACTIONS(1739), [anon_sym_module] = ACTIONS(1739), [anon_sym_use] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_DOLLAR] = ACTIONS(1741), [anon_sym_error] = ACTIONS(1739), [anon_sym_DASH2] = ACTIONS(1739), [anon_sym_break] = ACTIONS(1739), @@ -121397,7 +124214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1739), [anon_sym_else] = ACTIONS(1739), [anon_sym_match] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1741), [anon_sym_try] = ACTIONS(1739), [anon_sym_catch] = ACTIONS(1739), [anon_sym_return] = ACTIONS(1739), @@ -121408,865 +124225,657 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(1739), [anon_sym_overlay] = ACTIONS(1739), [anon_sym_as] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(1741), [anon_sym_PLUS2] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1739), - [aux_sym__immediate_decimal_token1] = ACTIONS(1964), - [aux_sym__immediate_decimal_token2] = ACTIONS(1966), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1741), + [anon_sym_DOT_DOT2] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), + [aux_sym__immediate_decimal_token1] = ACTIONS(2022), + [aux_sym__immediate_decimal_token2] = ACTIONS(2024), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1741), [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1739), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1739), - [aux_sym__val_number_token1] = ACTIONS(1739), - [aux_sym__val_number_token2] = ACTIONS(1739), - [aux_sym__val_number_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), [aux_sym__val_number_token4] = ACTIONS(1739), [aux_sym__val_number_token5] = ACTIONS(1739), [aux_sym__val_number_token6] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1739), - [sym__str_single_quotes] = ACTIONS(1739), - [sym__str_back_ticks] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1739), - [sym__entry_separator] = ACTIONS(1741), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1741), + [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1741), }, - [420] = { - [sym_cell_path] = STATE(653), - [sym_path] = STATE(569), - [sym_comment] = STATE(420), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1968), - [anon_sym_alias] = ACTIONS(1968), - [anon_sym_let] = ACTIONS(1968), - [anon_sym_let_DASHenv] = ACTIONS(1968), - [anon_sym_mut] = ACTIONS(1968), - [anon_sym_const] = ACTIONS(1968), - [aux_sym_cmd_identifier_token1] = ACTIONS(1968), - [aux_sym_cmd_identifier_token2] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1968), - [aux_sym_cmd_identifier_token4] = ACTIONS(1968), - [aux_sym_cmd_identifier_token5] = ACTIONS(1968), - [aux_sym_cmd_identifier_token6] = ACTIONS(1968), - [aux_sym_cmd_identifier_token7] = ACTIONS(1968), - [aux_sym_cmd_identifier_token8] = ACTIONS(1968), - [aux_sym_cmd_identifier_token9] = ACTIONS(1968), - [aux_sym_cmd_identifier_token10] = ACTIONS(1968), - [aux_sym_cmd_identifier_token11] = ACTIONS(1968), - [aux_sym_cmd_identifier_token12] = ACTIONS(1968), - [aux_sym_cmd_identifier_token13] = ACTIONS(1968), - [aux_sym_cmd_identifier_token14] = ACTIONS(1968), - [aux_sym_cmd_identifier_token15] = ACTIONS(1968), - [aux_sym_cmd_identifier_token16] = ACTIONS(1968), - [aux_sym_cmd_identifier_token17] = ACTIONS(1968), - [aux_sym_cmd_identifier_token18] = ACTIONS(1968), - [aux_sym_cmd_identifier_token19] = ACTIONS(1968), - [aux_sym_cmd_identifier_token20] = ACTIONS(1968), - [aux_sym_cmd_identifier_token21] = ACTIONS(1968), - [aux_sym_cmd_identifier_token22] = ACTIONS(1968), - [aux_sym_cmd_identifier_token23] = ACTIONS(1968), - [aux_sym_cmd_identifier_token24] = ACTIONS(1968), - [aux_sym_cmd_identifier_token25] = ACTIONS(1968), - [aux_sym_cmd_identifier_token26] = ACTIONS(1968), - [aux_sym_cmd_identifier_token27] = ACTIONS(1968), - [aux_sym_cmd_identifier_token28] = ACTIONS(1968), - [aux_sym_cmd_identifier_token29] = ACTIONS(1968), - [aux_sym_cmd_identifier_token30] = ACTIONS(1968), - [aux_sym_cmd_identifier_token31] = ACTIONS(1968), - [aux_sym_cmd_identifier_token32] = ACTIONS(1968), - [aux_sym_cmd_identifier_token33] = ACTIONS(1968), - [aux_sym_cmd_identifier_token34] = ACTIONS(1968), - [aux_sym_cmd_identifier_token35] = ACTIONS(1968), - [aux_sym_cmd_identifier_token36] = ACTIONS(1968), - [aux_sym_cmd_identifier_token37] = ACTIONS(1968), - [aux_sym_cmd_identifier_token38] = ACTIONS(1968), - [aux_sym_cmd_identifier_token39] = ACTIONS(1968), - [aux_sym_cmd_identifier_token40] = ACTIONS(1968), - [anon_sym_def] = ACTIONS(1968), - [anon_sym_export_DASHenv] = ACTIONS(1968), - [anon_sym_extern] = ACTIONS(1968), - [anon_sym_module] = ACTIONS(1968), - [anon_sym_use] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1968), - [anon_sym_DOLLAR] = ACTIONS(1968), - [anon_sym_error] = ACTIONS(1968), - [anon_sym_DASH2] = ACTIONS(1968), - [anon_sym_break] = ACTIONS(1968), - [anon_sym_continue] = ACTIONS(1968), - [anon_sym_for] = ACTIONS(1968), - [anon_sym_in2] = ACTIONS(1968), - [anon_sym_loop] = ACTIONS(1968), - [anon_sym_make] = ACTIONS(1968), - [anon_sym_while] = ACTIONS(1968), - [anon_sym_do] = ACTIONS(1968), - [anon_sym_if] = ACTIONS(1968), - [anon_sym_else] = ACTIONS(1968), - [anon_sym_match] = ACTIONS(1968), - [anon_sym_RBRACE] = ACTIONS(1968), - [anon_sym_try] = ACTIONS(1968), - [anon_sym_catch] = ACTIONS(1968), - [anon_sym_return] = ACTIONS(1968), - [anon_sym_source] = ACTIONS(1968), - [anon_sym_source_DASHenv] = ACTIONS(1968), - [anon_sym_register] = ACTIONS(1968), - [anon_sym_hide] = ACTIONS(1968), - [anon_sym_hide_DASHenv] = ACTIONS(1968), - [anon_sym_overlay] = ACTIONS(1968), - [anon_sym_as] = ACTIONS(1968), - [anon_sym_PLUS2] = ACTIONS(1968), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1968), - [anon_sym_DOT] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1968), - [aux_sym__val_number_decimal_token1] = ACTIONS(1968), - [aux_sym__val_number_decimal_token2] = ACTIONS(1968), - [aux_sym__val_number_decimal_token3] = ACTIONS(1968), - [aux_sym__val_number_decimal_token4] = ACTIONS(1968), - [aux_sym__val_number_token1] = ACTIONS(1968), - [aux_sym__val_number_token2] = ACTIONS(1968), - [aux_sym__val_number_token3] = ACTIONS(1968), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_DQUOTE] = ACTIONS(1968), - [sym__str_single_quotes] = ACTIONS(1968), - [sym__str_back_ticks] = ACTIONS(1968), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1968), - [sym__entry_separator] = ACTIONS(1970), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1970), - }, - [421] = { - [sym_cell_path] = STATE(661), - [sym_path] = STATE(569), - [sym_comment] = STATE(421), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1972), - [anon_sym_alias] = ACTIONS(1972), - [anon_sym_let] = ACTIONS(1972), - [anon_sym_let_DASHenv] = ACTIONS(1972), - [anon_sym_mut] = ACTIONS(1972), - [anon_sym_const] = ACTIONS(1972), - [aux_sym_cmd_identifier_token1] = ACTIONS(1972), - [aux_sym_cmd_identifier_token2] = ACTIONS(1972), - [aux_sym_cmd_identifier_token3] = ACTIONS(1972), - [aux_sym_cmd_identifier_token4] = ACTIONS(1972), - [aux_sym_cmd_identifier_token5] = ACTIONS(1972), - [aux_sym_cmd_identifier_token6] = ACTIONS(1972), - [aux_sym_cmd_identifier_token7] = ACTIONS(1972), - [aux_sym_cmd_identifier_token8] = ACTIONS(1972), - [aux_sym_cmd_identifier_token9] = ACTIONS(1972), - [aux_sym_cmd_identifier_token10] = ACTIONS(1972), - [aux_sym_cmd_identifier_token11] = ACTIONS(1972), - [aux_sym_cmd_identifier_token12] = ACTIONS(1972), - [aux_sym_cmd_identifier_token13] = ACTIONS(1972), - [aux_sym_cmd_identifier_token14] = ACTIONS(1972), - [aux_sym_cmd_identifier_token15] = ACTIONS(1972), - [aux_sym_cmd_identifier_token16] = ACTIONS(1972), - [aux_sym_cmd_identifier_token17] = ACTIONS(1972), - [aux_sym_cmd_identifier_token18] = ACTIONS(1972), - [aux_sym_cmd_identifier_token19] = ACTIONS(1972), - [aux_sym_cmd_identifier_token20] = ACTIONS(1972), - [aux_sym_cmd_identifier_token21] = ACTIONS(1972), - [aux_sym_cmd_identifier_token22] = ACTIONS(1972), - [aux_sym_cmd_identifier_token23] = ACTIONS(1972), - [aux_sym_cmd_identifier_token24] = ACTIONS(1972), - [aux_sym_cmd_identifier_token25] = ACTIONS(1972), - [aux_sym_cmd_identifier_token26] = ACTIONS(1972), - [aux_sym_cmd_identifier_token27] = ACTIONS(1972), - [aux_sym_cmd_identifier_token28] = ACTIONS(1972), - [aux_sym_cmd_identifier_token29] = ACTIONS(1972), - [aux_sym_cmd_identifier_token30] = ACTIONS(1972), - [aux_sym_cmd_identifier_token31] = ACTIONS(1972), - [aux_sym_cmd_identifier_token32] = ACTIONS(1972), - [aux_sym_cmd_identifier_token33] = ACTIONS(1972), - [aux_sym_cmd_identifier_token34] = ACTIONS(1972), - [aux_sym_cmd_identifier_token35] = ACTIONS(1972), - [aux_sym_cmd_identifier_token36] = ACTIONS(1972), - [aux_sym_cmd_identifier_token37] = ACTIONS(1972), - [aux_sym_cmd_identifier_token38] = ACTIONS(1972), - [aux_sym_cmd_identifier_token39] = ACTIONS(1972), - [aux_sym_cmd_identifier_token40] = ACTIONS(1972), - [anon_sym_def] = ACTIONS(1972), - [anon_sym_export_DASHenv] = ACTIONS(1972), - [anon_sym_extern] = ACTIONS(1972), - [anon_sym_module] = ACTIONS(1972), - [anon_sym_use] = ACTIONS(1972), - [anon_sym_LPAREN] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(1972), - [anon_sym_error] = ACTIONS(1972), - [anon_sym_DASH2] = ACTIONS(1972), - [anon_sym_break] = ACTIONS(1972), - [anon_sym_continue] = ACTIONS(1972), - [anon_sym_for] = ACTIONS(1972), - [anon_sym_in2] = ACTIONS(1972), - [anon_sym_loop] = ACTIONS(1972), - [anon_sym_make] = ACTIONS(1972), - [anon_sym_while] = ACTIONS(1972), - [anon_sym_do] = ACTIONS(1972), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_else] = ACTIONS(1972), - [anon_sym_match] = ACTIONS(1972), - [anon_sym_RBRACE] = ACTIONS(1972), - [anon_sym_try] = ACTIONS(1972), - [anon_sym_catch] = ACTIONS(1972), - [anon_sym_return] = ACTIONS(1972), - [anon_sym_source] = ACTIONS(1972), - [anon_sym_source_DASHenv] = ACTIONS(1972), - [anon_sym_register] = ACTIONS(1972), - [anon_sym_hide] = ACTIONS(1972), - [anon_sym_hide_DASHenv] = ACTIONS(1972), - [anon_sym_overlay] = ACTIONS(1972), - [anon_sym_as] = ACTIONS(1972), - [anon_sym_PLUS2] = ACTIONS(1972), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1972), - [anon_sym_DOT] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1972), - [aux_sym__val_number_decimal_token1] = ACTIONS(1972), - [aux_sym__val_number_decimal_token2] = ACTIONS(1972), - [aux_sym__val_number_decimal_token3] = ACTIONS(1972), - [aux_sym__val_number_decimal_token4] = ACTIONS(1972), - [aux_sym__val_number_token1] = ACTIONS(1972), - [aux_sym__val_number_token2] = ACTIONS(1972), - [aux_sym__val_number_token3] = ACTIONS(1972), - [aux_sym__val_number_token4] = ACTIONS(1972), - [aux_sym__val_number_token5] = ACTIONS(1972), - [aux_sym__val_number_token6] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1972), - [sym__str_single_quotes] = ACTIONS(1972), - [sym__str_back_ticks] = ACTIONS(1972), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1972), - [sym__entry_separator] = ACTIONS(1974), + [444] = { + [sym_cell_path] = STATE(628), + [sym_path] = STATE(567), + [sym_comment] = STATE(444), + [aux_sym_cell_path_repeat1] = STATE(495), + [anon_sym_export] = ACTIONS(2026), + [anon_sym_alias] = ACTIONS(2026), + [anon_sym_let] = ACTIONS(2026), + [anon_sym_let_DASHenv] = ACTIONS(2026), + [anon_sym_mut] = ACTIONS(2026), + [anon_sym_const] = ACTIONS(2026), + [aux_sym_cmd_identifier_token1] = ACTIONS(2026), + [aux_sym_cmd_identifier_token2] = ACTIONS(2026), + [aux_sym_cmd_identifier_token3] = ACTIONS(2026), + [aux_sym_cmd_identifier_token4] = ACTIONS(2026), + [aux_sym_cmd_identifier_token5] = ACTIONS(2026), + [aux_sym_cmd_identifier_token6] = ACTIONS(2026), + [aux_sym_cmd_identifier_token7] = ACTIONS(2026), + [aux_sym_cmd_identifier_token8] = ACTIONS(2026), + [aux_sym_cmd_identifier_token9] = ACTIONS(2026), + [aux_sym_cmd_identifier_token10] = ACTIONS(2026), + [aux_sym_cmd_identifier_token11] = ACTIONS(2026), + [aux_sym_cmd_identifier_token12] = ACTIONS(2026), + [aux_sym_cmd_identifier_token13] = ACTIONS(2026), + [aux_sym_cmd_identifier_token14] = ACTIONS(2026), + [aux_sym_cmd_identifier_token15] = ACTIONS(2026), + [aux_sym_cmd_identifier_token16] = ACTIONS(2026), + [aux_sym_cmd_identifier_token17] = ACTIONS(2026), + [aux_sym_cmd_identifier_token18] = ACTIONS(2026), + [aux_sym_cmd_identifier_token19] = ACTIONS(2026), + [aux_sym_cmd_identifier_token20] = ACTIONS(2026), + [aux_sym_cmd_identifier_token21] = ACTIONS(2026), + [aux_sym_cmd_identifier_token22] = ACTIONS(2026), + [aux_sym_cmd_identifier_token23] = ACTIONS(2026), + [aux_sym_cmd_identifier_token24] = ACTIONS(2026), + [aux_sym_cmd_identifier_token25] = ACTIONS(2026), + [aux_sym_cmd_identifier_token26] = ACTIONS(2026), + [aux_sym_cmd_identifier_token27] = ACTIONS(2026), + [aux_sym_cmd_identifier_token28] = ACTIONS(2026), + [aux_sym_cmd_identifier_token29] = ACTIONS(2026), + [aux_sym_cmd_identifier_token30] = ACTIONS(2026), + [aux_sym_cmd_identifier_token31] = ACTIONS(2026), + [aux_sym_cmd_identifier_token32] = ACTIONS(2026), + [aux_sym_cmd_identifier_token33] = ACTIONS(2026), + [aux_sym_cmd_identifier_token34] = ACTIONS(2026), + [aux_sym_cmd_identifier_token35] = ACTIONS(2026), + [aux_sym_cmd_identifier_token36] = ACTIONS(2026), + [aux_sym_cmd_identifier_token37] = ACTIONS(2026), + [aux_sym_cmd_identifier_token38] = ACTIONS(2026), + [aux_sym_cmd_identifier_token39] = ACTIONS(2026), + [aux_sym_cmd_identifier_token40] = ACTIONS(2026), + [anon_sym_def] = ACTIONS(2026), + [anon_sym_export_DASHenv] = ACTIONS(2026), + [anon_sym_extern] = ACTIONS(2026), + [anon_sym_module] = ACTIONS(2026), + [anon_sym_use] = ACTIONS(2026), + [anon_sym_LPAREN] = ACTIONS(2026), + [anon_sym_DOLLAR] = ACTIONS(2026), + [anon_sym_error] = ACTIONS(2026), + [anon_sym_DASH2] = ACTIONS(2026), + [anon_sym_break] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(2026), + [anon_sym_for] = ACTIONS(2026), + [anon_sym_in2] = ACTIONS(2026), + [anon_sym_loop] = ACTIONS(2026), + [anon_sym_make] = ACTIONS(2026), + [anon_sym_while] = ACTIONS(2026), + [anon_sym_do] = ACTIONS(2026), + [anon_sym_if] = ACTIONS(2026), + [anon_sym_else] = ACTIONS(2026), + [anon_sym_match] = ACTIONS(2026), + [anon_sym_RBRACE] = ACTIONS(2026), + [anon_sym_try] = ACTIONS(2026), + [anon_sym_catch] = ACTIONS(2026), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_source] = ACTIONS(2026), + [anon_sym_source_DASHenv] = ACTIONS(2026), + [anon_sym_register] = ACTIONS(2026), + [anon_sym_hide] = ACTIONS(2026), + [anon_sym_hide_DASHenv] = ACTIONS(2026), + [anon_sym_overlay] = ACTIONS(2026), + [anon_sym_as] = ACTIONS(2026), + [anon_sym_PLUS2] = ACTIONS(2026), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2026), + [anon_sym_DOT] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2026), + [aux_sym__val_number_decimal_token1] = ACTIONS(2026), + [aux_sym__val_number_decimal_token2] = ACTIONS(2026), + [aux_sym__val_number_decimal_token3] = ACTIONS(2026), + [aux_sym__val_number_decimal_token4] = ACTIONS(2026), + [aux_sym__val_number_token1] = ACTIONS(2026), + [aux_sym__val_number_token2] = ACTIONS(2026), + [aux_sym__val_number_token3] = ACTIONS(2026), + [aux_sym__val_number_token4] = ACTIONS(2026), + [aux_sym__val_number_token5] = ACTIONS(2026), + [aux_sym__val_number_token6] = ACTIONS(2026), + [anon_sym_DQUOTE] = ACTIONS(2026), + [sym__str_single_quotes] = ACTIONS(2026), + [sym__str_back_ticks] = ACTIONS(2026), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2026), + [sym__entry_separator] = ACTIONS(2028), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1974), + [sym_raw_string_begin] = ACTIONS(2028), }, - [422] = { - [sym_comment] = STATE(422), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_alias] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_let_DASHenv] = ACTIONS(1755), - [anon_sym_mut] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1755), - [aux_sym_cmd_identifier_token3] = ACTIONS(1755), - [aux_sym_cmd_identifier_token4] = ACTIONS(1755), - [aux_sym_cmd_identifier_token5] = ACTIONS(1755), - [aux_sym_cmd_identifier_token6] = ACTIONS(1755), - [aux_sym_cmd_identifier_token7] = ACTIONS(1755), - [aux_sym_cmd_identifier_token8] = ACTIONS(1755), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1755), - [aux_sym_cmd_identifier_token11] = ACTIONS(1755), - [aux_sym_cmd_identifier_token12] = ACTIONS(1755), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1755), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1755), - [aux_sym_cmd_identifier_token17] = ACTIONS(1755), - [aux_sym_cmd_identifier_token18] = ACTIONS(1755), - [aux_sym_cmd_identifier_token19] = ACTIONS(1755), - [aux_sym_cmd_identifier_token20] = ACTIONS(1755), - [aux_sym_cmd_identifier_token21] = ACTIONS(1755), - [aux_sym_cmd_identifier_token22] = ACTIONS(1755), - [aux_sym_cmd_identifier_token23] = ACTIONS(1755), - [aux_sym_cmd_identifier_token24] = ACTIONS(1755), - [aux_sym_cmd_identifier_token25] = ACTIONS(1755), - [aux_sym_cmd_identifier_token26] = ACTIONS(1755), - [aux_sym_cmd_identifier_token27] = ACTIONS(1755), - [aux_sym_cmd_identifier_token28] = ACTIONS(1755), - [aux_sym_cmd_identifier_token29] = ACTIONS(1755), - [aux_sym_cmd_identifier_token30] = ACTIONS(1755), - [aux_sym_cmd_identifier_token31] = ACTIONS(1755), - [aux_sym_cmd_identifier_token32] = ACTIONS(1755), - [aux_sym_cmd_identifier_token33] = ACTIONS(1755), - [aux_sym_cmd_identifier_token34] = ACTIONS(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1755), - [aux_sym_cmd_identifier_token36] = ACTIONS(1755), - [aux_sym_cmd_identifier_token37] = ACTIONS(1755), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1755), - [aux_sym_cmd_identifier_token40] = ACTIONS(1755), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_export_DASHenv] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_make] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1755), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_source] = ACTIONS(1755), - [anon_sym_source_DASHenv] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_hide] = ACTIONS(1755), - [anon_sym_hide_DASHenv] = ACTIONS(1755), - [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(1864), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1755), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1755), - [aux_sym__val_number_decimal_token3] = ACTIONS(1755), - [aux_sym__val_number_decimal_token4] = ACTIONS(1755), - [aux_sym__val_number_token1] = ACTIONS(1755), - [aux_sym__val_number_token2] = ACTIONS(1755), - [aux_sym__val_number_token3] = ACTIONS(1755), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym__str_single_quotes] = ACTIONS(1755), - [sym__str_back_ticks] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1755), - [sym__entry_separator] = ACTIONS(1757), + [445] = { + [sym_cell_path] = STATE(647), + [sym_path] = STATE(567), + [sym_comment] = STATE(445), + [aux_sym_cell_path_repeat1] = STATE(495), + [anon_sym_export] = ACTIONS(2030), + [anon_sym_alias] = ACTIONS(2030), + [anon_sym_let] = ACTIONS(2030), + [anon_sym_let_DASHenv] = ACTIONS(2030), + [anon_sym_mut] = ACTIONS(2030), + [anon_sym_const] = ACTIONS(2030), + [aux_sym_cmd_identifier_token1] = ACTIONS(2030), + [aux_sym_cmd_identifier_token2] = ACTIONS(2030), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [aux_sym_cmd_identifier_token6] = ACTIONS(2030), + [aux_sym_cmd_identifier_token7] = ACTIONS(2030), + [aux_sym_cmd_identifier_token8] = ACTIONS(2030), + [aux_sym_cmd_identifier_token9] = ACTIONS(2030), + [aux_sym_cmd_identifier_token10] = ACTIONS(2030), + [aux_sym_cmd_identifier_token11] = ACTIONS(2030), + [aux_sym_cmd_identifier_token12] = ACTIONS(2030), + [aux_sym_cmd_identifier_token13] = ACTIONS(2030), + [aux_sym_cmd_identifier_token14] = ACTIONS(2030), + [aux_sym_cmd_identifier_token15] = ACTIONS(2030), + [aux_sym_cmd_identifier_token16] = ACTIONS(2030), + [aux_sym_cmd_identifier_token17] = ACTIONS(2030), + [aux_sym_cmd_identifier_token18] = ACTIONS(2030), + [aux_sym_cmd_identifier_token19] = ACTIONS(2030), + [aux_sym_cmd_identifier_token20] = ACTIONS(2030), + [aux_sym_cmd_identifier_token21] = ACTIONS(2030), + [aux_sym_cmd_identifier_token22] = ACTIONS(2030), + [aux_sym_cmd_identifier_token23] = ACTIONS(2030), + [aux_sym_cmd_identifier_token24] = ACTIONS(2030), + [aux_sym_cmd_identifier_token25] = ACTIONS(2030), + [aux_sym_cmd_identifier_token26] = ACTIONS(2030), + [aux_sym_cmd_identifier_token27] = ACTIONS(2030), + [aux_sym_cmd_identifier_token28] = ACTIONS(2030), + [aux_sym_cmd_identifier_token29] = ACTIONS(2030), + [aux_sym_cmd_identifier_token30] = ACTIONS(2030), + [aux_sym_cmd_identifier_token31] = ACTIONS(2030), + [aux_sym_cmd_identifier_token32] = ACTIONS(2030), + [aux_sym_cmd_identifier_token33] = ACTIONS(2030), + [aux_sym_cmd_identifier_token34] = ACTIONS(2030), + [aux_sym_cmd_identifier_token35] = ACTIONS(2030), + [aux_sym_cmd_identifier_token36] = ACTIONS(2030), + [aux_sym_cmd_identifier_token37] = ACTIONS(2030), + [aux_sym_cmd_identifier_token38] = ACTIONS(2030), + [aux_sym_cmd_identifier_token39] = ACTIONS(2030), + [aux_sym_cmd_identifier_token40] = ACTIONS(2030), + [anon_sym_def] = ACTIONS(2030), + [anon_sym_export_DASHenv] = ACTIONS(2030), + [anon_sym_extern] = ACTIONS(2030), + [anon_sym_module] = ACTIONS(2030), + [anon_sym_use] = ACTIONS(2030), + [anon_sym_LPAREN] = ACTIONS(2030), + [anon_sym_DOLLAR] = ACTIONS(2030), + [anon_sym_error] = ACTIONS(2030), + [anon_sym_DASH2] = ACTIONS(2030), + [anon_sym_break] = ACTIONS(2030), + [anon_sym_continue] = ACTIONS(2030), + [anon_sym_for] = ACTIONS(2030), + [anon_sym_in2] = ACTIONS(2030), + [anon_sym_loop] = ACTIONS(2030), + [anon_sym_make] = ACTIONS(2030), + [anon_sym_while] = ACTIONS(2030), + [anon_sym_do] = ACTIONS(2030), + [anon_sym_if] = ACTIONS(2030), + [anon_sym_else] = ACTIONS(2030), + [anon_sym_match] = ACTIONS(2030), + [anon_sym_RBRACE] = ACTIONS(2030), + [anon_sym_try] = ACTIONS(2030), + [anon_sym_catch] = ACTIONS(2030), + [anon_sym_return] = ACTIONS(2030), + [anon_sym_source] = ACTIONS(2030), + [anon_sym_source_DASHenv] = ACTIONS(2030), + [anon_sym_register] = ACTIONS(2030), + [anon_sym_hide] = ACTIONS(2030), + [anon_sym_hide_DASHenv] = ACTIONS(2030), + [anon_sym_overlay] = ACTIONS(2030), + [anon_sym_as] = ACTIONS(2030), + [anon_sym_PLUS2] = ACTIONS(2030), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2030), + [anon_sym_DOT] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2030), + [aux_sym__val_number_decimal_token1] = ACTIONS(2030), + [aux_sym__val_number_decimal_token2] = ACTIONS(2030), + [aux_sym__val_number_decimal_token3] = ACTIONS(2030), + [aux_sym__val_number_decimal_token4] = ACTIONS(2030), + [aux_sym__val_number_token1] = ACTIONS(2030), + [aux_sym__val_number_token2] = ACTIONS(2030), + [aux_sym__val_number_token3] = ACTIONS(2030), + [aux_sym__val_number_token4] = ACTIONS(2030), + [aux_sym__val_number_token5] = ACTIONS(2030), + [aux_sym__val_number_token6] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2030), + [sym__str_single_quotes] = ACTIONS(2030), + [sym__str_back_ticks] = ACTIONS(2030), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2030), + [sym__entry_separator] = ACTIONS(2032), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1757), + [sym_raw_string_begin] = ACTIONS(2032), }, - [423] = { - [sym_cell_path] = STATE(656), - [sym_path] = STATE(569), - [sym_comment] = STATE(423), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1976), - [anon_sym_alias] = ACTIONS(1976), - [anon_sym_let] = ACTIONS(1976), - [anon_sym_let_DASHenv] = ACTIONS(1976), - [anon_sym_mut] = ACTIONS(1976), - [anon_sym_const] = ACTIONS(1976), - [aux_sym_cmd_identifier_token1] = ACTIONS(1976), - [aux_sym_cmd_identifier_token2] = ACTIONS(1976), - [aux_sym_cmd_identifier_token3] = ACTIONS(1976), - [aux_sym_cmd_identifier_token4] = ACTIONS(1976), - [aux_sym_cmd_identifier_token5] = ACTIONS(1976), - [aux_sym_cmd_identifier_token6] = ACTIONS(1976), - [aux_sym_cmd_identifier_token7] = ACTIONS(1976), - [aux_sym_cmd_identifier_token8] = ACTIONS(1976), - [aux_sym_cmd_identifier_token9] = ACTIONS(1976), - [aux_sym_cmd_identifier_token10] = ACTIONS(1976), - [aux_sym_cmd_identifier_token11] = ACTIONS(1976), - [aux_sym_cmd_identifier_token12] = ACTIONS(1976), - [aux_sym_cmd_identifier_token13] = ACTIONS(1976), - [aux_sym_cmd_identifier_token14] = ACTIONS(1976), - [aux_sym_cmd_identifier_token15] = ACTIONS(1976), - [aux_sym_cmd_identifier_token16] = ACTIONS(1976), - [aux_sym_cmd_identifier_token17] = ACTIONS(1976), - [aux_sym_cmd_identifier_token18] = ACTIONS(1976), - [aux_sym_cmd_identifier_token19] = ACTIONS(1976), - [aux_sym_cmd_identifier_token20] = ACTIONS(1976), - [aux_sym_cmd_identifier_token21] = ACTIONS(1976), - [aux_sym_cmd_identifier_token22] = ACTIONS(1976), - [aux_sym_cmd_identifier_token23] = ACTIONS(1976), - [aux_sym_cmd_identifier_token24] = ACTIONS(1976), - [aux_sym_cmd_identifier_token25] = ACTIONS(1976), - [aux_sym_cmd_identifier_token26] = ACTIONS(1976), - [aux_sym_cmd_identifier_token27] = ACTIONS(1976), - [aux_sym_cmd_identifier_token28] = ACTIONS(1976), - [aux_sym_cmd_identifier_token29] = ACTIONS(1976), - [aux_sym_cmd_identifier_token30] = ACTIONS(1976), - [aux_sym_cmd_identifier_token31] = ACTIONS(1976), - [aux_sym_cmd_identifier_token32] = ACTIONS(1976), - [aux_sym_cmd_identifier_token33] = ACTIONS(1976), - [aux_sym_cmd_identifier_token34] = ACTIONS(1976), - [aux_sym_cmd_identifier_token35] = ACTIONS(1976), - [aux_sym_cmd_identifier_token36] = ACTIONS(1976), - [aux_sym_cmd_identifier_token37] = ACTIONS(1976), - [aux_sym_cmd_identifier_token38] = ACTIONS(1976), - [aux_sym_cmd_identifier_token39] = ACTIONS(1976), - [aux_sym_cmd_identifier_token40] = ACTIONS(1976), - [anon_sym_def] = ACTIONS(1976), - [anon_sym_export_DASHenv] = ACTIONS(1976), - [anon_sym_extern] = ACTIONS(1976), - [anon_sym_module] = ACTIONS(1976), - [anon_sym_use] = ACTIONS(1976), - [anon_sym_LPAREN] = ACTIONS(1976), - [anon_sym_DOLLAR] = ACTIONS(1976), - [anon_sym_error] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1976), - [anon_sym_break] = ACTIONS(1976), - [anon_sym_continue] = ACTIONS(1976), - [anon_sym_for] = ACTIONS(1976), - [anon_sym_in2] = ACTIONS(1976), - [anon_sym_loop] = ACTIONS(1976), - [anon_sym_make] = ACTIONS(1976), - [anon_sym_while] = ACTIONS(1976), - [anon_sym_do] = ACTIONS(1976), - [anon_sym_if] = ACTIONS(1976), - [anon_sym_else] = ACTIONS(1976), - [anon_sym_match] = ACTIONS(1976), - [anon_sym_RBRACE] = ACTIONS(1976), - [anon_sym_try] = ACTIONS(1976), - [anon_sym_catch] = ACTIONS(1976), - [anon_sym_return] = ACTIONS(1976), - [anon_sym_source] = ACTIONS(1976), - [anon_sym_source_DASHenv] = ACTIONS(1976), - [anon_sym_register] = ACTIONS(1976), - [anon_sym_hide] = ACTIONS(1976), - [anon_sym_hide_DASHenv] = ACTIONS(1976), - [anon_sym_overlay] = ACTIONS(1976), - [anon_sym_as] = ACTIONS(1976), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1976), - [anon_sym_DOT] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1976), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1976), - [aux_sym__val_number_decimal_token3] = ACTIONS(1976), - [aux_sym__val_number_decimal_token4] = ACTIONS(1976), - [aux_sym__val_number_token1] = ACTIONS(1976), - [aux_sym__val_number_token2] = ACTIONS(1976), - [aux_sym__val_number_token3] = ACTIONS(1976), - [aux_sym__val_number_token4] = ACTIONS(1976), - [aux_sym__val_number_token5] = ACTIONS(1976), - [aux_sym__val_number_token6] = ACTIONS(1976), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym__str_single_quotes] = ACTIONS(1976), - [sym__str_back_ticks] = ACTIONS(1976), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1976), - [sym__entry_separator] = ACTIONS(1978), + [446] = { + [sym_cell_path] = STATE(655), + [sym_path] = STATE(567), + [sym_comment] = STATE(446), + [aux_sym_cell_path_repeat1] = STATE(495), + [anon_sym_export] = ACTIONS(2034), + [anon_sym_alias] = ACTIONS(2034), + [anon_sym_let] = ACTIONS(2034), + [anon_sym_let_DASHenv] = ACTIONS(2034), + [anon_sym_mut] = ACTIONS(2034), + [anon_sym_const] = ACTIONS(2034), + [aux_sym_cmd_identifier_token1] = ACTIONS(2034), + [aux_sym_cmd_identifier_token2] = ACTIONS(2034), + [aux_sym_cmd_identifier_token3] = ACTIONS(2034), + [aux_sym_cmd_identifier_token4] = ACTIONS(2034), + [aux_sym_cmd_identifier_token5] = ACTIONS(2034), + [aux_sym_cmd_identifier_token6] = ACTIONS(2034), + [aux_sym_cmd_identifier_token7] = ACTIONS(2034), + [aux_sym_cmd_identifier_token8] = ACTIONS(2034), + [aux_sym_cmd_identifier_token9] = ACTIONS(2034), + [aux_sym_cmd_identifier_token10] = ACTIONS(2034), + [aux_sym_cmd_identifier_token11] = ACTIONS(2034), + [aux_sym_cmd_identifier_token12] = ACTIONS(2034), + [aux_sym_cmd_identifier_token13] = ACTIONS(2034), + [aux_sym_cmd_identifier_token14] = ACTIONS(2034), + [aux_sym_cmd_identifier_token15] = ACTIONS(2034), + [aux_sym_cmd_identifier_token16] = ACTIONS(2034), + [aux_sym_cmd_identifier_token17] = ACTIONS(2034), + [aux_sym_cmd_identifier_token18] = ACTIONS(2034), + [aux_sym_cmd_identifier_token19] = ACTIONS(2034), + [aux_sym_cmd_identifier_token20] = ACTIONS(2034), + [aux_sym_cmd_identifier_token21] = ACTIONS(2034), + [aux_sym_cmd_identifier_token22] = ACTIONS(2034), + [aux_sym_cmd_identifier_token23] = ACTIONS(2034), + [aux_sym_cmd_identifier_token24] = ACTIONS(2034), + [aux_sym_cmd_identifier_token25] = ACTIONS(2034), + [aux_sym_cmd_identifier_token26] = ACTIONS(2034), + [aux_sym_cmd_identifier_token27] = ACTIONS(2034), + [aux_sym_cmd_identifier_token28] = ACTIONS(2034), + [aux_sym_cmd_identifier_token29] = ACTIONS(2034), + [aux_sym_cmd_identifier_token30] = ACTIONS(2034), + [aux_sym_cmd_identifier_token31] = ACTIONS(2034), + [aux_sym_cmd_identifier_token32] = ACTIONS(2034), + [aux_sym_cmd_identifier_token33] = ACTIONS(2034), + [aux_sym_cmd_identifier_token34] = ACTIONS(2034), + [aux_sym_cmd_identifier_token35] = ACTIONS(2034), + [aux_sym_cmd_identifier_token36] = ACTIONS(2034), + [aux_sym_cmd_identifier_token37] = ACTIONS(2034), + [aux_sym_cmd_identifier_token38] = ACTIONS(2034), + [aux_sym_cmd_identifier_token39] = ACTIONS(2034), + [aux_sym_cmd_identifier_token40] = ACTIONS(2034), + [anon_sym_def] = ACTIONS(2034), + [anon_sym_export_DASHenv] = ACTIONS(2034), + [anon_sym_extern] = ACTIONS(2034), + [anon_sym_module] = ACTIONS(2034), + [anon_sym_use] = ACTIONS(2034), + [anon_sym_LPAREN] = ACTIONS(2034), + [anon_sym_DOLLAR] = ACTIONS(2034), + [anon_sym_error] = ACTIONS(2034), + [anon_sym_DASH2] = ACTIONS(2034), + [anon_sym_break] = ACTIONS(2034), + [anon_sym_continue] = ACTIONS(2034), + [anon_sym_for] = ACTIONS(2034), + [anon_sym_in2] = ACTIONS(2034), + [anon_sym_loop] = ACTIONS(2034), + [anon_sym_make] = ACTIONS(2034), + [anon_sym_while] = ACTIONS(2034), + [anon_sym_do] = ACTIONS(2034), + [anon_sym_if] = ACTIONS(2034), + [anon_sym_else] = ACTIONS(2034), + [anon_sym_match] = ACTIONS(2034), + [anon_sym_RBRACE] = ACTIONS(2034), + [anon_sym_try] = ACTIONS(2034), + [anon_sym_catch] = ACTIONS(2034), + [anon_sym_return] = ACTIONS(2034), + [anon_sym_source] = ACTIONS(2034), + [anon_sym_source_DASHenv] = ACTIONS(2034), + [anon_sym_register] = ACTIONS(2034), + [anon_sym_hide] = ACTIONS(2034), + [anon_sym_hide_DASHenv] = ACTIONS(2034), + [anon_sym_overlay] = ACTIONS(2034), + [anon_sym_as] = ACTIONS(2034), + [anon_sym_PLUS2] = ACTIONS(2034), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2034), + [anon_sym_DOT] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2034), + [aux_sym__val_number_decimal_token2] = ACTIONS(2034), + [aux_sym__val_number_decimal_token3] = ACTIONS(2034), + [aux_sym__val_number_decimal_token4] = ACTIONS(2034), + [aux_sym__val_number_token1] = ACTIONS(2034), + [aux_sym__val_number_token2] = ACTIONS(2034), + [aux_sym__val_number_token3] = ACTIONS(2034), + [aux_sym__val_number_token4] = ACTIONS(2034), + [aux_sym__val_number_token5] = ACTIONS(2034), + [aux_sym__val_number_token6] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2034), + [sym__str_single_quotes] = ACTIONS(2034), + [sym__str_back_ticks] = ACTIONS(2034), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2034), + [sym__entry_separator] = ACTIONS(2036), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1978), - }, - [424] = { - [sym_comment] = STATE(424), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_alias] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_let_DASHenv] = ACTIONS(1755), - [anon_sym_mut] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1757), - [aux_sym_cmd_identifier_token3] = ACTIONS(1757), - [aux_sym_cmd_identifier_token4] = ACTIONS(1757), - [aux_sym_cmd_identifier_token5] = ACTIONS(1757), - [aux_sym_cmd_identifier_token6] = ACTIONS(1757), - [aux_sym_cmd_identifier_token7] = ACTIONS(1757), - [aux_sym_cmd_identifier_token8] = ACTIONS(1755), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1757), - [aux_sym_cmd_identifier_token11] = ACTIONS(1757), - [aux_sym_cmd_identifier_token12] = ACTIONS(1755), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1755), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1757), - [aux_sym_cmd_identifier_token17] = ACTIONS(1757), - [aux_sym_cmd_identifier_token18] = ACTIONS(1757), - [aux_sym_cmd_identifier_token19] = ACTIONS(1757), - [aux_sym_cmd_identifier_token20] = ACTIONS(1757), - [aux_sym_cmd_identifier_token21] = ACTIONS(1757), - [aux_sym_cmd_identifier_token22] = ACTIONS(1757), - [aux_sym_cmd_identifier_token23] = ACTIONS(1757), - [aux_sym_cmd_identifier_token24] = ACTIONS(1757), - [aux_sym_cmd_identifier_token25] = ACTIONS(1757), - [aux_sym_cmd_identifier_token26] = ACTIONS(1757), - [aux_sym_cmd_identifier_token27] = ACTIONS(1757), - [aux_sym_cmd_identifier_token28] = ACTIONS(1757), - [aux_sym_cmd_identifier_token29] = ACTIONS(1757), - [aux_sym_cmd_identifier_token30] = ACTIONS(1757), - [aux_sym_cmd_identifier_token31] = ACTIONS(1757), - [aux_sym_cmd_identifier_token32] = ACTIONS(1757), - [aux_sym_cmd_identifier_token33] = ACTIONS(1757), - [aux_sym_cmd_identifier_token34] = ACTIONS(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [aux_sym_cmd_identifier_token37] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_export_DASHenv] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_make] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_source] = ACTIONS(1755), - [anon_sym_source_DASHenv] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_hide] = ACTIONS(1755), - [anon_sym_hide_DASHenv] = ACTIONS(1755), - [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT] = ACTIONS(1980), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(1982), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1757), + [sym_raw_string_begin] = ACTIONS(2036), }, - [425] = { - [sym_comment] = STATE(425), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_alias] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_let_DASHenv] = ACTIONS(1755), - [anon_sym_mut] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1757), - [aux_sym_cmd_identifier_token3] = ACTIONS(1757), - [aux_sym_cmd_identifier_token4] = ACTIONS(1757), - [aux_sym_cmd_identifier_token5] = ACTIONS(1757), - [aux_sym_cmd_identifier_token6] = ACTIONS(1757), - [aux_sym_cmd_identifier_token7] = ACTIONS(1757), - [aux_sym_cmd_identifier_token8] = ACTIONS(1755), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1757), - [aux_sym_cmd_identifier_token11] = ACTIONS(1757), - [aux_sym_cmd_identifier_token12] = ACTIONS(1755), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1755), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1757), - [aux_sym_cmd_identifier_token17] = ACTIONS(1757), - [aux_sym_cmd_identifier_token18] = ACTIONS(1757), - [aux_sym_cmd_identifier_token19] = ACTIONS(1757), - [aux_sym_cmd_identifier_token20] = ACTIONS(1757), - [aux_sym_cmd_identifier_token21] = ACTIONS(1757), - [aux_sym_cmd_identifier_token22] = ACTIONS(1757), - [aux_sym_cmd_identifier_token23] = ACTIONS(1757), - [aux_sym_cmd_identifier_token24] = ACTIONS(1757), - [aux_sym_cmd_identifier_token25] = ACTIONS(1757), - [aux_sym_cmd_identifier_token26] = ACTIONS(1757), - [aux_sym_cmd_identifier_token27] = ACTIONS(1757), - [aux_sym_cmd_identifier_token28] = ACTIONS(1757), - [aux_sym_cmd_identifier_token29] = ACTIONS(1757), - [aux_sym_cmd_identifier_token30] = ACTIONS(1757), - [aux_sym_cmd_identifier_token31] = ACTIONS(1757), - [aux_sym_cmd_identifier_token32] = ACTIONS(1757), - [aux_sym_cmd_identifier_token33] = ACTIONS(1757), - [aux_sym_cmd_identifier_token34] = ACTIONS(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [aux_sym_cmd_identifier_token37] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_export_DASHenv] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_make] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_source] = ACTIONS(1755), - [anon_sym_source_DASHenv] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_hide] = ACTIONS(1755), - [anon_sym_hide_DASHenv] = ACTIONS(1755), - [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1757), + [447] = { + [sym_comment] = STATE(447), + [anon_sym_export] = ACTIONS(1785), + [anon_sym_alias] = ACTIONS(1785), + [anon_sym_let] = ACTIONS(1785), + [anon_sym_let_DASHenv] = ACTIONS(1785), + [anon_sym_mut] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(1785), + [aux_sym_cmd_identifier_token1] = ACTIONS(1785), + [aux_sym_cmd_identifier_token2] = ACTIONS(1787), + [aux_sym_cmd_identifier_token3] = ACTIONS(1787), + [aux_sym_cmd_identifier_token4] = ACTIONS(1787), + [aux_sym_cmd_identifier_token5] = ACTIONS(1787), + [aux_sym_cmd_identifier_token6] = ACTIONS(1787), + [aux_sym_cmd_identifier_token7] = ACTIONS(1787), + [aux_sym_cmd_identifier_token8] = ACTIONS(1785), + [aux_sym_cmd_identifier_token9] = ACTIONS(1785), + [aux_sym_cmd_identifier_token10] = ACTIONS(1787), + [aux_sym_cmd_identifier_token11] = ACTIONS(1787), + [aux_sym_cmd_identifier_token12] = ACTIONS(1785), + [aux_sym_cmd_identifier_token13] = ACTIONS(1785), + [aux_sym_cmd_identifier_token14] = ACTIONS(1785), + [aux_sym_cmd_identifier_token15] = ACTIONS(1785), + [aux_sym_cmd_identifier_token16] = ACTIONS(1787), + [aux_sym_cmd_identifier_token17] = ACTIONS(1787), + [aux_sym_cmd_identifier_token18] = ACTIONS(1787), + [aux_sym_cmd_identifier_token19] = ACTIONS(1787), + [aux_sym_cmd_identifier_token20] = ACTIONS(1787), + [aux_sym_cmd_identifier_token21] = ACTIONS(1787), + [aux_sym_cmd_identifier_token22] = ACTIONS(1787), + [aux_sym_cmd_identifier_token23] = ACTIONS(1787), + [aux_sym_cmd_identifier_token24] = ACTIONS(1787), + [aux_sym_cmd_identifier_token25] = ACTIONS(1787), + [aux_sym_cmd_identifier_token26] = ACTIONS(1787), + [aux_sym_cmd_identifier_token27] = ACTIONS(1787), + [aux_sym_cmd_identifier_token28] = ACTIONS(1787), + [aux_sym_cmd_identifier_token29] = ACTIONS(1787), + [aux_sym_cmd_identifier_token30] = ACTIONS(1787), + [aux_sym_cmd_identifier_token31] = ACTIONS(1787), + [aux_sym_cmd_identifier_token32] = ACTIONS(1787), + [aux_sym_cmd_identifier_token33] = ACTIONS(1787), + [aux_sym_cmd_identifier_token34] = ACTIONS(1785), + [aux_sym_cmd_identifier_token35] = ACTIONS(1787), + [aux_sym_cmd_identifier_token36] = ACTIONS(1787), + [aux_sym_cmd_identifier_token37] = ACTIONS(1787), + [aux_sym_cmd_identifier_token38] = ACTIONS(1785), + [aux_sym_cmd_identifier_token39] = ACTIONS(1787), + [aux_sym_cmd_identifier_token40] = ACTIONS(1787), + [anon_sym_def] = ACTIONS(1785), + [anon_sym_export_DASHenv] = ACTIONS(1785), + [anon_sym_extern] = ACTIONS(1785), + [anon_sym_module] = ACTIONS(1785), + [anon_sym_use] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1787), + [anon_sym_error] = ACTIONS(1785), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_break] = ACTIONS(1785), + [anon_sym_continue] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1785), + [anon_sym_in2] = ACTIONS(1785), + [anon_sym_loop] = ACTIONS(1785), + [anon_sym_make] = ACTIONS(1785), + [anon_sym_while] = ACTIONS(1785), + [anon_sym_do] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1785), + [anon_sym_else] = ACTIONS(1785), + [anon_sym_match] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1787), + [anon_sym_try] = ACTIONS(1785), + [anon_sym_catch] = ACTIONS(1785), + [anon_sym_return] = ACTIONS(1785), + [anon_sym_source] = ACTIONS(1785), + [anon_sym_source_DASHenv] = ACTIONS(1785), + [anon_sym_register] = ACTIONS(1785), + [anon_sym_hide] = ACTIONS(1785), + [anon_sym_hide_DASHenv] = ACTIONS(1785), + [anon_sym_overlay] = ACTIONS(1785), + [anon_sym_as] = ACTIONS(1785), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_PLUS2] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1787), + [anon_sym_DOT_DOT2] = ACTIONS(1785), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1787), + [aux_sym__val_number_decimal_token1] = ACTIONS(1785), + [aux_sym__val_number_decimal_token2] = ACTIONS(1787), + [aux_sym__val_number_decimal_token3] = ACTIONS(1787), + [aux_sym__val_number_decimal_token4] = ACTIONS(1787), + [aux_sym__val_number_token1] = ACTIONS(1787), + [aux_sym__val_number_token2] = ACTIONS(1787), + [aux_sym__val_number_token3] = ACTIONS(1787), + [aux_sym__val_number_token4] = ACTIONS(1785), + [aux_sym__val_number_token5] = ACTIONS(1785), + [aux_sym__val_number_token6] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1787), + [sym__str_single_quotes] = ACTIONS(1787), + [sym__str_back_ticks] = ACTIONS(1787), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1787), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1787), }, - [426] = { - [sym_cell_path] = STATE(662), - [sym_path] = STATE(569), - [sym_comment] = STATE(426), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1984), - [anon_sym_alias] = ACTIONS(1984), - [anon_sym_let] = ACTIONS(1984), - [anon_sym_let_DASHenv] = ACTIONS(1984), - [anon_sym_mut] = ACTIONS(1984), - [anon_sym_const] = ACTIONS(1984), - [aux_sym_cmd_identifier_token1] = ACTIONS(1984), - [aux_sym_cmd_identifier_token2] = ACTIONS(1984), - [aux_sym_cmd_identifier_token3] = ACTIONS(1984), - [aux_sym_cmd_identifier_token4] = ACTIONS(1984), - [aux_sym_cmd_identifier_token5] = ACTIONS(1984), - [aux_sym_cmd_identifier_token6] = ACTIONS(1984), - [aux_sym_cmd_identifier_token7] = ACTIONS(1984), - [aux_sym_cmd_identifier_token8] = ACTIONS(1984), - [aux_sym_cmd_identifier_token9] = ACTIONS(1984), - [aux_sym_cmd_identifier_token10] = ACTIONS(1984), - [aux_sym_cmd_identifier_token11] = ACTIONS(1984), - [aux_sym_cmd_identifier_token12] = ACTIONS(1984), - [aux_sym_cmd_identifier_token13] = ACTIONS(1984), - [aux_sym_cmd_identifier_token14] = ACTIONS(1984), - [aux_sym_cmd_identifier_token15] = ACTIONS(1984), - [aux_sym_cmd_identifier_token16] = ACTIONS(1984), - [aux_sym_cmd_identifier_token17] = ACTIONS(1984), - [aux_sym_cmd_identifier_token18] = ACTIONS(1984), - [aux_sym_cmd_identifier_token19] = ACTIONS(1984), - [aux_sym_cmd_identifier_token20] = ACTIONS(1984), - [aux_sym_cmd_identifier_token21] = ACTIONS(1984), - [aux_sym_cmd_identifier_token22] = ACTIONS(1984), - [aux_sym_cmd_identifier_token23] = ACTIONS(1984), - [aux_sym_cmd_identifier_token24] = ACTIONS(1984), - [aux_sym_cmd_identifier_token25] = ACTIONS(1984), - [aux_sym_cmd_identifier_token26] = ACTIONS(1984), - [aux_sym_cmd_identifier_token27] = ACTIONS(1984), - [aux_sym_cmd_identifier_token28] = ACTIONS(1984), - [aux_sym_cmd_identifier_token29] = ACTIONS(1984), - [aux_sym_cmd_identifier_token30] = ACTIONS(1984), - [aux_sym_cmd_identifier_token31] = ACTIONS(1984), - [aux_sym_cmd_identifier_token32] = ACTIONS(1984), - [aux_sym_cmd_identifier_token33] = ACTIONS(1984), - [aux_sym_cmd_identifier_token34] = ACTIONS(1984), - [aux_sym_cmd_identifier_token35] = ACTIONS(1984), - [aux_sym_cmd_identifier_token36] = ACTIONS(1984), - [aux_sym_cmd_identifier_token37] = ACTIONS(1984), - [aux_sym_cmd_identifier_token38] = ACTIONS(1984), - [aux_sym_cmd_identifier_token39] = ACTIONS(1984), - [aux_sym_cmd_identifier_token40] = ACTIONS(1984), - [anon_sym_def] = ACTIONS(1984), - [anon_sym_export_DASHenv] = ACTIONS(1984), - [anon_sym_extern] = ACTIONS(1984), - [anon_sym_module] = ACTIONS(1984), - [anon_sym_use] = ACTIONS(1984), - [anon_sym_LPAREN] = ACTIONS(1984), - [anon_sym_DOLLAR] = ACTIONS(1984), - [anon_sym_error] = ACTIONS(1984), - [anon_sym_DASH2] = ACTIONS(1984), - [anon_sym_break] = ACTIONS(1984), - [anon_sym_continue] = ACTIONS(1984), - [anon_sym_for] = ACTIONS(1984), - [anon_sym_in2] = ACTIONS(1984), - [anon_sym_loop] = ACTIONS(1984), - [anon_sym_make] = ACTIONS(1984), - [anon_sym_while] = ACTIONS(1984), - [anon_sym_do] = ACTIONS(1984), - [anon_sym_if] = ACTIONS(1984), - [anon_sym_else] = ACTIONS(1984), - [anon_sym_match] = ACTIONS(1984), - [anon_sym_RBRACE] = ACTIONS(1984), - [anon_sym_try] = ACTIONS(1984), - [anon_sym_catch] = ACTIONS(1984), - [anon_sym_return] = ACTIONS(1984), - [anon_sym_source] = ACTIONS(1984), - [anon_sym_source_DASHenv] = ACTIONS(1984), - [anon_sym_register] = ACTIONS(1984), - [anon_sym_hide] = ACTIONS(1984), - [anon_sym_hide_DASHenv] = ACTIONS(1984), - [anon_sym_overlay] = ACTIONS(1984), - [anon_sym_as] = ACTIONS(1984), - [anon_sym_PLUS2] = ACTIONS(1984), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1984), - [anon_sym_DOT] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1984), - [aux_sym__val_number_decimal_token1] = ACTIONS(1984), - [aux_sym__val_number_decimal_token2] = ACTIONS(1984), - [aux_sym__val_number_decimal_token3] = ACTIONS(1984), - [aux_sym__val_number_decimal_token4] = ACTIONS(1984), - [aux_sym__val_number_token1] = ACTIONS(1984), - [aux_sym__val_number_token2] = ACTIONS(1984), - [aux_sym__val_number_token3] = ACTIONS(1984), - [aux_sym__val_number_token4] = ACTIONS(1984), - [aux_sym__val_number_token5] = ACTIONS(1984), - [aux_sym__val_number_token6] = ACTIONS(1984), - [anon_sym_DQUOTE] = ACTIONS(1984), - [sym__str_single_quotes] = ACTIONS(1984), - [sym__str_back_ticks] = ACTIONS(1984), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1984), - [sym__entry_separator] = ACTIONS(1986), + [448] = { + [sym_cell_path] = STATE(657), + [sym_path] = STATE(567), + [sym_comment] = STATE(448), + [aux_sym_cell_path_repeat1] = STATE(495), + [anon_sym_export] = ACTIONS(2038), + [anon_sym_alias] = ACTIONS(2038), + [anon_sym_let] = ACTIONS(2038), + [anon_sym_let_DASHenv] = ACTIONS(2038), + [anon_sym_mut] = ACTIONS(2038), + [anon_sym_const] = ACTIONS(2038), + [aux_sym_cmd_identifier_token1] = ACTIONS(2038), + [aux_sym_cmd_identifier_token2] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2038), + [aux_sym_cmd_identifier_token4] = ACTIONS(2038), + [aux_sym_cmd_identifier_token5] = ACTIONS(2038), + [aux_sym_cmd_identifier_token6] = ACTIONS(2038), + [aux_sym_cmd_identifier_token7] = ACTIONS(2038), + [aux_sym_cmd_identifier_token8] = ACTIONS(2038), + [aux_sym_cmd_identifier_token9] = ACTIONS(2038), + [aux_sym_cmd_identifier_token10] = ACTIONS(2038), + [aux_sym_cmd_identifier_token11] = ACTIONS(2038), + [aux_sym_cmd_identifier_token12] = ACTIONS(2038), + [aux_sym_cmd_identifier_token13] = ACTIONS(2038), + [aux_sym_cmd_identifier_token14] = ACTIONS(2038), + [aux_sym_cmd_identifier_token15] = ACTIONS(2038), + [aux_sym_cmd_identifier_token16] = ACTIONS(2038), + [aux_sym_cmd_identifier_token17] = ACTIONS(2038), + [aux_sym_cmd_identifier_token18] = ACTIONS(2038), + [aux_sym_cmd_identifier_token19] = ACTIONS(2038), + [aux_sym_cmd_identifier_token20] = ACTIONS(2038), + [aux_sym_cmd_identifier_token21] = ACTIONS(2038), + [aux_sym_cmd_identifier_token22] = ACTIONS(2038), + [aux_sym_cmd_identifier_token23] = ACTIONS(2038), + [aux_sym_cmd_identifier_token24] = ACTIONS(2038), + [aux_sym_cmd_identifier_token25] = ACTIONS(2038), + [aux_sym_cmd_identifier_token26] = ACTIONS(2038), + [aux_sym_cmd_identifier_token27] = ACTIONS(2038), + [aux_sym_cmd_identifier_token28] = ACTIONS(2038), + [aux_sym_cmd_identifier_token29] = ACTIONS(2038), + [aux_sym_cmd_identifier_token30] = ACTIONS(2038), + [aux_sym_cmd_identifier_token31] = ACTIONS(2038), + [aux_sym_cmd_identifier_token32] = ACTIONS(2038), + [aux_sym_cmd_identifier_token33] = ACTIONS(2038), + [aux_sym_cmd_identifier_token34] = ACTIONS(2038), + [aux_sym_cmd_identifier_token35] = ACTIONS(2038), + [aux_sym_cmd_identifier_token36] = ACTIONS(2038), + [aux_sym_cmd_identifier_token37] = ACTIONS(2038), + [aux_sym_cmd_identifier_token38] = ACTIONS(2038), + [aux_sym_cmd_identifier_token39] = ACTIONS(2038), + [aux_sym_cmd_identifier_token40] = ACTIONS(2038), + [anon_sym_def] = ACTIONS(2038), + [anon_sym_export_DASHenv] = ACTIONS(2038), + [anon_sym_extern] = ACTIONS(2038), + [anon_sym_module] = ACTIONS(2038), + [anon_sym_use] = ACTIONS(2038), + [anon_sym_LPAREN] = ACTIONS(2038), + [anon_sym_DOLLAR] = ACTIONS(2038), + [anon_sym_error] = ACTIONS(2038), + [anon_sym_DASH2] = ACTIONS(2038), + [anon_sym_break] = ACTIONS(2038), + [anon_sym_continue] = ACTIONS(2038), + [anon_sym_for] = ACTIONS(2038), + [anon_sym_in2] = ACTIONS(2038), + [anon_sym_loop] = ACTIONS(2038), + [anon_sym_make] = ACTIONS(2038), + [anon_sym_while] = ACTIONS(2038), + [anon_sym_do] = ACTIONS(2038), + [anon_sym_if] = ACTIONS(2038), + [anon_sym_else] = ACTIONS(2038), + [anon_sym_match] = ACTIONS(2038), + [anon_sym_RBRACE] = ACTIONS(2038), + [anon_sym_try] = ACTIONS(2038), + [anon_sym_catch] = ACTIONS(2038), + [anon_sym_return] = ACTIONS(2038), + [anon_sym_source] = ACTIONS(2038), + [anon_sym_source_DASHenv] = ACTIONS(2038), + [anon_sym_register] = ACTIONS(2038), + [anon_sym_hide] = ACTIONS(2038), + [anon_sym_hide_DASHenv] = ACTIONS(2038), + [anon_sym_overlay] = ACTIONS(2038), + [anon_sym_as] = ACTIONS(2038), + [anon_sym_PLUS2] = ACTIONS(2038), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2038), + [anon_sym_DOT] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2038), + [aux_sym__val_number_decimal_token1] = ACTIONS(2038), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2038), + [aux_sym__val_number_decimal_token4] = ACTIONS(2038), + [aux_sym__val_number_token1] = ACTIONS(2038), + [aux_sym__val_number_token2] = ACTIONS(2038), + [aux_sym__val_number_token3] = ACTIONS(2038), + [aux_sym__val_number_token4] = ACTIONS(2038), + [aux_sym__val_number_token5] = ACTIONS(2038), + [aux_sym__val_number_token6] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym__str_single_quotes] = ACTIONS(2038), + [sym__str_back_ticks] = ACTIONS(2038), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2038), + [sym__entry_separator] = ACTIONS(2040), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1986), + [sym_raw_string_begin] = ACTIONS(2040), }, - [427] = { - [sym_cell_path] = STATE(667), - [sym_path] = STATE(569), - [sym_comment] = STATE(427), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1988), - [anon_sym_alias] = ACTIONS(1988), - [anon_sym_let] = ACTIONS(1988), - [anon_sym_let_DASHenv] = ACTIONS(1988), - [anon_sym_mut] = ACTIONS(1988), - [anon_sym_const] = ACTIONS(1988), - [aux_sym_cmd_identifier_token1] = ACTIONS(1988), - [aux_sym_cmd_identifier_token2] = ACTIONS(1988), - [aux_sym_cmd_identifier_token3] = ACTIONS(1988), - [aux_sym_cmd_identifier_token4] = ACTIONS(1988), - [aux_sym_cmd_identifier_token5] = ACTIONS(1988), - [aux_sym_cmd_identifier_token6] = ACTIONS(1988), - [aux_sym_cmd_identifier_token7] = ACTIONS(1988), - [aux_sym_cmd_identifier_token8] = ACTIONS(1988), - [aux_sym_cmd_identifier_token9] = ACTIONS(1988), - [aux_sym_cmd_identifier_token10] = ACTIONS(1988), - [aux_sym_cmd_identifier_token11] = ACTIONS(1988), - [aux_sym_cmd_identifier_token12] = ACTIONS(1988), - [aux_sym_cmd_identifier_token13] = ACTIONS(1988), - [aux_sym_cmd_identifier_token14] = ACTIONS(1988), - [aux_sym_cmd_identifier_token15] = ACTIONS(1988), - [aux_sym_cmd_identifier_token16] = ACTIONS(1988), - [aux_sym_cmd_identifier_token17] = ACTIONS(1988), - [aux_sym_cmd_identifier_token18] = ACTIONS(1988), - [aux_sym_cmd_identifier_token19] = ACTIONS(1988), - [aux_sym_cmd_identifier_token20] = ACTIONS(1988), - [aux_sym_cmd_identifier_token21] = ACTIONS(1988), - [aux_sym_cmd_identifier_token22] = ACTIONS(1988), - [aux_sym_cmd_identifier_token23] = ACTIONS(1988), - [aux_sym_cmd_identifier_token24] = ACTIONS(1988), - [aux_sym_cmd_identifier_token25] = ACTIONS(1988), - [aux_sym_cmd_identifier_token26] = ACTIONS(1988), - [aux_sym_cmd_identifier_token27] = ACTIONS(1988), - [aux_sym_cmd_identifier_token28] = ACTIONS(1988), - [aux_sym_cmd_identifier_token29] = ACTIONS(1988), - [aux_sym_cmd_identifier_token30] = ACTIONS(1988), - [aux_sym_cmd_identifier_token31] = ACTIONS(1988), - [aux_sym_cmd_identifier_token32] = ACTIONS(1988), - [aux_sym_cmd_identifier_token33] = ACTIONS(1988), - [aux_sym_cmd_identifier_token34] = ACTIONS(1988), - [aux_sym_cmd_identifier_token35] = ACTIONS(1988), - [aux_sym_cmd_identifier_token36] = ACTIONS(1988), - [aux_sym_cmd_identifier_token37] = ACTIONS(1988), - [aux_sym_cmd_identifier_token38] = ACTIONS(1988), - [aux_sym_cmd_identifier_token39] = ACTIONS(1988), - [aux_sym_cmd_identifier_token40] = ACTIONS(1988), - [anon_sym_def] = ACTIONS(1988), - [anon_sym_export_DASHenv] = ACTIONS(1988), - [anon_sym_extern] = ACTIONS(1988), - [anon_sym_module] = ACTIONS(1988), - [anon_sym_use] = ACTIONS(1988), - [anon_sym_LPAREN] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1988), - [anon_sym_error] = ACTIONS(1988), - [anon_sym_DASH2] = ACTIONS(1988), - [anon_sym_break] = ACTIONS(1988), - [anon_sym_continue] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1988), - [anon_sym_in2] = ACTIONS(1988), - [anon_sym_loop] = ACTIONS(1988), - [anon_sym_make] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1988), - [anon_sym_do] = ACTIONS(1988), - [anon_sym_if] = ACTIONS(1988), - [anon_sym_else] = ACTIONS(1988), - [anon_sym_match] = ACTIONS(1988), - [anon_sym_RBRACE] = ACTIONS(1988), - [anon_sym_try] = ACTIONS(1988), - [anon_sym_catch] = ACTIONS(1988), - [anon_sym_return] = ACTIONS(1988), - [anon_sym_source] = ACTIONS(1988), - [anon_sym_source_DASHenv] = ACTIONS(1988), - [anon_sym_register] = ACTIONS(1988), - [anon_sym_hide] = ACTIONS(1988), - [anon_sym_hide_DASHenv] = ACTIONS(1988), - [anon_sym_overlay] = ACTIONS(1988), - [anon_sym_as] = ACTIONS(1988), - [anon_sym_PLUS2] = ACTIONS(1988), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1988), - [anon_sym_DOT] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1988), - [aux_sym__val_number_decimal_token1] = ACTIONS(1988), - [aux_sym__val_number_decimal_token2] = ACTIONS(1988), - [aux_sym__val_number_decimal_token3] = ACTIONS(1988), - [aux_sym__val_number_decimal_token4] = ACTIONS(1988), - [aux_sym__val_number_token1] = ACTIONS(1988), - [aux_sym__val_number_token2] = ACTIONS(1988), - [aux_sym__val_number_token3] = ACTIONS(1988), - [aux_sym__val_number_token4] = ACTIONS(1988), - [aux_sym__val_number_token5] = ACTIONS(1988), - [aux_sym__val_number_token6] = ACTIONS(1988), - [anon_sym_DQUOTE] = ACTIONS(1988), - [sym__str_single_quotes] = ACTIONS(1988), - [sym__str_back_ticks] = ACTIONS(1988), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1988), - [sym__entry_separator] = ACTIONS(1990), + [449] = { + [sym_cell_path] = STATE(622), + [sym_path] = STATE(567), + [sym_comment] = STATE(449), + [aux_sym_cell_path_repeat1] = STATE(495), + [anon_sym_export] = ACTIONS(2042), + [anon_sym_alias] = ACTIONS(2042), + [anon_sym_let] = ACTIONS(2042), + [anon_sym_let_DASHenv] = ACTIONS(2042), + [anon_sym_mut] = ACTIONS(2042), + [anon_sym_const] = ACTIONS(2042), + [aux_sym_cmd_identifier_token1] = ACTIONS(2042), + [aux_sym_cmd_identifier_token2] = ACTIONS(2042), + [aux_sym_cmd_identifier_token3] = ACTIONS(2042), + [aux_sym_cmd_identifier_token4] = ACTIONS(2042), + [aux_sym_cmd_identifier_token5] = ACTIONS(2042), + [aux_sym_cmd_identifier_token6] = ACTIONS(2042), + [aux_sym_cmd_identifier_token7] = ACTIONS(2042), + [aux_sym_cmd_identifier_token8] = ACTIONS(2042), + [aux_sym_cmd_identifier_token9] = ACTIONS(2042), + [aux_sym_cmd_identifier_token10] = ACTIONS(2042), + [aux_sym_cmd_identifier_token11] = ACTIONS(2042), + [aux_sym_cmd_identifier_token12] = ACTIONS(2042), + [aux_sym_cmd_identifier_token13] = ACTIONS(2042), + [aux_sym_cmd_identifier_token14] = ACTIONS(2042), + [aux_sym_cmd_identifier_token15] = ACTIONS(2042), + [aux_sym_cmd_identifier_token16] = ACTIONS(2042), + [aux_sym_cmd_identifier_token17] = ACTIONS(2042), + [aux_sym_cmd_identifier_token18] = ACTIONS(2042), + [aux_sym_cmd_identifier_token19] = ACTIONS(2042), + [aux_sym_cmd_identifier_token20] = ACTIONS(2042), + [aux_sym_cmd_identifier_token21] = ACTIONS(2042), + [aux_sym_cmd_identifier_token22] = ACTIONS(2042), + [aux_sym_cmd_identifier_token23] = ACTIONS(2042), + [aux_sym_cmd_identifier_token24] = ACTIONS(2042), + [aux_sym_cmd_identifier_token25] = ACTIONS(2042), + [aux_sym_cmd_identifier_token26] = ACTIONS(2042), + [aux_sym_cmd_identifier_token27] = ACTIONS(2042), + [aux_sym_cmd_identifier_token28] = ACTIONS(2042), + [aux_sym_cmd_identifier_token29] = ACTIONS(2042), + [aux_sym_cmd_identifier_token30] = ACTIONS(2042), + [aux_sym_cmd_identifier_token31] = ACTIONS(2042), + [aux_sym_cmd_identifier_token32] = ACTIONS(2042), + [aux_sym_cmd_identifier_token33] = ACTIONS(2042), + [aux_sym_cmd_identifier_token34] = ACTIONS(2042), + [aux_sym_cmd_identifier_token35] = ACTIONS(2042), + [aux_sym_cmd_identifier_token36] = ACTIONS(2042), + [aux_sym_cmd_identifier_token37] = ACTIONS(2042), + [aux_sym_cmd_identifier_token38] = ACTIONS(2042), + [aux_sym_cmd_identifier_token39] = ACTIONS(2042), + [aux_sym_cmd_identifier_token40] = ACTIONS(2042), + [anon_sym_def] = ACTIONS(2042), + [anon_sym_export_DASHenv] = ACTIONS(2042), + [anon_sym_extern] = ACTIONS(2042), + [anon_sym_module] = ACTIONS(2042), + [anon_sym_use] = ACTIONS(2042), + [anon_sym_LPAREN] = ACTIONS(2042), + [anon_sym_DOLLAR] = ACTIONS(2042), + [anon_sym_error] = ACTIONS(2042), + [anon_sym_DASH2] = ACTIONS(2042), + [anon_sym_break] = ACTIONS(2042), + [anon_sym_continue] = ACTIONS(2042), + [anon_sym_for] = ACTIONS(2042), + [anon_sym_in2] = ACTIONS(2042), + [anon_sym_loop] = ACTIONS(2042), + [anon_sym_make] = ACTIONS(2042), + [anon_sym_while] = ACTIONS(2042), + [anon_sym_do] = ACTIONS(2042), + [anon_sym_if] = ACTIONS(2042), + [anon_sym_else] = ACTIONS(2042), + [anon_sym_match] = ACTIONS(2042), + [anon_sym_RBRACE] = ACTIONS(2042), + [anon_sym_try] = ACTIONS(2042), + [anon_sym_catch] = ACTIONS(2042), + [anon_sym_return] = ACTIONS(2042), + [anon_sym_source] = ACTIONS(2042), + [anon_sym_source_DASHenv] = ACTIONS(2042), + [anon_sym_register] = ACTIONS(2042), + [anon_sym_hide] = ACTIONS(2042), + [anon_sym_hide_DASHenv] = ACTIONS(2042), + [anon_sym_overlay] = ACTIONS(2042), + [anon_sym_as] = ACTIONS(2042), + [anon_sym_PLUS2] = ACTIONS(2042), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2042), + [anon_sym_DOT] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2042), + [aux_sym__val_number_decimal_token1] = ACTIONS(2042), + [aux_sym__val_number_decimal_token2] = ACTIONS(2042), + [aux_sym__val_number_decimal_token3] = ACTIONS(2042), + [aux_sym__val_number_decimal_token4] = ACTIONS(2042), + [aux_sym__val_number_token1] = ACTIONS(2042), + [aux_sym__val_number_token2] = ACTIONS(2042), + [aux_sym__val_number_token3] = ACTIONS(2042), + [aux_sym__val_number_token4] = ACTIONS(2042), + [aux_sym__val_number_token5] = ACTIONS(2042), + [aux_sym__val_number_token6] = ACTIONS(2042), + [anon_sym_DQUOTE] = ACTIONS(2042), + [sym__str_single_quotes] = ACTIONS(2042), + [sym__str_back_ticks] = ACTIONS(2042), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2042), + [sym__entry_separator] = ACTIONS(2044), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1990), + [sym_raw_string_begin] = ACTIONS(2044), }, - [428] = { - [sym_comment] = STATE(428), + [450] = { + [sym_comment] = STATE(450), [anon_sym_export] = ACTIONS(1739), [anon_sym_alias] = ACTIONS(1739), [anon_sym_let] = ACTIONS(1739), @@ -122274,52 +124883,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(1739), [anon_sym_const] = ACTIONS(1739), [aux_sym_cmd_identifier_token1] = ACTIONS(1739), - [aux_sym_cmd_identifier_token2] = ACTIONS(1741), - [aux_sym_cmd_identifier_token3] = ACTIONS(1741), - [aux_sym_cmd_identifier_token4] = ACTIONS(1741), - [aux_sym_cmd_identifier_token5] = ACTIONS(1741), - [aux_sym_cmd_identifier_token6] = ACTIONS(1741), - [aux_sym_cmd_identifier_token7] = ACTIONS(1741), + [aux_sym_cmd_identifier_token2] = ACTIONS(1739), + [aux_sym_cmd_identifier_token3] = ACTIONS(1739), + [aux_sym_cmd_identifier_token4] = ACTIONS(1739), + [aux_sym_cmd_identifier_token5] = ACTIONS(1739), + [aux_sym_cmd_identifier_token6] = ACTIONS(1739), + [aux_sym_cmd_identifier_token7] = ACTIONS(1739), [aux_sym_cmd_identifier_token8] = ACTIONS(1739), [aux_sym_cmd_identifier_token9] = ACTIONS(1739), - [aux_sym_cmd_identifier_token10] = ACTIONS(1741), - [aux_sym_cmd_identifier_token11] = ACTIONS(1741), + [aux_sym_cmd_identifier_token10] = ACTIONS(1739), + [aux_sym_cmd_identifier_token11] = ACTIONS(1739), [aux_sym_cmd_identifier_token12] = ACTIONS(1739), [aux_sym_cmd_identifier_token13] = ACTIONS(1739), [aux_sym_cmd_identifier_token14] = ACTIONS(1739), [aux_sym_cmd_identifier_token15] = ACTIONS(1739), - [aux_sym_cmd_identifier_token16] = ACTIONS(1741), - [aux_sym_cmd_identifier_token17] = ACTIONS(1741), - [aux_sym_cmd_identifier_token18] = ACTIONS(1741), - [aux_sym_cmd_identifier_token19] = ACTIONS(1741), - [aux_sym_cmd_identifier_token20] = ACTIONS(1741), - [aux_sym_cmd_identifier_token21] = ACTIONS(1741), - [aux_sym_cmd_identifier_token22] = ACTIONS(1741), - [aux_sym_cmd_identifier_token23] = ACTIONS(1741), - [aux_sym_cmd_identifier_token24] = ACTIONS(1741), - [aux_sym_cmd_identifier_token25] = ACTIONS(1741), - [aux_sym_cmd_identifier_token26] = ACTIONS(1741), - [aux_sym_cmd_identifier_token27] = ACTIONS(1741), - [aux_sym_cmd_identifier_token28] = ACTIONS(1741), - [aux_sym_cmd_identifier_token29] = ACTIONS(1741), - [aux_sym_cmd_identifier_token30] = ACTIONS(1741), - [aux_sym_cmd_identifier_token31] = ACTIONS(1741), - [aux_sym_cmd_identifier_token32] = ACTIONS(1741), - [aux_sym_cmd_identifier_token33] = ACTIONS(1741), + [aux_sym_cmd_identifier_token16] = ACTIONS(1739), + [aux_sym_cmd_identifier_token17] = ACTIONS(1739), + [aux_sym_cmd_identifier_token18] = ACTIONS(1739), + [aux_sym_cmd_identifier_token19] = ACTIONS(1739), + [aux_sym_cmd_identifier_token20] = ACTIONS(1739), + [aux_sym_cmd_identifier_token21] = ACTIONS(1739), + [aux_sym_cmd_identifier_token22] = ACTIONS(1739), + [aux_sym_cmd_identifier_token23] = ACTIONS(1739), + [aux_sym_cmd_identifier_token24] = ACTIONS(1739), + [aux_sym_cmd_identifier_token25] = ACTIONS(1739), + [aux_sym_cmd_identifier_token26] = ACTIONS(1739), + [aux_sym_cmd_identifier_token27] = ACTIONS(1739), + [aux_sym_cmd_identifier_token28] = ACTIONS(1739), + [aux_sym_cmd_identifier_token29] = ACTIONS(1739), + [aux_sym_cmd_identifier_token30] = ACTIONS(1739), + [aux_sym_cmd_identifier_token31] = ACTIONS(1739), + [aux_sym_cmd_identifier_token32] = ACTIONS(1739), + [aux_sym_cmd_identifier_token33] = ACTIONS(1739), [aux_sym_cmd_identifier_token34] = ACTIONS(1739), - [aux_sym_cmd_identifier_token35] = ACTIONS(1741), - [aux_sym_cmd_identifier_token36] = ACTIONS(1741), - [aux_sym_cmd_identifier_token37] = ACTIONS(1741), + [aux_sym_cmd_identifier_token35] = ACTIONS(1739), + [aux_sym_cmd_identifier_token36] = ACTIONS(1739), + [aux_sym_cmd_identifier_token37] = ACTIONS(1739), [aux_sym_cmd_identifier_token38] = ACTIONS(1739), - [aux_sym_cmd_identifier_token39] = ACTIONS(1741), - [aux_sym_cmd_identifier_token40] = ACTIONS(1741), + [aux_sym_cmd_identifier_token39] = ACTIONS(1739), + [aux_sym_cmd_identifier_token40] = ACTIONS(1739), [anon_sym_def] = ACTIONS(1739), [anon_sym_export_DASHenv] = ACTIONS(1739), [anon_sym_extern] = ACTIONS(1739), [anon_sym_module] = ACTIONS(1739), [anon_sym_use] = ACTIONS(1739), [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_DOLLAR] = ACTIONS(1741), + [anon_sym_DOLLAR] = ACTIONS(1739), [anon_sym_error] = ACTIONS(1739), [anon_sym_DASH2] = ACTIONS(1739), [anon_sym_break] = ACTIONS(1739), @@ -122333,7 +124942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1739), [anon_sym_else] = ACTIONS(1739), [anon_sym_match] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1741), + [anon_sym_RBRACE] = ACTIONS(1739), [anon_sym_try] = ACTIONS(1739), [anon_sym_catch] = ACTIONS(1739), [anon_sym_return] = ACTIONS(1739), @@ -122346,156 +124955,464 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1739), [anon_sym_LPAREN2] = ACTIONS(1741), [anon_sym_PLUS2] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1741), - [anon_sym_DOT_DOT2] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1739), + [aux_sym__immediate_decimal_token1] = ACTIONS(2046), + [aux_sym__immediate_decimal_token2] = ACTIONS(2048), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1739), [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token2] = ACTIONS(1739), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1739), + [aux_sym__val_number_token1] = ACTIONS(1739), + [aux_sym__val_number_token2] = ACTIONS(1739), + [aux_sym__val_number_token3] = ACTIONS(1739), [aux_sym__val_number_token4] = ACTIONS(1739), [aux_sym__val_number_token5] = ACTIONS(1739), [aux_sym__val_number_token6] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1741), + [anon_sym_DQUOTE] = ACTIONS(1739), + [sym__str_single_quotes] = ACTIONS(1739), + [sym__str_back_ticks] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1739), + [sym__entry_separator] = ACTIONS(1741), [aux_sym__unquoted_in_record_token2] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1741), }, - [429] = { - [sym_cell_path] = STATE(668), - [sym_path] = STATE(569), - [sym_comment] = STATE(429), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_alias] = ACTIONS(1992), - [anon_sym_let] = ACTIONS(1992), - [anon_sym_let_DASHenv] = ACTIONS(1992), - [anon_sym_mut] = ACTIONS(1992), - [anon_sym_const] = ACTIONS(1992), - [aux_sym_cmd_identifier_token1] = ACTIONS(1992), - [aux_sym_cmd_identifier_token2] = ACTIONS(1992), - [aux_sym_cmd_identifier_token3] = ACTIONS(1992), - [aux_sym_cmd_identifier_token4] = ACTIONS(1992), - [aux_sym_cmd_identifier_token5] = ACTIONS(1992), - [aux_sym_cmd_identifier_token6] = ACTIONS(1992), - [aux_sym_cmd_identifier_token7] = ACTIONS(1992), - [aux_sym_cmd_identifier_token8] = ACTIONS(1992), - [aux_sym_cmd_identifier_token9] = ACTIONS(1992), - [aux_sym_cmd_identifier_token10] = ACTIONS(1992), - [aux_sym_cmd_identifier_token11] = ACTIONS(1992), - [aux_sym_cmd_identifier_token12] = ACTIONS(1992), - [aux_sym_cmd_identifier_token13] = ACTIONS(1992), - [aux_sym_cmd_identifier_token14] = ACTIONS(1992), - [aux_sym_cmd_identifier_token15] = ACTIONS(1992), - [aux_sym_cmd_identifier_token16] = ACTIONS(1992), - [aux_sym_cmd_identifier_token17] = ACTIONS(1992), - [aux_sym_cmd_identifier_token18] = ACTIONS(1992), - [aux_sym_cmd_identifier_token19] = ACTIONS(1992), - [aux_sym_cmd_identifier_token20] = ACTIONS(1992), - [aux_sym_cmd_identifier_token21] = ACTIONS(1992), - [aux_sym_cmd_identifier_token22] = ACTIONS(1992), - [aux_sym_cmd_identifier_token23] = ACTIONS(1992), - [aux_sym_cmd_identifier_token24] = ACTIONS(1992), - [aux_sym_cmd_identifier_token25] = ACTIONS(1992), - [aux_sym_cmd_identifier_token26] = ACTIONS(1992), - [aux_sym_cmd_identifier_token27] = ACTIONS(1992), - [aux_sym_cmd_identifier_token28] = ACTIONS(1992), - [aux_sym_cmd_identifier_token29] = ACTIONS(1992), - [aux_sym_cmd_identifier_token30] = ACTIONS(1992), - [aux_sym_cmd_identifier_token31] = ACTIONS(1992), - [aux_sym_cmd_identifier_token32] = ACTIONS(1992), - [aux_sym_cmd_identifier_token33] = ACTIONS(1992), - [aux_sym_cmd_identifier_token34] = ACTIONS(1992), - [aux_sym_cmd_identifier_token35] = ACTIONS(1992), - [aux_sym_cmd_identifier_token36] = ACTIONS(1992), - [aux_sym_cmd_identifier_token37] = ACTIONS(1992), - [aux_sym_cmd_identifier_token38] = ACTIONS(1992), - [aux_sym_cmd_identifier_token39] = ACTIONS(1992), - [aux_sym_cmd_identifier_token40] = ACTIONS(1992), - [anon_sym_def] = ACTIONS(1992), - [anon_sym_export_DASHenv] = ACTIONS(1992), - [anon_sym_extern] = ACTIONS(1992), - [anon_sym_module] = ACTIONS(1992), - [anon_sym_use] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_DOLLAR] = ACTIONS(1992), - [anon_sym_error] = ACTIONS(1992), - [anon_sym_DASH2] = ACTIONS(1992), - [anon_sym_break] = ACTIONS(1992), - [anon_sym_continue] = ACTIONS(1992), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_in2] = ACTIONS(1992), - [anon_sym_loop] = ACTIONS(1992), - [anon_sym_make] = ACTIONS(1992), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_do] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(1992), - [anon_sym_match] = ACTIONS(1992), - [anon_sym_RBRACE] = ACTIONS(1992), - [anon_sym_try] = ACTIONS(1992), - [anon_sym_catch] = ACTIONS(1992), - [anon_sym_return] = ACTIONS(1992), - [anon_sym_source] = ACTIONS(1992), - [anon_sym_source_DASHenv] = ACTIONS(1992), - [anon_sym_register] = ACTIONS(1992), - [anon_sym_hide] = ACTIONS(1992), - [anon_sym_hide_DASHenv] = ACTIONS(1992), - [anon_sym_overlay] = ACTIONS(1992), - [anon_sym_as] = ACTIONS(1992), - [anon_sym_PLUS2] = ACTIONS(1992), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1992), - [anon_sym_DOT] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1992), - [aux_sym__val_number_decimal_token1] = ACTIONS(1992), - [aux_sym__val_number_decimal_token2] = ACTIONS(1992), - [aux_sym__val_number_decimal_token3] = ACTIONS(1992), - [aux_sym__val_number_decimal_token4] = ACTIONS(1992), - [aux_sym__val_number_token1] = ACTIONS(1992), - [aux_sym__val_number_token2] = ACTIONS(1992), - [aux_sym__val_number_token3] = ACTIONS(1992), - [aux_sym__val_number_token4] = ACTIONS(1992), - [aux_sym__val_number_token5] = ACTIONS(1992), - [aux_sym__val_number_token6] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1992), - [sym__str_single_quotes] = ACTIONS(1992), - [sym__str_back_ticks] = ACTIONS(1992), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1992), - [sym__entry_separator] = ACTIONS(1994), + [451] = { + [sym_comment] = STATE(451), + [anon_sym_export] = ACTIONS(1841), + [anon_sym_alias] = ACTIONS(1841), + [anon_sym_let] = ACTIONS(1841), + [anon_sym_let_DASHenv] = ACTIONS(1841), + [anon_sym_mut] = ACTIONS(1841), + [anon_sym_const] = ACTIONS(1841), + [aux_sym_cmd_identifier_token1] = ACTIONS(1841), + [aux_sym_cmd_identifier_token2] = ACTIONS(1841), + [aux_sym_cmd_identifier_token3] = ACTIONS(1841), + [aux_sym_cmd_identifier_token4] = ACTIONS(1841), + [aux_sym_cmd_identifier_token5] = ACTIONS(1841), + [aux_sym_cmd_identifier_token6] = ACTIONS(1841), + [aux_sym_cmd_identifier_token7] = ACTIONS(1841), + [aux_sym_cmd_identifier_token8] = ACTIONS(1841), + [aux_sym_cmd_identifier_token9] = ACTIONS(1841), + [aux_sym_cmd_identifier_token10] = ACTIONS(1841), + [aux_sym_cmd_identifier_token11] = ACTIONS(1841), + [aux_sym_cmd_identifier_token12] = ACTIONS(1841), + [aux_sym_cmd_identifier_token13] = ACTIONS(1841), + [aux_sym_cmd_identifier_token14] = ACTIONS(1841), + [aux_sym_cmd_identifier_token15] = ACTIONS(1841), + [aux_sym_cmd_identifier_token16] = ACTIONS(1841), + [aux_sym_cmd_identifier_token17] = ACTIONS(1841), + [aux_sym_cmd_identifier_token18] = ACTIONS(1841), + [aux_sym_cmd_identifier_token19] = ACTIONS(1841), + [aux_sym_cmd_identifier_token20] = ACTIONS(1841), + [aux_sym_cmd_identifier_token21] = ACTIONS(1841), + [aux_sym_cmd_identifier_token22] = ACTIONS(1841), + [aux_sym_cmd_identifier_token23] = ACTIONS(1841), + [aux_sym_cmd_identifier_token24] = ACTIONS(1841), + [aux_sym_cmd_identifier_token25] = ACTIONS(1841), + [aux_sym_cmd_identifier_token26] = ACTIONS(1841), + [aux_sym_cmd_identifier_token27] = ACTIONS(1841), + [aux_sym_cmd_identifier_token28] = ACTIONS(1841), + [aux_sym_cmd_identifier_token29] = ACTIONS(1841), + [aux_sym_cmd_identifier_token30] = ACTIONS(1841), + [aux_sym_cmd_identifier_token31] = ACTIONS(1841), + [aux_sym_cmd_identifier_token32] = ACTIONS(1841), + [aux_sym_cmd_identifier_token33] = ACTIONS(1841), + [aux_sym_cmd_identifier_token34] = ACTIONS(1841), + [aux_sym_cmd_identifier_token35] = ACTIONS(1841), + [aux_sym_cmd_identifier_token36] = ACTIONS(1841), + [aux_sym_cmd_identifier_token37] = ACTIONS(1841), + [aux_sym_cmd_identifier_token38] = ACTIONS(1841), + [aux_sym_cmd_identifier_token39] = ACTIONS(1841), + [aux_sym_cmd_identifier_token40] = ACTIONS(1841), + [anon_sym_def] = ACTIONS(1841), + [anon_sym_export_DASHenv] = ACTIONS(1841), + [anon_sym_extern] = ACTIONS(1841), + [anon_sym_module] = ACTIONS(1841), + [anon_sym_use] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_error] = ACTIONS(1841), + [anon_sym_DASH2] = ACTIONS(1841), + [anon_sym_break] = ACTIONS(1841), + [anon_sym_continue] = ACTIONS(1841), + [anon_sym_for] = ACTIONS(1841), + [anon_sym_in2] = ACTIONS(1841), + [anon_sym_loop] = ACTIONS(1841), + [anon_sym_make] = ACTIONS(1841), + [anon_sym_while] = ACTIONS(1841), + [anon_sym_do] = ACTIONS(1841), + [anon_sym_if] = ACTIONS(1841), + [anon_sym_else] = ACTIONS(1841), + [anon_sym_match] = ACTIONS(1841), + [anon_sym_RBRACE] = ACTIONS(1841), + [anon_sym_try] = ACTIONS(1841), + [anon_sym_catch] = ACTIONS(1841), + [anon_sym_return] = ACTIONS(1841), + [anon_sym_source] = ACTIONS(1841), + [anon_sym_source_DASHenv] = ACTIONS(1841), + [anon_sym_register] = ACTIONS(1841), + [anon_sym_hide] = ACTIONS(1841), + [anon_sym_hide_DASHenv] = ACTIONS(1841), + [anon_sym_overlay] = ACTIONS(1841), + [anon_sym_as] = ACTIONS(1841), + [anon_sym_PLUS2] = ACTIONS(1841), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1841), + [anon_sym_DOT_DOT2] = ACTIONS(1841), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1843), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1841), + [aux_sym__val_number_decimal_token1] = ACTIONS(1841), + [aux_sym__val_number_decimal_token2] = ACTIONS(1841), + [aux_sym__val_number_decimal_token3] = ACTIONS(1841), + [aux_sym__val_number_decimal_token4] = ACTIONS(1841), + [aux_sym__val_number_token1] = ACTIONS(1841), + [aux_sym__val_number_token2] = ACTIONS(1841), + [aux_sym__val_number_token3] = ACTIONS(1841), + [aux_sym__val_number_token4] = ACTIONS(1841), + [aux_sym__val_number_token5] = ACTIONS(1841), + [aux_sym__val_number_token6] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym__str_single_quotes] = ACTIONS(1841), + [sym__str_back_ticks] = ACTIONS(1841), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1841), + [sym__entry_separator] = ACTIONS(1843), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1994), + [sym_raw_string_begin] = ACTIONS(1843), }, - [430] = { - [sym_comment] = STATE(430), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_alias] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_let_DASHenv] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [aux_sym_cmd_identifier_token1] = ACTIONS(1783), + [452] = { + [sym_cell_path] = STATE(736), + [sym_path] = STATE(623), + [sym_comment] = STATE(452), + [aux_sym_cell_path_repeat1] = STATE(532), + [anon_sym_export] = ACTIONS(1871), + [anon_sym_alias] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1871), + [anon_sym_let_DASHenv] = ACTIONS(1871), + [anon_sym_mut] = ACTIONS(1871), + [anon_sym_const] = ACTIONS(1871), + [aux_sym_cmd_identifier_token1] = ACTIONS(1871), + [aux_sym_cmd_identifier_token2] = ACTIONS(1873), + [aux_sym_cmd_identifier_token3] = ACTIONS(1873), + [aux_sym_cmd_identifier_token4] = ACTIONS(1873), + [aux_sym_cmd_identifier_token5] = ACTIONS(1873), + [aux_sym_cmd_identifier_token6] = ACTIONS(1873), + [aux_sym_cmd_identifier_token7] = ACTIONS(1873), + [aux_sym_cmd_identifier_token8] = ACTIONS(1871), + [aux_sym_cmd_identifier_token9] = ACTIONS(1871), + [aux_sym_cmd_identifier_token10] = ACTIONS(1873), + [aux_sym_cmd_identifier_token11] = ACTIONS(1873), + [aux_sym_cmd_identifier_token12] = ACTIONS(1871), + [aux_sym_cmd_identifier_token13] = ACTIONS(1871), + [aux_sym_cmd_identifier_token14] = ACTIONS(1871), + [aux_sym_cmd_identifier_token15] = ACTIONS(1871), + [aux_sym_cmd_identifier_token16] = ACTIONS(1873), + [aux_sym_cmd_identifier_token17] = ACTIONS(1873), + [aux_sym_cmd_identifier_token18] = ACTIONS(1873), + [aux_sym_cmd_identifier_token19] = ACTIONS(1873), + [aux_sym_cmd_identifier_token20] = ACTIONS(1873), + [aux_sym_cmd_identifier_token21] = ACTIONS(1873), + [aux_sym_cmd_identifier_token22] = ACTIONS(1873), + [aux_sym_cmd_identifier_token23] = ACTIONS(1873), + [aux_sym_cmd_identifier_token24] = ACTIONS(1873), + [aux_sym_cmd_identifier_token25] = ACTIONS(1873), + [aux_sym_cmd_identifier_token26] = ACTIONS(1873), + [aux_sym_cmd_identifier_token27] = ACTIONS(1873), + [aux_sym_cmd_identifier_token28] = ACTIONS(1873), + [aux_sym_cmd_identifier_token29] = ACTIONS(1873), + [aux_sym_cmd_identifier_token30] = ACTIONS(1873), + [aux_sym_cmd_identifier_token31] = ACTIONS(1873), + [aux_sym_cmd_identifier_token32] = ACTIONS(1873), + [aux_sym_cmd_identifier_token33] = ACTIONS(1873), + [aux_sym_cmd_identifier_token34] = ACTIONS(1871), + [aux_sym_cmd_identifier_token35] = ACTIONS(1873), + [aux_sym_cmd_identifier_token36] = ACTIONS(1873), + [aux_sym_cmd_identifier_token37] = ACTIONS(1873), + [aux_sym_cmd_identifier_token38] = ACTIONS(1871), + [aux_sym_cmd_identifier_token39] = ACTIONS(1873), + [aux_sym_cmd_identifier_token40] = ACTIONS(1873), + [anon_sym_def] = ACTIONS(1871), + [anon_sym_export_DASHenv] = ACTIONS(1871), + [anon_sym_extern] = ACTIONS(1871), + [anon_sym_module] = ACTIONS(1871), + [anon_sym_use] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1873), + [anon_sym_DOLLAR] = ACTIONS(1873), + [anon_sym_error] = ACTIONS(1871), + [anon_sym_DASH2] = ACTIONS(1871), + [anon_sym_break] = ACTIONS(1871), + [anon_sym_continue] = ACTIONS(1871), + [anon_sym_for] = ACTIONS(1871), + [anon_sym_in2] = ACTIONS(1871), + [anon_sym_loop] = ACTIONS(1871), + [anon_sym_make] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_if] = ACTIONS(1871), + [anon_sym_else] = ACTIONS(1871), + [anon_sym_match] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_try] = ACTIONS(1871), + [anon_sym_catch] = ACTIONS(1871), + [anon_sym_return] = ACTIONS(1871), + [anon_sym_source] = ACTIONS(1871), + [anon_sym_source_DASHenv] = ACTIONS(1871), + [anon_sym_register] = ACTIONS(1871), + [anon_sym_hide] = ACTIONS(1871), + [anon_sym_hide_DASHenv] = ACTIONS(1871), + [anon_sym_overlay] = ACTIONS(1871), + [anon_sym_as] = ACTIONS(1871), + [anon_sym_PLUS2] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1873), + [anon_sym_DOT] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1873), + [aux_sym__val_number_decimal_token1] = ACTIONS(1871), + [aux_sym__val_number_decimal_token2] = ACTIONS(1873), + [aux_sym__val_number_decimal_token3] = ACTIONS(1873), + [aux_sym__val_number_decimal_token4] = ACTIONS(1873), + [aux_sym__val_number_token1] = ACTIONS(1873), + [aux_sym__val_number_token2] = ACTIONS(1873), + [aux_sym__val_number_token3] = ACTIONS(1873), + [aux_sym__val_number_token4] = ACTIONS(1871), + [aux_sym__val_number_token5] = ACTIONS(1871), + [aux_sym__val_number_token6] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1873), + [sym__str_single_quotes] = ACTIONS(1873), + [sym__str_back_ticks] = ACTIONS(1873), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1873), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1873), + }, + [453] = { + [sym_comment] = STATE(453), + [anon_sym_export] = ACTIONS(1765), + [anon_sym_alias] = ACTIONS(1765), + [anon_sym_let] = ACTIONS(1765), + [anon_sym_let_DASHenv] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [aux_sym_cmd_identifier_token1] = ACTIONS(1765), + [aux_sym_cmd_identifier_token2] = ACTIONS(1765), + [aux_sym_cmd_identifier_token3] = ACTIONS(1765), + [aux_sym_cmd_identifier_token4] = ACTIONS(1765), + [aux_sym_cmd_identifier_token5] = ACTIONS(1765), + [aux_sym_cmd_identifier_token6] = ACTIONS(1765), + [aux_sym_cmd_identifier_token7] = ACTIONS(1765), + [aux_sym_cmd_identifier_token8] = ACTIONS(1765), + [aux_sym_cmd_identifier_token9] = ACTIONS(1765), + [aux_sym_cmd_identifier_token10] = ACTIONS(1765), + [aux_sym_cmd_identifier_token11] = ACTIONS(1765), + [aux_sym_cmd_identifier_token12] = ACTIONS(1765), + [aux_sym_cmd_identifier_token13] = ACTIONS(1765), + [aux_sym_cmd_identifier_token14] = ACTIONS(1765), + [aux_sym_cmd_identifier_token15] = ACTIONS(1765), + [aux_sym_cmd_identifier_token16] = ACTIONS(1765), + [aux_sym_cmd_identifier_token17] = ACTIONS(1765), + [aux_sym_cmd_identifier_token18] = ACTIONS(1765), + [aux_sym_cmd_identifier_token19] = ACTIONS(1765), + [aux_sym_cmd_identifier_token20] = ACTIONS(1765), + [aux_sym_cmd_identifier_token21] = ACTIONS(1765), + [aux_sym_cmd_identifier_token22] = ACTIONS(1765), + [aux_sym_cmd_identifier_token23] = ACTIONS(1765), + [aux_sym_cmd_identifier_token24] = ACTIONS(1765), + [aux_sym_cmd_identifier_token25] = ACTIONS(1765), + [aux_sym_cmd_identifier_token26] = ACTIONS(1765), + [aux_sym_cmd_identifier_token27] = ACTIONS(1765), + [aux_sym_cmd_identifier_token28] = ACTIONS(1765), + [aux_sym_cmd_identifier_token29] = ACTIONS(1765), + [aux_sym_cmd_identifier_token30] = ACTIONS(1765), + [aux_sym_cmd_identifier_token31] = ACTIONS(1765), + [aux_sym_cmd_identifier_token32] = ACTIONS(1765), + [aux_sym_cmd_identifier_token33] = ACTIONS(1765), + [aux_sym_cmd_identifier_token34] = ACTIONS(1765), + [aux_sym_cmd_identifier_token35] = ACTIONS(1765), + [aux_sym_cmd_identifier_token36] = ACTIONS(1765), + [aux_sym_cmd_identifier_token37] = ACTIONS(1765), + [aux_sym_cmd_identifier_token38] = ACTIONS(1765), + [aux_sym_cmd_identifier_token39] = ACTIONS(1765), + [aux_sym_cmd_identifier_token40] = ACTIONS(1765), + [anon_sym_def] = ACTIONS(1765), + [anon_sym_export_DASHenv] = ACTIONS(1765), + [anon_sym_extern] = ACTIONS(1765), + [anon_sym_module] = ACTIONS(1765), + [anon_sym_use] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_DOLLAR] = ACTIONS(1765), + [anon_sym_error] = ACTIONS(1765), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_in2] = ACTIONS(1765), + [anon_sym_loop] = ACTIONS(1765), + [anon_sym_make] = ACTIONS(1765), + [anon_sym_while] = ACTIONS(1765), + [anon_sym_do] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_else] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_try] = ACTIONS(1765), + [anon_sym_catch] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_source] = ACTIONS(1765), + [anon_sym_source_DASHenv] = ACTIONS(1765), + [anon_sym_register] = ACTIONS(1765), + [anon_sym_hide] = ACTIONS(1765), + [anon_sym_hide_DASHenv] = ACTIONS(1765), + [anon_sym_overlay] = ACTIONS(1765), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1767), + [anon_sym_PLUS2] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), + [aux_sym__immediate_decimal_token2] = ACTIONS(1925), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1765), + [aux_sym__val_number_decimal_token3] = ACTIONS(1765), + [aux_sym__val_number_decimal_token4] = ACTIONS(1765), + [aux_sym__val_number_token1] = ACTIONS(1765), + [aux_sym__val_number_token2] = ACTIONS(1765), + [aux_sym__val_number_token3] = ACTIONS(1765), + [aux_sym__val_number_token4] = ACTIONS(1765), + [aux_sym__val_number_token5] = ACTIONS(1765), + [aux_sym__val_number_token6] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1765), + [sym__str_single_quotes] = ACTIONS(1765), + [sym__str_back_ticks] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), + [sym__entry_separator] = ACTIONS(1767), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1767), + }, + [454] = { + [sym_comment] = STATE(454), + [anon_sym_export] = ACTIONS(2052), + [anon_sym_alias] = ACTIONS(2052), + [anon_sym_let] = ACTIONS(2052), + [anon_sym_let_DASHenv] = ACTIONS(2052), + [anon_sym_mut] = ACTIONS(2052), + [anon_sym_const] = ACTIONS(2052), + [aux_sym_cmd_identifier_token1] = ACTIONS(2052), + [aux_sym_cmd_identifier_token2] = ACTIONS(2052), + [aux_sym_cmd_identifier_token3] = ACTIONS(2052), + [aux_sym_cmd_identifier_token4] = ACTIONS(2052), + [aux_sym_cmd_identifier_token5] = ACTIONS(2052), + [aux_sym_cmd_identifier_token6] = ACTIONS(2052), + [aux_sym_cmd_identifier_token7] = ACTIONS(2052), + [aux_sym_cmd_identifier_token8] = ACTIONS(2052), + [aux_sym_cmd_identifier_token9] = ACTIONS(2052), + [aux_sym_cmd_identifier_token10] = ACTIONS(2052), + [aux_sym_cmd_identifier_token11] = ACTIONS(2052), + [aux_sym_cmd_identifier_token12] = ACTIONS(2052), + [aux_sym_cmd_identifier_token13] = ACTIONS(2052), + [aux_sym_cmd_identifier_token14] = ACTIONS(2052), + [aux_sym_cmd_identifier_token15] = ACTIONS(2052), + [aux_sym_cmd_identifier_token16] = ACTIONS(2052), + [aux_sym_cmd_identifier_token17] = ACTIONS(2052), + [aux_sym_cmd_identifier_token18] = ACTIONS(2052), + [aux_sym_cmd_identifier_token19] = ACTIONS(2052), + [aux_sym_cmd_identifier_token20] = ACTIONS(2052), + [aux_sym_cmd_identifier_token21] = ACTIONS(2052), + [aux_sym_cmd_identifier_token22] = ACTIONS(2052), + [aux_sym_cmd_identifier_token23] = ACTIONS(2052), + [aux_sym_cmd_identifier_token24] = ACTIONS(2052), + [aux_sym_cmd_identifier_token25] = ACTIONS(2052), + [aux_sym_cmd_identifier_token26] = ACTIONS(2052), + [aux_sym_cmd_identifier_token27] = ACTIONS(2052), + [aux_sym_cmd_identifier_token28] = ACTIONS(2052), + [aux_sym_cmd_identifier_token29] = ACTIONS(2052), + [aux_sym_cmd_identifier_token30] = ACTIONS(2052), + [aux_sym_cmd_identifier_token31] = ACTIONS(2052), + [aux_sym_cmd_identifier_token32] = ACTIONS(2052), + [aux_sym_cmd_identifier_token33] = ACTIONS(2052), + [aux_sym_cmd_identifier_token34] = ACTIONS(2052), + [aux_sym_cmd_identifier_token35] = ACTIONS(2052), + [aux_sym_cmd_identifier_token36] = ACTIONS(2052), + [aux_sym_cmd_identifier_token37] = ACTIONS(2052), + [aux_sym_cmd_identifier_token38] = ACTIONS(2052), + [aux_sym_cmd_identifier_token39] = ACTIONS(2052), + [aux_sym_cmd_identifier_token40] = ACTIONS(2052), + [anon_sym_def] = ACTIONS(2052), + [anon_sym_export_DASHenv] = ACTIONS(2052), + [anon_sym_extern] = ACTIONS(2052), + [anon_sym_module] = ACTIONS(2052), + [anon_sym_use] = ACTIONS(2052), + [anon_sym_LPAREN] = ACTIONS(2052), + [anon_sym_DOLLAR] = ACTIONS(2052), + [anon_sym_error] = ACTIONS(2052), + [anon_sym_DASH2] = ACTIONS(2052), + [anon_sym_break] = ACTIONS(2052), + [anon_sym_continue] = ACTIONS(2052), + [anon_sym_for] = ACTIONS(2052), + [anon_sym_in2] = ACTIONS(2052), + [anon_sym_loop] = ACTIONS(2052), + [anon_sym_make] = ACTIONS(2052), + [anon_sym_while] = ACTIONS(2052), + [anon_sym_do] = ACTIONS(2052), + [anon_sym_if] = ACTIONS(2052), + [anon_sym_else] = ACTIONS(2052), + [anon_sym_match] = ACTIONS(2052), + [anon_sym_RBRACE] = ACTIONS(2052), + [anon_sym_try] = ACTIONS(2052), + [anon_sym_catch] = ACTIONS(2052), + [anon_sym_return] = ACTIONS(2052), + [anon_sym_source] = ACTIONS(2052), + [anon_sym_source_DASHenv] = ACTIONS(2052), + [anon_sym_register] = ACTIONS(2052), + [anon_sym_hide] = ACTIONS(2052), + [anon_sym_hide_DASHenv] = ACTIONS(2052), + [anon_sym_overlay] = ACTIONS(2052), + [anon_sym_as] = ACTIONS(2052), + [anon_sym_PLUS2] = ACTIONS(2052), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2052), + [anon_sym_DOT_DOT2] = ACTIONS(2052), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2054), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2054), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2052), + [aux_sym__val_number_decimal_token2] = ACTIONS(2052), + [aux_sym__val_number_decimal_token3] = ACTIONS(2052), + [aux_sym__val_number_decimal_token4] = ACTIONS(2052), + [aux_sym__val_number_token1] = ACTIONS(2052), + [aux_sym__val_number_token2] = ACTIONS(2052), + [aux_sym__val_number_token3] = ACTIONS(2052), + [aux_sym__val_number_token4] = ACTIONS(2052), + [aux_sym__val_number_token5] = ACTIONS(2052), + [aux_sym__val_number_token6] = ACTIONS(2052), + [anon_sym_DQUOTE] = ACTIONS(2052), + [sym__str_single_quotes] = ACTIONS(2052), + [sym__str_back_ticks] = ACTIONS(2052), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2052), + [sym__entry_separator] = ACTIONS(2054), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2054), + }, + [455] = { + [sym_comment] = STATE(455), + [anon_sym_export] = ACTIONS(1785), + [anon_sym_alias] = ACTIONS(1785), + [anon_sym_let] = ACTIONS(1785), + [anon_sym_let_DASHenv] = ACTIONS(1785), + [anon_sym_mut] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(1785), + [aux_sym_cmd_identifier_token1] = ACTIONS(1785), [aux_sym_cmd_identifier_token2] = ACTIONS(1785), [aux_sym_cmd_identifier_token3] = ACTIONS(1785), [aux_sym_cmd_identifier_token4] = ACTIONS(1785), [aux_sym_cmd_identifier_token5] = ACTIONS(1785), [aux_sym_cmd_identifier_token6] = ACTIONS(1785), [aux_sym_cmd_identifier_token7] = ACTIONS(1785), - [aux_sym_cmd_identifier_token8] = ACTIONS(1783), - [aux_sym_cmd_identifier_token9] = ACTIONS(1783), + [aux_sym_cmd_identifier_token8] = ACTIONS(1785), + [aux_sym_cmd_identifier_token9] = ACTIONS(1785), [aux_sym_cmd_identifier_token10] = ACTIONS(1785), [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1783), - [aux_sym_cmd_identifier_token13] = ACTIONS(1783), - [aux_sym_cmd_identifier_token14] = ACTIONS(1783), - [aux_sym_cmd_identifier_token15] = ACTIONS(1783), + [aux_sym_cmd_identifier_token12] = ACTIONS(1785), + [aux_sym_cmd_identifier_token13] = ACTIONS(1785), + [aux_sym_cmd_identifier_token14] = ACTIONS(1785), + [aux_sym_cmd_identifier_token15] = ACTIONS(1785), [aux_sym_cmd_identifier_token16] = ACTIONS(1785), [aux_sym_cmd_identifier_token17] = ACTIONS(1785), [aux_sym_cmd_identifier_token18] = ACTIONS(1785), @@ -122514,259 +125431,3654 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(1785), [aux_sym_cmd_identifier_token32] = ACTIONS(1785), [aux_sym_cmd_identifier_token33] = ACTIONS(1785), - [aux_sym_cmd_identifier_token34] = ACTIONS(1783), + [aux_sym_cmd_identifier_token34] = ACTIONS(1785), [aux_sym_cmd_identifier_token35] = ACTIONS(1785), [aux_sym_cmd_identifier_token36] = ACTIONS(1785), [aux_sym_cmd_identifier_token37] = ACTIONS(1785), - [aux_sym_cmd_identifier_token38] = ACTIONS(1783), + [aux_sym_cmd_identifier_token38] = ACTIONS(1785), [aux_sym_cmd_identifier_token39] = ACTIONS(1785), [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_export_DASHenv] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1783), + [anon_sym_def] = ACTIONS(1785), + [anon_sym_export_DASHenv] = ACTIONS(1785), + [anon_sym_extern] = ACTIONS(1785), + [anon_sym_module] = ACTIONS(1785), + [anon_sym_use] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1785), [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_error] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_make] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), + [anon_sym_error] = ACTIONS(1785), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_break] = ACTIONS(1785), + [anon_sym_continue] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1785), + [anon_sym_in2] = ACTIONS(1785), + [anon_sym_loop] = ACTIONS(1785), + [anon_sym_make] = ACTIONS(1785), + [anon_sym_while] = ACTIONS(1785), + [anon_sym_do] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1785), + [anon_sym_else] = ACTIONS(1785), + [anon_sym_match] = ACTIONS(1785), [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_catch] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_source] = ACTIONS(1783), - [anon_sym_source_DASHenv] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_hide] = ACTIONS(1783), - [anon_sym_hide_DASHenv] = ACTIONS(1783), - [anon_sym_overlay] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1783), + [anon_sym_try] = ACTIONS(1785), + [anon_sym_catch] = ACTIONS(1785), + [anon_sym_return] = ACTIONS(1785), + [anon_sym_source] = ACTIONS(1785), + [anon_sym_source_DASHenv] = ACTIONS(1785), + [anon_sym_register] = ACTIONS(1785), + [anon_sym_hide] = ACTIONS(1785), + [anon_sym_hide_DASHenv] = ACTIONS(1785), + [anon_sym_overlay] = ACTIONS(1785), + [anon_sym_as] = ACTIONS(1785), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_PLUS2] = ACTIONS(1785), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), + [aux_sym__immediate_decimal_token2] = ACTIONS(2056), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), + [aux_sym__val_number_decimal_token1] = ACTIONS(1785), [aux_sym__val_number_decimal_token2] = ACTIONS(1785), [aux_sym__val_number_decimal_token3] = ACTIONS(1785), [aux_sym__val_number_decimal_token4] = ACTIONS(1785), [aux_sym__val_number_token1] = ACTIONS(1785), [aux_sym__val_number_token2] = ACTIONS(1785), [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1783), - [aux_sym__val_number_token5] = ACTIONS(1783), - [aux_sym__val_number_token6] = ACTIONS(1783), + [aux_sym__val_number_token4] = ACTIONS(1785), + [aux_sym__val_number_token5] = ACTIONS(1785), + [aux_sym__val_number_token6] = ACTIONS(1785), [anon_sym_DQUOTE] = ACTIONS(1785), [sym__str_single_quotes] = ACTIONS(1785), [sym__str_back_ticks] = ACTIONS(1785), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1785), + [sym__entry_separator] = ACTIONS(1787), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1787), }, - [431] = { - [sym_comment] = STATE(431), - [anon_sym_export] = ACTIONS(1890), - [anon_sym_alias] = ACTIONS(1890), - [anon_sym_let] = ACTIONS(1890), - [anon_sym_let_DASHenv] = ACTIONS(1890), - [anon_sym_mut] = ACTIONS(1890), - [anon_sym_const] = ACTIONS(1890), - [aux_sym_cmd_identifier_token1] = ACTIONS(1890), - [aux_sym_cmd_identifier_token2] = ACTIONS(1892), - [aux_sym_cmd_identifier_token3] = ACTIONS(1892), - [aux_sym_cmd_identifier_token4] = ACTIONS(1892), - [aux_sym_cmd_identifier_token5] = ACTIONS(1892), - [aux_sym_cmd_identifier_token6] = ACTIONS(1892), - [aux_sym_cmd_identifier_token7] = ACTIONS(1892), - [aux_sym_cmd_identifier_token8] = ACTIONS(1890), - [aux_sym_cmd_identifier_token9] = ACTIONS(1890), - [aux_sym_cmd_identifier_token10] = ACTIONS(1892), - [aux_sym_cmd_identifier_token11] = ACTIONS(1892), - [aux_sym_cmd_identifier_token12] = ACTIONS(1890), - [aux_sym_cmd_identifier_token13] = ACTIONS(1890), - [aux_sym_cmd_identifier_token14] = ACTIONS(1890), - [aux_sym_cmd_identifier_token15] = ACTIONS(1890), - [aux_sym_cmd_identifier_token16] = ACTIONS(1892), - [aux_sym_cmd_identifier_token17] = ACTIONS(1892), - [aux_sym_cmd_identifier_token18] = ACTIONS(1892), - [aux_sym_cmd_identifier_token19] = ACTIONS(1892), - [aux_sym_cmd_identifier_token20] = ACTIONS(1892), - [aux_sym_cmd_identifier_token21] = ACTIONS(1892), - [aux_sym_cmd_identifier_token22] = ACTIONS(1892), - [aux_sym_cmd_identifier_token23] = ACTIONS(1892), - [aux_sym_cmd_identifier_token24] = ACTIONS(1892), - [aux_sym_cmd_identifier_token25] = ACTIONS(1892), - [aux_sym_cmd_identifier_token26] = ACTIONS(1892), - [aux_sym_cmd_identifier_token27] = ACTIONS(1892), - [aux_sym_cmd_identifier_token28] = ACTIONS(1892), - [aux_sym_cmd_identifier_token29] = ACTIONS(1892), - [aux_sym_cmd_identifier_token30] = ACTIONS(1892), - [aux_sym_cmd_identifier_token31] = ACTIONS(1892), - [aux_sym_cmd_identifier_token32] = ACTIONS(1892), - [aux_sym_cmd_identifier_token33] = ACTIONS(1892), - [aux_sym_cmd_identifier_token34] = ACTIONS(1890), - [aux_sym_cmd_identifier_token35] = ACTIONS(1892), - [aux_sym_cmd_identifier_token36] = ACTIONS(1892), - [aux_sym_cmd_identifier_token37] = ACTIONS(1892), - [aux_sym_cmd_identifier_token38] = ACTIONS(1890), - [aux_sym_cmd_identifier_token39] = ACTIONS(1892), - [aux_sym_cmd_identifier_token40] = ACTIONS(1892), - [anon_sym_def] = ACTIONS(1890), - [anon_sym_export_DASHenv] = ACTIONS(1890), - [anon_sym_extern] = ACTIONS(1890), - [anon_sym_module] = ACTIONS(1890), - [anon_sym_use] = ACTIONS(1890), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(1892), - [anon_sym_error] = ACTIONS(1890), - [anon_sym_DASH2] = ACTIONS(1890), - [anon_sym_break] = ACTIONS(1890), - [anon_sym_continue] = ACTIONS(1890), - [anon_sym_for] = ACTIONS(1890), - [anon_sym_in2] = ACTIONS(1890), - [anon_sym_loop] = ACTIONS(1890), - [anon_sym_make] = ACTIONS(1890), - [anon_sym_while] = ACTIONS(1890), - [anon_sym_do] = ACTIONS(1890), - [anon_sym_if] = ACTIONS(1890), - [anon_sym_else] = ACTIONS(1890), - [anon_sym_match] = ACTIONS(1890), - [anon_sym_RBRACE] = ACTIONS(1892), - [anon_sym_try] = ACTIONS(1890), - [anon_sym_catch] = ACTIONS(1890), - [anon_sym_return] = ACTIONS(1890), - [anon_sym_source] = ACTIONS(1890), - [anon_sym_source_DASHenv] = ACTIONS(1890), - [anon_sym_register] = ACTIONS(1890), - [anon_sym_hide] = ACTIONS(1890), - [anon_sym_hide_DASHenv] = ACTIONS(1890), - [anon_sym_overlay] = ACTIONS(1890), - [anon_sym_as] = ACTIONS(1890), - [anon_sym_LPAREN2] = ACTIONS(1892), - [anon_sym_PLUS2] = ACTIONS(1890), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1892), - [anon_sym_DOT_DOT2] = ACTIONS(1890), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1892), - [aux_sym__val_number_decimal_token1] = ACTIONS(1890), - [aux_sym__val_number_decimal_token2] = ACTIONS(1892), - [aux_sym__val_number_decimal_token3] = ACTIONS(1892), - [aux_sym__val_number_decimal_token4] = ACTIONS(1892), - [aux_sym__val_number_token1] = ACTIONS(1892), - [aux_sym__val_number_token2] = ACTIONS(1892), - [aux_sym__val_number_token3] = ACTIONS(1892), - [aux_sym__val_number_token4] = ACTIONS(1890), - [aux_sym__val_number_token5] = ACTIONS(1890), - [aux_sym__val_number_token6] = ACTIONS(1890), - [anon_sym_DQUOTE] = ACTIONS(1892), - [sym__str_single_quotes] = ACTIONS(1892), - [sym__str_back_ticks] = ACTIONS(1892), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1892), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1890), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1892), + [456] = { + [sym_cell_path] = STATE(737), + [sym_path] = STATE(623), + [sym_comment] = STATE(456), + [aux_sym_cell_path_repeat1] = STATE(532), + [anon_sym_export] = ACTIONS(1879), + [anon_sym_alias] = ACTIONS(1879), + [anon_sym_let] = ACTIONS(1879), + [anon_sym_let_DASHenv] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [aux_sym_cmd_identifier_token1] = ACTIONS(1879), + [aux_sym_cmd_identifier_token2] = ACTIONS(1881), + [aux_sym_cmd_identifier_token3] = ACTIONS(1881), + [aux_sym_cmd_identifier_token4] = ACTIONS(1881), + [aux_sym_cmd_identifier_token5] = ACTIONS(1881), + [aux_sym_cmd_identifier_token6] = ACTIONS(1881), + [aux_sym_cmd_identifier_token7] = ACTIONS(1881), + [aux_sym_cmd_identifier_token8] = ACTIONS(1879), + [aux_sym_cmd_identifier_token9] = ACTIONS(1879), + [aux_sym_cmd_identifier_token10] = ACTIONS(1881), + [aux_sym_cmd_identifier_token11] = ACTIONS(1881), + [aux_sym_cmd_identifier_token12] = ACTIONS(1879), + [aux_sym_cmd_identifier_token13] = ACTIONS(1879), + [aux_sym_cmd_identifier_token14] = ACTIONS(1879), + [aux_sym_cmd_identifier_token15] = ACTIONS(1879), + [aux_sym_cmd_identifier_token16] = ACTIONS(1881), + [aux_sym_cmd_identifier_token17] = ACTIONS(1881), + [aux_sym_cmd_identifier_token18] = ACTIONS(1881), + [aux_sym_cmd_identifier_token19] = ACTIONS(1881), + [aux_sym_cmd_identifier_token20] = ACTIONS(1881), + [aux_sym_cmd_identifier_token21] = ACTIONS(1881), + [aux_sym_cmd_identifier_token22] = ACTIONS(1881), + [aux_sym_cmd_identifier_token23] = ACTIONS(1881), + [aux_sym_cmd_identifier_token24] = ACTIONS(1881), + [aux_sym_cmd_identifier_token25] = ACTIONS(1881), + [aux_sym_cmd_identifier_token26] = ACTIONS(1881), + [aux_sym_cmd_identifier_token27] = ACTIONS(1881), + [aux_sym_cmd_identifier_token28] = ACTIONS(1881), + [aux_sym_cmd_identifier_token29] = ACTIONS(1881), + [aux_sym_cmd_identifier_token30] = ACTIONS(1881), + [aux_sym_cmd_identifier_token31] = ACTIONS(1881), + [aux_sym_cmd_identifier_token32] = ACTIONS(1881), + [aux_sym_cmd_identifier_token33] = ACTIONS(1881), + [aux_sym_cmd_identifier_token34] = ACTIONS(1879), + [aux_sym_cmd_identifier_token35] = ACTIONS(1881), + [aux_sym_cmd_identifier_token36] = ACTIONS(1881), + [aux_sym_cmd_identifier_token37] = ACTIONS(1881), + [aux_sym_cmd_identifier_token38] = ACTIONS(1879), + [aux_sym_cmd_identifier_token39] = ACTIONS(1881), + [aux_sym_cmd_identifier_token40] = ACTIONS(1881), + [anon_sym_def] = ACTIONS(1879), + [anon_sym_export_DASHenv] = ACTIONS(1879), + [anon_sym_extern] = ACTIONS(1879), + [anon_sym_module] = ACTIONS(1879), + [anon_sym_use] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_DOLLAR] = ACTIONS(1881), + [anon_sym_error] = ACTIONS(1879), + [anon_sym_DASH2] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_in2] = ACTIONS(1879), + [anon_sym_loop] = ACTIONS(1879), + [anon_sym_make] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_do] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_else] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym_try] = ACTIONS(1879), + [anon_sym_catch] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_source] = ACTIONS(1879), + [anon_sym_source_DASHenv] = ACTIONS(1879), + [anon_sym_register] = ACTIONS(1879), + [anon_sym_hide] = ACTIONS(1879), + [anon_sym_hide_DASHenv] = ACTIONS(1879), + [anon_sym_overlay] = ACTIONS(1879), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_PLUS2] = ACTIONS(1879), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1881), + [aux_sym__val_number_decimal_token1] = ACTIONS(1879), + [aux_sym__val_number_decimal_token2] = ACTIONS(1881), + [aux_sym__val_number_decimal_token3] = ACTIONS(1881), + [aux_sym__val_number_decimal_token4] = ACTIONS(1881), + [aux_sym__val_number_token1] = ACTIONS(1881), + [aux_sym__val_number_token2] = ACTIONS(1881), + [aux_sym__val_number_token3] = ACTIONS(1881), + [aux_sym__val_number_token4] = ACTIONS(1879), + [aux_sym__val_number_token5] = ACTIONS(1879), + [aux_sym__val_number_token6] = ACTIONS(1879), + [anon_sym_DQUOTE] = ACTIONS(1881), + [sym__str_single_quotes] = ACTIONS(1881), + [sym__str_back_ticks] = ACTIONS(1881), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1881), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1881), }, - [432] = { - [sym_comment] = STATE(432), - [anon_sym_export] = ACTIONS(994), - [anon_sym_alias] = ACTIONS(994), - [anon_sym_let] = ACTIONS(994), - [anon_sym_let_DASHenv] = ACTIONS(994), - [anon_sym_mut] = ACTIONS(994), - [anon_sym_const] = ACTIONS(994), - [aux_sym_cmd_identifier_token1] = ACTIONS(994), - [aux_sym_cmd_identifier_token2] = ACTIONS(996), - [aux_sym_cmd_identifier_token3] = ACTIONS(996), - [aux_sym_cmd_identifier_token4] = ACTIONS(996), - [aux_sym_cmd_identifier_token5] = ACTIONS(996), - [aux_sym_cmd_identifier_token6] = ACTIONS(996), - [aux_sym_cmd_identifier_token7] = ACTIONS(996), - [aux_sym_cmd_identifier_token8] = ACTIONS(994), - [aux_sym_cmd_identifier_token9] = ACTIONS(994), - [aux_sym_cmd_identifier_token10] = ACTIONS(996), - [aux_sym_cmd_identifier_token11] = ACTIONS(996), - [aux_sym_cmd_identifier_token12] = ACTIONS(994), - [aux_sym_cmd_identifier_token13] = ACTIONS(994), - [aux_sym_cmd_identifier_token14] = ACTIONS(994), - [aux_sym_cmd_identifier_token15] = ACTIONS(994), - [aux_sym_cmd_identifier_token16] = ACTIONS(996), - [aux_sym_cmd_identifier_token17] = ACTIONS(996), - [aux_sym_cmd_identifier_token18] = ACTIONS(996), - [aux_sym_cmd_identifier_token19] = ACTIONS(996), - [aux_sym_cmd_identifier_token20] = ACTIONS(996), - [aux_sym_cmd_identifier_token21] = ACTIONS(996), - [aux_sym_cmd_identifier_token22] = ACTIONS(996), - [aux_sym_cmd_identifier_token23] = ACTIONS(996), - [aux_sym_cmd_identifier_token24] = ACTIONS(996), - [aux_sym_cmd_identifier_token25] = ACTIONS(996), - [aux_sym_cmd_identifier_token26] = ACTIONS(996), - [aux_sym_cmd_identifier_token27] = ACTIONS(996), - [aux_sym_cmd_identifier_token28] = ACTIONS(996), - [aux_sym_cmd_identifier_token29] = ACTIONS(996), - [aux_sym_cmd_identifier_token30] = ACTIONS(996), - [aux_sym_cmd_identifier_token31] = ACTIONS(996), - [aux_sym_cmd_identifier_token32] = ACTIONS(996), - [aux_sym_cmd_identifier_token33] = ACTIONS(996), - [aux_sym_cmd_identifier_token34] = ACTIONS(994), - [aux_sym_cmd_identifier_token35] = ACTIONS(996), - [aux_sym_cmd_identifier_token36] = ACTIONS(996), - [aux_sym_cmd_identifier_token37] = ACTIONS(996), - [aux_sym_cmd_identifier_token38] = ACTIONS(994), - [aux_sym_cmd_identifier_token39] = ACTIONS(996), - [aux_sym_cmd_identifier_token40] = ACTIONS(996), - [anon_sym_def] = ACTIONS(994), - [anon_sym_export_DASHenv] = ACTIONS(994), - [anon_sym_extern] = ACTIONS(994), - [anon_sym_module] = ACTIONS(994), - [anon_sym_use] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(996), - [anon_sym_error] = ACTIONS(994), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_break] = ACTIONS(994), - [anon_sym_continue] = ACTIONS(994), - [anon_sym_for] = ACTIONS(994), - [anon_sym_in2] = ACTIONS(994), - [anon_sym_loop] = ACTIONS(994), - [anon_sym_make] = ACTIONS(994), - [anon_sym_while] = ACTIONS(994), - [anon_sym_do] = ACTIONS(994), - [anon_sym_if] = ACTIONS(994), - [anon_sym_else] = ACTIONS(994), - [anon_sym_match] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_try] = ACTIONS(994), - [anon_sym_catch] = ACTIONS(994), - [anon_sym_return] = ACTIONS(994), - [anon_sym_source] = ACTIONS(994), - [anon_sym_source_DASHenv] = ACTIONS(994), - [anon_sym_register] = ACTIONS(994), - [anon_sym_hide] = ACTIONS(994), - [anon_sym_hide_DASHenv] = ACTIONS(994), - [anon_sym_overlay] = ACTIONS(994), + [457] = { + [sym_comment] = STATE(457), + [anon_sym_export] = ACTIONS(1765), + [anon_sym_alias] = ACTIONS(1765), + [anon_sym_let] = ACTIONS(1765), + [anon_sym_let_DASHenv] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [aux_sym_cmd_identifier_token1] = ACTIONS(1765), + [aux_sym_cmd_identifier_token2] = ACTIONS(1765), + [aux_sym_cmd_identifier_token3] = ACTIONS(1765), + [aux_sym_cmd_identifier_token4] = ACTIONS(1765), + [aux_sym_cmd_identifier_token5] = ACTIONS(1765), + [aux_sym_cmd_identifier_token6] = ACTIONS(1765), + [aux_sym_cmd_identifier_token7] = ACTIONS(1765), + [aux_sym_cmd_identifier_token8] = ACTIONS(1765), + [aux_sym_cmd_identifier_token9] = ACTIONS(1765), + [aux_sym_cmd_identifier_token10] = ACTIONS(1765), + [aux_sym_cmd_identifier_token11] = ACTIONS(1765), + [aux_sym_cmd_identifier_token12] = ACTIONS(1765), + [aux_sym_cmd_identifier_token13] = ACTIONS(1765), + [aux_sym_cmd_identifier_token14] = ACTIONS(1765), + [aux_sym_cmd_identifier_token15] = ACTIONS(1765), + [aux_sym_cmd_identifier_token16] = ACTIONS(1765), + [aux_sym_cmd_identifier_token17] = ACTIONS(1765), + [aux_sym_cmd_identifier_token18] = ACTIONS(1765), + [aux_sym_cmd_identifier_token19] = ACTIONS(1765), + [aux_sym_cmd_identifier_token20] = ACTIONS(1765), + [aux_sym_cmd_identifier_token21] = ACTIONS(1765), + [aux_sym_cmd_identifier_token22] = ACTIONS(1765), + [aux_sym_cmd_identifier_token23] = ACTIONS(1765), + [aux_sym_cmd_identifier_token24] = ACTIONS(1765), + [aux_sym_cmd_identifier_token25] = ACTIONS(1765), + [aux_sym_cmd_identifier_token26] = ACTIONS(1765), + [aux_sym_cmd_identifier_token27] = ACTIONS(1765), + [aux_sym_cmd_identifier_token28] = ACTIONS(1765), + [aux_sym_cmd_identifier_token29] = ACTIONS(1765), + [aux_sym_cmd_identifier_token30] = ACTIONS(1765), + [aux_sym_cmd_identifier_token31] = ACTIONS(1765), + [aux_sym_cmd_identifier_token32] = ACTIONS(1765), + [aux_sym_cmd_identifier_token33] = ACTIONS(1765), + [aux_sym_cmd_identifier_token34] = ACTIONS(1765), + [aux_sym_cmd_identifier_token35] = ACTIONS(1765), + [aux_sym_cmd_identifier_token36] = ACTIONS(1765), + [aux_sym_cmd_identifier_token37] = ACTIONS(1765), + [aux_sym_cmd_identifier_token38] = ACTIONS(1765), + [aux_sym_cmd_identifier_token39] = ACTIONS(1765), + [aux_sym_cmd_identifier_token40] = ACTIONS(1765), + [anon_sym_def] = ACTIONS(1765), + [anon_sym_export_DASHenv] = ACTIONS(1765), + [anon_sym_extern] = ACTIONS(1765), + [anon_sym_module] = ACTIONS(1765), + [anon_sym_use] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_DOLLAR] = ACTIONS(1765), + [anon_sym_error] = ACTIONS(1765), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_in2] = ACTIONS(1765), + [anon_sym_loop] = ACTIONS(1765), + [anon_sym_make] = ACTIONS(1765), + [anon_sym_while] = ACTIONS(1765), + [anon_sym_do] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_else] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_try] = ACTIONS(1765), + [anon_sym_catch] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_source] = ACTIONS(1765), + [anon_sym_source_DASHenv] = ACTIONS(1765), + [anon_sym_register] = ACTIONS(1765), + [anon_sym_hide] = ACTIONS(1765), + [anon_sym_hide_DASHenv] = ACTIONS(1765), + [anon_sym_overlay] = ACTIONS(1765), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_PLUS2] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), + [anon_sym_DOT_DOT2] = ACTIONS(1765), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1765), + [aux_sym__val_number_decimal_token3] = ACTIONS(1765), + [aux_sym__val_number_decimal_token4] = ACTIONS(1765), + [aux_sym__val_number_token1] = ACTIONS(1765), + [aux_sym__val_number_token2] = ACTIONS(1765), + [aux_sym__val_number_token3] = ACTIONS(1765), + [aux_sym__val_number_token4] = ACTIONS(1765), + [aux_sym__val_number_token5] = ACTIONS(1765), + [aux_sym__val_number_token6] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1765), + [sym__str_single_quotes] = ACTIONS(1765), + [sym__str_back_ticks] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), + [sym__entry_separator] = ACTIONS(1767), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1767), + }, + [458] = { + [sym_cell_path] = STATE(738), + [sym_path] = STATE(623), + [sym_comment] = STATE(458), + [aux_sym_cell_path_repeat1] = STATE(532), + [anon_sym_export] = ACTIONS(1883), + [anon_sym_alias] = ACTIONS(1883), + [anon_sym_let] = ACTIONS(1883), + [anon_sym_let_DASHenv] = ACTIONS(1883), + [anon_sym_mut] = ACTIONS(1883), + [anon_sym_const] = ACTIONS(1883), + [aux_sym_cmd_identifier_token1] = ACTIONS(1883), + [aux_sym_cmd_identifier_token2] = ACTIONS(1885), + [aux_sym_cmd_identifier_token3] = ACTIONS(1885), + [aux_sym_cmd_identifier_token4] = ACTIONS(1885), + [aux_sym_cmd_identifier_token5] = ACTIONS(1885), + [aux_sym_cmd_identifier_token6] = ACTIONS(1885), + [aux_sym_cmd_identifier_token7] = ACTIONS(1885), + [aux_sym_cmd_identifier_token8] = ACTIONS(1883), + [aux_sym_cmd_identifier_token9] = ACTIONS(1883), + [aux_sym_cmd_identifier_token10] = ACTIONS(1885), + [aux_sym_cmd_identifier_token11] = ACTIONS(1885), + [aux_sym_cmd_identifier_token12] = ACTIONS(1883), + [aux_sym_cmd_identifier_token13] = ACTIONS(1883), + [aux_sym_cmd_identifier_token14] = ACTIONS(1883), + [aux_sym_cmd_identifier_token15] = ACTIONS(1883), + [aux_sym_cmd_identifier_token16] = ACTIONS(1885), + [aux_sym_cmd_identifier_token17] = ACTIONS(1885), + [aux_sym_cmd_identifier_token18] = ACTIONS(1885), + [aux_sym_cmd_identifier_token19] = ACTIONS(1885), + [aux_sym_cmd_identifier_token20] = ACTIONS(1885), + [aux_sym_cmd_identifier_token21] = ACTIONS(1885), + [aux_sym_cmd_identifier_token22] = ACTIONS(1885), + [aux_sym_cmd_identifier_token23] = ACTIONS(1885), + [aux_sym_cmd_identifier_token24] = ACTIONS(1885), + [aux_sym_cmd_identifier_token25] = ACTIONS(1885), + [aux_sym_cmd_identifier_token26] = ACTIONS(1885), + [aux_sym_cmd_identifier_token27] = ACTIONS(1885), + [aux_sym_cmd_identifier_token28] = ACTIONS(1885), + [aux_sym_cmd_identifier_token29] = ACTIONS(1885), + [aux_sym_cmd_identifier_token30] = ACTIONS(1885), + [aux_sym_cmd_identifier_token31] = ACTIONS(1885), + [aux_sym_cmd_identifier_token32] = ACTIONS(1885), + [aux_sym_cmd_identifier_token33] = ACTIONS(1885), + [aux_sym_cmd_identifier_token34] = ACTIONS(1883), + [aux_sym_cmd_identifier_token35] = ACTIONS(1885), + [aux_sym_cmd_identifier_token36] = ACTIONS(1885), + [aux_sym_cmd_identifier_token37] = ACTIONS(1885), + [aux_sym_cmd_identifier_token38] = ACTIONS(1883), + [aux_sym_cmd_identifier_token39] = ACTIONS(1885), + [aux_sym_cmd_identifier_token40] = ACTIONS(1885), + [anon_sym_def] = ACTIONS(1883), + [anon_sym_export_DASHenv] = ACTIONS(1883), + [anon_sym_extern] = ACTIONS(1883), + [anon_sym_module] = ACTIONS(1883), + [anon_sym_use] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_DOLLAR] = ACTIONS(1885), + [anon_sym_error] = ACTIONS(1883), + [anon_sym_DASH2] = ACTIONS(1883), + [anon_sym_break] = ACTIONS(1883), + [anon_sym_continue] = ACTIONS(1883), + [anon_sym_for] = ACTIONS(1883), + [anon_sym_in2] = ACTIONS(1883), + [anon_sym_loop] = ACTIONS(1883), + [anon_sym_make] = ACTIONS(1883), + [anon_sym_while] = ACTIONS(1883), + [anon_sym_do] = ACTIONS(1883), + [anon_sym_if] = ACTIONS(1883), + [anon_sym_else] = ACTIONS(1883), + [anon_sym_match] = ACTIONS(1883), + [anon_sym_RBRACE] = ACTIONS(1885), + [anon_sym_try] = ACTIONS(1883), + [anon_sym_catch] = ACTIONS(1883), + [anon_sym_return] = ACTIONS(1883), + [anon_sym_source] = ACTIONS(1883), + [anon_sym_source_DASHenv] = ACTIONS(1883), + [anon_sym_register] = ACTIONS(1883), + [anon_sym_hide] = ACTIONS(1883), + [anon_sym_hide_DASHenv] = ACTIONS(1883), + [anon_sym_overlay] = ACTIONS(1883), + [anon_sym_as] = ACTIONS(1883), + [anon_sym_PLUS2] = ACTIONS(1883), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1885), + [anon_sym_DOT] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1885), + [aux_sym__val_number_decimal_token1] = ACTIONS(1883), + [aux_sym__val_number_decimal_token2] = ACTIONS(1885), + [aux_sym__val_number_decimal_token3] = ACTIONS(1885), + [aux_sym__val_number_decimal_token4] = ACTIONS(1885), + [aux_sym__val_number_token1] = ACTIONS(1885), + [aux_sym__val_number_token2] = ACTIONS(1885), + [aux_sym__val_number_token3] = ACTIONS(1885), + [aux_sym__val_number_token4] = ACTIONS(1883), + [aux_sym__val_number_token5] = ACTIONS(1883), + [aux_sym__val_number_token6] = ACTIONS(1883), + [anon_sym_DQUOTE] = ACTIONS(1885), + [sym__str_single_quotes] = ACTIONS(1885), + [sym__str_back_ticks] = ACTIONS(1885), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1885), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1885), + }, + [459] = { + [sym_cell_path] = STATE(739), + [sym_path] = STATE(623), + [sym_comment] = STATE(459), + [aux_sym_cell_path_repeat1] = STATE(532), + [anon_sym_export] = ACTIONS(1887), + [anon_sym_alias] = ACTIONS(1887), + [anon_sym_let] = ACTIONS(1887), + [anon_sym_let_DASHenv] = ACTIONS(1887), + [anon_sym_mut] = ACTIONS(1887), + [anon_sym_const] = ACTIONS(1887), + [aux_sym_cmd_identifier_token1] = ACTIONS(1887), + [aux_sym_cmd_identifier_token2] = ACTIONS(1889), + [aux_sym_cmd_identifier_token3] = ACTIONS(1889), + [aux_sym_cmd_identifier_token4] = ACTIONS(1889), + [aux_sym_cmd_identifier_token5] = ACTIONS(1889), + [aux_sym_cmd_identifier_token6] = ACTIONS(1889), + [aux_sym_cmd_identifier_token7] = ACTIONS(1889), + [aux_sym_cmd_identifier_token8] = ACTIONS(1887), + [aux_sym_cmd_identifier_token9] = ACTIONS(1887), + [aux_sym_cmd_identifier_token10] = ACTIONS(1889), + [aux_sym_cmd_identifier_token11] = ACTIONS(1889), + [aux_sym_cmd_identifier_token12] = ACTIONS(1887), + [aux_sym_cmd_identifier_token13] = ACTIONS(1887), + [aux_sym_cmd_identifier_token14] = ACTIONS(1887), + [aux_sym_cmd_identifier_token15] = ACTIONS(1887), + [aux_sym_cmd_identifier_token16] = ACTIONS(1889), + [aux_sym_cmd_identifier_token17] = ACTIONS(1889), + [aux_sym_cmd_identifier_token18] = ACTIONS(1889), + [aux_sym_cmd_identifier_token19] = ACTIONS(1889), + [aux_sym_cmd_identifier_token20] = ACTIONS(1889), + [aux_sym_cmd_identifier_token21] = ACTIONS(1889), + [aux_sym_cmd_identifier_token22] = ACTIONS(1889), + [aux_sym_cmd_identifier_token23] = ACTIONS(1889), + [aux_sym_cmd_identifier_token24] = ACTIONS(1889), + [aux_sym_cmd_identifier_token25] = ACTIONS(1889), + [aux_sym_cmd_identifier_token26] = ACTIONS(1889), + [aux_sym_cmd_identifier_token27] = ACTIONS(1889), + [aux_sym_cmd_identifier_token28] = ACTIONS(1889), + [aux_sym_cmd_identifier_token29] = ACTIONS(1889), + [aux_sym_cmd_identifier_token30] = ACTIONS(1889), + [aux_sym_cmd_identifier_token31] = ACTIONS(1889), + [aux_sym_cmd_identifier_token32] = ACTIONS(1889), + [aux_sym_cmd_identifier_token33] = ACTIONS(1889), + [aux_sym_cmd_identifier_token34] = ACTIONS(1887), + [aux_sym_cmd_identifier_token35] = ACTIONS(1889), + [aux_sym_cmd_identifier_token36] = ACTIONS(1889), + [aux_sym_cmd_identifier_token37] = ACTIONS(1889), + [aux_sym_cmd_identifier_token38] = ACTIONS(1887), + [aux_sym_cmd_identifier_token39] = ACTIONS(1889), + [aux_sym_cmd_identifier_token40] = ACTIONS(1889), + [anon_sym_def] = ACTIONS(1887), + [anon_sym_export_DASHenv] = ACTIONS(1887), + [anon_sym_extern] = ACTIONS(1887), + [anon_sym_module] = ACTIONS(1887), + [anon_sym_use] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1889), + [anon_sym_DOLLAR] = ACTIONS(1889), + [anon_sym_error] = ACTIONS(1887), + [anon_sym_DASH2] = ACTIONS(1887), + [anon_sym_break] = ACTIONS(1887), + [anon_sym_continue] = ACTIONS(1887), + [anon_sym_for] = ACTIONS(1887), + [anon_sym_in2] = ACTIONS(1887), + [anon_sym_loop] = ACTIONS(1887), + [anon_sym_make] = ACTIONS(1887), + [anon_sym_while] = ACTIONS(1887), + [anon_sym_do] = ACTIONS(1887), + [anon_sym_if] = ACTIONS(1887), + [anon_sym_else] = ACTIONS(1887), + [anon_sym_match] = ACTIONS(1887), + [anon_sym_RBRACE] = ACTIONS(1889), + [anon_sym_try] = ACTIONS(1887), + [anon_sym_catch] = ACTIONS(1887), + [anon_sym_return] = ACTIONS(1887), + [anon_sym_source] = ACTIONS(1887), + [anon_sym_source_DASHenv] = ACTIONS(1887), + [anon_sym_register] = ACTIONS(1887), + [anon_sym_hide] = ACTIONS(1887), + [anon_sym_hide_DASHenv] = ACTIONS(1887), + [anon_sym_overlay] = ACTIONS(1887), + [anon_sym_as] = ACTIONS(1887), + [anon_sym_PLUS2] = ACTIONS(1887), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1889), + [anon_sym_DOT] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1889), + [aux_sym__val_number_decimal_token1] = ACTIONS(1887), + [aux_sym__val_number_decimal_token2] = ACTIONS(1889), + [aux_sym__val_number_decimal_token3] = ACTIONS(1889), + [aux_sym__val_number_decimal_token4] = ACTIONS(1889), + [aux_sym__val_number_token1] = ACTIONS(1889), + [aux_sym__val_number_token2] = ACTIONS(1889), + [aux_sym__val_number_token3] = ACTIONS(1889), + [aux_sym__val_number_token4] = ACTIONS(1887), + [aux_sym__val_number_token5] = ACTIONS(1887), + [aux_sym__val_number_token6] = ACTIONS(1887), + [anon_sym_DQUOTE] = ACTIONS(1889), + [sym__str_single_quotes] = ACTIONS(1889), + [sym__str_back_ticks] = ACTIONS(1889), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1889), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1889), + }, + [460] = { + [sym_cell_path] = STATE(740), + [sym_path] = STATE(623), + [sym_comment] = STATE(460), + [aux_sym_cell_path_repeat1] = STATE(532), + [anon_sym_export] = ACTIONS(1891), + [anon_sym_alias] = ACTIONS(1891), + [anon_sym_let] = ACTIONS(1891), + [anon_sym_let_DASHenv] = ACTIONS(1891), + [anon_sym_mut] = ACTIONS(1891), + [anon_sym_const] = ACTIONS(1891), + [aux_sym_cmd_identifier_token1] = ACTIONS(1891), + [aux_sym_cmd_identifier_token2] = ACTIONS(1893), + [aux_sym_cmd_identifier_token3] = ACTIONS(1893), + [aux_sym_cmd_identifier_token4] = ACTIONS(1893), + [aux_sym_cmd_identifier_token5] = ACTIONS(1893), + [aux_sym_cmd_identifier_token6] = ACTIONS(1893), + [aux_sym_cmd_identifier_token7] = ACTIONS(1893), + [aux_sym_cmd_identifier_token8] = ACTIONS(1891), + [aux_sym_cmd_identifier_token9] = ACTIONS(1891), + [aux_sym_cmd_identifier_token10] = ACTIONS(1893), + [aux_sym_cmd_identifier_token11] = ACTIONS(1893), + [aux_sym_cmd_identifier_token12] = ACTIONS(1891), + [aux_sym_cmd_identifier_token13] = ACTIONS(1891), + [aux_sym_cmd_identifier_token14] = ACTIONS(1891), + [aux_sym_cmd_identifier_token15] = ACTIONS(1891), + [aux_sym_cmd_identifier_token16] = ACTIONS(1893), + [aux_sym_cmd_identifier_token17] = ACTIONS(1893), + [aux_sym_cmd_identifier_token18] = ACTIONS(1893), + [aux_sym_cmd_identifier_token19] = ACTIONS(1893), + [aux_sym_cmd_identifier_token20] = ACTIONS(1893), + [aux_sym_cmd_identifier_token21] = ACTIONS(1893), + [aux_sym_cmd_identifier_token22] = ACTIONS(1893), + [aux_sym_cmd_identifier_token23] = ACTIONS(1893), + [aux_sym_cmd_identifier_token24] = ACTIONS(1893), + [aux_sym_cmd_identifier_token25] = ACTIONS(1893), + [aux_sym_cmd_identifier_token26] = ACTIONS(1893), + [aux_sym_cmd_identifier_token27] = ACTIONS(1893), + [aux_sym_cmd_identifier_token28] = ACTIONS(1893), + [aux_sym_cmd_identifier_token29] = ACTIONS(1893), + [aux_sym_cmd_identifier_token30] = ACTIONS(1893), + [aux_sym_cmd_identifier_token31] = ACTIONS(1893), + [aux_sym_cmd_identifier_token32] = ACTIONS(1893), + [aux_sym_cmd_identifier_token33] = ACTIONS(1893), + [aux_sym_cmd_identifier_token34] = ACTIONS(1891), + [aux_sym_cmd_identifier_token35] = ACTIONS(1893), + [aux_sym_cmd_identifier_token36] = ACTIONS(1893), + [aux_sym_cmd_identifier_token37] = ACTIONS(1893), + [aux_sym_cmd_identifier_token38] = ACTIONS(1891), + [aux_sym_cmd_identifier_token39] = ACTIONS(1893), + [aux_sym_cmd_identifier_token40] = ACTIONS(1893), + [anon_sym_def] = ACTIONS(1891), + [anon_sym_export_DASHenv] = ACTIONS(1891), + [anon_sym_extern] = ACTIONS(1891), + [anon_sym_module] = ACTIONS(1891), + [anon_sym_use] = ACTIONS(1891), + [anon_sym_LPAREN] = ACTIONS(1893), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_error] = ACTIONS(1891), + [anon_sym_DASH2] = ACTIONS(1891), + [anon_sym_break] = ACTIONS(1891), + [anon_sym_continue] = ACTIONS(1891), + [anon_sym_for] = ACTIONS(1891), + [anon_sym_in2] = ACTIONS(1891), + [anon_sym_loop] = ACTIONS(1891), + [anon_sym_make] = ACTIONS(1891), + [anon_sym_while] = ACTIONS(1891), + [anon_sym_do] = ACTIONS(1891), + [anon_sym_if] = ACTIONS(1891), + [anon_sym_else] = ACTIONS(1891), + [anon_sym_match] = ACTIONS(1891), + [anon_sym_RBRACE] = ACTIONS(1893), + [anon_sym_try] = ACTIONS(1891), + [anon_sym_catch] = ACTIONS(1891), + [anon_sym_return] = ACTIONS(1891), + [anon_sym_source] = ACTIONS(1891), + [anon_sym_source_DASHenv] = ACTIONS(1891), + [anon_sym_register] = ACTIONS(1891), + [anon_sym_hide] = ACTIONS(1891), + [anon_sym_hide_DASHenv] = ACTIONS(1891), + [anon_sym_overlay] = ACTIONS(1891), + [anon_sym_as] = ACTIONS(1891), + [anon_sym_PLUS2] = ACTIONS(1891), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1893), + [anon_sym_DOT] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1893), + [aux_sym__val_number_decimal_token1] = ACTIONS(1891), + [aux_sym__val_number_decimal_token2] = ACTIONS(1893), + [aux_sym__val_number_decimal_token3] = ACTIONS(1893), + [aux_sym__val_number_decimal_token4] = ACTIONS(1893), + [aux_sym__val_number_token1] = ACTIONS(1893), + [aux_sym__val_number_token2] = ACTIONS(1893), + [aux_sym__val_number_token3] = ACTIONS(1893), + [aux_sym__val_number_token4] = ACTIONS(1891), + [aux_sym__val_number_token5] = ACTIONS(1891), + [aux_sym__val_number_token6] = ACTIONS(1891), + [anon_sym_DQUOTE] = ACTIONS(1893), + [sym__str_single_quotes] = ACTIONS(1893), + [sym__str_back_ticks] = ACTIONS(1893), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1893), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1893), + }, + [461] = { + [sym_comment] = STATE(461), + [anon_sym_export] = ACTIONS(1739), + [anon_sym_alias] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_let_DASHenv] = ACTIONS(1739), + [anon_sym_mut] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [aux_sym_cmd_identifier_token1] = ACTIONS(1739), + [aux_sym_cmd_identifier_token2] = ACTIONS(1739), + [aux_sym_cmd_identifier_token3] = ACTIONS(1739), + [aux_sym_cmd_identifier_token4] = ACTIONS(1739), + [aux_sym_cmd_identifier_token5] = ACTIONS(1739), + [aux_sym_cmd_identifier_token6] = ACTIONS(1739), + [aux_sym_cmd_identifier_token7] = ACTIONS(1739), + [aux_sym_cmd_identifier_token8] = ACTIONS(1739), + [aux_sym_cmd_identifier_token9] = ACTIONS(1739), + [aux_sym_cmd_identifier_token10] = ACTIONS(1739), + [aux_sym_cmd_identifier_token11] = ACTIONS(1739), + [aux_sym_cmd_identifier_token12] = ACTIONS(1739), + [aux_sym_cmd_identifier_token13] = ACTIONS(1739), + [aux_sym_cmd_identifier_token14] = ACTIONS(1739), + [aux_sym_cmd_identifier_token15] = ACTIONS(1739), + [aux_sym_cmd_identifier_token16] = ACTIONS(1739), + [aux_sym_cmd_identifier_token17] = ACTIONS(1739), + [aux_sym_cmd_identifier_token18] = ACTIONS(1739), + [aux_sym_cmd_identifier_token19] = ACTIONS(1739), + [aux_sym_cmd_identifier_token20] = ACTIONS(1739), + [aux_sym_cmd_identifier_token21] = ACTIONS(1739), + [aux_sym_cmd_identifier_token22] = ACTIONS(1739), + [aux_sym_cmd_identifier_token23] = ACTIONS(1739), + [aux_sym_cmd_identifier_token24] = ACTIONS(1739), + [aux_sym_cmd_identifier_token25] = ACTIONS(1739), + [aux_sym_cmd_identifier_token26] = ACTIONS(1739), + [aux_sym_cmd_identifier_token27] = ACTIONS(1739), + [aux_sym_cmd_identifier_token28] = ACTIONS(1739), + [aux_sym_cmd_identifier_token29] = ACTIONS(1739), + [aux_sym_cmd_identifier_token30] = ACTIONS(1739), + [aux_sym_cmd_identifier_token31] = ACTIONS(1739), + [aux_sym_cmd_identifier_token32] = ACTIONS(1739), + [aux_sym_cmd_identifier_token33] = ACTIONS(1739), + [aux_sym_cmd_identifier_token34] = ACTIONS(1739), + [aux_sym_cmd_identifier_token35] = ACTIONS(1739), + [aux_sym_cmd_identifier_token36] = ACTIONS(1739), + [aux_sym_cmd_identifier_token37] = ACTIONS(1739), + [aux_sym_cmd_identifier_token38] = ACTIONS(1739), + [aux_sym_cmd_identifier_token39] = ACTIONS(1739), + [aux_sym_cmd_identifier_token40] = ACTIONS(1739), + [anon_sym_def] = ACTIONS(1739), + [anon_sym_export_DASHenv] = ACTIONS(1739), + [anon_sym_extern] = ACTIONS(1739), + [anon_sym_module] = ACTIONS(1739), + [anon_sym_use] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_error] = ACTIONS(1739), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_break] = ACTIONS(1739), + [anon_sym_continue] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_in2] = ACTIONS(1739), + [anon_sym_loop] = ACTIONS(1739), + [anon_sym_make] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_do] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_else] = ACTIONS(1739), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1739), + [anon_sym_try] = ACTIONS(1739), + [anon_sym_catch] = ACTIONS(1739), + [anon_sym_return] = ACTIONS(1739), + [anon_sym_source] = ACTIONS(1739), + [anon_sym_source_DASHenv] = ACTIONS(1739), + [anon_sym_register] = ACTIONS(1739), + [anon_sym_hide] = ACTIONS(1739), + [anon_sym_hide_DASHenv] = ACTIONS(1739), + [anon_sym_overlay] = ACTIONS(1739), + [anon_sym_as] = ACTIONS(1739), + [anon_sym_PLUS2] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1739), + [anon_sym_DOT_DOT2] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1739), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1739), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1739), + [aux_sym__val_number_token1] = ACTIONS(1739), + [aux_sym__val_number_token2] = ACTIONS(1739), + [aux_sym__val_number_token3] = ACTIONS(1739), + [aux_sym__val_number_token4] = ACTIONS(1739), + [aux_sym__val_number_token5] = ACTIONS(1739), + [aux_sym__val_number_token6] = ACTIONS(1739), + [anon_sym_DQUOTE] = ACTIONS(1739), + [sym__str_single_quotes] = ACTIONS(1739), + [sym__str_back_ticks] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1739), + [sym__entry_separator] = ACTIONS(1741), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1741), + }, + [462] = { + [sym_cell_path] = STATE(741), + [sym_path] = STATE(623), + [sym_comment] = STATE(462), + [aux_sym_cell_path_repeat1] = STATE(532), + [anon_sym_export] = ACTIONS(1895), + [anon_sym_alias] = ACTIONS(1895), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_let_DASHenv] = ACTIONS(1895), + [anon_sym_mut] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(1895), + [aux_sym_cmd_identifier_token1] = ACTIONS(1895), + [aux_sym_cmd_identifier_token2] = ACTIONS(1897), + [aux_sym_cmd_identifier_token3] = ACTIONS(1897), + [aux_sym_cmd_identifier_token4] = ACTIONS(1897), + [aux_sym_cmd_identifier_token5] = ACTIONS(1897), + [aux_sym_cmd_identifier_token6] = ACTIONS(1897), + [aux_sym_cmd_identifier_token7] = ACTIONS(1897), + [aux_sym_cmd_identifier_token8] = ACTIONS(1895), + [aux_sym_cmd_identifier_token9] = ACTIONS(1895), + [aux_sym_cmd_identifier_token10] = ACTIONS(1897), + [aux_sym_cmd_identifier_token11] = ACTIONS(1897), + [aux_sym_cmd_identifier_token12] = ACTIONS(1895), + [aux_sym_cmd_identifier_token13] = ACTIONS(1895), + [aux_sym_cmd_identifier_token14] = ACTIONS(1895), + [aux_sym_cmd_identifier_token15] = ACTIONS(1895), + [aux_sym_cmd_identifier_token16] = ACTIONS(1897), + [aux_sym_cmd_identifier_token17] = ACTIONS(1897), + [aux_sym_cmd_identifier_token18] = ACTIONS(1897), + [aux_sym_cmd_identifier_token19] = ACTIONS(1897), + [aux_sym_cmd_identifier_token20] = ACTIONS(1897), + [aux_sym_cmd_identifier_token21] = ACTIONS(1897), + [aux_sym_cmd_identifier_token22] = ACTIONS(1897), + [aux_sym_cmd_identifier_token23] = ACTIONS(1897), + [aux_sym_cmd_identifier_token24] = ACTIONS(1897), + [aux_sym_cmd_identifier_token25] = ACTIONS(1897), + [aux_sym_cmd_identifier_token26] = ACTIONS(1897), + [aux_sym_cmd_identifier_token27] = ACTIONS(1897), + [aux_sym_cmd_identifier_token28] = ACTIONS(1897), + [aux_sym_cmd_identifier_token29] = ACTIONS(1897), + [aux_sym_cmd_identifier_token30] = ACTIONS(1897), + [aux_sym_cmd_identifier_token31] = ACTIONS(1897), + [aux_sym_cmd_identifier_token32] = ACTIONS(1897), + [aux_sym_cmd_identifier_token33] = ACTIONS(1897), + [aux_sym_cmd_identifier_token34] = ACTIONS(1895), + [aux_sym_cmd_identifier_token35] = ACTIONS(1897), + [aux_sym_cmd_identifier_token36] = ACTIONS(1897), + [aux_sym_cmd_identifier_token37] = ACTIONS(1897), + [aux_sym_cmd_identifier_token38] = ACTIONS(1895), + [aux_sym_cmd_identifier_token39] = ACTIONS(1897), + [aux_sym_cmd_identifier_token40] = ACTIONS(1897), + [anon_sym_def] = ACTIONS(1895), + [anon_sym_export_DASHenv] = ACTIONS(1895), + [anon_sym_extern] = ACTIONS(1895), + [anon_sym_module] = ACTIONS(1895), + [anon_sym_use] = ACTIONS(1895), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_DOLLAR] = ACTIONS(1897), + [anon_sym_error] = ACTIONS(1895), + [anon_sym_DASH2] = ACTIONS(1895), + [anon_sym_break] = ACTIONS(1895), + [anon_sym_continue] = ACTIONS(1895), + [anon_sym_for] = ACTIONS(1895), + [anon_sym_in2] = ACTIONS(1895), + [anon_sym_loop] = ACTIONS(1895), + [anon_sym_make] = ACTIONS(1895), + [anon_sym_while] = ACTIONS(1895), + [anon_sym_do] = ACTIONS(1895), + [anon_sym_if] = ACTIONS(1895), + [anon_sym_else] = ACTIONS(1895), + [anon_sym_match] = ACTIONS(1895), + [anon_sym_RBRACE] = ACTIONS(1897), + [anon_sym_try] = ACTIONS(1895), + [anon_sym_catch] = ACTIONS(1895), + [anon_sym_return] = ACTIONS(1895), + [anon_sym_source] = ACTIONS(1895), + [anon_sym_source_DASHenv] = ACTIONS(1895), + [anon_sym_register] = ACTIONS(1895), + [anon_sym_hide] = ACTIONS(1895), + [anon_sym_hide_DASHenv] = ACTIONS(1895), + [anon_sym_overlay] = ACTIONS(1895), + [anon_sym_as] = ACTIONS(1895), + [anon_sym_PLUS2] = ACTIONS(1895), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1897), + [anon_sym_DOT] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1897), + [aux_sym__val_number_decimal_token1] = ACTIONS(1895), + [aux_sym__val_number_decimal_token2] = ACTIONS(1897), + [aux_sym__val_number_decimal_token3] = ACTIONS(1897), + [aux_sym__val_number_decimal_token4] = ACTIONS(1897), + [aux_sym__val_number_token1] = ACTIONS(1897), + [aux_sym__val_number_token2] = ACTIONS(1897), + [aux_sym__val_number_token3] = ACTIONS(1897), + [aux_sym__val_number_token4] = ACTIONS(1895), + [aux_sym__val_number_token5] = ACTIONS(1895), + [aux_sym__val_number_token6] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(1897), + [sym__str_single_quotes] = ACTIONS(1897), + [sym__str_back_ticks] = ACTIONS(1897), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1897), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1897), + }, + [463] = { + [sym_cell_path] = STATE(742), + [sym_path] = STATE(623), + [sym_comment] = STATE(463), + [aux_sym_cell_path_repeat1] = STATE(532), + [anon_sym_export] = ACTIONS(1911), + [anon_sym_alias] = ACTIONS(1911), + [anon_sym_let] = ACTIONS(1911), + [anon_sym_let_DASHenv] = ACTIONS(1911), + [anon_sym_mut] = ACTIONS(1911), + [anon_sym_const] = ACTIONS(1911), + [aux_sym_cmd_identifier_token1] = ACTIONS(1911), + [aux_sym_cmd_identifier_token2] = ACTIONS(1913), + [aux_sym_cmd_identifier_token3] = ACTIONS(1913), + [aux_sym_cmd_identifier_token4] = ACTIONS(1913), + [aux_sym_cmd_identifier_token5] = ACTIONS(1913), + [aux_sym_cmd_identifier_token6] = ACTIONS(1913), + [aux_sym_cmd_identifier_token7] = ACTIONS(1913), + [aux_sym_cmd_identifier_token8] = ACTIONS(1911), + [aux_sym_cmd_identifier_token9] = ACTIONS(1911), + [aux_sym_cmd_identifier_token10] = ACTIONS(1913), + [aux_sym_cmd_identifier_token11] = ACTIONS(1913), + [aux_sym_cmd_identifier_token12] = ACTIONS(1911), + [aux_sym_cmd_identifier_token13] = ACTIONS(1911), + [aux_sym_cmd_identifier_token14] = ACTIONS(1911), + [aux_sym_cmd_identifier_token15] = ACTIONS(1911), + [aux_sym_cmd_identifier_token16] = ACTIONS(1913), + [aux_sym_cmd_identifier_token17] = ACTIONS(1913), + [aux_sym_cmd_identifier_token18] = ACTIONS(1913), + [aux_sym_cmd_identifier_token19] = ACTIONS(1913), + [aux_sym_cmd_identifier_token20] = ACTIONS(1913), + [aux_sym_cmd_identifier_token21] = ACTIONS(1913), + [aux_sym_cmd_identifier_token22] = ACTIONS(1913), + [aux_sym_cmd_identifier_token23] = ACTIONS(1913), + [aux_sym_cmd_identifier_token24] = ACTIONS(1913), + [aux_sym_cmd_identifier_token25] = ACTIONS(1913), + [aux_sym_cmd_identifier_token26] = ACTIONS(1913), + [aux_sym_cmd_identifier_token27] = ACTIONS(1913), + [aux_sym_cmd_identifier_token28] = ACTIONS(1913), + [aux_sym_cmd_identifier_token29] = ACTIONS(1913), + [aux_sym_cmd_identifier_token30] = ACTIONS(1913), + [aux_sym_cmd_identifier_token31] = ACTIONS(1913), + [aux_sym_cmd_identifier_token32] = ACTIONS(1913), + [aux_sym_cmd_identifier_token33] = ACTIONS(1913), + [aux_sym_cmd_identifier_token34] = ACTIONS(1911), + [aux_sym_cmd_identifier_token35] = ACTIONS(1913), + [aux_sym_cmd_identifier_token36] = ACTIONS(1913), + [aux_sym_cmd_identifier_token37] = ACTIONS(1913), + [aux_sym_cmd_identifier_token38] = ACTIONS(1911), + [aux_sym_cmd_identifier_token39] = ACTIONS(1913), + [aux_sym_cmd_identifier_token40] = ACTIONS(1913), + [anon_sym_def] = ACTIONS(1911), + [anon_sym_export_DASHenv] = ACTIONS(1911), + [anon_sym_extern] = ACTIONS(1911), + [anon_sym_module] = ACTIONS(1911), + [anon_sym_use] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_DOLLAR] = ACTIONS(1913), + [anon_sym_error] = ACTIONS(1911), + [anon_sym_DASH2] = ACTIONS(1911), + [anon_sym_break] = ACTIONS(1911), + [anon_sym_continue] = ACTIONS(1911), + [anon_sym_for] = ACTIONS(1911), + [anon_sym_in2] = ACTIONS(1911), + [anon_sym_loop] = ACTIONS(1911), + [anon_sym_make] = ACTIONS(1911), + [anon_sym_while] = ACTIONS(1911), + [anon_sym_do] = ACTIONS(1911), + [anon_sym_if] = ACTIONS(1911), + [anon_sym_else] = ACTIONS(1911), + [anon_sym_match] = ACTIONS(1911), + [anon_sym_RBRACE] = ACTIONS(1913), + [anon_sym_try] = ACTIONS(1911), + [anon_sym_catch] = ACTIONS(1911), + [anon_sym_return] = ACTIONS(1911), + [anon_sym_source] = ACTIONS(1911), + [anon_sym_source_DASHenv] = ACTIONS(1911), + [anon_sym_register] = ACTIONS(1911), + [anon_sym_hide] = ACTIONS(1911), + [anon_sym_hide_DASHenv] = ACTIONS(1911), + [anon_sym_overlay] = ACTIONS(1911), + [anon_sym_as] = ACTIONS(1911), + [anon_sym_PLUS2] = ACTIONS(1911), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1913), + [anon_sym_DOT] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1913), + [aux_sym__val_number_decimal_token1] = ACTIONS(1911), + [aux_sym__val_number_decimal_token2] = ACTIONS(1913), + [aux_sym__val_number_decimal_token3] = ACTIONS(1913), + [aux_sym__val_number_decimal_token4] = ACTIONS(1913), + [aux_sym__val_number_token1] = ACTIONS(1913), + [aux_sym__val_number_token2] = ACTIONS(1913), + [aux_sym__val_number_token3] = ACTIONS(1913), + [aux_sym__val_number_token4] = ACTIONS(1911), + [aux_sym__val_number_token5] = ACTIONS(1911), + [aux_sym__val_number_token6] = ACTIONS(1911), + [anon_sym_DQUOTE] = ACTIONS(1913), + [sym__str_single_quotes] = ACTIONS(1913), + [sym__str_back_ticks] = ACTIONS(1913), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1913), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1913), + }, + [464] = { + [sym_comment] = STATE(464), + [anon_sym_export] = ACTIONS(1785), + [anon_sym_alias] = ACTIONS(1785), + [anon_sym_let] = ACTIONS(1785), + [anon_sym_let_DASHenv] = ACTIONS(1785), + [anon_sym_mut] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(1785), + [aux_sym_cmd_identifier_token1] = ACTIONS(1785), + [aux_sym_cmd_identifier_token2] = ACTIONS(1785), + [aux_sym_cmd_identifier_token3] = ACTIONS(1785), + [aux_sym_cmd_identifier_token4] = ACTIONS(1785), + [aux_sym_cmd_identifier_token5] = ACTIONS(1785), + [aux_sym_cmd_identifier_token6] = ACTIONS(1785), + [aux_sym_cmd_identifier_token7] = ACTIONS(1785), + [aux_sym_cmd_identifier_token8] = ACTIONS(1785), + [aux_sym_cmd_identifier_token9] = ACTIONS(1785), + [aux_sym_cmd_identifier_token10] = ACTIONS(1785), + [aux_sym_cmd_identifier_token11] = ACTIONS(1785), + [aux_sym_cmd_identifier_token12] = ACTIONS(1785), + [aux_sym_cmd_identifier_token13] = ACTIONS(1785), + [aux_sym_cmd_identifier_token14] = ACTIONS(1785), + [aux_sym_cmd_identifier_token15] = ACTIONS(1785), + [aux_sym_cmd_identifier_token16] = ACTIONS(1785), + [aux_sym_cmd_identifier_token17] = ACTIONS(1785), + [aux_sym_cmd_identifier_token18] = ACTIONS(1785), + [aux_sym_cmd_identifier_token19] = ACTIONS(1785), + [aux_sym_cmd_identifier_token20] = ACTIONS(1785), + [aux_sym_cmd_identifier_token21] = ACTIONS(1785), + [aux_sym_cmd_identifier_token22] = ACTIONS(1785), + [aux_sym_cmd_identifier_token23] = ACTIONS(1785), + [aux_sym_cmd_identifier_token24] = ACTIONS(1785), + [aux_sym_cmd_identifier_token25] = ACTIONS(1785), + [aux_sym_cmd_identifier_token26] = ACTIONS(1785), + [aux_sym_cmd_identifier_token27] = ACTIONS(1785), + [aux_sym_cmd_identifier_token28] = ACTIONS(1785), + [aux_sym_cmd_identifier_token29] = ACTIONS(1785), + [aux_sym_cmd_identifier_token30] = ACTIONS(1785), + [aux_sym_cmd_identifier_token31] = ACTIONS(1785), + [aux_sym_cmd_identifier_token32] = ACTIONS(1785), + [aux_sym_cmd_identifier_token33] = ACTIONS(1785), + [aux_sym_cmd_identifier_token34] = ACTIONS(1785), + [aux_sym_cmd_identifier_token35] = ACTIONS(1785), + [aux_sym_cmd_identifier_token36] = ACTIONS(1785), + [aux_sym_cmd_identifier_token37] = ACTIONS(1785), + [aux_sym_cmd_identifier_token38] = ACTIONS(1785), + [aux_sym_cmd_identifier_token39] = ACTIONS(1785), + [aux_sym_cmd_identifier_token40] = ACTIONS(1785), + [anon_sym_def] = ACTIONS(1785), + [anon_sym_export_DASHenv] = ACTIONS(1785), + [anon_sym_extern] = ACTIONS(1785), + [anon_sym_module] = ACTIONS(1785), + [anon_sym_use] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1785), + [anon_sym_error] = ACTIONS(1785), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_break] = ACTIONS(1785), + [anon_sym_continue] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1785), + [anon_sym_in2] = ACTIONS(1785), + [anon_sym_loop] = ACTIONS(1785), + [anon_sym_make] = ACTIONS(1785), + [anon_sym_while] = ACTIONS(1785), + [anon_sym_do] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1785), + [anon_sym_else] = ACTIONS(1785), + [anon_sym_match] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1785), + [anon_sym_catch] = ACTIONS(1785), + [anon_sym_return] = ACTIONS(1785), + [anon_sym_source] = ACTIONS(1785), + [anon_sym_source_DASHenv] = ACTIONS(1785), + [anon_sym_register] = ACTIONS(1785), + [anon_sym_hide] = ACTIONS(1785), + [anon_sym_hide_DASHenv] = ACTIONS(1785), + [anon_sym_overlay] = ACTIONS(1785), + [anon_sym_as] = ACTIONS(1785), + [anon_sym_PLUS2] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), + [anon_sym_DOT_DOT2] = ACTIONS(1785), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), + [aux_sym__val_number_decimal_token1] = ACTIONS(1785), + [aux_sym__val_number_decimal_token2] = ACTIONS(1785), + [aux_sym__val_number_decimal_token3] = ACTIONS(1785), + [aux_sym__val_number_decimal_token4] = ACTIONS(1785), + [aux_sym__val_number_token1] = ACTIONS(1785), + [aux_sym__val_number_token2] = ACTIONS(1785), + [aux_sym__val_number_token3] = ACTIONS(1785), + [aux_sym__val_number_token4] = ACTIONS(1785), + [aux_sym__val_number_token5] = ACTIONS(1785), + [aux_sym__val_number_token6] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1785), + [sym__str_single_quotes] = ACTIONS(1785), + [sym__str_back_ticks] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), + [sym__entry_separator] = ACTIONS(1787), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1787), + }, + [465] = { + [sym_cell_path] = STATE(743), + [sym_path] = STATE(623), + [sym_comment] = STATE(465), + [aux_sym_cell_path_repeat1] = STATE(532), + [anon_sym_export] = ACTIONS(1915), + [anon_sym_alias] = ACTIONS(1915), + [anon_sym_let] = ACTIONS(1915), + [anon_sym_let_DASHenv] = ACTIONS(1915), + [anon_sym_mut] = ACTIONS(1915), + [anon_sym_const] = ACTIONS(1915), + [aux_sym_cmd_identifier_token1] = ACTIONS(1915), + [aux_sym_cmd_identifier_token2] = ACTIONS(1917), + [aux_sym_cmd_identifier_token3] = ACTIONS(1917), + [aux_sym_cmd_identifier_token4] = ACTIONS(1917), + [aux_sym_cmd_identifier_token5] = ACTIONS(1917), + [aux_sym_cmd_identifier_token6] = ACTIONS(1917), + [aux_sym_cmd_identifier_token7] = ACTIONS(1917), + [aux_sym_cmd_identifier_token8] = ACTIONS(1915), + [aux_sym_cmd_identifier_token9] = ACTIONS(1915), + [aux_sym_cmd_identifier_token10] = ACTIONS(1917), + [aux_sym_cmd_identifier_token11] = ACTIONS(1917), + [aux_sym_cmd_identifier_token12] = ACTIONS(1915), + [aux_sym_cmd_identifier_token13] = ACTIONS(1915), + [aux_sym_cmd_identifier_token14] = ACTIONS(1915), + [aux_sym_cmd_identifier_token15] = ACTIONS(1915), + [aux_sym_cmd_identifier_token16] = ACTIONS(1917), + [aux_sym_cmd_identifier_token17] = ACTIONS(1917), + [aux_sym_cmd_identifier_token18] = ACTIONS(1917), + [aux_sym_cmd_identifier_token19] = ACTIONS(1917), + [aux_sym_cmd_identifier_token20] = ACTIONS(1917), + [aux_sym_cmd_identifier_token21] = ACTIONS(1917), + [aux_sym_cmd_identifier_token22] = ACTIONS(1917), + [aux_sym_cmd_identifier_token23] = ACTIONS(1917), + [aux_sym_cmd_identifier_token24] = ACTIONS(1917), + [aux_sym_cmd_identifier_token25] = ACTIONS(1917), + [aux_sym_cmd_identifier_token26] = ACTIONS(1917), + [aux_sym_cmd_identifier_token27] = ACTIONS(1917), + [aux_sym_cmd_identifier_token28] = ACTIONS(1917), + [aux_sym_cmd_identifier_token29] = ACTIONS(1917), + [aux_sym_cmd_identifier_token30] = ACTIONS(1917), + [aux_sym_cmd_identifier_token31] = ACTIONS(1917), + [aux_sym_cmd_identifier_token32] = ACTIONS(1917), + [aux_sym_cmd_identifier_token33] = ACTIONS(1917), + [aux_sym_cmd_identifier_token34] = ACTIONS(1915), + [aux_sym_cmd_identifier_token35] = ACTIONS(1917), + [aux_sym_cmd_identifier_token36] = ACTIONS(1917), + [aux_sym_cmd_identifier_token37] = ACTIONS(1917), + [aux_sym_cmd_identifier_token38] = ACTIONS(1915), + [aux_sym_cmd_identifier_token39] = ACTIONS(1917), + [aux_sym_cmd_identifier_token40] = ACTIONS(1917), + [anon_sym_def] = ACTIONS(1915), + [anon_sym_export_DASHenv] = ACTIONS(1915), + [anon_sym_extern] = ACTIONS(1915), + [anon_sym_module] = ACTIONS(1915), + [anon_sym_use] = ACTIONS(1915), + [anon_sym_LPAREN] = ACTIONS(1917), + [anon_sym_DOLLAR] = ACTIONS(1917), + [anon_sym_error] = ACTIONS(1915), + [anon_sym_DASH2] = ACTIONS(1915), + [anon_sym_break] = ACTIONS(1915), + [anon_sym_continue] = ACTIONS(1915), + [anon_sym_for] = ACTIONS(1915), + [anon_sym_in2] = ACTIONS(1915), + [anon_sym_loop] = ACTIONS(1915), + [anon_sym_make] = ACTIONS(1915), + [anon_sym_while] = ACTIONS(1915), + [anon_sym_do] = ACTIONS(1915), + [anon_sym_if] = ACTIONS(1915), + [anon_sym_else] = ACTIONS(1915), + [anon_sym_match] = ACTIONS(1915), + [anon_sym_RBRACE] = ACTIONS(1917), + [anon_sym_try] = ACTIONS(1915), + [anon_sym_catch] = ACTIONS(1915), + [anon_sym_return] = ACTIONS(1915), + [anon_sym_source] = ACTIONS(1915), + [anon_sym_source_DASHenv] = ACTIONS(1915), + [anon_sym_register] = ACTIONS(1915), + [anon_sym_hide] = ACTIONS(1915), + [anon_sym_hide_DASHenv] = ACTIONS(1915), + [anon_sym_overlay] = ACTIONS(1915), + [anon_sym_as] = ACTIONS(1915), + [anon_sym_PLUS2] = ACTIONS(1915), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1917), + [anon_sym_DOT] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1917), + [aux_sym__val_number_decimal_token1] = ACTIONS(1915), + [aux_sym__val_number_decimal_token2] = ACTIONS(1917), + [aux_sym__val_number_decimal_token3] = ACTIONS(1917), + [aux_sym__val_number_decimal_token4] = ACTIONS(1917), + [aux_sym__val_number_token1] = ACTIONS(1917), + [aux_sym__val_number_token2] = ACTIONS(1917), + [aux_sym__val_number_token3] = ACTIONS(1917), + [aux_sym__val_number_token4] = ACTIONS(1915), + [aux_sym__val_number_token5] = ACTIONS(1915), + [aux_sym__val_number_token6] = ACTIONS(1915), + [anon_sym_DQUOTE] = ACTIONS(1917), + [sym__str_single_quotes] = ACTIONS(1917), + [sym__str_back_ticks] = ACTIONS(1917), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1917), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1917), + }, + [466] = { + [sym_comment] = STATE(466), + [anon_sym_export] = ACTIONS(1765), + [anon_sym_alias] = ACTIONS(1765), + [anon_sym_let] = ACTIONS(1765), + [anon_sym_let_DASHenv] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [aux_sym_cmd_identifier_token1] = ACTIONS(1765), + [aux_sym_cmd_identifier_token2] = ACTIONS(1767), + [aux_sym_cmd_identifier_token3] = ACTIONS(1767), + [aux_sym_cmd_identifier_token4] = ACTIONS(1767), + [aux_sym_cmd_identifier_token5] = ACTIONS(1767), + [aux_sym_cmd_identifier_token6] = ACTIONS(1767), + [aux_sym_cmd_identifier_token7] = ACTIONS(1767), + [aux_sym_cmd_identifier_token8] = ACTIONS(1765), + [aux_sym_cmd_identifier_token9] = ACTIONS(1765), + [aux_sym_cmd_identifier_token10] = ACTIONS(1767), + [aux_sym_cmd_identifier_token11] = ACTIONS(1767), + [aux_sym_cmd_identifier_token12] = ACTIONS(1765), + [aux_sym_cmd_identifier_token13] = ACTIONS(1765), + [aux_sym_cmd_identifier_token14] = ACTIONS(1765), + [aux_sym_cmd_identifier_token15] = ACTIONS(1765), + [aux_sym_cmd_identifier_token16] = ACTIONS(1767), + [aux_sym_cmd_identifier_token17] = ACTIONS(1767), + [aux_sym_cmd_identifier_token18] = ACTIONS(1767), + [aux_sym_cmd_identifier_token19] = ACTIONS(1767), + [aux_sym_cmd_identifier_token20] = ACTIONS(1767), + [aux_sym_cmd_identifier_token21] = ACTIONS(1767), + [aux_sym_cmd_identifier_token22] = ACTIONS(1767), + [aux_sym_cmd_identifier_token23] = ACTIONS(1767), + [aux_sym_cmd_identifier_token24] = ACTIONS(1767), + [aux_sym_cmd_identifier_token25] = ACTIONS(1767), + [aux_sym_cmd_identifier_token26] = ACTIONS(1767), + [aux_sym_cmd_identifier_token27] = ACTIONS(1767), + [aux_sym_cmd_identifier_token28] = ACTIONS(1767), + [aux_sym_cmd_identifier_token29] = ACTIONS(1767), + [aux_sym_cmd_identifier_token30] = ACTIONS(1767), + [aux_sym_cmd_identifier_token31] = ACTIONS(1767), + [aux_sym_cmd_identifier_token32] = ACTIONS(1767), + [aux_sym_cmd_identifier_token33] = ACTIONS(1767), + [aux_sym_cmd_identifier_token34] = ACTIONS(1765), + [aux_sym_cmd_identifier_token35] = ACTIONS(1767), + [aux_sym_cmd_identifier_token36] = ACTIONS(1767), + [aux_sym_cmd_identifier_token37] = ACTIONS(1767), + [aux_sym_cmd_identifier_token38] = ACTIONS(1765), + [aux_sym_cmd_identifier_token39] = ACTIONS(1767), + [aux_sym_cmd_identifier_token40] = ACTIONS(1767), + [anon_sym_def] = ACTIONS(1765), + [anon_sym_export_DASHenv] = ACTIONS(1765), + [anon_sym_extern] = ACTIONS(1765), + [anon_sym_module] = ACTIONS(1765), + [anon_sym_use] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_DOLLAR] = ACTIONS(1767), + [anon_sym_error] = ACTIONS(1765), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_in2] = ACTIONS(1765), + [anon_sym_loop] = ACTIONS(1765), + [anon_sym_make] = ACTIONS(1765), + [anon_sym_while] = ACTIONS(1765), + [anon_sym_do] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_else] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_try] = ACTIONS(1765), + [anon_sym_catch] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_source] = ACTIONS(1765), + [anon_sym_source_DASHenv] = ACTIONS(1765), + [anon_sym_register] = ACTIONS(1765), + [anon_sym_hide] = ACTIONS(1765), + [anon_sym_hide_DASHenv] = ACTIONS(1765), + [anon_sym_overlay] = ACTIONS(1765), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1767), + [anon_sym_PLUS2] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), + [anon_sym_DOT] = ACTIONS(2058), + [aux_sym__immediate_decimal_token2] = ACTIONS(2060), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1765), + [aux_sym__val_number_token5] = ACTIONS(1765), + [aux_sym__val_number_token6] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1767), + }, + [467] = { + [sym_cell_path] = STATE(744), + [sym_path] = STATE(623), + [sym_comment] = STATE(467), + [aux_sym_cell_path_repeat1] = STATE(532), + [anon_sym_export] = ACTIONS(1919), + [anon_sym_alias] = ACTIONS(1919), + [anon_sym_let] = ACTIONS(1919), + [anon_sym_let_DASHenv] = ACTIONS(1919), + [anon_sym_mut] = ACTIONS(1919), + [anon_sym_const] = ACTIONS(1919), + [aux_sym_cmd_identifier_token1] = ACTIONS(1919), + [aux_sym_cmd_identifier_token2] = ACTIONS(1921), + [aux_sym_cmd_identifier_token3] = ACTIONS(1921), + [aux_sym_cmd_identifier_token4] = ACTIONS(1921), + [aux_sym_cmd_identifier_token5] = ACTIONS(1921), + [aux_sym_cmd_identifier_token6] = ACTIONS(1921), + [aux_sym_cmd_identifier_token7] = ACTIONS(1921), + [aux_sym_cmd_identifier_token8] = ACTIONS(1919), + [aux_sym_cmd_identifier_token9] = ACTIONS(1919), + [aux_sym_cmd_identifier_token10] = ACTIONS(1921), + [aux_sym_cmd_identifier_token11] = ACTIONS(1921), + [aux_sym_cmd_identifier_token12] = ACTIONS(1919), + [aux_sym_cmd_identifier_token13] = ACTIONS(1919), + [aux_sym_cmd_identifier_token14] = ACTIONS(1919), + [aux_sym_cmd_identifier_token15] = ACTIONS(1919), + [aux_sym_cmd_identifier_token16] = ACTIONS(1921), + [aux_sym_cmd_identifier_token17] = ACTIONS(1921), + [aux_sym_cmd_identifier_token18] = ACTIONS(1921), + [aux_sym_cmd_identifier_token19] = ACTIONS(1921), + [aux_sym_cmd_identifier_token20] = ACTIONS(1921), + [aux_sym_cmd_identifier_token21] = ACTIONS(1921), + [aux_sym_cmd_identifier_token22] = ACTIONS(1921), + [aux_sym_cmd_identifier_token23] = ACTIONS(1921), + [aux_sym_cmd_identifier_token24] = ACTIONS(1921), + [aux_sym_cmd_identifier_token25] = ACTIONS(1921), + [aux_sym_cmd_identifier_token26] = ACTIONS(1921), + [aux_sym_cmd_identifier_token27] = ACTIONS(1921), + [aux_sym_cmd_identifier_token28] = ACTIONS(1921), + [aux_sym_cmd_identifier_token29] = ACTIONS(1921), + [aux_sym_cmd_identifier_token30] = ACTIONS(1921), + [aux_sym_cmd_identifier_token31] = ACTIONS(1921), + [aux_sym_cmd_identifier_token32] = ACTIONS(1921), + [aux_sym_cmd_identifier_token33] = ACTIONS(1921), + [aux_sym_cmd_identifier_token34] = ACTIONS(1919), + [aux_sym_cmd_identifier_token35] = ACTIONS(1921), + [aux_sym_cmd_identifier_token36] = ACTIONS(1921), + [aux_sym_cmd_identifier_token37] = ACTIONS(1921), + [aux_sym_cmd_identifier_token38] = ACTIONS(1919), + [aux_sym_cmd_identifier_token39] = ACTIONS(1921), + [aux_sym_cmd_identifier_token40] = ACTIONS(1921), + [anon_sym_def] = ACTIONS(1919), + [anon_sym_export_DASHenv] = ACTIONS(1919), + [anon_sym_extern] = ACTIONS(1919), + [anon_sym_module] = ACTIONS(1919), + [anon_sym_use] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1921), + [anon_sym_error] = ACTIONS(1919), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_break] = ACTIONS(1919), + [anon_sym_continue] = ACTIONS(1919), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_in2] = ACTIONS(1919), + [anon_sym_loop] = ACTIONS(1919), + [anon_sym_make] = ACTIONS(1919), + [anon_sym_while] = ACTIONS(1919), + [anon_sym_do] = ACTIONS(1919), + [anon_sym_if] = ACTIONS(1919), + [anon_sym_else] = ACTIONS(1919), + [anon_sym_match] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1921), + [anon_sym_try] = ACTIONS(1919), + [anon_sym_catch] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1919), + [anon_sym_source] = ACTIONS(1919), + [anon_sym_source_DASHenv] = ACTIONS(1919), + [anon_sym_register] = ACTIONS(1919), + [anon_sym_hide] = ACTIONS(1919), + [anon_sym_hide_DASHenv] = ACTIONS(1919), + [anon_sym_overlay] = ACTIONS(1919), + [anon_sym_as] = ACTIONS(1919), + [anon_sym_PLUS2] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1921), + [anon_sym_DOT] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1921), + [aux_sym__val_number_decimal_token1] = ACTIONS(1919), + [aux_sym__val_number_decimal_token2] = ACTIONS(1921), + [aux_sym__val_number_decimal_token3] = ACTIONS(1921), + [aux_sym__val_number_decimal_token4] = ACTIONS(1921), + [aux_sym__val_number_token1] = ACTIONS(1921), + [aux_sym__val_number_token2] = ACTIONS(1921), + [aux_sym__val_number_token3] = ACTIONS(1921), + [aux_sym__val_number_token4] = ACTIONS(1919), + [aux_sym__val_number_token5] = ACTIONS(1919), + [aux_sym__val_number_token6] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1921), + [sym__str_single_quotes] = ACTIONS(1921), + [sym__str_back_ticks] = ACTIONS(1921), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1921), + }, + [468] = { + [sym_cell_path] = STATE(745), + [sym_path] = STATE(623), + [sym_comment] = STATE(468), + [aux_sym_cell_path_repeat1] = STATE(532), + [anon_sym_export] = ACTIONS(1927), + [anon_sym_alias] = ACTIONS(1927), + [anon_sym_let] = ACTIONS(1927), + [anon_sym_let_DASHenv] = ACTIONS(1927), + [anon_sym_mut] = ACTIONS(1927), + [anon_sym_const] = ACTIONS(1927), + [aux_sym_cmd_identifier_token1] = ACTIONS(1927), + [aux_sym_cmd_identifier_token2] = ACTIONS(1929), + [aux_sym_cmd_identifier_token3] = ACTIONS(1929), + [aux_sym_cmd_identifier_token4] = ACTIONS(1929), + [aux_sym_cmd_identifier_token5] = ACTIONS(1929), + [aux_sym_cmd_identifier_token6] = ACTIONS(1929), + [aux_sym_cmd_identifier_token7] = ACTIONS(1929), + [aux_sym_cmd_identifier_token8] = ACTIONS(1927), + [aux_sym_cmd_identifier_token9] = ACTIONS(1927), + [aux_sym_cmd_identifier_token10] = ACTIONS(1929), + [aux_sym_cmd_identifier_token11] = ACTIONS(1929), + [aux_sym_cmd_identifier_token12] = ACTIONS(1927), + [aux_sym_cmd_identifier_token13] = ACTIONS(1927), + [aux_sym_cmd_identifier_token14] = ACTIONS(1927), + [aux_sym_cmd_identifier_token15] = ACTIONS(1927), + [aux_sym_cmd_identifier_token16] = ACTIONS(1929), + [aux_sym_cmd_identifier_token17] = ACTIONS(1929), + [aux_sym_cmd_identifier_token18] = ACTIONS(1929), + [aux_sym_cmd_identifier_token19] = ACTIONS(1929), + [aux_sym_cmd_identifier_token20] = ACTIONS(1929), + [aux_sym_cmd_identifier_token21] = ACTIONS(1929), + [aux_sym_cmd_identifier_token22] = ACTIONS(1929), + [aux_sym_cmd_identifier_token23] = ACTIONS(1929), + [aux_sym_cmd_identifier_token24] = ACTIONS(1929), + [aux_sym_cmd_identifier_token25] = ACTIONS(1929), + [aux_sym_cmd_identifier_token26] = ACTIONS(1929), + [aux_sym_cmd_identifier_token27] = ACTIONS(1929), + [aux_sym_cmd_identifier_token28] = ACTIONS(1929), + [aux_sym_cmd_identifier_token29] = ACTIONS(1929), + [aux_sym_cmd_identifier_token30] = ACTIONS(1929), + [aux_sym_cmd_identifier_token31] = ACTIONS(1929), + [aux_sym_cmd_identifier_token32] = ACTIONS(1929), + [aux_sym_cmd_identifier_token33] = ACTIONS(1929), + [aux_sym_cmd_identifier_token34] = ACTIONS(1927), + [aux_sym_cmd_identifier_token35] = ACTIONS(1929), + [aux_sym_cmd_identifier_token36] = ACTIONS(1929), + [aux_sym_cmd_identifier_token37] = ACTIONS(1929), + [aux_sym_cmd_identifier_token38] = ACTIONS(1927), + [aux_sym_cmd_identifier_token39] = ACTIONS(1929), + [aux_sym_cmd_identifier_token40] = ACTIONS(1929), + [anon_sym_def] = ACTIONS(1927), + [anon_sym_export_DASHenv] = ACTIONS(1927), + [anon_sym_extern] = ACTIONS(1927), + [anon_sym_module] = ACTIONS(1927), + [anon_sym_use] = ACTIONS(1927), + [anon_sym_LPAREN] = ACTIONS(1929), + [anon_sym_DOLLAR] = ACTIONS(1929), + [anon_sym_error] = ACTIONS(1927), + [anon_sym_DASH2] = ACTIONS(1927), + [anon_sym_break] = ACTIONS(1927), + [anon_sym_continue] = ACTIONS(1927), + [anon_sym_for] = ACTIONS(1927), + [anon_sym_in2] = ACTIONS(1927), + [anon_sym_loop] = ACTIONS(1927), + [anon_sym_make] = ACTIONS(1927), + [anon_sym_while] = ACTIONS(1927), + [anon_sym_do] = ACTIONS(1927), + [anon_sym_if] = ACTIONS(1927), + [anon_sym_else] = ACTIONS(1927), + [anon_sym_match] = ACTIONS(1927), + [anon_sym_RBRACE] = ACTIONS(1929), + [anon_sym_try] = ACTIONS(1927), + [anon_sym_catch] = ACTIONS(1927), + [anon_sym_return] = ACTIONS(1927), + [anon_sym_source] = ACTIONS(1927), + [anon_sym_source_DASHenv] = ACTIONS(1927), + [anon_sym_register] = ACTIONS(1927), + [anon_sym_hide] = ACTIONS(1927), + [anon_sym_hide_DASHenv] = ACTIONS(1927), + [anon_sym_overlay] = ACTIONS(1927), + [anon_sym_as] = ACTIONS(1927), + [anon_sym_PLUS2] = ACTIONS(1927), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1929), + [anon_sym_DOT] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1929), + [aux_sym__val_number_decimal_token1] = ACTIONS(1927), + [aux_sym__val_number_decimal_token2] = ACTIONS(1929), + [aux_sym__val_number_decimal_token3] = ACTIONS(1929), + [aux_sym__val_number_decimal_token4] = ACTIONS(1929), + [aux_sym__val_number_token1] = ACTIONS(1929), + [aux_sym__val_number_token2] = ACTIONS(1929), + [aux_sym__val_number_token3] = ACTIONS(1929), + [aux_sym__val_number_token4] = ACTIONS(1927), + [aux_sym__val_number_token5] = ACTIONS(1927), + [aux_sym__val_number_token6] = ACTIONS(1927), + [anon_sym_DQUOTE] = ACTIONS(1929), + [sym__str_single_quotes] = ACTIONS(1929), + [sym__str_back_ticks] = ACTIONS(1929), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1929), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1929), + }, + [469] = { + [sym_cell_path] = STATE(695), + [sym_path] = STATE(623), + [sym_comment] = STATE(469), + [aux_sym_cell_path_repeat1] = STATE(532), + [anon_sym_export] = ACTIONS(1942), + [anon_sym_alias] = ACTIONS(1942), + [anon_sym_let] = ACTIONS(1942), + [anon_sym_let_DASHenv] = ACTIONS(1942), + [anon_sym_mut] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1942), + [aux_sym_cmd_identifier_token1] = ACTIONS(1942), + [aux_sym_cmd_identifier_token2] = ACTIONS(1944), + [aux_sym_cmd_identifier_token3] = ACTIONS(1944), + [aux_sym_cmd_identifier_token4] = ACTIONS(1944), + [aux_sym_cmd_identifier_token5] = ACTIONS(1944), + [aux_sym_cmd_identifier_token6] = ACTIONS(1944), + [aux_sym_cmd_identifier_token7] = ACTIONS(1944), + [aux_sym_cmd_identifier_token8] = ACTIONS(1942), + [aux_sym_cmd_identifier_token9] = ACTIONS(1942), + [aux_sym_cmd_identifier_token10] = ACTIONS(1944), + [aux_sym_cmd_identifier_token11] = ACTIONS(1944), + [aux_sym_cmd_identifier_token12] = ACTIONS(1942), + [aux_sym_cmd_identifier_token13] = ACTIONS(1942), + [aux_sym_cmd_identifier_token14] = ACTIONS(1942), + [aux_sym_cmd_identifier_token15] = ACTIONS(1942), + [aux_sym_cmd_identifier_token16] = ACTIONS(1944), + [aux_sym_cmd_identifier_token17] = ACTIONS(1944), + [aux_sym_cmd_identifier_token18] = ACTIONS(1944), + [aux_sym_cmd_identifier_token19] = ACTIONS(1944), + [aux_sym_cmd_identifier_token20] = ACTIONS(1944), + [aux_sym_cmd_identifier_token21] = ACTIONS(1944), + [aux_sym_cmd_identifier_token22] = ACTIONS(1944), + [aux_sym_cmd_identifier_token23] = ACTIONS(1944), + [aux_sym_cmd_identifier_token24] = ACTIONS(1944), + [aux_sym_cmd_identifier_token25] = ACTIONS(1944), + [aux_sym_cmd_identifier_token26] = ACTIONS(1944), + [aux_sym_cmd_identifier_token27] = ACTIONS(1944), + [aux_sym_cmd_identifier_token28] = ACTIONS(1944), + [aux_sym_cmd_identifier_token29] = ACTIONS(1944), + [aux_sym_cmd_identifier_token30] = ACTIONS(1944), + [aux_sym_cmd_identifier_token31] = ACTIONS(1944), + [aux_sym_cmd_identifier_token32] = ACTIONS(1944), + [aux_sym_cmd_identifier_token33] = ACTIONS(1944), + [aux_sym_cmd_identifier_token34] = ACTIONS(1942), + [aux_sym_cmd_identifier_token35] = ACTIONS(1944), + [aux_sym_cmd_identifier_token36] = ACTIONS(1944), + [aux_sym_cmd_identifier_token37] = ACTIONS(1944), + [aux_sym_cmd_identifier_token38] = ACTIONS(1942), + [aux_sym_cmd_identifier_token39] = ACTIONS(1944), + [aux_sym_cmd_identifier_token40] = ACTIONS(1944), + [anon_sym_def] = ACTIONS(1942), + [anon_sym_export_DASHenv] = ACTIONS(1942), + [anon_sym_extern] = ACTIONS(1942), + [anon_sym_module] = ACTIONS(1942), + [anon_sym_use] = ACTIONS(1942), + [anon_sym_LPAREN] = ACTIONS(1944), + [anon_sym_DOLLAR] = ACTIONS(1944), + [anon_sym_error] = ACTIONS(1942), + [anon_sym_DASH2] = ACTIONS(1942), + [anon_sym_break] = ACTIONS(1942), + [anon_sym_continue] = ACTIONS(1942), + [anon_sym_for] = ACTIONS(1942), + [anon_sym_in2] = ACTIONS(1942), + [anon_sym_loop] = ACTIONS(1942), + [anon_sym_make] = ACTIONS(1942), + [anon_sym_while] = ACTIONS(1942), + [anon_sym_do] = ACTIONS(1942), + [anon_sym_if] = ACTIONS(1942), + [anon_sym_else] = ACTIONS(1942), + [anon_sym_match] = ACTIONS(1942), + [anon_sym_RBRACE] = ACTIONS(1944), + [anon_sym_try] = ACTIONS(1942), + [anon_sym_catch] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1942), + [anon_sym_source] = ACTIONS(1942), + [anon_sym_source_DASHenv] = ACTIONS(1942), + [anon_sym_register] = ACTIONS(1942), + [anon_sym_hide] = ACTIONS(1942), + [anon_sym_hide_DASHenv] = ACTIONS(1942), + [anon_sym_overlay] = ACTIONS(1942), + [anon_sym_as] = ACTIONS(1942), + [anon_sym_PLUS2] = ACTIONS(1942), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1944), + [anon_sym_DOT] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1944), + [aux_sym__val_number_decimal_token1] = ACTIONS(1942), + [aux_sym__val_number_decimal_token2] = ACTIONS(1944), + [aux_sym__val_number_decimal_token3] = ACTIONS(1944), + [aux_sym__val_number_decimal_token4] = ACTIONS(1944), + [aux_sym__val_number_token1] = ACTIONS(1944), + [aux_sym__val_number_token2] = ACTIONS(1944), + [aux_sym__val_number_token3] = ACTIONS(1944), + [aux_sym__val_number_token4] = ACTIONS(1942), + [aux_sym__val_number_token5] = ACTIONS(1942), + [aux_sym__val_number_token6] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1944), + [sym__str_single_quotes] = ACTIONS(1944), + [sym__str_back_ticks] = ACTIONS(1944), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1944), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1944), + }, + [470] = { + [sym_cell_path] = STATE(746), + [sym_path] = STATE(623), + [sym_comment] = STATE(470), + [aux_sym_cell_path_repeat1] = STATE(532), + [anon_sym_export] = ACTIONS(2026), + [anon_sym_alias] = ACTIONS(2026), + [anon_sym_let] = ACTIONS(2026), + [anon_sym_let_DASHenv] = ACTIONS(2026), + [anon_sym_mut] = ACTIONS(2026), + [anon_sym_const] = ACTIONS(2026), + [aux_sym_cmd_identifier_token1] = ACTIONS(2026), + [aux_sym_cmd_identifier_token2] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2028), + [aux_sym_cmd_identifier_token4] = ACTIONS(2028), + [aux_sym_cmd_identifier_token5] = ACTIONS(2028), + [aux_sym_cmd_identifier_token6] = ACTIONS(2028), + [aux_sym_cmd_identifier_token7] = ACTIONS(2028), + [aux_sym_cmd_identifier_token8] = ACTIONS(2026), + [aux_sym_cmd_identifier_token9] = ACTIONS(2026), + [aux_sym_cmd_identifier_token10] = ACTIONS(2028), + [aux_sym_cmd_identifier_token11] = ACTIONS(2028), + [aux_sym_cmd_identifier_token12] = ACTIONS(2026), + [aux_sym_cmd_identifier_token13] = ACTIONS(2026), + [aux_sym_cmd_identifier_token14] = ACTIONS(2026), + [aux_sym_cmd_identifier_token15] = ACTIONS(2026), + [aux_sym_cmd_identifier_token16] = ACTIONS(2028), + [aux_sym_cmd_identifier_token17] = ACTIONS(2028), + [aux_sym_cmd_identifier_token18] = ACTIONS(2028), + [aux_sym_cmd_identifier_token19] = ACTIONS(2028), + [aux_sym_cmd_identifier_token20] = ACTIONS(2028), + [aux_sym_cmd_identifier_token21] = ACTIONS(2028), + [aux_sym_cmd_identifier_token22] = ACTIONS(2028), + [aux_sym_cmd_identifier_token23] = ACTIONS(2028), + [aux_sym_cmd_identifier_token24] = ACTIONS(2028), + [aux_sym_cmd_identifier_token25] = ACTIONS(2028), + [aux_sym_cmd_identifier_token26] = ACTIONS(2028), + [aux_sym_cmd_identifier_token27] = ACTIONS(2028), + [aux_sym_cmd_identifier_token28] = ACTIONS(2028), + [aux_sym_cmd_identifier_token29] = ACTIONS(2028), + [aux_sym_cmd_identifier_token30] = ACTIONS(2028), + [aux_sym_cmd_identifier_token31] = ACTIONS(2028), + [aux_sym_cmd_identifier_token32] = ACTIONS(2028), + [aux_sym_cmd_identifier_token33] = ACTIONS(2028), + [aux_sym_cmd_identifier_token34] = ACTIONS(2026), + [aux_sym_cmd_identifier_token35] = ACTIONS(2028), + [aux_sym_cmd_identifier_token36] = ACTIONS(2028), + [aux_sym_cmd_identifier_token37] = ACTIONS(2028), + [aux_sym_cmd_identifier_token38] = ACTIONS(2026), + [aux_sym_cmd_identifier_token39] = ACTIONS(2028), + [aux_sym_cmd_identifier_token40] = ACTIONS(2028), + [anon_sym_def] = ACTIONS(2026), + [anon_sym_export_DASHenv] = ACTIONS(2026), + [anon_sym_extern] = ACTIONS(2026), + [anon_sym_module] = ACTIONS(2026), + [anon_sym_use] = ACTIONS(2026), + [anon_sym_LPAREN] = ACTIONS(2028), + [anon_sym_DOLLAR] = ACTIONS(2028), + [anon_sym_error] = ACTIONS(2026), + [anon_sym_DASH2] = ACTIONS(2026), + [anon_sym_break] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(2026), + [anon_sym_for] = ACTIONS(2026), + [anon_sym_in2] = ACTIONS(2026), + [anon_sym_loop] = ACTIONS(2026), + [anon_sym_make] = ACTIONS(2026), + [anon_sym_while] = ACTIONS(2026), + [anon_sym_do] = ACTIONS(2026), + [anon_sym_if] = ACTIONS(2026), + [anon_sym_else] = ACTIONS(2026), + [anon_sym_match] = ACTIONS(2026), + [anon_sym_RBRACE] = ACTIONS(2028), + [anon_sym_try] = ACTIONS(2026), + [anon_sym_catch] = ACTIONS(2026), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_source] = ACTIONS(2026), + [anon_sym_source_DASHenv] = ACTIONS(2026), + [anon_sym_register] = ACTIONS(2026), + [anon_sym_hide] = ACTIONS(2026), + [anon_sym_hide_DASHenv] = ACTIONS(2026), + [anon_sym_overlay] = ACTIONS(2026), + [anon_sym_as] = ACTIONS(2026), + [anon_sym_PLUS2] = ACTIONS(2026), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2028), + [anon_sym_DOT] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2028), + [aux_sym__val_number_decimal_token1] = ACTIONS(2026), + [aux_sym__val_number_decimal_token2] = ACTIONS(2028), + [aux_sym__val_number_decimal_token3] = ACTIONS(2028), + [aux_sym__val_number_decimal_token4] = ACTIONS(2028), + [aux_sym__val_number_token1] = ACTIONS(2028), + [aux_sym__val_number_token2] = ACTIONS(2028), + [aux_sym__val_number_token3] = ACTIONS(2028), + [aux_sym__val_number_token4] = ACTIONS(2026), + [aux_sym__val_number_token5] = ACTIONS(2026), + [aux_sym__val_number_token6] = ACTIONS(2026), + [anon_sym_DQUOTE] = ACTIONS(2028), + [sym__str_single_quotes] = ACTIONS(2028), + [sym__str_back_ticks] = ACTIONS(2028), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2028), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2028), + }, + [471] = { + [sym_cell_path] = STATE(747), + [sym_path] = STATE(623), + [sym_comment] = STATE(471), + [aux_sym_cell_path_repeat1] = STATE(532), + [anon_sym_export] = ACTIONS(2030), + [anon_sym_alias] = ACTIONS(2030), + [anon_sym_let] = ACTIONS(2030), + [anon_sym_let_DASHenv] = ACTIONS(2030), + [anon_sym_mut] = ACTIONS(2030), + [anon_sym_const] = ACTIONS(2030), + [aux_sym_cmd_identifier_token1] = ACTIONS(2030), + [aux_sym_cmd_identifier_token2] = ACTIONS(2032), + [aux_sym_cmd_identifier_token3] = ACTIONS(2032), + [aux_sym_cmd_identifier_token4] = ACTIONS(2032), + [aux_sym_cmd_identifier_token5] = ACTIONS(2032), + [aux_sym_cmd_identifier_token6] = ACTIONS(2032), + [aux_sym_cmd_identifier_token7] = ACTIONS(2032), + [aux_sym_cmd_identifier_token8] = ACTIONS(2030), + [aux_sym_cmd_identifier_token9] = ACTIONS(2030), + [aux_sym_cmd_identifier_token10] = ACTIONS(2032), + [aux_sym_cmd_identifier_token11] = ACTIONS(2032), + [aux_sym_cmd_identifier_token12] = ACTIONS(2030), + [aux_sym_cmd_identifier_token13] = ACTIONS(2030), + [aux_sym_cmd_identifier_token14] = ACTIONS(2030), + [aux_sym_cmd_identifier_token15] = ACTIONS(2030), + [aux_sym_cmd_identifier_token16] = ACTIONS(2032), + [aux_sym_cmd_identifier_token17] = ACTIONS(2032), + [aux_sym_cmd_identifier_token18] = ACTIONS(2032), + [aux_sym_cmd_identifier_token19] = ACTIONS(2032), + [aux_sym_cmd_identifier_token20] = ACTIONS(2032), + [aux_sym_cmd_identifier_token21] = ACTIONS(2032), + [aux_sym_cmd_identifier_token22] = ACTIONS(2032), + [aux_sym_cmd_identifier_token23] = ACTIONS(2032), + [aux_sym_cmd_identifier_token24] = ACTIONS(2032), + [aux_sym_cmd_identifier_token25] = ACTIONS(2032), + [aux_sym_cmd_identifier_token26] = ACTIONS(2032), + [aux_sym_cmd_identifier_token27] = ACTIONS(2032), + [aux_sym_cmd_identifier_token28] = ACTIONS(2032), + [aux_sym_cmd_identifier_token29] = ACTIONS(2032), + [aux_sym_cmd_identifier_token30] = ACTIONS(2032), + [aux_sym_cmd_identifier_token31] = ACTIONS(2032), + [aux_sym_cmd_identifier_token32] = ACTIONS(2032), + [aux_sym_cmd_identifier_token33] = ACTIONS(2032), + [aux_sym_cmd_identifier_token34] = ACTIONS(2030), + [aux_sym_cmd_identifier_token35] = ACTIONS(2032), + [aux_sym_cmd_identifier_token36] = ACTIONS(2032), + [aux_sym_cmd_identifier_token37] = ACTIONS(2032), + [aux_sym_cmd_identifier_token38] = ACTIONS(2030), + [aux_sym_cmd_identifier_token39] = ACTIONS(2032), + [aux_sym_cmd_identifier_token40] = ACTIONS(2032), + [anon_sym_def] = ACTIONS(2030), + [anon_sym_export_DASHenv] = ACTIONS(2030), + [anon_sym_extern] = ACTIONS(2030), + [anon_sym_module] = ACTIONS(2030), + [anon_sym_use] = ACTIONS(2030), + [anon_sym_LPAREN] = ACTIONS(2032), + [anon_sym_DOLLAR] = ACTIONS(2032), + [anon_sym_error] = ACTIONS(2030), + [anon_sym_DASH2] = ACTIONS(2030), + [anon_sym_break] = ACTIONS(2030), + [anon_sym_continue] = ACTIONS(2030), + [anon_sym_for] = ACTIONS(2030), + [anon_sym_in2] = ACTIONS(2030), + [anon_sym_loop] = ACTIONS(2030), + [anon_sym_make] = ACTIONS(2030), + [anon_sym_while] = ACTIONS(2030), + [anon_sym_do] = ACTIONS(2030), + [anon_sym_if] = ACTIONS(2030), + [anon_sym_else] = ACTIONS(2030), + [anon_sym_match] = ACTIONS(2030), + [anon_sym_RBRACE] = ACTIONS(2032), + [anon_sym_try] = ACTIONS(2030), + [anon_sym_catch] = ACTIONS(2030), + [anon_sym_return] = ACTIONS(2030), + [anon_sym_source] = ACTIONS(2030), + [anon_sym_source_DASHenv] = ACTIONS(2030), + [anon_sym_register] = ACTIONS(2030), + [anon_sym_hide] = ACTIONS(2030), + [anon_sym_hide_DASHenv] = ACTIONS(2030), + [anon_sym_overlay] = ACTIONS(2030), + [anon_sym_as] = ACTIONS(2030), + [anon_sym_PLUS2] = ACTIONS(2030), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2032), + [anon_sym_DOT] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2032), + [aux_sym__val_number_decimal_token1] = ACTIONS(2030), + [aux_sym__val_number_decimal_token2] = ACTIONS(2032), + [aux_sym__val_number_decimal_token3] = ACTIONS(2032), + [aux_sym__val_number_decimal_token4] = ACTIONS(2032), + [aux_sym__val_number_token1] = ACTIONS(2032), + [aux_sym__val_number_token2] = ACTIONS(2032), + [aux_sym__val_number_token3] = ACTIONS(2032), + [aux_sym__val_number_token4] = ACTIONS(2030), + [aux_sym__val_number_token5] = ACTIONS(2030), + [aux_sym__val_number_token6] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2032), + [sym__str_single_quotes] = ACTIONS(2032), + [sym__str_back_ticks] = ACTIONS(2032), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2032), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2032), + }, + [472] = { + [sym_expr_parenthesized] = STATE(4421), + [sym__spread_parenthesized] = STATE(4819), + [sym_val_range] = STATE(4821), + [sym__val_range] = STATE(7779), + [sym__val_range_with_end] = STATE(7534), + [sym__value] = STATE(4821), + [sym_val_nothing] = STATE(4888), + [sym_val_bool] = STATE(4601), + [sym__spread_variable] = STATE(4823), + [sym_val_variable] = STATE(4336), + [sym_val_number] = STATE(4888), + [sym__val_number_decimal] = STATE(4073), + [sym__val_number] = STATE(4852), + [sym_val_duration] = STATE(4888), + [sym_val_filesize] = STATE(4888), + [sym_val_binary] = STATE(4888), + [sym_val_string] = STATE(4888), + [sym__raw_str] = STATE(4528), + [sym__str_double_quotes] = STATE(4528), + [sym_val_interpolated] = STATE(4888), + [sym__inter_single_quotes] = STATE(4891), + [sym__inter_double_quotes] = STATE(4896), + [sym_val_list] = STATE(4888), + [sym__spread_list] = STATE(4819), + [sym_val_record] = STATE(4888), + [sym_val_table] = STATE(4888), + [sym_val_closure] = STATE(4888), + [sym__cmd_arg] = STATE(4827), + [sym_redirection] = STATE(4831), + [sym_short_flag] = STATE(4832), + [sym_long_flag] = STATE(4832), + [sym_unquoted] = STATE(4591), + [sym__unquoted_with_expr] = STATE(4840), + [sym__unquoted_anonymous_prefix] = STATE(6835), + [sym_comment] = STATE(472), + [ts_builtin_sym_end] = ACTIONS(1954), + [sym__newline] = ACTIONS(1952), + [sym__space] = ACTIONS(1954), + [anon_sym_SEMI] = ACTIONS(1952), + [anon_sym_PIPE] = ACTIONS(1952), + [anon_sym_err_GT_PIPE] = ACTIONS(1952), + [anon_sym_out_GT_PIPE] = ACTIONS(1952), + [anon_sym_e_GT_PIPE] = ACTIONS(1952), + [anon_sym_o_GT_PIPE] = ACTIONS(1952), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1952), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1952), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1952), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1952), + [anon_sym_LBRACK] = ACTIONS(2062), + [anon_sym_LPAREN] = ACTIONS(2064), + [anon_sym_DOLLAR] = ACTIONS(2066), + [anon_sym_DASH_DASH] = ACTIONS(2068), + [anon_sym_DASH2] = ACTIONS(2070), + [anon_sym_LBRACE] = ACTIONS(2072), + [anon_sym_DOT_DOT] = ACTIONS(2074), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2078), + [anon_sym_DOT_DOT_LT] = ACTIONS(2078), + [anon_sym_null] = ACTIONS(2080), + [anon_sym_true] = ACTIONS(2082), + [anon_sym_false] = ACTIONS(2082), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2084), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(2086), + [aux_sym__val_number_decimal_token3] = ACTIONS(2088), + [aux_sym__val_number_decimal_token4] = ACTIONS(2090), + [aux_sym__val_number_token1] = ACTIONS(2092), + [aux_sym__val_number_token2] = ACTIONS(2092), + [aux_sym__val_number_token3] = ACTIONS(2092), + [aux_sym__val_number_token4] = ACTIONS(2094), + [aux_sym__val_number_token5] = ACTIONS(2094), + [aux_sym__val_number_token6] = ACTIONS(2094), + [anon_sym_0b] = ACTIONS(2096), + [anon_sym_0o] = ACTIONS(2098), + [anon_sym_0x] = ACTIONS(2098), + [sym_val_date] = ACTIONS(2100), + [anon_sym_DQUOTE] = ACTIONS(2102), + [sym__str_single_quotes] = ACTIONS(2104), + [sym__str_back_ticks] = ACTIONS(2104), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2106), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2108), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2110), + [anon_sym_err_GT] = ACTIONS(2112), + [anon_sym_out_GT] = ACTIONS(2112), + [anon_sym_e_GT] = ACTIONS(2112), + [anon_sym_o_GT] = ACTIONS(2112), + [anon_sym_err_PLUSout_GT] = ACTIONS(2112), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2112), + [anon_sym_o_PLUSe_GT] = ACTIONS(2112), + [anon_sym_e_PLUSo_GT] = ACTIONS(2112), + [anon_sym_err_GT_GT] = ACTIONS(2112), + [anon_sym_out_GT_GT] = ACTIONS(2112), + [anon_sym_e_GT_GT] = ACTIONS(2112), + [anon_sym_o_GT_GT] = ACTIONS(2112), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2112), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2112), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2112), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2112), + [aux_sym_unquoted_token1] = ACTIONS(2114), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2116), + }, + [473] = { + [sym_cell_path] = STATE(748), + [sym_path] = STATE(623), + [sym_comment] = STATE(473), + [aux_sym_cell_path_repeat1] = STATE(532), + [anon_sym_export] = ACTIONS(2034), + [anon_sym_alias] = ACTIONS(2034), + [anon_sym_let] = ACTIONS(2034), + [anon_sym_let_DASHenv] = ACTIONS(2034), + [anon_sym_mut] = ACTIONS(2034), + [anon_sym_const] = ACTIONS(2034), + [aux_sym_cmd_identifier_token1] = ACTIONS(2034), + [aux_sym_cmd_identifier_token2] = ACTIONS(2036), + [aux_sym_cmd_identifier_token3] = ACTIONS(2036), + [aux_sym_cmd_identifier_token4] = ACTIONS(2036), + [aux_sym_cmd_identifier_token5] = ACTIONS(2036), + [aux_sym_cmd_identifier_token6] = ACTIONS(2036), + [aux_sym_cmd_identifier_token7] = ACTIONS(2036), + [aux_sym_cmd_identifier_token8] = ACTIONS(2034), + [aux_sym_cmd_identifier_token9] = ACTIONS(2034), + [aux_sym_cmd_identifier_token10] = ACTIONS(2036), + [aux_sym_cmd_identifier_token11] = ACTIONS(2036), + [aux_sym_cmd_identifier_token12] = ACTIONS(2034), + [aux_sym_cmd_identifier_token13] = ACTIONS(2034), + [aux_sym_cmd_identifier_token14] = ACTIONS(2034), + [aux_sym_cmd_identifier_token15] = ACTIONS(2034), + [aux_sym_cmd_identifier_token16] = ACTIONS(2036), + [aux_sym_cmd_identifier_token17] = ACTIONS(2036), + [aux_sym_cmd_identifier_token18] = ACTIONS(2036), + [aux_sym_cmd_identifier_token19] = ACTIONS(2036), + [aux_sym_cmd_identifier_token20] = ACTIONS(2036), + [aux_sym_cmd_identifier_token21] = ACTIONS(2036), + [aux_sym_cmd_identifier_token22] = ACTIONS(2036), + [aux_sym_cmd_identifier_token23] = ACTIONS(2036), + [aux_sym_cmd_identifier_token24] = ACTIONS(2036), + [aux_sym_cmd_identifier_token25] = ACTIONS(2036), + [aux_sym_cmd_identifier_token26] = ACTIONS(2036), + [aux_sym_cmd_identifier_token27] = ACTIONS(2036), + [aux_sym_cmd_identifier_token28] = ACTIONS(2036), + [aux_sym_cmd_identifier_token29] = ACTIONS(2036), + [aux_sym_cmd_identifier_token30] = ACTIONS(2036), + [aux_sym_cmd_identifier_token31] = ACTIONS(2036), + [aux_sym_cmd_identifier_token32] = ACTIONS(2036), + [aux_sym_cmd_identifier_token33] = ACTIONS(2036), + [aux_sym_cmd_identifier_token34] = ACTIONS(2034), + [aux_sym_cmd_identifier_token35] = ACTIONS(2036), + [aux_sym_cmd_identifier_token36] = ACTIONS(2036), + [aux_sym_cmd_identifier_token37] = ACTIONS(2036), + [aux_sym_cmd_identifier_token38] = ACTIONS(2034), + [aux_sym_cmd_identifier_token39] = ACTIONS(2036), + [aux_sym_cmd_identifier_token40] = ACTIONS(2036), + [anon_sym_def] = ACTIONS(2034), + [anon_sym_export_DASHenv] = ACTIONS(2034), + [anon_sym_extern] = ACTIONS(2034), + [anon_sym_module] = ACTIONS(2034), + [anon_sym_use] = ACTIONS(2034), + [anon_sym_LPAREN] = ACTIONS(2036), + [anon_sym_DOLLAR] = ACTIONS(2036), + [anon_sym_error] = ACTIONS(2034), + [anon_sym_DASH2] = ACTIONS(2034), + [anon_sym_break] = ACTIONS(2034), + [anon_sym_continue] = ACTIONS(2034), + [anon_sym_for] = ACTIONS(2034), + [anon_sym_in2] = ACTIONS(2034), + [anon_sym_loop] = ACTIONS(2034), + [anon_sym_make] = ACTIONS(2034), + [anon_sym_while] = ACTIONS(2034), + [anon_sym_do] = ACTIONS(2034), + [anon_sym_if] = ACTIONS(2034), + [anon_sym_else] = ACTIONS(2034), + [anon_sym_match] = ACTIONS(2034), + [anon_sym_RBRACE] = ACTIONS(2036), + [anon_sym_try] = ACTIONS(2034), + [anon_sym_catch] = ACTIONS(2034), + [anon_sym_return] = ACTIONS(2034), + [anon_sym_source] = ACTIONS(2034), + [anon_sym_source_DASHenv] = ACTIONS(2034), + [anon_sym_register] = ACTIONS(2034), + [anon_sym_hide] = ACTIONS(2034), + [anon_sym_hide_DASHenv] = ACTIONS(2034), + [anon_sym_overlay] = ACTIONS(2034), + [anon_sym_as] = ACTIONS(2034), + [anon_sym_PLUS2] = ACTIONS(2034), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2036), + [anon_sym_DOT] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2036), + [aux_sym__val_number_decimal_token1] = ACTIONS(2034), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2036), + [aux_sym__val_number_decimal_token4] = ACTIONS(2036), + [aux_sym__val_number_token1] = ACTIONS(2036), + [aux_sym__val_number_token2] = ACTIONS(2036), + [aux_sym__val_number_token3] = ACTIONS(2036), + [aux_sym__val_number_token4] = ACTIONS(2034), + [aux_sym__val_number_token5] = ACTIONS(2034), + [aux_sym__val_number_token6] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym__str_single_quotes] = ACTIONS(2036), + [sym__str_back_ticks] = ACTIONS(2036), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2036), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2036), + }, + [474] = { + [sym_cell_path] = STATE(749), + [sym_path] = STATE(623), + [sym_comment] = STATE(474), + [aux_sym_cell_path_repeat1] = STATE(532), + [anon_sym_export] = ACTIONS(2038), + [anon_sym_alias] = ACTIONS(2038), + [anon_sym_let] = ACTIONS(2038), + [anon_sym_let_DASHenv] = ACTIONS(2038), + [anon_sym_mut] = ACTIONS(2038), + [anon_sym_const] = ACTIONS(2038), + [aux_sym_cmd_identifier_token1] = ACTIONS(2038), + [aux_sym_cmd_identifier_token2] = ACTIONS(2040), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [aux_sym_cmd_identifier_token6] = ACTIONS(2040), + [aux_sym_cmd_identifier_token7] = ACTIONS(2040), + [aux_sym_cmd_identifier_token8] = ACTIONS(2038), + [aux_sym_cmd_identifier_token9] = ACTIONS(2038), + [aux_sym_cmd_identifier_token10] = ACTIONS(2040), + [aux_sym_cmd_identifier_token11] = ACTIONS(2040), + [aux_sym_cmd_identifier_token12] = ACTIONS(2038), + [aux_sym_cmd_identifier_token13] = ACTIONS(2038), + [aux_sym_cmd_identifier_token14] = ACTIONS(2038), + [aux_sym_cmd_identifier_token15] = ACTIONS(2038), + [aux_sym_cmd_identifier_token16] = ACTIONS(2040), + [aux_sym_cmd_identifier_token17] = ACTIONS(2040), + [aux_sym_cmd_identifier_token18] = ACTIONS(2040), + [aux_sym_cmd_identifier_token19] = ACTIONS(2040), + [aux_sym_cmd_identifier_token20] = ACTIONS(2040), + [aux_sym_cmd_identifier_token21] = ACTIONS(2040), + [aux_sym_cmd_identifier_token22] = ACTIONS(2040), + [aux_sym_cmd_identifier_token23] = ACTIONS(2040), + [aux_sym_cmd_identifier_token24] = ACTIONS(2040), + [aux_sym_cmd_identifier_token25] = ACTIONS(2040), + [aux_sym_cmd_identifier_token26] = ACTIONS(2040), + [aux_sym_cmd_identifier_token27] = ACTIONS(2040), + [aux_sym_cmd_identifier_token28] = ACTIONS(2040), + [aux_sym_cmd_identifier_token29] = ACTIONS(2040), + [aux_sym_cmd_identifier_token30] = ACTIONS(2040), + [aux_sym_cmd_identifier_token31] = ACTIONS(2040), + [aux_sym_cmd_identifier_token32] = ACTIONS(2040), + [aux_sym_cmd_identifier_token33] = ACTIONS(2040), + [aux_sym_cmd_identifier_token34] = ACTIONS(2038), + [aux_sym_cmd_identifier_token35] = ACTIONS(2040), + [aux_sym_cmd_identifier_token36] = ACTIONS(2040), + [aux_sym_cmd_identifier_token37] = ACTIONS(2040), + [aux_sym_cmd_identifier_token38] = ACTIONS(2038), + [aux_sym_cmd_identifier_token39] = ACTIONS(2040), + [aux_sym_cmd_identifier_token40] = ACTIONS(2040), + [anon_sym_def] = ACTIONS(2038), + [anon_sym_export_DASHenv] = ACTIONS(2038), + [anon_sym_extern] = ACTIONS(2038), + [anon_sym_module] = ACTIONS(2038), + [anon_sym_use] = ACTIONS(2038), + [anon_sym_LPAREN] = ACTIONS(2040), + [anon_sym_DOLLAR] = ACTIONS(2040), + [anon_sym_error] = ACTIONS(2038), + [anon_sym_DASH2] = ACTIONS(2038), + [anon_sym_break] = ACTIONS(2038), + [anon_sym_continue] = ACTIONS(2038), + [anon_sym_for] = ACTIONS(2038), + [anon_sym_in2] = ACTIONS(2038), + [anon_sym_loop] = ACTIONS(2038), + [anon_sym_make] = ACTIONS(2038), + [anon_sym_while] = ACTIONS(2038), + [anon_sym_do] = ACTIONS(2038), + [anon_sym_if] = ACTIONS(2038), + [anon_sym_else] = ACTIONS(2038), + [anon_sym_match] = ACTIONS(2038), + [anon_sym_RBRACE] = ACTIONS(2040), + [anon_sym_try] = ACTIONS(2038), + [anon_sym_catch] = ACTIONS(2038), + [anon_sym_return] = ACTIONS(2038), + [anon_sym_source] = ACTIONS(2038), + [anon_sym_source_DASHenv] = ACTIONS(2038), + [anon_sym_register] = ACTIONS(2038), + [anon_sym_hide] = ACTIONS(2038), + [anon_sym_hide_DASHenv] = ACTIONS(2038), + [anon_sym_overlay] = ACTIONS(2038), + [anon_sym_as] = ACTIONS(2038), + [anon_sym_PLUS2] = ACTIONS(2038), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2040), + [anon_sym_DOT] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2040), + [aux_sym__val_number_decimal_token1] = ACTIONS(2038), + [aux_sym__val_number_decimal_token2] = ACTIONS(2040), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), + [aux_sym__val_number_token1] = ACTIONS(2040), + [aux_sym__val_number_token2] = ACTIONS(2040), + [aux_sym__val_number_token3] = ACTIONS(2040), + [aux_sym__val_number_token4] = ACTIONS(2038), + [aux_sym__val_number_token5] = ACTIONS(2038), + [aux_sym__val_number_token6] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2040), + [sym__str_single_quotes] = ACTIONS(2040), + [sym__str_back_ticks] = ACTIONS(2040), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2040), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2040), + }, + [475] = { + [sym_cell_path] = STATE(750), + [sym_path] = STATE(623), + [sym_comment] = STATE(475), + [aux_sym_cell_path_repeat1] = STATE(532), + [anon_sym_export] = ACTIONS(1931), + [anon_sym_alias] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_let_DASHenv] = ACTIONS(1931), + [anon_sym_mut] = ACTIONS(1931), + [anon_sym_const] = ACTIONS(1931), + [aux_sym_cmd_identifier_token1] = ACTIONS(1931), + [aux_sym_cmd_identifier_token2] = ACTIONS(1933), + [aux_sym_cmd_identifier_token3] = ACTIONS(1933), + [aux_sym_cmd_identifier_token4] = ACTIONS(1933), + [aux_sym_cmd_identifier_token5] = ACTIONS(1933), + [aux_sym_cmd_identifier_token6] = ACTIONS(1933), + [aux_sym_cmd_identifier_token7] = ACTIONS(1933), + [aux_sym_cmd_identifier_token8] = ACTIONS(1931), + [aux_sym_cmd_identifier_token9] = ACTIONS(1931), + [aux_sym_cmd_identifier_token10] = ACTIONS(1933), + [aux_sym_cmd_identifier_token11] = ACTIONS(1933), + [aux_sym_cmd_identifier_token12] = ACTIONS(1931), + [aux_sym_cmd_identifier_token13] = ACTIONS(1931), + [aux_sym_cmd_identifier_token14] = ACTIONS(1931), + [aux_sym_cmd_identifier_token15] = ACTIONS(1931), + [aux_sym_cmd_identifier_token16] = ACTIONS(1933), + [aux_sym_cmd_identifier_token17] = ACTIONS(1933), + [aux_sym_cmd_identifier_token18] = ACTIONS(1933), + [aux_sym_cmd_identifier_token19] = ACTIONS(1933), + [aux_sym_cmd_identifier_token20] = ACTIONS(1933), + [aux_sym_cmd_identifier_token21] = ACTIONS(1933), + [aux_sym_cmd_identifier_token22] = ACTIONS(1933), + [aux_sym_cmd_identifier_token23] = ACTIONS(1933), + [aux_sym_cmd_identifier_token24] = ACTIONS(1933), + [aux_sym_cmd_identifier_token25] = ACTIONS(1933), + [aux_sym_cmd_identifier_token26] = ACTIONS(1933), + [aux_sym_cmd_identifier_token27] = ACTIONS(1933), + [aux_sym_cmd_identifier_token28] = ACTIONS(1933), + [aux_sym_cmd_identifier_token29] = ACTIONS(1933), + [aux_sym_cmd_identifier_token30] = ACTIONS(1933), + [aux_sym_cmd_identifier_token31] = ACTIONS(1933), + [aux_sym_cmd_identifier_token32] = ACTIONS(1933), + [aux_sym_cmd_identifier_token33] = ACTIONS(1933), + [aux_sym_cmd_identifier_token34] = ACTIONS(1931), + [aux_sym_cmd_identifier_token35] = ACTIONS(1933), + [aux_sym_cmd_identifier_token36] = ACTIONS(1933), + [aux_sym_cmd_identifier_token37] = ACTIONS(1933), + [aux_sym_cmd_identifier_token38] = ACTIONS(1931), + [aux_sym_cmd_identifier_token39] = ACTIONS(1933), + [aux_sym_cmd_identifier_token40] = ACTIONS(1933), + [anon_sym_def] = ACTIONS(1931), + [anon_sym_export_DASHenv] = ACTIONS(1931), + [anon_sym_extern] = ACTIONS(1931), + [anon_sym_module] = ACTIONS(1931), + [anon_sym_use] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_DOLLAR] = ACTIONS(1933), + [anon_sym_error] = ACTIONS(1931), + [anon_sym_DASH2] = ACTIONS(1931), + [anon_sym_break] = ACTIONS(1931), + [anon_sym_continue] = ACTIONS(1931), + [anon_sym_for] = ACTIONS(1931), + [anon_sym_in2] = ACTIONS(1931), + [anon_sym_loop] = ACTIONS(1931), + [anon_sym_make] = ACTIONS(1931), + [anon_sym_while] = ACTIONS(1931), + [anon_sym_do] = ACTIONS(1931), + [anon_sym_if] = ACTIONS(1931), + [anon_sym_else] = ACTIONS(1931), + [anon_sym_match] = ACTIONS(1931), + [anon_sym_RBRACE] = ACTIONS(1933), + [anon_sym_try] = ACTIONS(1931), + [anon_sym_catch] = ACTIONS(1931), + [anon_sym_return] = ACTIONS(1931), + [anon_sym_source] = ACTIONS(1931), + [anon_sym_source_DASHenv] = ACTIONS(1931), + [anon_sym_register] = ACTIONS(1931), + [anon_sym_hide] = ACTIONS(1931), + [anon_sym_hide_DASHenv] = ACTIONS(1931), + [anon_sym_overlay] = ACTIONS(1931), + [anon_sym_as] = ACTIONS(1931), + [anon_sym_PLUS2] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1933), + [anon_sym_DOT] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1931), + [aux_sym__val_number_decimal_token2] = ACTIONS(1933), + [aux_sym__val_number_decimal_token3] = ACTIONS(1933), + [aux_sym__val_number_decimal_token4] = ACTIONS(1933), + [aux_sym__val_number_token1] = ACTIONS(1933), + [aux_sym__val_number_token2] = ACTIONS(1933), + [aux_sym__val_number_token3] = ACTIONS(1933), + [aux_sym__val_number_token4] = ACTIONS(1931), + [aux_sym__val_number_token5] = ACTIONS(1931), + [aux_sym__val_number_token6] = ACTIONS(1931), + [anon_sym_DQUOTE] = ACTIONS(1933), + [sym__str_single_quotes] = ACTIONS(1933), + [sym__str_back_ticks] = ACTIONS(1933), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1933), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1933), + }, + [476] = { + [sym_cell_path] = STATE(751), + [sym_path] = STATE(623), + [sym_comment] = STATE(476), + [aux_sym_cell_path_repeat1] = STATE(532), + [anon_sym_export] = ACTIONS(1899), + [anon_sym_alias] = ACTIONS(1899), + [anon_sym_let] = ACTIONS(1899), + [anon_sym_let_DASHenv] = ACTIONS(1899), + [anon_sym_mut] = ACTIONS(1899), + [anon_sym_const] = ACTIONS(1899), + [aux_sym_cmd_identifier_token1] = ACTIONS(1899), + [aux_sym_cmd_identifier_token2] = ACTIONS(1901), + [aux_sym_cmd_identifier_token3] = ACTIONS(1901), + [aux_sym_cmd_identifier_token4] = ACTIONS(1901), + [aux_sym_cmd_identifier_token5] = ACTIONS(1901), + [aux_sym_cmd_identifier_token6] = ACTIONS(1901), + [aux_sym_cmd_identifier_token7] = ACTIONS(1901), + [aux_sym_cmd_identifier_token8] = ACTIONS(1899), + [aux_sym_cmd_identifier_token9] = ACTIONS(1899), + [aux_sym_cmd_identifier_token10] = ACTIONS(1901), + [aux_sym_cmd_identifier_token11] = ACTIONS(1901), + [aux_sym_cmd_identifier_token12] = ACTIONS(1899), + [aux_sym_cmd_identifier_token13] = ACTIONS(1899), + [aux_sym_cmd_identifier_token14] = ACTIONS(1899), + [aux_sym_cmd_identifier_token15] = ACTIONS(1899), + [aux_sym_cmd_identifier_token16] = ACTIONS(1901), + [aux_sym_cmd_identifier_token17] = ACTIONS(1901), + [aux_sym_cmd_identifier_token18] = ACTIONS(1901), + [aux_sym_cmd_identifier_token19] = ACTIONS(1901), + [aux_sym_cmd_identifier_token20] = ACTIONS(1901), + [aux_sym_cmd_identifier_token21] = ACTIONS(1901), + [aux_sym_cmd_identifier_token22] = ACTIONS(1901), + [aux_sym_cmd_identifier_token23] = ACTIONS(1901), + [aux_sym_cmd_identifier_token24] = ACTIONS(1901), + [aux_sym_cmd_identifier_token25] = ACTIONS(1901), + [aux_sym_cmd_identifier_token26] = ACTIONS(1901), + [aux_sym_cmd_identifier_token27] = ACTIONS(1901), + [aux_sym_cmd_identifier_token28] = ACTIONS(1901), + [aux_sym_cmd_identifier_token29] = ACTIONS(1901), + [aux_sym_cmd_identifier_token30] = ACTIONS(1901), + [aux_sym_cmd_identifier_token31] = ACTIONS(1901), + [aux_sym_cmd_identifier_token32] = ACTIONS(1901), + [aux_sym_cmd_identifier_token33] = ACTIONS(1901), + [aux_sym_cmd_identifier_token34] = ACTIONS(1899), + [aux_sym_cmd_identifier_token35] = ACTIONS(1901), + [aux_sym_cmd_identifier_token36] = ACTIONS(1901), + [aux_sym_cmd_identifier_token37] = ACTIONS(1901), + [aux_sym_cmd_identifier_token38] = ACTIONS(1899), + [aux_sym_cmd_identifier_token39] = ACTIONS(1901), + [aux_sym_cmd_identifier_token40] = ACTIONS(1901), + [anon_sym_def] = ACTIONS(1899), + [anon_sym_export_DASHenv] = ACTIONS(1899), + [anon_sym_extern] = ACTIONS(1899), + [anon_sym_module] = ACTIONS(1899), + [anon_sym_use] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_DOLLAR] = ACTIONS(1901), + [anon_sym_error] = ACTIONS(1899), + [anon_sym_DASH2] = ACTIONS(1899), + [anon_sym_break] = ACTIONS(1899), + [anon_sym_continue] = ACTIONS(1899), + [anon_sym_for] = ACTIONS(1899), + [anon_sym_in2] = ACTIONS(1899), + [anon_sym_loop] = ACTIONS(1899), + [anon_sym_make] = ACTIONS(1899), + [anon_sym_while] = ACTIONS(1899), + [anon_sym_do] = ACTIONS(1899), + [anon_sym_if] = ACTIONS(1899), + [anon_sym_else] = ACTIONS(1899), + [anon_sym_match] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(1901), + [anon_sym_try] = ACTIONS(1899), + [anon_sym_catch] = ACTIONS(1899), + [anon_sym_return] = ACTIONS(1899), + [anon_sym_source] = ACTIONS(1899), + [anon_sym_source_DASHenv] = ACTIONS(1899), + [anon_sym_register] = ACTIONS(1899), + [anon_sym_hide] = ACTIONS(1899), + [anon_sym_hide_DASHenv] = ACTIONS(1899), + [anon_sym_overlay] = ACTIONS(1899), + [anon_sym_as] = ACTIONS(1899), + [anon_sym_PLUS2] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1901), + [anon_sym_DOT] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1901), + [aux_sym__val_number_decimal_token1] = ACTIONS(1899), + [aux_sym__val_number_decimal_token2] = ACTIONS(1901), + [aux_sym__val_number_decimal_token3] = ACTIONS(1901), + [aux_sym__val_number_decimal_token4] = ACTIONS(1901), + [aux_sym__val_number_token1] = ACTIONS(1901), + [aux_sym__val_number_token2] = ACTIONS(1901), + [aux_sym__val_number_token3] = ACTIONS(1901), + [aux_sym__val_number_token4] = ACTIONS(1899), + [aux_sym__val_number_token5] = ACTIONS(1899), + [aux_sym__val_number_token6] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [sym__str_single_quotes] = ACTIONS(1901), + [sym__str_back_ticks] = ACTIONS(1901), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1901), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1901), + }, + [477] = { + [sym_cell_path] = STATE(752), + [sym_path] = STATE(623), + [sym_comment] = STATE(477), + [aux_sym_cell_path_repeat1] = STATE(532), + [anon_sym_export] = ACTIONS(1907), + [anon_sym_alias] = ACTIONS(1907), + [anon_sym_let] = ACTIONS(1907), + [anon_sym_let_DASHenv] = ACTIONS(1907), + [anon_sym_mut] = ACTIONS(1907), + [anon_sym_const] = ACTIONS(1907), + [aux_sym_cmd_identifier_token1] = ACTIONS(1907), + [aux_sym_cmd_identifier_token2] = ACTIONS(1909), + [aux_sym_cmd_identifier_token3] = ACTIONS(1909), + [aux_sym_cmd_identifier_token4] = ACTIONS(1909), + [aux_sym_cmd_identifier_token5] = ACTIONS(1909), + [aux_sym_cmd_identifier_token6] = ACTIONS(1909), + [aux_sym_cmd_identifier_token7] = ACTIONS(1909), + [aux_sym_cmd_identifier_token8] = ACTIONS(1907), + [aux_sym_cmd_identifier_token9] = ACTIONS(1907), + [aux_sym_cmd_identifier_token10] = ACTIONS(1909), + [aux_sym_cmd_identifier_token11] = ACTIONS(1909), + [aux_sym_cmd_identifier_token12] = ACTIONS(1907), + [aux_sym_cmd_identifier_token13] = ACTIONS(1907), + [aux_sym_cmd_identifier_token14] = ACTIONS(1907), + [aux_sym_cmd_identifier_token15] = ACTIONS(1907), + [aux_sym_cmd_identifier_token16] = ACTIONS(1909), + [aux_sym_cmd_identifier_token17] = ACTIONS(1909), + [aux_sym_cmd_identifier_token18] = ACTIONS(1909), + [aux_sym_cmd_identifier_token19] = ACTIONS(1909), + [aux_sym_cmd_identifier_token20] = ACTIONS(1909), + [aux_sym_cmd_identifier_token21] = ACTIONS(1909), + [aux_sym_cmd_identifier_token22] = ACTIONS(1909), + [aux_sym_cmd_identifier_token23] = ACTIONS(1909), + [aux_sym_cmd_identifier_token24] = ACTIONS(1909), + [aux_sym_cmd_identifier_token25] = ACTIONS(1909), + [aux_sym_cmd_identifier_token26] = ACTIONS(1909), + [aux_sym_cmd_identifier_token27] = ACTIONS(1909), + [aux_sym_cmd_identifier_token28] = ACTIONS(1909), + [aux_sym_cmd_identifier_token29] = ACTIONS(1909), + [aux_sym_cmd_identifier_token30] = ACTIONS(1909), + [aux_sym_cmd_identifier_token31] = ACTIONS(1909), + [aux_sym_cmd_identifier_token32] = ACTIONS(1909), + [aux_sym_cmd_identifier_token33] = ACTIONS(1909), + [aux_sym_cmd_identifier_token34] = ACTIONS(1907), + [aux_sym_cmd_identifier_token35] = ACTIONS(1909), + [aux_sym_cmd_identifier_token36] = ACTIONS(1909), + [aux_sym_cmd_identifier_token37] = ACTIONS(1909), + [aux_sym_cmd_identifier_token38] = ACTIONS(1907), + [aux_sym_cmd_identifier_token39] = ACTIONS(1909), + [aux_sym_cmd_identifier_token40] = ACTIONS(1909), + [anon_sym_def] = ACTIONS(1907), + [anon_sym_export_DASHenv] = ACTIONS(1907), + [anon_sym_extern] = ACTIONS(1907), + [anon_sym_module] = ACTIONS(1907), + [anon_sym_use] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_DOLLAR] = ACTIONS(1909), + [anon_sym_error] = ACTIONS(1907), + [anon_sym_DASH2] = ACTIONS(1907), + [anon_sym_break] = ACTIONS(1907), + [anon_sym_continue] = ACTIONS(1907), + [anon_sym_for] = ACTIONS(1907), + [anon_sym_in2] = ACTIONS(1907), + [anon_sym_loop] = ACTIONS(1907), + [anon_sym_make] = ACTIONS(1907), + [anon_sym_while] = ACTIONS(1907), + [anon_sym_do] = ACTIONS(1907), + [anon_sym_if] = ACTIONS(1907), + [anon_sym_else] = ACTIONS(1907), + [anon_sym_match] = ACTIONS(1907), + [anon_sym_RBRACE] = ACTIONS(1909), + [anon_sym_try] = ACTIONS(1907), + [anon_sym_catch] = ACTIONS(1907), + [anon_sym_return] = ACTIONS(1907), + [anon_sym_source] = ACTIONS(1907), + [anon_sym_source_DASHenv] = ACTIONS(1907), + [anon_sym_register] = ACTIONS(1907), + [anon_sym_hide] = ACTIONS(1907), + [anon_sym_hide_DASHenv] = ACTIONS(1907), + [anon_sym_overlay] = ACTIONS(1907), + [anon_sym_as] = ACTIONS(1907), + [anon_sym_PLUS2] = ACTIONS(1907), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1909), + [anon_sym_DOT] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1909), + [aux_sym__val_number_decimal_token1] = ACTIONS(1907), + [aux_sym__val_number_decimal_token2] = ACTIONS(1909), + [aux_sym__val_number_decimal_token3] = ACTIONS(1909), + [aux_sym__val_number_decimal_token4] = ACTIONS(1909), + [aux_sym__val_number_token1] = ACTIONS(1909), + [aux_sym__val_number_token2] = ACTIONS(1909), + [aux_sym__val_number_token3] = ACTIONS(1909), + [aux_sym__val_number_token4] = ACTIONS(1907), + [aux_sym__val_number_token5] = ACTIONS(1907), + [aux_sym__val_number_token6] = ACTIONS(1907), + [anon_sym_DQUOTE] = ACTIONS(1909), + [sym__str_single_quotes] = ACTIONS(1909), + [sym__str_back_ticks] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1909), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1909), + }, + [478] = { + [sym_comment] = STATE(478), + [anon_sym_export] = ACTIONS(2118), + [anon_sym_alias] = ACTIONS(2118), + [anon_sym_let] = ACTIONS(2118), + [anon_sym_let_DASHenv] = ACTIONS(2118), + [anon_sym_mut] = ACTIONS(2118), + [anon_sym_const] = ACTIONS(2118), + [aux_sym_cmd_identifier_token1] = ACTIONS(2118), + [aux_sym_cmd_identifier_token2] = ACTIONS(2118), + [aux_sym_cmd_identifier_token3] = ACTIONS(2118), + [aux_sym_cmd_identifier_token4] = ACTIONS(2118), + [aux_sym_cmd_identifier_token5] = ACTIONS(2118), + [aux_sym_cmd_identifier_token6] = ACTIONS(2118), + [aux_sym_cmd_identifier_token7] = ACTIONS(2118), + [aux_sym_cmd_identifier_token8] = ACTIONS(2118), + [aux_sym_cmd_identifier_token9] = ACTIONS(2118), + [aux_sym_cmd_identifier_token10] = ACTIONS(2118), + [aux_sym_cmd_identifier_token11] = ACTIONS(2118), + [aux_sym_cmd_identifier_token12] = ACTIONS(2118), + [aux_sym_cmd_identifier_token13] = ACTIONS(2118), + [aux_sym_cmd_identifier_token14] = ACTIONS(2118), + [aux_sym_cmd_identifier_token15] = ACTIONS(2118), + [aux_sym_cmd_identifier_token16] = ACTIONS(2118), + [aux_sym_cmd_identifier_token17] = ACTIONS(2118), + [aux_sym_cmd_identifier_token18] = ACTIONS(2118), + [aux_sym_cmd_identifier_token19] = ACTIONS(2118), + [aux_sym_cmd_identifier_token20] = ACTIONS(2118), + [aux_sym_cmd_identifier_token21] = ACTIONS(2118), + [aux_sym_cmd_identifier_token22] = ACTIONS(2118), + [aux_sym_cmd_identifier_token23] = ACTIONS(2118), + [aux_sym_cmd_identifier_token24] = ACTIONS(2118), + [aux_sym_cmd_identifier_token25] = ACTIONS(2118), + [aux_sym_cmd_identifier_token26] = ACTIONS(2118), + [aux_sym_cmd_identifier_token27] = ACTIONS(2118), + [aux_sym_cmd_identifier_token28] = ACTIONS(2118), + [aux_sym_cmd_identifier_token29] = ACTIONS(2118), + [aux_sym_cmd_identifier_token30] = ACTIONS(2118), + [aux_sym_cmd_identifier_token31] = ACTIONS(2118), + [aux_sym_cmd_identifier_token32] = ACTIONS(2118), + [aux_sym_cmd_identifier_token33] = ACTIONS(2118), + [aux_sym_cmd_identifier_token34] = ACTIONS(2118), + [aux_sym_cmd_identifier_token35] = ACTIONS(2118), + [aux_sym_cmd_identifier_token36] = ACTIONS(2118), + [aux_sym_cmd_identifier_token37] = ACTIONS(2118), + [aux_sym_cmd_identifier_token38] = ACTIONS(2118), + [aux_sym_cmd_identifier_token39] = ACTIONS(2118), + [aux_sym_cmd_identifier_token40] = ACTIONS(2118), + [anon_sym_def] = ACTIONS(2118), + [anon_sym_export_DASHenv] = ACTIONS(2118), + [anon_sym_extern] = ACTIONS(2118), + [anon_sym_module] = ACTIONS(2118), + [anon_sym_use] = ACTIONS(2118), + [anon_sym_LPAREN] = ACTIONS(2118), + [anon_sym_DOLLAR] = ACTIONS(2118), + [anon_sym_error] = ACTIONS(2118), + [anon_sym_DASH2] = ACTIONS(2118), + [anon_sym_break] = ACTIONS(2118), + [anon_sym_continue] = ACTIONS(2118), + [anon_sym_for] = ACTIONS(2118), + [anon_sym_in2] = ACTIONS(2118), + [anon_sym_loop] = ACTIONS(2118), + [anon_sym_make] = ACTIONS(2118), + [anon_sym_while] = ACTIONS(2118), + [anon_sym_do] = ACTIONS(2118), + [anon_sym_if] = ACTIONS(2118), + [anon_sym_else] = ACTIONS(2118), + [anon_sym_match] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2118), + [anon_sym_try] = ACTIONS(2118), + [anon_sym_catch] = ACTIONS(2118), + [anon_sym_return] = ACTIONS(2118), + [anon_sym_source] = ACTIONS(2118), + [anon_sym_source_DASHenv] = ACTIONS(2118), + [anon_sym_register] = ACTIONS(2118), + [anon_sym_hide] = ACTIONS(2118), + [anon_sym_hide_DASHenv] = ACTIONS(2118), + [anon_sym_overlay] = ACTIONS(2118), + [anon_sym_as] = ACTIONS(2118), + [anon_sym_PLUS2] = ACTIONS(2118), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2118), + [anon_sym_DOT_DOT2] = ACTIONS(2118), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2120), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2118), + [aux_sym__val_number_decimal_token1] = ACTIONS(2118), + [aux_sym__val_number_decimal_token2] = ACTIONS(2118), + [aux_sym__val_number_decimal_token3] = ACTIONS(2118), + [aux_sym__val_number_decimal_token4] = ACTIONS(2118), + [aux_sym__val_number_token1] = ACTIONS(2118), + [aux_sym__val_number_token2] = ACTIONS(2118), + [aux_sym__val_number_token3] = ACTIONS(2118), + [aux_sym__val_number_token4] = ACTIONS(2118), + [aux_sym__val_number_token5] = ACTIONS(2118), + [aux_sym__val_number_token6] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2118), + [sym__str_single_quotes] = ACTIONS(2118), + [sym__str_back_ticks] = ACTIONS(2118), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2118), + [sym__entry_separator] = ACTIONS(2120), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2120), + }, + [479] = { + [sym_comment] = STATE(479), + [anon_sym_export] = ACTIONS(1733), + [anon_sym_alias] = ACTIONS(1733), + [anon_sym_let] = ACTIONS(1733), + [anon_sym_let_DASHenv] = ACTIONS(1733), + [anon_sym_mut] = ACTIONS(1733), + [anon_sym_const] = ACTIONS(1733), + [aux_sym_cmd_identifier_token1] = ACTIONS(1733), + [aux_sym_cmd_identifier_token2] = ACTIONS(1733), + [aux_sym_cmd_identifier_token3] = ACTIONS(1733), + [aux_sym_cmd_identifier_token4] = ACTIONS(1733), + [aux_sym_cmd_identifier_token5] = ACTIONS(1733), + [aux_sym_cmd_identifier_token6] = ACTIONS(1733), + [aux_sym_cmd_identifier_token7] = ACTIONS(1733), + [aux_sym_cmd_identifier_token8] = ACTIONS(1733), + [aux_sym_cmd_identifier_token9] = ACTIONS(1733), + [aux_sym_cmd_identifier_token10] = ACTIONS(1733), + [aux_sym_cmd_identifier_token11] = ACTIONS(1733), + [aux_sym_cmd_identifier_token12] = ACTIONS(1733), + [aux_sym_cmd_identifier_token13] = ACTIONS(1733), + [aux_sym_cmd_identifier_token14] = ACTIONS(1733), + [aux_sym_cmd_identifier_token15] = ACTIONS(1733), + [aux_sym_cmd_identifier_token16] = ACTIONS(1733), + [aux_sym_cmd_identifier_token17] = ACTIONS(1733), + [aux_sym_cmd_identifier_token18] = ACTIONS(1733), + [aux_sym_cmd_identifier_token19] = ACTIONS(1733), + [aux_sym_cmd_identifier_token20] = ACTIONS(1733), + [aux_sym_cmd_identifier_token21] = ACTIONS(1733), + [aux_sym_cmd_identifier_token22] = ACTIONS(1733), + [aux_sym_cmd_identifier_token23] = ACTIONS(1733), + [aux_sym_cmd_identifier_token24] = ACTIONS(1733), + [aux_sym_cmd_identifier_token25] = ACTIONS(1733), + [aux_sym_cmd_identifier_token26] = ACTIONS(1733), + [aux_sym_cmd_identifier_token27] = ACTIONS(1733), + [aux_sym_cmd_identifier_token28] = ACTIONS(1733), + [aux_sym_cmd_identifier_token29] = ACTIONS(1733), + [aux_sym_cmd_identifier_token30] = ACTIONS(1733), + [aux_sym_cmd_identifier_token31] = ACTIONS(1733), + [aux_sym_cmd_identifier_token32] = ACTIONS(1733), + [aux_sym_cmd_identifier_token33] = ACTIONS(1733), + [aux_sym_cmd_identifier_token34] = ACTIONS(1733), + [aux_sym_cmd_identifier_token35] = ACTIONS(1733), + [aux_sym_cmd_identifier_token36] = ACTIONS(1733), + [aux_sym_cmd_identifier_token37] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1733), + [aux_sym_cmd_identifier_token39] = ACTIONS(1733), + [aux_sym_cmd_identifier_token40] = ACTIONS(1733), + [anon_sym_def] = ACTIONS(1733), + [anon_sym_export_DASHenv] = ACTIONS(1733), + [anon_sym_extern] = ACTIONS(1733), + [anon_sym_module] = ACTIONS(1733), + [anon_sym_use] = ACTIONS(1733), + [anon_sym_LPAREN] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1733), + [anon_sym_error] = ACTIONS(1733), + [anon_sym_DASH2] = ACTIONS(1733), + [anon_sym_break] = ACTIONS(1733), + [anon_sym_continue] = ACTIONS(1733), + [anon_sym_for] = ACTIONS(1733), + [anon_sym_in2] = ACTIONS(1733), + [anon_sym_loop] = ACTIONS(1733), + [anon_sym_make] = ACTIONS(1733), + [anon_sym_while] = ACTIONS(1733), + [anon_sym_do] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1733), + [anon_sym_else] = ACTIONS(1733), + [anon_sym_match] = ACTIONS(1733), + [anon_sym_RBRACE] = ACTIONS(1733), + [anon_sym_try] = ACTIONS(1733), + [anon_sym_catch] = ACTIONS(1733), + [anon_sym_return] = ACTIONS(1733), + [anon_sym_source] = ACTIONS(1733), + [anon_sym_source_DASHenv] = ACTIONS(1733), + [anon_sym_register] = ACTIONS(1733), + [anon_sym_hide] = ACTIONS(1733), + [anon_sym_hide_DASHenv] = ACTIONS(1733), + [anon_sym_overlay] = ACTIONS(1733), + [anon_sym_as] = ACTIONS(1733), + [anon_sym_PLUS2] = ACTIONS(1733), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1733), + [anon_sym_DOT_DOT2] = ACTIONS(1733), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1733), + [aux_sym__val_number_decimal_token1] = ACTIONS(1733), + [aux_sym__val_number_decimal_token2] = ACTIONS(1733), + [aux_sym__val_number_decimal_token3] = ACTIONS(1733), + [aux_sym__val_number_decimal_token4] = ACTIONS(1733), + [aux_sym__val_number_token1] = ACTIONS(1733), + [aux_sym__val_number_token2] = ACTIONS(1733), + [aux_sym__val_number_token3] = ACTIONS(1733), + [aux_sym__val_number_token4] = ACTIONS(1733), + [aux_sym__val_number_token5] = ACTIONS(1733), + [aux_sym__val_number_token6] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(1733), + [sym__str_single_quotes] = ACTIONS(1733), + [sym__str_back_ticks] = ACTIONS(1733), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1733), + [sym__entry_separator] = ACTIONS(1737), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1737), + }, + [480] = { + [sym_cell_path] = STATE(700), + [sym_path] = STATE(623), + [sym_comment] = STATE(480), + [aux_sym_cell_path_repeat1] = STATE(532), + [anon_sym_export] = ACTIONS(1938), + [anon_sym_alias] = ACTIONS(1938), + [anon_sym_let] = ACTIONS(1938), + [anon_sym_let_DASHenv] = ACTIONS(1938), + [anon_sym_mut] = ACTIONS(1938), + [anon_sym_const] = ACTIONS(1938), + [aux_sym_cmd_identifier_token1] = ACTIONS(1938), + [aux_sym_cmd_identifier_token2] = ACTIONS(1940), + [aux_sym_cmd_identifier_token3] = ACTIONS(1940), + [aux_sym_cmd_identifier_token4] = ACTIONS(1940), + [aux_sym_cmd_identifier_token5] = ACTIONS(1940), + [aux_sym_cmd_identifier_token6] = ACTIONS(1940), + [aux_sym_cmd_identifier_token7] = ACTIONS(1940), + [aux_sym_cmd_identifier_token8] = ACTIONS(1938), + [aux_sym_cmd_identifier_token9] = ACTIONS(1938), + [aux_sym_cmd_identifier_token10] = ACTIONS(1940), + [aux_sym_cmd_identifier_token11] = ACTIONS(1940), + [aux_sym_cmd_identifier_token12] = ACTIONS(1938), + [aux_sym_cmd_identifier_token13] = ACTIONS(1938), + [aux_sym_cmd_identifier_token14] = ACTIONS(1938), + [aux_sym_cmd_identifier_token15] = ACTIONS(1938), + [aux_sym_cmd_identifier_token16] = ACTIONS(1940), + [aux_sym_cmd_identifier_token17] = ACTIONS(1940), + [aux_sym_cmd_identifier_token18] = ACTIONS(1940), + [aux_sym_cmd_identifier_token19] = ACTIONS(1940), + [aux_sym_cmd_identifier_token20] = ACTIONS(1940), + [aux_sym_cmd_identifier_token21] = ACTIONS(1940), + [aux_sym_cmd_identifier_token22] = ACTIONS(1940), + [aux_sym_cmd_identifier_token23] = ACTIONS(1940), + [aux_sym_cmd_identifier_token24] = ACTIONS(1940), + [aux_sym_cmd_identifier_token25] = ACTIONS(1940), + [aux_sym_cmd_identifier_token26] = ACTIONS(1940), + [aux_sym_cmd_identifier_token27] = ACTIONS(1940), + [aux_sym_cmd_identifier_token28] = ACTIONS(1940), + [aux_sym_cmd_identifier_token29] = ACTIONS(1940), + [aux_sym_cmd_identifier_token30] = ACTIONS(1940), + [aux_sym_cmd_identifier_token31] = ACTIONS(1940), + [aux_sym_cmd_identifier_token32] = ACTIONS(1940), + [aux_sym_cmd_identifier_token33] = ACTIONS(1940), + [aux_sym_cmd_identifier_token34] = ACTIONS(1938), + [aux_sym_cmd_identifier_token35] = ACTIONS(1940), + [aux_sym_cmd_identifier_token36] = ACTIONS(1940), + [aux_sym_cmd_identifier_token37] = ACTIONS(1940), + [aux_sym_cmd_identifier_token38] = ACTIONS(1938), + [aux_sym_cmd_identifier_token39] = ACTIONS(1940), + [aux_sym_cmd_identifier_token40] = ACTIONS(1940), + [anon_sym_def] = ACTIONS(1938), + [anon_sym_export_DASHenv] = ACTIONS(1938), + [anon_sym_extern] = ACTIONS(1938), + [anon_sym_module] = ACTIONS(1938), + [anon_sym_use] = ACTIONS(1938), + [anon_sym_LPAREN] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(1940), + [anon_sym_error] = ACTIONS(1938), + [anon_sym_DASH2] = ACTIONS(1938), + [anon_sym_break] = ACTIONS(1938), + [anon_sym_continue] = ACTIONS(1938), + [anon_sym_for] = ACTIONS(1938), + [anon_sym_in2] = ACTIONS(1938), + [anon_sym_loop] = ACTIONS(1938), + [anon_sym_make] = ACTIONS(1938), + [anon_sym_while] = ACTIONS(1938), + [anon_sym_do] = ACTIONS(1938), + [anon_sym_if] = ACTIONS(1938), + [anon_sym_else] = ACTIONS(1938), + [anon_sym_match] = ACTIONS(1938), + [anon_sym_RBRACE] = ACTIONS(1940), + [anon_sym_try] = ACTIONS(1938), + [anon_sym_catch] = ACTIONS(1938), + [anon_sym_return] = ACTIONS(1938), + [anon_sym_source] = ACTIONS(1938), + [anon_sym_source_DASHenv] = ACTIONS(1938), + [anon_sym_register] = ACTIONS(1938), + [anon_sym_hide] = ACTIONS(1938), + [anon_sym_hide_DASHenv] = ACTIONS(1938), + [anon_sym_overlay] = ACTIONS(1938), + [anon_sym_as] = ACTIONS(1938), + [anon_sym_PLUS2] = ACTIONS(1938), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1940), + [anon_sym_DOT] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1940), + [aux_sym__val_number_decimal_token1] = ACTIONS(1938), + [aux_sym__val_number_decimal_token2] = ACTIONS(1940), + [aux_sym__val_number_decimal_token3] = ACTIONS(1940), + [aux_sym__val_number_decimal_token4] = ACTIONS(1940), + [aux_sym__val_number_token1] = ACTIONS(1940), + [aux_sym__val_number_token2] = ACTIONS(1940), + [aux_sym__val_number_token3] = ACTIONS(1940), + [aux_sym__val_number_token4] = ACTIONS(1938), + [aux_sym__val_number_token5] = ACTIONS(1938), + [aux_sym__val_number_token6] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1940), + [sym__str_single_quotes] = ACTIONS(1940), + [sym__str_back_ticks] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1940), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1940), + }, + [481] = { + [sym_cell_path] = STATE(701), + [sym_path] = STATE(623), + [sym_comment] = STATE(481), + [aux_sym_cell_path_repeat1] = STATE(532), + [anon_sym_export] = ACTIONS(2042), + [anon_sym_alias] = ACTIONS(2042), + [anon_sym_let] = ACTIONS(2042), + [anon_sym_let_DASHenv] = ACTIONS(2042), + [anon_sym_mut] = ACTIONS(2042), + [anon_sym_const] = ACTIONS(2042), + [aux_sym_cmd_identifier_token1] = ACTIONS(2042), + [aux_sym_cmd_identifier_token2] = ACTIONS(2044), + [aux_sym_cmd_identifier_token3] = ACTIONS(2044), + [aux_sym_cmd_identifier_token4] = ACTIONS(2044), + [aux_sym_cmd_identifier_token5] = ACTIONS(2044), + [aux_sym_cmd_identifier_token6] = ACTIONS(2044), + [aux_sym_cmd_identifier_token7] = ACTIONS(2044), + [aux_sym_cmd_identifier_token8] = ACTIONS(2042), + [aux_sym_cmd_identifier_token9] = ACTIONS(2042), + [aux_sym_cmd_identifier_token10] = ACTIONS(2044), + [aux_sym_cmd_identifier_token11] = ACTIONS(2044), + [aux_sym_cmd_identifier_token12] = ACTIONS(2042), + [aux_sym_cmd_identifier_token13] = ACTIONS(2042), + [aux_sym_cmd_identifier_token14] = ACTIONS(2042), + [aux_sym_cmd_identifier_token15] = ACTIONS(2042), + [aux_sym_cmd_identifier_token16] = ACTIONS(2044), + [aux_sym_cmd_identifier_token17] = ACTIONS(2044), + [aux_sym_cmd_identifier_token18] = ACTIONS(2044), + [aux_sym_cmd_identifier_token19] = ACTIONS(2044), + [aux_sym_cmd_identifier_token20] = ACTIONS(2044), + [aux_sym_cmd_identifier_token21] = ACTIONS(2044), + [aux_sym_cmd_identifier_token22] = ACTIONS(2044), + [aux_sym_cmd_identifier_token23] = ACTIONS(2044), + [aux_sym_cmd_identifier_token24] = ACTIONS(2044), + [aux_sym_cmd_identifier_token25] = ACTIONS(2044), + [aux_sym_cmd_identifier_token26] = ACTIONS(2044), + [aux_sym_cmd_identifier_token27] = ACTIONS(2044), + [aux_sym_cmd_identifier_token28] = ACTIONS(2044), + [aux_sym_cmd_identifier_token29] = ACTIONS(2044), + [aux_sym_cmd_identifier_token30] = ACTIONS(2044), + [aux_sym_cmd_identifier_token31] = ACTIONS(2044), + [aux_sym_cmd_identifier_token32] = ACTIONS(2044), + [aux_sym_cmd_identifier_token33] = ACTIONS(2044), + [aux_sym_cmd_identifier_token34] = ACTIONS(2042), + [aux_sym_cmd_identifier_token35] = ACTIONS(2044), + [aux_sym_cmd_identifier_token36] = ACTIONS(2044), + [aux_sym_cmd_identifier_token37] = ACTIONS(2044), + [aux_sym_cmd_identifier_token38] = ACTIONS(2042), + [aux_sym_cmd_identifier_token39] = ACTIONS(2044), + [aux_sym_cmd_identifier_token40] = ACTIONS(2044), + [anon_sym_def] = ACTIONS(2042), + [anon_sym_export_DASHenv] = ACTIONS(2042), + [anon_sym_extern] = ACTIONS(2042), + [anon_sym_module] = ACTIONS(2042), + [anon_sym_use] = ACTIONS(2042), + [anon_sym_LPAREN] = ACTIONS(2044), + [anon_sym_DOLLAR] = ACTIONS(2044), + [anon_sym_error] = ACTIONS(2042), + [anon_sym_DASH2] = ACTIONS(2042), + [anon_sym_break] = ACTIONS(2042), + [anon_sym_continue] = ACTIONS(2042), + [anon_sym_for] = ACTIONS(2042), + [anon_sym_in2] = ACTIONS(2042), + [anon_sym_loop] = ACTIONS(2042), + [anon_sym_make] = ACTIONS(2042), + [anon_sym_while] = ACTIONS(2042), + [anon_sym_do] = ACTIONS(2042), + [anon_sym_if] = ACTIONS(2042), + [anon_sym_else] = ACTIONS(2042), + [anon_sym_match] = ACTIONS(2042), + [anon_sym_RBRACE] = ACTIONS(2044), + [anon_sym_try] = ACTIONS(2042), + [anon_sym_catch] = ACTIONS(2042), + [anon_sym_return] = ACTIONS(2042), + [anon_sym_source] = ACTIONS(2042), + [anon_sym_source_DASHenv] = ACTIONS(2042), + [anon_sym_register] = ACTIONS(2042), + [anon_sym_hide] = ACTIONS(2042), + [anon_sym_hide_DASHenv] = ACTIONS(2042), + [anon_sym_overlay] = ACTIONS(2042), + [anon_sym_as] = ACTIONS(2042), + [anon_sym_PLUS2] = ACTIONS(2042), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2044), + [anon_sym_DOT] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2044), + [aux_sym__val_number_decimal_token1] = ACTIONS(2042), + [aux_sym__val_number_decimal_token2] = ACTIONS(2044), + [aux_sym__val_number_decimal_token3] = ACTIONS(2044), + [aux_sym__val_number_decimal_token4] = ACTIONS(2044), + [aux_sym__val_number_token1] = ACTIONS(2044), + [aux_sym__val_number_token2] = ACTIONS(2044), + [aux_sym__val_number_token3] = ACTIONS(2044), + [aux_sym__val_number_token4] = ACTIONS(2042), + [aux_sym__val_number_token5] = ACTIONS(2042), + [aux_sym__val_number_token6] = ACTIONS(2042), + [anon_sym_DQUOTE] = ACTIONS(2044), + [sym__str_single_quotes] = ACTIONS(2044), + [sym__str_back_ticks] = ACTIONS(2044), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2044), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2044), + }, + [482] = { + [sym_comment] = STATE(482), + [anon_sym_export] = ACTIONS(2122), + [anon_sym_alias] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_let_DASHenv] = ACTIONS(2122), + [anon_sym_mut] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [aux_sym_cmd_identifier_token1] = ACTIONS(2122), + [aux_sym_cmd_identifier_token2] = ACTIONS(2122), + [aux_sym_cmd_identifier_token3] = ACTIONS(2122), + [aux_sym_cmd_identifier_token4] = ACTIONS(2122), + [aux_sym_cmd_identifier_token5] = ACTIONS(2122), + [aux_sym_cmd_identifier_token6] = ACTIONS(2122), + [aux_sym_cmd_identifier_token7] = ACTIONS(2122), + [aux_sym_cmd_identifier_token8] = ACTIONS(2122), + [aux_sym_cmd_identifier_token9] = ACTIONS(2122), + [aux_sym_cmd_identifier_token10] = ACTIONS(2122), + [aux_sym_cmd_identifier_token11] = ACTIONS(2122), + [aux_sym_cmd_identifier_token12] = ACTIONS(2122), + [aux_sym_cmd_identifier_token13] = ACTIONS(2122), + [aux_sym_cmd_identifier_token14] = ACTIONS(2122), + [aux_sym_cmd_identifier_token15] = ACTIONS(2122), + [aux_sym_cmd_identifier_token16] = ACTIONS(2122), + [aux_sym_cmd_identifier_token17] = ACTIONS(2122), + [aux_sym_cmd_identifier_token18] = ACTIONS(2122), + [aux_sym_cmd_identifier_token19] = ACTIONS(2122), + [aux_sym_cmd_identifier_token20] = ACTIONS(2122), + [aux_sym_cmd_identifier_token21] = ACTIONS(2122), + [aux_sym_cmd_identifier_token22] = ACTIONS(2122), + [aux_sym_cmd_identifier_token23] = ACTIONS(2122), + [aux_sym_cmd_identifier_token24] = ACTIONS(2122), + [aux_sym_cmd_identifier_token25] = ACTIONS(2122), + [aux_sym_cmd_identifier_token26] = ACTIONS(2122), + [aux_sym_cmd_identifier_token27] = ACTIONS(2122), + [aux_sym_cmd_identifier_token28] = ACTIONS(2122), + [aux_sym_cmd_identifier_token29] = ACTIONS(2122), + [aux_sym_cmd_identifier_token30] = ACTIONS(2122), + [aux_sym_cmd_identifier_token31] = ACTIONS(2122), + [aux_sym_cmd_identifier_token32] = ACTIONS(2122), + [aux_sym_cmd_identifier_token33] = ACTIONS(2122), + [aux_sym_cmd_identifier_token34] = ACTIONS(2122), + [aux_sym_cmd_identifier_token35] = ACTIONS(2122), + [aux_sym_cmd_identifier_token36] = ACTIONS(2122), + [aux_sym_cmd_identifier_token37] = ACTIONS(2122), + [aux_sym_cmd_identifier_token38] = ACTIONS(2122), + [aux_sym_cmd_identifier_token39] = ACTIONS(2122), + [aux_sym_cmd_identifier_token40] = ACTIONS(2122), + [anon_sym_def] = ACTIONS(2122), + [anon_sym_export_DASHenv] = ACTIONS(2122), + [anon_sym_extern] = ACTIONS(2122), + [anon_sym_module] = ACTIONS(2122), + [anon_sym_use] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_DOLLAR] = ACTIONS(2122), + [anon_sym_error] = ACTIONS(2122), + [anon_sym_DASH2] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_in2] = ACTIONS(2122), + [anon_sym_loop] = ACTIONS(2122), + [anon_sym_make] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_else] = ACTIONS(2122), + [anon_sym_match] = ACTIONS(2122), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2122), + [anon_sym_catch] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_source] = ACTIONS(2122), + [anon_sym_source_DASHenv] = ACTIONS(2122), + [anon_sym_register] = ACTIONS(2122), + [anon_sym_hide] = ACTIONS(2122), + [anon_sym_hide_DASHenv] = ACTIONS(2122), + [anon_sym_overlay] = ACTIONS(2122), + [anon_sym_as] = ACTIONS(2122), + [anon_sym_PLUS2] = ACTIONS(2122), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2122), + [anon_sym_DOT_DOT2] = ACTIONS(2124), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2126), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2126), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2122), + [aux_sym__val_number_decimal_token1] = ACTIONS(2122), + [aux_sym__val_number_decimal_token2] = ACTIONS(2122), + [aux_sym__val_number_decimal_token3] = ACTIONS(2122), + [aux_sym__val_number_decimal_token4] = ACTIONS(2122), + [aux_sym__val_number_token1] = ACTIONS(2122), + [aux_sym__val_number_token2] = ACTIONS(2122), + [aux_sym__val_number_token3] = ACTIONS(2122), + [aux_sym__val_number_token4] = ACTIONS(2122), + [aux_sym__val_number_token5] = ACTIONS(2122), + [aux_sym__val_number_token6] = ACTIONS(2122), + [anon_sym_DQUOTE] = ACTIONS(2122), + [sym__str_single_quotes] = ACTIONS(2122), + [sym__str_back_ticks] = ACTIONS(2122), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2122), + [sym__entry_separator] = ACTIONS(2128), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2128), + }, + [483] = { + [sym_comment] = STATE(483), + [anon_sym_export] = ACTIONS(2130), + [anon_sym_alias] = ACTIONS(2130), + [anon_sym_let] = ACTIONS(2130), + [anon_sym_let_DASHenv] = ACTIONS(2130), + [anon_sym_mut] = ACTIONS(2130), + [anon_sym_const] = ACTIONS(2130), + [aux_sym_cmd_identifier_token1] = ACTIONS(2130), + [aux_sym_cmd_identifier_token2] = ACTIONS(2130), + [aux_sym_cmd_identifier_token3] = ACTIONS(2130), + [aux_sym_cmd_identifier_token4] = ACTIONS(2130), + [aux_sym_cmd_identifier_token5] = ACTIONS(2130), + [aux_sym_cmd_identifier_token6] = ACTIONS(2130), + [aux_sym_cmd_identifier_token7] = ACTIONS(2130), + [aux_sym_cmd_identifier_token8] = ACTIONS(2130), + [aux_sym_cmd_identifier_token9] = ACTIONS(2130), + [aux_sym_cmd_identifier_token10] = ACTIONS(2130), + [aux_sym_cmd_identifier_token11] = ACTIONS(2130), + [aux_sym_cmd_identifier_token12] = ACTIONS(2130), + [aux_sym_cmd_identifier_token13] = ACTIONS(2130), + [aux_sym_cmd_identifier_token14] = ACTIONS(2130), + [aux_sym_cmd_identifier_token15] = ACTIONS(2130), + [aux_sym_cmd_identifier_token16] = ACTIONS(2130), + [aux_sym_cmd_identifier_token17] = ACTIONS(2130), + [aux_sym_cmd_identifier_token18] = ACTIONS(2130), + [aux_sym_cmd_identifier_token19] = ACTIONS(2130), + [aux_sym_cmd_identifier_token20] = ACTIONS(2130), + [aux_sym_cmd_identifier_token21] = ACTIONS(2130), + [aux_sym_cmd_identifier_token22] = ACTIONS(2130), + [aux_sym_cmd_identifier_token23] = ACTIONS(2130), + [aux_sym_cmd_identifier_token24] = ACTIONS(2130), + [aux_sym_cmd_identifier_token25] = ACTIONS(2130), + [aux_sym_cmd_identifier_token26] = ACTIONS(2130), + [aux_sym_cmd_identifier_token27] = ACTIONS(2130), + [aux_sym_cmd_identifier_token28] = ACTIONS(2130), + [aux_sym_cmd_identifier_token29] = ACTIONS(2130), + [aux_sym_cmd_identifier_token30] = ACTIONS(2130), + [aux_sym_cmd_identifier_token31] = ACTIONS(2130), + [aux_sym_cmd_identifier_token32] = ACTIONS(2130), + [aux_sym_cmd_identifier_token33] = ACTIONS(2130), + [aux_sym_cmd_identifier_token34] = ACTIONS(2130), + [aux_sym_cmd_identifier_token35] = ACTIONS(2130), + [aux_sym_cmd_identifier_token36] = ACTIONS(2130), + [aux_sym_cmd_identifier_token37] = ACTIONS(2130), + [aux_sym_cmd_identifier_token38] = ACTIONS(2130), + [aux_sym_cmd_identifier_token39] = ACTIONS(2130), + [aux_sym_cmd_identifier_token40] = ACTIONS(2130), + [anon_sym_def] = ACTIONS(2130), + [anon_sym_export_DASHenv] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(2130), + [anon_sym_module] = ACTIONS(2130), + [anon_sym_use] = ACTIONS(2130), + [anon_sym_LPAREN] = ACTIONS(2130), + [anon_sym_DOLLAR] = ACTIONS(2130), + [anon_sym_error] = ACTIONS(2130), + [anon_sym_DASH2] = ACTIONS(2130), + [anon_sym_break] = ACTIONS(2130), + [anon_sym_continue] = ACTIONS(2130), + [anon_sym_for] = ACTIONS(2130), + [anon_sym_in2] = ACTIONS(2130), + [anon_sym_loop] = ACTIONS(2130), + [anon_sym_make] = ACTIONS(2130), + [anon_sym_while] = ACTIONS(2130), + [anon_sym_do] = ACTIONS(2130), + [anon_sym_if] = ACTIONS(2130), + [anon_sym_else] = ACTIONS(2130), + [anon_sym_match] = ACTIONS(2130), + [anon_sym_RBRACE] = ACTIONS(2130), + [anon_sym_try] = ACTIONS(2130), + [anon_sym_catch] = ACTIONS(2130), + [anon_sym_return] = ACTIONS(2130), + [anon_sym_source] = ACTIONS(2130), + [anon_sym_source_DASHenv] = ACTIONS(2130), + [anon_sym_register] = ACTIONS(2130), + [anon_sym_hide] = ACTIONS(2130), + [anon_sym_hide_DASHenv] = ACTIONS(2130), + [anon_sym_overlay] = ACTIONS(2130), + [anon_sym_as] = ACTIONS(2130), + [anon_sym_PLUS2] = ACTIONS(2130), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2130), + [anon_sym_DOT_DOT2] = ACTIONS(2132), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2134), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2134), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2130), + [aux_sym__val_number_decimal_token1] = ACTIONS(2130), + [aux_sym__val_number_decimal_token2] = ACTIONS(2130), + [aux_sym__val_number_decimal_token3] = ACTIONS(2130), + [aux_sym__val_number_decimal_token4] = ACTIONS(2130), + [aux_sym__val_number_token1] = ACTIONS(2130), + [aux_sym__val_number_token2] = ACTIONS(2130), + [aux_sym__val_number_token3] = ACTIONS(2130), + [aux_sym__val_number_token4] = ACTIONS(2130), + [aux_sym__val_number_token5] = ACTIONS(2130), + [aux_sym__val_number_token6] = ACTIONS(2130), + [anon_sym_DQUOTE] = ACTIONS(2130), + [sym__str_single_quotes] = ACTIONS(2130), + [sym__str_back_ticks] = ACTIONS(2130), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2130), + [sym__entry_separator] = ACTIONS(2136), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2136), + }, + [484] = { + [sym_comment] = STATE(484), + [anon_sym_export] = ACTIONS(978), + [anon_sym_alias] = ACTIONS(978), + [anon_sym_let] = ACTIONS(978), + [anon_sym_let_DASHenv] = ACTIONS(978), + [anon_sym_mut] = ACTIONS(978), + [anon_sym_const] = ACTIONS(978), + [aux_sym_cmd_identifier_token1] = ACTIONS(978), + [aux_sym_cmd_identifier_token2] = ACTIONS(980), + [aux_sym_cmd_identifier_token3] = ACTIONS(980), + [aux_sym_cmd_identifier_token4] = ACTIONS(980), + [aux_sym_cmd_identifier_token5] = ACTIONS(980), + [aux_sym_cmd_identifier_token6] = ACTIONS(980), + [aux_sym_cmd_identifier_token7] = ACTIONS(980), + [aux_sym_cmd_identifier_token8] = ACTIONS(978), + [aux_sym_cmd_identifier_token9] = ACTIONS(978), + [aux_sym_cmd_identifier_token10] = ACTIONS(980), + [aux_sym_cmd_identifier_token11] = ACTIONS(980), + [aux_sym_cmd_identifier_token12] = ACTIONS(978), + [aux_sym_cmd_identifier_token13] = ACTIONS(978), + [aux_sym_cmd_identifier_token14] = ACTIONS(978), + [aux_sym_cmd_identifier_token15] = ACTIONS(978), + [aux_sym_cmd_identifier_token16] = ACTIONS(980), + [aux_sym_cmd_identifier_token17] = ACTIONS(980), + [aux_sym_cmd_identifier_token18] = ACTIONS(980), + [aux_sym_cmd_identifier_token19] = ACTIONS(980), + [aux_sym_cmd_identifier_token20] = ACTIONS(980), + [aux_sym_cmd_identifier_token21] = ACTIONS(980), + [aux_sym_cmd_identifier_token22] = ACTIONS(980), + [aux_sym_cmd_identifier_token23] = ACTIONS(980), + [aux_sym_cmd_identifier_token24] = ACTIONS(980), + [aux_sym_cmd_identifier_token25] = ACTIONS(980), + [aux_sym_cmd_identifier_token26] = ACTIONS(980), + [aux_sym_cmd_identifier_token27] = ACTIONS(980), + [aux_sym_cmd_identifier_token28] = ACTIONS(980), + [aux_sym_cmd_identifier_token29] = ACTIONS(980), + [aux_sym_cmd_identifier_token30] = ACTIONS(980), + [aux_sym_cmd_identifier_token31] = ACTIONS(980), + [aux_sym_cmd_identifier_token32] = ACTIONS(980), + [aux_sym_cmd_identifier_token33] = ACTIONS(980), + [aux_sym_cmd_identifier_token34] = ACTIONS(978), + [aux_sym_cmd_identifier_token35] = ACTIONS(980), + [aux_sym_cmd_identifier_token36] = ACTIONS(980), + [aux_sym_cmd_identifier_token37] = ACTIONS(980), + [aux_sym_cmd_identifier_token38] = ACTIONS(978), + [aux_sym_cmd_identifier_token39] = ACTIONS(980), + [aux_sym_cmd_identifier_token40] = ACTIONS(980), + [anon_sym_def] = ACTIONS(978), + [anon_sym_export_DASHenv] = ACTIONS(978), + [anon_sym_extern] = ACTIONS(978), + [anon_sym_module] = ACTIONS(978), + [anon_sym_use] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_COMMA] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(980), + [anon_sym_error] = ACTIONS(978), + [anon_sym_DASH2] = ACTIONS(978), + [anon_sym_break] = ACTIONS(978), + [anon_sym_continue] = ACTIONS(978), + [anon_sym_for] = ACTIONS(978), + [anon_sym_in2] = ACTIONS(978), + [anon_sym_loop] = ACTIONS(978), + [anon_sym_make] = ACTIONS(978), + [anon_sym_while] = ACTIONS(978), + [anon_sym_do] = ACTIONS(978), + [anon_sym_if] = ACTIONS(978), + [anon_sym_else] = ACTIONS(978), + [anon_sym_match] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_try] = ACTIONS(978), + [anon_sym_catch] = ACTIONS(978), + [anon_sym_return] = ACTIONS(978), + [anon_sym_source] = ACTIONS(978), + [anon_sym_source_DASHenv] = ACTIONS(978), + [anon_sym_register] = ACTIONS(978), + [anon_sym_hide] = ACTIONS(978), + [anon_sym_hide_DASHenv] = ACTIONS(978), + [anon_sym_overlay] = ACTIONS(978), + [anon_sym_as] = ACTIONS(978), + [anon_sym_QMARK2] = ACTIONS(2138), + [anon_sym_PLUS2] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(980), + [aux_sym__val_number_decimal_token1] = ACTIONS(978), + [aux_sym__val_number_decimal_token2] = ACTIONS(980), + [aux_sym__val_number_decimal_token3] = ACTIONS(980), + [aux_sym__val_number_decimal_token4] = ACTIONS(980), + [aux_sym__val_number_token1] = ACTIONS(980), + [aux_sym__val_number_token2] = ACTIONS(980), + [aux_sym__val_number_token3] = ACTIONS(980), + [aux_sym__val_number_token4] = ACTIONS(978), + [aux_sym__val_number_token5] = ACTIONS(978), + [aux_sym__val_number_token6] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(980), + [sym__str_single_quotes] = ACTIONS(980), + [sym__str_back_ticks] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(980), + [aux_sym_record_entry_token1] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(980), + }, + [485] = { + [sym_expr_parenthesized] = STATE(4270), + [sym__spread_parenthesized] = STATE(4636), + [sym_val_range] = STATE(4637), + [sym__val_range] = STATE(8054), + [sym__val_range_with_end] = STATE(7607), + [sym__value] = STATE(4637), + [sym_val_nothing] = STATE(4729), + [sym_val_bool] = STATE(4448), + [sym__spread_variable] = STATE(4638), + [sym_val_variable] = STATE(4308), + [sym_val_number] = STATE(4729), + [sym__val_number_decimal] = STATE(4053), + [sym__val_number] = STATE(4716), + [sym_val_duration] = STATE(4729), + [sym_val_filesize] = STATE(4729), + [sym_val_binary] = STATE(4729), + [sym_val_string] = STATE(4729), + [sym__raw_str] = STATE(4371), + [sym__str_double_quotes] = STATE(4371), + [sym_val_interpolated] = STATE(4729), + [sym__inter_single_quotes] = STATE(4731), + [sym__inter_double_quotes] = STATE(4732), + [sym_val_list] = STATE(4729), + [sym__spread_list] = STATE(4636), + [sym_val_record] = STATE(4729), + [sym_val_table] = STATE(4729), + [sym_val_closure] = STATE(4729), + [sym__cmd_arg] = STATE(4833), + [sym_redirection] = STATE(4642), + [sym_short_flag] = STATE(4644), + [sym_long_flag] = STATE(4644), + [sym_unquoted] = STATE(4395), + [sym__unquoted_with_expr] = STATE(4646), + [sym__unquoted_anonymous_prefix] = STATE(7186), + [sym_comment] = STATE(485), + [sym__newline] = ACTIONS(2140), + [sym__space] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2140), + [anon_sym_PIPE] = ACTIONS(2140), + [anon_sym_err_GT_PIPE] = ACTIONS(2140), + [anon_sym_out_GT_PIPE] = ACTIONS(2140), + [anon_sym_e_GT_PIPE] = ACTIONS(2140), + [anon_sym_o_GT_PIPE] = ACTIONS(2140), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2140), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2140), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2140), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2140), + [anon_sym_LBRACK] = ACTIONS(1956), + [anon_sym_LPAREN] = ACTIONS(1958), + [anon_sym_RPAREN] = ACTIONS(2140), + [anon_sym_DOLLAR] = ACTIONS(1960), + [anon_sym_DASH_DASH] = ACTIONS(1962), + [anon_sym_DASH2] = ACTIONS(1964), + [anon_sym_LBRACE] = ACTIONS(1966), + [anon_sym_DOT_DOT] = ACTIONS(1968), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1970), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1972), + [anon_sym_DOT_DOT_LT] = ACTIONS(1972), + [anon_sym_null] = ACTIONS(1974), + [anon_sym_true] = ACTIONS(1976), + [anon_sym_false] = ACTIONS(1976), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1978), + [aux_sym__val_number_decimal_token1] = ACTIONS(1980), + [aux_sym__val_number_decimal_token2] = ACTIONS(1980), + [aux_sym__val_number_decimal_token3] = ACTIONS(1982), + [aux_sym__val_number_decimal_token4] = ACTIONS(1984), + [aux_sym__val_number_token1] = ACTIONS(1986), + [aux_sym__val_number_token2] = ACTIONS(1986), + [aux_sym__val_number_token3] = ACTIONS(1986), + [aux_sym__val_number_token4] = ACTIONS(1988), + [aux_sym__val_number_token5] = ACTIONS(1988), + [aux_sym__val_number_token6] = ACTIONS(1988), + [anon_sym_0b] = ACTIONS(1990), + [anon_sym_0o] = ACTIONS(1992), + [anon_sym_0x] = ACTIONS(1992), + [sym_val_date] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1996), + [sym__str_single_quotes] = ACTIONS(1998), + [sym__str_back_ticks] = ACTIONS(1998), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2002), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2004), + [anon_sym_err_GT] = ACTIONS(2006), + [anon_sym_out_GT] = ACTIONS(2006), + [anon_sym_e_GT] = ACTIONS(2006), + [anon_sym_o_GT] = ACTIONS(2006), + [anon_sym_err_PLUSout_GT] = ACTIONS(2006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2006), + [anon_sym_o_PLUSe_GT] = ACTIONS(2006), + [anon_sym_e_PLUSo_GT] = ACTIONS(2006), + [anon_sym_err_GT_GT] = ACTIONS(2006), + [anon_sym_out_GT_GT] = ACTIONS(2006), + [anon_sym_e_GT_GT] = ACTIONS(2006), + [anon_sym_o_GT_GT] = ACTIONS(2006), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2006), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2006), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2006), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2006), + [aux_sym_unquoted_token1] = ACTIONS(2008), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2010), + }, + [486] = { + [sym_comment] = STATE(486), + [anon_sym_export] = ACTIONS(984), + [anon_sym_alias] = ACTIONS(984), + [anon_sym_let] = ACTIONS(984), + [anon_sym_let_DASHenv] = ACTIONS(984), + [anon_sym_mut] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [aux_sym_cmd_identifier_token1] = ACTIONS(984), + [aux_sym_cmd_identifier_token2] = ACTIONS(986), + [aux_sym_cmd_identifier_token3] = ACTIONS(986), + [aux_sym_cmd_identifier_token4] = ACTIONS(986), + [aux_sym_cmd_identifier_token5] = ACTIONS(986), + [aux_sym_cmd_identifier_token6] = ACTIONS(986), + [aux_sym_cmd_identifier_token7] = ACTIONS(986), + [aux_sym_cmd_identifier_token8] = ACTIONS(984), + [aux_sym_cmd_identifier_token9] = ACTIONS(984), + [aux_sym_cmd_identifier_token10] = ACTIONS(986), + [aux_sym_cmd_identifier_token11] = ACTIONS(986), + [aux_sym_cmd_identifier_token12] = ACTIONS(984), + [aux_sym_cmd_identifier_token13] = ACTIONS(984), + [aux_sym_cmd_identifier_token14] = ACTIONS(984), + [aux_sym_cmd_identifier_token15] = ACTIONS(984), + [aux_sym_cmd_identifier_token16] = ACTIONS(986), + [aux_sym_cmd_identifier_token17] = ACTIONS(986), + [aux_sym_cmd_identifier_token18] = ACTIONS(986), + [aux_sym_cmd_identifier_token19] = ACTIONS(986), + [aux_sym_cmd_identifier_token20] = ACTIONS(986), + [aux_sym_cmd_identifier_token21] = ACTIONS(986), + [aux_sym_cmd_identifier_token22] = ACTIONS(986), + [aux_sym_cmd_identifier_token23] = ACTIONS(986), + [aux_sym_cmd_identifier_token24] = ACTIONS(986), + [aux_sym_cmd_identifier_token25] = ACTIONS(986), + [aux_sym_cmd_identifier_token26] = ACTIONS(986), + [aux_sym_cmd_identifier_token27] = ACTIONS(986), + [aux_sym_cmd_identifier_token28] = ACTIONS(986), + [aux_sym_cmd_identifier_token29] = ACTIONS(986), + [aux_sym_cmd_identifier_token30] = ACTIONS(986), + [aux_sym_cmd_identifier_token31] = ACTIONS(986), + [aux_sym_cmd_identifier_token32] = ACTIONS(986), + [aux_sym_cmd_identifier_token33] = ACTIONS(986), + [aux_sym_cmd_identifier_token34] = ACTIONS(984), + [aux_sym_cmd_identifier_token35] = ACTIONS(986), + [aux_sym_cmd_identifier_token36] = ACTIONS(986), + [aux_sym_cmd_identifier_token37] = ACTIONS(986), + [aux_sym_cmd_identifier_token38] = ACTIONS(984), + [aux_sym_cmd_identifier_token39] = ACTIONS(986), + [aux_sym_cmd_identifier_token40] = ACTIONS(986), + [anon_sym_def] = ACTIONS(984), + [anon_sym_export_DASHenv] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [anon_sym_use] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_COMMA] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_error] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_in2] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(984), + [anon_sym_make] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_match] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_try] = ACTIONS(984), + [anon_sym_catch] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_source] = ACTIONS(984), + [anon_sym_source_DASHenv] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_hide] = ACTIONS(984), + [anon_sym_hide_DASHenv] = ACTIONS(984), + [anon_sym_overlay] = ACTIONS(984), + [anon_sym_as] = ACTIONS(984), + [anon_sym_QMARK2] = ACTIONS(2144), + [anon_sym_PLUS2] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), + [anon_sym_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), + [aux_sym__val_number_decimal_token1] = ACTIONS(984), + [aux_sym__val_number_decimal_token2] = ACTIONS(986), + [aux_sym__val_number_decimal_token3] = ACTIONS(986), + [aux_sym__val_number_decimal_token4] = ACTIONS(986), + [aux_sym__val_number_token1] = ACTIONS(986), + [aux_sym__val_number_token2] = ACTIONS(986), + [aux_sym__val_number_token3] = ACTIONS(986), + [aux_sym__val_number_token4] = ACTIONS(984), + [aux_sym__val_number_token5] = ACTIONS(984), + [aux_sym__val_number_token6] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym__str_single_quotes] = ACTIONS(986), + [sym__str_back_ticks] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), + [aux_sym_record_entry_token1] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(986), + }, + [487] = { + [sym_comment] = STATE(487), + [anon_sym_export] = ACTIONS(2146), + [anon_sym_alias] = ACTIONS(2146), + [anon_sym_let] = ACTIONS(2146), + [anon_sym_let_DASHenv] = ACTIONS(2146), + [anon_sym_mut] = ACTIONS(2146), + [anon_sym_const] = ACTIONS(2146), + [aux_sym_cmd_identifier_token1] = ACTIONS(2146), + [aux_sym_cmd_identifier_token2] = ACTIONS(2146), + [aux_sym_cmd_identifier_token3] = ACTIONS(2146), + [aux_sym_cmd_identifier_token4] = ACTIONS(2146), + [aux_sym_cmd_identifier_token5] = ACTIONS(2146), + [aux_sym_cmd_identifier_token6] = ACTIONS(2146), + [aux_sym_cmd_identifier_token7] = ACTIONS(2146), + [aux_sym_cmd_identifier_token8] = ACTIONS(2146), + [aux_sym_cmd_identifier_token9] = ACTIONS(2146), + [aux_sym_cmd_identifier_token10] = ACTIONS(2146), + [aux_sym_cmd_identifier_token11] = ACTIONS(2146), + [aux_sym_cmd_identifier_token12] = ACTIONS(2146), + [aux_sym_cmd_identifier_token13] = ACTIONS(2146), + [aux_sym_cmd_identifier_token14] = ACTIONS(2146), + [aux_sym_cmd_identifier_token15] = ACTIONS(2146), + [aux_sym_cmd_identifier_token16] = ACTIONS(2146), + [aux_sym_cmd_identifier_token17] = ACTIONS(2146), + [aux_sym_cmd_identifier_token18] = ACTIONS(2146), + [aux_sym_cmd_identifier_token19] = ACTIONS(2146), + [aux_sym_cmd_identifier_token20] = ACTIONS(2146), + [aux_sym_cmd_identifier_token21] = ACTIONS(2146), + [aux_sym_cmd_identifier_token22] = ACTIONS(2146), + [aux_sym_cmd_identifier_token23] = ACTIONS(2146), + [aux_sym_cmd_identifier_token24] = ACTIONS(2146), + [aux_sym_cmd_identifier_token25] = ACTIONS(2146), + [aux_sym_cmd_identifier_token26] = ACTIONS(2146), + [aux_sym_cmd_identifier_token27] = ACTIONS(2146), + [aux_sym_cmd_identifier_token28] = ACTIONS(2146), + [aux_sym_cmd_identifier_token29] = ACTIONS(2146), + [aux_sym_cmd_identifier_token30] = ACTIONS(2146), + [aux_sym_cmd_identifier_token31] = ACTIONS(2146), + [aux_sym_cmd_identifier_token32] = ACTIONS(2146), + [aux_sym_cmd_identifier_token33] = ACTIONS(2146), + [aux_sym_cmd_identifier_token34] = ACTIONS(2146), + [aux_sym_cmd_identifier_token35] = ACTIONS(2146), + [aux_sym_cmd_identifier_token36] = ACTIONS(2146), + [aux_sym_cmd_identifier_token37] = ACTIONS(2146), + [aux_sym_cmd_identifier_token38] = ACTIONS(2146), + [aux_sym_cmd_identifier_token39] = ACTIONS(2146), + [aux_sym_cmd_identifier_token40] = ACTIONS(2146), + [anon_sym_def] = ACTIONS(2146), + [anon_sym_export_DASHenv] = ACTIONS(2146), + [anon_sym_extern] = ACTIONS(2146), + [anon_sym_module] = ACTIONS(2146), + [anon_sym_use] = ACTIONS(2146), + [anon_sym_LPAREN] = ACTIONS(2146), + [anon_sym_DOLLAR] = ACTIONS(2146), + [anon_sym_error] = ACTIONS(2146), + [anon_sym_DASH2] = ACTIONS(2146), + [anon_sym_break] = ACTIONS(2146), + [anon_sym_continue] = ACTIONS(2146), + [anon_sym_for] = ACTIONS(2146), + [anon_sym_in2] = ACTIONS(2146), + [anon_sym_loop] = ACTIONS(2146), + [anon_sym_make] = ACTIONS(2146), + [anon_sym_while] = ACTIONS(2146), + [anon_sym_do] = ACTIONS(2146), + [anon_sym_if] = ACTIONS(2146), + [anon_sym_else] = ACTIONS(2146), + [anon_sym_match] = ACTIONS(2146), + [anon_sym_RBRACE] = ACTIONS(2146), + [anon_sym_try] = ACTIONS(2146), + [anon_sym_catch] = ACTIONS(2146), + [anon_sym_return] = ACTIONS(2146), + [anon_sym_source] = ACTIONS(2146), + [anon_sym_source_DASHenv] = ACTIONS(2146), + [anon_sym_register] = ACTIONS(2146), + [anon_sym_hide] = ACTIONS(2146), + [anon_sym_hide_DASHenv] = ACTIONS(2146), + [anon_sym_overlay] = ACTIONS(2146), + [anon_sym_as] = ACTIONS(2146), + [anon_sym_PLUS2] = ACTIONS(2146), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2146), + [anon_sym_DOT_DOT2] = ACTIONS(2148), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2150), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2150), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2146), + [aux_sym__val_number_decimal_token1] = ACTIONS(2146), + [aux_sym__val_number_decimal_token2] = ACTIONS(2146), + [aux_sym__val_number_decimal_token3] = ACTIONS(2146), + [aux_sym__val_number_decimal_token4] = ACTIONS(2146), + [aux_sym__val_number_token1] = ACTIONS(2146), + [aux_sym__val_number_token2] = ACTIONS(2146), + [aux_sym__val_number_token3] = ACTIONS(2146), + [aux_sym__val_number_token4] = ACTIONS(2146), + [aux_sym__val_number_token5] = ACTIONS(2146), + [aux_sym__val_number_token6] = ACTIONS(2146), + [anon_sym_DQUOTE] = ACTIONS(2146), + [sym__str_single_quotes] = ACTIONS(2146), + [sym__str_back_ticks] = ACTIONS(2146), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2146), + [sym__entry_separator] = ACTIONS(2152), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2152), + }, + [488] = { + [sym_comment] = STATE(488), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_alias] = ACTIONS(1044), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_let_DASHenv] = ACTIONS(1044), + [anon_sym_mut] = ACTIONS(1044), + [anon_sym_const] = ACTIONS(1044), + [aux_sym_cmd_identifier_token1] = ACTIONS(1044), + [aux_sym_cmd_identifier_token2] = ACTIONS(1044), + [aux_sym_cmd_identifier_token3] = ACTIONS(1044), + [aux_sym_cmd_identifier_token4] = ACTIONS(1044), + [aux_sym_cmd_identifier_token5] = ACTIONS(1044), + [aux_sym_cmd_identifier_token6] = ACTIONS(1044), + [aux_sym_cmd_identifier_token7] = ACTIONS(1044), + [aux_sym_cmd_identifier_token8] = ACTIONS(1044), + [aux_sym_cmd_identifier_token9] = ACTIONS(1044), + [aux_sym_cmd_identifier_token10] = ACTIONS(1044), + [aux_sym_cmd_identifier_token11] = ACTIONS(1044), + [aux_sym_cmd_identifier_token12] = ACTIONS(1044), + [aux_sym_cmd_identifier_token13] = ACTIONS(1044), + [aux_sym_cmd_identifier_token14] = ACTIONS(1044), + [aux_sym_cmd_identifier_token15] = ACTIONS(1044), + [aux_sym_cmd_identifier_token16] = ACTIONS(1044), + [aux_sym_cmd_identifier_token17] = ACTIONS(1044), + [aux_sym_cmd_identifier_token18] = ACTIONS(1044), + [aux_sym_cmd_identifier_token19] = ACTIONS(1044), + [aux_sym_cmd_identifier_token20] = ACTIONS(1044), + [aux_sym_cmd_identifier_token21] = ACTIONS(1044), + [aux_sym_cmd_identifier_token22] = ACTIONS(1044), + [aux_sym_cmd_identifier_token23] = ACTIONS(1044), + [aux_sym_cmd_identifier_token24] = ACTIONS(1044), + [aux_sym_cmd_identifier_token25] = ACTIONS(1044), + [aux_sym_cmd_identifier_token26] = ACTIONS(1044), + [aux_sym_cmd_identifier_token27] = ACTIONS(1044), + [aux_sym_cmd_identifier_token28] = ACTIONS(1044), + [aux_sym_cmd_identifier_token29] = ACTIONS(1044), + [aux_sym_cmd_identifier_token30] = ACTIONS(1044), + [aux_sym_cmd_identifier_token31] = ACTIONS(1044), + [aux_sym_cmd_identifier_token32] = ACTIONS(1044), + [aux_sym_cmd_identifier_token33] = ACTIONS(1044), + [aux_sym_cmd_identifier_token34] = ACTIONS(1044), + [aux_sym_cmd_identifier_token35] = ACTIONS(1044), + [aux_sym_cmd_identifier_token36] = ACTIONS(1044), + [aux_sym_cmd_identifier_token37] = ACTIONS(1044), + [aux_sym_cmd_identifier_token38] = ACTIONS(1044), + [aux_sym_cmd_identifier_token39] = ACTIONS(1044), + [aux_sym_cmd_identifier_token40] = ACTIONS(1044), + [anon_sym_def] = ACTIONS(1044), + [anon_sym_export_DASHenv] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_use] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_error] = ACTIONS(1044), + [anon_sym_DASH2] = ACTIONS(1044), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_in2] = ACTIONS(1044), + [anon_sym_loop] = ACTIONS(1044), + [anon_sym_make] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [anon_sym_do] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_else] = ACTIONS(1044), + [anon_sym_match] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1044), + [anon_sym_try] = ACTIONS(1044), + [anon_sym_catch] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_source] = ACTIONS(1044), + [anon_sym_source_DASHenv] = ACTIONS(1044), + [anon_sym_register] = ACTIONS(1044), + [anon_sym_hide] = ACTIONS(1044), + [anon_sym_hide_DASHenv] = ACTIONS(1044), + [anon_sym_overlay] = ACTIONS(1044), + [anon_sym_as] = ACTIONS(1044), + [anon_sym_PLUS2] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1044), + [anon_sym_DOT_DOT2] = ACTIONS(1044), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1044), + [aux_sym__val_number_decimal_token1] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1044), + [aux_sym__val_number_decimal_token3] = ACTIONS(1044), + [aux_sym__val_number_decimal_token4] = ACTIONS(1044), + [aux_sym__val_number_token1] = ACTIONS(1044), + [aux_sym__val_number_token2] = ACTIONS(1044), + [aux_sym__val_number_token3] = ACTIONS(1044), + [aux_sym__val_number_token4] = ACTIONS(1044), + [aux_sym__val_number_token5] = ACTIONS(1044), + [aux_sym__val_number_token6] = ACTIONS(1044), + [anon_sym_DQUOTE] = ACTIONS(1044), + [sym__str_single_quotes] = ACTIONS(1044), + [sym__str_back_ticks] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1044), + [sym__entry_separator] = ACTIONS(1046), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1046), + }, + [489] = { + [sym_comment] = STATE(489), + [anon_sym_export] = ACTIONS(990), + [anon_sym_alias] = ACTIONS(990), + [anon_sym_let] = ACTIONS(990), + [anon_sym_let_DASHenv] = ACTIONS(990), + [anon_sym_mut] = ACTIONS(990), + [anon_sym_const] = ACTIONS(990), + [aux_sym_cmd_identifier_token1] = ACTIONS(990), + [aux_sym_cmd_identifier_token2] = ACTIONS(992), + [aux_sym_cmd_identifier_token3] = ACTIONS(992), + [aux_sym_cmd_identifier_token4] = ACTIONS(992), + [aux_sym_cmd_identifier_token5] = ACTIONS(992), + [aux_sym_cmd_identifier_token6] = ACTIONS(992), + [aux_sym_cmd_identifier_token7] = ACTIONS(992), + [aux_sym_cmd_identifier_token8] = ACTIONS(990), + [aux_sym_cmd_identifier_token9] = ACTIONS(990), + [aux_sym_cmd_identifier_token10] = ACTIONS(992), + [aux_sym_cmd_identifier_token11] = ACTIONS(992), + [aux_sym_cmd_identifier_token12] = ACTIONS(990), + [aux_sym_cmd_identifier_token13] = ACTIONS(990), + [aux_sym_cmd_identifier_token14] = ACTIONS(990), + [aux_sym_cmd_identifier_token15] = ACTIONS(990), + [aux_sym_cmd_identifier_token16] = ACTIONS(992), + [aux_sym_cmd_identifier_token17] = ACTIONS(992), + [aux_sym_cmd_identifier_token18] = ACTIONS(992), + [aux_sym_cmd_identifier_token19] = ACTIONS(992), + [aux_sym_cmd_identifier_token20] = ACTIONS(992), + [aux_sym_cmd_identifier_token21] = ACTIONS(992), + [aux_sym_cmd_identifier_token22] = ACTIONS(992), + [aux_sym_cmd_identifier_token23] = ACTIONS(992), + [aux_sym_cmd_identifier_token24] = ACTIONS(992), + [aux_sym_cmd_identifier_token25] = ACTIONS(992), + [aux_sym_cmd_identifier_token26] = ACTIONS(992), + [aux_sym_cmd_identifier_token27] = ACTIONS(992), + [aux_sym_cmd_identifier_token28] = ACTIONS(992), + [aux_sym_cmd_identifier_token29] = ACTIONS(992), + [aux_sym_cmd_identifier_token30] = ACTIONS(992), + [aux_sym_cmd_identifier_token31] = ACTIONS(992), + [aux_sym_cmd_identifier_token32] = ACTIONS(992), + [aux_sym_cmd_identifier_token33] = ACTIONS(992), + [aux_sym_cmd_identifier_token34] = ACTIONS(990), + [aux_sym_cmd_identifier_token35] = ACTIONS(992), + [aux_sym_cmd_identifier_token36] = ACTIONS(992), + [aux_sym_cmd_identifier_token37] = ACTIONS(992), + [aux_sym_cmd_identifier_token38] = ACTIONS(990), + [aux_sym_cmd_identifier_token39] = ACTIONS(992), + [aux_sym_cmd_identifier_token40] = ACTIONS(992), + [anon_sym_def] = ACTIONS(990), + [anon_sym_export_DASHenv] = ACTIONS(990), + [anon_sym_extern] = ACTIONS(990), + [anon_sym_module] = ACTIONS(990), + [anon_sym_use] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_COMMA] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(992), + [anon_sym_error] = ACTIONS(990), + [anon_sym_DASH2] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_continue] = ACTIONS(990), + [anon_sym_for] = ACTIONS(990), + [anon_sym_in2] = ACTIONS(990), + [anon_sym_loop] = ACTIONS(990), + [anon_sym_make] = ACTIONS(990), + [anon_sym_while] = ACTIONS(990), + [anon_sym_do] = ACTIONS(990), + [anon_sym_if] = ACTIONS(990), + [anon_sym_else] = ACTIONS(990), + [anon_sym_match] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_try] = ACTIONS(990), + [anon_sym_catch] = ACTIONS(990), + [anon_sym_return] = ACTIONS(990), + [anon_sym_source] = ACTIONS(990), + [anon_sym_source_DASHenv] = ACTIONS(990), + [anon_sym_register] = ACTIONS(990), + [anon_sym_hide] = ACTIONS(990), + [anon_sym_hide_DASHenv] = ACTIONS(990), + [anon_sym_overlay] = ACTIONS(990), + [anon_sym_as] = ACTIONS(990), + [anon_sym_QMARK2] = ACTIONS(992), + [anon_sym_PLUS2] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = ACTIONS(992), + [aux_sym__val_number_decimal_token4] = ACTIONS(992), + [aux_sym__val_number_token1] = ACTIONS(992), + [aux_sym__val_number_token2] = ACTIONS(992), + [aux_sym__val_number_token3] = ACTIONS(992), + [aux_sym__val_number_token4] = ACTIONS(990), + [aux_sym__val_number_token5] = ACTIONS(990), + [aux_sym__val_number_token6] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(992), + [aux_sym_record_entry_token1] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(992), + }, + [490] = { + [sym_comment] = STATE(490), + [anon_sym_export] = ACTIONS(994), + [anon_sym_alias] = ACTIONS(994), + [anon_sym_let] = ACTIONS(994), + [anon_sym_let_DASHenv] = ACTIONS(994), + [anon_sym_mut] = ACTIONS(994), + [anon_sym_const] = ACTIONS(994), + [aux_sym_cmd_identifier_token1] = ACTIONS(994), + [aux_sym_cmd_identifier_token2] = ACTIONS(996), + [aux_sym_cmd_identifier_token3] = ACTIONS(996), + [aux_sym_cmd_identifier_token4] = ACTIONS(996), + [aux_sym_cmd_identifier_token5] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(996), + [aux_sym_cmd_identifier_token7] = ACTIONS(996), + [aux_sym_cmd_identifier_token8] = ACTIONS(994), + [aux_sym_cmd_identifier_token9] = ACTIONS(994), + [aux_sym_cmd_identifier_token10] = ACTIONS(996), + [aux_sym_cmd_identifier_token11] = ACTIONS(996), + [aux_sym_cmd_identifier_token12] = ACTIONS(994), + [aux_sym_cmd_identifier_token13] = ACTIONS(994), + [aux_sym_cmd_identifier_token14] = ACTIONS(994), + [aux_sym_cmd_identifier_token15] = ACTIONS(994), + [aux_sym_cmd_identifier_token16] = ACTIONS(996), + [aux_sym_cmd_identifier_token17] = ACTIONS(996), + [aux_sym_cmd_identifier_token18] = ACTIONS(996), + [aux_sym_cmd_identifier_token19] = ACTIONS(996), + [aux_sym_cmd_identifier_token20] = ACTIONS(996), + [aux_sym_cmd_identifier_token21] = ACTIONS(996), + [aux_sym_cmd_identifier_token22] = ACTIONS(996), + [aux_sym_cmd_identifier_token23] = ACTIONS(996), + [aux_sym_cmd_identifier_token24] = ACTIONS(996), + [aux_sym_cmd_identifier_token25] = ACTIONS(996), + [aux_sym_cmd_identifier_token26] = ACTIONS(996), + [aux_sym_cmd_identifier_token27] = ACTIONS(996), + [aux_sym_cmd_identifier_token28] = ACTIONS(996), + [aux_sym_cmd_identifier_token29] = ACTIONS(996), + [aux_sym_cmd_identifier_token30] = ACTIONS(996), + [aux_sym_cmd_identifier_token31] = ACTIONS(996), + [aux_sym_cmd_identifier_token32] = ACTIONS(996), + [aux_sym_cmd_identifier_token33] = ACTIONS(996), + [aux_sym_cmd_identifier_token34] = ACTIONS(994), + [aux_sym_cmd_identifier_token35] = ACTIONS(996), + [aux_sym_cmd_identifier_token36] = ACTIONS(996), + [aux_sym_cmd_identifier_token37] = ACTIONS(996), + [aux_sym_cmd_identifier_token38] = ACTIONS(994), + [aux_sym_cmd_identifier_token39] = ACTIONS(996), + [aux_sym_cmd_identifier_token40] = ACTIONS(996), + [anon_sym_def] = ACTIONS(994), + [anon_sym_export_DASHenv] = ACTIONS(994), + [anon_sym_extern] = ACTIONS(994), + [anon_sym_module] = ACTIONS(994), + [anon_sym_use] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(996), + [anon_sym_error] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_break] = ACTIONS(994), + [anon_sym_continue] = ACTIONS(994), + [anon_sym_for] = ACTIONS(994), + [anon_sym_in2] = ACTIONS(994), + [anon_sym_loop] = ACTIONS(994), + [anon_sym_make] = ACTIONS(994), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(994), + [anon_sym_if] = ACTIONS(994), + [anon_sym_else] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_try] = ACTIONS(994), + [anon_sym_catch] = ACTIONS(994), + [anon_sym_return] = ACTIONS(994), + [anon_sym_source] = ACTIONS(994), + [anon_sym_source_DASHenv] = ACTIONS(994), + [anon_sym_register] = ACTIONS(994), + [anon_sym_hide] = ACTIONS(994), + [anon_sym_hide_DASHenv] = ACTIONS(994), + [anon_sym_overlay] = ACTIONS(994), [anon_sym_as] = ACTIONS(994), [anon_sym_QMARK2] = ACTIONS(996), [anon_sym_PLUS2] = ACTIONS(994), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(996), - [anon_sym_DOT_DOT2] = ACTIONS(994), [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), - [anon_sym_DOT_DOT_LT2] = ACTIONS(996), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(996), [aux_sym__val_number_decimal_token1] = ACTIONS(994), [aux_sym__val_number_decimal_token2] = ACTIONS(996), @@ -122782,11 +129094,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(996), [sym__str_back_ticks] = ACTIONS(996), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(996), + [aux_sym_record_entry_token1] = ACTIONS(996), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(996), }, - [433] = { - [sym_comment] = STATE(433), + [491] = { + [sym_comment] = STATE(491), [anon_sym_export] = ACTIONS(998), [anon_sym_alias] = ACTIONS(998), [anon_sym_let] = ACTIONS(998), @@ -122839,6 +129152,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(998), [anon_sym_use] = ACTIONS(998), [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_COMMA] = ACTIONS(1000), [anon_sym_DOLLAR] = ACTIONS(1000), [anon_sym_error] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(998), @@ -122867,10 +129181,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK2] = ACTIONS(1000), [anon_sym_PLUS2] = ACTIONS(998), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1000), - [anon_sym_DOT_DOT2] = ACTIONS(998), [anon_sym_DOT] = ACTIONS(998), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1000), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1000), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1000), [aux_sym__val_number_decimal_token1] = ACTIONS(998), [aux_sym__val_number_decimal_token2] = ACTIONS(1000), @@ -122886,11 +129197,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(1000), [sym__str_back_ticks] = ACTIONS(1000), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1000), + [aux_sym_record_entry_token1] = ACTIONS(1000), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1000), }, - [434] = { - [sym_comment] = STATE(434), + [492] = { + [sym_comment] = STATE(492), [anon_sym_export] = ACTIONS(1002), [anon_sym_alias] = ACTIONS(1002), [anon_sym_let] = ACTIONS(1002), @@ -122943,6 +129255,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(1002), [anon_sym_use] = ACTIONS(1002), [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_COMMA] = ACTIONS(1004), [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_error] = ACTIONS(1002), [anon_sym_DASH2] = ACTIONS(1002), @@ -122971,10 +129284,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK2] = ACTIONS(1004), [anon_sym_PLUS2] = ACTIONS(1002), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1004), - [anon_sym_DOT_DOT2] = ACTIONS(1002), [anon_sym_DOT] = ACTIONS(1002), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1004), [aux_sym__val_number_decimal_token1] = ACTIONS(1002), [aux_sym__val_number_decimal_token2] = ACTIONS(1004), @@ -122990,2400 +129300,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(1004), [sym__str_back_ticks] = ACTIONS(1004), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1004), + [aux_sym_record_entry_token1] = ACTIONS(1004), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1004), }, - [435] = { - [sym_comment] = STATE(435), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [aux_sym_cmd_identifier_token1] = ACTIONS(990), - [aux_sym_cmd_identifier_token2] = ACTIONS(992), - [aux_sym_cmd_identifier_token3] = ACTIONS(992), - [aux_sym_cmd_identifier_token4] = ACTIONS(992), - [aux_sym_cmd_identifier_token5] = ACTIONS(992), - [aux_sym_cmd_identifier_token6] = ACTIONS(992), - [aux_sym_cmd_identifier_token7] = ACTIONS(992), - [aux_sym_cmd_identifier_token8] = ACTIONS(990), - [aux_sym_cmd_identifier_token9] = ACTIONS(990), - [aux_sym_cmd_identifier_token10] = ACTIONS(992), - [aux_sym_cmd_identifier_token11] = ACTIONS(992), - [aux_sym_cmd_identifier_token12] = ACTIONS(990), - [aux_sym_cmd_identifier_token13] = ACTIONS(990), - [aux_sym_cmd_identifier_token14] = ACTIONS(990), - [aux_sym_cmd_identifier_token15] = ACTIONS(990), - [aux_sym_cmd_identifier_token16] = ACTIONS(992), - [aux_sym_cmd_identifier_token17] = ACTIONS(992), - [aux_sym_cmd_identifier_token18] = ACTIONS(992), - [aux_sym_cmd_identifier_token19] = ACTIONS(992), - [aux_sym_cmd_identifier_token20] = ACTIONS(992), - [aux_sym_cmd_identifier_token21] = ACTIONS(992), - [aux_sym_cmd_identifier_token22] = ACTIONS(992), - [aux_sym_cmd_identifier_token23] = ACTIONS(992), - [aux_sym_cmd_identifier_token24] = ACTIONS(992), - [aux_sym_cmd_identifier_token25] = ACTIONS(992), - [aux_sym_cmd_identifier_token26] = ACTIONS(992), - [aux_sym_cmd_identifier_token27] = ACTIONS(992), - [aux_sym_cmd_identifier_token28] = ACTIONS(992), - [aux_sym_cmd_identifier_token29] = ACTIONS(992), - [aux_sym_cmd_identifier_token30] = ACTIONS(992), - [aux_sym_cmd_identifier_token31] = ACTIONS(992), - [aux_sym_cmd_identifier_token32] = ACTIONS(992), - [aux_sym_cmd_identifier_token33] = ACTIONS(992), - [aux_sym_cmd_identifier_token34] = ACTIONS(990), - [aux_sym_cmd_identifier_token35] = ACTIONS(992), - [aux_sym_cmd_identifier_token36] = ACTIONS(992), - [aux_sym_cmd_identifier_token37] = ACTIONS(992), - [aux_sym_cmd_identifier_token38] = ACTIONS(990), - [aux_sym_cmd_identifier_token39] = ACTIONS(992), - [aux_sym_cmd_identifier_token40] = ACTIONS(992), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_error] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in2] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_make] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_try] = ACTIONS(990), - [anon_sym_catch] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(992), - [anon_sym_PLUS2] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(992), - [aux_sym__val_number_decimal_token3] = ACTIONS(992), - [aux_sym__val_number_decimal_token4] = ACTIONS(992), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(992), - }, - [436] = { - [sym_cell_path] = STATE(675), - [sym_path] = STATE(569), - [sym_comment] = STATE(436), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(1996), - [anon_sym_alias] = ACTIONS(1996), - [anon_sym_let] = ACTIONS(1996), - [anon_sym_let_DASHenv] = ACTIONS(1996), - [anon_sym_mut] = ACTIONS(1996), - [anon_sym_const] = ACTIONS(1996), - [aux_sym_cmd_identifier_token1] = ACTIONS(1996), - [aux_sym_cmd_identifier_token2] = ACTIONS(1996), - [aux_sym_cmd_identifier_token3] = ACTIONS(1996), - [aux_sym_cmd_identifier_token4] = ACTIONS(1996), - [aux_sym_cmd_identifier_token5] = ACTIONS(1996), - [aux_sym_cmd_identifier_token6] = ACTIONS(1996), - [aux_sym_cmd_identifier_token7] = ACTIONS(1996), - [aux_sym_cmd_identifier_token8] = ACTIONS(1996), - [aux_sym_cmd_identifier_token9] = ACTIONS(1996), - [aux_sym_cmd_identifier_token10] = ACTIONS(1996), - [aux_sym_cmd_identifier_token11] = ACTIONS(1996), - [aux_sym_cmd_identifier_token12] = ACTIONS(1996), - [aux_sym_cmd_identifier_token13] = ACTIONS(1996), - [aux_sym_cmd_identifier_token14] = ACTIONS(1996), - [aux_sym_cmd_identifier_token15] = ACTIONS(1996), - [aux_sym_cmd_identifier_token16] = ACTIONS(1996), - [aux_sym_cmd_identifier_token17] = ACTIONS(1996), - [aux_sym_cmd_identifier_token18] = ACTIONS(1996), - [aux_sym_cmd_identifier_token19] = ACTIONS(1996), - [aux_sym_cmd_identifier_token20] = ACTIONS(1996), - [aux_sym_cmd_identifier_token21] = ACTIONS(1996), - [aux_sym_cmd_identifier_token22] = ACTIONS(1996), - [aux_sym_cmd_identifier_token23] = ACTIONS(1996), - [aux_sym_cmd_identifier_token24] = ACTIONS(1996), - [aux_sym_cmd_identifier_token25] = ACTIONS(1996), - [aux_sym_cmd_identifier_token26] = ACTIONS(1996), - [aux_sym_cmd_identifier_token27] = ACTIONS(1996), - [aux_sym_cmd_identifier_token28] = ACTIONS(1996), - [aux_sym_cmd_identifier_token29] = ACTIONS(1996), - [aux_sym_cmd_identifier_token30] = ACTIONS(1996), - [aux_sym_cmd_identifier_token31] = ACTIONS(1996), - [aux_sym_cmd_identifier_token32] = ACTIONS(1996), - [aux_sym_cmd_identifier_token33] = ACTIONS(1996), - [aux_sym_cmd_identifier_token34] = ACTIONS(1996), - [aux_sym_cmd_identifier_token35] = ACTIONS(1996), - [aux_sym_cmd_identifier_token36] = ACTIONS(1996), - [aux_sym_cmd_identifier_token37] = ACTIONS(1996), - [aux_sym_cmd_identifier_token38] = ACTIONS(1996), - [aux_sym_cmd_identifier_token39] = ACTIONS(1996), - [aux_sym_cmd_identifier_token40] = ACTIONS(1996), - [anon_sym_def] = ACTIONS(1996), - [anon_sym_export_DASHenv] = ACTIONS(1996), - [anon_sym_extern] = ACTIONS(1996), - [anon_sym_module] = ACTIONS(1996), - [anon_sym_use] = ACTIONS(1996), - [anon_sym_LPAREN] = ACTIONS(1996), - [anon_sym_DOLLAR] = ACTIONS(1996), - [anon_sym_error] = ACTIONS(1996), - [anon_sym_DASH2] = ACTIONS(1996), - [anon_sym_break] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(1996), - [anon_sym_for] = ACTIONS(1996), - [anon_sym_in2] = ACTIONS(1996), - [anon_sym_loop] = ACTIONS(1996), - [anon_sym_make] = ACTIONS(1996), - [anon_sym_while] = ACTIONS(1996), - [anon_sym_do] = ACTIONS(1996), - [anon_sym_if] = ACTIONS(1996), - [anon_sym_else] = ACTIONS(1996), - [anon_sym_match] = ACTIONS(1996), - [anon_sym_RBRACE] = ACTIONS(1996), - [anon_sym_try] = ACTIONS(1996), - [anon_sym_catch] = ACTIONS(1996), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_source] = ACTIONS(1996), - [anon_sym_source_DASHenv] = ACTIONS(1996), - [anon_sym_register] = ACTIONS(1996), - [anon_sym_hide] = ACTIONS(1996), - [anon_sym_hide_DASHenv] = ACTIONS(1996), - [anon_sym_overlay] = ACTIONS(1996), - [anon_sym_as] = ACTIONS(1996), - [anon_sym_PLUS2] = ACTIONS(1996), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1996), - [anon_sym_DOT] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1996), - [aux_sym__val_number_decimal_token1] = ACTIONS(1996), - [aux_sym__val_number_decimal_token2] = ACTIONS(1996), - [aux_sym__val_number_decimal_token3] = ACTIONS(1996), - [aux_sym__val_number_decimal_token4] = ACTIONS(1996), - [aux_sym__val_number_token1] = ACTIONS(1996), - [aux_sym__val_number_token2] = ACTIONS(1996), - [aux_sym__val_number_token3] = ACTIONS(1996), - [aux_sym__val_number_token4] = ACTIONS(1996), - [aux_sym__val_number_token5] = ACTIONS(1996), - [aux_sym__val_number_token6] = ACTIONS(1996), - [anon_sym_DQUOTE] = ACTIONS(1996), - [sym__str_single_quotes] = ACTIONS(1996), - [sym__str_back_ticks] = ACTIONS(1996), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1996), - [sym__entry_separator] = ACTIONS(1998), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1998), - }, - [437] = { - [sym_cell_path] = STATE(686), - [sym_path] = STATE(569), - [sym_comment] = STATE(437), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(2000), - [anon_sym_alias] = ACTIONS(2000), - [anon_sym_let] = ACTIONS(2000), - [anon_sym_let_DASHenv] = ACTIONS(2000), - [anon_sym_mut] = ACTIONS(2000), - [anon_sym_const] = ACTIONS(2000), - [aux_sym_cmd_identifier_token1] = ACTIONS(2000), - [aux_sym_cmd_identifier_token2] = ACTIONS(2000), - [aux_sym_cmd_identifier_token3] = ACTIONS(2000), - [aux_sym_cmd_identifier_token4] = ACTIONS(2000), - [aux_sym_cmd_identifier_token5] = ACTIONS(2000), - [aux_sym_cmd_identifier_token6] = ACTIONS(2000), - [aux_sym_cmd_identifier_token7] = ACTIONS(2000), - [aux_sym_cmd_identifier_token8] = ACTIONS(2000), - [aux_sym_cmd_identifier_token9] = ACTIONS(2000), - [aux_sym_cmd_identifier_token10] = ACTIONS(2000), - [aux_sym_cmd_identifier_token11] = ACTIONS(2000), - [aux_sym_cmd_identifier_token12] = ACTIONS(2000), - [aux_sym_cmd_identifier_token13] = ACTIONS(2000), - [aux_sym_cmd_identifier_token14] = ACTIONS(2000), - [aux_sym_cmd_identifier_token15] = ACTIONS(2000), - [aux_sym_cmd_identifier_token16] = ACTIONS(2000), - [aux_sym_cmd_identifier_token17] = ACTIONS(2000), - [aux_sym_cmd_identifier_token18] = ACTIONS(2000), - [aux_sym_cmd_identifier_token19] = ACTIONS(2000), - [aux_sym_cmd_identifier_token20] = ACTIONS(2000), - [aux_sym_cmd_identifier_token21] = ACTIONS(2000), - [aux_sym_cmd_identifier_token22] = ACTIONS(2000), - [aux_sym_cmd_identifier_token23] = ACTIONS(2000), - [aux_sym_cmd_identifier_token24] = ACTIONS(2000), - [aux_sym_cmd_identifier_token25] = ACTIONS(2000), - [aux_sym_cmd_identifier_token26] = ACTIONS(2000), - [aux_sym_cmd_identifier_token27] = ACTIONS(2000), - [aux_sym_cmd_identifier_token28] = ACTIONS(2000), - [aux_sym_cmd_identifier_token29] = ACTIONS(2000), - [aux_sym_cmd_identifier_token30] = ACTIONS(2000), - [aux_sym_cmd_identifier_token31] = ACTIONS(2000), - [aux_sym_cmd_identifier_token32] = ACTIONS(2000), - [aux_sym_cmd_identifier_token33] = ACTIONS(2000), - [aux_sym_cmd_identifier_token34] = ACTIONS(2000), - [aux_sym_cmd_identifier_token35] = ACTIONS(2000), - [aux_sym_cmd_identifier_token36] = ACTIONS(2000), - [aux_sym_cmd_identifier_token37] = ACTIONS(2000), - [aux_sym_cmd_identifier_token38] = ACTIONS(2000), - [aux_sym_cmd_identifier_token39] = ACTIONS(2000), - [aux_sym_cmd_identifier_token40] = ACTIONS(2000), - [anon_sym_def] = ACTIONS(2000), - [anon_sym_export_DASHenv] = ACTIONS(2000), - [anon_sym_extern] = ACTIONS(2000), - [anon_sym_module] = ACTIONS(2000), - [anon_sym_use] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2000), - [anon_sym_DOLLAR] = ACTIONS(2000), - [anon_sym_error] = ACTIONS(2000), - [anon_sym_DASH2] = ACTIONS(2000), - [anon_sym_break] = ACTIONS(2000), - [anon_sym_continue] = ACTIONS(2000), - [anon_sym_for] = ACTIONS(2000), - [anon_sym_in2] = ACTIONS(2000), - [anon_sym_loop] = ACTIONS(2000), - [anon_sym_make] = ACTIONS(2000), - [anon_sym_while] = ACTIONS(2000), - [anon_sym_do] = ACTIONS(2000), - [anon_sym_if] = ACTIONS(2000), - [anon_sym_else] = ACTIONS(2000), - [anon_sym_match] = ACTIONS(2000), - [anon_sym_RBRACE] = ACTIONS(2000), - [anon_sym_try] = ACTIONS(2000), - [anon_sym_catch] = ACTIONS(2000), - [anon_sym_return] = ACTIONS(2000), - [anon_sym_source] = ACTIONS(2000), - [anon_sym_source_DASHenv] = ACTIONS(2000), - [anon_sym_register] = ACTIONS(2000), - [anon_sym_hide] = ACTIONS(2000), - [anon_sym_hide_DASHenv] = ACTIONS(2000), - [anon_sym_overlay] = ACTIONS(2000), - [anon_sym_as] = ACTIONS(2000), - [anon_sym_PLUS2] = ACTIONS(2000), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2000), - [anon_sym_DOT] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2000), - [aux_sym__val_number_decimal_token1] = ACTIONS(2000), - [aux_sym__val_number_decimal_token2] = ACTIONS(2000), - [aux_sym__val_number_decimal_token3] = ACTIONS(2000), - [aux_sym__val_number_decimal_token4] = ACTIONS(2000), - [aux_sym__val_number_token1] = ACTIONS(2000), - [aux_sym__val_number_token2] = ACTIONS(2000), - [aux_sym__val_number_token3] = ACTIONS(2000), - [aux_sym__val_number_token4] = ACTIONS(2000), - [aux_sym__val_number_token5] = ACTIONS(2000), - [aux_sym__val_number_token6] = ACTIONS(2000), - [anon_sym_DQUOTE] = ACTIONS(2000), - [sym__str_single_quotes] = ACTIONS(2000), - [sym__str_back_ticks] = ACTIONS(2000), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2000), - [sym__entry_separator] = ACTIONS(2002), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2002), - }, - [438] = { - [sym_cell_path] = STATE(611), - [sym_path] = STATE(569), - [sym_comment] = STATE(438), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(2004), - [anon_sym_alias] = ACTIONS(2004), - [anon_sym_let] = ACTIONS(2004), - [anon_sym_let_DASHenv] = ACTIONS(2004), - [anon_sym_mut] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2004), - [aux_sym_cmd_identifier_token1] = ACTIONS(2004), - [aux_sym_cmd_identifier_token2] = ACTIONS(2004), - [aux_sym_cmd_identifier_token3] = ACTIONS(2004), - [aux_sym_cmd_identifier_token4] = ACTIONS(2004), - [aux_sym_cmd_identifier_token5] = ACTIONS(2004), - [aux_sym_cmd_identifier_token6] = ACTIONS(2004), - [aux_sym_cmd_identifier_token7] = ACTIONS(2004), - [aux_sym_cmd_identifier_token8] = ACTIONS(2004), - [aux_sym_cmd_identifier_token9] = ACTIONS(2004), - [aux_sym_cmd_identifier_token10] = ACTIONS(2004), - [aux_sym_cmd_identifier_token11] = ACTIONS(2004), - [aux_sym_cmd_identifier_token12] = ACTIONS(2004), - [aux_sym_cmd_identifier_token13] = ACTIONS(2004), - [aux_sym_cmd_identifier_token14] = ACTIONS(2004), - [aux_sym_cmd_identifier_token15] = ACTIONS(2004), - [aux_sym_cmd_identifier_token16] = ACTIONS(2004), - [aux_sym_cmd_identifier_token17] = ACTIONS(2004), - [aux_sym_cmd_identifier_token18] = ACTIONS(2004), - [aux_sym_cmd_identifier_token19] = ACTIONS(2004), - [aux_sym_cmd_identifier_token20] = ACTIONS(2004), - [aux_sym_cmd_identifier_token21] = ACTIONS(2004), - [aux_sym_cmd_identifier_token22] = ACTIONS(2004), - [aux_sym_cmd_identifier_token23] = ACTIONS(2004), - [aux_sym_cmd_identifier_token24] = ACTIONS(2004), - [aux_sym_cmd_identifier_token25] = ACTIONS(2004), - [aux_sym_cmd_identifier_token26] = ACTIONS(2004), - [aux_sym_cmd_identifier_token27] = ACTIONS(2004), - [aux_sym_cmd_identifier_token28] = ACTIONS(2004), - [aux_sym_cmd_identifier_token29] = ACTIONS(2004), - [aux_sym_cmd_identifier_token30] = ACTIONS(2004), - [aux_sym_cmd_identifier_token31] = ACTIONS(2004), - [aux_sym_cmd_identifier_token32] = ACTIONS(2004), - [aux_sym_cmd_identifier_token33] = ACTIONS(2004), - [aux_sym_cmd_identifier_token34] = ACTIONS(2004), - [aux_sym_cmd_identifier_token35] = ACTIONS(2004), - [aux_sym_cmd_identifier_token36] = ACTIONS(2004), - [aux_sym_cmd_identifier_token37] = ACTIONS(2004), - [aux_sym_cmd_identifier_token38] = ACTIONS(2004), - [aux_sym_cmd_identifier_token39] = ACTIONS(2004), - [aux_sym_cmd_identifier_token40] = ACTIONS(2004), - [anon_sym_def] = ACTIONS(2004), - [anon_sym_export_DASHenv] = ACTIONS(2004), - [anon_sym_extern] = ACTIONS(2004), - [anon_sym_module] = ACTIONS(2004), - [anon_sym_use] = ACTIONS(2004), - [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_DOLLAR] = ACTIONS(2004), - [anon_sym_error] = ACTIONS(2004), - [anon_sym_DASH2] = ACTIONS(2004), - [anon_sym_break] = ACTIONS(2004), - [anon_sym_continue] = ACTIONS(2004), - [anon_sym_for] = ACTIONS(2004), - [anon_sym_in2] = ACTIONS(2004), - [anon_sym_loop] = ACTIONS(2004), - [anon_sym_make] = ACTIONS(2004), - [anon_sym_while] = ACTIONS(2004), - [anon_sym_do] = ACTIONS(2004), - [anon_sym_if] = ACTIONS(2004), - [anon_sym_else] = ACTIONS(2004), - [anon_sym_match] = ACTIONS(2004), - [anon_sym_RBRACE] = ACTIONS(2004), - [anon_sym_try] = ACTIONS(2004), - [anon_sym_catch] = ACTIONS(2004), - [anon_sym_return] = ACTIONS(2004), - [anon_sym_source] = ACTIONS(2004), - [anon_sym_source_DASHenv] = ACTIONS(2004), - [anon_sym_register] = ACTIONS(2004), - [anon_sym_hide] = ACTIONS(2004), - [anon_sym_hide_DASHenv] = ACTIONS(2004), - [anon_sym_overlay] = ACTIONS(2004), - [anon_sym_as] = ACTIONS(2004), - [anon_sym_PLUS2] = ACTIONS(2004), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2004), - [anon_sym_DOT] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2004), - [aux_sym__val_number_decimal_token2] = ACTIONS(2004), - [aux_sym__val_number_decimal_token3] = ACTIONS(2004), - [aux_sym__val_number_decimal_token4] = ACTIONS(2004), - [aux_sym__val_number_token1] = ACTIONS(2004), - [aux_sym__val_number_token2] = ACTIONS(2004), - [aux_sym__val_number_token3] = ACTIONS(2004), - [aux_sym__val_number_token4] = ACTIONS(2004), - [aux_sym__val_number_token5] = ACTIONS(2004), - [aux_sym__val_number_token6] = ACTIONS(2004), - [anon_sym_DQUOTE] = ACTIONS(2004), - [sym__str_single_quotes] = ACTIONS(2004), - [sym__str_back_ticks] = ACTIONS(2004), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2004), - [sym__entry_separator] = ACTIONS(2006), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2006), - }, - [439] = { - [sym_expr_parenthesized] = STATE(4394), - [sym__spread_parenthesized] = STATE(4880), - [sym_val_range] = STATE(4883), - [sym__val_range] = STATE(7817), - [sym__val_range_with_end] = STATE(7408), - [sym__value] = STATE(4883), - [sym_val_nothing] = STATE(4804), - [sym_val_bool] = STATE(4581), - [sym__spread_variable] = STATE(4886), - [sym_val_variable] = STATE(4358), - [sym_val_number] = STATE(4804), - [sym__val_number_decimal] = STATE(4051), - [sym__val_number] = STATE(4871), - [sym_val_duration] = STATE(4804), - [sym_val_filesize] = STATE(4804), - [sym_val_binary] = STATE(4804), - [sym_val_string] = STATE(4804), - [sym__raw_str] = STATE(4517), - [sym__str_double_quotes] = STATE(4517), - [sym_val_interpolated] = STATE(4804), - [sym__inter_single_quotes] = STATE(4807), - [sym__inter_double_quotes] = STATE(4808), - [sym_val_list] = STATE(4804), - [sym__spread_list] = STATE(4880), - [sym_val_record] = STATE(4804), - [sym_val_table] = STATE(4804), - [sym_val_closure] = STATE(4804), - [sym__cmd_arg] = STATE(4887), - [sym_redirection] = STATE(4888), - [sym__flag] = STATE(4890), - [sym_short_flag] = STATE(4951), - [sym_long_flag] = STATE(4951), - [sym_unquoted] = STATE(4513), - [sym__unquoted_with_expr] = STATE(4891), - [sym__unquoted_anonymous_prefix] = STATE(6926), - [sym_comment] = STATE(439), - [ts_builtin_sym_end] = ACTIONS(1804), - [sym__newline] = ACTIONS(1802), - [sym__space] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_LBRACK] = ACTIONS(2008), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_DOLLAR] = ACTIONS(2012), - [anon_sym_DASH_DASH] = ACTIONS(2014), - [anon_sym_DASH2] = ACTIONS(2016), - [anon_sym_LBRACE] = ACTIONS(2018), - [anon_sym_DOT_DOT] = ACTIONS(2020), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2022), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2024), - [anon_sym_DOT_DOT_LT] = ACTIONS(2024), - [anon_sym_null] = ACTIONS(2026), - [anon_sym_true] = ACTIONS(2028), - [anon_sym_false] = ACTIONS(2028), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2030), - [aux_sym__val_number_decimal_token1] = ACTIONS(2032), - [aux_sym__val_number_decimal_token2] = ACTIONS(2032), - [aux_sym__val_number_decimal_token3] = ACTIONS(2034), - [aux_sym__val_number_decimal_token4] = ACTIONS(2036), - [aux_sym__val_number_token1] = ACTIONS(2038), - [aux_sym__val_number_token2] = ACTIONS(2038), - [aux_sym__val_number_token3] = ACTIONS(2038), - [aux_sym__val_number_token4] = ACTIONS(2040), - [aux_sym__val_number_token5] = ACTIONS(2040), - [aux_sym__val_number_token6] = ACTIONS(2040), - [anon_sym_0b] = ACTIONS(2042), - [anon_sym_0o] = ACTIONS(2044), - [anon_sym_0x] = ACTIONS(2044), - [sym_val_date] = ACTIONS(2046), - [anon_sym_DQUOTE] = ACTIONS(2048), - [sym__str_single_quotes] = ACTIONS(2050), - [sym__str_back_ticks] = ACTIONS(2050), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2052), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2054), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2056), - [anon_sym_err_GT] = ACTIONS(2058), - [anon_sym_out_GT] = ACTIONS(2058), - [anon_sym_e_GT] = ACTIONS(2058), - [anon_sym_o_GT] = ACTIONS(2058), - [anon_sym_err_PLUSout_GT] = ACTIONS(2058), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2058), - [anon_sym_o_PLUSe_GT] = ACTIONS(2058), - [anon_sym_e_PLUSo_GT] = ACTIONS(2058), - [anon_sym_err_GT_GT] = ACTIONS(2058), - [anon_sym_out_GT_GT] = ACTIONS(2058), - [anon_sym_e_GT_GT] = ACTIONS(2058), - [anon_sym_o_GT_GT] = ACTIONS(2058), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2058), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2058), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2058), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2058), - [aux_sym_unquoted_token1] = ACTIONS(2060), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2062), - }, - [440] = { - [sym_comment] = STATE(440), - [anon_sym_export] = ACTIONS(1739), - [anon_sym_alias] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1739), - [anon_sym_let_DASHenv] = ACTIONS(1739), - [anon_sym_mut] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [aux_sym_cmd_identifier_token1] = ACTIONS(1739), - [aux_sym_cmd_identifier_token2] = ACTIONS(1741), - [aux_sym_cmd_identifier_token3] = ACTIONS(1741), - [aux_sym_cmd_identifier_token4] = ACTIONS(1741), - [aux_sym_cmd_identifier_token5] = ACTIONS(1741), - [aux_sym_cmd_identifier_token6] = ACTIONS(1741), - [aux_sym_cmd_identifier_token7] = ACTIONS(1741), - [aux_sym_cmd_identifier_token8] = ACTIONS(1739), - [aux_sym_cmd_identifier_token9] = ACTIONS(1739), - [aux_sym_cmd_identifier_token10] = ACTIONS(1741), - [aux_sym_cmd_identifier_token11] = ACTIONS(1741), - [aux_sym_cmd_identifier_token12] = ACTIONS(1739), - [aux_sym_cmd_identifier_token13] = ACTIONS(1739), - [aux_sym_cmd_identifier_token14] = ACTIONS(1739), - [aux_sym_cmd_identifier_token15] = ACTIONS(1739), - [aux_sym_cmd_identifier_token16] = ACTIONS(1741), - [aux_sym_cmd_identifier_token17] = ACTIONS(1741), - [aux_sym_cmd_identifier_token18] = ACTIONS(1741), - [aux_sym_cmd_identifier_token19] = ACTIONS(1741), - [aux_sym_cmd_identifier_token20] = ACTIONS(1741), - [aux_sym_cmd_identifier_token21] = ACTIONS(1741), - [aux_sym_cmd_identifier_token22] = ACTIONS(1741), - [aux_sym_cmd_identifier_token23] = ACTIONS(1741), - [aux_sym_cmd_identifier_token24] = ACTIONS(1741), - [aux_sym_cmd_identifier_token25] = ACTIONS(1741), - [aux_sym_cmd_identifier_token26] = ACTIONS(1741), - [aux_sym_cmd_identifier_token27] = ACTIONS(1741), - [aux_sym_cmd_identifier_token28] = ACTIONS(1741), - [aux_sym_cmd_identifier_token29] = ACTIONS(1741), - [aux_sym_cmd_identifier_token30] = ACTIONS(1741), - [aux_sym_cmd_identifier_token31] = ACTIONS(1741), - [aux_sym_cmd_identifier_token32] = ACTIONS(1741), - [aux_sym_cmd_identifier_token33] = ACTIONS(1741), - [aux_sym_cmd_identifier_token34] = ACTIONS(1739), - [aux_sym_cmd_identifier_token35] = ACTIONS(1741), - [aux_sym_cmd_identifier_token36] = ACTIONS(1741), - [aux_sym_cmd_identifier_token37] = ACTIONS(1741), - [aux_sym_cmd_identifier_token38] = ACTIONS(1739), - [aux_sym_cmd_identifier_token39] = ACTIONS(1741), - [aux_sym_cmd_identifier_token40] = ACTIONS(1741), - [anon_sym_def] = ACTIONS(1739), - [anon_sym_export_DASHenv] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1739), - [anon_sym_module] = ACTIONS(1739), - [anon_sym_use] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1741), - [anon_sym_error] = ACTIONS(1739), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_in2] = ACTIONS(1739), - [anon_sym_loop] = ACTIONS(1739), - [anon_sym_make] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_else] = ACTIONS(1739), - [anon_sym_match] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_catch] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_source] = ACTIONS(1739), - [anon_sym_source_DASHenv] = ACTIONS(1739), - [anon_sym_register] = ACTIONS(1739), - [anon_sym_hide] = ACTIONS(1739), - [anon_sym_hide_DASHenv] = ACTIONS(1739), - [anon_sym_overlay] = ACTIONS(1739), - [anon_sym_as] = ACTIONS(1739), - [anon_sym_PLUS2] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1741), - [anon_sym_DOT_DOT2] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), - [aux_sym__immediate_decimal_token1] = ACTIONS(2064), - [aux_sym__immediate_decimal_token2] = ACTIONS(2066), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1739), - [aux_sym__val_number_token5] = ACTIONS(1739), - [aux_sym__val_number_token6] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1741), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), - }, - [441] = { - [sym_cell_path] = STATE(613), - [sym_path] = STATE(569), - [sym_comment] = STATE(441), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(2068), - [anon_sym_alias] = ACTIONS(2068), - [anon_sym_let] = ACTIONS(2068), - [anon_sym_let_DASHenv] = ACTIONS(2068), - [anon_sym_mut] = ACTIONS(2068), - [anon_sym_const] = ACTIONS(2068), - [aux_sym_cmd_identifier_token1] = ACTIONS(2068), - [aux_sym_cmd_identifier_token2] = ACTIONS(2068), - [aux_sym_cmd_identifier_token3] = ACTIONS(2068), - [aux_sym_cmd_identifier_token4] = ACTIONS(2068), - [aux_sym_cmd_identifier_token5] = ACTIONS(2068), - [aux_sym_cmd_identifier_token6] = ACTIONS(2068), - [aux_sym_cmd_identifier_token7] = ACTIONS(2068), - [aux_sym_cmd_identifier_token8] = ACTIONS(2068), - [aux_sym_cmd_identifier_token9] = ACTIONS(2068), - [aux_sym_cmd_identifier_token10] = ACTIONS(2068), - [aux_sym_cmd_identifier_token11] = ACTIONS(2068), - [aux_sym_cmd_identifier_token12] = ACTIONS(2068), - [aux_sym_cmd_identifier_token13] = ACTIONS(2068), - [aux_sym_cmd_identifier_token14] = ACTIONS(2068), - [aux_sym_cmd_identifier_token15] = ACTIONS(2068), - [aux_sym_cmd_identifier_token16] = ACTIONS(2068), - [aux_sym_cmd_identifier_token17] = ACTIONS(2068), - [aux_sym_cmd_identifier_token18] = ACTIONS(2068), - [aux_sym_cmd_identifier_token19] = ACTIONS(2068), - [aux_sym_cmd_identifier_token20] = ACTIONS(2068), - [aux_sym_cmd_identifier_token21] = ACTIONS(2068), - [aux_sym_cmd_identifier_token22] = ACTIONS(2068), - [aux_sym_cmd_identifier_token23] = ACTIONS(2068), - [aux_sym_cmd_identifier_token24] = ACTIONS(2068), - [aux_sym_cmd_identifier_token25] = ACTIONS(2068), - [aux_sym_cmd_identifier_token26] = ACTIONS(2068), - [aux_sym_cmd_identifier_token27] = ACTIONS(2068), - [aux_sym_cmd_identifier_token28] = ACTIONS(2068), - [aux_sym_cmd_identifier_token29] = ACTIONS(2068), - [aux_sym_cmd_identifier_token30] = ACTIONS(2068), - [aux_sym_cmd_identifier_token31] = ACTIONS(2068), - [aux_sym_cmd_identifier_token32] = ACTIONS(2068), - [aux_sym_cmd_identifier_token33] = ACTIONS(2068), - [aux_sym_cmd_identifier_token34] = ACTIONS(2068), - [aux_sym_cmd_identifier_token35] = ACTIONS(2068), - [aux_sym_cmd_identifier_token36] = ACTIONS(2068), - [aux_sym_cmd_identifier_token37] = ACTIONS(2068), - [aux_sym_cmd_identifier_token38] = ACTIONS(2068), - [aux_sym_cmd_identifier_token39] = ACTIONS(2068), - [aux_sym_cmd_identifier_token40] = ACTIONS(2068), - [anon_sym_def] = ACTIONS(2068), - [anon_sym_export_DASHenv] = ACTIONS(2068), - [anon_sym_extern] = ACTIONS(2068), - [anon_sym_module] = ACTIONS(2068), - [anon_sym_use] = ACTIONS(2068), - [anon_sym_LPAREN] = ACTIONS(2068), - [anon_sym_DOLLAR] = ACTIONS(2068), - [anon_sym_error] = ACTIONS(2068), - [anon_sym_DASH2] = ACTIONS(2068), - [anon_sym_break] = ACTIONS(2068), - [anon_sym_continue] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(2068), - [anon_sym_in2] = ACTIONS(2068), - [anon_sym_loop] = ACTIONS(2068), - [anon_sym_make] = ACTIONS(2068), - [anon_sym_while] = ACTIONS(2068), - [anon_sym_do] = ACTIONS(2068), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_else] = ACTIONS(2068), - [anon_sym_match] = ACTIONS(2068), - [anon_sym_RBRACE] = ACTIONS(2068), - [anon_sym_try] = ACTIONS(2068), - [anon_sym_catch] = ACTIONS(2068), - [anon_sym_return] = ACTIONS(2068), - [anon_sym_source] = ACTIONS(2068), - [anon_sym_source_DASHenv] = ACTIONS(2068), - [anon_sym_register] = ACTIONS(2068), - [anon_sym_hide] = ACTIONS(2068), - [anon_sym_hide_DASHenv] = ACTIONS(2068), - [anon_sym_overlay] = ACTIONS(2068), - [anon_sym_as] = ACTIONS(2068), - [anon_sym_PLUS2] = ACTIONS(2068), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2068), - [anon_sym_DOT] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2068), - [aux_sym__val_number_decimal_token1] = ACTIONS(2068), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2068), - [aux_sym__val_number_decimal_token4] = ACTIONS(2068), - [aux_sym__val_number_token1] = ACTIONS(2068), - [aux_sym__val_number_token2] = ACTIONS(2068), - [aux_sym__val_number_token3] = ACTIONS(2068), - [aux_sym__val_number_token4] = ACTIONS(2068), - [aux_sym__val_number_token5] = ACTIONS(2068), - [aux_sym__val_number_token6] = ACTIONS(2068), - [anon_sym_DQUOTE] = ACTIONS(2068), - [sym__str_single_quotes] = ACTIONS(2068), - [sym__str_back_ticks] = ACTIONS(2068), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2068), - [sym__entry_separator] = ACTIONS(2070), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2070), - }, - [442] = { - [sym_cell_path] = STATE(614), - [sym_path] = STATE(569), - [sym_comment] = STATE(442), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(2072), - [anon_sym_alias] = ACTIONS(2072), - [anon_sym_let] = ACTIONS(2072), - [anon_sym_let_DASHenv] = ACTIONS(2072), - [anon_sym_mut] = ACTIONS(2072), - [anon_sym_const] = ACTIONS(2072), - [aux_sym_cmd_identifier_token1] = ACTIONS(2072), - [aux_sym_cmd_identifier_token2] = ACTIONS(2072), - [aux_sym_cmd_identifier_token3] = ACTIONS(2072), - [aux_sym_cmd_identifier_token4] = ACTIONS(2072), - [aux_sym_cmd_identifier_token5] = ACTIONS(2072), - [aux_sym_cmd_identifier_token6] = ACTIONS(2072), - [aux_sym_cmd_identifier_token7] = ACTIONS(2072), - [aux_sym_cmd_identifier_token8] = ACTIONS(2072), - [aux_sym_cmd_identifier_token9] = ACTIONS(2072), - [aux_sym_cmd_identifier_token10] = ACTIONS(2072), - [aux_sym_cmd_identifier_token11] = ACTIONS(2072), - [aux_sym_cmd_identifier_token12] = ACTIONS(2072), - [aux_sym_cmd_identifier_token13] = ACTIONS(2072), - [aux_sym_cmd_identifier_token14] = ACTIONS(2072), - [aux_sym_cmd_identifier_token15] = ACTIONS(2072), - [aux_sym_cmd_identifier_token16] = ACTIONS(2072), - [aux_sym_cmd_identifier_token17] = ACTIONS(2072), - [aux_sym_cmd_identifier_token18] = ACTIONS(2072), - [aux_sym_cmd_identifier_token19] = ACTIONS(2072), - [aux_sym_cmd_identifier_token20] = ACTIONS(2072), - [aux_sym_cmd_identifier_token21] = ACTIONS(2072), - [aux_sym_cmd_identifier_token22] = ACTIONS(2072), - [aux_sym_cmd_identifier_token23] = ACTIONS(2072), - [aux_sym_cmd_identifier_token24] = ACTIONS(2072), - [aux_sym_cmd_identifier_token25] = ACTIONS(2072), - [aux_sym_cmd_identifier_token26] = ACTIONS(2072), - [aux_sym_cmd_identifier_token27] = ACTIONS(2072), - [aux_sym_cmd_identifier_token28] = ACTIONS(2072), - [aux_sym_cmd_identifier_token29] = ACTIONS(2072), - [aux_sym_cmd_identifier_token30] = ACTIONS(2072), - [aux_sym_cmd_identifier_token31] = ACTIONS(2072), - [aux_sym_cmd_identifier_token32] = ACTIONS(2072), - [aux_sym_cmd_identifier_token33] = ACTIONS(2072), - [aux_sym_cmd_identifier_token34] = ACTIONS(2072), - [aux_sym_cmd_identifier_token35] = ACTIONS(2072), - [aux_sym_cmd_identifier_token36] = ACTIONS(2072), - [aux_sym_cmd_identifier_token37] = ACTIONS(2072), - [aux_sym_cmd_identifier_token38] = ACTIONS(2072), - [aux_sym_cmd_identifier_token39] = ACTIONS(2072), - [aux_sym_cmd_identifier_token40] = ACTIONS(2072), - [anon_sym_def] = ACTIONS(2072), - [anon_sym_export_DASHenv] = ACTIONS(2072), - [anon_sym_extern] = ACTIONS(2072), - [anon_sym_module] = ACTIONS(2072), - [anon_sym_use] = ACTIONS(2072), - [anon_sym_LPAREN] = ACTIONS(2072), - [anon_sym_DOLLAR] = ACTIONS(2072), - [anon_sym_error] = ACTIONS(2072), - [anon_sym_DASH2] = ACTIONS(2072), - [anon_sym_break] = ACTIONS(2072), - [anon_sym_continue] = ACTIONS(2072), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_in2] = ACTIONS(2072), - [anon_sym_loop] = ACTIONS(2072), - [anon_sym_make] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_if] = ACTIONS(2072), - [anon_sym_else] = ACTIONS(2072), - [anon_sym_match] = ACTIONS(2072), - [anon_sym_RBRACE] = ACTIONS(2072), - [anon_sym_try] = ACTIONS(2072), - [anon_sym_catch] = ACTIONS(2072), - [anon_sym_return] = ACTIONS(2072), - [anon_sym_source] = ACTIONS(2072), - [anon_sym_source_DASHenv] = ACTIONS(2072), - [anon_sym_register] = ACTIONS(2072), - [anon_sym_hide] = ACTIONS(2072), - [anon_sym_hide_DASHenv] = ACTIONS(2072), - [anon_sym_overlay] = ACTIONS(2072), - [anon_sym_as] = ACTIONS(2072), - [anon_sym_PLUS2] = ACTIONS(2072), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2072), - [anon_sym_DOT] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2072), - [aux_sym__val_number_decimal_token1] = ACTIONS(2072), - [aux_sym__val_number_decimal_token2] = ACTIONS(2072), - [aux_sym__val_number_decimal_token3] = ACTIONS(2072), - [aux_sym__val_number_decimal_token4] = ACTIONS(2072), - [aux_sym__val_number_token1] = ACTIONS(2072), - [aux_sym__val_number_token2] = ACTIONS(2072), - [aux_sym__val_number_token3] = ACTIONS(2072), - [aux_sym__val_number_token4] = ACTIONS(2072), - [aux_sym__val_number_token5] = ACTIONS(2072), - [aux_sym__val_number_token6] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(2072), - [sym__str_single_quotes] = ACTIONS(2072), - [sym__str_back_ticks] = ACTIONS(2072), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2072), - [sym__entry_separator] = ACTIONS(2074), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2074), - }, - [443] = { - [sym_comment] = STATE(443), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_alias] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_let_DASHenv] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [aux_sym_cmd_identifier_token1] = ACTIONS(1783), - [aux_sym_cmd_identifier_token2] = ACTIONS(1783), - [aux_sym_cmd_identifier_token3] = ACTIONS(1783), - [aux_sym_cmd_identifier_token4] = ACTIONS(1783), - [aux_sym_cmd_identifier_token5] = ACTIONS(1783), - [aux_sym_cmd_identifier_token6] = ACTIONS(1783), - [aux_sym_cmd_identifier_token7] = ACTIONS(1783), - [aux_sym_cmd_identifier_token8] = ACTIONS(1783), - [aux_sym_cmd_identifier_token9] = ACTIONS(1783), - [aux_sym_cmd_identifier_token10] = ACTIONS(1783), - [aux_sym_cmd_identifier_token11] = ACTIONS(1783), - [aux_sym_cmd_identifier_token12] = ACTIONS(1783), - [aux_sym_cmd_identifier_token13] = ACTIONS(1783), - [aux_sym_cmd_identifier_token14] = ACTIONS(1783), - [aux_sym_cmd_identifier_token15] = ACTIONS(1783), - [aux_sym_cmd_identifier_token16] = ACTIONS(1783), - [aux_sym_cmd_identifier_token17] = ACTIONS(1783), - [aux_sym_cmd_identifier_token18] = ACTIONS(1783), - [aux_sym_cmd_identifier_token19] = ACTIONS(1783), - [aux_sym_cmd_identifier_token20] = ACTIONS(1783), - [aux_sym_cmd_identifier_token21] = ACTIONS(1783), - [aux_sym_cmd_identifier_token22] = ACTIONS(1783), - [aux_sym_cmd_identifier_token23] = ACTIONS(1783), - [aux_sym_cmd_identifier_token24] = ACTIONS(1783), - [aux_sym_cmd_identifier_token25] = ACTIONS(1783), - [aux_sym_cmd_identifier_token26] = ACTIONS(1783), - [aux_sym_cmd_identifier_token27] = ACTIONS(1783), - [aux_sym_cmd_identifier_token28] = ACTIONS(1783), - [aux_sym_cmd_identifier_token29] = ACTIONS(1783), - [aux_sym_cmd_identifier_token30] = ACTIONS(1783), - [aux_sym_cmd_identifier_token31] = ACTIONS(1783), - [aux_sym_cmd_identifier_token32] = ACTIONS(1783), - [aux_sym_cmd_identifier_token33] = ACTIONS(1783), - [aux_sym_cmd_identifier_token34] = ACTIONS(1783), - [aux_sym_cmd_identifier_token35] = ACTIONS(1783), - [aux_sym_cmd_identifier_token36] = ACTIONS(1783), - [aux_sym_cmd_identifier_token37] = ACTIONS(1783), - [aux_sym_cmd_identifier_token38] = ACTIONS(1783), - [aux_sym_cmd_identifier_token39] = ACTIONS(1783), - [aux_sym_cmd_identifier_token40] = ACTIONS(1783), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_export_DASHenv] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_error] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_make] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_catch] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_source] = ACTIONS(1783), - [anon_sym_source_DASHenv] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_hide] = ACTIONS(1783), - [anon_sym_hide_DASHenv] = ACTIONS(1783), - [anon_sym_overlay] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_PLUS2] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1783), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), - [aux_sym__immediate_decimal_token2] = ACTIONS(2076), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1783), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1783), - [aux_sym__val_number_decimal_token3] = ACTIONS(1783), - [aux_sym__val_number_decimal_token4] = ACTIONS(1783), - [aux_sym__val_number_token1] = ACTIONS(1783), - [aux_sym__val_number_token2] = ACTIONS(1783), - [aux_sym__val_number_token3] = ACTIONS(1783), - [aux_sym__val_number_token4] = ACTIONS(1783), - [aux_sym__val_number_token5] = ACTIONS(1783), - [aux_sym__val_number_token6] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1783), - [sym__str_single_quotes] = ACTIONS(1783), - [sym__str_back_ticks] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1783), - [sym__entry_separator] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1785), - }, - [444] = { - [sym_cell_path] = STATE(673), - [sym_path] = STATE(569), - [sym_comment] = STATE(444), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(2078), - [anon_sym_alias] = ACTIONS(2078), - [anon_sym_let] = ACTIONS(2078), - [anon_sym_let_DASHenv] = ACTIONS(2078), - [anon_sym_mut] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [aux_sym_cmd_identifier_token1] = ACTIONS(2078), - [aux_sym_cmd_identifier_token2] = ACTIONS(2078), - [aux_sym_cmd_identifier_token3] = ACTIONS(2078), - [aux_sym_cmd_identifier_token4] = ACTIONS(2078), - [aux_sym_cmd_identifier_token5] = ACTIONS(2078), - [aux_sym_cmd_identifier_token6] = ACTIONS(2078), - [aux_sym_cmd_identifier_token7] = ACTIONS(2078), - [aux_sym_cmd_identifier_token8] = ACTIONS(2078), - [aux_sym_cmd_identifier_token9] = ACTIONS(2078), - [aux_sym_cmd_identifier_token10] = ACTIONS(2078), - [aux_sym_cmd_identifier_token11] = ACTIONS(2078), - [aux_sym_cmd_identifier_token12] = ACTIONS(2078), - [aux_sym_cmd_identifier_token13] = ACTIONS(2078), - [aux_sym_cmd_identifier_token14] = ACTIONS(2078), - [aux_sym_cmd_identifier_token15] = ACTIONS(2078), - [aux_sym_cmd_identifier_token16] = ACTIONS(2078), - [aux_sym_cmd_identifier_token17] = ACTIONS(2078), - [aux_sym_cmd_identifier_token18] = ACTIONS(2078), - [aux_sym_cmd_identifier_token19] = ACTIONS(2078), - [aux_sym_cmd_identifier_token20] = ACTIONS(2078), - [aux_sym_cmd_identifier_token21] = ACTIONS(2078), - [aux_sym_cmd_identifier_token22] = ACTIONS(2078), - [aux_sym_cmd_identifier_token23] = ACTIONS(2078), - [aux_sym_cmd_identifier_token24] = ACTIONS(2078), - [aux_sym_cmd_identifier_token25] = ACTIONS(2078), - [aux_sym_cmd_identifier_token26] = ACTIONS(2078), - [aux_sym_cmd_identifier_token27] = ACTIONS(2078), - [aux_sym_cmd_identifier_token28] = ACTIONS(2078), - [aux_sym_cmd_identifier_token29] = ACTIONS(2078), - [aux_sym_cmd_identifier_token30] = ACTIONS(2078), - [aux_sym_cmd_identifier_token31] = ACTIONS(2078), - [aux_sym_cmd_identifier_token32] = ACTIONS(2078), - [aux_sym_cmd_identifier_token33] = ACTIONS(2078), - [aux_sym_cmd_identifier_token34] = ACTIONS(2078), - [aux_sym_cmd_identifier_token35] = ACTIONS(2078), - [aux_sym_cmd_identifier_token36] = ACTIONS(2078), - [aux_sym_cmd_identifier_token37] = ACTIONS(2078), - [aux_sym_cmd_identifier_token38] = ACTIONS(2078), - [aux_sym_cmd_identifier_token39] = ACTIONS(2078), - [aux_sym_cmd_identifier_token40] = ACTIONS(2078), - [anon_sym_def] = ACTIONS(2078), - [anon_sym_export_DASHenv] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym_module] = ACTIONS(2078), - [anon_sym_use] = ACTIONS(2078), - [anon_sym_LPAREN] = ACTIONS(2078), - [anon_sym_DOLLAR] = ACTIONS(2078), - [anon_sym_error] = ACTIONS(2078), - [anon_sym_DASH2] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_in2] = ACTIONS(2078), - [anon_sym_loop] = ACTIONS(2078), - [anon_sym_make] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_else] = ACTIONS(2078), - [anon_sym_match] = ACTIONS(2078), - [anon_sym_RBRACE] = ACTIONS(2078), - [anon_sym_try] = ACTIONS(2078), - [anon_sym_catch] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_source] = ACTIONS(2078), - [anon_sym_source_DASHenv] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_hide] = ACTIONS(2078), - [anon_sym_hide_DASHenv] = ACTIONS(2078), - [anon_sym_overlay] = ACTIONS(2078), - [anon_sym_as] = ACTIONS(2078), - [anon_sym_PLUS2] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2078), - [anon_sym_DOT] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2078), - [aux_sym__val_number_decimal_token1] = ACTIONS(2078), - [aux_sym__val_number_decimal_token2] = ACTIONS(2078), - [aux_sym__val_number_decimal_token3] = ACTIONS(2078), - [aux_sym__val_number_decimal_token4] = ACTIONS(2078), - [aux_sym__val_number_token1] = ACTIONS(2078), - [aux_sym__val_number_token2] = ACTIONS(2078), - [aux_sym__val_number_token3] = ACTIONS(2078), - [aux_sym__val_number_token4] = ACTIONS(2078), - [aux_sym__val_number_token5] = ACTIONS(2078), - [aux_sym__val_number_token6] = ACTIONS(2078), - [anon_sym_DQUOTE] = ACTIONS(2078), - [sym__str_single_quotes] = ACTIONS(2078), - [sym__str_back_ticks] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2078), - [sym__entry_separator] = ACTIONS(2080), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2080), - }, - [445] = { - [sym_cell_path] = STATE(633), - [sym_path] = STATE(569), - [sym_comment] = STATE(445), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(2082), - [anon_sym_alias] = ACTIONS(2082), - [anon_sym_let] = ACTIONS(2082), - [anon_sym_let_DASHenv] = ACTIONS(2082), - [anon_sym_mut] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [aux_sym_cmd_identifier_token1] = ACTIONS(2082), - [aux_sym_cmd_identifier_token2] = ACTIONS(2082), - [aux_sym_cmd_identifier_token3] = ACTIONS(2082), - [aux_sym_cmd_identifier_token4] = ACTIONS(2082), - [aux_sym_cmd_identifier_token5] = ACTIONS(2082), - [aux_sym_cmd_identifier_token6] = ACTIONS(2082), - [aux_sym_cmd_identifier_token7] = ACTIONS(2082), - [aux_sym_cmd_identifier_token8] = ACTIONS(2082), - [aux_sym_cmd_identifier_token9] = ACTIONS(2082), - [aux_sym_cmd_identifier_token10] = ACTIONS(2082), - [aux_sym_cmd_identifier_token11] = ACTIONS(2082), - [aux_sym_cmd_identifier_token12] = ACTIONS(2082), - [aux_sym_cmd_identifier_token13] = ACTIONS(2082), - [aux_sym_cmd_identifier_token14] = ACTIONS(2082), - [aux_sym_cmd_identifier_token15] = ACTIONS(2082), - [aux_sym_cmd_identifier_token16] = ACTIONS(2082), - [aux_sym_cmd_identifier_token17] = ACTIONS(2082), - [aux_sym_cmd_identifier_token18] = ACTIONS(2082), - [aux_sym_cmd_identifier_token19] = ACTIONS(2082), - [aux_sym_cmd_identifier_token20] = ACTIONS(2082), - [aux_sym_cmd_identifier_token21] = ACTIONS(2082), - [aux_sym_cmd_identifier_token22] = ACTIONS(2082), - [aux_sym_cmd_identifier_token23] = ACTIONS(2082), - [aux_sym_cmd_identifier_token24] = ACTIONS(2082), - [aux_sym_cmd_identifier_token25] = ACTIONS(2082), - [aux_sym_cmd_identifier_token26] = ACTIONS(2082), - [aux_sym_cmd_identifier_token27] = ACTIONS(2082), - [aux_sym_cmd_identifier_token28] = ACTIONS(2082), - [aux_sym_cmd_identifier_token29] = ACTIONS(2082), - [aux_sym_cmd_identifier_token30] = ACTIONS(2082), - [aux_sym_cmd_identifier_token31] = ACTIONS(2082), - [aux_sym_cmd_identifier_token32] = ACTIONS(2082), - [aux_sym_cmd_identifier_token33] = ACTIONS(2082), - [aux_sym_cmd_identifier_token34] = ACTIONS(2082), - [aux_sym_cmd_identifier_token35] = ACTIONS(2082), - [aux_sym_cmd_identifier_token36] = ACTIONS(2082), - [aux_sym_cmd_identifier_token37] = ACTIONS(2082), - [aux_sym_cmd_identifier_token38] = ACTIONS(2082), - [aux_sym_cmd_identifier_token39] = ACTIONS(2082), - [aux_sym_cmd_identifier_token40] = ACTIONS(2082), - [anon_sym_def] = ACTIONS(2082), - [anon_sym_export_DASHenv] = ACTIONS(2082), - [anon_sym_extern] = ACTIONS(2082), - [anon_sym_module] = ACTIONS(2082), - [anon_sym_use] = ACTIONS(2082), - [anon_sym_LPAREN] = ACTIONS(2082), - [anon_sym_DOLLAR] = ACTIONS(2082), - [anon_sym_error] = ACTIONS(2082), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_break] = ACTIONS(2082), - [anon_sym_continue] = ACTIONS(2082), - [anon_sym_for] = ACTIONS(2082), - [anon_sym_in2] = ACTIONS(2082), - [anon_sym_loop] = ACTIONS(2082), - [anon_sym_make] = ACTIONS(2082), - [anon_sym_while] = ACTIONS(2082), - [anon_sym_do] = ACTIONS(2082), - [anon_sym_if] = ACTIONS(2082), - [anon_sym_else] = ACTIONS(2082), - [anon_sym_match] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_try] = ACTIONS(2082), - [anon_sym_catch] = ACTIONS(2082), - [anon_sym_return] = ACTIONS(2082), - [anon_sym_source] = ACTIONS(2082), - [anon_sym_source_DASHenv] = ACTIONS(2082), - [anon_sym_register] = ACTIONS(2082), - [anon_sym_hide] = ACTIONS(2082), - [anon_sym_hide_DASHenv] = ACTIONS(2082), - [anon_sym_overlay] = ACTIONS(2082), - [anon_sym_as] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2082), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2082), - [anon_sym_DOT] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2082), - [aux_sym__val_number_decimal_token1] = ACTIONS(2082), - [aux_sym__val_number_decimal_token2] = ACTIONS(2082), - [aux_sym__val_number_decimal_token3] = ACTIONS(2082), - [aux_sym__val_number_decimal_token4] = ACTIONS(2082), - [aux_sym__val_number_token1] = ACTIONS(2082), - [aux_sym__val_number_token2] = ACTIONS(2082), - [aux_sym__val_number_token3] = ACTIONS(2082), - [aux_sym__val_number_token4] = ACTIONS(2082), - [aux_sym__val_number_token5] = ACTIONS(2082), - [aux_sym__val_number_token6] = ACTIONS(2082), - [anon_sym_DQUOTE] = ACTIONS(2082), - [sym__str_single_quotes] = ACTIONS(2082), - [sym__str_back_ticks] = ACTIONS(2082), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2082), - [sym__entry_separator] = ACTIONS(2084), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2084), - }, - [446] = { - [sym_cell_path] = STATE(679), - [sym_path] = STATE(569), - [sym_comment] = STATE(446), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(2086), - [anon_sym_alias] = ACTIONS(2086), - [anon_sym_let] = ACTIONS(2086), - [anon_sym_let_DASHenv] = ACTIONS(2086), - [anon_sym_mut] = ACTIONS(2086), - [anon_sym_const] = ACTIONS(2086), - [aux_sym_cmd_identifier_token1] = ACTIONS(2086), - [aux_sym_cmd_identifier_token2] = ACTIONS(2086), - [aux_sym_cmd_identifier_token3] = ACTIONS(2086), - [aux_sym_cmd_identifier_token4] = ACTIONS(2086), - [aux_sym_cmd_identifier_token5] = ACTIONS(2086), - [aux_sym_cmd_identifier_token6] = ACTIONS(2086), - [aux_sym_cmd_identifier_token7] = ACTIONS(2086), - [aux_sym_cmd_identifier_token8] = ACTIONS(2086), - [aux_sym_cmd_identifier_token9] = ACTIONS(2086), - [aux_sym_cmd_identifier_token10] = ACTIONS(2086), - [aux_sym_cmd_identifier_token11] = ACTIONS(2086), - [aux_sym_cmd_identifier_token12] = ACTIONS(2086), - [aux_sym_cmd_identifier_token13] = ACTIONS(2086), - [aux_sym_cmd_identifier_token14] = ACTIONS(2086), - [aux_sym_cmd_identifier_token15] = ACTIONS(2086), - [aux_sym_cmd_identifier_token16] = ACTIONS(2086), - [aux_sym_cmd_identifier_token17] = ACTIONS(2086), - [aux_sym_cmd_identifier_token18] = ACTIONS(2086), - [aux_sym_cmd_identifier_token19] = ACTIONS(2086), - [aux_sym_cmd_identifier_token20] = ACTIONS(2086), - [aux_sym_cmd_identifier_token21] = ACTIONS(2086), - [aux_sym_cmd_identifier_token22] = ACTIONS(2086), - [aux_sym_cmd_identifier_token23] = ACTIONS(2086), - [aux_sym_cmd_identifier_token24] = ACTIONS(2086), - [aux_sym_cmd_identifier_token25] = ACTIONS(2086), - [aux_sym_cmd_identifier_token26] = ACTIONS(2086), - [aux_sym_cmd_identifier_token27] = ACTIONS(2086), - [aux_sym_cmd_identifier_token28] = ACTIONS(2086), - [aux_sym_cmd_identifier_token29] = ACTIONS(2086), - [aux_sym_cmd_identifier_token30] = ACTIONS(2086), - [aux_sym_cmd_identifier_token31] = ACTIONS(2086), - [aux_sym_cmd_identifier_token32] = ACTIONS(2086), - [aux_sym_cmd_identifier_token33] = ACTIONS(2086), - [aux_sym_cmd_identifier_token34] = ACTIONS(2086), - [aux_sym_cmd_identifier_token35] = ACTIONS(2086), - [aux_sym_cmd_identifier_token36] = ACTIONS(2086), - [aux_sym_cmd_identifier_token37] = ACTIONS(2086), - [aux_sym_cmd_identifier_token38] = ACTIONS(2086), - [aux_sym_cmd_identifier_token39] = ACTIONS(2086), - [aux_sym_cmd_identifier_token40] = ACTIONS(2086), - [anon_sym_def] = ACTIONS(2086), - [anon_sym_export_DASHenv] = ACTIONS(2086), - [anon_sym_extern] = ACTIONS(2086), - [anon_sym_module] = ACTIONS(2086), - [anon_sym_use] = ACTIONS(2086), - [anon_sym_LPAREN] = ACTIONS(2086), - [anon_sym_DOLLAR] = ACTIONS(2086), - [anon_sym_error] = ACTIONS(2086), - [anon_sym_DASH2] = ACTIONS(2086), - [anon_sym_break] = ACTIONS(2086), - [anon_sym_continue] = ACTIONS(2086), - [anon_sym_for] = ACTIONS(2086), - [anon_sym_in2] = ACTIONS(2086), - [anon_sym_loop] = ACTIONS(2086), - [anon_sym_make] = ACTIONS(2086), - [anon_sym_while] = ACTIONS(2086), - [anon_sym_do] = ACTIONS(2086), - [anon_sym_if] = ACTIONS(2086), - [anon_sym_else] = ACTIONS(2086), - [anon_sym_match] = ACTIONS(2086), - [anon_sym_RBRACE] = ACTIONS(2086), - [anon_sym_try] = ACTIONS(2086), - [anon_sym_catch] = ACTIONS(2086), - [anon_sym_return] = ACTIONS(2086), - [anon_sym_source] = ACTIONS(2086), - [anon_sym_source_DASHenv] = ACTIONS(2086), - [anon_sym_register] = ACTIONS(2086), - [anon_sym_hide] = ACTIONS(2086), - [anon_sym_hide_DASHenv] = ACTIONS(2086), - [anon_sym_overlay] = ACTIONS(2086), - [anon_sym_as] = ACTIONS(2086), - [anon_sym_PLUS2] = ACTIONS(2086), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2086), - [anon_sym_DOT] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2086), - [aux_sym__val_number_decimal_token1] = ACTIONS(2086), - [aux_sym__val_number_decimal_token2] = ACTIONS(2086), - [aux_sym__val_number_decimal_token3] = ACTIONS(2086), - [aux_sym__val_number_decimal_token4] = ACTIONS(2086), - [aux_sym__val_number_token1] = ACTIONS(2086), - [aux_sym__val_number_token2] = ACTIONS(2086), - [aux_sym__val_number_token3] = ACTIONS(2086), - [aux_sym__val_number_token4] = ACTIONS(2086), - [aux_sym__val_number_token5] = ACTIONS(2086), - [aux_sym__val_number_token6] = ACTIONS(2086), - [anon_sym_DQUOTE] = ACTIONS(2086), - [sym__str_single_quotes] = ACTIONS(2086), - [sym__str_back_ticks] = ACTIONS(2086), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2086), - [sym__entry_separator] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2088), - }, - [447] = { - [sym_cell_path] = STATE(640), - [sym_path] = STATE(569), - [sym_comment] = STATE(447), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(2090), - [anon_sym_alias] = ACTIONS(2090), - [anon_sym_let] = ACTIONS(2090), - [anon_sym_let_DASHenv] = ACTIONS(2090), - [anon_sym_mut] = ACTIONS(2090), - [anon_sym_const] = ACTIONS(2090), - [aux_sym_cmd_identifier_token1] = ACTIONS(2090), - [aux_sym_cmd_identifier_token2] = ACTIONS(2090), - [aux_sym_cmd_identifier_token3] = ACTIONS(2090), - [aux_sym_cmd_identifier_token4] = ACTIONS(2090), - [aux_sym_cmd_identifier_token5] = ACTIONS(2090), - [aux_sym_cmd_identifier_token6] = ACTIONS(2090), - [aux_sym_cmd_identifier_token7] = ACTIONS(2090), - [aux_sym_cmd_identifier_token8] = ACTIONS(2090), - [aux_sym_cmd_identifier_token9] = ACTIONS(2090), - [aux_sym_cmd_identifier_token10] = ACTIONS(2090), - [aux_sym_cmd_identifier_token11] = ACTIONS(2090), - [aux_sym_cmd_identifier_token12] = ACTIONS(2090), - [aux_sym_cmd_identifier_token13] = ACTIONS(2090), - [aux_sym_cmd_identifier_token14] = ACTIONS(2090), - [aux_sym_cmd_identifier_token15] = ACTIONS(2090), - [aux_sym_cmd_identifier_token16] = ACTIONS(2090), - [aux_sym_cmd_identifier_token17] = ACTIONS(2090), - [aux_sym_cmd_identifier_token18] = ACTIONS(2090), - [aux_sym_cmd_identifier_token19] = ACTIONS(2090), - [aux_sym_cmd_identifier_token20] = ACTIONS(2090), - [aux_sym_cmd_identifier_token21] = ACTIONS(2090), - [aux_sym_cmd_identifier_token22] = ACTIONS(2090), - [aux_sym_cmd_identifier_token23] = ACTIONS(2090), - [aux_sym_cmd_identifier_token24] = ACTIONS(2090), - [aux_sym_cmd_identifier_token25] = ACTIONS(2090), - [aux_sym_cmd_identifier_token26] = ACTIONS(2090), - [aux_sym_cmd_identifier_token27] = ACTIONS(2090), - [aux_sym_cmd_identifier_token28] = ACTIONS(2090), - [aux_sym_cmd_identifier_token29] = ACTIONS(2090), - [aux_sym_cmd_identifier_token30] = ACTIONS(2090), - [aux_sym_cmd_identifier_token31] = ACTIONS(2090), - [aux_sym_cmd_identifier_token32] = ACTIONS(2090), - [aux_sym_cmd_identifier_token33] = ACTIONS(2090), - [aux_sym_cmd_identifier_token34] = ACTIONS(2090), - [aux_sym_cmd_identifier_token35] = ACTIONS(2090), - [aux_sym_cmd_identifier_token36] = ACTIONS(2090), - [aux_sym_cmd_identifier_token37] = ACTIONS(2090), - [aux_sym_cmd_identifier_token38] = ACTIONS(2090), - [aux_sym_cmd_identifier_token39] = ACTIONS(2090), - [aux_sym_cmd_identifier_token40] = ACTIONS(2090), - [anon_sym_def] = ACTIONS(2090), - [anon_sym_export_DASHenv] = ACTIONS(2090), - [anon_sym_extern] = ACTIONS(2090), - [anon_sym_module] = ACTIONS(2090), - [anon_sym_use] = ACTIONS(2090), - [anon_sym_LPAREN] = ACTIONS(2090), - [anon_sym_DOLLAR] = ACTIONS(2090), - [anon_sym_error] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2090), - [anon_sym_break] = ACTIONS(2090), - [anon_sym_continue] = ACTIONS(2090), - [anon_sym_for] = ACTIONS(2090), - [anon_sym_in2] = ACTIONS(2090), - [anon_sym_loop] = ACTIONS(2090), - [anon_sym_make] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2090), - [anon_sym_do] = ACTIONS(2090), - [anon_sym_if] = ACTIONS(2090), - [anon_sym_else] = ACTIONS(2090), - [anon_sym_match] = ACTIONS(2090), - [anon_sym_RBRACE] = ACTIONS(2090), - [anon_sym_try] = ACTIONS(2090), - [anon_sym_catch] = ACTIONS(2090), - [anon_sym_return] = ACTIONS(2090), - [anon_sym_source] = ACTIONS(2090), - [anon_sym_source_DASHenv] = ACTIONS(2090), - [anon_sym_register] = ACTIONS(2090), - [anon_sym_hide] = ACTIONS(2090), - [anon_sym_hide_DASHenv] = ACTIONS(2090), - [anon_sym_overlay] = ACTIONS(2090), - [anon_sym_as] = ACTIONS(2090), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2090), - [anon_sym_DOT] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2090), - [aux_sym__val_number_decimal_token1] = ACTIONS(2090), - [aux_sym__val_number_decimal_token2] = ACTIONS(2090), - [aux_sym__val_number_decimal_token3] = ACTIONS(2090), - [aux_sym__val_number_decimal_token4] = ACTIONS(2090), - [aux_sym__val_number_token1] = ACTIONS(2090), - [aux_sym__val_number_token2] = ACTIONS(2090), - [aux_sym__val_number_token3] = ACTIONS(2090), - [aux_sym__val_number_token4] = ACTIONS(2090), - [aux_sym__val_number_token5] = ACTIONS(2090), - [aux_sym__val_number_token6] = ACTIONS(2090), - [anon_sym_DQUOTE] = ACTIONS(2090), - [sym__str_single_quotes] = ACTIONS(2090), - [sym__str_back_ticks] = ACTIONS(2090), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2090), - [sym__entry_separator] = ACTIONS(2092), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2092), - }, - [448] = { - [sym_cell_path] = STATE(685), - [sym_path] = STATE(569), - [sym_comment] = STATE(448), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(2094), - [anon_sym_alias] = ACTIONS(2094), - [anon_sym_let] = ACTIONS(2094), - [anon_sym_let_DASHenv] = ACTIONS(2094), - [anon_sym_mut] = ACTIONS(2094), - [anon_sym_const] = ACTIONS(2094), - [aux_sym_cmd_identifier_token1] = ACTIONS(2094), - [aux_sym_cmd_identifier_token2] = ACTIONS(2094), - [aux_sym_cmd_identifier_token3] = ACTIONS(2094), - [aux_sym_cmd_identifier_token4] = ACTIONS(2094), - [aux_sym_cmd_identifier_token5] = ACTIONS(2094), - [aux_sym_cmd_identifier_token6] = ACTIONS(2094), - [aux_sym_cmd_identifier_token7] = ACTIONS(2094), - [aux_sym_cmd_identifier_token8] = ACTIONS(2094), - [aux_sym_cmd_identifier_token9] = ACTIONS(2094), - [aux_sym_cmd_identifier_token10] = ACTIONS(2094), - [aux_sym_cmd_identifier_token11] = ACTIONS(2094), - [aux_sym_cmd_identifier_token12] = ACTIONS(2094), - [aux_sym_cmd_identifier_token13] = ACTIONS(2094), - [aux_sym_cmd_identifier_token14] = ACTIONS(2094), - [aux_sym_cmd_identifier_token15] = ACTIONS(2094), - [aux_sym_cmd_identifier_token16] = ACTIONS(2094), - [aux_sym_cmd_identifier_token17] = ACTIONS(2094), - [aux_sym_cmd_identifier_token18] = ACTIONS(2094), - [aux_sym_cmd_identifier_token19] = ACTIONS(2094), - [aux_sym_cmd_identifier_token20] = ACTIONS(2094), - [aux_sym_cmd_identifier_token21] = ACTIONS(2094), - [aux_sym_cmd_identifier_token22] = ACTIONS(2094), - [aux_sym_cmd_identifier_token23] = ACTIONS(2094), - [aux_sym_cmd_identifier_token24] = ACTIONS(2094), - [aux_sym_cmd_identifier_token25] = ACTIONS(2094), - [aux_sym_cmd_identifier_token26] = ACTIONS(2094), - [aux_sym_cmd_identifier_token27] = ACTIONS(2094), - [aux_sym_cmd_identifier_token28] = ACTIONS(2094), - [aux_sym_cmd_identifier_token29] = ACTIONS(2094), - [aux_sym_cmd_identifier_token30] = ACTIONS(2094), - [aux_sym_cmd_identifier_token31] = ACTIONS(2094), - [aux_sym_cmd_identifier_token32] = ACTIONS(2094), - [aux_sym_cmd_identifier_token33] = ACTIONS(2094), - [aux_sym_cmd_identifier_token34] = ACTIONS(2094), - [aux_sym_cmd_identifier_token35] = ACTIONS(2094), - [aux_sym_cmd_identifier_token36] = ACTIONS(2094), - [aux_sym_cmd_identifier_token37] = ACTIONS(2094), - [aux_sym_cmd_identifier_token38] = ACTIONS(2094), - [aux_sym_cmd_identifier_token39] = ACTIONS(2094), - [aux_sym_cmd_identifier_token40] = ACTIONS(2094), - [anon_sym_def] = ACTIONS(2094), - [anon_sym_export_DASHenv] = ACTIONS(2094), - [anon_sym_extern] = ACTIONS(2094), - [anon_sym_module] = ACTIONS(2094), - [anon_sym_use] = ACTIONS(2094), - [anon_sym_LPAREN] = ACTIONS(2094), - [anon_sym_DOLLAR] = ACTIONS(2094), - [anon_sym_error] = ACTIONS(2094), - [anon_sym_DASH2] = ACTIONS(2094), - [anon_sym_break] = ACTIONS(2094), - [anon_sym_continue] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2094), - [anon_sym_in2] = ACTIONS(2094), - [anon_sym_loop] = ACTIONS(2094), - [anon_sym_make] = ACTIONS(2094), - [anon_sym_while] = ACTIONS(2094), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_if] = ACTIONS(2094), - [anon_sym_else] = ACTIONS(2094), - [anon_sym_match] = ACTIONS(2094), - [anon_sym_RBRACE] = ACTIONS(2094), - [anon_sym_try] = ACTIONS(2094), - [anon_sym_catch] = ACTIONS(2094), - [anon_sym_return] = ACTIONS(2094), - [anon_sym_source] = ACTIONS(2094), - [anon_sym_source_DASHenv] = ACTIONS(2094), - [anon_sym_register] = ACTIONS(2094), - [anon_sym_hide] = ACTIONS(2094), - [anon_sym_hide_DASHenv] = ACTIONS(2094), - [anon_sym_overlay] = ACTIONS(2094), - [anon_sym_as] = ACTIONS(2094), - [anon_sym_PLUS2] = ACTIONS(2094), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2094), - [anon_sym_DOT] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2094), - [aux_sym__val_number_decimal_token1] = ACTIONS(2094), - [aux_sym__val_number_decimal_token2] = ACTIONS(2094), - [aux_sym__val_number_decimal_token3] = ACTIONS(2094), - [aux_sym__val_number_decimal_token4] = ACTIONS(2094), - [aux_sym__val_number_token1] = ACTIONS(2094), - [aux_sym__val_number_token2] = ACTIONS(2094), - [aux_sym__val_number_token3] = ACTIONS(2094), - [aux_sym__val_number_token4] = ACTIONS(2094), - [aux_sym__val_number_token5] = ACTIONS(2094), - [aux_sym__val_number_token6] = ACTIONS(2094), - [anon_sym_DQUOTE] = ACTIONS(2094), - [sym__str_single_quotes] = ACTIONS(2094), - [sym__str_back_ticks] = ACTIONS(2094), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2094), - [sym__entry_separator] = ACTIONS(2096), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2096), - }, - [449] = { - [sym_cell_path] = STATE(610), - [sym_path] = STATE(569), - [sym_comment] = STATE(449), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(2098), - [anon_sym_alias] = ACTIONS(2098), - [anon_sym_let] = ACTIONS(2098), - [anon_sym_let_DASHenv] = ACTIONS(2098), - [anon_sym_mut] = ACTIONS(2098), - [anon_sym_const] = ACTIONS(2098), - [aux_sym_cmd_identifier_token1] = ACTIONS(2098), - [aux_sym_cmd_identifier_token2] = ACTIONS(2098), - [aux_sym_cmd_identifier_token3] = ACTIONS(2098), - [aux_sym_cmd_identifier_token4] = ACTIONS(2098), - [aux_sym_cmd_identifier_token5] = ACTIONS(2098), - [aux_sym_cmd_identifier_token6] = ACTIONS(2098), - [aux_sym_cmd_identifier_token7] = ACTIONS(2098), - [aux_sym_cmd_identifier_token8] = ACTIONS(2098), - [aux_sym_cmd_identifier_token9] = ACTIONS(2098), - [aux_sym_cmd_identifier_token10] = ACTIONS(2098), - [aux_sym_cmd_identifier_token11] = ACTIONS(2098), - [aux_sym_cmd_identifier_token12] = ACTIONS(2098), - [aux_sym_cmd_identifier_token13] = ACTIONS(2098), - [aux_sym_cmd_identifier_token14] = ACTIONS(2098), - [aux_sym_cmd_identifier_token15] = ACTIONS(2098), - [aux_sym_cmd_identifier_token16] = ACTIONS(2098), - [aux_sym_cmd_identifier_token17] = ACTIONS(2098), - [aux_sym_cmd_identifier_token18] = ACTIONS(2098), - [aux_sym_cmd_identifier_token19] = ACTIONS(2098), - [aux_sym_cmd_identifier_token20] = ACTIONS(2098), - [aux_sym_cmd_identifier_token21] = ACTIONS(2098), - [aux_sym_cmd_identifier_token22] = ACTIONS(2098), - [aux_sym_cmd_identifier_token23] = ACTIONS(2098), - [aux_sym_cmd_identifier_token24] = ACTIONS(2098), - [aux_sym_cmd_identifier_token25] = ACTIONS(2098), - [aux_sym_cmd_identifier_token26] = ACTIONS(2098), - [aux_sym_cmd_identifier_token27] = ACTIONS(2098), - [aux_sym_cmd_identifier_token28] = ACTIONS(2098), - [aux_sym_cmd_identifier_token29] = ACTIONS(2098), - [aux_sym_cmd_identifier_token30] = ACTIONS(2098), - [aux_sym_cmd_identifier_token31] = ACTIONS(2098), - [aux_sym_cmd_identifier_token32] = ACTIONS(2098), - [aux_sym_cmd_identifier_token33] = ACTIONS(2098), - [aux_sym_cmd_identifier_token34] = ACTIONS(2098), - [aux_sym_cmd_identifier_token35] = ACTIONS(2098), - [aux_sym_cmd_identifier_token36] = ACTIONS(2098), - [aux_sym_cmd_identifier_token37] = ACTIONS(2098), - [aux_sym_cmd_identifier_token38] = ACTIONS(2098), - [aux_sym_cmd_identifier_token39] = ACTIONS(2098), - [aux_sym_cmd_identifier_token40] = ACTIONS(2098), - [anon_sym_def] = ACTIONS(2098), - [anon_sym_export_DASHenv] = ACTIONS(2098), - [anon_sym_extern] = ACTIONS(2098), - [anon_sym_module] = ACTIONS(2098), - [anon_sym_use] = ACTIONS(2098), - [anon_sym_LPAREN] = ACTIONS(2098), - [anon_sym_DOLLAR] = ACTIONS(2098), - [anon_sym_error] = ACTIONS(2098), - [anon_sym_DASH2] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2098), - [anon_sym_continue] = ACTIONS(2098), - [anon_sym_for] = ACTIONS(2098), - [anon_sym_in2] = ACTIONS(2098), - [anon_sym_loop] = ACTIONS(2098), - [anon_sym_make] = ACTIONS(2098), - [anon_sym_while] = ACTIONS(2098), - [anon_sym_do] = ACTIONS(2098), - [anon_sym_if] = ACTIONS(2098), - [anon_sym_else] = ACTIONS(2098), - [anon_sym_match] = ACTIONS(2098), - [anon_sym_RBRACE] = ACTIONS(2098), - [anon_sym_try] = ACTIONS(2098), - [anon_sym_catch] = ACTIONS(2098), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_source] = ACTIONS(2098), - [anon_sym_source_DASHenv] = ACTIONS(2098), - [anon_sym_register] = ACTIONS(2098), - [anon_sym_hide] = ACTIONS(2098), - [anon_sym_hide_DASHenv] = ACTIONS(2098), - [anon_sym_overlay] = ACTIONS(2098), - [anon_sym_as] = ACTIONS(2098), - [anon_sym_PLUS2] = ACTIONS(2098), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2098), - [anon_sym_DOT] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2098), - [aux_sym__val_number_decimal_token1] = ACTIONS(2098), - [aux_sym__val_number_decimal_token2] = ACTIONS(2098), - [aux_sym__val_number_decimal_token3] = ACTIONS(2098), - [aux_sym__val_number_decimal_token4] = ACTIONS(2098), - [aux_sym__val_number_token1] = ACTIONS(2098), - [aux_sym__val_number_token2] = ACTIONS(2098), - [aux_sym__val_number_token3] = ACTIONS(2098), - [aux_sym__val_number_token4] = ACTIONS(2098), - [aux_sym__val_number_token5] = ACTIONS(2098), - [aux_sym__val_number_token6] = ACTIONS(2098), - [anon_sym_DQUOTE] = ACTIONS(2098), - [sym__str_single_quotes] = ACTIONS(2098), - [sym__str_back_ticks] = ACTIONS(2098), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2098), - [sym__entry_separator] = ACTIONS(2100), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2100), - }, - [450] = { - [sym_cell_path] = STATE(693), - [sym_path] = STATE(569), - [sym_comment] = STATE(450), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(2102), - [anon_sym_alias] = ACTIONS(2102), - [anon_sym_let] = ACTIONS(2102), - [anon_sym_let_DASHenv] = ACTIONS(2102), - [anon_sym_mut] = ACTIONS(2102), - [anon_sym_const] = ACTIONS(2102), - [aux_sym_cmd_identifier_token1] = ACTIONS(2102), - [aux_sym_cmd_identifier_token2] = ACTIONS(2102), - [aux_sym_cmd_identifier_token3] = ACTIONS(2102), - [aux_sym_cmd_identifier_token4] = ACTIONS(2102), - [aux_sym_cmd_identifier_token5] = ACTIONS(2102), - [aux_sym_cmd_identifier_token6] = ACTIONS(2102), - [aux_sym_cmd_identifier_token7] = ACTIONS(2102), - [aux_sym_cmd_identifier_token8] = ACTIONS(2102), - [aux_sym_cmd_identifier_token9] = ACTIONS(2102), - [aux_sym_cmd_identifier_token10] = ACTIONS(2102), - [aux_sym_cmd_identifier_token11] = ACTIONS(2102), - [aux_sym_cmd_identifier_token12] = ACTIONS(2102), - [aux_sym_cmd_identifier_token13] = ACTIONS(2102), - [aux_sym_cmd_identifier_token14] = ACTIONS(2102), - [aux_sym_cmd_identifier_token15] = ACTIONS(2102), - [aux_sym_cmd_identifier_token16] = ACTIONS(2102), - [aux_sym_cmd_identifier_token17] = ACTIONS(2102), - [aux_sym_cmd_identifier_token18] = ACTIONS(2102), - [aux_sym_cmd_identifier_token19] = ACTIONS(2102), - [aux_sym_cmd_identifier_token20] = ACTIONS(2102), - [aux_sym_cmd_identifier_token21] = ACTIONS(2102), - [aux_sym_cmd_identifier_token22] = ACTIONS(2102), - [aux_sym_cmd_identifier_token23] = ACTIONS(2102), - [aux_sym_cmd_identifier_token24] = ACTIONS(2102), - [aux_sym_cmd_identifier_token25] = ACTIONS(2102), - [aux_sym_cmd_identifier_token26] = ACTIONS(2102), - [aux_sym_cmd_identifier_token27] = ACTIONS(2102), - [aux_sym_cmd_identifier_token28] = ACTIONS(2102), - [aux_sym_cmd_identifier_token29] = ACTIONS(2102), - [aux_sym_cmd_identifier_token30] = ACTIONS(2102), - [aux_sym_cmd_identifier_token31] = ACTIONS(2102), - [aux_sym_cmd_identifier_token32] = ACTIONS(2102), - [aux_sym_cmd_identifier_token33] = ACTIONS(2102), - [aux_sym_cmd_identifier_token34] = ACTIONS(2102), - [aux_sym_cmd_identifier_token35] = ACTIONS(2102), - [aux_sym_cmd_identifier_token36] = ACTIONS(2102), - [aux_sym_cmd_identifier_token37] = ACTIONS(2102), - [aux_sym_cmd_identifier_token38] = ACTIONS(2102), - [aux_sym_cmd_identifier_token39] = ACTIONS(2102), - [aux_sym_cmd_identifier_token40] = ACTIONS(2102), - [anon_sym_def] = ACTIONS(2102), - [anon_sym_export_DASHenv] = ACTIONS(2102), - [anon_sym_extern] = ACTIONS(2102), - [anon_sym_module] = ACTIONS(2102), - [anon_sym_use] = ACTIONS(2102), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_DOLLAR] = ACTIONS(2102), - [anon_sym_error] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2102), - [anon_sym_break] = ACTIONS(2102), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_for] = ACTIONS(2102), - [anon_sym_in2] = ACTIONS(2102), - [anon_sym_loop] = ACTIONS(2102), - [anon_sym_make] = ACTIONS(2102), - [anon_sym_while] = ACTIONS(2102), - [anon_sym_do] = ACTIONS(2102), - [anon_sym_if] = ACTIONS(2102), - [anon_sym_else] = ACTIONS(2102), - [anon_sym_match] = ACTIONS(2102), - [anon_sym_RBRACE] = ACTIONS(2102), - [anon_sym_try] = ACTIONS(2102), - [anon_sym_catch] = ACTIONS(2102), - [anon_sym_return] = ACTIONS(2102), - [anon_sym_source] = ACTIONS(2102), - [anon_sym_source_DASHenv] = ACTIONS(2102), - [anon_sym_register] = ACTIONS(2102), - [anon_sym_hide] = ACTIONS(2102), - [anon_sym_hide_DASHenv] = ACTIONS(2102), - [anon_sym_overlay] = ACTIONS(2102), - [anon_sym_as] = ACTIONS(2102), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2102), - [anon_sym_DOT] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2102), - [aux_sym__val_number_decimal_token1] = ACTIONS(2102), - [aux_sym__val_number_decimal_token2] = ACTIONS(2102), - [aux_sym__val_number_decimal_token3] = ACTIONS(2102), - [aux_sym__val_number_decimal_token4] = ACTIONS(2102), - [aux_sym__val_number_token1] = ACTIONS(2102), - [aux_sym__val_number_token2] = ACTIONS(2102), - [aux_sym__val_number_token3] = ACTIONS(2102), - [aux_sym__val_number_token4] = ACTIONS(2102), - [aux_sym__val_number_token5] = ACTIONS(2102), - [aux_sym__val_number_token6] = ACTIONS(2102), - [anon_sym_DQUOTE] = ACTIONS(2102), - [sym__str_single_quotes] = ACTIONS(2102), - [sym__str_back_ticks] = ACTIONS(2102), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2102), - [sym__entry_separator] = ACTIONS(2104), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2104), - }, - [451] = { - [sym_cell_path] = STATE(634), - [sym_path] = STATE(569), - [sym_comment] = STATE(451), - [aux_sym_cell_path_repeat1] = STATE(458), - [anon_sym_export] = ACTIONS(2106), - [anon_sym_alias] = ACTIONS(2106), - [anon_sym_let] = ACTIONS(2106), - [anon_sym_let_DASHenv] = ACTIONS(2106), - [anon_sym_mut] = ACTIONS(2106), - [anon_sym_const] = ACTIONS(2106), - [aux_sym_cmd_identifier_token1] = ACTIONS(2106), - [aux_sym_cmd_identifier_token2] = ACTIONS(2106), - [aux_sym_cmd_identifier_token3] = ACTIONS(2106), - [aux_sym_cmd_identifier_token4] = ACTIONS(2106), - [aux_sym_cmd_identifier_token5] = ACTIONS(2106), - [aux_sym_cmd_identifier_token6] = ACTIONS(2106), - [aux_sym_cmd_identifier_token7] = ACTIONS(2106), - [aux_sym_cmd_identifier_token8] = ACTIONS(2106), - [aux_sym_cmd_identifier_token9] = ACTIONS(2106), - [aux_sym_cmd_identifier_token10] = ACTIONS(2106), - [aux_sym_cmd_identifier_token11] = ACTIONS(2106), - [aux_sym_cmd_identifier_token12] = ACTIONS(2106), - [aux_sym_cmd_identifier_token13] = ACTIONS(2106), - [aux_sym_cmd_identifier_token14] = ACTIONS(2106), - [aux_sym_cmd_identifier_token15] = ACTIONS(2106), - [aux_sym_cmd_identifier_token16] = ACTIONS(2106), - [aux_sym_cmd_identifier_token17] = ACTIONS(2106), - [aux_sym_cmd_identifier_token18] = ACTIONS(2106), - [aux_sym_cmd_identifier_token19] = ACTIONS(2106), - [aux_sym_cmd_identifier_token20] = ACTIONS(2106), - [aux_sym_cmd_identifier_token21] = ACTIONS(2106), - [aux_sym_cmd_identifier_token22] = ACTIONS(2106), - [aux_sym_cmd_identifier_token23] = ACTIONS(2106), - [aux_sym_cmd_identifier_token24] = ACTIONS(2106), - [aux_sym_cmd_identifier_token25] = ACTIONS(2106), - [aux_sym_cmd_identifier_token26] = ACTIONS(2106), - [aux_sym_cmd_identifier_token27] = ACTIONS(2106), - [aux_sym_cmd_identifier_token28] = ACTIONS(2106), - [aux_sym_cmd_identifier_token29] = ACTIONS(2106), - [aux_sym_cmd_identifier_token30] = ACTIONS(2106), - [aux_sym_cmd_identifier_token31] = ACTIONS(2106), - [aux_sym_cmd_identifier_token32] = ACTIONS(2106), - [aux_sym_cmd_identifier_token33] = ACTIONS(2106), - [aux_sym_cmd_identifier_token34] = ACTIONS(2106), - [aux_sym_cmd_identifier_token35] = ACTIONS(2106), - [aux_sym_cmd_identifier_token36] = ACTIONS(2106), - [aux_sym_cmd_identifier_token37] = ACTIONS(2106), - [aux_sym_cmd_identifier_token38] = ACTIONS(2106), - [aux_sym_cmd_identifier_token39] = ACTIONS(2106), - [aux_sym_cmd_identifier_token40] = ACTIONS(2106), - [anon_sym_def] = ACTIONS(2106), - [anon_sym_export_DASHenv] = ACTIONS(2106), - [anon_sym_extern] = ACTIONS(2106), - [anon_sym_module] = ACTIONS(2106), - [anon_sym_use] = ACTIONS(2106), - [anon_sym_LPAREN] = ACTIONS(2106), - [anon_sym_DOLLAR] = ACTIONS(2106), - [anon_sym_error] = ACTIONS(2106), - [anon_sym_DASH2] = ACTIONS(2106), - [anon_sym_break] = ACTIONS(2106), - [anon_sym_continue] = ACTIONS(2106), - [anon_sym_for] = ACTIONS(2106), - [anon_sym_in2] = ACTIONS(2106), - [anon_sym_loop] = ACTIONS(2106), - [anon_sym_make] = ACTIONS(2106), - [anon_sym_while] = ACTIONS(2106), - [anon_sym_do] = ACTIONS(2106), - [anon_sym_if] = ACTIONS(2106), - [anon_sym_else] = ACTIONS(2106), - [anon_sym_match] = ACTIONS(2106), - [anon_sym_RBRACE] = ACTIONS(2106), - [anon_sym_try] = ACTIONS(2106), - [anon_sym_catch] = ACTIONS(2106), - [anon_sym_return] = ACTIONS(2106), - [anon_sym_source] = ACTIONS(2106), - [anon_sym_source_DASHenv] = ACTIONS(2106), - [anon_sym_register] = ACTIONS(2106), - [anon_sym_hide] = ACTIONS(2106), - [anon_sym_hide_DASHenv] = ACTIONS(2106), - [anon_sym_overlay] = ACTIONS(2106), - [anon_sym_as] = ACTIONS(2106), - [anon_sym_PLUS2] = ACTIONS(2106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2106), - [anon_sym_DOT] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2106), - [aux_sym__val_number_decimal_token1] = ACTIONS(2106), - [aux_sym__val_number_decimal_token2] = ACTIONS(2106), - [aux_sym__val_number_decimal_token3] = ACTIONS(2106), - [aux_sym__val_number_decimal_token4] = ACTIONS(2106), - [aux_sym__val_number_token1] = ACTIONS(2106), - [aux_sym__val_number_token2] = ACTIONS(2106), - [aux_sym__val_number_token3] = ACTIONS(2106), - [aux_sym__val_number_token4] = ACTIONS(2106), - [aux_sym__val_number_token5] = ACTIONS(2106), - [aux_sym__val_number_token6] = ACTIONS(2106), - [anon_sym_DQUOTE] = ACTIONS(2106), - [sym__str_single_quotes] = ACTIONS(2106), - [sym__str_back_ticks] = ACTIONS(2106), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2106), - [sym__entry_separator] = ACTIONS(2108), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2108), - }, - [452] = { - [sym_comment] = STATE(452), - [anon_sym_export] = ACTIONS(1014), - [anon_sym_alias] = ACTIONS(1014), - [anon_sym_let] = ACTIONS(1014), - [anon_sym_let_DASHenv] = ACTIONS(1014), - [anon_sym_mut] = ACTIONS(1014), - [anon_sym_const] = ACTIONS(1014), - [aux_sym_cmd_identifier_token1] = ACTIONS(1014), - [aux_sym_cmd_identifier_token2] = ACTIONS(1014), - [aux_sym_cmd_identifier_token3] = ACTIONS(1014), - [aux_sym_cmd_identifier_token4] = ACTIONS(1014), - [aux_sym_cmd_identifier_token5] = ACTIONS(1014), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [aux_sym_cmd_identifier_token7] = ACTIONS(1014), - [aux_sym_cmd_identifier_token8] = ACTIONS(1014), - [aux_sym_cmd_identifier_token9] = ACTIONS(1014), - [aux_sym_cmd_identifier_token10] = ACTIONS(1014), - [aux_sym_cmd_identifier_token11] = ACTIONS(1014), - [aux_sym_cmd_identifier_token12] = ACTIONS(1014), - [aux_sym_cmd_identifier_token13] = ACTIONS(1014), - [aux_sym_cmd_identifier_token14] = ACTIONS(1014), - [aux_sym_cmd_identifier_token15] = ACTIONS(1014), - [aux_sym_cmd_identifier_token16] = ACTIONS(1014), - [aux_sym_cmd_identifier_token17] = ACTIONS(1014), - [aux_sym_cmd_identifier_token18] = ACTIONS(1014), - [aux_sym_cmd_identifier_token19] = ACTIONS(1014), - [aux_sym_cmd_identifier_token20] = ACTIONS(1014), - [aux_sym_cmd_identifier_token21] = ACTIONS(1014), - [aux_sym_cmd_identifier_token22] = ACTIONS(1014), - [aux_sym_cmd_identifier_token23] = ACTIONS(1014), - [aux_sym_cmd_identifier_token24] = ACTIONS(1014), - [aux_sym_cmd_identifier_token25] = ACTIONS(1014), - [aux_sym_cmd_identifier_token26] = ACTIONS(1014), - [aux_sym_cmd_identifier_token27] = ACTIONS(1014), - [aux_sym_cmd_identifier_token28] = ACTIONS(1014), - [aux_sym_cmd_identifier_token29] = ACTIONS(1014), - [aux_sym_cmd_identifier_token30] = ACTIONS(1014), - [aux_sym_cmd_identifier_token31] = ACTIONS(1014), - [aux_sym_cmd_identifier_token32] = ACTIONS(1014), - [aux_sym_cmd_identifier_token33] = ACTIONS(1014), - [aux_sym_cmd_identifier_token34] = ACTIONS(1014), - [aux_sym_cmd_identifier_token35] = ACTIONS(1014), - [aux_sym_cmd_identifier_token36] = ACTIONS(1014), - [aux_sym_cmd_identifier_token37] = ACTIONS(1014), - [aux_sym_cmd_identifier_token38] = ACTIONS(1014), - [aux_sym_cmd_identifier_token39] = ACTIONS(1014), - [aux_sym_cmd_identifier_token40] = ACTIONS(1014), - [anon_sym_def] = ACTIONS(1014), - [anon_sym_export_DASHenv] = ACTIONS(1014), - [anon_sym_extern] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_use] = ACTIONS(1014), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_DOLLAR] = ACTIONS(1014), - [anon_sym_error] = ACTIONS(1014), - [anon_sym_DASH2] = ACTIONS(1014), - [anon_sym_break] = ACTIONS(1014), - [anon_sym_continue] = ACTIONS(1014), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_loop] = ACTIONS(1014), - [anon_sym_make] = ACTIONS(1014), - [anon_sym_while] = ACTIONS(1014), - [anon_sym_do] = ACTIONS(1014), - [anon_sym_if] = ACTIONS(1014), - [anon_sym_else] = ACTIONS(1014), - [anon_sym_match] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_try] = ACTIONS(1014), - [anon_sym_catch] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1014), - [anon_sym_source] = ACTIONS(1014), - [anon_sym_source_DASHenv] = ACTIONS(1014), - [anon_sym_register] = ACTIONS(1014), - [anon_sym_hide] = ACTIONS(1014), - [anon_sym_hide_DASHenv] = ACTIONS(1014), - [anon_sym_overlay] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(1014), - [anon_sym_PLUS2] = ACTIONS(1014), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1014), - [anon_sym_DOT_DOT2] = ACTIONS(1014), - [anon_sym_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1016), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1014), - [aux_sym__val_number_decimal_token1] = ACTIONS(1014), - [aux_sym__val_number_decimal_token2] = ACTIONS(1014), - [aux_sym__val_number_decimal_token3] = ACTIONS(1014), - [aux_sym__val_number_decimal_token4] = ACTIONS(1014), - [aux_sym__val_number_token1] = ACTIONS(1014), - [aux_sym__val_number_token2] = ACTIONS(1014), - [aux_sym__val_number_token3] = ACTIONS(1014), - [aux_sym__val_number_token4] = ACTIONS(1014), - [aux_sym__val_number_token5] = ACTIONS(1014), - [aux_sym__val_number_token6] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [sym__str_single_quotes] = ACTIONS(1014), - [sym__str_back_ticks] = ACTIONS(1014), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1014), - [sym__entry_separator] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1016), - }, - [453] = { - [sym_cell_path] = STATE(695), - [sym_path] = STATE(689), - [sym_comment] = STATE(453), - [aux_sym_cell_path_repeat1] = STATE(522), - [anon_sym_export] = ACTIONS(2102), - [anon_sym_alias] = ACTIONS(2102), - [anon_sym_let] = ACTIONS(2102), - [anon_sym_let_DASHenv] = ACTIONS(2102), - [anon_sym_mut] = ACTIONS(2102), - [anon_sym_const] = ACTIONS(2102), - [aux_sym_cmd_identifier_token1] = ACTIONS(2102), - [aux_sym_cmd_identifier_token2] = ACTIONS(2104), - [aux_sym_cmd_identifier_token3] = ACTIONS(2104), - [aux_sym_cmd_identifier_token4] = ACTIONS(2104), - [aux_sym_cmd_identifier_token5] = ACTIONS(2104), - [aux_sym_cmd_identifier_token6] = ACTIONS(2104), - [aux_sym_cmd_identifier_token7] = ACTIONS(2104), - [aux_sym_cmd_identifier_token8] = ACTIONS(2102), - [aux_sym_cmd_identifier_token9] = ACTIONS(2102), - [aux_sym_cmd_identifier_token10] = ACTIONS(2104), - [aux_sym_cmd_identifier_token11] = ACTIONS(2104), - [aux_sym_cmd_identifier_token12] = ACTIONS(2102), - [aux_sym_cmd_identifier_token13] = ACTIONS(2102), - [aux_sym_cmd_identifier_token14] = ACTIONS(2102), - [aux_sym_cmd_identifier_token15] = ACTIONS(2102), - [aux_sym_cmd_identifier_token16] = ACTIONS(2104), - [aux_sym_cmd_identifier_token17] = ACTIONS(2104), - [aux_sym_cmd_identifier_token18] = ACTIONS(2104), - [aux_sym_cmd_identifier_token19] = ACTIONS(2104), - [aux_sym_cmd_identifier_token20] = ACTIONS(2104), - [aux_sym_cmd_identifier_token21] = ACTIONS(2104), - [aux_sym_cmd_identifier_token22] = ACTIONS(2104), - [aux_sym_cmd_identifier_token23] = ACTIONS(2104), - [aux_sym_cmd_identifier_token24] = ACTIONS(2104), - [aux_sym_cmd_identifier_token25] = ACTIONS(2104), - [aux_sym_cmd_identifier_token26] = ACTIONS(2104), - [aux_sym_cmd_identifier_token27] = ACTIONS(2104), - [aux_sym_cmd_identifier_token28] = ACTIONS(2104), - [aux_sym_cmd_identifier_token29] = ACTIONS(2104), - [aux_sym_cmd_identifier_token30] = ACTIONS(2104), - [aux_sym_cmd_identifier_token31] = ACTIONS(2104), - [aux_sym_cmd_identifier_token32] = ACTIONS(2104), - [aux_sym_cmd_identifier_token33] = ACTIONS(2104), - [aux_sym_cmd_identifier_token34] = ACTIONS(2102), - [aux_sym_cmd_identifier_token35] = ACTIONS(2104), - [aux_sym_cmd_identifier_token36] = ACTIONS(2104), - [aux_sym_cmd_identifier_token37] = ACTIONS(2104), - [aux_sym_cmd_identifier_token38] = ACTIONS(2102), - [aux_sym_cmd_identifier_token39] = ACTIONS(2104), - [aux_sym_cmd_identifier_token40] = ACTIONS(2104), - [anon_sym_def] = ACTIONS(2102), - [anon_sym_export_DASHenv] = ACTIONS(2102), - [anon_sym_extern] = ACTIONS(2102), - [anon_sym_module] = ACTIONS(2102), - [anon_sym_use] = ACTIONS(2102), - [anon_sym_LPAREN] = ACTIONS(2104), - [anon_sym_DOLLAR] = ACTIONS(2104), - [anon_sym_error] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2102), - [anon_sym_break] = ACTIONS(2102), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_for] = ACTIONS(2102), - [anon_sym_in2] = ACTIONS(2102), - [anon_sym_loop] = ACTIONS(2102), - [anon_sym_make] = ACTIONS(2102), - [anon_sym_while] = ACTIONS(2102), - [anon_sym_do] = ACTIONS(2102), - [anon_sym_if] = ACTIONS(2102), - [anon_sym_else] = ACTIONS(2102), - [anon_sym_match] = ACTIONS(2102), - [anon_sym_RBRACE] = ACTIONS(2104), - [anon_sym_try] = ACTIONS(2102), - [anon_sym_catch] = ACTIONS(2102), - [anon_sym_return] = ACTIONS(2102), - [anon_sym_source] = ACTIONS(2102), - [anon_sym_source_DASHenv] = ACTIONS(2102), - [anon_sym_register] = ACTIONS(2102), - [anon_sym_hide] = ACTIONS(2102), - [anon_sym_hide_DASHenv] = ACTIONS(2102), - [anon_sym_overlay] = ACTIONS(2102), - [anon_sym_as] = ACTIONS(2102), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2104), - [anon_sym_DOT] = ACTIONS(2110), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2104), - [aux_sym__val_number_decimal_token1] = ACTIONS(2102), - [aux_sym__val_number_decimal_token2] = ACTIONS(2104), - [aux_sym__val_number_decimal_token3] = ACTIONS(2104), - [aux_sym__val_number_decimal_token4] = ACTIONS(2104), - [aux_sym__val_number_token1] = ACTIONS(2104), - [aux_sym__val_number_token2] = ACTIONS(2104), - [aux_sym__val_number_token3] = ACTIONS(2104), - [aux_sym__val_number_token4] = ACTIONS(2102), - [aux_sym__val_number_token5] = ACTIONS(2102), - [aux_sym__val_number_token6] = ACTIONS(2102), - [anon_sym_DQUOTE] = ACTIONS(2104), - [sym__str_single_quotes] = ACTIONS(2104), - [sym__str_back_ticks] = ACTIONS(2104), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2104), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2104), - }, - [454] = { - [sym_cell_path] = STATE(726), - [sym_path] = STATE(689), - [sym_comment] = STATE(454), - [aux_sym_cell_path_repeat1] = STATE(522), - [anon_sym_export] = ACTIONS(1944), - [anon_sym_alias] = ACTIONS(1944), - [anon_sym_let] = ACTIONS(1944), - [anon_sym_let_DASHenv] = ACTIONS(1944), - [anon_sym_mut] = ACTIONS(1944), - [anon_sym_const] = ACTIONS(1944), - [aux_sym_cmd_identifier_token1] = ACTIONS(1944), - [aux_sym_cmd_identifier_token2] = ACTIONS(1946), - [aux_sym_cmd_identifier_token3] = ACTIONS(1946), - [aux_sym_cmd_identifier_token4] = ACTIONS(1946), - [aux_sym_cmd_identifier_token5] = ACTIONS(1946), - [aux_sym_cmd_identifier_token6] = ACTIONS(1946), - [aux_sym_cmd_identifier_token7] = ACTIONS(1946), - [aux_sym_cmd_identifier_token8] = ACTIONS(1944), - [aux_sym_cmd_identifier_token9] = ACTIONS(1944), - [aux_sym_cmd_identifier_token10] = ACTIONS(1946), - [aux_sym_cmd_identifier_token11] = ACTIONS(1946), - [aux_sym_cmd_identifier_token12] = ACTIONS(1944), - [aux_sym_cmd_identifier_token13] = ACTIONS(1944), - [aux_sym_cmd_identifier_token14] = ACTIONS(1944), - [aux_sym_cmd_identifier_token15] = ACTIONS(1944), - [aux_sym_cmd_identifier_token16] = ACTIONS(1946), - [aux_sym_cmd_identifier_token17] = ACTIONS(1946), - [aux_sym_cmd_identifier_token18] = ACTIONS(1946), - [aux_sym_cmd_identifier_token19] = ACTIONS(1946), - [aux_sym_cmd_identifier_token20] = ACTIONS(1946), - [aux_sym_cmd_identifier_token21] = ACTIONS(1946), - [aux_sym_cmd_identifier_token22] = ACTIONS(1946), - [aux_sym_cmd_identifier_token23] = ACTIONS(1946), - [aux_sym_cmd_identifier_token24] = ACTIONS(1946), - [aux_sym_cmd_identifier_token25] = ACTIONS(1946), - [aux_sym_cmd_identifier_token26] = ACTIONS(1946), - [aux_sym_cmd_identifier_token27] = ACTIONS(1946), - [aux_sym_cmd_identifier_token28] = ACTIONS(1946), - [aux_sym_cmd_identifier_token29] = ACTIONS(1946), - [aux_sym_cmd_identifier_token30] = ACTIONS(1946), - [aux_sym_cmd_identifier_token31] = ACTIONS(1946), - [aux_sym_cmd_identifier_token32] = ACTIONS(1946), - [aux_sym_cmd_identifier_token33] = ACTIONS(1946), - [aux_sym_cmd_identifier_token34] = ACTIONS(1944), - [aux_sym_cmd_identifier_token35] = ACTIONS(1946), - [aux_sym_cmd_identifier_token36] = ACTIONS(1946), - [aux_sym_cmd_identifier_token37] = ACTIONS(1946), - [aux_sym_cmd_identifier_token38] = ACTIONS(1944), - [aux_sym_cmd_identifier_token39] = ACTIONS(1946), - [aux_sym_cmd_identifier_token40] = ACTIONS(1946), - [anon_sym_def] = ACTIONS(1944), - [anon_sym_export_DASHenv] = ACTIONS(1944), - [anon_sym_extern] = ACTIONS(1944), - [anon_sym_module] = ACTIONS(1944), - [anon_sym_use] = ACTIONS(1944), - [anon_sym_LPAREN] = ACTIONS(1946), - [anon_sym_DOLLAR] = ACTIONS(1946), - [anon_sym_error] = ACTIONS(1944), - [anon_sym_DASH2] = ACTIONS(1944), - [anon_sym_break] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(1944), - [anon_sym_for] = ACTIONS(1944), - [anon_sym_in2] = ACTIONS(1944), - [anon_sym_loop] = ACTIONS(1944), - [anon_sym_make] = ACTIONS(1944), - [anon_sym_while] = ACTIONS(1944), - [anon_sym_do] = ACTIONS(1944), - [anon_sym_if] = ACTIONS(1944), - [anon_sym_else] = ACTIONS(1944), - [anon_sym_match] = ACTIONS(1944), - [anon_sym_RBRACE] = ACTIONS(1946), - [anon_sym_try] = ACTIONS(1944), - [anon_sym_catch] = ACTIONS(1944), - [anon_sym_return] = ACTIONS(1944), - [anon_sym_source] = ACTIONS(1944), - [anon_sym_source_DASHenv] = ACTIONS(1944), - [anon_sym_register] = ACTIONS(1944), - [anon_sym_hide] = ACTIONS(1944), - [anon_sym_hide_DASHenv] = ACTIONS(1944), - [anon_sym_overlay] = ACTIONS(1944), - [anon_sym_as] = ACTIONS(1944), - [anon_sym_PLUS2] = ACTIONS(1944), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1946), - [anon_sym_DOT] = ACTIONS(2110), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1944), - [aux_sym__val_number_decimal_token2] = ACTIONS(1946), - [aux_sym__val_number_decimal_token3] = ACTIONS(1946), - [aux_sym__val_number_decimal_token4] = ACTIONS(1946), - [aux_sym__val_number_token1] = ACTIONS(1946), - [aux_sym__val_number_token2] = ACTIONS(1946), - [aux_sym__val_number_token3] = ACTIONS(1946), - [aux_sym__val_number_token4] = ACTIONS(1944), - [aux_sym__val_number_token5] = ACTIONS(1944), - [aux_sym__val_number_token6] = ACTIONS(1944), - [anon_sym_DQUOTE] = ACTIONS(1946), - [sym__str_single_quotes] = ACTIONS(1946), - [sym__str_back_ticks] = ACTIONS(1946), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1946), + [493] = { + [sym_cell_path] = STATE(757), + [sym_path] = STATE(623), + [sym_comment] = STATE(493), + [aux_sym_cell_path_repeat1] = STATE(532), + [anon_sym_export] = ACTIONS(961), + [anon_sym_alias] = ACTIONS(961), + [anon_sym_let] = ACTIONS(961), + [anon_sym_let_DASHenv] = ACTIONS(961), + [anon_sym_mut] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [aux_sym_cmd_identifier_token1] = ACTIONS(961), + [aux_sym_cmd_identifier_token2] = ACTIONS(963), + [aux_sym_cmd_identifier_token3] = ACTIONS(963), + [aux_sym_cmd_identifier_token4] = ACTIONS(963), + [aux_sym_cmd_identifier_token5] = ACTIONS(963), + [aux_sym_cmd_identifier_token6] = ACTIONS(963), + [aux_sym_cmd_identifier_token7] = ACTIONS(963), + [aux_sym_cmd_identifier_token8] = ACTIONS(961), + [aux_sym_cmd_identifier_token9] = ACTIONS(961), + [aux_sym_cmd_identifier_token10] = ACTIONS(963), + [aux_sym_cmd_identifier_token11] = ACTIONS(963), + [aux_sym_cmd_identifier_token12] = ACTIONS(961), + [aux_sym_cmd_identifier_token13] = ACTIONS(961), + [aux_sym_cmd_identifier_token14] = ACTIONS(961), + [aux_sym_cmd_identifier_token15] = ACTIONS(961), + [aux_sym_cmd_identifier_token16] = ACTIONS(963), + [aux_sym_cmd_identifier_token17] = ACTIONS(963), + [aux_sym_cmd_identifier_token18] = ACTIONS(963), + [aux_sym_cmd_identifier_token19] = ACTIONS(963), + [aux_sym_cmd_identifier_token20] = ACTIONS(963), + [aux_sym_cmd_identifier_token21] = ACTIONS(963), + [aux_sym_cmd_identifier_token22] = ACTIONS(963), + [aux_sym_cmd_identifier_token23] = ACTIONS(963), + [aux_sym_cmd_identifier_token24] = ACTIONS(963), + [aux_sym_cmd_identifier_token25] = ACTIONS(963), + [aux_sym_cmd_identifier_token26] = ACTIONS(963), + [aux_sym_cmd_identifier_token27] = ACTIONS(963), + [aux_sym_cmd_identifier_token28] = ACTIONS(963), + [aux_sym_cmd_identifier_token29] = ACTIONS(963), + [aux_sym_cmd_identifier_token30] = ACTIONS(963), + [aux_sym_cmd_identifier_token31] = ACTIONS(963), + [aux_sym_cmd_identifier_token32] = ACTIONS(963), + [aux_sym_cmd_identifier_token33] = ACTIONS(963), + [aux_sym_cmd_identifier_token34] = ACTIONS(961), + [aux_sym_cmd_identifier_token35] = ACTIONS(963), + [aux_sym_cmd_identifier_token36] = ACTIONS(963), + [aux_sym_cmd_identifier_token37] = ACTIONS(963), + [aux_sym_cmd_identifier_token38] = ACTIONS(961), + [aux_sym_cmd_identifier_token39] = ACTIONS(963), + [aux_sym_cmd_identifier_token40] = ACTIONS(963), + [anon_sym_def] = ACTIONS(961), + [anon_sym_export_DASHenv] = ACTIONS(961), + [anon_sym_extern] = ACTIONS(961), + [anon_sym_module] = ACTIONS(961), + [anon_sym_use] = ACTIONS(961), + [anon_sym_LPAREN] = ACTIONS(963), + [anon_sym_DOLLAR] = ACTIONS(963), + [anon_sym_error] = ACTIONS(961), + [anon_sym_DASH2] = ACTIONS(961), + [anon_sym_break] = ACTIONS(961), + [anon_sym_continue] = ACTIONS(961), + [anon_sym_for] = ACTIONS(961), + [anon_sym_in2] = ACTIONS(961), + [anon_sym_loop] = ACTIONS(961), + [anon_sym_make] = ACTIONS(961), + [anon_sym_while] = ACTIONS(961), + [anon_sym_do] = ACTIONS(961), + [anon_sym_if] = ACTIONS(961), + [anon_sym_else] = ACTIONS(961), + [anon_sym_match] = ACTIONS(961), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_try] = ACTIONS(961), + [anon_sym_catch] = ACTIONS(961), + [anon_sym_return] = ACTIONS(961), + [anon_sym_source] = ACTIONS(961), + [anon_sym_source_DASHenv] = ACTIONS(961), + [anon_sym_register] = ACTIONS(961), + [anon_sym_hide] = ACTIONS(961), + [anon_sym_hide_DASHenv] = ACTIONS(961), + [anon_sym_overlay] = ACTIONS(961), + [anon_sym_as] = ACTIONS(961), + [anon_sym_PLUS2] = ACTIONS(961), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(963), + [anon_sym_DOT] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(963), + [aux_sym__val_number_decimal_token1] = ACTIONS(961), + [aux_sym__val_number_decimal_token2] = ACTIONS(963), + [aux_sym__val_number_decimal_token3] = ACTIONS(963), + [aux_sym__val_number_decimal_token4] = ACTIONS(963), + [aux_sym__val_number_token1] = ACTIONS(963), + [aux_sym__val_number_token2] = ACTIONS(963), + [aux_sym__val_number_token3] = ACTIONS(963), + [aux_sym__val_number_token4] = ACTIONS(961), + [aux_sym__val_number_token5] = ACTIONS(961), + [aux_sym__val_number_token6] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(963), + [sym__str_single_quotes] = ACTIONS(963), + [sym__str_back_ticks] = ACTIONS(963), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(963), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1946), - }, - [455] = { - [sym_comment] = STATE(455), - [anon_sym_export] = ACTIONS(1030), - [anon_sym_alias] = ACTIONS(1030), - [anon_sym_let] = ACTIONS(1030), - [anon_sym_let_DASHenv] = ACTIONS(1030), - [anon_sym_mut] = ACTIONS(1030), - [anon_sym_const] = ACTIONS(1030), - [aux_sym_cmd_identifier_token1] = ACTIONS(1030), - [aux_sym_cmd_identifier_token2] = ACTIONS(1030), - [aux_sym_cmd_identifier_token3] = ACTIONS(1030), - [aux_sym_cmd_identifier_token4] = ACTIONS(1030), - [aux_sym_cmd_identifier_token5] = ACTIONS(1030), - [aux_sym_cmd_identifier_token6] = ACTIONS(1030), - [aux_sym_cmd_identifier_token7] = ACTIONS(1030), - [aux_sym_cmd_identifier_token8] = ACTIONS(1030), - [aux_sym_cmd_identifier_token9] = ACTIONS(1030), - [aux_sym_cmd_identifier_token10] = ACTIONS(1030), - [aux_sym_cmd_identifier_token11] = ACTIONS(1030), - [aux_sym_cmd_identifier_token12] = ACTIONS(1030), - [aux_sym_cmd_identifier_token13] = ACTIONS(1030), - [aux_sym_cmd_identifier_token14] = ACTIONS(1030), - [aux_sym_cmd_identifier_token15] = ACTIONS(1030), - [aux_sym_cmd_identifier_token16] = ACTIONS(1030), - [aux_sym_cmd_identifier_token17] = ACTIONS(1030), - [aux_sym_cmd_identifier_token18] = ACTIONS(1030), - [aux_sym_cmd_identifier_token19] = ACTIONS(1030), - [aux_sym_cmd_identifier_token20] = ACTIONS(1030), - [aux_sym_cmd_identifier_token21] = ACTIONS(1030), - [aux_sym_cmd_identifier_token22] = ACTIONS(1030), - [aux_sym_cmd_identifier_token23] = ACTIONS(1030), - [aux_sym_cmd_identifier_token24] = ACTIONS(1030), - [aux_sym_cmd_identifier_token25] = ACTIONS(1030), - [aux_sym_cmd_identifier_token26] = ACTIONS(1030), - [aux_sym_cmd_identifier_token27] = ACTIONS(1030), - [aux_sym_cmd_identifier_token28] = ACTIONS(1030), - [aux_sym_cmd_identifier_token29] = ACTIONS(1030), - [aux_sym_cmd_identifier_token30] = ACTIONS(1030), - [aux_sym_cmd_identifier_token31] = ACTIONS(1030), - [aux_sym_cmd_identifier_token32] = ACTIONS(1030), - [aux_sym_cmd_identifier_token33] = ACTIONS(1030), - [aux_sym_cmd_identifier_token34] = ACTIONS(1030), - [aux_sym_cmd_identifier_token35] = ACTIONS(1030), - [aux_sym_cmd_identifier_token36] = ACTIONS(1030), - [aux_sym_cmd_identifier_token37] = ACTIONS(1030), - [aux_sym_cmd_identifier_token38] = ACTIONS(1030), - [aux_sym_cmd_identifier_token39] = ACTIONS(1030), - [aux_sym_cmd_identifier_token40] = ACTIONS(1030), - [anon_sym_def] = ACTIONS(1030), - [anon_sym_export_DASHenv] = ACTIONS(1030), - [anon_sym_extern] = ACTIONS(1030), - [anon_sym_module] = ACTIONS(1030), - [anon_sym_use] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(1030), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_error] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(1030), - [anon_sym_break] = ACTIONS(1030), - [anon_sym_continue] = ACTIONS(1030), - [anon_sym_for] = ACTIONS(1030), - [anon_sym_in2] = ACTIONS(1030), - [anon_sym_loop] = ACTIONS(1030), - [anon_sym_make] = ACTIONS(1030), - [anon_sym_while] = ACTIONS(1030), - [anon_sym_do] = ACTIONS(1030), - [anon_sym_if] = ACTIONS(1030), - [anon_sym_else] = ACTIONS(1030), - [anon_sym_match] = ACTIONS(1030), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_try] = ACTIONS(1030), - [anon_sym_catch] = ACTIONS(1030), - [anon_sym_return] = ACTIONS(1030), - [anon_sym_source] = ACTIONS(1030), - [anon_sym_source_DASHenv] = ACTIONS(1030), - [anon_sym_register] = ACTIONS(1030), - [anon_sym_hide] = ACTIONS(1030), - [anon_sym_hide_DASHenv] = ACTIONS(1030), - [anon_sym_overlay] = ACTIONS(1030), - [anon_sym_as] = ACTIONS(1030), - [anon_sym_PLUS2] = ACTIONS(1030), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1030), - [anon_sym_DOT_DOT2] = ACTIONS(2112), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2114), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2114), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1030), - [aux_sym__val_number_decimal_token1] = ACTIONS(1030), - [aux_sym__val_number_decimal_token2] = ACTIONS(1030), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), - [aux_sym__val_number_token1] = ACTIONS(1030), - [aux_sym__val_number_token2] = ACTIONS(1030), - [aux_sym__val_number_token3] = ACTIONS(1030), - [aux_sym__val_number_token4] = ACTIONS(1030), - [aux_sym__val_number_token5] = ACTIONS(1030), - [aux_sym__val_number_token6] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym__str_single_quotes] = ACTIONS(1030), - [sym__str_back_ticks] = ACTIONS(1030), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1030), - [sym__entry_separator] = ACTIONS(1032), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1032), - }, - [456] = { - [sym_cell_path] = STATE(759), - [sym_path] = STATE(689), - [sym_comment] = STATE(456), - [aux_sym_cell_path_repeat1] = STATE(522), - [anon_sym_export] = ACTIONS(2082), - [anon_sym_alias] = ACTIONS(2082), - [anon_sym_let] = ACTIONS(2082), - [anon_sym_let_DASHenv] = ACTIONS(2082), - [anon_sym_mut] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [aux_sym_cmd_identifier_token1] = ACTIONS(2082), - [aux_sym_cmd_identifier_token2] = ACTIONS(2084), - [aux_sym_cmd_identifier_token3] = ACTIONS(2084), - [aux_sym_cmd_identifier_token4] = ACTIONS(2084), - [aux_sym_cmd_identifier_token5] = ACTIONS(2084), - [aux_sym_cmd_identifier_token6] = ACTIONS(2084), - [aux_sym_cmd_identifier_token7] = ACTIONS(2084), - [aux_sym_cmd_identifier_token8] = ACTIONS(2082), - [aux_sym_cmd_identifier_token9] = ACTIONS(2082), - [aux_sym_cmd_identifier_token10] = ACTIONS(2084), - [aux_sym_cmd_identifier_token11] = ACTIONS(2084), - [aux_sym_cmd_identifier_token12] = ACTIONS(2082), - [aux_sym_cmd_identifier_token13] = ACTIONS(2082), - [aux_sym_cmd_identifier_token14] = ACTIONS(2082), - [aux_sym_cmd_identifier_token15] = ACTIONS(2082), - [aux_sym_cmd_identifier_token16] = ACTIONS(2084), - [aux_sym_cmd_identifier_token17] = ACTIONS(2084), - [aux_sym_cmd_identifier_token18] = ACTIONS(2084), - [aux_sym_cmd_identifier_token19] = ACTIONS(2084), - [aux_sym_cmd_identifier_token20] = ACTIONS(2084), - [aux_sym_cmd_identifier_token21] = ACTIONS(2084), - [aux_sym_cmd_identifier_token22] = ACTIONS(2084), - [aux_sym_cmd_identifier_token23] = ACTIONS(2084), - [aux_sym_cmd_identifier_token24] = ACTIONS(2084), - [aux_sym_cmd_identifier_token25] = ACTIONS(2084), - [aux_sym_cmd_identifier_token26] = ACTIONS(2084), - [aux_sym_cmd_identifier_token27] = ACTIONS(2084), - [aux_sym_cmd_identifier_token28] = ACTIONS(2084), - [aux_sym_cmd_identifier_token29] = ACTIONS(2084), - [aux_sym_cmd_identifier_token30] = ACTIONS(2084), - [aux_sym_cmd_identifier_token31] = ACTIONS(2084), - [aux_sym_cmd_identifier_token32] = ACTIONS(2084), - [aux_sym_cmd_identifier_token33] = ACTIONS(2084), - [aux_sym_cmd_identifier_token34] = ACTIONS(2082), - [aux_sym_cmd_identifier_token35] = ACTIONS(2084), - [aux_sym_cmd_identifier_token36] = ACTIONS(2084), - [aux_sym_cmd_identifier_token37] = ACTIONS(2084), - [aux_sym_cmd_identifier_token38] = ACTIONS(2082), - [aux_sym_cmd_identifier_token39] = ACTIONS(2084), - [aux_sym_cmd_identifier_token40] = ACTIONS(2084), - [anon_sym_def] = ACTIONS(2082), - [anon_sym_export_DASHenv] = ACTIONS(2082), - [anon_sym_extern] = ACTIONS(2082), - [anon_sym_module] = ACTIONS(2082), - [anon_sym_use] = ACTIONS(2082), - [anon_sym_LPAREN] = ACTIONS(2084), - [anon_sym_DOLLAR] = ACTIONS(2084), - [anon_sym_error] = ACTIONS(2082), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_break] = ACTIONS(2082), - [anon_sym_continue] = ACTIONS(2082), - [anon_sym_for] = ACTIONS(2082), - [anon_sym_in2] = ACTIONS(2082), - [anon_sym_loop] = ACTIONS(2082), - [anon_sym_make] = ACTIONS(2082), - [anon_sym_while] = ACTIONS(2082), - [anon_sym_do] = ACTIONS(2082), - [anon_sym_if] = ACTIONS(2082), - [anon_sym_else] = ACTIONS(2082), - [anon_sym_match] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2084), - [anon_sym_try] = ACTIONS(2082), - [anon_sym_catch] = ACTIONS(2082), - [anon_sym_return] = ACTIONS(2082), - [anon_sym_source] = ACTIONS(2082), - [anon_sym_source_DASHenv] = ACTIONS(2082), - [anon_sym_register] = ACTIONS(2082), - [anon_sym_hide] = ACTIONS(2082), - [anon_sym_hide_DASHenv] = ACTIONS(2082), - [anon_sym_overlay] = ACTIONS(2082), - [anon_sym_as] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2082), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2084), - [anon_sym_DOT] = ACTIONS(2110), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2084), - [aux_sym__val_number_decimal_token1] = ACTIONS(2082), - [aux_sym__val_number_decimal_token2] = ACTIONS(2084), - [aux_sym__val_number_decimal_token3] = ACTIONS(2084), - [aux_sym__val_number_decimal_token4] = ACTIONS(2084), - [aux_sym__val_number_token1] = ACTIONS(2084), - [aux_sym__val_number_token2] = ACTIONS(2084), - [aux_sym__val_number_token3] = ACTIONS(2084), - [aux_sym__val_number_token4] = ACTIONS(2082), - [aux_sym__val_number_token5] = ACTIONS(2082), - [aux_sym__val_number_token6] = ACTIONS(2082), - [anon_sym_DQUOTE] = ACTIONS(2084), - [sym__str_single_quotes] = ACTIONS(2084), - [sym__str_back_ticks] = ACTIONS(2084), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2084), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2084), + [sym_raw_string_begin] = ACTIONS(963), }, - [457] = { - [sym_comment] = STATE(457), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_alias] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_let_DASHenv] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [aux_sym_cmd_identifier_token1] = ACTIONS(1783), - [aux_sym_cmd_identifier_token2] = ACTIONS(1783), - [aux_sym_cmd_identifier_token3] = ACTIONS(1783), - [aux_sym_cmd_identifier_token4] = ACTIONS(1783), - [aux_sym_cmd_identifier_token5] = ACTIONS(1783), - [aux_sym_cmd_identifier_token6] = ACTIONS(1783), - [aux_sym_cmd_identifier_token7] = ACTIONS(1783), - [aux_sym_cmd_identifier_token8] = ACTIONS(1783), - [aux_sym_cmd_identifier_token9] = ACTIONS(1783), - [aux_sym_cmd_identifier_token10] = ACTIONS(1783), - [aux_sym_cmd_identifier_token11] = ACTIONS(1783), - [aux_sym_cmd_identifier_token12] = ACTIONS(1783), - [aux_sym_cmd_identifier_token13] = ACTIONS(1783), - [aux_sym_cmd_identifier_token14] = ACTIONS(1783), - [aux_sym_cmd_identifier_token15] = ACTIONS(1783), - [aux_sym_cmd_identifier_token16] = ACTIONS(1783), - [aux_sym_cmd_identifier_token17] = ACTIONS(1783), - [aux_sym_cmd_identifier_token18] = ACTIONS(1783), - [aux_sym_cmd_identifier_token19] = ACTIONS(1783), - [aux_sym_cmd_identifier_token20] = ACTIONS(1783), - [aux_sym_cmd_identifier_token21] = ACTIONS(1783), - [aux_sym_cmd_identifier_token22] = ACTIONS(1783), - [aux_sym_cmd_identifier_token23] = ACTIONS(1783), - [aux_sym_cmd_identifier_token24] = ACTIONS(1783), - [aux_sym_cmd_identifier_token25] = ACTIONS(1783), - [aux_sym_cmd_identifier_token26] = ACTIONS(1783), - [aux_sym_cmd_identifier_token27] = ACTIONS(1783), - [aux_sym_cmd_identifier_token28] = ACTIONS(1783), - [aux_sym_cmd_identifier_token29] = ACTIONS(1783), - [aux_sym_cmd_identifier_token30] = ACTIONS(1783), - [aux_sym_cmd_identifier_token31] = ACTIONS(1783), - [aux_sym_cmd_identifier_token32] = ACTIONS(1783), - [aux_sym_cmd_identifier_token33] = ACTIONS(1783), - [aux_sym_cmd_identifier_token34] = ACTIONS(1783), - [aux_sym_cmd_identifier_token35] = ACTIONS(1783), - [aux_sym_cmd_identifier_token36] = ACTIONS(1783), - [aux_sym_cmd_identifier_token37] = ACTIONS(1783), - [aux_sym_cmd_identifier_token38] = ACTIONS(1783), - [aux_sym_cmd_identifier_token39] = ACTIONS(1783), - [aux_sym_cmd_identifier_token40] = ACTIONS(1783), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_export_DASHenv] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_error] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_make] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_catch] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_source] = ACTIONS(1783), - [anon_sym_source_DASHenv] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_hide] = ACTIONS(1783), - [anon_sym_hide_DASHenv] = ACTIONS(1783), - [anon_sym_overlay] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1783), - [aux_sym__immediate_decimal_token2] = ACTIONS(2116), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1783), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1783), - [aux_sym__val_number_decimal_token3] = ACTIONS(1783), - [aux_sym__val_number_decimal_token4] = ACTIONS(1783), - [aux_sym__val_number_token1] = ACTIONS(1783), - [aux_sym__val_number_token2] = ACTIONS(1783), - [aux_sym__val_number_token3] = ACTIONS(1783), - [aux_sym__val_number_token4] = ACTIONS(1783), - [aux_sym__val_number_token5] = ACTIONS(1783), - [aux_sym__val_number_token6] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1783), - [sym__str_single_quotes] = ACTIONS(1783), - [sym__str_back_ticks] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1783), - [sym__entry_separator] = ACTIONS(1785), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1785), + [494] = { + [sym_cell_path] = STATE(702), + [sym_path] = STATE(623), + [sym_comment] = STATE(494), + [aux_sym_cell_path_repeat1] = STATE(532), + [anon_sym_export] = ACTIONS(1853), + [anon_sym_alias] = ACTIONS(1853), + [anon_sym_let] = ACTIONS(1853), + [anon_sym_let_DASHenv] = ACTIONS(1853), + [anon_sym_mut] = ACTIONS(1853), + [anon_sym_const] = ACTIONS(1853), + [aux_sym_cmd_identifier_token1] = ACTIONS(1853), + [aux_sym_cmd_identifier_token2] = ACTIONS(1855), + [aux_sym_cmd_identifier_token3] = ACTIONS(1855), + [aux_sym_cmd_identifier_token4] = ACTIONS(1855), + [aux_sym_cmd_identifier_token5] = ACTIONS(1855), + [aux_sym_cmd_identifier_token6] = ACTIONS(1855), + [aux_sym_cmd_identifier_token7] = ACTIONS(1855), + [aux_sym_cmd_identifier_token8] = ACTIONS(1853), + [aux_sym_cmd_identifier_token9] = ACTIONS(1853), + [aux_sym_cmd_identifier_token10] = ACTIONS(1855), + [aux_sym_cmd_identifier_token11] = ACTIONS(1855), + [aux_sym_cmd_identifier_token12] = ACTIONS(1853), + [aux_sym_cmd_identifier_token13] = ACTIONS(1853), + [aux_sym_cmd_identifier_token14] = ACTIONS(1853), + [aux_sym_cmd_identifier_token15] = ACTIONS(1853), + [aux_sym_cmd_identifier_token16] = ACTIONS(1855), + [aux_sym_cmd_identifier_token17] = ACTIONS(1855), + [aux_sym_cmd_identifier_token18] = ACTIONS(1855), + [aux_sym_cmd_identifier_token19] = ACTIONS(1855), + [aux_sym_cmd_identifier_token20] = ACTIONS(1855), + [aux_sym_cmd_identifier_token21] = ACTIONS(1855), + [aux_sym_cmd_identifier_token22] = ACTIONS(1855), + [aux_sym_cmd_identifier_token23] = ACTIONS(1855), + [aux_sym_cmd_identifier_token24] = ACTIONS(1855), + [aux_sym_cmd_identifier_token25] = ACTIONS(1855), + [aux_sym_cmd_identifier_token26] = ACTIONS(1855), + [aux_sym_cmd_identifier_token27] = ACTIONS(1855), + [aux_sym_cmd_identifier_token28] = ACTIONS(1855), + [aux_sym_cmd_identifier_token29] = ACTIONS(1855), + [aux_sym_cmd_identifier_token30] = ACTIONS(1855), + [aux_sym_cmd_identifier_token31] = ACTIONS(1855), + [aux_sym_cmd_identifier_token32] = ACTIONS(1855), + [aux_sym_cmd_identifier_token33] = ACTIONS(1855), + [aux_sym_cmd_identifier_token34] = ACTIONS(1853), + [aux_sym_cmd_identifier_token35] = ACTIONS(1855), + [aux_sym_cmd_identifier_token36] = ACTIONS(1855), + [aux_sym_cmd_identifier_token37] = ACTIONS(1855), + [aux_sym_cmd_identifier_token38] = ACTIONS(1853), + [aux_sym_cmd_identifier_token39] = ACTIONS(1855), + [aux_sym_cmd_identifier_token40] = ACTIONS(1855), + [anon_sym_def] = ACTIONS(1853), + [anon_sym_export_DASHenv] = ACTIONS(1853), + [anon_sym_extern] = ACTIONS(1853), + [anon_sym_module] = ACTIONS(1853), + [anon_sym_use] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1855), + [anon_sym_DOLLAR] = ACTIONS(1855), + [anon_sym_error] = ACTIONS(1853), + [anon_sym_DASH2] = ACTIONS(1853), + [anon_sym_break] = ACTIONS(1853), + [anon_sym_continue] = ACTIONS(1853), + [anon_sym_for] = ACTIONS(1853), + [anon_sym_in2] = ACTIONS(1853), + [anon_sym_loop] = ACTIONS(1853), + [anon_sym_make] = ACTIONS(1853), + [anon_sym_while] = ACTIONS(1853), + [anon_sym_do] = ACTIONS(1853), + [anon_sym_if] = ACTIONS(1853), + [anon_sym_else] = ACTIONS(1853), + [anon_sym_match] = ACTIONS(1853), + [anon_sym_RBRACE] = ACTIONS(1855), + [anon_sym_try] = ACTIONS(1853), + [anon_sym_catch] = ACTIONS(1853), + [anon_sym_return] = ACTIONS(1853), + [anon_sym_source] = ACTIONS(1853), + [anon_sym_source_DASHenv] = ACTIONS(1853), + [anon_sym_register] = ACTIONS(1853), + [anon_sym_hide] = ACTIONS(1853), + [anon_sym_hide_DASHenv] = ACTIONS(1853), + [anon_sym_overlay] = ACTIONS(1853), + [anon_sym_as] = ACTIONS(1853), + [anon_sym_PLUS2] = ACTIONS(1853), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1855), + [anon_sym_DOT] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1855), + [aux_sym__val_number_decimal_token1] = ACTIONS(1853), + [aux_sym__val_number_decimal_token2] = ACTIONS(1855), + [aux_sym__val_number_decimal_token3] = ACTIONS(1855), + [aux_sym__val_number_decimal_token4] = ACTIONS(1855), + [aux_sym__val_number_token1] = ACTIONS(1855), + [aux_sym__val_number_token2] = ACTIONS(1855), + [aux_sym__val_number_token3] = ACTIONS(1855), + [aux_sym__val_number_token4] = ACTIONS(1853), + [aux_sym__val_number_token5] = ACTIONS(1853), + [aux_sym__val_number_token6] = ACTIONS(1853), + [anon_sym_DQUOTE] = ACTIONS(1855), + [sym__str_single_quotes] = ACTIONS(1855), + [sym__str_back_ticks] = ACTIONS(1855), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1855), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1855), }, - [458] = { - [sym_path] = STATE(569), - [sym_comment] = STATE(458), - [aux_sym_cell_path_repeat1] = STATE(459), + [495] = { + [sym_path] = STATE(567), + [sym_comment] = STATE(495), + [aux_sym_cell_path_repeat1] = STATE(496), [anon_sym_export] = ACTIONS(967), [anon_sym_alias] = ACTIONS(967), [anon_sym_let] = ACTIONS(967), @@ -125463,7 +129593,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(967), [anon_sym_PLUS2] = ACTIONS(967), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_DOT] = ACTIONS(1849), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(967), [aux_sym__val_number_decimal_token1] = ACTIONS(967), [aux_sym__val_number_decimal_token2] = ACTIONS(967), @@ -125483,10 +129613,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(969), }, - [459] = { - [sym_path] = STATE(569), - [sym_comment] = STATE(459), - [aux_sym_cell_path_repeat1] = STATE(459), + [496] = { + [sym_path] = STATE(567), + [sym_comment] = STATE(496), + [aux_sym_cell_path_repeat1] = STATE(496), [anon_sym_export] = ACTIONS(971), [anon_sym_alias] = ACTIONS(971), [anon_sym_let] = ACTIONS(971), @@ -125566,7 +129696,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(971), [anon_sym_PLUS2] = ACTIONS(971), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(2118), + [anon_sym_DOT] = ACTIONS(2154), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(971), [aux_sym__val_number_decimal_token1] = ACTIONS(971), [aux_sym__val_number_decimal_token2] = ACTIONS(971), @@ -125586,8 +129716,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(973), }, - [460] = { - [sym_comment] = STATE(460), + [497] = { + [sym_comment] = STATE(497), [anon_sym_export] = ACTIONS(1006), [anon_sym_alias] = ACTIONS(1006), [anon_sym_let] = ACTIONS(1006), @@ -125689,420 +129819,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1008), }, - [461] = { - [sym_comment] = STATE(461), - [anon_sym_export] = ACTIONS(1739), - [anon_sym_alias] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1739), - [anon_sym_let_DASHenv] = ACTIONS(1739), - [anon_sym_mut] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [aux_sym_cmd_identifier_token1] = ACTIONS(1739), - [aux_sym_cmd_identifier_token2] = ACTIONS(1739), - [aux_sym_cmd_identifier_token3] = ACTIONS(1739), - [aux_sym_cmd_identifier_token4] = ACTIONS(1739), - [aux_sym_cmd_identifier_token5] = ACTIONS(1739), - [aux_sym_cmd_identifier_token6] = ACTIONS(1739), - [aux_sym_cmd_identifier_token7] = ACTIONS(1739), - [aux_sym_cmd_identifier_token8] = ACTIONS(1739), - [aux_sym_cmd_identifier_token9] = ACTIONS(1739), - [aux_sym_cmd_identifier_token10] = ACTIONS(1739), - [aux_sym_cmd_identifier_token11] = ACTIONS(1739), - [aux_sym_cmd_identifier_token12] = ACTIONS(1739), - [aux_sym_cmd_identifier_token13] = ACTIONS(1739), - [aux_sym_cmd_identifier_token14] = ACTIONS(1739), - [aux_sym_cmd_identifier_token15] = ACTIONS(1739), - [aux_sym_cmd_identifier_token16] = ACTIONS(1739), - [aux_sym_cmd_identifier_token17] = ACTIONS(1739), - [aux_sym_cmd_identifier_token18] = ACTIONS(1739), - [aux_sym_cmd_identifier_token19] = ACTIONS(1739), - [aux_sym_cmd_identifier_token20] = ACTIONS(1739), - [aux_sym_cmd_identifier_token21] = ACTIONS(1739), - [aux_sym_cmd_identifier_token22] = ACTIONS(1739), - [aux_sym_cmd_identifier_token23] = ACTIONS(1739), - [aux_sym_cmd_identifier_token24] = ACTIONS(1739), - [aux_sym_cmd_identifier_token25] = ACTIONS(1739), - [aux_sym_cmd_identifier_token26] = ACTIONS(1739), - [aux_sym_cmd_identifier_token27] = ACTIONS(1739), - [aux_sym_cmd_identifier_token28] = ACTIONS(1739), - [aux_sym_cmd_identifier_token29] = ACTIONS(1739), - [aux_sym_cmd_identifier_token30] = ACTIONS(1739), - [aux_sym_cmd_identifier_token31] = ACTIONS(1739), - [aux_sym_cmd_identifier_token32] = ACTIONS(1739), - [aux_sym_cmd_identifier_token33] = ACTIONS(1739), - [aux_sym_cmd_identifier_token34] = ACTIONS(1739), - [aux_sym_cmd_identifier_token35] = ACTIONS(1739), - [aux_sym_cmd_identifier_token36] = ACTIONS(1739), - [aux_sym_cmd_identifier_token37] = ACTIONS(1739), - [aux_sym_cmd_identifier_token38] = ACTIONS(1739), - [aux_sym_cmd_identifier_token39] = ACTIONS(1739), - [aux_sym_cmd_identifier_token40] = ACTIONS(1739), - [anon_sym_def] = ACTIONS(1739), - [anon_sym_export_DASHenv] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1739), - [anon_sym_module] = ACTIONS(1739), - [anon_sym_use] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_error] = ACTIONS(1739), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_in2] = ACTIONS(1739), - [anon_sym_loop] = ACTIONS(1739), - [anon_sym_make] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_else] = ACTIONS(1739), - [anon_sym_match] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_catch] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_source] = ACTIONS(1739), - [anon_sym_source_DASHenv] = ACTIONS(1739), - [anon_sym_register] = ACTIONS(1739), - [anon_sym_hide] = ACTIONS(1739), - [anon_sym_hide_DASHenv] = ACTIONS(1739), - [anon_sym_overlay] = ACTIONS(1739), - [anon_sym_as] = ACTIONS(1739), - [anon_sym_PLUS2] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1739), - [anon_sym_DOT_DOT2] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1739), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1739), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1739), - [aux_sym__val_number_token1] = ACTIONS(1739), - [aux_sym__val_number_token2] = ACTIONS(1739), - [aux_sym__val_number_token3] = ACTIONS(1739), - [aux_sym__val_number_token4] = ACTIONS(1739), - [aux_sym__val_number_token5] = ACTIONS(1739), - [aux_sym__val_number_token6] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1739), - [sym__str_single_quotes] = ACTIONS(1739), - [sym__str_back_ticks] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1739), - [sym__entry_separator] = ACTIONS(1741), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1741), - }, - [462] = { - [sym_cell_path] = STATE(727), - [sym_path] = STATE(689), - [sym_comment] = STATE(462), - [aux_sym_cell_path_repeat1] = STATE(522), - [anon_sym_export] = ACTIONS(1948), - [anon_sym_alias] = ACTIONS(1948), - [anon_sym_let] = ACTIONS(1948), - [anon_sym_let_DASHenv] = ACTIONS(1948), - [anon_sym_mut] = ACTIONS(1948), - [anon_sym_const] = ACTIONS(1948), - [aux_sym_cmd_identifier_token1] = ACTIONS(1948), - [aux_sym_cmd_identifier_token2] = ACTIONS(1950), - [aux_sym_cmd_identifier_token3] = ACTIONS(1950), - [aux_sym_cmd_identifier_token4] = ACTIONS(1950), - [aux_sym_cmd_identifier_token5] = ACTIONS(1950), - [aux_sym_cmd_identifier_token6] = ACTIONS(1950), - [aux_sym_cmd_identifier_token7] = ACTIONS(1950), - [aux_sym_cmd_identifier_token8] = ACTIONS(1948), - [aux_sym_cmd_identifier_token9] = ACTIONS(1948), - [aux_sym_cmd_identifier_token10] = ACTIONS(1950), - [aux_sym_cmd_identifier_token11] = ACTIONS(1950), - [aux_sym_cmd_identifier_token12] = ACTIONS(1948), - [aux_sym_cmd_identifier_token13] = ACTIONS(1948), - [aux_sym_cmd_identifier_token14] = ACTIONS(1948), - [aux_sym_cmd_identifier_token15] = ACTIONS(1948), - [aux_sym_cmd_identifier_token16] = ACTIONS(1950), - [aux_sym_cmd_identifier_token17] = ACTIONS(1950), - [aux_sym_cmd_identifier_token18] = ACTIONS(1950), - [aux_sym_cmd_identifier_token19] = ACTIONS(1950), - [aux_sym_cmd_identifier_token20] = ACTIONS(1950), - [aux_sym_cmd_identifier_token21] = ACTIONS(1950), - [aux_sym_cmd_identifier_token22] = ACTIONS(1950), - [aux_sym_cmd_identifier_token23] = ACTIONS(1950), - [aux_sym_cmd_identifier_token24] = ACTIONS(1950), - [aux_sym_cmd_identifier_token25] = ACTIONS(1950), - [aux_sym_cmd_identifier_token26] = ACTIONS(1950), - [aux_sym_cmd_identifier_token27] = ACTIONS(1950), - [aux_sym_cmd_identifier_token28] = ACTIONS(1950), - [aux_sym_cmd_identifier_token29] = ACTIONS(1950), - [aux_sym_cmd_identifier_token30] = ACTIONS(1950), - [aux_sym_cmd_identifier_token31] = ACTIONS(1950), - [aux_sym_cmd_identifier_token32] = ACTIONS(1950), - [aux_sym_cmd_identifier_token33] = ACTIONS(1950), - [aux_sym_cmd_identifier_token34] = ACTIONS(1948), - [aux_sym_cmd_identifier_token35] = ACTIONS(1950), - [aux_sym_cmd_identifier_token36] = ACTIONS(1950), - [aux_sym_cmd_identifier_token37] = ACTIONS(1950), - [aux_sym_cmd_identifier_token38] = ACTIONS(1948), - [aux_sym_cmd_identifier_token39] = ACTIONS(1950), - [aux_sym_cmd_identifier_token40] = ACTIONS(1950), - [anon_sym_def] = ACTIONS(1948), - [anon_sym_export_DASHenv] = ACTIONS(1948), - [anon_sym_extern] = ACTIONS(1948), - [anon_sym_module] = ACTIONS(1948), - [anon_sym_use] = ACTIONS(1948), - [anon_sym_LPAREN] = ACTIONS(1950), - [anon_sym_DOLLAR] = ACTIONS(1950), - [anon_sym_error] = ACTIONS(1948), - [anon_sym_DASH2] = ACTIONS(1948), - [anon_sym_break] = ACTIONS(1948), - [anon_sym_continue] = ACTIONS(1948), - [anon_sym_for] = ACTIONS(1948), - [anon_sym_in2] = ACTIONS(1948), - [anon_sym_loop] = ACTIONS(1948), - [anon_sym_make] = ACTIONS(1948), - [anon_sym_while] = ACTIONS(1948), - [anon_sym_do] = ACTIONS(1948), - [anon_sym_if] = ACTIONS(1948), - [anon_sym_else] = ACTIONS(1948), - [anon_sym_match] = ACTIONS(1948), - [anon_sym_RBRACE] = ACTIONS(1950), - [anon_sym_try] = ACTIONS(1948), - [anon_sym_catch] = ACTIONS(1948), - [anon_sym_return] = ACTIONS(1948), - [anon_sym_source] = ACTIONS(1948), - [anon_sym_source_DASHenv] = ACTIONS(1948), - [anon_sym_register] = ACTIONS(1948), - [anon_sym_hide] = ACTIONS(1948), - [anon_sym_hide_DASHenv] = ACTIONS(1948), - [anon_sym_overlay] = ACTIONS(1948), - [anon_sym_as] = ACTIONS(1948), - [anon_sym_PLUS2] = ACTIONS(1948), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1950), - [anon_sym_DOT] = ACTIONS(2110), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1950), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1950), - [aux_sym__val_number_decimal_token4] = ACTIONS(1950), - [aux_sym__val_number_token1] = ACTIONS(1950), - [aux_sym__val_number_token2] = ACTIONS(1950), - [aux_sym__val_number_token3] = ACTIONS(1950), - [aux_sym__val_number_token4] = ACTIONS(1948), - [aux_sym__val_number_token5] = ACTIONS(1948), - [aux_sym__val_number_token6] = ACTIONS(1948), - [anon_sym_DQUOTE] = ACTIONS(1950), - [sym__str_single_quotes] = ACTIONS(1950), - [sym__str_back_ticks] = ACTIONS(1950), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1950), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1950), - }, - [463] = { - [sym_cell_path] = STATE(728), - [sym_path] = STATE(689), - [sym_comment] = STATE(463), - [aux_sym_cell_path_repeat1] = STATE(522), - [anon_sym_export] = ACTIONS(1952), - [anon_sym_alias] = ACTIONS(1952), - [anon_sym_let] = ACTIONS(1952), - [anon_sym_let_DASHenv] = ACTIONS(1952), - [anon_sym_mut] = ACTIONS(1952), - [anon_sym_const] = ACTIONS(1952), - [aux_sym_cmd_identifier_token1] = ACTIONS(1952), - [aux_sym_cmd_identifier_token2] = ACTIONS(1954), - [aux_sym_cmd_identifier_token3] = ACTIONS(1954), - [aux_sym_cmd_identifier_token4] = ACTIONS(1954), - [aux_sym_cmd_identifier_token5] = ACTIONS(1954), - [aux_sym_cmd_identifier_token6] = ACTIONS(1954), - [aux_sym_cmd_identifier_token7] = ACTIONS(1954), - [aux_sym_cmd_identifier_token8] = ACTIONS(1952), - [aux_sym_cmd_identifier_token9] = ACTIONS(1952), - [aux_sym_cmd_identifier_token10] = ACTIONS(1954), - [aux_sym_cmd_identifier_token11] = ACTIONS(1954), - [aux_sym_cmd_identifier_token12] = ACTIONS(1952), - [aux_sym_cmd_identifier_token13] = ACTIONS(1952), - [aux_sym_cmd_identifier_token14] = ACTIONS(1952), - [aux_sym_cmd_identifier_token15] = ACTIONS(1952), - [aux_sym_cmd_identifier_token16] = ACTIONS(1954), - [aux_sym_cmd_identifier_token17] = ACTIONS(1954), - [aux_sym_cmd_identifier_token18] = ACTIONS(1954), - [aux_sym_cmd_identifier_token19] = ACTIONS(1954), - [aux_sym_cmd_identifier_token20] = ACTIONS(1954), - [aux_sym_cmd_identifier_token21] = ACTIONS(1954), - [aux_sym_cmd_identifier_token22] = ACTIONS(1954), - [aux_sym_cmd_identifier_token23] = ACTIONS(1954), - [aux_sym_cmd_identifier_token24] = ACTIONS(1954), - [aux_sym_cmd_identifier_token25] = ACTIONS(1954), - [aux_sym_cmd_identifier_token26] = ACTIONS(1954), - [aux_sym_cmd_identifier_token27] = ACTIONS(1954), - [aux_sym_cmd_identifier_token28] = ACTIONS(1954), - [aux_sym_cmd_identifier_token29] = ACTIONS(1954), - [aux_sym_cmd_identifier_token30] = ACTIONS(1954), - [aux_sym_cmd_identifier_token31] = ACTIONS(1954), - [aux_sym_cmd_identifier_token32] = ACTIONS(1954), - [aux_sym_cmd_identifier_token33] = ACTIONS(1954), - [aux_sym_cmd_identifier_token34] = ACTIONS(1952), - [aux_sym_cmd_identifier_token35] = ACTIONS(1954), - [aux_sym_cmd_identifier_token36] = ACTIONS(1954), - [aux_sym_cmd_identifier_token37] = ACTIONS(1954), - [aux_sym_cmd_identifier_token38] = ACTIONS(1952), - [aux_sym_cmd_identifier_token39] = ACTIONS(1954), - [aux_sym_cmd_identifier_token40] = ACTIONS(1954), - [anon_sym_def] = ACTIONS(1952), - [anon_sym_export_DASHenv] = ACTIONS(1952), - [anon_sym_extern] = ACTIONS(1952), - [anon_sym_module] = ACTIONS(1952), - [anon_sym_use] = ACTIONS(1952), - [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_DOLLAR] = ACTIONS(1954), - [anon_sym_error] = ACTIONS(1952), - [anon_sym_DASH2] = ACTIONS(1952), - [anon_sym_break] = ACTIONS(1952), - [anon_sym_continue] = ACTIONS(1952), - [anon_sym_for] = ACTIONS(1952), - [anon_sym_in2] = ACTIONS(1952), - [anon_sym_loop] = ACTIONS(1952), - [anon_sym_make] = ACTIONS(1952), - [anon_sym_while] = ACTIONS(1952), - [anon_sym_do] = ACTIONS(1952), - [anon_sym_if] = ACTIONS(1952), - [anon_sym_else] = ACTIONS(1952), - [anon_sym_match] = ACTIONS(1952), - [anon_sym_RBRACE] = ACTIONS(1954), - [anon_sym_try] = ACTIONS(1952), - [anon_sym_catch] = ACTIONS(1952), - [anon_sym_return] = ACTIONS(1952), - [anon_sym_source] = ACTIONS(1952), - [anon_sym_source_DASHenv] = ACTIONS(1952), - [anon_sym_register] = ACTIONS(1952), - [anon_sym_hide] = ACTIONS(1952), - [anon_sym_hide_DASHenv] = ACTIONS(1952), - [anon_sym_overlay] = ACTIONS(1952), - [anon_sym_as] = ACTIONS(1952), - [anon_sym_PLUS2] = ACTIONS(1952), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1954), - [anon_sym_DOT] = ACTIONS(2110), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1954), - [aux_sym__val_number_decimal_token1] = ACTIONS(1952), - [aux_sym__val_number_decimal_token2] = ACTIONS(1954), - [aux_sym__val_number_decimal_token3] = ACTIONS(1954), - [aux_sym__val_number_decimal_token4] = ACTIONS(1954), - [aux_sym__val_number_token1] = ACTIONS(1954), - [aux_sym__val_number_token2] = ACTIONS(1954), - [aux_sym__val_number_token3] = ACTIONS(1954), - [aux_sym__val_number_token4] = ACTIONS(1952), - [aux_sym__val_number_token5] = ACTIONS(1952), - [aux_sym__val_number_token6] = ACTIONS(1952), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym__str_single_quotes] = ACTIONS(1954), - [sym__str_back_ticks] = ACTIONS(1954), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1954), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1954), - }, - [464] = { - [sym_comment] = STATE(464), - [anon_sym_export] = ACTIONS(1735), - [anon_sym_alias] = ACTIONS(1735), - [anon_sym_let] = ACTIONS(1735), - [anon_sym_let_DASHenv] = ACTIONS(1735), - [anon_sym_mut] = ACTIONS(1735), - [anon_sym_const] = ACTIONS(1735), - [aux_sym_cmd_identifier_token1] = ACTIONS(1735), - [aux_sym_cmd_identifier_token2] = ACTIONS(1735), - [aux_sym_cmd_identifier_token3] = ACTIONS(1735), - [aux_sym_cmd_identifier_token4] = ACTIONS(1735), - [aux_sym_cmd_identifier_token5] = ACTIONS(1735), - [aux_sym_cmd_identifier_token6] = ACTIONS(1735), - [aux_sym_cmd_identifier_token7] = ACTIONS(1735), - [aux_sym_cmd_identifier_token8] = ACTIONS(1735), - [aux_sym_cmd_identifier_token9] = ACTIONS(1735), - [aux_sym_cmd_identifier_token10] = ACTIONS(1735), - [aux_sym_cmd_identifier_token11] = ACTIONS(1735), - [aux_sym_cmd_identifier_token12] = ACTIONS(1735), - [aux_sym_cmd_identifier_token13] = ACTIONS(1735), - [aux_sym_cmd_identifier_token14] = ACTIONS(1735), - [aux_sym_cmd_identifier_token15] = ACTIONS(1735), - [aux_sym_cmd_identifier_token16] = ACTIONS(1735), - [aux_sym_cmd_identifier_token17] = ACTIONS(1735), - [aux_sym_cmd_identifier_token18] = ACTIONS(1735), - [aux_sym_cmd_identifier_token19] = ACTIONS(1735), - [aux_sym_cmd_identifier_token20] = ACTIONS(1735), - [aux_sym_cmd_identifier_token21] = ACTIONS(1735), - [aux_sym_cmd_identifier_token22] = ACTIONS(1735), - [aux_sym_cmd_identifier_token23] = ACTIONS(1735), - [aux_sym_cmd_identifier_token24] = ACTIONS(1735), - [aux_sym_cmd_identifier_token25] = ACTIONS(1735), - [aux_sym_cmd_identifier_token26] = ACTIONS(1735), - [aux_sym_cmd_identifier_token27] = ACTIONS(1735), - [aux_sym_cmd_identifier_token28] = ACTIONS(1735), - [aux_sym_cmd_identifier_token29] = ACTIONS(1735), - [aux_sym_cmd_identifier_token30] = ACTIONS(1735), - [aux_sym_cmd_identifier_token31] = ACTIONS(1735), - [aux_sym_cmd_identifier_token32] = ACTIONS(1735), - [aux_sym_cmd_identifier_token33] = ACTIONS(1735), - [aux_sym_cmd_identifier_token34] = ACTIONS(1735), - [aux_sym_cmd_identifier_token35] = ACTIONS(1735), - [aux_sym_cmd_identifier_token36] = ACTIONS(1735), - [aux_sym_cmd_identifier_token37] = ACTIONS(1735), - [aux_sym_cmd_identifier_token38] = ACTIONS(1735), - [aux_sym_cmd_identifier_token39] = ACTIONS(1735), - [aux_sym_cmd_identifier_token40] = ACTIONS(1735), - [anon_sym_def] = ACTIONS(1735), - [anon_sym_export_DASHenv] = ACTIONS(1735), - [anon_sym_extern] = ACTIONS(1735), - [anon_sym_module] = ACTIONS(1735), - [anon_sym_use] = ACTIONS(1735), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_DOLLAR] = ACTIONS(1735), - [anon_sym_error] = ACTIONS(1735), - [anon_sym_DASH2] = ACTIONS(1735), - [anon_sym_break] = ACTIONS(1735), - [anon_sym_continue] = ACTIONS(1735), - [anon_sym_for] = ACTIONS(1735), - [anon_sym_in2] = ACTIONS(1735), - [anon_sym_loop] = ACTIONS(1735), - [anon_sym_make] = ACTIONS(1735), - [anon_sym_while] = ACTIONS(1735), - [anon_sym_do] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(1735), - [anon_sym_else] = ACTIONS(1735), - [anon_sym_match] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(1735), - [anon_sym_try] = ACTIONS(1735), - [anon_sym_catch] = ACTIONS(1735), - [anon_sym_return] = ACTIONS(1735), - [anon_sym_source] = ACTIONS(1735), - [anon_sym_source_DASHenv] = ACTIONS(1735), - [anon_sym_register] = ACTIONS(1735), - [anon_sym_hide] = ACTIONS(1735), - [anon_sym_hide_DASHenv] = ACTIONS(1735), - [anon_sym_overlay] = ACTIONS(1735), - [anon_sym_as] = ACTIONS(1735), - [anon_sym_PLUS2] = ACTIONS(1735), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1735), - [anon_sym_DOT_DOT2] = ACTIONS(1735), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1735), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), - [aux_sym__val_number_decimal_token2] = ACTIONS(1735), - [aux_sym__val_number_decimal_token3] = ACTIONS(1735), - [aux_sym__val_number_decimal_token4] = ACTIONS(1735), - [aux_sym__val_number_token1] = ACTIONS(1735), - [aux_sym__val_number_token2] = ACTIONS(1735), - [aux_sym__val_number_token3] = ACTIONS(1735), - [aux_sym__val_number_token4] = ACTIONS(1735), - [aux_sym__val_number_token5] = ACTIONS(1735), - [aux_sym__val_number_token6] = ACTIONS(1735), - [anon_sym_DQUOTE] = ACTIONS(1735), - [sym__str_single_quotes] = ACTIONS(1735), - [sym__str_back_ticks] = ACTIONS(1735), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1735), - [sym__entry_separator] = ACTIONS(1737), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1737), - }, - [465] = { - [sym_comment] = STATE(465), + [498] = { + [sym_comment] = STATE(498), [anon_sym_export] = ACTIONS(1010), [anon_sym_alias] = ACTIONS(1010), [anon_sym_let] = ACTIONS(1010), @@ -126204,8 +129922,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1012), }, - [466] = { - [sym_comment] = STATE(466), + [499] = { + [sym_comment] = STATE(499), [anon_sym_export] = ACTIONS(1014), [anon_sym_alias] = ACTIONS(1014), [anon_sym_let] = ACTIONS(1014), @@ -126307,1862 +130025,523 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1016), }, - [467] = { - [sym_cell_path] = STATE(762), - [sym_path] = STATE(689), - [sym_comment] = STATE(467), - [aux_sym_cell_path_repeat1] = STATE(522), - [anon_sym_export] = ACTIONS(2090), - [anon_sym_alias] = ACTIONS(2090), - [anon_sym_let] = ACTIONS(2090), - [anon_sym_let_DASHenv] = ACTIONS(2090), - [anon_sym_mut] = ACTIONS(2090), - [anon_sym_const] = ACTIONS(2090), - [aux_sym_cmd_identifier_token1] = ACTIONS(2090), - [aux_sym_cmd_identifier_token2] = ACTIONS(2092), - [aux_sym_cmd_identifier_token3] = ACTIONS(2092), - [aux_sym_cmd_identifier_token4] = ACTIONS(2092), - [aux_sym_cmd_identifier_token5] = ACTIONS(2092), - [aux_sym_cmd_identifier_token6] = ACTIONS(2092), - [aux_sym_cmd_identifier_token7] = ACTIONS(2092), - [aux_sym_cmd_identifier_token8] = ACTIONS(2090), - [aux_sym_cmd_identifier_token9] = ACTIONS(2090), - [aux_sym_cmd_identifier_token10] = ACTIONS(2092), - [aux_sym_cmd_identifier_token11] = ACTIONS(2092), - [aux_sym_cmd_identifier_token12] = ACTIONS(2090), - [aux_sym_cmd_identifier_token13] = ACTIONS(2090), - [aux_sym_cmd_identifier_token14] = ACTIONS(2090), - [aux_sym_cmd_identifier_token15] = ACTIONS(2090), - [aux_sym_cmd_identifier_token16] = ACTIONS(2092), - [aux_sym_cmd_identifier_token17] = ACTIONS(2092), - [aux_sym_cmd_identifier_token18] = ACTIONS(2092), - [aux_sym_cmd_identifier_token19] = ACTIONS(2092), - [aux_sym_cmd_identifier_token20] = ACTIONS(2092), - [aux_sym_cmd_identifier_token21] = ACTIONS(2092), - [aux_sym_cmd_identifier_token22] = ACTIONS(2092), - [aux_sym_cmd_identifier_token23] = ACTIONS(2092), - [aux_sym_cmd_identifier_token24] = ACTIONS(2092), - [aux_sym_cmd_identifier_token25] = ACTIONS(2092), - [aux_sym_cmd_identifier_token26] = ACTIONS(2092), - [aux_sym_cmd_identifier_token27] = ACTIONS(2092), - [aux_sym_cmd_identifier_token28] = ACTIONS(2092), - [aux_sym_cmd_identifier_token29] = ACTIONS(2092), - [aux_sym_cmd_identifier_token30] = ACTIONS(2092), - [aux_sym_cmd_identifier_token31] = ACTIONS(2092), - [aux_sym_cmd_identifier_token32] = ACTIONS(2092), - [aux_sym_cmd_identifier_token33] = ACTIONS(2092), - [aux_sym_cmd_identifier_token34] = ACTIONS(2090), - [aux_sym_cmd_identifier_token35] = ACTIONS(2092), - [aux_sym_cmd_identifier_token36] = ACTIONS(2092), - [aux_sym_cmd_identifier_token37] = ACTIONS(2092), - [aux_sym_cmd_identifier_token38] = ACTIONS(2090), - [aux_sym_cmd_identifier_token39] = ACTIONS(2092), - [aux_sym_cmd_identifier_token40] = ACTIONS(2092), - [anon_sym_def] = ACTIONS(2090), - [anon_sym_export_DASHenv] = ACTIONS(2090), - [anon_sym_extern] = ACTIONS(2090), - [anon_sym_module] = ACTIONS(2090), - [anon_sym_use] = ACTIONS(2090), - [anon_sym_LPAREN] = ACTIONS(2092), - [anon_sym_DOLLAR] = ACTIONS(2092), - [anon_sym_error] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2090), - [anon_sym_break] = ACTIONS(2090), - [anon_sym_continue] = ACTIONS(2090), - [anon_sym_for] = ACTIONS(2090), - [anon_sym_in2] = ACTIONS(2090), - [anon_sym_loop] = ACTIONS(2090), - [anon_sym_make] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2090), - [anon_sym_do] = ACTIONS(2090), - [anon_sym_if] = ACTIONS(2090), - [anon_sym_else] = ACTIONS(2090), - [anon_sym_match] = ACTIONS(2090), - [anon_sym_RBRACE] = ACTIONS(2092), - [anon_sym_try] = ACTIONS(2090), - [anon_sym_catch] = ACTIONS(2090), - [anon_sym_return] = ACTIONS(2090), - [anon_sym_source] = ACTIONS(2090), - [anon_sym_source_DASHenv] = ACTIONS(2090), - [anon_sym_register] = ACTIONS(2090), - [anon_sym_hide] = ACTIONS(2090), - [anon_sym_hide_DASHenv] = ACTIONS(2090), - [anon_sym_overlay] = ACTIONS(2090), - [anon_sym_as] = ACTIONS(2090), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2092), - [anon_sym_DOT] = ACTIONS(2110), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2092), - [aux_sym__val_number_decimal_token1] = ACTIONS(2090), - [aux_sym__val_number_decimal_token2] = ACTIONS(2092), - [aux_sym__val_number_decimal_token3] = ACTIONS(2092), - [aux_sym__val_number_decimal_token4] = ACTIONS(2092), - [aux_sym__val_number_token1] = ACTIONS(2092), - [aux_sym__val_number_token2] = ACTIONS(2092), - [aux_sym__val_number_token3] = ACTIONS(2092), - [aux_sym__val_number_token4] = ACTIONS(2090), - [aux_sym__val_number_token5] = ACTIONS(2090), - [aux_sym__val_number_token6] = ACTIONS(2090), - [anon_sym_DQUOTE] = ACTIONS(2092), - [sym__str_single_quotes] = ACTIONS(2092), - [sym__str_back_ticks] = ACTIONS(2092), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2092), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2092), - }, - [468] = { - [sym_comment] = STATE(468), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_alias] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_let_DASHenv] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [aux_sym_cmd_identifier_token1] = ACTIONS(1783), - [aux_sym_cmd_identifier_token2] = ACTIONS(1783), - [aux_sym_cmd_identifier_token3] = ACTIONS(1783), - [aux_sym_cmd_identifier_token4] = ACTIONS(1783), - [aux_sym_cmd_identifier_token5] = ACTIONS(1783), - [aux_sym_cmd_identifier_token6] = ACTIONS(1783), - [aux_sym_cmd_identifier_token7] = ACTIONS(1783), - [aux_sym_cmd_identifier_token8] = ACTIONS(1783), - [aux_sym_cmd_identifier_token9] = ACTIONS(1783), - [aux_sym_cmd_identifier_token10] = ACTIONS(1783), - [aux_sym_cmd_identifier_token11] = ACTIONS(1783), - [aux_sym_cmd_identifier_token12] = ACTIONS(1783), - [aux_sym_cmd_identifier_token13] = ACTIONS(1783), - [aux_sym_cmd_identifier_token14] = ACTIONS(1783), - [aux_sym_cmd_identifier_token15] = ACTIONS(1783), - [aux_sym_cmd_identifier_token16] = ACTIONS(1783), - [aux_sym_cmd_identifier_token17] = ACTIONS(1783), - [aux_sym_cmd_identifier_token18] = ACTIONS(1783), - [aux_sym_cmd_identifier_token19] = ACTIONS(1783), - [aux_sym_cmd_identifier_token20] = ACTIONS(1783), - [aux_sym_cmd_identifier_token21] = ACTIONS(1783), - [aux_sym_cmd_identifier_token22] = ACTIONS(1783), - [aux_sym_cmd_identifier_token23] = ACTIONS(1783), - [aux_sym_cmd_identifier_token24] = ACTIONS(1783), - [aux_sym_cmd_identifier_token25] = ACTIONS(1783), - [aux_sym_cmd_identifier_token26] = ACTIONS(1783), - [aux_sym_cmd_identifier_token27] = ACTIONS(1783), - [aux_sym_cmd_identifier_token28] = ACTIONS(1783), - [aux_sym_cmd_identifier_token29] = ACTIONS(1783), - [aux_sym_cmd_identifier_token30] = ACTIONS(1783), - [aux_sym_cmd_identifier_token31] = ACTIONS(1783), - [aux_sym_cmd_identifier_token32] = ACTIONS(1783), - [aux_sym_cmd_identifier_token33] = ACTIONS(1783), - [aux_sym_cmd_identifier_token34] = ACTIONS(1783), - [aux_sym_cmd_identifier_token35] = ACTIONS(1783), - [aux_sym_cmd_identifier_token36] = ACTIONS(1783), - [aux_sym_cmd_identifier_token37] = ACTIONS(1783), - [aux_sym_cmd_identifier_token38] = ACTIONS(1783), - [aux_sym_cmd_identifier_token39] = ACTIONS(1783), - [aux_sym_cmd_identifier_token40] = ACTIONS(1783), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_export_DASHenv] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_error] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_make] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_catch] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_source] = ACTIONS(1783), - [anon_sym_source_DASHenv] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_hide] = ACTIONS(1783), - [anon_sym_hide_DASHenv] = ACTIONS(1783), - [anon_sym_overlay] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_PLUS2] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1783), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1783), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1783), - [aux_sym__val_number_decimal_token3] = ACTIONS(1783), - [aux_sym__val_number_decimal_token4] = ACTIONS(1783), - [aux_sym__val_number_token1] = ACTIONS(1783), - [aux_sym__val_number_token2] = ACTIONS(1783), - [aux_sym__val_number_token3] = ACTIONS(1783), - [aux_sym__val_number_token4] = ACTIONS(1783), - [aux_sym__val_number_token5] = ACTIONS(1783), - [aux_sym__val_number_token6] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1783), - [sym__str_single_quotes] = ACTIONS(1783), - [sym__str_back_ticks] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1783), - [sym__entry_separator] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1785), - }, - [469] = { - [sym_cell_path] = STATE(731), - [sym_path] = STATE(689), - [sym_comment] = STATE(469), - [aux_sym_cell_path_repeat1] = STATE(522), - [anon_sym_export] = ACTIONS(1960), - [anon_sym_alias] = ACTIONS(1960), - [anon_sym_let] = ACTIONS(1960), - [anon_sym_let_DASHenv] = ACTIONS(1960), - [anon_sym_mut] = ACTIONS(1960), - [anon_sym_const] = ACTIONS(1960), - [aux_sym_cmd_identifier_token1] = ACTIONS(1960), - [aux_sym_cmd_identifier_token2] = ACTIONS(1962), - [aux_sym_cmd_identifier_token3] = ACTIONS(1962), - [aux_sym_cmd_identifier_token4] = ACTIONS(1962), - [aux_sym_cmd_identifier_token5] = ACTIONS(1962), - [aux_sym_cmd_identifier_token6] = ACTIONS(1962), - [aux_sym_cmd_identifier_token7] = ACTIONS(1962), - [aux_sym_cmd_identifier_token8] = ACTIONS(1960), - [aux_sym_cmd_identifier_token9] = ACTIONS(1960), - [aux_sym_cmd_identifier_token10] = ACTIONS(1962), - [aux_sym_cmd_identifier_token11] = ACTIONS(1962), - [aux_sym_cmd_identifier_token12] = ACTIONS(1960), - [aux_sym_cmd_identifier_token13] = ACTIONS(1960), - [aux_sym_cmd_identifier_token14] = ACTIONS(1960), - [aux_sym_cmd_identifier_token15] = ACTIONS(1960), - [aux_sym_cmd_identifier_token16] = ACTIONS(1962), - [aux_sym_cmd_identifier_token17] = ACTIONS(1962), - [aux_sym_cmd_identifier_token18] = ACTIONS(1962), - [aux_sym_cmd_identifier_token19] = ACTIONS(1962), - [aux_sym_cmd_identifier_token20] = ACTIONS(1962), - [aux_sym_cmd_identifier_token21] = ACTIONS(1962), - [aux_sym_cmd_identifier_token22] = ACTIONS(1962), - [aux_sym_cmd_identifier_token23] = ACTIONS(1962), - [aux_sym_cmd_identifier_token24] = ACTIONS(1962), - [aux_sym_cmd_identifier_token25] = ACTIONS(1962), - [aux_sym_cmd_identifier_token26] = ACTIONS(1962), - [aux_sym_cmd_identifier_token27] = ACTIONS(1962), - [aux_sym_cmd_identifier_token28] = ACTIONS(1962), - [aux_sym_cmd_identifier_token29] = ACTIONS(1962), - [aux_sym_cmd_identifier_token30] = ACTIONS(1962), - [aux_sym_cmd_identifier_token31] = ACTIONS(1962), - [aux_sym_cmd_identifier_token32] = ACTIONS(1962), - [aux_sym_cmd_identifier_token33] = ACTIONS(1962), - [aux_sym_cmd_identifier_token34] = ACTIONS(1960), - [aux_sym_cmd_identifier_token35] = ACTIONS(1962), - [aux_sym_cmd_identifier_token36] = ACTIONS(1962), - [aux_sym_cmd_identifier_token37] = ACTIONS(1962), - [aux_sym_cmd_identifier_token38] = ACTIONS(1960), - [aux_sym_cmd_identifier_token39] = ACTIONS(1962), - [aux_sym_cmd_identifier_token40] = ACTIONS(1962), - [anon_sym_def] = ACTIONS(1960), - [anon_sym_export_DASHenv] = ACTIONS(1960), - [anon_sym_extern] = ACTIONS(1960), - [anon_sym_module] = ACTIONS(1960), - [anon_sym_use] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_DOLLAR] = ACTIONS(1962), - [anon_sym_error] = ACTIONS(1960), - [anon_sym_DASH2] = ACTIONS(1960), - [anon_sym_break] = ACTIONS(1960), - [anon_sym_continue] = ACTIONS(1960), - [anon_sym_for] = ACTIONS(1960), - [anon_sym_in2] = ACTIONS(1960), - [anon_sym_loop] = ACTIONS(1960), - [anon_sym_make] = ACTIONS(1960), - [anon_sym_while] = ACTIONS(1960), - [anon_sym_do] = ACTIONS(1960), - [anon_sym_if] = ACTIONS(1960), - [anon_sym_else] = ACTIONS(1960), - [anon_sym_match] = ACTIONS(1960), - [anon_sym_RBRACE] = ACTIONS(1962), - [anon_sym_try] = ACTIONS(1960), - [anon_sym_catch] = ACTIONS(1960), - [anon_sym_return] = ACTIONS(1960), - [anon_sym_source] = ACTIONS(1960), - [anon_sym_source_DASHenv] = ACTIONS(1960), - [anon_sym_register] = ACTIONS(1960), - [anon_sym_hide] = ACTIONS(1960), - [anon_sym_hide_DASHenv] = ACTIONS(1960), - [anon_sym_overlay] = ACTIONS(1960), - [anon_sym_as] = ACTIONS(1960), - [anon_sym_PLUS2] = ACTIONS(1960), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1962), - [anon_sym_DOT] = ACTIONS(2110), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1962), - [aux_sym__val_number_decimal_token1] = ACTIONS(1960), - [aux_sym__val_number_decimal_token2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1962), - [aux_sym__val_number_decimal_token4] = ACTIONS(1962), - [aux_sym__val_number_token1] = ACTIONS(1962), - [aux_sym__val_number_token2] = ACTIONS(1962), - [aux_sym__val_number_token3] = ACTIONS(1962), - [aux_sym__val_number_token4] = ACTIONS(1960), - [aux_sym__val_number_token5] = ACTIONS(1960), - [aux_sym__val_number_token6] = ACTIONS(1960), - [anon_sym_DQUOTE] = ACTIONS(1962), - [sym__str_single_quotes] = ACTIONS(1962), - [sym__str_back_ticks] = ACTIONS(1962), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1962), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1962), - }, - [470] = { - [sym_comment] = STATE(470), - [anon_sym_export] = ACTIONS(1890), - [anon_sym_alias] = ACTIONS(1890), - [anon_sym_let] = ACTIONS(1890), - [anon_sym_let_DASHenv] = ACTIONS(1890), - [anon_sym_mut] = ACTIONS(1890), - [anon_sym_const] = ACTIONS(1890), - [aux_sym_cmd_identifier_token1] = ACTIONS(1890), - [aux_sym_cmd_identifier_token2] = ACTIONS(1890), - [aux_sym_cmd_identifier_token3] = ACTIONS(1890), - [aux_sym_cmd_identifier_token4] = ACTIONS(1890), - [aux_sym_cmd_identifier_token5] = ACTIONS(1890), - [aux_sym_cmd_identifier_token6] = ACTIONS(1890), - [aux_sym_cmd_identifier_token7] = ACTIONS(1890), - [aux_sym_cmd_identifier_token8] = ACTIONS(1890), - [aux_sym_cmd_identifier_token9] = ACTIONS(1890), - [aux_sym_cmd_identifier_token10] = ACTIONS(1890), - [aux_sym_cmd_identifier_token11] = ACTIONS(1890), - [aux_sym_cmd_identifier_token12] = ACTIONS(1890), - [aux_sym_cmd_identifier_token13] = ACTIONS(1890), - [aux_sym_cmd_identifier_token14] = ACTIONS(1890), - [aux_sym_cmd_identifier_token15] = ACTIONS(1890), - [aux_sym_cmd_identifier_token16] = ACTIONS(1890), - [aux_sym_cmd_identifier_token17] = ACTIONS(1890), - [aux_sym_cmd_identifier_token18] = ACTIONS(1890), - [aux_sym_cmd_identifier_token19] = ACTIONS(1890), - [aux_sym_cmd_identifier_token20] = ACTIONS(1890), - [aux_sym_cmd_identifier_token21] = ACTIONS(1890), - [aux_sym_cmd_identifier_token22] = ACTIONS(1890), - [aux_sym_cmd_identifier_token23] = ACTIONS(1890), - [aux_sym_cmd_identifier_token24] = ACTIONS(1890), - [aux_sym_cmd_identifier_token25] = ACTIONS(1890), - [aux_sym_cmd_identifier_token26] = ACTIONS(1890), - [aux_sym_cmd_identifier_token27] = ACTIONS(1890), - [aux_sym_cmd_identifier_token28] = ACTIONS(1890), - [aux_sym_cmd_identifier_token29] = ACTIONS(1890), - [aux_sym_cmd_identifier_token30] = ACTIONS(1890), - [aux_sym_cmd_identifier_token31] = ACTIONS(1890), - [aux_sym_cmd_identifier_token32] = ACTIONS(1890), - [aux_sym_cmd_identifier_token33] = ACTIONS(1890), - [aux_sym_cmd_identifier_token34] = ACTIONS(1890), - [aux_sym_cmd_identifier_token35] = ACTIONS(1890), - [aux_sym_cmd_identifier_token36] = ACTIONS(1890), - [aux_sym_cmd_identifier_token37] = ACTIONS(1890), - [aux_sym_cmd_identifier_token38] = ACTIONS(1890), - [aux_sym_cmd_identifier_token39] = ACTIONS(1890), - [aux_sym_cmd_identifier_token40] = ACTIONS(1890), - [anon_sym_def] = ACTIONS(1890), - [anon_sym_export_DASHenv] = ACTIONS(1890), - [anon_sym_extern] = ACTIONS(1890), - [anon_sym_module] = ACTIONS(1890), - [anon_sym_use] = ACTIONS(1890), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(1890), - [anon_sym_error] = ACTIONS(1890), - [anon_sym_DASH2] = ACTIONS(1890), - [anon_sym_break] = ACTIONS(1890), - [anon_sym_continue] = ACTIONS(1890), - [anon_sym_for] = ACTIONS(1890), - [anon_sym_in2] = ACTIONS(1890), - [anon_sym_loop] = ACTIONS(1890), - [anon_sym_make] = ACTIONS(1890), - [anon_sym_while] = ACTIONS(1890), - [anon_sym_do] = ACTIONS(1890), - [anon_sym_if] = ACTIONS(1890), - [anon_sym_else] = ACTIONS(1890), - [anon_sym_match] = ACTIONS(1890), - [anon_sym_RBRACE] = ACTIONS(1890), - [anon_sym_try] = ACTIONS(1890), - [anon_sym_catch] = ACTIONS(1890), - [anon_sym_return] = ACTIONS(1890), - [anon_sym_source] = ACTIONS(1890), - [anon_sym_source_DASHenv] = ACTIONS(1890), - [anon_sym_register] = ACTIONS(1890), - [anon_sym_hide] = ACTIONS(1890), - [anon_sym_hide_DASHenv] = ACTIONS(1890), - [anon_sym_overlay] = ACTIONS(1890), - [anon_sym_as] = ACTIONS(1890), - [anon_sym_PLUS2] = ACTIONS(1890), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1890), - [anon_sym_DOT_DOT2] = ACTIONS(1890), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1890), - [aux_sym__val_number_decimal_token1] = ACTIONS(1890), - [aux_sym__val_number_decimal_token2] = ACTIONS(1890), - [aux_sym__val_number_decimal_token3] = ACTIONS(1890), - [aux_sym__val_number_decimal_token4] = ACTIONS(1890), - [aux_sym__val_number_token1] = ACTIONS(1890), - [aux_sym__val_number_token2] = ACTIONS(1890), - [aux_sym__val_number_token3] = ACTIONS(1890), - [aux_sym__val_number_token4] = ACTIONS(1890), - [aux_sym__val_number_token5] = ACTIONS(1890), - [aux_sym__val_number_token6] = ACTIONS(1890), - [anon_sym_DQUOTE] = ACTIONS(1890), - [sym__str_single_quotes] = ACTIONS(1890), - [sym__str_back_ticks] = ACTIONS(1890), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1890), - [sym__entry_separator] = ACTIONS(1892), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1892), - }, - [471] = { - [sym_cell_path] = STATE(724), - [sym_path] = STATE(689), - [sym_comment] = STATE(471), - [aux_sym_cell_path_repeat1] = STATE(522), - [anon_sym_export] = ACTIONS(1925), - [anon_sym_alias] = ACTIONS(1925), - [anon_sym_let] = ACTIONS(1925), - [anon_sym_let_DASHenv] = ACTIONS(1925), - [anon_sym_mut] = ACTIONS(1925), - [anon_sym_const] = ACTIONS(1925), - [aux_sym_cmd_identifier_token1] = ACTIONS(1925), - [aux_sym_cmd_identifier_token2] = ACTIONS(1927), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [aux_sym_cmd_identifier_token6] = ACTIONS(1927), - [aux_sym_cmd_identifier_token7] = ACTIONS(1927), - [aux_sym_cmd_identifier_token8] = ACTIONS(1925), - [aux_sym_cmd_identifier_token9] = ACTIONS(1925), - [aux_sym_cmd_identifier_token10] = ACTIONS(1927), - [aux_sym_cmd_identifier_token11] = ACTIONS(1927), - [aux_sym_cmd_identifier_token12] = ACTIONS(1925), - [aux_sym_cmd_identifier_token13] = ACTIONS(1925), - [aux_sym_cmd_identifier_token14] = ACTIONS(1925), - [aux_sym_cmd_identifier_token15] = ACTIONS(1925), - [aux_sym_cmd_identifier_token16] = ACTIONS(1927), - [aux_sym_cmd_identifier_token17] = ACTIONS(1927), - [aux_sym_cmd_identifier_token18] = ACTIONS(1927), - [aux_sym_cmd_identifier_token19] = ACTIONS(1927), - [aux_sym_cmd_identifier_token20] = ACTIONS(1927), - [aux_sym_cmd_identifier_token21] = ACTIONS(1927), - [aux_sym_cmd_identifier_token22] = ACTIONS(1927), - [aux_sym_cmd_identifier_token23] = ACTIONS(1927), - [aux_sym_cmd_identifier_token24] = ACTIONS(1927), - [aux_sym_cmd_identifier_token25] = ACTIONS(1927), - [aux_sym_cmd_identifier_token26] = ACTIONS(1927), - [aux_sym_cmd_identifier_token27] = ACTIONS(1927), - [aux_sym_cmd_identifier_token28] = ACTIONS(1927), - [aux_sym_cmd_identifier_token29] = ACTIONS(1927), - [aux_sym_cmd_identifier_token30] = ACTIONS(1927), - [aux_sym_cmd_identifier_token31] = ACTIONS(1927), - [aux_sym_cmd_identifier_token32] = ACTIONS(1927), - [aux_sym_cmd_identifier_token33] = ACTIONS(1927), - [aux_sym_cmd_identifier_token34] = ACTIONS(1925), - [aux_sym_cmd_identifier_token35] = ACTIONS(1927), - [aux_sym_cmd_identifier_token36] = ACTIONS(1927), - [aux_sym_cmd_identifier_token37] = ACTIONS(1927), - [aux_sym_cmd_identifier_token38] = ACTIONS(1925), - [aux_sym_cmd_identifier_token39] = ACTIONS(1927), - [aux_sym_cmd_identifier_token40] = ACTIONS(1927), - [anon_sym_def] = ACTIONS(1925), - [anon_sym_export_DASHenv] = ACTIONS(1925), - [anon_sym_extern] = ACTIONS(1925), - [anon_sym_module] = ACTIONS(1925), - [anon_sym_use] = ACTIONS(1925), - [anon_sym_LPAREN] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(1927), - [anon_sym_error] = ACTIONS(1925), - [anon_sym_DASH2] = ACTIONS(1925), - [anon_sym_break] = ACTIONS(1925), - [anon_sym_continue] = ACTIONS(1925), - [anon_sym_for] = ACTIONS(1925), - [anon_sym_in2] = ACTIONS(1925), - [anon_sym_loop] = ACTIONS(1925), - [anon_sym_make] = ACTIONS(1925), - [anon_sym_while] = ACTIONS(1925), - [anon_sym_do] = ACTIONS(1925), - [anon_sym_if] = ACTIONS(1925), - [anon_sym_else] = ACTIONS(1925), - [anon_sym_match] = ACTIONS(1925), - [anon_sym_RBRACE] = ACTIONS(1927), - [anon_sym_try] = ACTIONS(1925), - [anon_sym_catch] = ACTIONS(1925), - [anon_sym_return] = ACTIONS(1925), - [anon_sym_source] = ACTIONS(1925), - [anon_sym_source_DASHenv] = ACTIONS(1925), - [anon_sym_register] = ACTIONS(1925), - [anon_sym_hide] = ACTIONS(1925), - [anon_sym_hide_DASHenv] = ACTIONS(1925), - [anon_sym_overlay] = ACTIONS(1925), - [anon_sym_as] = ACTIONS(1925), - [anon_sym_PLUS2] = ACTIONS(1925), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1927), - [anon_sym_DOT] = ACTIONS(2110), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1927), - [aux_sym__val_number_decimal_token1] = ACTIONS(1925), - [aux_sym__val_number_decimal_token2] = ACTIONS(1927), - [aux_sym__val_number_decimal_token3] = ACTIONS(1927), - [aux_sym__val_number_decimal_token4] = ACTIONS(1927), - [aux_sym__val_number_token1] = ACTIONS(1927), - [aux_sym__val_number_token2] = ACTIONS(1927), - [aux_sym__val_number_token3] = ACTIONS(1927), - [aux_sym__val_number_token4] = ACTIONS(1925), - [aux_sym__val_number_token5] = ACTIONS(1925), - [aux_sym__val_number_token6] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1927), - [sym__str_single_quotes] = ACTIONS(1927), - [sym__str_back_ticks] = ACTIONS(1927), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1927), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1927), - }, - [472] = { - [sym_comment] = STATE(472), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_alias] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_let_DASHenv] = ACTIONS(1755), - [anon_sym_mut] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1757), - [aux_sym_cmd_identifier_token3] = ACTIONS(1757), - [aux_sym_cmd_identifier_token4] = ACTIONS(1757), - [aux_sym_cmd_identifier_token5] = ACTIONS(1757), - [aux_sym_cmd_identifier_token6] = ACTIONS(1757), - [aux_sym_cmd_identifier_token7] = ACTIONS(1757), - [aux_sym_cmd_identifier_token8] = ACTIONS(1755), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1757), - [aux_sym_cmd_identifier_token11] = ACTIONS(1757), - [aux_sym_cmd_identifier_token12] = ACTIONS(1755), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1755), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1757), - [aux_sym_cmd_identifier_token17] = ACTIONS(1757), - [aux_sym_cmd_identifier_token18] = ACTIONS(1757), - [aux_sym_cmd_identifier_token19] = ACTIONS(1757), - [aux_sym_cmd_identifier_token20] = ACTIONS(1757), - [aux_sym_cmd_identifier_token21] = ACTIONS(1757), - [aux_sym_cmd_identifier_token22] = ACTIONS(1757), - [aux_sym_cmd_identifier_token23] = ACTIONS(1757), - [aux_sym_cmd_identifier_token24] = ACTIONS(1757), - [aux_sym_cmd_identifier_token25] = ACTIONS(1757), - [aux_sym_cmd_identifier_token26] = ACTIONS(1757), - [aux_sym_cmd_identifier_token27] = ACTIONS(1757), - [aux_sym_cmd_identifier_token28] = ACTIONS(1757), - [aux_sym_cmd_identifier_token29] = ACTIONS(1757), - [aux_sym_cmd_identifier_token30] = ACTIONS(1757), - [aux_sym_cmd_identifier_token31] = ACTIONS(1757), - [aux_sym_cmd_identifier_token32] = ACTIONS(1757), - [aux_sym_cmd_identifier_token33] = ACTIONS(1757), - [aux_sym_cmd_identifier_token34] = ACTIONS(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [aux_sym_cmd_identifier_token37] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_export_DASHenv] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_make] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_source] = ACTIONS(1755), - [anon_sym_source_DASHenv] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_hide] = ACTIONS(1755), - [anon_sym_hide_DASHenv] = ACTIONS(1755), - [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [anon_sym_DOT] = ACTIONS(2121), - [aux_sym__immediate_decimal_token2] = ACTIONS(2123), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [473] = { - [sym_comment] = STATE(473), - [anon_sym_export] = ACTIONS(2125), - [anon_sym_alias] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_let_DASHenv] = ACTIONS(2125), - [anon_sym_mut] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [aux_sym_cmd_identifier_token1] = ACTIONS(2125), - [aux_sym_cmd_identifier_token2] = ACTIONS(2125), - [aux_sym_cmd_identifier_token3] = ACTIONS(2125), - [aux_sym_cmd_identifier_token4] = ACTIONS(2125), - [aux_sym_cmd_identifier_token5] = ACTIONS(2125), - [aux_sym_cmd_identifier_token6] = ACTIONS(2125), - [aux_sym_cmd_identifier_token7] = ACTIONS(2125), - [aux_sym_cmd_identifier_token8] = ACTIONS(2125), - [aux_sym_cmd_identifier_token9] = ACTIONS(2125), - [aux_sym_cmd_identifier_token10] = ACTIONS(2125), - [aux_sym_cmd_identifier_token11] = ACTIONS(2125), - [aux_sym_cmd_identifier_token12] = ACTIONS(2125), - [aux_sym_cmd_identifier_token13] = ACTIONS(2125), - [aux_sym_cmd_identifier_token14] = ACTIONS(2125), - [aux_sym_cmd_identifier_token15] = ACTIONS(2125), - [aux_sym_cmd_identifier_token16] = ACTIONS(2125), - [aux_sym_cmd_identifier_token17] = ACTIONS(2125), - [aux_sym_cmd_identifier_token18] = ACTIONS(2125), - [aux_sym_cmd_identifier_token19] = ACTIONS(2125), - [aux_sym_cmd_identifier_token20] = ACTIONS(2125), - [aux_sym_cmd_identifier_token21] = ACTIONS(2125), - [aux_sym_cmd_identifier_token22] = ACTIONS(2125), - [aux_sym_cmd_identifier_token23] = ACTIONS(2125), - [aux_sym_cmd_identifier_token24] = ACTIONS(2125), - [aux_sym_cmd_identifier_token25] = ACTIONS(2125), - [aux_sym_cmd_identifier_token26] = ACTIONS(2125), - [aux_sym_cmd_identifier_token27] = ACTIONS(2125), - [aux_sym_cmd_identifier_token28] = ACTIONS(2125), - [aux_sym_cmd_identifier_token29] = ACTIONS(2125), - [aux_sym_cmd_identifier_token30] = ACTIONS(2125), - [aux_sym_cmd_identifier_token31] = ACTIONS(2125), - [aux_sym_cmd_identifier_token32] = ACTIONS(2125), - [aux_sym_cmd_identifier_token33] = ACTIONS(2125), - [aux_sym_cmd_identifier_token34] = ACTIONS(2125), - [aux_sym_cmd_identifier_token35] = ACTIONS(2125), - [aux_sym_cmd_identifier_token36] = ACTIONS(2125), - [aux_sym_cmd_identifier_token37] = ACTIONS(2125), - [aux_sym_cmd_identifier_token38] = ACTIONS(2125), - [aux_sym_cmd_identifier_token39] = ACTIONS(2125), - [aux_sym_cmd_identifier_token40] = ACTIONS(2125), - [anon_sym_def] = ACTIONS(2125), - [anon_sym_export_DASHenv] = ACTIONS(2125), - [anon_sym_extern] = ACTIONS(2125), - [anon_sym_module] = ACTIONS(2125), - [anon_sym_use] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym_DOLLAR] = ACTIONS(2125), - [anon_sym_error] = ACTIONS(2125), - [anon_sym_DASH2] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_in2] = ACTIONS(2125), - [anon_sym_loop] = ACTIONS(2125), - [anon_sym_make] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_else] = ACTIONS(2125), - [anon_sym_match] = ACTIONS(2125), - [anon_sym_RBRACE] = ACTIONS(2125), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_catch] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_source] = ACTIONS(2125), - [anon_sym_source_DASHenv] = ACTIONS(2125), - [anon_sym_register] = ACTIONS(2125), - [anon_sym_hide] = ACTIONS(2125), - [anon_sym_hide_DASHenv] = ACTIONS(2125), - [anon_sym_overlay] = ACTIONS(2125), - [anon_sym_as] = ACTIONS(2125), - [anon_sym_PLUS2] = ACTIONS(2125), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2125), - [anon_sym_DOT_DOT2] = ACTIONS(2125), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2127), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2127), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2125), - [aux_sym__val_number_decimal_token1] = ACTIONS(2125), - [aux_sym__val_number_decimal_token2] = ACTIONS(2125), - [aux_sym__val_number_decimal_token3] = ACTIONS(2125), - [aux_sym__val_number_decimal_token4] = ACTIONS(2125), - [aux_sym__val_number_token1] = ACTIONS(2125), - [aux_sym__val_number_token2] = ACTIONS(2125), - [aux_sym__val_number_token3] = ACTIONS(2125), - [aux_sym__val_number_token4] = ACTIONS(2125), - [aux_sym__val_number_token5] = ACTIONS(2125), - [aux_sym__val_number_token6] = ACTIONS(2125), - [anon_sym_DQUOTE] = ACTIONS(2125), - [sym__str_single_quotes] = ACTIONS(2125), - [sym__str_back_ticks] = ACTIONS(2125), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2125), - [sym__entry_separator] = ACTIONS(2127), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2127), - }, - [474] = { - [sym_cell_path] = STATE(732), - [sym_path] = STATE(689), - [sym_comment] = STATE(474), - [aux_sym_cell_path_repeat1] = STATE(522), - [anon_sym_export] = ACTIONS(1968), - [anon_sym_alias] = ACTIONS(1968), - [anon_sym_let] = ACTIONS(1968), - [anon_sym_let_DASHenv] = ACTIONS(1968), - [anon_sym_mut] = ACTIONS(1968), - [anon_sym_const] = ACTIONS(1968), - [aux_sym_cmd_identifier_token1] = ACTIONS(1968), - [aux_sym_cmd_identifier_token2] = ACTIONS(1970), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), - [aux_sym_cmd_identifier_token6] = ACTIONS(1970), - [aux_sym_cmd_identifier_token7] = ACTIONS(1970), - [aux_sym_cmd_identifier_token8] = ACTIONS(1968), - [aux_sym_cmd_identifier_token9] = ACTIONS(1968), - [aux_sym_cmd_identifier_token10] = ACTIONS(1970), - [aux_sym_cmd_identifier_token11] = ACTIONS(1970), - [aux_sym_cmd_identifier_token12] = ACTIONS(1968), - [aux_sym_cmd_identifier_token13] = ACTIONS(1968), - [aux_sym_cmd_identifier_token14] = ACTIONS(1968), - [aux_sym_cmd_identifier_token15] = ACTIONS(1968), - [aux_sym_cmd_identifier_token16] = ACTIONS(1970), - [aux_sym_cmd_identifier_token17] = ACTIONS(1970), - [aux_sym_cmd_identifier_token18] = ACTIONS(1970), - [aux_sym_cmd_identifier_token19] = ACTIONS(1970), - [aux_sym_cmd_identifier_token20] = ACTIONS(1970), - [aux_sym_cmd_identifier_token21] = ACTIONS(1970), - [aux_sym_cmd_identifier_token22] = ACTIONS(1970), - [aux_sym_cmd_identifier_token23] = ACTIONS(1970), - [aux_sym_cmd_identifier_token24] = ACTIONS(1970), - [aux_sym_cmd_identifier_token25] = ACTIONS(1970), - [aux_sym_cmd_identifier_token26] = ACTIONS(1970), - [aux_sym_cmd_identifier_token27] = ACTIONS(1970), - [aux_sym_cmd_identifier_token28] = ACTIONS(1970), - [aux_sym_cmd_identifier_token29] = ACTIONS(1970), - [aux_sym_cmd_identifier_token30] = ACTIONS(1970), - [aux_sym_cmd_identifier_token31] = ACTIONS(1970), - [aux_sym_cmd_identifier_token32] = ACTIONS(1970), - [aux_sym_cmd_identifier_token33] = ACTIONS(1970), - [aux_sym_cmd_identifier_token34] = ACTIONS(1968), - [aux_sym_cmd_identifier_token35] = ACTIONS(1970), - [aux_sym_cmd_identifier_token36] = ACTIONS(1970), - [aux_sym_cmd_identifier_token37] = ACTIONS(1970), - [aux_sym_cmd_identifier_token38] = ACTIONS(1968), - [aux_sym_cmd_identifier_token39] = ACTIONS(1970), - [aux_sym_cmd_identifier_token40] = ACTIONS(1970), - [anon_sym_def] = ACTIONS(1968), - [anon_sym_export_DASHenv] = ACTIONS(1968), - [anon_sym_extern] = ACTIONS(1968), - [anon_sym_module] = ACTIONS(1968), - [anon_sym_use] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1970), - [anon_sym_DOLLAR] = ACTIONS(1970), - [anon_sym_error] = ACTIONS(1968), - [anon_sym_DASH2] = ACTIONS(1968), - [anon_sym_break] = ACTIONS(1968), - [anon_sym_continue] = ACTIONS(1968), - [anon_sym_for] = ACTIONS(1968), - [anon_sym_in2] = ACTIONS(1968), - [anon_sym_loop] = ACTIONS(1968), - [anon_sym_make] = ACTIONS(1968), - [anon_sym_while] = ACTIONS(1968), - [anon_sym_do] = ACTIONS(1968), - [anon_sym_if] = ACTIONS(1968), - [anon_sym_else] = ACTIONS(1968), - [anon_sym_match] = ACTIONS(1968), - [anon_sym_RBRACE] = ACTIONS(1970), - [anon_sym_try] = ACTIONS(1968), - [anon_sym_catch] = ACTIONS(1968), - [anon_sym_return] = ACTIONS(1968), - [anon_sym_source] = ACTIONS(1968), - [anon_sym_source_DASHenv] = ACTIONS(1968), - [anon_sym_register] = ACTIONS(1968), - [anon_sym_hide] = ACTIONS(1968), - [anon_sym_hide_DASHenv] = ACTIONS(1968), - [anon_sym_overlay] = ACTIONS(1968), - [anon_sym_as] = ACTIONS(1968), - [anon_sym_PLUS2] = ACTIONS(1968), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1970), - [anon_sym_DOT] = ACTIONS(2110), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1970), - [aux_sym__val_number_decimal_token1] = ACTIONS(1968), - [aux_sym__val_number_decimal_token2] = ACTIONS(1970), - [aux_sym__val_number_decimal_token3] = ACTIONS(1970), - [aux_sym__val_number_decimal_token4] = ACTIONS(1970), - [aux_sym__val_number_token1] = ACTIONS(1970), - [aux_sym__val_number_token2] = ACTIONS(1970), - [aux_sym__val_number_token3] = ACTIONS(1970), - [aux_sym__val_number_token4] = ACTIONS(1968), - [aux_sym__val_number_token5] = ACTIONS(1968), - [aux_sym__val_number_token6] = ACTIONS(1968), - [anon_sym_DQUOTE] = ACTIONS(1970), - [sym__str_single_quotes] = ACTIONS(1970), - [sym__str_back_ticks] = ACTIONS(1970), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1970), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1970), - }, - [475] = { - [sym_comment] = STATE(475), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_alias] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_let_DASHenv] = ACTIONS(1755), - [anon_sym_mut] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1755), - [aux_sym_cmd_identifier_token3] = ACTIONS(1755), - [aux_sym_cmd_identifier_token4] = ACTIONS(1755), - [aux_sym_cmd_identifier_token5] = ACTIONS(1755), - [aux_sym_cmd_identifier_token6] = ACTIONS(1755), - [aux_sym_cmd_identifier_token7] = ACTIONS(1755), - [aux_sym_cmd_identifier_token8] = ACTIONS(1755), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1755), - [aux_sym_cmd_identifier_token11] = ACTIONS(1755), - [aux_sym_cmd_identifier_token12] = ACTIONS(1755), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1755), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1755), - [aux_sym_cmd_identifier_token17] = ACTIONS(1755), - [aux_sym_cmd_identifier_token18] = ACTIONS(1755), - [aux_sym_cmd_identifier_token19] = ACTIONS(1755), - [aux_sym_cmd_identifier_token20] = ACTIONS(1755), - [aux_sym_cmd_identifier_token21] = ACTIONS(1755), - [aux_sym_cmd_identifier_token22] = ACTIONS(1755), - [aux_sym_cmd_identifier_token23] = ACTIONS(1755), - [aux_sym_cmd_identifier_token24] = ACTIONS(1755), - [aux_sym_cmd_identifier_token25] = ACTIONS(1755), - [aux_sym_cmd_identifier_token26] = ACTIONS(1755), - [aux_sym_cmd_identifier_token27] = ACTIONS(1755), - [aux_sym_cmd_identifier_token28] = ACTIONS(1755), - [aux_sym_cmd_identifier_token29] = ACTIONS(1755), - [aux_sym_cmd_identifier_token30] = ACTIONS(1755), - [aux_sym_cmd_identifier_token31] = ACTIONS(1755), - [aux_sym_cmd_identifier_token32] = ACTIONS(1755), - [aux_sym_cmd_identifier_token33] = ACTIONS(1755), - [aux_sym_cmd_identifier_token34] = ACTIONS(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1755), - [aux_sym_cmd_identifier_token36] = ACTIONS(1755), - [aux_sym_cmd_identifier_token37] = ACTIONS(1755), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1755), - [aux_sym_cmd_identifier_token40] = ACTIONS(1755), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_export_DASHenv] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_make] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1755), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_source] = ACTIONS(1755), - [anon_sym_source_DASHenv] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_hide] = ACTIONS(1755), - [anon_sym_hide_DASHenv] = ACTIONS(1755), - [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1755), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1755), - [aux_sym__val_number_decimal_token3] = ACTIONS(1755), - [aux_sym__val_number_decimal_token4] = ACTIONS(1755), - [aux_sym__val_number_token1] = ACTIONS(1755), - [aux_sym__val_number_token2] = ACTIONS(1755), - [aux_sym__val_number_token3] = ACTIONS(1755), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym__str_single_quotes] = ACTIONS(1755), - [sym__str_back_ticks] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1755), - [sym__entry_separator] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [476] = { - [sym_comment] = STATE(476), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_alias] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_let_DASHenv] = ACTIONS(1755), - [anon_sym_mut] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1755), - [aux_sym_cmd_identifier_token3] = ACTIONS(1755), - [aux_sym_cmd_identifier_token4] = ACTIONS(1755), - [aux_sym_cmd_identifier_token5] = ACTIONS(1755), - [aux_sym_cmd_identifier_token6] = ACTIONS(1755), - [aux_sym_cmd_identifier_token7] = ACTIONS(1755), - [aux_sym_cmd_identifier_token8] = ACTIONS(1755), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1755), - [aux_sym_cmd_identifier_token11] = ACTIONS(1755), - [aux_sym_cmd_identifier_token12] = ACTIONS(1755), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1755), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1755), - [aux_sym_cmd_identifier_token17] = ACTIONS(1755), - [aux_sym_cmd_identifier_token18] = ACTIONS(1755), - [aux_sym_cmd_identifier_token19] = ACTIONS(1755), - [aux_sym_cmd_identifier_token20] = ACTIONS(1755), - [aux_sym_cmd_identifier_token21] = ACTIONS(1755), - [aux_sym_cmd_identifier_token22] = ACTIONS(1755), - [aux_sym_cmd_identifier_token23] = ACTIONS(1755), - [aux_sym_cmd_identifier_token24] = ACTIONS(1755), - [aux_sym_cmd_identifier_token25] = ACTIONS(1755), - [aux_sym_cmd_identifier_token26] = ACTIONS(1755), - [aux_sym_cmd_identifier_token27] = ACTIONS(1755), - [aux_sym_cmd_identifier_token28] = ACTIONS(1755), - [aux_sym_cmd_identifier_token29] = ACTIONS(1755), - [aux_sym_cmd_identifier_token30] = ACTIONS(1755), - [aux_sym_cmd_identifier_token31] = ACTIONS(1755), - [aux_sym_cmd_identifier_token32] = ACTIONS(1755), - [aux_sym_cmd_identifier_token33] = ACTIONS(1755), - [aux_sym_cmd_identifier_token34] = ACTIONS(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1755), - [aux_sym_cmd_identifier_token36] = ACTIONS(1755), - [aux_sym_cmd_identifier_token37] = ACTIONS(1755), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1755), - [aux_sym_cmd_identifier_token40] = ACTIONS(1755), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_export_DASHenv] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_make] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1755), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_source] = ACTIONS(1755), - [anon_sym_source_DASHenv] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_hide] = ACTIONS(1755), - [anon_sym_hide_DASHenv] = ACTIONS(1755), - [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), - [aux_sym__immediate_decimal_token2] = ACTIONS(1919), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1755), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1755), - [aux_sym__val_number_decimal_token3] = ACTIONS(1755), - [aux_sym__val_number_decimal_token4] = ACTIONS(1755), - [aux_sym__val_number_token1] = ACTIONS(1755), - [aux_sym__val_number_token2] = ACTIONS(1755), - [aux_sym__val_number_token3] = ACTIONS(1755), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym__str_single_quotes] = ACTIONS(1755), - [sym__str_back_ticks] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1755), - [sym__entry_separator] = ACTIONS(1757), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), + [500] = { + [sym_comment] = STATE(500), + [anon_sym_export] = ACTIONS(2157), + [anon_sym_alias] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_let_DASHenv] = ACTIONS(2157), + [anon_sym_mut] = ACTIONS(2157), + [anon_sym_const] = ACTIONS(2157), + [aux_sym_cmd_identifier_token1] = ACTIONS(2157), + [aux_sym_cmd_identifier_token2] = ACTIONS(2157), + [aux_sym_cmd_identifier_token3] = ACTIONS(2157), + [aux_sym_cmd_identifier_token4] = ACTIONS(2157), + [aux_sym_cmd_identifier_token5] = ACTIONS(2157), + [aux_sym_cmd_identifier_token6] = ACTIONS(2157), + [aux_sym_cmd_identifier_token7] = ACTIONS(2157), + [aux_sym_cmd_identifier_token8] = ACTIONS(2157), + [aux_sym_cmd_identifier_token9] = ACTIONS(2157), + [aux_sym_cmd_identifier_token10] = ACTIONS(2157), + [aux_sym_cmd_identifier_token11] = ACTIONS(2157), + [aux_sym_cmd_identifier_token12] = ACTIONS(2157), + [aux_sym_cmd_identifier_token13] = ACTIONS(2157), + [aux_sym_cmd_identifier_token14] = ACTIONS(2157), + [aux_sym_cmd_identifier_token15] = ACTIONS(2157), + [aux_sym_cmd_identifier_token16] = ACTIONS(2157), + [aux_sym_cmd_identifier_token17] = ACTIONS(2157), + [aux_sym_cmd_identifier_token18] = ACTIONS(2157), + [aux_sym_cmd_identifier_token19] = ACTIONS(2157), + [aux_sym_cmd_identifier_token20] = ACTIONS(2157), + [aux_sym_cmd_identifier_token21] = ACTIONS(2157), + [aux_sym_cmd_identifier_token22] = ACTIONS(2157), + [aux_sym_cmd_identifier_token23] = ACTIONS(2157), + [aux_sym_cmd_identifier_token24] = ACTIONS(2157), + [aux_sym_cmd_identifier_token25] = ACTIONS(2157), + [aux_sym_cmd_identifier_token26] = ACTIONS(2157), + [aux_sym_cmd_identifier_token27] = ACTIONS(2157), + [aux_sym_cmd_identifier_token28] = ACTIONS(2157), + [aux_sym_cmd_identifier_token29] = ACTIONS(2157), + [aux_sym_cmd_identifier_token30] = ACTIONS(2157), + [aux_sym_cmd_identifier_token31] = ACTIONS(2157), + [aux_sym_cmd_identifier_token32] = ACTIONS(2157), + [aux_sym_cmd_identifier_token33] = ACTIONS(2157), + [aux_sym_cmd_identifier_token34] = ACTIONS(2157), + [aux_sym_cmd_identifier_token35] = ACTIONS(2157), + [aux_sym_cmd_identifier_token36] = ACTIONS(2157), + [aux_sym_cmd_identifier_token37] = ACTIONS(2157), + [aux_sym_cmd_identifier_token38] = ACTIONS(2157), + [aux_sym_cmd_identifier_token39] = ACTIONS(2157), + [aux_sym_cmd_identifier_token40] = ACTIONS(2157), + [anon_sym_def] = ACTIONS(2157), + [anon_sym_export_DASHenv] = ACTIONS(2157), + [anon_sym_extern] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), + [anon_sym_use] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_DOLLAR] = ACTIONS(2157), + [anon_sym_error] = ACTIONS(2157), + [anon_sym_DASH2] = ACTIONS(2157), + [anon_sym_break] = ACTIONS(2157), + [anon_sym_continue] = ACTIONS(2157), + [anon_sym_for] = ACTIONS(2157), + [anon_sym_in2] = ACTIONS(2157), + [anon_sym_loop] = ACTIONS(2157), + [anon_sym_make] = ACTIONS(2157), + [anon_sym_while] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_if] = ACTIONS(2157), + [anon_sym_else] = ACTIONS(2157), + [anon_sym_match] = ACTIONS(2157), + [anon_sym_RBRACE] = ACTIONS(2157), + [anon_sym_try] = ACTIONS(2157), + [anon_sym_catch] = ACTIONS(2157), + [anon_sym_return] = ACTIONS(2157), + [anon_sym_source] = ACTIONS(2157), + [anon_sym_source_DASHenv] = ACTIONS(2157), + [anon_sym_register] = ACTIONS(2157), + [anon_sym_hide] = ACTIONS(2157), + [anon_sym_hide_DASHenv] = ACTIONS(2157), + [anon_sym_overlay] = ACTIONS(2157), + [anon_sym_as] = ACTIONS(2157), + [anon_sym_PLUS2] = ACTIONS(2157), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2157), + [anon_sym_DOT_DOT2] = ACTIONS(2159), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2161), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2161), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2157), + [aux_sym__val_number_decimal_token1] = ACTIONS(2157), + [aux_sym__val_number_decimal_token2] = ACTIONS(2157), + [aux_sym__val_number_decimal_token3] = ACTIONS(2157), + [aux_sym__val_number_decimal_token4] = ACTIONS(2157), + [aux_sym__val_number_token1] = ACTIONS(2157), + [aux_sym__val_number_token2] = ACTIONS(2157), + [aux_sym__val_number_token3] = ACTIONS(2157), + [aux_sym__val_number_token4] = ACTIONS(2157), + [aux_sym__val_number_token5] = ACTIONS(2157), + [aux_sym__val_number_token6] = ACTIONS(2157), + [anon_sym_DQUOTE] = ACTIONS(2157), + [sym__str_single_quotes] = ACTIONS(2157), + [sym__str_back_ticks] = ACTIONS(2157), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2157), + [sym__entry_separator] = ACTIONS(2163), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1757), + [sym_raw_string_begin] = ACTIONS(2163), }, - [477] = { - [sym_cell_path] = STATE(733), - [sym_path] = STATE(689), - [sym_comment] = STATE(477), - [aux_sym_cell_path_repeat1] = STATE(522), - [anon_sym_export] = ACTIONS(1972), - [anon_sym_alias] = ACTIONS(1972), - [anon_sym_let] = ACTIONS(1972), - [anon_sym_let_DASHenv] = ACTIONS(1972), - [anon_sym_mut] = ACTIONS(1972), - [anon_sym_const] = ACTIONS(1972), - [aux_sym_cmd_identifier_token1] = ACTIONS(1972), - [aux_sym_cmd_identifier_token2] = ACTIONS(1974), - [aux_sym_cmd_identifier_token3] = ACTIONS(1974), - [aux_sym_cmd_identifier_token4] = ACTIONS(1974), - [aux_sym_cmd_identifier_token5] = ACTIONS(1974), - [aux_sym_cmd_identifier_token6] = ACTIONS(1974), - [aux_sym_cmd_identifier_token7] = ACTIONS(1974), - [aux_sym_cmd_identifier_token8] = ACTIONS(1972), - [aux_sym_cmd_identifier_token9] = ACTIONS(1972), - [aux_sym_cmd_identifier_token10] = ACTIONS(1974), - [aux_sym_cmd_identifier_token11] = ACTIONS(1974), - [aux_sym_cmd_identifier_token12] = ACTIONS(1972), - [aux_sym_cmd_identifier_token13] = ACTIONS(1972), - [aux_sym_cmd_identifier_token14] = ACTIONS(1972), - [aux_sym_cmd_identifier_token15] = ACTIONS(1972), - [aux_sym_cmd_identifier_token16] = ACTIONS(1974), - [aux_sym_cmd_identifier_token17] = ACTIONS(1974), - [aux_sym_cmd_identifier_token18] = ACTIONS(1974), - [aux_sym_cmd_identifier_token19] = ACTIONS(1974), - [aux_sym_cmd_identifier_token20] = ACTIONS(1974), - [aux_sym_cmd_identifier_token21] = ACTIONS(1974), - [aux_sym_cmd_identifier_token22] = ACTIONS(1974), - [aux_sym_cmd_identifier_token23] = ACTIONS(1974), - [aux_sym_cmd_identifier_token24] = ACTIONS(1974), - [aux_sym_cmd_identifier_token25] = ACTIONS(1974), - [aux_sym_cmd_identifier_token26] = ACTIONS(1974), - [aux_sym_cmd_identifier_token27] = ACTIONS(1974), - [aux_sym_cmd_identifier_token28] = ACTIONS(1974), - [aux_sym_cmd_identifier_token29] = ACTIONS(1974), - [aux_sym_cmd_identifier_token30] = ACTIONS(1974), - [aux_sym_cmd_identifier_token31] = ACTIONS(1974), - [aux_sym_cmd_identifier_token32] = ACTIONS(1974), - [aux_sym_cmd_identifier_token33] = ACTIONS(1974), - [aux_sym_cmd_identifier_token34] = ACTIONS(1972), - [aux_sym_cmd_identifier_token35] = ACTIONS(1974), - [aux_sym_cmd_identifier_token36] = ACTIONS(1974), - [aux_sym_cmd_identifier_token37] = ACTIONS(1974), - [aux_sym_cmd_identifier_token38] = ACTIONS(1972), - [aux_sym_cmd_identifier_token39] = ACTIONS(1974), - [aux_sym_cmd_identifier_token40] = ACTIONS(1974), - [anon_sym_def] = ACTIONS(1972), - [anon_sym_export_DASHenv] = ACTIONS(1972), - [anon_sym_extern] = ACTIONS(1972), - [anon_sym_module] = ACTIONS(1972), - [anon_sym_use] = ACTIONS(1972), - [anon_sym_LPAREN] = ACTIONS(1974), - [anon_sym_DOLLAR] = ACTIONS(1974), - [anon_sym_error] = ACTIONS(1972), - [anon_sym_DASH2] = ACTIONS(1972), - [anon_sym_break] = ACTIONS(1972), - [anon_sym_continue] = ACTIONS(1972), - [anon_sym_for] = ACTIONS(1972), - [anon_sym_in2] = ACTIONS(1972), - [anon_sym_loop] = ACTIONS(1972), - [anon_sym_make] = ACTIONS(1972), - [anon_sym_while] = ACTIONS(1972), - [anon_sym_do] = ACTIONS(1972), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_else] = ACTIONS(1972), - [anon_sym_match] = ACTIONS(1972), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_try] = ACTIONS(1972), - [anon_sym_catch] = ACTIONS(1972), - [anon_sym_return] = ACTIONS(1972), - [anon_sym_source] = ACTIONS(1972), - [anon_sym_source_DASHenv] = ACTIONS(1972), - [anon_sym_register] = ACTIONS(1972), - [anon_sym_hide] = ACTIONS(1972), - [anon_sym_hide_DASHenv] = ACTIONS(1972), - [anon_sym_overlay] = ACTIONS(1972), - [anon_sym_as] = ACTIONS(1972), - [anon_sym_PLUS2] = ACTIONS(1972), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1974), - [anon_sym_DOT] = ACTIONS(2110), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1972), - [aux_sym__val_number_decimal_token2] = ACTIONS(1974), - [aux_sym__val_number_decimal_token3] = ACTIONS(1974), - [aux_sym__val_number_decimal_token4] = ACTIONS(1974), - [aux_sym__val_number_token1] = ACTIONS(1974), - [aux_sym__val_number_token2] = ACTIONS(1974), - [aux_sym__val_number_token3] = ACTIONS(1974), - [aux_sym__val_number_token4] = ACTIONS(1972), - [aux_sym__val_number_token5] = ACTIONS(1972), - [aux_sym__val_number_token6] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym__str_single_quotes] = ACTIONS(1974), - [sym__str_back_ticks] = ACTIONS(1974), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1974), - }, - [478] = { - [sym_cell_path] = STATE(734), - [sym_path] = STATE(689), - [sym_comment] = STATE(478), - [aux_sym_cell_path_repeat1] = STATE(522), - [anon_sym_export] = ACTIONS(1984), - [anon_sym_alias] = ACTIONS(1984), - [anon_sym_let] = ACTIONS(1984), - [anon_sym_let_DASHenv] = ACTIONS(1984), - [anon_sym_mut] = ACTIONS(1984), - [anon_sym_const] = ACTIONS(1984), - [aux_sym_cmd_identifier_token1] = ACTIONS(1984), - [aux_sym_cmd_identifier_token2] = ACTIONS(1986), - [aux_sym_cmd_identifier_token3] = ACTIONS(1986), - [aux_sym_cmd_identifier_token4] = ACTIONS(1986), - [aux_sym_cmd_identifier_token5] = ACTIONS(1986), - [aux_sym_cmd_identifier_token6] = ACTIONS(1986), - [aux_sym_cmd_identifier_token7] = ACTIONS(1986), - [aux_sym_cmd_identifier_token8] = ACTIONS(1984), - [aux_sym_cmd_identifier_token9] = ACTIONS(1984), - [aux_sym_cmd_identifier_token10] = ACTIONS(1986), - [aux_sym_cmd_identifier_token11] = ACTIONS(1986), - [aux_sym_cmd_identifier_token12] = ACTIONS(1984), - [aux_sym_cmd_identifier_token13] = ACTIONS(1984), - [aux_sym_cmd_identifier_token14] = ACTIONS(1984), - [aux_sym_cmd_identifier_token15] = ACTIONS(1984), - [aux_sym_cmd_identifier_token16] = ACTIONS(1986), - [aux_sym_cmd_identifier_token17] = ACTIONS(1986), - [aux_sym_cmd_identifier_token18] = ACTIONS(1986), - [aux_sym_cmd_identifier_token19] = ACTIONS(1986), - [aux_sym_cmd_identifier_token20] = ACTIONS(1986), - [aux_sym_cmd_identifier_token21] = ACTIONS(1986), - [aux_sym_cmd_identifier_token22] = ACTIONS(1986), - [aux_sym_cmd_identifier_token23] = ACTIONS(1986), - [aux_sym_cmd_identifier_token24] = ACTIONS(1986), - [aux_sym_cmd_identifier_token25] = ACTIONS(1986), - [aux_sym_cmd_identifier_token26] = ACTIONS(1986), - [aux_sym_cmd_identifier_token27] = ACTIONS(1986), - [aux_sym_cmd_identifier_token28] = ACTIONS(1986), - [aux_sym_cmd_identifier_token29] = ACTIONS(1986), - [aux_sym_cmd_identifier_token30] = ACTIONS(1986), - [aux_sym_cmd_identifier_token31] = ACTIONS(1986), - [aux_sym_cmd_identifier_token32] = ACTIONS(1986), - [aux_sym_cmd_identifier_token33] = ACTIONS(1986), - [aux_sym_cmd_identifier_token34] = ACTIONS(1984), - [aux_sym_cmd_identifier_token35] = ACTIONS(1986), - [aux_sym_cmd_identifier_token36] = ACTIONS(1986), - [aux_sym_cmd_identifier_token37] = ACTIONS(1986), - [aux_sym_cmd_identifier_token38] = ACTIONS(1984), - [aux_sym_cmd_identifier_token39] = ACTIONS(1986), - [aux_sym_cmd_identifier_token40] = ACTIONS(1986), - [anon_sym_def] = ACTIONS(1984), - [anon_sym_export_DASHenv] = ACTIONS(1984), - [anon_sym_extern] = ACTIONS(1984), - [anon_sym_module] = ACTIONS(1984), - [anon_sym_use] = ACTIONS(1984), - [anon_sym_LPAREN] = ACTIONS(1986), - [anon_sym_DOLLAR] = ACTIONS(1986), - [anon_sym_error] = ACTIONS(1984), - [anon_sym_DASH2] = ACTIONS(1984), - [anon_sym_break] = ACTIONS(1984), - [anon_sym_continue] = ACTIONS(1984), - [anon_sym_for] = ACTIONS(1984), - [anon_sym_in2] = ACTIONS(1984), - [anon_sym_loop] = ACTIONS(1984), - [anon_sym_make] = ACTIONS(1984), - [anon_sym_while] = ACTIONS(1984), - [anon_sym_do] = ACTIONS(1984), - [anon_sym_if] = ACTIONS(1984), - [anon_sym_else] = ACTIONS(1984), - [anon_sym_match] = ACTIONS(1984), - [anon_sym_RBRACE] = ACTIONS(1986), - [anon_sym_try] = ACTIONS(1984), - [anon_sym_catch] = ACTIONS(1984), - [anon_sym_return] = ACTIONS(1984), - [anon_sym_source] = ACTIONS(1984), - [anon_sym_source_DASHenv] = ACTIONS(1984), - [anon_sym_register] = ACTIONS(1984), - [anon_sym_hide] = ACTIONS(1984), - [anon_sym_hide_DASHenv] = ACTIONS(1984), - [anon_sym_overlay] = ACTIONS(1984), - [anon_sym_as] = ACTIONS(1984), - [anon_sym_PLUS2] = ACTIONS(1984), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1986), - [anon_sym_DOT] = ACTIONS(2110), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1986), - [aux_sym__val_number_decimal_token1] = ACTIONS(1984), - [aux_sym__val_number_decimal_token2] = ACTIONS(1986), - [aux_sym__val_number_decimal_token3] = ACTIONS(1986), - [aux_sym__val_number_decimal_token4] = ACTIONS(1986), - [aux_sym__val_number_token1] = ACTIONS(1986), - [aux_sym__val_number_token2] = ACTIONS(1986), - [aux_sym__val_number_token3] = ACTIONS(1986), - [aux_sym__val_number_token4] = ACTIONS(1984), - [aux_sym__val_number_token5] = ACTIONS(1984), - [aux_sym__val_number_token6] = ACTIONS(1984), - [anon_sym_DQUOTE] = ACTIONS(1986), - [sym__str_single_quotes] = ACTIONS(1986), - [sym__str_back_ticks] = ACTIONS(1986), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1986), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1986), - }, - [479] = { - [sym_cell_path] = STATE(735), - [sym_path] = STATE(689), - [sym_comment] = STATE(479), - [aux_sym_cell_path_repeat1] = STATE(522), - [anon_sym_export] = ACTIONS(1988), - [anon_sym_alias] = ACTIONS(1988), - [anon_sym_let] = ACTIONS(1988), - [anon_sym_let_DASHenv] = ACTIONS(1988), - [anon_sym_mut] = ACTIONS(1988), - [anon_sym_const] = ACTIONS(1988), - [aux_sym_cmd_identifier_token1] = ACTIONS(1988), - [aux_sym_cmd_identifier_token2] = ACTIONS(1990), - [aux_sym_cmd_identifier_token3] = ACTIONS(1990), - [aux_sym_cmd_identifier_token4] = ACTIONS(1990), - [aux_sym_cmd_identifier_token5] = ACTIONS(1990), - [aux_sym_cmd_identifier_token6] = ACTIONS(1990), - [aux_sym_cmd_identifier_token7] = ACTIONS(1990), - [aux_sym_cmd_identifier_token8] = ACTIONS(1988), - [aux_sym_cmd_identifier_token9] = ACTIONS(1988), - [aux_sym_cmd_identifier_token10] = ACTIONS(1990), - [aux_sym_cmd_identifier_token11] = ACTIONS(1990), - [aux_sym_cmd_identifier_token12] = ACTIONS(1988), - [aux_sym_cmd_identifier_token13] = ACTIONS(1988), - [aux_sym_cmd_identifier_token14] = ACTIONS(1988), - [aux_sym_cmd_identifier_token15] = ACTIONS(1988), - [aux_sym_cmd_identifier_token16] = ACTIONS(1990), - [aux_sym_cmd_identifier_token17] = ACTIONS(1990), - [aux_sym_cmd_identifier_token18] = ACTIONS(1990), - [aux_sym_cmd_identifier_token19] = ACTIONS(1990), - [aux_sym_cmd_identifier_token20] = ACTIONS(1990), - [aux_sym_cmd_identifier_token21] = ACTIONS(1990), - [aux_sym_cmd_identifier_token22] = ACTIONS(1990), - [aux_sym_cmd_identifier_token23] = ACTIONS(1990), - [aux_sym_cmd_identifier_token24] = ACTIONS(1990), - [aux_sym_cmd_identifier_token25] = ACTIONS(1990), - [aux_sym_cmd_identifier_token26] = ACTIONS(1990), - [aux_sym_cmd_identifier_token27] = ACTIONS(1990), - [aux_sym_cmd_identifier_token28] = ACTIONS(1990), - [aux_sym_cmd_identifier_token29] = ACTIONS(1990), - [aux_sym_cmd_identifier_token30] = ACTIONS(1990), - [aux_sym_cmd_identifier_token31] = ACTIONS(1990), - [aux_sym_cmd_identifier_token32] = ACTIONS(1990), - [aux_sym_cmd_identifier_token33] = ACTIONS(1990), - [aux_sym_cmd_identifier_token34] = ACTIONS(1988), - [aux_sym_cmd_identifier_token35] = ACTIONS(1990), - [aux_sym_cmd_identifier_token36] = ACTIONS(1990), - [aux_sym_cmd_identifier_token37] = ACTIONS(1990), - [aux_sym_cmd_identifier_token38] = ACTIONS(1988), - [aux_sym_cmd_identifier_token39] = ACTIONS(1990), - [aux_sym_cmd_identifier_token40] = ACTIONS(1990), - [anon_sym_def] = ACTIONS(1988), - [anon_sym_export_DASHenv] = ACTIONS(1988), - [anon_sym_extern] = ACTIONS(1988), - [anon_sym_module] = ACTIONS(1988), - [anon_sym_use] = ACTIONS(1988), - [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_DOLLAR] = ACTIONS(1990), - [anon_sym_error] = ACTIONS(1988), - [anon_sym_DASH2] = ACTIONS(1988), - [anon_sym_break] = ACTIONS(1988), - [anon_sym_continue] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1988), - [anon_sym_in2] = ACTIONS(1988), - [anon_sym_loop] = ACTIONS(1988), - [anon_sym_make] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1988), - [anon_sym_do] = ACTIONS(1988), - [anon_sym_if] = ACTIONS(1988), - [anon_sym_else] = ACTIONS(1988), - [anon_sym_match] = ACTIONS(1988), - [anon_sym_RBRACE] = ACTIONS(1990), - [anon_sym_try] = ACTIONS(1988), - [anon_sym_catch] = ACTIONS(1988), - [anon_sym_return] = ACTIONS(1988), - [anon_sym_source] = ACTIONS(1988), - [anon_sym_source_DASHenv] = ACTIONS(1988), - [anon_sym_register] = ACTIONS(1988), - [anon_sym_hide] = ACTIONS(1988), - [anon_sym_hide_DASHenv] = ACTIONS(1988), - [anon_sym_overlay] = ACTIONS(1988), - [anon_sym_as] = ACTIONS(1988), - [anon_sym_PLUS2] = ACTIONS(1988), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1990), - [anon_sym_DOT] = ACTIONS(2110), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1990), - [aux_sym__val_number_decimal_token1] = ACTIONS(1988), - [aux_sym__val_number_decimal_token2] = ACTIONS(1990), - [aux_sym__val_number_decimal_token3] = ACTIONS(1990), - [aux_sym__val_number_decimal_token4] = ACTIONS(1990), - [aux_sym__val_number_token1] = ACTIONS(1990), - [aux_sym__val_number_token2] = ACTIONS(1990), - [aux_sym__val_number_token3] = ACTIONS(1990), - [aux_sym__val_number_token4] = ACTIONS(1988), - [aux_sym__val_number_token5] = ACTIONS(1988), - [aux_sym__val_number_token6] = ACTIONS(1988), - [anon_sym_DQUOTE] = ACTIONS(1990), - [sym__str_single_quotes] = ACTIONS(1990), - [sym__str_back_ticks] = ACTIONS(1990), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1990), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1990), - }, - [480] = { - [sym_comment] = STATE(480), - [anon_sym_export] = ACTIONS(2129), - [anon_sym_alias] = ACTIONS(2129), - [anon_sym_let] = ACTIONS(2129), - [anon_sym_let_DASHenv] = ACTIONS(2129), - [anon_sym_mut] = ACTIONS(2129), - [anon_sym_const] = ACTIONS(2129), - [aux_sym_cmd_identifier_token1] = ACTIONS(2129), - [aux_sym_cmd_identifier_token2] = ACTIONS(2129), - [aux_sym_cmd_identifier_token3] = ACTIONS(2129), - [aux_sym_cmd_identifier_token4] = ACTIONS(2129), - [aux_sym_cmd_identifier_token5] = ACTIONS(2129), - [aux_sym_cmd_identifier_token6] = ACTIONS(2129), - [aux_sym_cmd_identifier_token7] = ACTIONS(2129), - [aux_sym_cmd_identifier_token8] = ACTIONS(2129), - [aux_sym_cmd_identifier_token9] = ACTIONS(2129), - [aux_sym_cmd_identifier_token10] = ACTIONS(2129), - [aux_sym_cmd_identifier_token11] = ACTIONS(2129), - [aux_sym_cmd_identifier_token12] = ACTIONS(2129), - [aux_sym_cmd_identifier_token13] = ACTIONS(2129), - [aux_sym_cmd_identifier_token14] = ACTIONS(2129), - [aux_sym_cmd_identifier_token15] = ACTIONS(2129), - [aux_sym_cmd_identifier_token16] = ACTIONS(2129), - [aux_sym_cmd_identifier_token17] = ACTIONS(2129), - [aux_sym_cmd_identifier_token18] = ACTIONS(2129), - [aux_sym_cmd_identifier_token19] = ACTIONS(2129), - [aux_sym_cmd_identifier_token20] = ACTIONS(2129), - [aux_sym_cmd_identifier_token21] = ACTIONS(2129), - [aux_sym_cmd_identifier_token22] = ACTIONS(2129), - [aux_sym_cmd_identifier_token23] = ACTIONS(2129), - [aux_sym_cmd_identifier_token24] = ACTIONS(2129), - [aux_sym_cmd_identifier_token25] = ACTIONS(2129), - [aux_sym_cmd_identifier_token26] = ACTIONS(2129), - [aux_sym_cmd_identifier_token27] = ACTIONS(2129), - [aux_sym_cmd_identifier_token28] = ACTIONS(2129), - [aux_sym_cmd_identifier_token29] = ACTIONS(2129), - [aux_sym_cmd_identifier_token30] = ACTIONS(2129), - [aux_sym_cmd_identifier_token31] = ACTIONS(2129), - [aux_sym_cmd_identifier_token32] = ACTIONS(2129), - [aux_sym_cmd_identifier_token33] = ACTIONS(2129), - [aux_sym_cmd_identifier_token34] = ACTIONS(2129), - [aux_sym_cmd_identifier_token35] = ACTIONS(2129), - [aux_sym_cmd_identifier_token36] = ACTIONS(2129), - [aux_sym_cmd_identifier_token37] = ACTIONS(2129), - [aux_sym_cmd_identifier_token38] = ACTIONS(2129), - [aux_sym_cmd_identifier_token39] = ACTIONS(2129), - [aux_sym_cmd_identifier_token40] = ACTIONS(2129), - [anon_sym_def] = ACTIONS(2129), - [anon_sym_export_DASHenv] = ACTIONS(2129), - [anon_sym_extern] = ACTIONS(2129), - [anon_sym_module] = ACTIONS(2129), - [anon_sym_use] = ACTIONS(2129), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_DOLLAR] = ACTIONS(2129), - [anon_sym_error] = ACTIONS(2129), - [anon_sym_DASH2] = ACTIONS(2129), - [anon_sym_break] = ACTIONS(2129), - [anon_sym_continue] = ACTIONS(2129), - [anon_sym_for] = ACTIONS(2129), - [anon_sym_in2] = ACTIONS(2129), - [anon_sym_loop] = ACTIONS(2129), - [anon_sym_make] = ACTIONS(2129), - [anon_sym_while] = ACTIONS(2129), - [anon_sym_do] = ACTIONS(2129), - [anon_sym_if] = ACTIONS(2129), - [anon_sym_else] = ACTIONS(2129), - [anon_sym_match] = ACTIONS(2129), - [anon_sym_RBRACE] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(2129), - [anon_sym_catch] = ACTIONS(2129), - [anon_sym_return] = ACTIONS(2129), - [anon_sym_source] = ACTIONS(2129), - [anon_sym_source_DASHenv] = ACTIONS(2129), - [anon_sym_register] = ACTIONS(2129), - [anon_sym_hide] = ACTIONS(2129), - [anon_sym_hide_DASHenv] = ACTIONS(2129), - [anon_sym_overlay] = ACTIONS(2129), - [anon_sym_as] = ACTIONS(2129), - [anon_sym_PLUS2] = ACTIONS(2129), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2129), - [anon_sym_DOT_DOT2] = ACTIONS(2129), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2131), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2131), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2129), - [aux_sym__val_number_decimal_token1] = ACTIONS(2129), - [aux_sym__val_number_decimal_token2] = ACTIONS(2129), - [aux_sym__val_number_decimal_token3] = ACTIONS(2129), - [aux_sym__val_number_decimal_token4] = ACTIONS(2129), - [aux_sym__val_number_token1] = ACTIONS(2129), - [aux_sym__val_number_token2] = ACTIONS(2129), - [aux_sym__val_number_token3] = ACTIONS(2129), - [aux_sym__val_number_token4] = ACTIONS(2129), - [aux_sym__val_number_token5] = ACTIONS(2129), - [aux_sym__val_number_token6] = ACTIONS(2129), - [anon_sym_DQUOTE] = ACTIONS(2129), - [sym__str_single_quotes] = ACTIONS(2129), - [sym__str_back_ticks] = ACTIONS(2129), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2129), - [sym__entry_separator] = ACTIONS(2131), + [501] = { + [sym_comment] = STATE(501), + [anon_sym_export] = ACTIONS(2165), + [anon_sym_alias] = ACTIONS(2165), + [anon_sym_let] = ACTIONS(2165), + [anon_sym_let_DASHenv] = ACTIONS(2165), + [anon_sym_mut] = ACTIONS(2165), + [anon_sym_const] = ACTIONS(2165), + [aux_sym_cmd_identifier_token1] = ACTIONS(2165), + [aux_sym_cmd_identifier_token2] = ACTIONS(2165), + [aux_sym_cmd_identifier_token3] = ACTIONS(2165), + [aux_sym_cmd_identifier_token4] = ACTIONS(2165), + [aux_sym_cmd_identifier_token5] = ACTIONS(2165), + [aux_sym_cmd_identifier_token6] = ACTIONS(2165), + [aux_sym_cmd_identifier_token7] = ACTIONS(2165), + [aux_sym_cmd_identifier_token8] = ACTIONS(2165), + [aux_sym_cmd_identifier_token9] = ACTIONS(2165), + [aux_sym_cmd_identifier_token10] = ACTIONS(2165), + [aux_sym_cmd_identifier_token11] = ACTIONS(2165), + [aux_sym_cmd_identifier_token12] = ACTIONS(2165), + [aux_sym_cmd_identifier_token13] = ACTIONS(2165), + [aux_sym_cmd_identifier_token14] = ACTIONS(2165), + [aux_sym_cmd_identifier_token15] = ACTIONS(2165), + [aux_sym_cmd_identifier_token16] = ACTIONS(2165), + [aux_sym_cmd_identifier_token17] = ACTIONS(2165), + [aux_sym_cmd_identifier_token18] = ACTIONS(2165), + [aux_sym_cmd_identifier_token19] = ACTIONS(2165), + [aux_sym_cmd_identifier_token20] = ACTIONS(2165), + [aux_sym_cmd_identifier_token21] = ACTIONS(2165), + [aux_sym_cmd_identifier_token22] = ACTIONS(2165), + [aux_sym_cmd_identifier_token23] = ACTIONS(2165), + [aux_sym_cmd_identifier_token24] = ACTIONS(2165), + [aux_sym_cmd_identifier_token25] = ACTIONS(2165), + [aux_sym_cmd_identifier_token26] = ACTIONS(2165), + [aux_sym_cmd_identifier_token27] = ACTIONS(2165), + [aux_sym_cmd_identifier_token28] = ACTIONS(2165), + [aux_sym_cmd_identifier_token29] = ACTIONS(2165), + [aux_sym_cmd_identifier_token30] = ACTIONS(2165), + [aux_sym_cmd_identifier_token31] = ACTIONS(2165), + [aux_sym_cmd_identifier_token32] = ACTIONS(2165), + [aux_sym_cmd_identifier_token33] = ACTIONS(2165), + [aux_sym_cmd_identifier_token34] = ACTIONS(2165), + [aux_sym_cmd_identifier_token35] = ACTIONS(2165), + [aux_sym_cmd_identifier_token36] = ACTIONS(2165), + [aux_sym_cmd_identifier_token37] = ACTIONS(2165), + [aux_sym_cmd_identifier_token38] = ACTIONS(2165), + [aux_sym_cmd_identifier_token39] = ACTIONS(2165), + [aux_sym_cmd_identifier_token40] = ACTIONS(2165), + [anon_sym_def] = ACTIONS(2165), + [anon_sym_export_DASHenv] = ACTIONS(2165), + [anon_sym_extern] = ACTIONS(2165), + [anon_sym_module] = ACTIONS(2165), + [anon_sym_use] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2165), + [anon_sym_DOLLAR] = ACTIONS(2165), + [anon_sym_error] = ACTIONS(2165), + [anon_sym_DASH2] = ACTIONS(2165), + [anon_sym_break] = ACTIONS(2165), + [anon_sym_continue] = ACTIONS(2165), + [anon_sym_for] = ACTIONS(2165), + [anon_sym_in2] = ACTIONS(2165), + [anon_sym_loop] = ACTIONS(2165), + [anon_sym_make] = ACTIONS(2165), + [anon_sym_while] = ACTIONS(2165), + [anon_sym_do] = ACTIONS(2165), + [anon_sym_if] = ACTIONS(2165), + [anon_sym_else] = ACTIONS(2165), + [anon_sym_match] = ACTIONS(2165), + [anon_sym_RBRACE] = ACTIONS(2165), + [anon_sym_try] = ACTIONS(2165), + [anon_sym_catch] = ACTIONS(2165), + [anon_sym_return] = ACTIONS(2165), + [anon_sym_source] = ACTIONS(2165), + [anon_sym_source_DASHenv] = ACTIONS(2165), + [anon_sym_register] = ACTIONS(2165), + [anon_sym_hide] = ACTIONS(2165), + [anon_sym_hide_DASHenv] = ACTIONS(2165), + [anon_sym_overlay] = ACTIONS(2165), + [anon_sym_as] = ACTIONS(2165), + [anon_sym_PLUS2] = ACTIONS(2165), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2165), + [anon_sym_DOT_DOT2] = ACTIONS(2167), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2169), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2169), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2165), + [aux_sym__val_number_decimal_token1] = ACTIONS(2165), + [aux_sym__val_number_decimal_token2] = ACTIONS(2165), + [aux_sym__val_number_decimal_token3] = ACTIONS(2165), + [aux_sym__val_number_decimal_token4] = ACTIONS(2165), + [aux_sym__val_number_token1] = ACTIONS(2165), + [aux_sym__val_number_token2] = ACTIONS(2165), + [aux_sym__val_number_token3] = ACTIONS(2165), + [aux_sym__val_number_token4] = ACTIONS(2165), + [aux_sym__val_number_token5] = ACTIONS(2165), + [aux_sym__val_number_token6] = ACTIONS(2165), + [anon_sym_DQUOTE] = ACTIONS(2165), + [sym__str_single_quotes] = ACTIONS(2165), + [sym__str_back_ticks] = ACTIONS(2165), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2165), + [sym__entry_separator] = ACTIONS(2171), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2131), + [sym_raw_string_begin] = ACTIONS(2171), }, - [481] = { - [sym_comment] = STATE(481), - [anon_sym_export] = ACTIONS(2133), - [anon_sym_alias] = ACTIONS(2133), - [anon_sym_let] = ACTIONS(2133), - [anon_sym_let_DASHenv] = ACTIONS(2133), - [anon_sym_mut] = ACTIONS(2133), - [anon_sym_const] = ACTIONS(2133), - [aux_sym_cmd_identifier_token1] = ACTIONS(2133), - [aux_sym_cmd_identifier_token2] = ACTIONS(2133), - [aux_sym_cmd_identifier_token3] = ACTIONS(2133), - [aux_sym_cmd_identifier_token4] = ACTIONS(2133), - [aux_sym_cmd_identifier_token5] = ACTIONS(2133), - [aux_sym_cmd_identifier_token6] = ACTIONS(2133), - [aux_sym_cmd_identifier_token7] = ACTIONS(2133), - [aux_sym_cmd_identifier_token8] = ACTIONS(2133), - [aux_sym_cmd_identifier_token9] = ACTIONS(2133), - [aux_sym_cmd_identifier_token10] = ACTIONS(2133), - [aux_sym_cmd_identifier_token11] = ACTIONS(2133), - [aux_sym_cmd_identifier_token12] = ACTIONS(2133), - [aux_sym_cmd_identifier_token13] = ACTIONS(2133), - [aux_sym_cmd_identifier_token14] = ACTIONS(2133), - [aux_sym_cmd_identifier_token15] = ACTIONS(2133), - [aux_sym_cmd_identifier_token16] = ACTIONS(2133), - [aux_sym_cmd_identifier_token17] = ACTIONS(2133), - [aux_sym_cmd_identifier_token18] = ACTIONS(2133), - [aux_sym_cmd_identifier_token19] = ACTIONS(2133), - [aux_sym_cmd_identifier_token20] = ACTIONS(2133), - [aux_sym_cmd_identifier_token21] = ACTIONS(2133), - [aux_sym_cmd_identifier_token22] = ACTIONS(2133), - [aux_sym_cmd_identifier_token23] = ACTIONS(2133), - [aux_sym_cmd_identifier_token24] = ACTIONS(2133), - [aux_sym_cmd_identifier_token25] = ACTIONS(2133), - [aux_sym_cmd_identifier_token26] = ACTIONS(2133), - [aux_sym_cmd_identifier_token27] = ACTIONS(2133), - [aux_sym_cmd_identifier_token28] = ACTIONS(2133), - [aux_sym_cmd_identifier_token29] = ACTIONS(2133), - [aux_sym_cmd_identifier_token30] = ACTIONS(2133), - [aux_sym_cmd_identifier_token31] = ACTIONS(2133), - [aux_sym_cmd_identifier_token32] = ACTIONS(2133), - [aux_sym_cmd_identifier_token33] = ACTIONS(2133), - [aux_sym_cmd_identifier_token34] = ACTIONS(2133), - [aux_sym_cmd_identifier_token35] = ACTIONS(2133), - [aux_sym_cmd_identifier_token36] = ACTIONS(2133), - [aux_sym_cmd_identifier_token37] = ACTIONS(2133), - [aux_sym_cmd_identifier_token38] = ACTIONS(2133), - [aux_sym_cmd_identifier_token39] = ACTIONS(2133), - [aux_sym_cmd_identifier_token40] = ACTIONS(2133), - [anon_sym_def] = ACTIONS(2133), - [anon_sym_export_DASHenv] = ACTIONS(2133), - [anon_sym_extern] = ACTIONS(2133), - [anon_sym_module] = ACTIONS(2133), - [anon_sym_use] = ACTIONS(2133), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_DOLLAR] = ACTIONS(2133), - [anon_sym_error] = ACTIONS(2133), - [anon_sym_DASH2] = ACTIONS(2133), - [anon_sym_break] = ACTIONS(2133), - [anon_sym_continue] = ACTIONS(2133), - [anon_sym_for] = ACTIONS(2133), - [anon_sym_in2] = ACTIONS(2133), - [anon_sym_loop] = ACTIONS(2133), - [anon_sym_make] = ACTIONS(2133), - [anon_sym_while] = ACTIONS(2133), - [anon_sym_do] = ACTIONS(2133), - [anon_sym_if] = ACTIONS(2133), - [anon_sym_else] = ACTIONS(2133), - [anon_sym_match] = ACTIONS(2133), - [anon_sym_RBRACE] = ACTIONS(2133), - [anon_sym_try] = ACTIONS(2133), - [anon_sym_catch] = ACTIONS(2133), - [anon_sym_return] = ACTIONS(2133), - [anon_sym_source] = ACTIONS(2133), - [anon_sym_source_DASHenv] = ACTIONS(2133), - [anon_sym_register] = ACTIONS(2133), - [anon_sym_hide] = ACTIONS(2133), - [anon_sym_hide_DASHenv] = ACTIONS(2133), - [anon_sym_overlay] = ACTIONS(2133), - [anon_sym_as] = ACTIONS(2133), - [anon_sym_PLUS2] = ACTIONS(2133), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2133), - [anon_sym_DOT_DOT2] = ACTIONS(2135), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2137), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2137), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2133), - [aux_sym__val_number_decimal_token1] = ACTIONS(2133), - [aux_sym__val_number_decimal_token2] = ACTIONS(2133), - [aux_sym__val_number_decimal_token3] = ACTIONS(2133), - [aux_sym__val_number_decimal_token4] = ACTIONS(2133), - [aux_sym__val_number_token1] = ACTIONS(2133), - [aux_sym__val_number_token2] = ACTIONS(2133), - [aux_sym__val_number_token3] = ACTIONS(2133), - [aux_sym__val_number_token4] = ACTIONS(2133), - [aux_sym__val_number_token5] = ACTIONS(2133), - [aux_sym__val_number_token6] = ACTIONS(2133), - [anon_sym_DQUOTE] = ACTIONS(2133), - [sym__str_single_quotes] = ACTIONS(2133), - [sym__str_back_ticks] = ACTIONS(2133), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2133), - [sym__entry_separator] = ACTIONS(2139), + [502] = { + [sym_comment] = STATE(502), + [anon_sym_export] = ACTIONS(2173), + [anon_sym_alias] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_let_DASHenv] = ACTIONS(2173), + [anon_sym_mut] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [aux_sym_cmd_identifier_token1] = ACTIONS(2173), + [aux_sym_cmd_identifier_token2] = ACTIONS(2173), + [aux_sym_cmd_identifier_token3] = ACTIONS(2173), + [aux_sym_cmd_identifier_token4] = ACTIONS(2173), + [aux_sym_cmd_identifier_token5] = ACTIONS(2173), + [aux_sym_cmd_identifier_token6] = ACTIONS(2173), + [aux_sym_cmd_identifier_token7] = ACTIONS(2173), + [aux_sym_cmd_identifier_token8] = ACTIONS(2173), + [aux_sym_cmd_identifier_token9] = ACTIONS(2173), + [aux_sym_cmd_identifier_token10] = ACTIONS(2173), + [aux_sym_cmd_identifier_token11] = ACTIONS(2173), + [aux_sym_cmd_identifier_token12] = ACTIONS(2173), + [aux_sym_cmd_identifier_token13] = ACTIONS(2173), + [aux_sym_cmd_identifier_token14] = ACTIONS(2173), + [aux_sym_cmd_identifier_token15] = ACTIONS(2173), + [aux_sym_cmd_identifier_token16] = ACTIONS(2173), + [aux_sym_cmd_identifier_token17] = ACTIONS(2173), + [aux_sym_cmd_identifier_token18] = ACTIONS(2173), + [aux_sym_cmd_identifier_token19] = ACTIONS(2173), + [aux_sym_cmd_identifier_token20] = ACTIONS(2173), + [aux_sym_cmd_identifier_token21] = ACTIONS(2173), + [aux_sym_cmd_identifier_token22] = ACTIONS(2173), + [aux_sym_cmd_identifier_token23] = ACTIONS(2173), + [aux_sym_cmd_identifier_token24] = ACTIONS(2173), + [aux_sym_cmd_identifier_token25] = ACTIONS(2173), + [aux_sym_cmd_identifier_token26] = ACTIONS(2173), + [aux_sym_cmd_identifier_token27] = ACTIONS(2173), + [aux_sym_cmd_identifier_token28] = ACTIONS(2173), + [aux_sym_cmd_identifier_token29] = ACTIONS(2173), + [aux_sym_cmd_identifier_token30] = ACTIONS(2173), + [aux_sym_cmd_identifier_token31] = ACTIONS(2173), + [aux_sym_cmd_identifier_token32] = ACTIONS(2173), + [aux_sym_cmd_identifier_token33] = ACTIONS(2173), + [aux_sym_cmd_identifier_token34] = ACTIONS(2173), + [aux_sym_cmd_identifier_token35] = ACTIONS(2173), + [aux_sym_cmd_identifier_token36] = ACTIONS(2173), + [aux_sym_cmd_identifier_token37] = ACTIONS(2173), + [aux_sym_cmd_identifier_token38] = ACTIONS(2173), + [aux_sym_cmd_identifier_token39] = ACTIONS(2173), + [aux_sym_cmd_identifier_token40] = ACTIONS(2173), + [anon_sym_def] = ACTIONS(2173), + [anon_sym_export_DASHenv] = ACTIONS(2173), + [anon_sym_extern] = ACTIONS(2173), + [anon_sym_module] = ACTIONS(2173), + [anon_sym_use] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2173), + [anon_sym_error] = ACTIONS(2173), + [anon_sym_DASH2] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_in2] = ACTIONS(2173), + [anon_sym_loop] = ACTIONS(2173), + [anon_sym_make] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_else] = ACTIONS(2173), + [anon_sym_match] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_catch] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_source] = ACTIONS(2173), + [anon_sym_source_DASHenv] = ACTIONS(2173), + [anon_sym_register] = ACTIONS(2173), + [anon_sym_hide] = ACTIONS(2173), + [anon_sym_hide_DASHenv] = ACTIONS(2173), + [anon_sym_overlay] = ACTIONS(2173), + [anon_sym_as] = ACTIONS(2173), + [anon_sym_PLUS2] = ACTIONS(2173), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2173), + [anon_sym_DOT_DOT2] = ACTIONS(2167), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2169), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2169), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2173), + [aux_sym__val_number_decimal_token1] = ACTIONS(2173), + [aux_sym__val_number_decimal_token2] = ACTIONS(2173), + [aux_sym__val_number_decimal_token3] = ACTIONS(2173), + [aux_sym__val_number_decimal_token4] = ACTIONS(2173), + [aux_sym__val_number_token1] = ACTIONS(2173), + [aux_sym__val_number_token2] = ACTIONS(2173), + [aux_sym__val_number_token3] = ACTIONS(2173), + [aux_sym__val_number_token4] = ACTIONS(2173), + [aux_sym__val_number_token5] = ACTIONS(2173), + [aux_sym__val_number_token6] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2173), + [sym__str_single_quotes] = ACTIONS(2173), + [sym__str_back_ticks] = ACTIONS(2173), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2173), + [sym__entry_separator] = ACTIONS(2175), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2139), - }, - [482] = { - [sym_cell_path] = STATE(736), - [sym_path] = STATE(689), - [sym_comment] = STATE(482), - [aux_sym_cell_path_repeat1] = STATE(522), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_alias] = ACTIONS(1992), - [anon_sym_let] = ACTIONS(1992), - [anon_sym_let_DASHenv] = ACTIONS(1992), - [anon_sym_mut] = ACTIONS(1992), - [anon_sym_const] = ACTIONS(1992), - [aux_sym_cmd_identifier_token1] = ACTIONS(1992), - [aux_sym_cmd_identifier_token2] = ACTIONS(1994), - [aux_sym_cmd_identifier_token3] = ACTIONS(1994), - [aux_sym_cmd_identifier_token4] = ACTIONS(1994), - [aux_sym_cmd_identifier_token5] = ACTIONS(1994), - [aux_sym_cmd_identifier_token6] = ACTIONS(1994), - [aux_sym_cmd_identifier_token7] = ACTIONS(1994), - [aux_sym_cmd_identifier_token8] = ACTIONS(1992), - [aux_sym_cmd_identifier_token9] = ACTIONS(1992), - [aux_sym_cmd_identifier_token10] = ACTIONS(1994), - [aux_sym_cmd_identifier_token11] = ACTIONS(1994), - [aux_sym_cmd_identifier_token12] = ACTIONS(1992), - [aux_sym_cmd_identifier_token13] = ACTIONS(1992), - [aux_sym_cmd_identifier_token14] = ACTIONS(1992), - [aux_sym_cmd_identifier_token15] = ACTIONS(1992), - [aux_sym_cmd_identifier_token16] = ACTIONS(1994), - [aux_sym_cmd_identifier_token17] = ACTIONS(1994), - [aux_sym_cmd_identifier_token18] = ACTIONS(1994), - [aux_sym_cmd_identifier_token19] = ACTIONS(1994), - [aux_sym_cmd_identifier_token20] = ACTIONS(1994), - [aux_sym_cmd_identifier_token21] = ACTIONS(1994), - [aux_sym_cmd_identifier_token22] = ACTIONS(1994), - [aux_sym_cmd_identifier_token23] = ACTIONS(1994), - [aux_sym_cmd_identifier_token24] = ACTIONS(1994), - [aux_sym_cmd_identifier_token25] = ACTIONS(1994), - [aux_sym_cmd_identifier_token26] = ACTIONS(1994), - [aux_sym_cmd_identifier_token27] = ACTIONS(1994), - [aux_sym_cmd_identifier_token28] = ACTIONS(1994), - [aux_sym_cmd_identifier_token29] = ACTIONS(1994), - [aux_sym_cmd_identifier_token30] = ACTIONS(1994), - [aux_sym_cmd_identifier_token31] = ACTIONS(1994), - [aux_sym_cmd_identifier_token32] = ACTIONS(1994), - [aux_sym_cmd_identifier_token33] = ACTIONS(1994), - [aux_sym_cmd_identifier_token34] = ACTIONS(1992), - [aux_sym_cmd_identifier_token35] = ACTIONS(1994), - [aux_sym_cmd_identifier_token36] = ACTIONS(1994), - [aux_sym_cmd_identifier_token37] = ACTIONS(1994), - [aux_sym_cmd_identifier_token38] = ACTIONS(1992), - [aux_sym_cmd_identifier_token39] = ACTIONS(1994), - [aux_sym_cmd_identifier_token40] = ACTIONS(1994), - [anon_sym_def] = ACTIONS(1992), - [anon_sym_export_DASHenv] = ACTIONS(1992), - [anon_sym_extern] = ACTIONS(1992), - [anon_sym_module] = ACTIONS(1992), - [anon_sym_use] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1994), - [anon_sym_DOLLAR] = ACTIONS(1994), - [anon_sym_error] = ACTIONS(1992), - [anon_sym_DASH2] = ACTIONS(1992), - [anon_sym_break] = ACTIONS(1992), - [anon_sym_continue] = ACTIONS(1992), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_in2] = ACTIONS(1992), - [anon_sym_loop] = ACTIONS(1992), - [anon_sym_make] = ACTIONS(1992), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_do] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(1992), - [anon_sym_match] = ACTIONS(1992), - [anon_sym_RBRACE] = ACTIONS(1994), - [anon_sym_try] = ACTIONS(1992), - [anon_sym_catch] = ACTIONS(1992), - [anon_sym_return] = ACTIONS(1992), - [anon_sym_source] = ACTIONS(1992), - [anon_sym_source_DASHenv] = ACTIONS(1992), - [anon_sym_register] = ACTIONS(1992), - [anon_sym_hide] = ACTIONS(1992), - [anon_sym_hide_DASHenv] = ACTIONS(1992), - [anon_sym_overlay] = ACTIONS(1992), - [anon_sym_as] = ACTIONS(1992), - [anon_sym_PLUS2] = ACTIONS(1992), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1994), - [anon_sym_DOT] = ACTIONS(2110), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1994), - [aux_sym__val_number_decimal_token1] = ACTIONS(1992), - [aux_sym__val_number_decimal_token2] = ACTIONS(1994), - [aux_sym__val_number_decimal_token3] = ACTIONS(1994), - [aux_sym__val_number_decimal_token4] = ACTIONS(1994), - [aux_sym__val_number_token1] = ACTIONS(1994), - [aux_sym__val_number_token2] = ACTIONS(1994), - [aux_sym__val_number_token3] = ACTIONS(1994), - [aux_sym__val_number_token4] = ACTIONS(1992), - [aux_sym__val_number_token5] = ACTIONS(1992), - [aux_sym__val_number_token6] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1994), - [sym__str_single_quotes] = ACTIONS(1994), - [sym__str_back_ticks] = ACTIONS(1994), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1994), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1994), + [sym_raw_string_begin] = ACTIONS(2175), }, - [483] = { - [sym_cell_path] = STATE(739), - [sym_path] = STATE(689), - [sym_comment] = STATE(483), - [aux_sym_cell_path_repeat1] = STATE(522), - [anon_sym_export] = ACTIONS(1996), - [anon_sym_alias] = ACTIONS(1996), - [anon_sym_let] = ACTIONS(1996), - [anon_sym_let_DASHenv] = ACTIONS(1996), - [anon_sym_mut] = ACTIONS(1996), - [anon_sym_const] = ACTIONS(1996), - [aux_sym_cmd_identifier_token1] = ACTIONS(1996), - [aux_sym_cmd_identifier_token2] = ACTIONS(1998), - [aux_sym_cmd_identifier_token3] = ACTIONS(1998), - [aux_sym_cmd_identifier_token4] = ACTIONS(1998), - [aux_sym_cmd_identifier_token5] = ACTIONS(1998), - [aux_sym_cmd_identifier_token6] = ACTIONS(1998), - [aux_sym_cmd_identifier_token7] = ACTIONS(1998), - [aux_sym_cmd_identifier_token8] = ACTIONS(1996), - [aux_sym_cmd_identifier_token9] = ACTIONS(1996), - [aux_sym_cmd_identifier_token10] = ACTIONS(1998), - [aux_sym_cmd_identifier_token11] = ACTIONS(1998), - [aux_sym_cmd_identifier_token12] = ACTIONS(1996), - [aux_sym_cmd_identifier_token13] = ACTIONS(1996), - [aux_sym_cmd_identifier_token14] = ACTIONS(1996), - [aux_sym_cmd_identifier_token15] = ACTIONS(1996), - [aux_sym_cmd_identifier_token16] = ACTIONS(1998), - [aux_sym_cmd_identifier_token17] = ACTIONS(1998), - [aux_sym_cmd_identifier_token18] = ACTIONS(1998), - [aux_sym_cmd_identifier_token19] = ACTIONS(1998), - [aux_sym_cmd_identifier_token20] = ACTIONS(1998), - [aux_sym_cmd_identifier_token21] = ACTIONS(1998), - [aux_sym_cmd_identifier_token22] = ACTIONS(1998), - [aux_sym_cmd_identifier_token23] = ACTIONS(1998), - [aux_sym_cmd_identifier_token24] = ACTIONS(1998), - [aux_sym_cmd_identifier_token25] = ACTIONS(1998), - [aux_sym_cmd_identifier_token26] = ACTIONS(1998), - [aux_sym_cmd_identifier_token27] = ACTIONS(1998), - [aux_sym_cmd_identifier_token28] = ACTIONS(1998), - [aux_sym_cmd_identifier_token29] = ACTIONS(1998), - [aux_sym_cmd_identifier_token30] = ACTIONS(1998), - [aux_sym_cmd_identifier_token31] = ACTIONS(1998), - [aux_sym_cmd_identifier_token32] = ACTIONS(1998), - [aux_sym_cmd_identifier_token33] = ACTIONS(1998), - [aux_sym_cmd_identifier_token34] = ACTIONS(1996), - [aux_sym_cmd_identifier_token35] = ACTIONS(1998), - [aux_sym_cmd_identifier_token36] = ACTIONS(1998), - [aux_sym_cmd_identifier_token37] = ACTIONS(1998), - [aux_sym_cmd_identifier_token38] = ACTIONS(1996), - [aux_sym_cmd_identifier_token39] = ACTIONS(1998), - [aux_sym_cmd_identifier_token40] = ACTIONS(1998), - [anon_sym_def] = ACTIONS(1996), - [anon_sym_export_DASHenv] = ACTIONS(1996), - [anon_sym_extern] = ACTIONS(1996), - [anon_sym_module] = ACTIONS(1996), - [anon_sym_use] = ACTIONS(1996), - [anon_sym_LPAREN] = ACTIONS(1998), - [anon_sym_DOLLAR] = ACTIONS(1998), - [anon_sym_error] = ACTIONS(1996), - [anon_sym_DASH2] = ACTIONS(1996), - [anon_sym_break] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(1996), - [anon_sym_for] = ACTIONS(1996), - [anon_sym_in2] = ACTIONS(1996), - [anon_sym_loop] = ACTIONS(1996), - [anon_sym_make] = ACTIONS(1996), - [anon_sym_while] = ACTIONS(1996), - [anon_sym_do] = ACTIONS(1996), - [anon_sym_if] = ACTIONS(1996), - [anon_sym_else] = ACTIONS(1996), - [anon_sym_match] = ACTIONS(1996), - [anon_sym_RBRACE] = ACTIONS(1998), - [anon_sym_try] = ACTIONS(1996), - [anon_sym_catch] = ACTIONS(1996), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_source] = ACTIONS(1996), - [anon_sym_source_DASHenv] = ACTIONS(1996), - [anon_sym_register] = ACTIONS(1996), - [anon_sym_hide] = ACTIONS(1996), - [anon_sym_hide_DASHenv] = ACTIONS(1996), - [anon_sym_overlay] = ACTIONS(1996), - [anon_sym_as] = ACTIONS(1996), - [anon_sym_PLUS2] = ACTIONS(1996), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1998), - [anon_sym_DOT] = ACTIONS(2110), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1998), - [aux_sym__val_number_decimal_token1] = ACTIONS(1996), - [aux_sym__val_number_decimal_token2] = ACTIONS(1998), - [aux_sym__val_number_decimal_token3] = ACTIONS(1998), - [aux_sym__val_number_decimal_token4] = ACTIONS(1998), - [aux_sym__val_number_token1] = ACTIONS(1998), - [aux_sym__val_number_token2] = ACTIONS(1998), - [aux_sym__val_number_token3] = ACTIONS(1998), - [aux_sym__val_number_token4] = ACTIONS(1996), - [aux_sym__val_number_token5] = ACTIONS(1996), - [aux_sym__val_number_token6] = ACTIONS(1996), - [anon_sym_DQUOTE] = ACTIONS(1998), - [sym__str_single_quotes] = ACTIONS(1998), - [sym__str_back_ticks] = ACTIONS(1998), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1998), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1998), + [503] = { + [sym_cell_path] = STATE(720), + [sym_path] = STATE(623), + [sym_comment] = STATE(503), + [aux_sym_cell_path_repeat1] = STATE(532), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_alias] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_let_DASHenv] = ACTIONS(1859), + [anon_sym_mut] = ACTIONS(1859), + [anon_sym_const] = ACTIONS(1859), + [aux_sym_cmd_identifier_token1] = ACTIONS(1859), + [aux_sym_cmd_identifier_token2] = ACTIONS(1861), + [aux_sym_cmd_identifier_token3] = ACTIONS(1861), + [aux_sym_cmd_identifier_token4] = ACTIONS(1861), + [aux_sym_cmd_identifier_token5] = ACTIONS(1861), + [aux_sym_cmd_identifier_token6] = ACTIONS(1861), + [aux_sym_cmd_identifier_token7] = ACTIONS(1861), + [aux_sym_cmd_identifier_token8] = ACTIONS(1859), + [aux_sym_cmd_identifier_token9] = ACTIONS(1859), + [aux_sym_cmd_identifier_token10] = ACTIONS(1861), + [aux_sym_cmd_identifier_token11] = ACTIONS(1861), + [aux_sym_cmd_identifier_token12] = ACTIONS(1859), + [aux_sym_cmd_identifier_token13] = ACTIONS(1859), + [aux_sym_cmd_identifier_token14] = ACTIONS(1859), + [aux_sym_cmd_identifier_token15] = ACTIONS(1859), + [aux_sym_cmd_identifier_token16] = ACTIONS(1861), + [aux_sym_cmd_identifier_token17] = ACTIONS(1861), + [aux_sym_cmd_identifier_token18] = ACTIONS(1861), + [aux_sym_cmd_identifier_token19] = ACTIONS(1861), + [aux_sym_cmd_identifier_token20] = ACTIONS(1861), + [aux_sym_cmd_identifier_token21] = ACTIONS(1861), + [aux_sym_cmd_identifier_token22] = ACTIONS(1861), + [aux_sym_cmd_identifier_token23] = ACTIONS(1861), + [aux_sym_cmd_identifier_token24] = ACTIONS(1861), + [aux_sym_cmd_identifier_token25] = ACTIONS(1861), + [aux_sym_cmd_identifier_token26] = ACTIONS(1861), + [aux_sym_cmd_identifier_token27] = ACTIONS(1861), + [aux_sym_cmd_identifier_token28] = ACTIONS(1861), + [aux_sym_cmd_identifier_token29] = ACTIONS(1861), + [aux_sym_cmd_identifier_token30] = ACTIONS(1861), + [aux_sym_cmd_identifier_token31] = ACTIONS(1861), + [aux_sym_cmd_identifier_token32] = ACTIONS(1861), + [aux_sym_cmd_identifier_token33] = ACTIONS(1861), + [aux_sym_cmd_identifier_token34] = ACTIONS(1859), + [aux_sym_cmd_identifier_token35] = ACTIONS(1861), + [aux_sym_cmd_identifier_token36] = ACTIONS(1861), + [aux_sym_cmd_identifier_token37] = ACTIONS(1861), + [aux_sym_cmd_identifier_token38] = ACTIONS(1859), + [aux_sym_cmd_identifier_token39] = ACTIONS(1861), + [aux_sym_cmd_identifier_token40] = ACTIONS(1861), + [anon_sym_def] = ACTIONS(1859), + [anon_sym_export_DASHenv] = ACTIONS(1859), + [anon_sym_extern] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_use] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1861), + [anon_sym_DOLLAR] = ACTIONS(1861), + [anon_sym_error] = ACTIONS(1859), + [anon_sym_DASH2] = ACTIONS(1859), + [anon_sym_break] = ACTIONS(1859), + [anon_sym_continue] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_in2] = ACTIONS(1859), + [anon_sym_loop] = ACTIONS(1859), + [anon_sym_make] = ACTIONS(1859), + [anon_sym_while] = ACTIONS(1859), + [anon_sym_do] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1859), + [anon_sym_else] = ACTIONS(1859), + [anon_sym_match] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(1861), + [anon_sym_try] = ACTIONS(1859), + [anon_sym_catch] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(1859), + [anon_sym_source] = ACTIONS(1859), + [anon_sym_source_DASHenv] = ACTIONS(1859), + [anon_sym_register] = ACTIONS(1859), + [anon_sym_hide] = ACTIONS(1859), + [anon_sym_hide_DASHenv] = ACTIONS(1859), + [anon_sym_overlay] = ACTIONS(1859), + [anon_sym_as] = ACTIONS(1859), + [anon_sym_PLUS2] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1861), + [anon_sym_DOT] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1861), + [aux_sym__val_number_decimal_token1] = ACTIONS(1859), + [aux_sym__val_number_decimal_token2] = ACTIONS(1861), + [aux_sym__val_number_decimal_token3] = ACTIONS(1861), + [aux_sym__val_number_decimal_token4] = ACTIONS(1861), + [aux_sym__val_number_token1] = ACTIONS(1861), + [aux_sym__val_number_token2] = ACTIONS(1861), + [aux_sym__val_number_token3] = ACTIONS(1861), + [aux_sym__val_number_token4] = ACTIONS(1859), + [aux_sym__val_number_token5] = ACTIONS(1859), + [aux_sym__val_number_token6] = ACTIONS(1859), + [anon_sym_DQUOTE] = ACTIONS(1861), + [sym__str_single_quotes] = ACTIONS(1861), + [sym__str_back_ticks] = ACTIONS(1861), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1861), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1861), }, - [484] = { - [sym_cell_path] = STATE(742), - [sym_path] = STATE(689), - [sym_comment] = STATE(484), - [aux_sym_cell_path_repeat1] = STATE(522), - [anon_sym_export] = ACTIONS(2000), - [anon_sym_alias] = ACTIONS(2000), - [anon_sym_let] = ACTIONS(2000), - [anon_sym_let_DASHenv] = ACTIONS(2000), - [anon_sym_mut] = ACTIONS(2000), - [anon_sym_const] = ACTIONS(2000), - [aux_sym_cmd_identifier_token1] = ACTIONS(2000), - [aux_sym_cmd_identifier_token2] = ACTIONS(2002), - [aux_sym_cmd_identifier_token3] = ACTIONS(2002), - [aux_sym_cmd_identifier_token4] = ACTIONS(2002), - [aux_sym_cmd_identifier_token5] = ACTIONS(2002), - [aux_sym_cmd_identifier_token6] = ACTIONS(2002), - [aux_sym_cmd_identifier_token7] = ACTIONS(2002), - [aux_sym_cmd_identifier_token8] = ACTIONS(2000), - [aux_sym_cmd_identifier_token9] = ACTIONS(2000), - [aux_sym_cmd_identifier_token10] = ACTIONS(2002), - [aux_sym_cmd_identifier_token11] = ACTIONS(2002), - [aux_sym_cmd_identifier_token12] = ACTIONS(2000), - [aux_sym_cmd_identifier_token13] = ACTIONS(2000), - [aux_sym_cmd_identifier_token14] = ACTIONS(2000), - [aux_sym_cmd_identifier_token15] = ACTIONS(2000), - [aux_sym_cmd_identifier_token16] = ACTIONS(2002), - [aux_sym_cmd_identifier_token17] = ACTIONS(2002), - [aux_sym_cmd_identifier_token18] = ACTIONS(2002), - [aux_sym_cmd_identifier_token19] = ACTIONS(2002), - [aux_sym_cmd_identifier_token20] = ACTIONS(2002), - [aux_sym_cmd_identifier_token21] = ACTIONS(2002), - [aux_sym_cmd_identifier_token22] = ACTIONS(2002), - [aux_sym_cmd_identifier_token23] = ACTIONS(2002), - [aux_sym_cmd_identifier_token24] = ACTIONS(2002), - [aux_sym_cmd_identifier_token25] = ACTIONS(2002), - [aux_sym_cmd_identifier_token26] = ACTIONS(2002), - [aux_sym_cmd_identifier_token27] = ACTIONS(2002), - [aux_sym_cmd_identifier_token28] = ACTIONS(2002), - [aux_sym_cmd_identifier_token29] = ACTIONS(2002), - [aux_sym_cmd_identifier_token30] = ACTIONS(2002), - [aux_sym_cmd_identifier_token31] = ACTIONS(2002), - [aux_sym_cmd_identifier_token32] = ACTIONS(2002), - [aux_sym_cmd_identifier_token33] = ACTIONS(2002), - [aux_sym_cmd_identifier_token34] = ACTIONS(2000), - [aux_sym_cmd_identifier_token35] = ACTIONS(2002), - [aux_sym_cmd_identifier_token36] = ACTIONS(2002), - [aux_sym_cmd_identifier_token37] = ACTIONS(2002), - [aux_sym_cmd_identifier_token38] = ACTIONS(2000), - [aux_sym_cmd_identifier_token39] = ACTIONS(2002), - [aux_sym_cmd_identifier_token40] = ACTIONS(2002), - [anon_sym_def] = ACTIONS(2000), - [anon_sym_export_DASHenv] = ACTIONS(2000), - [anon_sym_extern] = ACTIONS(2000), - [anon_sym_module] = ACTIONS(2000), - [anon_sym_use] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_DOLLAR] = ACTIONS(2002), - [anon_sym_error] = ACTIONS(2000), - [anon_sym_DASH2] = ACTIONS(2000), - [anon_sym_break] = ACTIONS(2000), - [anon_sym_continue] = ACTIONS(2000), - [anon_sym_for] = ACTIONS(2000), - [anon_sym_in2] = ACTIONS(2000), - [anon_sym_loop] = ACTIONS(2000), - [anon_sym_make] = ACTIONS(2000), - [anon_sym_while] = ACTIONS(2000), - [anon_sym_do] = ACTIONS(2000), - [anon_sym_if] = ACTIONS(2000), - [anon_sym_else] = ACTIONS(2000), - [anon_sym_match] = ACTIONS(2000), - [anon_sym_RBRACE] = ACTIONS(2002), - [anon_sym_try] = ACTIONS(2000), - [anon_sym_catch] = ACTIONS(2000), - [anon_sym_return] = ACTIONS(2000), - [anon_sym_source] = ACTIONS(2000), - [anon_sym_source_DASHenv] = ACTIONS(2000), - [anon_sym_register] = ACTIONS(2000), - [anon_sym_hide] = ACTIONS(2000), - [anon_sym_hide_DASHenv] = ACTIONS(2000), - [anon_sym_overlay] = ACTIONS(2000), - [anon_sym_as] = ACTIONS(2000), - [anon_sym_PLUS2] = ACTIONS(2000), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2002), - [anon_sym_DOT] = ACTIONS(2110), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2002), - [aux_sym__val_number_decimal_token1] = ACTIONS(2000), - [aux_sym__val_number_decimal_token2] = ACTIONS(2002), - [aux_sym__val_number_decimal_token3] = ACTIONS(2002), - [aux_sym__val_number_decimal_token4] = ACTIONS(2002), - [aux_sym__val_number_token1] = ACTIONS(2002), - [aux_sym__val_number_token2] = ACTIONS(2002), - [aux_sym__val_number_token3] = ACTIONS(2002), - [aux_sym__val_number_token4] = ACTIONS(2000), - [aux_sym__val_number_token5] = ACTIONS(2000), - [aux_sym__val_number_token6] = ACTIONS(2000), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym__str_single_quotes] = ACTIONS(2002), - [sym__str_back_ticks] = ACTIONS(2002), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2002), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2002), + [504] = { + [sym_cell_path] = STATE(723), + [sym_path] = STATE(623), + [sym_comment] = STATE(504), + [aux_sym_cell_path_repeat1] = STATE(532), + [anon_sym_export] = ACTIONS(1863), + [anon_sym_alias] = ACTIONS(1863), + [anon_sym_let] = ACTIONS(1863), + [anon_sym_let_DASHenv] = ACTIONS(1863), + [anon_sym_mut] = ACTIONS(1863), + [anon_sym_const] = ACTIONS(1863), + [aux_sym_cmd_identifier_token1] = ACTIONS(1863), + [aux_sym_cmd_identifier_token2] = ACTIONS(1865), + [aux_sym_cmd_identifier_token3] = ACTIONS(1865), + [aux_sym_cmd_identifier_token4] = ACTIONS(1865), + [aux_sym_cmd_identifier_token5] = ACTIONS(1865), + [aux_sym_cmd_identifier_token6] = ACTIONS(1865), + [aux_sym_cmd_identifier_token7] = ACTIONS(1865), + [aux_sym_cmd_identifier_token8] = ACTIONS(1863), + [aux_sym_cmd_identifier_token9] = ACTIONS(1863), + [aux_sym_cmd_identifier_token10] = ACTIONS(1865), + [aux_sym_cmd_identifier_token11] = ACTIONS(1865), + [aux_sym_cmd_identifier_token12] = ACTIONS(1863), + [aux_sym_cmd_identifier_token13] = ACTIONS(1863), + [aux_sym_cmd_identifier_token14] = ACTIONS(1863), + [aux_sym_cmd_identifier_token15] = ACTIONS(1863), + [aux_sym_cmd_identifier_token16] = ACTIONS(1865), + [aux_sym_cmd_identifier_token17] = ACTIONS(1865), + [aux_sym_cmd_identifier_token18] = ACTIONS(1865), + [aux_sym_cmd_identifier_token19] = ACTIONS(1865), + [aux_sym_cmd_identifier_token20] = ACTIONS(1865), + [aux_sym_cmd_identifier_token21] = ACTIONS(1865), + [aux_sym_cmd_identifier_token22] = ACTIONS(1865), + [aux_sym_cmd_identifier_token23] = ACTIONS(1865), + [aux_sym_cmd_identifier_token24] = ACTIONS(1865), + [aux_sym_cmd_identifier_token25] = ACTIONS(1865), + [aux_sym_cmd_identifier_token26] = ACTIONS(1865), + [aux_sym_cmd_identifier_token27] = ACTIONS(1865), + [aux_sym_cmd_identifier_token28] = ACTIONS(1865), + [aux_sym_cmd_identifier_token29] = ACTIONS(1865), + [aux_sym_cmd_identifier_token30] = ACTIONS(1865), + [aux_sym_cmd_identifier_token31] = ACTIONS(1865), + [aux_sym_cmd_identifier_token32] = ACTIONS(1865), + [aux_sym_cmd_identifier_token33] = ACTIONS(1865), + [aux_sym_cmd_identifier_token34] = ACTIONS(1863), + [aux_sym_cmd_identifier_token35] = ACTIONS(1865), + [aux_sym_cmd_identifier_token36] = ACTIONS(1865), + [aux_sym_cmd_identifier_token37] = ACTIONS(1865), + [aux_sym_cmd_identifier_token38] = ACTIONS(1863), + [aux_sym_cmd_identifier_token39] = ACTIONS(1865), + [aux_sym_cmd_identifier_token40] = ACTIONS(1865), + [anon_sym_def] = ACTIONS(1863), + [anon_sym_export_DASHenv] = ACTIONS(1863), + [anon_sym_extern] = ACTIONS(1863), + [anon_sym_module] = ACTIONS(1863), + [anon_sym_use] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1865), + [anon_sym_DOLLAR] = ACTIONS(1865), + [anon_sym_error] = ACTIONS(1863), + [anon_sym_DASH2] = ACTIONS(1863), + [anon_sym_break] = ACTIONS(1863), + [anon_sym_continue] = ACTIONS(1863), + [anon_sym_for] = ACTIONS(1863), + [anon_sym_in2] = ACTIONS(1863), + [anon_sym_loop] = ACTIONS(1863), + [anon_sym_make] = ACTIONS(1863), + [anon_sym_while] = ACTIONS(1863), + [anon_sym_do] = ACTIONS(1863), + [anon_sym_if] = ACTIONS(1863), + [anon_sym_else] = ACTIONS(1863), + [anon_sym_match] = ACTIONS(1863), + [anon_sym_RBRACE] = ACTIONS(1865), + [anon_sym_try] = ACTIONS(1863), + [anon_sym_catch] = ACTIONS(1863), + [anon_sym_return] = ACTIONS(1863), + [anon_sym_source] = ACTIONS(1863), + [anon_sym_source_DASHenv] = ACTIONS(1863), + [anon_sym_register] = ACTIONS(1863), + [anon_sym_hide] = ACTIONS(1863), + [anon_sym_hide_DASHenv] = ACTIONS(1863), + [anon_sym_overlay] = ACTIONS(1863), + [anon_sym_as] = ACTIONS(1863), + [anon_sym_PLUS2] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1865), + [anon_sym_DOT] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1865), + [aux_sym__val_number_decimal_token1] = ACTIONS(1863), + [aux_sym__val_number_decimal_token2] = ACTIONS(1865), + [aux_sym__val_number_decimal_token3] = ACTIONS(1865), + [aux_sym__val_number_decimal_token4] = ACTIONS(1865), + [aux_sym__val_number_token1] = ACTIONS(1865), + [aux_sym__val_number_token2] = ACTIONS(1865), + [aux_sym__val_number_token3] = ACTIONS(1865), + [aux_sym__val_number_token4] = ACTIONS(1863), + [aux_sym__val_number_token5] = ACTIONS(1863), + [aux_sym__val_number_token6] = ACTIONS(1863), + [anon_sym_DQUOTE] = ACTIONS(1865), + [sym__str_single_quotes] = ACTIONS(1865), + [sym__str_back_ticks] = ACTIONS(1865), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1865), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1865), }, - [485] = { - [sym_comment] = STATE(485), + [505] = { + [sym_comment] = STATE(505), [anon_sym_export] = ACTIONS(1739), [anon_sym_alias] = ACTIONS(1739), [anon_sym_let] = ACTIONS(1739), @@ -128243,8 +130622,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN2] = ACTIONS(1741), [anon_sym_PLUS2] = ACTIONS(1739), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1741), - [aux_sym__immediate_decimal_token1] = ACTIONS(2141), - [aux_sym__immediate_decimal_token2] = ACTIONS(2143), + [aux_sym__immediate_decimal_token1] = ACTIONS(2177), + [aux_sym__immediate_decimal_token2] = ACTIONS(2179), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1741), [aux_sym__val_number_decimal_token1] = ACTIONS(1739), [aux_sym__val_number_decimal_token2] = ACTIONS(1741), @@ -128264,2786 +130643,726 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1741), }, - [486] = { - [sym_cell_path] = STATE(746), - [sym_path] = STATE(689), - [sym_comment] = STATE(486), - [aux_sym_cell_path_repeat1] = STATE(522), - [anon_sym_export] = ACTIONS(2004), - [anon_sym_alias] = ACTIONS(2004), - [anon_sym_let] = ACTIONS(2004), - [anon_sym_let_DASHenv] = ACTIONS(2004), - [anon_sym_mut] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2004), - [aux_sym_cmd_identifier_token1] = ACTIONS(2004), - [aux_sym_cmd_identifier_token2] = ACTIONS(2006), - [aux_sym_cmd_identifier_token3] = ACTIONS(2006), - [aux_sym_cmd_identifier_token4] = ACTIONS(2006), - [aux_sym_cmd_identifier_token5] = ACTIONS(2006), - [aux_sym_cmd_identifier_token6] = ACTIONS(2006), - [aux_sym_cmd_identifier_token7] = ACTIONS(2006), - [aux_sym_cmd_identifier_token8] = ACTIONS(2004), - [aux_sym_cmd_identifier_token9] = ACTIONS(2004), - [aux_sym_cmd_identifier_token10] = ACTIONS(2006), - [aux_sym_cmd_identifier_token11] = ACTIONS(2006), - [aux_sym_cmd_identifier_token12] = ACTIONS(2004), - [aux_sym_cmd_identifier_token13] = ACTIONS(2004), - [aux_sym_cmd_identifier_token14] = ACTIONS(2004), - [aux_sym_cmd_identifier_token15] = ACTIONS(2004), - [aux_sym_cmd_identifier_token16] = ACTIONS(2006), - [aux_sym_cmd_identifier_token17] = ACTIONS(2006), - [aux_sym_cmd_identifier_token18] = ACTIONS(2006), - [aux_sym_cmd_identifier_token19] = ACTIONS(2006), - [aux_sym_cmd_identifier_token20] = ACTIONS(2006), - [aux_sym_cmd_identifier_token21] = ACTIONS(2006), - [aux_sym_cmd_identifier_token22] = ACTIONS(2006), - [aux_sym_cmd_identifier_token23] = ACTIONS(2006), - [aux_sym_cmd_identifier_token24] = ACTIONS(2006), - [aux_sym_cmd_identifier_token25] = ACTIONS(2006), - [aux_sym_cmd_identifier_token26] = ACTIONS(2006), - [aux_sym_cmd_identifier_token27] = ACTIONS(2006), - [aux_sym_cmd_identifier_token28] = ACTIONS(2006), - [aux_sym_cmd_identifier_token29] = ACTIONS(2006), - [aux_sym_cmd_identifier_token30] = ACTIONS(2006), - [aux_sym_cmd_identifier_token31] = ACTIONS(2006), - [aux_sym_cmd_identifier_token32] = ACTIONS(2006), - [aux_sym_cmd_identifier_token33] = ACTIONS(2006), - [aux_sym_cmd_identifier_token34] = ACTIONS(2004), - [aux_sym_cmd_identifier_token35] = ACTIONS(2006), - [aux_sym_cmd_identifier_token36] = ACTIONS(2006), - [aux_sym_cmd_identifier_token37] = ACTIONS(2006), - [aux_sym_cmd_identifier_token38] = ACTIONS(2004), - [aux_sym_cmd_identifier_token39] = ACTIONS(2006), - [aux_sym_cmd_identifier_token40] = ACTIONS(2006), - [anon_sym_def] = ACTIONS(2004), - [anon_sym_export_DASHenv] = ACTIONS(2004), - [anon_sym_extern] = ACTIONS(2004), - [anon_sym_module] = ACTIONS(2004), - [anon_sym_use] = ACTIONS(2004), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_DOLLAR] = ACTIONS(2006), - [anon_sym_error] = ACTIONS(2004), - [anon_sym_DASH2] = ACTIONS(2004), - [anon_sym_break] = ACTIONS(2004), - [anon_sym_continue] = ACTIONS(2004), - [anon_sym_for] = ACTIONS(2004), - [anon_sym_in2] = ACTIONS(2004), - [anon_sym_loop] = ACTIONS(2004), - [anon_sym_make] = ACTIONS(2004), - [anon_sym_while] = ACTIONS(2004), - [anon_sym_do] = ACTIONS(2004), - [anon_sym_if] = ACTIONS(2004), - [anon_sym_else] = ACTIONS(2004), - [anon_sym_match] = ACTIONS(2004), - [anon_sym_RBRACE] = ACTIONS(2006), - [anon_sym_try] = ACTIONS(2004), - [anon_sym_catch] = ACTIONS(2004), - [anon_sym_return] = ACTIONS(2004), - [anon_sym_source] = ACTIONS(2004), - [anon_sym_source_DASHenv] = ACTIONS(2004), - [anon_sym_register] = ACTIONS(2004), - [anon_sym_hide] = ACTIONS(2004), - [anon_sym_hide_DASHenv] = ACTIONS(2004), - [anon_sym_overlay] = ACTIONS(2004), - [anon_sym_as] = ACTIONS(2004), - [anon_sym_PLUS2] = ACTIONS(2004), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2006), - [anon_sym_DOT] = ACTIONS(2110), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2006), - [aux_sym__val_number_decimal_token1] = ACTIONS(2004), - [aux_sym__val_number_decimal_token2] = ACTIONS(2006), - [aux_sym__val_number_decimal_token3] = ACTIONS(2006), - [aux_sym__val_number_decimal_token4] = ACTIONS(2006), - [aux_sym__val_number_token1] = ACTIONS(2006), - [aux_sym__val_number_token2] = ACTIONS(2006), - [aux_sym__val_number_token3] = ACTIONS(2006), - [aux_sym__val_number_token4] = ACTIONS(2004), - [aux_sym__val_number_token5] = ACTIONS(2004), - [aux_sym__val_number_token6] = ACTIONS(2004), - [anon_sym_DQUOTE] = ACTIONS(2006), - [sym__str_single_quotes] = ACTIONS(2006), - [sym__str_back_ticks] = ACTIONS(2006), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2006), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2006), + [506] = { + [sym_cell_path] = STATE(726), + [sym_path] = STATE(623), + [sym_comment] = STATE(506), + [aux_sym_cell_path_repeat1] = STATE(532), + [anon_sym_export] = ACTIONS(1867), + [anon_sym_alias] = ACTIONS(1867), + [anon_sym_let] = ACTIONS(1867), + [anon_sym_let_DASHenv] = ACTIONS(1867), + [anon_sym_mut] = ACTIONS(1867), + [anon_sym_const] = ACTIONS(1867), + [aux_sym_cmd_identifier_token1] = ACTIONS(1867), + [aux_sym_cmd_identifier_token2] = ACTIONS(1869), + [aux_sym_cmd_identifier_token3] = ACTIONS(1869), + [aux_sym_cmd_identifier_token4] = ACTIONS(1869), + [aux_sym_cmd_identifier_token5] = ACTIONS(1869), + [aux_sym_cmd_identifier_token6] = ACTIONS(1869), + [aux_sym_cmd_identifier_token7] = ACTIONS(1869), + [aux_sym_cmd_identifier_token8] = ACTIONS(1867), + [aux_sym_cmd_identifier_token9] = ACTIONS(1867), + [aux_sym_cmd_identifier_token10] = ACTIONS(1869), + [aux_sym_cmd_identifier_token11] = ACTIONS(1869), + [aux_sym_cmd_identifier_token12] = ACTIONS(1867), + [aux_sym_cmd_identifier_token13] = ACTIONS(1867), + [aux_sym_cmd_identifier_token14] = ACTIONS(1867), + [aux_sym_cmd_identifier_token15] = ACTIONS(1867), + [aux_sym_cmd_identifier_token16] = ACTIONS(1869), + [aux_sym_cmd_identifier_token17] = ACTIONS(1869), + [aux_sym_cmd_identifier_token18] = ACTIONS(1869), + [aux_sym_cmd_identifier_token19] = ACTIONS(1869), + [aux_sym_cmd_identifier_token20] = ACTIONS(1869), + [aux_sym_cmd_identifier_token21] = ACTIONS(1869), + [aux_sym_cmd_identifier_token22] = ACTIONS(1869), + [aux_sym_cmd_identifier_token23] = ACTIONS(1869), + [aux_sym_cmd_identifier_token24] = ACTIONS(1869), + [aux_sym_cmd_identifier_token25] = ACTIONS(1869), + [aux_sym_cmd_identifier_token26] = ACTIONS(1869), + [aux_sym_cmd_identifier_token27] = ACTIONS(1869), + [aux_sym_cmd_identifier_token28] = ACTIONS(1869), + [aux_sym_cmd_identifier_token29] = ACTIONS(1869), + [aux_sym_cmd_identifier_token30] = ACTIONS(1869), + [aux_sym_cmd_identifier_token31] = ACTIONS(1869), + [aux_sym_cmd_identifier_token32] = ACTIONS(1869), + [aux_sym_cmd_identifier_token33] = ACTIONS(1869), + [aux_sym_cmd_identifier_token34] = ACTIONS(1867), + [aux_sym_cmd_identifier_token35] = ACTIONS(1869), + [aux_sym_cmd_identifier_token36] = ACTIONS(1869), + [aux_sym_cmd_identifier_token37] = ACTIONS(1869), + [aux_sym_cmd_identifier_token38] = ACTIONS(1867), + [aux_sym_cmd_identifier_token39] = ACTIONS(1869), + [aux_sym_cmd_identifier_token40] = ACTIONS(1869), + [anon_sym_def] = ACTIONS(1867), + [anon_sym_export_DASHenv] = ACTIONS(1867), + [anon_sym_extern] = ACTIONS(1867), + [anon_sym_module] = ACTIONS(1867), + [anon_sym_use] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1869), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_error] = ACTIONS(1867), + [anon_sym_DASH2] = ACTIONS(1867), + [anon_sym_break] = ACTIONS(1867), + [anon_sym_continue] = ACTIONS(1867), + [anon_sym_for] = ACTIONS(1867), + [anon_sym_in2] = ACTIONS(1867), + [anon_sym_loop] = ACTIONS(1867), + [anon_sym_make] = ACTIONS(1867), + [anon_sym_while] = ACTIONS(1867), + [anon_sym_do] = ACTIONS(1867), + [anon_sym_if] = ACTIONS(1867), + [anon_sym_else] = ACTIONS(1867), + [anon_sym_match] = ACTIONS(1867), + [anon_sym_RBRACE] = ACTIONS(1869), + [anon_sym_try] = ACTIONS(1867), + [anon_sym_catch] = ACTIONS(1867), + [anon_sym_return] = ACTIONS(1867), + [anon_sym_source] = ACTIONS(1867), + [anon_sym_source_DASHenv] = ACTIONS(1867), + [anon_sym_register] = ACTIONS(1867), + [anon_sym_hide] = ACTIONS(1867), + [anon_sym_hide_DASHenv] = ACTIONS(1867), + [anon_sym_overlay] = ACTIONS(1867), + [anon_sym_as] = ACTIONS(1867), + [anon_sym_PLUS2] = ACTIONS(1867), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1869), + [anon_sym_DOT] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1869), + [aux_sym__val_number_decimal_token1] = ACTIONS(1867), + [aux_sym__val_number_decimal_token2] = ACTIONS(1869), + [aux_sym__val_number_decimal_token3] = ACTIONS(1869), + [aux_sym__val_number_decimal_token4] = ACTIONS(1869), + [aux_sym__val_number_token1] = ACTIONS(1869), + [aux_sym__val_number_token2] = ACTIONS(1869), + [aux_sym__val_number_token3] = ACTIONS(1869), + [aux_sym__val_number_token4] = ACTIONS(1867), + [aux_sym__val_number_token5] = ACTIONS(1867), + [aux_sym__val_number_token6] = ACTIONS(1867), + [anon_sym_DQUOTE] = ACTIONS(1869), + [sym__str_single_quotes] = ACTIONS(1869), + [sym__str_back_ticks] = ACTIONS(1869), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1869), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1869), }, - [487] = { - [sym_cell_path] = STATE(725), - [sym_path] = STATE(689), - [sym_comment] = STATE(487), - [aux_sym_cell_path_repeat1] = STATE(522), - [anon_sym_export] = ACTIONS(1933), - [anon_sym_alias] = ACTIONS(1933), - [anon_sym_let] = ACTIONS(1933), - [anon_sym_let_DASHenv] = ACTIONS(1933), - [anon_sym_mut] = ACTIONS(1933), - [anon_sym_const] = ACTIONS(1933), - [aux_sym_cmd_identifier_token1] = ACTIONS(1933), - [aux_sym_cmd_identifier_token2] = ACTIONS(1935), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [aux_sym_cmd_identifier_token6] = ACTIONS(1935), - [aux_sym_cmd_identifier_token7] = ACTIONS(1935), - [aux_sym_cmd_identifier_token8] = ACTIONS(1933), - [aux_sym_cmd_identifier_token9] = ACTIONS(1933), - [aux_sym_cmd_identifier_token10] = ACTIONS(1935), - [aux_sym_cmd_identifier_token11] = ACTIONS(1935), - [aux_sym_cmd_identifier_token12] = ACTIONS(1933), - [aux_sym_cmd_identifier_token13] = ACTIONS(1933), - [aux_sym_cmd_identifier_token14] = ACTIONS(1933), - [aux_sym_cmd_identifier_token15] = ACTIONS(1933), - [aux_sym_cmd_identifier_token16] = ACTIONS(1935), - [aux_sym_cmd_identifier_token17] = ACTIONS(1935), - [aux_sym_cmd_identifier_token18] = ACTIONS(1935), - [aux_sym_cmd_identifier_token19] = ACTIONS(1935), - [aux_sym_cmd_identifier_token20] = ACTIONS(1935), - [aux_sym_cmd_identifier_token21] = ACTIONS(1935), - [aux_sym_cmd_identifier_token22] = ACTIONS(1935), - [aux_sym_cmd_identifier_token23] = ACTIONS(1935), - [aux_sym_cmd_identifier_token24] = ACTIONS(1935), - [aux_sym_cmd_identifier_token25] = ACTIONS(1935), - [aux_sym_cmd_identifier_token26] = ACTIONS(1935), - [aux_sym_cmd_identifier_token27] = ACTIONS(1935), - [aux_sym_cmd_identifier_token28] = ACTIONS(1935), - [aux_sym_cmd_identifier_token29] = ACTIONS(1935), - [aux_sym_cmd_identifier_token30] = ACTIONS(1935), - [aux_sym_cmd_identifier_token31] = ACTIONS(1935), - [aux_sym_cmd_identifier_token32] = ACTIONS(1935), - [aux_sym_cmd_identifier_token33] = ACTIONS(1935), - [aux_sym_cmd_identifier_token34] = ACTIONS(1933), - [aux_sym_cmd_identifier_token35] = ACTIONS(1935), - [aux_sym_cmd_identifier_token36] = ACTIONS(1935), - [aux_sym_cmd_identifier_token37] = ACTIONS(1935), - [aux_sym_cmd_identifier_token38] = ACTIONS(1933), - [aux_sym_cmd_identifier_token39] = ACTIONS(1935), - [aux_sym_cmd_identifier_token40] = ACTIONS(1935), - [anon_sym_def] = ACTIONS(1933), - [anon_sym_export_DASHenv] = ACTIONS(1933), - [anon_sym_extern] = ACTIONS(1933), - [anon_sym_module] = ACTIONS(1933), - [anon_sym_use] = ACTIONS(1933), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_DOLLAR] = ACTIONS(1935), - [anon_sym_error] = ACTIONS(1933), - [anon_sym_DASH2] = ACTIONS(1933), - [anon_sym_break] = ACTIONS(1933), - [anon_sym_continue] = ACTIONS(1933), - [anon_sym_for] = ACTIONS(1933), - [anon_sym_in2] = ACTIONS(1933), - [anon_sym_loop] = ACTIONS(1933), - [anon_sym_make] = ACTIONS(1933), - [anon_sym_while] = ACTIONS(1933), - [anon_sym_do] = ACTIONS(1933), - [anon_sym_if] = ACTIONS(1933), - [anon_sym_else] = ACTIONS(1933), - [anon_sym_match] = ACTIONS(1933), - [anon_sym_RBRACE] = ACTIONS(1935), - [anon_sym_try] = ACTIONS(1933), - [anon_sym_catch] = ACTIONS(1933), - [anon_sym_return] = ACTIONS(1933), - [anon_sym_source] = ACTIONS(1933), - [anon_sym_source_DASHenv] = ACTIONS(1933), - [anon_sym_register] = ACTIONS(1933), - [anon_sym_hide] = ACTIONS(1933), - [anon_sym_hide_DASHenv] = ACTIONS(1933), - [anon_sym_overlay] = ACTIONS(1933), - [anon_sym_as] = ACTIONS(1933), - [anon_sym_PLUS2] = ACTIONS(1933), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1935), - [anon_sym_DOT] = ACTIONS(2110), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1935), - [aux_sym__val_number_decimal_token1] = ACTIONS(1933), - [aux_sym__val_number_decimal_token2] = ACTIONS(1935), - [aux_sym__val_number_decimal_token3] = ACTIONS(1935), - [aux_sym__val_number_decimal_token4] = ACTIONS(1935), - [aux_sym__val_number_token1] = ACTIONS(1935), - [aux_sym__val_number_token2] = ACTIONS(1935), - [aux_sym__val_number_token3] = ACTIONS(1935), - [aux_sym__val_number_token4] = ACTIONS(1933), - [aux_sym__val_number_token5] = ACTIONS(1933), - [aux_sym__val_number_token6] = ACTIONS(1933), - [anon_sym_DQUOTE] = ACTIONS(1935), - [sym__str_single_quotes] = ACTIONS(1935), - [sym__str_back_ticks] = ACTIONS(1935), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1935), + [507] = { + [sym_comment] = STATE(507), + [anon_sym_export] = ACTIONS(1765), + [anon_sym_alias] = ACTIONS(1765), + [anon_sym_let] = ACTIONS(1765), + [anon_sym_let_DASHenv] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [aux_sym_cmd_identifier_token1] = ACTIONS(1765), + [aux_sym_cmd_identifier_token2] = ACTIONS(1767), + [aux_sym_cmd_identifier_token3] = ACTIONS(1767), + [aux_sym_cmd_identifier_token4] = ACTIONS(1767), + [aux_sym_cmd_identifier_token5] = ACTIONS(1767), + [aux_sym_cmd_identifier_token6] = ACTIONS(1767), + [aux_sym_cmd_identifier_token7] = ACTIONS(1767), + [aux_sym_cmd_identifier_token8] = ACTIONS(1765), + [aux_sym_cmd_identifier_token9] = ACTIONS(1765), + [aux_sym_cmd_identifier_token10] = ACTIONS(1767), + [aux_sym_cmd_identifier_token11] = ACTIONS(1767), + [aux_sym_cmd_identifier_token12] = ACTIONS(1765), + [aux_sym_cmd_identifier_token13] = ACTIONS(1765), + [aux_sym_cmd_identifier_token14] = ACTIONS(1765), + [aux_sym_cmd_identifier_token15] = ACTIONS(1765), + [aux_sym_cmd_identifier_token16] = ACTIONS(1767), + [aux_sym_cmd_identifier_token17] = ACTIONS(1767), + [aux_sym_cmd_identifier_token18] = ACTIONS(1767), + [aux_sym_cmd_identifier_token19] = ACTIONS(1767), + [aux_sym_cmd_identifier_token20] = ACTIONS(1767), + [aux_sym_cmd_identifier_token21] = ACTIONS(1767), + [aux_sym_cmd_identifier_token22] = ACTIONS(1767), + [aux_sym_cmd_identifier_token23] = ACTIONS(1767), + [aux_sym_cmd_identifier_token24] = ACTIONS(1767), + [aux_sym_cmd_identifier_token25] = ACTIONS(1767), + [aux_sym_cmd_identifier_token26] = ACTIONS(1767), + [aux_sym_cmd_identifier_token27] = ACTIONS(1767), + [aux_sym_cmd_identifier_token28] = ACTIONS(1767), + [aux_sym_cmd_identifier_token29] = ACTIONS(1767), + [aux_sym_cmd_identifier_token30] = ACTIONS(1767), + [aux_sym_cmd_identifier_token31] = ACTIONS(1767), + [aux_sym_cmd_identifier_token32] = ACTIONS(1767), + [aux_sym_cmd_identifier_token33] = ACTIONS(1767), + [aux_sym_cmd_identifier_token34] = ACTIONS(1765), + [aux_sym_cmd_identifier_token35] = ACTIONS(1767), + [aux_sym_cmd_identifier_token36] = ACTIONS(1767), + [aux_sym_cmd_identifier_token37] = ACTIONS(1767), + [aux_sym_cmd_identifier_token38] = ACTIONS(1765), + [aux_sym_cmd_identifier_token39] = ACTIONS(1767), + [aux_sym_cmd_identifier_token40] = ACTIONS(1767), + [anon_sym_def] = ACTIONS(1765), + [anon_sym_export_DASHenv] = ACTIONS(1765), + [anon_sym_extern] = ACTIONS(1765), + [anon_sym_module] = ACTIONS(1765), + [anon_sym_use] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1767), + [anon_sym_error] = ACTIONS(1765), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_in2] = ACTIONS(1765), + [anon_sym_loop] = ACTIONS(1765), + [anon_sym_make] = ACTIONS(1765), + [anon_sym_while] = ACTIONS(1765), + [anon_sym_do] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_else] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_try] = ACTIONS(1765), + [anon_sym_catch] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_source] = ACTIONS(1765), + [anon_sym_source_DASHenv] = ACTIONS(1765), + [anon_sym_register] = ACTIONS(1765), + [anon_sym_hide] = ACTIONS(1765), + [anon_sym_hide_DASHenv] = ACTIONS(1765), + [anon_sym_overlay] = ACTIONS(1765), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_PLUS2] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), + [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(1905), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1765), + [aux_sym__val_number_token5] = ACTIONS(1765), + [aux_sym__val_number_token6] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1935), + [sym_raw_string_begin] = ACTIONS(1767), }, - [488] = { - [sym_comment] = STATE(488), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_alias] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_let_DASHenv] = ACTIONS(1755), - [anon_sym_mut] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1757), - [aux_sym_cmd_identifier_token3] = ACTIONS(1757), - [aux_sym_cmd_identifier_token4] = ACTIONS(1757), - [aux_sym_cmd_identifier_token5] = ACTIONS(1757), - [aux_sym_cmd_identifier_token6] = ACTIONS(1757), - [aux_sym_cmd_identifier_token7] = ACTIONS(1757), - [aux_sym_cmd_identifier_token8] = ACTIONS(1755), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1757), - [aux_sym_cmd_identifier_token11] = ACTIONS(1757), - [aux_sym_cmd_identifier_token12] = ACTIONS(1755), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1755), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1757), - [aux_sym_cmd_identifier_token17] = ACTIONS(1757), - [aux_sym_cmd_identifier_token18] = ACTIONS(1757), - [aux_sym_cmd_identifier_token19] = ACTIONS(1757), - [aux_sym_cmd_identifier_token20] = ACTIONS(1757), - [aux_sym_cmd_identifier_token21] = ACTIONS(1757), - [aux_sym_cmd_identifier_token22] = ACTIONS(1757), - [aux_sym_cmd_identifier_token23] = ACTIONS(1757), - [aux_sym_cmd_identifier_token24] = ACTIONS(1757), - [aux_sym_cmd_identifier_token25] = ACTIONS(1757), - [aux_sym_cmd_identifier_token26] = ACTIONS(1757), - [aux_sym_cmd_identifier_token27] = ACTIONS(1757), - [aux_sym_cmd_identifier_token28] = ACTIONS(1757), - [aux_sym_cmd_identifier_token29] = ACTIONS(1757), - [aux_sym_cmd_identifier_token30] = ACTIONS(1757), - [aux_sym_cmd_identifier_token31] = ACTIONS(1757), - [aux_sym_cmd_identifier_token32] = ACTIONS(1757), - [aux_sym_cmd_identifier_token33] = ACTIONS(1757), - [aux_sym_cmd_identifier_token34] = ACTIONS(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [aux_sym_cmd_identifier_token37] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_export_DASHenv] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_make] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_source] = ACTIONS(1755), - [anon_sym_source_DASHenv] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_hide] = ACTIONS(1755), - [anon_sym_hide_DASHenv] = ACTIONS(1755), - [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(1982), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1757), + [508] = { + [sym_cell_path] = STATE(727), + [sym_path] = STATE(623), + [sym_comment] = STATE(508), + [aux_sym_cell_path_repeat1] = STATE(532), + [anon_sym_export] = ACTIONS(1847), + [anon_sym_alias] = ACTIONS(1847), + [anon_sym_let] = ACTIONS(1847), + [anon_sym_let_DASHenv] = ACTIONS(1847), + [anon_sym_mut] = ACTIONS(1847), + [anon_sym_const] = ACTIONS(1847), + [aux_sym_cmd_identifier_token1] = ACTIONS(1847), + [aux_sym_cmd_identifier_token2] = ACTIONS(1851), + [aux_sym_cmd_identifier_token3] = ACTIONS(1851), + [aux_sym_cmd_identifier_token4] = ACTIONS(1851), + [aux_sym_cmd_identifier_token5] = ACTIONS(1851), + [aux_sym_cmd_identifier_token6] = ACTIONS(1851), + [aux_sym_cmd_identifier_token7] = ACTIONS(1851), + [aux_sym_cmd_identifier_token8] = ACTIONS(1847), + [aux_sym_cmd_identifier_token9] = ACTIONS(1847), + [aux_sym_cmd_identifier_token10] = ACTIONS(1851), + [aux_sym_cmd_identifier_token11] = ACTIONS(1851), + [aux_sym_cmd_identifier_token12] = ACTIONS(1847), + [aux_sym_cmd_identifier_token13] = ACTIONS(1847), + [aux_sym_cmd_identifier_token14] = ACTIONS(1847), + [aux_sym_cmd_identifier_token15] = ACTIONS(1847), + [aux_sym_cmd_identifier_token16] = ACTIONS(1851), + [aux_sym_cmd_identifier_token17] = ACTIONS(1851), + [aux_sym_cmd_identifier_token18] = ACTIONS(1851), + [aux_sym_cmd_identifier_token19] = ACTIONS(1851), + [aux_sym_cmd_identifier_token20] = ACTIONS(1851), + [aux_sym_cmd_identifier_token21] = ACTIONS(1851), + [aux_sym_cmd_identifier_token22] = ACTIONS(1851), + [aux_sym_cmd_identifier_token23] = ACTIONS(1851), + [aux_sym_cmd_identifier_token24] = ACTIONS(1851), + [aux_sym_cmd_identifier_token25] = ACTIONS(1851), + [aux_sym_cmd_identifier_token26] = ACTIONS(1851), + [aux_sym_cmd_identifier_token27] = ACTIONS(1851), + [aux_sym_cmd_identifier_token28] = ACTIONS(1851), + [aux_sym_cmd_identifier_token29] = ACTIONS(1851), + [aux_sym_cmd_identifier_token30] = ACTIONS(1851), + [aux_sym_cmd_identifier_token31] = ACTIONS(1851), + [aux_sym_cmd_identifier_token32] = ACTIONS(1851), + [aux_sym_cmd_identifier_token33] = ACTIONS(1851), + [aux_sym_cmd_identifier_token34] = ACTIONS(1847), + [aux_sym_cmd_identifier_token35] = ACTIONS(1851), + [aux_sym_cmd_identifier_token36] = ACTIONS(1851), + [aux_sym_cmd_identifier_token37] = ACTIONS(1851), + [aux_sym_cmd_identifier_token38] = ACTIONS(1847), + [aux_sym_cmd_identifier_token39] = ACTIONS(1851), + [aux_sym_cmd_identifier_token40] = ACTIONS(1851), + [anon_sym_def] = ACTIONS(1847), + [anon_sym_export_DASHenv] = ACTIONS(1847), + [anon_sym_extern] = ACTIONS(1847), + [anon_sym_module] = ACTIONS(1847), + [anon_sym_use] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1851), + [anon_sym_DOLLAR] = ACTIONS(1851), + [anon_sym_error] = ACTIONS(1847), + [anon_sym_DASH2] = ACTIONS(1847), + [anon_sym_break] = ACTIONS(1847), + [anon_sym_continue] = ACTIONS(1847), + [anon_sym_for] = ACTIONS(1847), + [anon_sym_in2] = ACTIONS(1847), + [anon_sym_loop] = ACTIONS(1847), + [anon_sym_make] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1847), + [anon_sym_do] = ACTIONS(1847), + [anon_sym_if] = ACTIONS(1847), + [anon_sym_else] = ACTIONS(1847), + [anon_sym_match] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(1851), + [anon_sym_try] = ACTIONS(1847), + [anon_sym_catch] = ACTIONS(1847), + [anon_sym_return] = ACTIONS(1847), + [anon_sym_source] = ACTIONS(1847), + [anon_sym_source_DASHenv] = ACTIONS(1847), + [anon_sym_register] = ACTIONS(1847), + [anon_sym_hide] = ACTIONS(1847), + [anon_sym_hide_DASHenv] = ACTIONS(1847), + [anon_sym_overlay] = ACTIONS(1847), + [anon_sym_as] = ACTIONS(1847), + [anon_sym_PLUS2] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1851), + [anon_sym_DOT] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1851), + [aux_sym__val_number_decimal_token1] = ACTIONS(1847), + [aux_sym__val_number_decimal_token2] = ACTIONS(1851), + [aux_sym__val_number_decimal_token3] = ACTIONS(1851), + [aux_sym__val_number_decimal_token4] = ACTIONS(1851), + [aux_sym__val_number_token1] = ACTIONS(1851), + [aux_sym__val_number_token2] = ACTIONS(1851), + [aux_sym__val_number_token3] = ACTIONS(1851), + [aux_sym__val_number_token4] = ACTIONS(1847), + [aux_sym__val_number_token5] = ACTIONS(1847), + [aux_sym__val_number_token6] = ACTIONS(1847), + [anon_sym_DQUOTE] = ACTIONS(1851), + [sym__str_single_quotes] = ACTIONS(1851), + [sym__str_back_ticks] = ACTIONS(1851), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1851), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1851), }, - [489] = { - [sym_cell_path] = STATE(747), - [sym_path] = STATE(689), - [sym_comment] = STATE(489), - [aux_sym_cell_path_repeat1] = STATE(522), - [anon_sym_export] = ACTIONS(2068), - [anon_sym_alias] = ACTIONS(2068), - [anon_sym_let] = ACTIONS(2068), - [anon_sym_let_DASHenv] = ACTIONS(2068), - [anon_sym_mut] = ACTIONS(2068), - [anon_sym_const] = ACTIONS(2068), - [aux_sym_cmd_identifier_token1] = ACTIONS(2068), - [aux_sym_cmd_identifier_token2] = ACTIONS(2070), - [aux_sym_cmd_identifier_token3] = ACTIONS(2070), - [aux_sym_cmd_identifier_token4] = ACTIONS(2070), - [aux_sym_cmd_identifier_token5] = ACTIONS(2070), - [aux_sym_cmd_identifier_token6] = ACTIONS(2070), - [aux_sym_cmd_identifier_token7] = ACTIONS(2070), - [aux_sym_cmd_identifier_token8] = ACTIONS(2068), - [aux_sym_cmd_identifier_token9] = ACTIONS(2068), - [aux_sym_cmd_identifier_token10] = ACTIONS(2070), - [aux_sym_cmd_identifier_token11] = ACTIONS(2070), - [aux_sym_cmd_identifier_token12] = ACTIONS(2068), - [aux_sym_cmd_identifier_token13] = ACTIONS(2068), - [aux_sym_cmd_identifier_token14] = ACTIONS(2068), - [aux_sym_cmd_identifier_token15] = ACTIONS(2068), - [aux_sym_cmd_identifier_token16] = ACTIONS(2070), - [aux_sym_cmd_identifier_token17] = ACTIONS(2070), - [aux_sym_cmd_identifier_token18] = ACTIONS(2070), - [aux_sym_cmd_identifier_token19] = ACTIONS(2070), - [aux_sym_cmd_identifier_token20] = ACTIONS(2070), - [aux_sym_cmd_identifier_token21] = ACTIONS(2070), - [aux_sym_cmd_identifier_token22] = ACTIONS(2070), - [aux_sym_cmd_identifier_token23] = ACTIONS(2070), - [aux_sym_cmd_identifier_token24] = ACTIONS(2070), - [aux_sym_cmd_identifier_token25] = ACTIONS(2070), - [aux_sym_cmd_identifier_token26] = ACTIONS(2070), - [aux_sym_cmd_identifier_token27] = ACTIONS(2070), - [aux_sym_cmd_identifier_token28] = ACTIONS(2070), - [aux_sym_cmd_identifier_token29] = ACTIONS(2070), - [aux_sym_cmd_identifier_token30] = ACTIONS(2070), - [aux_sym_cmd_identifier_token31] = ACTIONS(2070), - [aux_sym_cmd_identifier_token32] = ACTIONS(2070), - [aux_sym_cmd_identifier_token33] = ACTIONS(2070), - [aux_sym_cmd_identifier_token34] = ACTIONS(2068), - [aux_sym_cmd_identifier_token35] = ACTIONS(2070), - [aux_sym_cmd_identifier_token36] = ACTIONS(2070), - [aux_sym_cmd_identifier_token37] = ACTIONS(2070), - [aux_sym_cmd_identifier_token38] = ACTIONS(2068), - [aux_sym_cmd_identifier_token39] = ACTIONS(2070), - [aux_sym_cmd_identifier_token40] = ACTIONS(2070), - [anon_sym_def] = ACTIONS(2068), - [anon_sym_export_DASHenv] = ACTIONS(2068), - [anon_sym_extern] = ACTIONS(2068), - [anon_sym_module] = ACTIONS(2068), - [anon_sym_use] = ACTIONS(2068), - [anon_sym_LPAREN] = ACTIONS(2070), - [anon_sym_DOLLAR] = ACTIONS(2070), - [anon_sym_error] = ACTIONS(2068), - [anon_sym_DASH2] = ACTIONS(2068), - [anon_sym_break] = ACTIONS(2068), - [anon_sym_continue] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(2068), - [anon_sym_in2] = ACTIONS(2068), - [anon_sym_loop] = ACTIONS(2068), - [anon_sym_make] = ACTIONS(2068), - [anon_sym_while] = ACTIONS(2068), - [anon_sym_do] = ACTIONS(2068), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_else] = ACTIONS(2068), - [anon_sym_match] = ACTIONS(2068), - [anon_sym_RBRACE] = ACTIONS(2070), - [anon_sym_try] = ACTIONS(2068), - [anon_sym_catch] = ACTIONS(2068), - [anon_sym_return] = ACTIONS(2068), - [anon_sym_source] = ACTIONS(2068), - [anon_sym_source_DASHenv] = ACTIONS(2068), - [anon_sym_register] = ACTIONS(2068), - [anon_sym_hide] = ACTIONS(2068), - [anon_sym_hide_DASHenv] = ACTIONS(2068), - [anon_sym_overlay] = ACTIONS(2068), - [anon_sym_as] = ACTIONS(2068), - [anon_sym_PLUS2] = ACTIONS(2068), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2070), - [anon_sym_DOT] = ACTIONS(2110), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2070), - [aux_sym__val_number_decimal_token1] = ACTIONS(2068), - [aux_sym__val_number_decimal_token2] = ACTIONS(2070), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), - [aux_sym__val_number_token1] = ACTIONS(2070), - [aux_sym__val_number_token2] = ACTIONS(2070), - [aux_sym__val_number_token3] = ACTIONS(2070), - [aux_sym__val_number_token4] = ACTIONS(2068), - [aux_sym__val_number_token5] = ACTIONS(2068), - [aux_sym__val_number_token6] = ACTIONS(2068), - [anon_sym_DQUOTE] = ACTIONS(2070), - [sym__str_single_quotes] = ACTIONS(2070), - [sym__str_back_ticks] = ACTIONS(2070), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2070), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2070), + [509] = { + [sym_comment] = STATE(509), + [anon_sym_export] = ACTIONS(1026), + [anon_sym_alias] = ACTIONS(1026), + [anon_sym_let] = ACTIONS(1026), + [anon_sym_let_DASHenv] = ACTIONS(1026), + [anon_sym_mut] = ACTIONS(1026), + [anon_sym_const] = ACTIONS(1026), + [aux_sym_cmd_identifier_token1] = ACTIONS(1026), + [aux_sym_cmd_identifier_token2] = ACTIONS(1026), + [aux_sym_cmd_identifier_token3] = ACTIONS(1026), + [aux_sym_cmd_identifier_token4] = ACTIONS(1026), + [aux_sym_cmd_identifier_token5] = ACTIONS(1026), + [aux_sym_cmd_identifier_token6] = ACTIONS(1026), + [aux_sym_cmd_identifier_token7] = ACTIONS(1026), + [aux_sym_cmd_identifier_token8] = ACTIONS(1026), + [aux_sym_cmd_identifier_token9] = ACTIONS(1026), + [aux_sym_cmd_identifier_token10] = ACTIONS(1026), + [aux_sym_cmd_identifier_token11] = ACTIONS(1026), + [aux_sym_cmd_identifier_token12] = ACTIONS(1026), + [aux_sym_cmd_identifier_token13] = ACTIONS(1026), + [aux_sym_cmd_identifier_token14] = ACTIONS(1026), + [aux_sym_cmd_identifier_token15] = ACTIONS(1026), + [aux_sym_cmd_identifier_token16] = ACTIONS(1026), + [aux_sym_cmd_identifier_token17] = ACTIONS(1026), + [aux_sym_cmd_identifier_token18] = ACTIONS(1026), + [aux_sym_cmd_identifier_token19] = ACTIONS(1026), + [aux_sym_cmd_identifier_token20] = ACTIONS(1026), + [aux_sym_cmd_identifier_token21] = ACTIONS(1026), + [aux_sym_cmd_identifier_token22] = ACTIONS(1026), + [aux_sym_cmd_identifier_token23] = ACTIONS(1026), + [aux_sym_cmd_identifier_token24] = ACTIONS(1026), + [aux_sym_cmd_identifier_token25] = ACTIONS(1026), + [aux_sym_cmd_identifier_token26] = ACTIONS(1026), + [aux_sym_cmd_identifier_token27] = ACTIONS(1026), + [aux_sym_cmd_identifier_token28] = ACTIONS(1026), + [aux_sym_cmd_identifier_token29] = ACTIONS(1026), + [aux_sym_cmd_identifier_token30] = ACTIONS(1026), + [aux_sym_cmd_identifier_token31] = ACTIONS(1026), + [aux_sym_cmd_identifier_token32] = ACTIONS(1026), + [aux_sym_cmd_identifier_token33] = ACTIONS(1026), + [aux_sym_cmd_identifier_token34] = ACTIONS(1026), + [aux_sym_cmd_identifier_token35] = ACTIONS(1026), + [aux_sym_cmd_identifier_token36] = ACTIONS(1026), + [aux_sym_cmd_identifier_token37] = ACTIONS(1026), + [aux_sym_cmd_identifier_token38] = ACTIONS(1026), + [aux_sym_cmd_identifier_token39] = ACTIONS(1026), + [aux_sym_cmd_identifier_token40] = ACTIONS(1026), + [anon_sym_def] = ACTIONS(1026), + [anon_sym_export_DASHenv] = ACTIONS(1026), + [anon_sym_extern] = ACTIONS(1026), + [anon_sym_module] = ACTIONS(1026), + [anon_sym_use] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(1026), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_error] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(1026), + [anon_sym_break] = ACTIONS(1026), + [anon_sym_continue] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1026), + [anon_sym_in2] = ACTIONS(1026), + [anon_sym_loop] = ACTIONS(1026), + [anon_sym_make] = ACTIONS(1026), + [anon_sym_while] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1026), + [anon_sym_else] = ACTIONS(1026), + [anon_sym_match] = ACTIONS(1026), + [anon_sym_RBRACE] = ACTIONS(1026), + [anon_sym_try] = ACTIONS(1026), + [anon_sym_catch] = ACTIONS(1026), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_source] = ACTIONS(1026), + [anon_sym_source_DASHenv] = ACTIONS(1026), + [anon_sym_register] = ACTIONS(1026), + [anon_sym_hide] = ACTIONS(1026), + [anon_sym_hide_DASHenv] = ACTIONS(1026), + [anon_sym_overlay] = ACTIONS(1026), + [anon_sym_as] = ACTIONS(1026), + [anon_sym_PLUS2] = ACTIONS(1026), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1026), + [anon_sym_DOT_DOT2] = ACTIONS(2167), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2169), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2169), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1026), + [aux_sym__val_number_decimal_token1] = ACTIONS(1026), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1026), + [aux_sym__val_number_decimal_token4] = ACTIONS(1026), + [aux_sym__val_number_token1] = ACTIONS(1026), + [aux_sym__val_number_token2] = ACTIONS(1026), + [aux_sym__val_number_token3] = ACTIONS(1026), + [aux_sym__val_number_token4] = ACTIONS(1026), + [aux_sym__val_number_token5] = ACTIONS(1026), + [aux_sym__val_number_token6] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym__str_single_quotes] = ACTIONS(1026), + [sym__str_back_ticks] = ACTIONS(1026), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1026), + [sym__entry_separator] = ACTIONS(1028), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1028), }, - [490] = { - [sym_cell_path] = STATE(748), - [sym_path] = STATE(689), - [sym_comment] = STATE(490), - [aux_sym_cell_path_repeat1] = STATE(522), - [anon_sym_export] = ACTIONS(2072), - [anon_sym_alias] = ACTIONS(2072), - [anon_sym_let] = ACTIONS(2072), - [anon_sym_let_DASHenv] = ACTIONS(2072), - [anon_sym_mut] = ACTIONS(2072), - [anon_sym_const] = ACTIONS(2072), - [aux_sym_cmd_identifier_token1] = ACTIONS(2072), - [aux_sym_cmd_identifier_token2] = ACTIONS(2074), - [aux_sym_cmd_identifier_token3] = ACTIONS(2074), - [aux_sym_cmd_identifier_token4] = ACTIONS(2074), - [aux_sym_cmd_identifier_token5] = ACTIONS(2074), - [aux_sym_cmd_identifier_token6] = ACTIONS(2074), - [aux_sym_cmd_identifier_token7] = ACTIONS(2074), - [aux_sym_cmd_identifier_token8] = ACTIONS(2072), - [aux_sym_cmd_identifier_token9] = ACTIONS(2072), - [aux_sym_cmd_identifier_token10] = ACTIONS(2074), - [aux_sym_cmd_identifier_token11] = ACTIONS(2074), - [aux_sym_cmd_identifier_token12] = ACTIONS(2072), - [aux_sym_cmd_identifier_token13] = ACTIONS(2072), - [aux_sym_cmd_identifier_token14] = ACTIONS(2072), - [aux_sym_cmd_identifier_token15] = ACTIONS(2072), - [aux_sym_cmd_identifier_token16] = ACTIONS(2074), - [aux_sym_cmd_identifier_token17] = ACTIONS(2074), - [aux_sym_cmd_identifier_token18] = ACTIONS(2074), - [aux_sym_cmd_identifier_token19] = ACTIONS(2074), - [aux_sym_cmd_identifier_token20] = ACTIONS(2074), - [aux_sym_cmd_identifier_token21] = ACTIONS(2074), - [aux_sym_cmd_identifier_token22] = ACTIONS(2074), - [aux_sym_cmd_identifier_token23] = ACTIONS(2074), - [aux_sym_cmd_identifier_token24] = ACTIONS(2074), - [aux_sym_cmd_identifier_token25] = ACTIONS(2074), - [aux_sym_cmd_identifier_token26] = ACTIONS(2074), - [aux_sym_cmd_identifier_token27] = ACTIONS(2074), - [aux_sym_cmd_identifier_token28] = ACTIONS(2074), - [aux_sym_cmd_identifier_token29] = ACTIONS(2074), - [aux_sym_cmd_identifier_token30] = ACTIONS(2074), - [aux_sym_cmd_identifier_token31] = ACTIONS(2074), - [aux_sym_cmd_identifier_token32] = ACTIONS(2074), - [aux_sym_cmd_identifier_token33] = ACTIONS(2074), - [aux_sym_cmd_identifier_token34] = ACTIONS(2072), - [aux_sym_cmd_identifier_token35] = ACTIONS(2074), - [aux_sym_cmd_identifier_token36] = ACTIONS(2074), - [aux_sym_cmd_identifier_token37] = ACTIONS(2074), - [aux_sym_cmd_identifier_token38] = ACTIONS(2072), - [aux_sym_cmd_identifier_token39] = ACTIONS(2074), - [aux_sym_cmd_identifier_token40] = ACTIONS(2074), - [anon_sym_def] = ACTIONS(2072), - [anon_sym_export_DASHenv] = ACTIONS(2072), - [anon_sym_extern] = ACTIONS(2072), - [anon_sym_module] = ACTIONS(2072), - [anon_sym_use] = ACTIONS(2072), - [anon_sym_LPAREN] = ACTIONS(2074), - [anon_sym_DOLLAR] = ACTIONS(2074), - [anon_sym_error] = ACTIONS(2072), - [anon_sym_DASH2] = ACTIONS(2072), - [anon_sym_break] = ACTIONS(2072), - [anon_sym_continue] = ACTIONS(2072), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_in2] = ACTIONS(2072), - [anon_sym_loop] = ACTIONS(2072), - [anon_sym_make] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_if] = ACTIONS(2072), - [anon_sym_else] = ACTIONS(2072), - [anon_sym_match] = ACTIONS(2072), - [anon_sym_RBRACE] = ACTIONS(2074), - [anon_sym_try] = ACTIONS(2072), - [anon_sym_catch] = ACTIONS(2072), - [anon_sym_return] = ACTIONS(2072), - [anon_sym_source] = ACTIONS(2072), - [anon_sym_source_DASHenv] = ACTIONS(2072), - [anon_sym_register] = ACTIONS(2072), - [anon_sym_hide] = ACTIONS(2072), - [anon_sym_hide_DASHenv] = ACTIONS(2072), - [anon_sym_overlay] = ACTIONS(2072), - [anon_sym_as] = ACTIONS(2072), - [anon_sym_PLUS2] = ACTIONS(2072), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2074), - [anon_sym_DOT] = ACTIONS(2110), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2074), - [aux_sym__val_number_decimal_token1] = ACTIONS(2072), - [aux_sym__val_number_decimal_token2] = ACTIONS(2074), - [aux_sym__val_number_decimal_token3] = ACTIONS(2074), - [aux_sym__val_number_decimal_token4] = ACTIONS(2074), - [aux_sym__val_number_token1] = ACTIONS(2074), - [aux_sym__val_number_token2] = ACTIONS(2074), - [aux_sym__val_number_token3] = ACTIONS(2074), - [aux_sym__val_number_token4] = ACTIONS(2072), - [aux_sym__val_number_token5] = ACTIONS(2072), - [aux_sym__val_number_token6] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(2074), - [sym__str_single_quotes] = ACTIONS(2074), - [sym__str_back_ticks] = ACTIONS(2074), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2074), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2074), - }, - [491] = { - [sym_comment] = STATE(491), - [anon_sym_export] = ACTIONS(978), - [anon_sym_alias] = ACTIONS(978), - [anon_sym_let] = ACTIONS(978), - [anon_sym_let_DASHenv] = ACTIONS(978), - [anon_sym_mut] = ACTIONS(978), - [anon_sym_const] = ACTIONS(978), - [aux_sym_cmd_identifier_token1] = ACTIONS(978), - [aux_sym_cmd_identifier_token2] = ACTIONS(980), - [aux_sym_cmd_identifier_token3] = ACTIONS(980), - [aux_sym_cmd_identifier_token4] = ACTIONS(980), - [aux_sym_cmd_identifier_token5] = ACTIONS(980), - [aux_sym_cmd_identifier_token6] = ACTIONS(980), - [aux_sym_cmd_identifier_token7] = ACTIONS(980), - [aux_sym_cmd_identifier_token8] = ACTIONS(978), - [aux_sym_cmd_identifier_token9] = ACTIONS(978), - [aux_sym_cmd_identifier_token10] = ACTIONS(980), - [aux_sym_cmd_identifier_token11] = ACTIONS(980), - [aux_sym_cmd_identifier_token12] = ACTIONS(978), - [aux_sym_cmd_identifier_token13] = ACTIONS(978), - [aux_sym_cmd_identifier_token14] = ACTIONS(978), - [aux_sym_cmd_identifier_token15] = ACTIONS(978), - [aux_sym_cmd_identifier_token16] = ACTIONS(980), - [aux_sym_cmd_identifier_token17] = ACTIONS(980), - [aux_sym_cmd_identifier_token18] = ACTIONS(980), - [aux_sym_cmd_identifier_token19] = ACTIONS(980), - [aux_sym_cmd_identifier_token20] = ACTIONS(980), - [aux_sym_cmd_identifier_token21] = ACTIONS(980), - [aux_sym_cmd_identifier_token22] = ACTIONS(980), - [aux_sym_cmd_identifier_token23] = ACTIONS(980), - [aux_sym_cmd_identifier_token24] = ACTIONS(980), - [aux_sym_cmd_identifier_token25] = ACTIONS(980), - [aux_sym_cmd_identifier_token26] = ACTIONS(980), - [aux_sym_cmd_identifier_token27] = ACTIONS(980), - [aux_sym_cmd_identifier_token28] = ACTIONS(980), - [aux_sym_cmd_identifier_token29] = ACTIONS(980), - [aux_sym_cmd_identifier_token30] = ACTIONS(980), - [aux_sym_cmd_identifier_token31] = ACTIONS(980), - [aux_sym_cmd_identifier_token32] = ACTIONS(980), - [aux_sym_cmd_identifier_token33] = ACTIONS(980), - [aux_sym_cmd_identifier_token34] = ACTIONS(978), - [aux_sym_cmd_identifier_token35] = ACTIONS(980), - [aux_sym_cmd_identifier_token36] = ACTIONS(980), - [aux_sym_cmd_identifier_token37] = ACTIONS(980), - [aux_sym_cmd_identifier_token38] = ACTIONS(978), - [aux_sym_cmd_identifier_token39] = ACTIONS(980), - [aux_sym_cmd_identifier_token40] = ACTIONS(980), - [anon_sym_def] = ACTIONS(978), - [anon_sym_export_DASHenv] = ACTIONS(978), - [anon_sym_extern] = ACTIONS(978), - [anon_sym_module] = ACTIONS(978), - [anon_sym_use] = ACTIONS(978), - [anon_sym_LPAREN] = ACTIONS(980), - [anon_sym_COMMA] = ACTIONS(980), - [anon_sym_DOLLAR] = ACTIONS(980), - [anon_sym_error] = ACTIONS(978), - [anon_sym_DASH2] = ACTIONS(978), - [anon_sym_break] = ACTIONS(978), - [anon_sym_continue] = ACTIONS(978), - [anon_sym_for] = ACTIONS(978), - [anon_sym_in2] = ACTIONS(978), - [anon_sym_loop] = ACTIONS(978), - [anon_sym_make] = ACTIONS(978), - [anon_sym_while] = ACTIONS(978), - [anon_sym_do] = ACTIONS(978), - [anon_sym_if] = ACTIONS(978), - [anon_sym_else] = ACTIONS(978), - [anon_sym_match] = ACTIONS(978), - [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_try] = ACTIONS(978), - [anon_sym_catch] = ACTIONS(978), - [anon_sym_return] = ACTIONS(978), - [anon_sym_source] = ACTIONS(978), - [anon_sym_source_DASHenv] = ACTIONS(978), - [anon_sym_register] = ACTIONS(978), - [anon_sym_hide] = ACTIONS(978), - [anon_sym_hide_DASHenv] = ACTIONS(978), - [anon_sym_overlay] = ACTIONS(978), - [anon_sym_as] = ACTIONS(978), - [anon_sym_QMARK2] = ACTIONS(2145), - [anon_sym_PLUS2] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(980), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(980), - [aux_sym__val_number_decimal_token1] = ACTIONS(978), - [aux_sym__val_number_decimal_token2] = ACTIONS(980), - [aux_sym__val_number_decimal_token3] = ACTIONS(980), - [aux_sym__val_number_decimal_token4] = ACTIONS(980), - [aux_sym__val_number_token1] = ACTIONS(980), - [aux_sym__val_number_token2] = ACTIONS(980), - [aux_sym__val_number_token3] = ACTIONS(980), - [aux_sym__val_number_token4] = ACTIONS(978), - [aux_sym__val_number_token5] = ACTIONS(978), - [aux_sym__val_number_token6] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym__str_single_quotes] = ACTIONS(980), - [sym__str_back_ticks] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(980), - [aux_sym_record_entry_token1] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(980), - }, - [492] = { - [sym_comment] = STATE(492), - [anon_sym_export] = ACTIONS(984), - [anon_sym_alias] = ACTIONS(984), - [anon_sym_let] = ACTIONS(984), - [anon_sym_let_DASHenv] = ACTIONS(984), - [anon_sym_mut] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [aux_sym_cmd_identifier_token1] = ACTIONS(984), - [aux_sym_cmd_identifier_token2] = ACTIONS(986), - [aux_sym_cmd_identifier_token3] = ACTIONS(986), - [aux_sym_cmd_identifier_token4] = ACTIONS(986), - [aux_sym_cmd_identifier_token5] = ACTIONS(986), - [aux_sym_cmd_identifier_token6] = ACTIONS(986), - [aux_sym_cmd_identifier_token7] = ACTIONS(986), - [aux_sym_cmd_identifier_token8] = ACTIONS(984), - [aux_sym_cmd_identifier_token9] = ACTIONS(984), - [aux_sym_cmd_identifier_token10] = ACTIONS(986), - [aux_sym_cmd_identifier_token11] = ACTIONS(986), - [aux_sym_cmd_identifier_token12] = ACTIONS(984), - [aux_sym_cmd_identifier_token13] = ACTIONS(984), - [aux_sym_cmd_identifier_token14] = ACTIONS(984), - [aux_sym_cmd_identifier_token15] = ACTIONS(984), - [aux_sym_cmd_identifier_token16] = ACTIONS(986), - [aux_sym_cmd_identifier_token17] = ACTIONS(986), - [aux_sym_cmd_identifier_token18] = ACTIONS(986), - [aux_sym_cmd_identifier_token19] = ACTIONS(986), - [aux_sym_cmd_identifier_token20] = ACTIONS(986), - [aux_sym_cmd_identifier_token21] = ACTIONS(986), - [aux_sym_cmd_identifier_token22] = ACTIONS(986), - [aux_sym_cmd_identifier_token23] = ACTIONS(986), - [aux_sym_cmd_identifier_token24] = ACTIONS(986), - [aux_sym_cmd_identifier_token25] = ACTIONS(986), - [aux_sym_cmd_identifier_token26] = ACTIONS(986), - [aux_sym_cmd_identifier_token27] = ACTIONS(986), - [aux_sym_cmd_identifier_token28] = ACTIONS(986), - [aux_sym_cmd_identifier_token29] = ACTIONS(986), - [aux_sym_cmd_identifier_token30] = ACTIONS(986), - [aux_sym_cmd_identifier_token31] = ACTIONS(986), - [aux_sym_cmd_identifier_token32] = ACTIONS(986), - [aux_sym_cmd_identifier_token33] = ACTIONS(986), - [aux_sym_cmd_identifier_token34] = ACTIONS(984), - [aux_sym_cmd_identifier_token35] = ACTIONS(986), - [aux_sym_cmd_identifier_token36] = ACTIONS(986), - [aux_sym_cmd_identifier_token37] = ACTIONS(986), - [aux_sym_cmd_identifier_token38] = ACTIONS(984), - [aux_sym_cmd_identifier_token39] = ACTIONS(986), - [aux_sym_cmd_identifier_token40] = ACTIONS(986), - [anon_sym_def] = ACTIONS(984), - [anon_sym_export_DASHenv] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym_module] = ACTIONS(984), - [anon_sym_use] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_COMMA] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_error] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_in2] = ACTIONS(984), - [anon_sym_loop] = ACTIONS(984), - [anon_sym_make] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_match] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_try] = ACTIONS(984), - [anon_sym_catch] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_source] = ACTIONS(984), - [anon_sym_source_DASHenv] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_hide] = ACTIONS(984), - [anon_sym_hide_DASHenv] = ACTIONS(984), - [anon_sym_overlay] = ACTIONS(984), - [anon_sym_as] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(2147), - [anon_sym_PLUS2] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), - [aux_sym__val_number_decimal_token1] = ACTIONS(984), - [aux_sym__val_number_decimal_token2] = ACTIONS(986), - [aux_sym__val_number_decimal_token3] = ACTIONS(986), - [aux_sym__val_number_decimal_token4] = ACTIONS(986), - [aux_sym__val_number_token1] = ACTIONS(986), - [aux_sym__val_number_token2] = ACTIONS(986), - [aux_sym__val_number_token3] = ACTIONS(986), - [aux_sym__val_number_token4] = ACTIONS(984), - [aux_sym__val_number_token5] = ACTIONS(984), - [aux_sym__val_number_token6] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), - [aux_sym_record_entry_token1] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(986), - }, - [493] = { - [sym_cell_path] = STATE(749), - [sym_path] = STATE(689), - [sym_comment] = STATE(493), - [aux_sym_cell_path_repeat1] = STATE(522), - [anon_sym_export] = ACTIONS(1907), - [anon_sym_alias] = ACTIONS(1907), - [anon_sym_let] = ACTIONS(1907), - [anon_sym_let_DASHenv] = ACTIONS(1907), - [anon_sym_mut] = ACTIONS(1907), - [anon_sym_const] = ACTIONS(1907), - [aux_sym_cmd_identifier_token1] = ACTIONS(1907), - [aux_sym_cmd_identifier_token2] = ACTIONS(1911), - [aux_sym_cmd_identifier_token3] = ACTIONS(1911), - [aux_sym_cmd_identifier_token4] = ACTIONS(1911), - [aux_sym_cmd_identifier_token5] = ACTIONS(1911), - [aux_sym_cmd_identifier_token6] = ACTIONS(1911), - [aux_sym_cmd_identifier_token7] = ACTIONS(1911), - [aux_sym_cmd_identifier_token8] = ACTIONS(1907), - [aux_sym_cmd_identifier_token9] = ACTIONS(1907), - [aux_sym_cmd_identifier_token10] = ACTIONS(1911), - [aux_sym_cmd_identifier_token11] = ACTIONS(1911), - [aux_sym_cmd_identifier_token12] = ACTIONS(1907), - [aux_sym_cmd_identifier_token13] = ACTIONS(1907), - [aux_sym_cmd_identifier_token14] = ACTIONS(1907), - [aux_sym_cmd_identifier_token15] = ACTIONS(1907), - [aux_sym_cmd_identifier_token16] = ACTIONS(1911), - [aux_sym_cmd_identifier_token17] = ACTIONS(1911), - [aux_sym_cmd_identifier_token18] = ACTIONS(1911), - [aux_sym_cmd_identifier_token19] = ACTIONS(1911), - [aux_sym_cmd_identifier_token20] = ACTIONS(1911), - [aux_sym_cmd_identifier_token21] = ACTIONS(1911), - [aux_sym_cmd_identifier_token22] = ACTIONS(1911), - [aux_sym_cmd_identifier_token23] = ACTIONS(1911), - [aux_sym_cmd_identifier_token24] = ACTIONS(1911), - [aux_sym_cmd_identifier_token25] = ACTIONS(1911), - [aux_sym_cmd_identifier_token26] = ACTIONS(1911), - [aux_sym_cmd_identifier_token27] = ACTIONS(1911), - [aux_sym_cmd_identifier_token28] = ACTIONS(1911), - [aux_sym_cmd_identifier_token29] = ACTIONS(1911), - [aux_sym_cmd_identifier_token30] = ACTIONS(1911), - [aux_sym_cmd_identifier_token31] = ACTIONS(1911), - [aux_sym_cmd_identifier_token32] = ACTIONS(1911), - [aux_sym_cmd_identifier_token33] = ACTIONS(1911), - [aux_sym_cmd_identifier_token34] = ACTIONS(1907), - [aux_sym_cmd_identifier_token35] = ACTIONS(1911), - [aux_sym_cmd_identifier_token36] = ACTIONS(1911), - [aux_sym_cmd_identifier_token37] = ACTIONS(1911), - [aux_sym_cmd_identifier_token38] = ACTIONS(1907), - [aux_sym_cmd_identifier_token39] = ACTIONS(1911), - [aux_sym_cmd_identifier_token40] = ACTIONS(1911), - [anon_sym_def] = ACTIONS(1907), - [anon_sym_export_DASHenv] = ACTIONS(1907), - [anon_sym_extern] = ACTIONS(1907), - [anon_sym_module] = ACTIONS(1907), - [anon_sym_use] = ACTIONS(1907), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_DOLLAR] = ACTIONS(1911), - [anon_sym_error] = ACTIONS(1907), - [anon_sym_DASH2] = ACTIONS(1907), - [anon_sym_break] = ACTIONS(1907), - [anon_sym_continue] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(1907), - [anon_sym_in2] = ACTIONS(1907), - [anon_sym_loop] = ACTIONS(1907), - [anon_sym_make] = ACTIONS(1907), - [anon_sym_while] = ACTIONS(1907), - [anon_sym_do] = ACTIONS(1907), - [anon_sym_if] = ACTIONS(1907), - [anon_sym_else] = ACTIONS(1907), - [anon_sym_match] = ACTIONS(1907), - [anon_sym_RBRACE] = ACTIONS(1911), - [anon_sym_try] = ACTIONS(1907), - [anon_sym_catch] = ACTIONS(1907), - [anon_sym_return] = ACTIONS(1907), - [anon_sym_source] = ACTIONS(1907), - [anon_sym_source_DASHenv] = ACTIONS(1907), - [anon_sym_register] = ACTIONS(1907), - [anon_sym_hide] = ACTIONS(1907), - [anon_sym_hide_DASHenv] = ACTIONS(1907), - [anon_sym_overlay] = ACTIONS(1907), - [anon_sym_as] = ACTIONS(1907), - [anon_sym_PLUS2] = ACTIONS(1907), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1911), - [anon_sym_DOT] = ACTIONS(2110), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1911), - [aux_sym__val_number_decimal_token1] = ACTIONS(1907), - [aux_sym__val_number_decimal_token2] = ACTIONS(1911), - [aux_sym__val_number_decimal_token3] = ACTIONS(1911), - [aux_sym__val_number_decimal_token4] = ACTIONS(1911), - [aux_sym__val_number_token1] = ACTIONS(1911), - [aux_sym__val_number_token2] = ACTIONS(1911), - [aux_sym__val_number_token3] = ACTIONS(1911), - [aux_sym__val_number_token4] = ACTIONS(1907), - [aux_sym__val_number_token5] = ACTIONS(1907), - [aux_sym__val_number_token6] = ACTIONS(1907), - [anon_sym_DQUOTE] = ACTIONS(1911), - [sym__str_single_quotes] = ACTIONS(1911), - [sym__str_back_ticks] = ACTIONS(1911), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1911), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1911), - }, - [494] = { - [sym_comment] = STATE(494), - [anon_sym_export] = ACTIONS(1018), - [anon_sym_alias] = ACTIONS(1018), - [anon_sym_let] = ACTIONS(1018), - [anon_sym_let_DASHenv] = ACTIONS(1018), - [anon_sym_mut] = ACTIONS(1018), - [anon_sym_const] = ACTIONS(1018), - [aux_sym_cmd_identifier_token1] = ACTIONS(1018), - [aux_sym_cmd_identifier_token2] = ACTIONS(1018), - [aux_sym_cmd_identifier_token3] = ACTIONS(1018), - [aux_sym_cmd_identifier_token4] = ACTIONS(1018), - [aux_sym_cmd_identifier_token5] = ACTIONS(1018), - [aux_sym_cmd_identifier_token6] = ACTIONS(1018), - [aux_sym_cmd_identifier_token7] = ACTIONS(1018), - [aux_sym_cmd_identifier_token8] = ACTIONS(1018), - [aux_sym_cmd_identifier_token9] = ACTIONS(1018), - [aux_sym_cmd_identifier_token10] = ACTIONS(1018), - [aux_sym_cmd_identifier_token11] = ACTIONS(1018), - [aux_sym_cmd_identifier_token12] = ACTIONS(1018), - [aux_sym_cmd_identifier_token13] = ACTIONS(1018), - [aux_sym_cmd_identifier_token14] = ACTIONS(1018), - [aux_sym_cmd_identifier_token15] = ACTIONS(1018), - [aux_sym_cmd_identifier_token16] = ACTIONS(1018), - [aux_sym_cmd_identifier_token17] = ACTIONS(1018), - [aux_sym_cmd_identifier_token18] = ACTIONS(1018), - [aux_sym_cmd_identifier_token19] = ACTIONS(1018), - [aux_sym_cmd_identifier_token20] = ACTIONS(1018), - [aux_sym_cmd_identifier_token21] = ACTIONS(1018), - [aux_sym_cmd_identifier_token22] = ACTIONS(1018), - [aux_sym_cmd_identifier_token23] = ACTIONS(1018), - [aux_sym_cmd_identifier_token24] = ACTIONS(1018), - [aux_sym_cmd_identifier_token25] = ACTIONS(1018), - [aux_sym_cmd_identifier_token26] = ACTIONS(1018), - [aux_sym_cmd_identifier_token27] = ACTIONS(1018), - [aux_sym_cmd_identifier_token28] = ACTIONS(1018), - [aux_sym_cmd_identifier_token29] = ACTIONS(1018), - [aux_sym_cmd_identifier_token30] = ACTIONS(1018), - [aux_sym_cmd_identifier_token31] = ACTIONS(1018), - [aux_sym_cmd_identifier_token32] = ACTIONS(1018), - [aux_sym_cmd_identifier_token33] = ACTIONS(1018), - [aux_sym_cmd_identifier_token34] = ACTIONS(1018), - [aux_sym_cmd_identifier_token35] = ACTIONS(1018), - [aux_sym_cmd_identifier_token36] = ACTIONS(1018), - [aux_sym_cmd_identifier_token37] = ACTIONS(1018), - [aux_sym_cmd_identifier_token38] = ACTIONS(1018), - [aux_sym_cmd_identifier_token39] = ACTIONS(1018), - [aux_sym_cmd_identifier_token40] = ACTIONS(1018), - [anon_sym_def] = ACTIONS(1018), - [anon_sym_export_DASHenv] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(1018), - [anon_sym_module] = ACTIONS(1018), - [anon_sym_use] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1018), - [anon_sym_DOLLAR] = ACTIONS(1018), - [anon_sym_error] = ACTIONS(1018), - [anon_sym_DASH2] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1018), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_in2] = ACTIONS(1018), - [anon_sym_loop] = ACTIONS(1018), - [anon_sym_make] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1018), - [anon_sym_do] = ACTIONS(1018), - [anon_sym_if] = ACTIONS(1018), - [anon_sym_else] = ACTIONS(1018), - [anon_sym_match] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1018), - [anon_sym_try] = ACTIONS(1018), - [anon_sym_catch] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1018), - [anon_sym_source] = ACTIONS(1018), - [anon_sym_source_DASHenv] = ACTIONS(1018), - [anon_sym_register] = ACTIONS(1018), - [anon_sym_hide] = ACTIONS(1018), - [anon_sym_hide_DASHenv] = ACTIONS(1018), - [anon_sym_overlay] = ACTIONS(1018), - [anon_sym_as] = ACTIONS(1018), - [anon_sym_PLUS2] = ACTIONS(1018), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1018), - [anon_sym_DOT_DOT2] = ACTIONS(1018), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1020), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1018), - [aux_sym__val_number_decimal_token1] = ACTIONS(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1018), - [aux_sym__val_number_decimal_token3] = ACTIONS(1018), - [aux_sym__val_number_decimal_token4] = ACTIONS(1018), - [aux_sym__val_number_token1] = ACTIONS(1018), - [aux_sym__val_number_token2] = ACTIONS(1018), - [aux_sym__val_number_token3] = ACTIONS(1018), - [aux_sym__val_number_token4] = ACTIONS(1018), - [aux_sym__val_number_token5] = ACTIONS(1018), - [aux_sym__val_number_token6] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [sym__str_single_quotes] = ACTIONS(1018), - [sym__str_back_ticks] = ACTIONS(1018), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1018), - [sym__entry_separator] = ACTIONS(1020), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1020), - }, - [495] = { - [sym_comment] = STATE(495), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_alias] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_let_DASHenv] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [aux_sym_cmd_identifier_token1] = ACTIONS(1783), - [aux_sym_cmd_identifier_token2] = ACTIONS(1785), - [aux_sym_cmd_identifier_token3] = ACTIONS(1785), - [aux_sym_cmd_identifier_token4] = ACTIONS(1785), - [aux_sym_cmd_identifier_token5] = ACTIONS(1785), - [aux_sym_cmd_identifier_token6] = ACTIONS(1785), - [aux_sym_cmd_identifier_token7] = ACTIONS(1785), - [aux_sym_cmd_identifier_token8] = ACTIONS(1783), - [aux_sym_cmd_identifier_token9] = ACTIONS(1783), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1783), - [aux_sym_cmd_identifier_token13] = ACTIONS(1783), - [aux_sym_cmd_identifier_token14] = ACTIONS(1783), - [aux_sym_cmd_identifier_token15] = ACTIONS(1783), - [aux_sym_cmd_identifier_token16] = ACTIONS(1785), - [aux_sym_cmd_identifier_token17] = ACTIONS(1785), - [aux_sym_cmd_identifier_token18] = ACTIONS(1785), - [aux_sym_cmd_identifier_token19] = ACTIONS(1785), - [aux_sym_cmd_identifier_token20] = ACTIONS(1785), - [aux_sym_cmd_identifier_token21] = ACTIONS(1785), - [aux_sym_cmd_identifier_token22] = ACTIONS(1785), - [aux_sym_cmd_identifier_token23] = ACTIONS(1785), - [aux_sym_cmd_identifier_token24] = ACTIONS(1785), - [aux_sym_cmd_identifier_token25] = ACTIONS(1785), - [aux_sym_cmd_identifier_token26] = ACTIONS(1785), - [aux_sym_cmd_identifier_token27] = ACTIONS(1785), - [aux_sym_cmd_identifier_token28] = ACTIONS(1785), - [aux_sym_cmd_identifier_token29] = ACTIONS(1785), - [aux_sym_cmd_identifier_token30] = ACTIONS(1785), - [aux_sym_cmd_identifier_token31] = ACTIONS(1785), - [aux_sym_cmd_identifier_token32] = ACTIONS(1785), - [aux_sym_cmd_identifier_token33] = ACTIONS(1785), - [aux_sym_cmd_identifier_token34] = ACTIONS(1783), - [aux_sym_cmd_identifier_token35] = ACTIONS(1785), - [aux_sym_cmd_identifier_token36] = ACTIONS(1785), - [aux_sym_cmd_identifier_token37] = ACTIONS(1785), - [aux_sym_cmd_identifier_token38] = ACTIONS(1783), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_export_DASHenv] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_error] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_make] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_catch] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_source] = ACTIONS(1783), - [anon_sym_source_DASHenv] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_hide] = ACTIONS(1783), - [anon_sym_hide_DASHenv] = ACTIONS(1783), - [anon_sym_overlay] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_PLUS2] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), - [aux_sym__immediate_decimal_token2] = ACTIONS(2149), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1783), - [aux_sym__val_number_token5] = ACTIONS(1783), - [aux_sym__val_number_token6] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1785), - }, - [496] = { - [sym_cell_path] = STATE(741), - [sym_path] = STATE(689), - [sym_comment] = STATE(496), - [aux_sym_cell_path_repeat1] = STATE(522), - [anon_sym_export] = ACTIONS(2078), - [anon_sym_alias] = ACTIONS(2078), - [anon_sym_let] = ACTIONS(2078), - [anon_sym_let_DASHenv] = ACTIONS(2078), - [anon_sym_mut] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [aux_sym_cmd_identifier_token1] = ACTIONS(2078), - [aux_sym_cmd_identifier_token2] = ACTIONS(2080), - [aux_sym_cmd_identifier_token3] = ACTIONS(2080), - [aux_sym_cmd_identifier_token4] = ACTIONS(2080), - [aux_sym_cmd_identifier_token5] = ACTIONS(2080), - [aux_sym_cmd_identifier_token6] = ACTIONS(2080), - [aux_sym_cmd_identifier_token7] = ACTIONS(2080), - [aux_sym_cmd_identifier_token8] = ACTIONS(2078), - [aux_sym_cmd_identifier_token9] = ACTIONS(2078), - [aux_sym_cmd_identifier_token10] = ACTIONS(2080), - [aux_sym_cmd_identifier_token11] = ACTIONS(2080), - [aux_sym_cmd_identifier_token12] = ACTIONS(2078), - [aux_sym_cmd_identifier_token13] = ACTIONS(2078), - [aux_sym_cmd_identifier_token14] = ACTIONS(2078), - [aux_sym_cmd_identifier_token15] = ACTIONS(2078), - [aux_sym_cmd_identifier_token16] = ACTIONS(2080), - [aux_sym_cmd_identifier_token17] = ACTIONS(2080), - [aux_sym_cmd_identifier_token18] = ACTIONS(2080), - [aux_sym_cmd_identifier_token19] = ACTIONS(2080), - [aux_sym_cmd_identifier_token20] = ACTIONS(2080), - [aux_sym_cmd_identifier_token21] = ACTIONS(2080), - [aux_sym_cmd_identifier_token22] = ACTIONS(2080), - [aux_sym_cmd_identifier_token23] = ACTIONS(2080), - [aux_sym_cmd_identifier_token24] = ACTIONS(2080), - [aux_sym_cmd_identifier_token25] = ACTIONS(2080), - [aux_sym_cmd_identifier_token26] = ACTIONS(2080), - [aux_sym_cmd_identifier_token27] = ACTIONS(2080), - [aux_sym_cmd_identifier_token28] = ACTIONS(2080), - [aux_sym_cmd_identifier_token29] = ACTIONS(2080), - [aux_sym_cmd_identifier_token30] = ACTIONS(2080), - [aux_sym_cmd_identifier_token31] = ACTIONS(2080), - [aux_sym_cmd_identifier_token32] = ACTIONS(2080), - [aux_sym_cmd_identifier_token33] = ACTIONS(2080), - [aux_sym_cmd_identifier_token34] = ACTIONS(2078), - [aux_sym_cmd_identifier_token35] = ACTIONS(2080), - [aux_sym_cmd_identifier_token36] = ACTIONS(2080), - [aux_sym_cmd_identifier_token37] = ACTIONS(2080), - [aux_sym_cmd_identifier_token38] = ACTIONS(2078), - [aux_sym_cmd_identifier_token39] = ACTIONS(2080), - [aux_sym_cmd_identifier_token40] = ACTIONS(2080), - [anon_sym_def] = ACTIONS(2078), - [anon_sym_export_DASHenv] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym_module] = ACTIONS(2078), - [anon_sym_use] = ACTIONS(2078), - [anon_sym_LPAREN] = ACTIONS(2080), - [anon_sym_DOLLAR] = ACTIONS(2080), - [anon_sym_error] = ACTIONS(2078), - [anon_sym_DASH2] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_in2] = ACTIONS(2078), - [anon_sym_loop] = ACTIONS(2078), - [anon_sym_make] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_else] = ACTIONS(2078), - [anon_sym_match] = ACTIONS(2078), - [anon_sym_RBRACE] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2078), - [anon_sym_catch] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_source] = ACTIONS(2078), - [anon_sym_source_DASHenv] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_hide] = ACTIONS(2078), - [anon_sym_hide_DASHenv] = ACTIONS(2078), - [anon_sym_overlay] = ACTIONS(2078), - [anon_sym_as] = ACTIONS(2078), - [anon_sym_PLUS2] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2080), - [anon_sym_DOT] = ACTIONS(2110), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2080), - [aux_sym__val_number_decimal_token1] = ACTIONS(2078), - [aux_sym__val_number_decimal_token2] = ACTIONS(2080), - [aux_sym__val_number_decimal_token3] = ACTIONS(2080), - [aux_sym__val_number_decimal_token4] = ACTIONS(2080), - [aux_sym__val_number_token1] = ACTIONS(2080), - [aux_sym__val_number_token2] = ACTIONS(2080), - [aux_sym__val_number_token3] = ACTIONS(2080), - [aux_sym__val_number_token4] = ACTIONS(2078), - [aux_sym__val_number_token5] = ACTIONS(2078), - [aux_sym__val_number_token6] = ACTIONS(2078), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym__str_single_quotes] = ACTIONS(2080), - [sym__str_back_ticks] = ACTIONS(2080), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2080), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2080), - }, - [497] = { - [sym_cell_path] = STATE(702), - [sym_path] = STATE(689), - [sym_comment] = STATE(497), - [aux_sym_cell_path_repeat1] = STATE(522), - [anon_sym_export] = ACTIONS(1976), - [anon_sym_alias] = ACTIONS(1976), - [anon_sym_let] = ACTIONS(1976), - [anon_sym_let_DASHenv] = ACTIONS(1976), - [anon_sym_mut] = ACTIONS(1976), - [anon_sym_const] = ACTIONS(1976), - [aux_sym_cmd_identifier_token1] = ACTIONS(1976), - [aux_sym_cmd_identifier_token2] = ACTIONS(1978), - [aux_sym_cmd_identifier_token3] = ACTIONS(1978), - [aux_sym_cmd_identifier_token4] = ACTIONS(1978), - [aux_sym_cmd_identifier_token5] = ACTIONS(1978), - [aux_sym_cmd_identifier_token6] = ACTIONS(1978), - [aux_sym_cmd_identifier_token7] = ACTIONS(1978), - [aux_sym_cmd_identifier_token8] = ACTIONS(1976), - [aux_sym_cmd_identifier_token9] = ACTIONS(1976), - [aux_sym_cmd_identifier_token10] = ACTIONS(1978), - [aux_sym_cmd_identifier_token11] = ACTIONS(1978), - [aux_sym_cmd_identifier_token12] = ACTIONS(1976), - [aux_sym_cmd_identifier_token13] = ACTIONS(1976), - [aux_sym_cmd_identifier_token14] = ACTIONS(1976), - [aux_sym_cmd_identifier_token15] = ACTIONS(1976), - [aux_sym_cmd_identifier_token16] = ACTIONS(1978), - [aux_sym_cmd_identifier_token17] = ACTIONS(1978), - [aux_sym_cmd_identifier_token18] = ACTIONS(1978), - [aux_sym_cmd_identifier_token19] = ACTIONS(1978), - [aux_sym_cmd_identifier_token20] = ACTIONS(1978), - [aux_sym_cmd_identifier_token21] = ACTIONS(1978), - [aux_sym_cmd_identifier_token22] = ACTIONS(1978), - [aux_sym_cmd_identifier_token23] = ACTIONS(1978), - [aux_sym_cmd_identifier_token24] = ACTIONS(1978), - [aux_sym_cmd_identifier_token25] = ACTIONS(1978), - [aux_sym_cmd_identifier_token26] = ACTIONS(1978), - [aux_sym_cmd_identifier_token27] = ACTIONS(1978), - [aux_sym_cmd_identifier_token28] = ACTIONS(1978), - [aux_sym_cmd_identifier_token29] = ACTIONS(1978), - [aux_sym_cmd_identifier_token30] = ACTIONS(1978), - [aux_sym_cmd_identifier_token31] = ACTIONS(1978), - [aux_sym_cmd_identifier_token32] = ACTIONS(1978), - [aux_sym_cmd_identifier_token33] = ACTIONS(1978), - [aux_sym_cmd_identifier_token34] = ACTIONS(1976), - [aux_sym_cmd_identifier_token35] = ACTIONS(1978), - [aux_sym_cmd_identifier_token36] = ACTIONS(1978), - [aux_sym_cmd_identifier_token37] = ACTIONS(1978), - [aux_sym_cmd_identifier_token38] = ACTIONS(1976), - [aux_sym_cmd_identifier_token39] = ACTIONS(1978), - [aux_sym_cmd_identifier_token40] = ACTIONS(1978), - [anon_sym_def] = ACTIONS(1976), - [anon_sym_export_DASHenv] = ACTIONS(1976), - [anon_sym_extern] = ACTIONS(1976), - [anon_sym_module] = ACTIONS(1976), - [anon_sym_use] = ACTIONS(1976), - [anon_sym_LPAREN] = ACTIONS(1978), - [anon_sym_DOLLAR] = ACTIONS(1978), - [anon_sym_error] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1976), - [anon_sym_break] = ACTIONS(1976), - [anon_sym_continue] = ACTIONS(1976), - [anon_sym_for] = ACTIONS(1976), - [anon_sym_in2] = ACTIONS(1976), - [anon_sym_loop] = ACTIONS(1976), - [anon_sym_make] = ACTIONS(1976), - [anon_sym_while] = ACTIONS(1976), - [anon_sym_do] = ACTIONS(1976), - [anon_sym_if] = ACTIONS(1976), - [anon_sym_else] = ACTIONS(1976), - [anon_sym_match] = ACTIONS(1976), - [anon_sym_RBRACE] = ACTIONS(1978), - [anon_sym_try] = ACTIONS(1976), - [anon_sym_catch] = ACTIONS(1976), - [anon_sym_return] = ACTIONS(1976), - [anon_sym_source] = ACTIONS(1976), - [anon_sym_source_DASHenv] = ACTIONS(1976), - [anon_sym_register] = ACTIONS(1976), - [anon_sym_hide] = ACTIONS(1976), - [anon_sym_hide_DASHenv] = ACTIONS(1976), - [anon_sym_overlay] = ACTIONS(1976), - [anon_sym_as] = ACTIONS(1976), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1978), - [anon_sym_DOT] = ACTIONS(2110), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1978), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1978), - [aux_sym__val_number_decimal_token4] = ACTIONS(1978), - [aux_sym__val_number_token1] = ACTIONS(1978), - [aux_sym__val_number_token2] = ACTIONS(1978), - [aux_sym__val_number_token3] = ACTIONS(1978), - [aux_sym__val_number_token4] = ACTIONS(1976), - [aux_sym__val_number_token5] = ACTIONS(1976), - [aux_sym__val_number_token6] = ACTIONS(1976), - [anon_sym_DQUOTE] = ACTIONS(1978), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1978), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1978), - }, - [498] = { - [sym_comment] = STATE(498), - [anon_sym_export] = ACTIONS(994), - [anon_sym_alias] = ACTIONS(994), - [anon_sym_let] = ACTIONS(994), - [anon_sym_let_DASHenv] = ACTIONS(994), - [anon_sym_mut] = ACTIONS(994), - [anon_sym_const] = ACTIONS(994), - [aux_sym_cmd_identifier_token1] = ACTIONS(994), - [aux_sym_cmd_identifier_token2] = ACTIONS(996), - [aux_sym_cmd_identifier_token3] = ACTIONS(996), - [aux_sym_cmd_identifier_token4] = ACTIONS(996), - [aux_sym_cmd_identifier_token5] = ACTIONS(996), - [aux_sym_cmd_identifier_token6] = ACTIONS(996), - [aux_sym_cmd_identifier_token7] = ACTIONS(996), - [aux_sym_cmd_identifier_token8] = ACTIONS(994), - [aux_sym_cmd_identifier_token9] = ACTIONS(994), - [aux_sym_cmd_identifier_token10] = ACTIONS(996), - [aux_sym_cmd_identifier_token11] = ACTIONS(996), - [aux_sym_cmd_identifier_token12] = ACTIONS(994), - [aux_sym_cmd_identifier_token13] = ACTIONS(994), - [aux_sym_cmd_identifier_token14] = ACTIONS(994), - [aux_sym_cmd_identifier_token15] = ACTIONS(994), - [aux_sym_cmd_identifier_token16] = ACTIONS(996), - [aux_sym_cmd_identifier_token17] = ACTIONS(996), - [aux_sym_cmd_identifier_token18] = ACTIONS(996), - [aux_sym_cmd_identifier_token19] = ACTIONS(996), - [aux_sym_cmd_identifier_token20] = ACTIONS(996), - [aux_sym_cmd_identifier_token21] = ACTIONS(996), - [aux_sym_cmd_identifier_token22] = ACTIONS(996), - [aux_sym_cmd_identifier_token23] = ACTIONS(996), - [aux_sym_cmd_identifier_token24] = ACTIONS(996), - [aux_sym_cmd_identifier_token25] = ACTIONS(996), - [aux_sym_cmd_identifier_token26] = ACTIONS(996), - [aux_sym_cmd_identifier_token27] = ACTIONS(996), - [aux_sym_cmd_identifier_token28] = ACTIONS(996), - [aux_sym_cmd_identifier_token29] = ACTIONS(996), - [aux_sym_cmd_identifier_token30] = ACTIONS(996), - [aux_sym_cmd_identifier_token31] = ACTIONS(996), - [aux_sym_cmd_identifier_token32] = ACTIONS(996), - [aux_sym_cmd_identifier_token33] = ACTIONS(996), - [aux_sym_cmd_identifier_token34] = ACTIONS(994), - [aux_sym_cmd_identifier_token35] = ACTIONS(996), - [aux_sym_cmd_identifier_token36] = ACTIONS(996), - [aux_sym_cmd_identifier_token37] = ACTIONS(996), - [aux_sym_cmd_identifier_token38] = ACTIONS(994), - [aux_sym_cmd_identifier_token39] = ACTIONS(996), - [aux_sym_cmd_identifier_token40] = ACTIONS(996), - [anon_sym_def] = ACTIONS(994), - [anon_sym_export_DASHenv] = ACTIONS(994), - [anon_sym_extern] = ACTIONS(994), - [anon_sym_module] = ACTIONS(994), - [anon_sym_use] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(996), - [anon_sym_error] = ACTIONS(994), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_break] = ACTIONS(994), - [anon_sym_continue] = ACTIONS(994), - [anon_sym_for] = ACTIONS(994), - [anon_sym_in2] = ACTIONS(994), - [anon_sym_loop] = ACTIONS(994), - [anon_sym_make] = ACTIONS(994), - [anon_sym_while] = ACTIONS(994), - [anon_sym_do] = ACTIONS(994), - [anon_sym_if] = ACTIONS(994), - [anon_sym_else] = ACTIONS(994), - [anon_sym_match] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_try] = ACTIONS(994), - [anon_sym_catch] = ACTIONS(994), - [anon_sym_return] = ACTIONS(994), - [anon_sym_source] = ACTIONS(994), - [anon_sym_source_DASHenv] = ACTIONS(994), - [anon_sym_register] = ACTIONS(994), - [anon_sym_hide] = ACTIONS(994), - [anon_sym_hide_DASHenv] = ACTIONS(994), - [anon_sym_overlay] = ACTIONS(994), - [anon_sym_as] = ACTIONS(994), - [anon_sym_QMARK2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(996), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(996), - [aux_sym__val_number_decimal_token1] = ACTIONS(994), - [aux_sym__val_number_decimal_token2] = ACTIONS(996), - [aux_sym__val_number_decimal_token3] = ACTIONS(996), - [aux_sym__val_number_decimal_token4] = ACTIONS(996), - [aux_sym__val_number_token1] = ACTIONS(996), - [aux_sym__val_number_token2] = ACTIONS(996), - [aux_sym__val_number_token3] = ACTIONS(996), - [aux_sym__val_number_token4] = ACTIONS(994), - [aux_sym__val_number_token5] = ACTIONS(994), - [aux_sym__val_number_token6] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(996), - [sym__str_single_quotes] = ACTIONS(996), - [sym__str_back_ticks] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(996), - [aux_sym_record_entry_token1] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(996), - }, - [499] = { - [sym_cell_path] = STATE(745), - [sym_path] = STATE(689), - [sym_comment] = STATE(499), - [aux_sym_cell_path_repeat1] = STATE(522), - [anon_sym_export] = ACTIONS(2086), - [anon_sym_alias] = ACTIONS(2086), - [anon_sym_let] = ACTIONS(2086), - [anon_sym_let_DASHenv] = ACTIONS(2086), - [anon_sym_mut] = ACTIONS(2086), - [anon_sym_const] = ACTIONS(2086), - [aux_sym_cmd_identifier_token1] = ACTIONS(2086), - [aux_sym_cmd_identifier_token2] = ACTIONS(2088), - [aux_sym_cmd_identifier_token3] = ACTIONS(2088), - [aux_sym_cmd_identifier_token4] = ACTIONS(2088), - [aux_sym_cmd_identifier_token5] = ACTIONS(2088), - [aux_sym_cmd_identifier_token6] = ACTIONS(2088), - [aux_sym_cmd_identifier_token7] = ACTIONS(2088), - [aux_sym_cmd_identifier_token8] = ACTIONS(2086), - [aux_sym_cmd_identifier_token9] = ACTIONS(2086), - [aux_sym_cmd_identifier_token10] = ACTIONS(2088), - [aux_sym_cmd_identifier_token11] = ACTIONS(2088), - [aux_sym_cmd_identifier_token12] = ACTIONS(2086), - [aux_sym_cmd_identifier_token13] = ACTIONS(2086), - [aux_sym_cmd_identifier_token14] = ACTIONS(2086), - [aux_sym_cmd_identifier_token15] = ACTIONS(2086), - [aux_sym_cmd_identifier_token16] = ACTIONS(2088), - [aux_sym_cmd_identifier_token17] = ACTIONS(2088), - [aux_sym_cmd_identifier_token18] = ACTIONS(2088), - [aux_sym_cmd_identifier_token19] = ACTIONS(2088), - [aux_sym_cmd_identifier_token20] = ACTIONS(2088), - [aux_sym_cmd_identifier_token21] = ACTIONS(2088), - [aux_sym_cmd_identifier_token22] = ACTIONS(2088), - [aux_sym_cmd_identifier_token23] = ACTIONS(2088), - [aux_sym_cmd_identifier_token24] = ACTIONS(2088), - [aux_sym_cmd_identifier_token25] = ACTIONS(2088), - [aux_sym_cmd_identifier_token26] = ACTIONS(2088), - [aux_sym_cmd_identifier_token27] = ACTIONS(2088), - [aux_sym_cmd_identifier_token28] = ACTIONS(2088), - [aux_sym_cmd_identifier_token29] = ACTIONS(2088), - [aux_sym_cmd_identifier_token30] = ACTIONS(2088), - [aux_sym_cmd_identifier_token31] = ACTIONS(2088), - [aux_sym_cmd_identifier_token32] = ACTIONS(2088), - [aux_sym_cmd_identifier_token33] = ACTIONS(2088), - [aux_sym_cmd_identifier_token34] = ACTIONS(2086), - [aux_sym_cmd_identifier_token35] = ACTIONS(2088), - [aux_sym_cmd_identifier_token36] = ACTIONS(2088), - [aux_sym_cmd_identifier_token37] = ACTIONS(2088), - [aux_sym_cmd_identifier_token38] = ACTIONS(2086), - [aux_sym_cmd_identifier_token39] = ACTIONS(2088), - [aux_sym_cmd_identifier_token40] = ACTIONS(2088), - [anon_sym_def] = ACTIONS(2086), - [anon_sym_export_DASHenv] = ACTIONS(2086), - [anon_sym_extern] = ACTIONS(2086), - [anon_sym_module] = ACTIONS(2086), - [anon_sym_use] = ACTIONS(2086), - [anon_sym_LPAREN] = ACTIONS(2088), - [anon_sym_DOLLAR] = ACTIONS(2088), - [anon_sym_error] = ACTIONS(2086), - [anon_sym_DASH2] = ACTIONS(2086), - [anon_sym_break] = ACTIONS(2086), - [anon_sym_continue] = ACTIONS(2086), - [anon_sym_for] = ACTIONS(2086), - [anon_sym_in2] = ACTIONS(2086), - [anon_sym_loop] = ACTIONS(2086), - [anon_sym_make] = ACTIONS(2086), - [anon_sym_while] = ACTIONS(2086), - [anon_sym_do] = ACTIONS(2086), - [anon_sym_if] = ACTIONS(2086), - [anon_sym_else] = ACTIONS(2086), - [anon_sym_match] = ACTIONS(2086), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_try] = ACTIONS(2086), - [anon_sym_catch] = ACTIONS(2086), - [anon_sym_return] = ACTIONS(2086), - [anon_sym_source] = ACTIONS(2086), - [anon_sym_source_DASHenv] = ACTIONS(2086), - [anon_sym_register] = ACTIONS(2086), - [anon_sym_hide] = ACTIONS(2086), - [anon_sym_hide_DASHenv] = ACTIONS(2086), - [anon_sym_overlay] = ACTIONS(2086), - [anon_sym_as] = ACTIONS(2086), - [anon_sym_PLUS2] = ACTIONS(2086), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2088), - [anon_sym_DOT] = ACTIONS(2110), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2088), - [aux_sym__val_number_decimal_token1] = ACTIONS(2086), - [aux_sym__val_number_decimal_token2] = ACTIONS(2088), - [aux_sym__val_number_decimal_token3] = ACTIONS(2088), - [aux_sym__val_number_decimal_token4] = ACTIONS(2088), - [aux_sym__val_number_token1] = ACTIONS(2088), - [aux_sym__val_number_token2] = ACTIONS(2088), - [aux_sym__val_number_token3] = ACTIONS(2088), - [aux_sym__val_number_token4] = ACTIONS(2086), - [aux_sym__val_number_token5] = ACTIONS(2086), - [aux_sym__val_number_token6] = ACTIONS(2086), - [anon_sym_DQUOTE] = ACTIONS(2088), - [sym__str_single_quotes] = ACTIONS(2088), - [sym__str_back_ticks] = ACTIONS(2088), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2088), - }, - [500] = { - [sym_cell_path] = STATE(750), - [sym_path] = STATE(689), - [sym_comment] = STATE(500), - [aux_sym_cell_path_repeat1] = STATE(522), - [anon_sym_export] = ACTIONS(1913), - [anon_sym_alias] = ACTIONS(1913), - [anon_sym_let] = ACTIONS(1913), - [anon_sym_let_DASHenv] = ACTIONS(1913), - [anon_sym_mut] = ACTIONS(1913), - [anon_sym_const] = ACTIONS(1913), - [aux_sym_cmd_identifier_token1] = ACTIONS(1913), - [aux_sym_cmd_identifier_token2] = ACTIONS(1915), - [aux_sym_cmd_identifier_token3] = ACTIONS(1915), - [aux_sym_cmd_identifier_token4] = ACTIONS(1915), - [aux_sym_cmd_identifier_token5] = ACTIONS(1915), - [aux_sym_cmd_identifier_token6] = ACTIONS(1915), - [aux_sym_cmd_identifier_token7] = ACTIONS(1915), - [aux_sym_cmd_identifier_token8] = ACTIONS(1913), - [aux_sym_cmd_identifier_token9] = ACTIONS(1913), - [aux_sym_cmd_identifier_token10] = ACTIONS(1915), - [aux_sym_cmd_identifier_token11] = ACTIONS(1915), - [aux_sym_cmd_identifier_token12] = ACTIONS(1913), - [aux_sym_cmd_identifier_token13] = ACTIONS(1913), - [aux_sym_cmd_identifier_token14] = ACTIONS(1913), - [aux_sym_cmd_identifier_token15] = ACTIONS(1913), - [aux_sym_cmd_identifier_token16] = ACTIONS(1915), - [aux_sym_cmd_identifier_token17] = ACTIONS(1915), - [aux_sym_cmd_identifier_token18] = ACTIONS(1915), - [aux_sym_cmd_identifier_token19] = ACTIONS(1915), - [aux_sym_cmd_identifier_token20] = ACTIONS(1915), - [aux_sym_cmd_identifier_token21] = ACTIONS(1915), - [aux_sym_cmd_identifier_token22] = ACTIONS(1915), - [aux_sym_cmd_identifier_token23] = ACTIONS(1915), - [aux_sym_cmd_identifier_token24] = ACTIONS(1915), - [aux_sym_cmd_identifier_token25] = ACTIONS(1915), - [aux_sym_cmd_identifier_token26] = ACTIONS(1915), - [aux_sym_cmd_identifier_token27] = ACTIONS(1915), - [aux_sym_cmd_identifier_token28] = ACTIONS(1915), - [aux_sym_cmd_identifier_token29] = ACTIONS(1915), - [aux_sym_cmd_identifier_token30] = ACTIONS(1915), - [aux_sym_cmd_identifier_token31] = ACTIONS(1915), - [aux_sym_cmd_identifier_token32] = ACTIONS(1915), - [aux_sym_cmd_identifier_token33] = ACTIONS(1915), - [aux_sym_cmd_identifier_token34] = ACTIONS(1913), - [aux_sym_cmd_identifier_token35] = ACTIONS(1915), - [aux_sym_cmd_identifier_token36] = ACTIONS(1915), - [aux_sym_cmd_identifier_token37] = ACTIONS(1915), - [aux_sym_cmd_identifier_token38] = ACTIONS(1913), - [aux_sym_cmd_identifier_token39] = ACTIONS(1915), - [aux_sym_cmd_identifier_token40] = ACTIONS(1915), - [anon_sym_def] = ACTIONS(1913), - [anon_sym_export_DASHenv] = ACTIONS(1913), - [anon_sym_extern] = ACTIONS(1913), - [anon_sym_module] = ACTIONS(1913), - [anon_sym_use] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_DOLLAR] = ACTIONS(1915), - [anon_sym_error] = ACTIONS(1913), - [anon_sym_DASH2] = ACTIONS(1913), - [anon_sym_break] = ACTIONS(1913), - [anon_sym_continue] = ACTIONS(1913), - [anon_sym_for] = ACTIONS(1913), - [anon_sym_in2] = ACTIONS(1913), - [anon_sym_loop] = ACTIONS(1913), - [anon_sym_make] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1913), - [anon_sym_do] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1913), - [anon_sym_else] = ACTIONS(1913), - [anon_sym_match] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1915), - [anon_sym_try] = ACTIONS(1913), - [anon_sym_catch] = ACTIONS(1913), - [anon_sym_return] = ACTIONS(1913), - [anon_sym_source] = ACTIONS(1913), - [anon_sym_source_DASHenv] = ACTIONS(1913), - [anon_sym_register] = ACTIONS(1913), - [anon_sym_hide] = ACTIONS(1913), - [anon_sym_hide_DASHenv] = ACTIONS(1913), - [anon_sym_overlay] = ACTIONS(1913), - [anon_sym_as] = ACTIONS(1913), - [anon_sym_PLUS2] = ACTIONS(1913), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1915), - [anon_sym_DOT] = ACTIONS(2110), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1915), - [aux_sym__val_number_decimal_token1] = ACTIONS(1913), - [aux_sym__val_number_decimal_token2] = ACTIONS(1915), - [aux_sym__val_number_decimal_token3] = ACTIONS(1915), - [aux_sym__val_number_decimal_token4] = ACTIONS(1915), - [aux_sym__val_number_token1] = ACTIONS(1915), - [aux_sym__val_number_token2] = ACTIONS(1915), - [aux_sym__val_number_token3] = ACTIONS(1915), - [aux_sym__val_number_token4] = ACTIONS(1913), - [aux_sym__val_number_token5] = ACTIONS(1913), - [aux_sym__val_number_token6] = ACTIONS(1913), - [anon_sym_DQUOTE] = ACTIONS(1915), - [sym__str_single_quotes] = ACTIONS(1915), - [sym__str_back_ticks] = ACTIONS(1915), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1915), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1915), - }, - [501] = { - [sym_comment] = STATE(501), - [anon_sym_export] = ACTIONS(2151), - [anon_sym_alias] = ACTIONS(2151), - [anon_sym_let] = ACTIONS(2151), - [anon_sym_let_DASHenv] = ACTIONS(2151), - [anon_sym_mut] = ACTIONS(2151), - [anon_sym_const] = ACTIONS(2151), - [aux_sym_cmd_identifier_token1] = ACTIONS(2151), - [aux_sym_cmd_identifier_token2] = ACTIONS(2151), - [aux_sym_cmd_identifier_token3] = ACTIONS(2151), - [aux_sym_cmd_identifier_token4] = ACTIONS(2151), - [aux_sym_cmd_identifier_token5] = ACTIONS(2151), - [aux_sym_cmd_identifier_token6] = ACTIONS(2151), - [aux_sym_cmd_identifier_token7] = ACTIONS(2151), - [aux_sym_cmd_identifier_token8] = ACTIONS(2151), - [aux_sym_cmd_identifier_token9] = ACTIONS(2151), - [aux_sym_cmd_identifier_token10] = ACTIONS(2151), - [aux_sym_cmd_identifier_token11] = ACTIONS(2151), - [aux_sym_cmd_identifier_token12] = ACTIONS(2151), - [aux_sym_cmd_identifier_token13] = ACTIONS(2151), - [aux_sym_cmd_identifier_token14] = ACTIONS(2151), - [aux_sym_cmd_identifier_token15] = ACTIONS(2151), - [aux_sym_cmd_identifier_token16] = ACTIONS(2151), - [aux_sym_cmd_identifier_token17] = ACTIONS(2151), - [aux_sym_cmd_identifier_token18] = ACTIONS(2151), - [aux_sym_cmd_identifier_token19] = ACTIONS(2151), - [aux_sym_cmd_identifier_token20] = ACTIONS(2151), - [aux_sym_cmd_identifier_token21] = ACTIONS(2151), - [aux_sym_cmd_identifier_token22] = ACTIONS(2151), - [aux_sym_cmd_identifier_token23] = ACTIONS(2151), - [aux_sym_cmd_identifier_token24] = ACTIONS(2151), - [aux_sym_cmd_identifier_token25] = ACTIONS(2151), - [aux_sym_cmd_identifier_token26] = ACTIONS(2151), - [aux_sym_cmd_identifier_token27] = ACTIONS(2151), - [aux_sym_cmd_identifier_token28] = ACTIONS(2151), - [aux_sym_cmd_identifier_token29] = ACTIONS(2151), - [aux_sym_cmd_identifier_token30] = ACTIONS(2151), - [aux_sym_cmd_identifier_token31] = ACTIONS(2151), - [aux_sym_cmd_identifier_token32] = ACTIONS(2151), - [aux_sym_cmd_identifier_token33] = ACTIONS(2151), - [aux_sym_cmd_identifier_token34] = ACTIONS(2151), - [aux_sym_cmd_identifier_token35] = ACTIONS(2151), - [aux_sym_cmd_identifier_token36] = ACTIONS(2151), - [aux_sym_cmd_identifier_token37] = ACTIONS(2151), - [aux_sym_cmd_identifier_token38] = ACTIONS(2151), - [aux_sym_cmd_identifier_token39] = ACTIONS(2151), - [aux_sym_cmd_identifier_token40] = ACTIONS(2151), - [anon_sym_def] = ACTIONS(2151), - [anon_sym_export_DASHenv] = ACTIONS(2151), - [anon_sym_extern] = ACTIONS(2151), - [anon_sym_module] = ACTIONS(2151), - [anon_sym_use] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_error] = ACTIONS(2151), - [anon_sym_DASH2] = ACTIONS(2151), - [anon_sym_break] = ACTIONS(2151), - [anon_sym_continue] = ACTIONS(2151), - [anon_sym_for] = ACTIONS(2151), - [anon_sym_in2] = ACTIONS(2151), - [anon_sym_loop] = ACTIONS(2151), - [anon_sym_make] = ACTIONS(2151), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_do] = ACTIONS(2151), - [anon_sym_if] = ACTIONS(2151), - [anon_sym_else] = ACTIONS(2151), - [anon_sym_match] = ACTIONS(2151), - [anon_sym_RBRACE] = ACTIONS(2151), - [anon_sym_try] = ACTIONS(2151), - [anon_sym_catch] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2151), - [anon_sym_source] = ACTIONS(2151), - [anon_sym_source_DASHenv] = ACTIONS(2151), - [anon_sym_register] = ACTIONS(2151), - [anon_sym_hide] = ACTIONS(2151), - [anon_sym_hide_DASHenv] = ACTIONS(2151), - [anon_sym_overlay] = ACTIONS(2151), - [anon_sym_as] = ACTIONS(2151), - [anon_sym_PLUS2] = ACTIONS(2151), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2151), - [anon_sym_DOT_DOT2] = ACTIONS(2112), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2114), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2114), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2151), - [aux_sym__val_number_decimal_token1] = ACTIONS(2151), - [aux_sym__val_number_decimal_token2] = ACTIONS(2151), - [aux_sym__val_number_decimal_token3] = ACTIONS(2151), - [aux_sym__val_number_decimal_token4] = ACTIONS(2151), - [aux_sym__val_number_token1] = ACTIONS(2151), - [aux_sym__val_number_token2] = ACTIONS(2151), - [aux_sym__val_number_token3] = ACTIONS(2151), - [aux_sym__val_number_token4] = ACTIONS(2151), - [aux_sym__val_number_token5] = ACTIONS(2151), - [aux_sym__val_number_token6] = ACTIONS(2151), - [anon_sym_DQUOTE] = ACTIONS(2151), - [sym__str_single_quotes] = ACTIONS(2151), - [sym__str_back_ticks] = ACTIONS(2151), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2151), - [sym__entry_separator] = ACTIONS(2153), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2153), - }, - [502] = { - [sym_comment] = STATE(502), - [anon_sym_export] = ACTIONS(998), - [anon_sym_alias] = ACTIONS(998), - [anon_sym_let] = ACTIONS(998), - [anon_sym_let_DASHenv] = ACTIONS(998), - [anon_sym_mut] = ACTIONS(998), - [anon_sym_const] = ACTIONS(998), - [aux_sym_cmd_identifier_token1] = ACTIONS(998), - [aux_sym_cmd_identifier_token2] = ACTIONS(1000), - [aux_sym_cmd_identifier_token3] = ACTIONS(1000), - [aux_sym_cmd_identifier_token4] = ACTIONS(1000), - [aux_sym_cmd_identifier_token5] = ACTIONS(1000), - [aux_sym_cmd_identifier_token6] = ACTIONS(1000), - [aux_sym_cmd_identifier_token7] = ACTIONS(1000), - [aux_sym_cmd_identifier_token8] = ACTIONS(998), - [aux_sym_cmd_identifier_token9] = ACTIONS(998), - [aux_sym_cmd_identifier_token10] = ACTIONS(1000), - [aux_sym_cmd_identifier_token11] = ACTIONS(1000), - [aux_sym_cmd_identifier_token12] = ACTIONS(998), - [aux_sym_cmd_identifier_token13] = ACTIONS(998), - [aux_sym_cmd_identifier_token14] = ACTIONS(998), - [aux_sym_cmd_identifier_token15] = ACTIONS(998), - [aux_sym_cmd_identifier_token16] = ACTIONS(1000), - [aux_sym_cmd_identifier_token17] = ACTIONS(1000), - [aux_sym_cmd_identifier_token18] = ACTIONS(1000), - [aux_sym_cmd_identifier_token19] = ACTIONS(1000), - [aux_sym_cmd_identifier_token20] = ACTIONS(1000), - [aux_sym_cmd_identifier_token21] = ACTIONS(1000), - [aux_sym_cmd_identifier_token22] = ACTIONS(1000), - [aux_sym_cmd_identifier_token23] = ACTIONS(1000), - [aux_sym_cmd_identifier_token24] = ACTIONS(1000), - [aux_sym_cmd_identifier_token25] = ACTIONS(1000), - [aux_sym_cmd_identifier_token26] = ACTIONS(1000), - [aux_sym_cmd_identifier_token27] = ACTIONS(1000), - [aux_sym_cmd_identifier_token28] = ACTIONS(1000), - [aux_sym_cmd_identifier_token29] = ACTIONS(1000), - [aux_sym_cmd_identifier_token30] = ACTIONS(1000), - [aux_sym_cmd_identifier_token31] = ACTIONS(1000), - [aux_sym_cmd_identifier_token32] = ACTIONS(1000), - [aux_sym_cmd_identifier_token33] = ACTIONS(1000), - [aux_sym_cmd_identifier_token34] = ACTIONS(998), - [aux_sym_cmd_identifier_token35] = ACTIONS(1000), - [aux_sym_cmd_identifier_token36] = ACTIONS(1000), - [aux_sym_cmd_identifier_token37] = ACTIONS(1000), - [aux_sym_cmd_identifier_token38] = ACTIONS(998), - [aux_sym_cmd_identifier_token39] = ACTIONS(1000), - [aux_sym_cmd_identifier_token40] = ACTIONS(1000), - [anon_sym_def] = ACTIONS(998), - [anon_sym_export_DASHenv] = ACTIONS(998), - [anon_sym_extern] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_use] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(1000), - [anon_sym_COMMA] = ACTIONS(1000), - [anon_sym_DOLLAR] = ACTIONS(1000), - [anon_sym_error] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(998), - [anon_sym_break] = ACTIONS(998), - [anon_sym_continue] = ACTIONS(998), - [anon_sym_for] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_loop] = ACTIONS(998), - [anon_sym_make] = ACTIONS(998), - [anon_sym_while] = ACTIONS(998), - [anon_sym_do] = ACTIONS(998), - [anon_sym_if] = ACTIONS(998), - [anon_sym_else] = ACTIONS(998), - [anon_sym_match] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_try] = ACTIONS(998), - [anon_sym_catch] = ACTIONS(998), - [anon_sym_return] = ACTIONS(998), - [anon_sym_source] = ACTIONS(998), - [anon_sym_source_DASHenv] = ACTIONS(998), - [anon_sym_register] = ACTIONS(998), - [anon_sym_hide] = ACTIONS(998), - [anon_sym_hide_DASHenv] = ACTIONS(998), - [anon_sym_overlay] = ACTIONS(998), - [anon_sym_as] = ACTIONS(998), - [anon_sym_QMARK2] = ACTIONS(1000), - [anon_sym_PLUS2] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1000), - [anon_sym_DOT] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1000), - [aux_sym__val_number_decimal_token1] = ACTIONS(998), - [aux_sym__val_number_decimal_token2] = ACTIONS(1000), - [aux_sym__val_number_decimal_token3] = ACTIONS(1000), - [aux_sym__val_number_decimal_token4] = ACTIONS(1000), - [aux_sym__val_number_token1] = ACTIONS(1000), - [aux_sym__val_number_token2] = ACTIONS(1000), - [aux_sym__val_number_token3] = ACTIONS(1000), - [aux_sym__val_number_token4] = ACTIONS(998), - [aux_sym__val_number_token5] = ACTIONS(998), - [aux_sym__val_number_token6] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [sym__str_single_quotes] = ACTIONS(1000), - [sym__str_back_ticks] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1000), - [aux_sym_record_entry_token1] = ACTIONS(1000), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1000), - }, - [503] = { - [sym_comment] = STATE(503), - [anon_sym_export] = ACTIONS(1002), - [anon_sym_alias] = ACTIONS(1002), - [anon_sym_let] = ACTIONS(1002), - [anon_sym_let_DASHenv] = ACTIONS(1002), - [anon_sym_mut] = ACTIONS(1002), - [anon_sym_const] = ACTIONS(1002), - [aux_sym_cmd_identifier_token1] = ACTIONS(1002), - [aux_sym_cmd_identifier_token2] = ACTIONS(1004), - [aux_sym_cmd_identifier_token3] = ACTIONS(1004), - [aux_sym_cmd_identifier_token4] = ACTIONS(1004), - [aux_sym_cmd_identifier_token5] = ACTIONS(1004), - [aux_sym_cmd_identifier_token6] = ACTIONS(1004), - [aux_sym_cmd_identifier_token7] = ACTIONS(1004), - [aux_sym_cmd_identifier_token8] = ACTIONS(1002), - [aux_sym_cmd_identifier_token9] = ACTIONS(1002), - [aux_sym_cmd_identifier_token10] = ACTIONS(1004), - [aux_sym_cmd_identifier_token11] = ACTIONS(1004), - [aux_sym_cmd_identifier_token12] = ACTIONS(1002), - [aux_sym_cmd_identifier_token13] = ACTIONS(1002), - [aux_sym_cmd_identifier_token14] = ACTIONS(1002), - [aux_sym_cmd_identifier_token15] = ACTIONS(1002), - [aux_sym_cmd_identifier_token16] = ACTIONS(1004), - [aux_sym_cmd_identifier_token17] = ACTIONS(1004), - [aux_sym_cmd_identifier_token18] = ACTIONS(1004), - [aux_sym_cmd_identifier_token19] = ACTIONS(1004), - [aux_sym_cmd_identifier_token20] = ACTIONS(1004), - [aux_sym_cmd_identifier_token21] = ACTIONS(1004), - [aux_sym_cmd_identifier_token22] = ACTIONS(1004), - [aux_sym_cmd_identifier_token23] = ACTIONS(1004), - [aux_sym_cmd_identifier_token24] = ACTIONS(1004), - [aux_sym_cmd_identifier_token25] = ACTIONS(1004), - [aux_sym_cmd_identifier_token26] = ACTIONS(1004), - [aux_sym_cmd_identifier_token27] = ACTIONS(1004), - [aux_sym_cmd_identifier_token28] = ACTIONS(1004), - [aux_sym_cmd_identifier_token29] = ACTIONS(1004), - [aux_sym_cmd_identifier_token30] = ACTIONS(1004), - [aux_sym_cmd_identifier_token31] = ACTIONS(1004), - [aux_sym_cmd_identifier_token32] = ACTIONS(1004), - [aux_sym_cmd_identifier_token33] = ACTIONS(1004), - [aux_sym_cmd_identifier_token34] = ACTIONS(1002), - [aux_sym_cmd_identifier_token35] = ACTIONS(1004), - [aux_sym_cmd_identifier_token36] = ACTIONS(1004), - [aux_sym_cmd_identifier_token37] = ACTIONS(1004), - [aux_sym_cmd_identifier_token38] = ACTIONS(1002), - [aux_sym_cmd_identifier_token39] = ACTIONS(1004), - [aux_sym_cmd_identifier_token40] = ACTIONS(1004), - [anon_sym_def] = ACTIONS(1002), - [anon_sym_export_DASHenv] = ACTIONS(1002), - [anon_sym_extern] = ACTIONS(1002), - [anon_sym_module] = ACTIONS(1002), - [anon_sym_use] = ACTIONS(1002), - [anon_sym_LPAREN] = ACTIONS(1004), - [anon_sym_COMMA] = ACTIONS(1004), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_error] = ACTIONS(1002), - [anon_sym_DASH2] = ACTIONS(1002), - [anon_sym_break] = ACTIONS(1002), - [anon_sym_continue] = ACTIONS(1002), - [anon_sym_for] = ACTIONS(1002), - [anon_sym_in2] = ACTIONS(1002), - [anon_sym_loop] = ACTIONS(1002), - [anon_sym_make] = ACTIONS(1002), - [anon_sym_while] = ACTIONS(1002), - [anon_sym_do] = ACTIONS(1002), - [anon_sym_if] = ACTIONS(1002), - [anon_sym_else] = ACTIONS(1002), - [anon_sym_match] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1004), - [anon_sym_try] = ACTIONS(1002), - [anon_sym_catch] = ACTIONS(1002), - [anon_sym_return] = ACTIONS(1002), - [anon_sym_source] = ACTIONS(1002), - [anon_sym_source_DASHenv] = ACTIONS(1002), - [anon_sym_register] = ACTIONS(1002), - [anon_sym_hide] = ACTIONS(1002), - [anon_sym_hide_DASHenv] = ACTIONS(1002), - [anon_sym_overlay] = ACTIONS(1002), - [anon_sym_as] = ACTIONS(1002), - [anon_sym_QMARK2] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1004), - [anon_sym_DOT] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1004), - [aux_sym__val_number_decimal_token1] = ACTIONS(1002), - [aux_sym__val_number_decimal_token2] = ACTIONS(1004), - [aux_sym__val_number_decimal_token3] = ACTIONS(1004), - [aux_sym__val_number_decimal_token4] = ACTIONS(1004), - [aux_sym__val_number_token1] = ACTIONS(1004), - [aux_sym__val_number_token2] = ACTIONS(1004), - [aux_sym__val_number_token3] = ACTIONS(1004), - [aux_sym__val_number_token4] = ACTIONS(1002), - [aux_sym__val_number_token5] = ACTIONS(1002), - [aux_sym__val_number_token6] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1004), - [sym__str_single_quotes] = ACTIONS(1004), - [sym__str_back_ticks] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1004), - [aux_sym_record_entry_token1] = ACTIONS(1004), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1004), - }, - [504] = { - [sym_comment] = STATE(504), - [anon_sym_export] = ACTIONS(2155), - [anon_sym_alias] = ACTIONS(2155), - [anon_sym_let] = ACTIONS(2155), - [anon_sym_let_DASHenv] = ACTIONS(2155), - [anon_sym_mut] = ACTIONS(2155), - [anon_sym_const] = ACTIONS(2155), - [aux_sym_cmd_identifier_token1] = ACTIONS(2155), - [aux_sym_cmd_identifier_token2] = ACTIONS(2155), - [aux_sym_cmd_identifier_token3] = ACTIONS(2155), - [aux_sym_cmd_identifier_token4] = ACTIONS(2155), - [aux_sym_cmd_identifier_token5] = ACTIONS(2155), - [aux_sym_cmd_identifier_token6] = ACTIONS(2155), - [aux_sym_cmd_identifier_token7] = ACTIONS(2155), - [aux_sym_cmd_identifier_token8] = ACTIONS(2155), - [aux_sym_cmd_identifier_token9] = ACTIONS(2155), - [aux_sym_cmd_identifier_token10] = ACTIONS(2155), - [aux_sym_cmd_identifier_token11] = ACTIONS(2155), - [aux_sym_cmd_identifier_token12] = ACTIONS(2155), - [aux_sym_cmd_identifier_token13] = ACTIONS(2155), - [aux_sym_cmd_identifier_token14] = ACTIONS(2155), - [aux_sym_cmd_identifier_token15] = ACTIONS(2155), - [aux_sym_cmd_identifier_token16] = ACTIONS(2155), - [aux_sym_cmd_identifier_token17] = ACTIONS(2155), - [aux_sym_cmd_identifier_token18] = ACTIONS(2155), - [aux_sym_cmd_identifier_token19] = ACTIONS(2155), - [aux_sym_cmd_identifier_token20] = ACTIONS(2155), - [aux_sym_cmd_identifier_token21] = ACTIONS(2155), - [aux_sym_cmd_identifier_token22] = ACTIONS(2155), - [aux_sym_cmd_identifier_token23] = ACTIONS(2155), - [aux_sym_cmd_identifier_token24] = ACTIONS(2155), - [aux_sym_cmd_identifier_token25] = ACTIONS(2155), - [aux_sym_cmd_identifier_token26] = ACTIONS(2155), - [aux_sym_cmd_identifier_token27] = ACTIONS(2155), - [aux_sym_cmd_identifier_token28] = ACTIONS(2155), - [aux_sym_cmd_identifier_token29] = ACTIONS(2155), - [aux_sym_cmd_identifier_token30] = ACTIONS(2155), - [aux_sym_cmd_identifier_token31] = ACTIONS(2155), - [aux_sym_cmd_identifier_token32] = ACTIONS(2155), - [aux_sym_cmd_identifier_token33] = ACTIONS(2155), - [aux_sym_cmd_identifier_token34] = ACTIONS(2155), - [aux_sym_cmd_identifier_token35] = ACTIONS(2155), - [aux_sym_cmd_identifier_token36] = ACTIONS(2155), - [aux_sym_cmd_identifier_token37] = ACTIONS(2155), - [aux_sym_cmd_identifier_token38] = ACTIONS(2155), - [aux_sym_cmd_identifier_token39] = ACTIONS(2155), - [aux_sym_cmd_identifier_token40] = ACTIONS(2155), - [anon_sym_def] = ACTIONS(2155), - [anon_sym_export_DASHenv] = ACTIONS(2155), - [anon_sym_extern] = ACTIONS(2155), - [anon_sym_module] = ACTIONS(2155), - [anon_sym_use] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2155), - [anon_sym_error] = ACTIONS(2155), - [anon_sym_DASH2] = ACTIONS(2155), - [anon_sym_break] = ACTIONS(2155), - [anon_sym_continue] = ACTIONS(2155), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_in2] = ACTIONS(2155), - [anon_sym_loop] = ACTIONS(2155), - [anon_sym_make] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(2155), - [anon_sym_do] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2155), - [anon_sym_else] = ACTIONS(2155), - [anon_sym_match] = ACTIONS(2155), - [anon_sym_RBRACE] = ACTIONS(2155), - [anon_sym_try] = ACTIONS(2155), - [anon_sym_catch] = ACTIONS(2155), - [anon_sym_return] = ACTIONS(2155), - [anon_sym_source] = ACTIONS(2155), - [anon_sym_source_DASHenv] = ACTIONS(2155), - [anon_sym_register] = ACTIONS(2155), - [anon_sym_hide] = ACTIONS(2155), - [anon_sym_hide_DASHenv] = ACTIONS(2155), - [anon_sym_overlay] = ACTIONS(2155), - [anon_sym_as] = ACTIONS(2155), - [anon_sym_PLUS2] = ACTIONS(2155), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2155), - [anon_sym_DOT_DOT2] = ACTIONS(2112), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2114), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2114), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2155), - [aux_sym__val_number_decimal_token1] = ACTIONS(2155), - [aux_sym__val_number_decimal_token2] = ACTIONS(2155), - [aux_sym__val_number_decimal_token3] = ACTIONS(2155), - [aux_sym__val_number_decimal_token4] = ACTIONS(2155), - [aux_sym__val_number_token1] = ACTIONS(2155), - [aux_sym__val_number_token2] = ACTIONS(2155), - [aux_sym__val_number_token3] = ACTIONS(2155), - [aux_sym__val_number_token4] = ACTIONS(2155), - [aux_sym__val_number_token5] = ACTIONS(2155), - [aux_sym__val_number_token6] = ACTIONS(2155), - [anon_sym_DQUOTE] = ACTIONS(2155), - [sym__str_single_quotes] = ACTIONS(2155), - [sym__str_back_ticks] = ACTIONS(2155), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2155), - [sym__entry_separator] = ACTIONS(2157), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2157), - }, - [505] = { - [sym_cell_path] = STATE(705), - [sym_path] = STATE(689), - [sym_comment] = STATE(505), - [aux_sym_cell_path_repeat1] = STATE(522), - [anon_sym_export] = ACTIONS(2094), - [anon_sym_alias] = ACTIONS(2094), - [anon_sym_let] = ACTIONS(2094), - [anon_sym_let_DASHenv] = ACTIONS(2094), - [anon_sym_mut] = ACTIONS(2094), - [anon_sym_const] = ACTIONS(2094), - [aux_sym_cmd_identifier_token1] = ACTIONS(2094), - [aux_sym_cmd_identifier_token2] = ACTIONS(2096), - [aux_sym_cmd_identifier_token3] = ACTIONS(2096), - [aux_sym_cmd_identifier_token4] = ACTIONS(2096), - [aux_sym_cmd_identifier_token5] = ACTIONS(2096), - [aux_sym_cmd_identifier_token6] = ACTIONS(2096), - [aux_sym_cmd_identifier_token7] = ACTIONS(2096), - [aux_sym_cmd_identifier_token8] = ACTIONS(2094), - [aux_sym_cmd_identifier_token9] = ACTIONS(2094), - [aux_sym_cmd_identifier_token10] = ACTIONS(2096), - [aux_sym_cmd_identifier_token11] = ACTIONS(2096), - [aux_sym_cmd_identifier_token12] = ACTIONS(2094), - [aux_sym_cmd_identifier_token13] = ACTIONS(2094), - [aux_sym_cmd_identifier_token14] = ACTIONS(2094), - [aux_sym_cmd_identifier_token15] = ACTIONS(2094), - [aux_sym_cmd_identifier_token16] = ACTIONS(2096), - [aux_sym_cmd_identifier_token17] = ACTIONS(2096), - [aux_sym_cmd_identifier_token18] = ACTIONS(2096), - [aux_sym_cmd_identifier_token19] = ACTIONS(2096), - [aux_sym_cmd_identifier_token20] = ACTIONS(2096), - [aux_sym_cmd_identifier_token21] = ACTIONS(2096), - [aux_sym_cmd_identifier_token22] = ACTIONS(2096), - [aux_sym_cmd_identifier_token23] = ACTIONS(2096), - [aux_sym_cmd_identifier_token24] = ACTIONS(2096), - [aux_sym_cmd_identifier_token25] = ACTIONS(2096), - [aux_sym_cmd_identifier_token26] = ACTIONS(2096), - [aux_sym_cmd_identifier_token27] = ACTIONS(2096), - [aux_sym_cmd_identifier_token28] = ACTIONS(2096), - [aux_sym_cmd_identifier_token29] = ACTIONS(2096), - [aux_sym_cmd_identifier_token30] = ACTIONS(2096), - [aux_sym_cmd_identifier_token31] = ACTIONS(2096), - [aux_sym_cmd_identifier_token32] = ACTIONS(2096), - [aux_sym_cmd_identifier_token33] = ACTIONS(2096), - [aux_sym_cmd_identifier_token34] = ACTIONS(2094), - [aux_sym_cmd_identifier_token35] = ACTIONS(2096), - [aux_sym_cmd_identifier_token36] = ACTIONS(2096), - [aux_sym_cmd_identifier_token37] = ACTIONS(2096), - [aux_sym_cmd_identifier_token38] = ACTIONS(2094), - [aux_sym_cmd_identifier_token39] = ACTIONS(2096), - [aux_sym_cmd_identifier_token40] = ACTIONS(2096), - [anon_sym_def] = ACTIONS(2094), - [anon_sym_export_DASHenv] = ACTIONS(2094), - [anon_sym_extern] = ACTIONS(2094), - [anon_sym_module] = ACTIONS(2094), - [anon_sym_use] = ACTIONS(2094), - [anon_sym_LPAREN] = ACTIONS(2096), - [anon_sym_DOLLAR] = ACTIONS(2096), - [anon_sym_error] = ACTIONS(2094), - [anon_sym_DASH2] = ACTIONS(2094), - [anon_sym_break] = ACTIONS(2094), - [anon_sym_continue] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2094), - [anon_sym_in2] = ACTIONS(2094), - [anon_sym_loop] = ACTIONS(2094), - [anon_sym_make] = ACTIONS(2094), - [anon_sym_while] = ACTIONS(2094), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_if] = ACTIONS(2094), - [anon_sym_else] = ACTIONS(2094), - [anon_sym_match] = ACTIONS(2094), - [anon_sym_RBRACE] = ACTIONS(2096), - [anon_sym_try] = ACTIONS(2094), - [anon_sym_catch] = ACTIONS(2094), - [anon_sym_return] = ACTIONS(2094), - [anon_sym_source] = ACTIONS(2094), - [anon_sym_source_DASHenv] = ACTIONS(2094), - [anon_sym_register] = ACTIONS(2094), - [anon_sym_hide] = ACTIONS(2094), - [anon_sym_hide_DASHenv] = ACTIONS(2094), - [anon_sym_overlay] = ACTIONS(2094), - [anon_sym_as] = ACTIONS(2094), - [anon_sym_PLUS2] = ACTIONS(2094), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2096), - [anon_sym_DOT] = ACTIONS(2110), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2096), - [aux_sym__val_number_decimal_token1] = ACTIONS(2094), - [aux_sym__val_number_decimal_token2] = ACTIONS(2096), - [aux_sym__val_number_decimal_token3] = ACTIONS(2096), - [aux_sym__val_number_decimal_token4] = ACTIONS(2096), - [aux_sym__val_number_token1] = ACTIONS(2096), - [aux_sym__val_number_token2] = ACTIONS(2096), - [aux_sym__val_number_token3] = ACTIONS(2096), - [aux_sym__val_number_token4] = ACTIONS(2094), - [aux_sym__val_number_token5] = ACTIONS(2094), - [aux_sym__val_number_token6] = ACTIONS(2094), - [anon_sym_DQUOTE] = ACTIONS(2096), - [sym__str_single_quotes] = ACTIONS(2096), - [sym__str_back_ticks] = ACTIONS(2096), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2096), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2096), - }, - [506] = { - [sym_cell_path] = STATE(764), - [sym_path] = STATE(689), - [sym_comment] = STATE(506), - [aux_sym_cell_path_repeat1] = STATE(522), - [anon_sym_export] = ACTIONS(2098), - [anon_sym_alias] = ACTIONS(2098), - [anon_sym_let] = ACTIONS(2098), - [anon_sym_let_DASHenv] = ACTIONS(2098), - [anon_sym_mut] = ACTIONS(2098), - [anon_sym_const] = ACTIONS(2098), - [aux_sym_cmd_identifier_token1] = ACTIONS(2098), - [aux_sym_cmd_identifier_token2] = ACTIONS(2100), - [aux_sym_cmd_identifier_token3] = ACTIONS(2100), - [aux_sym_cmd_identifier_token4] = ACTIONS(2100), - [aux_sym_cmd_identifier_token5] = ACTIONS(2100), - [aux_sym_cmd_identifier_token6] = ACTIONS(2100), - [aux_sym_cmd_identifier_token7] = ACTIONS(2100), - [aux_sym_cmd_identifier_token8] = ACTIONS(2098), - [aux_sym_cmd_identifier_token9] = ACTIONS(2098), - [aux_sym_cmd_identifier_token10] = ACTIONS(2100), - [aux_sym_cmd_identifier_token11] = ACTIONS(2100), - [aux_sym_cmd_identifier_token12] = ACTIONS(2098), - [aux_sym_cmd_identifier_token13] = ACTIONS(2098), - [aux_sym_cmd_identifier_token14] = ACTIONS(2098), - [aux_sym_cmd_identifier_token15] = ACTIONS(2098), - [aux_sym_cmd_identifier_token16] = ACTIONS(2100), - [aux_sym_cmd_identifier_token17] = ACTIONS(2100), - [aux_sym_cmd_identifier_token18] = ACTIONS(2100), - [aux_sym_cmd_identifier_token19] = ACTIONS(2100), - [aux_sym_cmd_identifier_token20] = ACTIONS(2100), - [aux_sym_cmd_identifier_token21] = ACTIONS(2100), - [aux_sym_cmd_identifier_token22] = ACTIONS(2100), - [aux_sym_cmd_identifier_token23] = ACTIONS(2100), - [aux_sym_cmd_identifier_token24] = ACTIONS(2100), - [aux_sym_cmd_identifier_token25] = ACTIONS(2100), - [aux_sym_cmd_identifier_token26] = ACTIONS(2100), - [aux_sym_cmd_identifier_token27] = ACTIONS(2100), - [aux_sym_cmd_identifier_token28] = ACTIONS(2100), - [aux_sym_cmd_identifier_token29] = ACTIONS(2100), - [aux_sym_cmd_identifier_token30] = ACTIONS(2100), - [aux_sym_cmd_identifier_token31] = ACTIONS(2100), - [aux_sym_cmd_identifier_token32] = ACTIONS(2100), - [aux_sym_cmd_identifier_token33] = ACTIONS(2100), - [aux_sym_cmd_identifier_token34] = ACTIONS(2098), - [aux_sym_cmd_identifier_token35] = ACTIONS(2100), - [aux_sym_cmd_identifier_token36] = ACTIONS(2100), - [aux_sym_cmd_identifier_token37] = ACTIONS(2100), - [aux_sym_cmd_identifier_token38] = ACTIONS(2098), - [aux_sym_cmd_identifier_token39] = ACTIONS(2100), - [aux_sym_cmd_identifier_token40] = ACTIONS(2100), - [anon_sym_def] = ACTIONS(2098), - [anon_sym_export_DASHenv] = ACTIONS(2098), - [anon_sym_extern] = ACTIONS(2098), - [anon_sym_module] = ACTIONS(2098), - [anon_sym_use] = ACTIONS(2098), - [anon_sym_LPAREN] = ACTIONS(2100), - [anon_sym_DOLLAR] = ACTIONS(2100), - [anon_sym_error] = ACTIONS(2098), - [anon_sym_DASH2] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2098), - [anon_sym_continue] = ACTIONS(2098), - [anon_sym_for] = ACTIONS(2098), - [anon_sym_in2] = ACTIONS(2098), - [anon_sym_loop] = ACTIONS(2098), - [anon_sym_make] = ACTIONS(2098), - [anon_sym_while] = ACTIONS(2098), - [anon_sym_do] = ACTIONS(2098), - [anon_sym_if] = ACTIONS(2098), - [anon_sym_else] = ACTIONS(2098), - [anon_sym_match] = ACTIONS(2098), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_try] = ACTIONS(2098), - [anon_sym_catch] = ACTIONS(2098), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_source] = ACTIONS(2098), - [anon_sym_source_DASHenv] = ACTIONS(2098), - [anon_sym_register] = ACTIONS(2098), - [anon_sym_hide] = ACTIONS(2098), - [anon_sym_hide_DASHenv] = ACTIONS(2098), - [anon_sym_overlay] = ACTIONS(2098), - [anon_sym_as] = ACTIONS(2098), - [anon_sym_PLUS2] = ACTIONS(2098), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2100), - [anon_sym_DOT] = ACTIONS(2110), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2100), - [aux_sym__val_number_decimal_token1] = ACTIONS(2098), - [aux_sym__val_number_decimal_token2] = ACTIONS(2100), - [aux_sym__val_number_decimal_token3] = ACTIONS(2100), - [aux_sym__val_number_decimal_token4] = ACTIONS(2100), - [aux_sym__val_number_token1] = ACTIONS(2100), - [aux_sym__val_number_token2] = ACTIONS(2100), - [aux_sym__val_number_token3] = ACTIONS(2100), - [aux_sym__val_number_token4] = ACTIONS(2098), - [aux_sym__val_number_token5] = ACTIONS(2098), - [aux_sym__val_number_token6] = ACTIONS(2098), - [anon_sym_DQUOTE] = ACTIONS(2100), - [sym__str_single_quotes] = ACTIONS(2100), - [sym__str_back_ticks] = ACTIONS(2100), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2100), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2100), - }, - [507] = { - [sym_comment] = STATE(507), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [aux_sym_cmd_identifier_token1] = ACTIONS(990), - [aux_sym_cmd_identifier_token2] = ACTIONS(992), - [aux_sym_cmd_identifier_token3] = ACTIONS(992), - [aux_sym_cmd_identifier_token4] = ACTIONS(992), - [aux_sym_cmd_identifier_token5] = ACTIONS(992), - [aux_sym_cmd_identifier_token6] = ACTIONS(992), - [aux_sym_cmd_identifier_token7] = ACTIONS(992), - [aux_sym_cmd_identifier_token8] = ACTIONS(990), - [aux_sym_cmd_identifier_token9] = ACTIONS(990), - [aux_sym_cmd_identifier_token10] = ACTIONS(992), - [aux_sym_cmd_identifier_token11] = ACTIONS(992), - [aux_sym_cmd_identifier_token12] = ACTIONS(990), - [aux_sym_cmd_identifier_token13] = ACTIONS(990), - [aux_sym_cmd_identifier_token14] = ACTIONS(990), - [aux_sym_cmd_identifier_token15] = ACTIONS(990), - [aux_sym_cmd_identifier_token16] = ACTIONS(992), - [aux_sym_cmd_identifier_token17] = ACTIONS(992), - [aux_sym_cmd_identifier_token18] = ACTIONS(992), - [aux_sym_cmd_identifier_token19] = ACTIONS(992), - [aux_sym_cmd_identifier_token20] = ACTIONS(992), - [aux_sym_cmd_identifier_token21] = ACTIONS(992), - [aux_sym_cmd_identifier_token22] = ACTIONS(992), - [aux_sym_cmd_identifier_token23] = ACTIONS(992), - [aux_sym_cmd_identifier_token24] = ACTIONS(992), - [aux_sym_cmd_identifier_token25] = ACTIONS(992), - [aux_sym_cmd_identifier_token26] = ACTIONS(992), - [aux_sym_cmd_identifier_token27] = ACTIONS(992), - [aux_sym_cmd_identifier_token28] = ACTIONS(992), - [aux_sym_cmd_identifier_token29] = ACTIONS(992), - [aux_sym_cmd_identifier_token30] = ACTIONS(992), - [aux_sym_cmd_identifier_token31] = ACTIONS(992), - [aux_sym_cmd_identifier_token32] = ACTIONS(992), - [aux_sym_cmd_identifier_token33] = ACTIONS(992), - [aux_sym_cmd_identifier_token34] = ACTIONS(990), - [aux_sym_cmd_identifier_token35] = ACTIONS(992), - [aux_sym_cmd_identifier_token36] = ACTIONS(992), - [aux_sym_cmd_identifier_token37] = ACTIONS(992), - [aux_sym_cmd_identifier_token38] = ACTIONS(990), - [aux_sym_cmd_identifier_token39] = ACTIONS(992), - [aux_sym_cmd_identifier_token40] = ACTIONS(992), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_COMMA] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_error] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in2] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_make] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_try] = ACTIONS(990), - [anon_sym_catch] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(992), - [anon_sym_PLUS2] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(992), - [aux_sym__val_number_decimal_token3] = ACTIONS(992), - [aux_sym__val_number_decimal_token4] = ACTIONS(992), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(992), - [aux_sym_record_entry_token1] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(992), - }, - [508] = { - [sym_cell_path] = STATE(766), - [sym_path] = STATE(689), - [sym_comment] = STATE(508), - [aux_sym_cell_path_repeat1] = STATE(522), - [anon_sym_export] = ACTIONS(2106), - [anon_sym_alias] = ACTIONS(2106), - [anon_sym_let] = ACTIONS(2106), - [anon_sym_let_DASHenv] = ACTIONS(2106), - [anon_sym_mut] = ACTIONS(2106), - [anon_sym_const] = ACTIONS(2106), - [aux_sym_cmd_identifier_token1] = ACTIONS(2106), - [aux_sym_cmd_identifier_token2] = ACTIONS(2108), - [aux_sym_cmd_identifier_token3] = ACTIONS(2108), - [aux_sym_cmd_identifier_token4] = ACTIONS(2108), - [aux_sym_cmd_identifier_token5] = ACTIONS(2108), - [aux_sym_cmd_identifier_token6] = ACTIONS(2108), - [aux_sym_cmd_identifier_token7] = ACTIONS(2108), - [aux_sym_cmd_identifier_token8] = ACTIONS(2106), - [aux_sym_cmd_identifier_token9] = ACTIONS(2106), - [aux_sym_cmd_identifier_token10] = ACTIONS(2108), - [aux_sym_cmd_identifier_token11] = ACTIONS(2108), - [aux_sym_cmd_identifier_token12] = ACTIONS(2106), - [aux_sym_cmd_identifier_token13] = ACTIONS(2106), - [aux_sym_cmd_identifier_token14] = ACTIONS(2106), - [aux_sym_cmd_identifier_token15] = ACTIONS(2106), - [aux_sym_cmd_identifier_token16] = ACTIONS(2108), - [aux_sym_cmd_identifier_token17] = ACTIONS(2108), - [aux_sym_cmd_identifier_token18] = ACTIONS(2108), - [aux_sym_cmd_identifier_token19] = ACTIONS(2108), - [aux_sym_cmd_identifier_token20] = ACTIONS(2108), - [aux_sym_cmd_identifier_token21] = ACTIONS(2108), - [aux_sym_cmd_identifier_token22] = ACTIONS(2108), - [aux_sym_cmd_identifier_token23] = ACTIONS(2108), - [aux_sym_cmd_identifier_token24] = ACTIONS(2108), - [aux_sym_cmd_identifier_token25] = ACTIONS(2108), - [aux_sym_cmd_identifier_token26] = ACTIONS(2108), - [aux_sym_cmd_identifier_token27] = ACTIONS(2108), - [aux_sym_cmd_identifier_token28] = ACTIONS(2108), - [aux_sym_cmd_identifier_token29] = ACTIONS(2108), - [aux_sym_cmd_identifier_token30] = ACTIONS(2108), - [aux_sym_cmd_identifier_token31] = ACTIONS(2108), - [aux_sym_cmd_identifier_token32] = ACTIONS(2108), - [aux_sym_cmd_identifier_token33] = ACTIONS(2108), - [aux_sym_cmd_identifier_token34] = ACTIONS(2106), - [aux_sym_cmd_identifier_token35] = ACTIONS(2108), - [aux_sym_cmd_identifier_token36] = ACTIONS(2108), - [aux_sym_cmd_identifier_token37] = ACTIONS(2108), - [aux_sym_cmd_identifier_token38] = ACTIONS(2106), - [aux_sym_cmd_identifier_token39] = ACTIONS(2108), - [aux_sym_cmd_identifier_token40] = ACTIONS(2108), - [anon_sym_def] = ACTIONS(2106), - [anon_sym_export_DASHenv] = ACTIONS(2106), - [anon_sym_extern] = ACTIONS(2106), - [anon_sym_module] = ACTIONS(2106), - [anon_sym_use] = ACTIONS(2106), - [anon_sym_LPAREN] = ACTIONS(2108), - [anon_sym_DOLLAR] = ACTIONS(2108), - [anon_sym_error] = ACTIONS(2106), - [anon_sym_DASH2] = ACTIONS(2106), - [anon_sym_break] = ACTIONS(2106), - [anon_sym_continue] = ACTIONS(2106), - [anon_sym_for] = ACTIONS(2106), - [anon_sym_in2] = ACTIONS(2106), - [anon_sym_loop] = ACTIONS(2106), - [anon_sym_make] = ACTIONS(2106), - [anon_sym_while] = ACTIONS(2106), - [anon_sym_do] = ACTIONS(2106), - [anon_sym_if] = ACTIONS(2106), - [anon_sym_else] = ACTIONS(2106), - [anon_sym_match] = ACTIONS(2106), - [anon_sym_RBRACE] = ACTIONS(2108), - [anon_sym_try] = ACTIONS(2106), - [anon_sym_catch] = ACTIONS(2106), - [anon_sym_return] = ACTIONS(2106), - [anon_sym_source] = ACTIONS(2106), - [anon_sym_source_DASHenv] = ACTIONS(2106), - [anon_sym_register] = ACTIONS(2106), - [anon_sym_hide] = ACTIONS(2106), - [anon_sym_hide_DASHenv] = ACTIONS(2106), - [anon_sym_overlay] = ACTIONS(2106), - [anon_sym_as] = ACTIONS(2106), - [anon_sym_PLUS2] = ACTIONS(2106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2108), - [anon_sym_DOT] = ACTIONS(2110), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2108), - [aux_sym__val_number_decimal_token1] = ACTIONS(2106), - [aux_sym__val_number_decimal_token2] = ACTIONS(2108), - [aux_sym__val_number_decimal_token3] = ACTIONS(2108), - [aux_sym__val_number_decimal_token4] = ACTIONS(2108), - [aux_sym__val_number_token1] = ACTIONS(2108), - [aux_sym__val_number_token2] = ACTIONS(2108), - [aux_sym__val_number_token3] = ACTIONS(2108), - [aux_sym__val_number_token4] = ACTIONS(2106), - [aux_sym__val_number_token5] = ACTIONS(2106), - [aux_sym__val_number_token6] = ACTIONS(2106), - [anon_sym_DQUOTE] = ACTIONS(2108), - [sym__str_single_quotes] = ACTIONS(2108), - [sym__str_back_ticks] = ACTIONS(2108), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2108), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2108), - }, - [509] = { - [sym_cell_path] = STATE(756), - [sym_path] = STATE(689), - [sym_comment] = STATE(509), - [aux_sym_cell_path_repeat1] = STATE(522), - [anon_sym_export] = ACTIONS(961), - [anon_sym_alias] = ACTIONS(961), - [anon_sym_let] = ACTIONS(961), - [anon_sym_let_DASHenv] = ACTIONS(961), - [anon_sym_mut] = ACTIONS(961), - [anon_sym_const] = ACTIONS(961), - [aux_sym_cmd_identifier_token1] = ACTIONS(961), - [aux_sym_cmd_identifier_token2] = ACTIONS(963), - [aux_sym_cmd_identifier_token3] = ACTIONS(963), - [aux_sym_cmd_identifier_token4] = ACTIONS(963), - [aux_sym_cmd_identifier_token5] = ACTIONS(963), - [aux_sym_cmd_identifier_token6] = ACTIONS(963), - [aux_sym_cmd_identifier_token7] = ACTIONS(963), - [aux_sym_cmd_identifier_token8] = ACTIONS(961), - [aux_sym_cmd_identifier_token9] = ACTIONS(961), - [aux_sym_cmd_identifier_token10] = ACTIONS(963), - [aux_sym_cmd_identifier_token11] = ACTIONS(963), - [aux_sym_cmd_identifier_token12] = ACTIONS(961), - [aux_sym_cmd_identifier_token13] = ACTIONS(961), - [aux_sym_cmd_identifier_token14] = ACTIONS(961), - [aux_sym_cmd_identifier_token15] = ACTIONS(961), - [aux_sym_cmd_identifier_token16] = ACTIONS(963), - [aux_sym_cmd_identifier_token17] = ACTIONS(963), - [aux_sym_cmd_identifier_token18] = ACTIONS(963), - [aux_sym_cmd_identifier_token19] = ACTIONS(963), - [aux_sym_cmd_identifier_token20] = ACTIONS(963), - [aux_sym_cmd_identifier_token21] = ACTIONS(963), - [aux_sym_cmd_identifier_token22] = ACTIONS(963), - [aux_sym_cmd_identifier_token23] = ACTIONS(963), - [aux_sym_cmd_identifier_token24] = ACTIONS(963), - [aux_sym_cmd_identifier_token25] = ACTIONS(963), - [aux_sym_cmd_identifier_token26] = ACTIONS(963), - [aux_sym_cmd_identifier_token27] = ACTIONS(963), - [aux_sym_cmd_identifier_token28] = ACTIONS(963), - [aux_sym_cmd_identifier_token29] = ACTIONS(963), - [aux_sym_cmd_identifier_token30] = ACTIONS(963), - [aux_sym_cmd_identifier_token31] = ACTIONS(963), - [aux_sym_cmd_identifier_token32] = ACTIONS(963), - [aux_sym_cmd_identifier_token33] = ACTIONS(963), - [aux_sym_cmd_identifier_token34] = ACTIONS(961), - [aux_sym_cmd_identifier_token35] = ACTIONS(963), - [aux_sym_cmd_identifier_token36] = ACTIONS(963), - [aux_sym_cmd_identifier_token37] = ACTIONS(963), - [aux_sym_cmd_identifier_token38] = ACTIONS(961), - [aux_sym_cmd_identifier_token39] = ACTIONS(963), - [aux_sym_cmd_identifier_token40] = ACTIONS(963), - [anon_sym_def] = ACTIONS(961), - [anon_sym_export_DASHenv] = ACTIONS(961), - [anon_sym_extern] = ACTIONS(961), - [anon_sym_module] = ACTIONS(961), - [anon_sym_use] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(963), - [anon_sym_DOLLAR] = ACTIONS(963), - [anon_sym_error] = ACTIONS(961), - [anon_sym_DASH2] = ACTIONS(961), - [anon_sym_break] = ACTIONS(961), - [anon_sym_continue] = ACTIONS(961), - [anon_sym_for] = ACTIONS(961), - [anon_sym_in2] = ACTIONS(961), - [anon_sym_loop] = ACTIONS(961), - [anon_sym_make] = ACTIONS(961), - [anon_sym_while] = ACTIONS(961), - [anon_sym_do] = ACTIONS(961), - [anon_sym_if] = ACTIONS(961), - [anon_sym_else] = ACTIONS(961), - [anon_sym_match] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_try] = ACTIONS(961), - [anon_sym_catch] = ACTIONS(961), - [anon_sym_return] = ACTIONS(961), - [anon_sym_source] = ACTIONS(961), - [anon_sym_source_DASHenv] = ACTIONS(961), - [anon_sym_register] = ACTIONS(961), - [anon_sym_hide] = ACTIONS(961), - [anon_sym_hide_DASHenv] = ACTIONS(961), - [anon_sym_overlay] = ACTIONS(961), - [anon_sym_as] = ACTIONS(961), - [anon_sym_PLUS2] = ACTIONS(961), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(963), - [anon_sym_DOT] = ACTIONS(2110), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(963), - [aux_sym__val_number_decimal_token1] = ACTIONS(961), - [aux_sym__val_number_decimal_token2] = ACTIONS(963), - [aux_sym__val_number_decimal_token3] = ACTIONS(963), - [aux_sym__val_number_decimal_token4] = ACTIONS(963), - [aux_sym__val_number_token1] = ACTIONS(963), - [aux_sym__val_number_token2] = ACTIONS(963), - [aux_sym__val_number_token3] = ACTIONS(963), - [aux_sym__val_number_token4] = ACTIONS(961), - [aux_sym__val_number_token5] = ACTIONS(961), - [aux_sym__val_number_token6] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(963), - [sym__str_single_quotes] = ACTIONS(963), - [sym__str_back_ticks] = ACTIONS(963), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(963), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(963), - }, - [510] = { - [sym_comment] = STATE(510), - [anon_sym_export] = ACTIONS(2159), - [anon_sym_alias] = ACTIONS(2159), - [anon_sym_let] = ACTIONS(2159), - [anon_sym_let_DASHenv] = ACTIONS(2159), - [anon_sym_mut] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [aux_sym_cmd_identifier_token1] = ACTIONS(2159), - [aux_sym_cmd_identifier_token2] = ACTIONS(2159), - [aux_sym_cmd_identifier_token3] = ACTIONS(2159), - [aux_sym_cmd_identifier_token4] = ACTIONS(2159), - [aux_sym_cmd_identifier_token5] = ACTIONS(2159), - [aux_sym_cmd_identifier_token6] = ACTIONS(2159), - [aux_sym_cmd_identifier_token7] = ACTIONS(2159), - [aux_sym_cmd_identifier_token8] = ACTIONS(2159), - [aux_sym_cmd_identifier_token9] = ACTIONS(2159), - [aux_sym_cmd_identifier_token10] = ACTIONS(2159), - [aux_sym_cmd_identifier_token11] = ACTIONS(2159), - [aux_sym_cmd_identifier_token12] = ACTIONS(2159), - [aux_sym_cmd_identifier_token13] = ACTIONS(2159), - [aux_sym_cmd_identifier_token14] = ACTIONS(2159), - [aux_sym_cmd_identifier_token15] = ACTIONS(2159), - [aux_sym_cmd_identifier_token16] = ACTIONS(2159), - [aux_sym_cmd_identifier_token17] = ACTIONS(2159), - [aux_sym_cmd_identifier_token18] = ACTIONS(2159), - [aux_sym_cmd_identifier_token19] = ACTIONS(2159), - [aux_sym_cmd_identifier_token20] = ACTIONS(2159), - [aux_sym_cmd_identifier_token21] = ACTIONS(2159), - [aux_sym_cmd_identifier_token22] = ACTIONS(2159), - [aux_sym_cmd_identifier_token23] = ACTIONS(2159), - [aux_sym_cmd_identifier_token24] = ACTIONS(2159), - [aux_sym_cmd_identifier_token25] = ACTIONS(2159), - [aux_sym_cmd_identifier_token26] = ACTIONS(2159), - [aux_sym_cmd_identifier_token27] = ACTIONS(2159), - [aux_sym_cmd_identifier_token28] = ACTIONS(2159), - [aux_sym_cmd_identifier_token29] = ACTIONS(2159), - [aux_sym_cmd_identifier_token30] = ACTIONS(2159), - [aux_sym_cmd_identifier_token31] = ACTIONS(2159), - [aux_sym_cmd_identifier_token32] = ACTIONS(2159), - [aux_sym_cmd_identifier_token33] = ACTIONS(2159), - [aux_sym_cmd_identifier_token34] = ACTIONS(2159), - [aux_sym_cmd_identifier_token35] = ACTIONS(2159), - [aux_sym_cmd_identifier_token36] = ACTIONS(2159), - [aux_sym_cmd_identifier_token37] = ACTIONS(2159), - [aux_sym_cmd_identifier_token38] = ACTIONS(2159), - [aux_sym_cmd_identifier_token39] = ACTIONS(2159), - [aux_sym_cmd_identifier_token40] = ACTIONS(2159), - [anon_sym_def] = ACTIONS(2159), - [anon_sym_export_DASHenv] = ACTIONS(2159), - [anon_sym_extern] = ACTIONS(2159), - [anon_sym_module] = ACTIONS(2159), - [anon_sym_use] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_DOLLAR] = ACTIONS(2159), - [anon_sym_error] = ACTIONS(2159), - [anon_sym_DASH2] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_in2] = ACTIONS(2159), - [anon_sym_loop] = ACTIONS(2159), - [anon_sym_make] = ACTIONS(2159), - [anon_sym_while] = ACTIONS(2159), - [anon_sym_do] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_else] = ACTIONS(2159), - [anon_sym_match] = ACTIONS(2159), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_try] = ACTIONS(2159), - [anon_sym_catch] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_source] = ACTIONS(2159), - [anon_sym_source_DASHenv] = ACTIONS(2159), - [anon_sym_register] = ACTIONS(2159), - [anon_sym_hide] = ACTIONS(2159), - [anon_sym_hide_DASHenv] = ACTIONS(2159), - [anon_sym_overlay] = ACTIONS(2159), - [anon_sym_as] = ACTIONS(2159), - [anon_sym_PLUS2] = ACTIONS(2159), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2159), - [anon_sym_DOT_DOT2] = ACTIONS(2161), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2163), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2163), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2159), - [aux_sym__val_number_decimal_token1] = ACTIONS(2159), - [aux_sym__val_number_decimal_token2] = ACTIONS(2159), - [aux_sym__val_number_decimal_token3] = ACTIONS(2159), - [aux_sym__val_number_decimal_token4] = ACTIONS(2159), - [aux_sym__val_number_token1] = ACTIONS(2159), - [aux_sym__val_number_token2] = ACTIONS(2159), - [aux_sym__val_number_token3] = ACTIONS(2159), - [aux_sym__val_number_token4] = ACTIONS(2159), - [aux_sym__val_number_token5] = ACTIONS(2159), - [aux_sym__val_number_token6] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(2159), - [sym__str_single_quotes] = ACTIONS(2159), - [sym__str_back_ticks] = ACTIONS(2159), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2159), - [sym__entry_separator] = ACTIONS(2165), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2165), + [510] = { + [sym_comment] = STATE(510), + [anon_sym_export] = ACTIONS(1785), + [anon_sym_alias] = ACTIONS(1785), + [anon_sym_let] = ACTIONS(1785), + [anon_sym_let_DASHenv] = ACTIONS(1785), + [anon_sym_mut] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(1785), + [aux_sym_cmd_identifier_token1] = ACTIONS(1785), + [aux_sym_cmd_identifier_token2] = ACTIONS(1787), + [aux_sym_cmd_identifier_token3] = ACTIONS(1787), + [aux_sym_cmd_identifier_token4] = ACTIONS(1787), + [aux_sym_cmd_identifier_token5] = ACTIONS(1787), + [aux_sym_cmd_identifier_token6] = ACTIONS(1787), + [aux_sym_cmd_identifier_token7] = ACTIONS(1787), + [aux_sym_cmd_identifier_token8] = ACTIONS(1785), + [aux_sym_cmd_identifier_token9] = ACTIONS(1785), + [aux_sym_cmd_identifier_token10] = ACTIONS(1787), + [aux_sym_cmd_identifier_token11] = ACTIONS(1787), + [aux_sym_cmd_identifier_token12] = ACTIONS(1785), + [aux_sym_cmd_identifier_token13] = ACTIONS(1785), + [aux_sym_cmd_identifier_token14] = ACTIONS(1785), + [aux_sym_cmd_identifier_token15] = ACTIONS(1785), + [aux_sym_cmd_identifier_token16] = ACTIONS(1787), + [aux_sym_cmd_identifier_token17] = ACTIONS(1787), + [aux_sym_cmd_identifier_token18] = ACTIONS(1787), + [aux_sym_cmd_identifier_token19] = ACTIONS(1787), + [aux_sym_cmd_identifier_token20] = ACTIONS(1787), + [aux_sym_cmd_identifier_token21] = ACTIONS(1787), + [aux_sym_cmd_identifier_token22] = ACTIONS(1787), + [aux_sym_cmd_identifier_token23] = ACTIONS(1787), + [aux_sym_cmd_identifier_token24] = ACTIONS(1787), + [aux_sym_cmd_identifier_token25] = ACTIONS(1787), + [aux_sym_cmd_identifier_token26] = ACTIONS(1787), + [aux_sym_cmd_identifier_token27] = ACTIONS(1787), + [aux_sym_cmd_identifier_token28] = ACTIONS(1787), + [aux_sym_cmd_identifier_token29] = ACTIONS(1787), + [aux_sym_cmd_identifier_token30] = ACTIONS(1787), + [aux_sym_cmd_identifier_token31] = ACTIONS(1787), + [aux_sym_cmd_identifier_token32] = ACTIONS(1787), + [aux_sym_cmd_identifier_token33] = ACTIONS(1787), + [aux_sym_cmd_identifier_token34] = ACTIONS(1785), + [aux_sym_cmd_identifier_token35] = ACTIONS(1787), + [aux_sym_cmd_identifier_token36] = ACTIONS(1787), + [aux_sym_cmd_identifier_token37] = ACTIONS(1787), + [aux_sym_cmd_identifier_token38] = ACTIONS(1785), + [aux_sym_cmd_identifier_token39] = ACTIONS(1787), + [aux_sym_cmd_identifier_token40] = ACTIONS(1787), + [anon_sym_def] = ACTIONS(1785), + [anon_sym_export_DASHenv] = ACTIONS(1785), + [anon_sym_extern] = ACTIONS(1785), + [anon_sym_module] = ACTIONS(1785), + [anon_sym_use] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_DOLLAR] = ACTIONS(1787), + [anon_sym_error] = ACTIONS(1785), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_break] = ACTIONS(1785), + [anon_sym_continue] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1785), + [anon_sym_in2] = ACTIONS(1785), + [anon_sym_loop] = ACTIONS(1785), + [anon_sym_make] = ACTIONS(1785), + [anon_sym_while] = ACTIONS(1785), + [anon_sym_do] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1785), + [anon_sym_else] = ACTIONS(1785), + [anon_sym_match] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1787), + [anon_sym_try] = ACTIONS(1785), + [anon_sym_catch] = ACTIONS(1785), + [anon_sym_return] = ACTIONS(1785), + [anon_sym_source] = ACTIONS(1785), + [anon_sym_source_DASHenv] = ACTIONS(1785), + [anon_sym_register] = ACTIONS(1785), + [anon_sym_hide] = ACTIONS(1785), + [anon_sym_hide_DASHenv] = ACTIONS(1785), + [anon_sym_overlay] = ACTIONS(1785), + [anon_sym_as] = ACTIONS(1785), + [anon_sym_PLUS2] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1787), + [anon_sym_DOT_DOT2] = ACTIONS(1785), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), + [aux_sym__immediate_decimal_token2] = ACTIONS(2181), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1787), + [aux_sym__val_number_decimal_token1] = ACTIONS(1785), + [aux_sym__val_number_decimal_token2] = ACTIONS(1787), + [aux_sym__val_number_decimal_token3] = ACTIONS(1787), + [aux_sym__val_number_decimal_token4] = ACTIONS(1787), + [aux_sym__val_number_token1] = ACTIONS(1787), + [aux_sym__val_number_token2] = ACTIONS(1787), + [aux_sym__val_number_token3] = ACTIONS(1787), + [aux_sym__val_number_token4] = ACTIONS(1785), + [aux_sym__val_number_token5] = ACTIONS(1785), + [aux_sym__val_number_token6] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1787), + [sym__str_single_quotes] = ACTIONS(1787), + [sym__str_back_ticks] = ACTIONS(1787), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1787), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1787), }, [511] = { + [sym_cell_path] = STATE(697), + [sym_path] = STATE(623), [sym_comment] = STATE(511), - [anon_sym_export] = ACTIONS(2167), - [anon_sym_alias] = ACTIONS(2167), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_let_DASHenv] = ACTIONS(2167), - [anon_sym_mut] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [aux_sym_cmd_identifier_token1] = ACTIONS(2167), - [aux_sym_cmd_identifier_token2] = ACTIONS(2167), - [aux_sym_cmd_identifier_token3] = ACTIONS(2167), - [aux_sym_cmd_identifier_token4] = ACTIONS(2167), - [aux_sym_cmd_identifier_token5] = ACTIONS(2167), - [aux_sym_cmd_identifier_token6] = ACTIONS(2167), - [aux_sym_cmd_identifier_token7] = ACTIONS(2167), - [aux_sym_cmd_identifier_token8] = ACTIONS(2167), - [aux_sym_cmd_identifier_token9] = ACTIONS(2167), - [aux_sym_cmd_identifier_token10] = ACTIONS(2167), - [aux_sym_cmd_identifier_token11] = ACTIONS(2167), - [aux_sym_cmd_identifier_token12] = ACTIONS(2167), - [aux_sym_cmd_identifier_token13] = ACTIONS(2167), - [aux_sym_cmd_identifier_token14] = ACTIONS(2167), - [aux_sym_cmd_identifier_token15] = ACTIONS(2167), - [aux_sym_cmd_identifier_token16] = ACTIONS(2167), - [aux_sym_cmd_identifier_token17] = ACTIONS(2167), - [aux_sym_cmd_identifier_token18] = ACTIONS(2167), - [aux_sym_cmd_identifier_token19] = ACTIONS(2167), - [aux_sym_cmd_identifier_token20] = ACTIONS(2167), - [aux_sym_cmd_identifier_token21] = ACTIONS(2167), - [aux_sym_cmd_identifier_token22] = ACTIONS(2167), - [aux_sym_cmd_identifier_token23] = ACTIONS(2167), - [aux_sym_cmd_identifier_token24] = ACTIONS(2167), - [aux_sym_cmd_identifier_token25] = ACTIONS(2167), - [aux_sym_cmd_identifier_token26] = ACTIONS(2167), - [aux_sym_cmd_identifier_token27] = ACTIONS(2167), - [aux_sym_cmd_identifier_token28] = ACTIONS(2167), - [aux_sym_cmd_identifier_token29] = ACTIONS(2167), - [aux_sym_cmd_identifier_token30] = ACTIONS(2167), - [aux_sym_cmd_identifier_token31] = ACTIONS(2167), - [aux_sym_cmd_identifier_token32] = ACTIONS(2167), - [aux_sym_cmd_identifier_token33] = ACTIONS(2167), - [aux_sym_cmd_identifier_token34] = ACTIONS(2167), - [aux_sym_cmd_identifier_token35] = ACTIONS(2167), - [aux_sym_cmd_identifier_token36] = ACTIONS(2167), - [aux_sym_cmd_identifier_token37] = ACTIONS(2167), - [aux_sym_cmd_identifier_token38] = ACTIONS(2167), - [aux_sym_cmd_identifier_token39] = ACTIONS(2167), - [aux_sym_cmd_identifier_token40] = ACTIONS(2167), - [anon_sym_def] = ACTIONS(2167), - [anon_sym_export_DASHenv] = ACTIONS(2167), - [anon_sym_extern] = ACTIONS(2167), - [anon_sym_module] = ACTIONS(2167), - [anon_sym_use] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_DOLLAR] = ACTIONS(2167), - [anon_sym_error] = ACTIONS(2167), - [anon_sym_DASH2] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_in2] = ACTIONS(2167), - [anon_sym_loop] = ACTIONS(2167), - [anon_sym_make] = ACTIONS(2167), - [anon_sym_while] = ACTIONS(2167), - [anon_sym_do] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_else] = ACTIONS(2167), - [anon_sym_match] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_try] = ACTIONS(2167), - [anon_sym_catch] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_source] = ACTIONS(2167), - [anon_sym_source_DASHenv] = ACTIONS(2167), - [anon_sym_register] = ACTIONS(2167), - [anon_sym_hide] = ACTIONS(2167), - [anon_sym_hide_DASHenv] = ACTIONS(2167), - [anon_sym_overlay] = ACTIONS(2167), - [anon_sym_as] = ACTIONS(2167), - [anon_sym_PLUS2] = ACTIONS(2167), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2167), - [anon_sym_DOT_DOT2] = ACTIONS(2169), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2171), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2171), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2167), - [aux_sym__val_number_decimal_token1] = ACTIONS(2167), - [aux_sym__val_number_decimal_token2] = ACTIONS(2167), - [aux_sym__val_number_decimal_token3] = ACTIONS(2167), - [aux_sym__val_number_decimal_token4] = ACTIONS(2167), - [aux_sym__val_number_token1] = ACTIONS(2167), - [aux_sym__val_number_token2] = ACTIONS(2167), - [aux_sym__val_number_token3] = ACTIONS(2167), - [aux_sym__val_number_token4] = ACTIONS(2167), - [aux_sym__val_number_token5] = ACTIONS(2167), - [aux_sym__val_number_token6] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym__str_single_quotes] = ACTIONS(2167), - [sym__str_back_ticks] = ACTIONS(2167), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2167), - [sym__entry_separator] = ACTIONS(2173), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2173), + [aux_sym_cell_path_repeat1] = STATE(532), + [anon_sym_export] = ACTIONS(1946), + [anon_sym_alias] = ACTIONS(1946), + [anon_sym_let] = ACTIONS(1946), + [anon_sym_let_DASHenv] = ACTIONS(1946), + [anon_sym_mut] = ACTIONS(1946), + [anon_sym_const] = ACTIONS(1946), + [aux_sym_cmd_identifier_token1] = ACTIONS(1946), + [aux_sym_cmd_identifier_token2] = ACTIONS(1948), + [aux_sym_cmd_identifier_token3] = ACTIONS(1948), + [aux_sym_cmd_identifier_token4] = ACTIONS(1948), + [aux_sym_cmd_identifier_token5] = ACTIONS(1948), + [aux_sym_cmd_identifier_token6] = ACTIONS(1948), + [aux_sym_cmd_identifier_token7] = ACTIONS(1948), + [aux_sym_cmd_identifier_token8] = ACTIONS(1946), + [aux_sym_cmd_identifier_token9] = ACTIONS(1946), + [aux_sym_cmd_identifier_token10] = ACTIONS(1948), + [aux_sym_cmd_identifier_token11] = ACTIONS(1948), + [aux_sym_cmd_identifier_token12] = ACTIONS(1946), + [aux_sym_cmd_identifier_token13] = ACTIONS(1946), + [aux_sym_cmd_identifier_token14] = ACTIONS(1946), + [aux_sym_cmd_identifier_token15] = ACTIONS(1946), + [aux_sym_cmd_identifier_token16] = ACTIONS(1948), + [aux_sym_cmd_identifier_token17] = ACTIONS(1948), + [aux_sym_cmd_identifier_token18] = ACTIONS(1948), + [aux_sym_cmd_identifier_token19] = ACTIONS(1948), + [aux_sym_cmd_identifier_token20] = ACTIONS(1948), + [aux_sym_cmd_identifier_token21] = ACTIONS(1948), + [aux_sym_cmd_identifier_token22] = ACTIONS(1948), + [aux_sym_cmd_identifier_token23] = ACTIONS(1948), + [aux_sym_cmd_identifier_token24] = ACTIONS(1948), + [aux_sym_cmd_identifier_token25] = ACTIONS(1948), + [aux_sym_cmd_identifier_token26] = ACTIONS(1948), + [aux_sym_cmd_identifier_token27] = ACTIONS(1948), + [aux_sym_cmd_identifier_token28] = ACTIONS(1948), + [aux_sym_cmd_identifier_token29] = ACTIONS(1948), + [aux_sym_cmd_identifier_token30] = ACTIONS(1948), + [aux_sym_cmd_identifier_token31] = ACTIONS(1948), + [aux_sym_cmd_identifier_token32] = ACTIONS(1948), + [aux_sym_cmd_identifier_token33] = ACTIONS(1948), + [aux_sym_cmd_identifier_token34] = ACTIONS(1946), + [aux_sym_cmd_identifier_token35] = ACTIONS(1948), + [aux_sym_cmd_identifier_token36] = ACTIONS(1948), + [aux_sym_cmd_identifier_token37] = ACTIONS(1948), + [aux_sym_cmd_identifier_token38] = ACTIONS(1946), + [aux_sym_cmd_identifier_token39] = ACTIONS(1948), + [aux_sym_cmd_identifier_token40] = ACTIONS(1948), + [anon_sym_def] = ACTIONS(1946), + [anon_sym_export_DASHenv] = ACTIONS(1946), + [anon_sym_extern] = ACTIONS(1946), + [anon_sym_module] = ACTIONS(1946), + [anon_sym_use] = ACTIONS(1946), + [anon_sym_LPAREN] = ACTIONS(1948), + [anon_sym_DOLLAR] = ACTIONS(1948), + [anon_sym_error] = ACTIONS(1946), + [anon_sym_DASH2] = ACTIONS(1946), + [anon_sym_break] = ACTIONS(1946), + [anon_sym_continue] = ACTIONS(1946), + [anon_sym_for] = ACTIONS(1946), + [anon_sym_in2] = ACTIONS(1946), + [anon_sym_loop] = ACTIONS(1946), + [anon_sym_make] = ACTIONS(1946), + [anon_sym_while] = ACTIONS(1946), + [anon_sym_do] = ACTIONS(1946), + [anon_sym_if] = ACTIONS(1946), + [anon_sym_else] = ACTIONS(1946), + [anon_sym_match] = ACTIONS(1946), + [anon_sym_RBRACE] = ACTIONS(1948), + [anon_sym_try] = ACTIONS(1946), + [anon_sym_catch] = ACTIONS(1946), + [anon_sym_return] = ACTIONS(1946), + [anon_sym_source] = ACTIONS(1946), + [anon_sym_source_DASHenv] = ACTIONS(1946), + [anon_sym_register] = ACTIONS(1946), + [anon_sym_hide] = ACTIONS(1946), + [anon_sym_hide_DASHenv] = ACTIONS(1946), + [anon_sym_overlay] = ACTIONS(1946), + [anon_sym_as] = ACTIONS(1946), + [anon_sym_PLUS2] = ACTIONS(1946), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1948), + [anon_sym_DOT] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1948), + [aux_sym__val_number_decimal_token1] = ACTIONS(1946), + [aux_sym__val_number_decimal_token2] = ACTIONS(1948), + [aux_sym__val_number_decimal_token3] = ACTIONS(1948), + [aux_sym__val_number_decimal_token4] = ACTIONS(1948), + [aux_sym__val_number_token1] = ACTIONS(1948), + [aux_sym__val_number_token2] = ACTIONS(1948), + [aux_sym__val_number_token3] = ACTIONS(1948), + [aux_sym__val_number_token4] = ACTIONS(1946), + [aux_sym__val_number_token5] = ACTIONS(1946), + [aux_sym__val_number_token6] = ACTIONS(1946), + [anon_sym_DQUOTE] = ACTIONS(1948), + [sym__str_single_quotes] = ACTIONS(1948), + [sym__str_back_ticks] = ACTIONS(1948), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1948), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1948), }, [512] = { + [sym_cell_path] = STATE(699), + [sym_path] = STATE(623), [sym_comment] = STATE(512), - [anon_sym_export] = ACTIONS(2175), - [anon_sym_alias] = ACTIONS(2175), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_let_DASHenv] = ACTIONS(2175), - [anon_sym_mut] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [aux_sym_cmd_identifier_token1] = ACTIONS(2175), - [aux_sym_cmd_identifier_token2] = ACTIONS(2175), - [aux_sym_cmd_identifier_token3] = ACTIONS(2175), - [aux_sym_cmd_identifier_token4] = ACTIONS(2175), - [aux_sym_cmd_identifier_token5] = ACTIONS(2175), - [aux_sym_cmd_identifier_token6] = ACTIONS(2175), - [aux_sym_cmd_identifier_token7] = ACTIONS(2175), - [aux_sym_cmd_identifier_token8] = ACTIONS(2175), - [aux_sym_cmd_identifier_token9] = ACTIONS(2175), - [aux_sym_cmd_identifier_token10] = ACTIONS(2175), - [aux_sym_cmd_identifier_token11] = ACTIONS(2175), - [aux_sym_cmd_identifier_token12] = ACTIONS(2175), - [aux_sym_cmd_identifier_token13] = ACTIONS(2175), - [aux_sym_cmd_identifier_token14] = ACTIONS(2175), - [aux_sym_cmd_identifier_token15] = ACTIONS(2175), - [aux_sym_cmd_identifier_token16] = ACTIONS(2175), - [aux_sym_cmd_identifier_token17] = ACTIONS(2175), - [aux_sym_cmd_identifier_token18] = ACTIONS(2175), - [aux_sym_cmd_identifier_token19] = ACTIONS(2175), - [aux_sym_cmd_identifier_token20] = ACTIONS(2175), - [aux_sym_cmd_identifier_token21] = ACTIONS(2175), - [aux_sym_cmd_identifier_token22] = ACTIONS(2175), - [aux_sym_cmd_identifier_token23] = ACTIONS(2175), - [aux_sym_cmd_identifier_token24] = ACTIONS(2175), - [aux_sym_cmd_identifier_token25] = ACTIONS(2175), - [aux_sym_cmd_identifier_token26] = ACTIONS(2175), - [aux_sym_cmd_identifier_token27] = ACTIONS(2175), - [aux_sym_cmd_identifier_token28] = ACTIONS(2175), - [aux_sym_cmd_identifier_token29] = ACTIONS(2175), - [aux_sym_cmd_identifier_token30] = ACTIONS(2175), - [aux_sym_cmd_identifier_token31] = ACTIONS(2175), - [aux_sym_cmd_identifier_token32] = ACTIONS(2175), - [aux_sym_cmd_identifier_token33] = ACTIONS(2175), - [aux_sym_cmd_identifier_token34] = ACTIONS(2175), - [aux_sym_cmd_identifier_token35] = ACTIONS(2175), - [aux_sym_cmd_identifier_token36] = ACTIONS(2175), - [aux_sym_cmd_identifier_token37] = ACTIONS(2175), - [aux_sym_cmd_identifier_token38] = ACTIONS(2175), - [aux_sym_cmd_identifier_token39] = ACTIONS(2175), - [aux_sym_cmd_identifier_token40] = ACTIONS(2175), - [anon_sym_def] = ACTIONS(2175), - [anon_sym_export_DASHenv] = ACTIONS(2175), - [anon_sym_extern] = ACTIONS(2175), - [anon_sym_module] = ACTIONS(2175), - [anon_sym_use] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_DOLLAR] = ACTIONS(2175), - [anon_sym_error] = ACTIONS(2175), - [anon_sym_DASH2] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_in2] = ACTIONS(2175), - [anon_sym_loop] = ACTIONS(2175), - [anon_sym_make] = ACTIONS(2175), - [anon_sym_while] = ACTIONS(2175), - [anon_sym_do] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_else] = ACTIONS(2175), - [anon_sym_match] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_try] = ACTIONS(2175), - [anon_sym_catch] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_source] = ACTIONS(2175), - [anon_sym_source_DASHenv] = ACTIONS(2175), - [anon_sym_register] = ACTIONS(2175), - [anon_sym_hide] = ACTIONS(2175), - [anon_sym_hide_DASHenv] = ACTIONS(2175), - [anon_sym_overlay] = ACTIONS(2175), - [anon_sym_as] = ACTIONS(2175), - [anon_sym_PLUS2] = ACTIONS(2175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2175), - [anon_sym_DOT_DOT2] = ACTIONS(2177), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2179), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2179), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2175), - [aux_sym__val_number_decimal_token1] = ACTIONS(2175), - [aux_sym__val_number_decimal_token2] = ACTIONS(2175), - [aux_sym__val_number_decimal_token3] = ACTIONS(2175), - [aux_sym__val_number_decimal_token4] = ACTIONS(2175), - [aux_sym__val_number_token1] = ACTIONS(2175), - [aux_sym__val_number_token2] = ACTIONS(2175), - [aux_sym__val_number_token3] = ACTIONS(2175), - [aux_sym__val_number_token4] = ACTIONS(2175), - [aux_sym__val_number_token5] = ACTIONS(2175), - [aux_sym__val_number_token6] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2175), - [sym__str_single_quotes] = ACTIONS(2175), - [sym__str_back_ticks] = ACTIONS(2175), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2175), - [sym__entry_separator] = ACTIONS(2181), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2181), + [aux_sym_cell_path_repeat1] = STATE(532), + [anon_sym_export] = ACTIONS(2018), + [anon_sym_alias] = ACTIONS(2018), + [anon_sym_let] = ACTIONS(2018), + [anon_sym_let_DASHenv] = ACTIONS(2018), + [anon_sym_mut] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(2018), + [aux_sym_cmd_identifier_token1] = ACTIONS(2018), + [aux_sym_cmd_identifier_token2] = ACTIONS(2020), + [aux_sym_cmd_identifier_token3] = ACTIONS(2020), + [aux_sym_cmd_identifier_token4] = ACTIONS(2020), + [aux_sym_cmd_identifier_token5] = ACTIONS(2020), + [aux_sym_cmd_identifier_token6] = ACTIONS(2020), + [aux_sym_cmd_identifier_token7] = ACTIONS(2020), + [aux_sym_cmd_identifier_token8] = ACTIONS(2018), + [aux_sym_cmd_identifier_token9] = ACTIONS(2018), + [aux_sym_cmd_identifier_token10] = ACTIONS(2020), + [aux_sym_cmd_identifier_token11] = ACTIONS(2020), + [aux_sym_cmd_identifier_token12] = ACTIONS(2018), + [aux_sym_cmd_identifier_token13] = ACTIONS(2018), + [aux_sym_cmd_identifier_token14] = ACTIONS(2018), + [aux_sym_cmd_identifier_token15] = ACTIONS(2018), + [aux_sym_cmd_identifier_token16] = ACTIONS(2020), + [aux_sym_cmd_identifier_token17] = ACTIONS(2020), + [aux_sym_cmd_identifier_token18] = ACTIONS(2020), + [aux_sym_cmd_identifier_token19] = ACTIONS(2020), + [aux_sym_cmd_identifier_token20] = ACTIONS(2020), + [aux_sym_cmd_identifier_token21] = ACTIONS(2020), + [aux_sym_cmd_identifier_token22] = ACTIONS(2020), + [aux_sym_cmd_identifier_token23] = ACTIONS(2020), + [aux_sym_cmd_identifier_token24] = ACTIONS(2020), + [aux_sym_cmd_identifier_token25] = ACTIONS(2020), + [aux_sym_cmd_identifier_token26] = ACTIONS(2020), + [aux_sym_cmd_identifier_token27] = ACTIONS(2020), + [aux_sym_cmd_identifier_token28] = ACTIONS(2020), + [aux_sym_cmd_identifier_token29] = ACTIONS(2020), + [aux_sym_cmd_identifier_token30] = ACTIONS(2020), + [aux_sym_cmd_identifier_token31] = ACTIONS(2020), + [aux_sym_cmd_identifier_token32] = ACTIONS(2020), + [aux_sym_cmd_identifier_token33] = ACTIONS(2020), + [aux_sym_cmd_identifier_token34] = ACTIONS(2018), + [aux_sym_cmd_identifier_token35] = ACTIONS(2020), + [aux_sym_cmd_identifier_token36] = ACTIONS(2020), + [aux_sym_cmd_identifier_token37] = ACTIONS(2020), + [aux_sym_cmd_identifier_token38] = ACTIONS(2018), + [aux_sym_cmd_identifier_token39] = ACTIONS(2020), + [aux_sym_cmd_identifier_token40] = ACTIONS(2020), + [anon_sym_def] = ACTIONS(2018), + [anon_sym_export_DASHenv] = ACTIONS(2018), + [anon_sym_extern] = ACTIONS(2018), + [anon_sym_module] = ACTIONS(2018), + [anon_sym_use] = ACTIONS(2018), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_DOLLAR] = ACTIONS(2020), + [anon_sym_error] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2018), + [anon_sym_break] = ACTIONS(2018), + [anon_sym_continue] = ACTIONS(2018), + [anon_sym_for] = ACTIONS(2018), + [anon_sym_in2] = ACTIONS(2018), + [anon_sym_loop] = ACTIONS(2018), + [anon_sym_make] = ACTIONS(2018), + [anon_sym_while] = ACTIONS(2018), + [anon_sym_do] = ACTIONS(2018), + [anon_sym_if] = ACTIONS(2018), + [anon_sym_else] = ACTIONS(2018), + [anon_sym_match] = ACTIONS(2018), + [anon_sym_RBRACE] = ACTIONS(2020), + [anon_sym_try] = ACTIONS(2018), + [anon_sym_catch] = ACTIONS(2018), + [anon_sym_return] = ACTIONS(2018), + [anon_sym_source] = ACTIONS(2018), + [anon_sym_source_DASHenv] = ACTIONS(2018), + [anon_sym_register] = ACTIONS(2018), + [anon_sym_hide] = ACTIONS(2018), + [anon_sym_hide_DASHenv] = ACTIONS(2018), + [anon_sym_overlay] = ACTIONS(2018), + [anon_sym_as] = ACTIONS(2018), + [anon_sym_PLUS2] = ACTIONS(2018), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2020), + [anon_sym_DOT] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2020), + [aux_sym__val_number_decimal_token1] = ACTIONS(2018), + [aux_sym__val_number_decimal_token2] = ACTIONS(2020), + [aux_sym__val_number_decimal_token3] = ACTIONS(2020), + [aux_sym__val_number_decimal_token4] = ACTIONS(2020), + [aux_sym__val_number_token1] = ACTIONS(2020), + [aux_sym__val_number_token2] = ACTIONS(2020), + [aux_sym__val_number_token3] = ACTIONS(2020), + [aux_sym__val_number_token4] = ACTIONS(2018), + [aux_sym__val_number_token5] = ACTIONS(2018), + [aux_sym__val_number_token6] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2020), + [sym__str_single_quotes] = ACTIONS(2020), + [sym__str_back_ticks] = ACTIONS(2020), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2020), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2020), }, [513] = { [sym_comment] = STATE(513), @@ -131146,10 +131465,1336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2183), [sym__entry_separator] = ACTIONS(2185), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2185), + [sym_raw_string_begin] = ACTIONS(2185), + }, + [514] = { + [sym_comment] = STATE(514), + [anon_sym_export] = ACTIONS(1841), + [anon_sym_alias] = ACTIONS(1841), + [anon_sym_let] = ACTIONS(1841), + [anon_sym_let_DASHenv] = ACTIONS(1841), + [anon_sym_mut] = ACTIONS(1841), + [anon_sym_const] = ACTIONS(1841), + [aux_sym_cmd_identifier_token1] = ACTIONS(1841), + [aux_sym_cmd_identifier_token2] = ACTIONS(1841), + [aux_sym_cmd_identifier_token3] = ACTIONS(1841), + [aux_sym_cmd_identifier_token4] = ACTIONS(1841), + [aux_sym_cmd_identifier_token5] = ACTIONS(1841), + [aux_sym_cmd_identifier_token6] = ACTIONS(1841), + [aux_sym_cmd_identifier_token7] = ACTIONS(1841), + [aux_sym_cmd_identifier_token8] = ACTIONS(1841), + [aux_sym_cmd_identifier_token9] = ACTIONS(1841), + [aux_sym_cmd_identifier_token10] = ACTIONS(1841), + [aux_sym_cmd_identifier_token11] = ACTIONS(1841), + [aux_sym_cmd_identifier_token12] = ACTIONS(1841), + [aux_sym_cmd_identifier_token13] = ACTIONS(1841), + [aux_sym_cmd_identifier_token14] = ACTIONS(1841), + [aux_sym_cmd_identifier_token15] = ACTIONS(1841), + [aux_sym_cmd_identifier_token16] = ACTIONS(1841), + [aux_sym_cmd_identifier_token17] = ACTIONS(1841), + [aux_sym_cmd_identifier_token18] = ACTIONS(1841), + [aux_sym_cmd_identifier_token19] = ACTIONS(1841), + [aux_sym_cmd_identifier_token20] = ACTIONS(1841), + [aux_sym_cmd_identifier_token21] = ACTIONS(1841), + [aux_sym_cmd_identifier_token22] = ACTIONS(1841), + [aux_sym_cmd_identifier_token23] = ACTIONS(1841), + [aux_sym_cmd_identifier_token24] = ACTIONS(1841), + [aux_sym_cmd_identifier_token25] = ACTIONS(1841), + [aux_sym_cmd_identifier_token26] = ACTIONS(1841), + [aux_sym_cmd_identifier_token27] = ACTIONS(1841), + [aux_sym_cmd_identifier_token28] = ACTIONS(1841), + [aux_sym_cmd_identifier_token29] = ACTIONS(1841), + [aux_sym_cmd_identifier_token30] = ACTIONS(1841), + [aux_sym_cmd_identifier_token31] = ACTIONS(1841), + [aux_sym_cmd_identifier_token32] = ACTIONS(1841), + [aux_sym_cmd_identifier_token33] = ACTIONS(1841), + [aux_sym_cmd_identifier_token34] = ACTIONS(1841), + [aux_sym_cmd_identifier_token35] = ACTIONS(1841), + [aux_sym_cmd_identifier_token36] = ACTIONS(1841), + [aux_sym_cmd_identifier_token37] = ACTIONS(1841), + [aux_sym_cmd_identifier_token38] = ACTIONS(1841), + [aux_sym_cmd_identifier_token39] = ACTIONS(1841), + [aux_sym_cmd_identifier_token40] = ACTIONS(1841), + [anon_sym_def] = ACTIONS(1841), + [anon_sym_export_DASHenv] = ACTIONS(1841), + [anon_sym_extern] = ACTIONS(1841), + [anon_sym_module] = ACTIONS(1841), + [anon_sym_use] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_error] = ACTIONS(1841), + [anon_sym_DASH2] = ACTIONS(1841), + [anon_sym_break] = ACTIONS(1841), + [anon_sym_continue] = ACTIONS(1841), + [anon_sym_for] = ACTIONS(1841), + [anon_sym_in2] = ACTIONS(1841), + [anon_sym_loop] = ACTIONS(1841), + [anon_sym_make] = ACTIONS(1841), + [anon_sym_while] = ACTIONS(1841), + [anon_sym_do] = ACTIONS(1841), + [anon_sym_if] = ACTIONS(1841), + [anon_sym_else] = ACTIONS(1841), + [anon_sym_match] = ACTIONS(1841), + [anon_sym_RBRACE] = ACTIONS(1841), + [anon_sym_try] = ACTIONS(1841), + [anon_sym_catch] = ACTIONS(1841), + [anon_sym_return] = ACTIONS(1841), + [anon_sym_source] = ACTIONS(1841), + [anon_sym_source_DASHenv] = ACTIONS(1841), + [anon_sym_register] = ACTIONS(1841), + [anon_sym_hide] = ACTIONS(1841), + [anon_sym_hide_DASHenv] = ACTIONS(1841), + [anon_sym_overlay] = ACTIONS(1841), + [anon_sym_as] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(1843), + [anon_sym_PLUS2] = ACTIONS(1841), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1841), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1841), + [aux_sym__val_number_decimal_token1] = ACTIONS(1841), + [aux_sym__val_number_decimal_token2] = ACTIONS(1841), + [aux_sym__val_number_decimal_token3] = ACTIONS(1841), + [aux_sym__val_number_decimal_token4] = ACTIONS(1841), + [aux_sym__val_number_token1] = ACTIONS(1841), + [aux_sym__val_number_token2] = ACTIONS(1841), + [aux_sym__val_number_token3] = ACTIONS(1841), + [aux_sym__val_number_token4] = ACTIONS(1841), + [aux_sym__val_number_token5] = ACTIONS(1841), + [aux_sym__val_number_token6] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym__str_single_quotes] = ACTIONS(1841), + [sym__str_back_ticks] = ACTIONS(1841), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1841), + [sym__entry_separator] = ACTIONS(1843), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1841), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1843), + }, + [515] = { + [sym_comment] = STATE(515), + [anon_sym_export] = ACTIONS(2122), + [anon_sym_alias] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_let_DASHenv] = ACTIONS(2122), + [anon_sym_mut] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [aux_sym_cmd_identifier_token1] = ACTIONS(2122), + [aux_sym_cmd_identifier_token2] = ACTIONS(2128), + [aux_sym_cmd_identifier_token3] = ACTIONS(2128), + [aux_sym_cmd_identifier_token4] = ACTIONS(2128), + [aux_sym_cmd_identifier_token5] = ACTIONS(2128), + [aux_sym_cmd_identifier_token6] = ACTIONS(2128), + [aux_sym_cmd_identifier_token7] = ACTIONS(2128), + [aux_sym_cmd_identifier_token8] = ACTIONS(2122), + [aux_sym_cmd_identifier_token9] = ACTIONS(2122), + [aux_sym_cmd_identifier_token10] = ACTIONS(2128), + [aux_sym_cmd_identifier_token11] = ACTIONS(2128), + [aux_sym_cmd_identifier_token12] = ACTIONS(2122), + [aux_sym_cmd_identifier_token13] = ACTIONS(2122), + [aux_sym_cmd_identifier_token14] = ACTIONS(2122), + [aux_sym_cmd_identifier_token15] = ACTIONS(2122), + [aux_sym_cmd_identifier_token16] = ACTIONS(2128), + [aux_sym_cmd_identifier_token17] = ACTIONS(2128), + [aux_sym_cmd_identifier_token18] = ACTIONS(2128), + [aux_sym_cmd_identifier_token19] = ACTIONS(2128), + [aux_sym_cmd_identifier_token20] = ACTIONS(2128), + [aux_sym_cmd_identifier_token21] = ACTIONS(2128), + [aux_sym_cmd_identifier_token22] = ACTIONS(2128), + [aux_sym_cmd_identifier_token23] = ACTIONS(2128), + [aux_sym_cmd_identifier_token24] = ACTIONS(2128), + [aux_sym_cmd_identifier_token25] = ACTIONS(2128), + [aux_sym_cmd_identifier_token26] = ACTIONS(2128), + [aux_sym_cmd_identifier_token27] = ACTIONS(2128), + [aux_sym_cmd_identifier_token28] = ACTIONS(2128), + [aux_sym_cmd_identifier_token29] = ACTIONS(2128), + [aux_sym_cmd_identifier_token30] = ACTIONS(2128), + [aux_sym_cmd_identifier_token31] = ACTIONS(2128), + [aux_sym_cmd_identifier_token32] = ACTIONS(2128), + [aux_sym_cmd_identifier_token33] = ACTIONS(2128), + [aux_sym_cmd_identifier_token34] = ACTIONS(2122), + [aux_sym_cmd_identifier_token35] = ACTIONS(2128), + [aux_sym_cmd_identifier_token36] = ACTIONS(2128), + [aux_sym_cmd_identifier_token37] = ACTIONS(2128), + [aux_sym_cmd_identifier_token38] = ACTIONS(2122), + [aux_sym_cmd_identifier_token39] = ACTIONS(2128), + [aux_sym_cmd_identifier_token40] = ACTIONS(2128), + [anon_sym_def] = ACTIONS(2122), + [anon_sym_export_DASHenv] = ACTIONS(2122), + [anon_sym_extern] = ACTIONS(2122), + [anon_sym_module] = ACTIONS(2122), + [anon_sym_use] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2128), + [anon_sym_DOLLAR] = ACTIONS(2128), + [anon_sym_error] = ACTIONS(2122), + [anon_sym_DASH2] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_in2] = ACTIONS(2122), + [anon_sym_loop] = ACTIONS(2122), + [anon_sym_make] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_else] = ACTIONS(2122), + [anon_sym_match] = ACTIONS(2122), + [anon_sym_RBRACE] = ACTIONS(2128), + [anon_sym_try] = ACTIONS(2122), + [anon_sym_catch] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_source] = ACTIONS(2122), + [anon_sym_source_DASHenv] = ACTIONS(2122), + [anon_sym_register] = ACTIONS(2122), + [anon_sym_hide] = ACTIONS(2122), + [anon_sym_hide_DASHenv] = ACTIONS(2122), + [anon_sym_overlay] = ACTIONS(2122), + [anon_sym_as] = ACTIONS(2122), + [anon_sym_PLUS2] = ACTIONS(2122), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2128), + [anon_sym_DOT_DOT2] = ACTIONS(2187), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2189), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2189), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2128), + [aux_sym__val_number_decimal_token1] = ACTIONS(2122), + [aux_sym__val_number_decimal_token2] = ACTIONS(2128), + [aux_sym__val_number_decimal_token3] = ACTIONS(2128), + [aux_sym__val_number_decimal_token4] = ACTIONS(2128), + [aux_sym__val_number_token1] = ACTIONS(2128), + [aux_sym__val_number_token2] = ACTIONS(2128), + [aux_sym__val_number_token3] = ACTIONS(2128), + [aux_sym__val_number_token4] = ACTIONS(2122), + [aux_sym__val_number_token5] = ACTIONS(2122), + [aux_sym__val_number_token6] = ACTIONS(2122), + [anon_sym_DQUOTE] = ACTIONS(2128), + [sym__str_single_quotes] = ACTIONS(2128), + [sym__str_back_ticks] = ACTIONS(2128), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2128), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2128), + }, + [516] = { + [sym_comment] = STATE(516), + [anon_sym_export] = ACTIONS(2130), + [anon_sym_alias] = ACTIONS(2130), + [anon_sym_let] = ACTIONS(2130), + [anon_sym_let_DASHenv] = ACTIONS(2130), + [anon_sym_mut] = ACTIONS(2130), + [anon_sym_const] = ACTIONS(2130), + [aux_sym_cmd_identifier_token1] = ACTIONS(2130), + [aux_sym_cmd_identifier_token2] = ACTIONS(2136), + [aux_sym_cmd_identifier_token3] = ACTIONS(2136), + [aux_sym_cmd_identifier_token4] = ACTIONS(2136), + [aux_sym_cmd_identifier_token5] = ACTIONS(2136), + [aux_sym_cmd_identifier_token6] = ACTIONS(2136), + [aux_sym_cmd_identifier_token7] = ACTIONS(2136), + [aux_sym_cmd_identifier_token8] = ACTIONS(2130), + [aux_sym_cmd_identifier_token9] = ACTIONS(2130), + [aux_sym_cmd_identifier_token10] = ACTIONS(2136), + [aux_sym_cmd_identifier_token11] = ACTIONS(2136), + [aux_sym_cmd_identifier_token12] = ACTIONS(2130), + [aux_sym_cmd_identifier_token13] = ACTIONS(2130), + [aux_sym_cmd_identifier_token14] = ACTIONS(2130), + [aux_sym_cmd_identifier_token15] = ACTIONS(2130), + [aux_sym_cmd_identifier_token16] = ACTIONS(2136), + [aux_sym_cmd_identifier_token17] = ACTIONS(2136), + [aux_sym_cmd_identifier_token18] = ACTIONS(2136), + [aux_sym_cmd_identifier_token19] = ACTIONS(2136), + [aux_sym_cmd_identifier_token20] = ACTIONS(2136), + [aux_sym_cmd_identifier_token21] = ACTIONS(2136), + [aux_sym_cmd_identifier_token22] = ACTIONS(2136), + [aux_sym_cmd_identifier_token23] = ACTIONS(2136), + [aux_sym_cmd_identifier_token24] = ACTIONS(2136), + [aux_sym_cmd_identifier_token25] = ACTIONS(2136), + [aux_sym_cmd_identifier_token26] = ACTIONS(2136), + [aux_sym_cmd_identifier_token27] = ACTIONS(2136), + [aux_sym_cmd_identifier_token28] = ACTIONS(2136), + [aux_sym_cmd_identifier_token29] = ACTIONS(2136), + [aux_sym_cmd_identifier_token30] = ACTIONS(2136), + [aux_sym_cmd_identifier_token31] = ACTIONS(2136), + [aux_sym_cmd_identifier_token32] = ACTIONS(2136), + [aux_sym_cmd_identifier_token33] = ACTIONS(2136), + [aux_sym_cmd_identifier_token34] = ACTIONS(2130), + [aux_sym_cmd_identifier_token35] = ACTIONS(2136), + [aux_sym_cmd_identifier_token36] = ACTIONS(2136), + [aux_sym_cmd_identifier_token37] = ACTIONS(2136), + [aux_sym_cmd_identifier_token38] = ACTIONS(2130), + [aux_sym_cmd_identifier_token39] = ACTIONS(2136), + [aux_sym_cmd_identifier_token40] = ACTIONS(2136), + [anon_sym_def] = ACTIONS(2130), + [anon_sym_export_DASHenv] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(2130), + [anon_sym_module] = ACTIONS(2130), + [anon_sym_use] = ACTIONS(2130), + [anon_sym_LPAREN] = ACTIONS(2136), + [anon_sym_DOLLAR] = ACTIONS(2136), + [anon_sym_error] = ACTIONS(2130), + [anon_sym_DASH2] = ACTIONS(2130), + [anon_sym_break] = ACTIONS(2130), + [anon_sym_continue] = ACTIONS(2130), + [anon_sym_for] = ACTIONS(2130), + [anon_sym_in2] = ACTIONS(2130), + [anon_sym_loop] = ACTIONS(2130), + [anon_sym_make] = ACTIONS(2130), + [anon_sym_while] = ACTIONS(2130), + [anon_sym_do] = ACTIONS(2130), + [anon_sym_if] = ACTIONS(2130), + [anon_sym_else] = ACTIONS(2130), + [anon_sym_match] = ACTIONS(2130), + [anon_sym_RBRACE] = ACTIONS(2136), + [anon_sym_try] = ACTIONS(2130), + [anon_sym_catch] = ACTIONS(2130), + [anon_sym_return] = ACTIONS(2130), + [anon_sym_source] = ACTIONS(2130), + [anon_sym_source_DASHenv] = ACTIONS(2130), + [anon_sym_register] = ACTIONS(2130), + [anon_sym_hide] = ACTIONS(2130), + [anon_sym_hide_DASHenv] = ACTIONS(2130), + [anon_sym_overlay] = ACTIONS(2130), + [anon_sym_as] = ACTIONS(2130), + [anon_sym_PLUS2] = ACTIONS(2130), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2136), + [anon_sym_DOT_DOT2] = ACTIONS(2191), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2193), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2193), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2136), + [aux_sym__val_number_decimal_token1] = ACTIONS(2130), + [aux_sym__val_number_decimal_token2] = ACTIONS(2136), + [aux_sym__val_number_decimal_token3] = ACTIONS(2136), + [aux_sym__val_number_decimal_token4] = ACTIONS(2136), + [aux_sym__val_number_token1] = ACTIONS(2136), + [aux_sym__val_number_token2] = ACTIONS(2136), + [aux_sym__val_number_token3] = ACTIONS(2136), + [aux_sym__val_number_token4] = ACTIONS(2130), + [aux_sym__val_number_token5] = ACTIONS(2130), + [aux_sym__val_number_token6] = ACTIONS(2130), + [anon_sym_DQUOTE] = ACTIONS(2136), + [sym__str_single_quotes] = ACTIONS(2136), + [sym__str_back_ticks] = ACTIONS(2136), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2136), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2136), + }, + [517] = { + [sym_comment] = STATE(517), + [anon_sym_export] = ACTIONS(2146), + [anon_sym_alias] = ACTIONS(2146), + [anon_sym_let] = ACTIONS(2146), + [anon_sym_let_DASHenv] = ACTIONS(2146), + [anon_sym_mut] = ACTIONS(2146), + [anon_sym_const] = ACTIONS(2146), + [aux_sym_cmd_identifier_token1] = ACTIONS(2146), + [aux_sym_cmd_identifier_token2] = ACTIONS(2152), + [aux_sym_cmd_identifier_token3] = ACTIONS(2152), + [aux_sym_cmd_identifier_token4] = ACTIONS(2152), + [aux_sym_cmd_identifier_token5] = ACTIONS(2152), + [aux_sym_cmd_identifier_token6] = ACTIONS(2152), + [aux_sym_cmd_identifier_token7] = ACTIONS(2152), + [aux_sym_cmd_identifier_token8] = ACTIONS(2146), + [aux_sym_cmd_identifier_token9] = ACTIONS(2146), + [aux_sym_cmd_identifier_token10] = ACTIONS(2152), + [aux_sym_cmd_identifier_token11] = ACTIONS(2152), + [aux_sym_cmd_identifier_token12] = ACTIONS(2146), + [aux_sym_cmd_identifier_token13] = ACTIONS(2146), + [aux_sym_cmd_identifier_token14] = ACTIONS(2146), + [aux_sym_cmd_identifier_token15] = ACTIONS(2146), + [aux_sym_cmd_identifier_token16] = ACTIONS(2152), + [aux_sym_cmd_identifier_token17] = ACTIONS(2152), + [aux_sym_cmd_identifier_token18] = ACTIONS(2152), + [aux_sym_cmd_identifier_token19] = ACTIONS(2152), + [aux_sym_cmd_identifier_token20] = ACTIONS(2152), + [aux_sym_cmd_identifier_token21] = ACTIONS(2152), + [aux_sym_cmd_identifier_token22] = ACTIONS(2152), + [aux_sym_cmd_identifier_token23] = ACTIONS(2152), + [aux_sym_cmd_identifier_token24] = ACTIONS(2152), + [aux_sym_cmd_identifier_token25] = ACTIONS(2152), + [aux_sym_cmd_identifier_token26] = ACTIONS(2152), + [aux_sym_cmd_identifier_token27] = ACTIONS(2152), + [aux_sym_cmd_identifier_token28] = ACTIONS(2152), + [aux_sym_cmd_identifier_token29] = ACTIONS(2152), + [aux_sym_cmd_identifier_token30] = ACTIONS(2152), + [aux_sym_cmd_identifier_token31] = ACTIONS(2152), + [aux_sym_cmd_identifier_token32] = ACTIONS(2152), + [aux_sym_cmd_identifier_token33] = ACTIONS(2152), + [aux_sym_cmd_identifier_token34] = ACTIONS(2146), + [aux_sym_cmd_identifier_token35] = ACTIONS(2152), + [aux_sym_cmd_identifier_token36] = ACTIONS(2152), + [aux_sym_cmd_identifier_token37] = ACTIONS(2152), + [aux_sym_cmd_identifier_token38] = ACTIONS(2146), + [aux_sym_cmd_identifier_token39] = ACTIONS(2152), + [aux_sym_cmd_identifier_token40] = ACTIONS(2152), + [anon_sym_def] = ACTIONS(2146), + [anon_sym_export_DASHenv] = ACTIONS(2146), + [anon_sym_extern] = ACTIONS(2146), + [anon_sym_module] = ACTIONS(2146), + [anon_sym_use] = ACTIONS(2146), + [anon_sym_LPAREN] = ACTIONS(2152), + [anon_sym_DOLLAR] = ACTIONS(2152), + [anon_sym_error] = ACTIONS(2146), + [anon_sym_DASH2] = ACTIONS(2146), + [anon_sym_break] = ACTIONS(2146), + [anon_sym_continue] = ACTIONS(2146), + [anon_sym_for] = ACTIONS(2146), + [anon_sym_in2] = ACTIONS(2146), + [anon_sym_loop] = ACTIONS(2146), + [anon_sym_make] = ACTIONS(2146), + [anon_sym_while] = ACTIONS(2146), + [anon_sym_do] = ACTIONS(2146), + [anon_sym_if] = ACTIONS(2146), + [anon_sym_else] = ACTIONS(2146), + [anon_sym_match] = ACTIONS(2146), + [anon_sym_RBRACE] = ACTIONS(2152), + [anon_sym_try] = ACTIONS(2146), + [anon_sym_catch] = ACTIONS(2146), + [anon_sym_return] = ACTIONS(2146), + [anon_sym_source] = ACTIONS(2146), + [anon_sym_source_DASHenv] = ACTIONS(2146), + [anon_sym_register] = ACTIONS(2146), + [anon_sym_hide] = ACTIONS(2146), + [anon_sym_hide_DASHenv] = ACTIONS(2146), + [anon_sym_overlay] = ACTIONS(2146), + [anon_sym_as] = ACTIONS(2146), + [anon_sym_PLUS2] = ACTIONS(2146), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2152), + [anon_sym_DOT_DOT2] = ACTIONS(2195), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2197), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2197), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2152), + [aux_sym__val_number_decimal_token1] = ACTIONS(2146), + [aux_sym__val_number_decimal_token2] = ACTIONS(2152), + [aux_sym__val_number_decimal_token3] = ACTIONS(2152), + [aux_sym__val_number_decimal_token4] = ACTIONS(2152), + [aux_sym__val_number_token1] = ACTIONS(2152), + [aux_sym__val_number_token2] = ACTIONS(2152), + [aux_sym__val_number_token3] = ACTIONS(2152), + [aux_sym__val_number_token4] = ACTIONS(2146), + [aux_sym__val_number_token5] = ACTIONS(2146), + [aux_sym__val_number_token6] = ACTIONS(2146), + [anon_sym_DQUOTE] = ACTIONS(2152), + [sym__str_single_quotes] = ACTIONS(2152), + [sym__str_back_ticks] = ACTIONS(2152), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2152), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2152), + }, + [518] = { + [sym__expr_parenthesized_immediate] = STATE(8152), + [sym_comment] = STATE(518), + [anon_sym_export] = ACTIONS(2199), + [anon_sym_alias] = ACTIONS(2199), + [anon_sym_let] = ACTIONS(2199), + [anon_sym_let_DASHenv] = ACTIONS(2199), + [anon_sym_mut] = ACTIONS(2199), + [anon_sym_const] = ACTIONS(2199), + [aux_sym_cmd_identifier_token1] = ACTIONS(2199), + [aux_sym_cmd_identifier_token2] = ACTIONS(2199), + [aux_sym_cmd_identifier_token3] = ACTIONS(2199), + [aux_sym_cmd_identifier_token4] = ACTIONS(2199), + [aux_sym_cmd_identifier_token5] = ACTIONS(2199), + [aux_sym_cmd_identifier_token6] = ACTIONS(2199), + [aux_sym_cmd_identifier_token7] = ACTIONS(2199), + [aux_sym_cmd_identifier_token8] = ACTIONS(2199), + [aux_sym_cmd_identifier_token9] = ACTIONS(2199), + [aux_sym_cmd_identifier_token10] = ACTIONS(2199), + [aux_sym_cmd_identifier_token11] = ACTIONS(2199), + [aux_sym_cmd_identifier_token12] = ACTIONS(2199), + [aux_sym_cmd_identifier_token13] = ACTIONS(2199), + [aux_sym_cmd_identifier_token14] = ACTIONS(2199), + [aux_sym_cmd_identifier_token15] = ACTIONS(2199), + [aux_sym_cmd_identifier_token16] = ACTIONS(2199), + [aux_sym_cmd_identifier_token17] = ACTIONS(2199), + [aux_sym_cmd_identifier_token18] = ACTIONS(2199), + [aux_sym_cmd_identifier_token19] = ACTIONS(2199), + [aux_sym_cmd_identifier_token20] = ACTIONS(2199), + [aux_sym_cmd_identifier_token21] = ACTIONS(2199), + [aux_sym_cmd_identifier_token22] = ACTIONS(2199), + [aux_sym_cmd_identifier_token23] = ACTIONS(2199), + [aux_sym_cmd_identifier_token24] = ACTIONS(2199), + [aux_sym_cmd_identifier_token25] = ACTIONS(2199), + [aux_sym_cmd_identifier_token26] = ACTIONS(2199), + [aux_sym_cmd_identifier_token27] = ACTIONS(2199), + [aux_sym_cmd_identifier_token28] = ACTIONS(2199), + [aux_sym_cmd_identifier_token29] = ACTIONS(2199), + [aux_sym_cmd_identifier_token30] = ACTIONS(2199), + [aux_sym_cmd_identifier_token31] = ACTIONS(2199), + [aux_sym_cmd_identifier_token32] = ACTIONS(2199), + [aux_sym_cmd_identifier_token33] = ACTIONS(2199), + [aux_sym_cmd_identifier_token34] = ACTIONS(2199), + [aux_sym_cmd_identifier_token35] = ACTIONS(2199), + [aux_sym_cmd_identifier_token36] = ACTIONS(2199), + [aux_sym_cmd_identifier_token37] = ACTIONS(2199), + [aux_sym_cmd_identifier_token38] = ACTIONS(2199), + [aux_sym_cmd_identifier_token39] = ACTIONS(2199), + [aux_sym_cmd_identifier_token40] = ACTIONS(2199), + [anon_sym_def] = ACTIONS(2199), + [anon_sym_export_DASHenv] = ACTIONS(2199), + [anon_sym_extern] = ACTIONS(2199), + [anon_sym_module] = ACTIONS(2199), + [anon_sym_use] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_DOLLAR] = ACTIONS(2199), + [anon_sym_error] = ACTIONS(2199), + [anon_sym_DASH2] = ACTIONS(2199), + [anon_sym_break] = ACTIONS(2199), + [anon_sym_continue] = ACTIONS(2199), + [anon_sym_for] = ACTIONS(2199), + [anon_sym_in2] = ACTIONS(2199), + [anon_sym_loop] = ACTIONS(2199), + [anon_sym_make] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2199), + [anon_sym_do] = ACTIONS(2199), + [anon_sym_if] = ACTIONS(2199), + [anon_sym_else] = ACTIONS(2199), + [anon_sym_match] = ACTIONS(2199), + [anon_sym_RBRACE] = ACTIONS(2199), + [anon_sym_try] = ACTIONS(2199), + [anon_sym_catch] = ACTIONS(2199), + [anon_sym_return] = ACTIONS(2199), + [anon_sym_source] = ACTIONS(2199), + [anon_sym_source_DASHenv] = ACTIONS(2199), + [anon_sym_register] = ACTIONS(2199), + [anon_sym_hide] = ACTIONS(2199), + [anon_sym_hide_DASHenv] = ACTIONS(2199), + [anon_sym_overlay] = ACTIONS(2199), + [anon_sym_as] = ACTIONS(2199), + [anon_sym_LPAREN2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(2199), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2199), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2199), + [aux_sym__val_number_decimal_token1] = ACTIONS(2199), + [aux_sym__val_number_decimal_token2] = ACTIONS(2199), + [aux_sym__val_number_decimal_token3] = ACTIONS(2199), + [aux_sym__val_number_decimal_token4] = ACTIONS(2199), + [aux_sym__val_number_token1] = ACTIONS(2199), + [aux_sym__val_number_token2] = ACTIONS(2199), + [aux_sym__val_number_token3] = ACTIONS(2199), + [aux_sym__val_number_token4] = ACTIONS(2199), + [aux_sym__val_number_token5] = ACTIONS(2199), + [aux_sym__val_number_token6] = ACTIONS(2199), + [anon_sym_DQUOTE] = ACTIONS(2199), + [sym__str_single_quotes] = ACTIONS(2199), + [sym__str_back_ticks] = ACTIONS(2199), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2199), + [sym__entry_separator] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2201), + }, + [519] = { + [sym_comment] = STATE(519), + [anon_sym_export] = ACTIONS(2157), + [anon_sym_alias] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_let_DASHenv] = ACTIONS(2157), + [anon_sym_mut] = ACTIONS(2157), + [anon_sym_const] = ACTIONS(2157), + [aux_sym_cmd_identifier_token1] = ACTIONS(2157), + [aux_sym_cmd_identifier_token2] = ACTIONS(2163), + [aux_sym_cmd_identifier_token3] = ACTIONS(2163), + [aux_sym_cmd_identifier_token4] = ACTIONS(2163), + [aux_sym_cmd_identifier_token5] = ACTIONS(2163), + [aux_sym_cmd_identifier_token6] = ACTIONS(2163), + [aux_sym_cmd_identifier_token7] = ACTIONS(2163), + [aux_sym_cmd_identifier_token8] = ACTIONS(2157), + [aux_sym_cmd_identifier_token9] = ACTIONS(2157), + [aux_sym_cmd_identifier_token10] = ACTIONS(2163), + [aux_sym_cmd_identifier_token11] = ACTIONS(2163), + [aux_sym_cmd_identifier_token12] = ACTIONS(2157), + [aux_sym_cmd_identifier_token13] = ACTIONS(2157), + [aux_sym_cmd_identifier_token14] = ACTIONS(2157), + [aux_sym_cmd_identifier_token15] = ACTIONS(2157), + [aux_sym_cmd_identifier_token16] = ACTIONS(2163), + [aux_sym_cmd_identifier_token17] = ACTIONS(2163), + [aux_sym_cmd_identifier_token18] = ACTIONS(2163), + [aux_sym_cmd_identifier_token19] = ACTIONS(2163), + [aux_sym_cmd_identifier_token20] = ACTIONS(2163), + [aux_sym_cmd_identifier_token21] = ACTIONS(2163), + [aux_sym_cmd_identifier_token22] = ACTIONS(2163), + [aux_sym_cmd_identifier_token23] = ACTIONS(2163), + [aux_sym_cmd_identifier_token24] = ACTIONS(2163), + [aux_sym_cmd_identifier_token25] = ACTIONS(2163), + [aux_sym_cmd_identifier_token26] = ACTIONS(2163), + [aux_sym_cmd_identifier_token27] = ACTIONS(2163), + [aux_sym_cmd_identifier_token28] = ACTIONS(2163), + [aux_sym_cmd_identifier_token29] = ACTIONS(2163), + [aux_sym_cmd_identifier_token30] = ACTIONS(2163), + [aux_sym_cmd_identifier_token31] = ACTIONS(2163), + [aux_sym_cmd_identifier_token32] = ACTIONS(2163), + [aux_sym_cmd_identifier_token33] = ACTIONS(2163), + [aux_sym_cmd_identifier_token34] = ACTIONS(2157), + [aux_sym_cmd_identifier_token35] = ACTIONS(2163), + [aux_sym_cmd_identifier_token36] = ACTIONS(2163), + [aux_sym_cmd_identifier_token37] = ACTIONS(2163), + [aux_sym_cmd_identifier_token38] = ACTIONS(2157), + [aux_sym_cmd_identifier_token39] = ACTIONS(2163), + [aux_sym_cmd_identifier_token40] = ACTIONS(2163), + [anon_sym_def] = ACTIONS(2157), + [anon_sym_export_DASHenv] = ACTIONS(2157), + [anon_sym_extern] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), + [anon_sym_use] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_DOLLAR] = ACTIONS(2163), + [anon_sym_error] = ACTIONS(2157), + [anon_sym_DASH2] = ACTIONS(2157), + [anon_sym_break] = ACTIONS(2157), + [anon_sym_continue] = ACTIONS(2157), + [anon_sym_for] = ACTIONS(2157), + [anon_sym_in2] = ACTIONS(2157), + [anon_sym_loop] = ACTIONS(2157), + [anon_sym_make] = ACTIONS(2157), + [anon_sym_while] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_if] = ACTIONS(2157), + [anon_sym_else] = ACTIONS(2157), + [anon_sym_match] = ACTIONS(2157), + [anon_sym_RBRACE] = ACTIONS(2163), + [anon_sym_try] = ACTIONS(2157), + [anon_sym_catch] = ACTIONS(2157), + [anon_sym_return] = ACTIONS(2157), + [anon_sym_source] = ACTIONS(2157), + [anon_sym_source_DASHenv] = ACTIONS(2157), + [anon_sym_register] = ACTIONS(2157), + [anon_sym_hide] = ACTIONS(2157), + [anon_sym_hide_DASHenv] = ACTIONS(2157), + [anon_sym_overlay] = ACTIONS(2157), + [anon_sym_as] = ACTIONS(2157), + [anon_sym_PLUS2] = ACTIONS(2157), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2163), + [anon_sym_DOT_DOT2] = ACTIONS(2203), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2205), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2205), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2163), + [aux_sym__val_number_decimal_token1] = ACTIONS(2157), + [aux_sym__val_number_decimal_token2] = ACTIONS(2163), + [aux_sym__val_number_decimal_token3] = ACTIONS(2163), + [aux_sym__val_number_decimal_token4] = ACTIONS(2163), + [aux_sym__val_number_token1] = ACTIONS(2163), + [aux_sym__val_number_token2] = ACTIONS(2163), + [aux_sym__val_number_token3] = ACTIONS(2163), + [aux_sym__val_number_token4] = ACTIONS(2157), + [aux_sym__val_number_token5] = ACTIONS(2157), + [aux_sym__val_number_token6] = ACTIONS(2157), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym__str_single_quotes] = ACTIONS(2163), + [sym__str_back_ticks] = ACTIONS(2163), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2163), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2163), + }, + [520] = { + [sym__expr_parenthesized_immediate] = STATE(8152), + [sym_comment] = STATE(520), + [anon_sym_export] = ACTIONS(2207), + [anon_sym_alias] = ACTIONS(2207), + [anon_sym_let] = ACTIONS(2207), + [anon_sym_let_DASHenv] = ACTIONS(2207), + [anon_sym_mut] = ACTIONS(2207), + [anon_sym_const] = ACTIONS(2207), + [aux_sym_cmd_identifier_token1] = ACTIONS(2207), + [aux_sym_cmd_identifier_token2] = ACTIONS(2207), + [aux_sym_cmd_identifier_token3] = ACTIONS(2207), + [aux_sym_cmd_identifier_token4] = ACTIONS(2207), + [aux_sym_cmd_identifier_token5] = ACTIONS(2207), + [aux_sym_cmd_identifier_token6] = ACTIONS(2207), + [aux_sym_cmd_identifier_token7] = ACTIONS(2207), + [aux_sym_cmd_identifier_token8] = ACTIONS(2207), + [aux_sym_cmd_identifier_token9] = ACTIONS(2207), + [aux_sym_cmd_identifier_token10] = ACTIONS(2207), + [aux_sym_cmd_identifier_token11] = ACTIONS(2207), + [aux_sym_cmd_identifier_token12] = ACTIONS(2207), + [aux_sym_cmd_identifier_token13] = ACTIONS(2207), + [aux_sym_cmd_identifier_token14] = ACTIONS(2207), + [aux_sym_cmd_identifier_token15] = ACTIONS(2207), + [aux_sym_cmd_identifier_token16] = ACTIONS(2207), + [aux_sym_cmd_identifier_token17] = ACTIONS(2207), + [aux_sym_cmd_identifier_token18] = ACTIONS(2207), + [aux_sym_cmd_identifier_token19] = ACTIONS(2207), + [aux_sym_cmd_identifier_token20] = ACTIONS(2207), + [aux_sym_cmd_identifier_token21] = ACTIONS(2207), + [aux_sym_cmd_identifier_token22] = ACTIONS(2207), + [aux_sym_cmd_identifier_token23] = ACTIONS(2207), + [aux_sym_cmd_identifier_token24] = ACTIONS(2207), + [aux_sym_cmd_identifier_token25] = ACTIONS(2207), + [aux_sym_cmd_identifier_token26] = ACTIONS(2207), + [aux_sym_cmd_identifier_token27] = ACTIONS(2207), + [aux_sym_cmd_identifier_token28] = ACTIONS(2207), + [aux_sym_cmd_identifier_token29] = ACTIONS(2207), + [aux_sym_cmd_identifier_token30] = ACTIONS(2207), + [aux_sym_cmd_identifier_token31] = ACTIONS(2207), + [aux_sym_cmd_identifier_token32] = ACTIONS(2207), + [aux_sym_cmd_identifier_token33] = ACTIONS(2207), + [aux_sym_cmd_identifier_token34] = ACTIONS(2207), + [aux_sym_cmd_identifier_token35] = ACTIONS(2207), + [aux_sym_cmd_identifier_token36] = ACTIONS(2207), + [aux_sym_cmd_identifier_token37] = ACTIONS(2207), + [aux_sym_cmd_identifier_token38] = ACTIONS(2207), + [aux_sym_cmd_identifier_token39] = ACTIONS(2207), + [aux_sym_cmd_identifier_token40] = ACTIONS(2207), + [anon_sym_def] = ACTIONS(2207), + [anon_sym_export_DASHenv] = ACTIONS(2207), + [anon_sym_extern] = ACTIONS(2207), + [anon_sym_module] = ACTIONS(2207), + [anon_sym_use] = ACTIONS(2207), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_DOLLAR] = ACTIONS(2207), + [anon_sym_error] = ACTIONS(2207), + [anon_sym_DASH2] = ACTIONS(2207), + [anon_sym_break] = ACTIONS(2207), + [anon_sym_continue] = ACTIONS(2207), + [anon_sym_for] = ACTIONS(2207), + [anon_sym_in2] = ACTIONS(2207), + [anon_sym_loop] = ACTIONS(2207), + [anon_sym_make] = ACTIONS(2207), + [anon_sym_while] = ACTIONS(2207), + [anon_sym_do] = ACTIONS(2207), + [anon_sym_if] = ACTIONS(2207), + [anon_sym_else] = ACTIONS(2207), + [anon_sym_match] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2207), + [anon_sym_try] = ACTIONS(2207), + [anon_sym_catch] = ACTIONS(2207), + [anon_sym_return] = ACTIONS(2207), + [anon_sym_source] = ACTIONS(2207), + [anon_sym_source_DASHenv] = ACTIONS(2207), + [anon_sym_register] = ACTIONS(2207), + [anon_sym_hide] = ACTIONS(2207), + [anon_sym_hide_DASHenv] = ACTIONS(2207), + [anon_sym_overlay] = ACTIONS(2207), + [anon_sym_as] = ACTIONS(2207), + [anon_sym_LPAREN2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(2207), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2207), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2207), + [aux_sym__val_number_decimal_token1] = ACTIONS(2207), + [aux_sym__val_number_decimal_token2] = ACTIONS(2207), + [aux_sym__val_number_decimal_token3] = ACTIONS(2207), + [aux_sym__val_number_decimal_token4] = ACTIONS(2207), + [aux_sym__val_number_token1] = ACTIONS(2207), + [aux_sym__val_number_token2] = ACTIONS(2207), + [aux_sym__val_number_token3] = ACTIONS(2207), + [aux_sym__val_number_token4] = ACTIONS(2207), + [aux_sym__val_number_token5] = ACTIONS(2207), + [aux_sym__val_number_token6] = ACTIONS(2207), + [anon_sym_DQUOTE] = ACTIONS(2207), + [sym__str_single_quotes] = ACTIONS(2207), + [sym__str_back_ticks] = ACTIONS(2207), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2207), + [sym__entry_separator] = ACTIONS(2209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2209), + }, + [521] = { + [sym__expr_parenthesized_immediate] = STATE(8152), + [sym_comment] = STATE(521), + [anon_sym_export] = ACTIONS(2211), + [anon_sym_alias] = ACTIONS(2211), + [anon_sym_let] = ACTIONS(2211), + [anon_sym_let_DASHenv] = ACTIONS(2211), + [anon_sym_mut] = ACTIONS(2211), + [anon_sym_const] = ACTIONS(2211), + [aux_sym_cmd_identifier_token1] = ACTIONS(2211), + [aux_sym_cmd_identifier_token2] = ACTIONS(2211), + [aux_sym_cmd_identifier_token3] = ACTIONS(2211), + [aux_sym_cmd_identifier_token4] = ACTIONS(2211), + [aux_sym_cmd_identifier_token5] = ACTIONS(2211), + [aux_sym_cmd_identifier_token6] = ACTIONS(2211), + [aux_sym_cmd_identifier_token7] = ACTIONS(2211), + [aux_sym_cmd_identifier_token8] = ACTIONS(2211), + [aux_sym_cmd_identifier_token9] = ACTIONS(2211), + [aux_sym_cmd_identifier_token10] = ACTIONS(2211), + [aux_sym_cmd_identifier_token11] = ACTIONS(2211), + [aux_sym_cmd_identifier_token12] = ACTIONS(2211), + [aux_sym_cmd_identifier_token13] = ACTIONS(2211), + [aux_sym_cmd_identifier_token14] = ACTIONS(2211), + [aux_sym_cmd_identifier_token15] = ACTIONS(2211), + [aux_sym_cmd_identifier_token16] = ACTIONS(2211), + [aux_sym_cmd_identifier_token17] = ACTIONS(2211), + [aux_sym_cmd_identifier_token18] = ACTIONS(2211), + [aux_sym_cmd_identifier_token19] = ACTIONS(2211), + [aux_sym_cmd_identifier_token20] = ACTIONS(2211), + [aux_sym_cmd_identifier_token21] = ACTIONS(2211), + [aux_sym_cmd_identifier_token22] = ACTIONS(2211), + [aux_sym_cmd_identifier_token23] = ACTIONS(2211), + [aux_sym_cmd_identifier_token24] = ACTIONS(2211), + [aux_sym_cmd_identifier_token25] = ACTIONS(2211), + [aux_sym_cmd_identifier_token26] = ACTIONS(2211), + [aux_sym_cmd_identifier_token27] = ACTIONS(2211), + [aux_sym_cmd_identifier_token28] = ACTIONS(2211), + [aux_sym_cmd_identifier_token29] = ACTIONS(2211), + [aux_sym_cmd_identifier_token30] = ACTIONS(2211), + [aux_sym_cmd_identifier_token31] = ACTIONS(2211), + [aux_sym_cmd_identifier_token32] = ACTIONS(2211), + [aux_sym_cmd_identifier_token33] = ACTIONS(2211), + [aux_sym_cmd_identifier_token34] = ACTIONS(2211), + [aux_sym_cmd_identifier_token35] = ACTIONS(2211), + [aux_sym_cmd_identifier_token36] = ACTIONS(2211), + [aux_sym_cmd_identifier_token37] = ACTIONS(2211), + [aux_sym_cmd_identifier_token38] = ACTIONS(2211), + [aux_sym_cmd_identifier_token39] = ACTIONS(2211), + [aux_sym_cmd_identifier_token40] = ACTIONS(2211), + [anon_sym_def] = ACTIONS(2211), + [anon_sym_export_DASHenv] = ACTIONS(2211), + [anon_sym_extern] = ACTIONS(2211), + [anon_sym_module] = ACTIONS(2211), + [anon_sym_use] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_DOLLAR] = ACTIONS(2211), + [anon_sym_error] = ACTIONS(2211), + [anon_sym_DASH2] = ACTIONS(2211), + [anon_sym_break] = ACTIONS(2211), + [anon_sym_continue] = ACTIONS(2211), + [anon_sym_for] = ACTIONS(2211), + [anon_sym_in2] = ACTIONS(2211), + [anon_sym_loop] = ACTIONS(2211), + [anon_sym_make] = ACTIONS(2211), + [anon_sym_while] = ACTIONS(2211), + [anon_sym_do] = ACTIONS(2211), + [anon_sym_if] = ACTIONS(2211), + [anon_sym_else] = ACTIONS(2211), + [anon_sym_match] = ACTIONS(2211), + [anon_sym_RBRACE] = ACTIONS(2211), + [anon_sym_try] = ACTIONS(2211), + [anon_sym_catch] = ACTIONS(2211), + [anon_sym_return] = ACTIONS(2211), + [anon_sym_source] = ACTIONS(2211), + [anon_sym_source_DASHenv] = ACTIONS(2211), + [anon_sym_register] = ACTIONS(2211), + [anon_sym_hide] = ACTIONS(2211), + [anon_sym_hide_DASHenv] = ACTIONS(2211), + [anon_sym_overlay] = ACTIONS(2211), + [anon_sym_as] = ACTIONS(2211), + [anon_sym_LPAREN2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(2211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2211), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2211), + [aux_sym__val_number_decimal_token1] = ACTIONS(2211), + [aux_sym__val_number_decimal_token2] = ACTIONS(2211), + [aux_sym__val_number_decimal_token3] = ACTIONS(2211), + [aux_sym__val_number_decimal_token4] = ACTIONS(2211), + [aux_sym__val_number_token1] = ACTIONS(2211), + [aux_sym__val_number_token2] = ACTIONS(2211), + [aux_sym__val_number_token3] = ACTIONS(2211), + [aux_sym__val_number_token4] = ACTIONS(2211), + [aux_sym__val_number_token5] = ACTIONS(2211), + [aux_sym__val_number_token6] = ACTIONS(2211), + [anon_sym_DQUOTE] = ACTIONS(2211), + [sym__str_single_quotes] = ACTIONS(2211), + [sym__str_back_ticks] = ACTIONS(2211), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2211), + [sym__entry_separator] = ACTIONS(2213), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2213), + }, + [522] = { + [sym__expr_parenthesized_immediate] = STATE(8152), + [sym_comment] = STATE(522), + [anon_sym_export] = ACTIONS(2215), + [anon_sym_alias] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_let_DASHenv] = ACTIONS(2215), + [anon_sym_mut] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [aux_sym_cmd_identifier_token1] = ACTIONS(2215), + [aux_sym_cmd_identifier_token2] = ACTIONS(2215), + [aux_sym_cmd_identifier_token3] = ACTIONS(2215), + [aux_sym_cmd_identifier_token4] = ACTIONS(2215), + [aux_sym_cmd_identifier_token5] = ACTIONS(2215), + [aux_sym_cmd_identifier_token6] = ACTIONS(2215), + [aux_sym_cmd_identifier_token7] = ACTIONS(2215), + [aux_sym_cmd_identifier_token8] = ACTIONS(2215), + [aux_sym_cmd_identifier_token9] = ACTIONS(2215), + [aux_sym_cmd_identifier_token10] = ACTIONS(2215), + [aux_sym_cmd_identifier_token11] = ACTIONS(2215), + [aux_sym_cmd_identifier_token12] = ACTIONS(2215), + [aux_sym_cmd_identifier_token13] = ACTIONS(2215), + [aux_sym_cmd_identifier_token14] = ACTIONS(2215), + [aux_sym_cmd_identifier_token15] = ACTIONS(2215), + [aux_sym_cmd_identifier_token16] = ACTIONS(2215), + [aux_sym_cmd_identifier_token17] = ACTIONS(2215), + [aux_sym_cmd_identifier_token18] = ACTIONS(2215), + [aux_sym_cmd_identifier_token19] = ACTIONS(2215), + [aux_sym_cmd_identifier_token20] = ACTIONS(2215), + [aux_sym_cmd_identifier_token21] = ACTIONS(2215), + [aux_sym_cmd_identifier_token22] = ACTIONS(2215), + [aux_sym_cmd_identifier_token23] = ACTIONS(2215), + [aux_sym_cmd_identifier_token24] = ACTIONS(2215), + [aux_sym_cmd_identifier_token25] = ACTIONS(2215), + [aux_sym_cmd_identifier_token26] = ACTIONS(2215), + [aux_sym_cmd_identifier_token27] = ACTIONS(2215), + [aux_sym_cmd_identifier_token28] = ACTIONS(2215), + [aux_sym_cmd_identifier_token29] = ACTIONS(2215), + [aux_sym_cmd_identifier_token30] = ACTIONS(2215), + [aux_sym_cmd_identifier_token31] = ACTIONS(2215), + [aux_sym_cmd_identifier_token32] = ACTIONS(2215), + [aux_sym_cmd_identifier_token33] = ACTIONS(2215), + [aux_sym_cmd_identifier_token34] = ACTIONS(2215), + [aux_sym_cmd_identifier_token35] = ACTIONS(2215), + [aux_sym_cmd_identifier_token36] = ACTIONS(2215), + [aux_sym_cmd_identifier_token37] = ACTIONS(2215), + [aux_sym_cmd_identifier_token38] = ACTIONS(2215), + [aux_sym_cmd_identifier_token39] = ACTIONS(2215), + [aux_sym_cmd_identifier_token40] = ACTIONS(2215), + [anon_sym_def] = ACTIONS(2215), + [anon_sym_export_DASHenv] = ACTIONS(2215), + [anon_sym_extern] = ACTIONS(2215), + [anon_sym_module] = ACTIONS(2215), + [anon_sym_use] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_DOLLAR] = ACTIONS(2215), + [anon_sym_error] = ACTIONS(2215), + [anon_sym_DASH2] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_in2] = ACTIONS(2215), + [anon_sym_loop] = ACTIONS(2215), + [anon_sym_make] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [anon_sym_do] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_else] = ACTIONS(2215), + [anon_sym_match] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_try] = ACTIONS(2215), + [anon_sym_catch] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_source] = ACTIONS(2215), + [anon_sym_source_DASHenv] = ACTIONS(2215), + [anon_sym_register] = ACTIONS(2215), + [anon_sym_hide] = ACTIONS(2215), + [anon_sym_hide_DASHenv] = ACTIONS(2215), + [anon_sym_overlay] = ACTIONS(2215), + [anon_sym_as] = ACTIONS(2215), + [anon_sym_LPAREN2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(2215), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2215), + [aux_sym__val_number_decimal_token1] = ACTIONS(2215), + [aux_sym__val_number_decimal_token2] = ACTIONS(2215), + [aux_sym__val_number_decimal_token3] = ACTIONS(2215), + [aux_sym__val_number_decimal_token4] = ACTIONS(2215), + [aux_sym__val_number_token1] = ACTIONS(2215), + [aux_sym__val_number_token2] = ACTIONS(2215), + [aux_sym__val_number_token3] = ACTIONS(2215), + [aux_sym__val_number_token4] = ACTIONS(2215), + [aux_sym__val_number_token5] = ACTIONS(2215), + [aux_sym__val_number_token6] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2215), + [sym__str_single_quotes] = ACTIONS(2215), + [sym__str_back_ticks] = ACTIONS(2215), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2215), + [sym__entry_separator] = ACTIONS(2217), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2217), + }, + [523] = { + [sym_comment] = STATE(523), + [anon_sym_export] = ACTIONS(1820), + [anon_sym_alias] = ACTIONS(1820), + [anon_sym_let] = ACTIONS(1820), + [anon_sym_let_DASHenv] = ACTIONS(1820), + [anon_sym_mut] = ACTIONS(1820), + [anon_sym_const] = ACTIONS(1820), + [aux_sym_cmd_identifier_token1] = ACTIONS(1820), + [aux_sym_cmd_identifier_token2] = ACTIONS(1820), + [aux_sym_cmd_identifier_token3] = ACTIONS(1820), + [aux_sym_cmd_identifier_token4] = ACTIONS(1820), + [aux_sym_cmd_identifier_token5] = ACTIONS(1820), + [aux_sym_cmd_identifier_token6] = ACTIONS(1820), + [aux_sym_cmd_identifier_token7] = ACTIONS(1820), + [aux_sym_cmd_identifier_token8] = ACTIONS(1820), + [aux_sym_cmd_identifier_token9] = ACTIONS(1820), + [aux_sym_cmd_identifier_token10] = ACTIONS(1820), + [aux_sym_cmd_identifier_token11] = ACTIONS(1820), + [aux_sym_cmd_identifier_token12] = ACTIONS(1820), + [aux_sym_cmd_identifier_token13] = ACTIONS(1820), + [aux_sym_cmd_identifier_token14] = ACTIONS(1820), + [aux_sym_cmd_identifier_token15] = ACTIONS(1820), + [aux_sym_cmd_identifier_token16] = ACTIONS(1820), + [aux_sym_cmd_identifier_token17] = ACTIONS(1820), + [aux_sym_cmd_identifier_token18] = ACTIONS(1820), + [aux_sym_cmd_identifier_token19] = ACTIONS(1820), + [aux_sym_cmd_identifier_token20] = ACTIONS(1820), + [aux_sym_cmd_identifier_token21] = ACTIONS(1820), + [aux_sym_cmd_identifier_token22] = ACTIONS(1820), + [aux_sym_cmd_identifier_token23] = ACTIONS(1820), + [aux_sym_cmd_identifier_token24] = ACTIONS(1820), + [aux_sym_cmd_identifier_token25] = ACTIONS(1820), + [aux_sym_cmd_identifier_token26] = ACTIONS(1820), + [aux_sym_cmd_identifier_token27] = ACTIONS(1820), + [aux_sym_cmd_identifier_token28] = ACTIONS(1820), + [aux_sym_cmd_identifier_token29] = ACTIONS(1820), + [aux_sym_cmd_identifier_token30] = ACTIONS(1820), + [aux_sym_cmd_identifier_token31] = ACTIONS(1820), + [aux_sym_cmd_identifier_token32] = ACTIONS(1820), + [aux_sym_cmd_identifier_token33] = ACTIONS(1820), + [aux_sym_cmd_identifier_token34] = ACTIONS(1820), + [aux_sym_cmd_identifier_token35] = ACTIONS(1820), + [aux_sym_cmd_identifier_token36] = ACTIONS(1820), + [aux_sym_cmd_identifier_token37] = ACTIONS(1820), + [aux_sym_cmd_identifier_token38] = ACTIONS(1820), + [aux_sym_cmd_identifier_token39] = ACTIONS(1820), + [aux_sym_cmd_identifier_token40] = ACTIONS(1820), + [anon_sym_def] = ACTIONS(1820), + [anon_sym_export_DASHenv] = ACTIONS(1820), + [anon_sym_extern] = ACTIONS(1820), + [anon_sym_module] = ACTIONS(1820), + [anon_sym_use] = ACTIONS(1820), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_error] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_break] = ACTIONS(1820), + [anon_sym_continue] = ACTIONS(1820), + [anon_sym_for] = ACTIONS(1820), + [anon_sym_in2] = ACTIONS(1820), + [anon_sym_loop] = ACTIONS(1820), + [anon_sym_make] = ACTIONS(1820), + [anon_sym_while] = ACTIONS(1820), + [anon_sym_do] = ACTIONS(1820), + [anon_sym_if] = ACTIONS(1820), + [anon_sym_else] = ACTIONS(1820), + [anon_sym_match] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_try] = ACTIONS(1820), + [anon_sym_catch] = ACTIONS(1820), + [anon_sym_return] = ACTIONS(1820), + [anon_sym_source] = ACTIONS(1820), + [anon_sym_source_DASHenv] = ACTIONS(1820), + [anon_sym_register] = ACTIONS(1820), + [anon_sym_hide] = ACTIONS(1820), + [anon_sym_hide_DASHenv] = ACTIONS(1820), + [anon_sym_overlay] = ACTIONS(1820), + [anon_sym_as] = ACTIONS(1820), + [anon_sym_LPAREN2] = ACTIONS(1822), + [anon_sym_PLUS2] = ACTIONS(1820), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1820), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1820), + [aux_sym__val_number_decimal_token1] = ACTIONS(1820), + [aux_sym__val_number_decimal_token2] = ACTIONS(1820), + [aux_sym__val_number_decimal_token3] = ACTIONS(1820), + [aux_sym__val_number_decimal_token4] = ACTIONS(1820), + [aux_sym__val_number_token1] = ACTIONS(1820), + [aux_sym__val_number_token2] = ACTIONS(1820), + [aux_sym__val_number_token3] = ACTIONS(1820), + [aux_sym__val_number_token4] = ACTIONS(1820), + [aux_sym__val_number_token5] = ACTIONS(1820), + [aux_sym__val_number_token6] = ACTIONS(1820), + [anon_sym_DQUOTE] = ACTIONS(1820), + [sym__str_single_quotes] = ACTIONS(1820), + [sym__str_back_ticks] = ACTIONS(1820), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1820), + [sym__entry_separator] = ACTIONS(1828), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1559), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1828), + }, + [524] = { + [sym_comment] = STATE(524), + [anon_sym_export] = ACTIONS(2118), + [anon_sym_alias] = ACTIONS(2118), + [anon_sym_let] = ACTIONS(2118), + [anon_sym_let_DASHenv] = ACTIONS(2118), + [anon_sym_mut] = ACTIONS(2118), + [anon_sym_const] = ACTIONS(2118), + [aux_sym_cmd_identifier_token1] = ACTIONS(2118), + [aux_sym_cmd_identifier_token2] = ACTIONS(2120), + [aux_sym_cmd_identifier_token3] = ACTIONS(2120), + [aux_sym_cmd_identifier_token4] = ACTIONS(2120), + [aux_sym_cmd_identifier_token5] = ACTIONS(2120), + [aux_sym_cmd_identifier_token6] = ACTIONS(2120), + [aux_sym_cmd_identifier_token7] = ACTIONS(2120), + [aux_sym_cmd_identifier_token8] = ACTIONS(2118), + [aux_sym_cmd_identifier_token9] = ACTIONS(2118), + [aux_sym_cmd_identifier_token10] = ACTIONS(2120), + [aux_sym_cmd_identifier_token11] = ACTIONS(2120), + [aux_sym_cmd_identifier_token12] = ACTIONS(2118), + [aux_sym_cmd_identifier_token13] = ACTIONS(2118), + [aux_sym_cmd_identifier_token14] = ACTIONS(2118), + [aux_sym_cmd_identifier_token15] = ACTIONS(2118), + [aux_sym_cmd_identifier_token16] = ACTIONS(2120), + [aux_sym_cmd_identifier_token17] = ACTIONS(2120), + [aux_sym_cmd_identifier_token18] = ACTIONS(2120), + [aux_sym_cmd_identifier_token19] = ACTIONS(2120), + [aux_sym_cmd_identifier_token20] = ACTIONS(2120), + [aux_sym_cmd_identifier_token21] = ACTIONS(2120), + [aux_sym_cmd_identifier_token22] = ACTIONS(2120), + [aux_sym_cmd_identifier_token23] = ACTIONS(2120), + [aux_sym_cmd_identifier_token24] = ACTIONS(2120), + [aux_sym_cmd_identifier_token25] = ACTIONS(2120), + [aux_sym_cmd_identifier_token26] = ACTIONS(2120), + [aux_sym_cmd_identifier_token27] = ACTIONS(2120), + [aux_sym_cmd_identifier_token28] = ACTIONS(2120), + [aux_sym_cmd_identifier_token29] = ACTIONS(2120), + [aux_sym_cmd_identifier_token30] = ACTIONS(2120), + [aux_sym_cmd_identifier_token31] = ACTIONS(2120), + [aux_sym_cmd_identifier_token32] = ACTIONS(2120), + [aux_sym_cmd_identifier_token33] = ACTIONS(2120), + [aux_sym_cmd_identifier_token34] = ACTIONS(2118), + [aux_sym_cmd_identifier_token35] = ACTIONS(2120), + [aux_sym_cmd_identifier_token36] = ACTIONS(2120), + [aux_sym_cmd_identifier_token37] = ACTIONS(2120), + [aux_sym_cmd_identifier_token38] = ACTIONS(2118), + [aux_sym_cmd_identifier_token39] = ACTIONS(2120), + [aux_sym_cmd_identifier_token40] = ACTIONS(2120), + [anon_sym_def] = ACTIONS(2118), + [anon_sym_export_DASHenv] = ACTIONS(2118), + [anon_sym_extern] = ACTIONS(2118), + [anon_sym_module] = ACTIONS(2118), + [anon_sym_use] = ACTIONS(2118), + [anon_sym_LPAREN] = ACTIONS(2120), + [anon_sym_DOLLAR] = ACTIONS(2120), + [anon_sym_error] = ACTIONS(2118), + [anon_sym_DASH2] = ACTIONS(2118), + [anon_sym_break] = ACTIONS(2118), + [anon_sym_continue] = ACTIONS(2118), + [anon_sym_for] = ACTIONS(2118), + [anon_sym_in2] = ACTIONS(2118), + [anon_sym_loop] = ACTIONS(2118), + [anon_sym_make] = ACTIONS(2118), + [anon_sym_while] = ACTIONS(2118), + [anon_sym_do] = ACTIONS(2118), + [anon_sym_if] = ACTIONS(2118), + [anon_sym_else] = ACTIONS(2118), + [anon_sym_match] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2120), + [anon_sym_try] = ACTIONS(2118), + [anon_sym_catch] = ACTIONS(2118), + [anon_sym_return] = ACTIONS(2118), + [anon_sym_source] = ACTIONS(2118), + [anon_sym_source_DASHenv] = ACTIONS(2118), + [anon_sym_register] = ACTIONS(2118), + [anon_sym_hide] = ACTIONS(2118), + [anon_sym_hide_DASHenv] = ACTIONS(2118), + [anon_sym_overlay] = ACTIONS(2118), + [anon_sym_as] = ACTIONS(2118), + [anon_sym_PLUS2] = ACTIONS(2118), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2120), + [anon_sym_DOT_DOT2] = ACTIONS(2118), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2120), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2120), + [aux_sym__val_number_decimal_token1] = ACTIONS(2118), + [aux_sym__val_number_decimal_token2] = ACTIONS(2120), + [aux_sym__val_number_decimal_token3] = ACTIONS(2120), + [aux_sym__val_number_decimal_token4] = ACTIONS(2120), + [aux_sym__val_number_token1] = ACTIONS(2120), + [aux_sym__val_number_token2] = ACTIONS(2120), + [aux_sym__val_number_token3] = ACTIONS(2120), + [aux_sym__val_number_token4] = ACTIONS(2118), + [aux_sym__val_number_token5] = ACTIONS(2118), + [aux_sym__val_number_token6] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2120), + [sym__str_single_quotes] = ACTIONS(2120), + [sym__str_back_ticks] = ACTIONS(2120), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2120), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2120), + }, + [525] = { + [sym_comment] = STATE(525), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_alias] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_let_DASHenv] = ACTIONS(2183), + [anon_sym_mut] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [aux_sym_cmd_identifier_token1] = ACTIONS(2183), + [aux_sym_cmd_identifier_token2] = ACTIONS(2185), + [aux_sym_cmd_identifier_token3] = ACTIONS(2185), + [aux_sym_cmd_identifier_token4] = ACTIONS(2185), + [aux_sym_cmd_identifier_token5] = ACTIONS(2185), + [aux_sym_cmd_identifier_token6] = ACTIONS(2185), + [aux_sym_cmd_identifier_token7] = ACTIONS(2185), + [aux_sym_cmd_identifier_token8] = ACTIONS(2183), + [aux_sym_cmd_identifier_token9] = ACTIONS(2183), + [aux_sym_cmd_identifier_token10] = ACTIONS(2185), + [aux_sym_cmd_identifier_token11] = ACTIONS(2185), + [aux_sym_cmd_identifier_token12] = ACTIONS(2183), + [aux_sym_cmd_identifier_token13] = ACTIONS(2183), + [aux_sym_cmd_identifier_token14] = ACTIONS(2183), + [aux_sym_cmd_identifier_token15] = ACTIONS(2183), + [aux_sym_cmd_identifier_token16] = ACTIONS(2185), + [aux_sym_cmd_identifier_token17] = ACTIONS(2185), + [aux_sym_cmd_identifier_token18] = ACTIONS(2185), + [aux_sym_cmd_identifier_token19] = ACTIONS(2185), + [aux_sym_cmd_identifier_token20] = ACTIONS(2185), + [aux_sym_cmd_identifier_token21] = ACTIONS(2185), + [aux_sym_cmd_identifier_token22] = ACTIONS(2185), + [aux_sym_cmd_identifier_token23] = ACTIONS(2185), + [aux_sym_cmd_identifier_token24] = ACTIONS(2185), + [aux_sym_cmd_identifier_token25] = ACTIONS(2185), + [aux_sym_cmd_identifier_token26] = ACTIONS(2185), + [aux_sym_cmd_identifier_token27] = ACTIONS(2185), + [aux_sym_cmd_identifier_token28] = ACTIONS(2185), + [aux_sym_cmd_identifier_token29] = ACTIONS(2185), + [aux_sym_cmd_identifier_token30] = ACTIONS(2185), + [aux_sym_cmd_identifier_token31] = ACTIONS(2185), + [aux_sym_cmd_identifier_token32] = ACTIONS(2185), + [aux_sym_cmd_identifier_token33] = ACTIONS(2185), + [aux_sym_cmd_identifier_token34] = ACTIONS(2183), + [aux_sym_cmd_identifier_token35] = ACTIONS(2185), + [aux_sym_cmd_identifier_token36] = ACTIONS(2185), + [aux_sym_cmd_identifier_token37] = ACTIONS(2185), + [aux_sym_cmd_identifier_token38] = ACTIONS(2183), + [aux_sym_cmd_identifier_token39] = ACTIONS(2185), + [aux_sym_cmd_identifier_token40] = ACTIONS(2185), + [anon_sym_def] = ACTIONS(2183), + [anon_sym_export_DASHenv] = ACTIONS(2183), + [anon_sym_extern] = ACTIONS(2183), + [anon_sym_module] = ACTIONS(2183), + [anon_sym_use] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_error] = ACTIONS(2183), + [anon_sym_DASH2] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_in2] = ACTIONS(2183), + [anon_sym_loop] = ACTIONS(2183), + [anon_sym_make] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_else] = ACTIONS(2183), + [anon_sym_match] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2185), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_catch] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_source] = ACTIONS(2183), + [anon_sym_source_DASHenv] = ACTIONS(2183), + [anon_sym_register] = ACTIONS(2183), + [anon_sym_hide] = ACTIONS(2183), + [anon_sym_hide_DASHenv] = ACTIONS(2183), + [anon_sym_overlay] = ACTIONS(2183), + [anon_sym_as] = ACTIONS(2183), + [anon_sym_PLUS2] = ACTIONS(2183), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2185), + [anon_sym_DOT_DOT2] = ACTIONS(2183), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2185), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2185), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2185), + [aux_sym__val_number_decimal_token1] = ACTIONS(2183), + [aux_sym__val_number_decimal_token2] = ACTIONS(2185), + [aux_sym__val_number_decimal_token3] = ACTIONS(2185), + [aux_sym__val_number_decimal_token4] = ACTIONS(2185), + [aux_sym__val_number_token1] = ACTIONS(2185), + [aux_sym__val_number_token2] = ACTIONS(2185), + [aux_sym__val_number_token3] = ACTIONS(2185), + [aux_sym__val_number_token4] = ACTIONS(2183), + [aux_sym__val_number_token5] = ACTIONS(2183), + [aux_sym__val_number_token6] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2185), + [sym__str_single_quotes] = ACTIONS(2185), + [sym__str_back_ticks] = ACTIONS(2185), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2185), + }, + [526] = { + [sym_comment] = STATE(526), + [anon_sym_export] = ACTIONS(1765), + [anon_sym_alias] = ACTIONS(1765), + [anon_sym_let] = ACTIONS(1765), + [anon_sym_let_DASHenv] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [aux_sym_cmd_identifier_token1] = ACTIONS(1765), + [aux_sym_cmd_identifier_token2] = ACTIONS(1765), + [aux_sym_cmd_identifier_token3] = ACTIONS(1765), + [aux_sym_cmd_identifier_token4] = ACTIONS(1765), + [aux_sym_cmd_identifier_token5] = ACTIONS(1765), + [aux_sym_cmd_identifier_token6] = ACTIONS(1765), + [aux_sym_cmd_identifier_token7] = ACTIONS(1765), + [aux_sym_cmd_identifier_token8] = ACTIONS(1765), + [aux_sym_cmd_identifier_token9] = ACTIONS(1765), + [aux_sym_cmd_identifier_token10] = ACTIONS(1765), + [aux_sym_cmd_identifier_token11] = ACTIONS(1765), + [aux_sym_cmd_identifier_token12] = ACTIONS(1765), + [aux_sym_cmd_identifier_token13] = ACTIONS(1765), + [aux_sym_cmd_identifier_token14] = ACTIONS(1765), + [aux_sym_cmd_identifier_token15] = ACTIONS(1765), + [aux_sym_cmd_identifier_token16] = ACTIONS(1765), + [aux_sym_cmd_identifier_token17] = ACTIONS(1765), + [aux_sym_cmd_identifier_token18] = ACTIONS(1765), + [aux_sym_cmd_identifier_token19] = ACTIONS(1765), + [aux_sym_cmd_identifier_token20] = ACTIONS(1765), + [aux_sym_cmd_identifier_token21] = ACTIONS(1765), + [aux_sym_cmd_identifier_token22] = ACTIONS(1765), + [aux_sym_cmd_identifier_token23] = ACTIONS(1765), + [aux_sym_cmd_identifier_token24] = ACTIONS(1765), + [aux_sym_cmd_identifier_token25] = ACTIONS(1765), + [aux_sym_cmd_identifier_token26] = ACTIONS(1765), + [aux_sym_cmd_identifier_token27] = ACTIONS(1765), + [aux_sym_cmd_identifier_token28] = ACTIONS(1765), + [aux_sym_cmd_identifier_token29] = ACTIONS(1765), + [aux_sym_cmd_identifier_token30] = ACTIONS(1765), + [aux_sym_cmd_identifier_token31] = ACTIONS(1765), + [aux_sym_cmd_identifier_token32] = ACTIONS(1765), + [aux_sym_cmd_identifier_token33] = ACTIONS(1765), + [aux_sym_cmd_identifier_token34] = ACTIONS(1765), + [aux_sym_cmd_identifier_token35] = ACTIONS(1765), + [aux_sym_cmd_identifier_token36] = ACTIONS(1765), + [aux_sym_cmd_identifier_token37] = ACTIONS(1765), + [aux_sym_cmd_identifier_token38] = ACTIONS(1765), + [aux_sym_cmd_identifier_token39] = ACTIONS(1765), + [aux_sym_cmd_identifier_token40] = ACTIONS(1765), + [anon_sym_def] = ACTIONS(1765), + [anon_sym_export_DASHenv] = ACTIONS(1765), + [anon_sym_extern] = ACTIONS(1765), + [anon_sym_module] = ACTIONS(1765), + [anon_sym_use] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_DOLLAR] = ACTIONS(1765), + [anon_sym_error] = ACTIONS(1765), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_in2] = ACTIONS(1765), + [anon_sym_loop] = ACTIONS(1765), + [anon_sym_make] = ACTIONS(1765), + [anon_sym_while] = ACTIONS(1765), + [anon_sym_do] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_else] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_try] = ACTIONS(1765), + [anon_sym_catch] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_source] = ACTIONS(1765), + [anon_sym_source_DASHenv] = ACTIONS(1765), + [anon_sym_register] = ACTIONS(1765), + [anon_sym_hide] = ACTIONS(1765), + [anon_sym_hide_DASHenv] = ACTIONS(1765), + [anon_sym_overlay] = ACTIONS(1765), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1767), + [anon_sym_PLUS2] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1765), + [aux_sym__val_number_decimal_token3] = ACTIONS(1765), + [aux_sym__val_number_decimal_token4] = ACTIONS(1765), + [aux_sym__val_number_token1] = ACTIONS(1765), + [aux_sym__val_number_token2] = ACTIONS(1765), + [aux_sym__val_number_token3] = ACTIONS(1765), + [aux_sym__val_number_token4] = ACTIONS(1765), + [aux_sym__val_number_token5] = ACTIONS(1765), + [aux_sym__val_number_token6] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1765), + [sym__str_single_quotes] = ACTIONS(1765), + [sym__str_back_ticks] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), + [sym__entry_separator] = ACTIONS(1767), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1767), }, - [514] = { - [sym_comment] = STATE(514), + [527] = { + [sym_comment] = STATE(527), [anon_sym_export] = ACTIONS(1739), [anon_sym_alias] = ACTIONS(1739), [anon_sym_let] = ACTIONS(1739), @@ -131157,52 +132802,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(1739), [anon_sym_const] = ACTIONS(1739), [aux_sym_cmd_identifier_token1] = ACTIONS(1739), - [aux_sym_cmd_identifier_token2] = ACTIONS(1741), - [aux_sym_cmd_identifier_token3] = ACTIONS(1741), - [aux_sym_cmd_identifier_token4] = ACTIONS(1741), - [aux_sym_cmd_identifier_token5] = ACTIONS(1741), - [aux_sym_cmd_identifier_token6] = ACTIONS(1741), - [aux_sym_cmd_identifier_token7] = ACTIONS(1741), + [aux_sym_cmd_identifier_token2] = ACTIONS(1739), + [aux_sym_cmd_identifier_token3] = ACTIONS(1739), + [aux_sym_cmd_identifier_token4] = ACTIONS(1739), + [aux_sym_cmd_identifier_token5] = ACTIONS(1739), + [aux_sym_cmd_identifier_token6] = ACTIONS(1739), + [aux_sym_cmd_identifier_token7] = ACTIONS(1739), [aux_sym_cmd_identifier_token8] = ACTIONS(1739), [aux_sym_cmd_identifier_token9] = ACTIONS(1739), - [aux_sym_cmd_identifier_token10] = ACTIONS(1741), - [aux_sym_cmd_identifier_token11] = ACTIONS(1741), + [aux_sym_cmd_identifier_token10] = ACTIONS(1739), + [aux_sym_cmd_identifier_token11] = ACTIONS(1739), [aux_sym_cmd_identifier_token12] = ACTIONS(1739), [aux_sym_cmd_identifier_token13] = ACTIONS(1739), [aux_sym_cmd_identifier_token14] = ACTIONS(1739), [aux_sym_cmd_identifier_token15] = ACTIONS(1739), - [aux_sym_cmd_identifier_token16] = ACTIONS(1741), - [aux_sym_cmd_identifier_token17] = ACTIONS(1741), - [aux_sym_cmd_identifier_token18] = ACTIONS(1741), - [aux_sym_cmd_identifier_token19] = ACTIONS(1741), - [aux_sym_cmd_identifier_token20] = ACTIONS(1741), - [aux_sym_cmd_identifier_token21] = ACTIONS(1741), - [aux_sym_cmd_identifier_token22] = ACTIONS(1741), - [aux_sym_cmd_identifier_token23] = ACTIONS(1741), - [aux_sym_cmd_identifier_token24] = ACTIONS(1741), - [aux_sym_cmd_identifier_token25] = ACTIONS(1741), - [aux_sym_cmd_identifier_token26] = ACTIONS(1741), - [aux_sym_cmd_identifier_token27] = ACTIONS(1741), - [aux_sym_cmd_identifier_token28] = ACTIONS(1741), - [aux_sym_cmd_identifier_token29] = ACTIONS(1741), - [aux_sym_cmd_identifier_token30] = ACTIONS(1741), - [aux_sym_cmd_identifier_token31] = ACTIONS(1741), - [aux_sym_cmd_identifier_token32] = ACTIONS(1741), - [aux_sym_cmd_identifier_token33] = ACTIONS(1741), + [aux_sym_cmd_identifier_token16] = ACTIONS(1739), + [aux_sym_cmd_identifier_token17] = ACTIONS(1739), + [aux_sym_cmd_identifier_token18] = ACTIONS(1739), + [aux_sym_cmd_identifier_token19] = ACTIONS(1739), + [aux_sym_cmd_identifier_token20] = ACTIONS(1739), + [aux_sym_cmd_identifier_token21] = ACTIONS(1739), + [aux_sym_cmd_identifier_token22] = ACTIONS(1739), + [aux_sym_cmd_identifier_token23] = ACTIONS(1739), + [aux_sym_cmd_identifier_token24] = ACTIONS(1739), + [aux_sym_cmd_identifier_token25] = ACTIONS(1739), + [aux_sym_cmd_identifier_token26] = ACTIONS(1739), + [aux_sym_cmd_identifier_token27] = ACTIONS(1739), + [aux_sym_cmd_identifier_token28] = ACTIONS(1739), + [aux_sym_cmd_identifier_token29] = ACTIONS(1739), + [aux_sym_cmd_identifier_token30] = ACTIONS(1739), + [aux_sym_cmd_identifier_token31] = ACTIONS(1739), + [aux_sym_cmd_identifier_token32] = ACTIONS(1739), + [aux_sym_cmd_identifier_token33] = ACTIONS(1739), [aux_sym_cmd_identifier_token34] = ACTIONS(1739), - [aux_sym_cmd_identifier_token35] = ACTIONS(1741), - [aux_sym_cmd_identifier_token36] = ACTIONS(1741), - [aux_sym_cmd_identifier_token37] = ACTIONS(1741), + [aux_sym_cmd_identifier_token35] = ACTIONS(1739), + [aux_sym_cmd_identifier_token36] = ACTIONS(1739), + [aux_sym_cmd_identifier_token37] = ACTIONS(1739), [aux_sym_cmd_identifier_token38] = ACTIONS(1739), - [aux_sym_cmd_identifier_token39] = ACTIONS(1741), - [aux_sym_cmd_identifier_token40] = ACTIONS(1741), + [aux_sym_cmd_identifier_token39] = ACTIONS(1739), + [aux_sym_cmd_identifier_token40] = ACTIONS(1739), [anon_sym_def] = ACTIONS(1739), [anon_sym_export_DASHenv] = ACTIONS(1739), [anon_sym_extern] = ACTIONS(1739), [anon_sym_module] = ACTIONS(1739), [anon_sym_use] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_DOLLAR] = ACTIONS(1739), [anon_sym_error] = ACTIONS(1739), [anon_sym_DASH2] = ACTIONS(1739), [anon_sym_break] = ACTIONS(1739), @@ -131216,7 +132861,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1739), [anon_sym_else] = ACTIONS(1739), [anon_sym_match] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1741), + [anon_sym_RBRACE] = ACTIONS(1739), [anon_sym_try] = ACTIONS(1739), [anon_sym_catch] = ACTIONS(1739), [anon_sym_return] = ACTIONS(1739), @@ -131228,234 +132873,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1739), [anon_sym_as] = ACTIONS(1739), [anon_sym_PLUS2] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1741), - [anon_sym_DOT_DOT2] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1739), + [aux_sym__immediate_decimal_token1] = ACTIONS(2219), + [aux_sym__immediate_decimal_token2] = ACTIONS(2221), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1739), [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token2] = ACTIONS(1739), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1739), + [aux_sym__val_number_token1] = ACTIONS(1739), + [aux_sym__val_number_token2] = ACTIONS(1739), + [aux_sym__val_number_token3] = ACTIONS(1739), [aux_sym__val_number_token4] = ACTIONS(1739), [aux_sym__val_number_token5] = ACTIONS(1739), [aux_sym__val_number_token6] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1741), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), - }, - [515] = { - [sym_comment] = STATE(515), - [anon_sym_export] = ACTIONS(2187), - [anon_sym_alias] = ACTIONS(2187), - [anon_sym_let] = ACTIONS(2187), - [anon_sym_let_DASHenv] = ACTIONS(2187), - [anon_sym_mut] = ACTIONS(2187), - [anon_sym_const] = ACTIONS(2187), - [aux_sym_cmd_identifier_token1] = ACTIONS(2187), - [aux_sym_cmd_identifier_token2] = ACTIONS(2187), - [aux_sym_cmd_identifier_token3] = ACTIONS(2187), - [aux_sym_cmd_identifier_token4] = ACTIONS(2187), - [aux_sym_cmd_identifier_token5] = ACTIONS(2187), - [aux_sym_cmd_identifier_token6] = ACTIONS(2187), - [aux_sym_cmd_identifier_token7] = ACTIONS(2187), - [aux_sym_cmd_identifier_token8] = ACTIONS(2187), - [aux_sym_cmd_identifier_token9] = ACTIONS(2187), - [aux_sym_cmd_identifier_token10] = ACTIONS(2187), - [aux_sym_cmd_identifier_token11] = ACTIONS(2187), - [aux_sym_cmd_identifier_token12] = ACTIONS(2187), - [aux_sym_cmd_identifier_token13] = ACTIONS(2187), - [aux_sym_cmd_identifier_token14] = ACTIONS(2187), - [aux_sym_cmd_identifier_token15] = ACTIONS(2187), - [aux_sym_cmd_identifier_token16] = ACTIONS(2187), - [aux_sym_cmd_identifier_token17] = ACTIONS(2187), - [aux_sym_cmd_identifier_token18] = ACTIONS(2187), - [aux_sym_cmd_identifier_token19] = ACTIONS(2187), - [aux_sym_cmd_identifier_token20] = ACTIONS(2187), - [aux_sym_cmd_identifier_token21] = ACTIONS(2187), - [aux_sym_cmd_identifier_token22] = ACTIONS(2187), - [aux_sym_cmd_identifier_token23] = ACTIONS(2187), - [aux_sym_cmd_identifier_token24] = ACTIONS(2187), - [aux_sym_cmd_identifier_token25] = ACTIONS(2187), - [aux_sym_cmd_identifier_token26] = ACTIONS(2187), - [aux_sym_cmd_identifier_token27] = ACTIONS(2187), - [aux_sym_cmd_identifier_token28] = ACTIONS(2187), - [aux_sym_cmd_identifier_token29] = ACTIONS(2187), - [aux_sym_cmd_identifier_token30] = ACTIONS(2187), - [aux_sym_cmd_identifier_token31] = ACTIONS(2187), - [aux_sym_cmd_identifier_token32] = ACTIONS(2187), - [aux_sym_cmd_identifier_token33] = ACTIONS(2187), - [aux_sym_cmd_identifier_token34] = ACTIONS(2187), - [aux_sym_cmd_identifier_token35] = ACTIONS(2187), - [aux_sym_cmd_identifier_token36] = ACTIONS(2187), - [aux_sym_cmd_identifier_token37] = ACTIONS(2187), - [aux_sym_cmd_identifier_token38] = ACTIONS(2187), - [aux_sym_cmd_identifier_token39] = ACTIONS(2187), - [aux_sym_cmd_identifier_token40] = ACTIONS(2187), - [anon_sym_def] = ACTIONS(2187), - [anon_sym_export_DASHenv] = ACTIONS(2187), - [anon_sym_extern] = ACTIONS(2187), - [anon_sym_module] = ACTIONS(2187), - [anon_sym_use] = ACTIONS(2187), - [anon_sym_LPAREN] = ACTIONS(2187), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_error] = ACTIONS(2187), - [anon_sym_DASH2] = ACTIONS(2187), - [anon_sym_break] = ACTIONS(2187), - [anon_sym_continue] = ACTIONS(2187), - [anon_sym_for] = ACTIONS(2187), - [anon_sym_in2] = ACTIONS(2187), - [anon_sym_loop] = ACTIONS(2187), - [anon_sym_make] = ACTIONS(2187), - [anon_sym_while] = ACTIONS(2187), - [anon_sym_do] = ACTIONS(2187), - [anon_sym_if] = ACTIONS(2187), - [anon_sym_else] = ACTIONS(2187), - [anon_sym_match] = ACTIONS(2187), - [anon_sym_RBRACE] = ACTIONS(2187), - [anon_sym_try] = ACTIONS(2187), - [anon_sym_catch] = ACTIONS(2187), - [anon_sym_return] = ACTIONS(2187), - [anon_sym_source] = ACTIONS(2187), - [anon_sym_source_DASHenv] = ACTIONS(2187), - [anon_sym_register] = ACTIONS(2187), - [anon_sym_hide] = ACTIONS(2187), - [anon_sym_hide_DASHenv] = ACTIONS(2187), - [anon_sym_overlay] = ACTIONS(2187), - [anon_sym_as] = ACTIONS(2187), - [anon_sym_LPAREN2] = ACTIONS(1880), - [anon_sym_PLUS2] = ACTIONS(2187), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2187), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2187), - [aux_sym__val_number_decimal_token1] = ACTIONS(2187), - [aux_sym__val_number_decimal_token2] = ACTIONS(2187), - [aux_sym__val_number_decimal_token3] = ACTIONS(2187), - [aux_sym__val_number_decimal_token4] = ACTIONS(2187), - [aux_sym__val_number_token1] = ACTIONS(2187), - [aux_sym__val_number_token2] = ACTIONS(2187), - [aux_sym__val_number_token3] = ACTIONS(2187), - [aux_sym__val_number_token4] = ACTIONS(2187), - [aux_sym__val_number_token5] = ACTIONS(2187), - [aux_sym__val_number_token6] = ACTIONS(2187), - [anon_sym_DQUOTE] = ACTIONS(2187), - [sym__str_single_quotes] = ACTIONS(2187), - [sym__str_back_ticks] = ACTIONS(2187), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2187), - [sym__entry_separator] = ACTIONS(2189), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1739), + [sym__str_single_quotes] = ACTIONS(1739), + [sym__str_back_ticks] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1739), + [sym__entry_separator] = ACTIONS(1741), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2189), + [sym_raw_string_begin] = ACTIONS(1741), }, - [516] = { - [sym_comment] = STATE(516), - [anon_sym_export] = ACTIONS(1018), - [anon_sym_alias] = ACTIONS(1018), - [anon_sym_let] = ACTIONS(1018), - [anon_sym_let_DASHenv] = ACTIONS(1018), - [anon_sym_mut] = ACTIONS(1018), - [anon_sym_const] = ACTIONS(1018), - [aux_sym_cmd_identifier_token1] = ACTIONS(1018), - [aux_sym_cmd_identifier_token2] = ACTIONS(1020), - [aux_sym_cmd_identifier_token3] = ACTIONS(1020), - [aux_sym_cmd_identifier_token4] = ACTIONS(1020), - [aux_sym_cmd_identifier_token5] = ACTIONS(1020), - [aux_sym_cmd_identifier_token6] = ACTIONS(1020), - [aux_sym_cmd_identifier_token7] = ACTIONS(1020), - [aux_sym_cmd_identifier_token8] = ACTIONS(1018), - [aux_sym_cmd_identifier_token9] = ACTIONS(1018), - [aux_sym_cmd_identifier_token10] = ACTIONS(1020), - [aux_sym_cmd_identifier_token11] = ACTIONS(1020), - [aux_sym_cmd_identifier_token12] = ACTIONS(1018), - [aux_sym_cmd_identifier_token13] = ACTIONS(1018), - [aux_sym_cmd_identifier_token14] = ACTIONS(1018), - [aux_sym_cmd_identifier_token15] = ACTIONS(1018), - [aux_sym_cmd_identifier_token16] = ACTIONS(1020), - [aux_sym_cmd_identifier_token17] = ACTIONS(1020), - [aux_sym_cmd_identifier_token18] = ACTIONS(1020), - [aux_sym_cmd_identifier_token19] = ACTIONS(1020), - [aux_sym_cmd_identifier_token20] = ACTIONS(1020), - [aux_sym_cmd_identifier_token21] = ACTIONS(1020), - [aux_sym_cmd_identifier_token22] = ACTIONS(1020), - [aux_sym_cmd_identifier_token23] = ACTIONS(1020), - [aux_sym_cmd_identifier_token24] = ACTIONS(1020), - [aux_sym_cmd_identifier_token25] = ACTIONS(1020), - [aux_sym_cmd_identifier_token26] = ACTIONS(1020), - [aux_sym_cmd_identifier_token27] = ACTIONS(1020), - [aux_sym_cmd_identifier_token28] = ACTIONS(1020), - [aux_sym_cmd_identifier_token29] = ACTIONS(1020), - [aux_sym_cmd_identifier_token30] = ACTIONS(1020), - [aux_sym_cmd_identifier_token31] = ACTIONS(1020), - [aux_sym_cmd_identifier_token32] = ACTIONS(1020), - [aux_sym_cmd_identifier_token33] = ACTIONS(1020), - [aux_sym_cmd_identifier_token34] = ACTIONS(1018), - [aux_sym_cmd_identifier_token35] = ACTIONS(1020), - [aux_sym_cmd_identifier_token36] = ACTIONS(1020), - [aux_sym_cmd_identifier_token37] = ACTIONS(1020), - [aux_sym_cmd_identifier_token38] = ACTIONS(1018), - [aux_sym_cmd_identifier_token39] = ACTIONS(1020), - [aux_sym_cmd_identifier_token40] = ACTIONS(1020), - [anon_sym_def] = ACTIONS(1018), - [anon_sym_export_DASHenv] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(1018), - [anon_sym_module] = ACTIONS(1018), - [anon_sym_use] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_error] = ACTIONS(1018), - [anon_sym_DASH2] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1018), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_in2] = ACTIONS(1018), - [anon_sym_loop] = ACTIONS(1018), - [anon_sym_make] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1018), - [anon_sym_do] = ACTIONS(1018), - [anon_sym_if] = ACTIONS(1018), - [anon_sym_else] = ACTIONS(1018), - [anon_sym_match] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_try] = ACTIONS(1018), - [anon_sym_catch] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1018), - [anon_sym_source] = ACTIONS(1018), - [anon_sym_source_DASHenv] = ACTIONS(1018), - [anon_sym_register] = ACTIONS(1018), - [anon_sym_hide] = ACTIONS(1018), - [anon_sym_hide_DASHenv] = ACTIONS(1018), - [anon_sym_overlay] = ACTIONS(1018), - [anon_sym_as] = ACTIONS(1018), - [anon_sym_PLUS2] = ACTIONS(1018), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1020), - [anon_sym_DOT_DOT2] = ACTIONS(1018), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1020), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1020), - [aux_sym__val_number_decimal_token1] = ACTIONS(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1020), - [aux_sym__val_number_decimal_token3] = ACTIONS(1020), - [aux_sym__val_number_decimal_token4] = ACTIONS(1020), - [aux_sym__val_number_token1] = ACTIONS(1020), - [aux_sym__val_number_token2] = ACTIONS(1020), - [aux_sym__val_number_token3] = ACTIONS(1020), - [aux_sym__val_number_token4] = ACTIONS(1018), - [aux_sym__val_number_token5] = ACTIONS(1018), - [aux_sym__val_number_token6] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1020), - [sym__str_single_quotes] = ACTIONS(1020), - [sym__str_back_ticks] = ACTIONS(1020), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1020), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1020), + [528] = { + [sym_comment] = STATE(528), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_alias] = ACTIONS(1044), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_let_DASHenv] = ACTIONS(1044), + [anon_sym_mut] = ACTIONS(1044), + [anon_sym_const] = ACTIONS(1044), + [aux_sym_cmd_identifier_token1] = ACTIONS(1044), + [aux_sym_cmd_identifier_token2] = ACTIONS(1046), + [aux_sym_cmd_identifier_token3] = ACTIONS(1046), + [aux_sym_cmd_identifier_token4] = ACTIONS(1046), + [aux_sym_cmd_identifier_token5] = ACTIONS(1046), + [aux_sym_cmd_identifier_token6] = ACTIONS(1046), + [aux_sym_cmd_identifier_token7] = ACTIONS(1046), + [aux_sym_cmd_identifier_token8] = ACTIONS(1044), + [aux_sym_cmd_identifier_token9] = ACTIONS(1044), + [aux_sym_cmd_identifier_token10] = ACTIONS(1046), + [aux_sym_cmd_identifier_token11] = ACTIONS(1046), + [aux_sym_cmd_identifier_token12] = ACTIONS(1044), + [aux_sym_cmd_identifier_token13] = ACTIONS(1044), + [aux_sym_cmd_identifier_token14] = ACTIONS(1044), + [aux_sym_cmd_identifier_token15] = ACTIONS(1044), + [aux_sym_cmd_identifier_token16] = ACTIONS(1046), + [aux_sym_cmd_identifier_token17] = ACTIONS(1046), + [aux_sym_cmd_identifier_token18] = ACTIONS(1046), + [aux_sym_cmd_identifier_token19] = ACTIONS(1046), + [aux_sym_cmd_identifier_token20] = ACTIONS(1046), + [aux_sym_cmd_identifier_token21] = ACTIONS(1046), + [aux_sym_cmd_identifier_token22] = ACTIONS(1046), + [aux_sym_cmd_identifier_token23] = ACTIONS(1046), + [aux_sym_cmd_identifier_token24] = ACTIONS(1046), + [aux_sym_cmd_identifier_token25] = ACTIONS(1046), + [aux_sym_cmd_identifier_token26] = ACTIONS(1046), + [aux_sym_cmd_identifier_token27] = ACTIONS(1046), + [aux_sym_cmd_identifier_token28] = ACTIONS(1046), + [aux_sym_cmd_identifier_token29] = ACTIONS(1046), + [aux_sym_cmd_identifier_token30] = ACTIONS(1046), + [aux_sym_cmd_identifier_token31] = ACTIONS(1046), + [aux_sym_cmd_identifier_token32] = ACTIONS(1046), + [aux_sym_cmd_identifier_token33] = ACTIONS(1046), + [aux_sym_cmd_identifier_token34] = ACTIONS(1044), + [aux_sym_cmd_identifier_token35] = ACTIONS(1046), + [aux_sym_cmd_identifier_token36] = ACTIONS(1046), + [aux_sym_cmd_identifier_token37] = ACTIONS(1046), + [aux_sym_cmd_identifier_token38] = ACTIONS(1044), + [aux_sym_cmd_identifier_token39] = ACTIONS(1046), + [aux_sym_cmd_identifier_token40] = ACTIONS(1046), + [anon_sym_def] = ACTIONS(1044), + [anon_sym_export_DASHenv] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_use] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_DOLLAR] = ACTIONS(1046), + [anon_sym_error] = ACTIONS(1044), + [anon_sym_DASH2] = ACTIONS(1044), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_in2] = ACTIONS(1044), + [anon_sym_loop] = ACTIONS(1044), + [anon_sym_make] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [anon_sym_do] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_else] = ACTIONS(1044), + [anon_sym_match] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_try] = ACTIONS(1044), + [anon_sym_catch] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_source] = ACTIONS(1044), + [anon_sym_source_DASHenv] = ACTIONS(1044), + [anon_sym_register] = ACTIONS(1044), + [anon_sym_hide] = ACTIONS(1044), + [anon_sym_hide_DASHenv] = ACTIONS(1044), + [anon_sym_overlay] = ACTIONS(1044), + [anon_sym_as] = ACTIONS(1044), + [anon_sym_PLUS2] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1046), + [anon_sym_DOT_DOT2] = ACTIONS(1044), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1046), + [aux_sym__val_number_decimal_token1] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1046), + [aux_sym__val_number_decimal_token3] = ACTIONS(1046), + [aux_sym__val_number_decimal_token4] = ACTIONS(1046), + [aux_sym__val_number_token1] = ACTIONS(1046), + [aux_sym__val_number_token2] = ACTIONS(1046), + [aux_sym__val_number_token3] = ACTIONS(1046), + [aux_sym__val_number_token4] = ACTIONS(1044), + [aux_sym__val_number_token5] = ACTIONS(1044), + [aux_sym__val_number_token6] = ACTIONS(1044), + [anon_sym_DQUOTE] = ACTIONS(1046), + [sym__str_single_quotes] = ACTIONS(1046), + [sym__str_back_ticks] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1046), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1046), }, - [517] = { - [sym_comment] = STATE(517), + [529] = { + [sym_comment] = STATE(529), [anon_sym_export] = ACTIONS(1006), [anon_sym_alias] = ACTIONS(1006), [anon_sym_let] = ACTIONS(1006), @@ -131556,110 +133099,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1008), }, - [518] = { - [sym_comment] = STATE(518), - [anon_sym_export] = ACTIONS(1878), - [anon_sym_alias] = ACTIONS(1878), - [anon_sym_let] = ACTIONS(1878), - [anon_sym_let_DASHenv] = ACTIONS(1878), - [anon_sym_mut] = ACTIONS(1878), - [anon_sym_const] = ACTIONS(1878), - [aux_sym_cmd_identifier_token1] = ACTIONS(1878), - [aux_sym_cmd_identifier_token2] = ACTIONS(1878), - [aux_sym_cmd_identifier_token3] = ACTIONS(1878), - [aux_sym_cmd_identifier_token4] = ACTIONS(1878), - [aux_sym_cmd_identifier_token5] = ACTIONS(1878), - [aux_sym_cmd_identifier_token6] = ACTIONS(1878), - [aux_sym_cmd_identifier_token7] = ACTIONS(1878), - [aux_sym_cmd_identifier_token8] = ACTIONS(1878), - [aux_sym_cmd_identifier_token9] = ACTIONS(1878), - [aux_sym_cmd_identifier_token10] = ACTIONS(1878), - [aux_sym_cmd_identifier_token11] = ACTIONS(1878), - [aux_sym_cmd_identifier_token12] = ACTIONS(1878), - [aux_sym_cmd_identifier_token13] = ACTIONS(1878), - [aux_sym_cmd_identifier_token14] = ACTIONS(1878), - [aux_sym_cmd_identifier_token15] = ACTIONS(1878), - [aux_sym_cmd_identifier_token16] = ACTIONS(1878), - [aux_sym_cmd_identifier_token17] = ACTIONS(1878), - [aux_sym_cmd_identifier_token18] = ACTIONS(1878), - [aux_sym_cmd_identifier_token19] = ACTIONS(1878), - [aux_sym_cmd_identifier_token20] = ACTIONS(1878), - [aux_sym_cmd_identifier_token21] = ACTIONS(1878), - [aux_sym_cmd_identifier_token22] = ACTIONS(1878), - [aux_sym_cmd_identifier_token23] = ACTIONS(1878), - [aux_sym_cmd_identifier_token24] = ACTIONS(1878), - [aux_sym_cmd_identifier_token25] = ACTIONS(1878), - [aux_sym_cmd_identifier_token26] = ACTIONS(1878), - [aux_sym_cmd_identifier_token27] = ACTIONS(1878), - [aux_sym_cmd_identifier_token28] = ACTIONS(1878), - [aux_sym_cmd_identifier_token29] = ACTIONS(1878), - [aux_sym_cmd_identifier_token30] = ACTIONS(1878), - [aux_sym_cmd_identifier_token31] = ACTIONS(1878), - [aux_sym_cmd_identifier_token32] = ACTIONS(1878), - [aux_sym_cmd_identifier_token33] = ACTIONS(1878), - [aux_sym_cmd_identifier_token34] = ACTIONS(1878), - [aux_sym_cmd_identifier_token35] = ACTIONS(1878), - [aux_sym_cmd_identifier_token36] = ACTIONS(1878), - [aux_sym_cmd_identifier_token37] = ACTIONS(1878), - [aux_sym_cmd_identifier_token38] = ACTIONS(1878), - [aux_sym_cmd_identifier_token39] = ACTIONS(1878), - [aux_sym_cmd_identifier_token40] = ACTIONS(1878), - [anon_sym_def] = ACTIONS(1878), - [anon_sym_export_DASHenv] = ACTIONS(1878), - [anon_sym_extern] = ACTIONS(1878), - [anon_sym_module] = ACTIONS(1878), - [anon_sym_use] = ACTIONS(1878), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_DOLLAR] = ACTIONS(1878), - [anon_sym_error] = ACTIONS(1878), - [anon_sym_DASH2] = ACTIONS(1878), - [anon_sym_break] = ACTIONS(1878), - [anon_sym_continue] = ACTIONS(1878), - [anon_sym_for] = ACTIONS(1878), - [anon_sym_in2] = ACTIONS(1878), - [anon_sym_loop] = ACTIONS(1878), - [anon_sym_make] = ACTIONS(1878), - [anon_sym_while] = ACTIONS(1878), - [anon_sym_do] = ACTIONS(1878), - [anon_sym_if] = ACTIONS(1878), - [anon_sym_else] = ACTIONS(1878), - [anon_sym_match] = ACTIONS(1878), - [anon_sym_RBRACE] = ACTIONS(1878), - [anon_sym_try] = ACTIONS(1878), - [anon_sym_catch] = ACTIONS(1878), - [anon_sym_return] = ACTIONS(1878), - [anon_sym_source] = ACTIONS(1878), - [anon_sym_source_DASHenv] = ACTIONS(1878), - [anon_sym_register] = ACTIONS(1878), - [anon_sym_hide] = ACTIONS(1878), - [anon_sym_hide_DASHenv] = ACTIONS(1878), - [anon_sym_overlay] = ACTIONS(1878), - [anon_sym_as] = ACTIONS(1878), - [anon_sym_LPAREN2] = ACTIONS(1880), - [anon_sym_PLUS2] = ACTIONS(1878), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1878), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1878), - [aux_sym__val_number_decimal_token1] = ACTIONS(1878), - [aux_sym__val_number_decimal_token2] = ACTIONS(1878), - [aux_sym__val_number_decimal_token3] = ACTIONS(1878), - [aux_sym__val_number_decimal_token4] = ACTIONS(1878), - [aux_sym__val_number_token1] = ACTIONS(1878), - [aux_sym__val_number_token2] = ACTIONS(1878), - [aux_sym__val_number_token3] = ACTIONS(1878), - [aux_sym__val_number_token4] = ACTIONS(1878), - [aux_sym__val_number_token5] = ACTIONS(1878), - [aux_sym__val_number_token6] = ACTIONS(1878), - [anon_sym_DQUOTE] = ACTIONS(1878), - [sym__str_single_quotes] = ACTIONS(1878), - [sym__str_back_ticks] = ACTIONS(1878), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1878), - [sym__entry_separator] = ACTIONS(1886), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1888), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1886), - }, - [519] = { - [sym_comment] = STATE(519), + [530] = { + [sym_comment] = STATE(530), [anon_sym_export] = ACTIONS(1010), [anon_sym_alias] = ACTIONS(1010), [anon_sym_let] = ACTIONS(1010), @@ -131760,8 +133201,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1012), }, - [520] = { - [sym_comment] = STATE(520), + [531] = { + [sym_comment] = STATE(531), [anon_sym_export] = ACTIONS(1014), [anon_sym_alias] = ACTIONS(1014), [anon_sym_let] = ACTIONS(1014), @@ -131862,112 +133303,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1016), }, - [521] = { - [sym_comment] = STATE(521), - [anon_sym_export] = ACTIONS(1890), - [anon_sym_alias] = ACTIONS(1890), - [anon_sym_let] = ACTIONS(1890), - [anon_sym_let_DASHenv] = ACTIONS(1890), - [anon_sym_mut] = ACTIONS(1890), - [anon_sym_const] = ACTIONS(1890), - [aux_sym_cmd_identifier_token1] = ACTIONS(1890), - [aux_sym_cmd_identifier_token2] = ACTIONS(1890), - [aux_sym_cmd_identifier_token3] = ACTIONS(1890), - [aux_sym_cmd_identifier_token4] = ACTIONS(1890), - [aux_sym_cmd_identifier_token5] = ACTIONS(1890), - [aux_sym_cmd_identifier_token6] = ACTIONS(1890), - [aux_sym_cmd_identifier_token7] = ACTIONS(1890), - [aux_sym_cmd_identifier_token8] = ACTIONS(1890), - [aux_sym_cmd_identifier_token9] = ACTIONS(1890), - [aux_sym_cmd_identifier_token10] = ACTIONS(1890), - [aux_sym_cmd_identifier_token11] = ACTIONS(1890), - [aux_sym_cmd_identifier_token12] = ACTIONS(1890), - [aux_sym_cmd_identifier_token13] = ACTIONS(1890), - [aux_sym_cmd_identifier_token14] = ACTIONS(1890), - [aux_sym_cmd_identifier_token15] = ACTIONS(1890), - [aux_sym_cmd_identifier_token16] = ACTIONS(1890), - [aux_sym_cmd_identifier_token17] = ACTIONS(1890), - [aux_sym_cmd_identifier_token18] = ACTIONS(1890), - [aux_sym_cmd_identifier_token19] = ACTIONS(1890), - [aux_sym_cmd_identifier_token20] = ACTIONS(1890), - [aux_sym_cmd_identifier_token21] = ACTIONS(1890), - [aux_sym_cmd_identifier_token22] = ACTIONS(1890), - [aux_sym_cmd_identifier_token23] = ACTIONS(1890), - [aux_sym_cmd_identifier_token24] = ACTIONS(1890), - [aux_sym_cmd_identifier_token25] = ACTIONS(1890), - [aux_sym_cmd_identifier_token26] = ACTIONS(1890), - [aux_sym_cmd_identifier_token27] = ACTIONS(1890), - [aux_sym_cmd_identifier_token28] = ACTIONS(1890), - [aux_sym_cmd_identifier_token29] = ACTIONS(1890), - [aux_sym_cmd_identifier_token30] = ACTIONS(1890), - [aux_sym_cmd_identifier_token31] = ACTIONS(1890), - [aux_sym_cmd_identifier_token32] = ACTIONS(1890), - [aux_sym_cmd_identifier_token33] = ACTIONS(1890), - [aux_sym_cmd_identifier_token34] = ACTIONS(1890), - [aux_sym_cmd_identifier_token35] = ACTIONS(1890), - [aux_sym_cmd_identifier_token36] = ACTIONS(1890), - [aux_sym_cmd_identifier_token37] = ACTIONS(1890), - [aux_sym_cmd_identifier_token38] = ACTIONS(1890), - [aux_sym_cmd_identifier_token39] = ACTIONS(1890), - [aux_sym_cmd_identifier_token40] = ACTIONS(1890), - [anon_sym_def] = ACTIONS(1890), - [anon_sym_export_DASHenv] = ACTIONS(1890), - [anon_sym_extern] = ACTIONS(1890), - [anon_sym_module] = ACTIONS(1890), - [anon_sym_use] = ACTIONS(1890), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(1890), - [anon_sym_error] = ACTIONS(1890), - [anon_sym_DASH2] = ACTIONS(1890), - [anon_sym_break] = ACTIONS(1890), - [anon_sym_continue] = ACTIONS(1890), - [anon_sym_for] = ACTIONS(1890), - [anon_sym_in2] = ACTIONS(1890), - [anon_sym_loop] = ACTIONS(1890), - [anon_sym_make] = ACTIONS(1890), - [anon_sym_while] = ACTIONS(1890), - [anon_sym_do] = ACTIONS(1890), - [anon_sym_if] = ACTIONS(1890), - [anon_sym_else] = ACTIONS(1890), - [anon_sym_match] = ACTIONS(1890), - [anon_sym_RBRACE] = ACTIONS(1890), - [anon_sym_try] = ACTIONS(1890), - [anon_sym_catch] = ACTIONS(1890), - [anon_sym_return] = ACTIONS(1890), - [anon_sym_source] = ACTIONS(1890), - [anon_sym_source_DASHenv] = ACTIONS(1890), - [anon_sym_register] = ACTIONS(1890), - [anon_sym_hide] = ACTIONS(1890), - [anon_sym_hide_DASHenv] = ACTIONS(1890), - [anon_sym_overlay] = ACTIONS(1890), - [anon_sym_as] = ACTIONS(1890), - [anon_sym_LPAREN2] = ACTIONS(1892), - [anon_sym_PLUS2] = ACTIONS(1890), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1890), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1890), - [aux_sym__val_number_decimal_token1] = ACTIONS(1890), - [aux_sym__val_number_decimal_token2] = ACTIONS(1890), - [aux_sym__val_number_decimal_token3] = ACTIONS(1890), - [aux_sym__val_number_decimal_token4] = ACTIONS(1890), - [aux_sym__val_number_token1] = ACTIONS(1890), - [aux_sym__val_number_token2] = ACTIONS(1890), - [aux_sym__val_number_token3] = ACTIONS(1890), - [aux_sym__val_number_token4] = ACTIONS(1890), - [aux_sym__val_number_token5] = ACTIONS(1890), - [aux_sym__val_number_token6] = ACTIONS(1890), - [anon_sym_DQUOTE] = ACTIONS(1890), - [sym__str_single_quotes] = ACTIONS(1890), - [sym__str_back_ticks] = ACTIONS(1890), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1890), - [sym__entry_separator] = ACTIONS(1892), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1890), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1892), - }, - [522] = { - [sym_path] = STATE(689), - [sym_comment] = STATE(522), - [aux_sym_cell_path_repeat1] = STATE(524), + [532] = { + [sym_path] = STATE(623), + [sym_comment] = STATE(532), + [aux_sym_cell_path_repeat1] = STATE(533), [anon_sym_export] = ACTIONS(967), [anon_sym_alias] = ACTIONS(967), [anon_sym_let] = ACTIONS(967), @@ -132047,7 +133386,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(967), [anon_sym_PLUS2] = ACTIONS(967), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(969), - [anon_sym_DOT] = ACTIONS(2110), + [anon_sym_DOT] = ACTIONS(2050), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(969), [aux_sym__val_number_decimal_token1] = ACTIONS(967), [aux_sym__val_number_decimal_token2] = ACTIONS(969), @@ -132066,112 +133405,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(969), }, - [523] = { - [sym_comment] = STATE(523), - [anon_sym_export] = ACTIONS(1739), - [anon_sym_alias] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1739), - [anon_sym_let_DASHenv] = ACTIONS(1739), - [anon_sym_mut] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [aux_sym_cmd_identifier_token1] = ACTIONS(1739), - [aux_sym_cmd_identifier_token2] = ACTIONS(1739), - [aux_sym_cmd_identifier_token3] = ACTIONS(1739), - [aux_sym_cmd_identifier_token4] = ACTIONS(1739), - [aux_sym_cmd_identifier_token5] = ACTIONS(1739), - [aux_sym_cmd_identifier_token6] = ACTIONS(1739), - [aux_sym_cmd_identifier_token7] = ACTIONS(1739), - [aux_sym_cmd_identifier_token8] = ACTIONS(1739), - [aux_sym_cmd_identifier_token9] = ACTIONS(1739), - [aux_sym_cmd_identifier_token10] = ACTIONS(1739), - [aux_sym_cmd_identifier_token11] = ACTIONS(1739), - [aux_sym_cmd_identifier_token12] = ACTIONS(1739), - [aux_sym_cmd_identifier_token13] = ACTIONS(1739), - [aux_sym_cmd_identifier_token14] = ACTIONS(1739), - [aux_sym_cmd_identifier_token15] = ACTIONS(1739), - [aux_sym_cmd_identifier_token16] = ACTIONS(1739), - [aux_sym_cmd_identifier_token17] = ACTIONS(1739), - [aux_sym_cmd_identifier_token18] = ACTIONS(1739), - [aux_sym_cmd_identifier_token19] = ACTIONS(1739), - [aux_sym_cmd_identifier_token20] = ACTIONS(1739), - [aux_sym_cmd_identifier_token21] = ACTIONS(1739), - [aux_sym_cmd_identifier_token22] = ACTIONS(1739), - [aux_sym_cmd_identifier_token23] = ACTIONS(1739), - [aux_sym_cmd_identifier_token24] = ACTIONS(1739), - [aux_sym_cmd_identifier_token25] = ACTIONS(1739), - [aux_sym_cmd_identifier_token26] = ACTIONS(1739), - [aux_sym_cmd_identifier_token27] = ACTIONS(1739), - [aux_sym_cmd_identifier_token28] = ACTIONS(1739), - [aux_sym_cmd_identifier_token29] = ACTIONS(1739), - [aux_sym_cmd_identifier_token30] = ACTIONS(1739), - [aux_sym_cmd_identifier_token31] = ACTIONS(1739), - [aux_sym_cmd_identifier_token32] = ACTIONS(1739), - [aux_sym_cmd_identifier_token33] = ACTIONS(1739), - [aux_sym_cmd_identifier_token34] = ACTIONS(1739), - [aux_sym_cmd_identifier_token35] = ACTIONS(1739), - [aux_sym_cmd_identifier_token36] = ACTIONS(1739), - [aux_sym_cmd_identifier_token37] = ACTIONS(1739), - [aux_sym_cmd_identifier_token38] = ACTIONS(1739), - [aux_sym_cmd_identifier_token39] = ACTIONS(1739), - [aux_sym_cmd_identifier_token40] = ACTIONS(1739), - [anon_sym_def] = ACTIONS(1739), - [anon_sym_export_DASHenv] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1739), - [anon_sym_module] = ACTIONS(1739), - [anon_sym_use] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_error] = ACTIONS(1739), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_in2] = ACTIONS(1739), - [anon_sym_loop] = ACTIONS(1739), - [anon_sym_make] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_else] = ACTIONS(1739), - [anon_sym_match] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_catch] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_source] = ACTIONS(1739), - [anon_sym_source_DASHenv] = ACTIONS(1739), - [anon_sym_register] = ACTIONS(1739), - [anon_sym_hide] = ACTIONS(1739), - [anon_sym_hide_DASHenv] = ACTIONS(1739), - [anon_sym_overlay] = ACTIONS(1739), - [anon_sym_as] = ACTIONS(1739), - [anon_sym_PLUS2] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1739), - [aux_sym__immediate_decimal_token1] = ACTIONS(2191), - [aux_sym__immediate_decimal_token2] = ACTIONS(2193), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1739), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1739), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1739), - [aux_sym__val_number_token1] = ACTIONS(1739), - [aux_sym__val_number_token2] = ACTIONS(1739), - [aux_sym__val_number_token3] = ACTIONS(1739), - [aux_sym__val_number_token4] = ACTIONS(1739), - [aux_sym__val_number_token5] = ACTIONS(1739), - [aux_sym__val_number_token6] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1739), - [sym__str_single_quotes] = ACTIONS(1739), - [sym__str_back_ticks] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1739), - [sym__entry_separator] = ACTIONS(1741), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1741), - }, - [524] = { - [sym_path] = STATE(689), - [sym_comment] = STATE(524), - [aux_sym_cell_path_repeat1] = STATE(524), + [533] = { + [sym_path] = STATE(623), + [sym_comment] = STATE(533), + [aux_sym_cell_path_repeat1] = STATE(533), [anon_sym_export] = ACTIONS(971), [anon_sym_alias] = ACTIONS(971), [anon_sym_let] = ACTIONS(971), @@ -132251,7 +133488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(971), [anon_sym_PLUS2] = ACTIONS(971), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(2195), + [anon_sym_DOT] = ACTIONS(2223), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(973), [aux_sym__val_number_decimal_token1] = ACTIONS(971), [aux_sym__val_number_decimal_token2] = ACTIONS(973), @@ -132270,539 +133507,846 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(973), }, - [525] = { - [sym_comment] = STATE(525), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_alias] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_let_DASHenv] = ACTIONS(1755), - [anon_sym_mut] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1755), - [aux_sym_cmd_identifier_token3] = ACTIONS(1755), - [aux_sym_cmd_identifier_token4] = ACTIONS(1755), - [aux_sym_cmd_identifier_token5] = ACTIONS(1755), - [aux_sym_cmd_identifier_token6] = ACTIONS(1755), - [aux_sym_cmd_identifier_token7] = ACTIONS(1755), - [aux_sym_cmd_identifier_token8] = ACTIONS(1755), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1755), - [aux_sym_cmd_identifier_token11] = ACTIONS(1755), - [aux_sym_cmd_identifier_token12] = ACTIONS(1755), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1755), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1755), - [aux_sym_cmd_identifier_token17] = ACTIONS(1755), - [aux_sym_cmd_identifier_token18] = ACTIONS(1755), - [aux_sym_cmd_identifier_token19] = ACTIONS(1755), - [aux_sym_cmd_identifier_token20] = ACTIONS(1755), - [aux_sym_cmd_identifier_token21] = ACTIONS(1755), - [aux_sym_cmd_identifier_token22] = ACTIONS(1755), - [aux_sym_cmd_identifier_token23] = ACTIONS(1755), - [aux_sym_cmd_identifier_token24] = ACTIONS(1755), - [aux_sym_cmd_identifier_token25] = ACTIONS(1755), - [aux_sym_cmd_identifier_token26] = ACTIONS(1755), - [aux_sym_cmd_identifier_token27] = ACTIONS(1755), - [aux_sym_cmd_identifier_token28] = ACTIONS(1755), - [aux_sym_cmd_identifier_token29] = ACTIONS(1755), - [aux_sym_cmd_identifier_token30] = ACTIONS(1755), - [aux_sym_cmd_identifier_token31] = ACTIONS(1755), - [aux_sym_cmd_identifier_token32] = ACTIONS(1755), - [aux_sym_cmd_identifier_token33] = ACTIONS(1755), - [aux_sym_cmd_identifier_token34] = ACTIONS(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1755), - [aux_sym_cmd_identifier_token36] = ACTIONS(1755), - [aux_sym_cmd_identifier_token37] = ACTIONS(1755), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1755), - [aux_sym_cmd_identifier_token40] = ACTIONS(1755), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_export_DASHenv] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_make] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1755), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_source] = ACTIONS(1755), - [anon_sym_source_DASHenv] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_hide] = ACTIONS(1755), - [anon_sym_hide_DASHenv] = ACTIONS(1755), - [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), - [anon_sym_DOT] = ACTIONS(2198), - [aux_sym__immediate_decimal_token2] = ACTIONS(2200), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1755), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1755), - [aux_sym__val_number_decimal_token3] = ACTIONS(1755), - [aux_sym__val_number_decimal_token4] = ACTIONS(1755), - [aux_sym__val_number_token1] = ACTIONS(1755), - [aux_sym__val_number_token2] = ACTIONS(1755), - [aux_sym__val_number_token3] = ACTIONS(1755), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym__str_single_quotes] = ACTIONS(1755), - [sym__str_back_ticks] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1755), - [sym__entry_separator] = ACTIONS(1757), + [534] = { + [sym_comment] = STATE(534), + [anon_sym_export] = ACTIONS(1026), + [anon_sym_alias] = ACTIONS(1026), + [anon_sym_let] = ACTIONS(1026), + [anon_sym_let_DASHenv] = ACTIONS(1026), + [anon_sym_mut] = ACTIONS(1026), + [anon_sym_const] = ACTIONS(1026), + [aux_sym_cmd_identifier_token1] = ACTIONS(1026), + [aux_sym_cmd_identifier_token2] = ACTIONS(1026), + [aux_sym_cmd_identifier_token3] = ACTIONS(1026), + [aux_sym_cmd_identifier_token4] = ACTIONS(1026), + [aux_sym_cmd_identifier_token5] = ACTIONS(1026), + [aux_sym_cmd_identifier_token6] = ACTIONS(1026), + [aux_sym_cmd_identifier_token7] = ACTIONS(1026), + [aux_sym_cmd_identifier_token8] = ACTIONS(1026), + [aux_sym_cmd_identifier_token9] = ACTIONS(1026), + [aux_sym_cmd_identifier_token10] = ACTIONS(1026), + [aux_sym_cmd_identifier_token11] = ACTIONS(1026), + [aux_sym_cmd_identifier_token12] = ACTIONS(1026), + [aux_sym_cmd_identifier_token13] = ACTIONS(1026), + [aux_sym_cmd_identifier_token14] = ACTIONS(1026), + [aux_sym_cmd_identifier_token15] = ACTIONS(1026), + [aux_sym_cmd_identifier_token16] = ACTIONS(1026), + [aux_sym_cmd_identifier_token17] = ACTIONS(1026), + [aux_sym_cmd_identifier_token18] = ACTIONS(1026), + [aux_sym_cmd_identifier_token19] = ACTIONS(1026), + [aux_sym_cmd_identifier_token20] = ACTIONS(1026), + [aux_sym_cmd_identifier_token21] = ACTIONS(1026), + [aux_sym_cmd_identifier_token22] = ACTIONS(1026), + [aux_sym_cmd_identifier_token23] = ACTIONS(1026), + [aux_sym_cmd_identifier_token24] = ACTIONS(1026), + [aux_sym_cmd_identifier_token25] = ACTIONS(1026), + [aux_sym_cmd_identifier_token26] = ACTIONS(1026), + [aux_sym_cmd_identifier_token27] = ACTIONS(1026), + [aux_sym_cmd_identifier_token28] = ACTIONS(1026), + [aux_sym_cmd_identifier_token29] = ACTIONS(1026), + [aux_sym_cmd_identifier_token30] = ACTIONS(1026), + [aux_sym_cmd_identifier_token31] = ACTIONS(1026), + [aux_sym_cmd_identifier_token32] = ACTIONS(1026), + [aux_sym_cmd_identifier_token33] = ACTIONS(1026), + [aux_sym_cmd_identifier_token34] = ACTIONS(1026), + [aux_sym_cmd_identifier_token35] = ACTIONS(1026), + [aux_sym_cmd_identifier_token36] = ACTIONS(1026), + [aux_sym_cmd_identifier_token37] = ACTIONS(1026), + [aux_sym_cmd_identifier_token38] = ACTIONS(1026), + [aux_sym_cmd_identifier_token39] = ACTIONS(1026), + [aux_sym_cmd_identifier_token40] = ACTIONS(1026), + [anon_sym_def] = ACTIONS(1026), + [anon_sym_export_DASHenv] = ACTIONS(1026), + [anon_sym_extern] = ACTIONS(1026), + [anon_sym_module] = ACTIONS(1026), + [anon_sym_use] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(1026), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_error] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(1026), + [anon_sym_break] = ACTIONS(1026), + [anon_sym_continue] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1026), + [anon_sym_in2] = ACTIONS(1026), + [anon_sym_loop] = ACTIONS(1026), + [anon_sym_make] = ACTIONS(1026), + [anon_sym_while] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1026), + [anon_sym_else] = ACTIONS(1026), + [anon_sym_match] = ACTIONS(1026), + [anon_sym_RBRACE] = ACTIONS(1026), + [anon_sym_try] = ACTIONS(1026), + [anon_sym_catch] = ACTIONS(1026), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_source] = ACTIONS(1026), + [anon_sym_source_DASHenv] = ACTIONS(1026), + [anon_sym_register] = ACTIONS(1026), + [anon_sym_hide] = ACTIONS(1026), + [anon_sym_hide_DASHenv] = ACTIONS(1026), + [anon_sym_overlay] = ACTIONS(1026), + [anon_sym_as] = ACTIONS(1026), + [anon_sym_LPAREN2] = ACTIONS(2226), + [anon_sym_PLUS2] = ACTIONS(1026), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1026), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1026), + [aux_sym__val_number_decimal_token1] = ACTIONS(1026), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1026), + [aux_sym__val_number_decimal_token4] = ACTIONS(1026), + [aux_sym__val_number_token1] = ACTIONS(1026), + [aux_sym__val_number_token2] = ACTIONS(1026), + [aux_sym__val_number_token3] = ACTIONS(1026), + [aux_sym__val_number_token4] = ACTIONS(1026), + [aux_sym__val_number_token5] = ACTIONS(1026), + [aux_sym__val_number_token6] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym__str_single_quotes] = ACTIONS(1026), + [sym__str_back_ticks] = ACTIONS(1026), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1026), + [sym__entry_separator] = ACTIONS(1028), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2228), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1757), + [sym_raw_string_begin] = ACTIONS(1028), }, - [526] = { - [sym_comment] = STATE(526), - [anon_sym_export] = ACTIONS(1030), - [anon_sym_alias] = ACTIONS(1030), - [anon_sym_let] = ACTIONS(1030), - [anon_sym_let_DASHenv] = ACTIONS(1030), - [anon_sym_mut] = ACTIONS(1030), - [anon_sym_const] = ACTIONS(1030), - [aux_sym_cmd_identifier_token1] = ACTIONS(1030), - [aux_sym_cmd_identifier_token2] = ACTIONS(1030), - [aux_sym_cmd_identifier_token3] = ACTIONS(1030), - [aux_sym_cmd_identifier_token4] = ACTIONS(1030), - [aux_sym_cmd_identifier_token5] = ACTIONS(1030), - [aux_sym_cmd_identifier_token6] = ACTIONS(1030), - [aux_sym_cmd_identifier_token7] = ACTIONS(1030), - [aux_sym_cmd_identifier_token8] = ACTIONS(1030), - [aux_sym_cmd_identifier_token9] = ACTIONS(1030), - [aux_sym_cmd_identifier_token10] = ACTIONS(1030), - [aux_sym_cmd_identifier_token11] = ACTIONS(1030), - [aux_sym_cmd_identifier_token12] = ACTIONS(1030), - [aux_sym_cmd_identifier_token13] = ACTIONS(1030), - [aux_sym_cmd_identifier_token14] = ACTIONS(1030), - [aux_sym_cmd_identifier_token15] = ACTIONS(1030), - [aux_sym_cmd_identifier_token16] = ACTIONS(1030), - [aux_sym_cmd_identifier_token17] = ACTIONS(1030), - [aux_sym_cmd_identifier_token18] = ACTIONS(1030), - [aux_sym_cmd_identifier_token19] = ACTIONS(1030), - [aux_sym_cmd_identifier_token20] = ACTIONS(1030), - [aux_sym_cmd_identifier_token21] = ACTIONS(1030), - [aux_sym_cmd_identifier_token22] = ACTIONS(1030), - [aux_sym_cmd_identifier_token23] = ACTIONS(1030), - [aux_sym_cmd_identifier_token24] = ACTIONS(1030), - [aux_sym_cmd_identifier_token25] = ACTIONS(1030), - [aux_sym_cmd_identifier_token26] = ACTIONS(1030), - [aux_sym_cmd_identifier_token27] = ACTIONS(1030), - [aux_sym_cmd_identifier_token28] = ACTIONS(1030), - [aux_sym_cmd_identifier_token29] = ACTIONS(1030), - [aux_sym_cmd_identifier_token30] = ACTIONS(1030), - [aux_sym_cmd_identifier_token31] = ACTIONS(1030), - [aux_sym_cmd_identifier_token32] = ACTIONS(1030), - [aux_sym_cmd_identifier_token33] = ACTIONS(1030), - [aux_sym_cmd_identifier_token34] = ACTIONS(1030), - [aux_sym_cmd_identifier_token35] = ACTIONS(1030), - [aux_sym_cmd_identifier_token36] = ACTIONS(1030), - [aux_sym_cmd_identifier_token37] = ACTIONS(1030), - [aux_sym_cmd_identifier_token38] = ACTIONS(1030), - [aux_sym_cmd_identifier_token39] = ACTIONS(1030), - [aux_sym_cmd_identifier_token40] = ACTIONS(1030), - [anon_sym_def] = ACTIONS(1030), - [anon_sym_export_DASHenv] = ACTIONS(1030), - [anon_sym_extern] = ACTIONS(1030), - [anon_sym_module] = ACTIONS(1030), - [anon_sym_use] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(1030), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_error] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(1030), - [anon_sym_break] = ACTIONS(1030), - [anon_sym_continue] = ACTIONS(1030), - [anon_sym_for] = ACTIONS(1030), - [anon_sym_in2] = ACTIONS(1030), - [anon_sym_loop] = ACTIONS(1030), - [anon_sym_make] = ACTIONS(1030), - [anon_sym_while] = ACTIONS(1030), - [anon_sym_do] = ACTIONS(1030), - [anon_sym_if] = ACTIONS(1030), - [anon_sym_else] = ACTIONS(1030), - [anon_sym_match] = ACTIONS(1030), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_try] = ACTIONS(1030), - [anon_sym_catch] = ACTIONS(1030), - [anon_sym_return] = ACTIONS(1030), - [anon_sym_source] = ACTIONS(1030), - [anon_sym_source_DASHenv] = ACTIONS(1030), - [anon_sym_register] = ACTIONS(1030), - [anon_sym_hide] = ACTIONS(1030), - [anon_sym_hide_DASHenv] = ACTIONS(1030), - [anon_sym_overlay] = ACTIONS(1030), - [anon_sym_as] = ACTIONS(1030), - [anon_sym_LPAREN2] = ACTIONS(2202), - [anon_sym_PLUS2] = ACTIONS(1030), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1030), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1030), - [aux_sym__val_number_decimal_token1] = ACTIONS(1030), - [aux_sym__val_number_decimal_token2] = ACTIONS(1030), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), - [aux_sym__val_number_token1] = ACTIONS(1030), - [aux_sym__val_number_token2] = ACTIONS(1030), - [aux_sym__val_number_token3] = ACTIONS(1030), - [aux_sym__val_number_token4] = ACTIONS(1030), - [aux_sym__val_number_token5] = ACTIONS(1030), - [aux_sym__val_number_token6] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym__str_single_quotes] = ACTIONS(1030), - [sym__str_back_ticks] = ACTIONS(1030), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1030), - [sym__entry_separator] = ACTIONS(1032), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2204), + [535] = { + [sym_comment] = STATE(535), + [anon_sym_export] = ACTIONS(2230), + [anon_sym_alias] = ACTIONS(2230), + [anon_sym_let] = ACTIONS(2230), + [anon_sym_let_DASHenv] = ACTIONS(2230), + [anon_sym_mut] = ACTIONS(2230), + [anon_sym_const] = ACTIONS(2230), + [aux_sym_cmd_identifier_token1] = ACTIONS(2230), + [aux_sym_cmd_identifier_token2] = ACTIONS(2230), + [aux_sym_cmd_identifier_token3] = ACTIONS(2230), + [aux_sym_cmd_identifier_token4] = ACTIONS(2230), + [aux_sym_cmd_identifier_token5] = ACTIONS(2230), + [aux_sym_cmd_identifier_token6] = ACTIONS(2230), + [aux_sym_cmd_identifier_token7] = ACTIONS(2230), + [aux_sym_cmd_identifier_token8] = ACTIONS(2230), + [aux_sym_cmd_identifier_token9] = ACTIONS(2230), + [aux_sym_cmd_identifier_token10] = ACTIONS(2230), + [aux_sym_cmd_identifier_token11] = ACTIONS(2230), + [aux_sym_cmd_identifier_token12] = ACTIONS(2230), + [aux_sym_cmd_identifier_token13] = ACTIONS(2230), + [aux_sym_cmd_identifier_token14] = ACTIONS(2230), + [aux_sym_cmd_identifier_token15] = ACTIONS(2230), + [aux_sym_cmd_identifier_token16] = ACTIONS(2230), + [aux_sym_cmd_identifier_token17] = ACTIONS(2230), + [aux_sym_cmd_identifier_token18] = ACTIONS(2230), + [aux_sym_cmd_identifier_token19] = ACTIONS(2230), + [aux_sym_cmd_identifier_token20] = ACTIONS(2230), + [aux_sym_cmd_identifier_token21] = ACTIONS(2230), + [aux_sym_cmd_identifier_token22] = ACTIONS(2230), + [aux_sym_cmd_identifier_token23] = ACTIONS(2230), + [aux_sym_cmd_identifier_token24] = ACTIONS(2230), + [aux_sym_cmd_identifier_token25] = ACTIONS(2230), + [aux_sym_cmd_identifier_token26] = ACTIONS(2230), + [aux_sym_cmd_identifier_token27] = ACTIONS(2230), + [aux_sym_cmd_identifier_token28] = ACTIONS(2230), + [aux_sym_cmd_identifier_token29] = ACTIONS(2230), + [aux_sym_cmd_identifier_token30] = ACTIONS(2230), + [aux_sym_cmd_identifier_token31] = ACTIONS(2230), + [aux_sym_cmd_identifier_token32] = ACTIONS(2230), + [aux_sym_cmd_identifier_token33] = ACTIONS(2230), + [aux_sym_cmd_identifier_token34] = ACTIONS(2230), + [aux_sym_cmd_identifier_token35] = ACTIONS(2230), + [aux_sym_cmd_identifier_token36] = ACTIONS(2230), + [aux_sym_cmd_identifier_token37] = ACTIONS(2230), + [aux_sym_cmd_identifier_token38] = ACTIONS(2230), + [aux_sym_cmd_identifier_token39] = ACTIONS(2230), + [aux_sym_cmd_identifier_token40] = ACTIONS(2230), + [anon_sym_def] = ACTIONS(2230), + [anon_sym_export_DASHenv] = ACTIONS(2230), + [anon_sym_extern] = ACTIONS(2230), + [anon_sym_module] = ACTIONS(2230), + [anon_sym_use] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_DOLLAR] = ACTIONS(2230), + [anon_sym_error] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2230), + [anon_sym_break] = ACTIONS(2230), + [anon_sym_continue] = ACTIONS(2230), + [anon_sym_for] = ACTIONS(2230), + [anon_sym_in2] = ACTIONS(2230), + [anon_sym_loop] = ACTIONS(2230), + [anon_sym_make] = ACTIONS(2230), + [anon_sym_while] = ACTIONS(2230), + [anon_sym_do] = ACTIONS(2230), + [anon_sym_if] = ACTIONS(2230), + [anon_sym_else] = ACTIONS(2230), + [anon_sym_match] = ACTIONS(2230), + [anon_sym_RBRACE] = ACTIONS(2230), + [anon_sym_try] = ACTIONS(2230), + [anon_sym_catch] = ACTIONS(2230), + [anon_sym_return] = ACTIONS(2230), + [anon_sym_source] = ACTIONS(2230), + [anon_sym_source_DASHenv] = ACTIONS(2230), + [anon_sym_register] = ACTIONS(2230), + [anon_sym_hide] = ACTIONS(2230), + [anon_sym_hide_DASHenv] = ACTIONS(2230), + [anon_sym_overlay] = ACTIONS(2230), + [anon_sym_as] = ACTIONS(2230), + [anon_sym_LPAREN2] = ACTIONS(1804), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2230), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2230), + [aux_sym__val_number_decimal_token1] = ACTIONS(2230), + [aux_sym__val_number_decimal_token2] = ACTIONS(2230), + [aux_sym__val_number_decimal_token3] = ACTIONS(2230), + [aux_sym__val_number_decimal_token4] = ACTIONS(2230), + [aux_sym__val_number_token1] = ACTIONS(2230), + [aux_sym__val_number_token2] = ACTIONS(2230), + [aux_sym__val_number_token3] = ACTIONS(2230), + [aux_sym__val_number_token4] = ACTIONS(2230), + [aux_sym__val_number_token5] = ACTIONS(2230), + [aux_sym__val_number_token6] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2230), + [sym__str_single_quotes] = ACTIONS(2230), + [sym__str_back_ticks] = ACTIONS(2230), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2230), + [sym__entry_separator] = ACTIONS(2232), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1812), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1032), + [sym_raw_string_begin] = ACTIONS(2232), }, - [527] = { - [sym_comment] = STATE(527), - [anon_sym_export] = ACTIONS(2206), - [anon_sym_alias] = ACTIONS(2206), - [anon_sym_let] = ACTIONS(2206), - [anon_sym_let_DASHenv] = ACTIONS(2206), - [anon_sym_mut] = ACTIONS(2206), - [anon_sym_const] = ACTIONS(2206), - [aux_sym_cmd_identifier_token1] = ACTIONS(2206), - [aux_sym_cmd_identifier_token2] = ACTIONS(2206), - [aux_sym_cmd_identifier_token3] = ACTIONS(2206), - [aux_sym_cmd_identifier_token4] = ACTIONS(2206), - [aux_sym_cmd_identifier_token5] = ACTIONS(2206), - [aux_sym_cmd_identifier_token6] = ACTIONS(2206), - [aux_sym_cmd_identifier_token7] = ACTIONS(2206), - [aux_sym_cmd_identifier_token8] = ACTIONS(2206), - [aux_sym_cmd_identifier_token9] = ACTIONS(2206), - [aux_sym_cmd_identifier_token10] = ACTIONS(2206), - [aux_sym_cmd_identifier_token11] = ACTIONS(2206), - [aux_sym_cmd_identifier_token12] = ACTIONS(2206), - [aux_sym_cmd_identifier_token13] = ACTIONS(2206), - [aux_sym_cmd_identifier_token14] = ACTIONS(2206), - [aux_sym_cmd_identifier_token15] = ACTIONS(2206), - [aux_sym_cmd_identifier_token16] = ACTIONS(2206), - [aux_sym_cmd_identifier_token17] = ACTIONS(2206), - [aux_sym_cmd_identifier_token18] = ACTIONS(2206), - [aux_sym_cmd_identifier_token19] = ACTIONS(2206), - [aux_sym_cmd_identifier_token20] = ACTIONS(2206), - [aux_sym_cmd_identifier_token21] = ACTIONS(2206), - [aux_sym_cmd_identifier_token22] = ACTIONS(2206), - [aux_sym_cmd_identifier_token23] = ACTIONS(2206), - [aux_sym_cmd_identifier_token24] = ACTIONS(2206), - [aux_sym_cmd_identifier_token25] = ACTIONS(2206), - [aux_sym_cmd_identifier_token26] = ACTIONS(2206), - [aux_sym_cmd_identifier_token27] = ACTIONS(2206), - [aux_sym_cmd_identifier_token28] = ACTIONS(2206), - [aux_sym_cmd_identifier_token29] = ACTIONS(2206), - [aux_sym_cmd_identifier_token30] = ACTIONS(2206), - [aux_sym_cmd_identifier_token31] = ACTIONS(2206), - [aux_sym_cmd_identifier_token32] = ACTIONS(2206), - [aux_sym_cmd_identifier_token33] = ACTIONS(2206), - [aux_sym_cmd_identifier_token34] = ACTIONS(2206), - [aux_sym_cmd_identifier_token35] = ACTIONS(2206), - [aux_sym_cmd_identifier_token36] = ACTIONS(2206), - [aux_sym_cmd_identifier_token37] = ACTIONS(2206), - [aux_sym_cmd_identifier_token38] = ACTIONS(2206), - [aux_sym_cmd_identifier_token39] = ACTIONS(2206), - [aux_sym_cmd_identifier_token40] = ACTIONS(2206), - [anon_sym_def] = ACTIONS(2206), - [anon_sym_export_DASHenv] = ACTIONS(2206), - [anon_sym_extern] = ACTIONS(2206), - [anon_sym_module] = ACTIONS(2206), - [anon_sym_use] = ACTIONS(2206), - [anon_sym_LPAREN] = ACTIONS(2206), - [anon_sym_DOLLAR] = ACTIONS(2206), - [anon_sym_error] = ACTIONS(2206), - [anon_sym_DASH2] = ACTIONS(2206), - [anon_sym_break] = ACTIONS(2206), - [anon_sym_continue] = ACTIONS(2206), - [anon_sym_for] = ACTIONS(2206), - [anon_sym_in2] = ACTIONS(2206), - [anon_sym_loop] = ACTIONS(2206), - [anon_sym_make] = ACTIONS(2206), - [anon_sym_while] = ACTIONS(2206), - [anon_sym_do] = ACTIONS(2206), - [anon_sym_if] = ACTIONS(2206), - [anon_sym_else] = ACTIONS(2206), - [anon_sym_match] = ACTIONS(2206), - [anon_sym_RBRACE] = ACTIONS(2206), - [anon_sym_try] = ACTIONS(2206), - [anon_sym_catch] = ACTIONS(2206), - [anon_sym_return] = ACTIONS(2206), - [anon_sym_source] = ACTIONS(2206), - [anon_sym_source_DASHenv] = ACTIONS(2206), - [anon_sym_register] = ACTIONS(2206), - [anon_sym_hide] = ACTIONS(2206), - [anon_sym_hide_DASHenv] = ACTIONS(2206), - [anon_sym_overlay] = ACTIONS(2206), - [anon_sym_as] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(2208), - [anon_sym_PLUS2] = ACTIONS(2206), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2206), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2206), - [aux_sym__val_number_decimal_token1] = ACTIONS(2206), - [aux_sym__val_number_decimal_token2] = ACTIONS(2206), - [aux_sym__val_number_decimal_token3] = ACTIONS(2206), - [aux_sym__val_number_decimal_token4] = ACTIONS(2206), - [aux_sym__val_number_token1] = ACTIONS(2206), - [aux_sym__val_number_token2] = ACTIONS(2206), - [aux_sym__val_number_token3] = ACTIONS(2206), - [aux_sym__val_number_token4] = ACTIONS(2206), - [aux_sym__val_number_token5] = ACTIONS(2206), - [aux_sym__val_number_token6] = ACTIONS(2206), - [anon_sym_DQUOTE] = ACTIONS(2206), - [sym__str_single_quotes] = ACTIONS(2206), - [sym__str_back_ticks] = ACTIONS(2206), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2206), - [sym__entry_separator] = ACTIONS(2210), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2212), + [536] = { + [sym_comment] = STATE(536), + [anon_sym_export] = ACTIONS(1765), + [anon_sym_alias] = ACTIONS(1765), + [anon_sym_let] = ACTIONS(1765), + [anon_sym_let_DASHenv] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [aux_sym_cmd_identifier_token1] = ACTIONS(1765), + [aux_sym_cmd_identifier_token2] = ACTIONS(1765), + [aux_sym_cmd_identifier_token3] = ACTIONS(1765), + [aux_sym_cmd_identifier_token4] = ACTIONS(1765), + [aux_sym_cmd_identifier_token5] = ACTIONS(1765), + [aux_sym_cmd_identifier_token6] = ACTIONS(1765), + [aux_sym_cmd_identifier_token7] = ACTIONS(1765), + [aux_sym_cmd_identifier_token8] = ACTIONS(1765), + [aux_sym_cmd_identifier_token9] = ACTIONS(1765), + [aux_sym_cmd_identifier_token10] = ACTIONS(1765), + [aux_sym_cmd_identifier_token11] = ACTIONS(1765), + [aux_sym_cmd_identifier_token12] = ACTIONS(1765), + [aux_sym_cmd_identifier_token13] = ACTIONS(1765), + [aux_sym_cmd_identifier_token14] = ACTIONS(1765), + [aux_sym_cmd_identifier_token15] = ACTIONS(1765), + [aux_sym_cmd_identifier_token16] = ACTIONS(1765), + [aux_sym_cmd_identifier_token17] = ACTIONS(1765), + [aux_sym_cmd_identifier_token18] = ACTIONS(1765), + [aux_sym_cmd_identifier_token19] = ACTIONS(1765), + [aux_sym_cmd_identifier_token20] = ACTIONS(1765), + [aux_sym_cmd_identifier_token21] = ACTIONS(1765), + [aux_sym_cmd_identifier_token22] = ACTIONS(1765), + [aux_sym_cmd_identifier_token23] = ACTIONS(1765), + [aux_sym_cmd_identifier_token24] = ACTIONS(1765), + [aux_sym_cmd_identifier_token25] = ACTIONS(1765), + [aux_sym_cmd_identifier_token26] = ACTIONS(1765), + [aux_sym_cmd_identifier_token27] = ACTIONS(1765), + [aux_sym_cmd_identifier_token28] = ACTIONS(1765), + [aux_sym_cmd_identifier_token29] = ACTIONS(1765), + [aux_sym_cmd_identifier_token30] = ACTIONS(1765), + [aux_sym_cmd_identifier_token31] = ACTIONS(1765), + [aux_sym_cmd_identifier_token32] = ACTIONS(1765), + [aux_sym_cmd_identifier_token33] = ACTIONS(1765), + [aux_sym_cmd_identifier_token34] = ACTIONS(1765), + [aux_sym_cmd_identifier_token35] = ACTIONS(1765), + [aux_sym_cmd_identifier_token36] = ACTIONS(1765), + [aux_sym_cmd_identifier_token37] = ACTIONS(1765), + [aux_sym_cmd_identifier_token38] = ACTIONS(1765), + [aux_sym_cmd_identifier_token39] = ACTIONS(1765), + [aux_sym_cmd_identifier_token40] = ACTIONS(1765), + [anon_sym_def] = ACTIONS(1765), + [anon_sym_export_DASHenv] = ACTIONS(1765), + [anon_sym_extern] = ACTIONS(1765), + [anon_sym_module] = ACTIONS(1765), + [anon_sym_use] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_DOLLAR] = ACTIONS(1765), + [anon_sym_error] = ACTIONS(1765), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_in2] = ACTIONS(1765), + [anon_sym_loop] = ACTIONS(1765), + [anon_sym_make] = ACTIONS(1765), + [anon_sym_while] = ACTIONS(1765), + [anon_sym_do] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_else] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_try] = ACTIONS(1765), + [anon_sym_catch] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_source] = ACTIONS(1765), + [anon_sym_source_DASHenv] = ACTIONS(1765), + [anon_sym_register] = ACTIONS(1765), + [anon_sym_hide] = ACTIONS(1765), + [anon_sym_hide_DASHenv] = ACTIONS(1765), + [anon_sym_overlay] = ACTIONS(1765), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_PLUS2] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(2234), + [aux_sym__immediate_decimal_token2] = ACTIONS(2236), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1765), + [aux_sym__val_number_decimal_token3] = ACTIONS(1765), + [aux_sym__val_number_decimal_token4] = ACTIONS(1765), + [aux_sym__val_number_token1] = ACTIONS(1765), + [aux_sym__val_number_token2] = ACTIONS(1765), + [aux_sym__val_number_token3] = ACTIONS(1765), + [aux_sym__val_number_token4] = ACTIONS(1765), + [aux_sym__val_number_token5] = ACTIONS(1765), + [aux_sym__val_number_token6] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1765), + [sym__str_single_quotes] = ACTIONS(1765), + [sym__str_back_ticks] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), + [sym__entry_separator] = ACTIONS(1767), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2210), + [sym_raw_string_begin] = ACTIONS(1767), }, - [528] = { - [sym_comment] = STATE(528), - [anon_sym_export] = ACTIONS(2214), - [anon_sym_alias] = ACTIONS(2214), - [anon_sym_let] = ACTIONS(2214), - [anon_sym_let_DASHenv] = ACTIONS(2214), - [anon_sym_mut] = ACTIONS(2214), - [anon_sym_const] = ACTIONS(2214), - [aux_sym_cmd_identifier_token1] = ACTIONS(2214), - [aux_sym_cmd_identifier_token2] = ACTIONS(2214), - [aux_sym_cmd_identifier_token3] = ACTIONS(2214), - [aux_sym_cmd_identifier_token4] = ACTIONS(2214), - [aux_sym_cmd_identifier_token5] = ACTIONS(2214), - [aux_sym_cmd_identifier_token6] = ACTIONS(2214), - [aux_sym_cmd_identifier_token7] = ACTIONS(2214), - [aux_sym_cmd_identifier_token8] = ACTIONS(2214), - [aux_sym_cmd_identifier_token9] = ACTIONS(2214), - [aux_sym_cmd_identifier_token10] = ACTIONS(2214), - [aux_sym_cmd_identifier_token11] = ACTIONS(2214), - [aux_sym_cmd_identifier_token12] = ACTIONS(2214), - [aux_sym_cmd_identifier_token13] = ACTIONS(2214), - [aux_sym_cmd_identifier_token14] = ACTIONS(2214), - [aux_sym_cmd_identifier_token15] = ACTIONS(2214), - [aux_sym_cmd_identifier_token16] = ACTIONS(2214), - [aux_sym_cmd_identifier_token17] = ACTIONS(2214), - [aux_sym_cmd_identifier_token18] = ACTIONS(2214), - [aux_sym_cmd_identifier_token19] = ACTIONS(2214), - [aux_sym_cmd_identifier_token20] = ACTIONS(2214), - [aux_sym_cmd_identifier_token21] = ACTIONS(2214), - [aux_sym_cmd_identifier_token22] = ACTIONS(2214), - [aux_sym_cmd_identifier_token23] = ACTIONS(2214), - [aux_sym_cmd_identifier_token24] = ACTIONS(2214), - [aux_sym_cmd_identifier_token25] = ACTIONS(2214), - [aux_sym_cmd_identifier_token26] = ACTIONS(2214), - [aux_sym_cmd_identifier_token27] = ACTIONS(2214), - [aux_sym_cmd_identifier_token28] = ACTIONS(2214), - [aux_sym_cmd_identifier_token29] = ACTIONS(2214), - [aux_sym_cmd_identifier_token30] = ACTIONS(2214), - [aux_sym_cmd_identifier_token31] = ACTIONS(2214), - [aux_sym_cmd_identifier_token32] = ACTIONS(2214), - [aux_sym_cmd_identifier_token33] = ACTIONS(2214), - [aux_sym_cmd_identifier_token34] = ACTIONS(2214), - [aux_sym_cmd_identifier_token35] = ACTIONS(2214), - [aux_sym_cmd_identifier_token36] = ACTIONS(2214), - [aux_sym_cmd_identifier_token37] = ACTIONS(2214), - [aux_sym_cmd_identifier_token38] = ACTIONS(2214), - [aux_sym_cmd_identifier_token39] = ACTIONS(2214), - [aux_sym_cmd_identifier_token40] = ACTIONS(2214), - [anon_sym_def] = ACTIONS(2214), - [anon_sym_export_DASHenv] = ACTIONS(2214), - [anon_sym_extern] = ACTIONS(2214), - [anon_sym_module] = ACTIONS(2214), - [anon_sym_use] = ACTIONS(2214), - [anon_sym_LPAREN] = ACTIONS(2214), - [anon_sym_DOLLAR] = ACTIONS(2214), - [anon_sym_error] = ACTIONS(2214), - [anon_sym_DASH2] = ACTIONS(2214), - [anon_sym_break] = ACTIONS(2214), - [anon_sym_continue] = ACTIONS(2214), - [anon_sym_for] = ACTIONS(2214), - [anon_sym_in2] = ACTIONS(2214), - [anon_sym_loop] = ACTIONS(2214), - [anon_sym_make] = ACTIONS(2214), - [anon_sym_while] = ACTIONS(2214), - [anon_sym_do] = ACTIONS(2214), - [anon_sym_if] = ACTIONS(2214), - [anon_sym_else] = ACTIONS(2214), - [anon_sym_match] = ACTIONS(2214), - [anon_sym_RBRACE] = ACTIONS(2214), - [anon_sym_try] = ACTIONS(2214), - [anon_sym_catch] = ACTIONS(2214), - [anon_sym_return] = ACTIONS(2214), - [anon_sym_source] = ACTIONS(2214), - [anon_sym_source_DASHenv] = ACTIONS(2214), - [anon_sym_register] = ACTIONS(2214), - [anon_sym_hide] = ACTIONS(2214), - [anon_sym_hide_DASHenv] = ACTIONS(2214), - [anon_sym_overlay] = ACTIONS(2214), - [anon_sym_as] = ACTIONS(2214), - [anon_sym_LPAREN2] = ACTIONS(2216), - [anon_sym_PLUS2] = ACTIONS(2214), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2214), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2214), - [aux_sym__val_number_decimal_token1] = ACTIONS(2214), - [aux_sym__val_number_decimal_token2] = ACTIONS(2214), - [aux_sym__val_number_decimal_token3] = ACTIONS(2214), - [aux_sym__val_number_decimal_token4] = ACTIONS(2214), - [aux_sym__val_number_token1] = ACTIONS(2214), - [aux_sym__val_number_token2] = ACTIONS(2214), - [aux_sym__val_number_token3] = ACTIONS(2214), - [aux_sym__val_number_token4] = ACTIONS(2214), - [aux_sym__val_number_token5] = ACTIONS(2214), - [aux_sym__val_number_token6] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym__str_single_quotes] = ACTIONS(2214), - [sym__str_back_ticks] = ACTIONS(2214), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2214), - [sym__entry_separator] = ACTIONS(2218), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2220), + [537] = { + [sym_comment] = STATE(537), + [anon_sym_export] = ACTIONS(2238), + [anon_sym_alias] = ACTIONS(2238), + [anon_sym_let] = ACTIONS(2238), + [anon_sym_let_DASHenv] = ACTIONS(2238), + [anon_sym_mut] = ACTIONS(2238), + [anon_sym_const] = ACTIONS(2238), + [aux_sym_cmd_identifier_token1] = ACTIONS(2238), + [aux_sym_cmd_identifier_token2] = ACTIONS(2238), + [aux_sym_cmd_identifier_token3] = ACTIONS(2238), + [aux_sym_cmd_identifier_token4] = ACTIONS(2238), + [aux_sym_cmd_identifier_token5] = ACTIONS(2238), + [aux_sym_cmd_identifier_token6] = ACTIONS(2238), + [aux_sym_cmd_identifier_token7] = ACTIONS(2238), + [aux_sym_cmd_identifier_token8] = ACTIONS(2238), + [aux_sym_cmd_identifier_token9] = ACTIONS(2238), + [aux_sym_cmd_identifier_token10] = ACTIONS(2238), + [aux_sym_cmd_identifier_token11] = ACTIONS(2238), + [aux_sym_cmd_identifier_token12] = ACTIONS(2238), + [aux_sym_cmd_identifier_token13] = ACTIONS(2238), + [aux_sym_cmd_identifier_token14] = ACTIONS(2238), + [aux_sym_cmd_identifier_token15] = ACTIONS(2238), + [aux_sym_cmd_identifier_token16] = ACTIONS(2238), + [aux_sym_cmd_identifier_token17] = ACTIONS(2238), + [aux_sym_cmd_identifier_token18] = ACTIONS(2238), + [aux_sym_cmd_identifier_token19] = ACTIONS(2238), + [aux_sym_cmd_identifier_token20] = ACTIONS(2238), + [aux_sym_cmd_identifier_token21] = ACTIONS(2238), + [aux_sym_cmd_identifier_token22] = ACTIONS(2238), + [aux_sym_cmd_identifier_token23] = ACTIONS(2238), + [aux_sym_cmd_identifier_token24] = ACTIONS(2238), + [aux_sym_cmd_identifier_token25] = ACTIONS(2238), + [aux_sym_cmd_identifier_token26] = ACTIONS(2238), + [aux_sym_cmd_identifier_token27] = ACTIONS(2238), + [aux_sym_cmd_identifier_token28] = ACTIONS(2238), + [aux_sym_cmd_identifier_token29] = ACTIONS(2238), + [aux_sym_cmd_identifier_token30] = ACTIONS(2238), + [aux_sym_cmd_identifier_token31] = ACTIONS(2238), + [aux_sym_cmd_identifier_token32] = ACTIONS(2238), + [aux_sym_cmd_identifier_token33] = ACTIONS(2238), + [aux_sym_cmd_identifier_token34] = ACTIONS(2238), + [aux_sym_cmd_identifier_token35] = ACTIONS(2238), + [aux_sym_cmd_identifier_token36] = ACTIONS(2238), + [aux_sym_cmd_identifier_token37] = ACTIONS(2238), + [aux_sym_cmd_identifier_token38] = ACTIONS(2238), + [aux_sym_cmd_identifier_token39] = ACTIONS(2238), + [aux_sym_cmd_identifier_token40] = ACTIONS(2238), + [anon_sym_def] = ACTIONS(2238), + [anon_sym_export_DASHenv] = ACTIONS(2238), + [anon_sym_extern] = ACTIONS(2238), + [anon_sym_module] = ACTIONS(2238), + [anon_sym_use] = ACTIONS(2238), + [anon_sym_LPAREN] = ACTIONS(2238), + [anon_sym_DOLLAR] = ACTIONS(2238), + [anon_sym_error] = ACTIONS(2238), + [anon_sym_DASH2] = ACTIONS(2238), + [anon_sym_break] = ACTIONS(2238), + [anon_sym_continue] = ACTIONS(2238), + [anon_sym_for] = ACTIONS(2238), + [anon_sym_in2] = ACTIONS(2238), + [anon_sym_loop] = ACTIONS(2238), + [anon_sym_make] = ACTIONS(2238), + [anon_sym_while] = ACTIONS(2238), + [anon_sym_do] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(2238), + [anon_sym_else] = ACTIONS(2238), + [anon_sym_match] = ACTIONS(2238), + [anon_sym_RBRACE] = ACTIONS(2238), + [anon_sym_try] = ACTIONS(2238), + [anon_sym_catch] = ACTIONS(2238), + [anon_sym_return] = ACTIONS(2238), + [anon_sym_source] = ACTIONS(2238), + [anon_sym_source_DASHenv] = ACTIONS(2238), + [anon_sym_register] = ACTIONS(2238), + [anon_sym_hide] = ACTIONS(2238), + [anon_sym_hide_DASHenv] = ACTIONS(2238), + [anon_sym_overlay] = ACTIONS(2238), + [anon_sym_as] = ACTIONS(2238), + [anon_sym_LPAREN2] = ACTIONS(2240), + [anon_sym_PLUS2] = ACTIONS(2238), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2238), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2238), + [aux_sym__val_number_decimal_token1] = ACTIONS(2238), + [aux_sym__val_number_decimal_token2] = ACTIONS(2238), + [aux_sym__val_number_decimal_token3] = ACTIONS(2238), + [aux_sym__val_number_decimal_token4] = ACTIONS(2238), + [aux_sym__val_number_token1] = ACTIONS(2238), + [aux_sym__val_number_token2] = ACTIONS(2238), + [aux_sym__val_number_token3] = ACTIONS(2238), + [aux_sym__val_number_token4] = ACTIONS(2238), + [aux_sym__val_number_token5] = ACTIONS(2238), + [aux_sym__val_number_token6] = ACTIONS(2238), + [anon_sym_DQUOTE] = ACTIONS(2238), + [sym__str_single_quotes] = ACTIONS(2238), + [sym__str_back_ticks] = ACTIONS(2238), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2238), + [sym__entry_separator] = ACTIONS(2242), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2244), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2218), + [sym_raw_string_begin] = ACTIONS(2242), }, - [529] = { - [sym_comment] = STATE(529), - [anon_sym_export] = ACTIONS(2222), - [anon_sym_alias] = ACTIONS(2222), - [anon_sym_let] = ACTIONS(2222), - [anon_sym_let_DASHenv] = ACTIONS(2222), - [anon_sym_mut] = ACTIONS(2222), - [anon_sym_const] = ACTIONS(2222), - [aux_sym_cmd_identifier_token1] = ACTIONS(2222), - [aux_sym_cmd_identifier_token2] = ACTIONS(2222), - [aux_sym_cmd_identifier_token3] = ACTIONS(2222), - [aux_sym_cmd_identifier_token4] = ACTIONS(2222), - [aux_sym_cmd_identifier_token5] = ACTIONS(2222), - [aux_sym_cmd_identifier_token6] = ACTIONS(2222), - [aux_sym_cmd_identifier_token7] = ACTIONS(2222), - [aux_sym_cmd_identifier_token8] = ACTIONS(2222), - [aux_sym_cmd_identifier_token9] = ACTIONS(2222), - [aux_sym_cmd_identifier_token10] = ACTIONS(2222), - [aux_sym_cmd_identifier_token11] = ACTIONS(2222), - [aux_sym_cmd_identifier_token12] = ACTIONS(2222), - [aux_sym_cmd_identifier_token13] = ACTIONS(2222), - [aux_sym_cmd_identifier_token14] = ACTIONS(2222), - [aux_sym_cmd_identifier_token15] = ACTIONS(2222), - [aux_sym_cmd_identifier_token16] = ACTIONS(2222), - [aux_sym_cmd_identifier_token17] = ACTIONS(2222), - [aux_sym_cmd_identifier_token18] = ACTIONS(2222), - [aux_sym_cmd_identifier_token19] = ACTIONS(2222), - [aux_sym_cmd_identifier_token20] = ACTIONS(2222), - [aux_sym_cmd_identifier_token21] = ACTIONS(2222), - [aux_sym_cmd_identifier_token22] = ACTIONS(2222), - [aux_sym_cmd_identifier_token23] = ACTIONS(2222), - [aux_sym_cmd_identifier_token24] = ACTIONS(2222), - [aux_sym_cmd_identifier_token25] = ACTIONS(2222), - [aux_sym_cmd_identifier_token26] = ACTIONS(2222), - [aux_sym_cmd_identifier_token27] = ACTIONS(2222), - [aux_sym_cmd_identifier_token28] = ACTIONS(2222), - [aux_sym_cmd_identifier_token29] = ACTIONS(2222), - [aux_sym_cmd_identifier_token30] = ACTIONS(2222), - [aux_sym_cmd_identifier_token31] = ACTIONS(2222), - [aux_sym_cmd_identifier_token32] = ACTIONS(2222), - [aux_sym_cmd_identifier_token33] = ACTIONS(2222), - [aux_sym_cmd_identifier_token34] = ACTIONS(2222), - [aux_sym_cmd_identifier_token35] = ACTIONS(2222), - [aux_sym_cmd_identifier_token36] = ACTIONS(2222), - [aux_sym_cmd_identifier_token37] = ACTIONS(2222), - [aux_sym_cmd_identifier_token38] = ACTIONS(2222), - [aux_sym_cmd_identifier_token39] = ACTIONS(2222), - [aux_sym_cmd_identifier_token40] = ACTIONS(2222), - [anon_sym_def] = ACTIONS(2222), - [anon_sym_export_DASHenv] = ACTIONS(2222), - [anon_sym_extern] = ACTIONS(2222), - [anon_sym_module] = ACTIONS(2222), - [anon_sym_use] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_DOLLAR] = ACTIONS(2222), - [anon_sym_error] = ACTIONS(2222), - [anon_sym_DASH2] = ACTIONS(2222), - [anon_sym_break] = ACTIONS(2222), - [anon_sym_continue] = ACTIONS(2222), - [anon_sym_for] = ACTIONS(2222), - [anon_sym_in2] = ACTIONS(2222), - [anon_sym_loop] = ACTIONS(2222), - [anon_sym_make] = ACTIONS(2222), - [anon_sym_while] = ACTIONS(2222), - [anon_sym_do] = ACTIONS(2222), - [anon_sym_if] = ACTIONS(2222), - [anon_sym_else] = ACTIONS(2222), - [anon_sym_match] = ACTIONS(2222), - [anon_sym_RBRACE] = ACTIONS(2222), - [anon_sym_try] = ACTIONS(2222), - [anon_sym_catch] = ACTIONS(2222), - [anon_sym_return] = ACTIONS(2222), - [anon_sym_source] = ACTIONS(2222), - [anon_sym_source_DASHenv] = ACTIONS(2222), - [anon_sym_register] = ACTIONS(2222), - [anon_sym_hide] = ACTIONS(2222), - [anon_sym_hide_DASHenv] = ACTIONS(2222), - [anon_sym_overlay] = ACTIONS(2222), - [anon_sym_as] = ACTIONS(2222), - [anon_sym_LPAREN2] = ACTIONS(2216), - [anon_sym_PLUS2] = ACTIONS(2222), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2222), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2222), - [aux_sym__val_number_decimal_token1] = ACTIONS(2222), - [aux_sym__val_number_decimal_token2] = ACTIONS(2222), - [aux_sym__val_number_decimal_token3] = ACTIONS(2222), - [aux_sym__val_number_decimal_token4] = ACTIONS(2222), - [aux_sym__val_number_token1] = ACTIONS(2222), - [aux_sym__val_number_token2] = ACTIONS(2222), - [aux_sym__val_number_token3] = ACTIONS(2222), - [aux_sym__val_number_token4] = ACTIONS(2222), - [aux_sym__val_number_token5] = ACTIONS(2222), - [aux_sym__val_number_token6] = ACTIONS(2222), - [anon_sym_DQUOTE] = ACTIONS(2222), - [sym__str_single_quotes] = ACTIONS(2222), - [sym__str_back_ticks] = ACTIONS(2222), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2222), - [sym__entry_separator] = ACTIONS(2224), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2220), + [538] = { + [sym__expr_parenthesized_immediate] = STATE(7523), + [sym_comment] = STATE(538), + [anon_sym_export] = ACTIONS(2173), + [anon_sym_alias] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_let_DASHenv] = ACTIONS(2173), + [anon_sym_mut] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [aux_sym_cmd_identifier_token1] = ACTIONS(2173), + [aux_sym_cmd_identifier_token2] = ACTIONS(2173), + [aux_sym_cmd_identifier_token3] = ACTIONS(2173), + [aux_sym_cmd_identifier_token4] = ACTIONS(2173), + [aux_sym_cmd_identifier_token5] = ACTIONS(2173), + [aux_sym_cmd_identifier_token6] = ACTIONS(2173), + [aux_sym_cmd_identifier_token7] = ACTIONS(2173), + [aux_sym_cmd_identifier_token8] = ACTIONS(2173), + [aux_sym_cmd_identifier_token9] = ACTIONS(2173), + [aux_sym_cmd_identifier_token10] = ACTIONS(2173), + [aux_sym_cmd_identifier_token11] = ACTIONS(2173), + [aux_sym_cmd_identifier_token12] = ACTIONS(2173), + [aux_sym_cmd_identifier_token13] = ACTIONS(2173), + [aux_sym_cmd_identifier_token14] = ACTIONS(2173), + [aux_sym_cmd_identifier_token15] = ACTIONS(2173), + [aux_sym_cmd_identifier_token16] = ACTIONS(2173), + [aux_sym_cmd_identifier_token17] = ACTIONS(2173), + [aux_sym_cmd_identifier_token18] = ACTIONS(2173), + [aux_sym_cmd_identifier_token19] = ACTIONS(2173), + [aux_sym_cmd_identifier_token20] = ACTIONS(2173), + [aux_sym_cmd_identifier_token21] = ACTIONS(2173), + [aux_sym_cmd_identifier_token22] = ACTIONS(2173), + [aux_sym_cmd_identifier_token23] = ACTIONS(2173), + [aux_sym_cmd_identifier_token24] = ACTIONS(2173), + [aux_sym_cmd_identifier_token25] = ACTIONS(2173), + [aux_sym_cmd_identifier_token26] = ACTIONS(2173), + [aux_sym_cmd_identifier_token27] = ACTIONS(2173), + [aux_sym_cmd_identifier_token28] = ACTIONS(2173), + [aux_sym_cmd_identifier_token29] = ACTIONS(2173), + [aux_sym_cmd_identifier_token30] = ACTIONS(2173), + [aux_sym_cmd_identifier_token31] = ACTIONS(2173), + [aux_sym_cmd_identifier_token32] = ACTIONS(2173), + [aux_sym_cmd_identifier_token33] = ACTIONS(2173), + [aux_sym_cmd_identifier_token34] = ACTIONS(2173), + [aux_sym_cmd_identifier_token35] = ACTIONS(2173), + [aux_sym_cmd_identifier_token36] = ACTIONS(2173), + [aux_sym_cmd_identifier_token37] = ACTIONS(2173), + [aux_sym_cmd_identifier_token38] = ACTIONS(2173), + [aux_sym_cmd_identifier_token39] = ACTIONS(2173), + [aux_sym_cmd_identifier_token40] = ACTIONS(2173), + [anon_sym_def] = ACTIONS(2173), + [anon_sym_export_DASHenv] = ACTIONS(2173), + [anon_sym_extern] = ACTIONS(2173), + [anon_sym_module] = ACTIONS(2173), + [anon_sym_use] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2173), + [anon_sym_error] = ACTIONS(2173), + [anon_sym_DASH2] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_in2] = ACTIONS(2173), + [anon_sym_loop] = ACTIONS(2173), + [anon_sym_make] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_else] = ACTIONS(2173), + [anon_sym_match] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_catch] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_source] = ACTIONS(2173), + [anon_sym_source_DASHenv] = ACTIONS(2173), + [anon_sym_register] = ACTIONS(2173), + [anon_sym_hide] = ACTIONS(2173), + [anon_sym_hide_DASHenv] = ACTIONS(2173), + [anon_sym_overlay] = ACTIONS(2173), + [anon_sym_as] = ACTIONS(2173), + [anon_sym_LPAREN2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(2173), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2173), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2173), + [aux_sym__val_number_decimal_token1] = ACTIONS(2173), + [aux_sym__val_number_decimal_token2] = ACTIONS(2173), + [aux_sym__val_number_decimal_token3] = ACTIONS(2173), + [aux_sym__val_number_decimal_token4] = ACTIONS(2173), + [aux_sym__val_number_token1] = ACTIONS(2173), + [aux_sym__val_number_token2] = ACTIONS(2173), + [aux_sym__val_number_token3] = ACTIONS(2173), + [aux_sym__val_number_token4] = ACTIONS(2173), + [aux_sym__val_number_token5] = ACTIONS(2173), + [aux_sym__val_number_token6] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2173), + [sym__str_single_quotes] = ACTIONS(2173), + [sym__str_back_ticks] = ACTIONS(2173), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2173), + [sym__entry_separator] = ACTIONS(2175), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2224), + [sym_raw_string_begin] = ACTIONS(2175), }, - [530] = { - [sym_comment] = STATE(530), - [anon_sym_export] = ACTIONS(2159), - [anon_sym_alias] = ACTIONS(2159), - [anon_sym_let] = ACTIONS(2159), - [anon_sym_let_DASHenv] = ACTIONS(2159), - [anon_sym_mut] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [aux_sym_cmd_identifier_token1] = ACTIONS(2159), + [539] = { + [sym_comment] = STATE(539), + [anon_sym_export] = ACTIONS(2246), + [anon_sym_alias] = ACTIONS(2246), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_let_DASHenv] = ACTIONS(2246), + [anon_sym_mut] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2246), + [aux_sym_cmd_identifier_token1] = ACTIONS(2246), + [aux_sym_cmd_identifier_token2] = ACTIONS(2246), + [aux_sym_cmd_identifier_token3] = ACTIONS(2246), + [aux_sym_cmd_identifier_token4] = ACTIONS(2246), + [aux_sym_cmd_identifier_token5] = ACTIONS(2246), + [aux_sym_cmd_identifier_token6] = ACTIONS(2246), + [aux_sym_cmd_identifier_token7] = ACTIONS(2246), + [aux_sym_cmd_identifier_token8] = ACTIONS(2246), + [aux_sym_cmd_identifier_token9] = ACTIONS(2246), + [aux_sym_cmd_identifier_token10] = ACTIONS(2246), + [aux_sym_cmd_identifier_token11] = ACTIONS(2246), + [aux_sym_cmd_identifier_token12] = ACTIONS(2246), + [aux_sym_cmd_identifier_token13] = ACTIONS(2246), + [aux_sym_cmd_identifier_token14] = ACTIONS(2246), + [aux_sym_cmd_identifier_token15] = ACTIONS(2246), + [aux_sym_cmd_identifier_token16] = ACTIONS(2246), + [aux_sym_cmd_identifier_token17] = ACTIONS(2246), + [aux_sym_cmd_identifier_token18] = ACTIONS(2246), + [aux_sym_cmd_identifier_token19] = ACTIONS(2246), + [aux_sym_cmd_identifier_token20] = ACTIONS(2246), + [aux_sym_cmd_identifier_token21] = ACTIONS(2246), + [aux_sym_cmd_identifier_token22] = ACTIONS(2246), + [aux_sym_cmd_identifier_token23] = ACTIONS(2246), + [aux_sym_cmd_identifier_token24] = ACTIONS(2246), + [aux_sym_cmd_identifier_token25] = ACTIONS(2246), + [aux_sym_cmd_identifier_token26] = ACTIONS(2246), + [aux_sym_cmd_identifier_token27] = ACTIONS(2246), + [aux_sym_cmd_identifier_token28] = ACTIONS(2246), + [aux_sym_cmd_identifier_token29] = ACTIONS(2246), + [aux_sym_cmd_identifier_token30] = ACTIONS(2246), + [aux_sym_cmd_identifier_token31] = ACTIONS(2246), + [aux_sym_cmd_identifier_token32] = ACTIONS(2246), + [aux_sym_cmd_identifier_token33] = ACTIONS(2246), + [aux_sym_cmd_identifier_token34] = ACTIONS(2246), + [aux_sym_cmd_identifier_token35] = ACTIONS(2246), + [aux_sym_cmd_identifier_token36] = ACTIONS(2246), + [aux_sym_cmd_identifier_token37] = ACTIONS(2246), + [aux_sym_cmd_identifier_token38] = ACTIONS(2246), + [aux_sym_cmd_identifier_token39] = ACTIONS(2246), + [aux_sym_cmd_identifier_token40] = ACTIONS(2246), + [anon_sym_def] = ACTIONS(2246), + [anon_sym_export_DASHenv] = ACTIONS(2246), + [anon_sym_extern] = ACTIONS(2246), + [anon_sym_module] = ACTIONS(2246), + [anon_sym_use] = ACTIONS(2246), + [anon_sym_LPAREN] = ACTIONS(2246), + [anon_sym_DOLLAR] = ACTIONS(2246), + [anon_sym_error] = ACTIONS(2246), + [anon_sym_DASH2] = ACTIONS(2246), + [anon_sym_break] = ACTIONS(2246), + [anon_sym_continue] = ACTIONS(2246), + [anon_sym_for] = ACTIONS(2246), + [anon_sym_in2] = ACTIONS(2246), + [anon_sym_loop] = ACTIONS(2246), + [anon_sym_make] = ACTIONS(2246), + [anon_sym_while] = ACTIONS(2246), + [anon_sym_do] = ACTIONS(2246), + [anon_sym_if] = ACTIONS(2246), + [anon_sym_else] = ACTIONS(2246), + [anon_sym_match] = ACTIONS(2246), + [anon_sym_RBRACE] = ACTIONS(2246), + [anon_sym_try] = ACTIONS(2246), + [anon_sym_catch] = ACTIONS(2246), + [anon_sym_return] = ACTIONS(2246), + [anon_sym_source] = ACTIONS(2246), + [anon_sym_source_DASHenv] = ACTIONS(2246), + [anon_sym_register] = ACTIONS(2246), + [anon_sym_hide] = ACTIONS(2246), + [anon_sym_hide_DASHenv] = ACTIONS(2246), + [anon_sym_overlay] = ACTIONS(2246), + [anon_sym_as] = ACTIONS(2246), + [anon_sym_LPAREN2] = ACTIONS(2248), + [anon_sym_PLUS2] = ACTIONS(2246), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2246), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2246), + [aux_sym__val_number_decimal_token1] = ACTIONS(2246), + [aux_sym__val_number_decimal_token2] = ACTIONS(2246), + [aux_sym__val_number_decimal_token3] = ACTIONS(2246), + [aux_sym__val_number_decimal_token4] = ACTIONS(2246), + [aux_sym__val_number_token1] = ACTIONS(2246), + [aux_sym__val_number_token2] = ACTIONS(2246), + [aux_sym__val_number_token3] = ACTIONS(2246), + [aux_sym__val_number_token4] = ACTIONS(2246), + [aux_sym__val_number_token5] = ACTIONS(2246), + [aux_sym__val_number_token6] = ACTIONS(2246), + [anon_sym_DQUOTE] = ACTIONS(2246), + [sym__str_single_quotes] = ACTIONS(2246), + [sym__str_back_ticks] = ACTIONS(2246), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2246), + [sym__entry_separator] = ACTIONS(2250), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2252), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2250), + }, + [540] = { + [sym_comment] = STATE(540), + [anon_sym_export] = ACTIONS(2254), + [anon_sym_alias] = ACTIONS(2254), + [anon_sym_let] = ACTIONS(2254), + [anon_sym_let_DASHenv] = ACTIONS(2254), + [anon_sym_mut] = ACTIONS(2254), + [anon_sym_const] = ACTIONS(2254), + [aux_sym_cmd_identifier_token1] = ACTIONS(2254), + [aux_sym_cmd_identifier_token2] = ACTIONS(2254), + [aux_sym_cmd_identifier_token3] = ACTIONS(2254), + [aux_sym_cmd_identifier_token4] = ACTIONS(2254), + [aux_sym_cmd_identifier_token5] = ACTIONS(2254), + [aux_sym_cmd_identifier_token6] = ACTIONS(2254), + [aux_sym_cmd_identifier_token7] = ACTIONS(2254), + [aux_sym_cmd_identifier_token8] = ACTIONS(2254), + [aux_sym_cmd_identifier_token9] = ACTIONS(2254), + [aux_sym_cmd_identifier_token10] = ACTIONS(2254), + [aux_sym_cmd_identifier_token11] = ACTIONS(2254), + [aux_sym_cmd_identifier_token12] = ACTIONS(2254), + [aux_sym_cmd_identifier_token13] = ACTIONS(2254), + [aux_sym_cmd_identifier_token14] = ACTIONS(2254), + [aux_sym_cmd_identifier_token15] = ACTIONS(2254), + [aux_sym_cmd_identifier_token16] = ACTIONS(2254), + [aux_sym_cmd_identifier_token17] = ACTIONS(2254), + [aux_sym_cmd_identifier_token18] = ACTIONS(2254), + [aux_sym_cmd_identifier_token19] = ACTIONS(2254), + [aux_sym_cmd_identifier_token20] = ACTIONS(2254), + [aux_sym_cmd_identifier_token21] = ACTIONS(2254), + [aux_sym_cmd_identifier_token22] = ACTIONS(2254), + [aux_sym_cmd_identifier_token23] = ACTIONS(2254), + [aux_sym_cmd_identifier_token24] = ACTIONS(2254), + [aux_sym_cmd_identifier_token25] = ACTIONS(2254), + [aux_sym_cmd_identifier_token26] = ACTIONS(2254), + [aux_sym_cmd_identifier_token27] = ACTIONS(2254), + [aux_sym_cmd_identifier_token28] = ACTIONS(2254), + [aux_sym_cmd_identifier_token29] = ACTIONS(2254), + [aux_sym_cmd_identifier_token30] = ACTIONS(2254), + [aux_sym_cmd_identifier_token31] = ACTIONS(2254), + [aux_sym_cmd_identifier_token32] = ACTIONS(2254), + [aux_sym_cmd_identifier_token33] = ACTIONS(2254), + [aux_sym_cmd_identifier_token34] = ACTIONS(2254), + [aux_sym_cmd_identifier_token35] = ACTIONS(2254), + [aux_sym_cmd_identifier_token36] = ACTIONS(2254), + [aux_sym_cmd_identifier_token37] = ACTIONS(2254), + [aux_sym_cmd_identifier_token38] = ACTIONS(2254), + [aux_sym_cmd_identifier_token39] = ACTIONS(2254), + [aux_sym_cmd_identifier_token40] = ACTIONS(2254), + [anon_sym_def] = ACTIONS(2254), + [anon_sym_export_DASHenv] = ACTIONS(2254), + [anon_sym_extern] = ACTIONS(2254), + [anon_sym_module] = ACTIONS(2254), + [anon_sym_use] = ACTIONS(2254), + [anon_sym_LPAREN] = ACTIONS(2254), + [anon_sym_DOLLAR] = ACTIONS(2254), + [anon_sym_error] = ACTIONS(2254), + [anon_sym_DASH2] = ACTIONS(2254), + [anon_sym_break] = ACTIONS(2254), + [anon_sym_continue] = ACTIONS(2254), + [anon_sym_for] = ACTIONS(2254), + [anon_sym_in2] = ACTIONS(2254), + [anon_sym_loop] = ACTIONS(2254), + [anon_sym_make] = ACTIONS(2254), + [anon_sym_while] = ACTIONS(2254), + [anon_sym_do] = ACTIONS(2254), + [anon_sym_if] = ACTIONS(2254), + [anon_sym_else] = ACTIONS(2254), + [anon_sym_match] = ACTIONS(2254), + [anon_sym_RBRACE] = ACTIONS(2254), + [anon_sym_try] = ACTIONS(2254), + [anon_sym_catch] = ACTIONS(2254), + [anon_sym_return] = ACTIONS(2254), + [anon_sym_source] = ACTIONS(2254), + [anon_sym_source_DASHenv] = ACTIONS(2254), + [anon_sym_register] = ACTIONS(2254), + [anon_sym_hide] = ACTIONS(2254), + [anon_sym_hide_DASHenv] = ACTIONS(2254), + [anon_sym_overlay] = ACTIONS(2254), + [anon_sym_as] = ACTIONS(2254), + [anon_sym_LPAREN2] = ACTIONS(2248), + [anon_sym_PLUS2] = ACTIONS(2254), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2254), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2254), + [aux_sym__val_number_decimal_token1] = ACTIONS(2254), + [aux_sym__val_number_decimal_token2] = ACTIONS(2254), + [aux_sym__val_number_decimal_token3] = ACTIONS(2254), + [aux_sym__val_number_decimal_token4] = ACTIONS(2254), + [aux_sym__val_number_token1] = ACTIONS(2254), + [aux_sym__val_number_token2] = ACTIONS(2254), + [aux_sym__val_number_token3] = ACTIONS(2254), + [aux_sym__val_number_token4] = ACTIONS(2254), + [aux_sym__val_number_token5] = ACTIONS(2254), + [aux_sym__val_number_token6] = ACTIONS(2254), + [anon_sym_DQUOTE] = ACTIONS(2254), + [sym__str_single_quotes] = ACTIONS(2254), + [sym__str_back_ticks] = ACTIONS(2254), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2254), + [sym__entry_separator] = ACTIONS(2256), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2252), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2256), + }, + [541] = { + [sym_comment] = STATE(541), + [anon_sym_export] = ACTIONS(1802), + [anon_sym_alias] = ACTIONS(1802), + [anon_sym_let] = ACTIONS(1802), + [anon_sym_let_DASHenv] = ACTIONS(1802), + [anon_sym_mut] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1802), + [aux_sym_cmd_identifier_token1] = ACTIONS(1802), + [aux_sym_cmd_identifier_token2] = ACTIONS(1802), + [aux_sym_cmd_identifier_token3] = ACTIONS(1802), + [aux_sym_cmd_identifier_token4] = ACTIONS(1802), + [aux_sym_cmd_identifier_token5] = ACTIONS(1802), + [aux_sym_cmd_identifier_token6] = ACTIONS(1802), + [aux_sym_cmd_identifier_token7] = ACTIONS(1802), + [aux_sym_cmd_identifier_token8] = ACTIONS(1802), + [aux_sym_cmd_identifier_token9] = ACTIONS(1802), + [aux_sym_cmd_identifier_token10] = ACTIONS(1802), + [aux_sym_cmd_identifier_token11] = ACTIONS(1802), + [aux_sym_cmd_identifier_token12] = ACTIONS(1802), + [aux_sym_cmd_identifier_token13] = ACTIONS(1802), + [aux_sym_cmd_identifier_token14] = ACTIONS(1802), + [aux_sym_cmd_identifier_token15] = ACTIONS(1802), + [aux_sym_cmd_identifier_token16] = ACTIONS(1802), + [aux_sym_cmd_identifier_token17] = ACTIONS(1802), + [aux_sym_cmd_identifier_token18] = ACTIONS(1802), + [aux_sym_cmd_identifier_token19] = ACTIONS(1802), + [aux_sym_cmd_identifier_token20] = ACTIONS(1802), + [aux_sym_cmd_identifier_token21] = ACTIONS(1802), + [aux_sym_cmd_identifier_token22] = ACTIONS(1802), + [aux_sym_cmd_identifier_token23] = ACTIONS(1802), + [aux_sym_cmd_identifier_token24] = ACTIONS(1802), + [aux_sym_cmd_identifier_token25] = ACTIONS(1802), + [aux_sym_cmd_identifier_token26] = ACTIONS(1802), + [aux_sym_cmd_identifier_token27] = ACTIONS(1802), + [aux_sym_cmd_identifier_token28] = ACTIONS(1802), + [aux_sym_cmd_identifier_token29] = ACTIONS(1802), + [aux_sym_cmd_identifier_token30] = ACTIONS(1802), + [aux_sym_cmd_identifier_token31] = ACTIONS(1802), + [aux_sym_cmd_identifier_token32] = ACTIONS(1802), + [aux_sym_cmd_identifier_token33] = ACTIONS(1802), + [aux_sym_cmd_identifier_token34] = ACTIONS(1802), + [aux_sym_cmd_identifier_token35] = ACTIONS(1802), + [aux_sym_cmd_identifier_token36] = ACTIONS(1802), + [aux_sym_cmd_identifier_token37] = ACTIONS(1802), + [aux_sym_cmd_identifier_token38] = ACTIONS(1802), + [aux_sym_cmd_identifier_token39] = ACTIONS(1802), + [aux_sym_cmd_identifier_token40] = ACTIONS(1802), + [anon_sym_def] = ACTIONS(1802), + [anon_sym_export_DASHenv] = ACTIONS(1802), + [anon_sym_extern] = ACTIONS(1802), + [anon_sym_module] = ACTIONS(1802), + [anon_sym_use] = ACTIONS(1802), + [anon_sym_LPAREN] = ACTIONS(1802), + [anon_sym_DOLLAR] = ACTIONS(1802), + [anon_sym_error] = ACTIONS(1802), + [anon_sym_DASH2] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_for] = ACTIONS(1802), + [anon_sym_in2] = ACTIONS(1802), + [anon_sym_loop] = ACTIONS(1802), + [anon_sym_make] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_do] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_match] = ACTIONS(1802), + [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_catch] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_source] = ACTIONS(1802), + [anon_sym_source_DASHenv] = ACTIONS(1802), + [anon_sym_register] = ACTIONS(1802), + [anon_sym_hide] = ACTIONS(1802), + [anon_sym_hide_DASHenv] = ACTIONS(1802), + [anon_sym_overlay] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LPAREN2] = ACTIONS(1804), + [anon_sym_PLUS2] = ACTIONS(1802), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1802), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1802), + [aux_sym__val_number_decimal_token1] = ACTIONS(1802), + [aux_sym__val_number_decimal_token2] = ACTIONS(1802), + [aux_sym__val_number_decimal_token3] = ACTIONS(1802), + [aux_sym__val_number_decimal_token4] = ACTIONS(1802), + [aux_sym__val_number_token1] = ACTIONS(1802), + [aux_sym__val_number_token2] = ACTIONS(1802), + [aux_sym__val_number_token3] = ACTIONS(1802), + [aux_sym__val_number_token4] = ACTIONS(1802), + [aux_sym__val_number_token5] = ACTIONS(1802), + [aux_sym__val_number_token6] = ACTIONS(1802), + [anon_sym_DQUOTE] = ACTIONS(1802), + [sym__str_single_quotes] = ACTIONS(1802), + [sym__str_back_ticks] = ACTIONS(1802), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1802), + [sym__entry_separator] = ACTIONS(1810), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1812), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1810), + }, + [542] = { + [sym__expr_parenthesized_immediate] = STATE(7523), + [sym_comment] = STATE(542), + [anon_sym_export] = ACTIONS(2165), + [anon_sym_alias] = ACTIONS(2165), + [anon_sym_let] = ACTIONS(2165), + [anon_sym_let_DASHenv] = ACTIONS(2165), + [anon_sym_mut] = ACTIONS(2165), + [anon_sym_const] = ACTIONS(2165), + [aux_sym_cmd_identifier_token1] = ACTIONS(2165), [aux_sym_cmd_identifier_token2] = ACTIONS(2165), [aux_sym_cmd_identifier_token3] = ACTIONS(2165), [aux_sym_cmd_identifier_token4] = ACTIONS(2165), [aux_sym_cmd_identifier_token5] = ACTIONS(2165), [aux_sym_cmd_identifier_token6] = ACTIONS(2165), [aux_sym_cmd_identifier_token7] = ACTIONS(2165), - [aux_sym_cmd_identifier_token8] = ACTIONS(2159), - [aux_sym_cmd_identifier_token9] = ACTIONS(2159), + [aux_sym_cmd_identifier_token8] = ACTIONS(2165), + [aux_sym_cmd_identifier_token9] = ACTIONS(2165), [aux_sym_cmd_identifier_token10] = ACTIONS(2165), [aux_sym_cmd_identifier_token11] = ACTIONS(2165), - [aux_sym_cmd_identifier_token12] = ACTIONS(2159), - [aux_sym_cmd_identifier_token13] = ACTIONS(2159), - [aux_sym_cmd_identifier_token14] = ACTIONS(2159), - [aux_sym_cmd_identifier_token15] = ACTIONS(2159), + [aux_sym_cmd_identifier_token12] = ACTIONS(2165), + [aux_sym_cmd_identifier_token13] = ACTIONS(2165), + [aux_sym_cmd_identifier_token14] = ACTIONS(2165), + [aux_sym_cmd_identifier_token15] = ACTIONS(2165), [aux_sym_cmd_identifier_token16] = ACTIONS(2165), [aux_sym_cmd_identifier_token17] = ACTIONS(2165), [aux_sym_cmd_identifier_token18] = ACTIONS(2165), @@ -132821,375 +134365,272 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(2165), [aux_sym_cmd_identifier_token32] = ACTIONS(2165), [aux_sym_cmd_identifier_token33] = ACTIONS(2165), - [aux_sym_cmd_identifier_token34] = ACTIONS(2159), + [aux_sym_cmd_identifier_token34] = ACTIONS(2165), [aux_sym_cmd_identifier_token35] = ACTIONS(2165), [aux_sym_cmd_identifier_token36] = ACTIONS(2165), [aux_sym_cmd_identifier_token37] = ACTIONS(2165), - [aux_sym_cmd_identifier_token38] = ACTIONS(2159), + [aux_sym_cmd_identifier_token38] = ACTIONS(2165), [aux_sym_cmd_identifier_token39] = ACTIONS(2165), [aux_sym_cmd_identifier_token40] = ACTIONS(2165), - [anon_sym_def] = ACTIONS(2159), - [anon_sym_export_DASHenv] = ACTIONS(2159), - [anon_sym_extern] = ACTIONS(2159), - [anon_sym_module] = ACTIONS(2159), - [anon_sym_use] = ACTIONS(2159), + [anon_sym_def] = ACTIONS(2165), + [anon_sym_export_DASHenv] = ACTIONS(2165), + [anon_sym_extern] = ACTIONS(2165), + [anon_sym_module] = ACTIONS(2165), + [anon_sym_use] = ACTIONS(2165), [anon_sym_LPAREN] = ACTIONS(2165), [anon_sym_DOLLAR] = ACTIONS(2165), - [anon_sym_error] = ACTIONS(2159), - [anon_sym_DASH2] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_in2] = ACTIONS(2159), - [anon_sym_loop] = ACTIONS(2159), - [anon_sym_make] = ACTIONS(2159), - [anon_sym_while] = ACTIONS(2159), - [anon_sym_do] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_else] = ACTIONS(2159), - [anon_sym_match] = ACTIONS(2159), + [anon_sym_error] = ACTIONS(2165), + [anon_sym_DASH2] = ACTIONS(2165), + [anon_sym_break] = ACTIONS(2165), + [anon_sym_continue] = ACTIONS(2165), + [anon_sym_for] = ACTIONS(2165), + [anon_sym_in2] = ACTIONS(2165), + [anon_sym_loop] = ACTIONS(2165), + [anon_sym_make] = ACTIONS(2165), + [anon_sym_while] = ACTIONS(2165), + [anon_sym_do] = ACTIONS(2165), + [anon_sym_if] = ACTIONS(2165), + [anon_sym_else] = ACTIONS(2165), + [anon_sym_match] = ACTIONS(2165), [anon_sym_RBRACE] = ACTIONS(2165), - [anon_sym_try] = ACTIONS(2159), - [anon_sym_catch] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_source] = ACTIONS(2159), - [anon_sym_source_DASHenv] = ACTIONS(2159), - [anon_sym_register] = ACTIONS(2159), - [anon_sym_hide] = ACTIONS(2159), - [anon_sym_hide_DASHenv] = ACTIONS(2159), - [anon_sym_overlay] = ACTIONS(2159), - [anon_sym_as] = ACTIONS(2159), - [anon_sym_PLUS2] = ACTIONS(2159), + [anon_sym_try] = ACTIONS(2165), + [anon_sym_catch] = ACTIONS(2165), + [anon_sym_return] = ACTIONS(2165), + [anon_sym_source] = ACTIONS(2165), + [anon_sym_source_DASHenv] = ACTIONS(2165), + [anon_sym_register] = ACTIONS(2165), + [anon_sym_hide] = ACTIONS(2165), + [anon_sym_hide_DASHenv] = ACTIONS(2165), + [anon_sym_overlay] = ACTIONS(2165), + [anon_sym_as] = ACTIONS(2165), + [anon_sym_LPAREN2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(2165), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2165), - [anon_sym_DOT_DOT2] = ACTIONS(2226), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2228), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2228), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2165), - [aux_sym__val_number_decimal_token1] = ACTIONS(2159), + [aux_sym__val_number_decimal_token1] = ACTIONS(2165), [aux_sym__val_number_decimal_token2] = ACTIONS(2165), [aux_sym__val_number_decimal_token3] = ACTIONS(2165), [aux_sym__val_number_decimal_token4] = ACTIONS(2165), [aux_sym__val_number_token1] = ACTIONS(2165), [aux_sym__val_number_token2] = ACTIONS(2165), [aux_sym__val_number_token3] = ACTIONS(2165), - [aux_sym__val_number_token4] = ACTIONS(2159), - [aux_sym__val_number_token5] = ACTIONS(2159), - [aux_sym__val_number_token6] = ACTIONS(2159), + [aux_sym__val_number_token4] = ACTIONS(2165), + [aux_sym__val_number_token5] = ACTIONS(2165), + [aux_sym__val_number_token6] = ACTIONS(2165), [anon_sym_DQUOTE] = ACTIONS(2165), [sym__str_single_quotes] = ACTIONS(2165), [sym__str_back_ticks] = ACTIONS(2165), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2165), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2165), - }, - [531] = { - [sym_comment] = STATE(531), - [anon_sym_export] = ACTIONS(1030), - [anon_sym_alias] = ACTIONS(1030), - [anon_sym_let] = ACTIONS(1030), - [anon_sym_let_DASHenv] = ACTIONS(1030), - [anon_sym_mut] = ACTIONS(1030), - [anon_sym_const] = ACTIONS(1030), - [aux_sym_cmd_identifier_token1] = ACTIONS(1030), - [aux_sym_cmd_identifier_token2] = ACTIONS(1032), - [aux_sym_cmd_identifier_token3] = ACTIONS(1032), - [aux_sym_cmd_identifier_token4] = ACTIONS(1032), - [aux_sym_cmd_identifier_token5] = ACTIONS(1032), - [aux_sym_cmd_identifier_token6] = ACTIONS(1032), - [aux_sym_cmd_identifier_token7] = ACTIONS(1032), - [aux_sym_cmd_identifier_token8] = ACTIONS(1030), - [aux_sym_cmd_identifier_token9] = ACTIONS(1030), - [aux_sym_cmd_identifier_token10] = ACTIONS(1032), - [aux_sym_cmd_identifier_token11] = ACTIONS(1032), - [aux_sym_cmd_identifier_token12] = ACTIONS(1030), - [aux_sym_cmd_identifier_token13] = ACTIONS(1030), - [aux_sym_cmd_identifier_token14] = ACTIONS(1030), - [aux_sym_cmd_identifier_token15] = ACTIONS(1030), - [aux_sym_cmd_identifier_token16] = ACTIONS(1032), - [aux_sym_cmd_identifier_token17] = ACTIONS(1032), - [aux_sym_cmd_identifier_token18] = ACTIONS(1032), - [aux_sym_cmd_identifier_token19] = ACTIONS(1032), - [aux_sym_cmd_identifier_token20] = ACTIONS(1032), - [aux_sym_cmd_identifier_token21] = ACTIONS(1032), - [aux_sym_cmd_identifier_token22] = ACTIONS(1032), - [aux_sym_cmd_identifier_token23] = ACTIONS(1032), - [aux_sym_cmd_identifier_token24] = ACTIONS(1032), - [aux_sym_cmd_identifier_token25] = ACTIONS(1032), - [aux_sym_cmd_identifier_token26] = ACTIONS(1032), - [aux_sym_cmd_identifier_token27] = ACTIONS(1032), - [aux_sym_cmd_identifier_token28] = ACTIONS(1032), - [aux_sym_cmd_identifier_token29] = ACTIONS(1032), - [aux_sym_cmd_identifier_token30] = ACTIONS(1032), - [aux_sym_cmd_identifier_token31] = ACTIONS(1032), - [aux_sym_cmd_identifier_token32] = ACTIONS(1032), - [aux_sym_cmd_identifier_token33] = ACTIONS(1032), - [aux_sym_cmd_identifier_token34] = ACTIONS(1030), - [aux_sym_cmd_identifier_token35] = ACTIONS(1032), - [aux_sym_cmd_identifier_token36] = ACTIONS(1032), - [aux_sym_cmd_identifier_token37] = ACTIONS(1032), - [aux_sym_cmd_identifier_token38] = ACTIONS(1030), - [aux_sym_cmd_identifier_token39] = ACTIONS(1032), - [aux_sym_cmd_identifier_token40] = ACTIONS(1032), - [anon_sym_def] = ACTIONS(1030), - [anon_sym_export_DASHenv] = ACTIONS(1030), - [anon_sym_extern] = ACTIONS(1030), - [anon_sym_module] = ACTIONS(1030), - [anon_sym_use] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_error] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(1030), - [anon_sym_break] = ACTIONS(1030), - [anon_sym_continue] = ACTIONS(1030), - [anon_sym_for] = ACTIONS(1030), - [anon_sym_in2] = ACTIONS(1030), - [anon_sym_loop] = ACTIONS(1030), - [anon_sym_make] = ACTIONS(1030), - [anon_sym_while] = ACTIONS(1030), - [anon_sym_do] = ACTIONS(1030), - [anon_sym_if] = ACTIONS(1030), - [anon_sym_else] = ACTIONS(1030), - [anon_sym_match] = ACTIONS(1030), - [anon_sym_RBRACE] = ACTIONS(1032), - [anon_sym_try] = ACTIONS(1030), - [anon_sym_catch] = ACTIONS(1030), - [anon_sym_return] = ACTIONS(1030), - [anon_sym_source] = ACTIONS(1030), - [anon_sym_source_DASHenv] = ACTIONS(1030), - [anon_sym_register] = ACTIONS(1030), - [anon_sym_hide] = ACTIONS(1030), - [anon_sym_hide_DASHenv] = ACTIONS(1030), - [anon_sym_overlay] = ACTIONS(1030), - [anon_sym_as] = ACTIONS(1030), - [anon_sym_PLUS2] = ACTIONS(1030), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1032), - [anon_sym_DOT_DOT2] = ACTIONS(2230), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2232), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2232), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1032), - [aux_sym__val_number_decimal_token1] = ACTIONS(1030), - [aux_sym__val_number_decimal_token2] = ACTIONS(1032), - [aux_sym__val_number_decimal_token3] = ACTIONS(1032), - [aux_sym__val_number_decimal_token4] = ACTIONS(1032), - [aux_sym__val_number_token1] = ACTIONS(1032), - [aux_sym__val_number_token2] = ACTIONS(1032), - [aux_sym__val_number_token3] = ACTIONS(1032), - [aux_sym__val_number_token4] = ACTIONS(1030), - [aux_sym__val_number_token5] = ACTIONS(1030), - [aux_sym__val_number_token6] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1032), - [sym__str_single_quotes] = ACTIONS(1032), - [sym__str_back_ticks] = ACTIONS(1032), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1032), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1032), + [sym__entry_separator] = ACTIONS(2171), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2171), }, - [532] = { - [sym_comment] = STATE(532), - [anon_sym_export] = ACTIONS(2234), - [anon_sym_alias] = ACTIONS(2234), - [anon_sym_let] = ACTIONS(2234), - [anon_sym_let_DASHenv] = ACTIONS(2234), - [anon_sym_mut] = ACTIONS(2234), - [anon_sym_const] = ACTIONS(2234), - [aux_sym_cmd_identifier_token1] = ACTIONS(2234), - [aux_sym_cmd_identifier_token2] = ACTIONS(2234), - [aux_sym_cmd_identifier_token3] = ACTIONS(2234), - [aux_sym_cmd_identifier_token4] = ACTIONS(2234), - [aux_sym_cmd_identifier_token5] = ACTIONS(2234), - [aux_sym_cmd_identifier_token6] = ACTIONS(2234), - [aux_sym_cmd_identifier_token7] = ACTIONS(2234), - [aux_sym_cmd_identifier_token8] = ACTIONS(2234), - [aux_sym_cmd_identifier_token9] = ACTIONS(2234), - [aux_sym_cmd_identifier_token10] = ACTIONS(2234), - [aux_sym_cmd_identifier_token11] = ACTIONS(2234), - [aux_sym_cmd_identifier_token12] = ACTIONS(2234), - [aux_sym_cmd_identifier_token13] = ACTIONS(2234), - [aux_sym_cmd_identifier_token14] = ACTIONS(2234), - [aux_sym_cmd_identifier_token15] = ACTIONS(2234), - [aux_sym_cmd_identifier_token16] = ACTIONS(2234), - [aux_sym_cmd_identifier_token17] = ACTIONS(2234), - [aux_sym_cmd_identifier_token18] = ACTIONS(2234), - [aux_sym_cmd_identifier_token19] = ACTIONS(2234), - [aux_sym_cmd_identifier_token20] = ACTIONS(2234), - [aux_sym_cmd_identifier_token21] = ACTIONS(2234), - [aux_sym_cmd_identifier_token22] = ACTIONS(2234), - [aux_sym_cmd_identifier_token23] = ACTIONS(2234), - [aux_sym_cmd_identifier_token24] = ACTIONS(2234), - [aux_sym_cmd_identifier_token25] = ACTIONS(2234), - [aux_sym_cmd_identifier_token26] = ACTIONS(2234), - [aux_sym_cmd_identifier_token27] = ACTIONS(2234), - [aux_sym_cmd_identifier_token28] = ACTIONS(2234), - [aux_sym_cmd_identifier_token29] = ACTIONS(2234), - [aux_sym_cmd_identifier_token30] = ACTIONS(2234), - [aux_sym_cmd_identifier_token31] = ACTIONS(2234), - [aux_sym_cmd_identifier_token32] = ACTIONS(2234), - [aux_sym_cmd_identifier_token33] = ACTIONS(2234), - [aux_sym_cmd_identifier_token34] = ACTIONS(2234), - [aux_sym_cmd_identifier_token35] = ACTIONS(2234), - [aux_sym_cmd_identifier_token36] = ACTIONS(2234), - [aux_sym_cmd_identifier_token37] = ACTIONS(2234), - [aux_sym_cmd_identifier_token38] = ACTIONS(2234), - [aux_sym_cmd_identifier_token39] = ACTIONS(2234), - [aux_sym_cmd_identifier_token40] = ACTIONS(2234), - [anon_sym_def] = ACTIONS(2234), - [anon_sym_export_DASHenv] = ACTIONS(2234), - [anon_sym_extern] = ACTIONS(2234), - [anon_sym_module] = ACTIONS(2234), - [anon_sym_use] = ACTIONS(2234), - [anon_sym_LPAREN] = ACTIONS(2234), - [anon_sym_DOLLAR] = ACTIONS(2234), - [anon_sym_error] = ACTIONS(2234), - [anon_sym_DASH2] = ACTIONS(2234), - [anon_sym_break] = ACTIONS(2234), - [anon_sym_continue] = ACTIONS(2234), - [anon_sym_for] = ACTIONS(2234), - [anon_sym_in2] = ACTIONS(2234), - [anon_sym_loop] = ACTIONS(2234), - [anon_sym_make] = ACTIONS(2234), - [anon_sym_while] = ACTIONS(2234), - [anon_sym_do] = ACTIONS(2234), - [anon_sym_if] = ACTIONS(2234), - [anon_sym_else] = ACTIONS(2234), - [anon_sym_match] = ACTIONS(2234), - [anon_sym_RBRACE] = ACTIONS(2234), - [anon_sym_try] = ACTIONS(2234), - [anon_sym_catch] = ACTIONS(2234), - [anon_sym_return] = ACTIONS(2234), - [anon_sym_source] = ACTIONS(2234), - [anon_sym_source_DASHenv] = ACTIONS(2234), - [anon_sym_register] = ACTIONS(2234), - [anon_sym_hide] = ACTIONS(2234), - [anon_sym_hide_DASHenv] = ACTIONS(2234), - [anon_sym_overlay] = ACTIONS(2234), - [anon_sym_as] = ACTIONS(2234), - [anon_sym_LPAREN2] = ACTIONS(2236), - [anon_sym_PLUS2] = ACTIONS(2234), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2234), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2234), - [aux_sym__val_number_decimal_token1] = ACTIONS(2234), - [aux_sym__val_number_decimal_token2] = ACTIONS(2234), - [aux_sym__val_number_decimal_token3] = ACTIONS(2234), - [aux_sym__val_number_decimal_token4] = ACTIONS(2234), - [aux_sym__val_number_token1] = ACTIONS(2234), - [aux_sym__val_number_token2] = ACTIONS(2234), - [aux_sym__val_number_token3] = ACTIONS(2234), - [aux_sym__val_number_token4] = ACTIONS(2234), - [aux_sym__val_number_token5] = ACTIONS(2234), - [aux_sym__val_number_token6] = ACTIONS(2234), - [anon_sym_DQUOTE] = ACTIONS(2234), - [sym__str_single_quotes] = ACTIONS(2234), - [sym__str_back_ticks] = ACTIONS(2234), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2234), - [sym__entry_separator] = ACTIONS(2238), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1579), + [543] = { + [sym_comment] = STATE(543), + [anon_sym_export] = ACTIONS(2258), + [anon_sym_alias] = ACTIONS(2258), + [anon_sym_let] = ACTIONS(2258), + [anon_sym_let_DASHenv] = ACTIONS(2258), + [anon_sym_mut] = ACTIONS(2258), + [anon_sym_const] = ACTIONS(2258), + [aux_sym_cmd_identifier_token1] = ACTIONS(2258), + [aux_sym_cmd_identifier_token2] = ACTIONS(2258), + [aux_sym_cmd_identifier_token3] = ACTIONS(2258), + [aux_sym_cmd_identifier_token4] = ACTIONS(2258), + [aux_sym_cmd_identifier_token5] = ACTIONS(2258), + [aux_sym_cmd_identifier_token6] = ACTIONS(2258), + [aux_sym_cmd_identifier_token7] = ACTIONS(2258), + [aux_sym_cmd_identifier_token8] = ACTIONS(2258), + [aux_sym_cmd_identifier_token9] = ACTIONS(2258), + [aux_sym_cmd_identifier_token10] = ACTIONS(2258), + [aux_sym_cmd_identifier_token11] = ACTIONS(2258), + [aux_sym_cmd_identifier_token12] = ACTIONS(2258), + [aux_sym_cmd_identifier_token13] = ACTIONS(2258), + [aux_sym_cmd_identifier_token14] = ACTIONS(2258), + [aux_sym_cmd_identifier_token15] = ACTIONS(2258), + [aux_sym_cmd_identifier_token16] = ACTIONS(2258), + [aux_sym_cmd_identifier_token17] = ACTIONS(2258), + [aux_sym_cmd_identifier_token18] = ACTIONS(2258), + [aux_sym_cmd_identifier_token19] = ACTIONS(2258), + [aux_sym_cmd_identifier_token20] = ACTIONS(2258), + [aux_sym_cmd_identifier_token21] = ACTIONS(2258), + [aux_sym_cmd_identifier_token22] = ACTIONS(2258), + [aux_sym_cmd_identifier_token23] = ACTIONS(2258), + [aux_sym_cmd_identifier_token24] = ACTIONS(2258), + [aux_sym_cmd_identifier_token25] = ACTIONS(2258), + [aux_sym_cmd_identifier_token26] = ACTIONS(2258), + [aux_sym_cmd_identifier_token27] = ACTIONS(2258), + [aux_sym_cmd_identifier_token28] = ACTIONS(2258), + [aux_sym_cmd_identifier_token29] = ACTIONS(2258), + [aux_sym_cmd_identifier_token30] = ACTIONS(2258), + [aux_sym_cmd_identifier_token31] = ACTIONS(2258), + [aux_sym_cmd_identifier_token32] = ACTIONS(2258), + [aux_sym_cmd_identifier_token33] = ACTIONS(2258), + [aux_sym_cmd_identifier_token34] = ACTIONS(2258), + [aux_sym_cmd_identifier_token35] = ACTIONS(2258), + [aux_sym_cmd_identifier_token36] = ACTIONS(2258), + [aux_sym_cmd_identifier_token37] = ACTIONS(2258), + [aux_sym_cmd_identifier_token38] = ACTIONS(2258), + [aux_sym_cmd_identifier_token39] = ACTIONS(2258), + [aux_sym_cmd_identifier_token40] = ACTIONS(2258), + [anon_sym_def] = ACTIONS(2258), + [anon_sym_export_DASHenv] = ACTIONS(2258), + [anon_sym_extern] = ACTIONS(2258), + [anon_sym_module] = ACTIONS(2258), + [anon_sym_use] = ACTIONS(2258), + [anon_sym_LPAREN] = ACTIONS(2258), + [anon_sym_DOLLAR] = ACTIONS(2258), + [anon_sym_error] = ACTIONS(2258), + [anon_sym_DASH2] = ACTIONS(2258), + [anon_sym_break] = ACTIONS(2258), + [anon_sym_continue] = ACTIONS(2258), + [anon_sym_for] = ACTIONS(2258), + [anon_sym_in2] = ACTIONS(2258), + [anon_sym_loop] = ACTIONS(2258), + [anon_sym_make] = ACTIONS(2258), + [anon_sym_while] = ACTIONS(2258), + [anon_sym_do] = ACTIONS(2258), + [anon_sym_if] = ACTIONS(2258), + [anon_sym_else] = ACTIONS(2258), + [anon_sym_match] = ACTIONS(2258), + [anon_sym_RBRACE] = ACTIONS(2258), + [anon_sym_try] = ACTIONS(2258), + [anon_sym_catch] = ACTIONS(2258), + [anon_sym_return] = ACTIONS(2258), + [anon_sym_source] = ACTIONS(2258), + [anon_sym_source_DASHenv] = ACTIONS(2258), + [anon_sym_register] = ACTIONS(2258), + [anon_sym_hide] = ACTIONS(2258), + [anon_sym_hide_DASHenv] = ACTIONS(2258), + [anon_sym_overlay] = ACTIONS(2258), + [anon_sym_as] = ACTIONS(2258), + [anon_sym_LPAREN2] = ACTIONS(2260), + [anon_sym_PLUS2] = ACTIONS(2258), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2258), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2258), + [aux_sym__val_number_decimal_token1] = ACTIONS(2258), + [aux_sym__val_number_decimal_token2] = ACTIONS(2258), + [aux_sym__val_number_decimal_token3] = ACTIONS(2258), + [aux_sym__val_number_decimal_token4] = ACTIONS(2258), + [aux_sym__val_number_token1] = ACTIONS(2258), + [aux_sym__val_number_token2] = ACTIONS(2258), + [aux_sym__val_number_token3] = ACTIONS(2258), + [aux_sym__val_number_token4] = ACTIONS(2258), + [aux_sym__val_number_token5] = ACTIONS(2258), + [aux_sym__val_number_token6] = ACTIONS(2258), + [anon_sym_DQUOTE] = ACTIONS(2258), + [sym__str_single_quotes] = ACTIONS(2258), + [sym__str_back_ticks] = ACTIONS(2258), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2258), + [sym__entry_separator] = ACTIONS(2262), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1661), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2238), + [sym_raw_string_begin] = ACTIONS(2262), }, - [533] = { - [sym_comment] = STATE(533), - [anon_sym_export] = ACTIONS(2167), - [anon_sym_alias] = ACTIONS(2167), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_let_DASHenv] = ACTIONS(2167), - [anon_sym_mut] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [aux_sym_cmd_identifier_token1] = ACTIONS(2167), - [aux_sym_cmd_identifier_token2] = ACTIONS(2173), - [aux_sym_cmd_identifier_token3] = ACTIONS(2173), - [aux_sym_cmd_identifier_token4] = ACTIONS(2173), - [aux_sym_cmd_identifier_token5] = ACTIONS(2173), - [aux_sym_cmd_identifier_token6] = ACTIONS(2173), - [aux_sym_cmd_identifier_token7] = ACTIONS(2173), - [aux_sym_cmd_identifier_token8] = ACTIONS(2167), - [aux_sym_cmd_identifier_token9] = ACTIONS(2167), - [aux_sym_cmd_identifier_token10] = ACTIONS(2173), - [aux_sym_cmd_identifier_token11] = ACTIONS(2173), - [aux_sym_cmd_identifier_token12] = ACTIONS(2167), - [aux_sym_cmd_identifier_token13] = ACTIONS(2167), - [aux_sym_cmd_identifier_token14] = ACTIONS(2167), - [aux_sym_cmd_identifier_token15] = ACTIONS(2167), - [aux_sym_cmd_identifier_token16] = ACTIONS(2173), - [aux_sym_cmd_identifier_token17] = ACTIONS(2173), - [aux_sym_cmd_identifier_token18] = ACTIONS(2173), - [aux_sym_cmd_identifier_token19] = ACTIONS(2173), - [aux_sym_cmd_identifier_token20] = ACTIONS(2173), - [aux_sym_cmd_identifier_token21] = ACTIONS(2173), - [aux_sym_cmd_identifier_token22] = ACTIONS(2173), - [aux_sym_cmd_identifier_token23] = ACTIONS(2173), - [aux_sym_cmd_identifier_token24] = ACTIONS(2173), - [aux_sym_cmd_identifier_token25] = ACTIONS(2173), - [aux_sym_cmd_identifier_token26] = ACTIONS(2173), - [aux_sym_cmd_identifier_token27] = ACTIONS(2173), - [aux_sym_cmd_identifier_token28] = ACTIONS(2173), - [aux_sym_cmd_identifier_token29] = ACTIONS(2173), - [aux_sym_cmd_identifier_token30] = ACTIONS(2173), - [aux_sym_cmd_identifier_token31] = ACTIONS(2173), - [aux_sym_cmd_identifier_token32] = ACTIONS(2173), - [aux_sym_cmd_identifier_token33] = ACTIONS(2173), - [aux_sym_cmd_identifier_token34] = ACTIONS(2167), - [aux_sym_cmd_identifier_token35] = ACTIONS(2173), - [aux_sym_cmd_identifier_token36] = ACTIONS(2173), - [aux_sym_cmd_identifier_token37] = ACTIONS(2173), - [aux_sym_cmd_identifier_token38] = ACTIONS(2167), - [aux_sym_cmd_identifier_token39] = ACTIONS(2173), - [aux_sym_cmd_identifier_token40] = ACTIONS(2173), - [anon_sym_def] = ACTIONS(2167), - [anon_sym_export_DASHenv] = ACTIONS(2167), - [anon_sym_extern] = ACTIONS(2167), - [anon_sym_module] = ACTIONS(2167), - [anon_sym_use] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2173), - [anon_sym_error] = ACTIONS(2167), - [anon_sym_DASH2] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_in2] = ACTIONS(2167), - [anon_sym_loop] = ACTIONS(2167), - [anon_sym_make] = ACTIONS(2167), - [anon_sym_while] = ACTIONS(2167), - [anon_sym_do] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_else] = ACTIONS(2167), - [anon_sym_match] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2173), - [anon_sym_try] = ACTIONS(2167), - [anon_sym_catch] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_source] = ACTIONS(2167), - [anon_sym_source_DASHenv] = ACTIONS(2167), - [anon_sym_register] = ACTIONS(2167), - [anon_sym_hide] = ACTIONS(2167), - [anon_sym_hide_DASHenv] = ACTIONS(2167), - [anon_sym_overlay] = ACTIONS(2167), - [anon_sym_as] = ACTIONS(2167), - [anon_sym_PLUS2] = ACTIONS(2167), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2173), - [anon_sym_DOT_DOT2] = ACTIONS(2240), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2242), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2242), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2173), - [aux_sym__val_number_decimal_token1] = ACTIONS(2167), - [aux_sym__val_number_decimal_token2] = ACTIONS(2173), - [aux_sym__val_number_decimal_token3] = ACTIONS(2173), - [aux_sym__val_number_decimal_token4] = ACTIONS(2173), - [aux_sym__val_number_token1] = ACTIONS(2173), - [aux_sym__val_number_token2] = ACTIONS(2173), - [aux_sym__val_number_token3] = ACTIONS(2173), - [aux_sym__val_number_token4] = ACTIONS(2167), - [aux_sym__val_number_token5] = ACTIONS(2167), - [aux_sym__val_number_token6] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2173), - [sym__str_single_quotes] = ACTIONS(2173), - [sym__str_back_ticks] = ACTIONS(2173), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2173), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2173), + [544] = { + [sym_comment] = STATE(544), + [anon_sym_export] = ACTIONS(1785), + [anon_sym_alias] = ACTIONS(1785), + [anon_sym_let] = ACTIONS(1785), + [anon_sym_let_DASHenv] = ACTIONS(1785), + [anon_sym_mut] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(1785), + [aux_sym_cmd_identifier_token1] = ACTIONS(1785), + [aux_sym_cmd_identifier_token2] = ACTIONS(1785), + [aux_sym_cmd_identifier_token3] = ACTIONS(1785), + [aux_sym_cmd_identifier_token4] = ACTIONS(1785), + [aux_sym_cmd_identifier_token5] = ACTIONS(1785), + [aux_sym_cmd_identifier_token6] = ACTIONS(1785), + [aux_sym_cmd_identifier_token7] = ACTIONS(1785), + [aux_sym_cmd_identifier_token8] = ACTIONS(1785), + [aux_sym_cmd_identifier_token9] = ACTIONS(1785), + [aux_sym_cmd_identifier_token10] = ACTIONS(1785), + [aux_sym_cmd_identifier_token11] = ACTIONS(1785), + [aux_sym_cmd_identifier_token12] = ACTIONS(1785), + [aux_sym_cmd_identifier_token13] = ACTIONS(1785), + [aux_sym_cmd_identifier_token14] = ACTIONS(1785), + [aux_sym_cmd_identifier_token15] = ACTIONS(1785), + [aux_sym_cmd_identifier_token16] = ACTIONS(1785), + [aux_sym_cmd_identifier_token17] = ACTIONS(1785), + [aux_sym_cmd_identifier_token18] = ACTIONS(1785), + [aux_sym_cmd_identifier_token19] = ACTIONS(1785), + [aux_sym_cmd_identifier_token20] = ACTIONS(1785), + [aux_sym_cmd_identifier_token21] = ACTIONS(1785), + [aux_sym_cmd_identifier_token22] = ACTIONS(1785), + [aux_sym_cmd_identifier_token23] = ACTIONS(1785), + [aux_sym_cmd_identifier_token24] = ACTIONS(1785), + [aux_sym_cmd_identifier_token25] = ACTIONS(1785), + [aux_sym_cmd_identifier_token26] = ACTIONS(1785), + [aux_sym_cmd_identifier_token27] = ACTIONS(1785), + [aux_sym_cmd_identifier_token28] = ACTIONS(1785), + [aux_sym_cmd_identifier_token29] = ACTIONS(1785), + [aux_sym_cmd_identifier_token30] = ACTIONS(1785), + [aux_sym_cmd_identifier_token31] = ACTIONS(1785), + [aux_sym_cmd_identifier_token32] = ACTIONS(1785), + [aux_sym_cmd_identifier_token33] = ACTIONS(1785), + [aux_sym_cmd_identifier_token34] = ACTIONS(1785), + [aux_sym_cmd_identifier_token35] = ACTIONS(1785), + [aux_sym_cmd_identifier_token36] = ACTIONS(1785), + [aux_sym_cmd_identifier_token37] = ACTIONS(1785), + [aux_sym_cmd_identifier_token38] = ACTIONS(1785), + [aux_sym_cmd_identifier_token39] = ACTIONS(1785), + [aux_sym_cmd_identifier_token40] = ACTIONS(1785), + [anon_sym_def] = ACTIONS(1785), + [anon_sym_export_DASHenv] = ACTIONS(1785), + [anon_sym_extern] = ACTIONS(1785), + [anon_sym_module] = ACTIONS(1785), + [anon_sym_use] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1785), + [anon_sym_error] = ACTIONS(1785), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_break] = ACTIONS(1785), + [anon_sym_continue] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1785), + [anon_sym_in2] = ACTIONS(1785), + [anon_sym_loop] = ACTIONS(1785), + [anon_sym_make] = ACTIONS(1785), + [anon_sym_while] = ACTIONS(1785), + [anon_sym_do] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1785), + [anon_sym_else] = ACTIONS(1785), + [anon_sym_match] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1785), + [anon_sym_catch] = ACTIONS(1785), + [anon_sym_return] = ACTIONS(1785), + [anon_sym_source] = ACTIONS(1785), + [anon_sym_source_DASHenv] = ACTIONS(1785), + [anon_sym_register] = ACTIONS(1785), + [anon_sym_hide] = ACTIONS(1785), + [anon_sym_hide_DASHenv] = ACTIONS(1785), + [anon_sym_overlay] = ACTIONS(1785), + [anon_sym_as] = ACTIONS(1785), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_PLUS2] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), + [aux_sym__val_number_decimal_token1] = ACTIONS(1785), + [aux_sym__val_number_decimal_token2] = ACTIONS(1785), + [aux_sym__val_number_decimal_token3] = ACTIONS(1785), + [aux_sym__val_number_decimal_token4] = ACTIONS(1785), + [aux_sym__val_number_token1] = ACTIONS(1785), + [aux_sym__val_number_token2] = ACTIONS(1785), + [aux_sym__val_number_token3] = ACTIONS(1785), + [aux_sym__val_number_token4] = ACTIONS(1785), + [aux_sym__val_number_token5] = ACTIONS(1785), + [aux_sym__val_number_token6] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1785), + [sym__str_single_quotes] = ACTIONS(1785), + [sym__str_back_ticks] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), + [sym__entry_separator] = ACTIONS(1787), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1787), }, - [534] = { - [sym_comment] = STATE(534), + [545] = { + [sym_comment] = STATE(545), [anon_sym_export] = ACTIONS(978), [anon_sym_alias] = ACTIONS(978), [anon_sym_let] = ACTIONS(978), @@ -133267,7 +134708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(978), [anon_sym_overlay] = ACTIONS(978), [anon_sym_as] = ACTIONS(978), - [anon_sym_QMARK2] = ACTIONS(2244), + [anon_sym_QMARK2] = ACTIONS(2264), [anon_sym_PLUS2] = ACTIONS(978), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), [anon_sym_DOT] = ACTIONS(978), @@ -133290,8 +134731,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(980), }, - [535] = { - [sym_comment] = STATE(535), + [546] = { + [sym_comment] = STATE(546), [anon_sym_export] = ACTIONS(984), [anon_sym_alias] = ACTIONS(984), [anon_sym_let] = ACTIONS(984), @@ -133369,7 +134810,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(984), [anon_sym_overlay] = ACTIONS(984), [anon_sym_as] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(2246), + [anon_sym_QMARK2] = ACTIONS(2266), [anon_sym_PLUS2] = ACTIONS(984), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(984), [anon_sym_DOT] = ACTIONS(984), @@ -133392,416 +134833,416 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(986), }, - [536] = { - [sym_comment] = STATE(536), - [anon_sym_export] = ACTIONS(2248), - [anon_sym_alias] = ACTIONS(2248), - [anon_sym_let] = ACTIONS(2248), - [anon_sym_let_DASHenv] = ACTIONS(2248), - [anon_sym_mut] = ACTIONS(2248), - [anon_sym_const] = ACTIONS(2248), - [aux_sym_cmd_identifier_token1] = ACTIONS(2248), - [aux_sym_cmd_identifier_token2] = ACTIONS(2248), - [aux_sym_cmd_identifier_token3] = ACTIONS(2248), - [aux_sym_cmd_identifier_token4] = ACTIONS(2248), - [aux_sym_cmd_identifier_token5] = ACTIONS(2248), - [aux_sym_cmd_identifier_token6] = ACTIONS(2248), - [aux_sym_cmd_identifier_token7] = ACTIONS(2248), - [aux_sym_cmd_identifier_token8] = ACTIONS(2248), - [aux_sym_cmd_identifier_token9] = ACTIONS(2248), - [aux_sym_cmd_identifier_token10] = ACTIONS(2248), - [aux_sym_cmd_identifier_token11] = ACTIONS(2248), - [aux_sym_cmd_identifier_token12] = ACTIONS(2248), - [aux_sym_cmd_identifier_token13] = ACTIONS(2248), - [aux_sym_cmd_identifier_token14] = ACTIONS(2248), - [aux_sym_cmd_identifier_token15] = ACTIONS(2248), - [aux_sym_cmd_identifier_token16] = ACTIONS(2248), - [aux_sym_cmd_identifier_token17] = ACTIONS(2248), - [aux_sym_cmd_identifier_token18] = ACTIONS(2248), - [aux_sym_cmd_identifier_token19] = ACTIONS(2248), - [aux_sym_cmd_identifier_token20] = ACTIONS(2248), - [aux_sym_cmd_identifier_token21] = ACTIONS(2248), - [aux_sym_cmd_identifier_token22] = ACTIONS(2248), - [aux_sym_cmd_identifier_token23] = ACTIONS(2248), - [aux_sym_cmd_identifier_token24] = ACTIONS(2248), - [aux_sym_cmd_identifier_token25] = ACTIONS(2248), - [aux_sym_cmd_identifier_token26] = ACTIONS(2248), - [aux_sym_cmd_identifier_token27] = ACTIONS(2248), - [aux_sym_cmd_identifier_token28] = ACTIONS(2248), - [aux_sym_cmd_identifier_token29] = ACTIONS(2248), - [aux_sym_cmd_identifier_token30] = ACTIONS(2248), - [aux_sym_cmd_identifier_token31] = ACTIONS(2248), - [aux_sym_cmd_identifier_token32] = ACTIONS(2248), - [aux_sym_cmd_identifier_token33] = ACTIONS(2248), - [aux_sym_cmd_identifier_token34] = ACTIONS(2248), - [aux_sym_cmd_identifier_token35] = ACTIONS(2248), - [aux_sym_cmd_identifier_token36] = ACTIONS(2248), - [aux_sym_cmd_identifier_token37] = ACTIONS(2248), - [aux_sym_cmd_identifier_token38] = ACTIONS(2248), - [aux_sym_cmd_identifier_token39] = ACTIONS(2248), - [aux_sym_cmd_identifier_token40] = ACTIONS(2248), - [anon_sym_def] = ACTIONS(2248), - [anon_sym_export_DASHenv] = ACTIONS(2248), - [anon_sym_extern] = ACTIONS(2248), - [anon_sym_module] = ACTIONS(2248), - [anon_sym_use] = ACTIONS(2248), - [anon_sym_LPAREN] = ACTIONS(2248), - [anon_sym_DOLLAR] = ACTIONS(2248), - [anon_sym_error] = ACTIONS(2248), - [anon_sym_DASH2] = ACTIONS(2248), - [anon_sym_break] = ACTIONS(2248), - [anon_sym_continue] = ACTIONS(2248), - [anon_sym_for] = ACTIONS(2248), - [anon_sym_in2] = ACTIONS(2248), - [anon_sym_loop] = ACTIONS(2248), - [anon_sym_make] = ACTIONS(2248), - [anon_sym_while] = ACTIONS(2248), - [anon_sym_do] = ACTIONS(2248), - [anon_sym_if] = ACTIONS(2248), - [anon_sym_else] = ACTIONS(2248), - [anon_sym_match] = ACTIONS(2248), - [anon_sym_RBRACE] = ACTIONS(2248), - [anon_sym_try] = ACTIONS(2248), - [anon_sym_catch] = ACTIONS(2248), - [anon_sym_return] = ACTIONS(2248), - [anon_sym_source] = ACTIONS(2248), - [anon_sym_source_DASHenv] = ACTIONS(2248), - [anon_sym_register] = ACTIONS(2248), - [anon_sym_hide] = ACTIONS(2248), - [anon_sym_hide_DASHenv] = ACTIONS(2248), - [anon_sym_overlay] = ACTIONS(2248), - [anon_sym_as] = ACTIONS(2248), - [anon_sym_LPAREN2] = ACTIONS(2250), - [anon_sym_PLUS2] = ACTIONS(2248), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2248), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2248), - [aux_sym__val_number_decimal_token1] = ACTIONS(2248), - [aux_sym__val_number_decimal_token2] = ACTIONS(2248), - [aux_sym__val_number_decimal_token3] = ACTIONS(2248), - [aux_sym__val_number_decimal_token4] = ACTIONS(2248), - [aux_sym__val_number_token1] = ACTIONS(2248), - [aux_sym__val_number_token2] = ACTIONS(2248), - [aux_sym__val_number_token3] = ACTIONS(2248), - [aux_sym__val_number_token4] = ACTIONS(2248), - [aux_sym__val_number_token5] = ACTIONS(2248), - [aux_sym__val_number_token6] = ACTIONS(2248), - [anon_sym_DQUOTE] = ACTIONS(2248), - [sym__str_single_quotes] = ACTIONS(2248), - [sym__str_back_ticks] = ACTIONS(2248), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2248), - [sym__entry_separator] = ACTIONS(2250), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2248), + [547] = { + [sym_comment] = STATE(547), + [anon_sym_export] = ACTIONS(2268), + [anon_sym_alias] = ACTIONS(2268), + [anon_sym_let] = ACTIONS(2268), + [anon_sym_let_DASHenv] = ACTIONS(2268), + [anon_sym_mut] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(2268), + [aux_sym_cmd_identifier_token1] = ACTIONS(2268), + [aux_sym_cmd_identifier_token2] = ACTIONS(2268), + [aux_sym_cmd_identifier_token3] = ACTIONS(2268), + [aux_sym_cmd_identifier_token4] = ACTIONS(2268), + [aux_sym_cmd_identifier_token5] = ACTIONS(2268), + [aux_sym_cmd_identifier_token6] = ACTIONS(2268), + [aux_sym_cmd_identifier_token7] = ACTIONS(2268), + [aux_sym_cmd_identifier_token8] = ACTIONS(2268), + [aux_sym_cmd_identifier_token9] = ACTIONS(2268), + [aux_sym_cmd_identifier_token10] = ACTIONS(2268), + [aux_sym_cmd_identifier_token11] = ACTIONS(2268), + [aux_sym_cmd_identifier_token12] = ACTIONS(2268), + [aux_sym_cmd_identifier_token13] = ACTIONS(2268), + [aux_sym_cmd_identifier_token14] = ACTIONS(2268), + [aux_sym_cmd_identifier_token15] = ACTIONS(2268), + [aux_sym_cmd_identifier_token16] = ACTIONS(2268), + [aux_sym_cmd_identifier_token17] = ACTIONS(2268), + [aux_sym_cmd_identifier_token18] = ACTIONS(2268), + [aux_sym_cmd_identifier_token19] = ACTIONS(2268), + [aux_sym_cmd_identifier_token20] = ACTIONS(2268), + [aux_sym_cmd_identifier_token21] = ACTIONS(2268), + [aux_sym_cmd_identifier_token22] = ACTIONS(2268), + [aux_sym_cmd_identifier_token23] = ACTIONS(2268), + [aux_sym_cmd_identifier_token24] = ACTIONS(2268), + [aux_sym_cmd_identifier_token25] = ACTIONS(2268), + [aux_sym_cmd_identifier_token26] = ACTIONS(2268), + [aux_sym_cmd_identifier_token27] = ACTIONS(2268), + [aux_sym_cmd_identifier_token28] = ACTIONS(2268), + [aux_sym_cmd_identifier_token29] = ACTIONS(2268), + [aux_sym_cmd_identifier_token30] = ACTIONS(2268), + [aux_sym_cmd_identifier_token31] = ACTIONS(2268), + [aux_sym_cmd_identifier_token32] = ACTIONS(2268), + [aux_sym_cmd_identifier_token33] = ACTIONS(2268), + [aux_sym_cmd_identifier_token34] = ACTIONS(2268), + [aux_sym_cmd_identifier_token35] = ACTIONS(2268), + [aux_sym_cmd_identifier_token36] = ACTIONS(2268), + [aux_sym_cmd_identifier_token37] = ACTIONS(2268), + [aux_sym_cmd_identifier_token38] = ACTIONS(2268), + [aux_sym_cmd_identifier_token39] = ACTIONS(2268), + [aux_sym_cmd_identifier_token40] = ACTIONS(2268), + [anon_sym_def] = ACTIONS(2268), + [anon_sym_export_DASHenv] = ACTIONS(2268), + [anon_sym_extern] = ACTIONS(2268), + [anon_sym_module] = ACTIONS(2268), + [anon_sym_use] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2268), + [anon_sym_DOLLAR] = ACTIONS(2268), + [anon_sym_error] = ACTIONS(2268), + [anon_sym_DASH2] = ACTIONS(2268), + [anon_sym_break] = ACTIONS(2268), + [anon_sym_continue] = ACTIONS(2268), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_in2] = ACTIONS(2268), + [anon_sym_loop] = ACTIONS(2268), + [anon_sym_make] = ACTIONS(2268), + [anon_sym_while] = ACTIONS(2268), + [anon_sym_do] = ACTIONS(2268), + [anon_sym_if] = ACTIONS(2268), + [anon_sym_else] = ACTIONS(2268), + [anon_sym_match] = ACTIONS(2268), + [anon_sym_RBRACE] = ACTIONS(2268), + [anon_sym_try] = ACTIONS(2268), + [anon_sym_catch] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2268), + [anon_sym_source] = ACTIONS(2268), + [anon_sym_source_DASHenv] = ACTIONS(2268), + [anon_sym_register] = ACTIONS(2268), + [anon_sym_hide] = ACTIONS(2268), + [anon_sym_hide_DASHenv] = ACTIONS(2268), + [anon_sym_overlay] = ACTIONS(2268), + [anon_sym_as] = ACTIONS(2268), + [anon_sym_LPAREN2] = ACTIONS(2270), + [anon_sym_PLUS2] = ACTIONS(2268), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2268), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2268), + [aux_sym__val_number_decimal_token1] = ACTIONS(2268), + [aux_sym__val_number_decimal_token2] = ACTIONS(2268), + [aux_sym__val_number_decimal_token3] = ACTIONS(2268), + [aux_sym__val_number_decimal_token4] = ACTIONS(2268), + [aux_sym__val_number_token1] = ACTIONS(2268), + [aux_sym__val_number_token2] = ACTIONS(2268), + [aux_sym__val_number_token3] = ACTIONS(2268), + [aux_sym__val_number_token4] = ACTIONS(2268), + [aux_sym__val_number_token5] = ACTIONS(2268), + [aux_sym__val_number_token6] = ACTIONS(2268), + [anon_sym_DQUOTE] = ACTIONS(2268), + [sym__str_single_quotes] = ACTIONS(2268), + [sym__str_back_ticks] = ACTIONS(2268), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2268), + [sym__entry_separator] = ACTIONS(2270), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2268), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2250), + [sym_raw_string_begin] = ACTIONS(2270), }, - [537] = { - [sym_comment] = STATE(537), - [anon_sym_export] = ACTIONS(2252), - [anon_sym_alias] = ACTIONS(2252), - [anon_sym_let] = ACTIONS(2252), - [anon_sym_let_DASHenv] = ACTIONS(2252), - [anon_sym_mut] = ACTIONS(2252), - [anon_sym_const] = ACTIONS(2252), - [aux_sym_cmd_identifier_token1] = ACTIONS(2252), - [aux_sym_cmd_identifier_token2] = ACTIONS(2252), - [aux_sym_cmd_identifier_token3] = ACTIONS(2252), - [aux_sym_cmd_identifier_token4] = ACTIONS(2252), - [aux_sym_cmd_identifier_token5] = ACTIONS(2252), - [aux_sym_cmd_identifier_token6] = ACTIONS(2252), - [aux_sym_cmd_identifier_token7] = ACTIONS(2252), - [aux_sym_cmd_identifier_token8] = ACTIONS(2252), - [aux_sym_cmd_identifier_token9] = ACTIONS(2252), - [aux_sym_cmd_identifier_token10] = ACTIONS(2252), - [aux_sym_cmd_identifier_token11] = ACTIONS(2252), - [aux_sym_cmd_identifier_token12] = ACTIONS(2252), - [aux_sym_cmd_identifier_token13] = ACTIONS(2252), - [aux_sym_cmd_identifier_token14] = ACTIONS(2252), - [aux_sym_cmd_identifier_token15] = ACTIONS(2252), - [aux_sym_cmd_identifier_token16] = ACTIONS(2252), - [aux_sym_cmd_identifier_token17] = ACTIONS(2252), - [aux_sym_cmd_identifier_token18] = ACTIONS(2252), - [aux_sym_cmd_identifier_token19] = ACTIONS(2252), - [aux_sym_cmd_identifier_token20] = ACTIONS(2252), - [aux_sym_cmd_identifier_token21] = ACTIONS(2252), - [aux_sym_cmd_identifier_token22] = ACTIONS(2252), - [aux_sym_cmd_identifier_token23] = ACTIONS(2252), - [aux_sym_cmd_identifier_token24] = ACTIONS(2252), - [aux_sym_cmd_identifier_token25] = ACTIONS(2252), - [aux_sym_cmd_identifier_token26] = ACTIONS(2252), - [aux_sym_cmd_identifier_token27] = ACTIONS(2252), - [aux_sym_cmd_identifier_token28] = ACTIONS(2252), - [aux_sym_cmd_identifier_token29] = ACTIONS(2252), - [aux_sym_cmd_identifier_token30] = ACTIONS(2252), - [aux_sym_cmd_identifier_token31] = ACTIONS(2252), - [aux_sym_cmd_identifier_token32] = ACTIONS(2252), - [aux_sym_cmd_identifier_token33] = ACTIONS(2252), - [aux_sym_cmd_identifier_token34] = ACTIONS(2252), - [aux_sym_cmd_identifier_token35] = ACTIONS(2252), - [aux_sym_cmd_identifier_token36] = ACTIONS(2252), - [aux_sym_cmd_identifier_token37] = ACTIONS(2252), - [aux_sym_cmd_identifier_token38] = ACTIONS(2252), - [aux_sym_cmd_identifier_token39] = ACTIONS(2252), - [aux_sym_cmd_identifier_token40] = ACTIONS(2252), - [anon_sym_def] = ACTIONS(2252), - [anon_sym_export_DASHenv] = ACTIONS(2252), - [anon_sym_extern] = ACTIONS(2252), - [anon_sym_module] = ACTIONS(2252), - [anon_sym_use] = ACTIONS(2252), - [anon_sym_LPAREN] = ACTIONS(2252), - [anon_sym_DOLLAR] = ACTIONS(2252), - [anon_sym_error] = ACTIONS(2252), - [anon_sym_DASH2] = ACTIONS(2252), - [anon_sym_break] = ACTIONS(2252), - [anon_sym_continue] = ACTIONS(2252), - [anon_sym_for] = ACTIONS(2252), - [anon_sym_in2] = ACTIONS(2252), - [anon_sym_loop] = ACTIONS(2252), - [anon_sym_make] = ACTIONS(2252), - [anon_sym_while] = ACTIONS(2252), - [anon_sym_do] = ACTIONS(2252), - [anon_sym_if] = ACTIONS(2252), - [anon_sym_else] = ACTIONS(2252), - [anon_sym_match] = ACTIONS(2252), - [anon_sym_RBRACE] = ACTIONS(2252), - [anon_sym_try] = ACTIONS(2252), - [anon_sym_catch] = ACTIONS(2252), - [anon_sym_return] = ACTIONS(2252), - [anon_sym_source] = ACTIONS(2252), - [anon_sym_source_DASHenv] = ACTIONS(2252), - [anon_sym_register] = ACTIONS(2252), - [anon_sym_hide] = ACTIONS(2252), - [anon_sym_hide_DASHenv] = ACTIONS(2252), - [anon_sym_overlay] = ACTIONS(2252), - [anon_sym_as] = ACTIONS(2252), - [anon_sym_LPAREN2] = ACTIONS(2254), - [anon_sym_PLUS2] = ACTIONS(2252), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2252), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2252), - [aux_sym__val_number_decimal_token1] = ACTIONS(2252), - [aux_sym__val_number_decimal_token2] = ACTIONS(2252), - [aux_sym__val_number_decimal_token3] = ACTIONS(2252), - [aux_sym__val_number_decimal_token4] = ACTIONS(2252), - [aux_sym__val_number_token1] = ACTIONS(2252), - [aux_sym__val_number_token2] = ACTIONS(2252), - [aux_sym__val_number_token3] = ACTIONS(2252), - [aux_sym__val_number_token4] = ACTIONS(2252), - [aux_sym__val_number_token5] = ACTIONS(2252), - [aux_sym__val_number_token6] = ACTIONS(2252), - [anon_sym_DQUOTE] = ACTIONS(2252), - [sym__str_single_quotes] = ACTIONS(2252), - [sym__str_back_ticks] = ACTIONS(2252), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2252), - [sym__entry_separator] = ACTIONS(2256), - [aux_sym__unquoted_in_record_token2] = ACTIONS(2258), + [548] = { + [sym_comment] = STATE(548), + [anon_sym_export] = ACTIONS(2272), + [anon_sym_alias] = ACTIONS(2272), + [anon_sym_let] = ACTIONS(2272), + [anon_sym_let_DASHenv] = ACTIONS(2272), + [anon_sym_mut] = ACTIONS(2272), + [anon_sym_const] = ACTIONS(2272), + [aux_sym_cmd_identifier_token1] = ACTIONS(2272), + [aux_sym_cmd_identifier_token2] = ACTIONS(2272), + [aux_sym_cmd_identifier_token3] = ACTIONS(2272), + [aux_sym_cmd_identifier_token4] = ACTIONS(2272), + [aux_sym_cmd_identifier_token5] = ACTIONS(2272), + [aux_sym_cmd_identifier_token6] = ACTIONS(2272), + [aux_sym_cmd_identifier_token7] = ACTIONS(2272), + [aux_sym_cmd_identifier_token8] = ACTIONS(2272), + [aux_sym_cmd_identifier_token9] = ACTIONS(2272), + [aux_sym_cmd_identifier_token10] = ACTIONS(2272), + [aux_sym_cmd_identifier_token11] = ACTIONS(2272), + [aux_sym_cmd_identifier_token12] = ACTIONS(2272), + [aux_sym_cmd_identifier_token13] = ACTIONS(2272), + [aux_sym_cmd_identifier_token14] = ACTIONS(2272), + [aux_sym_cmd_identifier_token15] = ACTIONS(2272), + [aux_sym_cmd_identifier_token16] = ACTIONS(2272), + [aux_sym_cmd_identifier_token17] = ACTIONS(2272), + [aux_sym_cmd_identifier_token18] = ACTIONS(2272), + [aux_sym_cmd_identifier_token19] = ACTIONS(2272), + [aux_sym_cmd_identifier_token20] = ACTIONS(2272), + [aux_sym_cmd_identifier_token21] = ACTIONS(2272), + [aux_sym_cmd_identifier_token22] = ACTIONS(2272), + [aux_sym_cmd_identifier_token23] = ACTIONS(2272), + [aux_sym_cmd_identifier_token24] = ACTIONS(2272), + [aux_sym_cmd_identifier_token25] = ACTIONS(2272), + [aux_sym_cmd_identifier_token26] = ACTIONS(2272), + [aux_sym_cmd_identifier_token27] = ACTIONS(2272), + [aux_sym_cmd_identifier_token28] = ACTIONS(2272), + [aux_sym_cmd_identifier_token29] = ACTIONS(2272), + [aux_sym_cmd_identifier_token30] = ACTIONS(2272), + [aux_sym_cmd_identifier_token31] = ACTIONS(2272), + [aux_sym_cmd_identifier_token32] = ACTIONS(2272), + [aux_sym_cmd_identifier_token33] = ACTIONS(2272), + [aux_sym_cmd_identifier_token34] = ACTIONS(2272), + [aux_sym_cmd_identifier_token35] = ACTIONS(2272), + [aux_sym_cmd_identifier_token36] = ACTIONS(2272), + [aux_sym_cmd_identifier_token37] = ACTIONS(2272), + [aux_sym_cmd_identifier_token38] = ACTIONS(2272), + [aux_sym_cmd_identifier_token39] = ACTIONS(2272), + [aux_sym_cmd_identifier_token40] = ACTIONS(2272), + [anon_sym_def] = ACTIONS(2272), + [anon_sym_export_DASHenv] = ACTIONS(2272), + [anon_sym_extern] = ACTIONS(2272), + [anon_sym_module] = ACTIONS(2272), + [anon_sym_use] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2272), + [anon_sym_DOLLAR] = ACTIONS(2272), + [anon_sym_error] = ACTIONS(2272), + [anon_sym_DASH2] = ACTIONS(2272), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2272), + [anon_sym_for] = ACTIONS(2272), + [anon_sym_in2] = ACTIONS(2272), + [anon_sym_loop] = ACTIONS(2272), + [anon_sym_make] = ACTIONS(2272), + [anon_sym_while] = ACTIONS(2272), + [anon_sym_do] = ACTIONS(2272), + [anon_sym_if] = ACTIONS(2272), + [anon_sym_else] = ACTIONS(2272), + [anon_sym_match] = ACTIONS(2272), + [anon_sym_RBRACE] = ACTIONS(2272), + [anon_sym_try] = ACTIONS(2272), + [anon_sym_catch] = ACTIONS(2272), + [anon_sym_return] = ACTIONS(2272), + [anon_sym_source] = ACTIONS(2272), + [anon_sym_source_DASHenv] = ACTIONS(2272), + [anon_sym_register] = ACTIONS(2272), + [anon_sym_hide] = ACTIONS(2272), + [anon_sym_hide_DASHenv] = ACTIONS(2272), + [anon_sym_overlay] = ACTIONS(2272), + [anon_sym_as] = ACTIONS(2272), + [anon_sym_LPAREN2] = ACTIONS(2274), + [anon_sym_PLUS2] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2272), + [aux_sym__val_number_decimal_token1] = ACTIONS(2272), + [aux_sym__val_number_decimal_token2] = ACTIONS(2272), + [aux_sym__val_number_decimal_token3] = ACTIONS(2272), + [aux_sym__val_number_decimal_token4] = ACTIONS(2272), + [aux_sym__val_number_token1] = ACTIONS(2272), + [aux_sym__val_number_token2] = ACTIONS(2272), + [aux_sym__val_number_token3] = ACTIONS(2272), + [aux_sym__val_number_token4] = ACTIONS(2272), + [aux_sym__val_number_token5] = ACTIONS(2272), + [aux_sym__val_number_token6] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym__str_single_quotes] = ACTIONS(2272), + [sym__str_back_ticks] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2272), + [sym__entry_separator] = ACTIONS(2276), + [aux_sym__unquoted_in_record_token2] = ACTIONS(2278), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2256), + [sym_raw_string_begin] = ACTIONS(2276), }, - [538] = { - [sym_comment] = STATE(538), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_alias] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_let_DASHenv] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [aux_sym_cmd_identifier_token1] = ACTIONS(1783), - [aux_sym_cmd_identifier_token2] = ACTIONS(1783), - [aux_sym_cmd_identifier_token3] = ACTIONS(1783), - [aux_sym_cmd_identifier_token4] = ACTIONS(1783), - [aux_sym_cmd_identifier_token5] = ACTIONS(1783), - [aux_sym_cmd_identifier_token6] = ACTIONS(1783), - [aux_sym_cmd_identifier_token7] = ACTIONS(1783), - [aux_sym_cmd_identifier_token8] = ACTIONS(1783), - [aux_sym_cmd_identifier_token9] = ACTIONS(1783), - [aux_sym_cmd_identifier_token10] = ACTIONS(1783), - [aux_sym_cmd_identifier_token11] = ACTIONS(1783), - [aux_sym_cmd_identifier_token12] = ACTIONS(1783), - [aux_sym_cmd_identifier_token13] = ACTIONS(1783), - [aux_sym_cmd_identifier_token14] = ACTIONS(1783), - [aux_sym_cmd_identifier_token15] = ACTIONS(1783), - [aux_sym_cmd_identifier_token16] = ACTIONS(1783), - [aux_sym_cmd_identifier_token17] = ACTIONS(1783), - [aux_sym_cmd_identifier_token18] = ACTIONS(1783), - [aux_sym_cmd_identifier_token19] = ACTIONS(1783), - [aux_sym_cmd_identifier_token20] = ACTIONS(1783), - [aux_sym_cmd_identifier_token21] = ACTIONS(1783), - [aux_sym_cmd_identifier_token22] = ACTIONS(1783), - [aux_sym_cmd_identifier_token23] = ACTIONS(1783), - [aux_sym_cmd_identifier_token24] = ACTIONS(1783), - [aux_sym_cmd_identifier_token25] = ACTIONS(1783), - [aux_sym_cmd_identifier_token26] = ACTIONS(1783), - [aux_sym_cmd_identifier_token27] = ACTIONS(1783), - [aux_sym_cmd_identifier_token28] = ACTIONS(1783), - [aux_sym_cmd_identifier_token29] = ACTIONS(1783), - [aux_sym_cmd_identifier_token30] = ACTIONS(1783), - [aux_sym_cmd_identifier_token31] = ACTIONS(1783), - [aux_sym_cmd_identifier_token32] = ACTIONS(1783), - [aux_sym_cmd_identifier_token33] = ACTIONS(1783), - [aux_sym_cmd_identifier_token34] = ACTIONS(1783), - [aux_sym_cmd_identifier_token35] = ACTIONS(1783), - [aux_sym_cmd_identifier_token36] = ACTIONS(1783), - [aux_sym_cmd_identifier_token37] = ACTIONS(1783), - [aux_sym_cmd_identifier_token38] = ACTIONS(1783), - [aux_sym_cmd_identifier_token39] = ACTIONS(1783), - [aux_sym_cmd_identifier_token40] = ACTIONS(1783), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_export_DASHenv] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_error] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_make] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_catch] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_source] = ACTIONS(1783), - [anon_sym_source_DASHenv] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_hide] = ACTIONS(1783), - [anon_sym_hide_DASHenv] = ACTIONS(1783), - [anon_sym_overlay] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1783), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1783), - [aux_sym__val_number_decimal_token3] = ACTIONS(1783), - [aux_sym__val_number_decimal_token4] = ACTIONS(1783), - [aux_sym__val_number_token1] = ACTIONS(1783), - [aux_sym__val_number_token2] = ACTIONS(1783), - [aux_sym__val_number_token3] = ACTIONS(1783), - [aux_sym__val_number_token4] = ACTIONS(1783), - [aux_sym__val_number_token5] = ACTIONS(1783), - [aux_sym__val_number_token6] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1783), - [sym__str_single_quotes] = ACTIONS(1783), - [sym__str_back_ticks] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1783), - [sym__entry_separator] = ACTIONS(1785), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1783), + [549] = { + [sym_comment] = STATE(549), + [anon_sym_export] = ACTIONS(990), + [anon_sym_alias] = ACTIONS(990), + [anon_sym_let] = ACTIONS(990), + [anon_sym_let_DASHenv] = ACTIONS(990), + [anon_sym_mut] = ACTIONS(990), + [anon_sym_const] = ACTIONS(990), + [aux_sym_cmd_identifier_token1] = ACTIONS(990), + [aux_sym_cmd_identifier_token2] = ACTIONS(990), + [aux_sym_cmd_identifier_token3] = ACTIONS(990), + [aux_sym_cmd_identifier_token4] = ACTIONS(990), + [aux_sym_cmd_identifier_token5] = ACTIONS(990), + [aux_sym_cmd_identifier_token6] = ACTIONS(990), + [aux_sym_cmd_identifier_token7] = ACTIONS(990), + [aux_sym_cmd_identifier_token8] = ACTIONS(990), + [aux_sym_cmd_identifier_token9] = ACTIONS(990), + [aux_sym_cmd_identifier_token10] = ACTIONS(990), + [aux_sym_cmd_identifier_token11] = ACTIONS(990), + [aux_sym_cmd_identifier_token12] = ACTIONS(990), + [aux_sym_cmd_identifier_token13] = ACTIONS(990), + [aux_sym_cmd_identifier_token14] = ACTIONS(990), + [aux_sym_cmd_identifier_token15] = ACTIONS(990), + [aux_sym_cmd_identifier_token16] = ACTIONS(990), + [aux_sym_cmd_identifier_token17] = ACTIONS(990), + [aux_sym_cmd_identifier_token18] = ACTIONS(990), + [aux_sym_cmd_identifier_token19] = ACTIONS(990), + [aux_sym_cmd_identifier_token20] = ACTIONS(990), + [aux_sym_cmd_identifier_token21] = ACTIONS(990), + [aux_sym_cmd_identifier_token22] = ACTIONS(990), + [aux_sym_cmd_identifier_token23] = ACTIONS(990), + [aux_sym_cmd_identifier_token24] = ACTIONS(990), + [aux_sym_cmd_identifier_token25] = ACTIONS(990), + [aux_sym_cmd_identifier_token26] = ACTIONS(990), + [aux_sym_cmd_identifier_token27] = ACTIONS(990), + [aux_sym_cmd_identifier_token28] = ACTIONS(990), + [aux_sym_cmd_identifier_token29] = ACTIONS(990), + [aux_sym_cmd_identifier_token30] = ACTIONS(990), + [aux_sym_cmd_identifier_token31] = ACTIONS(990), + [aux_sym_cmd_identifier_token32] = ACTIONS(990), + [aux_sym_cmd_identifier_token33] = ACTIONS(990), + [aux_sym_cmd_identifier_token34] = ACTIONS(990), + [aux_sym_cmd_identifier_token35] = ACTIONS(990), + [aux_sym_cmd_identifier_token36] = ACTIONS(990), + [aux_sym_cmd_identifier_token37] = ACTIONS(990), + [aux_sym_cmd_identifier_token38] = ACTIONS(990), + [aux_sym_cmd_identifier_token39] = ACTIONS(990), + [aux_sym_cmd_identifier_token40] = ACTIONS(990), + [anon_sym_def] = ACTIONS(990), + [anon_sym_export_DASHenv] = ACTIONS(990), + [anon_sym_extern] = ACTIONS(990), + [anon_sym_module] = ACTIONS(990), + [anon_sym_use] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(990), + [anon_sym_DOLLAR] = ACTIONS(990), + [anon_sym_error] = ACTIONS(990), + [anon_sym_DASH2] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_continue] = ACTIONS(990), + [anon_sym_for] = ACTIONS(990), + [anon_sym_in2] = ACTIONS(990), + [anon_sym_loop] = ACTIONS(990), + [anon_sym_make] = ACTIONS(990), + [anon_sym_while] = ACTIONS(990), + [anon_sym_do] = ACTIONS(990), + [anon_sym_if] = ACTIONS(990), + [anon_sym_else] = ACTIONS(990), + [anon_sym_match] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_try] = ACTIONS(990), + [anon_sym_catch] = ACTIONS(990), + [anon_sym_return] = ACTIONS(990), + [anon_sym_source] = ACTIONS(990), + [anon_sym_source_DASHenv] = ACTIONS(990), + [anon_sym_register] = ACTIONS(990), + [anon_sym_hide] = ACTIONS(990), + [anon_sym_hide_DASHenv] = ACTIONS(990), + [anon_sym_overlay] = ACTIONS(990), + [anon_sym_as] = ACTIONS(990), + [anon_sym_QMARK2] = ACTIONS(990), + [anon_sym_PLUS2] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(990), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [aux_sym__val_number_decimal_token2] = ACTIONS(990), + [aux_sym__val_number_decimal_token3] = ACTIONS(990), + [aux_sym__val_number_decimal_token4] = ACTIONS(990), + [aux_sym__val_number_token1] = ACTIONS(990), + [aux_sym__val_number_token2] = ACTIONS(990), + [aux_sym__val_number_token3] = ACTIONS(990), + [aux_sym__val_number_token4] = ACTIONS(990), + [aux_sym__val_number_token5] = ACTIONS(990), + [aux_sym__val_number_token6] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym__str_single_quotes] = ACTIONS(990), + [sym__str_back_ticks] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(990), + [sym__entry_separator] = ACTIONS(992), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1785), + [sym_raw_string_begin] = ACTIONS(992), }, - [539] = { - [sym_comment] = STATE(539), - [anon_sym_export] = ACTIONS(2175), - [anon_sym_alias] = ACTIONS(2175), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_let_DASHenv] = ACTIONS(2175), - [anon_sym_mut] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [aux_sym_cmd_identifier_token1] = ACTIONS(2175), - [aux_sym_cmd_identifier_token2] = ACTIONS(2181), - [aux_sym_cmd_identifier_token3] = ACTIONS(2181), - [aux_sym_cmd_identifier_token4] = ACTIONS(2181), - [aux_sym_cmd_identifier_token5] = ACTIONS(2181), - [aux_sym_cmd_identifier_token6] = ACTIONS(2181), - [aux_sym_cmd_identifier_token7] = ACTIONS(2181), - [aux_sym_cmd_identifier_token8] = ACTIONS(2175), - [aux_sym_cmd_identifier_token9] = ACTIONS(2175), - [aux_sym_cmd_identifier_token10] = ACTIONS(2181), - [aux_sym_cmd_identifier_token11] = ACTIONS(2181), - [aux_sym_cmd_identifier_token12] = ACTIONS(2175), - [aux_sym_cmd_identifier_token13] = ACTIONS(2175), - [aux_sym_cmd_identifier_token14] = ACTIONS(2175), - [aux_sym_cmd_identifier_token15] = ACTIONS(2175), - [aux_sym_cmd_identifier_token16] = ACTIONS(2181), - [aux_sym_cmd_identifier_token17] = ACTIONS(2181), - [aux_sym_cmd_identifier_token18] = ACTIONS(2181), - [aux_sym_cmd_identifier_token19] = ACTIONS(2181), - [aux_sym_cmd_identifier_token20] = ACTIONS(2181), - [aux_sym_cmd_identifier_token21] = ACTIONS(2181), - [aux_sym_cmd_identifier_token22] = ACTIONS(2181), - [aux_sym_cmd_identifier_token23] = ACTIONS(2181), - [aux_sym_cmd_identifier_token24] = ACTIONS(2181), - [aux_sym_cmd_identifier_token25] = ACTIONS(2181), - [aux_sym_cmd_identifier_token26] = ACTIONS(2181), - [aux_sym_cmd_identifier_token27] = ACTIONS(2181), - [aux_sym_cmd_identifier_token28] = ACTIONS(2181), - [aux_sym_cmd_identifier_token29] = ACTIONS(2181), - [aux_sym_cmd_identifier_token30] = ACTIONS(2181), - [aux_sym_cmd_identifier_token31] = ACTIONS(2181), - [aux_sym_cmd_identifier_token32] = ACTIONS(2181), - [aux_sym_cmd_identifier_token33] = ACTIONS(2181), - [aux_sym_cmd_identifier_token34] = ACTIONS(2175), - [aux_sym_cmd_identifier_token35] = ACTIONS(2181), - [aux_sym_cmd_identifier_token36] = ACTIONS(2181), - [aux_sym_cmd_identifier_token37] = ACTIONS(2181), - [aux_sym_cmd_identifier_token38] = ACTIONS(2175), - [aux_sym_cmd_identifier_token39] = ACTIONS(2181), - [aux_sym_cmd_identifier_token40] = ACTIONS(2181), - [anon_sym_def] = ACTIONS(2175), - [anon_sym_export_DASHenv] = ACTIONS(2175), - [anon_sym_extern] = ACTIONS(2175), - [anon_sym_module] = ACTIONS(2175), - [anon_sym_use] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_DOLLAR] = ACTIONS(2181), - [anon_sym_error] = ACTIONS(2175), - [anon_sym_DASH2] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_in2] = ACTIONS(2175), - [anon_sym_loop] = ACTIONS(2175), - [anon_sym_make] = ACTIONS(2175), - [anon_sym_while] = ACTIONS(2175), - [anon_sym_do] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_else] = ACTIONS(2175), - [anon_sym_match] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2181), - [anon_sym_try] = ACTIONS(2175), - [anon_sym_catch] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_source] = ACTIONS(2175), - [anon_sym_source_DASHenv] = ACTIONS(2175), - [anon_sym_register] = ACTIONS(2175), - [anon_sym_hide] = ACTIONS(2175), - [anon_sym_hide_DASHenv] = ACTIONS(2175), - [anon_sym_overlay] = ACTIONS(2175), - [anon_sym_as] = ACTIONS(2175), - [anon_sym_PLUS2] = ACTIONS(2175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2181), - [anon_sym_DOT_DOT2] = ACTIONS(2260), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2262), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2262), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2181), - [aux_sym__val_number_decimal_token1] = ACTIONS(2175), - [aux_sym__val_number_decimal_token2] = ACTIONS(2181), - [aux_sym__val_number_decimal_token3] = ACTIONS(2181), - [aux_sym__val_number_decimal_token4] = ACTIONS(2181), - [aux_sym__val_number_token1] = ACTIONS(2181), - [aux_sym__val_number_token2] = ACTIONS(2181), - [aux_sym__val_number_token3] = ACTIONS(2181), - [aux_sym__val_number_token4] = ACTIONS(2175), - [aux_sym__val_number_token5] = ACTIONS(2175), - [aux_sym__val_number_token6] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2181), - [sym__str_single_quotes] = ACTIONS(2181), - [sym__str_back_ticks] = ACTIONS(2181), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2181), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2181), + [550] = { + [sym_comment] = STATE(550), + [anon_sym_export] = ACTIONS(994), + [anon_sym_alias] = ACTIONS(994), + [anon_sym_let] = ACTIONS(994), + [anon_sym_let_DASHenv] = ACTIONS(994), + [anon_sym_mut] = ACTIONS(994), + [anon_sym_const] = ACTIONS(994), + [aux_sym_cmd_identifier_token1] = ACTIONS(994), + [aux_sym_cmd_identifier_token2] = ACTIONS(994), + [aux_sym_cmd_identifier_token3] = ACTIONS(994), + [aux_sym_cmd_identifier_token4] = ACTIONS(994), + [aux_sym_cmd_identifier_token5] = ACTIONS(994), + [aux_sym_cmd_identifier_token6] = ACTIONS(994), + [aux_sym_cmd_identifier_token7] = ACTIONS(994), + [aux_sym_cmd_identifier_token8] = ACTIONS(994), + [aux_sym_cmd_identifier_token9] = ACTIONS(994), + [aux_sym_cmd_identifier_token10] = ACTIONS(994), + [aux_sym_cmd_identifier_token11] = ACTIONS(994), + [aux_sym_cmd_identifier_token12] = ACTIONS(994), + [aux_sym_cmd_identifier_token13] = ACTIONS(994), + [aux_sym_cmd_identifier_token14] = ACTIONS(994), + [aux_sym_cmd_identifier_token15] = ACTIONS(994), + [aux_sym_cmd_identifier_token16] = ACTIONS(994), + [aux_sym_cmd_identifier_token17] = ACTIONS(994), + [aux_sym_cmd_identifier_token18] = ACTIONS(994), + [aux_sym_cmd_identifier_token19] = ACTIONS(994), + [aux_sym_cmd_identifier_token20] = ACTIONS(994), + [aux_sym_cmd_identifier_token21] = ACTIONS(994), + [aux_sym_cmd_identifier_token22] = ACTIONS(994), + [aux_sym_cmd_identifier_token23] = ACTIONS(994), + [aux_sym_cmd_identifier_token24] = ACTIONS(994), + [aux_sym_cmd_identifier_token25] = ACTIONS(994), + [aux_sym_cmd_identifier_token26] = ACTIONS(994), + [aux_sym_cmd_identifier_token27] = ACTIONS(994), + [aux_sym_cmd_identifier_token28] = ACTIONS(994), + [aux_sym_cmd_identifier_token29] = ACTIONS(994), + [aux_sym_cmd_identifier_token30] = ACTIONS(994), + [aux_sym_cmd_identifier_token31] = ACTIONS(994), + [aux_sym_cmd_identifier_token32] = ACTIONS(994), + [aux_sym_cmd_identifier_token33] = ACTIONS(994), + [aux_sym_cmd_identifier_token34] = ACTIONS(994), + [aux_sym_cmd_identifier_token35] = ACTIONS(994), + [aux_sym_cmd_identifier_token36] = ACTIONS(994), + [aux_sym_cmd_identifier_token37] = ACTIONS(994), + [aux_sym_cmd_identifier_token38] = ACTIONS(994), + [aux_sym_cmd_identifier_token39] = ACTIONS(994), + [aux_sym_cmd_identifier_token40] = ACTIONS(994), + [anon_sym_def] = ACTIONS(994), + [anon_sym_export_DASHenv] = ACTIONS(994), + [anon_sym_extern] = ACTIONS(994), + [anon_sym_module] = ACTIONS(994), + [anon_sym_use] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_error] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_break] = ACTIONS(994), + [anon_sym_continue] = ACTIONS(994), + [anon_sym_for] = ACTIONS(994), + [anon_sym_in2] = ACTIONS(994), + [anon_sym_loop] = ACTIONS(994), + [anon_sym_make] = ACTIONS(994), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(994), + [anon_sym_if] = ACTIONS(994), + [anon_sym_else] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_try] = ACTIONS(994), + [anon_sym_catch] = ACTIONS(994), + [anon_sym_return] = ACTIONS(994), + [anon_sym_source] = ACTIONS(994), + [anon_sym_source_DASHenv] = ACTIONS(994), + [anon_sym_register] = ACTIONS(994), + [anon_sym_hide] = ACTIONS(994), + [anon_sym_hide_DASHenv] = ACTIONS(994), + [anon_sym_overlay] = ACTIONS(994), + [anon_sym_as] = ACTIONS(994), + [anon_sym_QMARK2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(994), + [aux_sym__val_number_decimal_token1] = ACTIONS(994), + [aux_sym__val_number_decimal_token2] = ACTIONS(994), + [aux_sym__val_number_decimal_token3] = ACTIONS(994), + [aux_sym__val_number_decimal_token4] = ACTIONS(994), + [aux_sym__val_number_token1] = ACTIONS(994), + [aux_sym__val_number_token2] = ACTIONS(994), + [aux_sym__val_number_token3] = ACTIONS(994), + [aux_sym__val_number_token4] = ACTIONS(994), + [aux_sym__val_number_token5] = ACTIONS(994), + [aux_sym__val_number_token6] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym__str_single_quotes] = ACTIONS(994), + [sym__str_back_ticks] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(994), + [sym__entry_separator] = ACTIONS(996), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(996), }, - [540] = { - [sym_comment] = STATE(540), + [551] = { + [sym_comment] = STATE(551), [anon_sym_export] = ACTIONS(998), [anon_sym_alias] = ACTIONS(998), [anon_sym_let] = ACTIONS(998), @@ -133902,8 +135343,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1000), }, - [541] = { - [sym_comment] = STATE(541), + [552] = { + [sym_comment] = STATE(552), [anon_sym_export] = ACTIONS(1002), [anon_sym_alias] = ACTIONS(1002), [anon_sym_let] = ACTIONS(1002), @@ -133962,1091 +135403,479 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1002), [anon_sym_continue] = ACTIONS(1002), [anon_sym_for] = ACTIONS(1002), - [anon_sym_in2] = ACTIONS(1002), - [anon_sym_loop] = ACTIONS(1002), - [anon_sym_make] = ACTIONS(1002), - [anon_sym_while] = ACTIONS(1002), - [anon_sym_do] = ACTIONS(1002), - [anon_sym_if] = ACTIONS(1002), - [anon_sym_else] = ACTIONS(1002), - [anon_sym_match] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_try] = ACTIONS(1002), - [anon_sym_catch] = ACTIONS(1002), - [anon_sym_return] = ACTIONS(1002), - [anon_sym_source] = ACTIONS(1002), - [anon_sym_source_DASHenv] = ACTIONS(1002), - [anon_sym_register] = ACTIONS(1002), - [anon_sym_hide] = ACTIONS(1002), - [anon_sym_hide_DASHenv] = ACTIONS(1002), - [anon_sym_overlay] = ACTIONS(1002), - [anon_sym_as] = ACTIONS(1002), - [anon_sym_QMARK2] = ACTIONS(1002), - [anon_sym_PLUS2] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1002), - [anon_sym_DOT] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1002), - [aux_sym__val_number_decimal_token1] = ACTIONS(1002), - [aux_sym__val_number_decimal_token2] = ACTIONS(1002), - [aux_sym__val_number_decimal_token3] = ACTIONS(1002), - [aux_sym__val_number_decimal_token4] = ACTIONS(1002), - [aux_sym__val_number_token1] = ACTIONS(1002), - [aux_sym__val_number_token2] = ACTIONS(1002), - [aux_sym__val_number_token3] = ACTIONS(1002), - [aux_sym__val_number_token4] = ACTIONS(1002), - [aux_sym__val_number_token5] = ACTIONS(1002), - [aux_sym__val_number_token6] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym__str_single_quotes] = ACTIONS(1002), - [sym__str_back_ticks] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1002), - [sym__entry_separator] = ACTIONS(1004), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1004), - }, - [542] = { - [sym_comment] = STATE(542), - [anon_sym_export] = ACTIONS(2133), - [anon_sym_alias] = ACTIONS(2133), - [anon_sym_let] = ACTIONS(2133), - [anon_sym_let_DASHenv] = ACTIONS(2133), - [anon_sym_mut] = ACTIONS(2133), - [anon_sym_const] = ACTIONS(2133), - [aux_sym_cmd_identifier_token1] = ACTIONS(2133), - [aux_sym_cmd_identifier_token2] = ACTIONS(2139), - [aux_sym_cmd_identifier_token3] = ACTIONS(2139), - [aux_sym_cmd_identifier_token4] = ACTIONS(2139), - [aux_sym_cmd_identifier_token5] = ACTIONS(2139), - [aux_sym_cmd_identifier_token6] = ACTIONS(2139), - [aux_sym_cmd_identifier_token7] = ACTIONS(2139), - [aux_sym_cmd_identifier_token8] = ACTIONS(2133), - [aux_sym_cmd_identifier_token9] = ACTIONS(2133), - [aux_sym_cmd_identifier_token10] = ACTIONS(2139), - [aux_sym_cmd_identifier_token11] = ACTIONS(2139), - [aux_sym_cmd_identifier_token12] = ACTIONS(2133), - [aux_sym_cmd_identifier_token13] = ACTIONS(2133), - [aux_sym_cmd_identifier_token14] = ACTIONS(2133), - [aux_sym_cmd_identifier_token15] = ACTIONS(2133), - [aux_sym_cmd_identifier_token16] = ACTIONS(2139), - [aux_sym_cmd_identifier_token17] = ACTIONS(2139), - [aux_sym_cmd_identifier_token18] = ACTIONS(2139), - [aux_sym_cmd_identifier_token19] = ACTIONS(2139), - [aux_sym_cmd_identifier_token20] = ACTIONS(2139), - [aux_sym_cmd_identifier_token21] = ACTIONS(2139), - [aux_sym_cmd_identifier_token22] = ACTIONS(2139), - [aux_sym_cmd_identifier_token23] = ACTIONS(2139), - [aux_sym_cmd_identifier_token24] = ACTIONS(2139), - [aux_sym_cmd_identifier_token25] = ACTIONS(2139), - [aux_sym_cmd_identifier_token26] = ACTIONS(2139), - [aux_sym_cmd_identifier_token27] = ACTIONS(2139), - [aux_sym_cmd_identifier_token28] = ACTIONS(2139), - [aux_sym_cmd_identifier_token29] = ACTIONS(2139), - [aux_sym_cmd_identifier_token30] = ACTIONS(2139), - [aux_sym_cmd_identifier_token31] = ACTIONS(2139), - [aux_sym_cmd_identifier_token32] = ACTIONS(2139), - [aux_sym_cmd_identifier_token33] = ACTIONS(2139), - [aux_sym_cmd_identifier_token34] = ACTIONS(2133), - [aux_sym_cmd_identifier_token35] = ACTIONS(2139), - [aux_sym_cmd_identifier_token36] = ACTIONS(2139), - [aux_sym_cmd_identifier_token37] = ACTIONS(2139), - [aux_sym_cmd_identifier_token38] = ACTIONS(2133), - [aux_sym_cmd_identifier_token39] = ACTIONS(2139), - [aux_sym_cmd_identifier_token40] = ACTIONS(2139), - [anon_sym_def] = ACTIONS(2133), - [anon_sym_export_DASHenv] = ACTIONS(2133), - [anon_sym_extern] = ACTIONS(2133), - [anon_sym_module] = ACTIONS(2133), - [anon_sym_use] = ACTIONS(2133), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_DOLLAR] = ACTIONS(2139), - [anon_sym_error] = ACTIONS(2133), - [anon_sym_DASH2] = ACTIONS(2133), - [anon_sym_break] = ACTIONS(2133), - [anon_sym_continue] = ACTIONS(2133), - [anon_sym_for] = ACTIONS(2133), - [anon_sym_in2] = ACTIONS(2133), - [anon_sym_loop] = ACTIONS(2133), - [anon_sym_make] = ACTIONS(2133), - [anon_sym_while] = ACTIONS(2133), - [anon_sym_do] = ACTIONS(2133), - [anon_sym_if] = ACTIONS(2133), - [anon_sym_else] = ACTIONS(2133), - [anon_sym_match] = ACTIONS(2133), - [anon_sym_RBRACE] = ACTIONS(2139), - [anon_sym_try] = ACTIONS(2133), - [anon_sym_catch] = ACTIONS(2133), - [anon_sym_return] = ACTIONS(2133), - [anon_sym_source] = ACTIONS(2133), - [anon_sym_source_DASHenv] = ACTIONS(2133), - [anon_sym_register] = ACTIONS(2133), - [anon_sym_hide] = ACTIONS(2133), - [anon_sym_hide_DASHenv] = ACTIONS(2133), - [anon_sym_overlay] = ACTIONS(2133), - [anon_sym_as] = ACTIONS(2133), - [anon_sym_PLUS2] = ACTIONS(2133), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2139), - [anon_sym_DOT_DOT2] = ACTIONS(2264), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2266), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2266), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2139), - [aux_sym__val_number_decimal_token1] = ACTIONS(2133), - [aux_sym__val_number_decimal_token2] = ACTIONS(2139), - [aux_sym__val_number_decimal_token3] = ACTIONS(2139), - [aux_sym__val_number_decimal_token4] = ACTIONS(2139), - [aux_sym__val_number_token1] = ACTIONS(2139), - [aux_sym__val_number_token2] = ACTIONS(2139), - [aux_sym__val_number_token3] = ACTIONS(2139), - [aux_sym__val_number_token4] = ACTIONS(2133), - [aux_sym__val_number_token5] = ACTIONS(2133), - [aux_sym__val_number_token6] = ACTIONS(2133), - [anon_sym_DQUOTE] = ACTIONS(2139), - [sym__str_single_quotes] = ACTIONS(2139), - [sym__str_back_ticks] = ACTIONS(2139), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2139), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2139), - }, - [543] = { - [sym_comment] = STATE(543), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [aux_sym_cmd_identifier_token1] = ACTIONS(990), - [aux_sym_cmd_identifier_token2] = ACTIONS(990), - [aux_sym_cmd_identifier_token3] = ACTIONS(990), - [aux_sym_cmd_identifier_token4] = ACTIONS(990), - [aux_sym_cmd_identifier_token5] = ACTIONS(990), - [aux_sym_cmd_identifier_token6] = ACTIONS(990), - [aux_sym_cmd_identifier_token7] = ACTIONS(990), - [aux_sym_cmd_identifier_token8] = ACTIONS(990), - [aux_sym_cmd_identifier_token9] = ACTIONS(990), - [aux_sym_cmd_identifier_token10] = ACTIONS(990), - [aux_sym_cmd_identifier_token11] = ACTIONS(990), - [aux_sym_cmd_identifier_token12] = ACTIONS(990), - [aux_sym_cmd_identifier_token13] = ACTIONS(990), - [aux_sym_cmd_identifier_token14] = ACTIONS(990), - [aux_sym_cmd_identifier_token15] = ACTIONS(990), - [aux_sym_cmd_identifier_token16] = ACTIONS(990), - [aux_sym_cmd_identifier_token17] = ACTIONS(990), - [aux_sym_cmd_identifier_token18] = ACTIONS(990), - [aux_sym_cmd_identifier_token19] = ACTIONS(990), - [aux_sym_cmd_identifier_token20] = ACTIONS(990), - [aux_sym_cmd_identifier_token21] = ACTIONS(990), - [aux_sym_cmd_identifier_token22] = ACTIONS(990), - [aux_sym_cmd_identifier_token23] = ACTIONS(990), - [aux_sym_cmd_identifier_token24] = ACTIONS(990), - [aux_sym_cmd_identifier_token25] = ACTIONS(990), - [aux_sym_cmd_identifier_token26] = ACTIONS(990), - [aux_sym_cmd_identifier_token27] = ACTIONS(990), - [aux_sym_cmd_identifier_token28] = ACTIONS(990), - [aux_sym_cmd_identifier_token29] = ACTIONS(990), - [aux_sym_cmd_identifier_token30] = ACTIONS(990), - [aux_sym_cmd_identifier_token31] = ACTIONS(990), - [aux_sym_cmd_identifier_token32] = ACTIONS(990), - [aux_sym_cmd_identifier_token33] = ACTIONS(990), - [aux_sym_cmd_identifier_token34] = ACTIONS(990), - [aux_sym_cmd_identifier_token35] = ACTIONS(990), - [aux_sym_cmd_identifier_token36] = ACTIONS(990), - [aux_sym_cmd_identifier_token37] = ACTIONS(990), - [aux_sym_cmd_identifier_token38] = ACTIONS(990), - [aux_sym_cmd_identifier_token39] = ACTIONS(990), - [aux_sym_cmd_identifier_token40] = ACTIONS(990), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_error] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in2] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_make] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_try] = ACTIONS(990), - [anon_sym_catch] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(990), - [anon_sym_PLUS2] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(990), - [aux_sym__val_number_decimal_token3] = ACTIONS(990), - [aux_sym__val_number_decimal_token4] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(990), - [aux_sym__val_number_token2] = ACTIONS(990), - [aux_sym__val_number_token3] = ACTIONS(990), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(990), - [sym__entry_separator] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(992), - }, - [544] = { - [sym_comment] = STATE(544), - [anon_sym_export] = ACTIONS(1866), - [anon_sym_alias] = ACTIONS(1866), - [anon_sym_let] = ACTIONS(1866), - [anon_sym_let_DASHenv] = ACTIONS(1866), - [anon_sym_mut] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [aux_sym_cmd_identifier_token1] = ACTIONS(1866), - [aux_sym_cmd_identifier_token2] = ACTIONS(1866), - [aux_sym_cmd_identifier_token3] = ACTIONS(1866), - [aux_sym_cmd_identifier_token4] = ACTIONS(1866), - [aux_sym_cmd_identifier_token5] = ACTIONS(1866), - [aux_sym_cmd_identifier_token6] = ACTIONS(1866), - [aux_sym_cmd_identifier_token7] = ACTIONS(1866), - [aux_sym_cmd_identifier_token8] = ACTIONS(1866), - [aux_sym_cmd_identifier_token9] = ACTIONS(1866), - [aux_sym_cmd_identifier_token10] = ACTIONS(1866), - [aux_sym_cmd_identifier_token11] = ACTIONS(1866), - [aux_sym_cmd_identifier_token12] = ACTIONS(1866), - [aux_sym_cmd_identifier_token13] = ACTIONS(1866), - [aux_sym_cmd_identifier_token14] = ACTIONS(1866), - [aux_sym_cmd_identifier_token15] = ACTIONS(1866), - [aux_sym_cmd_identifier_token16] = ACTIONS(1866), - [aux_sym_cmd_identifier_token17] = ACTIONS(1866), - [aux_sym_cmd_identifier_token18] = ACTIONS(1866), - [aux_sym_cmd_identifier_token19] = ACTIONS(1866), - [aux_sym_cmd_identifier_token20] = ACTIONS(1866), - [aux_sym_cmd_identifier_token21] = ACTIONS(1866), - [aux_sym_cmd_identifier_token22] = ACTIONS(1866), - [aux_sym_cmd_identifier_token23] = ACTIONS(1866), - [aux_sym_cmd_identifier_token24] = ACTIONS(1866), - [aux_sym_cmd_identifier_token25] = ACTIONS(1866), - [aux_sym_cmd_identifier_token26] = ACTIONS(1866), - [aux_sym_cmd_identifier_token27] = ACTIONS(1866), - [aux_sym_cmd_identifier_token28] = ACTIONS(1866), - [aux_sym_cmd_identifier_token29] = ACTIONS(1866), - [aux_sym_cmd_identifier_token30] = ACTIONS(1866), - [aux_sym_cmd_identifier_token31] = ACTIONS(1866), - [aux_sym_cmd_identifier_token32] = ACTIONS(1866), - [aux_sym_cmd_identifier_token33] = ACTIONS(1866), - [aux_sym_cmd_identifier_token34] = ACTIONS(1866), - [aux_sym_cmd_identifier_token35] = ACTIONS(1866), - [aux_sym_cmd_identifier_token36] = ACTIONS(1866), - [aux_sym_cmd_identifier_token37] = ACTIONS(1866), - [aux_sym_cmd_identifier_token38] = ACTIONS(1866), - [aux_sym_cmd_identifier_token39] = ACTIONS(1866), - [aux_sym_cmd_identifier_token40] = ACTIONS(1866), - [anon_sym_def] = ACTIONS(1866), - [anon_sym_export_DASHenv] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym_module] = ACTIONS(1866), - [anon_sym_use] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1866), - [anon_sym_error] = ACTIONS(1866), - [anon_sym_DASH2] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_in2] = ACTIONS(1866), - [anon_sym_loop] = ACTIONS(1866), - [anon_sym_make] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_else] = ACTIONS(1866), - [anon_sym_match] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_try] = ACTIONS(1866), - [anon_sym_catch] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_source] = ACTIONS(1866), - [anon_sym_source_DASHenv] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_hide] = ACTIONS(1866), - [anon_sym_hide_DASHenv] = ACTIONS(1866), - [anon_sym_overlay] = ACTIONS(1866), - [anon_sym_as] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_PLUS2] = ACTIONS(1866), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1866), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1866), - [aux_sym__val_number_decimal_token1] = ACTIONS(1866), - [aux_sym__val_number_decimal_token2] = ACTIONS(1866), - [aux_sym__val_number_decimal_token3] = ACTIONS(1866), - [aux_sym__val_number_decimal_token4] = ACTIONS(1866), - [aux_sym__val_number_token1] = ACTIONS(1866), - [aux_sym__val_number_token2] = ACTIONS(1866), - [aux_sym__val_number_token3] = ACTIONS(1866), - [aux_sym__val_number_token4] = ACTIONS(1866), - [aux_sym__val_number_token5] = ACTIONS(1866), - [aux_sym__val_number_token6] = ACTIONS(1866), - [anon_sym_DQUOTE] = ACTIONS(1866), - [sym__str_single_quotes] = ACTIONS(1866), - [sym__str_back_ticks] = ACTIONS(1866), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1866), - [sym__entry_separator] = ACTIONS(1874), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1546), + [anon_sym_in2] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_make] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_else] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_catch] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_as] = ACTIONS(1002), + [anon_sym_QMARK2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1002), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = ACTIONS(1002), + [aux_sym__val_number_decimal_token4] = ACTIONS(1002), + [aux_sym__val_number_token1] = ACTIONS(1002), + [aux_sym__val_number_token2] = ACTIONS(1002), + [aux_sym__val_number_token3] = ACTIONS(1002), + [aux_sym__val_number_token4] = ACTIONS(1002), + [aux_sym__val_number_token5] = ACTIONS(1002), + [aux_sym__val_number_token6] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1002), + [sym__entry_separator] = ACTIONS(1004), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1874), - }, - [545] = { - [sym_comment] = STATE(545), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_alias] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_let_DASHenv] = ACTIONS(1755), - [anon_sym_mut] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1757), - [aux_sym_cmd_identifier_token3] = ACTIONS(1757), - [aux_sym_cmd_identifier_token4] = ACTIONS(1757), - [aux_sym_cmd_identifier_token5] = ACTIONS(1757), - [aux_sym_cmd_identifier_token6] = ACTIONS(1757), - [aux_sym_cmd_identifier_token7] = ACTIONS(1757), - [aux_sym_cmd_identifier_token8] = ACTIONS(1755), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1757), - [aux_sym_cmd_identifier_token11] = ACTIONS(1757), - [aux_sym_cmd_identifier_token12] = ACTIONS(1755), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1755), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1757), - [aux_sym_cmd_identifier_token17] = ACTIONS(1757), - [aux_sym_cmd_identifier_token18] = ACTIONS(1757), - [aux_sym_cmd_identifier_token19] = ACTIONS(1757), - [aux_sym_cmd_identifier_token20] = ACTIONS(1757), - [aux_sym_cmd_identifier_token21] = ACTIONS(1757), - [aux_sym_cmd_identifier_token22] = ACTIONS(1757), - [aux_sym_cmd_identifier_token23] = ACTIONS(1757), - [aux_sym_cmd_identifier_token24] = ACTIONS(1757), - [aux_sym_cmd_identifier_token25] = ACTIONS(1757), - [aux_sym_cmd_identifier_token26] = ACTIONS(1757), - [aux_sym_cmd_identifier_token27] = ACTIONS(1757), - [aux_sym_cmd_identifier_token28] = ACTIONS(1757), - [aux_sym_cmd_identifier_token29] = ACTIONS(1757), - [aux_sym_cmd_identifier_token30] = ACTIONS(1757), - [aux_sym_cmd_identifier_token31] = ACTIONS(1757), - [aux_sym_cmd_identifier_token32] = ACTIONS(1757), - [aux_sym_cmd_identifier_token33] = ACTIONS(1757), - [aux_sym_cmd_identifier_token34] = ACTIONS(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [aux_sym_cmd_identifier_token37] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_export_DASHenv] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_make] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_source] = ACTIONS(1755), - [anon_sym_source_DASHenv] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_hide] = ACTIONS(1755), - [anon_sym_hide_DASHenv] = ACTIONS(1755), - [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(2123), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1757), + [sym_raw_string_begin] = ACTIONS(1004), }, - [546] = { - [sym_comment] = STATE(546), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_alias] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_let_DASHenv] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [aux_sym_cmd_identifier_token1] = ACTIONS(1783), - [aux_sym_cmd_identifier_token2] = ACTIONS(1785), - [aux_sym_cmd_identifier_token3] = ACTIONS(1785), - [aux_sym_cmd_identifier_token4] = ACTIONS(1785), - [aux_sym_cmd_identifier_token5] = ACTIONS(1785), - [aux_sym_cmd_identifier_token6] = ACTIONS(1785), - [aux_sym_cmd_identifier_token7] = ACTIONS(1785), - [aux_sym_cmd_identifier_token8] = ACTIONS(1783), - [aux_sym_cmd_identifier_token9] = ACTIONS(1783), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1783), - [aux_sym_cmd_identifier_token13] = ACTIONS(1783), - [aux_sym_cmd_identifier_token14] = ACTIONS(1783), - [aux_sym_cmd_identifier_token15] = ACTIONS(1783), - [aux_sym_cmd_identifier_token16] = ACTIONS(1785), - [aux_sym_cmd_identifier_token17] = ACTIONS(1785), - [aux_sym_cmd_identifier_token18] = ACTIONS(1785), - [aux_sym_cmd_identifier_token19] = ACTIONS(1785), - [aux_sym_cmd_identifier_token20] = ACTIONS(1785), - [aux_sym_cmd_identifier_token21] = ACTIONS(1785), - [aux_sym_cmd_identifier_token22] = ACTIONS(1785), - [aux_sym_cmd_identifier_token23] = ACTIONS(1785), - [aux_sym_cmd_identifier_token24] = ACTIONS(1785), - [aux_sym_cmd_identifier_token25] = ACTIONS(1785), - [aux_sym_cmd_identifier_token26] = ACTIONS(1785), - [aux_sym_cmd_identifier_token27] = ACTIONS(1785), - [aux_sym_cmd_identifier_token28] = ACTIONS(1785), - [aux_sym_cmd_identifier_token29] = ACTIONS(1785), - [aux_sym_cmd_identifier_token30] = ACTIONS(1785), - [aux_sym_cmd_identifier_token31] = ACTIONS(1785), - [aux_sym_cmd_identifier_token32] = ACTIONS(1785), - [aux_sym_cmd_identifier_token33] = ACTIONS(1785), - [aux_sym_cmd_identifier_token34] = ACTIONS(1783), - [aux_sym_cmd_identifier_token35] = ACTIONS(1785), - [aux_sym_cmd_identifier_token36] = ACTIONS(1785), - [aux_sym_cmd_identifier_token37] = ACTIONS(1785), - [aux_sym_cmd_identifier_token38] = ACTIONS(1783), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_export_DASHenv] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_error] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_make] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_catch] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_source] = ACTIONS(1783), - [anon_sym_source_DASHenv] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_hide] = ACTIONS(1783), - [anon_sym_hide_DASHenv] = ACTIONS(1783), - [anon_sym_overlay] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [aux_sym__immediate_decimal_token2] = ACTIONS(2268), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1783), - [aux_sym__val_number_token5] = ACTIONS(1783), - [aux_sym__val_number_token6] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1783), + [553] = { + [sym_comment] = STATE(553), + [anon_sym_export] = ACTIONS(1765), + [anon_sym_alias] = ACTIONS(1765), + [anon_sym_let] = ACTIONS(1765), + [anon_sym_let_DASHenv] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [aux_sym_cmd_identifier_token1] = ACTIONS(1765), + [aux_sym_cmd_identifier_token2] = ACTIONS(1767), + [aux_sym_cmd_identifier_token3] = ACTIONS(1767), + [aux_sym_cmd_identifier_token4] = ACTIONS(1767), + [aux_sym_cmd_identifier_token5] = ACTIONS(1767), + [aux_sym_cmd_identifier_token6] = ACTIONS(1767), + [aux_sym_cmd_identifier_token7] = ACTIONS(1767), + [aux_sym_cmd_identifier_token8] = ACTIONS(1765), + [aux_sym_cmd_identifier_token9] = ACTIONS(1765), + [aux_sym_cmd_identifier_token10] = ACTIONS(1767), + [aux_sym_cmd_identifier_token11] = ACTIONS(1767), + [aux_sym_cmd_identifier_token12] = ACTIONS(1765), + [aux_sym_cmd_identifier_token13] = ACTIONS(1765), + [aux_sym_cmd_identifier_token14] = ACTIONS(1765), + [aux_sym_cmd_identifier_token15] = ACTIONS(1765), + [aux_sym_cmd_identifier_token16] = ACTIONS(1767), + [aux_sym_cmd_identifier_token17] = ACTIONS(1767), + [aux_sym_cmd_identifier_token18] = ACTIONS(1767), + [aux_sym_cmd_identifier_token19] = ACTIONS(1767), + [aux_sym_cmd_identifier_token20] = ACTIONS(1767), + [aux_sym_cmd_identifier_token21] = ACTIONS(1767), + [aux_sym_cmd_identifier_token22] = ACTIONS(1767), + [aux_sym_cmd_identifier_token23] = ACTIONS(1767), + [aux_sym_cmd_identifier_token24] = ACTIONS(1767), + [aux_sym_cmd_identifier_token25] = ACTIONS(1767), + [aux_sym_cmd_identifier_token26] = ACTIONS(1767), + [aux_sym_cmd_identifier_token27] = ACTIONS(1767), + [aux_sym_cmd_identifier_token28] = ACTIONS(1767), + [aux_sym_cmd_identifier_token29] = ACTIONS(1767), + [aux_sym_cmd_identifier_token30] = ACTIONS(1767), + [aux_sym_cmd_identifier_token31] = ACTIONS(1767), + [aux_sym_cmd_identifier_token32] = ACTIONS(1767), + [aux_sym_cmd_identifier_token33] = ACTIONS(1767), + [aux_sym_cmd_identifier_token34] = ACTIONS(1765), + [aux_sym_cmd_identifier_token35] = ACTIONS(1767), + [aux_sym_cmd_identifier_token36] = ACTIONS(1767), + [aux_sym_cmd_identifier_token37] = ACTIONS(1767), + [aux_sym_cmd_identifier_token38] = ACTIONS(1765), + [aux_sym_cmd_identifier_token39] = ACTIONS(1767), + [aux_sym_cmd_identifier_token40] = ACTIONS(1767), + [anon_sym_def] = ACTIONS(1765), + [anon_sym_export_DASHenv] = ACTIONS(1765), + [anon_sym_extern] = ACTIONS(1765), + [anon_sym_module] = ACTIONS(1765), + [anon_sym_use] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_DOLLAR] = ACTIONS(1767), + [anon_sym_error] = ACTIONS(1765), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_in2] = ACTIONS(1765), + [anon_sym_loop] = ACTIONS(1765), + [anon_sym_make] = ACTIONS(1765), + [anon_sym_while] = ACTIONS(1765), + [anon_sym_do] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_else] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_try] = ACTIONS(1765), + [anon_sym_catch] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_source] = ACTIONS(1765), + [anon_sym_source_DASHenv] = ACTIONS(1765), + [anon_sym_register] = ACTIONS(1765), + [anon_sym_hide] = ACTIONS(1765), + [anon_sym_hide_DASHenv] = ACTIONS(1765), + [anon_sym_overlay] = ACTIONS(1765), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1767), + [anon_sym_PLUS2] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), + [aux_sym__immediate_decimal_token2] = ACTIONS(2060), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1765), + [aux_sym__val_number_token5] = ACTIONS(1765), + [aux_sym__val_number_token6] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1765), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1785), - }, - [547] = { - [sym_comment] = STATE(547), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_alias] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_let_DASHenv] = ACTIONS(1755), - [anon_sym_mut] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1757), - [aux_sym_cmd_identifier_token3] = ACTIONS(1757), - [aux_sym_cmd_identifier_token4] = ACTIONS(1757), - [aux_sym_cmd_identifier_token5] = ACTIONS(1757), - [aux_sym_cmd_identifier_token6] = ACTIONS(1757), - [aux_sym_cmd_identifier_token7] = ACTIONS(1757), - [aux_sym_cmd_identifier_token8] = ACTIONS(1755), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1757), - [aux_sym_cmd_identifier_token11] = ACTIONS(1757), - [aux_sym_cmd_identifier_token12] = ACTIONS(1755), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1755), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1757), - [aux_sym_cmd_identifier_token17] = ACTIONS(1757), - [aux_sym_cmd_identifier_token18] = ACTIONS(1757), - [aux_sym_cmd_identifier_token19] = ACTIONS(1757), - [aux_sym_cmd_identifier_token20] = ACTIONS(1757), - [aux_sym_cmd_identifier_token21] = ACTIONS(1757), - [aux_sym_cmd_identifier_token22] = ACTIONS(1757), - [aux_sym_cmd_identifier_token23] = ACTIONS(1757), - [aux_sym_cmd_identifier_token24] = ACTIONS(1757), - [aux_sym_cmd_identifier_token25] = ACTIONS(1757), - [aux_sym_cmd_identifier_token26] = ACTIONS(1757), - [aux_sym_cmd_identifier_token27] = ACTIONS(1757), - [aux_sym_cmd_identifier_token28] = ACTIONS(1757), - [aux_sym_cmd_identifier_token29] = ACTIONS(1757), - [aux_sym_cmd_identifier_token30] = ACTIONS(1757), - [aux_sym_cmd_identifier_token31] = ACTIONS(1757), - [aux_sym_cmd_identifier_token32] = ACTIONS(1757), - [aux_sym_cmd_identifier_token33] = ACTIONS(1757), - [aux_sym_cmd_identifier_token34] = ACTIONS(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [aux_sym_cmd_identifier_token37] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_export_DASHenv] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_make] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_source] = ACTIONS(1755), - [anon_sym_source_DASHenv] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_hide] = ACTIONS(1755), - [anon_sym_hide_DASHenv] = ACTIONS(1755), - [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1757), + [sym_raw_string_begin] = ACTIONS(1767), }, - [548] = { - [sym_comment] = STATE(548), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_alias] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_let_DASHenv] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [aux_sym_cmd_identifier_token1] = ACTIONS(1783), - [aux_sym_cmd_identifier_token2] = ACTIONS(1785), - [aux_sym_cmd_identifier_token3] = ACTIONS(1785), - [aux_sym_cmd_identifier_token4] = ACTIONS(1785), - [aux_sym_cmd_identifier_token5] = ACTIONS(1785), - [aux_sym_cmd_identifier_token6] = ACTIONS(1785), - [aux_sym_cmd_identifier_token7] = ACTIONS(1785), - [aux_sym_cmd_identifier_token8] = ACTIONS(1783), - [aux_sym_cmd_identifier_token9] = ACTIONS(1783), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1783), - [aux_sym_cmd_identifier_token13] = ACTIONS(1783), - [aux_sym_cmd_identifier_token14] = ACTIONS(1783), - [aux_sym_cmd_identifier_token15] = ACTIONS(1783), - [aux_sym_cmd_identifier_token16] = ACTIONS(1785), - [aux_sym_cmd_identifier_token17] = ACTIONS(1785), - [aux_sym_cmd_identifier_token18] = ACTIONS(1785), - [aux_sym_cmd_identifier_token19] = ACTIONS(1785), - [aux_sym_cmd_identifier_token20] = ACTIONS(1785), - [aux_sym_cmd_identifier_token21] = ACTIONS(1785), - [aux_sym_cmd_identifier_token22] = ACTIONS(1785), - [aux_sym_cmd_identifier_token23] = ACTIONS(1785), - [aux_sym_cmd_identifier_token24] = ACTIONS(1785), - [aux_sym_cmd_identifier_token25] = ACTIONS(1785), - [aux_sym_cmd_identifier_token26] = ACTIONS(1785), - [aux_sym_cmd_identifier_token27] = ACTIONS(1785), - [aux_sym_cmd_identifier_token28] = ACTIONS(1785), - [aux_sym_cmd_identifier_token29] = ACTIONS(1785), - [aux_sym_cmd_identifier_token30] = ACTIONS(1785), - [aux_sym_cmd_identifier_token31] = ACTIONS(1785), - [aux_sym_cmd_identifier_token32] = ACTIONS(1785), - [aux_sym_cmd_identifier_token33] = ACTIONS(1785), - [aux_sym_cmd_identifier_token34] = ACTIONS(1783), - [aux_sym_cmd_identifier_token35] = ACTIONS(1785), - [aux_sym_cmd_identifier_token36] = ACTIONS(1785), - [aux_sym_cmd_identifier_token37] = ACTIONS(1785), - [aux_sym_cmd_identifier_token38] = ACTIONS(1783), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_export_DASHenv] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), + [554] = { + [sym_comment] = STATE(554), + [anon_sym_export] = ACTIONS(1785), + [anon_sym_alias] = ACTIONS(1785), + [anon_sym_let] = ACTIONS(1785), + [anon_sym_let_DASHenv] = ACTIONS(1785), + [anon_sym_mut] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(1785), + [aux_sym_cmd_identifier_token1] = ACTIONS(1785), + [aux_sym_cmd_identifier_token2] = ACTIONS(1787), + [aux_sym_cmd_identifier_token3] = ACTIONS(1787), + [aux_sym_cmd_identifier_token4] = ACTIONS(1787), + [aux_sym_cmd_identifier_token5] = ACTIONS(1787), + [aux_sym_cmd_identifier_token6] = ACTIONS(1787), + [aux_sym_cmd_identifier_token7] = ACTIONS(1787), + [aux_sym_cmd_identifier_token8] = ACTIONS(1785), + [aux_sym_cmd_identifier_token9] = ACTIONS(1785), + [aux_sym_cmd_identifier_token10] = ACTIONS(1787), + [aux_sym_cmd_identifier_token11] = ACTIONS(1787), + [aux_sym_cmd_identifier_token12] = ACTIONS(1785), + [aux_sym_cmd_identifier_token13] = ACTIONS(1785), + [aux_sym_cmd_identifier_token14] = ACTIONS(1785), + [aux_sym_cmd_identifier_token15] = ACTIONS(1785), + [aux_sym_cmd_identifier_token16] = ACTIONS(1787), + [aux_sym_cmd_identifier_token17] = ACTIONS(1787), + [aux_sym_cmd_identifier_token18] = ACTIONS(1787), + [aux_sym_cmd_identifier_token19] = ACTIONS(1787), + [aux_sym_cmd_identifier_token20] = ACTIONS(1787), + [aux_sym_cmd_identifier_token21] = ACTIONS(1787), + [aux_sym_cmd_identifier_token22] = ACTIONS(1787), + [aux_sym_cmd_identifier_token23] = ACTIONS(1787), + [aux_sym_cmd_identifier_token24] = ACTIONS(1787), + [aux_sym_cmd_identifier_token25] = ACTIONS(1787), + [aux_sym_cmd_identifier_token26] = ACTIONS(1787), + [aux_sym_cmd_identifier_token27] = ACTIONS(1787), + [aux_sym_cmd_identifier_token28] = ACTIONS(1787), + [aux_sym_cmd_identifier_token29] = ACTIONS(1787), + [aux_sym_cmd_identifier_token30] = ACTIONS(1787), + [aux_sym_cmd_identifier_token31] = ACTIONS(1787), + [aux_sym_cmd_identifier_token32] = ACTIONS(1787), + [aux_sym_cmd_identifier_token33] = ACTIONS(1787), + [aux_sym_cmd_identifier_token34] = ACTIONS(1785), + [aux_sym_cmd_identifier_token35] = ACTIONS(1787), + [aux_sym_cmd_identifier_token36] = ACTIONS(1787), + [aux_sym_cmd_identifier_token37] = ACTIONS(1787), + [aux_sym_cmd_identifier_token38] = ACTIONS(1785), + [aux_sym_cmd_identifier_token39] = ACTIONS(1787), + [aux_sym_cmd_identifier_token40] = ACTIONS(1787), + [anon_sym_def] = ACTIONS(1785), + [anon_sym_export_DASHenv] = ACTIONS(1785), + [anon_sym_extern] = ACTIONS(1785), + [anon_sym_module] = ACTIONS(1785), + [anon_sym_use] = ACTIONS(1785), [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_error] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_make] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_catch] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_source] = ACTIONS(1783), - [anon_sym_source_DASHenv] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_hide] = ACTIONS(1783), - [anon_sym_hide_DASHenv] = ACTIONS(1783), - [anon_sym_overlay] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_PLUS2] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1783), - [aux_sym__val_number_token5] = ACTIONS(1783), - [aux_sym__val_number_token6] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1787), + [anon_sym_error] = ACTIONS(1785), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_break] = ACTIONS(1785), + [anon_sym_continue] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1785), + [anon_sym_in2] = ACTIONS(1785), + [anon_sym_loop] = ACTIONS(1785), + [anon_sym_make] = ACTIONS(1785), + [anon_sym_while] = ACTIONS(1785), + [anon_sym_do] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1785), + [anon_sym_else] = ACTIONS(1785), + [anon_sym_match] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1787), + [anon_sym_try] = ACTIONS(1785), + [anon_sym_catch] = ACTIONS(1785), + [anon_sym_return] = ACTIONS(1785), + [anon_sym_source] = ACTIONS(1785), + [anon_sym_source_DASHenv] = ACTIONS(1785), + [anon_sym_register] = ACTIONS(1785), + [anon_sym_hide] = ACTIONS(1785), + [anon_sym_hide_DASHenv] = ACTIONS(1785), + [anon_sym_overlay] = ACTIONS(1785), + [anon_sym_as] = ACTIONS(1785), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_PLUS2] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1787), + [aux_sym__immediate_decimal_token2] = ACTIONS(2280), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1787), + [aux_sym__val_number_decimal_token1] = ACTIONS(1785), + [aux_sym__val_number_decimal_token2] = ACTIONS(1787), + [aux_sym__val_number_decimal_token3] = ACTIONS(1787), + [aux_sym__val_number_decimal_token4] = ACTIONS(1787), + [aux_sym__val_number_token1] = ACTIONS(1787), + [aux_sym__val_number_token2] = ACTIONS(1787), + [aux_sym__val_number_token3] = ACTIONS(1787), + [aux_sym__val_number_token4] = ACTIONS(1785), + [aux_sym__val_number_token5] = ACTIONS(1785), + [aux_sym__val_number_token6] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1787), + [sym__str_single_quotes] = ACTIONS(1787), + [sym__str_back_ticks] = ACTIONS(1787), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1787), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1785), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1785), - }, - [549] = { - [sym_comment] = STATE(549), - [anon_sym_export] = ACTIONS(1890), - [anon_sym_alias] = ACTIONS(1890), - [anon_sym_let] = ACTIONS(1890), - [anon_sym_let_DASHenv] = ACTIONS(1890), - [anon_sym_mut] = ACTIONS(1890), - [anon_sym_const] = ACTIONS(1890), - [aux_sym_cmd_identifier_token1] = ACTIONS(1890), - [aux_sym_cmd_identifier_token2] = ACTIONS(1892), - [aux_sym_cmd_identifier_token3] = ACTIONS(1892), - [aux_sym_cmd_identifier_token4] = ACTIONS(1892), - [aux_sym_cmd_identifier_token5] = ACTIONS(1892), - [aux_sym_cmd_identifier_token6] = ACTIONS(1892), - [aux_sym_cmd_identifier_token7] = ACTIONS(1892), - [aux_sym_cmd_identifier_token8] = ACTIONS(1890), - [aux_sym_cmd_identifier_token9] = ACTIONS(1890), - [aux_sym_cmd_identifier_token10] = ACTIONS(1892), - [aux_sym_cmd_identifier_token11] = ACTIONS(1892), - [aux_sym_cmd_identifier_token12] = ACTIONS(1890), - [aux_sym_cmd_identifier_token13] = ACTIONS(1890), - [aux_sym_cmd_identifier_token14] = ACTIONS(1890), - [aux_sym_cmd_identifier_token15] = ACTIONS(1890), - [aux_sym_cmd_identifier_token16] = ACTIONS(1892), - [aux_sym_cmd_identifier_token17] = ACTIONS(1892), - [aux_sym_cmd_identifier_token18] = ACTIONS(1892), - [aux_sym_cmd_identifier_token19] = ACTIONS(1892), - [aux_sym_cmd_identifier_token20] = ACTIONS(1892), - [aux_sym_cmd_identifier_token21] = ACTIONS(1892), - [aux_sym_cmd_identifier_token22] = ACTIONS(1892), - [aux_sym_cmd_identifier_token23] = ACTIONS(1892), - [aux_sym_cmd_identifier_token24] = ACTIONS(1892), - [aux_sym_cmd_identifier_token25] = ACTIONS(1892), - [aux_sym_cmd_identifier_token26] = ACTIONS(1892), - [aux_sym_cmd_identifier_token27] = ACTIONS(1892), - [aux_sym_cmd_identifier_token28] = ACTIONS(1892), - [aux_sym_cmd_identifier_token29] = ACTIONS(1892), - [aux_sym_cmd_identifier_token30] = ACTIONS(1892), - [aux_sym_cmd_identifier_token31] = ACTIONS(1892), - [aux_sym_cmd_identifier_token32] = ACTIONS(1892), - [aux_sym_cmd_identifier_token33] = ACTIONS(1892), - [aux_sym_cmd_identifier_token34] = ACTIONS(1890), - [aux_sym_cmd_identifier_token35] = ACTIONS(1892), - [aux_sym_cmd_identifier_token36] = ACTIONS(1892), - [aux_sym_cmd_identifier_token37] = ACTIONS(1892), - [aux_sym_cmd_identifier_token38] = ACTIONS(1890), - [aux_sym_cmd_identifier_token39] = ACTIONS(1892), - [aux_sym_cmd_identifier_token40] = ACTIONS(1892), - [anon_sym_def] = ACTIONS(1890), - [anon_sym_export_DASHenv] = ACTIONS(1890), - [anon_sym_extern] = ACTIONS(1890), - [anon_sym_module] = ACTIONS(1890), - [anon_sym_use] = ACTIONS(1890), - [anon_sym_LPAREN] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [anon_sym_error] = ACTIONS(1890), - [anon_sym_DASH2] = ACTIONS(1890), - [anon_sym_break] = ACTIONS(1890), - [anon_sym_continue] = ACTIONS(1890), - [anon_sym_for] = ACTIONS(1890), - [anon_sym_in2] = ACTIONS(1890), - [anon_sym_loop] = ACTIONS(1890), - [anon_sym_make] = ACTIONS(1890), - [anon_sym_while] = ACTIONS(1890), - [anon_sym_do] = ACTIONS(1890), - [anon_sym_if] = ACTIONS(1890), - [anon_sym_else] = ACTIONS(1890), - [anon_sym_match] = ACTIONS(1890), - [anon_sym_RBRACE] = ACTIONS(1892), - [anon_sym_try] = ACTIONS(1890), - [anon_sym_catch] = ACTIONS(1890), - [anon_sym_return] = ACTIONS(1890), - [anon_sym_source] = ACTIONS(1890), - [anon_sym_source_DASHenv] = ACTIONS(1890), - [anon_sym_register] = ACTIONS(1890), - [anon_sym_hide] = ACTIONS(1890), - [anon_sym_hide_DASHenv] = ACTIONS(1890), - [anon_sym_overlay] = ACTIONS(1890), - [anon_sym_as] = ACTIONS(1890), - [anon_sym_PLUS2] = ACTIONS(1890), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1892), - [anon_sym_DOT_DOT2] = ACTIONS(1890), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1892), - [aux_sym__val_number_decimal_token1] = ACTIONS(1890), - [aux_sym__val_number_decimal_token2] = ACTIONS(1892), - [aux_sym__val_number_decimal_token3] = ACTIONS(1892), - [aux_sym__val_number_decimal_token4] = ACTIONS(1892), - [aux_sym__val_number_token1] = ACTIONS(1892), - [aux_sym__val_number_token2] = ACTIONS(1892), - [aux_sym__val_number_token3] = ACTIONS(1892), - [aux_sym__val_number_token4] = ACTIONS(1890), - [aux_sym__val_number_token5] = ACTIONS(1890), - [aux_sym__val_number_token6] = ACTIONS(1890), - [anon_sym_DQUOTE] = ACTIONS(1892), - [sym__str_single_quotes] = ACTIONS(1892), - [sym__str_back_ticks] = ACTIONS(1892), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1892), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1892), + [sym_raw_string_begin] = ACTIONS(1787), }, - [550] = { - [sym_comment] = STATE(550), - [anon_sym_export] = ACTIONS(2151), - [anon_sym_alias] = ACTIONS(2151), - [anon_sym_let] = ACTIONS(2151), - [anon_sym_let_DASHenv] = ACTIONS(2151), - [anon_sym_mut] = ACTIONS(2151), - [anon_sym_const] = ACTIONS(2151), - [aux_sym_cmd_identifier_token1] = ACTIONS(2151), - [aux_sym_cmd_identifier_token2] = ACTIONS(2153), - [aux_sym_cmd_identifier_token3] = ACTIONS(2153), - [aux_sym_cmd_identifier_token4] = ACTIONS(2153), - [aux_sym_cmd_identifier_token5] = ACTIONS(2153), - [aux_sym_cmd_identifier_token6] = ACTIONS(2153), - [aux_sym_cmd_identifier_token7] = ACTIONS(2153), - [aux_sym_cmd_identifier_token8] = ACTIONS(2151), - [aux_sym_cmd_identifier_token9] = ACTIONS(2151), - [aux_sym_cmd_identifier_token10] = ACTIONS(2153), - [aux_sym_cmd_identifier_token11] = ACTIONS(2153), - [aux_sym_cmd_identifier_token12] = ACTIONS(2151), - [aux_sym_cmd_identifier_token13] = ACTIONS(2151), - [aux_sym_cmd_identifier_token14] = ACTIONS(2151), - [aux_sym_cmd_identifier_token15] = ACTIONS(2151), - [aux_sym_cmd_identifier_token16] = ACTIONS(2153), - [aux_sym_cmd_identifier_token17] = ACTIONS(2153), - [aux_sym_cmd_identifier_token18] = ACTIONS(2153), - [aux_sym_cmd_identifier_token19] = ACTIONS(2153), - [aux_sym_cmd_identifier_token20] = ACTIONS(2153), - [aux_sym_cmd_identifier_token21] = ACTIONS(2153), - [aux_sym_cmd_identifier_token22] = ACTIONS(2153), - [aux_sym_cmd_identifier_token23] = ACTIONS(2153), - [aux_sym_cmd_identifier_token24] = ACTIONS(2153), - [aux_sym_cmd_identifier_token25] = ACTIONS(2153), - [aux_sym_cmd_identifier_token26] = ACTIONS(2153), - [aux_sym_cmd_identifier_token27] = ACTIONS(2153), - [aux_sym_cmd_identifier_token28] = ACTIONS(2153), - [aux_sym_cmd_identifier_token29] = ACTIONS(2153), - [aux_sym_cmd_identifier_token30] = ACTIONS(2153), - [aux_sym_cmd_identifier_token31] = ACTIONS(2153), - [aux_sym_cmd_identifier_token32] = ACTIONS(2153), - [aux_sym_cmd_identifier_token33] = ACTIONS(2153), - [aux_sym_cmd_identifier_token34] = ACTIONS(2151), - [aux_sym_cmd_identifier_token35] = ACTIONS(2153), - [aux_sym_cmd_identifier_token36] = ACTIONS(2153), - [aux_sym_cmd_identifier_token37] = ACTIONS(2153), - [aux_sym_cmd_identifier_token38] = ACTIONS(2151), - [aux_sym_cmd_identifier_token39] = ACTIONS(2153), - [aux_sym_cmd_identifier_token40] = ACTIONS(2153), - [anon_sym_def] = ACTIONS(2151), - [anon_sym_export_DASHenv] = ACTIONS(2151), - [anon_sym_extern] = ACTIONS(2151), - [anon_sym_module] = ACTIONS(2151), - [anon_sym_use] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_DOLLAR] = ACTIONS(2153), - [anon_sym_error] = ACTIONS(2151), - [anon_sym_DASH2] = ACTIONS(2151), - [anon_sym_break] = ACTIONS(2151), - [anon_sym_continue] = ACTIONS(2151), - [anon_sym_for] = ACTIONS(2151), - [anon_sym_in2] = ACTIONS(2151), - [anon_sym_loop] = ACTIONS(2151), - [anon_sym_make] = ACTIONS(2151), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_do] = ACTIONS(2151), - [anon_sym_if] = ACTIONS(2151), - [anon_sym_else] = ACTIONS(2151), - [anon_sym_match] = ACTIONS(2151), - [anon_sym_RBRACE] = ACTIONS(2153), - [anon_sym_try] = ACTIONS(2151), - [anon_sym_catch] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2151), - [anon_sym_source] = ACTIONS(2151), - [anon_sym_source_DASHenv] = ACTIONS(2151), - [anon_sym_register] = ACTIONS(2151), - [anon_sym_hide] = ACTIONS(2151), - [anon_sym_hide_DASHenv] = ACTIONS(2151), - [anon_sym_overlay] = ACTIONS(2151), - [anon_sym_as] = ACTIONS(2151), - [anon_sym_PLUS2] = ACTIONS(2151), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2153), - [anon_sym_DOT_DOT2] = ACTIONS(2230), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2232), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2232), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2153), - [aux_sym__val_number_decimal_token1] = ACTIONS(2151), - [aux_sym__val_number_decimal_token2] = ACTIONS(2153), - [aux_sym__val_number_decimal_token3] = ACTIONS(2153), - [aux_sym__val_number_decimal_token4] = ACTIONS(2153), - [aux_sym__val_number_token1] = ACTIONS(2153), - [aux_sym__val_number_token2] = ACTIONS(2153), - [aux_sym__val_number_token3] = ACTIONS(2153), - [aux_sym__val_number_token4] = ACTIONS(2151), - [aux_sym__val_number_token5] = ACTIONS(2151), - [aux_sym__val_number_token6] = ACTIONS(2151), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym__str_single_quotes] = ACTIONS(2153), - [sym__str_back_ticks] = ACTIONS(2153), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2153), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2153), + [555] = { + [sym_comment] = STATE(555), + [anon_sym_export] = ACTIONS(1026), + [anon_sym_alias] = ACTIONS(1026), + [anon_sym_let] = ACTIONS(1026), + [anon_sym_let_DASHenv] = ACTIONS(1026), + [anon_sym_mut] = ACTIONS(1026), + [anon_sym_const] = ACTIONS(1026), + [aux_sym_cmd_identifier_token1] = ACTIONS(1026), + [aux_sym_cmd_identifier_token2] = ACTIONS(1028), + [aux_sym_cmd_identifier_token3] = ACTIONS(1028), + [aux_sym_cmd_identifier_token4] = ACTIONS(1028), + [aux_sym_cmd_identifier_token5] = ACTIONS(1028), + [aux_sym_cmd_identifier_token6] = ACTIONS(1028), + [aux_sym_cmd_identifier_token7] = ACTIONS(1028), + [aux_sym_cmd_identifier_token8] = ACTIONS(1026), + [aux_sym_cmd_identifier_token9] = ACTIONS(1026), + [aux_sym_cmd_identifier_token10] = ACTIONS(1028), + [aux_sym_cmd_identifier_token11] = ACTIONS(1028), + [aux_sym_cmd_identifier_token12] = ACTIONS(1026), + [aux_sym_cmd_identifier_token13] = ACTIONS(1026), + [aux_sym_cmd_identifier_token14] = ACTIONS(1026), + [aux_sym_cmd_identifier_token15] = ACTIONS(1026), + [aux_sym_cmd_identifier_token16] = ACTIONS(1028), + [aux_sym_cmd_identifier_token17] = ACTIONS(1028), + [aux_sym_cmd_identifier_token18] = ACTIONS(1028), + [aux_sym_cmd_identifier_token19] = ACTIONS(1028), + [aux_sym_cmd_identifier_token20] = ACTIONS(1028), + [aux_sym_cmd_identifier_token21] = ACTIONS(1028), + [aux_sym_cmd_identifier_token22] = ACTIONS(1028), + [aux_sym_cmd_identifier_token23] = ACTIONS(1028), + [aux_sym_cmd_identifier_token24] = ACTIONS(1028), + [aux_sym_cmd_identifier_token25] = ACTIONS(1028), + [aux_sym_cmd_identifier_token26] = ACTIONS(1028), + [aux_sym_cmd_identifier_token27] = ACTIONS(1028), + [aux_sym_cmd_identifier_token28] = ACTIONS(1028), + [aux_sym_cmd_identifier_token29] = ACTIONS(1028), + [aux_sym_cmd_identifier_token30] = ACTIONS(1028), + [aux_sym_cmd_identifier_token31] = ACTIONS(1028), + [aux_sym_cmd_identifier_token32] = ACTIONS(1028), + [aux_sym_cmd_identifier_token33] = ACTIONS(1028), + [aux_sym_cmd_identifier_token34] = ACTIONS(1026), + [aux_sym_cmd_identifier_token35] = ACTIONS(1028), + [aux_sym_cmd_identifier_token36] = ACTIONS(1028), + [aux_sym_cmd_identifier_token37] = ACTIONS(1028), + [aux_sym_cmd_identifier_token38] = ACTIONS(1026), + [aux_sym_cmd_identifier_token39] = ACTIONS(1028), + [aux_sym_cmd_identifier_token40] = ACTIONS(1028), + [anon_sym_def] = ACTIONS(1026), + [anon_sym_export_DASHenv] = ACTIONS(1026), + [anon_sym_extern] = ACTIONS(1026), + [anon_sym_module] = ACTIONS(1026), + [anon_sym_use] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR] = ACTIONS(1028), + [anon_sym_error] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(1026), + [anon_sym_break] = ACTIONS(1026), + [anon_sym_continue] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1026), + [anon_sym_in2] = ACTIONS(1026), + [anon_sym_loop] = ACTIONS(1026), + [anon_sym_make] = ACTIONS(1026), + [anon_sym_while] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1026), + [anon_sym_else] = ACTIONS(1026), + [anon_sym_match] = ACTIONS(1026), + [anon_sym_RBRACE] = ACTIONS(1028), + [anon_sym_try] = ACTIONS(1026), + [anon_sym_catch] = ACTIONS(1026), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_source] = ACTIONS(1026), + [anon_sym_source_DASHenv] = ACTIONS(1026), + [anon_sym_register] = ACTIONS(1026), + [anon_sym_hide] = ACTIONS(1026), + [anon_sym_hide_DASHenv] = ACTIONS(1026), + [anon_sym_overlay] = ACTIONS(1026), + [anon_sym_as] = ACTIONS(1026), + [anon_sym_PLUS2] = ACTIONS(1026), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1028), + [anon_sym_DOT_DOT2] = ACTIONS(2282), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2284), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2284), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1028), + [aux_sym__val_number_decimal_token1] = ACTIONS(1026), + [aux_sym__val_number_decimal_token2] = ACTIONS(1028), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), + [aux_sym__val_number_token1] = ACTIONS(1028), + [aux_sym__val_number_token2] = ACTIONS(1028), + [aux_sym__val_number_token3] = ACTIONS(1028), + [aux_sym__val_number_token4] = ACTIONS(1026), + [aux_sym__val_number_token5] = ACTIONS(1026), + [aux_sym__val_number_token6] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1028), + [sym__str_single_quotes] = ACTIONS(1028), + [sym__str_back_ticks] = ACTIONS(1028), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1028), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1028), }, - [551] = { - [sym_comment] = STATE(551), - [anon_sym_export] = ACTIONS(2155), - [anon_sym_alias] = ACTIONS(2155), - [anon_sym_let] = ACTIONS(2155), - [anon_sym_let_DASHenv] = ACTIONS(2155), - [anon_sym_mut] = ACTIONS(2155), - [anon_sym_const] = ACTIONS(2155), - [aux_sym_cmd_identifier_token1] = ACTIONS(2155), - [aux_sym_cmd_identifier_token2] = ACTIONS(2157), - [aux_sym_cmd_identifier_token3] = ACTIONS(2157), - [aux_sym_cmd_identifier_token4] = ACTIONS(2157), - [aux_sym_cmd_identifier_token5] = ACTIONS(2157), - [aux_sym_cmd_identifier_token6] = ACTIONS(2157), - [aux_sym_cmd_identifier_token7] = ACTIONS(2157), - [aux_sym_cmd_identifier_token8] = ACTIONS(2155), - [aux_sym_cmd_identifier_token9] = ACTIONS(2155), - [aux_sym_cmd_identifier_token10] = ACTIONS(2157), - [aux_sym_cmd_identifier_token11] = ACTIONS(2157), - [aux_sym_cmd_identifier_token12] = ACTIONS(2155), - [aux_sym_cmd_identifier_token13] = ACTIONS(2155), - [aux_sym_cmd_identifier_token14] = ACTIONS(2155), - [aux_sym_cmd_identifier_token15] = ACTIONS(2155), - [aux_sym_cmd_identifier_token16] = ACTIONS(2157), - [aux_sym_cmd_identifier_token17] = ACTIONS(2157), - [aux_sym_cmd_identifier_token18] = ACTIONS(2157), - [aux_sym_cmd_identifier_token19] = ACTIONS(2157), - [aux_sym_cmd_identifier_token20] = ACTIONS(2157), - [aux_sym_cmd_identifier_token21] = ACTIONS(2157), - [aux_sym_cmd_identifier_token22] = ACTIONS(2157), - [aux_sym_cmd_identifier_token23] = ACTIONS(2157), - [aux_sym_cmd_identifier_token24] = ACTIONS(2157), - [aux_sym_cmd_identifier_token25] = ACTIONS(2157), - [aux_sym_cmd_identifier_token26] = ACTIONS(2157), - [aux_sym_cmd_identifier_token27] = ACTIONS(2157), - [aux_sym_cmd_identifier_token28] = ACTIONS(2157), - [aux_sym_cmd_identifier_token29] = ACTIONS(2157), - [aux_sym_cmd_identifier_token30] = ACTIONS(2157), - [aux_sym_cmd_identifier_token31] = ACTIONS(2157), - [aux_sym_cmd_identifier_token32] = ACTIONS(2157), - [aux_sym_cmd_identifier_token33] = ACTIONS(2157), - [aux_sym_cmd_identifier_token34] = ACTIONS(2155), - [aux_sym_cmd_identifier_token35] = ACTIONS(2157), - [aux_sym_cmd_identifier_token36] = ACTIONS(2157), - [aux_sym_cmd_identifier_token37] = ACTIONS(2157), - [aux_sym_cmd_identifier_token38] = ACTIONS(2155), - [aux_sym_cmd_identifier_token39] = ACTIONS(2157), - [aux_sym_cmd_identifier_token40] = ACTIONS(2157), - [anon_sym_def] = ACTIONS(2155), - [anon_sym_export_DASHenv] = ACTIONS(2155), - [anon_sym_extern] = ACTIONS(2155), - [anon_sym_module] = ACTIONS(2155), - [anon_sym_use] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(2157), - [anon_sym_DOLLAR] = ACTIONS(2157), - [anon_sym_error] = ACTIONS(2155), - [anon_sym_DASH2] = ACTIONS(2155), - [anon_sym_break] = ACTIONS(2155), - [anon_sym_continue] = ACTIONS(2155), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_in2] = ACTIONS(2155), - [anon_sym_loop] = ACTIONS(2155), - [anon_sym_make] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(2155), - [anon_sym_do] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2155), - [anon_sym_else] = ACTIONS(2155), - [anon_sym_match] = ACTIONS(2155), - [anon_sym_RBRACE] = ACTIONS(2157), - [anon_sym_try] = ACTIONS(2155), - [anon_sym_catch] = ACTIONS(2155), - [anon_sym_return] = ACTIONS(2155), - [anon_sym_source] = ACTIONS(2155), - [anon_sym_source_DASHenv] = ACTIONS(2155), - [anon_sym_register] = ACTIONS(2155), - [anon_sym_hide] = ACTIONS(2155), - [anon_sym_hide_DASHenv] = ACTIONS(2155), - [anon_sym_overlay] = ACTIONS(2155), - [anon_sym_as] = ACTIONS(2155), - [anon_sym_PLUS2] = ACTIONS(2155), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2157), - [anon_sym_DOT_DOT2] = ACTIONS(2230), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2232), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2232), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2157), - [aux_sym__val_number_decimal_token1] = ACTIONS(2155), - [aux_sym__val_number_decimal_token2] = ACTIONS(2157), - [aux_sym__val_number_decimal_token3] = ACTIONS(2157), - [aux_sym__val_number_decimal_token4] = ACTIONS(2157), - [aux_sym__val_number_token1] = ACTIONS(2157), - [aux_sym__val_number_token2] = ACTIONS(2157), - [aux_sym__val_number_token3] = ACTIONS(2157), - [aux_sym__val_number_token4] = ACTIONS(2155), - [aux_sym__val_number_token5] = ACTIONS(2155), - [aux_sym__val_number_token6] = ACTIONS(2155), - [anon_sym_DQUOTE] = ACTIONS(2157), - [sym__str_single_quotes] = ACTIONS(2157), - [sym__str_back_ticks] = ACTIONS(2157), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2157), + [556] = { + [sym_comment] = STATE(556), + [anon_sym_export] = ACTIONS(1765), + [anon_sym_alias] = ACTIONS(1765), + [anon_sym_let] = ACTIONS(1765), + [anon_sym_let_DASHenv] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [aux_sym_cmd_identifier_token1] = ACTIONS(1765), + [aux_sym_cmd_identifier_token2] = ACTIONS(1767), + [aux_sym_cmd_identifier_token3] = ACTIONS(1767), + [aux_sym_cmd_identifier_token4] = ACTIONS(1767), + [aux_sym_cmd_identifier_token5] = ACTIONS(1767), + [aux_sym_cmd_identifier_token6] = ACTIONS(1767), + [aux_sym_cmd_identifier_token7] = ACTIONS(1767), + [aux_sym_cmd_identifier_token8] = ACTIONS(1765), + [aux_sym_cmd_identifier_token9] = ACTIONS(1765), + [aux_sym_cmd_identifier_token10] = ACTIONS(1767), + [aux_sym_cmd_identifier_token11] = ACTIONS(1767), + [aux_sym_cmd_identifier_token12] = ACTIONS(1765), + [aux_sym_cmd_identifier_token13] = ACTIONS(1765), + [aux_sym_cmd_identifier_token14] = ACTIONS(1765), + [aux_sym_cmd_identifier_token15] = ACTIONS(1765), + [aux_sym_cmd_identifier_token16] = ACTIONS(1767), + [aux_sym_cmd_identifier_token17] = ACTIONS(1767), + [aux_sym_cmd_identifier_token18] = ACTIONS(1767), + [aux_sym_cmd_identifier_token19] = ACTIONS(1767), + [aux_sym_cmd_identifier_token20] = ACTIONS(1767), + [aux_sym_cmd_identifier_token21] = ACTIONS(1767), + [aux_sym_cmd_identifier_token22] = ACTIONS(1767), + [aux_sym_cmd_identifier_token23] = ACTIONS(1767), + [aux_sym_cmd_identifier_token24] = ACTIONS(1767), + [aux_sym_cmd_identifier_token25] = ACTIONS(1767), + [aux_sym_cmd_identifier_token26] = ACTIONS(1767), + [aux_sym_cmd_identifier_token27] = ACTIONS(1767), + [aux_sym_cmd_identifier_token28] = ACTIONS(1767), + [aux_sym_cmd_identifier_token29] = ACTIONS(1767), + [aux_sym_cmd_identifier_token30] = ACTIONS(1767), + [aux_sym_cmd_identifier_token31] = ACTIONS(1767), + [aux_sym_cmd_identifier_token32] = ACTIONS(1767), + [aux_sym_cmd_identifier_token33] = ACTIONS(1767), + [aux_sym_cmd_identifier_token34] = ACTIONS(1765), + [aux_sym_cmd_identifier_token35] = ACTIONS(1767), + [aux_sym_cmd_identifier_token36] = ACTIONS(1767), + [aux_sym_cmd_identifier_token37] = ACTIONS(1767), + [aux_sym_cmd_identifier_token38] = ACTIONS(1765), + [aux_sym_cmd_identifier_token39] = ACTIONS(1767), + [aux_sym_cmd_identifier_token40] = ACTIONS(1767), + [anon_sym_def] = ACTIONS(1765), + [anon_sym_export_DASHenv] = ACTIONS(1765), + [anon_sym_extern] = ACTIONS(1765), + [anon_sym_module] = ACTIONS(1765), + [anon_sym_use] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1767), + [anon_sym_error] = ACTIONS(1765), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_in2] = ACTIONS(1765), + [anon_sym_loop] = ACTIONS(1765), + [anon_sym_make] = ACTIONS(1765), + [anon_sym_while] = ACTIONS(1765), + [anon_sym_do] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_else] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_try] = ACTIONS(1765), + [anon_sym_catch] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_source] = ACTIONS(1765), + [anon_sym_source_DASHenv] = ACTIONS(1765), + [anon_sym_register] = ACTIONS(1765), + [anon_sym_hide] = ACTIONS(1765), + [anon_sym_hide_DASHenv] = ACTIONS(1765), + [anon_sym_overlay] = ACTIONS(1765), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_PLUS2] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), + [anon_sym_DOT_DOT2] = ACTIONS(1765), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1765), + [aux_sym__val_number_token5] = ACTIONS(1765), + [aux_sym__val_number_token6] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2157), + [sym_raw_string_begin] = ACTIONS(1767), }, - [552] = { - [sym_comment] = STATE(552), - [anon_sym_export] = ACTIONS(1735), - [anon_sym_alias] = ACTIONS(1735), - [anon_sym_let] = ACTIONS(1735), - [anon_sym_let_DASHenv] = ACTIONS(1735), - [anon_sym_mut] = ACTIONS(1735), - [anon_sym_const] = ACTIONS(1735), - [aux_sym_cmd_identifier_token1] = ACTIONS(1735), + [557] = { + [sym_comment] = STATE(557), + [anon_sym_export] = ACTIONS(1733), + [anon_sym_alias] = ACTIONS(1733), + [anon_sym_let] = ACTIONS(1733), + [anon_sym_let_DASHenv] = ACTIONS(1733), + [anon_sym_mut] = ACTIONS(1733), + [anon_sym_const] = ACTIONS(1733), + [aux_sym_cmd_identifier_token1] = ACTIONS(1733), [aux_sym_cmd_identifier_token2] = ACTIONS(1737), [aux_sym_cmd_identifier_token3] = ACTIONS(1737), [aux_sym_cmd_identifier_token4] = ACTIONS(1737), [aux_sym_cmd_identifier_token5] = ACTIONS(1737), [aux_sym_cmd_identifier_token6] = ACTIONS(1737), [aux_sym_cmd_identifier_token7] = ACTIONS(1737), - [aux_sym_cmd_identifier_token8] = ACTIONS(1735), - [aux_sym_cmd_identifier_token9] = ACTIONS(1735), + [aux_sym_cmd_identifier_token8] = ACTIONS(1733), + [aux_sym_cmd_identifier_token9] = ACTIONS(1733), [aux_sym_cmd_identifier_token10] = ACTIONS(1737), [aux_sym_cmd_identifier_token11] = ACTIONS(1737), - [aux_sym_cmd_identifier_token12] = ACTIONS(1735), - [aux_sym_cmd_identifier_token13] = ACTIONS(1735), - [aux_sym_cmd_identifier_token14] = ACTIONS(1735), - [aux_sym_cmd_identifier_token15] = ACTIONS(1735), + [aux_sym_cmd_identifier_token12] = ACTIONS(1733), + [aux_sym_cmd_identifier_token13] = ACTIONS(1733), + [aux_sym_cmd_identifier_token14] = ACTIONS(1733), + [aux_sym_cmd_identifier_token15] = ACTIONS(1733), [aux_sym_cmd_identifier_token16] = ACTIONS(1737), [aux_sym_cmd_identifier_token17] = ACTIONS(1737), [aux_sym_cmd_identifier_token18] = ACTIONS(1737), @@ -135065,60 +135894,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(1737), [aux_sym_cmd_identifier_token32] = ACTIONS(1737), [aux_sym_cmd_identifier_token33] = ACTIONS(1737), - [aux_sym_cmd_identifier_token34] = ACTIONS(1735), + [aux_sym_cmd_identifier_token34] = ACTIONS(1733), [aux_sym_cmd_identifier_token35] = ACTIONS(1737), [aux_sym_cmd_identifier_token36] = ACTIONS(1737), [aux_sym_cmd_identifier_token37] = ACTIONS(1737), - [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token38] = ACTIONS(1733), [aux_sym_cmd_identifier_token39] = ACTIONS(1737), [aux_sym_cmd_identifier_token40] = ACTIONS(1737), - [anon_sym_def] = ACTIONS(1735), - [anon_sym_export_DASHenv] = ACTIONS(1735), - [anon_sym_extern] = ACTIONS(1735), - [anon_sym_module] = ACTIONS(1735), - [anon_sym_use] = ACTIONS(1735), + [anon_sym_def] = ACTIONS(1733), + [anon_sym_export_DASHenv] = ACTIONS(1733), + [anon_sym_extern] = ACTIONS(1733), + [anon_sym_module] = ACTIONS(1733), + [anon_sym_use] = ACTIONS(1733), [anon_sym_LPAREN] = ACTIONS(1737), [anon_sym_DOLLAR] = ACTIONS(1737), - [anon_sym_error] = ACTIONS(1735), - [anon_sym_DASH2] = ACTIONS(1735), - [anon_sym_break] = ACTIONS(1735), - [anon_sym_continue] = ACTIONS(1735), - [anon_sym_for] = ACTIONS(1735), - [anon_sym_in2] = ACTIONS(1735), - [anon_sym_loop] = ACTIONS(1735), - [anon_sym_make] = ACTIONS(1735), - [anon_sym_while] = ACTIONS(1735), - [anon_sym_do] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(1735), - [anon_sym_else] = ACTIONS(1735), - [anon_sym_match] = ACTIONS(1735), + [anon_sym_error] = ACTIONS(1733), + [anon_sym_DASH2] = ACTIONS(1733), + [anon_sym_break] = ACTIONS(1733), + [anon_sym_continue] = ACTIONS(1733), + [anon_sym_for] = ACTIONS(1733), + [anon_sym_in2] = ACTIONS(1733), + [anon_sym_loop] = ACTIONS(1733), + [anon_sym_make] = ACTIONS(1733), + [anon_sym_while] = ACTIONS(1733), + [anon_sym_do] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1733), + [anon_sym_else] = ACTIONS(1733), + [anon_sym_match] = ACTIONS(1733), [anon_sym_RBRACE] = ACTIONS(1737), - [anon_sym_try] = ACTIONS(1735), - [anon_sym_catch] = ACTIONS(1735), - [anon_sym_return] = ACTIONS(1735), - [anon_sym_source] = ACTIONS(1735), - [anon_sym_source_DASHenv] = ACTIONS(1735), - [anon_sym_register] = ACTIONS(1735), - [anon_sym_hide] = ACTIONS(1735), - [anon_sym_hide_DASHenv] = ACTIONS(1735), - [anon_sym_overlay] = ACTIONS(1735), - [anon_sym_as] = ACTIONS(1735), - [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_try] = ACTIONS(1733), + [anon_sym_catch] = ACTIONS(1733), + [anon_sym_return] = ACTIONS(1733), + [anon_sym_source] = ACTIONS(1733), + [anon_sym_source_DASHenv] = ACTIONS(1733), + [anon_sym_register] = ACTIONS(1733), + [anon_sym_hide] = ACTIONS(1733), + [anon_sym_hide_DASHenv] = ACTIONS(1733), + [anon_sym_overlay] = ACTIONS(1733), + [anon_sym_as] = ACTIONS(1733), + [anon_sym_PLUS2] = ACTIONS(1733), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1737), - [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT_DOT2] = ACTIONS(1733), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1737), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token1] = ACTIONS(1733), [aux_sym__val_number_decimal_token2] = ACTIONS(1737), [aux_sym__val_number_decimal_token3] = ACTIONS(1737), [aux_sym__val_number_decimal_token4] = ACTIONS(1737), [aux_sym__val_number_token1] = ACTIONS(1737), [aux_sym__val_number_token2] = ACTIONS(1737), [aux_sym__val_number_token3] = ACTIONS(1737), - [aux_sym__val_number_token4] = ACTIONS(1735), - [aux_sym__val_number_token5] = ACTIONS(1735), - [aux_sym__val_number_token6] = ACTIONS(1735), + [aux_sym__val_number_token4] = ACTIONS(1733), + [aux_sym__val_number_token5] = ACTIONS(1733), + [aux_sym__val_number_token6] = ACTIONS(1733), [anon_sym_DQUOTE] = ACTIONS(1737), [sym__str_single_quotes] = ACTIONS(1737), [sym__str_back_ticks] = ACTIONS(1737), @@ -135126,1028 +135955,620 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1737), }, - [553] = { - [sym_comment] = STATE(553), - [anon_sym_export] = ACTIONS(2129), - [anon_sym_alias] = ACTIONS(2129), - [anon_sym_let] = ACTIONS(2129), - [anon_sym_let_DASHenv] = ACTIONS(2129), - [anon_sym_mut] = ACTIONS(2129), - [anon_sym_const] = ACTIONS(2129), - [aux_sym_cmd_identifier_token1] = ACTIONS(2129), - [aux_sym_cmd_identifier_token2] = ACTIONS(2131), - [aux_sym_cmd_identifier_token3] = ACTIONS(2131), - [aux_sym_cmd_identifier_token4] = ACTIONS(2131), - [aux_sym_cmd_identifier_token5] = ACTIONS(2131), - [aux_sym_cmd_identifier_token6] = ACTIONS(2131), - [aux_sym_cmd_identifier_token7] = ACTIONS(2131), - [aux_sym_cmd_identifier_token8] = ACTIONS(2129), - [aux_sym_cmd_identifier_token9] = ACTIONS(2129), - [aux_sym_cmd_identifier_token10] = ACTIONS(2131), - [aux_sym_cmd_identifier_token11] = ACTIONS(2131), - [aux_sym_cmd_identifier_token12] = ACTIONS(2129), - [aux_sym_cmd_identifier_token13] = ACTIONS(2129), - [aux_sym_cmd_identifier_token14] = ACTIONS(2129), - [aux_sym_cmd_identifier_token15] = ACTIONS(2129), - [aux_sym_cmd_identifier_token16] = ACTIONS(2131), - [aux_sym_cmd_identifier_token17] = ACTIONS(2131), - [aux_sym_cmd_identifier_token18] = ACTIONS(2131), - [aux_sym_cmd_identifier_token19] = ACTIONS(2131), - [aux_sym_cmd_identifier_token20] = ACTIONS(2131), - [aux_sym_cmd_identifier_token21] = ACTIONS(2131), - [aux_sym_cmd_identifier_token22] = ACTIONS(2131), - [aux_sym_cmd_identifier_token23] = ACTIONS(2131), - [aux_sym_cmd_identifier_token24] = ACTIONS(2131), - [aux_sym_cmd_identifier_token25] = ACTIONS(2131), - [aux_sym_cmd_identifier_token26] = ACTIONS(2131), - [aux_sym_cmd_identifier_token27] = ACTIONS(2131), - [aux_sym_cmd_identifier_token28] = ACTIONS(2131), - [aux_sym_cmd_identifier_token29] = ACTIONS(2131), - [aux_sym_cmd_identifier_token30] = ACTIONS(2131), - [aux_sym_cmd_identifier_token31] = ACTIONS(2131), - [aux_sym_cmd_identifier_token32] = ACTIONS(2131), - [aux_sym_cmd_identifier_token33] = ACTIONS(2131), - [aux_sym_cmd_identifier_token34] = ACTIONS(2129), - [aux_sym_cmd_identifier_token35] = ACTIONS(2131), - [aux_sym_cmd_identifier_token36] = ACTIONS(2131), - [aux_sym_cmd_identifier_token37] = ACTIONS(2131), - [aux_sym_cmd_identifier_token38] = ACTIONS(2129), - [aux_sym_cmd_identifier_token39] = ACTIONS(2131), - [aux_sym_cmd_identifier_token40] = ACTIONS(2131), - [anon_sym_def] = ACTIONS(2129), - [anon_sym_export_DASHenv] = ACTIONS(2129), - [anon_sym_extern] = ACTIONS(2129), - [anon_sym_module] = ACTIONS(2129), - [anon_sym_use] = ACTIONS(2129), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_DOLLAR] = ACTIONS(2131), - [anon_sym_error] = ACTIONS(2129), - [anon_sym_DASH2] = ACTIONS(2129), - [anon_sym_break] = ACTIONS(2129), - [anon_sym_continue] = ACTIONS(2129), - [anon_sym_for] = ACTIONS(2129), - [anon_sym_in2] = ACTIONS(2129), - [anon_sym_loop] = ACTIONS(2129), - [anon_sym_make] = ACTIONS(2129), - [anon_sym_while] = ACTIONS(2129), - [anon_sym_do] = ACTIONS(2129), - [anon_sym_if] = ACTIONS(2129), - [anon_sym_else] = ACTIONS(2129), - [anon_sym_match] = ACTIONS(2129), - [anon_sym_RBRACE] = ACTIONS(2131), - [anon_sym_try] = ACTIONS(2129), - [anon_sym_catch] = ACTIONS(2129), - [anon_sym_return] = ACTIONS(2129), - [anon_sym_source] = ACTIONS(2129), - [anon_sym_source_DASHenv] = ACTIONS(2129), - [anon_sym_register] = ACTIONS(2129), - [anon_sym_hide] = ACTIONS(2129), - [anon_sym_hide_DASHenv] = ACTIONS(2129), - [anon_sym_overlay] = ACTIONS(2129), - [anon_sym_as] = ACTIONS(2129), - [anon_sym_PLUS2] = ACTIONS(2129), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2131), - [anon_sym_DOT_DOT2] = ACTIONS(2129), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2131), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2131), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2131), - [aux_sym__val_number_decimal_token1] = ACTIONS(2129), - [aux_sym__val_number_decimal_token2] = ACTIONS(2131), - [aux_sym__val_number_decimal_token3] = ACTIONS(2131), - [aux_sym__val_number_decimal_token4] = ACTIONS(2131), - [aux_sym__val_number_token1] = ACTIONS(2131), - [aux_sym__val_number_token2] = ACTIONS(2131), - [aux_sym__val_number_token3] = ACTIONS(2131), - [aux_sym__val_number_token4] = ACTIONS(2129), - [aux_sym__val_number_token5] = ACTIONS(2129), - [aux_sym__val_number_token6] = ACTIONS(2129), - [anon_sym_DQUOTE] = ACTIONS(2131), - [sym__str_single_quotes] = ACTIONS(2131), - [sym__str_back_ticks] = ACTIONS(2131), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2131), - }, - [554] = { - [sym__expr_parenthesized_immediate] = STATE(7368), - [sym_comment] = STATE(554), - [anon_sym_export] = ACTIONS(2151), - [anon_sym_alias] = ACTIONS(2151), - [anon_sym_let] = ACTIONS(2151), - [anon_sym_let_DASHenv] = ACTIONS(2151), - [anon_sym_mut] = ACTIONS(2151), - [anon_sym_const] = ACTIONS(2151), - [aux_sym_cmd_identifier_token1] = ACTIONS(2151), - [aux_sym_cmd_identifier_token2] = ACTIONS(2151), - [aux_sym_cmd_identifier_token3] = ACTIONS(2151), - [aux_sym_cmd_identifier_token4] = ACTIONS(2151), - [aux_sym_cmd_identifier_token5] = ACTIONS(2151), - [aux_sym_cmd_identifier_token6] = ACTIONS(2151), - [aux_sym_cmd_identifier_token7] = ACTIONS(2151), - [aux_sym_cmd_identifier_token8] = ACTIONS(2151), - [aux_sym_cmd_identifier_token9] = ACTIONS(2151), - [aux_sym_cmd_identifier_token10] = ACTIONS(2151), - [aux_sym_cmd_identifier_token11] = ACTIONS(2151), - [aux_sym_cmd_identifier_token12] = ACTIONS(2151), - [aux_sym_cmd_identifier_token13] = ACTIONS(2151), - [aux_sym_cmd_identifier_token14] = ACTIONS(2151), - [aux_sym_cmd_identifier_token15] = ACTIONS(2151), - [aux_sym_cmd_identifier_token16] = ACTIONS(2151), - [aux_sym_cmd_identifier_token17] = ACTIONS(2151), - [aux_sym_cmd_identifier_token18] = ACTIONS(2151), - [aux_sym_cmd_identifier_token19] = ACTIONS(2151), - [aux_sym_cmd_identifier_token20] = ACTIONS(2151), - [aux_sym_cmd_identifier_token21] = ACTIONS(2151), - [aux_sym_cmd_identifier_token22] = ACTIONS(2151), - [aux_sym_cmd_identifier_token23] = ACTIONS(2151), - [aux_sym_cmd_identifier_token24] = ACTIONS(2151), - [aux_sym_cmd_identifier_token25] = ACTIONS(2151), - [aux_sym_cmd_identifier_token26] = ACTIONS(2151), - [aux_sym_cmd_identifier_token27] = ACTIONS(2151), - [aux_sym_cmd_identifier_token28] = ACTIONS(2151), - [aux_sym_cmd_identifier_token29] = ACTIONS(2151), - [aux_sym_cmd_identifier_token30] = ACTIONS(2151), - [aux_sym_cmd_identifier_token31] = ACTIONS(2151), - [aux_sym_cmd_identifier_token32] = ACTIONS(2151), - [aux_sym_cmd_identifier_token33] = ACTIONS(2151), - [aux_sym_cmd_identifier_token34] = ACTIONS(2151), - [aux_sym_cmd_identifier_token35] = ACTIONS(2151), - [aux_sym_cmd_identifier_token36] = ACTIONS(2151), - [aux_sym_cmd_identifier_token37] = ACTIONS(2151), - [aux_sym_cmd_identifier_token38] = ACTIONS(2151), - [aux_sym_cmd_identifier_token39] = ACTIONS(2151), - [aux_sym_cmd_identifier_token40] = ACTIONS(2151), - [anon_sym_def] = ACTIONS(2151), - [anon_sym_export_DASHenv] = ACTIONS(2151), - [anon_sym_extern] = ACTIONS(2151), - [anon_sym_module] = ACTIONS(2151), - [anon_sym_use] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_error] = ACTIONS(2151), - [anon_sym_DASH2] = ACTIONS(2151), - [anon_sym_break] = ACTIONS(2151), - [anon_sym_continue] = ACTIONS(2151), - [anon_sym_for] = ACTIONS(2151), - [anon_sym_in2] = ACTIONS(2151), - [anon_sym_loop] = ACTIONS(2151), - [anon_sym_make] = ACTIONS(2151), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_do] = ACTIONS(2151), - [anon_sym_if] = ACTIONS(2151), - [anon_sym_else] = ACTIONS(2151), - [anon_sym_match] = ACTIONS(2151), - [anon_sym_RBRACE] = ACTIONS(2151), - [anon_sym_try] = ACTIONS(2151), - [anon_sym_catch] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2151), - [anon_sym_source] = ACTIONS(2151), - [anon_sym_source_DASHenv] = ACTIONS(2151), - [anon_sym_register] = ACTIONS(2151), - [anon_sym_hide] = ACTIONS(2151), - [anon_sym_hide_DASHenv] = ACTIONS(2151), - [anon_sym_overlay] = ACTIONS(2151), - [anon_sym_as] = ACTIONS(2151), - [anon_sym_LPAREN2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(2151), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2151), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2151), - [aux_sym__val_number_decimal_token1] = ACTIONS(2151), - [aux_sym__val_number_decimal_token2] = ACTIONS(2151), - [aux_sym__val_number_decimal_token3] = ACTIONS(2151), - [aux_sym__val_number_decimal_token4] = ACTIONS(2151), - [aux_sym__val_number_token1] = ACTIONS(2151), - [aux_sym__val_number_token2] = ACTIONS(2151), - [aux_sym__val_number_token3] = ACTIONS(2151), - [aux_sym__val_number_token4] = ACTIONS(2151), - [aux_sym__val_number_token5] = ACTIONS(2151), - [aux_sym__val_number_token6] = ACTIONS(2151), - [anon_sym_DQUOTE] = ACTIONS(2151), - [sym__str_single_quotes] = ACTIONS(2151), - [sym__str_back_ticks] = ACTIONS(2151), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2151), - [sym__entry_separator] = ACTIONS(2153), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2153), - }, - [555] = { - [sym_comment] = STATE(555), - [anon_sym_export] = ACTIONS(2183), - [anon_sym_alias] = ACTIONS(2183), - [anon_sym_let] = ACTIONS(2183), - [anon_sym_let_DASHenv] = ACTIONS(2183), - [anon_sym_mut] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [aux_sym_cmd_identifier_token1] = ACTIONS(2183), - [aux_sym_cmd_identifier_token2] = ACTIONS(2185), - [aux_sym_cmd_identifier_token3] = ACTIONS(2185), - [aux_sym_cmd_identifier_token4] = ACTIONS(2185), - [aux_sym_cmd_identifier_token5] = ACTIONS(2185), - [aux_sym_cmd_identifier_token6] = ACTIONS(2185), - [aux_sym_cmd_identifier_token7] = ACTIONS(2185), - [aux_sym_cmd_identifier_token8] = ACTIONS(2183), - [aux_sym_cmd_identifier_token9] = ACTIONS(2183), - [aux_sym_cmd_identifier_token10] = ACTIONS(2185), - [aux_sym_cmd_identifier_token11] = ACTIONS(2185), - [aux_sym_cmd_identifier_token12] = ACTIONS(2183), - [aux_sym_cmd_identifier_token13] = ACTIONS(2183), - [aux_sym_cmd_identifier_token14] = ACTIONS(2183), - [aux_sym_cmd_identifier_token15] = ACTIONS(2183), - [aux_sym_cmd_identifier_token16] = ACTIONS(2185), - [aux_sym_cmd_identifier_token17] = ACTIONS(2185), - [aux_sym_cmd_identifier_token18] = ACTIONS(2185), - [aux_sym_cmd_identifier_token19] = ACTIONS(2185), - [aux_sym_cmd_identifier_token20] = ACTIONS(2185), - [aux_sym_cmd_identifier_token21] = ACTIONS(2185), - [aux_sym_cmd_identifier_token22] = ACTIONS(2185), - [aux_sym_cmd_identifier_token23] = ACTIONS(2185), - [aux_sym_cmd_identifier_token24] = ACTIONS(2185), - [aux_sym_cmd_identifier_token25] = ACTIONS(2185), - [aux_sym_cmd_identifier_token26] = ACTIONS(2185), - [aux_sym_cmd_identifier_token27] = ACTIONS(2185), - [aux_sym_cmd_identifier_token28] = ACTIONS(2185), - [aux_sym_cmd_identifier_token29] = ACTIONS(2185), - [aux_sym_cmd_identifier_token30] = ACTIONS(2185), - [aux_sym_cmd_identifier_token31] = ACTIONS(2185), - [aux_sym_cmd_identifier_token32] = ACTIONS(2185), - [aux_sym_cmd_identifier_token33] = ACTIONS(2185), - [aux_sym_cmd_identifier_token34] = ACTIONS(2183), - [aux_sym_cmd_identifier_token35] = ACTIONS(2185), - [aux_sym_cmd_identifier_token36] = ACTIONS(2185), - [aux_sym_cmd_identifier_token37] = ACTIONS(2185), - [aux_sym_cmd_identifier_token38] = ACTIONS(2183), - [aux_sym_cmd_identifier_token39] = ACTIONS(2185), - [aux_sym_cmd_identifier_token40] = ACTIONS(2185), - [anon_sym_def] = ACTIONS(2183), - [anon_sym_export_DASHenv] = ACTIONS(2183), - [anon_sym_extern] = ACTIONS(2183), - [anon_sym_module] = ACTIONS(2183), - [anon_sym_use] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2185), - [anon_sym_error] = ACTIONS(2183), - [anon_sym_DASH2] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_in2] = ACTIONS(2183), - [anon_sym_loop] = ACTIONS(2183), - [anon_sym_make] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_else] = ACTIONS(2183), - [anon_sym_match] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2185), - [anon_sym_try] = ACTIONS(2183), - [anon_sym_catch] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_source] = ACTIONS(2183), - [anon_sym_source_DASHenv] = ACTIONS(2183), - [anon_sym_register] = ACTIONS(2183), - [anon_sym_hide] = ACTIONS(2183), - [anon_sym_hide_DASHenv] = ACTIONS(2183), - [anon_sym_overlay] = ACTIONS(2183), - [anon_sym_as] = ACTIONS(2183), - [anon_sym_PLUS2] = ACTIONS(2183), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2185), - [anon_sym_DOT_DOT2] = ACTIONS(2183), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2185), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2185), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2185), - [aux_sym__val_number_decimal_token1] = ACTIONS(2183), - [aux_sym__val_number_decimal_token2] = ACTIONS(2185), - [aux_sym__val_number_decimal_token3] = ACTIONS(2185), - [aux_sym__val_number_decimal_token4] = ACTIONS(2185), - [aux_sym__val_number_token1] = ACTIONS(2185), - [aux_sym__val_number_token2] = ACTIONS(2185), - [aux_sym__val_number_token3] = ACTIONS(2185), - [aux_sym__val_number_token4] = ACTIONS(2183), - [aux_sym__val_number_token5] = ACTIONS(2183), - [aux_sym__val_number_token6] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2185), - [sym__str_single_quotes] = ACTIONS(2185), - [sym__str_back_ticks] = ACTIONS(2185), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2185), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2185), - }, - [556] = { - [sym__expr_parenthesized_immediate] = STATE(7368), - [sym_comment] = STATE(556), - [anon_sym_export] = ACTIONS(2155), - [anon_sym_alias] = ACTIONS(2155), - [anon_sym_let] = ACTIONS(2155), - [anon_sym_let_DASHenv] = ACTIONS(2155), - [anon_sym_mut] = ACTIONS(2155), - [anon_sym_const] = ACTIONS(2155), - [aux_sym_cmd_identifier_token1] = ACTIONS(2155), - [aux_sym_cmd_identifier_token2] = ACTIONS(2155), - [aux_sym_cmd_identifier_token3] = ACTIONS(2155), - [aux_sym_cmd_identifier_token4] = ACTIONS(2155), - [aux_sym_cmd_identifier_token5] = ACTIONS(2155), - [aux_sym_cmd_identifier_token6] = ACTIONS(2155), - [aux_sym_cmd_identifier_token7] = ACTIONS(2155), - [aux_sym_cmd_identifier_token8] = ACTIONS(2155), - [aux_sym_cmd_identifier_token9] = ACTIONS(2155), - [aux_sym_cmd_identifier_token10] = ACTIONS(2155), - [aux_sym_cmd_identifier_token11] = ACTIONS(2155), - [aux_sym_cmd_identifier_token12] = ACTIONS(2155), - [aux_sym_cmd_identifier_token13] = ACTIONS(2155), - [aux_sym_cmd_identifier_token14] = ACTIONS(2155), - [aux_sym_cmd_identifier_token15] = ACTIONS(2155), - [aux_sym_cmd_identifier_token16] = ACTIONS(2155), - [aux_sym_cmd_identifier_token17] = ACTIONS(2155), - [aux_sym_cmd_identifier_token18] = ACTIONS(2155), - [aux_sym_cmd_identifier_token19] = ACTIONS(2155), - [aux_sym_cmd_identifier_token20] = ACTIONS(2155), - [aux_sym_cmd_identifier_token21] = ACTIONS(2155), - [aux_sym_cmd_identifier_token22] = ACTIONS(2155), - [aux_sym_cmd_identifier_token23] = ACTIONS(2155), - [aux_sym_cmd_identifier_token24] = ACTIONS(2155), - [aux_sym_cmd_identifier_token25] = ACTIONS(2155), - [aux_sym_cmd_identifier_token26] = ACTIONS(2155), - [aux_sym_cmd_identifier_token27] = ACTIONS(2155), - [aux_sym_cmd_identifier_token28] = ACTIONS(2155), - [aux_sym_cmd_identifier_token29] = ACTIONS(2155), - [aux_sym_cmd_identifier_token30] = ACTIONS(2155), - [aux_sym_cmd_identifier_token31] = ACTIONS(2155), - [aux_sym_cmd_identifier_token32] = ACTIONS(2155), - [aux_sym_cmd_identifier_token33] = ACTIONS(2155), - [aux_sym_cmd_identifier_token34] = ACTIONS(2155), - [aux_sym_cmd_identifier_token35] = ACTIONS(2155), - [aux_sym_cmd_identifier_token36] = ACTIONS(2155), - [aux_sym_cmd_identifier_token37] = ACTIONS(2155), - [aux_sym_cmd_identifier_token38] = ACTIONS(2155), - [aux_sym_cmd_identifier_token39] = ACTIONS(2155), - [aux_sym_cmd_identifier_token40] = ACTIONS(2155), - [anon_sym_def] = ACTIONS(2155), - [anon_sym_export_DASHenv] = ACTIONS(2155), - [anon_sym_extern] = ACTIONS(2155), - [anon_sym_module] = ACTIONS(2155), - [anon_sym_use] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2155), - [anon_sym_error] = ACTIONS(2155), - [anon_sym_DASH2] = ACTIONS(2155), - [anon_sym_break] = ACTIONS(2155), - [anon_sym_continue] = ACTIONS(2155), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_in2] = ACTIONS(2155), - [anon_sym_loop] = ACTIONS(2155), - [anon_sym_make] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(2155), - [anon_sym_do] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2155), - [anon_sym_else] = ACTIONS(2155), - [anon_sym_match] = ACTIONS(2155), - [anon_sym_RBRACE] = ACTIONS(2155), - [anon_sym_try] = ACTIONS(2155), - [anon_sym_catch] = ACTIONS(2155), - [anon_sym_return] = ACTIONS(2155), - [anon_sym_source] = ACTIONS(2155), - [anon_sym_source_DASHenv] = ACTIONS(2155), - [anon_sym_register] = ACTIONS(2155), - [anon_sym_hide] = ACTIONS(2155), - [anon_sym_hide_DASHenv] = ACTIONS(2155), - [anon_sym_overlay] = ACTIONS(2155), - [anon_sym_as] = ACTIONS(2155), - [anon_sym_LPAREN2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(2155), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2155), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2155), - [aux_sym__val_number_decimal_token1] = ACTIONS(2155), - [aux_sym__val_number_decimal_token2] = ACTIONS(2155), - [aux_sym__val_number_decimal_token3] = ACTIONS(2155), - [aux_sym__val_number_decimal_token4] = ACTIONS(2155), - [aux_sym__val_number_token1] = ACTIONS(2155), - [aux_sym__val_number_token2] = ACTIONS(2155), - [aux_sym__val_number_token3] = ACTIONS(2155), - [aux_sym__val_number_token4] = ACTIONS(2155), - [aux_sym__val_number_token5] = ACTIONS(2155), - [aux_sym__val_number_token6] = ACTIONS(2155), - [anon_sym_DQUOTE] = ACTIONS(2155), - [sym__str_single_quotes] = ACTIONS(2155), - [sym__str_back_ticks] = ACTIONS(2155), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2155), - [sym__entry_separator] = ACTIONS(2157), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2157), - }, - [557] = { - [sym__expr_parenthesized_immediate] = STATE(7703), - [sym_comment] = STATE(557), - [anon_sym_export] = ACTIONS(2270), - [anon_sym_alias] = ACTIONS(2270), - [anon_sym_let] = ACTIONS(2270), - [anon_sym_let_DASHenv] = ACTIONS(2270), - [anon_sym_mut] = ACTIONS(2270), - [anon_sym_const] = ACTIONS(2270), - [aux_sym_cmd_identifier_token1] = ACTIONS(2270), - [aux_sym_cmd_identifier_token2] = ACTIONS(2270), - [aux_sym_cmd_identifier_token3] = ACTIONS(2270), - [aux_sym_cmd_identifier_token4] = ACTIONS(2270), - [aux_sym_cmd_identifier_token5] = ACTIONS(2270), - [aux_sym_cmd_identifier_token6] = ACTIONS(2270), - [aux_sym_cmd_identifier_token7] = ACTIONS(2270), - [aux_sym_cmd_identifier_token8] = ACTIONS(2270), - [aux_sym_cmd_identifier_token9] = ACTIONS(2270), - [aux_sym_cmd_identifier_token10] = ACTIONS(2270), - [aux_sym_cmd_identifier_token11] = ACTIONS(2270), - [aux_sym_cmd_identifier_token12] = ACTIONS(2270), - [aux_sym_cmd_identifier_token13] = ACTIONS(2270), - [aux_sym_cmd_identifier_token14] = ACTIONS(2270), - [aux_sym_cmd_identifier_token15] = ACTIONS(2270), - [aux_sym_cmd_identifier_token16] = ACTIONS(2270), - [aux_sym_cmd_identifier_token17] = ACTIONS(2270), - [aux_sym_cmd_identifier_token18] = ACTIONS(2270), - [aux_sym_cmd_identifier_token19] = ACTIONS(2270), - [aux_sym_cmd_identifier_token20] = ACTIONS(2270), - [aux_sym_cmd_identifier_token21] = ACTIONS(2270), - [aux_sym_cmd_identifier_token22] = ACTIONS(2270), - [aux_sym_cmd_identifier_token23] = ACTIONS(2270), - [aux_sym_cmd_identifier_token24] = ACTIONS(2270), - [aux_sym_cmd_identifier_token25] = ACTIONS(2270), - [aux_sym_cmd_identifier_token26] = ACTIONS(2270), - [aux_sym_cmd_identifier_token27] = ACTIONS(2270), - [aux_sym_cmd_identifier_token28] = ACTIONS(2270), - [aux_sym_cmd_identifier_token29] = ACTIONS(2270), - [aux_sym_cmd_identifier_token30] = ACTIONS(2270), - [aux_sym_cmd_identifier_token31] = ACTIONS(2270), - [aux_sym_cmd_identifier_token32] = ACTIONS(2270), - [aux_sym_cmd_identifier_token33] = ACTIONS(2270), - [aux_sym_cmd_identifier_token34] = ACTIONS(2270), - [aux_sym_cmd_identifier_token35] = ACTIONS(2270), - [aux_sym_cmd_identifier_token36] = ACTIONS(2270), - [aux_sym_cmd_identifier_token37] = ACTIONS(2270), - [aux_sym_cmd_identifier_token38] = ACTIONS(2270), - [aux_sym_cmd_identifier_token39] = ACTIONS(2270), - [aux_sym_cmd_identifier_token40] = ACTIONS(2270), - [anon_sym_def] = ACTIONS(2270), - [anon_sym_export_DASHenv] = ACTIONS(2270), - [anon_sym_extern] = ACTIONS(2270), - [anon_sym_module] = ACTIONS(2270), - [anon_sym_use] = ACTIONS(2270), - [anon_sym_LPAREN] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2270), - [anon_sym_error] = ACTIONS(2270), - [anon_sym_DASH2] = ACTIONS(2270), - [anon_sym_break] = ACTIONS(2270), - [anon_sym_continue] = ACTIONS(2270), - [anon_sym_for] = ACTIONS(2270), - [anon_sym_in2] = ACTIONS(2270), - [anon_sym_loop] = ACTIONS(2270), - [anon_sym_make] = ACTIONS(2270), - [anon_sym_while] = ACTIONS(2270), - [anon_sym_do] = ACTIONS(2270), - [anon_sym_if] = ACTIONS(2270), - [anon_sym_else] = ACTIONS(2270), - [anon_sym_match] = ACTIONS(2270), - [anon_sym_RBRACE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2270), - [anon_sym_catch] = ACTIONS(2270), - [anon_sym_return] = ACTIONS(2270), - [anon_sym_source] = ACTIONS(2270), - [anon_sym_source_DASHenv] = ACTIONS(2270), - [anon_sym_register] = ACTIONS(2270), - [anon_sym_hide] = ACTIONS(2270), - [anon_sym_hide_DASHenv] = ACTIONS(2270), - [anon_sym_overlay] = ACTIONS(2270), - [anon_sym_as] = ACTIONS(2270), - [anon_sym_LPAREN2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(2270), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2270), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2270), - [aux_sym__val_number_decimal_token1] = ACTIONS(2270), - [aux_sym__val_number_decimal_token2] = ACTIONS(2270), - [aux_sym__val_number_decimal_token3] = ACTIONS(2270), - [aux_sym__val_number_decimal_token4] = ACTIONS(2270), - [aux_sym__val_number_token1] = ACTIONS(2270), - [aux_sym__val_number_token2] = ACTIONS(2270), - [aux_sym__val_number_token3] = ACTIONS(2270), - [aux_sym__val_number_token4] = ACTIONS(2270), - [aux_sym__val_number_token5] = ACTIONS(2270), - [aux_sym__val_number_token6] = ACTIONS(2270), - [anon_sym_DQUOTE] = ACTIONS(2270), - [sym__str_single_quotes] = ACTIONS(2270), - [sym__str_back_ticks] = ACTIONS(2270), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2270), - [sym__entry_separator] = ACTIONS(2272), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2272), - }, [558] = { - [sym__expr_parenthesized_immediate] = STATE(7703), [sym_comment] = STATE(558), - [anon_sym_export] = ACTIONS(2274), - [anon_sym_alias] = ACTIONS(2274), - [anon_sym_let] = ACTIONS(2274), - [anon_sym_let_DASHenv] = ACTIONS(2274), - [anon_sym_mut] = ACTIONS(2274), - [anon_sym_const] = ACTIONS(2274), - [aux_sym_cmd_identifier_token1] = ACTIONS(2274), - [aux_sym_cmd_identifier_token2] = ACTIONS(2274), - [aux_sym_cmd_identifier_token3] = ACTIONS(2274), - [aux_sym_cmd_identifier_token4] = ACTIONS(2274), - [aux_sym_cmd_identifier_token5] = ACTIONS(2274), - [aux_sym_cmd_identifier_token6] = ACTIONS(2274), - [aux_sym_cmd_identifier_token7] = ACTIONS(2274), - [aux_sym_cmd_identifier_token8] = ACTIONS(2274), - [aux_sym_cmd_identifier_token9] = ACTIONS(2274), - [aux_sym_cmd_identifier_token10] = ACTIONS(2274), - [aux_sym_cmd_identifier_token11] = ACTIONS(2274), - [aux_sym_cmd_identifier_token12] = ACTIONS(2274), - [aux_sym_cmd_identifier_token13] = ACTIONS(2274), - [aux_sym_cmd_identifier_token14] = ACTIONS(2274), - [aux_sym_cmd_identifier_token15] = ACTIONS(2274), - [aux_sym_cmd_identifier_token16] = ACTIONS(2274), - [aux_sym_cmd_identifier_token17] = ACTIONS(2274), - [aux_sym_cmd_identifier_token18] = ACTIONS(2274), - [aux_sym_cmd_identifier_token19] = ACTIONS(2274), - [aux_sym_cmd_identifier_token20] = ACTIONS(2274), - [aux_sym_cmd_identifier_token21] = ACTIONS(2274), - [aux_sym_cmd_identifier_token22] = ACTIONS(2274), - [aux_sym_cmd_identifier_token23] = ACTIONS(2274), - [aux_sym_cmd_identifier_token24] = ACTIONS(2274), - [aux_sym_cmd_identifier_token25] = ACTIONS(2274), - [aux_sym_cmd_identifier_token26] = ACTIONS(2274), - [aux_sym_cmd_identifier_token27] = ACTIONS(2274), - [aux_sym_cmd_identifier_token28] = ACTIONS(2274), - [aux_sym_cmd_identifier_token29] = ACTIONS(2274), - [aux_sym_cmd_identifier_token30] = ACTIONS(2274), - [aux_sym_cmd_identifier_token31] = ACTIONS(2274), - [aux_sym_cmd_identifier_token32] = ACTIONS(2274), - [aux_sym_cmd_identifier_token33] = ACTIONS(2274), - [aux_sym_cmd_identifier_token34] = ACTIONS(2274), - [aux_sym_cmd_identifier_token35] = ACTIONS(2274), - [aux_sym_cmd_identifier_token36] = ACTIONS(2274), - [aux_sym_cmd_identifier_token37] = ACTIONS(2274), - [aux_sym_cmd_identifier_token38] = ACTIONS(2274), - [aux_sym_cmd_identifier_token39] = ACTIONS(2274), - [aux_sym_cmd_identifier_token40] = ACTIONS(2274), - [anon_sym_def] = ACTIONS(2274), - [anon_sym_export_DASHenv] = ACTIONS(2274), - [anon_sym_extern] = ACTIONS(2274), - [anon_sym_module] = ACTIONS(2274), - [anon_sym_use] = ACTIONS(2274), - [anon_sym_LPAREN] = ACTIONS(2274), - [anon_sym_DOLLAR] = ACTIONS(2274), - [anon_sym_error] = ACTIONS(2274), - [anon_sym_DASH2] = ACTIONS(2274), - [anon_sym_break] = ACTIONS(2274), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_for] = ACTIONS(2274), - [anon_sym_in2] = ACTIONS(2274), - [anon_sym_loop] = ACTIONS(2274), - [anon_sym_make] = ACTIONS(2274), - [anon_sym_while] = ACTIONS(2274), - [anon_sym_do] = ACTIONS(2274), - [anon_sym_if] = ACTIONS(2274), - [anon_sym_else] = ACTIONS(2274), - [anon_sym_match] = ACTIONS(2274), - [anon_sym_RBRACE] = ACTIONS(2274), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_catch] = ACTIONS(2274), - [anon_sym_return] = ACTIONS(2274), - [anon_sym_source] = ACTIONS(2274), - [anon_sym_source_DASHenv] = ACTIONS(2274), - [anon_sym_register] = ACTIONS(2274), - [anon_sym_hide] = ACTIONS(2274), - [anon_sym_hide_DASHenv] = ACTIONS(2274), - [anon_sym_overlay] = ACTIONS(2274), - [anon_sym_as] = ACTIONS(2274), - [anon_sym_LPAREN2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(2274), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2274), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2274), - [aux_sym__val_number_decimal_token1] = ACTIONS(2274), - [aux_sym__val_number_decimal_token2] = ACTIONS(2274), - [aux_sym__val_number_decimal_token3] = ACTIONS(2274), - [aux_sym__val_number_decimal_token4] = ACTIONS(2274), - [aux_sym__val_number_token1] = ACTIONS(2274), - [aux_sym__val_number_token2] = ACTIONS(2274), - [aux_sym__val_number_token3] = ACTIONS(2274), - [aux_sym__val_number_token4] = ACTIONS(2274), - [aux_sym__val_number_token5] = ACTIONS(2274), - [aux_sym__val_number_token6] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym__str_single_quotes] = ACTIONS(2274), - [sym__str_back_ticks] = ACTIONS(2274), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2274), - [sym__entry_separator] = ACTIONS(2276), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2276), + [anon_sym_export] = ACTIONS(1739), + [anon_sym_alias] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_let_DASHenv] = ACTIONS(1739), + [anon_sym_mut] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [aux_sym_cmd_identifier_token1] = ACTIONS(1739), + [aux_sym_cmd_identifier_token2] = ACTIONS(1741), + [aux_sym_cmd_identifier_token3] = ACTIONS(1741), + [aux_sym_cmd_identifier_token4] = ACTIONS(1741), + [aux_sym_cmd_identifier_token5] = ACTIONS(1741), + [aux_sym_cmd_identifier_token6] = ACTIONS(1741), + [aux_sym_cmd_identifier_token7] = ACTIONS(1741), + [aux_sym_cmd_identifier_token8] = ACTIONS(1739), + [aux_sym_cmd_identifier_token9] = ACTIONS(1739), + [aux_sym_cmd_identifier_token10] = ACTIONS(1741), + [aux_sym_cmd_identifier_token11] = ACTIONS(1741), + [aux_sym_cmd_identifier_token12] = ACTIONS(1739), + [aux_sym_cmd_identifier_token13] = ACTIONS(1739), + [aux_sym_cmd_identifier_token14] = ACTIONS(1739), + [aux_sym_cmd_identifier_token15] = ACTIONS(1739), + [aux_sym_cmd_identifier_token16] = ACTIONS(1741), + [aux_sym_cmd_identifier_token17] = ACTIONS(1741), + [aux_sym_cmd_identifier_token18] = ACTIONS(1741), + [aux_sym_cmd_identifier_token19] = ACTIONS(1741), + [aux_sym_cmd_identifier_token20] = ACTIONS(1741), + [aux_sym_cmd_identifier_token21] = ACTIONS(1741), + [aux_sym_cmd_identifier_token22] = ACTIONS(1741), + [aux_sym_cmd_identifier_token23] = ACTIONS(1741), + [aux_sym_cmd_identifier_token24] = ACTIONS(1741), + [aux_sym_cmd_identifier_token25] = ACTIONS(1741), + [aux_sym_cmd_identifier_token26] = ACTIONS(1741), + [aux_sym_cmd_identifier_token27] = ACTIONS(1741), + [aux_sym_cmd_identifier_token28] = ACTIONS(1741), + [aux_sym_cmd_identifier_token29] = ACTIONS(1741), + [aux_sym_cmd_identifier_token30] = ACTIONS(1741), + [aux_sym_cmd_identifier_token31] = ACTIONS(1741), + [aux_sym_cmd_identifier_token32] = ACTIONS(1741), + [aux_sym_cmd_identifier_token33] = ACTIONS(1741), + [aux_sym_cmd_identifier_token34] = ACTIONS(1739), + [aux_sym_cmd_identifier_token35] = ACTIONS(1741), + [aux_sym_cmd_identifier_token36] = ACTIONS(1741), + [aux_sym_cmd_identifier_token37] = ACTIONS(1741), + [aux_sym_cmd_identifier_token38] = ACTIONS(1739), + [aux_sym_cmd_identifier_token39] = ACTIONS(1741), + [aux_sym_cmd_identifier_token40] = ACTIONS(1741), + [anon_sym_def] = ACTIONS(1739), + [anon_sym_export_DASHenv] = ACTIONS(1739), + [anon_sym_extern] = ACTIONS(1739), + [anon_sym_module] = ACTIONS(1739), + [anon_sym_use] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_DOLLAR] = ACTIONS(1741), + [anon_sym_error] = ACTIONS(1739), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_break] = ACTIONS(1739), + [anon_sym_continue] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_in2] = ACTIONS(1739), + [anon_sym_loop] = ACTIONS(1739), + [anon_sym_make] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_do] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_else] = ACTIONS(1739), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1741), + [anon_sym_try] = ACTIONS(1739), + [anon_sym_catch] = ACTIONS(1739), + [anon_sym_return] = ACTIONS(1739), + [anon_sym_source] = ACTIONS(1739), + [anon_sym_source_DASHenv] = ACTIONS(1739), + [anon_sym_register] = ACTIONS(1739), + [anon_sym_hide] = ACTIONS(1739), + [anon_sym_hide_DASHenv] = ACTIONS(1739), + [anon_sym_overlay] = ACTIONS(1739), + [anon_sym_as] = ACTIONS(1739), + [anon_sym_PLUS2] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1741), + [anon_sym_DOT_DOT2] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1739), + [aux_sym__val_number_token5] = ACTIONS(1739), + [aux_sym__val_number_token6] = ACTIONS(1739), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1741), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), }, [559] = { - [sym__expr_parenthesized_immediate] = STATE(7703), [sym_comment] = STATE(559), - [anon_sym_export] = ACTIONS(2278), - [anon_sym_alias] = ACTIONS(2278), - [anon_sym_let] = ACTIONS(2278), - [anon_sym_let_DASHenv] = ACTIONS(2278), - [anon_sym_mut] = ACTIONS(2278), - [anon_sym_const] = ACTIONS(2278), - [aux_sym_cmd_identifier_token1] = ACTIONS(2278), - [aux_sym_cmd_identifier_token2] = ACTIONS(2278), - [aux_sym_cmd_identifier_token3] = ACTIONS(2278), - [aux_sym_cmd_identifier_token4] = ACTIONS(2278), - [aux_sym_cmd_identifier_token5] = ACTIONS(2278), - [aux_sym_cmd_identifier_token6] = ACTIONS(2278), - [aux_sym_cmd_identifier_token7] = ACTIONS(2278), - [aux_sym_cmd_identifier_token8] = ACTIONS(2278), - [aux_sym_cmd_identifier_token9] = ACTIONS(2278), - [aux_sym_cmd_identifier_token10] = ACTIONS(2278), - [aux_sym_cmd_identifier_token11] = ACTIONS(2278), - [aux_sym_cmd_identifier_token12] = ACTIONS(2278), - [aux_sym_cmd_identifier_token13] = ACTIONS(2278), - [aux_sym_cmd_identifier_token14] = ACTIONS(2278), - [aux_sym_cmd_identifier_token15] = ACTIONS(2278), - [aux_sym_cmd_identifier_token16] = ACTIONS(2278), - [aux_sym_cmd_identifier_token17] = ACTIONS(2278), - [aux_sym_cmd_identifier_token18] = ACTIONS(2278), - [aux_sym_cmd_identifier_token19] = ACTIONS(2278), - [aux_sym_cmd_identifier_token20] = ACTIONS(2278), - [aux_sym_cmd_identifier_token21] = ACTIONS(2278), - [aux_sym_cmd_identifier_token22] = ACTIONS(2278), - [aux_sym_cmd_identifier_token23] = ACTIONS(2278), - [aux_sym_cmd_identifier_token24] = ACTIONS(2278), - [aux_sym_cmd_identifier_token25] = ACTIONS(2278), - [aux_sym_cmd_identifier_token26] = ACTIONS(2278), - [aux_sym_cmd_identifier_token27] = ACTIONS(2278), - [aux_sym_cmd_identifier_token28] = ACTIONS(2278), - [aux_sym_cmd_identifier_token29] = ACTIONS(2278), - [aux_sym_cmd_identifier_token30] = ACTIONS(2278), - [aux_sym_cmd_identifier_token31] = ACTIONS(2278), - [aux_sym_cmd_identifier_token32] = ACTIONS(2278), - [aux_sym_cmd_identifier_token33] = ACTIONS(2278), - [aux_sym_cmd_identifier_token34] = ACTIONS(2278), - [aux_sym_cmd_identifier_token35] = ACTIONS(2278), - [aux_sym_cmd_identifier_token36] = ACTIONS(2278), - [aux_sym_cmd_identifier_token37] = ACTIONS(2278), - [aux_sym_cmd_identifier_token38] = ACTIONS(2278), - [aux_sym_cmd_identifier_token39] = ACTIONS(2278), - [aux_sym_cmd_identifier_token40] = ACTIONS(2278), - [anon_sym_def] = ACTIONS(2278), - [anon_sym_export_DASHenv] = ACTIONS(2278), - [anon_sym_extern] = ACTIONS(2278), - [anon_sym_module] = ACTIONS(2278), - [anon_sym_use] = ACTIONS(2278), - [anon_sym_LPAREN] = ACTIONS(2278), - [anon_sym_DOLLAR] = ACTIONS(2278), - [anon_sym_error] = ACTIONS(2278), - [anon_sym_DASH2] = ACTIONS(2278), - [anon_sym_break] = ACTIONS(2278), - [anon_sym_continue] = ACTIONS(2278), - [anon_sym_for] = ACTIONS(2278), - [anon_sym_in2] = ACTIONS(2278), - [anon_sym_loop] = ACTIONS(2278), - [anon_sym_make] = ACTIONS(2278), - [anon_sym_while] = ACTIONS(2278), - [anon_sym_do] = ACTIONS(2278), - [anon_sym_if] = ACTIONS(2278), - [anon_sym_else] = ACTIONS(2278), - [anon_sym_match] = ACTIONS(2278), - [anon_sym_RBRACE] = ACTIONS(2278), - [anon_sym_try] = ACTIONS(2278), - [anon_sym_catch] = ACTIONS(2278), - [anon_sym_return] = ACTIONS(2278), - [anon_sym_source] = ACTIONS(2278), - [anon_sym_source_DASHenv] = ACTIONS(2278), - [anon_sym_register] = ACTIONS(2278), - [anon_sym_hide] = ACTIONS(2278), - [anon_sym_hide_DASHenv] = ACTIONS(2278), - [anon_sym_overlay] = ACTIONS(2278), - [anon_sym_as] = ACTIONS(2278), - [anon_sym_LPAREN2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(2278), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2278), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2278), - [aux_sym__val_number_decimal_token1] = ACTIONS(2278), - [aux_sym__val_number_decimal_token2] = ACTIONS(2278), - [aux_sym__val_number_decimal_token3] = ACTIONS(2278), - [aux_sym__val_number_decimal_token4] = ACTIONS(2278), - [aux_sym__val_number_token1] = ACTIONS(2278), - [aux_sym__val_number_token2] = ACTIONS(2278), - [aux_sym__val_number_token3] = ACTIONS(2278), - [aux_sym__val_number_token4] = ACTIONS(2278), - [aux_sym__val_number_token5] = ACTIONS(2278), - [aux_sym__val_number_token6] = ACTIONS(2278), - [anon_sym_DQUOTE] = ACTIONS(2278), - [sym__str_single_quotes] = ACTIONS(2278), - [sym__str_back_ticks] = ACTIONS(2278), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2278), - [sym__entry_separator] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2280), + [anon_sym_export] = ACTIONS(1785), + [anon_sym_alias] = ACTIONS(1785), + [anon_sym_let] = ACTIONS(1785), + [anon_sym_let_DASHenv] = ACTIONS(1785), + [anon_sym_mut] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(1785), + [aux_sym_cmd_identifier_token1] = ACTIONS(1785), + [aux_sym_cmd_identifier_token2] = ACTIONS(1787), + [aux_sym_cmd_identifier_token3] = ACTIONS(1787), + [aux_sym_cmd_identifier_token4] = ACTIONS(1787), + [aux_sym_cmd_identifier_token5] = ACTIONS(1787), + [aux_sym_cmd_identifier_token6] = ACTIONS(1787), + [aux_sym_cmd_identifier_token7] = ACTIONS(1787), + [aux_sym_cmd_identifier_token8] = ACTIONS(1785), + [aux_sym_cmd_identifier_token9] = ACTIONS(1785), + [aux_sym_cmd_identifier_token10] = ACTIONS(1787), + [aux_sym_cmd_identifier_token11] = ACTIONS(1787), + [aux_sym_cmd_identifier_token12] = ACTIONS(1785), + [aux_sym_cmd_identifier_token13] = ACTIONS(1785), + [aux_sym_cmd_identifier_token14] = ACTIONS(1785), + [aux_sym_cmd_identifier_token15] = ACTIONS(1785), + [aux_sym_cmd_identifier_token16] = ACTIONS(1787), + [aux_sym_cmd_identifier_token17] = ACTIONS(1787), + [aux_sym_cmd_identifier_token18] = ACTIONS(1787), + [aux_sym_cmd_identifier_token19] = ACTIONS(1787), + [aux_sym_cmd_identifier_token20] = ACTIONS(1787), + [aux_sym_cmd_identifier_token21] = ACTIONS(1787), + [aux_sym_cmd_identifier_token22] = ACTIONS(1787), + [aux_sym_cmd_identifier_token23] = ACTIONS(1787), + [aux_sym_cmd_identifier_token24] = ACTIONS(1787), + [aux_sym_cmd_identifier_token25] = ACTIONS(1787), + [aux_sym_cmd_identifier_token26] = ACTIONS(1787), + [aux_sym_cmd_identifier_token27] = ACTIONS(1787), + [aux_sym_cmd_identifier_token28] = ACTIONS(1787), + [aux_sym_cmd_identifier_token29] = ACTIONS(1787), + [aux_sym_cmd_identifier_token30] = ACTIONS(1787), + [aux_sym_cmd_identifier_token31] = ACTIONS(1787), + [aux_sym_cmd_identifier_token32] = ACTIONS(1787), + [aux_sym_cmd_identifier_token33] = ACTIONS(1787), + [aux_sym_cmd_identifier_token34] = ACTIONS(1785), + [aux_sym_cmd_identifier_token35] = ACTIONS(1787), + [aux_sym_cmd_identifier_token36] = ACTIONS(1787), + [aux_sym_cmd_identifier_token37] = ACTIONS(1787), + [aux_sym_cmd_identifier_token38] = ACTIONS(1785), + [aux_sym_cmd_identifier_token39] = ACTIONS(1787), + [aux_sym_cmd_identifier_token40] = ACTIONS(1787), + [anon_sym_def] = ACTIONS(1785), + [anon_sym_export_DASHenv] = ACTIONS(1785), + [anon_sym_extern] = ACTIONS(1785), + [anon_sym_module] = ACTIONS(1785), + [anon_sym_use] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_DOLLAR] = ACTIONS(1787), + [anon_sym_error] = ACTIONS(1785), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_break] = ACTIONS(1785), + [anon_sym_continue] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1785), + [anon_sym_in2] = ACTIONS(1785), + [anon_sym_loop] = ACTIONS(1785), + [anon_sym_make] = ACTIONS(1785), + [anon_sym_while] = ACTIONS(1785), + [anon_sym_do] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1785), + [anon_sym_else] = ACTIONS(1785), + [anon_sym_match] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1787), + [anon_sym_try] = ACTIONS(1785), + [anon_sym_catch] = ACTIONS(1785), + [anon_sym_return] = ACTIONS(1785), + [anon_sym_source] = ACTIONS(1785), + [anon_sym_source_DASHenv] = ACTIONS(1785), + [anon_sym_register] = ACTIONS(1785), + [anon_sym_hide] = ACTIONS(1785), + [anon_sym_hide_DASHenv] = ACTIONS(1785), + [anon_sym_overlay] = ACTIONS(1785), + [anon_sym_as] = ACTIONS(1785), + [anon_sym_PLUS2] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1787), + [anon_sym_DOT_DOT2] = ACTIONS(1785), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1787), + [aux_sym__val_number_decimal_token1] = ACTIONS(1785), + [aux_sym__val_number_decimal_token2] = ACTIONS(1787), + [aux_sym__val_number_decimal_token3] = ACTIONS(1787), + [aux_sym__val_number_decimal_token4] = ACTIONS(1787), + [aux_sym__val_number_token1] = ACTIONS(1787), + [aux_sym__val_number_token2] = ACTIONS(1787), + [aux_sym__val_number_token3] = ACTIONS(1787), + [aux_sym__val_number_token4] = ACTIONS(1785), + [aux_sym__val_number_token5] = ACTIONS(1785), + [aux_sym__val_number_token6] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1787), + [sym__str_single_quotes] = ACTIONS(1787), + [sym__str_back_ticks] = ACTIONS(1787), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1787), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1787), }, [560] = { - [sym__expr_parenthesized_immediate] = STATE(7703), [sym_comment] = STATE(560), - [anon_sym_export] = ACTIONS(2282), - [anon_sym_alias] = ACTIONS(2282), - [anon_sym_let] = ACTIONS(2282), - [anon_sym_let_DASHenv] = ACTIONS(2282), - [anon_sym_mut] = ACTIONS(2282), - [anon_sym_const] = ACTIONS(2282), - [aux_sym_cmd_identifier_token1] = ACTIONS(2282), - [aux_sym_cmd_identifier_token2] = ACTIONS(2282), - [aux_sym_cmd_identifier_token3] = ACTIONS(2282), - [aux_sym_cmd_identifier_token4] = ACTIONS(2282), - [aux_sym_cmd_identifier_token5] = ACTIONS(2282), - [aux_sym_cmd_identifier_token6] = ACTIONS(2282), - [aux_sym_cmd_identifier_token7] = ACTIONS(2282), - [aux_sym_cmd_identifier_token8] = ACTIONS(2282), - [aux_sym_cmd_identifier_token9] = ACTIONS(2282), - [aux_sym_cmd_identifier_token10] = ACTIONS(2282), - [aux_sym_cmd_identifier_token11] = ACTIONS(2282), - [aux_sym_cmd_identifier_token12] = ACTIONS(2282), - [aux_sym_cmd_identifier_token13] = ACTIONS(2282), - [aux_sym_cmd_identifier_token14] = ACTIONS(2282), - [aux_sym_cmd_identifier_token15] = ACTIONS(2282), - [aux_sym_cmd_identifier_token16] = ACTIONS(2282), - [aux_sym_cmd_identifier_token17] = ACTIONS(2282), - [aux_sym_cmd_identifier_token18] = ACTIONS(2282), - [aux_sym_cmd_identifier_token19] = ACTIONS(2282), - [aux_sym_cmd_identifier_token20] = ACTIONS(2282), - [aux_sym_cmd_identifier_token21] = ACTIONS(2282), - [aux_sym_cmd_identifier_token22] = ACTIONS(2282), - [aux_sym_cmd_identifier_token23] = ACTIONS(2282), - [aux_sym_cmd_identifier_token24] = ACTIONS(2282), - [aux_sym_cmd_identifier_token25] = ACTIONS(2282), - [aux_sym_cmd_identifier_token26] = ACTIONS(2282), - [aux_sym_cmd_identifier_token27] = ACTIONS(2282), - [aux_sym_cmd_identifier_token28] = ACTIONS(2282), - [aux_sym_cmd_identifier_token29] = ACTIONS(2282), - [aux_sym_cmd_identifier_token30] = ACTIONS(2282), - [aux_sym_cmd_identifier_token31] = ACTIONS(2282), - [aux_sym_cmd_identifier_token32] = ACTIONS(2282), - [aux_sym_cmd_identifier_token33] = ACTIONS(2282), - [aux_sym_cmd_identifier_token34] = ACTIONS(2282), - [aux_sym_cmd_identifier_token35] = ACTIONS(2282), - [aux_sym_cmd_identifier_token36] = ACTIONS(2282), - [aux_sym_cmd_identifier_token37] = ACTIONS(2282), - [aux_sym_cmd_identifier_token38] = ACTIONS(2282), - [aux_sym_cmd_identifier_token39] = ACTIONS(2282), - [aux_sym_cmd_identifier_token40] = ACTIONS(2282), - [anon_sym_def] = ACTIONS(2282), - [anon_sym_export_DASHenv] = ACTIONS(2282), - [anon_sym_extern] = ACTIONS(2282), - [anon_sym_module] = ACTIONS(2282), - [anon_sym_use] = ACTIONS(2282), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_DOLLAR] = ACTIONS(2282), - [anon_sym_error] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2282), - [anon_sym_break] = ACTIONS(2282), - [anon_sym_continue] = ACTIONS(2282), - [anon_sym_for] = ACTIONS(2282), - [anon_sym_in2] = ACTIONS(2282), - [anon_sym_loop] = ACTIONS(2282), - [anon_sym_make] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2282), - [anon_sym_do] = ACTIONS(2282), - [anon_sym_if] = ACTIONS(2282), - [anon_sym_else] = ACTIONS(2282), - [anon_sym_match] = ACTIONS(2282), - [anon_sym_RBRACE] = ACTIONS(2282), - [anon_sym_try] = ACTIONS(2282), - [anon_sym_catch] = ACTIONS(2282), - [anon_sym_return] = ACTIONS(2282), - [anon_sym_source] = ACTIONS(2282), - [anon_sym_source_DASHenv] = ACTIONS(2282), - [anon_sym_register] = ACTIONS(2282), - [anon_sym_hide] = ACTIONS(2282), - [anon_sym_hide_DASHenv] = ACTIONS(2282), - [anon_sym_overlay] = ACTIONS(2282), - [anon_sym_as] = ACTIONS(2282), - [anon_sym_LPAREN2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2282), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2282), - [aux_sym__val_number_decimal_token1] = ACTIONS(2282), - [aux_sym__val_number_decimal_token2] = ACTIONS(2282), - [aux_sym__val_number_decimal_token3] = ACTIONS(2282), - [aux_sym__val_number_decimal_token4] = ACTIONS(2282), - [aux_sym__val_number_token1] = ACTIONS(2282), - [aux_sym__val_number_token2] = ACTIONS(2282), - [aux_sym__val_number_token3] = ACTIONS(2282), - [aux_sym__val_number_token4] = ACTIONS(2282), - [aux_sym__val_number_token5] = ACTIONS(2282), - [aux_sym__val_number_token6] = ACTIONS(2282), - [anon_sym_DQUOTE] = ACTIONS(2282), - [sym__str_single_quotes] = ACTIONS(2282), - [sym__str_back_ticks] = ACTIONS(2282), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2282), - [sym__entry_separator] = ACTIONS(2284), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2284), + [anon_sym_export] = ACTIONS(1841), + [anon_sym_alias] = ACTIONS(1841), + [anon_sym_let] = ACTIONS(1841), + [anon_sym_let_DASHenv] = ACTIONS(1841), + [anon_sym_mut] = ACTIONS(1841), + [anon_sym_const] = ACTIONS(1841), + [aux_sym_cmd_identifier_token1] = ACTIONS(1841), + [aux_sym_cmd_identifier_token2] = ACTIONS(1843), + [aux_sym_cmd_identifier_token3] = ACTIONS(1843), + [aux_sym_cmd_identifier_token4] = ACTIONS(1843), + [aux_sym_cmd_identifier_token5] = ACTIONS(1843), + [aux_sym_cmd_identifier_token6] = ACTIONS(1843), + [aux_sym_cmd_identifier_token7] = ACTIONS(1843), + [aux_sym_cmd_identifier_token8] = ACTIONS(1841), + [aux_sym_cmd_identifier_token9] = ACTIONS(1841), + [aux_sym_cmd_identifier_token10] = ACTIONS(1843), + [aux_sym_cmd_identifier_token11] = ACTIONS(1843), + [aux_sym_cmd_identifier_token12] = ACTIONS(1841), + [aux_sym_cmd_identifier_token13] = ACTIONS(1841), + [aux_sym_cmd_identifier_token14] = ACTIONS(1841), + [aux_sym_cmd_identifier_token15] = ACTIONS(1841), + [aux_sym_cmd_identifier_token16] = ACTIONS(1843), + [aux_sym_cmd_identifier_token17] = ACTIONS(1843), + [aux_sym_cmd_identifier_token18] = ACTIONS(1843), + [aux_sym_cmd_identifier_token19] = ACTIONS(1843), + [aux_sym_cmd_identifier_token20] = ACTIONS(1843), + [aux_sym_cmd_identifier_token21] = ACTIONS(1843), + [aux_sym_cmd_identifier_token22] = ACTIONS(1843), + [aux_sym_cmd_identifier_token23] = ACTIONS(1843), + [aux_sym_cmd_identifier_token24] = ACTIONS(1843), + [aux_sym_cmd_identifier_token25] = ACTIONS(1843), + [aux_sym_cmd_identifier_token26] = ACTIONS(1843), + [aux_sym_cmd_identifier_token27] = ACTIONS(1843), + [aux_sym_cmd_identifier_token28] = ACTIONS(1843), + [aux_sym_cmd_identifier_token29] = ACTIONS(1843), + [aux_sym_cmd_identifier_token30] = ACTIONS(1843), + [aux_sym_cmd_identifier_token31] = ACTIONS(1843), + [aux_sym_cmd_identifier_token32] = ACTIONS(1843), + [aux_sym_cmd_identifier_token33] = ACTIONS(1843), + [aux_sym_cmd_identifier_token34] = ACTIONS(1841), + [aux_sym_cmd_identifier_token35] = ACTIONS(1843), + [aux_sym_cmd_identifier_token36] = ACTIONS(1843), + [aux_sym_cmd_identifier_token37] = ACTIONS(1843), + [aux_sym_cmd_identifier_token38] = ACTIONS(1841), + [aux_sym_cmd_identifier_token39] = ACTIONS(1843), + [aux_sym_cmd_identifier_token40] = ACTIONS(1843), + [anon_sym_def] = ACTIONS(1841), + [anon_sym_export_DASHenv] = ACTIONS(1841), + [anon_sym_extern] = ACTIONS(1841), + [anon_sym_module] = ACTIONS(1841), + [anon_sym_use] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1843), + [anon_sym_DOLLAR] = ACTIONS(1843), + [anon_sym_error] = ACTIONS(1841), + [anon_sym_DASH2] = ACTIONS(1841), + [anon_sym_break] = ACTIONS(1841), + [anon_sym_continue] = ACTIONS(1841), + [anon_sym_for] = ACTIONS(1841), + [anon_sym_in2] = ACTIONS(1841), + [anon_sym_loop] = ACTIONS(1841), + [anon_sym_make] = ACTIONS(1841), + [anon_sym_while] = ACTIONS(1841), + [anon_sym_do] = ACTIONS(1841), + [anon_sym_if] = ACTIONS(1841), + [anon_sym_else] = ACTIONS(1841), + [anon_sym_match] = ACTIONS(1841), + [anon_sym_RBRACE] = ACTIONS(1843), + [anon_sym_try] = ACTIONS(1841), + [anon_sym_catch] = ACTIONS(1841), + [anon_sym_return] = ACTIONS(1841), + [anon_sym_source] = ACTIONS(1841), + [anon_sym_source_DASHenv] = ACTIONS(1841), + [anon_sym_register] = ACTIONS(1841), + [anon_sym_hide] = ACTIONS(1841), + [anon_sym_hide_DASHenv] = ACTIONS(1841), + [anon_sym_overlay] = ACTIONS(1841), + [anon_sym_as] = ACTIONS(1841), + [anon_sym_PLUS2] = ACTIONS(1841), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1843), + [anon_sym_DOT_DOT2] = ACTIONS(1841), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1843), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1843), + [aux_sym__val_number_decimal_token1] = ACTIONS(1841), + [aux_sym__val_number_decimal_token2] = ACTIONS(1843), + [aux_sym__val_number_decimal_token3] = ACTIONS(1843), + [aux_sym__val_number_decimal_token4] = ACTIONS(1843), + [aux_sym__val_number_token1] = ACTIONS(1843), + [aux_sym__val_number_token2] = ACTIONS(1843), + [aux_sym__val_number_token3] = ACTIONS(1843), + [aux_sym__val_number_token4] = ACTIONS(1841), + [aux_sym__val_number_token5] = ACTIONS(1841), + [aux_sym__val_number_token6] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1843), + [sym__str_single_quotes] = ACTIONS(1843), + [sym__str_back_ticks] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1843), }, [561] = { [sym_comment] = STATE(561), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_alias] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_let_DASHenv] = ACTIONS(1755), - [anon_sym_mut] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1755), - [aux_sym_cmd_identifier_token3] = ACTIONS(1755), - [aux_sym_cmd_identifier_token4] = ACTIONS(1755), - [aux_sym_cmd_identifier_token5] = ACTIONS(1755), - [aux_sym_cmd_identifier_token6] = ACTIONS(1755), - [aux_sym_cmd_identifier_token7] = ACTIONS(1755), - [aux_sym_cmd_identifier_token8] = ACTIONS(1755), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1755), - [aux_sym_cmd_identifier_token11] = ACTIONS(1755), - [aux_sym_cmd_identifier_token12] = ACTIONS(1755), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1755), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1755), - [aux_sym_cmd_identifier_token17] = ACTIONS(1755), - [aux_sym_cmd_identifier_token18] = ACTIONS(1755), - [aux_sym_cmd_identifier_token19] = ACTIONS(1755), - [aux_sym_cmd_identifier_token20] = ACTIONS(1755), - [aux_sym_cmd_identifier_token21] = ACTIONS(1755), - [aux_sym_cmd_identifier_token22] = ACTIONS(1755), - [aux_sym_cmd_identifier_token23] = ACTIONS(1755), - [aux_sym_cmd_identifier_token24] = ACTIONS(1755), - [aux_sym_cmd_identifier_token25] = ACTIONS(1755), - [aux_sym_cmd_identifier_token26] = ACTIONS(1755), - [aux_sym_cmd_identifier_token27] = ACTIONS(1755), - [aux_sym_cmd_identifier_token28] = ACTIONS(1755), - [aux_sym_cmd_identifier_token29] = ACTIONS(1755), - [aux_sym_cmd_identifier_token30] = ACTIONS(1755), - [aux_sym_cmd_identifier_token31] = ACTIONS(1755), - [aux_sym_cmd_identifier_token32] = ACTIONS(1755), - [aux_sym_cmd_identifier_token33] = ACTIONS(1755), - [aux_sym_cmd_identifier_token34] = ACTIONS(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1755), - [aux_sym_cmd_identifier_token36] = ACTIONS(1755), - [aux_sym_cmd_identifier_token37] = ACTIONS(1755), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1755), - [aux_sym_cmd_identifier_token40] = ACTIONS(1755), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_export_DASHenv] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_make] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1755), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_source] = ACTIONS(1755), - [anon_sym_source_DASHenv] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_hide] = ACTIONS(1755), - [anon_sym_hide_DASHenv] = ACTIONS(1755), - [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1755), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1755), - [aux_sym__val_number_decimal_token3] = ACTIONS(1755), - [aux_sym__val_number_decimal_token4] = ACTIONS(1755), - [aux_sym__val_number_token1] = ACTIONS(1755), - [aux_sym__val_number_token2] = ACTIONS(1755), - [aux_sym__val_number_token3] = ACTIONS(1755), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym__str_single_quotes] = ACTIONS(1755), - [sym__str_back_ticks] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1755), - [sym__entry_separator] = ACTIONS(1757), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(2052), + [anon_sym_alias] = ACTIONS(2052), + [anon_sym_let] = ACTIONS(2052), + [anon_sym_let_DASHenv] = ACTIONS(2052), + [anon_sym_mut] = ACTIONS(2052), + [anon_sym_const] = ACTIONS(2052), + [aux_sym_cmd_identifier_token1] = ACTIONS(2052), + [aux_sym_cmd_identifier_token2] = ACTIONS(2054), + [aux_sym_cmd_identifier_token3] = ACTIONS(2054), + [aux_sym_cmd_identifier_token4] = ACTIONS(2054), + [aux_sym_cmd_identifier_token5] = ACTIONS(2054), + [aux_sym_cmd_identifier_token6] = ACTIONS(2054), + [aux_sym_cmd_identifier_token7] = ACTIONS(2054), + [aux_sym_cmd_identifier_token8] = ACTIONS(2052), + [aux_sym_cmd_identifier_token9] = ACTIONS(2052), + [aux_sym_cmd_identifier_token10] = ACTIONS(2054), + [aux_sym_cmd_identifier_token11] = ACTIONS(2054), + [aux_sym_cmd_identifier_token12] = ACTIONS(2052), + [aux_sym_cmd_identifier_token13] = ACTIONS(2052), + [aux_sym_cmd_identifier_token14] = ACTIONS(2052), + [aux_sym_cmd_identifier_token15] = ACTIONS(2052), + [aux_sym_cmd_identifier_token16] = ACTIONS(2054), + [aux_sym_cmd_identifier_token17] = ACTIONS(2054), + [aux_sym_cmd_identifier_token18] = ACTIONS(2054), + [aux_sym_cmd_identifier_token19] = ACTIONS(2054), + [aux_sym_cmd_identifier_token20] = ACTIONS(2054), + [aux_sym_cmd_identifier_token21] = ACTIONS(2054), + [aux_sym_cmd_identifier_token22] = ACTIONS(2054), + [aux_sym_cmd_identifier_token23] = ACTIONS(2054), + [aux_sym_cmd_identifier_token24] = ACTIONS(2054), + [aux_sym_cmd_identifier_token25] = ACTIONS(2054), + [aux_sym_cmd_identifier_token26] = ACTIONS(2054), + [aux_sym_cmd_identifier_token27] = ACTIONS(2054), + [aux_sym_cmd_identifier_token28] = ACTIONS(2054), + [aux_sym_cmd_identifier_token29] = ACTIONS(2054), + [aux_sym_cmd_identifier_token30] = ACTIONS(2054), + [aux_sym_cmd_identifier_token31] = ACTIONS(2054), + [aux_sym_cmd_identifier_token32] = ACTIONS(2054), + [aux_sym_cmd_identifier_token33] = ACTIONS(2054), + [aux_sym_cmd_identifier_token34] = ACTIONS(2052), + [aux_sym_cmd_identifier_token35] = ACTIONS(2054), + [aux_sym_cmd_identifier_token36] = ACTIONS(2054), + [aux_sym_cmd_identifier_token37] = ACTIONS(2054), + [aux_sym_cmd_identifier_token38] = ACTIONS(2052), + [aux_sym_cmd_identifier_token39] = ACTIONS(2054), + [aux_sym_cmd_identifier_token40] = ACTIONS(2054), + [anon_sym_def] = ACTIONS(2052), + [anon_sym_export_DASHenv] = ACTIONS(2052), + [anon_sym_extern] = ACTIONS(2052), + [anon_sym_module] = ACTIONS(2052), + [anon_sym_use] = ACTIONS(2052), + [anon_sym_LPAREN] = ACTIONS(2054), + [anon_sym_DOLLAR] = ACTIONS(2054), + [anon_sym_error] = ACTIONS(2052), + [anon_sym_DASH2] = ACTIONS(2052), + [anon_sym_break] = ACTIONS(2052), + [anon_sym_continue] = ACTIONS(2052), + [anon_sym_for] = ACTIONS(2052), + [anon_sym_in2] = ACTIONS(2052), + [anon_sym_loop] = ACTIONS(2052), + [anon_sym_make] = ACTIONS(2052), + [anon_sym_while] = ACTIONS(2052), + [anon_sym_do] = ACTIONS(2052), + [anon_sym_if] = ACTIONS(2052), + [anon_sym_else] = ACTIONS(2052), + [anon_sym_match] = ACTIONS(2052), + [anon_sym_RBRACE] = ACTIONS(2054), + [anon_sym_try] = ACTIONS(2052), + [anon_sym_catch] = ACTIONS(2052), + [anon_sym_return] = ACTIONS(2052), + [anon_sym_source] = ACTIONS(2052), + [anon_sym_source_DASHenv] = ACTIONS(2052), + [anon_sym_register] = ACTIONS(2052), + [anon_sym_hide] = ACTIONS(2052), + [anon_sym_hide_DASHenv] = ACTIONS(2052), + [anon_sym_overlay] = ACTIONS(2052), + [anon_sym_as] = ACTIONS(2052), + [anon_sym_PLUS2] = ACTIONS(2052), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2054), + [anon_sym_DOT_DOT2] = ACTIONS(2052), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2054), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2054), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2054), + [aux_sym__val_number_decimal_token1] = ACTIONS(2052), + [aux_sym__val_number_decimal_token2] = ACTIONS(2054), + [aux_sym__val_number_decimal_token3] = ACTIONS(2054), + [aux_sym__val_number_decimal_token4] = ACTIONS(2054), + [aux_sym__val_number_token1] = ACTIONS(2054), + [aux_sym__val_number_token2] = ACTIONS(2054), + [aux_sym__val_number_token3] = ACTIONS(2054), + [aux_sym__val_number_token4] = ACTIONS(2052), + [aux_sym__val_number_token5] = ACTIONS(2052), + [aux_sym__val_number_token6] = ACTIONS(2052), + [anon_sym_DQUOTE] = ACTIONS(2054), + [sym__str_single_quotes] = ACTIONS(2054), + [sym__str_back_ticks] = ACTIONS(2054), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2054), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2054), }, [562] = { [sym_comment] = STATE(562), - [anon_sym_export] = ACTIONS(2125), - [anon_sym_alias] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_let_DASHenv] = ACTIONS(2125), - [anon_sym_mut] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [aux_sym_cmd_identifier_token1] = ACTIONS(2125), - [aux_sym_cmd_identifier_token2] = ACTIONS(2127), - [aux_sym_cmd_identifier_token3] = ACTIONS(2127), - [aux_sym_cmd_identifier_token4] = ACTIONS(2127), - [aux_sym_cmd_identifier_token5] = ACTIONS(2127), - [aux_sym_cmd_identifier_token6] = ACTIONS(2127), - [aux_sym_cmd_identifier_token7] = ACTIONS(2127), - [aux_sym_cmd_identifier_token8] = ACTIONS(2125), - [aux_sym_cmd_identifier_token9] = ACTIONS(2125), - [aux_sym_cmd_identifier_token10] = ACTIONS(2127), - [aux_sym_cmd_identifier_token11] = ACTIONS(2127), - [aux_sym_cmd_identifier_token12] = ACTIONS(2125), - [aux_sym_cmd_identifier_token13] = ACTIONS(2125), - [aux_sym_cmd_identifier_token14] = ACTIONS(2125), - [aux_sym_cmd_identifier_token15] = ACTIONS(2125), - [aux_sym_cmd_identifier_token16] = ACTIONS(2127), - [aux_sym_cmd_identifier_token17] = ACTIONS(2127), - [aux_sym_cmd_identifier_token18] = ACTIONS(2127), - [aux_sym_cmd_identifier_token19] = ACTIONS(2127), - [aux_sym_cmd_identifier_token20] = ACTIONS(2127), - [aux_sym_cmd_identifier_token21] = ACTIONS(2127), - [aux_sym_cmd_identifier_token22] = ACTIONS(2127), - [aux_sym_cmd_identifier_token23] = ACTIONS(2127), - [aux_sym_cmd_identifier_token24] = ACTIONS(2127), - [aux_sym_cmd_identifier_token25] = ACTIONS(2127), - [aux_sym_cmd_identifier_token26] = ACTIONS(2127), - [aux_sym_cmd_identifier_token27] = ACTIONS(2127), - [aux_sym_cmd_identifier_token28] = ACTIONS(2127), - [aux_sym_cmd_identifier_token29] = ACTIONS(2127), - [aux_sym_cmd_identifier_token30] = ACTIONS(2127), - [aux_sym_cmd_identifier_token31] = ACTIONS(2127), - [aux_sym_cmd_identifier_token32] = ACTIONS(2127), - [aux_sym_cmd_identifier_token33] = ACTIONS(2127), - [aux_sym_cmd_identifier_token34] = ACTIONS(2125), - [aux_sym_cmd_identifier_token35] = ACTIONS(2127), - [aux_sym_cmd_identifier_token36] = ACTIONS(2127), - [aux_sym_cmd_identifier_token37] = ACTIONS(2127), - [aux_sym_cmd_identifier_token38] = ACTIONS(2125), - [aux_sym_cmd_identifier_token39] = ACTIONS(2127), - [aux_sym_cmd_identifier_token40] = ACTIONS(2127), - [anon_sym_def] = ACTIONS(2125), - [anon_sym_export_DASHenv] = ACTIONS(2125), - [anon_sym_extern] = ACTIONS(2125), - [anon_sym_module] = ACTIONS(2125), - [anon_sym_use] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2127), - [anon_sym_DOLLAR] = ACTIONS(2127), - [anon_sym_error] = ACTIONS(2125), - [anon_sym_DASH2] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_in2] = ACTIONS(2125), - [anon_sym_loop] = ACTIONS(2125), - [anon_sym_make] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [anon_sym_do] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_else] = ACTIONS(2125), - [anon_sym_match] = ACTIONS(2125), - [anon_sym_RBRACE] = ACTIONS(2127), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_catch] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_source] = ACTIONS(2125), - [anon_sym_source_DASHenv] = ACTIONS(2125), - [anon_sym_register] = ACTIONS(2125), - [anon_sym_hide] = ACTIONS(2125), - [anon_sym_hide_DASHenv] = ACTIONS(2125), - [anon_sym_overlay] = ACTIONS(2125), - [anon_sym_as] = ACTIONS(2125), - [anon_sym_PLUS2] = ACTIONS(2125), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2127), - [anon_sym_DOT_DOT2] = ACTIONS(2125), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2127), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2127), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2127), - [aux_sym__val_number_decimal_token1] = ACTIONS(2125), - [aux_sym__val_number_decimal_token2] = ACTIONS(2127), - [aux_sym__val_number_decimal_token3] = ACTIONS(2127), - [aux_sym__val_number_decimal_token4] = ACTIONS(2127), - [aux_sym__val_number_token1] = ACTIONS(2127), - [aux_sym__val_number_token2] = ACTIONS(2127), - [aux_sym__val_number_token3] = ACTIONS(2127), - [aux_sym__val_number_token4] = ACTIONS(2125), - [aux_sym__val_number_token5] = ACTIONS(2125), - [aux_sym__val_number_token6] = ACTIONS(2125), - [anon_sym_DQUOTE] = ACTIONS(2127), - [sym__str_single_quotes] = ACTIONS(2127), - [sym__str_back_ticks] = ACTIONS(2127), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2127), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2127), + [anon_sym_export] = ACTIONS(2165), + [anon_sym_alias] = ACTIONS(2165), + [anon_sym_let] = ACTIONS(2165), + [anon_sym_let_DASHenv] = ACTIONS(2165), + [anon_sym_mut] = ACTIONS(2165), + [anon_sym_const] = ACTIONS(2165), + [aux_sym_cmd_identifier_token1] = ACTIONS(2165), + [aux_sym_cmd_identifier_token2] = ACTIONS(2171), + [aux_sym_cmd_identifier_token3] = ACTIONS(2171), + [aux_sym_cmd_identifier_token4] = ACTIONS(2171), + [aux_sym_cmd_identifier_token5] = ACTIONS(2171), + [aux_sym_cmd_identifier_token6] = ACTIONS(2171), + [aux_sym_cmd_identifier_token7] = ACTIONS(2171), + [aux_sym_cmd_identifier_token8] = ACTIONS(2165), + [aux_sym_cmd_identifier_token9] = ACTIONS(2165), + [aux_sym_cmd_identifier_token10] = ACTIONS(2171), + [aux_sym_cmd_identifier_token11] = ACTIONS(2171), + [aux_sym_cmd_identifier_token12] = ACTIONS(2165), + [aux_sym_cmd_identifier_token13] = ACTIONS(2165), + [aux_sym_cmd_identifier_token14] = ACTIONS(2165), + [aux_sym_cmd_identifier_token15] = ACTIONS(2165), + [aux_sym_cmd_identifier_token16] = ACTIONS(2171), + [aux_sym_cmd_identifier_token17] = ACTIONS(2171), + [aux_sym_cmd_identifier_token18] = ACTIONS(2171), + [aux_sym_cmd_identifier_token19] = ACTIONS(2171), + [aux_sym_cmd_identifier_token20] = ACTIONS(2171), + [aux_sym_cmd_identifier_token21] = ACTIONS(2171), + [aux_sym_cmd_identifier_token22] = ACTIONS(2171), + [aux_sym_cmd_identifier_token23] = ACTIONS(2171), + [aux_sym_cmd_identifier_token24] = ACTIONS(2171), + [aux_sym_cmd_identifier_token25] = ACTIONS(2171), + [aux_sym_cmd_identifier_token26] = ACTIONS(2171), + [aux_sym_cmd_identifier_token27] = ACTIONS(2171), + [aux_sym_cmd_identifier_token28] = ACTIONS(2171), + [aux_sym_cmd_identifier_token29] = ACTIONS(2171), + [aux_sym_cmd_identifier_token30] = ACTIONS(2171), + [aux_sym_cmd_identifier_token31] = ACTIONS(2171), + [aux_sym_cmd_identifier_token32] = ACTIONS(2171), + [aux_sym_cmd_identifier_token33] = ACTIONS(2171), + [aux_sym_cmd_identifier_token34] = ACTIONS(2165), + [aux_sym_cmd_identifier_token35] = ACTIONS(2171), + [aux_sym_cmd_identifier_token36] = ACTIONS(2171), + [aux_sym_cmd_identifier_token37] = ACTIONS(2171), + [aux_sym_cmd_identifier_token38] = ACTIONS(2165), + [aux_sym_cmd_identifier_token39] = ACTIONS(2171), + [aux_sym_cmd_identifier_token40] = ACTIONS(2171), + [anon_sym_def] = ACTIONS(2165), + [anon_sym_export_DASHenv] = ACTIONS(2165), + [anon_sym_extern] = ACTIONS(2165), + [anon_sym_module] = ACTIONS(2165), + [anon_sym_use] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_DOLLAR] = ACTIONS(2171), + [anon_sym_error] = ACTIONS(2165), + [anon_sym_DASH2] = ACTIONS(2165), + [anon_sym_break] = ACTIONS(2165), + [anon_sym_continue] = ACTIONS(2165), + [anon_sym_for] = ACTIONS(2165), + [anon_sym_in2] = ACTIONS(2165), + [anon_sym_loop] = ACTIONS(2165), + [anon_sym_make] = ACTIONS(2165), + [anon_sym_while] = ACTIONS(2165), + [anon_sym_do] = ACTIONS(2165), + [anon_sym_if] = ACTIONS(2165), + [anon_sym_else] = ACTIONS(2165), + [anon_sym_match] = ACTIONS(2165), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_try] = ACTIONS(2165), + [anon_sym_catch] = ACTIONS(2165), + [anon_sym_return] = ACTIONS(2165), + [anon_sym_source] = ACTIONS(2165), + [anon_sym_source_DASHenv] = ACTIONS(2165), + [anon_sym_register] = ACTIONS(2165), + [anon_sym_hide] = ACTIONS(2165), + [anon_sym_hide_DASHenv] = ACTIONS(2165), + [anon_sym_overlay] = ACTIONS(2165), + [anon_sym_as] = ACTIONS(2165), + [anon_sym_PLUS2] = ACTIONS(2165), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2171), + [anon_sym_DOT_DOT2] = ACTIONS(2282), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2284), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2284), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2171), + [aux_sym__val_number_decimal_token1] = ACTIONS(2165), + [aux_sym__val_number_decimal_token2] = ACTIONS(2171), + [aux_sym__val_number_decimal_token3] = ACTIONS(2171), + [aux_sym__val_number_decimal_token4] = ACTIONS(2171), + [aux_sym__val_number_token1] = ACTIONS(2171), + [aux_sym__val_number_token2] = ACTIONS(2171), + [aux_sym__val_number_token3] = ACTIONS(2171), + [aux_sym__val_number_token4] = ACTIONS(2165), + [aux_sym__val_number_token5] = ACTIONS(2165), + [aux_sym__val_number_token6] = ACTIONS(2165), + [anon_sym_DQUOTE] = ACTIONS(2171), + [sym__str_single_quotes] = ACTIONS(2171), + [sym__str_back_ticks] = ACTIONS(2171), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2171), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2171), }, [563] = { [sym_comment] = STATE(563), + [anon_sym_export] = ACTIONS(2173), + [anon_sym_alias] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_let_DASHenv] = ACTIONS(2173), + [anon_sym_mut] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [aux_sym_cmd_identifier_token1] = ACTIONS(2173), + [aux_sym_cmd_identifier_token2] = ACTIONS(2175), + [aux_sym_cmd_identifier_token3] = ACTIONS(2175), + [aux_sym_cmd_identifier_token4] = ACTIONS(2175), + [aux_sym_cmd_identifier_token5] = ACTIONS(2175), + [aux_sym_cmd_identifier_token6] = ACTIONS(2175), + [aux_sym_cmd_identifier_token7] = ACTIONS(2175), + [aux_sym_cmd_identifier_token8] = ACTIONS(2173), + [aux_sym_cmd_identifier_token9] = ACTIONS(2173), + [aux_sym_cmd_identifier_token10] = ACTIONS(2175), + [aux_sym_cmd_identifier_token11] = ACTIONS(2175), + [aux_sym_cmd_identifier_token12] = ACTIONS(2173), + [aux_sym_cmd_identifier_token13] = ACTIONS(2173), + [aux_sym_cmd_identifier_token14] = ACTIONS(2173), + [aux_sym_cmd_identifier_token15] = ACTIONS(2173), + [aux_sym_cmd_identifier_token16] = ACTIONS(2175), + [aux_sym_cmd_identifier_token17] = ACTIONS(2175), + [aux_sym_cmd_identifier_token18] = ACTIONS(2175), + [aux_sym_cmd_identifier_token19] = ACTIONS(2175), + [aux_sym_cmd_identifier_token20] = ACTIONS(2175), + [aux_sym_cmd_identifier_token21] = ACTIONS(2175), + [aux_sym_cmd_identifier_token22] = ACTIONS(2175), + [aux_sym_cmd_identifier_token23] = ACTIONS(2175), + [aux_sym_cmd_identifier_token24] = ACTIONS(2175), + [aux_sym_cmd_identifier_token25] = ACTIONS(2175), + [aux_sym_cmd_identifier_token26] = ACTIONS(2175), + [aux_sym_cmd_identifier_token27] = ACTIONS(2175), + [aux_sym_cmd_identifier_token28] = ACTIONS(2175), + [aux_sym_cmd_identifier_token29] = ACTIONS(2175), + [aux_sym_cmd_identifier_token30] = ACTIONS(2175), + [aux_sym_cmd_identifier_token31] = ACTIONS(2175), + [aux_sym_cmd_identifier_token32] = ACTIONS(2175), + [aux_sym_cmd_identifier_token33] = ACTIONS(2175), + [aux_sym_cmd_identifier_token34] = ACTIONS(2173), + [aux_sym_cmd_identifier_token35] = ACTIONS(2175), + [aux_sym_cmd_identifier_token36] = ACTIONS(2175), + [aux_sym_cmd_identifier_token37] = ACTIONS(2175), + [aux_sym_cmd_identifier_token38] = ACTIONS(2173), + [aux_sym_cmd_identifier_token39] = ACTIONS(2175), + [aux_sym_cmd_identifier_token40] = ACTIONS(2175), + [anon_sym_def] = ACTIONS(2173), + [anon_sym_export_DASHenv] = ACTIONS(2173), + [anon_sym_extern] = ACTIONS(2173), + [anon_sym_module] = ACTIONS(2173), + [anon_sym_use] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_DOLLAR] = ACTIONS(2175), + [anon_sym_error] = ACTIONS(2173), + [anon_sym_DASH2] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_in2] = ACTIONS(2173), + [anon_sym_loop] = ACTIONS(2173), + [anon_sym_make] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_else] = ACTIONS(2173), + [anon_sym_match] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_catch] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_source] = ACTIONS(2173), + [anon_sym_source_DASHenv] = ACTIONS(2173), + [anon_sym_register] = ACTIONS(2173), + [anon_sym_hide] = ACTIONS(2173), + [anon_sym_hide_DASHenv] = ACTIONS(2173), + [anon_sym_overlay] = ACTIONS(2173), + [anon_sym_as] = ACTIONS(2173), + [anon_sym_PLUS2] = ACTIONS(2173), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2175), + [anon_sym_DOT_DOT2] = ACTIONS(2282), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2284), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2284), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2175), + [aux_sym__val_number_decimal_token1] = ACTIONS(2173), + [aux_sym__val_number_decimal_token2] = ACTIONS(2175), + [aux_sym__val_number_decimal_token3] = ACTIONS(2175), + [aux_sym__val_number_decimal_token4] = ACTIONS(2175), + [aux_sym__val_number_token1] = ACTIONS(2175), + [aux_sym__val_number_token2] = ACTIONS(2175), + [aux_sym__val_number_token3] = ACTIONS(2175), + [aux_sym__val_number_token4] = ACTIONS(2173), + [aux_sym__val_number_token5] = ACTIONS(2173), + [aux_sym__val_number_token6] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2175), + [sym__str_single_quotes] = ACTIONS(2175), + [sym__str_back_ticks] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2175), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2175), + }, + [564] = { + [sym_comment] = STATE(564), [anon_sym_export] = ACTIONS(1739), [anon_sym_alias] = ACTIONS(1739), [anon_sym_let] = ACTIONS(1739), @@ -136248,514 +136669,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1741), }, - [564] = { - [sym_comment] = STATE(564), - [anon_sym_export] = ACTIONS(994), - [anon_sym_alias] = ACTIONS(994), - [anon_sym_let] = ACTIONS(994), - [anon_sym_let_DASHenv] = ACTIONS(994), - [anon_sym_mut] = ACTIONS(994), - [anon_sym_const] = ACTIONS(994), - [aux_sym_cmd_identifier_token1] = ACTIONS(994), - [aux_sym_cmd_identifier_token2] = ACTIONS(994), - [aux_sym_cmd_identifier_token3] = ACTIONS(994), - [aux_sym_cmd_identifier_token4] = ACTIONS(994), - [aux_sym_cmd_identifier_token5] = ACTIONS(994), - [aux_sym_cmd_identifier_token6] = ACTIONS(994), - [aux_sym_cmd_identifier_token7] = ACTIONS(994), - [aux_sym_cmd_identifier_token8] = ACTIONS(994), - [aux_sym_cmd_identifier_token9] = ACTIONS(994), - [aux_sym_cmd_identifier_token10] = ACTIONS(994), - [aux_sym_cmd_identifier_token11] = ACTIONS(994), - [aux_sym_cmd_identifier_token12] = ACTIONS(994), - [aux_sym_cmd_identifier_token13] = ACTIONS(994), - [aux_sym_cmd_identifier_token14] = ACTIONS(994), - [aux_sym_cmd_identifier_token15] = ACTIONS(994), - [aux_sym_cmd_identifier_token16] = ACTIONS(994), - [aux_sym_cmd_identifier_token17] = ACTIONS(994), - [aux_sym_cmd_identifier_token18] = ACTIONS(994), - [aux_sym_cmd_identifier_token19] = ACTIONS(994), - [aux_sym_cmd_identifier_token20] = ACTIONS(994), - [aux_sym_cmd_identifier_token21] = ACTIONS(994), - [aux_sym_cmd_identifier_token22] = ACTIONS(994), - [aux_sym_cmd_identifier_token23] = ACTIONS(994), - [aux_sym_cmd_identifier_token24] = ACTIONS(994), - [aux_sym_cmd_identifier_token25] = ACTIONS(994), - [aux_sym_cmd_identifier_token26] = ACTIONS(994), - [aux_sym_cmd_identifier_token27] = ACTIONS(994), - [aux_sym_cmd_identifier_token28] = ACTIONS(994), - [aux_sym_cmd_identifier_token29] = ACTIONS(994), - [aux_sym_cmd_identifier_token30] = ACTIONS(994), - [aux_sym_cmd_identifier_token31] = ACTIONS(994), - [aux_sym_cmd_identifier_token32] = ACTIONS(994), - [aux_sym_cmd_identifier_token33] = ACTIONS(994), - [aux_sym_cmd_identifier_token34] = ACTIONS(994), - [aux_sym_cmd_identifier_token35] = ACTIONS(994), - [aux_sym_cmd_identifier_token36] = ACTIONS(994), - [aux_sym_cmd_identifier_token37] = ACTIONS(994), - [aux_sym_cmd_identifier_token38] = ACTIONS(994), - [aux_sym_cmd_identifier_token39] = ACTIONS(994), - [aux_sym_cmd_identifier_token40] = ACTIONS(994), - [anon_sym_def] = ACTIONS(994), - [anon_sym_export_DASHenv] = ACTIONS(994), - [anon_sym_extern] = ACTIONS(994), - [anon_sym_module] = ACTIONS(994), - [anon_sym_use] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(994), - [anon_sym_error] = ACTIONS(994), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_break] = ACTIONS(994), - [anon_sym_continue] = ACTIONS(994), - [anon_sym_for] = ACTIONS(994), - [anon_sym_in2] = ACTIONS(994), - [anon_sym_loop] = ACTIONS(994), - [anon_sym_make] = ACTIONS(994), - [anon_sym_while] = ACTIONS(994), - [anon_sym_do] = ACTIONS(994), - [anon_sym_if] = ACTIONS(994), - [anon_sym_else] = ACTIONS(994), - [anon_sym_match] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(994), - [anon_sym_try] = ACTIONS(994), - [anon_sym_catch] = ACTIONS(994), - [anon_sym_return] = ACTIONS(994), - [anon_sym_source] = ACTIONS(994), - [anon_sym_source_DASHenv] = ACTIONS(994), - [anon_sym_register] = ACTIONS(994), - [anon_sym_hide] = ACTIONS(994), - [anon_sym_hide_DASHenv] = ACTIONS(994), - [anon_sym_overlay] = ACTIONS(994), - [anon_sym_as] = ACTIONS(994), - [anon_sym_QMARK2] = ACTIONS(994), - [anon_sym_PLUS2] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(994), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(994), - [aux_sym__val_number_decimal_token1] = ACTIONS(994), - [aux_sym__val_number_decimal_token2] = ACTIONS(994), - [aux_sym__val_number_decimal_token3] = ACTIONS(994), - [aux_sym__val_number_decimal_token4] = ACTIONS(994), - [aux_sym__val_number_token1] = ACTIONS(994), - [aux_sym__val_number_token2] = ACTIONS(994), - [aux_sym__val_number_token3] = ACTIONS(994), - [aux_sym__val_number_token4] = ACTIONS(994), - [aux_sym__val_number_token5] = ACTIONS(994), - [aux_sym__val_number_token6] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym__str_single_quotes] = ACTIONS(994), - [sym__str_back_ticks] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(994), - [sym__entry_separator] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(996), - }, [565] = { [sym_comment] = STATE(565), - [anon_sym_export] = ACTIONS(1030), - [anon_sym_alias] = ACTIONS(1030), - [anon_sym_let] = ACTIONS(1030), - [anon_sym_let_DASHenv] = ACTIONS(1030), - [anon_sym_mut] = ACTIONS(1030), - [anon_sym_const] = ACTIONS(1030), - [aux_sym_cmd_identifier_token1] = ACTIONS(1030), - [aux_sym_cmd_identifier_token2] = ACTIONS(1030), - [aux_sym_cmd_identifier_token3] = ACTIONS(1030), - [aux_sym_cmd_identifier_token4] = ACTIONS(1030), - [aux_sym_cmd_identifier_token5] = ACTIONS(1030), - [aux_sym_cmd_identifier_token6] = ACTIONS(1030), - [aux_sym_cmd_identifier_token7] = ACTIONS(1030), - [aux_sym_cmd_identifier_token8] = ACTIONS(1030), - [aux_sym_cmd_identifier_token9] = ACTIONS(1030), - [aux_sym_cmd_identifier_token10] = ACTIONS(1030), - [aux_sym_cmd_identifier_token11] = ACTIONS(1030), - [aux_sym_cmd_identifier_token12] = ACTIONS(1030), - [aux_sym_cmd_identifier_token13] = ACTIONS(1030), - [aux_sym_cmd_identifier_token14] = ACTIONS(1030), - [aux_sym_cmd_identifier_token15] = ACTIONS(1030), - [aux_sym_cmd_identifier_token16] = ACTIONS(1030), - [aux_sym_cmd_identifier_token17] = ACTIONS(1030), - [aux_sym_cmd_identifier_token18] = ACTIONS(1030), - [aux_sym_cmd_identifier_token19] = ACTIONS(1030), - [aux_sym_cmd_identifier_token20] = ACTIONS(1030), - [aux_sym_cmd_identifier_token21] = ACTIONS(1030), - [aux_sym_cmd_identifier_token22] = ACTIONS(1030), - [aux_sym_cmd_identifier_token23] = ACTIONS(1030), - [aux_sym_cmd_identifier_token24] = ACTIONS(1030), - [aux_sym_cmd_identifier_token25] = ACTIONS(1030), - [aux_sym_cmd_identifier_token26] = ACTIONS(1030), - [aux_sym_cmd_identifier_token27] = ACTIONS(1030), - [aux_sym_cmd_identifier_token28] = ACTIONS(1030), - [aux_sym_cmd_identifier_token29] = ACTIONS(1030), - [aux_sym_cmd_identifier_token30] = ACTIONS(1030), - [aux_sym_cmd_identifier_token31] = ACTIONS(1030), - [aux_sym_cmd_identifier_token32] = ACTIONS(1030), - [aux_sym_cmd_identifier_token33] = ACTIONS(1030), - [aux_sym_cmd_identifier_token34] = ACTIONS(1030), - [aux_sym_cmd_identifier_token35] = ACTIONS(1030), - [aux_sym_cmd_identifier_token36] = ACTIONS(1030), - [aux_sym_cmd_identifier_token37] = ACTIONS(1030), - [aux_sym_cmd_identifier_token38] = ACTIONS(1030), - [aux_sym_cmd_identifier_token39] = ACTIONS(1030), - [aux_sym_cmd_identifier_token40] = ACTIONS(1030), - [anon_sym_def] = ACTIONS(1030), - [anon_sym_export_DASHenv] = ACTIONS(1030), - [anon_sym_extern] = ACTIONS(1030), - [anon_sym_module] = ACTIONS(1030), - [anon_sym_use] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(1030), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_error] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(1030), - [anon_sym_break] = ACTIONS(1030), - [anon_sym_continue] = ACTIONS(1030), - [anon_sym_for] = ACTIONS(1030), - [anon_sym_in2] = ACTIONS(1030), - [anon_sym_loop] = ACTIONS(1030), - [anon_sym_make] = ACTIONS(1030), - [anon_sym_while] = ACTIONS(1030), - [anon_sym_do] = ACTIONS(1030), - [anon_sym_if] = ACTIONS(1030), - [anon_sym_else] = ACTIONS(1030), - [anon_sym_match] = ACTIONS(1030), - [anon_sym_RBRACE] = ACTIONS(1032), - [anon_sym_try] = ACTIONS(1030), - [anon_sym_catch] = ACTIONS(1030), - [anon_sym_return] = ACTIONS(1030), - [anon_sym_source] = ACTIONS(1030), - [anon_sym_source_DASHenv] = ACTIONS(1030), - [anon_sym_register] = ACTIONS(1030), - [anon_sym_hide] = ACTIONS(1030), - [anon_sym_hide_DASHenv] = ACTIONS(1030), - [anon_sym_overlay] = ACTIONS(1030), - [anon_sym_as] = ACTIONS(1030), - [anon_sym_LPAREN2] = ACTIONS(2202), - [anon_sym_PLUS2] = ACTIONS(1030), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1032), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1030), - [aux_sym__val_number_decimal_token1] = ACTIONS(1030), - [aux_sym__val_number_decimal_token2] = ACTIONS(1030), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), - [aux_sym__val_number_token1] = ACTIONS(1030), - [aux_sym__val_number_token2] = ACTIONS(1030), - [aux_sym__val_number_token3] = ACTIONS(1030), - [aux_sym__val_number_token4] = ACTIONS(1030), - [aux_sym__val_number_token5] = ACTIONS(1030), - [aux_sym__val_number_token6] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1032), - [sym__str_single_quotes] = ACTIONS(1032), - [sym__str_back_ticks] = ACTIONS(1032), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1032), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2204), + [aux_sym__multiple_types_repeat1] = STATE(600), + [anon_sym_export] = ACTIONS(2286), + [anon_sym_alias] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2286), + [anon_sym_let_DASHenv] = ACTIONS(2286), + [anon_sym_mut] = ACTIONS(2286), + [anon_sym_const] = ACTIONS(2286), + [aux_sym_cmd_identifier_token1] = ACTIONS(2286), + [aux_sym_cmd_identifier_token2] = ACTIONS(2286), + [aux_sym_cmd_identifier_token3] = ACTIONS(2286), + [aux_sym_cmd_identifier_token4] = ACTIONS(2286), + [aux_sym_cmd_identifier_token5] = ACTIONS(2286), + [aux_sym_cmd_identifier_token6] = ACTIONS(2286), + [aux_sym_cmd_identifier_token7] = ACTIONS(2286), + [aux_sym_cmd_identifier_token8] = ACTIONS(2286), + [aux_sym_cmd_identifier_token9] = ACTIONS(2286), + [aux_sym_cmd_identifier_token10] = ACTIONS(2286), + [aux_sym_cmd_identifier_token11] = ACTIONS(2286), + [aux_sym_cmd_identifier_token12] = ACTIONS(2286), + [aux_sym_cmd_identifier_token13] = ACTIONS(2286), + [aux_sym_cmd_identifier_token14] = ACTIONS(2286), + [aux_sym_cmd_identifier_token15] = ACTIONS(2286), + [aux_sym_cmd_identifier_token16] = ACTIONS(2286), + [aux_sym_cmd_identifier_token17] = ACTIONS(2286), + [aux_sym_cmd_identifier_token18] = ACTIONS(2286), + [aux_sym_cmd_identifier_token19] = ACTIONS(2286), + [aux_sym_cmd_identifier_token20] = ACTIONS(2286), + [aux_sym_cmd_identifier_token21] = ACTIONS(2286), + [aux_sym_cmd_identifier_token22] = ACTIONS(2286), + [aux_sym_cmd_identifier_token23] = ACTIONS(2286), + [aux_sym_cmd_identifier_token24] = ACTIONS(2286), + [aux_sym_cmd_identifier_token25] = ACTIONS(2286), + [aux_sym_cmd_identifier_token26] = ACTIONS(2286), + [aux_sym_cmd_identifier_token27] = ACTIONS(2286), + [aux_sym_cmd_identifier_token28] = ACTIONS(2286), + [aux_sym_cmd_identifier_token29] = ACTIONS(2286), + [aux_sym_cmd_identifier_token30] = ACTIONS(2286), + [aux_sym_cmd_identifier_token31] = ACTIONS(2286), + [aux_sym_cmd_identifier_token32] = ACTIONS(2286), + [aux_sym_cmd_identifier_token33] = ACTIONS(2286), + [aux_sym_cmd_identifier_token34] = ACTIONS(2286), + [aux_sym_cmd_identifier_token35] = ACTIONS(2286), + [aux_sym_cmd_identifier_token36] = ACTIONS(2286), + [aux_sym_cmd_identifier_token37] = ACTIONS(2286), + [aux_sym_cmd_identifier_token38] = ACTIONS(2286), + [aux_sym_cmd_identifier_token39] = ACTIONS(2286), + [aux_sym_cmd_identifier_token40] = ACTIONS(2286), + [anon_sym_def] = ACTIONS(2286), + [anon_sym_export_DASHenv] = ACTIONS(2286), + [anon_sym_extern] = ACTIONS(2286), + [anon_sym_module] = ACTIONS(2286), + [anon_sym_use] = ACTIONS(2286), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_DOLLAR] = ACTIONS(2286), + [anon_sym_error] = ACTIONS(2286), + [anon_sym_DASH2] = ACTIONS(2286), + [anon_sym_break] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2286), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_in2] = ACTIONS(2286), + [anon_sym_loop] = ACTIONS(2286), + [anon_sym_make] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2286), + [anon_sym_do] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_else] = ACTIONS(2286), + [anon_sym_match] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2286), + [anon_sym_catch] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_source] = ACTIONS(2286), + [anon_sym_source_DASHenv] = ACTIONS(2286), + [anon_sym_register] = ACTIONS(2286), + [anon_sym_hide] = ACTIONS(2286), + [anon_sym_hide_DASHenv] = ACTIONS(2286), + [anon_sym_overlay] = ACTIONS(2286), + [anon_sym_as] = ACTIONS(2286), + [anon_sym_PLUS2] = ACTIONS(2286), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2286), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2286), + [aux_sym__val_number_decimal_token1] = ACTIONS(2286), + [aux_sym__val_number_decimal_token2] = ACTIONS(2286), + [aux_sym__val_number_decimal_token3] = ACTIONS(2286), + [aux_sym__val_number_decimal_token4] = ACTIONS(2286), + [aux_sym__val_number_token1] = ACTIONS(2286), + [aux_sym__val_number_token2] = ACTIONS(2286), + [aux_sym__val_number_token3] = ACTIONS(2286), + [aux_sym__val_number_token4] = ACTIONS(2286), + [aux_sym__val_number_token5] = ACTIONS(2286), + [aux_sym__val_number_token6] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [sym__str_single_quotes] = ACTIONS(2286), + [sym__str_back_ticks] = ACTIONS(2286), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2286), + [sym__entry_separator] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1032), + [sym_raw_string_begin] = ACTIONS(2292), }, [566] = { [sym_comment] = STATE(566), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_alias] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_let_DASHenv] = ACTIONS(1755), - [anon_sym_mut] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1755), - [aux_sym_cmd_identifier_token3] = ACTIONS(1755), - [aux_sym_cmd_identifier_token4] = ACTIONS(1755), - [aux_sym_cmd_identifier_token5] = ACTIONS(1755), - [aux_sym_cmd_identifier_token6] = ACTIONS(1755), - [aux_sym_cmd_identifier_token7] = ACTIONS(1755), - [aux_sym_cmd_identifier_token8] = ACTIONS(1755), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1755), - [aux_sym_cmd_identifier_token11] = ACTIONS(1755), - [aux_sym_cmd_identifier_token12] = ACTIONS(1755), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1755), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1755), - [aux_sym_cmd_identifier_token17] = ACTIONS(1755), - [aux_sym_cmd_identifier_token18] = ACTIONS(1755), - [aux_sym_cmd_identifier_token19] = ACTIONS(1755), - [aux_sym_cmd_identifier_token20] = ACTIONS(1755), - [aux_sym_cmd_identifier_token21] = ACTIONS(1755), - [aux_sym_cmd_identifier_token22] = ACTIONS(1755), - [aux_sym_cmd_identifier_token23] = ACTIONS(1755), - [aux_sym_cmd_identifier_token24] = ACTIONS(1755), - [aux_sym_cmd_identifier_token25] = ACTIONS(1755), - [aux_sym_cmd_identifier_token26] = ACTIONS(1755), - [aux_sym_cmd_identifier_token27] = ACTIONS(1755), - [aux_sym_cmd_identifier_token28] = ACTIONS(1755), - [aux_sym_cmd_identifier_token29] = ACTIONS(1755), - [aux_sym_cmd_identifier_token30] = ACTIONS(1755), - [aux_sym_cmd_identifier_token31] = ACTIONS(1755), - [aux_sym_cmd_identifier_token32] = ACTIONS(1755), - [aux_sym_cmd_identifier_token33] = ACTIONS(1755), - [aux_sym_cmd_identifier_token34] = ACTIONS(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1755), - [aux_sym_cmd_identifier_token36] = ACTIONS(1755), - [aux_sym_cmd_identifier_token37] = ACTIONS(1755), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1755), - [aux_sym_cmd_identifier_token40] = ACTIONS(1755), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_export_DASHenv] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_make] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1755), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_source] = ACTIONS(1755), - [anon_sym_source_DASHenv] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_hide] = ACTIONS(1755), - [anon_sym_hide_DASHenv] = ACTIONS(1755), - [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), - [aux_sym__immediate_decimal_token2] = ACTIONS(2200), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1755), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1755), - [aux_sym__val_number_decimal_token3] = ACTIONS(1755), - [aux_sym__val_number_decimal_token4] = ACTIONS(1755), - [aux_sym__val_number_token1] = ACTIONS(1755), - [aux_sym__val_number_token2] = ACTIONS(1755), - [aux_sym__val_number_token3] = ACTIONS(1755), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym__str_single_quotes] = ACTIONS(1755), - [sym__str_back_ticks] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1755), - [sym__entry_separator] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(978), + [anon_sym_alias] = ACTIONS(978), + [anon_sym_let] = ACTIONS(978), + [anon_sym_let_DASHenv] = ACTIONS(978), + [anon_sym_mut] = ACTIONS(978), + [anon_sym_const] = ACTIONS(978), + [aux_sym_cmd_identifier_token1] = ACTIONS(978), + [aux_sym_cmd_identifier_token2] = ACTIONS(980), + [aux_sym_cmd_identifier_token3] = ACTIONS(980), + [aux_sym_cmd_identifier_token4] = ACTIONS(980), + [aux_sym_cmd_identifier_token5] = ACTIONS(980), + [aux_sym_cmd_identifier_token6] = ACTIONS(980), + [aux_sym_cmd_identifier_token7] = ACTIONS(980), + [aux_sym_cmd_identifier_token8] = ACTIONS(978), + [aux_sym_cmd_identifier_token9] = ACTIONS(978), + [aux_sym_cmd_identifier_token10] = ACTIONS(980), + [aux_sym_cmd_identifier_token11] = ACTIONS(980), + [aux_sym_cmd_identifier_token12] = ACTIONS(978), + [aux_sym_cmd_identifier_token13] = ACTIONS(978), + [aux_sym_cmd_identifier_token14] = ACTIONS(978), + [aux_sym_cmd_identifier_token15] = ACTIONS(978), + [aux_sym_cmd_identifier_token16] = ACTIONS(980), + [aux_sym_cmd_identifier_token17] = ACTIONS(980), + [aux_sym_cmd_identifier_token18] = ACTIONS(980), + [aux_sym_cmd_identifier_token19] = ACTIONS(980), + [aux_sym_cmd_identifier_token20] = ACTIONS(980), + [aux_sym_cmd_identifier_token21] = ACTIONS(980), + [aux_sym_cmd_identifier_token22] = ACTIONS(980), + [aux_sym_cmd_identifier_token23] = ACTIONS(980), + [aux_sym_cmd_identifier_token24] = ACTIONS(980), + [aux_sym_cmd_identifier_token25] = ACTIONS(980), + [aux_sym_cmd_identifier_token26] = ACTIONS(980), + [aux_sym_cmd_identifier_token27] = ACTIONS(980), + [aux_sym_cmd_identifier_token28] = ACTIONS(980), + [aux_sym_cmd_identifier_token29] = ACTIONS(980), + [aux_sym_cmd_identifier_token30] = ACTIONS(980), + [aux_sym_cmd_identifier_token31] = ACTIONS(980), + [aux_sym_cmd_identifier_token32] = ACTIONS(980), + [aux_sym_cmd_identifier_token33] = ACTIONS(980), + [aux_sym_cmd_identifier_token34] = ACTIONS(978), + [aux_sym_cmd_identifier_token35] = ACTIONS(980), + [aux_sym_cmd_identifier_token36] = ACTIONS(980), + [aux_sym_cmd_identifier_token37] = ACTIONS(980), + [aux_sym_cmd_identifier_token38] = ACTIONS(978), + [aux_sym_cmd_identifier_token39] = ACTIONS(980), + [aux_sym_cmd_identifier_token40] = ACTIONS(980), + [anon_sym_def] = ACTIONS(978), + [anon_sym_export_DASHenv] = ACTIONS(978), + [anon_sym_extern] = ACTIONS(978), + [anon_sym_module] = ACTIONS(978), + [anon_sym_use] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(980), + [anon_sym_error] = ACTIONS(978), + [anon_sym_DASH2] = ACTIONS(978), + [anon_sym_break] = ACTIONS(978), + [anon_sym_continue] = ACTIONS(978), + [anon_sym_for] = ACTIONS(978), + [anon_sym_in2] = ACTIONS(978), + [anon_sym_loop] = ACTIONS(978), + [anon_sym_make] = ACTIONS(978), + [anon_sym_while] = ACTIONS(978), + [anon_sym_do] = ACTIONS(978), + [anon_sym_if] = ACTIONS(978), + [anon_sym_else] = ACTIONS(978), + [anon_sym_match] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_try] = ACTIONS(978), + [anon_sym_catch] = ACTIONS(978), + [anon_sym_return] = ACTIONS(978), + [anon_sym_source] = ACTIONS(978), + [anon_sym_source_DASHenv] = ACTIONS(978), + [anon_sym_register] = ACTIONS(978), + [anon_sym_hide] = ACTIONS(978), + [anon_sym_hide_DASHenv] = ACTIONS(978), + [anon_sym_overlay] = ACTIONS(978), + [anon_sym_as] = ACTIONS(978), + [anon_sym_QMARK2] = ACTIONS(2294), + [anon_sym_PLUS2] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(980), + [aux_sym__val_number_decimal_token1] = ACTIONS(978), + [aux_sym__val_number_decimal_token2] = ACTIONS(980), + [aux_sym__val_number_decimal_token3] = ACTIONS(980), + [aux_sym__val_number_decimal_token4] = ACTIONS(980), + [aux_sym__val_number_token1] = ACTIONS(980), + [aux_sym__val_number_token2] = ACTIONS(980), + [aux_sym__val_number_token3] = ACTIONS(980), + [aux_sym__val_number_token4] = ACTIONS(978), + [aux_sym__val_number_token5] = ACTIONS(978), + [aux_sym__val_number_token6] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(980), + [sym__str_single_quotes] = ACTIONS(980), + [sym__str_back_ticks] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(980), }, [567] = { [sym_comment] = STATE(567), - [anon_sym_export] = ACTIONS(2252), - [anon_sym_alias] = ACTIONS(2252), - [anon_sym_let] = ACTIONS(2252), - [anon_sym_let_DASHenv] = ACTIONS(2252), - [anon_sym_mut] = ACTIONS(2252), - [anon_sym_const] = ACTIONS(2252), - [aux_sym_cmd_identifier_token1] = ACTIONS(2252), - [aux_sym_cmd_identifier_token2] = ACTIONS(2256), - [aux_sym_cmd_identifier_token3] = ACTIONS(2256), - [aux_sym_cmd_identifier_token4] = ACTIONS(2256), - [aux_sym_cmd_identifier_token5] = ACTIONS(2256), - [aux_sym_cmd_identifier_token6] = ACTIONS(2256), - [aux_sym_cmd_identifier_token7] = ACTIONS(2256), - [aux_sym_cmd_identifier_token8] = ACTIONS(2252), - [aux_sym_cmd_identifier_token9] = ACTIONS(2252), - [aux_sym_cmd_identifier_token10] = ACTIONS(2256), - [aux_sym_cmd_identifier_token11] = ACTIONS(2256), - [aux_sym_cmd_identifier_token12] = ACTIONS(2252), - [aux_sym_cmd_identifier_token13] = ACTIONS(2252), - [aux_sym_cmd_identifier_token14] = ACTIONS(2252), - [aux_sym_cmd_identifier_token15] = ACTIONS(2252), - [aux_sym_cmd_identifier_token16] = ACTIONS(2256), - [aux_sym_cmd_identifier_token17] = ACTIONS(2256), - [aux_sym_cmd_identifier_token18] = ACTIONS(2256), - [aux_sym_cmd_identifier_token19] = ACTIONS(2256), - [aux_sym_cmd_identifier_token20] = ACTIONS(2256), - [aux_sym_cmd_identifier_token21] = ACTIONS(2256), - [aux_sym_cmd_identifier_token22] = ACTIONS(2256), - [aux_sym_cmd_identifier_token23] = ACTIONS(2256), - [aux_sym_cmd_identifier_token24] = ACTIONS(2256), - [aux_sym_cmd_identifier_token25] = ACTIONS(2256), - [aux_sym_cmd_identifier_token26] = ACTIONS(2256), - [aux_sym_cmd_identifier_token27] = ACTIONS(2256), - [aux_sym_cmd_identifier_token28] = ACTIONS(2256), - [aux_sym_cmd_identifier_token29] = ACTIONS(2256), - [aux_sym_cmd_identifier_token30] = ACTIONS(2256), - [aux_sym_cmd_identifier_token31] = ACTIONS(2256), - [aux_sym_cmd_identifier_token32] = ACTIONS(2256), - [aux_sym_cmd_identifier_token33] = ACTIONS(2256), - [aux_sym_cmd_identifier_token34] = ACTIONS(2252), - [aux_sym_cmd_identifier_token35] = ACTIONS(2256), - [aux_sym_cmd_identifier_token36] = ACTIONS(2256), - [aux_sym_cmd_identifier_token37] = ACTIONS(2256), - [aux_sym_cmd_identifier_token38] = ACTIONS(2252), - [aux_sym_cmd_identifier_token39] = ACTIONS(2256), - [aux_sym_cmd_identifier_token40] = ACTIONS(2256), - [anon_sym_def] = ACTIONS(2252), - [anon_sym_export_DASHenv] = ACTIONS(2252), - [anon_sym_extern] = ACTIONS(2252), - [anon_sym_module] = ACTIONS(2252), - [anon_sym_use] = ACTIONS(2252), - [anon_sym_LPAREN] = ACTIONS(2252), - [anon_sym_DOLLAR] = ACTIONS(2256), - [anon_sym_error] = ACTIONS(2252), - [anon_sym_DASH2] = ACTIONS(2252), - [anon_sym_break] = ACTIONS(2252), - [anon_sym_continue] = ACTIONS(2252), - [anon_sym_for] = ACTIONS(2252), - [anon_sym_in2] = ACTIONS(2252), - [anon_sym_loop] = ACTIONS(2252), - [anon_sym_make] = ACTIONS(2252), - [anon_sym_while] = ACTIONS(2252), - [anon_sym_do] = ACTIONS(2252), - [anon_sym_if] = ACTIONS(2252), - [anon_sym_else] = ACTIONS(2252), - [anon_sym_match] = ACTIONS(2252), - [anon_sym_RBRACE] = ACTIONS(2256), - [anon_sym_try] = ACTIONS(2252), - [anon_sym_catch] = ACTIONS(2252), - [anon_sym_return] = ACTIONS(2252), - [anon_sym_source] = ACTIONS(2252), - [anon_sym_source_DASHenv] = ACTIONS(2252), - [anon_sym_register] = ACTIONS(2252), - [anon_sym_hide] = ACTIONS(2252), - [anon_sym_hide_DASHenv] = ACTIONS(2252), - [anon_sym_overlay] = ACTIONS(2252), - [anon_sym_as] = ACTIONS(2252), - [anon_sym_LPAREN2] = ACTIONS(2254), - [anon_sym_PLUS2] = ACTIONS(2252), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2256), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2256), - [aux_sym__val_number_decimal_token1] = ACTIONS(2252), - [aux_sym__val_number_decimal_token2] = ACTIONS(2256), - [aux_sym__val_number_decimal_token3] = ACTIONS(2256), - [aux_sym__val_number_decimal_token4] = ACTIONS(2256), - [aux_sym__val_number_token1] = ACTIONS(2256), - [aux_sym__val_number_token2] = ACTIONS(2256), - [aux_sym__val_number_token3] = ACTIONS(2256), - [aux_sym__val_number_token4] = ACTIONS(2252), - [aux_sym__val_number_token5] = ACTIONS(2252), - [aux_sym__val_number_token6] = ACTIONS(2252), - [anon_sym_DQUOTE] = ACTIONS(2256), - [sym__str_single_quotes] = ACTIONS(2256), - [sym__str_back_ticks] = ACTIONS(2256), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2256), - [aux_sym__unquoted_in_record_token2] = ACTIONS(2258), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2256), - }, - [568] = { - [sym_comment] = STATE(568), - [anon_sym_export] = ACTIONS(2248), - [anon_sym_alias] = ACTIONS(2248), - [anon_sym_let] = ACTIONS(2248), - [anon_sym_let_DASHenv] = ACTIONS(2248), - [anon_sym_mut] = ACTIONS(2248), - [anon_sym_const] = ACTIONS(2248), - [aux_sym_cmd_identifier_token1] = ACTIONS(2248), - [aux_sym_cmd_identifier_token2] = ACTIONS(2248), - [aux_sym_cmd_identifier_token3] = ACTIONS(2248), - [aux_sym_cmd_identifier_token4] = ACTIONS(2248), - [aux_sym_cmd_identifier_token5] = ACTIONS(2248), - [aux_sym_cmd_identifier_token6] = ACTIONS(2248), - [aux_sym_cmd_identifier_token7] = ACTIONS(2248), - [aux_sym_cmd_identifier_token8] = ACTIONS(2248), - [aux_sym_cmd_identifier_token9] = ACTIONS(2248), - [aux_sym_cmd_identifier_token10] = ACTIONS(2248), - [aux_sym_cmd_identifier_token11] = ACTIONS(2248), - [aux_sym_cmd_identifier_token12] = ACTIONS(2248), - [aux_sym_cmd_identifier_token13] = ACTIONS(2248), - [aux_sym_cmd_identifier_token14] = ACTIONS(2248), - [aux_sym_cmd_identifier_token15] = ACTIONS(2248), - [aux_sym_cmd_identifier_token16] = ACTIONS(2248), - [aux_sym_cmd_identifier_token17] = ACTIONS(2248), - [aux_sym_cmd_identifier_token18] = ACTIONS(2248), - [aux_sym_cmd_identifier_token19] = ACTIONS(2248), - [aux_sym_cmd_identifier_token20] = ACTIONS(2248), - [aux_sym_cmd_identifier_token21] = ACTIONS(2248), - [aux_sym_cmd_identifier_token22] = ACTIONS(2248), - [aux_sym_cmd_identifier_token23] = ACTIONS(2248), - [aux_sym_cmd_identifier_token24] = ACTIONS(2248), - [aux_sym_cmd_identifier_token25] = ACTIONS(2248), - [aux_sym_cmd_identifier_token26] = ACTIONS(2248), - [aux_sym_cmd_identifier_token27] = ACTIONS(2248), - [aux_sym_cmd_identifier_token28] = ACTIONS(2248), - [aux_sym_cmd_identifier_token29] = ACTIONS(2248), - [aux_sym_cmd_identifier_token30] = ACTIONS(2248), - [aux_sym_cmd_identifier_token31] = ACTIONS(2248), - [aux_sym_cmd_identifier_token32] = ACTIONS(2248), - [aux_sym_cmd_identifier_token33] = ACTIONS(2248), - [aux_sym_cmd_identifier_token34] = ACTIONS(2248), - [aux_sym_cmd_identifier_token35] = ACTIONS(2248), - [aux_sym_cmd_identifier_token36] = ACTIONS(2248), - [aux_sym_cmd_identifier_token37] = ACTIONS(2248), - [aux_sym_cmd_identifier_token38] = ACTIONS(2248), - [aux_sym_cmd_identifier_token39] = ACTIONS(2248), - [aux_sym_cmd_identifier_token40] = ACTIONS(2248), - [anon_sym_def] = ACTIONS(2248), - [anon_sym_export_DASHenv] = ACTIONS(2248), - [anon_sym_extern] = ACTIONS(2248), - [anon_sym_module] = ACTIONS(2248), - [anon_sym_use] = ACTIONS(2248), - [anon_sym_LPAREN] = ACTIONS(2248), - [anon_sym_DOLLAR] = ACTIONS(2248), - [anon_sym_error] = ACTIONS(2248), - [anon_sym_DASH2] = ACTIONS(2248), - [anon_sym_break] = ACTIONS(2248), - [anon_sym_continue] = ACTIONS(2248), - [anon_sym_for] = ACTIONS(2248), - [anon_sym_in2] = ACTIONS(2248), - [anon_sym_loop] = ACTIONS(2248), - [anon_sym_make] = ACTIONS(2248), - [anon_sym_while] = ACTIONS(2248), - [anon_sym_do] = ACTIONS(2248), - [anon_sym_if] = ACTIONS(2248), - [anon_sym_else] = ACTIONS(2248), - [anon_sym_match] = ACTIONS(2248), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_try] = ACTIONS(2248), - [anon_sym_catch] = ACTIONS(2248), - [anon_sym_return] = ACTIONS(2248), - [anon_sym_source] = ACTIONS(2248), - [anon_sym_source_DASHenv] = ACTIONS(2248), - [anon_sym_register] = ACTIONS(2248), - [anon_sym_hide] = ACTIONS(2248), - [anon_sym_hide_DASHenv] = ACTIONS(2248), - [anon_sym_overlay] = ACTIONS(2248), - [anon_sym_as] = ACTIONS(2248), - [anon_sym_LPAREN2] = ACTIONS(2250), - [anon_sym_PLUS2] = ACTIONS(2248), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2250), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2248), - [aux_sym__val_number_decimal_token1] = ACTIONS(2248), - [aux_sym__val_number_decimal_token2] = ACTIONS(2248), - [aux_sym__val_number_decimal_token3] = ACTIONS(2248), - [aux_sym__val_number_decimal_token4] = ACTIONS(2248), - [aux_sym__val_number_token1] = ACTIONS(2248), - [aux_sym__val_number_token2] = ACTIONS(2248), - [aux_sym__val_number_token3] = ACTIONS(2248), - [aux_sym__val_number_token4] = ACTIONS(2248), - [aux_sym__val_number_token5] = ACTIONS(2248), - [aux_sym__val_number_token6] = ACTIONS(2248), - [anon_sym_DQUOTE] = ACTIONS(2250), - [sym__str_single_quotes] = ACTIONS(2250), - [sym__str_back_ticks] = ACTIONS(2250), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2250), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2248), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2250), - }, - [569] = { - [sym_comment] = STATE(569), [anon_sym_export] = ACTIONS(1006), [anon_sym_alias] = ACTIONS(1006), [anon_sym_let] = ACTIONS(1006), @@ -136853,209 +136970,411 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1006), [sym__entry_separator] = ACTIONS(1008), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1008), + [sym_raw_string_begin] = ACTIONS(1008), + }, + [568] = { + [sym_comment] = STATE(568), + [anon_sym_export] = ACTIONS(984), + [anon_sym_alias] = ACTIONS(984), + [anon_sym_let] = ACTIONS(984), + [anon_sym_let_DASHenv] = ACTIONS(984), + [anon_sym_mut] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [aux_sym_cmd_identifier_token1] = ACTIONS(984), + [aux_sym_cmd_identifier_token2] = ACTIONS(986), + [aux_sym_cmd_identifier_token3] = ACTIONS(986), + [aux_sym_cmd_identifier_token4] = ACTIONS(986), + [aux_sym_cmd_identifier_token5] = ACTIONS(986), + [aux_sym_cmd_identifier_token6] = ACTIONS(986), + [aux_sym_cmd_identifier_token7] = ACTIONS(986), + [aux_sym_cmd_identifier_token8] = ACTIONS(984), + [aux_sym_cmd_identifier_token9] = ACTIONS(984), + [aux_sym_cmd_identifier_token10] = ACTIONS(986), + [aux_sym_cmd_identifier_token11] = ACTIONS(986), + [aux_sym_cmd_identifier_token12] = ACTIONS(984), + [aux_sym_cmd_identifier_token13] = ACTIONS(984), + [aux_sym_cmd_identifier_token14] = ACTIONS(984), + [aux_sym_cmd_identifier_token15] = ACTIONS(984), + [aux_sym_cmd_identifier_token16] = ACTIONS(986), + [aux_sym_cmd_identifier_token17] = ACTIONS(986), + [aux_sym_cmd_identifier_token18] = ACTIONS(986), + [aux_sym_cmd_identifier_token19] = ACTIONS(986), + [aux_sym_cmd_identifier_token20] = ACTIONS(986), + [aux_sym_cmd_identifier_token21] = ACTIONS(986), + [aux_sym_cmd_identifier_token22] = ACTIONS(986), + [aux_sym_cmd_identifier_token23] = ACTIONS(986), + [aux_sym_cmd_identifier_token24] = ACTIONS(986), + [aux_sym_cmd_identifier_token25] = ACTIONS(986), + [aux_sym_cmd_identifier_token26] = ACTIONS(986), + [aux_sym_cmd_identifier_token27] = ACTIONS(986), + [aux_sym_cmd_identifier_token28] = ACTIONS(986), + [aux_sym_cmd_identifier_token29] = ACTIONS(986), + [aux_sym_cmd_identifier_token30] = ACTIONS(986), + [aux_sym_cmd_identifier_token31] = ACTIONS(986), + [aux_sym_cmd_identifier_token32] = ACTIONS(986), + [aux_sym_cmd_identifier_token33] = ACTIONS(986), + [aux_sym_cmd_identifier_token34] = ACTIONS(984), + [aux_sym_cmd_identifier_token35] = ACTIONS(986), + [aux_sym_cmd_identifier_token36] = ACTIONS(986), + [aux_sym_cmd_identifier_token37] = ACTIONS(986), + [aux_sym_cmd_identifier_token38] = ACTIONS(984), + [aux_sym_cmd_identifier_token39] = ACTIONS(986), + [aux_sym_cmd_identifier_token40] = ACTIONS(986), + [anon_sym_def] = ACTIONS(984), + [anon_sym_export_DASHenv] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [anon_sym_use] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_error] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_in2] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(984), + [anon_sym_make] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_match] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_try] = ACTIONS(984), + [anon_sym_catch] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_source] = ACTIONS(984), + [anon_sym_source_DASHenv] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_hide] = ACTIONS(984), + [anon_sym_hide_DASHenv] = ACTIONS(984), + [anon_sym_overlay] = ACTIONS(984), + [anon_sym_as] = ACTIONS(984), + [anon_sym_QMARK2] = ACTIONS(2296), + [anon_sym_PLUS2] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), + [anon_sym_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), + [aux_sym__val_number_decimal_token1] = ACTIONS(984), + [aux_sym__val_number_decimal_token2] = ACTIONS(986), + [aux_sym__val_number_decimal_token3] = ACTIONS(986), + [aux_sym__val_number_decimal_token4] = ACTIONS(986), + [aux_sym__val_number_token1] = ACTIONS(986), + [aux_sym__val_number_token2] = ACTIONS(986), + [aux_sym__val_number_token3] = ACTIONS(986), + [aux_sym__val_number_token4] = ACTIONS(984), + [aux_sym__val_number_token5] = ACTIONS(984), + [aux_sym__val_number_token6] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym__str_single_quotes] = ACTIONS(986), + [sym__str_back_ticks] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(986), + }, + [569] = { + [sym_comment] = STATE(569), + [anon_sym_export] = ACTIONS(1765), + [anon_sym_alias] = ACTIONS(1765), + [anon_sym_let] = ACTIONS(1765), + [anon_sym_let_DASHenv] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [aux_sym_cmd_identifier_token1] = ACTIONS(1765), + [aux_sym_cmd_identifier_token2] = ACTIONS(1765), + [aux_sym_cmd_identifier_token3] = ACTIONS(1765), + [aux_sym_cmd_identifier_token4] = ACTIONS(1765), + [aux_sym_cmd_identifier_token5] = ACTIONS(1765), + [aux_sym_cmd_identifier_token6] = ACTIONS(1765), + [aux_sym_cmd_identifier_token7] = ACTIONS(1765), + [aux_sym_cmd_identifier_token8] = ACTIONS(1765), + [aux_sym_cmd_identifier_token9] = ACTIONS(1765), + [aux_sym_cmd_identifier_token10] = ACTIONS(1765), + [aux_sym_cmd_identifier_token11] = ACTIONS(1765), + [aux_sym_cmd_identifier_token12] = ACTIONS(1765), + [aux_sym_cmd_identifier_token13] = ACTIONS(1765), + [aux_sym_cmd_identifier_token14] = ACTIONS(1765), + [aux_sym_cmd_identifier_token15] = ACTIONS(1765), + [aux_sym_cmd_identifier_token16] = ACTIONS(1765), + [aux_sym_cmd_identifier_token17] = ACTIONS(1765), + [aux_sym_cmd_identifier_token18] = ACTIONS(1765), + [aux_sym_cmd_identifier_token19] = ACTIONS(1765), + [aux_sym_cmd_identifier_token20] = ACTIONS(1765), + [aux_sym_cmd_identifier_token21] = ACTIONS(1765), + [aux_sym_cmd_identifier_token22] = ACTIONS(1765), + [aux_sym_cmd_identifier_token23] = ACTIONS(1765), + [aux_sym_cmd_identifier_token24] = ACTIONS(1765), + [aux_sym_cmd_identifier_token25] = ACTIONS(1765), + [aux_sym_cmd_identifier_token26] = ACTIONS(1765), + [aux_sym_cmd_identifier_token27] = ACTIONS(1765), + [aux_sym_cmd_identifier_token28] = ACTIONS(1765), + [aux_sym_cmd_identifier_token29] = ACTIONS(1765), + [aux_sym_cmd_identifier_token30] = ACTIONS(1765), + [aux_sym_cmd_identifier_token31] = ACTIONS(1765), + [aux_sym_cmd_identifier_token32] = ACTIONS(1765), + [aux_sym_cmd_identifier_token33] = ACTIONS(1765), + [aux_sym_cmd_identifier_token34] = ACTIONS(1765), + [aux_sym_cmd_identifier_token35] = ACTIONS(1765), + [aux_sym_cmd_identifier_token36] = ACTIONS(1765), + [aux_sym_cmd_identifier_token37] = ACTIONS(1765), + [aux_sym_cmd_identifier_token38] = ACTIONS(1765), + [aux_sym_cmd_identifier_token39] = ACTIONS(1765), + [aux_sym_cmd_identifier_token40] = ACTIONS(1765), + [anon_sym_def] = ACTIONS(1765), + [anon_sym_export_DASHenv] = ACTIONS(1765), + [anon_sym_extern] = ACTIONS(1765), + [anon_sym_module] = ACTIONS(1765), + [anon_sym_use] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_DOLLAR] = ACTIONS(1765), + [anon_sym_error] = ACTIONS(1765), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_in2] = ACTIONS(1765), + [anon_sym_loop] = ACTIONS(1765), + [anon_sym_make] = ACTIONS(1765), + [anon_sym_while] = ACTIONS(1765), + [anon_sym_do] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_else] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_try] = ACTIONS(1765), + [anon_sym_catch] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_source] = ACTIONS(1765), + [anon_sym_source_DASHenv] = ACTIONS(1765), + [anon_sym_register] = ACTIONS(1765), + [anon_sym_hide] = ACTIONS(1765), + [anon_sym_hide_DASHenv] = ACTIONS(1765), + [anon_sym_overlay] = ACTIONS(1765), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_PLUS2] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), + [aux_sym__immediate_decimal_token2] = ACTIONS(2236), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1765), + [aux_sym__val_number_decimal_token3] = ACTIONS(1765), + [aux_sym__val_number_decimal_token4] = ACTIONS(1765), + [aux_sym__val_number_token1] = ACTIONS(1765), + [aux_sym__val_number_token2] = ACTIONS(1765), + [aux_sym__val_number_token3] = ACTIONS(1765), + [aux_sym__val_number_token4] = ACTIONS(1765), + [aux_sym__val_number_token5] = ACTIONS(1765), + [aux_sym__val_number_token6] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1765), + [sym__str_single_quotes] = ACTIONS(1765), + [sym__str_back_ticks] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), + [sym__entry_separator] = ACTIONS(1767), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1767), }, [570] = { [sym_comment] = STATE(570), - [aux_sym__multiple_types_repeat1] = STATE(591), - [anon_sym_export] = ACTIONS(2286), - [anon_sym_alias] = ACTIONS(2286), - [anon_sym_let] = ACTIONS(2286), - [anon_sym_let_DASHenv] = ACTIONS(2286), - [anon_sym_mut] = ACTIONS(2286), - [anon_sym_const] = ACTIONS(2286), - [aux_sym_cmd_identifier_token1] = ACTIONS(2286), - [aux_sym_cmd_identifier_token2] = ACTIONS(2286), - [aux_sym_cmd_identifier_token3] = ACTIONS(2286), - [aux_sym_cmd_identifier_token4] = ACTIONS(2286), - [aux_sym_cmd_identifier_token5] = ACTIONS(2286), - [aux_sym_cmd_identifier_token6] = ACTIONS(2286), - [aux_sym_cmd_identifier_token7] = ACTIONS(2286), - [aux_sym_cmd_identifier_token8] = ACTIONS(2286), - [aux_sym_cmd_identifier_token9] = ACTIONS(2286), - [aux_sym_cmd_identifier_token10] = ACTIONS(2286), - [aux_sym_cmd_identifier_token11] = ACTIONS(2286), - [aux_sym_cmd_identifier_token12] = ACTIONS(2286), - [aux_sym_cmd_identifier_token13] = ACTIONS(2286), - [aux_sym_cmd_identifier_token14] = ACTIONS(2286), - [aux_sym_cmd_identifier_token15] = ACTIONS(2286), - [aux_sym_cmd_identifier_token16] = ACTIONS(2286), - [aux_sym_cmd_identifier_token17] = ACTIONS(2286), - [aux_sym_cmd_identifier_token18] = ACTIONS(2286), - [aux_sym_cmd_identifier_token19] = ACTIONS(2286), - [aux_sym_cmd_identifier_token20] = ACTIONS(2286), - [aux_sym_cmd_identifier_token21] = ACTIONS(2286), - [aux_sym_cmd_identifier_token22] = ACTIONS(2286), - [aux_sym_cmd_identifier_token23] = ACTIONS(2286), - [aux_sym_cmd_identifier_token24] = ACTIONS(2286), - [aux_sym_cmd_identifier_token25] = ACTIONS(2286), - [aux_sym_cmd_identifier_token26] = ACTIONS(2286), - [aux_sym_cmd_identifier_token27] = ACTIONS(2286), - [aux_sym_cmd_identifier_token28] = ACTIONS(2286), - [aux_sym_cmd_identifier_token29] = ACTIONS(2286), - [aux_sym_cmd_identifier_token30] = ACTIONS(2286), - [aux_sym_cmd_identifier_token31] = ACTIONS(2286), - [aux_sym_cmd_identifier_token32] = ACTIONS(2286), - [aux_sym_cmd_identifier_token33] = ACTIONS(2286), - [aux_sym_cmd_identifier_token34] = ACTIONS(2286), - [aux_sym_cmd_identifier_token35] = ACTIONS(2286), - [aux_sym_cmd_identifier_token36] = ACTIONS(2286), - [aux_sym_cmd_identifier_token37] = ACTIONS(2286), - [aux_sym_cmd_identifier_token38] = ACTIONS(2286), - [aux_sym_cmd_identifier_token39] = ACTIONS(2286), - [aux_sym_cmd_identifier_token40] = ACTIONS(2286), - [anon_sym_def] = ACTIONS(2286), - [anon_sym_export_DASHenv] = ACTIONS(2286), - [anon_sym_extern] = ACTIONS(2286), - [anon_sym_module] = ACTIONS(2286), - [anon_sym_use] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2286), - [anon_sym_DOLLAR] = ACTIONS(2286), - [anon_sym_error] = ACTIONS(2286), - [anon_sym_DASH2] = ACTIONS(2286), - [anon_sym_break] = ACTIONS(2286), - [anon_sym_continue] = ACTIONS(2286), - [anon_sym_for] = ACTIONS(2286), - [anon_sym_in2] = ACTIONS(2286), - [anon_sym_loop] = ACTIONS(2286), - [anon_sym_make] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(2286), - [anon_sym_do] = ACTIONS(2286), - [anon_sym_if] = ACTIONS(2286), - [anon_sym_else] = ACTIONS(2286), - [anon_sym_match] = ACTIONS(2286), - [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2286), - [anon_sym_catch] = ACTIONS(2286), - [anon_sym_return] = ACTIONS(2286), - [anon_sym_source] = ACTIONS(2286), - [anon_sym_source_DASHenv] = ACTIONS(2286), - [anon_sym_register] = ACTIONS(2286), - [anon_sym_hide] = ACTIONS(2286), - [anon_sym_hide_DASHenv] = ACTIONS(2286), - [anon_sym_overlay] = ACTIONS(2286), - [anon_sym_as] = ACTIONS(2286), - [anon_sym_PLUS2] = ACTIONS(2286), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2286), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2286), - [aux_sym__val_number_decimal_token1] = ACTIONS(2286), - [aux_sym__val_number_decimal_token2] = ACTIONS(2286), - [aux_sym__val_number_decimal_token3] = ACTIONS(2286), - [aux_sym__val_number_decimal_token4] = ACTIONS(2286), - [aux_sym__val_number_token1] = ACTIONS(2286), - [aux_sym__val_number_token2] = ACTIONS(2286), - [aux_sym__val_number_token3] = ACTIONS(2286), - [aux_sym__val_number_token4] = ACTIONS(2286), - [aux_sym__val_number_token5] = ACTIONS(2286), - [aux_sym__val_number_token6] = ACTIONS(2286), - [anon_sym_DQUOTE] = ACTIONS(2286), - [sym__str_single_quotes] = ACTIONS(2286), - [sym__str_back_ticks] = ACTIONS(2286), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2286), - [sym__entry_separator] = ACTIONS(2290), + [anon_sym_export] = ACTIONS(2298), + [anon_sym_alias] = ACTIONS(2298), + [anon_sym_let] = ACTIONS(2298), + [anon_sym_let_DASHenv] = ACTIONS(2298), + [anon_sym_mut] = ACTIONS(2298), + [anon_sym_const] = ACTIONS(2298), + [aux_sym_cmd_identifier_token1] = ACTIONS(2298), + [aux_sym_cmd_identifier_token2] = ACTIONS(2298), + [aux_sym_cmd_identifier_token3] = ACTIONS(2298), + [aux_sym_cmd_identifier_token4] = ACTIONS(2298), + [aux_sym_cmd_identifier_token5] = ACTIONS(2298), + [aux_sym_cmd_identifier_token6] = ACTIONS(2298), + [aux_sym_cmd_identifier_token7] = ACTIONS(2298), + [aux_sym_cmd_identifier_token8] = ACTIONS(2298), + [aux_sym_cmd_identifier_token9] = ACTIONS(2298), + [aux_sym_cmd_identifier_token10] = ACTIONS(2298), + [aux_sym_cmd_identifier_token11] = ACTIONS(2298), + [aux_sym_cmd_identifier_token12] = ACTIONS(2298), + [aux_sym_cmd_identifier_token13] = ACTIONS(2298), + [aux_sym_cmd_identifier_token14] = ACTIONS(2298), + [aux_sym_cmd_identifier_token15] = ACTIONS(2298), + [aux_sym_cmd_identifier_token16] = ACTIONS(2298), + [aux_sym_cmd_identifier_token17] = ACTIONS(2298), + [aux_sym_cmd_identifier_token18] = ACTIONS(2298), + [aux_sym_cmd_identifier_token19] = ACTIONS(2298), + [aux_sym_cmd_identifier_token20] = ACTIONS(2298), + [aux_sym_cmd_identifier_token21] = ACTIONS(2298), + [aux_sym_cmd_identifier_token22] = ACTIONS(2298), + [aux_sym_cmd_identifier_token23] = ACTIONS(2298), + [aux_sym_cmd_identifier_token24] = ACTIONS(2298), + [aux_sym_cmd_identifier_token25] = ACTIONS(2298), + [aux_sym_cmd_identifier_token26] = ACTIONS(2298), + [aux_sym_cmd_identifier_token27] = ACTIONS(2298), + [aux_sym_cmd_identifier_token28] = ACTIONS(2298), + [aux_sym_cmd_identifier_token29] = ACTIONS(2298), + [aux_sym_cmd_identifier_token30] = ACTIONS(2298), + [aux_sym_cmd_identifier_token31] = ACTIONS(2298), + [aux_sym_cmd_identifier_token32] = ACTIONS(2298), + [aux_sym_cmd_identifier_token33] = ACTIONS(2298), + [aux_sym_cmd_identifier_token34] = ACTIONS(2298), + [aux_sym_cmd_identifier_token35] = ACTIONS(2298), + [aux_sym_cmd_identifier_token36] = ACTIONS(2298), + [aux_sym_cmd_identifier_token37] = ACTIONS(2298), + [aux_sym_cmd_identifier_token38] = ACTIONS(2298), + [aux_sym_cmd_identifier_token39] = ACTIONS(2298), + [aux_sym_cmd_identifier_token40] = ACTIONS(2298), + [anon_sym_def] = ACTIONS(2298), + [anon_sym_export_DASHenv] = ACTIONS(2298), + [anon_sym_extern] = ACTIONS(2298), + [anon_sym_module] = ACTIONS(2298), + [anon_sym_use] = ACTIONS(2298), + [anon_sym_LPAREN] = ACTIONS(2298), + [anon_sym_DOLLAR] = ACTIONS(2298), + [anon_sym_error] = ACTIONS(2298), + [anon_sym_DASH2] = ACTIONS(2298), + [anon_sym_break] = ACTIONS(2298), + [anon_sym_continue] = ACTIONS(2298), + [anon_sym_for] = ACTIONS(2298), + [anon_sym_in2] = ACTIONS(2298), + [anon_sym_loop] = ACTIONS(2298), + [anon_sym_make] = ACTIONS(2298), + [anon_sym_while] = ACTIONS(2298), + [anon_sym_do] = ACTIONS(2298), + [anon_sym_if] = ACTIONS(2298), + [anon_sym_else] = ACTIONS(2298), + [anon_sym_match] = ACTIONS(2298), + [anon_sym_RBRACE] = ACTIONS(2298), + [anon_sym_try] = ACTIONS(2298), + [anon_sym_catch] = ACTIONS(2298), + [anon_sym_return] = ACTIONS(2298), + [anon_sym_source] = ACTIONS(2298), + [anon_sym_source_DASHenv] = ACTIONS(2298), + [anon_sym_register] = ACTIONS(2298), + [anon_sym_hide] = ACTIONS(2298), + [anon_sym_hide_DASHenv] = ACTIONS(2298), + [anon_sym_overlay] = ACTIONS(2298), + [anon_sym_as] = ACTIONS(2298), + [anon_sym_LPAREN2] = ACTIONS(2300), + [anon_sym_PLUS2] = ACTIONS(2298), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2298), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2298), + [aux_sym__val_number_decimal_token1] = ACTIONS(2298), + [aux_sym__val_number_decimal_token2] = ACTIONS(2298), + [aux_sym__val_number_decimal_token3] = ACTIONS(2298), + [aux_sym__val_number_decimal_token4] = ACTIONS(2298), + [aux_sym__val_number_token1] = ACTIONS(2298), + [aux_sym__val_number_token2] = ACTIONS(2298), + [aux_sym__val_number_token3] = ACTIONS(2298), + [aux_sym__val_number_token4] = ACTIONS(2298), + [aux_sym__val_number_token5] = ACTIONS(2298), + [aux_sym__val_number_token6] = ACTIONS(2298), + [anon_sym_DQUOTE] = ACTIONS(2298), + [sym__str_single_quotes] = ACTIONS(2298), + [sym__str_back_ticks] = ACTIONS(2298), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2298), + [sym__entry_separator] = ACTIONS(2300), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2292), + [sym_raw_string_begin] = ACTIONS(2300), }, [571] = { [sym_comment] = STATE(571), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_alias] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_let_DASHenv] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [aux_sym_cmd_identifier_token1] = ACTIONS(1783), - [aux_sym_cmd_identifier_token2] = ACTIONS(1783), - [aux_sym_cmd_identifier_token3] = ACTIONS(1783), - [aux_sym_cmd_identifier_token4] = ACTIONS(1783), - [aux_sym_cmd_identifier_token5] = ACTIONS(1783), - [aux_sym_cmd_identifier_token6] = ACTIONS(1783), - [aux_sym_cmd_identifier_token7] = ACTIONS(1783), - [aux_sym_cmd_identifier_token8] = ACTIONS(1783), - [aux_sym_cmd_identifier_token9] = ACTIONS(1783), - [aux_sym_cmd_identifier_token10] = ACTIONS(1783), - [aux_sym_cmd_identifier_token11] = ACTIONS(1783), - [aux_sym_cmd_identifier_token12] = ACTIONS(1783), - [aux_sym_cmd_identifier_token13] = ACTIONS(1783), - [aux_sym_cmd_identifier_token14] = ACTIONS(1783), - [aux_sym_cmd_identifier_token15] = ACTIONS(1783), - [aux_sym_cmd_identifier_token16] = ACTIONS(1783), - [aux_sym_cmd_identifier_token17] = ACTIONS(1783), - [aux_sym_cmd_identifier_token18] = ACTIONS(1783), - [aux_sym_cmd_identifier_token19] = ACTIONS(1783), - [aux_sym_cmd_identifier_token20] = ACTIONS(1783), - [aux_sym_cmd_identifier_token21] = ACTIONS(1783), - [aux_sym_cmd_identifier_token22] = ACTIONS(1783), - [aux_sym_cmd_identifier_token23] = ACTIONS(1783), - [aux_sym_cmd_identifier_token24] = ACTIONS(1783), - [aux_sym_cmd_identifier_token25] = ACTIONS(1783), - [aux_sym_cmd_identifier_token26] = ACTIONS(1783), - [aux_sym_cmd_identifier_token27] = ACTIONS(1783), - [aux_sym_cmd_identifier_token28] = ACTIONS(1783), - [aux_sym_cmd_identifier_token29] = ACTIONS(1783), - [aux_sym_cmd_identifier_token30] = ACTIONS(1783), - [aux_sym_cmd_identifier_token31] = ACTIONS(1783), - [aux_sym_cmd_identifier_token32] = ACTIONS(1783), - [aux_sym_cmd_identifier_token33] = ACTIONS(1783), - [aux_sym_cmd_identifier_token34] = ACTIONS(1783), - [aux_sym_cmd_identifier_token35] = ACTIONS(1783), - [aux_sym_cmd_identifier_token36] = ACTIONS(1783), - [aux_sym_cmd_identifier_token37] = ACTIONS(1783), - [aux_sym_cmd_identifier_token38] = ACTIONS(1783), - [aux_sym_cmd_identifier_token39] = ACTIONS(1783), - [aux_sym_cmd_identifier_token40] = ACTIONS(1783), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_export_DASHenv] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_error] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_make] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_catch] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_source] = ACTIONS(1783), - [anon_sym_source_DASHenv] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_hide] = ACTIONS(1783), - [anon_sym_hide_DASHenv] = ACTIONS(1783), - [anon_sym_overlay] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_PLUS2] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1783), - [aux_sym__immediate_decimal_token2] = ACTIONS(2294), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1783), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1783), - [aux_sym__val_number_decimal_token3] = ACTIONS(1783), - [aux_sym__val_number_decimal_token4] = ACTIONS(1783), - [aux_sym__val_number_token1] = ACTIONS(1783), - [aux_sym__val_number_token2] = ACTIONS(1783), - [aux_sym__val_number_token3] = ACTIONS(1783), - [aux_sym__val_number_token4] = ACTIONS(1783), - [aux_sym__val_number_token5] = ACTIONS(1783), - [aux_sym__val_number_token6] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1783), - [sym__str_single_quotes] = ACTIONS(1783), - [sym__str_back_ticks] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1783), - [sym__entry_separator] = ACTIONS(1785), + [anon_sym_export] = ACTIONS(1707), + [anon_sym_alias] = ACTIONS(1707), + [anon_sym_let] = ACTIONS(1707), + [anon_sym_let_DASHenv] = ACTIONS(1707), + [anon_sym_mut] = ACTIONS(1707), + [anon_sym_const] = ACTIONS(1707), + [aux_sym_cmd_identifier_token1] = ACTIONS(1707), + [aux_sym_cmd_identifier_token2] = ACTIONS(1707), + [aux_sym_cmd_identifier_token3] = ACTIONS(1707), + [aux_sym_cmd_identifier_token4] = ACTIONS(1707), + [aux_sym_cmd_identifier_token5] = ACTIONS(1707), + [aux_sym_cmd_identifier_token6] = ACTIONS(1707), + [aux_sym_cmd_identifier_token7] = ACTIONS(1707), + [aux_sym_cmd_identifier_token8] = ACTIONS(1707), + [aux_sym_cmd_identifier_token9] = ACTIONS(1707), + [aux_sym_cmd_identifier_token10] = ACTIONS(1707), + [aux_sym_cmd_identifier_token11] = ACTIONS(1707), + [aux_sym_cmd_identifier_token12] = ACTIONS(1707), + [aux_sym_cmd_identifier_token13] = ACTIONS(1707), + [aux_sym_cmd_identifier_token14] = ACTIONS(1707), + [aux_sym_cmd_identifier_token15] = ACTIONS(1707), + [aux_sym_cmd_identifier_token16] = ACTIONS(1707), + [aux_sym_cmd_identifier_token17] = ACTIONS(1707), + [aux_sym_cmd_identifier_token18] = ACTIONS(1707), + [aux_sym_cmd_identifier_token19] = ACTIONS(1707), + [aux_sym_cmd_identifier_token20] = ACTIONS(1707), + [aux_sym_cmd_identifier_token21] = ACTIONS(1707), + [aux_sym_cmd_identifier_token22] = ACTIONS(1707), + [aux_sym_cmd_identifier_token23] = ACTIONS(1707), + [aux_sym_cmd_identifier_token24] = ACTIONS(1707), + [aux_sym_cmd_identifier_token25] = ACTIONS(1707), + [aux_sym_cmd_identifier_token26] = ACTIONS(1707), + [aux_sym_cmd_identifier_token27] = ACTIONS(1707), + [aux_sym_cmd_identifier_token28] = ACTIONS(1707), + [aux_sym_cmd_identifier_token29] = ACTIONS(1707), + [aux_sym_cmd_identifier_token30] = ACTIONS(1707), + [aux_sym_cmd_identifier_token31] = ACTIONS(1707), + [aux_sym_cmd_identifier_token32] = ACTIONS(1707), + [aux_sym_cmd_identifier_token33] = ACTIONS(1707), + [aux_sym_cmd_identifier_token34] = ACTIONS(1707), + [aux_sym_cmd_identifier_token35] = ACTIONS(1707), + [aux_sym_cmd_identifier_token36] = ACTIONS(1707), + [aux_sym_cmd_identifier_token37] = ACTIONS(1707), + [aux_sym_cmd_identifier_token38] = ACTIONS(1707), + [aux_sym_cmd_identifier_token39] = ACTIONS(1707), + [aux_sym_cmd_identifier_token40] = ACTIONS(1707), + [anon_sym_def] = ACTIONS(1707), + [anon_sym_export_DASHenv] = ACTIONS(1707), + [anon_sym_extern] = ACTIONS(1707), + [anon_sym_module] = ACTIONS(1707), + [anon_sym_use] = ACTIONS(1707), + [anon_sym_LPAREN] = ACTIONS(1707), + [anon_sym_DOLLAR] = ACTIONS(1707), + [anon_sym_error] = ACTIONS(1707), + [anon_sym_DASH2] = ACTIONS(1707), + [anon_sym_break] = ACTIONS(1707), + [anon_sym_continue] = ACTIONS(1707), + [anon_sym_for] = ACTIONS(1707), + [anon_sym_in2] = ACTIONS(1707), + [anon_sym_loop] = ACTIONS(1707), + [anon_sym_make] = ACTIONS(1707), + [anon_sym_while] = ACTIONS(1707), + [anon_sym_do] = ACTIONS(1707), + [anon_sym_if] = ACTIONS(1707), + [anon_sym_else] = ACTIONS(1707), + [anon_sym_match] = ACTIONS(1707), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_try] = ACTIONS(1707), + [anon_sym_catch] = ACTIONS(1707), + [anon_sym_return] = ACTIONS(1707), + [anon_sym_source] = ACTIONS(1707), + [anon_sym_source_DASHenv] = ACTIONS(1707), + [anon_sym_register] = ACTIONS(1707), + [anon_sym_hide] = ACTIONS(1707), + [anon_sym_hide_DASHenv] = ACTIONS(1707), + [anon_sym_overlay] = ACTIONS(1707), + [anon_sym_as] = ACTIONS(1707), + [anon_sym_PLUS2] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1707), + [aux_sym__val_number_decimal_token1] = ACTIONS(1707), + [aux_sym__val_number_decimal_token2] = ACTIONS(1707), + [aux_sym__val_number_decimal_token3] = ACTIONS(1707), + [aux_sym__val_number_decimal_token4] = ACTIONS(1707), + [aux_sym__val_number_token1] = ACTIONS(1707), + [aux_sym__val_number_token2] = ACTIONS(1707), + [aux_sym__val_number_token3] = ACTIONS(1707), + [aux_sym__val_number_token4] = ACTIONS(1707), + [aux_sym__val_number_token5] = ACTIONS(1707), + [aux_sym__val_number_token6] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1707), + [sym__str_single_quotes] = ACTIONS(1707), + [sym__str_back_ticks] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1707), + [sym__entry_separator] = ACTIONS(1719), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1721), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1785), + [sym_raw_string_begin] = ACTIONS(1719), }, [572] = { [sym_comment] = STATE(572), @@ -137261,1017 +137580,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [574] = { [sym_comment] = STATE(574), - [anon_sym_export] = ACTIONS(978), - [anon_sym_alias] = ACTIONS(978), - [anon_sym_let] = ACTIONS(978), - [anon_sym_let_DASHenv] = ACTIONS(978), - [anon_sym_mut] = ACTIONS(978), - [anon_sym_const] = ACTIONS(978), - [aux_sym_cmd_identifier_token1] = ACTIONS(978), - [aux_sym_cmd_identifier_token2] = ACTIONS(980), - [aux_sym_cmd_identifier_token3] = ACTIONS(980), - [aux_sym_cmd_identifier_token4] = ACTIONS(980), - [aux_sym_cmd_identifier_token5] = ACTIONS(980), - [aux_sym_cmd_identifier_token6] = ACTIONS(980), - [aux_sym_cmd_identifier_token7] = ACTIONS(980), - [aux_sym_cmd_identifier_token8] = ACTIONS(978), - [aux_sym_cmd_identifier_token9] = ACTIONS(978), - [aux_sym_cmd_identifier_token10] = ACTIONS(980), - [aux_sym_cmd_identifier_token11] = ACTIONS(980), - [aux_sym_cmd_identifier_token12] = ACTIONS(978), - [aux_sym_cmd_identifier_token13] = ACTIONS(978), - [aux_sym_cmd_identifier_token14] = ACTIONS(978), - [aux_sym_cmd_identifier_token15] = ACTIONS(978), - [aux_sym_cmd_identifier_token16] = ACTIONS(980), - [aux_sym_cmd_identifier_token17] = ACTIONS(980), - [aux_sym_cmd_identifier_token18] = ACTIONS(980), - [aux_sym_cmd_identifier_token19] = ACTIONS(980), - [aux_sym_cmd_identifier_token20] = ACTIONS(980), - [aux_sym_cmd_identifier_token21] = ACTIONS(980), - [aux_sym_cmd_identifier_token22] = ACTIONS(980), - [aux_sym_cmd_identifier_token23] = ACTIONS(980), - [aux_sym_cmd_identifier_token24] = ACTIONS(980), - [aux_sym_cmd_identifier_token25] = ACTIONS(980), - [aux_sym_cmd_identifier_token26] = ACTIONS(980), - [aux_sym_cmd_identifier_token27] = ACTIONS(980), - [aux_sym_cmd_identifier_token28] = ACTIONS(980), - [aux_sym_cmd_identifier_token29] = ACTIONS(980), - [aux_sym_cmd_identifier_token30] = ACTIONS(980), - [aux_sym_cmd_identifier_token31] = ACTIONS(980), - [aux_sym_cmd_identifier_token32] = ACTIONS(980), - [aux_sym_cmd_identifier_token33] = ACTIONS(980), - [aux_sym_cmd_identifier_token34] = ACTIONS(978), - [aux_sym_cmd_identifier_token35] = ACTIONS(980), - [aux_sym_cmd_identifier_token36] = ACTIONS(980), - [aux_sym_cmd_identifier_token37] = ACTIONS(980), - [aux_sym_cmd_identifier_token38] = ACTIONS(978), - [aux_sym_cmd_identifier_token39] = ACTIONS(980), - [aux_sym_cmd_identifier_token40] = ACTIONS(980), - [anon_sym_def] = ACTIONS(978), - [anon_sym_export_DASHenv] = ACTIONS(978), - [anon_sym_extern] = ACTIONS(978), - [anon_sym_module] = ACTIONS(978), - [anon_sym_use] = ACTIONS(978), - [anon_sym_LPAREN] = ACTIONS(980), - [anon_sym_DOLLAR] = ACTIONS(980), - [anon_sym_error] = ACTIONS(978), - [anon_sym_DASH2] = ACTIONS(978), - [anon_sym_break] = ACTIONS(978), - [anon_sym_continue] = ACTIONS(978), - [anon_sym_for] = ACTIONS(978), - [anon_sym_in2] = ACTIONS(978), - [anon_sym_loop] = ACTIONS(978), - [anon_sym_make] = ACTIONS(978), - [anon_sym_while] = ACTIONS(978), - [anon_sym_do] = ACTIONS(978), - [anon_sym_if] = ACTIONS(978), - [anon_sym_else] = ACTIONS(978), - [anon_sym_match] = ACTIONS(978), - [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_try] = ACTIONS(978), - [anon_sym_catch] = ACTIONS(978), - [anon_sym_return] = ACTIONS(978), - [anon_sym_source] = ACTIONS(978), - [anon_sym_source_DASHenv] = ACTIONS(978), - [anon_sym_register] = ACTIONS(978), - [anon_sym_hide] = ACTIONS(978), - [anon_sym_hide_DASHenv] = ACTIONS(978), - [anon_sym_overlay] = ACTIONS(978), - [anon_sym_as] = ACTIONS(978), - [anon_sym_QMARK2] = ACTIONS(2296), - [anon_sym_PLUS2] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(980), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(980), - [aux_sym__val_number_decimal_token1] = ACTIONS(978), - [aux_sym__val_number_decimal_token2] = ACTIONS(980), - [aux_sym__val_number_decimal_token3] = ACTIONS(980), - [aux_sym__val_number_decimal_token4] = ACTIONS(980), - [aux_sym__val_number_token1] = ACTIONS(980), - [aux_sym__val_number_token2] = ACTIONS(980), - [aux_sym__val_number_token3] = ACTIONS(980), - [aux_sym__val_number_token4] = ACTIONS(978), - [aux_sym__val_number_token5] = ACTIONS(978), - [aux_sym__val_number_token6] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym__str_single_quotes] = ACTIONS(980), - [sym__str_back_ticks] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(980), + [anon_sym_export] = ACTIONS(2238), + [anon_sym_alias] = ACTIONS(2238), + [anon_sym_let] = ACTIONS(2238), + [anon_sym_let_DASHenv] = ACTIONS(2238), + [anon_sym_mut] = ACTIONS(2238), + [anon_sym_const] = ACTIONS(2238), + [aux_sym_cmd_identifier_token1] = ACTIONS(2238), + [aux_sym_cmd_identifier_token2] = ACTIONS(2238), + [aux_sym_cmd_identifier_token3] = ACTIONS(2238), + [aux_sym_cmd_identifier_token4] = ACTIONS(2238), + [aux_sym_cmd_identifier_token5] = ACTIONS(2238), + [aux_sym_cmd_identifier_token6] = ACTIONS(2238), + [aux_sym_cmd_identifier_token7] = ACTIONS(2238), + [aux_sym_cmd_identifier_token8] = ACTIONS(2238), + [aux_sym_cmd_identifier_token9] = ACTIONS(2238), + [aux_sym_cmd_identifier_token10] = ACTIONS(2238), + [aux_sym_cmd_identifier_token11] = ACTIONS(2238), + [aux_sym_cmd_identifier_token12] = ACTIONS(2238), + [aux_sym_cmd_identifier_token13] = ACTIONS(2238), + [aux_sym_cmd_identifier_token14] = ACTIONS(2238), + [aux_sym_cmd_identifier_token15] = ACTIONS(2238), + [aux_sym_cmd_identifier_token16] = ACTIONS(2238), + [aux_sym_cmd_identifier_token17] = ACTIONS(2238), + [aux_sym_cmd_identifier_token18] = ACTIONS(2238), + [aux_sym_cmd_identifier_token19] = ACTIONS(2238), + [aux_sym_cmd_identifier_token20] = ACTIONS(2238), + [aux_sym_cmd_identifier_token21] = ACTIONS(2238), + [aux_sym_cmd_identifier_token22] = ACTIONS(2238), + [aux_sym_cmd_identifier_token23] = ACTIONS(2238), + [aux_sym_cmd_identifier_token24] = ACTIONS(2238), + [aux_sym_cmd_identifier_token25] = ACTIONS(2238), + [aux_sym_cmd_identifier_token26] = ACTIONS(2238), + [aux_sym_cmd_identifier_token27] = ACTIONS(2238), + [aux_sym_cmd_identifier_token28] = ACTIONS(2238), + [aux_sym_cmd_identifier_token29] = ACTIONS(2238), + [aux_sym_cmd_identifier_token30] = ACTIONS(2238), + [aux_sym_cmd_identifier_token31] = ACTIONS(2238), + [aux_sym_cmd_identifier_token32] = ACTIONS(2238), + [aux_sym_cmd_identifier_token33] = ACTIONS(2238), + [aux_sym_cmd_identifier_token34] = ACTIONS(2238), + [aux_sym_cmd_identifier_token35] = ACTIONS(2238), + [aux_sym_cmd_identifier_token36] = ACTIONS(2238), + [aux_sym_cmd_identifier_token37] = ACTIONS(2238), + [aux_sym_cmd_identifier_token38] = ACTIONS(2238), + [aux_sym_cmd_identifier_token39] = ACTIONS(2238), + [aux_sym_cmd_identifier_token40] = ACTIONS(2238), + [anon_sym_def] = ACTIONS(2238), + [anon_sym_export_DASHenv] = ACTIONS(2238), + [anon_sym_extern] = ACTIONS(2238), + [anon_sym_module] = ACTIONS(2238), + [anon_sym_use] = ACTIONS(2238), + [anon_sym_LPAREN] = ACTIONS(2238), + [anon_sym_DOLLAR] = ACTIONS(2238), + [anon_sym_error] = ACTIONS(2238), + [anon_sym_DASH2] = ACTIONS(2238), + [anon_sym_break] = ACTIONS(2238), + [anon_sym_continue] = ACTIONS(2238), + [anon_sym_for] = ACTIONS(2238), + [anon_sym_in2] = ACTIONS(2238), + [anon_sym_loop] = ACTIONS(2238), + [anon_sym_make] = ACTIONS(2238), + [anon_sym_while] = ACTIONS(2238), + [anon_sym_do] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(2238), + [anon_sym_else] = ACTIONS(2238), + [anon_sym_match] = ACTIONS(2238), + [anon_sym_RBRACE] = ACTIONS(2242), + [anon_sym_try] = ACTIONS(2238), + [anon_sym_catch] = ACTIONS(2238), + [anon_sym_return] = ACTIONS(2238), + [anon_sym_source] = ACTIONS(2238), + [anon_sym_source_DASHenv] = ACTIONS(2238), + [anon_sym_register] = ACTIONS(2238), + [anon_sym_hide] = ACTIONS(2238), + [anon_sym_hide_DASHenv] = ACTIONS(2238), + [anon_sym_overlay] = ACTIONS(2238), + [anon_sym_as] = ACTIONS(2238), + [anon_sym_LPAREN2] = ACTIONS(2240), + [anon_sym_PLUS2] = ACTIONS(2238), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2242), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2238), + [aux_sym__val_number_decimal_token1] = ACTIONS(2238), + [aux_sym__val_number_decimal_token2] = ACTIONS(2238), + [aux_sym__val_number_decimal_token3] = ACTIONS(2238), + [aux_sym__val_number_decimal_token4] = ACTIONS(2238), + [aux_sym__val_number_token1] = ACTIONS(2238), + [aux_sym__val_number_token2] = ACTIONS(2238), + [aux_sym__val_number_token3] = ACTIONS(2238), + [aux_sym__val_number_token4] = ACTIONS(2238), + [aux_sym__val_number_token5] = ACTIONS(2238), + [aux_sym__val_number_token6] = ACTIONS(2238), + [anon_sym_DQUOTE] = ACTIONS(2242), + [sym__str_single_quotes] = ACTIONS(2242), + [sym__str_back_ticks] = ACTIONS(2242), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2242), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2244), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2242), }, [575] = { [sym_comment] = STATE(575), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_alias] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_let_DASHenv] = ACTIONS(1755), - [anon_sym_mut] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1757), - [aux_sym_cmd_identifier_token3] = ACTIONS(1757), - [aux_sym_cmd_identifier_token4] = ACTIONS(1757), - [aux_sym_cmd_identifier_token5] = ACTIONS(1757), - [aux_sym_cmd_identifier_token6] = ACTIONS(1757), - [aux_sym_cmd_identifier_token7] = ACTIONS(1757), - [aux_sym_cmd_identifier_token8] = ACTIONS(1755), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1757), - [aux_sym_cmd_identifier_token11] = ACTIONS(1757), - [aux_sym_cmd_identifier_token12] = ACTIONS(1755), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1755), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1757), - [aux_sym_cmd_identifier_token17] = ACTIONS(1757), - [aux_sym_cmd_identifier_token18] = ACTIONS(1757), - [aux_sym_cmd_identifier_token19] = ACTIONS(1757), - [aux_sym_cmd_identifier_token20] = ACTIONS(1757), - [aux_sym_cmd_identifier_token21] = ACTIONS(1757), - [aux_sym_cmd_identifier_token22] = ACTIONS(1757), - [aux_sym_cmd_identifier_token23] = ACTIONS(1757), - [aux_sym_cmd_identifier_token24] = ACTIONS(1757), - [aux_sym_cmd_identifier_token25] = ACTIONS(1757), - [aux_sym_cmd_identifier_token26] = ACTIONS(1757), - [aux_sym_cmd_identifier_token27] = ACTIONS(1757), - [aux_sym_cmd_identifier_token28] = ACTIONS(1757), - [aux_sym_cmd_identifier_token29] = ACTIONS(1757), - [aux_sym_cmd_identifier_token30] = ACTIONS(1757), - [aux_sym_cmd_identifier_token31] = ACTIONS(1757), - [aux_sym_cmd_identifier_token32] = ACTIONS(1757), - [aux_sym_cmd_identifier_token33] = ACTIONS(1757), - [aux_sym_cmd_identifier_token34] = ACTIONS(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [aux_sym_cmd_identifier_token37] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_export_DASHenv] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_make] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_source] = ACTIONS(1755), - [anon_sym_source_DASHenv] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_hide] = ACTIONS(1755), - [anon_sym_hide_DASHenv] = ACTIONS(1755), - [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [anon_sym_DOT] = ACTIONS(2298), - [aux_sym__immediate_decimal_token2] = ACTIONS(2300), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [576] = { - [sym_comment] = STATE(576), - [anon_sym_export] = ACTIONS(984), - [anon_sym_alias] = ACTIONS(984), - [anon_sym_let] = ACTIONS(984), - [anon_sym_let_DASHenv] = ACTIONS(984), - [anon_sym_mut] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [aux_sym_cmd_identifier_token1] = ACTIONS(984), - [aux_sym_cmd_identifier_token2] = ACTIONS(986), - [aux_sym_cmd_identifier_token3] = ACTIONS(986), - [aux_sym_cmd_identifier_token4] = ACTIONS(986), - [aux_sym_cmd_identifier_token5] = ACTIONS(986), - [aux_sym_cmd_identifier_token6] = ACTIONS(986), - [aux_sym_cmd_identifier_token7] = ACTIONS(986), - [aux_sym_cmd_identifier_token8] = ACTIONS(984), - [aux_sym_cmd_identifier_token9] = ACTIONS(984), - [aux_sym_cmd_identifier_token10] = ACTIONS(986), - [aux_sym_cmd_identifier_token11] = ACTIONS(986), - [aux_sym_cmd_identifier_token12] = ACTIONS(984), - [aux_sym_cmd_identifier_token13] = ACTIONS(984), - [aux_sym_cmd_identifier_token14] = ACTIONS(984), - [aux_sym_cmd_identifier_token15] = ACTIONS(984), - [aux_sym_cmd_identifier_token16] = ACTIONS(986), - [aux_sym_cmd_identifier_token17] = ACTIONS(986), - [aux_sym_cmd_identifier_token18] = ACTIONS(986), - [aux_sym_cmd_identifier_token19] = ACTIONS(986), - [aux_sym_cmd_identifier_token20] = ACTIONS(986), - [aux_sym_cmd_identifier_token21] = ACTIONS(986), - [aux_sym_cmd_identifier_token22] = ACTIONS(986), - [aux_sym_cmd_identifier_token23] = ACTIONS(986), - [aux_sym_cmd_identifier_token24] = ACTIONS(986), - [aux_sym_cmd_identifier_token25] = ACTIONS(986), - [aux_sym_cmd_identifier_token26] = ACTIONS(986), - [aux_sym_cmd_identifier_token27] = ACTIONS(986), - [aux_sym_cmd_identifier_token28] = ACTIONS(986), - [aux_sym_cmd_identifier_token29] = ACTIONS(986), - [aux_sym_cmd_identifier_token30] = ACTIONS(986), - [aux_sym_cmd_identifier_token31] = ACTIONS(986), - [aux_sym_cmd_identifier_token32] = ACTIONS(986), - [aux_sym_cmd_identifier_token33] = ACTIONS(986), - [aux_sym_cmd_identifier_token34] = ACTIONS(984), - [aux_sym_cmd_identifier_token35] = ACTIONS(986), - [aux_sym_cmd_identifier_token36] = ACTIONS(986), - [aux_sym_cmd_identifier_token37] = ACTIONS(986), - [aux_sym_cmd_identifier_token38] = ACTIONS(984), - [aux_sym_cmd_identifier_token39] = ACTIONS(986), - [aux_sym_cmd_identifier_token40] = ACTIONS(986), - [anon_sym_def] = ACTIONS(984), - [anon_sym_export_DASHenv] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym_module] = ACTIONS(984), - [anon_sym_use] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_error] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_in2] = ACTIONS(984), - [anon_sym_loop] = ACTIONS(984), - [anon_sym_make] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_match] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_try] = ACTIONS(984), - [anon_sym_catch] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_source] = ACTIONS(984), - [anon_sym_source_DASHenv] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_hide] = ACTIONS(984), - [anon_sym_hide_DASHenv] = ACTIONS(984), - [anon_sym_overlay] = ACTIONS(984), - [anon_sym_as] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(2302), - [anon_sym_PLUS2] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), - [aux_sym__val_number_decimal_token1] = ACTIONS(984), - [aux_sym__val_number_decimal_token2] = ACTIONS(986), - [aux_sym__val_number_decimal_token3] = ACTIONS(986), - [aux_sym__val_number_decimal_token4] = ACTIONS(986), - [aux_sym__val_number_token1] = ACTIONS(986), - [aux_sym__val_number_token2] = ACTIONS(986), - [aux_sym__val_number_token3] = ACTIONS(986), - [aux_sym__val_number_token4] = ACTIONS(984), - [aux_sym__val_number_token5] = ACTIONS(984), - [aux_sym__val_number_token6] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(986), - }, - [577] = { - [sym_comment] = STATE(577), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_alias] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_let_DASHenv] = ACTIONS(1755), - [anon_sym_mut] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1757), - [aux_sym_cmd_identifier_token3] = ACTIONS(1757), - [aux_sym_cmd_identifier_token4] = ACTIONS(1757), - [aux_sym_cmd_identifier_token5] = ACTIONS(1757), - [aux_sym_cmd_identifier_token6] = ACTIONS(1757), - [aux_sym_cmd_identifier_token7] = ACTIONS(1757), - [aux_sym_cmd_identifier_token8] = ACTIONS(1755), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1757), - [aux_sym_cmd_identifier_token11] = ACTIONS(1757), - [aux_sym_cmd_identifier_token12] = ACTIONS(1755), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1755), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1757), - [aux_sym_cmd_identifier_token17] = ACTIONS(1757), - [aux_sym_cmd_identifier_token18] = ACTIONS(1757), - [aux_sym_cmd_identifier_token19] = ACTIONS(1757), - [aux_sym_cmd_identifier_token20] = ACTIONS(1757), - [aux_sym_cmd_identifier_token21] = ACTIONS(1757), - [aux_sym_cmd_identifier_token22] = ACTIONS(1757), - [aux_sym_cmd_identifier_token23] = ACTIONS(1757), - [aux_sym_cmd_identifier_token24] = ACTIONS(1757), - [aux_sym_cmd_identifier_token25] = ACTIONS(1757), - [aux_sym_cmd_identifier_token26] = ACTIONS(1757), - [aux_sym_cmd_identifier_token27] = ACTIONS(1757), - [aux_sym_cmd_identifier_token28] = ACTIONS(1757), - [aux_sym_cmd_identifier_token29] = ACTIONS(1757), - [aux_sym_cmd_identifier_token30] = ACTIONS(1757), - [aux_sym_cmd_identifier_token31] = ACTIONS(1757), - [aux_sym_cmd_identifier_token32] = ACTIONS(1757), - [aux_sym_cmd_identifier_token33] = ACTIONS(1757), - [aux_sym_cmd_identifier_token34] = ACTIONS(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [aux_sym_cmd_identifier_token37] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_export_DASHenv] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_make] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_source] = ACTIONS(1755), - [anon_sym_source_DASHenv] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_hide] = ACTIONS(1755), - [anon_sym_hide_DASHenv] = ACTIONS(1755), - [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [578] = { - [sym_comment] = STATE(578), - [anon_sym_export] = ACTIONS(1739), - [anon_sym_alias] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1739), - [anon_sym_let_DASHenv] = ACTIONS(1739), - [anon_sym_mut] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [aux_sym_cmd_identifier_token1] = ACTIONS(1739), - [aux_sym_cmd_identifier_token2] = ACTIONS(1741), - [aux_sym_cmd_identifier_token3] = ACTIONS(1741), - [aux_sym_cmd_identifier_token4] = ACTIONS(1741), - [aux_sym_cmd_identifier_token5] = ACTIONS(1741), - [aux_sym_cmd_identifier_token6] = ACTIONS(1741), - [aux_sym_cmd_identifier_token7] = ACTIONS(1741), - [aux_sym_cmd_identifier_token8] = ACTIONS(1739), - [aux_sym_cmd_identifier_token9] = ACTIONS(1739), - [aux_sym_cmd_identifier_token10] = ACTIONS(1741), - [aux_sym_cmd_identifier_token11] = ACTIONS(1741), - [aux_sym_cmd_identifier_token12] = ACTIONS(1739), - [aux_sym_cmd_identifier_token13] = ACTIONS(1739), - [aux_sym_cmd_identifier_token14] = ACTIONS(1739), - [aux_sym_cmd_identifier_token15] = ACTIONS(1739), - [aux_sym_cmd_identifier_token16] = ACTIONS(1741), - [aux_sym_cmd_identifier_token17] = ACTIONS(1741), - [aux_sym_cmd_identifier_token18] = ACTIONS(1741), - [aux_sym_cmd_identifier_token19] = ACTIONS(1741), - [aux_sym_cmd_identifier_token20] = ACTIONS(1741), - [aux_sym_cmd_identifier_token21] = ACTIONS(1741), - [aux_sym_cmd_identifier_token22] = ACTIONS(1741), - [aux_sym_cmd_identifier_token23] = ACTIONS(1741), - [aux_sym_cmd_identifier_token24] = ACTIONS(1741), - [aux_sym_cmd_identifier_token25] = ACTIONS(1741), - [aux_sym_cmd_identifier_token26] = ACTIONS(1741), - [aux_sym_cmd_identifier_token27] = ACTIONS(1741), - [aux_sym_cmd_identifier_token28] = ACTIONS(1741), - [aux_sym_cmd_identifier_token29] = ACTIONS(1741), - [aux_sym_cmd_identifier_token30] = ACTIONS(1741), - [aux_sym_cmd_identifier_token31] = ACTIONS(1741), - [aux_sym_cmd_identifier_token32] = ACTIONS(1741), - [aux_sym_cmd_identifier_token33] = ACTIONS(1741), - [aux_sym_cmd_identifier_token34] = ACTIONS(1739), - [aux_sym_cmd_identifier_token35] = ACTIONS(1741), - [aux_sym_cmd_identifier_token36] = ACTIONS(1741), - [aux_sym_cmd_identifier_token37] = ACTIONS(1741), - [aux_sym_cmd_identifier_token38] = ACTIONS(1739), - [aux_sym_cmd_identifier_token39] = ACTIONS(1741), - [aux_sym_cmd_identifier_token40] = ACTIONS(1741), - [anon_sym_def] = ACTIONS(1739), - [anon_sym_export_DASHenv] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1739), - [anon_sym_module] = ACTIONS(1739), - [anon_sym_use] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_DOLLAR] = ACTIONS(1741), - [anon_sym_error] = ACTIONS(1739), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_in2] = ACTIONS(1739), - [anon_sym_loop] = ACTIONS(1739), - [anon_sym_make] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_else] = ACTIONS(1739), - [anon_sym_match] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_catch] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_source] = ACTIONS(1739), - [anon_sym_source_DASHenv] = ACTIONS(1739), - [anon_sym_register] = ACTIONS(1739), - [anon_sym_hide] = ACTIONS(1739), - [anon_sym_hide_DASHenv] = ACTIONS(1739), - [anon_sym_overlay] = ACTIONS(1739), - [anon_sym_as] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(1741), - [anon_sym_PLUS2] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1739), - [aux_sym__val_number_token5] = ACTIONS(1739), - [aux_sym__val_number_token6] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1741), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), - }, - [579] = { - [sym_comment] = STATE(579), - [aux_sym__multiple_types_repeat1] = STATE(589), - [anon_sym_export] = ACTIONS(2304), - [anon_sym_alias] = ACTIONS(2304), - [anon_sym_let] = ACTIONS(2304), - [anon_sym_let_DASHenv] = ACTIONS(2304), - [anon_sym_mut] = ACTIONS(2304), - [anon_sym_const] = ACTIONS(2304), - [aux_sym_cmd_identifier_token1] = ACTIONS(2304), - [aux_sym_cmd_identifier_token2] = ACTIONS(2304), - [aux_sym_cmd_identifier_token3] = ACTIONS(2304), - [aux_sym_cmd_identifier_token4] = ACTIONS(2304), - [aux_sym_cmd_identifier_token5] = ACTIONS(2304), - [aux_sym_cmd_identifier_token6] = ACTIONS(2304), - [aux_sym_cmd_identifier_token7] = ACTIONS(2304), - [aux_sym_cmd_identifier_token8] = ACTIONS(2304), - [aux_sym_cmd_identifier_token9] = ACTIONS(2304), - [aux_sym_cmd_identifier_token10] = ACTIONS(2304), - [aux_sym_cmd_identifier_token11] = ACTIONS(2304), - [aux_sym_cmd_identifier_token12] = ACTIONS(2304), - [aux_sym_cmd_identifier_token13] = ACTIONS(2304), - [aux_sym_cmd_identifier_token14] = ACTIONS(2304), - [aux_sym_cmd_identifier_token15] = ACTIONS(2304), - [aux_sym_cmd_identifier_token16] = ACTIONS(2304), - [aux_sym_cmd_identifier_token17] = ACTIONS(2304), - [aux_sym_cmd_identifier_token18] = ACTIONS(2304), - [aux_sym_cmd_identifier_token19] = ACTIONS(2304), - [aux_sym_cmd_identifier_token20] = ACTIONS(2304), - [aux_sym_cmd_identifier_token21] = ACTIONS(2304), - [aux_sym_cmd_identifier_token22] = ACTIONS(2304), - [aux_sym_cmd_identifier_token23] = ACTIONS(2304), - [aux_sym_cmd_identifier_token24] = ACTIONS(2304), - [aux_sym_cmd_identifier_token25] = ACTIONS(2304), - [aux_sym_cmd_identifier_token26] = ACTIONS(2304), - [aux_sym_cmd_identifier_token27] = ACTIONS(2304), - [aux_sym_cmd_identifier_token28] = ACTIONS(2304), - [aux_sym_cmd_identifier_token29] = ACTIONS(2304), - [aux_sym_cmd_identifier_token30] = ACTIONS(2304), - [aux_sym_cmd_identifier_token31] = ACTIONS(2304), - [aux_sym_cmd_identifier_token32] = ACTIONS(2304), - [aux_sym_cmd_identifier_token33] = ACTIONS(2304), - [aux_sym_cmd_identifier_token34] = ACTIONS(2304), - [aux_sym_cmd_identifier_token35] = ACTIONS(2304), - [aux_sym_cmd_identifier_token36] = ACTIONS(2304), - [aux_sym_cmd_identifier_token37] = ACTIONS(2304), - [aux_sym_cmd_identifier_token38] = ACTIONS(2304), - [aux_sym_cmd_identifier_token39] = ACTIONS(2304), - [aux_sym_cmd_identifier_token40] = ACTIONS(2304), - [anon_sym_def] = ACTIONS(2304), - [anon_sym_export_DASHenv] = ACTIONS(2304), - [anon_sym_extern] = ACTIONS(2304), - [anon_sym_module] = ACTIONS(2304), - [anon_sym_use] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2304), - [anon_sym_DOLLAR] = ACTIONS(2304), - [anon_sym_error] = ACTIONS(2304), - [anon_sym_DASH2] = ACTIONS(2304), - [anon_sym_break] = ACTIONS(2304), - [anon_sym_continue] = ACTIONS(2304), - [anon_sym_for] = ACTIONS(2304), - [anon_sym_in2] = ACTIONS(2304), - [anon_sym_loop] = ACTIONS(2304), - [anon_sym_make] = ACTIONS(2304), - [anon_sym_while] = ACTIONS(2304), - [anon_sym_do] = ACTIONS(2304), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_else] = ACTIONS(2304), - [anon_sym_match] = ACTIONS(2304), - [anon_sym_RBRACE] = ACTIONS(2306), - [anon_sym_try] = ACTIONS(2304), - [anon_sym_catch] = ACTIONS(2304), - [anon_sym_return] = ACTIONS(2304), - [anon_sym_source] = ACTIONS(2304), - [anon_sym_source_DASHenv] = ACTIONS(2304), - [anon_sym_register] = ACTIONS(2304), - [anon_sym_hide] = ACTIONS(2304), - [anon_sym_hide_DASHenv] = ACTIONS(2304), - [anon_sym_overlay] = ACTIONS(2304), - [anon_sym_as] = ACTIONS(2304), - [anon_sym_PLUS2] = ACTIONS(2304), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2304), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2304), - [aux_sym__val_number_decimal_token1] = ACTIONS(2304), - [aux_sym__val_number_decimal_token2] = ACTIONS(2304), - [aux_sym__val_number_decimal_token3] = ACTIONS(2304), - [aux_sym__val_number_decimal_token4] = ACTIONS(2304), - [aux_sym__val_number_token1] = ACTIONS(2304), - [aux_sym__val_number_token2] = ACTIONS(2304), - [aux_sym__val_number_token3] = ACTIONS(2304), - [aux_sym__val_number_token4] = ACTIONS(2304), - [aux_sym__val_number_token5] = ACTIONS(2304), - [aux_sym__val_number_token6] = ACTIONS(2304), - [anon_sym_DQUOTE] = ACTIONS(2304), - [sym__str_single_quotes] = ACTIONS(2304), - [sym__str_back_ticks] = ACTIONS(2304), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2304), - [sym__entry_separator] = ACTIONS(2290), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2308), - }, - [580] = { - [sym_comment] = STATE(580), - [anon_sym_export] = ACTIONS(2187), - [anon_sym_alias] = ACTIONS(2187), - [anon_sym_let] = ACTIONS(2187), - [anon_sym_let_DASHenv] = ACTIONS(2187), - [anon_sym_mut] = ACTIONS(2187), - [anon_sym_const] = ACTIONS(2187), - [aux_sym_cmd_identifier_token1] = ACTIONS(2187), - [aux_sym_cmd_identifier_token2] = ACTIONS(2189), - [aux_sym_cmd_identifier_token3] = ACTIONS(2189), - [aux_sym_cmd_identifier_token4] = ACTIONS(2189), - [aux_sym_cmd_identifier_token5] = ACTIONS(2189), - [aux_sym_cmd_identifier_token6] = ACTIONS(2189), - [aux_sym_cmd_identifier_token7] = ACTIONS(2189), - [aux_sym_cmd_identifier_token8] = ACTIONS(2187), - [aux_sym_cmd_identifier_token9] = ACTIONS(2187), - [aux_sym_cmd_identifier_token10] = ACTIONS(2189), - [aux_sym_cmd_identifier_token11] = ACTIONS(2189), - [aux_sym_cmd_identifier_token12] = ACTIONS(2187), - [aux_sym_cmd_identifier_token13] = ACTIONS(2187), - [aux_sym_cmd_identifier_token14] = ACTIONS(2187), - [aux_sym_cmd_identifier_token15] = ACTIONS(2187), - [aux_sym_cmd_identifier_token16] = ACTIONS(2189), - [aux_sym_cmd_identifier_token17] = ACTIONS(2189), - [aux_sym_cmd_identifier_token18] = ACTIONS(2189), - [aux_sym_cmd_identifier_token19] = ACTIONS(2189), - [aux_sym_cmd_identifier_token20] = ACTIONS(2189), - [aux_sym_cmd_identifier_token21] = ACTIONS(2189), - [aux_sym_cmd_identifier_token22] = ACTIONS(2189), - [aux_sym_cmd_identifier_token23] = ACTIONS(2189), - [aux_sym_cmd_identifier_token24] = ACTIONS(2189), - [aux_sym_cmd_identifier_token25] = ACTIONS(2189), - [aux_sym_cmd_identifier_token26] = ACTIONS(2189), - [aux_sym_cmd_identifier_token27] = ACTIONS(2189), - [aux_sym_cmd_identifier_token28] = ACTIONS(2189), - [aux_sym_cmd_identifier_token29] = ACTIONS(2189), - [aux_sym_cmd_identifier_token30] = ACTIONS(2189), - [aux_sym_cmd_identifier_token31] = ACTIONS(2189), - [aux_sym_cmd_identifier_token32] = ACTIONS(2189), - [aux_sym_cmd_identifier_token33] = ACTIONS(2189), - [aux_sym_cmd_identifier_token34] = ACTIONS(2187), - [aux_sym_cmd_identifier_token35] = ACTIONS(2189), - [aux_sym_cmd_identifier_token36] = ACTIONS(2189), - [aux_sym_cmd_identifier_token37] = ACTIONS(2189), - [aux_sym_cmd_identifier_token38] = ACTIONS(2187), - [aux_sym_cmd_identifier_token39] = ACTIONS(2189), - [aux_sym_cmd_identifier_token40] = ACTIONS(2189), - [anon_sym_def] = ACTIONS(2187), - [anon_sym_export_DASHenv] = ACTIONS(2187), - [anon_sym_extern] = ACTIONS(2187), - [anon_sym_module] = ACTIONS(2187), - [anon_sym_use] = ACTIONS(2187), - [anon_sym_LPAREN] = ACTIONS(2187), - [anon_sym_DOLLAR] = ACTIONS(2189), - [anon_sym_error] = ACTIONS(2187), - [anon_sym_DASH2] = ACTIONS(2187), - [anon_sym_break] = ACTIONS(2187), - [anon_sym_continue] = ACTIONS(2187), - [anon_sym_for] = ACTIONS(2187), - [anon_sym_in2] = ACTIONS(2187), - [anon_sym_loop] = ACTIONS(2187), - [anon_sym_make] = ACTIONS(2187), - [anon_sym_while] = ACTIONS(2187), - [anon_sym_do] = ACTIONS(2187), - [anon_sym_if] = ACTIONS(2187), - [anon_sym_else] = ACTIONS(2187), - [anon_sym_match] = ACTIONS(2187), - [anon_sym_RBRACE] = ACTIONS(2189), - [anon_sym_try] = ACTIONS(2187), - [anon_sym_catch] = ACTIONS(2187), - [anon_sym_return] = ACTIONS(2187), - [anon_sym_source] = ACTIONS(2187), - [anon_sym_source_DASHenv] = ACTIONS(2187), - [anon_sym_register] = ACTIONS(2187), - [anon_sym_hide] = ACTIONS(2187), - [anon_sym_hide_DASHenv] = ACTIONS(2187), - [anon_sym_overlay] = ACTIONS(2187), - [anon_sym_as] = ACTIONS(2187), - [anon_sym_LPAREN2] = ACTIONS(1880), - [anon_sym_PLUS2] = ACTIONS(2187), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2189), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2189), - [aux_sym__val_number_decimal_token1] = ACTIONS(2187), - [aux_sym__val_number_decimal_token2] = ACTIONS(2189), - [aux_sym__val_number_decimal_token3] = ACTIONS(2189), - [aux_sym__val_number_decimal_token4] = ACTIONS(2189), - [aux_sym__val_number_token1] = ACTIONS(2189), - [aux_sym__val_number_token2] = ACTIONS(2189), - [aux_sym__val_number_token3] = ACTIONS(2189), - [aux_sym__val_number_token4] = ACTIONS(2187), - [aux_sym__val_number_token5] = ACTIONS(2187), - [aux_sym__val_number_token6] = ACTIONS(2187), - [anon_sym_DQUOTE] = ACTIONS(2189), - [sym__str_single_quotes] = ACTIONS(2189), - [sym__str_back_ticks] = ACTIONS(2189), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2189), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1888), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2189), - }, - [581] = { - [sym_comment] = STATE(581), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_alias] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_let_DASHenv] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [aux_sym_cmd_identifier_token1] = ACTIONS(1783), - [aux_sym_cmd_identifier_token2] = ACTIONS(1785), - [aux_sym_cmd_identifier_token3] = ACTIONS(1785), - [aux_sym_cmd_identifier_token4] = ACTIONS(1785), - [aux_sym_cmd_identifier_token5] = ACTIONS(1785), - [aux_sym_cmd_identifier_token6] = ACTIONS(1785), - [aux_sym_cmd_identifier_token7] = ACTIONS(1785), - [aux_sym_cmd_identifier_token8] = ACTIONS(1783), - [aux_sym_cmd_identifier_token9] = ACTIONS(1783), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1783), - [aux_sym_cmd_identifier_token13] = ACTIONS(1783), - [aux_sym_cmd_identifier_token14] = ACTIONS(1783), - [aux_sym_cmd_identifier_token15] = ACTIONS(1783), - [aux_sym_cmd_identifier_token16] = ACTIONS(1785), - [aux_sym_cmd_identifier_token17] = ACTIONS(1785), - [aux_sym_cmd_identifier_token18] = ACTIONS(1785), - [aux_sym_cmd_identifier_token19] = ACTIONS(1785), - [aux_sym_cmd_identifier_token20] = ACTIONS(1785), - [aux_sym_cmd_identifier_token21] = ACTIONS(1785), - [aux_sym_cmd_identifier_token22] = ACTIONS(1785), - [aux_sym_cmd_identifier_token23] = ACTIONS(1785), - [aux_sym_cmd_identifier_token24] = ACTIONS(1785), - [aux_sym_cmd_identifier_token25] = ACTIONS(1785), - [aux_sym_cmd_identifier_token26] = ACTIONS(1785), - [aux_sym_cmd_identifier_token27] = ACTIONS(1785), - [aux_sym_cmd_identifier_token28] = ACTIONS(1785), - [aux_sym_cmd_identifier_token29] = ACTIONS(1785), - [aux_sym_cmd_identifier_token30] = ACTIONS(1785), - [aux_sym_cmd_identifier_token31] = ACTIONS(1785), - [aux_sym_cmd_identifier_token32] = ACTIONS(1785), - [aux_sym_cmd_identifier_token33] = ACTIONS(1785), - [aux_sym_cmd_identifier_token34] = ACTIONS(1783), - [aux_sym_cmd_identifier_token35] = ACTIONS(1785), - [aux_sym_cmd_identifier_token36] = ACTIONS(1785), - [aux_sym_cmd_identifier_token37] = ACTIONS(1785), - [aux_sym_cmd_identifier_token38] = ACTIONS(1783), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_export_DASHenv] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_error] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_make] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_catch] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_source] = ACTIONS(1783), - [anon_sym_source_DASHenv] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_hide] = ACTIONS(1783), - [anon_sym_hide_DASHenv] = ACTIONS(1783), - [anon_sym_overlay] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_PLUS2] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1783), - [aux_sym__val_number_token5] = ACTIONS(1783), - [aux_sym__val_number_token6] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1785), - }, - [582] = { - [sym_comment] = STATE(582), - [anon_sym_export] = ACTIONS(1890), - [anon_sym_alias] = ACTIONS(1890), - [anon_sym_let] = ACTIONS(1890), - [anon_sym_let_DASHenv] = ACTIONS(1890), - [anon_sym_mut] = ACTIONS(1890), - [anon_sym_const] = ACTIONS(1890), - [aux_sym_cmd_identifier_token1] = ACTIONS(1890), - [aux_sym_cmd_identifier_token2] = ACTIONS(1892), - [aux_sym_cmd_identifier_token3] = ACTIONS(1892), - [aux_sym_cmd_identifier_token4] = ACTIONS(1892), - [aux_sym_cmd_identifier_token5] = ACTIONS(1892), - [aux_sym_cmd_identifier_token6] = ACTIONS(1892), - [aux_sym_cmd_identifier_token7] = ACTIONS(1892), - [aux_sym_cmd_identifier_token8] = ACTIONS(1890), - [aux_sym_cmd_identifier_token9] = ACTIONS(1890), - [aux_sym_cmd_identifier_token10] = ACTIONS(1892), - [aux_sym_cmd_identifier_token11] = ACTIONS(1892), - [aux_sym_cmd_identifier_token12] = ACTIONS(1890), - [aux_sym_cmd_identifier_token13] = ACTIONS(1890), - [aux_sym_cmd_identifier_token14] = ACTIONS(1890), - [aux_sym_cmd_identifier_token15] = ACTIONS(1890), - [aux_sym_cmd_identifier_token16] = ACTIONS(1892), - [aux_sym_cmd_identifier_token17] = ACTIONS(1892), - [aux_sym_cmd_identifier_token18] = ACTIONS(1892), - [aux_sym_cmd_identifier_token19] = ACTIONS(1892), - [aux_sym_cmd_identifier_token20] = ACTIONS(1892), - [aux_sym_cmd_identifier_token21] = ACTIONS(1892), - [aux_sym_cmd_identifier_token22] = ACTIONS(1892), - [aux_sym_cmd_identifier_token23] = ACTIONS(1892), - [aux_sym_cmd_identifier_token24] = ACTIONS(1892), - [aux_sym_cmd_identifier_token25] = ACTIONS(1892), - [aux_sym_cmd_identifier_token26] = ACTIONS(1892), - [aux_sym_cmd_identifier_token27] = ACTIONS(1892), - [aux_sym_cmd_identifier_token28] = ACTIONS(1892), - [aux_sym_cmd_identifier_token29] = ACTIONS(1892), - [aux_sym_cmd_identifier_token30] = ACTIONS(1892), - [aux_sym_cmd_identifier_token31] = ACTIONS(1892), - [aux_sym_cmd_identifier_token32] = ACTIONS(1892), - [aux_sym_cmd_identifier_token33] = ACTIONS(1892), - [aux_sym_cmd_identifier_token34] = ACTIONS(1890), - [aux_sym_cmd_identifier_token35] = ACTIONS(1892), - [aux_sym_cmd_identifier_token36] = ACTIONS(1892), - [aux_sym_cmd_identifier_token37] = ACTIONS(1892), - [aux_sym_cmd_identifier_token38] = ACTIONS(1890), - [aux_sym_cmd_identifier_token39] = ACTIONS(1892), - [aux_sym_cmd_identifier_token40] = ACTIONS(1892), - [anon_sym_def] = ACTIONS(1890), - [anon_sym_export_DASHenv] = ACTIONS(1890), - [anon_sym_extern] = ACTIONS(1890), - [anon_sym_module] = ACTIONS(1890), - [anon_sym_use] = ACTIONS(1890), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(1892), - [anon_sym_error] = ACTIONS(1890), - [anon_sym_DASH2] = ACTIONS(1890), - [anon_sym_break] = ACTIONS(1890), - [anon_sym_continue] = ACTIONS(1890), - [anon_sym_for] = ACTIONS(1890), - [anon_sym_in2] = ACTIONS(1890), - [anon_sym_loop] = ACTIONS(1890), - [anon_sym_make] = ACTIONS(1890), - [anon_sym_while] = ACTIONS(1890), - [anon_sym_do] = ACTIONS(1890), - [anon_sym_if] = ACTIONS(1890), - [anon_sym_else] = ACTIONS(1890), - [anon_sym_match] = ACTIONS(1890), - [anon_sym_RBRACE] = ACTIONS(1892), - [anon_sym_try] = ACTIONS(1890), - [anon_sym_catch] = ACTIONS(1890), - [anon_sym_return] = ACTIONS(1890), - [anon_sym_source] = ACTIONS(1890), - [anon_sym_source_DASHenv] = ACTIONS(1890), - [anon_sym_register] = ACTIONS(1890), - [anon_sym_hide] = ACTIONS(1890), - [anon_sym_hide_DASHenv] = ACTIONS(1890), - [anon_sym_overlay] = ACTIONS(1890), - [anon_sym_as] = ACTIONS(1890), - [anon_sym_LPAREN2] = ACTIONS(1892), - [anon_sym_PLUS2] = ACTIONS(1890), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1892), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1892), - [aux_sym__val_number_decimal_token1] = ACTIONS(1890), - [aux_sym__val_number_decimal_token2] = ACTIONS(1892), - [aux_sym__val_number_decimal_token3] = ACTIONS(1892), - [aux_sym__val_number_decimal_token4] = ACTIONS(1892), - [aux_sym__val_number_token1] = ACTIONS(1892), - [aux_sym__val_number_token2] = ACTIONS(1892), - [aux_sym__val_number_token3] = ACTIONS(1892), - [aux_sym__val_number_token4] = ACTIONS(1890), - [aux_sym__val_number_token5] = ACTIONS(1890), - [aux_sym__val_number_token6] = ACTIONS(1890), - [anon_sym_DQUOTE] = ACTIONS(1892), - [sym__str_single_quotes] = ACTIONS(1892), - [sym__str_back_ticks] = ACTIONS(1892), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1892), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1890), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1892), - }, - [583] = { - [sym_comment] = STATE(583), - [anon_sym_export] = ACTIONS(1866), - [anon_sym_alias] = ACTIONS(1866), - [anon_sym_let] = ACTIONS(1866), - [anon_sym_let_DASHenv] = ACTIONS(1866), - [anon_sym_mut] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [aux_sym_cmd_identifier_token1] = ACTIONS(1866), - [aux_sym_cmd_identifier_token2] = ACTIONS(1874), - [aux_sym_cmd_identifier_token3] = ACTIONS(1874), - [aux_sym_cmd_identifier_token4] = ACTIONS(1874), - [aux_sym_cmd_identifier_token5] = ACTIONS(1874), - [aux_sym_cmd_identifier_token6] = ACTIONS(1874), - [aux_sym_cmd_identifier_token7] = ACTIONS(1874), - [aux_sym_cmd_identifier_token8] = ACTIONS(1866), - [aux_sym_cmd_identifier_token9] = ACTIONS(1866), - [aux_sym_cmd_identifier_token10] = ACTIONS(1874), - [aux_sym_cmd_identifier_token11] = ACTIONS(1874), - [aux_sym_cmd_identifier_token12] = ACTIONS(1866), - [aux_sym_cmd_identifier_token13] = ACTIONS(1866), - [aux_sym_cmd_identifier_token14] = ACTIONS(1866), - [aux_sym_cmd_identifier_token15] = ACTIONS(1866), - [aux_sym_cmd_identifier_token16] = ACTIONS(1874), - [aux_sym_cmd_identifier_token17] = ACTIONS(1874), - [aux_sym_cmd_identifier_token18] = ACTIONS(1874), - [aux_sym_cmd_identifier_token19] = ACTIONS(1874), - [aux_sym_cmd_identifier_token20] = ACTIONS(1874), - [aux_sym_cmd_identifier_token21] = ACTIONS(1874), - [aux_sym_cmd_identifier_token22] = ACTIONS(1874), - [aux_sym_cmd_identifier_token23] = ACTIONS(1874), - [aux_sym_cmd_identifier_token24] = ACTIONS(1874), - [aux_sym_cmd_identifier_token25] = ACTIONS(1874), - [aux_sym_cmd_identifier_token26] = ACTIONS(1874), - [aux_sym_cmd_identifier_token27] = ACTIONS(1874), - [aux_sym_cmd_identifier_token28] = ACTIONS(1874), - [aux_sym_cmd_identifier_token29] = ACTIONS(1874), - [aux_sym_cmd_identifier_token30] = ACTIONS(1874), - [aux_sym_cmd_identifier_token31] = ACTIONS(1874), - [aux_sym_cmd_identifier_token32] = ACTIONS(1874), - [aux_sym_cmd_identifier_token33] = ACTIONS(1874), - [aux_sym_cmd_identifier_token34] = ACTIONS(1866), - [aux_sym_cmd_identifier_token35] = ACTIONS(1874), - [aux_sym_cmd_identifier_token36] = ACTIONS(1874), - [aux_sym_cmd_identifier_token37] = ACTIONS(1874), - [aux_sym_cmd_identifier_token38] = ACTIONS(1866), - [aux_sym_cmd_identifier_token39] = ACTIONS(1874), - [aux_sym_cmd_identifier_token40] = ACTIONS(1874), - [anon_sym_def] = ACTIONS(1866), - [anon_sym_export_DASHenv] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym_module] = ACTIONS(1866), - [anon_sym_use] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1874), - [anon_sym_error] = ACTIONS(1866), - [anon_sym_DASH2] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_in2] = ACTIONS(1866), - [anon_sym_loop] = ACTIONS(1866), - [anon_sym_make] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_else] = ACTIONS(1866), - [anon_sym_match] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1874), - [anon_sym_try] = ACTIONS(1866), - [anon_sym_catch] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_source] = ACTIONS(1866), - [anon_sym_source_DASHenv] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_hide] = ACTIONS(1866), - [anon_sym_hide_DASHenv] = ACTIONS(1866), - [anon_sym_overlay] = ACTIONS(1866), - [anon_sym_as] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_PLUS2] = ACTIONS(1866), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1874), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1874), - [aux_sym__val_number_decimal_token1] = ACTIONS(1866), - [aux_sym__val_number_decimal_token2] = ACTIONS(1874), - [aux_sym__val_number_decimal_token3] = ACTIONS(1874), - [aux_sym__val_number_decimal_token4] = ACTIONS(1874), - [aux_sym__val_number_token1] = ACTIONS(1874), - [aux_sym__val_number_token2] = ACTIONS(1874), - [aux_sym__val_number_token3] = ACTIONS(1874), - [aux_sym__val_number_token4] = ACTIONS(1866), - [aux_sym__val_number_token5] = ACTIONS(1866), - [aux_sym__val_number_token6] = ACTIONS(1866), - [anon_sym_DQUOTE] = ACTIONS(1874), - [sym__str_single_quotes] = ACTIONS(1874), - [sym__str_back_ticks] = ACTIONS(1874), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1874), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1546), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1874), - }, - [584] = { - [sym_comment] = STATE(584), - [aux_sym__multiple_types_repeat1] = STATE(591), + [aux_sym__multiple_types_repeat1] = STATE(600), [anon_sym_export] = ACTIONS(2286), [anon_sym_alias] = ACTIONS(2286), [anon_sym_let] = ACTIONS(2286), @@ -138338,7 +137748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(2286), [anon_sym_else] = ACTIONS(2286), [anon_sym_match] = ACTIONS(2286), - [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_RBRACE] = ACTIONS(2302), [anon_sym_try] = ACTIONS(2286), [anon_sym_catch] = ACTIONS(2286), [anon_sym_return] = ACTIONS(2286), @@ -138370,211 +137780,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2292), }, - [585] = { - [sym_comment] = STATE(585), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [aux_sym_cmd_identifier_token1] = ACTIONS(990), - [aux_sym_cmd_identifier_token2] = ACTIONS(992), - [aux_sym_cmd_identifier_token3] = ACTIONS(992), - [aux_sym_cmd_identifier_token4] = ACTIONS(992), - [aux_sym_cmd_identifier_token5] = ACTIONS(992), - [aux_sym_cmd_identifier_token6] = ACTIONS(992), - [aux_sym_cmd_identifier_token7] = ACTIONS(992), - [aux_sym_cmd_identifier_token8] = ACTIONS(990), - [aux_sym_cmd_identifier_token9] = ACTIONS(990), - [aux_sym_cmd_identifier_token10] = ACTIONS(992), - [aux_sym_cmd_identifier_token11] = ACTIONS(992), - [aux_sym_cmd_identifier_token12] = ACTIONS(990), - [aux_sym_cmd_identifier_token13] = ACTIONS(990), - [aux_sym_cmd_identifier_token14] = ACTIONS(990), - [aux_sym_cmd_identifier_token15] = ACTIONS(990), - [aux_sym_cmd_identifier_token16] = ACTIONS(992), - [aux_sym_cmd_identifier_token17] = ACTIONS(992), - [aux_sym_cmd_identifier_token18] = ACTIONS(992), - [aux_sym_cmd_identifier_token19] = ACTIONS(992), - [aux_sym_cmd_identifier_token20] = ACTIONS(992), - [aux_sym_cmd_identifier_token21] = ACTIONS(992), - [aux_sym_cmd_identifier_token22] = ACTIONS(992), - [aux_sym_cmd_identifier_token23] = ACTIONS(992), - [aux_sym_cmd_identifier_token24] = ACTIONS(992), - [aux_sym_cmd_identifier_token25] = ACTIONS(992), - [aux_sym_cmd_identifier_token26] = ACTIONS(992), - [aux_sym_cmd_identifier_token27] = ACTIONS(992), - [aux_sym_cmd_identifier_token28] = ACTIONS(992), - [aux_sym_cmd_identifier_token29] = ACTIONS(992), - [aux_sym_cmd_identifier_token30] = ACTIONS(992), - [aux_sym_cmd_identifier_token31] = ACTIONS(992), - [aux_sym_cmd_identifier_token32] = ACTIONS(992), - [aux_sym_cmd_identifier_token33] = ACTIONS(992), - [aux_sym_cmd_identifier_token34] = ACTIONS(990), - [aux_sym_cmd_identifier_token35] = ACTIONS(992), - [aux_sym_cmd_identifier_token36] = ACTIONS(992), - [aux_sym_cmd_identifier_token37] = ACTIONS(992), - [aux_sym_cmd_identifier_token38] = ACTIONS(990), - [aux_sym_cmd_identifier_token39] = ACTIONS(992), - [aux_sym_cmd_identifier_token40] = ACTIONS(992), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_error] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in2] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_make] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_try] = ACTIONS(990), - [anon_sym_catch] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(992), - [anon_sym_PLUS2] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(992), - [aux_sym__val_number_decimal_token3] = ACTIONS(992), - [aux_sym__val_number_decimal_token4] = ACTIONS(992), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(992), - }, - [586] = { - [sym_comment] = STATE(586), - [anon_sym_export] = ACTIONS(2234), - [anon_sym_alias] = ACTIONS(2234), - [anon_sym_let] = ACTIONS(2234), - [anon_sym_let_DASHenv] = ACTIONS(2234), - [anon_sym_mut] = ACTIONS(2234), - [anon_sym_const] = ACTIONS(2234), - [aux_sym_cmd_identifier_token1] = ACTIONS(2234), - [aux_sym_cmd_identifier_token2] = ACTIONS(2238), - [aux_sym_cmd_identifier_token3] = ACTIONS(2238), - [aux_sym_cmd_identifier_token4] = ACTIONS(2238), - [aux_sym_cmd_identifier_token5] = ACTIONS(2238), - [aux_sym_cmd_identifier_token6] = ACTIONS(2238), - [aux_sym_cmd_identifier_token7] = ACTIONS(2238), - [aux_sym_cmd_identifier_token8] = ACTIONS(2234), - [aux_sym_cmd_identifier_token9] = ACTIONS(2234), - [aux_sym_cmd_identifier_token10] = ACTIONS(2238), - [aux_sym_cmd_identifier_token11] = ACTIONS(2238), - [aux_sym_cmd_identifier_token12] = ACTIONS(2234), - [aux_sym_cmd_identifier_token13] = ACTIONS(2234), - [aux_sym_cmd_identifier_token14] = ACTIONS(2234), - [aux_sym_cmd_identifier_token15] = ACTIONS(2234), - [aux_sym_cmd_identifier_token16] = ACTIONS(2238), - [aux_sym_cmd_identifier_token17] = ACTIONS(2238), - [aux_sym_cmd_identifier_token18] = ACTIONS(2238), - [aux_sym_cmd_identifier_token19] = ACTIONS(2238), - [aux_sym_cmd_identifier_token20] = ACTIONS(2238), - [aux_sym_cmd_identifier_token21] = ACTIONS(2238), - [aux_sym_cmd_identifier_token22] = ACTIONS(2238), - [aux_sym_cmd_identifier_token23] = ACTIONS(2238), - [aux_sym_cmd_identifier_token24] = ACTIONS(2238), - [aux_sym_cmd_identifier_token25] = ACTIONS(2238), - [aux_sym_cmd_identifier_token26] = ACTIONS(2238), - [aux_sym_cmd_identifier_token27] = ACTIONS(2238), - [aux_sym_cmd_identifier_token28] = ACTIONS(2238), - [aux_sym_cmd_identifier_token29] = ACTIONS(2238), - [aux_sym_cmd_identifier_token30] = ACTIONS(2238), - [aux_sym_cmd_identifier_token31] = ACTIONS(2238), - [aux_sym_cmd_identifier_token32] = ACTIONS(2238), - [aux_sym_cmd_identifier_token33] = ACTIONS(2238), - [aux_sym_cmd_identifier_token34] = ACTIONS(2234), - [aux_sym_cmd_identifier_token35] = ACTIONS(2238), - [aux_sym_cmd_identifier_token36] = ACTIONS(2238), - [aux_sym_cmd_identifier_token37] = ACTIONS(2238), - [aux_sym_cmd_identifier_token38] = ACTIONS(2234), - [aux_sym_cmd_identifier_token39] = ACTIONS(2238), - [aux_sym_cmd_identifier_token40] = ACTIONS(2238), - [anon_sym_def] = ACTIONS(2234), - [anon_sym_export_DASHenv] = ACTIONS(2234), - [anon_sym_extern] = ACTIONS(2234), - [anon_sym_module] = ACTIONS(2234), - [anon_sym_use] = ACTIONS(2234), - [anon_sym_LPAREN] = ACTIONS(2234), - [anon_sym_DOLLAR] = ACTIONS(2238), - [anon_sym_error] = ACTIONS(2234), - [anon_sym_DASH2] = ACTIONS(2234), - [anon_sym_break] = ACTIONS(2234), - [anon_sym_continue] = ACTIONS(2234), - [anon_sym_for] = ACTIONS(2234), - [anon_sym_in2] = ACTIONS(2234), - [anon_sym_loop] = ACTIONS(2234), - [anon_sym_make] = ACTIONS(2234), - [anon_sym_while] = ACTIONS(2234), - [anon_sym_do] = ACTIONS(2234), - [anon_sym_if] = ACTIONS(2234), - [anon_sym_else] = ACTIONS(2234), - [anon_sym_match] = ACTIONS(2234), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_try] = ACTIONS(2234), - [anon_sym_catch] = ACTIONS(2234), - [anon_sym_return] = ACTIONS(2234), - [anon_sym_source] = ACTIONS(2234), - [anon_sym_source_DASHenv] = ACTIONS(2234), - [anon_sym_register] = ACTIONS(2234), - [anon_sym_hide] = ACTIONS(2234), - [anon_sym_hide_DASHenv] = ACTIONS(2234), - [anon_sym_overlay] = ACTIONS(2234), - [anon_sym_as] = ACTIONS(2234), - [anon_sym_LPAREN2] = ACTIONS(2236), - [anon_sym_PLUS2] = ACTIONS(2234), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2238), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2238), - [aux_sym__val_number_decimal_token1] = ACTIONS(2234), - [aux_sym__val_number_decimal_token2] = ACTIONS(2238), - [aux_sym__val_number_decimal_token3] = ACTIONS(2238), - [aux_sym__val_number_decimal_token4] = ACTIONS(2238), - [aux_sym__val_number_token1] = ACTIONS(2238), - [aux_sym__val_number_token2] = ACTIONS(2238), - [aux_sym__val_number_token3] = ACTIONS(2238), - [aux_sym__val_number_token4] = ACTIONS(2234), - [aux_sym__val_number_token5] = ACTIONS(2234), - [aux_sym__val_number_token6] = ACTIONS(2234), - [anon_sym_DQUOTE] = ACTIONS(2238), - [sym__str_single_quotes] = ACTIONS(2238), - [sym__str_back_ticks] = ACTIONS(2238), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2238), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1579), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2238), - }, - [587] = { - [sym_comment] = STATE(587), - [aux_sym__multiple_types_repeat1] = STATE(591), + [576] = { + [sym_comment] = STATE(576), + [aux_sym__multiple_types_repeat1] = STATE(600), [anon_sym_export] = ACTIONS(2286), [anon_sym_alias] = ACTIONS(2286), [anon_sym_let] = ACTIONS(2286), @@ -138641,7 +137849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(2286), [anon_sym_else] = ACTIONS(2286), [anon_sym_match] = ACTIONS(2286), - [anon_sym_RBRACE] = ACTIONS(2312), + [anon_sym_RBRACE] = ACTIONS(2304), [anon_sym_try] = ACTIONS(2286), [anon_sym_catch] = ACTIONS(2286), [anon_sym_return] = ACTIONS(2286), @@ -138673,110 +137881,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2292), }, - [588] = { - [sym_comment] = STATE(588), - [anon_sym_export] = ACTIONS(2206), - [anon_sym_alias] = ACTIONS(2206), - [anon_sym_let] = ACTIONS(2206), - [anon_sym_let_DASHenv] = ACTIONS(2206), - [anon_sym_mut] = ACTIONS(2206), - [anon_sym_const] = ACTIONS(2206), - [aux_sym_cmd_identifier_token1] = ACTIONS(2206), - [aux_sym_cmd_identifier_token2] = ACTIONS(2206), - [aux_sym_cmd_identifier_token3] = ACTIONS(2206), - [aux_sym_cmd_identifier_token4] = ACTIONS(2206), - [aux_sym_cmd_identifier_token5] = ACTIONS(2206), - [aux_sym_cmd_identifier_token6] = ACTIONS(2206), - [aux_sym_cmd_identifier_token7] = ACTIONS(2206), - [aux_sym_cmd_identifier_token8] = ACTIONS(2206), - [aux_sym_cmd_identifier_token9] = ACTIONS(2206), - [aux_sym_cmd_identifier_token10] = ACTIONS(2206), - [aux_sym_cmd_identifier_token11] = ACTIONS(2206), - [aux_sym_cmd_identifier_token12] = ACTIONS(2206), - [aux_sym_cmd_identifier_token13] = ACTIONS(2206), - [aux_sym_cmd_identifier_token14] = ACTIONS(2206), - [aux_sym_cmd_identifier_token15] = ACTIONS(2206), - [aux_sym_cmd_identifier_token16] = ACTIONS(2206), - [aux_sym_cmd_identifier_token17] = ACTIONS(2206), - [aux_sym_cmd_identifier_token18] = ACTIONS(2206), - [aux_sym_cmd_identifier_token19] = ACTIONS(2206), - [aux_sym_cmd_identifier_token20] = ACTIONS(2206), - [aux_sym_cmd_identifier_token21] = ACTIONS(2206), - [aux_sym_cmd_identifier_token22] = ACTIONS(2206), - [aux_sym_cmd_identifier_token23] = ACTIONS(2206), - [aux_sym_cmd_identifier_token24] = ACTIONS(2206), - [aux_sym_cmd_identifier_token25] = ACTIONS(2206), - [aux_sym_cmd_identifier_token26] = ACTIONS(2206), - [aux_sym_cmd_identifier_token27] = ACTIONS(2206), - [aux_sym_cmd_identifier_token28] = ACTIONS(2206), - [aux_sym_cmd_identifier_token29] = ACTIONS(2206), - [aux_sym_cmd_identifier_token30] = ACTIONS(2206), - [aux_sym_cmd_identifier_token31] = ACTIONS(2206), - [aux_sym_cmd_identifier_token32] = ACTIONS(2206), - [aux_sym_cmd_identifier_token33] = ACTIONS(2206), - [aux_sym_cmd_identifier_token34] = ACTIONS(2206), - [aux_sym_cmd_identifier_token35] = ACTIONS(2206), - [aux_sym_cmd_identifier_token36] = ACTIONS(2206), - [aux_sym_cmd_identifier_token37] = ACTIONS(2206), - [aux_sym_cmd_identifier_token38] = ACTIONS(2206), - [aux_sym_cmd_identifier_token39] = ACTIONS(2206), - [aux_sym_cmd_identifier_token40] = ACTIONS(2206), - [anon_sym_def] = ACTIONS(2206), - [anon_sym_export_DASHenv] = ACTIONS(2206), - [anon_sym_extern] = ACTIONS(2206), - [anon_sym_module] = ACTIONS(2206), - [anon_sym_use] = ACTIONS(2206), - [anon_sym_LPAREN] = ACTIONS(2206), - [anon_sym_DOLLAR] = ACTIONS(2206), - [anon_sym_error] = ACTIONS(2206), - [anon_sym_DASH2] = ACTIONS(2206), - [anon_sym_break] = ACTIONS(2206), - [anon_sym_continue] = ACTIONS(2206), - [anon_sym_for] = ACTIONS(2206), - [anon_sym_in2] = ACTIONS(2206), - [anon_sym_loop] = ACTIONS(2206), - [anon_sym_make] = ACTIONS(2206), - [anon_sym_while] = ACTIONS(2206), - [anon_sym_do] = ACTIONS(2206), - [anon_sym_if] = ACTIONS(2206), - [anon_sym_else] = ACTIONS(2206), - [anon_sym_match] = ACTIONS(2206), - [anon_sym_RBRACE] = ACTIONS(2210), - [anon_sym_try] = ACTIONS(2206), - [anon_sym_catch] = ACTIONS(2206), - [anon_sym_return] = ACTIONS(2206), - [anon_sym_source] = ACTIONS(2206), - [anon_sym_source_DASHenv] = ACTIONS(2206), - [anon_sym_register] = ACTIONS(2206), - [anon_sym_hide] = ACTIONS(2206), - [anon_sym_hide_DASHenv] = ACTIONS(2206), - [anon_sym_overlay] = ACTIONS(2206), - [anon_sym_as] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(2208), - [anon_sym_PLUS2] = ACTIONS(2206), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2210), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2206), - [aux_sym__val_number_decimal_token1] = ACTIONS(2206), - [aux_sym__val_number_decimal_token2] = ACTIONS(2206), - [aux_sym__val_number_decimal_token3] = ACTIONS(2206), - [aux_sym__val_number_decimal_token4] = ACTIONS(2206), - [aux_sym__val_number_token1] = ACTIONS(2206), - [aux_sym__val_number_token2] = ACTIONS(2206), - [aux_sym__val_number_token3] = ACTIONS(2206), - [aux_sym__val_number_token4] = ACTIONS(2206), - [aux_sym__val_number_token5] = ACTIONS(2206), - [aux_sym__val_number_token6] = ACTIONS(2206), - [anon_sym_DQUOTE] = ACTIONS(2210), - [sym__str_single_quotes] = ACTIONS(2210), - [sym__str_back_ticks] = ACTIONS(2210), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2210), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2212), + [577] = { + [sym_comment] = STATE(577), + [anon_sym_export] = ACTIONS(2246), + [anon_sym_alias] = ACTIONS(2246), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_let_DASHenv] = ACTIONS(2246), + [anon_sym_mut] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2246), + [aux_sym_cmd_identifier_token1] = ACTIONS(2246), + [aux_sym_cmd_identifier_token2] = ACTIONS(2246), + [aux_sym_cmd_identifier_token3] = ACTIONS(2246), + [aux_sym_cmd_identifier_token4] = ACTIONS(2246), + [aux_sym_cmd_identifier_token5] = ACTIONS(2246), + [aux_sym_cmd_identifier_token6] = ACTIONS(2246), + [aux_sym_cmd_identifier_token7] = ACTIONS(2246), + [aux_sym_cmd_identifier_token8] = ACTIONS(2246), + [aux_sym_cmd_identifier_token9] = ACTIONS(2246), + [aux_sym_cmd_identifier_token10] = ACTIONS(2246), + [aux_sym_cmd_identifier_token11] = ACTIONS(2246), + [aux_sym_cmd_identifier_token12] = ACTIONS(2246), + [aux_sym_cmd_identifier_token13] = ACTIONS(2246), + [aux_sym_cmd_identifier_token14] = ACTIONS(2246), + [aux_sym_cmd_identifier_token15] = ACTIONS(2246), + [aux_sym_cmd_identifier_token16] = ACTIONS(2246), + [aux_sym_cmd_identifier_token17] = ACTIONS(2246), + [aux_sym_cmd_identifier_token18] = ACTIONS(2246), + [aux_sym_cmd_identifier_token19] = ACTIONS(2246), + [aux_sym_cmd_identifier_token20] = ACTIONS(2246), + [aux_sym_cmd_identifier_token21] = ACTIONS(2246), + [aux_sym_cmd_identifier_token22] = ACTIONS(2246), + [aux_sym_cmd_identifier_token23] = ACTIONS(2246), + [aux_sym_cmd_identifier_token24] = ACTIONS(2246), + [aux_sym_cmd_identifier_token25] = ACTIONS(2246), + [aux_sym_cmd_identifier_token26] = ACTIONS(2246), + [aux_sym_cmd_identifier_token27] = ACTIONS(2246), + [aux_sym_cmd_identifier_token28] = ACTIONS(2246), + [aux_sym_cmd_identifier_token29] = ACTIONS(2246), + [aux_sym_cmd_identifier_token30] = ACTIONS(2246), + [aux_sym_cmd_identifier_token31] = ACTIONS(2246), + [aux_sym_cmd_identifier_token32] = ACTIONS(2246), + [aux_sym_cmd_identifier_token33] = ACTIONS(2246), + [aux_sym_cmd_identifier_token34] = ACTIONS(2246), + [aux_sym_cmd_identifier_token35] = ACTIONS(2246), + [aux_sym_cmd_identifier_token36] = ACTIONS(2246), + [aux_sym_cmd_identifier_token37] = ACTIONS(2246), + [aux_sym_cmd_identifier_token38] = ACTIONS(2246), + [aux_sym_cmd_identifier_token39] = ACTIONS(2246), + [aux_sym_cmd_identifier_token40] = ACTIONS(2246), + [anon_sym_def] = ACTIONS(2246), + [anon_sym_export_DASHenv] = ACTIONS(2246), + [anon_sym_extern] = ACTIONS(2246), + [anon_sym_module] = ACTIONS(2246), + [anon_sym_use] = ACTIONS(2246), + [anon_sym_LPAREN] = ACTIONS(2246), + [anon_sym_DOLLAR] = ACTIONS(2246), + [anon_sym_error] = ACTIONS(2246), + [anon_sym_DASH2] = ACTIONS(2246), + [anon_sym_break] = ACTIONS(2246), + [anon_sym_continue] = ACTIONS(2246), + [anon_sym_for] = ACTIONS(2246), + [anon_sym_in2] = ACTIONS(2246), + [anon_sym_loop] = ACTIONS(2246), + [anon_sym_make] = ACTIONS(2246), + [anon_sym_while] = ACTIONS(2246), + [anon_sym_do] = ACTIONS(2246), + [anon_sym_if] = ACTIONS(2246), + [anon_sym_else] = ACTIONS(2246), + [anon_sym_match] = ACTIONS(2246), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2246), + [anon_sym_catch] = ACTIONS(2246), + [anon_sym_return] = ACTIONS(2246), + [anon_sym_source] = ACTIONS(2246), + [anon_sym_source_DASHenv] = ACTIONS(2246), + [anon_sym_register] = ACTIONS(2246), + [anon_sym_hide] = ACTIONS(2246), + [anon_sym_hide_DASHenv] = ACTIONS(2246), + [anon_sym_overlay] = ACTIONS(2246), + [anon_sym_as] = ACTIONS(2246), + [anon_sym_LPAREN2] = ACTIONS(2248), + [anon_sym_PLUS2] = ACTIONS(2246), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2250), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2246), + [aux_sym__val_number_decimal_token1] = ACTIONS(2246), + [aux_sym__val_number_decimal_token2] = ACTIONS(2246), + [aux_sym__val_number_decimal_token3] = ACTIONS(2246), + [aux_sym__val_number_decimal_token4] = ACTIONS(2246), + [aux_sym__val_number_token1] = ACTIONS(2246), + [aux_sym__val_number_token2] = ACTIONS(2246), + [aux_sym__val_number_token3] = ACTIONS(2246), + [aux_sym__val_number_token4] = ACTIONS(2246), + [aux_sym__val_number_token5] = ACTIONS(2246), + [aux_sym__val_number_token6] = ACTIONS(2246), + [anon_sym_DQUOTE] = ACTIONS(2250), + [sym__str_single_quotes] = ACTIONS(2250), + [sym__str_back_ticks] = ACTIONS(2250), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2250), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2252), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2210), + [sym_raw_string_begin] = ACTIONS(2250), }, - [589] = { - [sym_comment] = STATE(589), - [aux_sym__multiple_types_repeat1] = STATE(591), + [578] = { + [sym_comment] = STATE(578), + [anon_sym_export] = ACTIONS(1018), + [anon_sym_alias] = ACTIONS(1018), + [anon_sym_let] = ACTIONS(1018), + [anon_sym_let_DASHenv] = ACTIONS(1018), + [anon_sym_mut] = ACTIONS(1018), + [anon_sym_const] = ACTIONS(1018), + [aux_sym_cmd_identifier_token1] = ACTIONS(1018), + [aux_sym_cmd_identifier_token2] = ACTIONS(1024), + [aux_sym_cmd_identifier_token3] = ACTIONS(1024), + [aux_sym_cmd_identifier_token4] = ACTIONS(1024), + [aux_sym_cmd_identifier_token5] = ACTIONS(1024), + [aux_sym_cmd_identifier_token6] = ACTIONS(1024), + [aux_sym_cmd_identifier_token7] = ACTIONS(1024), + [aux_sym_cmd_identifier_token8] = ACTIONS(1018), + [aux_sym_cmd_identifier_token9] = ACTIONS(1018), + [aux_sym_cmd_identifier_token10] = ACTIONS(1024), + [aux_sym_cmd_identifier_token11] = ACTIONS(1024), + [aux_sym_cmd_identifier_token12] = ACTIONS(1018), + [aux_sym_cmd_identifier_token13] = ACTIONS(1018), + [aux_sym_cmd_identifier_token14] = ACTIONS(1018), + [aux_sym_cmd_identifier_token15] = ACTIONS(1018), + [aux_sym_cmd_identifier_token16] = ACTIONS(1024), + [aux_sym_cmd_identifier_token17] = ACTIONS(1024), + [aux_sym_cmd_identifier_token18] = ACTIONS(1024), + [aux_sym_cmd_identifier_token19] = ACTIONS(1024), + [aux_sym_cmd_identifier_token20] = ACTIONS(1024), + [aux_sym_cmd_identifier_token21] = ACTIONS(1024), + [aux_sym_cmd_identifier_token22] = ACTIONS(1024), + [aux_sym_cmd_identifier_token23] = ACTIONS(1024), + [aux_sym_cmd_identifier_token24] = ACTIONS(1024), + [aux_sym_cmd_identifier_token25] = ACTIONS(1024), + [aux_sym_cmd_identifier_token26] = ACTIONS(1024), + [aux_sym_cmd_identifier_token27] = ACTIONS(1024), + [aux_sym_cmd_identifier_token28] = ACTIONS(1024), + [aux_sym_cmd_identifier_token29] = ACTIONS(1024), + [aux_sym_cmd_identifier_token30] = ACTIONS(1024), + [aux_sym_cmd_identifier_token31] = ACTIONS(1024), + [aux_sym_cmd_identifier_token32] = ACTIONS(1024), + [aux_sym_cmd_identifier_token33] = ACTIONS(1024), + [aux_sym_cmd_identifier_token34] = ACTIONS(1018), + [aux_sym_cmd_identifier_token35] = ACTIONS(1024), + [aux_sym_cmd_identifier_token36] = ACTIONS(1024), + [aux_sym_cmd_identifier_token37] = ACTIONS(1024), + [aux_sym_cmd_identifier_token38] = ACTIONS(1018), + [aux_sym_cmd_identifier_token39] = ACTIONS(1024), + [aux_sym_cmd_identifier_token40] = ACTIONS(1024), + [anon_sym_def] = ACTIONS(1018), + [anon_sym_export_DASHenv] = ACTIONS(1018), + [anon_sym_extern] = ACTIONS(1018), + [anon_sym_module] = ACTIONS(1018), + [anon_sym_use] = ACTIONS(1018), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_COMMA] = ACTIONS(1030), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_error] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(1018), + [anon_sym_break] = ACTIONS(1018), + [anon_sym_continue] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1018), + [anon_sym_in2] = ACTIONS(1018), + [anon_sym_loop] = ACTIONS(1018), + [anon_sym_make] = ACTIONS(1018), + [anon_sym_while] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_if] = ACTIONS(1018), + [anon_sym_else] = ACTIONS(1018), + [anon_sym_match] = ACTIONS(1018), + [anon_sym_RBRACE] = ACTIONS(1024), + [anon_sym_try] = ACTIONS(1018), + [anon_sym_catch] = ACTIONS(1018), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_source] = ACTIONS(1018), + [anon_sym_source_DASHenv] = ACTIONS(1018), + [anon_sym_register] = ACTIONS(1018), + [anon_sym_hide] = ACTIONS(1018), + [anon_sym_hide_DASHenv] = ACTIONS(1018), + [anon_sym_overlay] = ACTIONS(1018), + [anon_sym_as] = ACTIONS(1018), + [anon_sym_PLUS2] = ACTIONS(1018), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1024), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1024), + [aux_sym__val_number_decimal_token3] = ACTIONS(1024), + [aux_sym__val_number_decimal_token4] = ACTIONS(1024), + [aux_sym__val_number_token1] = ACTIONS(1024), + [aux_sym__val_number_token2] = ACTIONS(1024), + [aux_sym__val_number_token3] = ACTIONS(1024), + [aux_sym__val_number_token4] = ACTIONS(1018), + [aux_sym__val_number_token5] = ACTIONS(1018), + [aux_sym__val_number_token6] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym__str_single_quotes] = ACTIONS(1024), + [sym__str_back_ticks] = ACTIONS(1024), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1024), + [aux_sym_record_entry_token1] = ACTIONS(2306), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1024), + }, + [579] = { + [sym_comment] = STATE(579), + [aux_sym__multiple_types_repeat1] = STATE(600), [anon_sym_export] = ACTIONS(2286), [anon_sym_alias] = ACTIONS(2286), [anon_sym_let] = ACTIONS(2286), @@ -138843,40 +138152,747 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(2286), [anon_sym_else] = ACTIONS(2286), [anon_sym_match] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2308), + [anon_sym_try] = ACTIONS(2286), + [anon_sym_catch] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_source] = ACTIONS(2286), + [anon_sym_source_DASHenv] = ACTIONS(2286), + [anon_sym_register] = ACTIONS(2286), + [anon_sym_hide] = ACTIONS(2286), + [anon_sym_hide_DASHenv] = ACTIONS(2286), + [anon_sym_overlay] = ACTIONS(2286), + [anon_sym_as] = ACTIONS(2286), + [anon_sym_PLUS2] = ACTIONS(2286), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2286), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2286), + [aux_sym__val_number_decimal_token1] = ACTIONS(2286), + [aux_sym__val_number_decimal_token2] = ACTIONS(2286), + [aux_sym__val_number_decimal_token3] = ACTIONS(2286), + [aux_sym__val_number_decimal_token4] = ACTIONS(2286), + [aux_sym__val_number_token1] = ACTIONS(2286), + [aux_sym__val_number_token2] = ACTIONS(2286), + [aux_sym__val_number_token3] = ACTIONS(2286), + [aux_sym__val_number_token4] = ACTIONS(2286), + [aux_sym__val_number_token5] = ACTIONS(2286), + [aux_sym__val_number_token6] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [sym__str_single_quotes] = ACTIONS(2286), + [sym__str_back_ticks] = ACTIONS(2286), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2286), + [sym__entry_separator] = ACTIONS(2290), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2292), + }, + [580] = { + [sym_comment] = STATE(580), + [anon_sym_export] = ACTIONS(2254), + [anon_sym_alias] = ACTIONS(2254), + [anon_sym_let] = ACTIONS(2254), + [anon_sym_let_DASHenv] = ACTIONS(2254), + [anon_sym_mut] = ACTIONS(2254), + [anon_sym_const] = ACTIONS(2254), + [aux_sym_cmd_identifier_token1] = ACTIONS(2254), + [aux_sym_cmd_identifier_token2] = ACTIONS(2254), + [aux_sym_cmd_identifier_token3] = ACTIONS(2254), + [aux_sym_cmd_identifier_token4] = ACTIONS(2254), + [aux_sym_cmd_identifier_token5] = ACTIONS(2254), + [aux_sym_cmd_identifier_token6] = ACTIONS(2254), + [aux_sym_cmd_identifier_token7] = ACTIONS(2254), + [aux_sym_cmd_identifier_token8] = ACTIONS(2254), + [aux_sym_cmd_identifier_token9] = ACTIONS(2254), + [aux_sym_cmd_identifier_token10] = ACTIONS(2254), + [aux_sym_cmd_identifier_token11] = ACTIONS(2254), + [aux_sym_cmd_identifier_token12] = ACTIONS(2254), + [aux_sym_cmd_identifier_token13] = ACTIONS(2254), + [aux_sym_cmd_identifier_token14] = ACTIONS(2254), + [aux_sym_cmd_identifier_token15] = ACTIONS(2254), + [aux_sym_cmd_identifier_token16] = ACTIONS(2254), + [aux_sym_cmd_identifier_token17] = ACTIONS(2254), + [aux_sym_cmd_identifier_token18] = ACTIONS(2254), + [aux_sym_cmd_identifier_token19] = ACTIONS(2254), + [aux_sym_cmd_identifier_token20] = ACTIONS(2254), + [aux_sym_cmd_identifier_token21] = ACTIONS(2254), + [aux_sym_cmd_identifier_token22] = ACTIONS(2254), + [aux_sym_cmd_identifier_token23] = ACTIONS(2254), + [aux_sym_cmd_identifier_token24] = ACTIONS(2254), + [aux_sym_cmd_identifier_token25] = ACTIONS(2254), + [aux_sym_cmd_identifier_token26] = ACTIONS(2254), + [aux_sym_cmd_identifier_token27] = ACTIONS(2254), + [aux_sym_cmd_identifier_token28] = ACTIONS(2254), + [aux_sym_cmd_identifier_token29] = ACTIONS(2254), + [aux_sym_cmd_identifier_token30] = ACTIONS(2254), + [aux_sym_cmd_identifier_token31] = ACTIONS(2254), + [aux_sym_cmd_identifier_token32] = ACTIONS(2254), + [aux_sym_cmd_identifier_token33] = ACTIONS(2254), + [aux_sym_cmd_identifier_token34] = ACTIONS(2254), + [aux_sym_cmd_identifier_token35] = ACTIONS(2254), + [aux_sym_cmd_identifier_token36] = ACTIONS(2254), + [aux_sym_cmd_identifier_token37] = ACTIONS(2254), + [aux_sym_cmd_identifier_token38] = ACTIONS(2254), + [aux_sym_cmd_identifier_token39] = ACTIONS(2254), + [aux_sym_cmd_identifier_token40] = ACTIONS(2254), + [anon_sym_def] = ACTIONS(2254), + [anon_sym_export_DASHenv] = ACTIONS(2254), + [anon_sym_extern] = ACTIONS(2254), + [anon_sym_module] = ACTIONS(2254), + [anon_sym_use] = ACTIONS(2254), + [anon_sym_LPAREN] = ACTIONS(2254), + [anon_sym_DOLLAR] = ACTIONS(2254), + [anon_sym_error] = ACTIONS(2254), + [anon_sym_DASH2] = ACTIONS(2254), + [anon_sym_break] = ACTIONS(2254), + [anon_sym_continue] = ACTIONS(2254), + [anon_sym_for] = ACTIONS(2254), + [anon_sym_in2] = ACTIONS(2254), + [anon_sym_loop] = ACTIONS(2254), + [anon_sym_make] = ACTIONS(2254), + [anon_sym_while] = ACTIONS(2254), + [anon_sym_do] = ACTIONS(2254), + [anon_sym_if] = ACTIONS(2254), + [anon_sym_else] = ACTIONS(2254), + [anon_sym_match] = ACTIONS(2254), + [anon_sym_RBRACE] = ACTIONS(2256), + [anon_sym_try] = ACTIONS(2254), + [anon_sym_catch] = ACTIONS(2254), + [anon_sym_return] = ACTIONS(2254), + [anon_sym_source] = ACTIONS(2254), + [anon_sym_source_DASHenv] = ACTIONS(2254), + [anon_sym_register] = ACTIONS(2254), + [anon_sym_hide] = ACTIONS(2254), + [anon_sym_hide_DASHenv] = ACTIONS(2254), + [anon_sym_overlay] = ACTIONS(2254), + [anon_sym_as] = ACTIONS(2254), + [anon_sym_LPAREN2] = ACTIONS(2248), + [anon_sym_PLUS2] = ACTIONS(2254), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2256), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2254), + [aux_sym__val_number_decimal_token1] = ACTIONS(2254), + [aux_sym__val_number_decimal_token2] = ACTIONS(2254), + [aux_sym__val_number_decimal_token3] = ACTIONS(2254), + [aux_sym__val_number_decimal_token4] = ACTIONS(2254), + [aux_sym__val_number_token1] = ACTIONS(2254), + [aux_sym__val_number_token2] = ACTIONS(2254), + [aux_sym__val_number_token3] = ACTIONS(2254), + [aux_sym__val_number_token4] = ACTIONS(2254), + [aux_sym__val_number_token5] = ACTIONS(2254), + [aux_sym__val_number_token6] = ACTIONS(2254), + [anon_sym_DQUOTE] = ACTIONS(2256), + [sym__str_single_quotes] = ACTIONS(2256), + [sym__str_back_ticks] = ACTIONS(2256), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2256), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2252), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2256), + }, + [581] = { + [sym_comment] = STATE(581), + [anon_sym_export] = ACTIONS(1785), + [anon_sym_alias] = ACTIONS(1785), + [anon_sym_let] = ACTIONS(1785), + [anon_sym_let_DASHenv] = ACTIONS(1785), + [anon_sym_mut] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(1785), + [aux_sym_cmd_identifier_token1] = ACTIONS(1785), + [aux_sym_cmd_identifier_token2] = ACTIONS(1785), + [aux_sym_cmd_identifier_token3] = ACTIONS(1785), + [aux_sym_cmd_identifier_token4] = ACTIONS(1785), + [aux_sym_cmd_identifier_token5] = ACTIONS(1785), + [aux_sym_cmd_identifier_token6] = ACTIONS(1785), + [aux_sym_cmd_identifier_token7] = ACTIONS(1785), + [aux_sym_cmd_identifier_token8] = ACTIONS(1785), + [aux_sym_cmd_identifier_token9] = ACTIONS(1785), + [aux_sym_cmd_identifier_token10] = ACTIONS(1785), + [aux_sym_cmd_identifier_token11] = ACTIONS(1785), + [aux_sym_cmd_identifier_token12] = ACTIONS(1785), + [aux_sym_cmd_identifier_token13] = ACTIONS(1785), + [aux_sym_cmd_identifier_token14] = ACTIONS(1785), + [aux_sym_cmd_identifier_token15] = ACTIONS(1785), + [aux_sym_cmd_identifier_token16] = ACTIONS(1785), + [aux_sym_cmd_identifier_token17] = ACTIONS(1785), + [aux_sym_cmd_identifier_token18] = ACTIONS(1785), + [aux_sym_cmd_identifier_token19] = ACTIONS(1785), + [aux_sym_cmd_identifier_token20] = ACTIONS(1785), + [aux_sym_cmd_identifier_token21] = ACTIONS(1785), + [aux_sym_cmd_identifier_token22] = ACTIONS(1785), + [aux_sym_cmd_identifier_token23] = ACTIONS(1785), + [aux_sym_cmd_identifier_token24] = ACTIONS(1785), + [aux_sym_cmd_identifier_token25] = ACTIONS(1785), + [aux_sym_cmd_identifier_token26] = ACTIONS(1785), + [aux_sym_cmd_identifier_token27] = ACTIONS(1785), + [aux_sym_cmd_identifier_token28] = ACTIONS(1785), + [aux_sym_cmd_identifier_token29] = ACTIONS(1785), + [aux_sym_cmd_identifier_token30] = ACTIONS(1785), + [aux_sym_cmd_identifier_token31] = ACTIONS(1785), + [aux_sym_cmd_identifier_token32] = ACTIONS(1785), + [aux_sym_cmd_identifier_token33] = ACTIONS(1785), + [aux_sym_cmd_identifier_token34] = ACTIONS(1785), + [aux_sym_cmd_identifier_token35] = ACTIONS(1785), + [aux_sym_cmd_identifier_token36] = ACTIONS(1785), + [aux_sym_cmd_identifier_token37] = ACTIONS(1785), + [aux_sym_cmd_identifier_token38] = ACTIONS(1785), + [aux_sym_cmd_identifier_token39] = ACTIONS(1785), + [aux_sym_cmd_identifier_token40] = ACTIONS(1785), + [anon_sym_def] = ACTIONS(1785), + [anon_sym_export_DASHenv] = ACTIONS(1785), + [anon_sym_extern] = ACTIONS(1785), + [anon_sym_module] = ACTIONS(1785), + [anon_sym_use] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1785), + [anon_sym_error] = ACTIONS(1785), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_break] = ACTIONS(1785), + [anon_sym_continue] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1785), + [anon_sym_in2] = ACTIONS(1785), + [anon_sym_loop] = ACTIONS(1785), + [anon_sym_make] = ACTIONS(1785), + [anon_sym_while] = ACTIONS(1785), + [anon_sym_do] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1785), + [anon_sym_else] = ACTIONS(1785), + [anon_sym_match] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1785), + [anon_sym_catch] = ACTIONS(1785), + [anon_sym_return] = ACTIONS(1785), + [anon_sym_source] = ACTIONS(1785), + [anon_sym_source_DASHenv] = ACTIONS(1785), + [anon_sym_register] = ACTIONS(1785), + [anon_sym_hide] = ACTIONS(1785), + [anon_sym_hide_DASHenv] = ACTIONS(1785), + [anon_sym_overlay] = ACTIONS(1785), + [anon_sym_as] = ACTIONS(1785), + [anon_sym_PLUS2] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), + [aux_sym__immediate_decimal_token2] = ACTIONS(2310), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), + [aux_sym__val_number_decimal_token1] = ACTIONS(1785), + [aux_sym__val_number_decimal_token2] = ACTIONS(1785), + [aux_sym__val_number_decimal_token3] = ACTIONS(1785), + [aux_sym__val_number_decimal_token4] = ACTIONS(1785), + [aux_sym__val_number_token1] = ACTIONS(1785), + [aux_sym__val_number_token2] = ACTIONS(1785), + [aux_sym__val_number_token3] = ACTIONS(1785), + [aux_sym__val_number_token4] = ACTIONS(1785), + [aux_sym__val_number_token5] = ACTIONS(1785), + [aux_sym__val_number_token6] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1785), + [sym__str_single_quotes] = ACTIONS(1785), + [sym__str_back_ticks] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), + [sym__entry_separator] = ACTIONS(1787), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1787), + }, + [582] = { + [sym_comment] = STATE(582), + [anon_sym_export] = ACTIONS(2272), + [anon_sym_alias] = ACTIONS(2272), + [anon_sym_let] = ACTIONS(2272), + [anon_sym_let_DASHenv] = ACTIONS(2272), + [anon_sym_mut] = ACTIONS(2272), + [anon_sym_const] = ACTIONS(2272), + [aux_sym_cmd_identifier_token1] = ACTIONS(2272), + [aux_sym_cmd_identifier_token2] = ACTIONS(2276), + [aux_sym_cmd_identifier_token3] = ACTIONS(2276), + [aux_sym_cmd_identifier_token4] = ACTIONS(2276), + [aux_sym_cmd_identifier_token5] = ACTIONS(2276), + [aux_sym_cmd_identifier_token6] = ACTIONS(2276), + [aux_sym_cmd_identifier_token7] = ACTIONS(2276), + [aux_sym_cmd_identifier_token8] = ACTIONS(2272), + [aux_sym_cmd_identifier_token9] = ACTIONS(2272), + [aux_sym_cmd_identifier_token10] = ACTIONS(2276), + [aux_sym_cmd_identifier_token11] = ACTIONS(2276), + [aux_sym_cmd_identifier_token12] = ACTIONS(2272), + [aux_sym_cmd_identifier_token13] = ACTIONS(2272), + [aux_sym_cmd_identifier_token14] = ACTIONS(2272), + [aux_sym_cmd_identifier_token15] = ACTIONS(2272), + [aux_sym_cmd_identifier_token16] = ACTIONS(2276), + [aux_sym_cmd_identifier_token17] = ACTIONS(2276), + [aux_sym_cmd_identifier_token18] = ACTIONS(2276), + [aux_sym_cmd_identifier_token19] = ACTIONS(2276), + [aux_sym_cmd_identifier_token20] = ACTIONS(2276), + [aux_sym_cmd_identifier_token21] = ACTIONS(2276), + [aux_sym_cmd_identifier_token22] = ACTIONS(2276), + [aux_sym_cmd_identifier_token23] = ACTIONS(2276), + [aux_sym_cmd_identifier_token24] = ACTIONS(2276), + [aux_sym_cmd_identifier_token25] = ACTIONS(2276), + [aux_sym_cmd_identifier_token26] = ACTIONS(2276), + [aux_sym_cmd_identifier_token27] = ACTIONS(2276), + [aux_sym_cmd_identifier_token28] = ACTIONS(2276), + [aux_sym_cmd_identifier_token29] = ACTIONS(2276), + [aux_sym_cmd_identifier_token30] = ACTIONS(2276), + [aux_sym_cmd_identifier_token31] = ACTIONS(2276), + [aux_sym_cmd_identifier_token32] = ACTIONS(2276), + [aux_sym_cmd_identifier_token33] = ACTIONS(2276), + [aux_sym_cmd_identifier_token34] = ACTIONS(2272), + [aux_sym_cmd_identifier_token35] = ACTIONS(2276), + [aux_sym_cmd_identifier_token36] = ACTIONS(2276), + [aux_sym_cmd_identifier_token37] = ACTIONS(2276), + [aux_sym_cmd_identifier_token38] = ACTIONS(2272), + [aux_sym_cmd_identifier_token39] = ACTIONS(2276), + [aux_sym_cmd_identifier_token40] = ACTIONS(2276), + [anon_sym_def] = ACTIONS(2272), + [anon_sym_export_DASHenv] = ACTIONS(2272), + [anon_sym_extern] = ACTIONS(2272), + [anon_sym_module] = ACTIONS(2272), + [anon_sym_use] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2272), + [anon_sym_DOLLAR] = ACTIONS(2276), + [anon_sym_error] = ACTIONS(2272), + [anon_sym_DASH2] = ACTIONS(2272), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2272), + [anon_sym_for] = ACTIONS(2272), + [anon_sym_in2] = ACTIONS(2272), + [anon_sym_loop] = ACTIONS(2272), + [anon_sym_make] = ACTIONS(2272), + [anon_sym_while] = ACTIONS(2272), + [anon_sym_do] = ACTIONS(2272), + [anon_sym_if] = ACTIONS(2272), + [anon_sym_else] = ACTIONS(2272), + [anon_sym_match] = ACTIONS(2272), + [anon_sym_RBRACE] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(2272), + [anon_sym_catch] = ACTIONS(2272), + [anon_sym_return] = ACTIONS(2272), + [anon_sym_source] = ACTIONS(2272), + [anon_sym_source_DASHenv] = ACTIONS(2272), + [anon_sym_register] = ACTIONS(2272), + [anon_sym_hide] = ACTIONS(2272), + [anon_sym_hide_DASHenv] = ACTIONS(2272), + [anon_sym_overlay] = ACTIONS(2272), + [anon_sym_as] = ACTIONS(2272), + [anon_sym_LPAREN2] = ACTIONS(2274), + [anon_sym_PLUS2] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2276), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2276), + [aux_sym__val_number_decimal_token1] = ACTIONS(2272), + [aux_sym__val_number_decimal_token2] = ACTIONS(2276), + [aux_sym__val_number_decimal_token3] = ACTIONS(2276), + [aux_sym__val_number_decimal_token4] = ACTIONS(2276), + [aux_sym__val_number_token1] = ACTIONS(2276), + [aux_sym__val_number_token2] = ACTIONS(2276), + [aux_sym__val_number_token3] = ACTIONS(2276), + [aux_sym__val_number_token4] = ACTIONS(2272), + [aux_sym__val_number_token5] = ACTIONS(2272), + [aux_sym__val_number_token6] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2276), + [sym__str_single_quotes] = ACTIONS(2276), + [sym__str_back_ticks] = ACTIONS(2276), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2276), + [aux_sym__unquoted_in_record_token2] = ACTIONS(2278), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2276), + }, + [583] = { + [sym_comment] = STATE(583), + [anon_sym_export] = ACTIONS(990), + [anon_sym_alias] = ACTIONS(990), + [anon_sym_let] = ACTIONS(990), + [anon_sym_let_DASHenv] = ACTIONS(990), + [anon_sym_mut] = ACTIONS(990), + [anon_sym_const] = ACTIONS(990), + [aux_sym_cmd_identifier_token1] = ACTIONS(990), + [aux_sym_cmd_identifier_token2] = ACTIONS(992), + [aux_sym_cmd_identifier_token3] = ACTIONS(992), + [aux_sym_cmd_identifier_token4] = ACTIONS(992), + [aux_sym_cmd_identifier_token5] = ACTIONS(992), + [aux_sym_cmd_identifier_token6] = ACTIONS(992), + [aux_sym_cmd_identifier_token7] = ACTIONS(992), + [aux_sym_cmd_identifier_token8] = ACTIONS(990), + [aux_sym_cmd_identifier_token9] = ACTIONS(990), + [aux_sym_cmd_identifier_token10] = ACTIONS(992), + [aux_sym_cmd_identifier_token11] = ACTIONS(992), + [aux_sym_cmd_identifier_token12] = ACTIONS(990), + [aux_sym_cmd_identifier_token13] = ACTIONS(990), + [aux_sym_cmd_identifier_token14] = ACTIONS(990), + [aux_sym_cmd_identifier_token15] = ACTIONS(990), + [aux_sym_cmd_identifier_token16] = ACTIONS(992), + [aux_sym_cmd_identifier_token17] = ACTIONS(992), + [aux_sym_cmd_identifier_token18] = ACTIONS(992), + [aux_sym_cmd_identifier_token19] = ACTIONS(992), + [aux_sym_cmd_identifier_token20] = ACTIONS(992), + [aux_sym_cmd_identifier_token21] = ACTIONS(992), + [aux_sym_cmd_identifier_token22] = ACTIONS(992), + [aux_sym_cmd_identifier_token23] = ACTIONS(992), + [aux_sym_cmd_identifier_token24] = ACTIONS(992), + [aux_sym_cmd_identifier_token25] = ACTIONS(992), + [aux_sym_cmd_identifier_token26] = ACTIONS(992), + [aux_sym_cmd_identifier_token27] = ACTIONS(992), + [aux_sym_cmd_identifier_token28] = ACTIONS(992), + [aux_sym_cmd_identifier_token29] = ACTIONS(992), + [aux_sym_cmd_identifier_token30] = ACTIONS(992), + [aux_sym_cmd_identifier_token31] = ACTIONS(992), + [aux_sym_cmd_identifier_token32] = ACTIONS(992), + [aux_sym_cmd_identifier_token33] = ACTIONS(992), + [aux_sym_cmd_identifier_token34] = ACTIONS(990), + [aux_sym_cmd_identifier_token35] = ACTIONS(992), + [aux_sym_cmd_identifier_token36] = ACTIONS(992), + [aux_sym_cmd_identifier_token37] = ACTIONS(992), + [aux_sym_cmd_identifier_token38] = ACTIONS(990), + [aux_sym_cmd_identifier_token39] = ACTIONS(992), + [aux_sym_cmd_identifier_token40] = ACTIONS(992), + [anon_sym_def] = ACTIONS(990), + [anon_sym_export_DASHenv] = ACTIONS(990), + [anon_sym_extern] = ACTIONS(990), + [anon_sym_module] = ACTIONS(990), + [anon_sym_use] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(992), + [anon_sym_error] = ACTIONS(990), + [anon_sym_DASH2] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_continue] = ACTIONS(990), + [anon_sym_for] = ACTIONS(990), + [anon_sym_in2] = ACTIONS(990), + [anon_sym_loop] = ACTIONS(990), + [anon_sym_make] = ACTIONS(990), + [anon_sym_while] = ACTIONS(990), + [anon_sym_do] = ACTIONS(990), + [anon_sym_if] = ACTIONS(990), + [anon_sym_else] = ACTIONS(990), + [anon_sym_match] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_try] = ACTIONS(990), + [anon_sym_catch] = ACTIONS(990), + [anon_sym_return] = ACTIONS(990), + [anon_sym_source] = ACTIONS(990), + [anon_sym_source_DASHenv] = ACTIONS(990), + [anon_sym_register] = ACTIONS(990), + [anon_sym_hide] = ACTIONS(990), + [anon_sym_hide_DASHenv] = ACTIONS(990), + [anon_sym_overlay] = ACTIONS(990), + [anon_sym_as] = ACTIONS(990), + [anon_sym_QMARK2] = ACTIONS(992), + [anon_sym_PLUS2] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = ACTIONS(992), + [aux_sym__val_number_decimal_token4] = ACTIONS(992), + [aux_sym__val_number_token1] = ACTIONS(992), + [aux_sym__val_number_token2] = ACTIONS(992), + [aux_sym__val_number_token3] = ACTIONS(992), + [aux_sym__val_number_token4] = ACTIONS(990), + [aux_sym__val_number_token5] = ACTIONS(990), + [aux_sym__val_number_token6] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(992), + }, + [584] = { + [sym_comment] = STATE(584), + [aux_sym__multiple_types_repeat1] = STATE(565), + [anon_sym_export] = ACTIONS(2312), + [anon_sym_alias] = ACTIONS(2312), + [anon_sym_let] = ACTIONS(2312), + [anon_sym_let_DASHenv] = ACTIONS(2312), + [anon_sym_mut] = ACTIONS(2312), + [anon_sym_const] = ACTIONS(2312), + [aux_sym_cmd_identifier_token1] = ACTIONS(2312), + [aux_sym_cmd_identifier_token2] = ACTIONS(2312), + [aux_sym_cmd_identifier_token3] = ACTIONS(2312), + [aux_sym_cmd_identifier_token4] = ACTIONS(2312), + [aux_sym_cmd_identifier_token5] = ACTIONS(2312), + [aux_sym_cmd_identifier_token6] = ACTIONS(2312), + [aux_sym_cmd_identifier_token7] = ACTIONS(2312), + [aux_sym_cmd_identifier_token8] = ACTIONS(2312), + [aux_sym_cmd_identifier_token9] = ACTIONS(2312), + [aux_sym_cmd_identifier_token10] = ACTIONS(2312), + [aux_sym_cmd_identifier_token11] = ACTIONS(2312), + [aux_sym_cmd_identifier_token12] = ACTIONS(2312), + [aux_sym_cmd_identifier_token13] = ACTIONS(2312), + [aux_sym_cmd_identifier_token14] = ACTIONS(2312), + [aux_sym_cmd_identifier_token15] = ACTIONS(2312), + [aux_sym_cmd_identifier_token16] = ACTIONS(2312), + [aux_sym_cmd_identifier_token17] = ACTIONS(2312), + [aux_sym_cmd_identifier_token18] = ACTIONS(2312), + [aux_sym_cmd_identifier_token19] = ACTIONS(2312), + [aux_sym_cmd_identifier_token20] = ACTIONS(2312), + [aux_sym_cmd_identifier_token21] = ACTIONS(2312), + [aux_sym_cmd_identifier_token22] = ACTIONS(2312), + [aux_sym_cmd_identifier_token23] = ACTIONS(2312), + [aux_sym_cmd_identifier_token24] = ACTIONS(2312), + [aux_sym_cmd_identifier_token25] = ACTIONS(2312), + [aux_sym_cmd_identifier_token26] = ACTIONS(2312), + [aux_sym_cmd_identifier_token27] = ACTIONS(2312), + [aux_sym_cmd_identifier_token28] = ACTIONS(2312), + [aux_sym_cmd_identifier_token29] = ACTIONS(2312), + [aux_sym_cmd_identifier_token30] = ACTIONS(2312), + [aux_sym_cmd_identifier_token31] = ACTIONS(2312), + [aux_sym_cmd_identifier_token32] = ACTIONS(2312), + [aux_sym_cmd_identifier_token33] = ACTIONS(2312), + [aux_sym_cmd_identifier_token34] = ACTIONS(2312), + [aux_sym_cmd_identifier_token35] = ACTIONS(2312), + [aux_sym_cmd_identifier_token36] = ACTIONS(2312), + [aux_sym_cmd_identifier_token37] = ACTIONS(2312), + [aux_sym_cmd_identifier_token38] = ACTIONS(2312), + [aux_sym_cmd_identifier_token39] = ACTIONS(2312), + [aux_sym_cmd_identifier_token40] = ACTIONS(2312), + [anon_sym_def] = ACTIONS(2312), + [anon_sym_export_DASHenv] = ACTIONS(2312), + [anon_sym_extern] = ACTIONS(2312), + [anon_sym_module] = ACTIONS(2312), + [anon_sym_use] = ACTIONS(2312), + [anon_sym_LPAREN] = ACTIONS(2312), + [anon_sym_DOLLAR] = ACTIONS(2312), + [anon_sym_error] = ACTIONS(2312), + [anon_sym_DASH2] = ACTIONS(2312), + [anon_sym_break] = ACTIONS(2312), + [anon_sym_continue] = ACTIONS(2312), + [anon_sym_for] = ACTIONS(2312), + [anon_sym_in2] = ACTIONS(2312), + [anon_sym_loop] = ACTIONS(2312), + [anon_sym_make] = ACTIONS(2312), + [anon_sym_while] = ACTIONS(2312), + [anon_sym_do] = ACTIONS(2312), + [anon_sym_if] = ACTIONS(2312), + [anon_sym_else] = ACTIONS(2312), + [anon_sym_match] = ACTIONS(2312), [anon_sym_RBRACE] = ACTIONS(2314), - [anon_sym_try] = ACTIONS(2286), - [anon_sym_catch] = ACTIONS(2286), - [anon_sym_return] = ACTIONS(2286), - [anon_sym_source] = ACTIONS(2286), - [anon_sym_source_DASHenv] = ACTIONS(2286), - [anon_sym_register] = ACTIONS(2286), - [anon_sym_hide] = ACTIONS(2286), - [anon_sym_hide_DASHenv] = ACTIONS(2286), - [anon_sym_overlay] = ACTIONS(2286), - [anon_sym_as] = ACTIONS(2286), - [anon_sym_PLUS2] = ACTIONS(2286), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2286), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2286), - [aux_sym__val_number_decimal_token1] = ACTIONS(2286), - [aux_sym__val_number_decimal_token2] = ACTIONS(2286), - [aux_sym__val_number_decimal_token3] = ACTIONS(2286), - [aux_sym__val_number_decimal_token4] = ACTIONS(2286), - [aux_sym__val_number_token1] = ACTIONS(2286), - [aux_sym__val_number_token2] = ACTIONS(2286), - [aux_sym__val_number_token3] = ACTIONS(2286), - [aux_sym__val_number_token4] = ACTIONS(2286), - [aux_sym__val_number_token5] = ACTIONS(2286), - [aux_sym__val_number_token6] = ACTIONS(2286), - [anon_sym_DQUOTE] = ACTIONS(2286), - [sym__str_single_quotes] = ACTIONS(2286), - [sym__str_back_ticks] = ACTIONS(2286), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2286), + [anon_sym_try] = ACTIONS(2312), + [anon_sym_catch] = ACTIONS(2312), + [anon_sym_return] = ACTIONS(2312), + [anon_sym_source] = ACTIONS(2312), + [anon_sym_source_DASHenv] = ACTIONS(2312), + [anon_sym_register] = ACTIONS(2312), + [anon_sym_hide] = ACTIONS(2312), + [anon_sym_hide_DASHenv] = ACTIONS(2312), + [anon_sym_overlay] = ACTIONS(2312), + [anon_sym_as] = ACTIONS(2312), + [anon_sym_PLUS2] = ACTIONS(2312), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2312), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2312), + [aux_sym__val_number_decimal_token1] = ACTIONS(2312), + [aux_sym__val_number_decimal_token2] = ACTIONS(2312), + [aux_sym__val_number_decimal_token3] = ACTIONS(2312), + [aux_sym__val_number_decimal_token4] = ACTIONS(2312), + [aux_sym__val_number_token1] = ACTIONS(2312), + [aux_sym__val_number_token2] = ACTIONS(2312), + [aux_sym__val_number_token3] = ACTIONS(2312), + [aux_sym__val_number_token4] = ACTIONS(2312), + [aux_sym__val_number_token5] = ACTIONS(2312), + [aux_sym__val_number_token6] = ACTIONS(2312), + [anon_sym_DQUOTE] = ACTIONS(2312), + [sym__str_single_quotes] = ACTIONS(2312), + [sym__str_back_ticks] = ACTIONS(2312), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2312), [sym__entry_separator] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2292), + [sym_raw_string_begin] = ACTIONS(2316), }, - [590] = { - [sym_comment] = STATE(590), + [585] = { + [sym_comment] = STATE(585), + [anon_sym_export] = ACTIONS(1820), + [anon_sym_alias] = ACTIONS(1820), + [anon_sym_let] = ACTIONS(1820), + [anon_sym_let_DASHenv] = ACTIONS(1820), + [anon_sym_mut] = ACTIONS(1820), + [anon_sym_const] = ACTIONS(1820), + [aux_sym_cmd_identifier_token1] = ACTIONS(1820), + [aux_sym_cmd_identifier_token2] = ACTIONS(1828), + [aux_sym_cmd_identifier_token3] = ACTIONS(1828), + [aux_sym_cmd_identifier_token4] = ACTIONS(1828), + [aux_sym_cmd_identifier_token5] = ACTIONS(1828), + [aux_sym_cmd_identifier_token6] = ACTIONS(1828), + [aux_sym_cmd_identifier_token7] = ACTIONS(1828), + [aux_sym_cmd_identifier_token8] = ACTIONS(1820), + [aux_sym_cmd_identifier_token9] = ACTIONS(1820), + [aux_sym_cmd_identifier_token10] = ACTIONS(1828), + [aux_sym_cmd_identifier_token11] = ACTIONS(1828), + [aux_sym_cmd_identifier_token12] = ACTIONS(1820), + [aux_sym_cmd_identifier_token13] = ACTIONS(1820), + [aux_sym_cmd_identifier_token14] = ACTIONS(1820), + [aux_sym_cmd_identifier_token15] = ACTIONS(1820), + [aux_sym_cmd_identifier_token16] = ACTIONS(1828), + [aux_sym_cmd_identifier_token17] = ACTIONS(1828), + [aux_sym_cmd_identifier_token18] = ACTIONS(1828), + [aux_sym_cmd_identifier_token19] = ACTIONS(1828), + [aux_sym_cmd_identifier_token20] = ACTIONS(1828), + [aux_sym_cmd_identifier_token21] = ACTIONS(1828), + [aux_sym_cmd_identifier_token22] = ACTIONS(1828), + [aux_sym_cmd_identifier_token23] = ACTIONS(1828), + [aux_sym_cmd_identifier_token24] = ACTIONS(1828), + [aux_sym_cmd_identifier_token25] = ACTIONS(1828), + [aux_sym_cmd_identifier_token26] = ACTIONS(1828), + [aux_sym_cmd_identifier_token27] = ACTIONS(1828), + [aux_sym_cmd_identifier_token28] = ACTIONS(1828), + [aux_sym_cmd_identifier_token29] = ACTIONS(1828), + [aux_sym_cmd_identifier_token30] = ACTIONS(1828), + [aux_sym_cmd_identifier_token31] = ACTIONS(1828), + [aux_sym_cmd_identifier_token32] = ACTIONS(1828), + [aux_sym_cmd_identifier_token33] = ACTIONS(1828), + [aux_sym_cmd_identifier_token34] = ACTIONS(1820), + [aux_sym_cmd_identifier_token35] = ACTIONS(1828), + [aux_sym_cmd_identifier_token36] = ACTIONS(1828), + [aux_sym_cmd_identifier_token37] = ACTIONS(1828), + [aux_sym_cmd_identifier_token38] = ACTIONS(1820), + [aux_sym_cmd_identifier_token39] = ACTIONS(1828), + [aux_sym_cmd_identifier_token40] = ACTIONS(1828), + [anon_sym_def] = ACTIONS(1820), + [anon_sym_export_DASHenv] = ACTIONS(1820), + [anon_sym_extern] = ACTIONS(1820), + [anon_sym_module] = ACTIONS(1820), + [anon_sym_use] = ACTIONS(1820), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_error] = ACTIONS(1820), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_break] = ACTIONS(1820), + [anon_sym_continue] = ACTIONS(1820), + [anon_sym_for] = ACTIONS(1820), + [anon_sym_in2] = ACTIONS(1820), + [anon_sym_loop] = ACTIONS(1820), + [anon_sym_make] = ACTIONS(1820), + [anon_sym_while] = ACTIONS(1820), + [anon_sym_do] = ACTIONS(1820), + [anon_sym_if] = ACTIONS(1820), + [anon_sym_else] = ACTIONS(1820), + [anon_sym_match] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_try] = ACTIONS(1820), + [anon_sym_catch] = ACTIONS(1820), + [anon_sym_return] = ACTIONS(1820), + [anon_sym_source] = ACTIONS(1820), + [anon_sym_source_DASHenv] = ACTIONS(1820), + [anon_sym_register] = ACTIONS(1820), + [anon_sym_hide] = ACTIONS(1820), + [anon_sym_hide_DASHenv] = ACTIONS(1820), + [anon_sym_overlay] = ACTIONS(1820), + [anon_sym_as] = ACTIONS(1820), + [anon_sym_LPAREN2] = ACTIONS(1822), + [anon_sym_PLUS2] = ACTIONS(1820), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1828), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1828), + [aux_sym__val_number_decimal_token1] = ACTIONS(1820), + [aux_sym__val_number_decimal_token2] = ACTIONS(1828), + [aux_sym__val_number_decimal_token3] = ACTIONS(1828), + [aux_sym__val_number_decimal_token4] = ACTIONS(1828), + [aux_sym__val_number_token1] = ACTIONS(1828), + [aux_sym__val_number_token2] = ACTIONS(1828), + [aux_sym__val_number_token3] = ACTIONS(1828), + [aux_sym__val_number_token4] = ACTIONS(1820), + [aux_sym__val_number_token5] = ACTIONS(1820), + [aux_sym__val_number_token6] = ACTIONS(1820), + [anon_sym_DQUOTE] = ACTIONS(1828), + [sym__str_single_quotes] = ACTIONS(1828), + [sym__str_back_ticks] = ACTIONS(1828), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1828), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1559), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1828), + }, + [586] = { + [sym_comment] = STATE(586), + [anon_sym_export] = ACTIONS(2230), + [anon_sym_alias] = ACTIONS(2230), + [anon_sym_let] = ACTIONS(2230), + [anon_sym_let_DASHenv] = ACTIONS(2230), + [anon_sym_mut] = ACTIONS(2230), + [anon_sym_const] = ACTIONS(2230), + [aux_sym_cmd_identifier_token1] = ACTIONS(2230), + [aux_sym_cmd_identifier_token2] = ACTIONS(2232), + [aux_sym_cmd_identifier_token3] = ACTIONS(2232), + [aux_sym_cmd_identifier_token4] = ACTIONS(2232), + [aux_sym_cmd_identifier_token5] = ACTIONS(2232), + [aux_sym_cmd_identifier_token6] = ACTIONS(2232), + [aux_sym_cmd_identifier_token7] = ACTIONS(2232), + [aux_sym_cmd_identifier_token8] = ACTIONS(2230), + [aux_sym_cmd_identifier_token9] = ACTIONS(2230), + [aux_sym_cmd_identifier_token10] = ACTIONS(2232), + [aux_sym_cmd_identifier_token11] = ACTIONS(2232), + [aux_sym_cmd_identifier_token12] = ACTIONS(2230), + [aux_sym_cmd_identifier_token13] = ACTIONS(2230), + [aux_sym_cmd_identifier_token14] = ACTIONS(2230), + [aux_sym_cmd_identifier_token15] = ACTIONS(2230), + [aux_sym_cmd_identifier_token16] = ACTIONS(2232), + [aux_sym_cmd_identifier_token17] = ACTIONS(2232), + [aux_sym_cmd_identifier_token18] = ACTIONS(2232), + [aux_sym_cmd_identifier_token19] = ACTIONS(2232), + [aux_sym_cmd_identifier_token20] = ACTIONS(2232), + [aux_sym_cmd_identifier_token21] = ACTIONS(2232), + [aux_sym_cmd_identifier_token22] = ACTIONS(2232), + [aux_sym_cmd_identifier_token23] = ACTIONS(2232), + [aux_sym_cmd_identifier_token24] = ACTIONS(2232), + [aux_sym_cmd_identifier_token25] = ACTIONS(2232), + [aux_sym_cmd_identifier_token26] = ACTIONS(2232), + [aux_sym_cmd_identifier_token27] = ACTIONS(2232), + [aux_sym_cmd_identifier_token28] = ACTIONS(2232), + [aux_sym_cmd_identifier_token29] = ACTIONS(2232), + [aux_sym_cmd_identifier_token30] = ACTIONS(2232), + [aux_sym_cmd_identifier_token31] = ACTIONS(2232), + [aux_sym_cmd_identifier_token32] = ACTIONS(2232), + [aux_sym_cmd_identifier_token33] = ACTIONS(2232), + [aux_sym_cmd_identifier_token34] = ACTIONS(2230), + [aux_sym_cmd_identifier_token35] = ACTIONS(2232), + [aux_sym_cmd_identifier_token36] = ACTIONS(2232), + [aux_sym_cmd_identifier_token37] = ACTIONS(2232), + [aux_sym_cmd_identifier_token38] = ACTIONS(2230), + [aux_sym_cmd_identifier_token39] = ACTIONS(2232), + [aux_sym_cmd_identifier_token40] = ACTIONS(2232), + [anon_sym_def] = ACTIONS(2230), + [anon_sym_export_DASHenv] = ACTIONS(2230), + [anon_sym_extern] = ACTIONS(2230), + [anon_sym_module] = ACTIONS(2230), + [anon_sym_use] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_DOLLAR] = ACTIONS(2232), + [anon_sym_error] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2230), + [anon_sym_break] = ACTIONS(2230), + [anon_sym_continue] = ACTIONS(2230), + [anon_sym_for] = ACTIONS(2230), + [anon_sym_in2] = ACTIONS(2230), + [anon_sym_loop] = ACTIONS(2230), + [anon_sym_make] = ACTIONS(2230), + [anon_sym_while] = ACTIONS(2230), + [anon_sym_do] = ACTIONS(2230), + [anon_sym_if] = ACTIONS(2230), + [anon_sym_else] = ACTIONS(2230), + [anon_sym_match] = ACTIONS(2230), + [anon_sym_RBRACE] = ACTIONS(2232), + [anon_sym_try] = ACTIONS(2230), + [anon_sym_catch] = ACTIONS(2230), + [anon_sym_return] = ACTIONS(2230), + [anon_sym_source] = ACTIONS(2230), + [anon_sym_source_DASHenv] = ACTIONS(2230), + [anon_sym_register] = ACTIONS(2230), + [anon_sym_hide] = ACTIONS(2230), + [anon_sym_hide_DASHenv] = ACTIONS(2230), + [anon_sym_overlay] = ACTIONS(2230), + [anon_sym_as] = ACTIONS(2230), + [anon_sym_LPAREN2] = ACTIONS(1804), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2232), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2232), + [aux_sym__val_number_decimal_token1] = ACTIONS(2230), + [aux_sym__val_number_decimal_token2] = ACTIONS(2232), + [aux_sym__val_number_decimal_token3] = ACTIONS(2232), + [aux_sym__val_number_decimal_token4] = ACTIONS(2232), + [aux_sym__val_number_token1] = ACTIONS(2232), + [aux_sym__val_number_token2] = ACTIONS(2232), + [aux_sym__val_number_token3] = ACTIONS(2232), + [aux_sym__val_number_token4] = ACTIONS(2230), + [aux_sym__val_number_token5] = ACTIONS(2230), + [aux_sym__val_number_token6] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2232), + [sym__str_single_quotes] = ACTIONS(2232), + [sym__str_back_ticks] = ACTIONS(2232), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2232), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1812), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2232), + }, + [587] = { + [sym_comment] = STATE(587), [anon_sym_export] = ACTIONS(1739), [anon_sym_alias] = ACTIONS(1739), [anon_sym_let] = ACTIONS(1739), @@ -138928,7 +138944,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1739), [anon_sym_module] = ACTIONS(1739), [anon_sym_use] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1739), [anon_sym_DOLLAR] = ACTIONS(1741), [anon_sym_error] = ACTIONS(1739), [anon_sym_DASH2] = ACTIONS(1739), @@ -138954,10 +138970,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(1739), [anon_sym_overlay] = ACTIONS(1739), [anon_sym_as] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), [anon_sym_PLUS2] = ACTIONS(1739), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1741), - [aux_sym__immediate_decimal_token1] = ACTIONS(2316), - [aux_sym__immediate_decimal_token2] = ACTIONS(2318), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1741), [aux_sym__val_number_decimal_token1] = ACTIONS(1739), [aux_sym__val_number_decimal_token2] = ACTIONS(1741), @@ -138973,1425 +138988,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(1741), [sym__str_back_ticks] = ACTIONS(1741), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1741), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1739), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1741), }, - [591] = { - [sym_comment] = STATE(591), - [aux_sym__multiple_types_repeat1] = STATE(591), - [anon_sym_export] = ACTIONS(2320), - [anon_sym_alias] = ACTIONS(2320), - [anon_sym_let] = ACTIONS(2320), - [anon_sym_let_DASHenv] = ACTIONS(2320), - [anon_sym_mut] = ACTIONS(2320), - [anon_sym_const] = ACTIONS(2320), - [aux_sym_cmd_identifier_token1] = ACTIONS(2320), - [aux_sym_cmd_identifier_token2] = ACTIONS(2320), - [aux_sym_cmd_identifier_token3] = ACTIONS(2320), - [aux_sym_cmd_identifier_token4] = ACTIONS(2320), - [aux_sym_cmd_identifier_token5] = ACTIONS(2320), - [aux_sym_cmd_identifier_token6] = ACTIONS(2320), - [aux_sym_cmd_identifier_token7] = ACTIONS(2320), - [aux_sym_cmd_identifier_token8] = ACTIONS(2320), - [aux_sym_cmd_identifier_token9] = ACTIONS(2320), - [aux_sym_cmd_identifier_token10] = ACTIONS(2320), - [aux_sym_cmd_identifier_token11] = ACTIONS(2320), - [aux_sym_cmd_identifier_token12] = ACTIONS(2320), - [aux_sym_cmd_identifier_token13] = ACTIONS(2320), - [aux_sym_cmd_identifier_token14] = ACTIONS(2320), - [aux_sym_cmd_identifier_token15] = ACTIONS(2320), - [aux_sym_cmd_identifier_token16] = ACTIONS(2320), - [aux_sym_cmd_identifier_token17] = ACTIONS(2320), - [aux_sym_cmd_identifier_token18] = ACTIONS(2320), - [aux_sym_cmd_identifier_token19] = ACTIONS(2320), - [aux_sym_cmd_identifier_token20] = ACTIONS(2320), - [aux_sym_cmd_identifier_token21] = ACTIONS(2320), - [aux_sym_cmd_identifier_token22] = ACTIONS(2320), - [aux_sym_cmd_identifier_token23] = ACTIONS(2320), - [aux_sym_cmd_identifier_token24] = ACTIONS(2320), - [aux_sym_cmd_identifier_token25] = ACTIONS(2320), - [aux_sym_cmd_identifier_token26] = ACTIONS(2320), - [aux_sym_cmd_identifier_token27] = ACTIONS(2320), - [aux_sym_cmd_identifier_token28] = ACTIONS(2320), - [aux_sym_cmd_identifier_token29] = ACTIONS(2320), - [aux_sym_cmd_identifier_token30] = ACTIONS(2320), - [aux_sym_cmd_identifier_token31] = ACTIONS(2320), - [aux_sym_cmd_identifier_token32] = ACTIONS(2320), - [aux_sym_cmd_identifier_token33] = ACTIONS(2320), - [aux_sym_cmd_identifier_token34] = ACTIONS(2320), - [aux_sym_cmd_identifier_token35] = ACTIONS(2320), - [aux_sym_cmd_identifier_token36] = ACTIONS(2320), - [aux_sym_cmd_identifier_token37] = ACTIONS(2320), - [aux_sym_cmd_identifier_token38] = ACTIONS(2320), - [aux_sym_cmd_identifier_token39] = ACTIONS(2320), - [aux_sym_cmd_identifier_token40] = ACTIONS(2320), - [anon_sym_def] = ACTIONS(2320), - [anon_sym_export_DASHenv] = ACTIONS(2320), - [anon_sym_extern] = ACTIONS(2320), - [anon_sym_module] = ACTIONS(2320), - [anon_sym_use] = ACTIONS(2320), - [anon_sym_LPAREN] = ACTIONS(2320), - [anon_sym_DOLLAR] = ACTIONS(2320), - [anon_sym_error] = ACTIONS(2320), - [anon_sym_DASH2] = ACTIONS(2320), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2320), - [anon_sym_for] = ACTIONS(2320), - [anon_sym_in2] = ACTIONS(2320), - [anon_sym_loop] = ACTIONS(2320), - [anon_sym_make] = ACTIONS(2320), - [anon_sym_while] = ACTIONS(2320), - [anon_sym_do] = ACTIONS(2320), - [anon_sym_if] = ACTIONS(2320), - [anon_sym_else] = ACTIONS(2320), - [anon_sym_match] = ACTIONS(2320), - [anon_sym_RBRACE] = ACTIONS(2320), - [anon_sym_try] = ACTIONS(2320), - [anon_sym_catch] = ACTIONS(2320), - [anon_sym_return] = ACTIONS(2320), - [anon_sym_source] = ACTIONS(2320), - [anon_sym_source_DASHenv] = ACTIONS(2320), - [anon_sym_register] = ACTIONS(2320), - [anon_sym_hide] = ACTIONS(2320), - [anon_sym_hide_DASHenv] = ACTIONS(2320), - [anon_sym_overlay] = ACTIONS(2320), - [anon_sym_as] = ACTIONS(2320), - [anon_sym_PLUS2] = ACTIONS(2320), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2320), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2320), - [aux_sym__val_number_decimal_token1] = ACTIONS(2320), - [aux_sym__val_number_decimal_token2] = ACTIONS(2320), - [aux_sym__val_number_decimal_token3] = ACTIONS(2320), - [aux_sym__val_number_decimal_token4] = ACTIONS(2320), - [aux_sym__val_number_token1] = ACTIONS(2320), - [aux_sym__val_number_token2] = ACTIONS(2320), - [aux_sym__val_number_token3] = ACTIONS(2320), - [aux_sym__val_number_token4] = ACTIONS(2320), - [aux_sym__val_number_token5] = ACTIONS(2320), - [aux_sym__val_number_token6] = ACTIONS(2320), - [anon_sym_DQUOTE] = ACTIONS(2320), - [sym__str_single_quotes] = ACTIONS(2320), - [sym__str_back_ticks] = ACTIONS(2320), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2320), - [sym__entry_separator] = ACTIONS(2322), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2325), - }, - [592] = { - [sym_comment] = STATE(592), - [anon_sym_export] = ACTIONS(2214), - [anon_sym_alias] = ACTIONS(2214), - [anon_sym_let] = ACTIONS(2214), - [anon_sym_let_DASHenv] = ACTIONS(2214), - [anon_sym_mut] = ACTIONS(2214), - [anon_sym_const] = ACTIONS(2214), - [aux_sym_cmd_identifier_token1] = ACTIONS(2214), - [aux_sym_cmd_identifier_token2] = ACTIONS(2214), - [aux_sym_cmd_identifier_token3] = ACTIONS(2214), - [aux_sym_cmd_identifier_token4] = ACTIONS(2214), - [aux_sym_cmd_identifier_token5] = ACTIONS(2214), - [aux_sym_cmd_identifier_token6] = ACTIONS(2214), - [aux_sym_cmd_identifier_token7] = ACTIONS(2214), - [aux_sym_cmd_identifier_token8] = ACTIONS(2214), - [aux_sym_cmd_identifier_token9] = ACTIONS(2214), - [aux_sym_cmd_identifier_token10] = ACTIONS(2214), - [aux_sym_cmd_identifier_token11] = ACTIONS(2214), - [aux_sym_cmd_identifier_token12] = ACTIONS(2214), - [aux_sym_cmd_identifier_token13] = ACTIONS(2214), - [aux_sym_cmd_identifier_token14] = ACTIONS(2214), - [aux_sym_cmd_identifier_token15] = ACTIONS(2214), - [aux_sym_cmd_identifier_token16] = ACTIONS(2214), - [aux_sym_cmd_identifier_token17] = ACTIONS(2214), - [aux_sym_cmd_identifier_token18] = ACTIONS(2214), - [aux_sym_cmd_identifier_token19] = ACTIONS(2214), - [aux_sym_cmd_identifier_token20] = ACTIONS(2214), - [aux_sym_cmd_identifier_token21] = ACTIONS(2214), - [aux_sym_cmd_identifier_token22] = ACTIONS(2214), - [aux_sym_cmd_identifier_token23] = ACTIONS(2214), - [aux_sym_cmd_identifier_token24] = ACTIONS(2214), - [aux_sym_cmd_identifier_token25] = ACTIONS(2214), - [aux_sym_cmd_identifier_token26] = ACTIONS(2214), - [aux_sym_cmd_identifier_token27] = ACTIONS(2214), - [aux_sym_cmd_identifier_token28] = ACTIONS(2214), - [aux_sym_cmd_identifier_token29] = ACTIONS(2214), - [aux_sym_cmd_identifier_token30] = ACTIONS(2214), - [aux_sym_cmd_identifier_token31] = ACTIONS(2214), - [aux_sym_cmd_identifier_token32] = ACTIONS(2214), - [aux_sym_cmd_identifier_token33] = ACTIONS(2214), - [aux_sym_cmd_identifier_token34] = ACTIONS(2214), - [aux_sym_cmd_identifier_token35] = ACTIONS(2214), - [aux_sym_cmd_identifier_token36] = ACTIONS(2214), - [aux_sym_cmd_identifier_token37] = ACTIONS(2214), - [aux_sym_cmd_identifier_token38] = ACTIONS(2214), - [aux_sym_cmd_identifier_token39] = ACTIONS(2214), - [aux_sym_cmd_identifier_token40] = ACTIONS(2214), - [anon_sym_def] = ACTIONS(2214), - [anon_sym_export_DASHenv] = ACTIONS(2214), - [anon_sym_extern] = ACTIONS(2214), - [anon_sym_module] = ACTIONS(2214), - [anon_sym_use] = ACTIONS(2214), - [anon_sym_LPAREN] = ACTIONS(2214), - [anon_sym_DOLLAR] = ACTIONS(2214), - [anon_sym_error] = ACTIONS(2214), - [anon_sym_DASH2] = ACTIONS(2214), - [anon_sym_break] = ACTIONS(2214), - [anon_sym_continue] = ACTIONS(2214), - [anon_sym_for] = ACTIONS(2214), - [anon_sym_in2] = ACTIONS(2214), - [anon_sym_loop] = ACTIONS(2214), - [anon_sym_make] = ACTIONS(2214), - [anon_sym_while] = ACTIONS(2214), - [anon_sym_do] = ACTIONS(2214), - [anon_sym_if] = ACTIONS(2214), - [anon_sym_else] = ACTIONS(2214), - [anon_sym_match] = ACTIONS(2214), - [anon_sym_RBRACE] = ACTIONS(2218), - [anon_sym_try] = ACTIONS(2214), - [anon_sym_catch] = ACTIONS(2214), - [anon_sym_return] = ACTIONS(2214), - [anon_sym_source] = ACTIONS(2214), - [anon_sym_source_DASHenv] = ACTIONS(2214), - [anon_sym_register] = ACTIONS(2214), - [anon_sym_hide] = ACTIONS(2214), - [anon_sym_hide_DASHenv] = ACTIONS(2214), - [anon_sym_overlay] = ACTIONS(2214), - [anon_sym_as] = ACTIONS(2214), - [anon_sym_LPAREN2] = ACTIONS(2216), - [anon_sym_PLUS2] = ACTIONS(2214), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2214), - [aux_sym__val_number_decimal_token1] = ACTIONS(2214), - [aux_sym__val_number_decimal_token2] = ACTIONS(2214), - [aux_sym__val_number_decimal_token3] = ACTIONS(2214), - [aux_sym__val_number_decimal_token4] = ACTIONS(2214), - [aux_sym__val_number_token1] = ACTIONS(2214), - [aux_sym__val_number_token2] = ACTIONS(2214), - [aux_sym__val_number_token3] = ACTIONS(2214), - [aux_sym__val_number_token4] = ACTIONS(2214), - [aux_sym__val_number_token5] = ACTIONS(2214), - [aux_sym__val_number_token6] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2218), - [sym__str_single_quotes] = ACTIONS(2218), - [sym__str_back_ticks] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2218), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2220), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2218), - }, - [593] = { - [sym__expr_parenthesized_immediate] = STATE(7493), - [sym_comment] = STATE(593), - [anon_sym_export] = ACTIONS(2151), - [anon_sym_alias] = ACTIONS(2151), - [anon_sym_let] = ACTIONS(2151), - [anon_sym_let_DASHenv] = ACTIONS(2151), - [anon_sym_mut] = ACTIONS(2151), - [anon_sym_const] = ACTIONS(2151), - [aux_sym_cmd_identifier_token1] = ACTIONS(2151), - [aux_sym_cmd_identifier_token2] = ACTIONS(2153), - [aux_sym_cmd_identifier_token3] = ACTIONS(2153), - [aux_sym_cmd_identifier_token4] = ACTIONS(2153), - [aux_sym_cmd_identifier_token5] = ACTIONS(2153), - [aux_sym_cmd_identifier_token6] = ACTIONS(2153), - [aux_sym_cmd_identifier_token7] = ACTIONS(2153), - [aux_sym_cmd_identifier_token8] = ACTIONS(2151), - [aux_sym_cmd_identifier_token9] = ACTIONS(2151), - [aux_sym_cmd_identifier_token10] = ACTIONS(2153), - [aux_sym_cmd_identifier_token11] = ACTIONS(2153), - [aux_sym_cmd_identifier_token12] = ACTIONS(2151), - [aux_sym_cmd_identifier_token13] = ACTIONS(2151), - [aux_sym_cmd_identifier_token14] = ACTIONS(2151), - [aux_sym_cmd_identifier_token15] = ACTIONS(2151), - [aux_sym_cmd_identifier_token16] = ACTIONS(2153), - [aux_sym_cmd_identifier_token17] = ACTIONS(2153), - [aux_sym_cmd_identifier_token18] = ACTIONS(2153), - [aux_sym_cmd_identifier_token19] = ACTIONS(2153), - [aux_sym_cmd_identifier_token20] = ACTIONS(2153), - [aux_sym_cmd_identifier_token21] = ACTIONS(2153), - [aux_sym_cmd_identifier_token22] = ACTIONS(2153), - [aux_sym_cmd_identifier_token23] = ACTIONS(2153), - [aux_sym_cmd_identifier_token24] = ACTIONS(2153), - [aux_sym_cmd_identifier_token25] = ACTIONS(2153), - [aux_sym_cmd_identifier_token26] = ACTIONS(2153), - [aux_sym_cmd_identifier_token27] = ACTIONS(2153), - [aux_sym_cmd_identifier_token28] = ACTIONS(2153), - [aux_sym_cmd_identifier_token29] = ACTIONS(2153), - [aux_sym_cmd_identifier_token30] = ACTIONS(2153), - [aux_sym_cmd_identifier_token31] = ACTIONS(2153), - [aux_sym_cmd_identifier_token32] = ACTIONS(2153), - [aux_sym_cmd_identifier_token33] = ACTIONS(2153), - [aux_sym_cmd_identifier_token34] = ACTIONS(2151), - [aux_sym_cmd_identifier_token35] = ACTIONS(2153), - [aux_sym_cmd_identifier_token36] = ACTIONS(2153), - [aux_sym_cmd_identifier_token37] = ACTIONS(2153), - [aux_sym_cmd_identifier_token38] = ACTIONS(2151), - [aux_sym_cmd_identifier_token39] = ACTIONS(2153), - [aux_sym_cmd_identifier_token40] = ACTIONS(2153), - [anon_sym_def] = ACTIONS(2151), - [anon_sym_export_DASHenv] = ACTIONS(2151), - [anon_sym_extern] = ACTIONS(2151), - [anon_sym_module] = ACTIONS(2151), - [anon_sym_use] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_DOLLAR] = ACTIONS(2153), - [anon_sym_error] = ACTIONS(2151), - [anon_sym_DASH2] = ACTIONS(2151), - [anon_sym_break] = ACTIONS(2151), - [anon_sym_continue] = ACTIONS(2151), - [anon_sym_for] = ACTIONS(2151), - [anon_sym_in2] = ACTIONS(2151), - [anon_sym_loop] = ACTIONS(2151), - [anon_sym_make] = ACTIONS(2151), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_do] = ACTIONS(2151), - [anon_sym_if] = ACTIONS(2151), - [anon_sym_else] = ACTIONS(2151), - [anon_sym_match] = ACTIONS(2151), - [anon_sym_RBRACE] = ACTIONS(2153), - [anon_sym_try] = ACTIONS(2151), - [anon_sym_catch] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2151), - [anon_sym_source] = ACTIONS(2151), - [anon_sym_source_DASHenv] = ACTIONS(2151), - [anon_sym_register] = ACTIONS(2151), - [anon_sym_hide] = ACTIONS(2151), - [anon_sym_hide_DASHenv] = ACTIONS(2151), - [anon_sym_overlay] = ACTIONS(2151), - [anon_sym_as] = ACTIONS(2151), - [anon_sym_LPAREN2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(2151), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2153), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2153), - [aux_sym__val_number_decimal_token1] = ACTIONS(2151), - [aux_sym__val_number_decimal_token2] = ACTIONS(2153), - [aux_sym__val_number_decimal_token3] = ACTIONS(2153), - [aux_sym__val_number_decimal_token4] = ACTIONS(2153), - [aux_sym__val_number_token1] = ACTIONS(2153), - [aux_sym__val_number_token2] = ACTIONS(2153), - [aux_sym__val_number_token3] = ACTIONS(2153), - [aux_sym__val_number_token4] = ACTIONS(2151), - [aux_sym__val_number_token5] = ACTIONS(2151), - [aux_sym__val_number_token6] = ACTIONS(2151), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym__str_single_quotes] = ACTIONS(2153), - [sym__str_back_ticks] = ACTIONS(2153), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2153), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2153), - }, - [594] = { - [sym_comment] = STATE(594), - [anon_sym_export] = ACTIONS(2222), - [anon_sym_alias] = ACTIONS(2222), - [anon_sym_let] = ACTIONS(2222), - [anon_sym_let_DASHenv] = ACTIONS(2222), - [anon_sym_mut] = ACTIONS(2222), - [anon_sym_const] = ACTIONS(2222), - [aux_sym_cmd_identifier_token1] = ACTIONS(2222), - [aux_sym_cmd_identifier_token2] = ACTIONS(2222), - [aux_sym_cmd_identifier_token3] = ACTIONS(2222), - [aux_sym_cmd_identifier_token4] = ACTIONS(2222), - [aux_sym_cmd_identifier_token5] = ACTIONS(2222), - [aux_sym_cmd_identifier_token6] = ACTIONS(2222), - [aux_sym_cmd_identifier_token7] = ACTIONS(2222), - [aux_sym_cmd_identifier_token8] = ACTIONS(2222), - [aux_sym_cmd_identifier_token9] = ACTIONS(2222), - [aux_sym_cmd_identifier_token10] = ACTIONS(2222), - [aux_sym_cmd_identifier_token11] = ACTIONS(2222), - [aux_sym_cmd_identifier_token12] = ACTIONS(2222), - [aux_sym_cmd_identifier_token13] = ACTIONS(2222), - [aux_sym_cmd_identifier_token14] = ACTIONS(2222), - [aux_sym_cmd_identifier_token15] = ACTIONS(2222), - [aux_sym_cmd_identifier_token16] = ACTIONS(2222), - [aux_sym_cmd_identifier_token17] = ACTIONS(2222), - [aux_sym_cmd_identifier_token18] = ACTIONS(2222), - [aux_sym_cmd_identifier_token19] = ACTIONS(2222), - [aux_sym_cmd_identifier_token20] = ACTIONS(2222), - [aux_sym_cmd_identifier_token21] = ACTIONS(2222), - [aux_sym_cmd_identifier_token22] = ACTIONS(2222), - [aux_sym_cmd_identifier_token23] = ACTIONS(2222), - [aux_sym_cmd_identifier_token24] = ACTIONS(2222), - [aux_sym_cmd_identifier_token25] = ACTIONS(2222), - [aux_sym_cmd_identifier_token26] = ACTIONS(2222), - [aux_sym_cmd_identifier_token27] = ACTIONS(2222), - [aux_sym_cmd_identifier_token28] = ACTIONS(2222), - [aux_sym_cmd_identifier_token29] = ACTIONS(2222), - [aux_sym_cmd_identifier_token30] = ACTIONS(2222), - [aux_sym_cmd_identifier_token31] = ACTIONS(2222), - [aux_sym_cmd_identifier_token32] = ACTIONS(2222), - [aux_sym_cmd_identifier_token33] = ACTIONS(2222), - [aux_sym_cmd_identifier_token34] = ACTIONS(2222), - [aux_sym_cmd_identifier_token35] = ACTIONS(2222), - [aux_sym_cmd_identifier_token36] = ACTIONS(2222), - [aux_sym_cmd_identifier_token37] = ACTIONS(2222), - [aux_sym_cmd_identifier_token38] = ACTIONS(2222), - [aux_sym_cmd_identifier_token39] = ACTIONS(2222), - [aux_sym_cmd_identifier_token40] = ACTIONS(2222), - [anon_sym_def] = ACTIONS(2222), - [anon_sym_export_DASHenv] = ACTIONS(2222), - [anon_sym_extern] = ACTIONS(2222), - [anon_sym_module] = ACTIONS(2222), - [anon_sym_use] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_DOLLAR] = ACTIONS(2222), - [anon_sym_error] = ACTIONS(2222), - [anon_sym_DASH2] = ACTIONS(2222), - [anon_sym_break] = ACTIONS(2222), - [anon_sym_continue] = ACTIONS(2222), - [anon_sym_for] = ACTIONS(2222), - [anon_sym_in2] = ACTIONS(2222), - [anon_sym_loop] = ACTIONS(2222), - [anon_sym_make] = ACTIONS(2222), - [anon_sym_while] = ACTIONS(2222), - [anon_sym_do] = ACTIONS(2222), - [anon_sym_if] = ACTIONS(2222), - [anon_sym_else] = ACTIONS(2222), - [anon_sym_match] = ACTIONS(2222), - [anon_sym_RBRACE] = ACTIONS(2224), - [anon_sym_try] = ACTIONS(2222), - [anon_sym_catch] = ACTIONS(2222), - [anon_sym_return] = ACTIONS(2222), - [anon_sym_source] = ACTIONS(2222), - [anon_sym_source_DASHenv] = ACTIONS(2222), - [anon_sym_register] = ACTIONS(2222), - [anon_sym_hide] = ACTIONS(2222), - [anon_sym_hide_DASHenv] = ACTIONS(2222), - [anon_sym_overlay] = ACTIONS(2222), - [anon_sym_as] = ACTIONS(2222), - [anon_sym_LPAREN2] = ACTIONS(2216), - [anon_sym_PLUS2] = ACTIONS(2222), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2224), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2222), - [aux_sym__val_number_decimal_token1] = ACTIONS(2222), - [aux_sym__val_number_decimal_token2] = ACTIONS(2222), - [aux_sym__val_number_decimal_token3] = ACTIONS(2222), - [aux_sym__val_number_decimal_token4] = ACTIONS(2222), - [aux_sym__val_number_token1] = ACTIONS(2222), - [aux_sym__val_number_token2] = ACTIONS(2222), - [aux_sym__val_number_token3] = ACTIONS(2222), - [aux_sym__val_number_token4] = ACTIONS(2222), - [aux_sym__val_number_token5] = ACTIONS(2222), - [aux_sym__val_number_token6] = ACTIONS(2222), - [anon_sym_DQUOTE] = ACTIONS(2224), - [sym__str_single_quotes] = ACTIONS(2224), - [sym__str_back_ticks] = ACTIONS(2224), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2224), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2220), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2224), - }, - [595] = { - [sym__expr_parenthesized_immediate] = STATE(7493), - [sym_comment] = STATE(595), - [anon_sym_export] = ACTIONS(2155), - [anon_sym_alias] = ACTIONS(2155), - [anon_sym_let] = ACTIONS(2155), - [anon_sym_let_DASHenv] = ACTIONS(2155), - [anon_sym_mut] = ACTIONS(2155), - [anon_sym_const] = ACTIONS(2155), - [aux_sym_cmd_identifier_token1] = ACTIONS(2155), - [aux_sym_cmd_identifier_token2] = ACTIONS(2157), - [aux_sym_cmd_identifier_token3] = ACTIONS(2157), - [aux_sym_cmd_identifier_token4] = ACTIONS(2157), - [aux_sym_cmd_identifier_token5] = ACTIONS(2157), - [aux_sym_cmd_identifier_token6] = ACTIONS(2157), - [aux_sym_cmd_identifier_token7] = ACTIONS(2157), - [aux_sym_cmd_identifier_token8] = ACTIONS(2155), - [aux_sym_cmd_identifier_token9] = ACTIONS(2155), - [aux_sym_cmd_identifier_token10] = ACTIONS(2157), - [aux_sym_cmd_identifier_token11] = ACTIONS(2157), - [aux_sym_cmd_identifier_token12] = ACTIONS(2155), - [aux_sym_cmd_identifier_token13] = ACTIONS(2155), - [aux_sym_cmd_identifier_token14] = ACTIONS(2155), - [aux_sym_cmd_identifier_token15] = ACTIONS(2155), - [aux_sym_cmd_identifier_token16] = ACTIONS(2157), - [aux_sym_cmd_identifier_token17] = ACTIONS(2157), - [aux_sym_cmd_identifier_token18] = ACTIONS(2157), - [aux_sym_cmd_identifier_token19] = ACTIONS(2157), - [aux_sym_cmd_identifier_token20] = ACTIONS(2157), - [aux_sym_cmd_identifier_token21] = ACTIONS(2157), - [aux_sym_cmd_identifier_token22] = ACTIONS(2157), - [aux_sym_cmd_identifier_token23] = ACTIONS(2157), - [aux_sym_cmd_identifier_token24] = ACTIONS(2157), - [aux_sym_cmd_identifier_token25] = ACTIONS(2157), - [aux_sym_cmd_identifier_token26] = ACTIONS(2157), - [aux_sym_cmd_identifier_token27] = ACTIONS(2157), - [aux_sym_cmd_identifier_token28] = ACTIONS(2157), - [aux_sym_cmd_identifier_token29] = ACTIONS(2157), - [aux_sym_cmd_identifier_token30] = ACTIONS(2157), - [aux_sym_cmd_identifier_token31] = ACTIONS(2157), - [aux_sym_cmd_identifier_token32] = ACTIONS(2157), - [aux_sym_cmd_identifier_token33] = ACTIONS(2157), - [aux_sym_cmd_identifier_token34] = ACTIONS(2155), - [aux_sym_cmd_identifier_token35] = ACTIONS(2157), - [aux_sym_cmd_identifier_token36] = ACTIONS(2157), - [aux_sym_cmd_identifier_token37] = ACTIONS(2157), - [aux_sym_cmd_identifier_token38] = ACTIONS(2155), - [aux_sym_cmd_identifier_token39] = ACTIONS(2157), - [aux_sym_cmd_identifier_token40] = ACTIONS(2157), - [anon_sym_def] = ACTIONS(2155), - [anon_sym_export_DASHenv] = ACTIONS(2155), - [anon_sym_extern] = ACTIONS(2155), - [anon_sym_module] = ACTIONS(2155), - [anon_sym_use] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2157), - [anon_sym_error] = ACTIONS(2155), - [anon_sym_DASH2] = ACTIONS(2155), - [anon_sym_break] = ACTIONS(2155), - [anon_sym_continue] = ACTIONS(2155), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_in2] = ACTIONS(2155), - [anon_sym_loop] = ACTIONS(2155), - [anon_sym_make] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(2155), - [anon_sym_do] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2155), - [anon_sym_else] = ACTIONS(2155), - [anon_sym_match] = ACTIONS(2155), - [anon_sym_RBRACE] = ACTIONS(2157), - [anon_sym_try] = ACTIONS(2155), - [anon_sym_catch] = ACTIONS(2155), - [anon_sym_return] = ACTIONS(2155), - [anon_sym_source] = ACTIONS(2155), - [anon_sym_source_DASHenv] = ACTIONS(2155), - [anon_sym_register] = ACTIONS(2155), - [anon_sym_hide] = ACTIONS(2155), - [anon_sym_hide_DASHenv] = ACTIONS(2155), - [anon_sym_overlay] = ACTIONS(2155), - [anon_sym_as] = ACTIONS(2155), - [anon_sym_LPAREN2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(2155), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2157), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2157), - [aux_sym__val_number_decimal_token1] = ACTIONS(2155), - [aux_sym__val_number_decimal_token2] = ACTIONS(2157), - [aux_sym__val_number_decimal_token3] = ACTIONS(2157), - [aux_sym__val_number_decimal_token4] = ACTIONS(2157), - [aux_sym__val_number_token1] = ACTIONS(2157), - [aux_sym__val_number_token2] = ACTIONS(2157), - [aux_sym__val_number_token3] = ACTIONS(2157), - [aux_sym__val_number_token4] = ACTIONS(2155), - [aux_sym__val_number_token5] = ACTIONS(2155), - [aux_sym__val_number_token6] = ACTIONS(2155), - [anon_sym_DQUOTE] = ACTIONS(2157), - [sym__str_single_quotes] = ACTIONS(2157), - [sym__str_back_ticks] = ACTIONS(2157), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2157), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2157), - }, - [596] = { - [sym__expr_parenthesized_immediate] = STATE(7703), - [sym_comment] = STATE(596), - [anon_sym_export] = ACTIONS(2270), - [anon_sym_alias] = ACTIONS(2270), - [anon_sym_let] = ACTIONS(2270), - [anon_sym_let_DASHenv] = ACTIONS(2270), - [anon_sym_mut] = ACTIONS(2270), - [anon_sym_const] = ACTIONS(2270), - [aux_sym_cmd_identifier_token1] = ACTIONS(2270), - [aux_sym_cmd_identifier_token2] = ACTIONS(2272), - [aux_sym_cmd_identifier_token3] = ACTIONS(2272), - [aux_sym_cmd_identifier_token4] = ACTIONS(2272), - [aux_sym_cmd_identifier_token5] = ACTIONS(2272), - [aux_sym_cmd_identifier_token6] = ACTIONS(2272), - [aux_sym_cmd_identifier_token7] = ACTIONS(2272), - [aux_sym_cmd_identifier_token8] = ACTIONS(2270), - [aux_sym_cmd_identifier_token9] = ACTIONS(2270), - [aux_sym_cmd_identifier_token10] = ACTIONS(2272), - [aux_sym_cmd_identifier_token11] = ACTIONS(2272), - [aux_sym_cmd_identifier_token12] = ACTIONS(2270), - [aux_sym_cmd_identifier_token13] = ACTIONS(2270), - [aux_sym_cmd_identifier_token14] = ACTIONS(2270), - [aux_sym_cmd_identifier_token15] = ACTIONS(2270), - [aux_sym_cmd_identifier_token16] = ACTIONS(2272), - [aux_sym_cmd_identifier_token17] = ACTIONS(2272), - [aux_sym_cmd_identifier_token18] = ACTIONS(2272), - [aux_sym_cmd_identifier_token19] = ACTIONS(2272), - [aux_sym_cmd_identifier_token20] = ACTIONS(2272), - [aux_sym_cmd_identifier_token21] = ACTIONS(2272), - [aux_sym_cmd_identifier_token22] = ACTIONS(2272), - [aux_sym_cmd_identifier_token23] = ACTIONS(2272), - [aux_sym_cmd_identifier_token24] = ACTIONS(2272), - [aux_sym_cmd_identifier_token25] = ACTIONS(2272), - [aux_sym_cmd_identifier_token26] = ACTIONS(2272), - [aux_sym_cmd_identifier_token27] = ACTIONS(2272), - [aux_sym_cmd_identifier_token28] = ACTIONS(2272), - [aux_sym_cmd_identifier_token29] = ACTIONS(2272), - [aux_sym_cmd_identifier_token30] = ACTIONS(2272), - [aux_sym_cmd_identifier_token31] = ACTIONS(2272), - [aux_sym_cmd_identifier_token32] = ACTIONS(2272), - [aux_sym_cmd_identifier_token33] = ACTIONS(2272), - [aux_sym_cmd_identifier_token34] = ACTIONS(2270), - [aux_sym_cmd_identifier_token35] = ACTIONS(2272), - [aux_sym_cmd_identifier_token36] = ACTIONS(2272), - [aux_sym_cmd_identifier_token37] = ACTIONS(2272), - [aux_sym_cmd_identifier_token38] = ACTIONS(2270), - [aux_sym_cmd_identifier_token39] = ACTIONS(2272), - [aux_sym_cmd_identifier_token40] = ACTIONS(2272), - [anon_sym_def] = ACTIONS(2270), - [anon_sym_export_DASHenv] = ACTIONS(2270), - [anon_sym_extern] = ACTIONS(2270), - [anon_sym_module] = ACTIONS(2270), - [anon_sym_use] = ACTIONS(2270), - [anon_sym_LPAREN] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_error] = ACTIONS(2270), - [anon_sym_DASH2] = ACTIONS(2270), - [anon_sym_break] = ACTIONS(2270), - [anon_sym_continue] = ACTIONS(2270), - [anon_sym_for] = ACTIONS(2270), - [anon_sym_in2] = ACTIONS(2270), - [anon_sym_loop] = ACTIONS(2270), - [anon_sym_make] = ACTIONS(2270), - [anon_sym_while] = ACTIONS(2270), - [anon_sym_do] = ACTIONS(2270), - [anon_sym_if] = ACTIONS(2270), - [anon_sym_else] = ACTIONS(2270), - [anon_sym_match] = ACTIONS(2270), - [anon_sym_RBRACE] = ACTIONS(2272), - [anon_sym_try] = ACTIONS(2270), - [anon_sym_catch] = ACTIONS(2270), - [anon_sym_return] = ACTIONS(2270), - [anon_sym_source] = ACTIONS(2270), - [anon_sym_source_DASHenv] = ACTIONS(2270), - [anon_sym_register] = ACTIONS(2270), - [anon_sym_hide] = ACTIONS(2270), - [anon_sym_hide_DASHenv] = ACTIONS(2270), - [anon_sym_overlay] = ACTIONS(2270), - [anon_sym_as] = ACTIONS(2270), - [anon_sym_LPAREN2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(2270), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2272), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2272), - [aux_sym__val_number_decimal_token1] = ACTIONS(2270), - [aux_sym__val_number_decimal_token2] = ACTIONS(2272), - [aux_sym__val_number_decimal_token3] = ACTIONS(2272), - [aux_sym__val_number_decimal_token4] = ACTIONS(2272), - [aux_sym__val_number_token1] = ACTIONS(2272), - [aux_sym__val_number_token2] = ACTIONS(2272), - [aux_sym__val_number_token3] = ACTIONS(2272), - [aux_sym__val_number_token4] = ACTIONS(2270), - [aux_sym__val_number_token5] = ACTIONS(2270), - [aux_sym__val_number_token6] = ACTIONS(2270), - [anon_sym_DQUOTE] = ACTIONS(2272), - [sym__str_single_quotes] = ACTIONS(2272), - [sym__str_back_ticks] = ACTIONS(2272), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2272), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2272), - }, - [597] = { - [sym__expr_parenthesized_immediate] = STATE(7703), - [sym_comment] = STATE(597), - [anon_sym_export] = ACTIONS(2274), - [anon_sym_alias] = ACTIONS(2274), - [anon_sym_let] = ACTIONS(2274), - [anon_sym_let_DASHenv] = ACTIONS(2274), - [anon_sym_mut] = ACTIONS(2274), - [anon_sym_const] = ACTIONS(2274), - [aux_sym_cmd_identifier_token1] = ACTIONS(2274), - [aux_sym_cmd_identifier_token2] = ACTIONS(2276), - [aux_sym_cmd_identifier_token3] = ACTIONS(2276), - [aux_sym_cmd_identifier_token4] = ACTIONS(2276), - [aux_sym_cmd_identifier_token5] = ACTIONS(2276), - [aux_sym_cmd_identifier_token6] = ACTIONS(2276), - [aux_sym_cmd_identifier_token7] = ACTIONS(2276), - [aux_sym_cmd_identifier_token8] = ACTIONS(2274), - [aux_sym_cmd_identifier_token9] = ACTIONS(2274), - [aux_sym_cmd_identifier_token10] = ACTIONS(2276), - [aux_sym_cmd_identifier_token11] = ACTIONS(2276), - [aux_sym_cmd_identifier_token12] = ACTIONS(2274), - [aux_sym_cmd_identifier_token13] = ACTIONS(2274), - [aux_sym_cmd_identifier_token14] = ACTIONS(2274), - [aux_sym_cmd_identifier_token15] = ACTIONS(2274), - [aux_sym_cmd_identifier_token16] = ACTIONS(2276), - [aux_sym_cmd_identifier_token17] = ACTIONS(2276), - [aux_sym_cmd_identifier_token18] = ACTIONS(2276), - [aux_sym_cmd_identifier_token19] = ACTIONS(2276), - [aux_sym_cmd_identifier_token20] = ACTIONS(2276), - [aux_sym_cmd_identifier_token21] = ACTIONS(2276), - [aux_sym_cmd_identifier_token22] = ACTIONS(2276), - [aux_sym_cmd_identifier_token23] = ACTIONS(2276), - [aux_sym_cmd_identifier_token24] = ACTIONS(2276), - [aux_sym_cmd_identifier_token25] = ACTIONS(2276), - [aux_sym_cmd_identifier_token26] = ACTIONS(2276), - [aux_sym_cmd_identifier_token27] = ACTIONS(2276), - [aux_sym_cmd_identifier_token28] = ACTIONS(2276), - [aux_sym_cmd_identifier_token29] = ACTIONS(2276), - [aux_sym_cmd_identifier_token30] = ACTIONS(2276), - [aux_sym_cmd_identifier_token31] = ACTIONS(2276), - [aux_sym_cmd_identifier_token32] = ACTIONS(2276), - [aux_sym_cmd_identifier_token33] = ACTIONS(2276), - [aux_sym_cmd_identifier_token34] = ACTIONS(2274), - [aux_sym_cmd_identifier_token35] = ACTIONS(2276), - [aux_sym_cmd_identifier_token36] = ACTIONS(2276), - [aux_sym_cmd_identifier_token37] = ACTIONS(2276), - [aux_sym_cmd_identifier_token38] = ACTIONS(2274), - [aux_sym_cmd_identifier_token39] = ACTIONS(2276), - [aux_sym_cmd_identifier_token40] = ACTIONS(2276), - [anon_sym_def] = ACTIONS(2274), - [anon_sym_export_DASHenv] = ACTIONS(2274), - [anon_sym_extern] = ACTIONS(2274), - [anon_sym_module] = ACTIONS(2274), - [anon_sym_use] = ACTIONS(2274), - [anon_sym_LPAREN] = ACTIONS(2274), - [anon_sym_DOLLAR] = ACTIONS(2276), - [anon_sym_error] = ACTIONS(2274), - [anon_sym_DASH2] = ACTIONS(2274), - [anon_sym_break] = ACTIONS(2274), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_for] = ACTIONS(2274), - [anon_sym_in2] = ACTIONS(2274), - [anon_sym_loop] = ACTIONS(2274), - [anon_sym_make] = ACTIONS(2274), - [anon_sym_while] = ACTIONS(2274), - [anon_sym_do] = ACTIONS(2274), - [anon_sym_if] = ACTIONS(2274), - [anon_sym_else] = ACTIONS(2274), - [anon_sym_match] = ACTIONS(2274), - [anon_sym_RBRACE] = ACTIONS(2276), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_catch] = ACTIONS(2274), - [anon_sym_return] = ACTIONS(2274), - [anon_sym_source] = ACTIONS(2274), - [anon_sym_source_DASHenv] = ACTIONS(2274), - [anon_sym_register] = ACTIONS(2274), - [anon_sym_hide] = ACTIONS(2274), - [anon_sym_hide_DASHenv] = ACTIONS(2274), - [anon_sym_overlay] = ACTIONS(2274), - [anon_sym_as] = ACTIONS(2274), - [anon_sym_LPAREN2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(2274), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2276), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2276), - [aux_sym__val_number_decimal_token1] = ACTIONS(2274), - [aux_sym__val_number_decimal_token2] = ACTIONS(2276), - [aux_sym__val_number_decimal_token3] = ACTIONS(2276), - [aux_sym__val_number_decimal_token4] = ACTIONS(2276), - [aux_sym__val_number_token1] = ACTIONS(2276), - [aux_sym__val_number_token2] = ACTIONS(2276), - [aux_sym__val_number_token3] = ACTIONS(2276), - [aux_sym__val_number_token4] = ACTIONS(2274), - [aux_sym__val_number_token5] = ACTIONS(2274), - [aux_sym__val_number_token6] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2276), - [sym__str_single_quotes] = ACTIONS(2276), - [sym__str_back_ticks] = ACTIONS(2276), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2276), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2276), - }, - [598] = { - [sym__expr_parenthesized_immediate] = STATE(7703), - [sym_comment] = STATE(598), - [anon_sym_export] = ACTIONS(2278), - [anon_sym_alias] = ACTIONS(2278), - [anon_sym_let] = ACTIONS(2278), - [anon_sym_let_DASHenv] = ACTIONS(2278), - [anon_sym_mut] = ACTIONS(2278), - [anon_sym_const] = ACTIONS(2278), - [aux_sym_cmd_identifier_token1] = ACTIONS(2278), - [aux_sym_cmd_identifier_token2] = ACTIONS(2280), - [aux_sym_cmd_identifier_token3] = ACTIONS(2280), - [aux_sym_cmd_identifier_token4] = ACTIONS(2280), - [aux_sym_cmd_identifier_token5] = ACTIONS(2280), - [aux_sym_cmd_identifier_token6] = ACTIONS(2280), - [aux_sym_cmd_identifier_token7] = ACTIONS(2280), - [aux_sym_cmd_identifier_token8] = ACTIONS(2278), - [aux_sym_cmd_identifier_token9] = ACTIONS(2278), - [aux_sym_cmd_identifier_token10] = ACTIONS(2280), - [aux_sym_cmd_identifier_token11] = ACTIONS(2280), - [aux_sym_cmd_identifier_token12] = ACTIONS(2278), - [aux_sym_cmd_identifier_token13] = ACTIONS(2278), - [aux_sym_cmd_identifier_token14] = ACTIONS(2278), - [aux_sym_cmd_identifier_token15] = ACTIONS(2278), - [aux_sym_cmd_identifier_token16] = ACTIONS(2280), - [aux_sym_cmd_identifier_token17] = ACTIONS(2280), - [aux_sym_cmd_identifier_token18] = ACTIONS(2280), - [aux_sym_cmd_identifier_token19] = ACTIONS(2280), - [aux_sym_cmd_identifier_token20] = ACTIONS(2280), - [aux_sym_cmd_identifier_token21] = ACTIONS(2280), - [aux_sym_cmd_identifier_token22] = ACTIONS(2280), - [aux_sym_cmd_identifier_token23] = ACTIONS(2280), - [aux_sym_cmd_identifier_token24] = ACTIONS(2280), - [aux_sym_cmd_identifier_token25] = ACTIONS(2280), - [aux_sym_cmd_identifier_token26] = ACTIONS(2280), - [aux_sym_cmd_identifier_token27] = ACTIONS(2280), - [aux_sym_cmd_identifier_token28] = ACTIONS(2280), - [aux_sym_cmd_identifier_token29] = ACTIONS(2280), - [aux_sym_cmd_identifier_token30] = ACTIONS(2280), - [aux_sym_cmd_identifier_token31] = ACTIONS(2280), - [aux_sym_cmd_identifier_token32] = ACTIONS(2280), - [aux_sym_cmd_identifier_token33] = ACTIONS(2280), - [aux_sym_cmd_identifier_token34] = ACTIONS(2278), - [aux_sym_cmd_identifier_token35] = ACTIONS(2280), - [aux_sym_cmd_identifier_token36] = ACTIONS(2280), - [aux_sym_cmd_identifier_token37] = ACTIONS(2280), - [aux_sym_cmd_identifier_token38] = ACTIONS(2278), - [aux_sym_cmd_identifier_token39] = ACTIONS(2280), - [aux_sym_cmd_identifier_token40] = ACTIONS(2280), - [anon_sym_def] = ACTIONS(2278), - [anon_sym_export_DASHenv] = ACTIONS(2278), - [anon_sym_extern] = ACTIONS(2278), - [anon_sym_module] = ACTIONS(2278), - [anon_sym_use] = ACTIONS(2278), - [anon_sym_LPAREN] = ACTIONS(2278), - [anon_sym_DOLLAR] = ACTIONS(2280), - [anon_sym_error] = ACTIONS(2278), - [anon_sym_DASH2] = ACTIONS(2278), - [anon_sym_break] = ACTIONS(2278), - [anon_sym_continue] = ACTIONS(2278), - [anon_sym_for] = ACTIONS(2278), - [anon_sym_in2] = ACTIONS(2278), - [anon_sym_loop] = ACTIONS(2278), - [anon_sym_make] = ACTIONS(2278), - [anon_sym_while] = ACTIONS(2278), - [anon_sym_do] = ACTIONS(2278), - [anon_sym_if] = ACTIONS(2278), - [anon_sym_else] = ACTIONS(2278), - [anon_sym_match] = ACTIONS(2278), - [anon_sym_RBRACE] = ACTIONS(2280), - [anon_sym_try] = ACTIONS(2278), - [anon_sym_catch] = ACTIONS(2278), - [anon_sym_return] = ACTIONS(2278), - [anon_sym_source] = ACTIONS(2278), - [anon_sym_source_DASHenv] = ACTIONS(2278), - [anon_sym_register] = ACTIONS(2278), - [anon_sym_hide] = ACTIONS(2278), - [anon_sym_hide_DASHenv] = ACTIONS(2278), - [anon_sym_overlay] = ACTIONS(2278), - [anon_sym_as] = ACTIONS(2278), - [anon_sym_LPAREN2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(2278), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2280), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2280), - [aux_sym__val_number_decimal_token1] = ACTIONS(2278), - [aux_sym__val_number_decimal_token2] = ACTIONS(2280), - [aux_sym__val_number_decimal_token3] = ACTIONS(2280), - [aux_sym__val_number_decimal_token4] = ACTIONS(2280), - [aux_sym__val_number_token1] = ACTIONS(2280), - [aux_sym__val_number_token2] = ACTIONS(2280), - [aux_sym__val_number_token3] = ACTIONS(2280), - [aux_sym__val_number_token4] = ACTIONS(2278), - [aux_sym__val_number_token5] = ACTIONS(2278), - [aux_sym__val_number_token6] = ACTIONS(2278), - [anon_sym_DQUOTE] = ACTIONS(2280), - [sym__str_single_quotes] = ACTIONS(2280), - [sym__str_back_ticks] = ACTIONS(2280), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2280), - }, - [599] = { - [sym__expr_parenthesized_immediate] = STATE(7703), - [sym_comment] = STATE(599), - [anon_sym_export] = ACTIONS(2282), - [anon_sym_alias] = ACTIONS(2282), - [anon_sym_let] = ACTIONS(2282), - [anon_sym_let_DASHenv] = ACTIONS(2282), - [anon_sym_mut] = ACTIONS(2282), - [anon_sym_const] = ACTIONS(2282), - [aux_sym_cmd_identifier_token1] = ACTIONS(2282), - [aux_sym_cmd_identifier_token2] = ACTIONS(2284), - [aux_sym_cmd_identifier_token3] = ACTIONS(2284), - [aux_sym_cmd_identifier_token4] = ACTIONS(2284), - [aux_sym_cmd_identifier_token5] = ACTIONS(2284), - [aux_sym_cmd_identifier_token6] = ACTIONS(2284), - [aux_sym_cmd_identifier_token7] = ACTIONS(2284), - [aux_sym_cmd_identifier_token8] = ACTIONS(2282), - [aux_sym_cmd_identifier_token9] = ACTIONS(2282), - [aux_sym_cmd_identifier_token10] = ACTIONS(2284), - [aux_sym_cmd_identifier_token11] = ACTIONS(2284), - [aux_sym_cmd_identifier_token12] = ACTIONS(2282), - [aux_sym_cmd_identifier_token13] = ACTIONS(2282), - [aux_sym_cmd_identifier_token14] = ACTIONS(2282), - [aux_sym_cmd_identifier_token15] = ACTIONS(2282), - [aux_sym_cmd_identifier_token16] = ACTIONS(2284), - [aux_sym_cmd_identifier_token17] = ACTIONS(2284), - [aux_sym_cmd_identifier_token18] = ACTIONS(2284), - [aux_sym_cmd_identifier_token19] = ACTIONS(2284), - [aux_sym_cmd_identifier_token20] = ACTIONS(2284), - [aux_sym_cmd_identifier_token21] = ACTIONS(2284), - [aux_sym_cmd_identifier_token22] = ACTIONS(2284), - [aux_sym_cmd_identifier_token23] = ACTIONS(2284), - [aux_sym_cmd_identifier_token24] = ACTIONS(2284), - [aux_sym_cmd_identifier_token25] = ACTIONS(2284), - [aux_sym_cmd_identifier_token26] = ACTIONS(2284), - [aux_sym_cmd_identifier_token27] = ACTIONS(2284), - [aux_sym_cmd_identifier_token28] = ACTIONS(2284), - [aux_sym_cmd_identifier_token29] = ACTIONS(2284), - [aux_sym_cmd_identifier_token30] = ACTIONS(2284), - [aux_sym_cmd_identifier_token31] = ACTIONS(2284), - [aux_sym_cmd_identifier_token32] = ACTIONS(2284), - [aux_sym_cmd_identifier_token33] = ACTIONS(2284), - [aux_sym_cmd_identifier_token34] = ACTIONS(2282), - [aux_sym_cmd_identifier_token35] = ACTIONS(2284), - [aux_sym_cmd_identifier_token36] = ACTIONS(2284), - [aux_sym_cmd_identifier_token37] = ACTIONS(2284), - [aux_sym_cmd_identifier_token38] = ACTIONS(2282), - [aux_sym_cmd_identifier_token39] = ACTIONS(2284), - [aux_sym_cmd_identifier_token40] = ACTIONS(2284), - [anon_sym_def] = ACTIONS(2282), - [anon_sym_export_DASHenv] = ACTIONS(2282), - [anon_sym_extern] = ACTIONS(2282), - [anon_sym_module] = ACTIONS(2282), - [anon_sym_use] = ACTIONS(2282), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_DOLLAR] = ACTIONS(2284), - [anon_sym_error] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2282), - [anon_sym_break] = ACTIONS(2282), - [anon_sym_continue] = ACTIONS(2282), - [anon_sym_for] = ACTIONS(2282), - [anon_sym_in2] = ACTIONS(2282), - [anon_sym_loop] = ACTIONS(2282), - [anon_sym_make] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2282), - [anon_sym_do] = ACTIONS(2282), - [anon_sym_if] = ACTIONS(2282), - [anon_sym_else] = ACTIONS(2282), - [anon_sym_match] = ACTIONS(2282), - [anon_sym_RBRACE] = ACTIONS(2284), - [anon_sym_try] = ACTIONS(2282), - [anon_sym_catch] = ACTIONS(2282), - [anon_sym_return] = ACTIONS(2282), - [anon_sym_source] = ACTIONS(2282), - [anon_sym_source_DASHenv] = ACTIONS(2282), - [anon_sym_register] = ACTIONS(2282), - [anon_sym_hide] = ACTIONS(2282), - [anon_sym_hide_DASHenv] = ACTIONS(2282), - [anon_sym_overlay] = ACTIONS(2282), - [anon_sym_as] = ACTIONS(2282), - [anon_sym_LPAREN2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2284), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2284), - [aux_sym__val_number_decimal_token1] = ACTIONS(2282), - [aux_sym__val_number_decimal_token2] = ACTIONS(2284), - [aux_sym__val_number_decimal_token3] = ACTIONS(2284), - [aux_sym__val_number_decimal_token4] = ACTIONS(2284), - [aux_sym__val_number_token1] = ACTIONS(2284), - [aux_sym__val_number_token2] = ACTIONS(2284), - [aux_sym__val_number_token3] = ACTIONS(2284), - [aux_sym__val_number_token4] = ACTIONS(2282), - [aux_sym__val_number_token5] = ACTIONS(2282), - [aux_sym__val_number_token6] = ACTIONS(2282), - [anon_sym_DQUOTE] = ACTIONS(2284), - [sym__str_single_quotes] = ACTIONS(2284), - [sym__str_back_ticks] = ACTIONS(2284), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2284), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2284), - }, - [600] = { - [sym_comment] = STATE(600), - [anon_sym_export] = ACTIONS(1709), - [anon_sym_alias] = ACTIONS(1709), - [anon_sym_let] = ACTIONS(1709), - [anon_sym_let_DASHenv] = ACTIONS(1709), - [anon_sym_mut] = ACTIONS(1709), - [anon_sym_const] = ACTIONS(1709), - [aux_sym_cmd_identifier_token1] = ACTIONS(1709), - [aux_sym_cmd_identifier_token2] = ACTIONS(1709), - [aux_sym_cmd_identifier_token3] = ACTIONS(1709), - [aux_sym_cmd_identifier_token4] = ACTIONS(1709), - [aux_sym_cmd_identifier_token5] = ACTIONS(1709), - [aux_sym_cmd_identifier_token6] = ACTIONS(1709), - [aux_sym_cmd_identifier_token7] = ACTIONS(1709), - [aux_sym_cmd_identifier_token8] = ACTIONS(1709), - [aux_sym_cmd_identifier_token9] = ACTIONS(1709), - [aux_sym_cmd_identifier_token10] = ACTIONS(1709), - [aux_sym_cmd_identifier_token11] = ACTIONS(1709), - [aux_sym_cmd_identifier_token12] = ACTIONS(1709), - [aux_sym_cmd_identifier_token13] = ACTIONS(1709), - [aux_sym_cmd_identifier_token14] = ACTIONS(1709), - [aux_sym_cmd_identifier_token15] = ACTIONS(1709), - [aux_sym_cmd_identifier_token16] = ACTIONS(1709), - [aux_sym_cmd_identifier_token17] = ACTIONS(1709), - [aux_sym_cmd_identifier_token18] = ACTIONS(1709), - [aux_sym_cmd_identifier_token19] = ACTIONS(1709), - [aux_sym_cmd_identifier_token20] = ACTIONS(1709), - [aux_sym_cmd_identifier_token21] = ACTIONS(1709), - [aux_sym_cmd_identifier_token22] = ACTIONS(1709), - [aux_sym_cmd_identifier_token23] = ACTIONS(1709), - [aux_sym_cmd_identifier_token24] = ACTIONS(1709), - [aux_sym_cmd_identifier_token25] = ACTIONS(1709), - [aux_sym_cmd_identifier_token26] = ACTIONS(1709), - [aux_sym_cmd_identifier_token27] = ACTIONS(1709), - [aux_sym_cmd_identifier_token28] = ACTIONS(1709), - [aux_sym_cmd_identifier_token29] = ACTIONS(1709), - [aux_sym_cmd_identifier_token30] = ACTIONS(1709), - [aux_sym_cmd_identifier_token31] = ACTIONS(1709), - [aux_sym_cmd_identifier_token32] = ACTIONS(1709), - [aux_sym_cmd_identifier_token33] = ACTIONS(1709), - [aux_sym_cmd_identifier_token34] = ACTIONS(1709), - [aux_sym_cmd_identifier_token35] = ACTIONS(1709), - [aux_sym_cmd_identifier_token36] = ACTIONS(1709), - [aux_sym_cmd_identifier_token37] = ACTIONS(1709), - [aux_sym_cmd_identifier_token38] = ACTIONS(1709), - [aux_sym_cmd_identifier_token39] = ACTIONS(1709), - [aux_sym_cmd_identifier_token40] = ACTIONS(1709), - [anon_sym_def] = ACTIONS(1709), - [anon_sym_export_DASHenv] = ACTIONS(1709), - [anon_sym_extern] = ACTIONS(1709), - [anon_sym_module] = ACTIONS(1709), - [anon_sym_use] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_error] = ACTIONS(1709), - [anon_sym_DASH2] = ACTIONS(1709), - [anon_sym_break] = ACTIONS(1709), - [anon_sym_continue] = ACTIONS(1709), - [anon_sym_for] = ACTIONS(1709), - [anon_sym_in2] = ACTIONS(1709), - [anon_sym_loop] = ACTIONS(1709), - [anon_sym_make] = ACTIONS(1709), - [anon_sym_while] = ACTIONS(1709), - [anon_sym_do] = ACTIONS(1709), - [anon_sym_if] = ACTIONS(1709), - [anon_sym_else] = ACTIONS(1709), - [anon_sym_match] = ACTIONS(1709), - [anon_sym_RBRACE] = ACTIONS(1709), - [anon_sym_try] = ACTIONS(1709), - [anon_sym_catch] = ACTIONS(1709), - [anon_sym_return] = ACTIONS(1709), - [anon_sym_source] = ACTIONS(1709), - [anon_sym_source_DASHenv] = ACTIONS(1709), - [anon_sym_register] = ACTIONS(1709), - [anon_sym_hide] = ACTIONS(1709), - [anon_sym_hide_DASHenv] = ACTIONS(1709), - [anon_sym_overlay] = ACTIONS(1709), - [anon_sym_as] = ACTIONS(1709), - [anon_sym_PLUS2] = ACTIONS(1709), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1709), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1709), - [aux_sym__val_number_decimal_token1] = ACTIONS(1709), - [aux_sym__val_number_decimal_token2] = ACTIONS(1709), - [aux_sym__val_number_decimal_token3] = ACTIONS(1709), - [aux_sym__val_number_decimal_token4] = ACTIONS(1709), - [aux_sym__val_number_token1] = ACTIONS(1709), - [aux_sym__val_number_token2] = ACTIONS(1709), - [aux_sym__val_number_token3] = ACTIONS(1709), - [aux_sym__val_number_token4] = ACTIONS(1709), - [aux_sym__val_number_token5] = ACTIONS(1709), - [aux_sym__val_number_token6] = ACTIONS(1709), - [anon_sym_DQUOTE] = ACTIONS(1709), - [sym__str_single_quotes] = ACTIONS(1709), - [sym__str_back_ticks] = ACTIONS(1709), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1709), - [sym__entry_separator] = ACTIONS(1721), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1723), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1721), - }, - [601] = { - [sym_comment] = STATE(601), - [anon_sym_export] = ACTIONS(2327), - [anon_sym_alias] = ACTIONS(2327), - [anon_sym_let] = ACTIONS(2327), - [anon_sym_let_DASHenv] = ACTIONS(2327), - [anon_sym_mut] = ACTIONS(2327), - [anon_sym_const] = ACTIONS(2327), - [aux_sym_cmd_identifier_token1] = ACTIONS(2327), - [aux_sym_cmd_identifier_token2] = ACTIONS(2327), - [aux_sym_cmd_identifier_token3] = ACTIONS(2327), - [aux_sym_cmd_identifier_token4] = ACTIONS(2327), - [aux_sym_cmd_identifier_token5] = ACTIONS(2327), - [aux_sym_cmd_identifier_token6] = ACTIONS(2327), - [aux_sym_cmd_identifier_token7] = ACTIONS(2327), - [aux_sym_cmd_identifier_token8] = ACTIONS(2327), - [aux_sym_cmd_identifier_token9] = ACTIONS(2327), - [aux_sym_cmd_identifier_token10] = ACTIONS(2327), - [aux_sym_cmd_identifier_token11] = ACTIONS(2327), - [aux_sym_cmd_identifier_token12] = ACTIONS(2327), - [aux_sym_cmd_identifier_token13] = ACTIONS(2327), - [aux_sym_cmd_identifier_token14] = ACTIONS(2327), - [aux_sym_cmd_identifier_token15] = ACTIONS(2327), - [aux_sym_cmd_identifier_token16] = ACTIONS(2327), - [aux_sym_cmd_identifier_token17] = ACTIONS(2327), - [aux_sym_cmd_identifier_token18] = ACTIONS(2327), - [aux_sym_cmd_identifier_token19] = ACTIONS(2327), - [aux_sym_cmd_identifier_token20] = ACTIONS(2327), - [aux_sym_cmd_identifier_token21] = ACTIONS(2327), - [aux_sym_cmd_identifier_token22] = ACTIONS(2327), - [aux_sym_cmd_identifier_token23] = ACTIONS(2327), - [aux_sym_cmd_identifier_token24] = ACTIONS(2327), - [aux_sym_cmd_identifier_token25] = ACTIONS(2327), - [aux_sym_cmd_identifier_token26] = ACTIONS(2327), - [aux_sym_cmd_identifier_token27] = ACTIONS(2327), - [aux_sym_cmd_identifier_token28] = ACTIONS(2327), - [aux_sym_cmd_identifier_token29] = ACTIONS(2327), - [aux_sym_cmd_identifier_token30] = ACTIONS(2327), - [aux_sym_cmd_identifier_token31] = ACTIONS(2327), - [aux_sym_cmd_identifier_token32] = ACTIONS(2327), - [aux_sym_cmd_identifier_token33] = ACTIONS(2327), - [aux_sym_cmd_identifier_token34] = ACTIONS(2327), - [aux_sym_cmd_identifier_token35] = ACTIONS(2327), - [aux_sym_cmd_identifier_token36] = ACTIONS(2327), - [aux_sym_cmd_identifier_token37] = ACTIONS(2327), - [aux_sym_cmd_identifier_token38] = ACTIONS(2327), - [aux_sym_cmd_identifier_token39] = ACTIONS(2327), - [aux_sym_cmd_identifier_token40] = ACTIONS(2327), - [anon_sym_def] = ACTIONS(2327), - [anon_sym_export_DASHenv] = ACTIONS(2327), - [anon_sym_extern] = ACTIONS(2327), - [anon_sym_module] = ACTIONS(2327), - [anon_sym_use] = ACTIONS(2327), - [anon_sym_LPAREN] = ACTIONS(2327), - [anon_sym_DOLLAR] = ACTIONS(2327), - [anon_sym_error] = ACTIONS(2327), - [anon_sym_DASH2] = ACTIONS(2327), - [anon_sym_break] = ACTIONS(2327), - [anon_sym_continue] = ACTIONS(2327), - [anon_sym_for] = ACTIONS(2327), - [anon_sym_in2] = ACTIONS(2327), - [anon_sym_loop] = ACTIONS(2327), - [anon_sym_make] = ACTIONS(2327), - [anon_sym_while] = ACTIONS(2327), - [anon_sym_do] = ACTIONS(2327), - [anon_sym_if] = ACTIONS(2327), - [anon_sym_else] = ACTIONS(2327), - [anon_sym_match] = ACTIONS(2327), - [anon_sym_RBRACE] = ACTIONS(2327), - [anon_sym_try] = ACTIONS(2327), - [anon_sym_catch] = ACTIONS(2327), - [anon_sym_return] = ACTIONS(2327), - [anon_sym_source] = ACTIONS(2327), - [anon_sym_source_DASHenv] = ACTIONS(2327), - [anon_sym_register] = ACTIONS(2327), - [anon_sym_hide] = ACTIONS(2327), - [anon_sym_hide_DASHenv] = ACTIONS(2327), - [anon_sym_overlay] = ACTIONS(2327), - [anon_sym_as] = ACTIONS(2327), - [anon_sym_LPAREN2] = ACTIONS(2329), - [anon_sym_PLUS2] = ACTIONS(2327), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2327), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2327), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2327), - [aux_sym__val_number_decimal_token3] = ACTIONS(2327), - [aux_sym__val_number_decimal_token4] = ACTIONS(2327), - [aux_sym__val_number_token1] = ACTIONS(2327), - [aux_sym__val_number_token2] = ACTIONS(2327), - [aux_sym__val_number_token3] = ACTIONS(2327), - [aux_sym__val_number_token4] = ACTIONS(2327), - [aux_sym__val_number_token5] = ACTIONS(2327), - [aux_sym__val_number_token6] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2327), - [sym__str_single_quotes] = ACTIONS(2327), - [sym__str_back_ticks] = ACTIONS(2327), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2327), - [sym__entry_separator] = ACTIONS(2329), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2329), - }, - [602] = { - [sym_comment] = STATE(602), - [anon_sym_export] = ACTIONS(1018), - [anon_sym_alias] = ACTIONS(1018), - [anon_sym_let] = ACTIONS(1018), - [anon_sym_let_DASHenv] = ACTIONS(1018), - [anon_sym_mut] = ACTIONS(1018), - [anon_sym_const] = ACTIONS(1018), - [aux_sym_cmd_identifier_token1] = ACTIONS(1018), - [aux_sym_cmd_identifier_token2] = ACTIONS(1020), - [aux_sym_cmd_identifier_token3] = ACTIONS(1020), - [aux_sym_cmd_identifier_token4] = ACTIONS(1020), - [aux_sym_cmd_identifier_token5] = ACTIONS(1020), - [aux_sym_cmd_identifier_token6] = ACTIONS(1020), - [aux_sym_cmd_identifier_token7] = ACTIONS(1020), - [aux_sym_cmd_identifier_token8] = ACTIONS(1018), - [aux_sym_cmd_identifier_token9] = ACTIONS(1018), - [aux_sym_cmd_identifier_token10] = ACTIONS(1020), - [aux_sym_cmd_identifier_token11] = ACTIONS(1020), - [aux_sym_cmd_identifier_token12] = ACTIONS(1018), - [aux_sym_cmd_identifier_token13] = ACTIONS(1018), - [aux_sym_cmd_identifier_token14] = ACTIONS(1018), - [aux_sym_cmd_identifier_token15] = ACTIONS(1018), - [aux_sym_cmd_identifier_token16] = ACTIONS(1020), - [aux_sym_cmd_identifier_token17] = ACTIONS(1020), - [aux_sym_cmd_identifier_token18] = ACTIONS(1020), - [aux_sym_cmd_identifier_token19] = ACTIONS(1020), - [aux_sym_cmd_identifier_token20] = ACTIONS(1020), - [aux_sym_cmd_identifier_token21] = ACTIONS(1020), - [aux_sym_cmd_identifier_token22] = ACTIONS(1020), - [aux_sym_cmd_identifier_token23] = ACTIONS(1020), - [aux_sym_cmd_identifier_token24] = ACTIONS(1020), - [aux_sym_cmd_identifier_token25] = ACTIONS(1020), - [aux_sym_cmd_identifier_token26] = ACTIONS(1020), - [aux_sym_cmd_identifier_token27] = ACTIONS(1020), - [aux_sym_cmd_identifier_token28] = ACTIONS(1020), - [aux_sym_cmd_identifier_token29] = ACTIONS(1020), - [aux_sym_cmd_identifier_token30] = ACTIONS(1020), - [aux_sym_cmd_identifier_token31] = ACTIONS(1020), - [aux_sym_cmd_identifier_token32] = ACTIONS(1020), - [aux_sym_cmd_identifier_token33] = ACTIONS(1020), - [aux_sym_cmd_identifier_token34] = ACTIONS(1018), - [aux_sym_cmd_identifier_token35] = ACTIONS(1020), - [aux_sym_cmd_identifier_token36] = ACTIONS(1020), - [aux_sym_cmd_identifier_token37] = ACTIONS(1020), - [aux_sym_cmd_identifier_token38] = ACTIONS(1018), - [aux_sym_cmd_identifier_token39] = ACTIONS(1020), - [aux_sym_cmd_identifier_token40] = ACTIONS(1020), - [anon_sym_def] = ACTIONS(1018), - [anon_sym_export_DASHenv] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(1018), - [anon_sym_module] = ACTIONS(1018), - [anon_sym_use] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_COMMA] = ACTIONS(1020), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_error] = ACTIONS(1018), - [anon_sym_DASH2] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1018), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_in2] = ACTIONS(1018), - [anon_sym_loop] = ACTIONS(1018), - [anon_sym_make] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1018), - [anon_sym_do] = ACTIONS(1018), - [anon_sym_if] = ACTIONS(1018), - [anon_sym_else] = ACTIONS(1018), - [anon_sym_match] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_try] = ACTIONS(1018), - [anon_sym_catch] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1018), - [anon_sym_source] = ACTIONS(1018), - [anon_sym_source_DASHenv] = ACTIONS(1018), - [anon_sym_register] = ACTIONS(1018), - [anon_sym_hide] = ACTIONS(1018), - [anon_sym_hide_DASHenv] = ACTIONS(1018), - [anon_sym_overlay] = ACTIONS(1018), - [anon_sym_as] = ACTIONS(1018), - [anon_sym_PLUS2] = ACTIONS(1018), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1020), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1020), - [aux_sym__val_number_decimal_token1] = ACTIONS(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1020), - [aux_sym__val_number_decimal_token3] = ACTIONS(1020), - [aux_sym__val_number_decimal_token4] = ACTIONS(1020), - [aux_sym__val_number_token1] = ACTIONS(1020), - [aux_sym__val_number_token2] = ACTIONS(1020), - [aux_sym__val_number_token3] = ACTIONS(1020), - [aux_sym__val_number_token4] = ACTIONS(1018), - [aux_sym__val_number_token5] = ACTIONS(1018), - [aux_sym__val_number_token6] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1020), - [sym__str_single_quotes] = ACTIONS(1020), - [sym__str_back_ticks] = ACTIONS(1020), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1020), - [aux_sym_record_entry_token1] = ACTIONS(1020), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1020), + [588] = { + [sym_comment] = STATE(588), + [anon_sym_export] = ACTIONS(1802), + [anon_sym_alias] = ACTIONS(1802), + [anon_sym_let] = ACTIONS(1802), + [anon_sym_let_DASHenv] = ACTIONS(1802), + [anon_sym_mut] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1802), + [aux_sym_cmd_identifier_token1] = ACTIONS(1802), + [aux_sym_cmd_identifier_token2] = ACTIONS(1810), + [aux_sym_cmd_identifier_token3] = ACTIONS(1810), + [aux_sym_cmd_identifier_token4] = ACTIONS(1810), + [aux_sym_cmd_identifier_token5] = ACTIONS(1810), + [aux_sym_cmd_identifier_token6] = ACTIONS(1810), + [aux_sym_cmd_identifier_token7] = ACTIONS(1810), + [aux_sym_cmd_identifier_token8] = ACTIONS(1802), + [aux_sym_cmd_identifier_token9] = ACTIONS(1802), + [aux_sym_cmd_identifier_token10] = ACTIONS(1810), + [aux_sym_cmd_identifier_token11] = ACTIONS(1810), + [aux_sym_cmd_identifier_token12] = ACTIONS(1802), + [aux_sym_cmd_identifier_token13] = ACTIONS(1802), + [aux_sym_cmd_identifier_token14] = ACTIONS(1802), + [aux_sym_cmd_identifier_token15] = ACTIONS(1802), + [aux_sym_cmd_identifier_token16] = ACTIONS(1810), + [aux_sym_cmd_identifier_token17] = ACTIONS(1810), + [aux_sym_cmd_identifier_token18] = ACTIONS(1810), + [aux_sym_cmd_identifier_token19] = ACTIONS(1810), + [aux_sym_cmd_identifier_token20] = ACTIONS(1810), + [aux_sym_cmd_identifier_token21] = ACTIONS(1810), + [aux_sym_cmd_identifier_token22] = ACTIONS(1810), + [aux_sym_cmd_identifier_token23] = ACTIONS(1810), + [aux_sym_cmd_identifier_token24] = ACTIONS(1810), + [aux_sym_cmd_identifier_token25] = ACTIONS(1810), + [aux_sym_cmd_identifier_token26] = ACTIONS(1810), + [aux_sym_cmd_identifier_token27] = ACTIONS(1810), + [aux_sym_cmd_identifier_token28] = ACTIONS(1810), + [aux_sym_cmd_identifier_token29] = ACTIONS(1810), + [aux_sym_cmd_identifier_token30] = ACTIONS(1810), + [aux_sym_cmd_identifier_token31] = ACTIONS(1810), + [aux_sym_cmd_identifier_token32] = ACTIONS(1810), + [aux_sym_cmd_identifier_token33] = ACTIONS(1810), + [aux_sym_cmd_identifier_token34] = ACTIONS(1802), + [aux_sym_cmd_identifier_token35] = ACTIONS(1810), + [aux_sym_cmd_identifier_token36] = ACTIONS(1810), + [aux_sym_cmd_identifier_token37] = ACTIONS(1810), + [aux_sym_cmd_identifier_token38] = ACTIONS(1802), + [aux_sym_cmd_identifier_token39] = ACTIONS(1810), + [aux_sym_cmd_identifier_token40] = ACTIONS(1810), + [anon_sym_def] = ACTIONS(1802), + [anon_sym_export_DASHenv] = ACTIONS(1802), + [anon_sym_extern] = ACTIONS(1802), + [anon_sym_module] = ACTIONS(1802), + [anon_sym_use] = ACTIONS(1802), + [anon_sym_LPAREN] = ACTIONS(1802), + [anon_sym_DOLLAR] = ACTIONS(1810), + [anon_sym_error] = ACTIONS(1802), + [anon_sym_DASH2] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_for] = ACTIONS(1802), + [anon_sym_in2] = ACTIONS(1802), + [anon_sym_loop] = ACTIONS(1802), + [anon_sym_make] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_do] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_match] = ACTIONS(1802), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_catch] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_source] = ACTIONS(1802), + [anon_sym_source_DASHenv] = ACTIONS(1802), + [anon_sym_register] = ACTIONS(1802), + [anon_sym_hide] = ACTIONS(1802), + [anon_sym_hide_DASHenv] = ACTIONS(1802), + [anon_sym_overlay] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1802), + [anon_sym_LPAREN2] = ACTIONS(1804), + [anon_sym_PLUS2] = ACTIONS(1802), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1810), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1810), + [aux_sym__val_number_decimal_token1] = ACTIONS(1802), + [aux_sym__val_number_decimal_token2] = ACTIONS(1810), + [aux_sym__val_number_decimal_token3] = ACTIONS(1810), + [aux_sym__val_number_decimal_token4] = ACTIONS(1810), + [aux_sym__val_number_token1] = ACTIONS(1810), + [aux_sym__val_number_token2] = ACTIONS(1810), + [aux_sym__val_number_token3] = ACTIONS(1810), + [aux_sym__val_number_token4] = ACTIONS(1802), + [aux_sym__val_number_token5] = ACTIONS(1802), + [aux_sym__val_number_token6] = ACTIONS(1802), + [anon_sym_DQUOTE] = ACTIONS(1810), + [sym__str_single_quotes] = ACTIONS(1810), + [sym__str_back_ticks] = ACTIONS(1810), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1810), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1812), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1810), }, - [603] = { - [sym_comment] = STATE(603), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_alias] = ACTIONS(1022), - [anon_sym_let] = ACTIONS(1022), - [anon_sym_let_DASHenv] = ACTIONS(1022), - [anon_sym_mut] = ACTIONS(1022), - [anon_sym_const] = ACTIONS(1022), - [aux_sym_cmd_identifier_token1] = ACTIONS(1022), - [aux_sym_cmd_identifier_token2] = ACTIONS(1028), - [aux_sym_cmd_identifier_token3] = ACTIONS(1028), - [aux_sym_cmd_identifier_token4] = ACTIONS(1028), - [aux_sym_cmd_identifier_token5] = ACTIONS(1028), - [aux_sym_cmd_identifier_token6] = ACTIONS(1028), - [aux_sym_cmd_identifier_token7] = ACTIONS(1028), - [aux_sym_cmd_identifier_token8] = ACTIONS(1022), - [aux_sym_cmd_identifier_token9] = ACTIONS(1022), - [aux_sym_cmd_identifier_token10] = ACTIONS(1028), - [aux_sym_cmd_identifier_token11] = ACTIONS(1028), - [aux_sym_cmd_identifier_token12] = ACTIONS(1022), - [aux_sym_cmd_identifier_token13] = ACTIONS(1022), - [aux_sym_cmd_identifier_token14] = ACTIONS(1022), - [aux_sym_cmd_identifier_token15] = ACTIONS(1022), - [aux_sym_cmd_identifier_token16] = ACTIONS(1028), - [aux_sym_cmd_identifier_token17] = ACTIONS(1028), - [aux_sym_cmd_identifier_token18] = ACTIONS(1028), - [aux_sym_cmd_identifier_token19] = ACTIONS(1028), - [aux_sym_cmd_identifier_token20] = ACTIONS(1028), - [aux_sym_cmd_identifier_token21] = ACTIONS(1028), - [aux_sym_cmd_identifier_token22] = ACTIONS(1028), - [aux_sym_cmd_identifier_token23] = ACTIONS(1028), - [aux_sym_cmd_identifier_token24] = ACTIONS(1028), - [aux_sym_cmd_identifier_token25] = ACTIONS(1028), - [aux_sym_cmd_identifier_token26] = ACTIONS(1028), - [aux_sym_cmd_identifier_token27] = ACTIONS(1028), - [aux_sym_cmd_identifier_token28] = ACTIONS(1028), - [aux_sym_cmd_identifier_token29] = ACTIONS(1028), - [aux_sym_cmd_identifier_token30] = ACTIONS(1028), - [aux_sym_cmd_identifier_token31] = ACTIONS(1028), - [aux_sym_cmd_identifier_token32] = ACTIONS(1028), - [aux_sym_cmd_identifier_token33] = ACTIONS(1028), - [aux_sym_cmd_identifier_token34] = ACTIONS(1022), - [aux_sym_cmd_identifier_token35] = ACTIONS(1028), - [aux_sym_cmd_identifier_token36] = ACTIONS(1028), - [aux_sym_cmd_identifier_token37] = ACTIONS(1028), - [aux_sym_cmd_identifier_token38] = ACTIONS(1022), - [aux_sym_cmd_identifier_token39] = ACTIONS(1028), - [aux_sym_cmd_identifier_token40] = ACTIONS(1028), - [anon_sym_def] = ACTIONS(1022), - [anon_sym_export_DASHenv] = ACTIONS(1022), - [anon_sym_extern] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_use] = ACTIONS(1022), - [anon_sym_LPAREN] = ACTIONS(1028), - [anon_sym_COMMA] = ACTIONS(1034), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_error] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(1022), - [anon_sym_break] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1022), - [anon_sym_for] = ACTIONS(1022), - [anon_sym_in2] = ACTIONS(1022), - [anon_sym_loop] = ACTIONS(1022), - [anon_sym_make] = ACTIONS(1022), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_do] = ACTIONS(1022), - [anon_sym_if] = ACTIONS(1022), - [anon_sym_else] = ACTIONS(1022), - [anon_sym_match] = ACTIONS(1022), - [anon_sym_RBRACE] = ACTIONS(1028), - [anon_sym_try] = ACTIONS(1022), - [anon_sym_catch] = ACTIONS(1022), - [anon_sym_return] = ACTIONS(1022), - [anon_sym_source] = ACTIONS(1022), - [anon_sym_source_DASHenv] = ACTIONS(1022), - [anon_sym_register] = ACTIONS(1022), - [anon_sym_hide] = ACTIONS(1022), - [anon_sym_hide_DASHenv] = ACTIONS(1022), - [anon_sym_overlay] = ACTIONS(1022), - [anon_sym_as] = ACTIONS(1022), - [anon_sym_PLUS2] = ACTIONS(1022), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1028), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1028), - [aux_sym__val_number_decimal_token1] = ACTIONS(1022), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1028), - [aux_sym__val_number_decimal_token4] = ACTIONS(1028), - [aux_sym__val_number_token1] = ACTIONS(1028), - [aux_sym__val_number_token2] = ACTIONS(1028), - [aux_sym__val_number_token3] = ACTIONS(1028), - [aux_sym__val_number_token4] = ACTIONS(1022), - [aux_sym__val_number_token5] = ACTIONS(1022), - [aux_sym__val_number_token6] = ACTIONS(1022), - [anon_sym_DQUOTE] = ACTIONS(1028), - [sym__str_single_quotes] = ACTIONS(1028), - [sym__str_back_ticks] = ACTIONS(1028), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1028), - [aux_sym_record_entry_token1] = ACTIONS(2331), + [589] = { + [sym_comment] = STATE(589), + [anon_sym_export] = ACTIONS(1785), + [anon_sym_alias] = ACTIONS(1785), + [anon_sym_let] = ACTIONS(1785), + [anon_sym_let_DASHenv] = ACTIONS(1785), + [anon_sym_mut] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(1785), + [aux_sym_cmd_identifier_token1] = ACTIONS(1785), + [aux_sym_cmd_identifier_token2] = ACTIONS(1787), + [aux_sym_cmd_identifier_token3] = ACTIONS(1787), + [aux_sym_cmd_identifier_token4] = ACTIONS(1787), + [aux_sym_cmd_identifier_token5] = ACTIONS(1787), + [aux_sym_cmd_identifier_token6] = ACTIONS(1787), + [aux_sym_cmd_identifier_token7] = ACTIONS(1787), + [aux_sym_cmd_identifier_token8] = ACTIONS(1785), + [aux_sym_cmd_identifier_token9] = ACTIONS(1785), + [aux_sym_cmd_identifier_token10] = ACTIONS(1787), + [aux_sym_cmd_identifier_token11] = ACTIONS(1787), + [aux_sym_cmd_identifier_token12] = ACTIONS(1785), + [aux_sym_cmd_identifier_token13] = ACTIONS(1785), + [aux_sym_cmd_identifier_token14] = ACTIONS(1785), + [aux_sym_cmd_identifier_token15] = ACTIONS(1785), + [aux_sym_cmd_identifier_token16] = ACTIONS(1787), + [aux_sym_cmd_identifier_token17] = ACTIONS(1787), + [aux_sym_cmd_identifier_token18] = ACTIONS(1787), + [aux_sym_cmd_identifier_token19] = ACTIONS(1787), + [aux_sym_cmd_identifier_token20] = ACTIONS(1787), + [aux_sym_cmd_identifier_token21] = ACTIONS(1787), + [aux_sym_cmd_identifier_token22] = ACTIONS(1787), + [aux_sym_cmd_identifier_token23] = ACTIONS(1787), + [aux_sym_cmd_identifier_token24] = ACTIONS(1787), + [aux_sym_cmd_identifier_token25] = ACTIONS(1787), + [aux_sym_cmd_identifier_token26] = ACTIONS(1787), + [aux_sym_cmd_identifier_token27] = ACTIONS(1787), + [aux_sym_cmd_identifier_token28] = ACTIONS(1787), + [aux_sym_cmd_identifier_token29] = ACTIONS(1787), + [aux_sym_cmd_identifier_token30] = ACTIONS(1787), + [aux_sym_cmd_identifier_token31] = ACTIONS(1787), + [aux_sym_cmd_identifier_token32] = ACTIONS(1787), + [aux_sym_cmd_identifier_token33] = ACTIONS(1787), + [aux_sym_cmd_identifier_token34] = ACTIONS(1785), + [aux_sym_cmd_identifier_token35] = ACTIONS(1787), + [aux_sym_cmd_identifier_token36] = ACTIONS(1787), + [aux_sym_cmd_identifier_token37] = ACTIONS(1787), + [aux_sym_cmd_identifier_token38] = ACTIONS(1785), + [aux_sym_cmd_identifier_token39] = ACTIONS(1787), + [aux_sym_cmd_identifier_token40] = ACTIONS(1787), + [anon_sym_def] = ACTIONS(1785), + [anon_sym_export_DASHenv] = ACTIONS(1785), + [anon_sym_extern] = ACTIONS(1785), + [anon_sym_module] = ACTIONS(1785), + [anon_sym_use] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1787), + [anon_sym_error] = ACTIONS(1785), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_break] = ACTIONS(1785), + [anon_sym_continue] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1785), + [anon_sym_in2] = ACTIONS(1785), + [anon_sym_loop] = ACTIONS(1785), + [anon_sym_make] = ACTIONS(1785), + [anon_sym_while] = ACTIONS(1785), + [anon_sym_do] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1785), + [anon_sym_else] = ACTIONS(1785), + [anon_sym_match] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1787), + [anon_sym_try] = ACTIONS(1785), + [anon_sym_catch] = ACTIONS(1785), + [anon_sym_return] = ACTIONS(1785), + [anon_sym_source] = ACTIONS(1785), + [anon_sym_source_DASHenv] = ACTIONS(1785), + [anon_sym_register] = ACTIONS(1785), + [anon_sym_hide] = ACTIONS(1785), + [anon_sym_hide_DASHenv] = ACTIONS(1785), + [anon_sym_overlay] = ACTIONS(1785), + [anon_sym_as] = ACTIONS(1785), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_PLUS2] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1787), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1787), + [aux_sym__val_number_decimal_token1] = ACTIONS(1785), + [aux_sym__val_number_decimal_token2] = ACTIONS(1787), + [aux_sym__val_number_decimal_token3] = ACTIONS(1787), + [aux_sym__val_number_decimal_token4] = ACTIONS(1787), + [aux_sym__val_number_token1] = ACTIONS(1787), + [aux_sym__val_number_token2] = ACTIONS(1787), + [aux_sym__val_number_token3] = ACTIONS(1787), + [aux_sym__val_number_token4] = ACTIONS(1785), + [aux_sym__val_number_token5] = ACTIONS(1785), + [aux_sym__val_number_token6] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1787), + [sym__str_single_quotes] = ACTIONS(1787), + [sym__str_back_ticks] = ACTIONS(1787), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1787), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1785), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1028), + [sym_raw_string_begin] = ACTIONS(1787), }, - [604] = { - [sym_comment] = STATE(604), - [anon_sym_export] = ACTIONS(2333), - [anon_sym_alias] = ACTIONS(2333), - [anon_sym_let] = ACTIONS(2333), - [anon_sym_let_DASHenv] = ACTIONS(2333), - [anon_sym_mut] = ACTIONS(2333), - [anon_sym_const] = ACTIONS(2333), - [aux_sym_cmd_identifier_token1] = ACTIONS(2333), - [aux_sym_cmd_identifier_token2] = ACTIONS(2333), - [aux_sym_cmd_identifier_token3] = ACTIONS(2333), - [aux_sym_cmd_identifier_token4] = ACTIONS(2333), - [aux_sym_cmd_identifier_token5] = ACTIONS(2333), - [aux_sym_cmd_identifier_token6] = ACTIONS(2333), - [aux_sym_cmd_identifier_token7] = ACTIONS(2333), - [aux_sym_cmd_identifier_token8] = ACTIONS(2333), - [aux_sym_cmd_identifier_token9] = ACTIONS(2333), - [aux_sym_cmd_identifier_token10] = ACTIONS(2333), - [aux_sym_cmd_identifier_token11] = ACTIONS(2333), - [aux_sym_cmd_identifier_token12] = ACTIONS(2333), - [aux_sym_cmd_identifier_token13] = ACTIONS(2333), - [aux_sym_cmd_identifier_token14] = ACTIONS(2333), - [aux_sym_cmd_identifier_token15] = ACTIONS(2333), - [aux_sym_cmd_identifier_token16] = ACTIONS(2333), - [aux_sym_cmd_identifier_token17] = ACTIONS(2333), - [aux_sym_cmd_identifier_token18] = ACTIONS(2333), - [aux_sym_cmd_identifier_token19] = ACTIONS(2333), - [aux_sym_cmd_identifier_token20] = ACTIONS(2333), - [aux_sym_cmd_identifier_token21] = ACTIONS(2333), - [aux_sym_cmd_identifier_token22] = ACTIONS(2333), - [aux_sym_cmd_identifier_token23] = ACTIONS(2333), - [aux_sym_cmd_identifier_token24] = ACTIONS(2333), - [aux_sym_cmd_identifier_token25] = ACTIONS(2333), - [aux_sym_cmd_identifier_token26] = ACTIONS(2333), - [aux_sym_cmd_identifier_token27] = ACTIONS(2333), - [aux_sym_cmd_identifier_token28] = ACTIONS(2333), - [aux_sym_cmd_identifier_token29] = ACTIONS(2333), - [aux_sym_cmd_identifier_token30] = ACTIONS(2333), - [aux_sym_cmd_identifier_token31] = ACTIONS(2333), - [aux_sym_cmd_identifier_token32] = ACTIONS(2333), - [aux_sym_cmd_identifier_token33] = ACTIONS(2333), - [aux_sym_cmd_identifier_token34] = ACTIONS(2333), - [aux_sym_cmd_identifier_token35] = ACTIONS(2333), - [aux_sym_cmd_identifier_token36] = ACTIONS(2333), - [aux_sym_cmd_identifier_token37] = ACTIONS(2333), - [aux_sym_cmd_identifier_token38] = ACTIONS(2333), - [aux_sym_cmd_identifier_token39] = ACTIONS(2333), - [aux_sym_cmd_identifier_token40] = ACTIONS(2333), - [anon_sym_def] = ACTIONS(2333), - [anon_sym_export_DASHenv] = ACTIONS(2333), - [anon_sym_extern] = ACTIONS(2333), - [anon_sym_module] = ACTIONS(2333), - [anon_sym_use] = ACTIONS(2333), - [anon_sym_LPAREN] = ACTIONS(2333), - [anon_sym_DOLLAR] = ACTIONS(2333), - [anon_sym_error] = ACTIONS(2333), - [anon_sym_DASH2] = ACTIONS(2333), - [anon_sym_break] = ACTIONS(2333), - [anon_sym_continue] = ACTIONS(2333), - [anon_sym_for] = ACTIONS(2333), - [anon_sym_in2] = ACTIONS(2333), - [anon_sym_loop] = ACTIONS(2333), - [anon_sym_make] = ACTIONS(2333), - [anon_sym_while] = ACTIONS(2333), - [anon_sym_do] = ACTIONS(2333), - [anon_sym_if] = ACTIONS(2333), - [anon_sym_else] = ACTIONS(2333), - [anon_sym_match] = ACTIONS(2333), - [anon_sym_RBRACE] = ACTIONS(2333), - [anon_sym_try] = ACTIONS(2333), - [anon_sym_catch] = ACTIONS(2333), - [anon_sym_return] = ACTIONS(2333), - [anon_sym_source] = ACTIONS(2333), - [anon_sym_source_DASHenv] = ACTIONS(2333), - [anon_sym_register] = ACTIONS(2333), - [anon_sym_hide] = ACTIONS(2333), - [anon_sym_hide_DASHenv] = ACTIONS(2333), - [anon_sym_overlay] = ACTIONS(2333), - [anon_sym_as] = ACTIONS(2333), - [anon_sym_LPAREN2] = ACTIONS(2335), - [anon_sym_PLUS2] = ACTIONS(2333), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2333), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2333), - [aux_sym__val_number_decimal_token1] = ACTIONS(2333), - [aux_sym__val_number_decimal_token2] = ACTIONS(2333), - [aux_sym__val_number_decimal_token3] = ACTIONS(2333), - [aux_sym__val_number_decimal_token4] = ACTIONS(2333), - [aux_sym__val_number_token1] = ACTIONS(2333), - [aux_sym__val_number_token2] = ACTIONS(2333), - [aux_sym__val_number_token3] = ACTIONS(2333), - [aux_sym__val_number_token4] = ACTIONS(2333), - [aux_sym__val_number_token5] = ACTIONS(2333), - [aux_sym__val_number_token6] = ACTIONS(2333), - [anon_sym_DQUOTE] = ACTIONS(2333), - [sym__str_single_quotes] = ACTIONS(2333), - [sym__str_back_ticks] = ACTIONS(2333), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2333), - [sym__entry_separator] = ACTIONS(2335), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2335), + [590] = { + [sym_comment] = STATE(590), + [anon_sym_export] = ACTIONS(1841), + [anon_sym_alias] = ACTIONS(1841), + [anon_sym_let] = ACTIONS(1841), + [anon_sym_let_DASHenv] = ACTIONS(1841), + [anon_sym_mut] = ACTIONS(1841), + [anon_sym_const] = ACTIONS(1841), + [aux_sym_cmd_identifier_token1] = ACTIONS(1841), + [aux_sym_cmd_identifier_token2] = ACTIONS(1843), + [aux_sym_cmd_identifier_token3] = ACTIONS(1843), + [aux_sym_cmd_identifier_token4] = ACTIONS(1843), + [aux_sym_cmd_identifier_token5] = ACTIONS(1843), + [aux_sym_cmd_identifier_token6] = ACTIONS(1843), + [aux_sym_cmd_identifier_token7] = ACTIONS(1843), + [aux_sym_cmd_identifier_token8] = ACTIONS(1841), + [aux_sym_cmd_identifier_token9] = ACTIONS(1841), + [aux_sym_cmd_identifier_token10] = ACTIONS(1843), + [aux_sym_cmd_identifier_token11] = ACTIONS(1843), + [aux_sym_cmd_identifier_token12] = ACTIONS(1841), + [aux_sym_cmd_identifier_token13] = ACTIONS(1841), + [aux_sym_cmd_identifier_token14] = ACTIONS(1841), + [aux_sym_cmd_identifier_token15] = ACTIONS(1841), + [aux_sym_cmd_identifier_token16] = ACTIONS(1843), + [aux_sym_cmd_identifier_token17] = ACTIONS(1843), + [aux_sym_cmd_identifier_token18] = ACTIONS(1843), + [aux_sym_cmd_identifier_token19] = ACTIONS(1843), + [aux_sym_cmd_identifier_token20] = ACTIONS(1843), + [aux_sym_cmd_identifier_token21] = ACTIONS(1843), + [aux_sym_cmd_identifier_token22] = ACTIONS(1843), + [aux_sym_cmd_identifier_token23] = ACTIONS(1843), + [aux_sym_cmd_identifier_token24] = ACTIONS(1843), + [aux_sym_cmd_identifier_token25] = ACTIONS(1843), + [aux_sym_cmd_identifier_token26] = ACTIONS(1843), + [aux_sym_cmd_identifier_token27] = ACTIONS(1843), + [aux_sym_cmd_identifier_token28] = ACTIONS(1843), + [aux_sym_cmd_identifier_token29] = ACTIONS(1843), + [aux_sym_cmd_identifier_token30] = ACTIONS(1843), + [aux_sym_cmd_identifier_token31] = ACTIONS(1843), + [aux_sym_cmd_identifier_token32] = ACTIONS(1843), + [aux_sym_cmd_identifier_token33] = ACTIONS(1843), + [aux_sym_cmd_identifier_token34] = ACTIONS(1841), + [aux_sym_cmd_identifier_token35] = ACTIONS(1843), + [aux_sym_cmd_identifier_token36] = ACTIONS(1843), + [aux_sym_cmd_identifier_token37] = ACTIONS(1843), + [aux_sym_cmd_identifier_token38] = ACTIONS(1841), + [aux_sym_cmd_identifier_token39] = ACTIONS(1843), + [aux_sym_cmd_identifier_token40] = ACTIONS(1843), + [anon_sym_def] = ACTIONS(1841), + [anon_sym_export_DASHenv] = ACTIONS(1841), + [anon_sym_extern] = ACTIONS(1841), + [anon_sym_module] = ACTIONS(1841), + [anon_sym_use] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1843), + [anon_sym_error] = ACTIONS(1841), + [anon_sym_DASH2] = ACTIONS(1841), + [anon_sym_break] = ACTIONS(1841), + [anon_sym_continue] = ACTIONS(1841), + [anon_sym_for] = ACTIONS(1841), + [anon_sym_in2] = ACTIONS(1841), + [anon_sym_loop] = ACTIONS(1841), + [anon_sym_make] = ACTIONS(1841), + [anon_sym_while] = ACTIONS(1841), + [anon_sym_do] = ACTIONS(1841), + [anon_sym_if] = ACTIONS(1841), + [anon_sym_else] = ACTIONS(1841), + [anon_sym_match] = ACTIONS(1841), + [anon_sym_RBRACE] = ACTIONS(1843), + [anon_sym_try] = ACTIONS(1841), + [anon_sym_catch] = ACTIONS(1841), + [anon_sym_return] = ACTIONS(1841), + [anon_sym_source] = ACTIONS(1841), + [anon_sym_source_DASHenv] = ACTIONS(1841), + [anon_sym_register] = ACTIONS(1841), + [anon_sym_hide] = ACTIONS(1841), + [anon_sym_hide_DASHenv] = ACTIONS(1841), + [anon_sym_overlay] = ACTIONS(1841), + [anon_sym_as] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(1843), + [anon_sym_PLUS2] = ACTIONS(1841), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1843), + [aux_sym__val_number_decimal_token1] = ACTIONS(1841), + [aux_sym__val_number_decimal_token2] = ACTIONS(1843), + [aux_sym__val_number_decimal_token3] = ACTIONS(1843), + [aux_sym__val_number_decimal_token4] = ACTIONS(1843), + [aux_sym__val_number_token1] = ACTIONS(1843), + [aux_sym__val_number_token2] = ACTIONS(1843), + [aux_sym__val_number_token3] = ACTIONS(1843), + [aux_sym__val_number_token4] = ACTIONS(1841), + [aux_sym__val_number_token5] = ACTIONS(1841), + [aux_sym__val_number_token6] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1843), + [sym__str_single_quotes] = ACTIONS(1843), + [sym__str_back_ticks] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1843), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1841), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1843), }, - [605] = { - [sym_comment] = STATE(605), + [591] = { + [sym_comment] = STATE(591), [anon_sym_export] = ACTIONS(994), [anon_sym_alias] = ACTIONS(994), [anon_sym_let] = ACTIONS(994), @@ -140491,8 +139396,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(996), }, - [606] = { - [sym_comment] = STATE(606), + [592] = { + [sym_comment] = STATE(592), [anon_sym_export] = ACTIONS(998), [anon_sym_alias] = ACTIONS(998), [anon_sym_let] = ACTIONS(998), @@ -140592,8 +139497,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1000), }, - [607] = { - [sym_comment] = STATE(607), + [593] = { + [sym_comment] = STATE(593), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_alias] = ACTIONS(1044), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_let_DASHenv] = ACTIONS(1044), + [anon_sym_mut] = ACTIONS(1044), + [anon_sym_const] = ACTIONS(1044), + [aux_sym_cmd_identifier_token1] = ACTIONS(1044), + [aux_sym_cmd_identifier_token2] = ACTIONS(1046), + [aux_sym_cmd_identifier_token3] = ACTIONS(1046), + [aux_sym_cmd_identifier_token4] = ACTIONS(1046), + [aux_sym_cmd_identifier_token5] = ACTIONS(1046), + [aux_sym_cmd_identifier_token6] = ACTIONS(1046), + [aux_sym_cmd_identifier_token7] = ACTIONS(1046), + [aux_sym_cmd_identifier_token8] = ACTIONS(1044), + [aux_sym_cmd_identifier_token9] = ACTIONS(1044), + [aux_sym_cmd_identifier_token10] = ACTIONS(1046), + [aux_sym_cmd_identifier_token11] = ACTIONS(1046), + [aux_sym_cmd_identifier_token12] = ACTIONS(1044), + [aux_sym_cmd_identifier_token13] = ACTIONS(1044), + [aux_sym_cmd_identifier_token14] = ACTIONS(1044), + [aux_sym_cmd_identifier_token15] = ACTIONS(1044), + [aux_sym_cmd_identifier_token16] = ACTIONS(1046), + [aux_sym_cmd_identifier_token17] = ACTIONS(1046), + [aux_sym_cmd_identifier_token18] = ACTIONS(1046), + [aux_sym_cmd_identifier_token19] = ACTIONS(1046), + [aux_sym_cmd_identifier_token20] = ACTIONS(1046), + [aux_sym_cmd_identifier_token21] = ACTIONS(1046), + [aux_sym_cmd_identifier_token22] = ACTIONS(1046), + [aux_sym_cmd_identifier_token23] = ACTIONS(1046), + [aux_sym_cmd_identifier_token24] = ACTIONS(1046), + [aux_sym_cmd_identifier_token25] = ACTIONS(1046), + [aux_sym_cmd_identifier_token26] = ACTIONS(1046), + [aux_sym_cmd_identifier_token27] = ACTIONS(1046), + [aux_sym_cmd_identifier_token28] = ACTIONS(1046), + [aux_sym_cmd_identifier_token29] = ACTIONS(1046), + [aux_sym_cmd_identifier_token30] = ACTIONS(1046), + [aux_sym_cmd_identifier_token31] = ACTIONS(1046), + [aux_sym_cmd_identifier_token32] = ACTIONS(1046), + [aux_sym_cmd_identifier_token33] = ACTIONS(1046), + [aux_sym_cmd_identifier_token34] = ACTIONS(1044), + [aux_sym_cmd_identifier_token35] = ACTIONS(1046), + [aux_sym_cmd_identifier_token36] = ACTIONS(1046), + [aux_sym_cmd_identifier_token37] = ACTIONS(1046), + [aux_sym_cmd_identifier_token38] = ACTIONS(1044), + [aux_sym_cmd_identifier_token39] = ACTIONS(1046), + [aux_sym_cmd_identifier_token40] = ACTIONS(1046), + [anon_sym_def] = ACTIONS(1044), + [anon_sym_export_DASHenv] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_use] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_COMMA] = ACTIONS(1046), + [anon_sym_DOLLAR] = ACTIONS(1046), + [anon_sym_error] = ACTIONS(1044), + [anon_sym_DASH2] = ACTIONS(1044), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_in2] = ACTIONS(1044), + [anon_sym_loop] = ACTIONS(1044), + [anon_sym_make] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [anon_sym_do] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_else] = ACTIONS(1044), + [anon_sym_match] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_try] = ACTIONS(1044), + [anon_sym_catch] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_source] = ACTIONS(1044), + [anon_sym_source_DASHenv] = ACTIONS(1044), + [anon_sym_register] = ACTIONS(1044), + [anon_sym_hide] = ACTIONS(1044), + [anon_sym_hide_DASHenv] = ACTIONS(1044), + [anon_sym_overlay] = ACTIONS(1044), + [anon_sym_as] = ACTIONS(1044), + [anon_sym_PLUS2] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1046), + [aux_sym__val_number_decimal_token1] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1046), + [aux_sym__val_number_decimal_token3] = ACTIONS(1046), + [aux_sym__val_number_decimal_token4] = ACTIONS(1046), + [aux_sym__val_number_token1] = ACTIONS(1046), + [aux_sym__val_number_token2] = ACTIONS(1046), + [aux_sym__val_number_token3] = ACTIONS(1046), + [aux_sym__val_number_token4] = ACTIONS(1044), + [aux_sym__val_number_token5] = ACTIONS(1044), + [aux_sym__val_number_token6] = ACTIONS(1044), + [anon_sym_DQUOTE] = ACTIONS(1046), + [sym__str_single_quotes] = ACTIONS(1046), + [sym__str_back_ticks] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1046), + [aux_sym_record_entry_token1] = ACTIONS(1046), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1046), + }, + [594] = { + [sym_comment] = STATE(594), + [anon_sym_export] = ACTIONS(1026), + [anon_sym_alias] = ACTIONS(1026), + [anon_sym_let] = ACTIONS(1026), + [anon_sym_let_DASHenv] = ACTIONS(1026), + [anon_sym_mut] = ACTIONS(1026), + [anon_sym_const] = ACTIONS(1026), + [aux_sym_cmd_identifier_token1] = ACTIONS(1026), + [aux_sym_cmd_identifier_token2] = ACTIONS(1026), + [aux_sym_cmd_identifier_token3] = ACTIONS(1026), + [aux_sym_cmd_identifier_token4] = ACTIONS(1026), + [aux_sym_cmd_identifier_token5] = ACTIONS(1026), + [aux_sym_cmd_identifier_token6] = ACTIONS(1026), + [aux_sym_cmd_identifier_token7] = ACTIONS(1026), + [aux_sym_cmd_identifier_token8] = ACTIONS(1026), + [aux_sym_cmd_identifier_token9] = ACTIONS(1026), + [aux_sym_cmd_identifier_token10] = ACTIONS(1026), + [aux_sym_cmd_identifier_token11] = ACTIONS(1026), + [aux_sym_cmd_identifier_token12] = ACTIONS(1026), + [aux_sym_cmd_identifier_token13] = ACTIONS(1026), + [aux_sym_cmd_identifier_token14] = ACTIONS(1026), + [aux_sym_cmd_identifier_token15] = ACTIONS(1026), + [aux_sym_cmd_identifier_token16] = ACTIONS(1026), + [aux_sym_cmd_identifier_token17] = ACTIONS(1026), + [aux_sym_cmd_identifier_token18] = ACTIONS(1026), + [aux_sym_cmd_identifier_token19] = ACTIONS(1026), + [aux_sym_cmd_identifier_token20] = ACTIONS(1026), + [aux_sym_cmd_identifier_token21] = ACTIONS(1026), + [aux_sym_cmd_identifier_token22] = ACTIONS(1026), + [aux_sym_cmd_identifier_token23] = ACTIONS(1026), + [aux_sym_cmd_identifier_token24] = ACTIONS(1026), + [aux_sym_cmd_identifier_token25] = ACTIONS(1026), + [aux_sym_cmd_identifier_token26] = ACTIONS(1026), + [aux_sym_cmd_identifier_token27] = ACTIONS(1026), + [aux_sym_cmd_identifier_token28] = ACTIONS(1026), + [aux_sym_cmd_identifier_token29] = ACTIONS(1026), + [aux_sym_cmd_identifier_token30] = ACTIONS(1026), + [aux_sym_cmd_identifier_token31] = ACTIONS(1026), + [aux_sym_cmd_identifier_token32] = ACTIONS(1026), + [aux_sym_cmd_identifier_token33] = ACTIONS(1026), + [aux_sym_cmd_identifier_token34] = ACTIONS(1026), + [aux_sym_cmd_identifier_token35] = ACTIONS(1026), + [aux_sym_cmd_identifier_token36] = ACTIONS(1026), + [aux_sym_cmd_identifier_token37] = ACTIONS(1026), + [aux_sym_cmd_identifier_token38] = ACTIONS(1026), + [aux_sym_cmd_identifier_token39] = ACTIONS(1026), + [aux_sym_cmd_identifier_token40] = ACTIONS(1026), + [anon_sym_def] = ACTIONS(1026), + [anon_sym_export_DASHenv] = ACTIONS(1026), + [anon_sym_extern] = ACTIONS(1026), + [anon_sym_module] = ACTIONS(1026), + [anon_sym_use] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(1026), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_error] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(1026), + [anon_sym_break] = ACTIONS(1026), + [anon_sym_continue] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1026), + [anon_sym_in2] = ACTIONS(1026), + [anon_sym_loop] = ACTIONS(1026), + [anon_sym_make] = ACTIONS(1026), + [anon_sym_while] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1026), + [anon_sym_else] = ACTIONS(1026), + [anon_sym_match] = ACTIONS(1026), + [anon_sym_RBRACE] = ACTIONS(1028), + [anon_sym_try] = ACTIONS(1026), + [anon_sym_catch] = ACTIONS(1026), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_source] = ACTIONS(1026), + [anon_sym_source_DASHenv] = ACTIONS(1026), + [anon_sym_register] = ACTIONS(1026), + [anon_sym_hide] = ACTIONS(1026), + [anon_sym_hide_DASHenv] = ACTIONS(1026), + [anon_sym_overlay] = ACTIONS(1026), + [anon_sym_as] = ACTIONS(1026), + [anon_sym_LPAREN2] = ACTIONS(2226), + [anon_sym_PLUS2] = ACTIONS(1026), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1028), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1026), + [aux_sym__val_number_decimal_token1] = ACTIONS(1026), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1026), + [aux_sym__val_number_decimal_token4] = ACTIONS(1026), + [aux_sym__val_number_token1] = ACTIONS(1026), + [aux_sym__val_number_token2] = ACTIONS(1026), + [aux_sym__val_number_token3] = ACTIONS(1026), + [aux_sym__val_number_token4] = ACTIONS(1026), + [aux_sym__val_number_token5] = ACTIONS(1026), + [aux_sym__val_number_token6] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1028), + [sym__str_single_quotes] = ACTIONS(1028), + [sym__str_back_ticks] = ACTIONS(1028), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1028), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2228), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1028), + }, + [595] = { + [sym_comment] = STATE(595), [anon_sym_export] = ACTIONS(1002), [anon_sym_alias] = ACTIONS(1002), [anon_sym_let] = ACTIONS(1002), @@ -140693,310 +139800,1622 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1004), }, + [596] = { + [sym_comment] = STATE(596), + [anon_sym_export] = ACTIONS(2258), + [anon_sym_alias] = ACTIONS(2258), + [anon_sym_let] = ACTIONS(2258), + [anon_sym_let_DASHenv] = ACTIONS(2258), + [anon_sym_mut] = ACTIONS(2258), + [anon_sym_const] = ACTIONS(2258), + [aux_sym_cmd_identifier_token1] = ACTIONS(2258), + [aux_sym_cmd_identifier_token2] = ACTIONS(2262), + [aux_sym_cmd_identifier_token3] = ACTIONS(2262), + [aux_sym_cmd_identifier_token4] = ACTIONS(2262), + [aux_sym_cmd_identifier_token5] = ACTIONS(2262), + [aux_sym_cmd_identifier_token6] = ACTIONS(2262), + [aux_sym_cmd_identifier_token7] = ACTIONS(2262), + [aux_sym_cmd_identifier_token8] = ACTIONS(2258), + [aux_sym_cmd_identifier_token9] = ACTIONS(2258), + [aux_sym_cmd_identifier_token10] = ACTIONS(2262), + [aux_sym_cmd_identifier_token11] = ACTIONS(2262), + [aux_sym_cmd_identifier_token12] = ACTIONS(2258), + [aux_sym_cmd_identifier_token13] = ACTIONS(2258), + [aux_sym_cmd_identifier_token14] = ACTIONS(2258), + [aux_sym_cmd_identifier_token15] = ACTIONS(2258), + [aux_sym_cmd_identifier_token16] = ACTIONS(2262), + [aux_sym_cmd_identifier_token17] = ACTIONS(2262), + [aux_sym_cmd_identifier_token18] = ACTIONS(2262), + [aux_sym_cmd_identifier_token19] = ACTIONS(2262), + [aux_sym_cmd_identifier_token20] = ACTIONS(2262), + [aux_sym_cmd_identifier_token21] = ACTIONS(2262), + [aux_sym_cmd_identifier_token22] = ACTIONS(2262), + [aux_sym_cmd_identifier_token23] = ACTIONS(2262), + [aux_sym_cmd_identifier_token24] = ACTIONS(2262), + [aux_sym_cmd_identifier_token25] = ACTIONS(2262), + [aux_sym_cmd_identifier_token26] = ACTIONS(2262), + [aux_sym_cmd_identifier_token27] = ACTIONS(2262), + [aux_sym_cmd_identifier_token28] = ACTIONS(2262), + [aux_sym_cmd_identifier_token29] = ACTIONS(2262), + [aux_sym_cmd_identifier_token30] = ACTIONS(2262), + [aux_sym_cmd_identifier_token31] = ACTIONS(2262), + [aux_sym_cmd_identifier_token32] = ACTIONS(2262), + [aux_sym_cmd_identifier_token33] = ACTIONS(2262), + [aux_sym_cmd_identifier_token34] = ACTIONS(2258), + [aux_sym_cmd_identifier_token35] = ACTIONS(2262), + [aux_sym_cmd_identifier_token36] = ACTIONS(2262), + [aux_sym_cmd_identifier_token37] = ACTIONS(2262), + [aux_sym_cmd_identifier_token38] = ACTIONS(2258), + [aux_sym_cmd_identifier_token39] = ACTIONS(2262), + [aux_sym_cmd_identifier_token40] = ACTIONS(2262), + [anon_sym_def] = ACTIONS(2258), + [anon_sym_export_DASHenv] = ACTIONS(2258), + [anon_sym_extern] = ACTIONS(2258), + [anon_sym_module] = ACTIONS(2258), + [anon_sym_use] = ACTIONS(2258), + [anon_sym_LPAREN] = ACTIONS(2258), + [anon_sym_DOLLAR] = ACTIONS(2262), + [anon_sym_error] = ACTIONS(2258), + [anon_sym_DASH2] = ACTIONS(2258), + [anon_sym_break] = ACTIONS(2258), + [anon_sym_continue] = ACTIONS(2258), + [anon_sym_for] = ACTIONS(2258), + [anon_sym_in2] = ACTIONS(2258), + [anon_sym_loop] = ACTIONS(2258), + [anon_sym_make] = ACTIONS(2258), + [anon_sym_while] = ACTIONS(2258), + [anon_sym_do] = ACTIONS(2258), + [anon_sym_if] = ACTIONS(2258), + [anon_sym_else] = ACTIONS(2258), + [anon_sym_match] = ACTIONS(2258), + [anon_sym_RBRACE] = ACTIONS(2262), + [anon_sym_try] = ACTIONS(2258), + [anon_sym_catch] = ACTIONS(2258), + [anon_sym_return] = ACTIONS(2258), + [anon_sym_source] = ACTIONS(2258), + [anon_sym_source_DASHenv] = ACTIONS(2258), + [anon_sym_register] = ACTIONS(2258), + [anon_sym_hide] = ACTIONS(2258), + [anon_sym_hide_DASHenv] = ACTIONS(2258), + [anon_sym_overlay] = ACTIONS(2258), + [anon_sym_as] = ACTIONS(2258), + [anon_sym_LPAREN2] = ACTIONS(2260), + [anon_sym_PLUS2] = ACTIONS(2258), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2262), + [aux_sym__val_number_decimal_token1] = ACTIONS(2258), + [aux_sym__val_number_decimal_token2] = ACTIONS(2262), + [aux_sym__val_number_decimal_token3] = ACTIONS(2262), + [aux_sym__val_number_decimal_token4] = ACTIONS(2262), + [aux_sym__val_number_token1] = ACTIONS(2262), + [aux_sym__val_number_token2] = ACTIONS(2262), + [aux_sym__val_number_token3] = ACTIONS(2262), + [aux_sym__val_number_token4] = ACTIONS(2258), + [aux_sym__val_number_token5] = ACTIONS(2258), + [aux_sym__val_number_token6] = ACTIONS(2258), + [anon_sym_DQUOTE] = ACTIONS(2262), + [sym__str_single_quotes] = ACTIONS(2262), + [sym__str_back_ticks] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2262), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1661), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2262), + }, + [597] = { + [sym_comment] = STATE(597), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_alias] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_let_DASHenv] = ACTIONS(2318), + [anon_sym_mut] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [aux_sym_cmd_identifier_token1] = ACTIONS(2318), + [aux_sym_cmd_identifier_token2] = ACTIONS(2318), + [aux_sym_cmd_identifier_token3] = ACTIONS(2318), + [aux_sym_cmd_identifier_token4] = ACTIONS(2318), + [aux_sym_cmd_identifier_token5] = ACTIONS(2318), + [aux_sym_cmd_identifier_token6] = ACTIONS(2318), + [aux_sym_cmd_identifier_token7] = ACTIONS(2318), + [aux_sym_cmd_identifier_token8] = ACTIONS(2318), + [aux_sym_cmd_identifier_token9] = ACTIONS(2318), + [aux_sym_cmd_identifier_token10] = ACTIONS(2318), + [aux_sym_cmd_identifier_token11] = ACTIONS(2318), + [aux_sym_cmd_identifier_token12] = ACTIONS(2318), + [aux_sym_cmd_identifier_token13] = ACTIONS(2318), + [aux_sym_cmd_identifier_token14] = ACTIONS(2318), + [aux_sym_cmd_identifier_token15] = ACTIONS(2318), + [aux_sym_cmd_identifier_token16] = ACTIONS(2318), + [aux_sym_cmd_identifier_token17] = ACTIONS(2318), + [aux_sym_cmd_identifier_token18] = ACTIONS(2318), + [aux_sym_cmd_identifier_token19] = ACTIONS(2318), + [aux_sym_cmd_identifier_token20] = ACTIONS(2318), + [aux_sym_cmd_identifier_token21] = ACTIONS(2318), + [aux_sym_cmd_identifier_token22] = ACTIONS(2318), + [aux_sym_cmd_identifier_token23] = ACTIONS(2318), + [aux_sym_cmd_identifier_token24] = ACTIONS(2318), + [aux_sym_cmd_identifier_token25] = ACTIONS(2318), + [aux_sym_cmd_identifier_token26] = ACTIONS(2318), + [aux_sym_cmd_identifier_token27] = ACTIONS(2318), + [aux_sym_cmd_identifier_token28] = ACTIONS(2318), + [aux_sym_cmd_identifier_token29] = ACTIONS(2318), + [aux_sym_cmd_identifier_token30] = ACTIONS(2318), + [aux_sym_cmd_identifier_token31] = ACTIONS(2318), + [aux_sym_cmd_identifier_token32] = ACTIONS(2318), + [aux_sym_cmd_identifier_token33] = ACTIONS(2318), + [aux_sym_cmd_identifier_token34] = ACTIONS(2318), + [aux_sym_cmd_identifier_token35] = ACTIONS(2318), + [aux_sym_cmd_identifier_token36] = ACTIONS(2318), + [aux_sym_cmd_identifier_token37] = ACTIONS(2318), + [aux_sym_cmd_identifier_token38] = ACTIONS(2318), + [aux_sym_cmd_identifier_token39] = ACTIONS(2318), + [aux_sym_cmd_identifier_token40] = ACTIONS(2318), + [anon_sym_def] = ACTIONS(2318), + [anon_sym_export_DASHenv] = ACTIONS(2318), + [anon_sym_extern] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_use] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_DOLLAR] = ACTIONS(2318), + [anon_sym_error] = ACTIONS(2318), + [anon_sym_DASH2] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_in2] = ACTIONS(2318), + [anon_sym_loop] = ACTIONS(2318), + [anon_sym_make] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_else] = ACTIONS(2318), + [anon_sym_match] = ACTIONS(2318), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_try] = ACTIONS(2318), + [anon_sym_catch] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_source] = ACTIONS(2318), + [anon_sym_source_DASHenv] = ACTIONS(2318), + [anon_sym_register] = ACTIONS(2318), + [anon_sym_hide] = ACTIONS(2318), + [anon_sym_hide_DASHenv] = ACTIONS(2318), + [anon_sym_overlay] = ACTIONS(2318), + [anon_sym_as] = ACTIONS(2318), + [anon_sym_LPAREN2] = ACTIONS(2320), + [anon_sym_PLUS2] = ACTIONS(2318), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2318), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2318), + [aux_sym__val_number_decimal_token1] = ACTIONS(2318), + [aux_sym__val_number_decimal_token2] = ACTIONS(2318), + [aux_sym__val_number_decimal_token3] = ACTIONS(2318), + [aux_sym__val_number_decimal_token4] = ACTIONS(2318), + [aux_sym__val_number_token1] = ACTIONS(2318), + [aux_sym__val_number_token2] = ACTIONS(2318), + [aux_sym__val_number_token3] = ACTIONS(2318), + [aux_sym__val_number_token4] = ACTIONS(2318), + [aux_sym__val_number_token5] = ACTIONS(2318), + [aux_sym__val_number_token6] = ACTIONS(2318), + [anon_sym_DQUOTE] = ACTIONS(2318), + [sym__str_single_quotes] = ACTIONS(2318), + [sym__str_back_ticks] = ACTIONS(2318), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2318), + [sym__entry_separator] = ACTIONS(2320), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2320), + }, + [598] = { + [sym_comment] = STATE(598), + [anon_sym_export] = ACTIONS(2322), + [anon_sym_alias] = ACTIONS(2322), + [anon_sym_let] = ACTIONS(2322), + [anon_sym_let_DASHenv] = ACTIONS(2322), + [anon_sym_mut] = ACTIONS(2322), + [anon_sym_const] = ACTIONS(2322), + [aux_sym_cmd_identifier_token1] = ACTIONS(2322), + [aux_sym_cmd_identifier_token2] = ACTIONS(2322), + [aux_sym_cmd_identifier_token3] = ACTIONS(2322), + [aux_sym_cmd_identifier_token4] = ACTIONS(2322), + [aux_sym_cmd_identifier_token5] = ACTIONS(2322), + [aux_sym_cmd_identifier_token6] = ACTIONS(2322), + [aux_sym_cmd_identifier_token7] = ACTIONS(2322), + [aux_sym_cmd_identifier_token8] = ACTIONS(2322), + [aux_sym_cmd_identifier_token9] = ACTIONS(2322), + [aux_sym_cmd_identifier_token10] = ACTIONS(2322), + [aux_sym_cmd_identifier_token11] = ACTIONS(2322), + [aux_sym_cmd_identifier_token12] = ACTIONS(2322), + [aux_sym_cmd_identifier_token13] = ACTIONS(2322), + [aux_sym_cmd_identifier_token14] = ACTIONS(2322), + [aux_sym_cmd_identifier_token15] = ACTIONS(2322), + [aux_sym_cmd_identifier_token16] = ACTIONS(2322), + [aux_sym_cmd_identifier_token17] = ACTIONS(2322), + [aux_sym_cmd_identifier_token18] = ACTIONS(2322), + [aux_sym_cmd_identifier_token19] = ACTIONS(2322), + [aux_sym_cmd_identifier_token20] = ACTIONS(2322), + [aux_sym_cmd_identifier_token21] = ACTIONS(2322), + [aux_sym_cmd_identifier_token22] = ACTIONS(2322), + [aux_sym_cmd_identifier_token23] = ACTIONS(2322), + [aux_sym_cmd_identifier_token24] = ACTIONS(2322), + [aux_sym_cmd_identifier_token25] = ACTIONS(2322), + [aux_sym_cmd_identifier_token26] = ACTIONS(2322), + [aux_sym_cmd_identifier_token27] = ACTIONS(2322), + [aux_sym_cmd_identifier_token28] = ACTIONS(2322), + [aux_sym_cmd_identifier_token29] = ACTIONS(2322), + [aux_sym_cmd_identifier_token30] = ACTIONS(2322), + [aux_sym_cmd_identifier_token31] = ACTIONS(2322), + [aux_sym_cmd_identifier_token32] = ACTIONS(2322), + [aux_sym_cmd_identifier_token33] = ACTIONS(2322), + [aux_sym_cmd_identifier_token34] = ACTIONS(2322), + [aux_sym_cmd_identifier_token35] = ACTIONS(2322), + [aux_sym_cmd_identifier_token36] = ACTIONS(2322), + [aux_sym_cmd_identifier_token37] = ACTIONS(2322), + [aux_sym_cmd_identifier_token38] = ACTIONS(2322), + [aux_sym_cmd_identifier_token39] = ACTIONS(2322), + [aux_sym_cmd_identifier_token40] = ACTIONS(2322), + [anon_sym_def] = ACTIONS(2322), + [anon_sym_export_DASHenv] = ACTIONS(2322), + [anon_sym_extern] = ACTIONS(2322), + [anon_sym_module] = ACTIONS(2322), + [anon_sym_use] = ACTIONS(2322), + [anon_sym_LPAREN] = ACTIONS(2322), + [anon_sym_DOLLAR] = ACTIONS(2322), + [anon_sym_error] = ACTIONS(2322), + [anon_sym_DASH2] = ACTIONS(2322), + [anon_sym_break] = ACTIONS(2322), + [anon_sym_continue] = ACTIONS(2322), + [anon_sym_for] = ACTIONS(2322), + [anon_sym_in2] = ACTIONS(2322), + [anon_sym_loop] = ACTIONS(2322), + [anon_sym_make] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2322), + [anon_sym_do] = ACTIONS(2322), + [anon_sym_if] = ACTIONS(2322), + [anon_sym_else] = ACTIONS(2322), + [anon_sym_match] = ACTIONS(2322), + [anon_sym_RBRACE] = ACTIONS(2322), + [anon_sym_try] = ACTIONS(2322), + [anon_sym_catch] = ACTIONS(2322), + [anon_sym_return] = ACTIONS(2322), + [anon_sym_source] = ACTIONS(2322), + [anon_sym_source_DASHenv] = ACTIONS(2322), + [anon_sym_register] = ACTIONS(2322), + [anon_sym_hide] = ACTIONS(2322), + [anon_sym_hide_DASHenv] = ACTIONS(2322), + [anon_sym_overlay] = ACTIONS(2322), + [anon_sym_as] = ACTIONS(2322), + [anon_sym_PLUS2] = ACTIONS(2322), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2322), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2322), + [aux_sym__val_number_decimal_token1] = ACTIONS(2322), + [aux_sym__val_number_decimal_token2] = ACTIONS(2322), + [aux_sym__val_number_decimal_token3] = ACTIONS(2322), + [aux_sym__val_number_decimal_token4] = ACTIONS(2322), + [aux_sym__val_number_token1] = ACTIONS(2322), + [aux_sym__val_number_token2] = ACTIONS(2322), + [aux_sym__val_number_token3] = ACTIONS(2322), + [aux_sym__val_number_token4] = ACTIONS(2322), + [aux_sym__val_number_token5] = ACTIONS(2322), + [aux_sym__val_number_token6] = ACTIONS(2322), + [anon_sym_LBRACK2] = ACTIONS(2324), + [anon_sym_DQUOTE] = ACTIONS(2322), + [sym__str_single_quotes] = ACTIONS(2322), + [sym__str_back_ticks] = ACTIONS(2322), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2322), + [sym__entry_separator] = ACTIONS(2326), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2326), + }, + [599] = { + [sym_comment] = STATE(599), + [anon_sym_export] = ACTIONS(1739), + [anon_sym_alias] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_let_DASHenv] = ACTIONS(1739), + [anon_sym_mut] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [aux_sym_cmd_identifier_token1] = ACTIONS(1739), + [aux_sym_cmd_identifier_token2] = ACTIONS(1741), + [aux_sym_cmd_identifier_token3] = ACTIONS(1741), + [aux_sym_cmd_identifier_token4] = ACTIONS(1741), + [aux_sym_cmd_identifier_token5] = ACTIONS(1741), + [aux_sym_cmd_identifier_token6] = ACTIONS(1741), + [aux_sym_cmd_identifier_token7] = ACTIONS(1741), + [aux_sym_cmd_identifier_token8] = ACTIONS(1739), + [aux_sym_cmd_identifier_token9] = ACTIONS(1739), + [aux_sym_cmd_identifier_token10] = ACTIONS(1741), + [aux_sym_cmd_identifier_token11] = ACTIONS(1741), + [aux_sym_cmd_identifier_token12] = ACTIONS(1739), + [aux_sym_cmd_identifier_token13] = ACTIONS(1739), + [aux_sym_cmd_identifier_token14] = ACTIONS(1739), + [aux_sym_cmd_identifier_token15] = ACTIONS(1739), + [aux_sym_cmd_identifier_token16] = ACTIONS(1741), + [aux_sym_cmd_identifier_token17] = ACTIONS(1741), + [aux_sym_cmd_identifier_token18] = ACTIONS(1741), + [aux_sym_cmd_identifier_token19] = ACTIONS(1741), + [aux_sym_cmd_identifier_token20] = ACTIONS(1741), + [aux_sym_cmd_identifier_token21] = ACTIONS(1741), + [aux_sym_cmd_identifier_token22] = ACTIONS(1741), + [aux_sym_cmd_identifier_token23] = ACTIONS(1741), + [aux_sym_cmd_identifier_token24] = ACTIONS(1741), + [aux_sym_cmd_identifier_token25] = ACTIONS(1741), + [aux_sym_cmd_identifier_token26] = ACTIONS(1741), + [aux_sym_cmd_identifier_token27] = ACTIONS(1741), + [aux_sym_cmd_identifier_token28] = ACTIONS(1741), + [aux_sym_cmd_identifier_token29] = ACTIONS(1741), + [aux_sym_cmd_identifier_token30] = ACTIONS(1741), + [aux_sym_cmd_identifier_token31] = ACTIONS(1741), + [aux_sym_cmd_identifier_token32] = ACTIONS(1741), + [aux_sym_cmd_identifier_token33] = ACTIONS(1741), + [aux_sym_cmd_identifier_token34] = ACTIONS(1739), + [aux_sym_cmd_identifier_token35] = ACTIONS(1741), + [aux_sym_cmd_identifier_token36] = ACTIONS(1741), + [aux_sym_cmd_identifier_token37] = ACTIONS(1741), + [aux_sym_cmd_identifier_token38] = ACTIONS(1739), + [aux_sym_cmd_identifier_token39] = ACTIONS(1741), + [aux_sym_cmd_identifier_token40] = ACTIONS(1741), + [anon_sym_def] = ACTIONS(1739), + [anon_sym_export_DASHenv] = ACTIONS(1739), + [anon_sym_extern] = ACTIONS(1739), + [anon_sym_module] = ACTIONS(1739), + [anon_sym_use] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_DOLLAR] = ACTIONS(1741), + [anon_sym_error] = ACTIONS(1739), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_break] = ACTIONS(1739), + [anon_sym_continue] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_in2] = ACTIONS(1739), + [anon_sym_loop] = ACTIONS(1739), + [anon_sym_make] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_do] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_else] = ACTIONS(1739), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1741), + [anon_sym_try] = ACTIONS(1739), + [anon_sym_catch] = ACTIONS(1739), + [anon_sym_return] = ACTIONS(1739), + [anon_sym_source] = ACTIONS(1739), + [anon_sym_source_DASHenv] = ACTIONS(1739), + [anon_sym_register] = ACTIONS(1739), + [anon_sym_hide] = ACTIONS(1739), + [anon_sym_hide_DASHenv] = ACTIONS(1739), + [anon_sym_overlay] = ACTIONS(1739), + [anon_sym_as] = ACTIONS(1739), + [anon_sym_PLUS2] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1741), + [aux_sym__immediate_decimal_token1] = ACTIONS(2328), + [aux_sym__immediate_decimal_token2] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1739), + [aux_sym__val_number_token5] = ACTIONS(1739), + [aux_sym__val_number_token6] = ACTIONS(1739), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1741), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), + }, + [600] = { + [sym_comment] = STATE(600), + [aux_sym__multiple_types_repeat1] = STATE(600), + [anon_sym_export] = ACTIONS(2332), + [anon_sym_alias] = ACTIONS(2332), + [anon_sym_let] = ACTIONS(2332), + [anon_sym_let_DASHenv] = ACTIONS(2332), + [anon_sym_mut] = ACTIONS(2332), + [anon_sym_const] = ACTIONS(2332), + [aux_sym_cmd_identifier_token1] = ACTIONS(2332), + [aux_sym_cmd_identifier_token2] = ACTIONS(2332), + [aux_sym_cmd_identifier_token3] = ACTIONS(2332), + [aux_sym_cmd_identifier_token4] = ACTIONS(2332), + [aux_sym_cmd_identifier_token5] = ACTIONS(2332), + [aux_sym_cmd_identifier_token6] = ACTIONS(2332), + [aux_sym_cmd_identifier_token7] = ACTIONS(2332), + [aux_sym_cmd_identifier_token8] = ACTIONS(2332), + [aux_sym_cmd_identifier_token9] = ACTIONS(2332), + [aux_sym_cmd_identifier_token10] = ACTIONS(2332), + [aux_sym_cmd_identifier_token11] = ACTIONS(2332), + [aux_sym_cmd_identifier_token12] = ACTIONS(2332), + [aux_sym_cmd_identifier_token13] = ACTIONS(2332), + [aux_sym_cmd_identifier_token14] = ACTIONS(2332), + [aux_sym_cmd_identifier_token15] = ACTIONS(2332), + [aux_sym_cmd_identifier_token16] = ACTIONS(2332), + [aux_sym_cmd_identifier_token17] = ACTIONS(2332), + [aux_sym_cmd_identifier_token18] = ACTIONS(2332), + [aux_sym_cmd_identifier_token19] = ACTIONS(2332), + [aux_sym_cmd_identifier_token20] = ACTIONS(2332), + [aux_sym_cmd_identifier_token21] = ACTIONS(2332), + [aux_sym_cmd_identifier_token22] = ACTIONS(2332), + [aux_sym_cmd_identifier_token23] = ACTIONS(2332), + [aux_sym_cmd_identifier_token24] = ACTIONS(2332), + [aux_sym_cmd_identifier_token25] = ACTIONS(2332), + [aux_sym_cmd_identifier_token26] = ACTIONS(2332), + [aux_sym_cmd_identifier_token27] = ACTIONS(2332), + [aux_sym_cmd_identifier_token28] = ACTIONS(2332), + [aux_sym_cmd_identifier_token29] = ACTIONS(2332), + [aux_sym_cmd_identifier_token30] = ACTIONS(2332), + [aux_sym_cmd_identifier_token31] = ACTIONS(2332), + [aux_sym_cmd_identifier_token32] = ACTIONS(2332), + [aux_sym_cmd_identifier_token33] = ACTIONS(2332), + [aux_sym_cmd_identifier_token34] = ACTIONS(2332), + [aux_sym_cmd_identifier_token35] = ACTIONS(2332), + [aux_sym_cmd_identifier_token36] = ACTIONS(2332), + [aux_sym_cmd_identifier_token37] = ACTIONS(2332), + [aux_sym_cmd_identifier_token38] = ACTIONS(2332), + [aux_sym_cmd_identifier_token39] = ACTIONS(2332), + [aux_sym_cmd_identifier_token40] = ACTIONS(2332), + [anon_sym_def] = ACTIONS(2332), + [anon_sym_export_DASHenv] = ACTIONS(2332), + [anon_sym_extern] = ACTIONS(2332), + [anon_sym_module] = ACTIONS(2332), + [anon_sym_use] = ACTIONS(2332), + [anon_sym_LPAREN] = ACTIONS(2332), + [anon_sym_DOLLAR] = ACTIONS(2332), + [anon_sym_error] = ACTIONS(2332), + [anon_sym_DASH2] = ACTIONS(2332), + [anon_sym_break] = ACTIONS(2332), + [anon_sym_continue] = ACTIONS(2332), + [anon_sym_for] = ACTIONS(2332), + [anon_sym_in2] = ACTIONS(2332), + [anon_sym_loop] = ACTIONS(2332), + [anon_sym_make] = ACTIONS(2332), + [anon_sym_while] = ACTIONS(2332), + [anon_sym_do] = ACTIONS(2332), + [anon_sym_if] = ACTIONS(2332), + [anon_sym_else] = ACTIONS(2332), + [anon_sym_match] = ACTIONS(2332), + [anon_sym_RBRACE] = ACTIONS(2332), + [anon_sym_try] = ACTIONS(2332), + [anon_sym_catch] = ACTIONS(2332), + [anon_sym_return] = ACTIONS(2332), + [anon_sym_source] = ACTIONS(2332), + [anon_sym_source_DASHenv] = ACTIONS(2332), + [anon_sym_register] = ACTIONS(2332), + [anon_sym_hide] = ACTIONS(2332), + [anon_sym_hide_DASHenv] = ACTIONS(2332), + [anon_sym_overlay] = ACTIONS(2332), + [anon_sym_as] = ACTIONS(2332), + [anon_sym_PLUS2] = ACTIONS(2332), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2332), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2332), + [aux_sym__val_number_decimal_token1] = ACTIONS(2332), + [aux_sym__val_number_decimal_token2] = ACTIONS(2332), + [aux_sym__val_number_decimal_token3] = ACTIONS(2332), + [aux_sym__val_number_decimal_token4] = ACTIONS(2332), + [aux_sym__val_number_token1] = ACTIONS(2332), + [aux_sym__val_number_token2] = ACTIONS(2332), + [aux_sym__val_number_token3] = ACTIONS(2332), + [aux_sym__val_number_token4] = ACTIONS(2332), + [aux_sym__val_number_token5] = ACTIONS(2332), + [aux_sym__val_number_token6] = ACTIONS(2332), + [anon_sym_DQUOTE] = ACTIONS(2332), + [sym__str_single_quotes] = ACTIONS(2332), + [sym__str_back_ticks] = ACTIONS(2332), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2332), + [sym__entry_separator] = ACTIONS(2334), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2337), + }, + [601] = { + [sym_comment] = STATE(601), + [anon_sym_export] = ACTIONS(1765), + [anon_sym_alias] = ACTIONS(1765), + [anon_sym_let] = ACTIONS(1765), + [anon_sym_let_DASHenv] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [aux_sym_cmd_identifier_token1] = ACTIONS(1765), + [aux_sym_cmd_identifier_token2] = ACTIONS(1767), + [aux_sym_cmd_identifier_token3] = ACTIONS(1767), + [aux_sym_cmd_identifier_token4] = ACTIONS(1767), + [aux_sym_cmd_identifier_token5] = ACTIONS(1767), + [aux_sym_cmd_identifier_token6] = ACTIONS(1767), + [aux_sym_cmd_identifier_token7] = ACTIONS(1767), + [aux_sym_cmd_identifier_token8] = ACTIONS(1765), + [aux_sym_cmd_identifier_token9] = ACTIONS(1765), + [aux_sym_cmd_identifier_token10] = ACTIONS(1767), + [aux_sym_cmd_identifier_token11] = ACTIONS(1767), + [aux_sym_cmd_identifier_token12] = ACTIONS(1765), + [aux_sym_cmd_identifier_token13] = ACTIONS(1765), + [aux_sym_cmd_identifier_token14] = ACTIONS(1765), + [aux_sym_cmd_identifier_token15] = ACTIONS(1765), + [aux_sym_cmd_identifier_token16] = ACTIONS(1767), + [aux_sym_cmd_identifier_token17] = ACTIONS(1767), + [aux_sym_cmd_identifier_token18] = ACTIONS(1767), + [aux_sym_cmd_identifier_token19] = ACTIONS(1767), + [aux_sym_cmd_identifier_token20] = ACTIONS(1767), + [aux_sym_cmd_identifier_token21] = ACTIONS(1767), + [aux_sym_cmd_identifier_token22] = ACTIONS(1767), + [aux_sym_cmd_identifier_token23] = ACTIONS(1767), + [aux_sym_cmd_identifier_token24] = ACTIONS(1767), + [aux_sym_cmd_identifier_token25] = ACTIONS(1767), + [aux_sym_cmd_identifier_token26] = ACTIONS(1767), + [aux_sym_cmd_identifier_token27] = ACTIONS(1767), + [aux_sym_cmd_identifier_token28] = ACTIONS(1767), + [aux_sym_cmd_identifier_token29] = ACTIONS(1767), + [aux_sym_cmd_identifier_token30] = ACTIONS(1767), + [aux_sym_cmd_identifier_token31] = ACTIONS(1767), + [aux_sym_cmd_identifier_token32] = ACTIONS(1767), + [aux_sym_cmd_identifier_token33] = ACTIONS(1767), + [aux_sym_cmd_identifier_token34] = ACTIONS(1765), + [aux_sym_cmd_identifier_token35] = ACTIONS(1767), + [aux_sym_cmd_identifier_token36] = ACTIONS(1767), + [aux_sym_cmd_identifier_token37] = ACTIONS(1767), + [aux_sym_cmd_identifier_token38] = ACTIONS(1765), + [aux_sym_cmd_identifier_token39] = ACTIONS(1767), + [aux_sym_cmd_identifier_token40] = ACTIONS(1767), + [anon_sym_def] = ACTIONS(1765), + [anon_sym_export_DASHenv] = ACTIONS(1765), + [anon_sym_extern] = ACTIONS(1765), + [anon_sym_module] = ACTIONS(1765), + [anon_sym_use] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1767), + [anon_sym_error] = ACTIONS(1765), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_in2] = ACTIONS(1765), + [anon_sym_loop] = ACTIONS(1765), + [anon_sym_make] = ACTIONS(1765), + [anon_sym_while] = ACTIONS(1765), + [anon_sym_do] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_else] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_try] = ACTIONS(1765), + [anon_sym_catch] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_source] = ACTIONS(1765), + [anon_sym_source_DASHenv] = ACTIONS(1765), + [anon_sym_register] = ACTIONS(1765), + [anon_sym_hide] = ACTIONS(1765), + [anon_sym_hide_DASHenv] = ACTIONS(1765), + [anon_sym_overlay] = ACTIONS(1765), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_PLUS2] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), + [anon_sym_DOT] = ACTIONS(2339), + [aux_sym__immediate_decimal_token2] = ACTIONS(2341), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1765), + [aux_sym__val_number_token5] = ACTIONS(1765), + [aux_sym__val_number_token6] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1767), + }, + [602] = { + [sym__expr_parenthesized_immediate] = STATE(7537), + [sym_comment] = STATE(602), + [anon_sym_export] = ACTIONS(2165), + [anon_sym_alias] = ACTIONS(2165), + [anon_sym_let] = ACTIONS(2165), + [anon_sym_let_DASHenv] = ACTIONS(2165), + [anon_sym_mut] = ACTIONS(2165), + [anon_sym_const] = ACTIONS(2165), + [aux_sym_cmd_identifier_token1] = ACTIONS(2165), + [aux_sym_cmd_identifier_token2] = ACTIONS(2171), + [aux_sym_cmd_identifier_token3] = ACTIONS(2171), + [aux_sym_cmd_identifier_token4] = ACTIONS(2171), + [aux_sym_cmd_identifier_token5] = ACTIONS(2171), + [aux_sym_cmd_identifier_token6] = ACTIONS(2171), + [aux_sym_cmd_identifier_token7] = ACTIONS(2171), + [aux_sym_cmd_identifier_token8] = ACTIONS(2165), + [aux_sym_cmd_identifier_token9] = ACTIONS(2165), + [aux_sym_cmd_identifier_token10] = ACTIONS(2171), + [aux_sym_cmd_identifier_token11] = ACTIONS(2171), + [aux_sym_cmd_identifier_token12] = ACTIONS(2165), + [aux_sym_cmd_identifier_token13] = ACTIONS(2165), + [aux_sym_cmd_identifier_token14] = ACTIONS(2165), + [aux_sym_cmd_identifier_token15] = ACTIONS(2165), + [aux_sym_cmd_identifier_token16] = ACTIONS(2171), + [aux_sym_cmd_identifier_token17] = ACTIONS(2171), + [aux_sym_cmd_identifier_token18] = ACTIONS(2171), + [aux_sym_cmd_identifier_token19] = ACTIONS(2171), + [aux_sym_cmd_identifier_token20] = ACTIONS(2171), + [aux_sym_cmd_identifier_token21] = ACTIONS(2171), + [aux_sym_cmd_identifier_token22] = ACTIONS(2171), + [aux_sym_cmd_identifier_token23] = ACTIONS(2171), + [aux_sym_cmd_identifier_token24] = ACTIONS(2171), + [aux_sym_cmd_identifier_token25] = ACTIONS(2171), + [aux_sym_cmd_identifier_token26] = ACTIONS(2171), + [aux_sym_cmd_identifier_token27] = ACTIONS(2171), + [aux_sym_cmd_identifier_token28] = ACTIONS(2171), + [aux_sym_cmd_identifier_token29] = ACTIONS(2171), + [aux_sym_cmd_identifier_token30] = ACTIONS(2171), + [aux_sym_cmd_identifier_token31] = ACTIONS(2171), + [aux_sym_cmd_identifier_token32] = ACTIONS(2171), + [aux_sym_cmd_identifier_token33] = ACTIONS(2171), + [aux_sym_cmd_identifier_token34] = ACTIONS(2165), + [aux_sym_cmd_identifier_token35] = ACTIONS(2171), + [aux_sym_cmd_identifier_token36] = ACTIONS(2171), + [aux_sym_cmd_identifier_token37] = ACTIONS(2171), + [aux_sym_cmd_identifier_token38] = ACTIONS(2165), + [aux_sym_cmd_identifier_token39] = ACTIONS(2171), + [aux_sym_cmd_identifier_token40] = ACTIONS(2171), + [anon_sym_def] = ACTIONS(2165), + [anon_sym_export_DASHenv] = ACTIONS(2165), + [anon_sym_extern] = ACTIONS(2165), + [anon_sym_module] = ACTIONS(2165), + [anon_sym_use] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2165), + [anon_sym_DOLLAR] = ACTIONS(2171), + [anon_sym_error] = ACTIONS(2165), + [anon_sym_DASH2] = ACTIONS(2165), + [anon_sym_break] = ACTIONS(2165), + [anon_sym_continue] = ACTIONS(2165), + [anon_sym_for] = ACTIONS(2165), + [anon_sym_in2] = ACTIONS(2165), + [anon_sym_loop] = ACTIONS(2165), + [anon_sym_make] = ACTIONS(2165), + [anon_sym_while] = ACTIONS(2165), + [anon_sym_do] = ACTIONS(2165), + [anon_sym_if] = ACTIONS(2165), + [anon_sym_else] = ACTIONS(2165), + [anon_sym_match] = ACTIONS(2165), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_try] = ACTIONS(2165), + [anon_sym_catch] = ACTIONS(2165), + [anon_sym_return] = ACTIONS(2165), + [anon_sym_source] = ACTIONS(2165), + [anon_sym_source_DASHenv] = ACTIONS(2165), + [anon_sym_register] = ACTIONS(2165), + [anon_sym_hide] = ACTIONS(2165), + [anon_sym_hide_DASHenv] = ACTIONS(2165), + [anon_sym_overlay] = ACTIONS(2165), + [anon_sym_as] = ACTIONS(2165), + [anon_sym_LPAREN2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(2165), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2171), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2171), + [aux_sym__val_number_decimal_token1] = ACTIONS(2165), + [aux_sym__val_number_decimal_token2] = ACTIONS(2171), + [aux_sym__val_number_decimal_token3] = ACTIONS(2171), + [aux_sym__val_number_decimal_token4] = ACTIONS(2171), + [aux_sym__val_number_token1] = ACTIONS(2171), + [aux_sym__val_number_token2] = ACTIONS(2171), + [aux_sym__val_number_token3] = ACTIONS(2171), + [aux_sym__val_number_token4] = ACTIONS(2165), + [aux_sym__val_number_token5] = ACTIONS(2165), + [aux_sym__val_number_token6] = ACTIONS(2165), + [anon_sym_DQUOTE] = ACTIONS(2171), + [sym__str_single_quotes] = ACTIONS(2171), + [sym__str_back_ticks] = ACTIONS(2171), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2171), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2171), + }, + [603] = { + [sym_comment] = STATE(603), + [anon_sym_export] = ACTIONS(2268), + [anon_sym_alias] = ACTIONS(2268), + [anon_sym_let] = ACTIONS(2268), + [anon_sym_let_DASHenv] = ACTIONS(2268), + [anon_sym_mut] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(2268), + [aux_sym_cmd_identifier_token1] = ACTIONS(2268), + [aux_sym_cmd_identifier_token2] = ACTIONS(2268), + [aux_sym_cmd_identifier_token3] = ACTIONS(2268), + [aux_sym_cmd_identifier_token4] = ACTIONS(2268), + [aux_sym_cmd_identifier_token5] = ACTIONS(2268), + [aux_sym_cmd_identifier_token6] = ACTIONS(2268), + [aux_sym_cmd_identifier_token7] = ACTIONS(2268), + [aux_sym_cmd_identifier_token8] = ACTIONS(2268), + [aux_sym_cmd_identifier_token9] = ACTIONS(2268), + [aux_sym_cmd_identifier_token10] = ACTIONS(2268), + [aux_sym_cmd_identifier_token11] = ACTIONS(2268), + [aux_sym_cmd_identifier_token12] = ACTIONS(2268), + [aux_sym_cmd_identifier_token13] = ACTIONS(2268), + [aux_sym_cmd_identifier_token14] = ACTIONS(2268), + [aux_sym_cmd_identifier_token15] = ACTIONS(2268), + [aux_sym_cmd_identifier_token16] = ACTIONS(2268), + [aux_sym_cmd_identifier_token17] = ACTIONS(2268), + [aux_sym_cmd_identifier_token18] = ACTIONS(2268), + [aux_sym_cmd_identifier_token19] = ACTIONS(2268), + [aux_sym_cmd_identifier_token20] = ACTIONS(2268), + [aux_sym_cmd_identifier_token21] = ACTIONS(2268), + [aux_sym_cmd_identifier_token22] = ACTIONS(2268), + [aux_sym_cmd_identifier_token23] = ACTIONS(2268), + [aux_sym_cmd_identifier_token24] = ACTIONS(2268), + [aux_sym_cmd_identifier_token25] = ACTIONS(2268), + [aux_sym_cmd_identifier_token26] = ACTIONS(2268), + [aux_sym_cmd_identifier_token27] = ACTIONS(2268), + [aux_sym_cmd_identifier_token28] = ACTIONS(2268), + [aux_sym_cmd_identifier_token29] = ACTIONS(2268), + [aux_sym_cmd_identifier_token30] = ACTIONS(2268), + [aux_sym_cmd_identifier_token31] = ACTIONS(2268), + [aux_sym_cmd_identifier_token32] = ACTIONS(2268), + [aux_sym_cmd_identifier_token33] = ACTIONS(2268), + [aux_sym_cmd_identifier_token34] = ACTIONS(2268), + [aux_sym_cmd_identifier_token35] = ACTIONS(2268), + [aux_sym_cmd_identifier_token36] = ACTIONS(2268), + [aux_sym_cmd_identifier_token37] = ACTIONS(2268), + [aux_sym_cmd_identifier_token38] = ACTIONS(2268), + [aux_sym_cmd_identifier_token39] = ACTIONS(2268), + [aux_sym_cmd_identifier_token40] = ACTIONS(2268), + [anon_sym_def] = ACTIONS(2268), + [anon_sym_export_DASHenv] = ACTIONS(2268), + [anon_sym_extern] = ACTIONS(2268), + [anon_sym_module] = ACTIONS(2268), + [anon_sym_use] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2268), + [anon_sym_DOLLAR] = ACTIONS(2268), + [anon_sym_error] = ACTIONS(2268), + [anon_sym_DASH2] = ACTIONS(2268), + [anon_sym_break] = ACTIONS(2268), + [anon_sym_continue] = ACTIONS(2268), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_in2] = ACTIONS(2268), + [anon_sym_loop] = ACTIONS(2268), + [anon_sym_make] = ACTIONS(2268), + [anon_sym_while] = ACTIONS(2268), + [anon_sym_do] = ACTIONS(2268), + [anon_sym_if] = ACTIONS(2268), + [anon_sym_else] = ACTIONS(2268), + [anon_sym_match] = ACTIONS(2268), + [anon_sym_RBRACE] = ACTIONS(2270), + [anon_sym_try] = ACTIONS(2268), + [anon_sym_catch] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2268), + [anon_sym_source] = ACTIONS(2268), + [anon_sym_source_DASHenv] = ACTIONS(2268), + [anon_sym_register] = ACTIONS(2268), + [anon_sym_hide] = ACTIONS(2268), + [anon_sym_hide_DASHenv] = ACTIONS(2268), + [anon_sym_overlay] = ACTIONS(2268), + [anon_sym_as] = ACTIONS(2268), + [anon_sym_LPAREN2] = ACTIONS(2270), + [anon_sym_PLUS2] = ACTIONS(2268), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2270), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2268), + [aux_sym__val_number_decimal_token1] = ACTIONS(2268), + [aux_sym__val_number_decimal_token2] = ACTIONS(2268), + [aux_sym__val_number_decimal_token3] = ACTIONS(2268), + [aux_sym__val_number_decimal_token4] = ACTIONS(2268), + [aux_sym__val_number_token1] = ACTIONS(2268), + [aux_sym__val_number_token2] = ACTIONS(2268), + [aux_sym__val_number_token3] = ACTIONS(2268), + [aux_sym__val_number_token4] = ACTIONS(2268), + [aux_sym__val_number_token5] = ACTIONS(2268), + [aux_sym__val_number_token6] = ACTIONS(2268), + [anon_sym_DQUOTE] = ACTIONS(2270), + [sym__str_single_quotes] = ACTIONS(2270), + [sym__str_back_ticks] = ACTIONS(2270), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2270), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2268), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2270), + }, + [604] = { + [sym__expr_parenthesized_immediate] = STATE(7537), + [sym_comment] = STATE(604), + [anon_sym_export] = ACTIONS(2173), + [anon_sym_alias] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_let_DASHenv] = ACTIONS(2173), + [anon_sym_mut] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [aux_sym_cmd_identifier_token1] = ACTIONS(2173), + [aux_sym_cmd_identifier_token2] = ACTIONS(2175), + [aux_sym_cmd_identifier_token3] = ACTIONS(2175), + [aux_sym_cmd_identifier_token4] = ACTIONS(2175), + [aux_sym_cmd_identifier_token5] = ACTIONS(2175), + [aux_sym_cmd_identifier_token6] = ACTIONS(2175), + [aux_sym_cmd_identifier_token7] = ACTIONS(2175), + [aux_sym_cmd_identifier_token8] = ACTIONS(2173), + [aux_sym_cmd_identifier_token9] = ACTIONS(2173), + [aux_sym_cmd_identifier_token10] = ACTIONS(2175), + [aux_sym_cmd_identifier_token11] = ACTIONS(2175), + [aux_sym_cmd_identifier_token12] = ACTIONS(2173), + [aux_sym_cmd_identifier_token13] = ACTIONS(2173), + [aux_sym_cmd_identifier_token14] = ACTIONS(2173), + [aux_sym_cmd_identifier_token15] = ACTIONS(2173), + [aux_sym_cmd_identifier_token16] = ACTIONS(2175), + [aux_sym_cmd_identifier_token17] = ACTIONS(2175), + [aux_sym_cmd_identifier_token18] = ACTIONS(2175), + [aux_sym_cmd_identifier_token19] = ACTIONS(2175), + [aux_sym_cmd_identifier_token20] = ACTIONS(2175), + [aux_sym_cmd_identifier_token21] = ACTIONS(2175), + [aux_sym_cmd_identifier_token22] = ACTIONS(2175), + [aux_sym_cmd_identifier_token23] = ACTIONS(2175), + [aux_sym_cmd_identifier_token24] = ACTIONS(2175), + [aux_sym_cmd_identifier_token25] = ACTIONS(2175), + [aux_sym_cmd_identifier_token26] = ACTIONS(2175), + [aux_sym_cmd_identifier_token27] = ACTIONS(2175), + [aux_sym_cmd_identifier_token28] = ACTIONS(2175), + [aux_sym_cmd_identifier_token29] = ACTIONS(2175), + [aux_sym_cmd_identifier_token30] = ACTIONS(2175), + [aux_sym_cmd_identifier_token31] = ACTIONS(2175), + [aux_sym_cmd_identifier_token32] = ACTIONS(2175), + [aux_sym_cmd_identifier_token33] = ACTIONS(2175), + [aux_sym_cmd_identifier_token34] = ACTIONS(2173), + [aux_sym_cmd_identifier_token35] = ACTIONS(2175), + [aux_sym_cmd_identifier_token36] = ACTIONS(2175), + [aux_sym_cmd_identifier_token37] = ACTIONS(2175), + [aux_sym_cmd_identifier_token38] = ACTIONS(2173), + [aux_sym_cmd_identifier_token39] = ACTIONS(2175), + [aux_sym_cmd_identifier_token40] = ACTIONS(2175), + [anon_sym_def] = ACTIONS(2173), + [anon_sym_export_DASHenv] = ACTIONS(2173), + [anon_sym_extern] = ACTIONS(2173), + [anon_sym_module] = ACTIONS(2173), + [anon_sym_use] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2175), + [anon_sym_error] = ACTIONS(2173), + [anon_sym_DASH2] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_in2] = ACTIONS(2173), + [anon_sym_loop] = ACTIONS(2173), + [anon_sym_make] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_else] = ACTIONS(2173), + [anon_sym_match] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_catch] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_source] = ACTIONS(2173), + [anon_sym_source_DASHenv] = ACTIONS(2173), + [anon_sym_register] = ACTIONS(2173), + [anon_sym_hide] = ACTIONS(2173), + [anon_sym_hide_DASHenv] = ACTIONS(2173), + [anon_sym_overlay] = ACTIONS(2173), + [anon_sym_as] = ACTIONS(2173), + [anon_sym_LPAREN2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(2173), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2175), + [aux_sym__val_number_decimal_token1] = ACTIONS(2173), + [aux_sym__val_number_decimal_token2] = ACTIONS(2175), + [aux_sym__val_number_decimal_token3] = ACTIONS(2175), + [aux_sym__val_number_decimal_token4] = ACTIONS(2175), + [aux_sym__val_number_token1] = ACTIONS(2175), + [aux_sym__val_number_token2] = ACTIONS(2175), + [aux_sym__val_number_token3] = ACTIONS(2175), + [aux_sym__val_number_token4] = ACTIONS(2173), + [aux_sym__val_number_token5] = ACTIONS(2173), + [aux_sym__val_number_token6] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2175), + [sym__str_single_quotes] = ACTIONS(2175), + [sym__str_back_ticks] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2175), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2175), + }, + [605] = { + [sym__expr_parenthesized_immediate] = STATE(8152), + [sym_comment] = STATE(605), + [anon_sym_export] = ACTIONS(2199), + [anon_sym_alias] = ACTIONS(2199), + [anon_sym_let] = ACTIONS(2199), + [anon_sym_let_DASHenv] = ACTIONS(2199), + [anon_sym_mut] = ACTIONS(2199), + [anon_sym_const] = ACTIONS(2199), + [aux_sym_cmd_identifier_token1] = ACTIONS(2199), + [aux_sym_cmd_identifier_token2] = ACTIONS(2201), + [aux_sym_cmd_identifier_token3] = ACTIONS(2201), + [aux_sym_cmd_identifier_token4] = ACTIONS(2201), + [aux_sym_cmd_identifier_token5] = ACTIONS(2201), + [aux_sym_cmd_identifier_token6] = ACTIONS(2201), + [aux_sym_cmd_identifier_token7] = ACTIONS(2201), + [aux_sym_cmd_identifier_token8] = ACTIONS(2199), + [aux_sym_cmd_identifier_token9] = ACTIONS(2199), + [aux_sym_cmd_identifier_token10] = ACTIONS(2201), + [aux_sym_cmd_identifier_token11] = ACTIONS(2201), + [aux_sym_cmd_identifier_token12] = ACTIONS(2199), + [aux_sym_cmd_identifier_token13] = ACTIONS(2199), + [aux_sym_cmd_identifier_token14] = ACTIONS(2199), + [aux_sym_cmd_identifier_token15] = ACTIONS(2199), + [aux_sym_cmd_identifier_token16] = ACTIONS(2201), + [aux_sym_cmd_identifier_token17] = ACTIONS(2201), + [aux_sym_cmd_identifier_token18] = ACTIONS(2201), + [aux_sym_cmd_identifier_token19] = ACTIONS(2201), + [aux_sym_cmd_identifier_token20] = ACTIONS(2201), + [aux_sym_cmd_identifier_token21] = ACTIONS(2201), + [aux_sym_cmd_identifier_token22] = ACTIONS(2201), + [aux_sym_cmd_identifier_token23] = ACTIONS(2201), + [aux_sym_cmd_identifier_token24] = ACTIONS(2201), + [aux_sym_cmd_identifier_token25] = ACTIONS(2201), + [aux_sym_cmd_identifier_token26] = ACTIONS(2201), + [aux_sym_cmd_identifier_token27] = ACTIONS(2201), + [aux_sym_cmd_identifier_token28] = ACTIONS(2201), + [aux_sym_cmd_identifier_token29] = ACTIONS(2201), + [aux_sym_cmd_identifier_token30] = ACTIONS(2201), + [aux_sym_cmd_identifier_token31] = ACTIONS(2201), + [aux_sym_cmd_identifier_token32] = ACTIONS(2201), + [aux_sym_cmd_identifier_token33] = ACTIONS(2201), + [aux_sym_cmd_identifier_token34] = ACTIONS(2199), + [aux_sym_cmd_identifier_token35] = ACTIONS(2201), + [aux_sym_cmd_identifier_token36] = ACTIONS(2201), + [aux_sym_cmd_identifier_token37] = ACTIONS(2201), + [aux_sym_cmd_identifier_token38] = ACTIONS(2199), + [aux_sym_cmd_identifier_token39] = ACTIONS(2201), + [aux_sym_cmd_identifier_token40] = ACTIONS(2201), + [anon_sym_def] = ACTIONS(2199), + [anon_sym_export_DASHenv] = ACTIONS(2199), + [anon_sym_extern] = ACTIONS(2199), + [anon_sym_module] = ACTIONS(2199), + [anon_sym_use] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_DOLLAR] = ACTIONS(2201), + [anon_sym_error] = ACTIONS(2199), + [anon_sym_DASH2] = ACTIONS(2199), + [anon_sym_break] = ACTIONS(2199), + [anon_sym_continue] = ACTIONS(2199), + [anon_sym_for] = ACTIONS(2199), + [anon_sym_in2] = ACTIONS(2199), + [anon_sym_loop] = ACTIONS(2199), + [anon_sym_make] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2199), + [anon_sym_do] = ACTIONS(2199), + [anon_sym_if] = ACTIONS(2199), + [anon_sym_else] = ACTIONS(2199), + [anon_sym_match] = ACTIONS(2199), + [anon_sym_RBRACE] = ACTIONS(2201), + [anon_sym_try] = ACTIONS(2199), + [anon_sym_catch] = ACTIONS(2199), + [anon_sym_return] = ACTIONS(2199), + [anon_sym_source] = ACTIONS(2199), + [anon_sym_source_DASHenv] = ACTIONS(2199), + [anon_sym_register] = ACTIONS(2199), + [anon_sym_hide] = ACTIONS(2199), + [anon_sym_hide_DASHenv] = ACTIONS(2199), + [anon_sym_overlay] = ACTIONS(2199), + [anon_sym_as] = ACTIONS(2199), + [anon_sym_LPAREN2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(2199), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2201), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2201), + [aux_sym__val_number_decimal_token1] = ACTIONS(2199), + [aux_sym__val_number_decimal_token2] = ACTIONS(2201), + [aux_sym__val_number_decimal_token3] = ACTIONS(2201), + [aux_sym__val_number_decimal_token4] = ACTIONS(2201), + [aux_sym__val_number_token1] = ACTIONS(2201), + [aux_sym__val_number_token2] = ACTIONS(2201), + [aux_sym__val_number_token3] = ACTIONS(2201), + [aux_sym__val_number_token4] = ACTIONS(2199), + [aux_sym__val_number_token5] = ACTIONS(2199), + [aux_sym__val_number_token6] = ACTIONS(2199), + [anon_sym_DQUOTE] = ACTIONS(2201), + [sym__str_single_quotes] = ACTIONS(2201), + [sym__str_back_ticks] = ACTIONS(2201), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2201), + }, + [606] = { + [sym__expr_parenthesized_immediate] = STATE(8152), + [sym_comment] = STATE(606), + [anon_sym_export] = ACTIONS(2207), + [anon_sym_alias] = ACTIONS(2207), + [anon_sym_let] = ACTIONS(2207), + [anon_sym_let_DASHenv] = ACTIONS(2207), + [anon_sym_mut] = ACTIONS(2207), + [anon_sym_const] = ACTIONS(2207), + [aux_sym_cmd_identifier_token1] = ACTIONS(2207), + [aux_sym_cmd_identifier_token2] = ACTIONS(2209), + [aux_sym_cmd_identifier_token3] = ACTIONS(2209), + [aux_sym_cmd_identifier_token4] = ACTIONS(2209), + [aux_sym_cmd_identifier_token5] = ACTIONS(2209), + [aux_sym_cmd_identifier_token6] = ACTIONS(2209), + [aux_sym_cmd_identifier_token7] = ACTIONS(2209), + [aux_sym_cmd_identifier_token8] = ACTIONS(2207), + [aux_sym_cmd_identifier_token9] = ACTIONS(2207), + [aux_sym_cmd_identifier_token10] = ACTIONS(2209), + [aux_sym_cmd_identifier_token11] = ACTIONS(2209), + [aux_sym_cmd_identifier_token12] = ACTIONS(2207), + [aux_sym_cmd_identifier_token13] = ACTIONS(2207), + [aux_sym_cmd_identifier_token14] = ACTIONS(2207), + [aux_sym_cmd_identifier_token15] = ACTIONS(2207), + [aux_sym_cmd_identifier_token16] = ACTIONS(2209), + [aux_sym_cmd_identifier_token17] = ACTIONS(2209), + [aux_sym_cmd_identifier_token18] = ACTIONS(2209), + [aux_sym_cmd_identifier_token19] = ACTIONS(2209), + [aux_sym_cmd_identifier_token20] = ACTIONS(2209), + [aux_sym_cmd_identifier_token21] = ACTIONS(2209), + [aux_sym_cmd_identifier_token22] = ACTIONS(2209), + [aux_sym_cmd_identifier_token23] = ACTIONS(2209), + [aux_sym_cmd_identifier_token24] = ACTIONS(2209), + [aux_sym_cmd_identifier_token25] = ACTIONS(2209), + [aux_sym_cmd_identifier_token26] = ACTIONS(2209), + [aux_sym_cmd_identifier_token27] = ACTIONS(2209), + [aux_sym_cmd_identifier_token28] = ACTIONS(2209), + [aux_sym_cmd_identifier_token29] = ACTIONS(2209), + [aux_sym_cmd_identifier_token30] = ACTIONS(2209), + [aux_sym_cmd_identifier_token31] = ACTIONS(2209), + [aux_sym_cmd_identifier_token32] = ACTIONS(2209), + [aux_sym_cmd_identifier_token33] = ACTIONS(2209), + [aux_sym_cmd_identifier_token34] = ACTIONS(2207), + [aux_sym_cmd_identifier_token35] = ACTIONS(2209), + [aux_sym_cmd_identifier_token36] = ACTIONS(2209), + [aux_sym_cmd_identifier_token37] = ACTIONS(2209), + [aux_sym_cmd_identifier_token38] = ACTIONS(2207), + [aux_sym_cmd_identifier_token39] = ACTIONS(2209), + [aux_sym_cmd_identifier_token40] = ACTIONS(2209), + [anon_sym_def] = ACTIONS(2207), + [anon_sym_export_DASHenv] = ACTIONS(2207), + [anon_sym_extern] = ACTIONS(2207), + [anon_sym_module] = ACTIONS(2207), + [anon_sym_use] = ACTIONS(2207), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_DOLLAR] = ACTIONS(2209), + [anon_sym_error] = ACTIONS(2207), + [anon_sym_DASH2] = ACTIONS(2207), + [anon_sym_break] = ACTIONS(2207), + [anon_sym_continue] = ACTIONS(2207), + [anon_sym_for] = ACTIONS(2207), + [anon_sym_in2] = ACTIONS(2207), + [anon_sym_loop] = ACTIONS(2207), + [anon_sym_make] = ACTIONS(2207), + [anon_sym_while] = ACTIONS(2207), + [anon_sym_do] = ACTIONS(2207), + [anon_sym_if] = ACTIONS(2207), + [anon_sym_else] = ACTIONS(2207), + [anon_sym_match] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2209), + [anon_sym_try] = ACTIONS(2207), + [anon_sym_catch] = ACTIONS(2207), + [anon_sym_return] = ACTIONS(2207), + [anon_sym_source] = ACTIONS(2207), + [anon_sym_source_DASHenv] = ACTIONS(2207), + [anon_sym_register] = ACTIONS(2207), + [anon_sym_hide] = ACTIONS(2207), + [anon_sym_hide_DASHenv] = ACTIONS(2207), + [anon_sym_overlay] = ACTIONS(2207), + [anon_sym_as] = ACTIONS(2207), + [anon_sym_LPAREN2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(2207), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2209), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2209), + [aux_sym__val_number_decimal_token1] = ACTIONS(2207), + [aux_sym__val_number_decimal_token2] = ACTIONS(2209), + [aux_sym__val_number_decimal_token3] = ACTIONS(2209), + [aux_sym__val_number_decimal_token4] = ACTIONS(2209), + [aux_sym__val_number_token1] = ACTIONS(2209), + [aux_sym__val_number_token2] = ACTIONS(2209), + [aux_sym__val_number_token3] = ACTIONS(2209), + [aux_sym__val_number_token4] = ACTIONS(2207), + [aux_sym__val_number_token5] = ACTIONS(2207), + [aux_sym__val_number_token6] = ACTIONS(2207), + [anon_sym_DQUOTE] = ACTIONS(2209), + [sym__str_single_quotes] = ACTIONS(2209), + [sym__str_back_ticks] = ACTIONS(2209), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2209), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2209), + }, + [607] = { + [sym__expr_parenthesized_immediate] = STATE(8152), + [sym_comment] = STATE(607), + [anon_sym_export] = ACTIONS(2211), + [anon_sym_alias] = ACTIONS(2211), + [anon_sym_let] = ACTIONS(2211), + [anon_sym_let_DASHenv] = ACTIONS(2211), + [anon_sym_mut] = ACTIONS(2211), + [anon_sym_const] = ACTIONS(2211), + [aux_sym_cmd_identifier_token1] = ACTIONS(2211), + [aux_sym_cmd_identifier_token2] = ACTIONS(2213), + [aux_sym_cmd_identifier_token3] = ACTIONS(2213), + [aux_sym_cmd_identifier_token4] = ACTIONS(2213), + [aux_sym_cmd_identifier_token5] = ACTIONS(2213), + [aux_sym_cmd_identifier_token6] = ACTIONS(2213), + [aux_sym_cmd_identifier_token7] = ACTIONS(2213), + [aux_sym_cmd_identifier_token8] = ACTIONS(2211), + [aux_sym_cmd_identifier_token9] = ACTIONS(2211), + [aux_sym_cmd_identifier_token10] = ACTIONS(2213), + [aux_sym_cmd_identifier_token11] = ACTIONS(2213), + [aux_sym_cmd_identifier_token12] = ACTIONS(2211), + [aux_sym_cmd_identifier_token13] = ACTIONS(2211), + [aux_sym_cmd_identifier_token14] = ACTIONS(2211), + [aux_sym_cmd_identifier_token15] = ACTIONS(2211), + [aux_sym_cmd_identifier_token16] = ACTIONS(2213), + [aux_sym_cmd_identifier_token17] = ACTIONS(2213), + [aux_sym_cmd_identifier_token18] = ACTIONS(2213), + [aux_sym_cmd_identifier_token19] = ACTIONS(2213), + [aux_sym_cmd_identifier_token20] = ACTIONS(2213), + [aux_sym_cmd_identifier_token21] = ACTIONS(2213), + [aux_sym_cmd_identifier_token22] = ACTIONS(2213), + [aux_sym_cmd_identifier_token23] = ACTIONS(2213), + [aux_sym_cmd_identifier_token24] = ACTIONS(2213), + [aux_sym_cmd_identifier_token25] = ACTIONS(2213), + [aux_sym_cmd_identifier_token26] = ACTIONS(2213), + [aux_sym_cmd_identifier_token27] = ACTIONS(2213), + [aux_sym_cmd_identifier_token28] = ACTIONS(2213), + [aux_sym_cmd_identifier_token29] = ACTIONS(2213), + [aux_sym_cmd_identifier_token30] = ACTIONS(2213), + [aux_sym_cmd_identifier_token31] = ACTIONS(2213), + [aux_sym_cmd_identifier_token32] = ACTIONS(2213), + [aux_sym_cmd_identifier_token33] = ACTIONS(2213), + [aux_sym_cmd_identifier_token34] = ACTIONS(2211), + [aux_sym_cmd_identifier_token35] = ACTIONS(2213), + [aux_sym_cmd_identifier_token36] = ACTIONS(2213), + [aux_sym_cmd_identifier_token37] = ACTIONS(2213), + [aux_sym_cmd_identifier_token38] = ACTIONS(2211), + [aux_sym_cmd_identifier_token39] = ACTIONS(2213), + [aux_sym_cmd_identifier_token40] = ACTIONS(2213), + [anon_sym_def] = ACTIONS(2211), + [anon_sym_export_DASHenv] = ACTIONS(2211), + [anon_sym_extern] = ACTIONS(2211), + [anon_sym_module] = ACTIONS(2211), + [anon_sym_use] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_DOLLAR] = ACTIONS(2213), + [anon_sym_error] = ACTIONS(2211), + [anon_sym_DASH2] = ACTIONS(2211), + [anon_sym_break] = ACTIONS(2211), + [anon_sym_continue] = ACTIONS(2211), + [anon_sym_for] = ACTIONS(2211), + [anon_sym_in2] = ACTIONS(2211), + [anon_sym_loop] = ACTIONS(2211), + [anon_sym_make] = ACTIONS(2211), + [anon_sym_while] = ACTIONS(2211), + [anon_sym_do] = ACTIONS(2211), + [anon_sym_if] = ACTIONS(2211), + [anon_sym_else] = ACTIONS(2211), + [anon_sym_match] = ACTIONS(2211), + [anon_sym_RBRACE] = ACTIONS(2213), + [anon_sym_try] = ACTIONS(2211), + [anon_sym_catch] = ACTIONS(2211), + [anon_sym_return] = ACTIONS(2211), + [anon_sym_source] = ACTIONS(2211), + [anon_sym_source_DASHenv] = ACTIONS(2211), + [anon_sym_register] = ACTIONS(2211), + [anon_sym_hide] = ACTIONS(2211), + [anon_sym_hide_DASHenv] = ACTIONS(2211), + [anon_sym_overlay] = ACTIONS(2211), + [anon_sym_as] = ACTIONS(2211), + [anon_sym_LPAREN2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(2211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2213), + [aux_sym__val_number_decimal_token1] = ACTIONS(2211), + [aux_sym__val_number_decimal_token2] = ACTIONS(2213), + [aux_sym__val_number_decimal_token3] = ACTIONS(2213), + [aux_sym__val_number_decimal_token4] = ACTIONS(2213), + [aux_sym__val_number_token1] = ACTIONS(2213), + [aux_sym__val_number_token2] = ACTIONS(2213), + [aux_sym__val_number_token3] = ACTIONS(2213), + [aux_sym__val_number_token4] = ACTIONS(2211), + [aux_sym__val_number_token5] = ACTIONS(2211), + [aux_sym__val_number_token6] = ACTIONS(2211), + [anon_sym_DQUOTE] = ACTIONS(2213), + [sym__str_single_quotes] = ACTIONS(2213), + [sym__str_back_ticks] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2213), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2213), + }, [608] = { + [sym__expr_parenthesized_immediate] = STATE(8152), [sym_comment] = STATE(608), - [anon_sym_export] = ACTIONS(2337), - [anon_sym_alias] = ACTIONS(2337), - [anon_sym_let] = ACTIONS(2337), - [anon_sym_let_DASHenv] = ACTIONS(2337), - [anon_sym_mut] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2337), - [aux_sym_cmd_identifier_token1] = ACTIONS(2337), - [aux_sym_cmd_identifier_token2] = ACTIONS(2337), - [aux_sym_cmd_identifier_token3] = ACTIONS(2337), - [aux_sym_cmd_identifier_token4] = ACTIONS(2337), - [aux_sym_cmd_identifier_token5] = ACTIONS(2337), - [aux_sym_cmd_identifier_token6] = ACTIONS(2337), - [aux_sym_cmd_identifier_token7] = ACTIONS(2337), - [aux_sym_cmd_identifier_token8] = ACTIONS(2337), - [aux_sym_cmd_identifier_token9] = ACTIONS(2337), - [aux_sym_cmd_identifier_token10] = ACTIONS(2337), - [aux_sym_cmd_identifier_token11] = ACTIONS(2337), - [aux_sym_cmd_identifier_token12] = ACTIONS(2337), - [aux_sym_cmd_identifier_token13] = ACTIONS(2337), - [aux_sym_cmd_identifier_token14] = ACTIONS(2337), - [aux_sym_cmd_identifier_token15] = ACTIONS(2337), - [aux_sym_cmd_identifier_token16] = ACTIONS(2337), - [aux_sym_cmd_identifier_token17] = ACTIONS(2337), - [aux_sym_cmd_identifier_token18] = ACTIONS(2337), - [aux_sym_cmd_identifier_token19] = ACTIONS(2337), - [aux_sym_cmd_identifier_token20] = ACTIONS(2337), - [aux_sym_cmd_identifier_token21] = ACTIONS(2337), - [aux_sym_cmd_identifier_token22] = ACTIONS(2337), - [aux_sym_cmd_identifier_token23] = ACTIONS(2337), - [aux_sym_cmd_identifier_token24] = ACTIONS(2337), - [aux_sym_cmd_identifier_token25] = ACTIONS(2337), - [aux_sym_cmd_identifier_token26] = ACTIONS(2337), - [aux_sym_cmd_identifier_token27] = ACTIONS(2337), - [aux_sym_cmd_identifier_token28] = ACTIONS(2337), - [aux_sym_cmd_identifier_token29] = ACTIONS(2337), - [aux_sym_cmd_identifier_token30] = ACTIONS(2337), - [aux_sym_cmd_identifier_token31] = ACTIONS(2337), - [aux_sym_cmd_identifier_token32] = ACTIONS(2337), - [aux_sym_cmd_identifier_token33] = ACTIONS(2337), - [aux_sym_cmd_identifier_token34] = ACTIONS(2337), - [aux_sym_cmd_identifier_token35] = ACTIONS(2337), - [aux_sym_cmd_identifier_token36] = ACTIONS(2337), - [aux_sym_cmd_identifier_token37] = ACTIONS(2337), - [aux_sym_cmd_identifier_token38] = ACTIONS(2337), - [aux_sym_cmd_identifier_token39] = ACTIONS(2337), - [aux_sym_cmd_identifier_token40] = ACTIONS(2337), - [anon_sym_def] = ACTIONS(2337), - [anon_sym_export_DASHenv] = ACTIONS(2337), - [anon_sym_extern] = ACTIONS(2337), - [anon_sym_module] = ACTIONS(2337), - [anon_sym_use] = ACTIONS(2337), - [anon_sym_LPAREN] = ACTIONS(2337), - [anon_sym_DOLLAR] = ACTIONS(2337), - [anon_sym_error] = ACTIONS(2337), - [anon_sym_DASH2] = ACTIONS(2337), - [anon_sym_break] = ACTIONS(2337), - [anon_sym_continue] = ACTIONS(2337), - [anon_sym_for] = ACTIONS(2337), - [anon_sym_in2] = ACTIONS(2337), - [anon_sym_loop] = ACTIONS(2337), - [anon_sym_make] = ACTIONS(2337), - [anon_sym_while] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(2337), - [anon_sym_if] = ACTIONS(2337), - [anon_sym_else] = ACTIONS(2337), - [anon_sym_match] = ACTIONS(2337), - [anon_sym_RBRACE] = ACTIONS(2337), - [anon_sym_try] = ACTIONS(2337), - [anon_sym_catch] = ACTIONS(2337), - [anon_sym_return] = ACTIONS(2337), - [anon_sym_source] = ACTIONS(2337), - [anon_sym_source_DASHenv] = ACTIONS(2337), - [anon_sym_register] = ACTIONS(2337), - [anon_sym_hide] = ACTIONS(2337), - [anon_sym_hide_DASHenv] = ACTIONS(2337), - [anon_sym_overlay] = ACTIONS(2337), - [anon_sym_as] = ACTIONS(2337), - [anon_sym_PLUS2] = ACTIONS(2337), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2337), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2337), - [aux_sym__val_number_decimal_token1] = ACTIONS(2337), - [aux_sym__val_number_decimal_token2] = ACTIONS(2337), - [aux_sym__val_number_decimal_token3] = ACTIONS(2337), - [aux_sym__val_number_decimal_token4] = ACTIONS(2337), - [aux_sym__val_number_token1] = ACTIONS(2337), - [aux_sym__val_number_token2] = ACTIONS(2337), - [aux_sym__val_number_token3] = ACTIONS(2337), - [aux_sym__val_number_token4] = ACTIONS(2337), - [aux_sym__val_number_token5] = ACTIONS(2337), - [aux_sym__val_number_token6] = ACTIONS(2337), - [anon_sym_LBRACK2] = ACTIONS(2339), - [anon_sym_DQUOTE] = ACTIONS(2337), - [sym__str_single_quotes] = ACTIONS(2337), - [sym__str_back_ticks] = ACTIONS(2337), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2337), - [sym__entry_separator] = ACTIONS(2341), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2341), + [anon_sym_export] = ACTIONS(2215), + [anon_sym_alias] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_let_DASHenv] = ACTIONS(2215), + [anon_sym_mut] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [aux_sym_cmd_identifier_token1] = ACTIONS(2215), + [aux_sym_cmd_identifier_token2] = ACTIONS(2217), + [aux_sym_cmd_identifier_token3] = ACTIONS(2217), + [aux_sym_cmd_identifier_token4] = ACTIONS(2217), + [aux_sym_cmd_identifier_token5] = ACTIONS(2217), + [aux_sym_cmd_identifier_token6] = ACTIONS(2217), + [aux_sym_cmd_identifier_token7] = ACTIONS(2217), + [aux_sym_cmd_identifier_token8] = ACTIONS(2215), + [aux_sym_cmd_identifier_token9] = ACTIONS(2215), + [aux_sym_cmd_identifier_token10] = ACTIONS(2217), + [aux_sym_cmd_identifier_token11] = ACTIONS(2217), + [aux_sym_cmd_identifier_token12] = ACTIONS(2215), + [aux_sym_cmd_identifier_token13] = ACTIONS(2215), + [aux_sym_cmd_identifier_token14] = ACTIONS(2215), + [aux_sym_cmd_identifier_token15] = ACTIONS(2215), + [aux_sym_cmd_identifier_token16] = ACTIONS(2217), + [aux_sym_cmd_identifier_token17] = ACTIONS(2217), + [aux_sym_cmd_identifier_token18] = ACTIONS(2217), + [aux_sym_cmd_identifier_token19] = ACTIONS(2217), + [aux_sym_cmd_identifier_token20] = ACTIONS(2217), + [aux_sym_cmd_identifier_token21] = ACTIONS(2217), + [aux_sym_cmd_identifier_token22] = ACTIONS(2217), + [aux_sym_cmd_identifier_token23] = ACTIONS(2217), + [aux_sym_cmd_identifier_token24] = ACTIONS(2217), + [aux_sym_cmd_identifier_token25] = ACTIONS(2217), + [aux_sym_cmd_identifier_token26] = ACTIONS(2217), + [aux_sym_cmd_identifier_token27] = ACTIONS(2217), + [aux_sym_cmd_identifier_token28] = ACTIONS(2217), + [aux_sym_cmd_identifier_token29] = ACTIONS(2217), + [aux_sym_cmd_identifier_token30] = ACTIONS(2217), + [aux_sym_cmd_identifier_token31] = ACTIONS(2217), + [aux_sym_cmd_identifier_token32] = ACTIONS(2217), + [aux_sym_cmd_identifier_token33] = ACTIONS(2217), + [aux_sym_cmd_identifier_token34] = ACTIONS(2215), + [aux_sym_cmd_identifier_token35] = ACTIONS(2217), + [aux_sym_cmd_identifier_token36] = ACTIONS(2217), + [aux_sym_cmd_identifier_token37] = ACTIONS(2217), + [aux_sym_cmd_identifier_token38] = ACTIONS(2215), + [aux_sym_cmd_identifier_token39] = ACTIONS(2217), + [aux_sym_cmd_identifier_token40] = ACTIONS(2217), + [anon_sym_def] = ACTIONS(2215), + [anon_sym_export_DASHenv] = ACTIONS(2215), + [anon_sym_extern] = ACTIONS(2215), + [anon_sym_module] = ACTIONS(2215), + [anon_sym_use] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_DOLLAR] = ACTIONS(2217), + [anon_sym_error] = ACTIONS(2215), + [anon_sym_DASH2] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_in2] = ACTIONS(2215), + [anon_sym_loop] = ACTIONS(2215), + [anon_sym_make] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [anon_sym_do] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_else] = ACTIONS(2215), + [anon_sym_match] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2217), + [anon_sym_try] = ACTIONS(2215), + [anon_sym_catch] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_source] = ACTIONS(2215), + [anon_sym_source_DASHenv] = ACTIONS(2215), + [anon_sym_register] = ACTIONS(2215), + [anon_sym_hide] = ACTIONS(2215), + [anon_sym_hide_DASHenv] = ACTIONS(2215), + [anon_sym_overlay] = ACTIONS(2215), + [anon_sym_as] = ACTIONS(2215), + [anon_sym_LPAREN2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(2215), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2217), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2217), + [aux_sym__val_number_decimal_token1] = ACTIONS(2215), + [aux_sym__val_number_decimal_token2] = ACTIONS(2217), + [aux_sym__val_number_decimal_token3] = ACTIONS(2217), + [aux_sym__val_number_decimal_token4] = ACTIONS(2217), + [aux_sym__val_number_token1] = ACTIONS(2217), + [aux_sym__val_number_token2] = ACTIONS(2217), + [aux_sym__val_number_token3] = ACTIONS(2217), + [aux_sym__val_number_token4] = ACTIONS(2215), + [aux_sym__val_number_token5] = ACTIONS(2215), + [aux_sym__val_number_token6] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2217), + [sym__str_single_quotes] = ACTIONS(2217), + [sym__str_back_ticks] = ACTIONS(2217), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2217), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2217), }, [609] = { [sym_comment] = STATE(609), - [anon_sym_export] = ACTIONS(1878), - [anon_sym_alias] = ACTIONS(1878), - [anon_sym_let] = ACTIONS(1878), - [anon_sym_let_DASHenv] = ACTIONS(1878), - [anon_sym_mut] = ACTIONS(1878), - [anon_sym_const] = ACTIONS(1878), - [aux_sym_cmd_identifier_token1] = ACTIONS(1878), - [aux_sym_cmd_identifier_token2] = ACTIONS(1886), - [aux_sym_cmd_identifier_token3] = ACTIONS(1886), - [aux_sym_cmd_identifier_token4] = ACTIONS(1886), - [aux_sym_cmd_identifier_token5] = ACTIONS(1886), - [aux_sym_cmd_identifier_token6] = ACTIONS(1886), - [aux_sym_cmd_identifier_token7] = ACTIONS(1886), - [aux_sym_cmd_identifier_token8] = ACTIONS(1878), - [aux_sym_cmd_identifier_token9] = ACTIONS(1878), - [aux_sym_cmd_identifier_token10] = ACTIONS(1886), - [aux_sym_cmd_identifier_token11] = ACTIONS(1886), - [aux_sym_cmd_identifier_token12] = ACTIONS(1878), - [aux_sym_cmd_identifier_token13] = ACTIONS(1878), - [aux_sym_cmd_identifier_token14] = ACTIONS(1878), - [aux_sym_cmd_identifier_token15] = ACTIONS(1878), - [aux_sym_cmd_identifier_token16] = ACTIONS(1886), - [aux_sym_cmd_identifier_token17] = ACTIONS(1886), - [aux_sym_cmd_identifier_token18] = ACTIONS(1886), - [aux_sym_cmd_identifier_token19] = ACTIONS(1886), - [aux_sym_cmd_identifier_token20] = ACTIONS(1886), - [aux_sym_cmd_identifier_token21] = ACTIONS(1886), - [aux_sym_cmd_identifier_token22] = ACTIONS(1886), - [aux_sym_cmd_identifier_token23] = ACTIONS(1886), - [aux_sym_cmd_identifier_token24] = ACTIONS(1886), - [aux_sym_cmd_identifier_token25] = ACTIONS(1886), - [aux_sym_cmd_identifier_token26] = ACTIONS(1886), - [aux_sym_cmd_identifier_token27] = ACTIONS(1886), - [aux_sym_cmd_identifier_token28] = ACTIONS(1886), - [aux_sym_cmd_identifier_token29] = ACTIONS(1886), - [aux_sym_cmd_identifier_token30] = ACTIONS(1886), - [aux_sym_cmd_identifier_token31] = ACTIONS(1886), - [aux_sym_cmd_identifier_token32] = ACTIONS(1886), - [aux_sym_cmd_identifier_token33] = ACTIONS(1886), - [aux_sym_cmd_identifier_token34] = ACTIONS(1878), - [aux_sym_cmd_identifier_token35] = ACTIONS(1886), - [aux_sym_cmd_identifier_token36] = ACTIONS(1886), - [aux_sym_cmd_identifier_token37] = ACTIONS(1886), - [aux_sym_cmd_identifier_token38] = ACTIONS(1878), - [aux_sym_cmd_identifier_token39] = ACTIONS(1886), - [aux_sym_cmd_identifier_token40] = ACTIONS(1886), - [anon_sym_def] = ACTIONS(1878), - [anon_sym_export_DASHenv] = ACTIONS(1878), - [anon_sym_extern] = ACTIONS(1878), - [anon_sym_module] = ACTIONS(1878), - [anon_sym_use] = ACTIONS(1878), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_DOLLAR] = ACTIONS(1886), - [anon_sym_error] = ACTIONS(1878), - [anon_sym_DASH2] = ACTIONS(1878), - [anon_sym_break] = ACTIONS(1878), - [anon_sym_continue] = ACTIONS(1878), - [anon_sym_for] = ACTIONS(1878), - [anon_sym_in2] = ACTIONS(1878), - [anon_sym_loop] = ACTIONS(1878), - [anon_sym_make] = ACTIONS(1878), - [anon_sym_while] = ACTIONS(1878), - [anon_sym_do] = ACTIONS(1878), - [anon_sym_if] = ACTIONS(1878), - [anon_sym_else] = ACTIONS(1878), - [anon_sym_match] = ACTIONS(1878), - [anon_sym_RBRACE] = ACTIONS(1886), - [anon_sym_try] = ACTIONS(1878), - [anon_sym_catch] = ACTIONS(1878), - [anon_sym_return] = ACTIONS(1878), - [anon_sym_source] = ACTIONS(1878), - [anon_sym_source_DASHenv] = ACTIONS(1878), - [anon_sym_register] = ACTIONS(1878), - [anon_sym_hide] = ACTIONS(1878), - [anon_sym_hide_DASHenv] = ACTIONS(1878), - [anon_sym_overlay] = ACTIONS(1878), - [anon_sym_as] = ACTIONS(1878), - [anon_sym_LPAREN2] = ACTIONS(1880), - [anon_sym_PLUS2] = ACTIONS(1878), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1886), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1886), - [aux_sym__val_number_decimal_token1] = ACTIONS(1878), - [aux_sym__val_number_decimal_token2] = ACTIONS(1886), - [aux_sym__val_number_decimal_token3] = ACTIONS(1886), - [aux_sym__val_number_decimal_token4] = ACTIONS(1886), - [aux_sym__val_number_token1] = ACTIONS(1886), - [aux_sym__val_number_token2] = ACTIONS(1886), - [aux_sym__val_number_token3] = ACTIONS(1886), - [aux_sym__val_number_token4] = ACTIONS(1878), - [aux_sym__val_number_token5] = ACTIONS(1878), - [aux_sym__val_number_token6] = ACTIONS(1878), - [anon_sym_DQUOTE] = ACTIONS(1886), - [sym__str_single_quotes] = ACTIONS(1886), - [sym__str_back_ticks] = ACTIONS(1886), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1886), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1888), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1886), + [anon_sym_export] = ACTIONS(1765), + [anon_sym_alias] = ACTIONS(1765), + [anon_sym_let] = ACTIONS(1765), + [anon_sym_let_DASHenv] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [aux_sym_cmd_identifier_token1] = ACTIONS(1765), + [aux_sym_cmd_identifier_token2] = ACTIONS(1767), + [aux_sym_cmd_identifier_token3] = ACTIONS(1767), + [aux_sym_cmd_identifier_token4] = ACTIONS(1767), + [aux_sym_cmd_identifier_token5] = ACTIONS(1767), + [aux_sym_cmd_identifier_token6] = ACTIONS(1767), + [aux_sym_cmd_identifier_token7] = ACTIONS(1767), + [aux_sym_cmd_identifier_token8] = ACTIONS(1765), + [aux_sym_cmd_identifier_token9] = ACTIONS(1765), + [aux_sym_cmd_identifier_token10] = ACTIONS(1767), + [aux_sym_cmd_identifier_token11] = ACTIONS(1767), + [aux_sym_cmd_identifier_token12] = ACTIONS(1765), + [aux_sym_cmd_identifier_token13] = ACTIONS(1765), + [aux_sym_cmd_identifier_token14] = ACTIONS(1765), + [aux_sym_cmd_identifier_token15] = ACTIONS(1765), + [aux_sym_cmd_identifier_token16] = ACTIONS(1767), + [aux_sym_cmd_identifier_token17] = ACTIONS(1767), + [aux_sym_cmd_identifier_token18] = ACTIONS(1767), + [aux_sym_cmd_identifier_token19] = ACTIONS(1767), + [aux_sym_cmd_identifier_token20] = ACTIONS(1767), + [aux_sym_cmd_identifier_token21] = ACTIONS(1767), + [aux_sym_cmd_identifier_token22] = ACTIONS(1767), + [aux_sym_cmd_identifier_token23] = ACTIONS(1767), + [aux_sym_cmd_identifier_token24] = ACTIONS(1767), + [aux_sym_cmd_identifier_token25] = ACTIONS(1767), + [aux_sym_cmd_identifier_token26] = ACTIONS(1767), + [aux_sym_cmd_identifier_token27] = ACTIONS(1767), + [aux_sym_cmd_identifier_token28] = ACTIONS(1767), + [aux_sym_cmd_identifier_token29] = ACTIONS(1767), + [aux_sym_cmd_identifier_token30] = ACTIONS(1767), + [aux_sym_cmd_identifier_token31] = ACTIONS(1767), + [aux_sym_cmd_identifier_token32] = ACTIONS(1767), + [aux_sym_cmd_identifier_token33] = ACTIONS(1767), + [aux_sym_cmd_identifier_token34] = ACTIONS(1765), + [aux_sym_cmd_identifier_token35] = ACTIONS(1767), + [aux_sym_cmd_identifier_token36] = ACTIONS(1767), + [aux_sym_cmd_identifier_token37] = ACTIONS(1767), + [aux_sym_cmd_identifier_token38] = ACTIONS(1765), + [aux_sym_cmd_identifier_token39] = ACTIONS(1767), + [aux_sym_cmd_identifier_token40] = ACTIONS(1767), + [anon_sym_def] = ACTIONS(1765), + [anon_sym_export_DASHenv] = ACTIONS(1765), + [anon_sym_extern] = ACTIONS(1765), + [anon_sym_module] = ACTIONS(1765), + [anon_sym_use] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_DOLLAR] = ACTIONS(1767), + [anon_sym_error] = ACTIONS(1765), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_in2] = ACTIONS(1765), + [anon_sym_loop] = ACTIONS(1765), + [anon_sym_make] = ACTIONS(1765), + [anon_sym_while] = ACTIONS(1765), + [anon_sym_do] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_else] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_try] = ACTIONS(1765), + [anon_sym_catch] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_source] = ACTIONS(1765), + [anon_sym_source_DASHenv] = ACTIONS(1765), + [anon_sym_register] = ACTIONS(1765), + [anon_sym_hide] = ACTIONS(1765), + [anon_sym_hide_DASHenv] = ACTIONS(1765), + [anon_sym_overlay] = ACTIONS(1765), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1767), + [anon_sym_PLUS2] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1765), + [aux_sym__val_number_token5] = ACTIONS(1765), + [aux_sym__val_number_token6] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1767), }, [610] = { [sym_comment] = STATE(610), - [anon_sym_export] = ACTIONS(2106), - [anon_sym_alias] = ACTIONS(2106), - [anon_sym_let] = ACTIONS(2106), - [anon_sym_let_DASHenv] = ACTIONS(2106), - [anon_sym_mut] = ACTIONS(2106), - [anon_sym_const] = ACTIONS(2106), - [aux_sym_cmd_identifier_token1] = ACTIONS(2106), - [aux_sym_cmd_identifier_token2] = ACTIONS(2106), - [aux_sym_cmd_identifier_token3] = ACTIONS(2106), - [aux_sym_cmd_identifier_token4] = ACTIONS(2106), - [aux_sym_cmd_identifier_token5] = ACTIONS(2106), - [aux_sym_cmd_identifier_token6] = ACTIONS(2106), - [aux_sym_cmd_identifier_token7] = ACTIONS(2106), - [aux_sym_cmd_identifier_token8] = ACTIONS(2106), - [aux_sym_cmd_identifier_token9] = ACTIONS(2106), - [aux_sym_cmd_identifier_token10] = ACTIONS(2106), - [aux_sym_cmd_identifier_token11] = ACTIONS(2106), - [aux_sym_cmd_identifier_token12] = ACTIONS(2106), - [aux_sym_cmd_identifier_token13] = ACTIONS(2106), - [aux_sym_cmd_identifier_token14] = ACTIONS(2106), - [aux_sym_cmd_identifier_token15] = ACTIONS(2106), - [aux_sym_cmd_identifier_token16] = ACTIONS(2106), - [aux_sym_cmd_identifier_token17] = ACTIONS(2106), - [aux_sym_cmd_identifier_token18] = ACTIONS(2106), - [aux_sym_cmd_identifier_token19] = ACTIONS(2106), - [aux_sym_cmd_identifier_token20] = ACTIONS(2106), - [aux_sym_cmd_identifier_token21] = ACTIONS(2106), - [aux_sym_cmd_identifier_token22] = ACTIONS(2106), - [aux_sym_cmd_identifier_token23] = ACTIONS(2106), - [aux_sym_cmd_identifier_token24] = ACTIONS(2106), - [aux_sym_cmd_identifier_token25] = ACTIONS(2106), - [aux_sym_cmd_identifier_token26] = ACTIONS(2106), - [aux_sym_cmd_identifier_token27] = ACTIONS(2106), - [aux_sym_cmd_identifier_token28] = ACTIONS(2106), - [aux_sym_cmd_identifier_token29] = ACTIONS(2106), - [aux_sym_cmd_identifier_token30] = ACTIONS(2106), - [aux_sym_cmd_identifier_token31] = ACTIONS(2106), - [aux_sym_cmd_identifier_token32] = ACTIONS(2106), - [aux_sym_cmd_identifier_token33] = ACTIONS(2106), - [aux_sym_cmd_identifier_token34] = ACTIONS(2106), - [aux_sym_cmd_identifier_token35] = ACTIONS(2106), - [aux_sym_cmd_identifier_token36] = ACTIONS(2106), - [aux_sym_cmd_identifier_token37] = ACTIONS(2106), - [aux_sym_cmd_identifier_token38] = ACTIONS(2106), - [aux_sym_cmd_identifier_token39] = ACTIONS(2106), - [aux_sym_cmd_identifier_token40] = ACTIONS(2106), - [anon_sym_def] = ACTIONS(2106), - [anon_sym_export_DASHenv] = ACTIONS(2106), - [anon_sym_extern] = ACTIONS(2106), - [anon_sym_module] = ACTIONS(2106), - [anon_sym_use] = ACTIONS(2106), - [anon_sym_LPAREN] = ACTIONS(2106), - [anon_sym_DOLLAR] = ACTIONS(2106), - [anon_sym_error] = ACTIONS(2106), - [anon_sym_DASH2] = ACTIONS(2106), - [anon_sym_break] = ACTIONS(2106), - [anon_sym_continue] = ACTIONS(2106), - [anon_sym_for] = ACTIONS(2106), - [anon_sym_in2] = ACTIONS(2106), - [anon_sym_loop] = ACTIONS(2106), - [anon_sym_make] = ACTIONS(2106), - [anon_sym_while] = ACTIONS(2106), - [anon_sym_do] = ACTIONS(2106), - [anon_sym_if] = ACTIONS(2106), - [anon_sym_else] = ACTIONS(2106), - [anon_sym_match] = ACTIONS(2106), - [anon_sym_RBRACE] = ACTIONS(2106), - [anon_sym_try] = ACTIONS(2106), - [anon_sym_catch] = ACTIONS(2106), - [anon_sym_return] = ACTIONS(2106), - [anon_sym_source] = ACTIONS(2106), - [anon_sym_source_DASHenv] = ACTIONS(2106), - [anon_sym_register] = ACTIONS(2106), - [anon_sym_hide] = ACTIONS(2106), - [anon_sym_hide_DASHenv] = ACTIONS(2106), - [anon_sym_overlay] = ACTIONS(2106), - [anon_sym_as] = ACTIONS(2106), - [anon_sym_PLUS2] = ACTIONS(2106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2106), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2106), - [aux_sym__val_number_decimal_token1] = ACTIONS(2106), - [aux_sym__val_number_decimal_token2] = ACTIONS(2106), - [aux_sym__val_number_decimal_token3] = ACTIONS(2106), - [aux_sym__val_number_decimal_token4] = ACTIONS(2106), - [aux_sym__val_number_token1] = ACTIONS(2106), - [aux_sym__val_number_token2] = ACTIONS(2106), - [aux_sym__val_number_token3] = ACTIONS(2106), - [aux_sym__val_number_token4] = ACTIONS(2106), - [aux_sym__val_number_token5] = ACTIONS(2106), - [aux_sym__val_number_token6] = ACTIONS(2106), - [anon_sym_DQUOTE] = ACTIONS(2106), - [sym__str_single_quotes] = ACTIONS(2106), - [sym__str_back_ticks] = ACTIONS(2106), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2106), - [sym__entry_separator] = ACTIONS(2108), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2108), + [anon_sym_export] = ACTIONS(1707), + [anon_sym_alias] = ACTIONS(1707), + [anon_sym_let] = ACTIONS(1707), + [anon_sym_let_DASHenv] = ACTIONS(1707), + [anon_sym_mut] = ACTIONS(1707), + [anon_sym_const] = ACTIONS(1707), + [aux_sym_cmd_identifier_token1] = ACTIONS(1707), + [aux_sym_cmd_identifier_token2] = ACTIONS(1719), + [aux_sym_cmd_identifier_token3] = ACTIONS(1719), + [aux_sym_cmd_identifier_token4] = ACTIONS(1719), + [aux_sym_cmd_identifier_token5] = ACTIONS(1719), + [aux_sym_cmd_identifier_token6] = ACTIONS(1719), + [aux_sym_cmd_identifier_token7] = ACTIONS(1719), + [aux_sym_cmd_identifier_token8] = ACTIONS(1707), + [aux_sym_cmd_identifier_token9] = ACTIONS(1707), + [aux_sym_cmd_identifier_token10] = ACTIONS(1719), + [aux_sym_cmd_identifier_token11] = ACTIONS(1719), + [aux_sym_cmd_identifier_token12] = ACTIONS(1707), + [aux_sym_cmd_identifier_token13] = ACTIONS(1707), + [aux_sym_cmd_identifier_token14] = ACTIONS(1707), + [aux_sym_cmd_identifier_token15] = ACTIONS(1707), + [aux_sym_cmd_identifier_token16] = ACTIONS(1719), + [aux_sym_cmd_identifier_token17] = ACTIONS(1719), + [aux_sym_cmd_identifier_token18] = ACTIONS(1719), + [aux_sym_cmd_identifier_token19] = ACTIONS(1719), + [aux_sym_cmd_identifier_token20] = ACTIONS(1719), + [aux_sym_cmd_identifier_token21] = ACTIONS(1719), + [aux_sym_cmd_identifier_token22] = ACTIONS(1719), + [aux_sym_cmd_identifier_token23] = ACTIONS(1719), + [aux_sym_cmd_identifier_token24] = ACTIONS(1719), + [aux_sym_cmd_identifier_token25] = ACTIONS(1719), + [aux_sym_cmd_identifier_token26] = ACTIONS(1719), + [aux_sym_cmd_identifier_token27] = ACTIONS(1719), + [aux_sym_cmd_identifier_token28] = ACTIONS(1719), + [aux_sym_cmd_identifier_token29] = ACTIONS(1719), + [aux_sym_cmd_identifier_token30] = ACTIONS(1719), + [aux_sym_cmd_identifier_token31] = ACTIONS(1719), + [aux_sym_cmd_identifier_token32] = ACTIONS(1719), + [aux_sym_cmd_identifier_token33] = ACTIONS(1719), + [aux_sym_cmd_identifier_token34] = ACTIONS(1707), + [aux_sym_cmd_identifier_token35] = ACTIONS(1719), + [aux_sym_cmd_identifier_token36] = ACTIONS(1719), + [aux_sym_cmd_identifier_token37] = ACTIONS(1719), + [aux_sym_cmd_identifier_token38] = ACTIONS(1707), + [aux_sym_cmd_identifier_token39] = ACTIONS(1719), + [aux_sym_cmd_identifier_token40] = ACTIONS(1719), + [anon_sym_def] = ACTIONS(1707), + [anon_sym_export_DASHenv] = ACTIONS(1707), + [anon_sym_extern] = ACTIONS(1707), + [anon_sym_module] = ACTIONS(1707), + [anon_sym_use] = ACTIONS(1707), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR] = ACTIONS(1719), + [anon_sym_error] = ACTIONS(1707), + [anon_sym_DASH2] = ACTIONS(1707), + [anon_sym_break] = ACTIONS(1707), + [anon_sym_continue] = ACTIONS(1707), + [anon_sym_for] = ACTIONS(1707), + [anon_sym_in2] = ACTIONS(1707), + [anon_sym_loop] = ACTIONS(1707), + [anon_sym_make] = ACTIONS(1707), + [anon_sym_while] = ACTIONS(1707), + [anon_sym_do] = ACTIONS(1707), + [anon_sym_if] = ACTIONS(1707), + [anon_sym_else] = ACTIONS(1707), + [anon_sym_match] = ACTIONS(1707), + [anon_sym_RBRACE] = ACTIONS(1719), + [anon_sym_try] = ACTIONS(1707), + [anon_sym_catch] = ACTIONS(1707), + [anon_sym_return] = ACTIONS(1707), + [anon_sym_source] = ACTIONS(1707), + [anon_sym_source_DASHenv] = ACTIONS(1707), + [anon_sym_register] = ACTIONS(1707), + [anon_sym_hide] = ACTIONS(1707), + [anon_sym_hide_DASHenv] = ACTIONS(1707), + [anon_sym_overlay] = ACTIONS(1707), + [anon_sym_as] = ACTIONS(1707), + [anon_sym_PLUS2] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1719), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1719), + [aux_sym__val_number_decimal_token1] = ACTIONS(1707), + [aux_sym__val_number_decimal_token2] = ACTIONS(1719), + [aux_sym__val_number_decimal_token3] = ACTIONS(1719), + [aux_sym__val_number_decimal_token4] = ACTIONS(1719), + [aux_sym__val_number_token1] = ACTIONS(1719), + [aux_sym__val_number_token2] = ACTIONS(1719), + [aux_sym__val_number_token3] = ACTIONS(1719), + [aux_sym__val_number_token4] = ACTIONS(1707), + [aux_sym__val_number_token5] = ACTIONS(1707), + [aux_sym__val_number_token6] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1719), + [sym__str_single_quotes] = ACTIONS(1719), + [sym__str_back_ticks] = ACTIONS(1719), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1719), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1781), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1719), }, [611] = { [sym_comment] = STATE(611), + [anon_sym_export] = ACTIONS(2034), + [anon_sym_alias] = ACTIONS(2034), + [anon_sym_let] = ACTIONS(2034), + [anon_sym_let_DASHenv] = ACTIONS(2034), + [anon_sym_mut] = ACTIONS(2034), + [anon_sym_const] = ACTIONS(2034), + [aux_sym_cmd_identifier_token1] = ACTIONS(2034), + [aux_sym_cmd_identifier_token2] = ACTIONS(2034), + [aux_sym_cmd_identifier_token3] = ACTIONS(2034), + [aux_sym_cmd_identifier_token4] = ACTIONS(2034), + [aux_sym_cmd_identifier_token5] = ACTIONS(2034), + [aux_sym_cmd_identifier_token6] = ACTIONS(2034), + [aux_sym_cmd_identifier_token7] = ACTIONS(2034), + [aux_sym_cmd_identifier_token8] = ACTIONS(2034), + [aux_sym_cmd_identifier_token9] = ACTIONS(2034), + [aux_sym_cmd_identifier_token10] = ACTIONS(2034), + [aux_sym_cmd_identifier_token11] = ACTIONS(2034), + [aux_sym_cmd_identifier_token12] = ACTIONS(2034), + [aux_sym_cmd_identifier_token13] = ACTIONS(2034), + [aux_sym_cmd_identifier_token14] = ACTIONS(2034), + [aux_sym_cmd_identifier_token15] = ACTIONS(2034), + [aux_sym_cmd_identifier_token16] = ACTIONS(2034), + [aux_sym_cmd_identifier_token17] = ACTIONS(2034), + [aux_sym_cmd_identifier_token18] = ACTIONS(2034), + [aux_sym_cmd_identifier_token19] = ACTIONS(2034), + [aux_sym_cmd_identifier_token20] = ACTIONS(2034), + [aux_sym_cmd_identifier_token21] = ACTIONS(2034), + [aux_sym_cmd_identifier_token22] = ACTIONS(2034), + [aux_sym_cmd_identifier_token23] = ACTIONS(2034), + [aux_sym_cmd_identifier_token24] = ACTIONS(2034), + [aux_sym_cmd_identifier_token25] = ACTIONS(2034), + [aux_sym_cmd_identifier_token26] = ACTIONS(2034), + [aux_sym_cmd_identifier_token27] = ACTIONS(2034), + [aux_sym_cmd_identifier_token28] = ACTIONS(2034), + [aux_sym_cmd_identifier_token29] = ACTIONS(2034), + [aux_sym_cmd_identifier_token30] = ACTIONS(2034), + [aux_sym_cmd_identifier_token31] = ACTIONS(2034), + [aux_sym_cmd_identifier_token32] = ACTIONS(2034), + [aux_sym_cmd_identifier_token33] = ACTIONS(2034), + [aux_sym_cmd_identifier_token34] = ACTIONS(2034), + [aux_sym_cmd_identifier_token35] = ACTIONS(2034), + [aux_sym_cmd_identifier_token36] = ACTIONS(2034), + [aux_sym_cmd_identifier_token37] = ACTIONS(2034), + [aux_sym_cmd_identifier_token38] = ACTIONS(2034), + [aux_sym_cmd_identifier_token39] = ACTIONS(2034), + [aux_sym_cmd_identifier_token40] = ACTIONS(2034), + [anon_sym_def] = ACTIONS(2034), + [anon_sym_export_DASHenv] = ACTIONS(2034), + [anon_sym_extern] = ACTIONS(2034), + [anon_sym_module] = ACTIONS(2034), + [anon_sym_use] = ACTIONS(2034), + [anon_sym_LPAREN] = ACTIONS(2034), + [anon_sym_DOLLAR] = ACTIONS(2034), + [anon_sym_error] = ACTIONS(2034), + [anon_sym_DASH2] = ACTIONS(2034), + [anon_sym_break] = ACTIONS(2034), + [anon_sym_continue] = ACTIONS(2034), + [anon_sym_for] = ACTIONS(2034), + [anon_sym_in2] = ACTIONS(2034), + [anon_sym_loop] = ACTIONS(2034), + [anon_sym_make] = ACTIONS(2034), + [anon_sym_while] = ACTIONS(2034), + [anon_sym_do] = ACTIONS(2034), + [anon_sym_if] = ACTIONS(2034), + [anon_sym_else] = ACTIONS(2034), + [anon_sym_match] = ACTIONS(2034), + [anon_sym_RBRACE] = ACTIONS(2034), + [anon_sym_try] = ACTIONS(2034), + [anon_sym_catch] = ACTIONS(2034), + [anon_sym_return] = ACTIONS(2034), + [anon_sym_source] = ACTIONS(2034), + [anon_sym_source_DASHenv] = ACTIONS(2034), + [anon_sym_register] = ACTIONS(2034), + [anon_sym_hide] = ACTIONS(2034), + [anon_sym_hide_DASHenv] = ACTIONS(2034), + [anon_sym_overlay] = ACTIONS(2034), + [anon_sym_as] = ACTIONS(2034), + [anon_sym_PLUS2] = ACTIONS(2034), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2034), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2034), + [aux_sym__val_number_decimal_token2] = ACTIONS(2034), + [aux_sym__val_number_decimal_token3] = ACTIONS(2034), + [aux_sym__val_number_decimal_token4] = ACTIONS(2034), + [aux_sym__val_number_token1] = ACTIONS(2034), + [aux_sym__val_number_token2] = ACTIONS(2034), + [aux_sym__val_number_token3] = ACTIONS(2034), + [aux_sym__val_number_token4] = ACTIONS(2034), + [aux_sym__val_number_token5] = ACTIONS(2034), + [aux_sym__val_number_token6] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2034), + [sym__str_single_quotes] = ACTIONS(2034), + [sym__str_back_ticks] = ACTIONS(2034), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2034), + [sym__entry_separator] = ACTIONS(2036), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2036), + }, + [612] = { + [sym_comment] = STATE(612), [anon_sym_export] = ACTIONS(2343), [anon_sym_alias] = ACTIONS(2343), [anon_sym_let] = ACTIONS(2343), @@ -141095,8 +141514,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2345), }, - [612] = { - [sym_comment] = STATE(612), + [613] = { + [sym_comment] = STATE(613), [anon_sym_export] = ACTIONS(2347), [anon_sym_alias] = ACTIONS(2347), [anon_sym_let] = ACTIONS(2347), @@ -141195,8 +141614,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2349), }, - [613] = { - [sym_comment] = STATE(613), + [614] = { + [sym_comment] = STATE(614), [anon_sym_export] = ACTIONS(2351), [anon_sym_alias] = ACTIONS(2351), [anon_sym_let] = ACTIONS(2351), @@ -141295,208 +141714,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2353), }, - [614] = { - [sym_comment] = STATE(614), - [anon_sym_export] = ACTIONS(1913), - [anon_sym_alias] = ACTIONS(1913), - [anon_sym_let] = ACTIONS(1913), - [anon_sym_let_DASHenv] = ACTIONS(1913), - [anon_sym_mut] = ACTIONS(1913), - [anon_sym_const] = ACTIONS(1913), - [aux_sym_cmd_identifier_token1] = ACTIONS(1913), - [aux_sym_cmd_identifier_token2] = ACTIONS(1913), - [aux_sym_cmd_identifier_token3] = ACTIONS(1913), - [aux_sym_cmd_identifier_token4] = ACTIONS(1913), - [aux_sym_cmd_identifier_token5] = ACTIONS(1913), - [aux_sym_cmd_identifier_token6] = ACTIONS(1913), - [aux_sym_cmd_identifier_token7] = ACTIONS(1913), - [aux_sym_cmd_identifier_token8] = ACTIONS(1913), - [aux_sym_cmd_identifier_token9] = ACTIONS(1913), - [aux_sym_cmd_identifier_token10] = ACTIONS(1913), - [aux_sym_cmd_identifier_token11] = ACTIONS(1913), - [aux_sym_cmd_identifier_token12] = ACTIONS(1913), - [aux_sym_cmd_identifier_token13] = ACTIONS(1913), - [aux_sym_cmd_identifier_token14] = ACTIONS(1913), - [aux_sym_cmd_identifier_token15] = ACTIONS(1913), - [aux_sym_cmd_identifier_token16] = ACTIONS(1913), - [aux_sym_cmd_identifier_token17] = ACTIONS(1913), - [aux_sym_cmd_identifier_token18] = ACTIONS(1913), - [aux_sym_cmd_identifier_token19] = ACTIONS(1913), - [aux_sym_cmd_identifier_token20] = ACTIONS(1913), - [aux_sym_cmd_identifier_token21] = ACTIONS(1913), - [aux_sym_cmd_identifier_token22] = ACTIONS(1913), - [aux_sym_cmd_identifier_token23] = ACTIONS(1913), - [aux_sym_cmd_identifier_token24] = ACTIONS(1913), - [aux_sym_cmd_identifier_token25] = ACTIONS(1913), - [aux_sym_cmd_identifier_token26] = ACTIONS(1913), - [aux_sym_cmd_identifier_token27] = ACTIONS(1913), - [aux_sym_cmd_identifier_token28] = ACTIONS(1913), - [aux_sym_cmd_identifier_token29] = ACTIONS(1913), - [aux_sym_cmd_identifier_token30] = ACTIONS(1913), - [aux_sym_cmd_identifier_token31] = ACTIONS(1913), - [aux_sym_cmd_identifier_token32] = ACTIONS(1913), - [aux_sym_cmd_identifier_token33] = ACTIONS(1913), - [aux_sym_cmd_identifier_token34] = ACTIONS(1913), - [aux_sym_cmd_identifier_token35] = ACTIONS(1913), - [aux_sym_cmd_identifier_token36] = ACTIONS(1913), - [aux_sym_cmd_identifier_token37] = ACTIONS(1913), - [aux_sym_cmd_identifier_token38] = ACTIONS(1913), - [aux_sym_cmd_identifier_token39] = ACTIONS(1913), - [aux_sym_cmd_identifier_token40] = ACTIONS(1913), - [anon_sym_def] = ACTIONS(1913), - [anon_sym_export_DASHenv] = ACTIONS(1913), - [anon_sym_extern] = ACTIONS(1913), - [anon_sym_module] = ACTIONS(1913), - [anon_sym_use] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_DOLLAR] = ACTIONS(1913), - [anon_sym_error] = ACTIONS(1913), - [anon_sym_DASH2] = ACTIONS(1913), - [anon_sym_break] = ACTIONS(1913), - [anon_sym_continue] = ACTIONS(1913), - [anon_sym_for] = ACTIONS(1913), - [anon_sym_in2] = ACTIONS(1913), - [anon_sym_loop] = ACTIONS(1913), - [anon_sym_make] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1913), - [anon_sym_do] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1913), - [anon_sym_else] = ACTIONS(1913), - [anon_sym_match] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_try] = ACTIONS(1913), - [anon_sym_catch] = ACTIONS(1913), - [anon_sym_return] = ACTIONS(1913), - [anon_sym_source] = ACTIONS(1913), - [anon_sym_source_DASHenv] = ACTIONS(1913), - [anon_sym_register] = ACTIONS(1913), - [anon_sym_hide] = ACTIONS(1913), - [anon_sym_hide_DASHenv] = ACTIONS(1913), - [anon_sym_overlay] = ACTIONS(1913), - [anon_sym_as] = ACTIONS(1913), - [anon_sym_PLUS2] = ACTIONS(1913), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1913), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1913), - [aux_sym__val_number_decimal_token1] = ACTIONS(1913), - [aux_sym__val_number_decimal_token2] = ACTIONS(1913), - [aux_sym__val_number_decimal_token3] = ACTIONS(1913), - [aux_sym__val_number_decimal_token4] = ACTIONS(1913), - [aux_sym__val_number_token1] = ACTIONS(1913), - [aux_sym__val_number_token2] = ACTIONS(1913), - [aux_sym__val_number_token3] = ACTIONS(1913), - [aux_sym__val_number_token4] = ACTIONS(1913), - [aux_sym__val_number_token5] = ACTIONS(1913), - [aux_sym__val_number_token6] = ACTIONS(1913), - [anon_sym_DQUOTE] = ACTIONS(1913), - [sym__str_single_quotes] = ACTIONS(1913), - [sym__str_back_ticks] = ACTIONS(1913), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1913), - [sym__entry_separator] = ACTIONS(1915), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1915), - }, [615] = { [sym_comment] = STATE(615), - [anon_sym_export] = ACTIONS(1014), - [anon_sym_alias] = ACTIONS(1014), - [anon_sym_let] = ACTIONS(1014), - [anon_sym_let_DASHenv] = ACTIONS(1014), - [anon_sym_mut] = ACTIONS(1014), - [anon_sym_const] = ACTIONS(1014), - [aux_sym_cmd_identifier_token1] = ACTIONS(1014), - [aux_sym_cmd_identifier_token2] = ACTIONS(1016), - [aux_sym_cmd_identifier_token3] = ACTIONS(1016), - [aux_sym_cmd_identifier_token4] = ACTIONS(1016), - [aux_sym_cmd_identifier_token5] = ACTIONS(1016), - [aux_sym_cmd_identifier_token6] = ACTIONS(1016), - [aux_sym_cmd_identifier_token7] = ACTIONS(1016), - [aux_sym_cmd_identifier_token8] = ACTIONS(1014), - [aux_sym_cmd_identifier_token9] = ACTIONS(1014), - [aux_sym_cmd_identifier_token10] = ACTIONS(1016), - [aux_sym_cmd_identifier_token11] = ACTIONS(1016), - [aux_sym_cmd_identifier_token12] = ACTIONS(1014), - [aux_sym_cmd_identifier_token13] = ACTIONS(1014), - [aux_sym_cmd_identifier_token14] = ACTIONS(1014), - [aux_sym_cmd_identifier_token15] = ACTIONS(1014), - [aux_sym_cmd_identifier_token16] = ACTIONS(1016), - [aux_sym_cmd_identifier_token17] = ACTIONS(1016), - [aux_sym_cmd_identifier_token18] = ACTIONS(1016), - [aux_sym_cmd_identifier_token19] = ACTIONS(1016), - [aux_sym_cmd_identifier_token20] = ACTIONS(1016), - [aux_sym_cmd_identifier_token21] = ACTIONS(1016), - [aux_sym_cmd_identifier_token22] = ACTIONS(1016), - [aux_sym_cmd_identifier_token23] = ACTIONS(1016), - [aux_sym_cmd_identifier_token24] = ACTIONS(1016), - [aux_sym_cmd_identifier_token25] = ACTIONS(1016), - [aux_sym_cmd_identifier_token26] = ACTIONS(1016), - [aux_sym_cmd_identifier_token27] = ACTIONS(1016), - [aux_sym_cmd_identifier_token28] = ACTIONS(1016), - [aux_sym_cmd_identifier_token29] = ACTIONS(1016), - [aux_sym_cmd_identifier_token30] = ACTIONS(1016), - [aux_sym_cmd_identifier_token31] = ACTIONS(1016), - [aux_sym_cmd_identifier_token32] = ACTIONS(1016), - [aux_sym_cmd_identifier_token33] = ACTIONS(1016), - [aux_sym_cmd_identifier_token34] = ACTIONS(1014), - [aux_sym_cmd_identifier_token35] = ACTIONS(1016), - [aux_sym_cmd_identifier_token36] = ACTIONS(1016), - [aux_sym_cmd_identifier_token37] = ACTIONS(1016), - [aux_sym_cmd_identifier_token38] = ACTIONS(1014), - [aux_sym_cmd_identifier_token39] = ACTIONS(1016), - [aux_sym_cmd_identifier_token40] = ACTIONS(1016), - [anon_sym_def] = ACTIONS(1014), - [anon_sym_export_DASHenv] = ACTIONS(1014), - [anon_sym_extern] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_use] = ACTIONS(1014), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_DOLLAR] = ACTIONS(1016), - [anon_sym_error] = ACTIONS(1014), - [anon_sym_DASH2] = ACTIONS(1014), - [anon_sym_break] = ACTIONS(1014), - [anon_sym_continue] = ACTIONS(1014), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_loop] = ACTIONS(1014), - [anon_sym_make] = ACTIONS(1014), - [anon_sym_while] = ACTIONS(1014), - [anon_sym_do] = ACTIONS(1014), - [anon_sym_if] = ACTIONS(1014), - [anon_sym_else] = ACTIONS(1014), - [anon_sym_match] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_try] = ACTIONS(1014), - [anon_sym_catch] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1014), - [anon_sym_source] = ACTIONS(1014), - [anon_sym_source_DASHenv] = ACTIONS(1014), - [anon_sym_register] = ACTIONS(1014), - [anon_sym_hide] = ACTIONS(1014), - [anon_sym_hide_DASHenv] = ACTIONS(1014), - [anon_sym_overlay] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(1014), - [anon_sym_PLUS2] = ACTIONS(1014), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1016), - [anon_sym_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1016), - [aux_sym__val_number_decimal_token1] = ACTIONS(1014), - [aux_sym__val_number_decimal_token2] = ACTIONS(1016), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), - [aux_sym__val_number_token1] = ACTIONS(1016), - [aux_sym__val_number_token2] = ACTIONS(1016), - [aux_sym__val_number_token3] = ACTIONS(1016), - [aux_sym__val_number_token4] = ACTIONS(1014), - [aux_sym__val_number_token5] = ACTIONS(1014), - [aux_sym__val_number_token6] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1016), - [sym__str_single_quotes] = ACTIONS(1016), - [sym__str_back_ticks] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1016), + [anon_sym_export] = ACTIONS(2157), + [anon_sym_alias] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_let_DASHenv] = ACTIONS(2157), + [anon_sym_mut] = ACTIONS(2157), + [anon_sym_const] = ACTIONS(2157), + [aux_sym_cmd_identifier_token1] = ACTIONS(2157), + [aux_sym_cmd_identifier_token2] = ACTIONS(2157), + [aux_sym_cmd_identifier_token3] = ACTIONS(2157), + [aux_sym_cmd_identifier_token4] = ACTIONS(2157), + [aux_sym_cmd_identifier_token5] = ACTIONS(2157), + [aux_sym_cmd_identifier_token6] = ACTIONS(2157), + [aux_sym_cmd_identifier_token7] = ACTIONS(2157), + [aux_sym_cmd_identifier_token8] = ACTIONS(2157), + [aux_sym_cmd_identifier_token9] = ACTIONS(2157), + [aux_sym_cmd_identifier_token10] = ACTIONS(2157), + [aux_sym_cmd_identifier_token11] = ACTIONS(2157), + [aux_sym_cmd_identifier_token12] = ACTIONS(2157), + [aux_sym_cmd_identifier_token13] = ACTIONS(2157), + [aux_sym_cmd_identifier_token14] = ACTIONS(2157), + [aux_sym_cmd_identifier_token15] = ACTIONS(2157), + [aux_sym_cmd_identifier_token16] = ACTIONS(2157), + [aux_sym_cmd_identifier_token17] = ACTIONS(2157), + [aux_sym_cmd_identifier_token18] = ACTIONS(2157), + [aux_sym_cmd_identifier_token19] = ACTIONS(2157), + [aux_sym_cmd_identifier_token20] = ACTIONS(2157), + [aux_sym_cmd_identifier_token21] = ACTIONS(2157), + [aux_sym_cmd_identifier_token22] = ACTIONS(2157), + [aux_sym_cmd_identifier_token23] = ACTIONS(2157), + [aux_sym_cmd_identifier_token24] = ACTIONS(2157), + [aux_sym_cmd_identifier_token25] = ACTIONS(2157), + [aux_sym_cmd_identifier_token26] = ACTIONS(2157), + [aux_sym_cmd_identifier_token27] = ACTIONS(2157), + [aux_sym_cmd_identifier_token28] = ACTIONS(2157), + [aux_sym_cmd_identifier_token29] = ACTIONS(2157), + [aux_sym_cmd_identifier_token30] = ACTIONS(2157), + [aux_sym_cmd_identifier_token31] = ACTIONS(2157), + [aux_sym_cmd_identifier_token32] = ACTIONS(2157), + [aux_sym_cmd_identifier_token33] = ACTIONS(2157), + [aux_sym_cmd_identifier_token34] = ACTIONS(2157), + [aux_sym_cmd_identifier_token35] = ACTIONS(2157), + [aux_sym_cmd_identifier_token36] = ACTIONS(2157), + [aux_sym_cmd_identifier_token37] = ACTIONS(2157), + [aux_sym_cmd_identifier_token38] = ACTIONS(2157), + [aux_sym_cmd_identifier_token39] = ACTIONS(2157), + [aux_sym_cmd_identifier_token40] = ACTIONS(2157), + [anon_sym_def] = ACTIONS(2157), + [anon_sym_export_DASHenv] = ACTIONS(2157), + [anon_sym_extern] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), + [anon_sym_use] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_DOLLAR] = ACTIONS(2157), + [anon_sym_error] = ACTIONS(2157), + [anon_sym_DASH2] = ACTIONS(2157), + [anon_sym_break] = ACTIONS(2157), + [anon_sym_continue] = ACTIONS(2157), + [anon_sym_for] = ACTIONS(2157), + [anon_sym_in2] = ACTIONS(2157), + [anon_sym_loop] = ACTIONS(2157), + [anon_sym_make] = ACTIONS(2157), + [anon_sym_while] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_if] = ACTIONS(2157), + [anon_sym_else] = ACTIONS(2157), + [anon_sym_match] = ACTIONS(2157), + [anon_sym_RBRACE] = ACTIONS(2157), + [anon_sym_try] = ACTIONS(2157), + [anon_sym_catch] = ACTIONS(2157), + [anon_sym_return] = ACTIONS(2157), + [anon_sym_source] = ACTIONS(2157), + [anon_sym_source_DASHenv] = ACTIONS(2157), + [anon_sym_register] = ACTIONS(2157), + [anon_sym_hide] = ACTIONS(2157), + [anon_sym_hide_DASHenv] = ACTIONS(2157), + [anon_sym_overlay] = ACTIONS(2157), + [anon_sym_as] = ACTIONS(2157), + [anon_sym_PLUS2] = ACTIONS(2157), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2157), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2157), + [aux_sym__val_number_decimal_token1] = ACTIONS(2157), + [aux_sym__val_number_decimal_token2] = ACTIONS(2157), + [aux_sym__val_number_decimal_token3] = ACTIONS(2157), + [aux_sym__val_number_decimal_token4] = ACTIONS(2157), + [aux_sym__val_number_token1] = ACTIONS(2157), + [aux_sym__val_number_token2] = ACTIONS(2157), + [aux_sym__val_number_token3] = ACTIONS(2157), + [aux_sym__val_number_token4] = ACTIONS(2157), + [aux_sym__val_number_token5] = ACTIONS(2157), + [aux_sym__val_number_token6] = ACTIONS(2157), + [anon_sym_DQUOTE] = ACTIONS(2157), + [sym__str_single_quotes] = ACTIONS(2157), + [sym__str_back_ticks] = ACTIONS(2157), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2157), + [sym__entry_separator] = ACTIONS(2163), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2163), }, [616] = { [sym_comment] = STATE(616), + [anon_sym_export] = ACTIONS(2118), + [anon_sym_alias] = ACTIONS(2118), + [anon_sym_let] = ACTIONS(2118), + [anon_sym_let_DASHenv] = ACTIONS(2118), + [anon_sym_mut] = ACTIONS(2118), + [anon_sym_const] = ACTIONS(2118), + [aux_sym_cmd_identifier_token1] = ACTIONS(2118), + [aux_sym_cmd_identifier_token2] = ACTIONS(2118), + [aux_sym_cmd_identifier_token3] = ACTIONS(2118), + [aux_sym_cmd_identifier_token4] = ACTIONS(2118), + [aux_sym_cmd_identifier_token5] = ACTIONS(2118), + [aux_sym_cmd_identifier_token6] = ACTIONS(2118), + [aux_sym_cmd_identifier_token7] = ACTIONS(2118), + [aux_sym_cmd_identifier_token8] = ACTIONS(2118), + [aux_sym_cmd_identifier_token9] = ACTIONS(2118), + [aux_sym_cmd_identifier_token10] = ACTIONS(2118), + [aux_sym_cmd_identifier_token11] = ACTIONS(2118), + [aux_sym_cmd_identifier_token12] = ACTIONS(2118), + [aux_sym_cmd_identifier_token13] = ACTIONS(2118), + [aux_sym_cmd_identifier_token14] = ACTIONS(2118), + [aux_sym_cmd_identifier_token15] = ACTIONS(2118), + [aux_sym_cmd_identifier_token16] = ACTIONS(2118), + [aux_sym_cmd_identifier_token17] = ACTIONS(2118), + [aux_sym_cmd_identifier_token18] = ACTIONS(2118), + [aux_sym_cmd_identifier_token19] = ACTIONS(2118), + [aux_sym_cmd_identifier_token20] = ACTIONS(2118), + [aux_sym_cmd_identifier_token21] = ACTIONS(2118), + [aux_sym_cmd_identifier_token22] = ACTIONS(2118), + [aux_sym_cmd_identifier_token23] = ACTIONS(2118), + [aux_sym_cmd_identifier_token24] = ACTIONS(2118), + [aux_sym_cmd_identifier_token25] = ACTIONS(2118), + [aux_sym_cmd_identifier_token26] = ACTIONS(2118), + [aux_sym_cmd_identifier_token27] = ACTIONS(2118), + [aux_sym_cmd_identifier_token28] = ACTIONS(2118), + [aux_sym_cmd_identifier_token29] = ACTIONS(2118), + [aux_sym_cmd_identifier_token30] = ACTIONS(2118), + [aux_sym_cmd_identifier_token31] = ACTIONS(2118), + [aux_sym_cmd_identifier_token32] = ACTIONS(2118), + [aux_sym_cmd_identifier_token33] = ACTIONS(2118), + [aux_sym_cmd_identifier_token34] = ACTIONS(2118), + [aux_sym_cmd_identifier_token35] = ACTIONS(2118), + [aux_sym_cmd_identifier_token36] = ACTIONS(2118), + [aux_sym_cmd_identifier_token37] = ACTIONS(2118), + [aux_sym_cmd_identifier_token38] = ACTIONS(2118), + [aux_sym_cmd_identifier_token39] = ACTIONS(2118), + [aux_sym_cmd_identifier_token40] = ACTIONS(2118), + [anon_sym_def] = ACTIONS(2118), + [anon_sym_export_DASHenv] = ACTIONS(2118), + [anon_sym_extern] = ACTIONS(2118), + [anon_sym_module] = ACTIONS(2118), + [anon_sym_use] = ACTIONS(2118), + [anon_sym_LPAREN] = ACTIONS(2118), + [anon_sym_DOLLAR] = ACTIONS(2118), + [anon_sym_error] = ACTIONS(2118), + [anon_sym_DASH2] = ACTIONS(2118), + [anon_sym_break] = ACTIONS(2118), + [anon_sym_continue] = ACTIONS(2118), + [anon_sym_for] = ACTIONS(2118), + [anon_sym_in2] = ACTIONS(2118), + [anon_sym_loop] = ACTIONS(2118), + [anon_sym_make] = ACTIONS(2118), + [anon_sym_while] = ACTIONS(2118), + [anon_sym_do] = ACTIONS(2118), + [anon_sym_if] = ACTIONS(2118), + [anon_sym_else] = ACTIONS(2118), + [anon_sym_match] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2118), + [anon_sym_try] = ACTIONS(2118), + [anon_sym_catch] = ACTIONS(2118), + [anon_sym_return] = ACTIONS(2118), + [anon_sym_source] = ACTIONS(2118), + [anon_sym_source_DASHenv] = ACTIONS(2118), + [anon_sym_register] = ACTIONS(2118), + [anon_sym_hide] = ACTIONS(2118), + [anon_sym_hide_DASHenv] = ACTIONS(2118), + [anon_sym_overlay] = ACTIONS(2118), + [anon_sym_as] = ACTIONS(2118), + [anon_sym_PLUS2] = ACTIONS(2118), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2118), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2118), + [aux_sym__val_number_decimal_token1] = ACTIONS(2118), + [aux_sym__val_number_decimal_token2] = ACTIONS(2118), + [aux_sym__val_number_decimal_token3] = ACTIONS(2118), + [aux_sym__val_number_decimal_token4] = ACTIONS(2118), + [aux_sym__val_number_token1] = ACTIONS(2118), + [aux_sym__val_number_token2] = ACTIONS(2118), + [aux_sym__val_number_token3] = ACTIONS(2118), + [aux_sym__val_number_token4] = ACTIONS(2118), + [aux_sym__val_number_token5] = ACTIONS(2118), + [aux_sym__val_number_token6] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2118), + [sym__str_single_quotes] = ACTIONS(2118), + [sym__str_back_ticks] = ACTIONS(2118), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2118), + [sym__entry_separator] = ACTIONS(2120), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2120), + }, + [617] = { + [sym_comment] = STATE(617), [anon_sym_export] = ACTIONS(2355), [anon_sym_alias] = ACTIONS(2355), [anon_sym_let] = ACTIONS(2355), @@ -141516,287 +141935,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token11] = ACTIONS(2355), [aux_sym_cmd_identifier_token12] = ACTIONS(2355), [aux_sym_cmd_identifier_token13] = ACTIONS(2355), - [aux_sym_cmd_identifier_token14] = ACTIONS(2355), - [aux_sym_cmd_identifier_token15] = ACTIONS(2355), - [aux_sym_cmd_identifier_token16] = ACTIONS(2355), - [aux_sym_cmd_identifier_token17] = ACTIONS(2355), - [aux_sym_cmd_identifier_token18] = ACTIONS(2355), - [aux_sym_cmd_identifier_token19] = ACTIONS(2355), - [aux_sym_cmd_identifier_token20] = ACTIONS(2355), - [aux_sym_cmd_identifier_token21] = ACTIONS(2355), - [aux_sym_cmd_identifier_token22] = ACTIONS(2355), - [aux_sym_cmd_identifier_token23] = ACTIONS(2355), - [aux_sym_cmd_identifier_token24] = ACTIONS(2355), - [aux_sym_cmd_identifier_token25] = ACTIONS(2355), - [aux_sym_cmd_identifier_token26] = ACTIONS(2355), - [aux_sym_cmd_identifier_token27] = ACTIONS(2355), - [aux_sym_cmd_identifier_token28] = ACTIONS(2355), - [aux_sym_cmd_identifier_token29] = ACTIONS(2355), - [aux_sym_cmd_identifier_token30] = ACTIONS(2355), - [aux_sym_cmd_identifier_token31] = ACTIONS(2355), - [aux_sym_cmd_identifier_token32] = ACTIONS(2355), - [aux_sym_cmd_identifier_token33] = ACTIONS(2355), - [aux_sym_cmd_identifier_token34] = ACTIONS(2355), - [aux_sym_cmd_identifier_token35] = ACTIONS(2355), - [aux_sym_cmd_identifier_token36] = ACTIONS(2355), - [aux_sym_cmd_identifier_token37] = ACTIONS(2355), - [aux_sym_cmd_identifier_token38] = ACTIONS(2355), - [aux_sym_cmd_identifier_token39] = ACTIONS(2355), - [aux_sym_cmd_identifier_token40] = ACTIONS(2355), - [anon_sym_def] = ACTIONS(2355), - [anon_sym_export_DASHenv] = ACTIONS(2355), - [anon_sym_extern] = ACTIONS(2355), - [anon_sym_module] = ACTIONS(2355), - [anon_sym_use] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_DOLLAR] = ACTIONS(2355), - [anon_sym_error] = ACTIONS(2355), - [anon_sym_DASH2] = ACTIONS(2355), - [anon_sym_break] = ACTIONS(2355), - [anon_sym_continue] = ACTIONS(2355), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_in2] = ACTIONS(2355), - [anon_sym_loop] = ACTIONS(2355), - [anon_sym_make] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [anon_sym_do] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2355), - [anon_sym_else] = ACTIONS(2355), - [anon_sym_match] = ACTIONS(2355), - [anon_sym_RBRACE] = ACTIONS(2355), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_catch] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2355), - [anon_sym_source] = ACTIONS(2355), - [anon_sym_source_DASHenv] = ACTIONS(2355), - [anon_sym_register] = ACTIONS(2355), - [anon_sym_hide] = ACTIONS(2355), - [anon_sym_hide_DASHenv] = ACTIONS(2355), - [anon_sym_overlay] = ACTIONS(2355), - [anon_sym_as] = ACTIONS(2355), - [anon_sym_PLUS2] = ACTIONS(2355), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2355), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2355), - [aux_sym__val_number_decimal_token1] = ACTIONS(2355), - [aux_sym__val_number_decimal_token2] = ACTIONS(2355), - [aux_sym__val_number_decimal_token3] = ACTIONS(2355), - [aux_sym__val_number_decimal_token4] = ACTIONS(2355), - [aux_sym__val_number_token1] = ACTIONS(2355), - [aux_sym__val_number_token2] = ACTIONS(2355), - [aux_sym__val_number_token3] = ACTIONS(2355), - [aux_sym__val_number_token4] = ACTIONS(2355), - [aux_sym__val_number_token5] = ACTIONS(2355), - [aux_sym__val_number_token6] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym__str_single_quotes] = ACTIONS(2355), - [sym__str_back_ticks] = ACTIONS(2355), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2355), - [sym__entry_separator] = ACTIONS(2357), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2357), - }, - [617] = { - [sym_comment] = STATE(617), - [anon_sym_export] = ACTIONS(1002), - [anon_sym_alias] = ACTIONS(1002), - [anon_sym_let] = ACTIONS(1002), - [anon_sym_let_DASHenv] = ACTIONS(1002), - [anon_sym_mut] = ACTIONS(1002), - [anon_sym_const] = ACTIONS(1002), - [aux_sym_cmd_identifier_token1] = ACTIONS(1002), - [aux_sym_cmd_identifier_token2] = ACTIONS(1002), - [aux_sym_cmd_identifier_token3] = ACTIONS(1002), - [aux_sym_cmd_identifier_token4] = ACTIONS(1002), - [aux_sym_cmd_identifier_token5] = ACTIONS(1002), - [aux_sym_cmd_identifier_token6] = ACTIONS(1002), - [aux_sym_cmd_identifier_token7] = ACTIONS(1002), - [aux_sym_cmd_identifier_token8] = ACTIONS(1002), - [aux_sym_cmd_identifier_token9] = ACTIONS(1002), - [aux_sym_cmd_identifier_token10] = ACTIONS(1002), - [aux_sym_cmd_identifier_token11] = ACTIONS(1002), - [aux_sym_cmd_identifier_token12] = ACTIONS(1002), - [aux_sym_cmd_identifier_token13] = ACTIONS(1002), - [aux_sym_cmd_identifier_token14] = ACTIONS(1002), - [aux_sym_cmd_identifier_token15] = ACTIONS(1002), - [aux_sym_cmd_identifier_token16] = ACTIONS(1002), - [aux_sym_cmd_identifier_token17] = ACTIONS(1002), - [aux_sym_cmd_identifier_token18] = ACTIONS(1002), - [aux_sym_cmd_identifier_token19] = ACTIONS(1002), - [aux_sym_cmd_identifier_token20] = ACTIONS(1002), - [aux_sym_cmd_identifier_token21] = ACTIONS(1002), - [aux_sym_cmd_identifier_token22] = ACTIONS(1002), - [aux_sym_cmd_identifier_token23] = ACTIONS(1002), - [aux_sym_cmd_identifier_token24] = ACTIONS(1002), - [aux_sym_cmd_identifier_token25] = ACTIONS(1002), - [aux_sym_cmd_identifier_token26] = ACTIONS(1002), - [aux_sym_cmd_identifier_token27] = ACTIONS(1002), - [aux_sym_cmd_identifier_token28] = ACTIONS(1002), - [aux_sym_cmd_identifier_token29] = ACTIONS(1002), - [aux_sym_cmd_identifier_token30] = ACTIONS(1002), - [aux_sym_cmd_identifier_token31] = ACTIONS(1002), - [aux_sym_cmd_identifier_token32] = ACTIONS(1002), - [aux_sym_cmd_identifier_token33] = ACTIONS(1002), - [aux_sym_cmd_identifier_token34] = ACTIONS(1002), - [aux_sym_cmd_identifier_token35] = ACTIONS(1002), - [aux_sym_cmd_identifier_token36] = ACTIONS(1002), - [aux_sym_cmd_identifier_token37] = ACTIONS(1002), - [aux_sym_cmd_identifier_token38] = ACTIONS(1002), - [aux_sym_cmd_identifier_token39] = ACTIONS(1002), - [aux_sym_cmd_identifier_token40] = ACTIONS(1002), - [anon_sym_def] = ACTIONS(1002), - [anon_sym_export_DASHenv] = ACTIONS(1002), - [anon_sym_extern] = ACTIONS(1002), - [anon_sym_module] = ACTIONS(1002), - [anon_sym_use] = ACTIONS(1002), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_error] = ACTIONS(1002), - [anon_sym_DASH2] = ACTIONS(1002), - [anon_sym_break] = ACTIONS(1002), - [anon_sym_continue] = ACTIONS(1002), - [anon_sym_for] = ACTIONS(1002), - [anon_sym_in2] = ACTIONS(1002), - [anon_sym_loop] = ACTIONS(1002), - [anon_sym_make] = ACTIONS(1002), - [anon_sym_while] = ACTIONS(1002), - [anon_sym_do] = ACTIONS(1002), - [anon_sym_if] = ACTIONS(1002), - [anon_sym_else] = ACTIONS(1002), - [anon_sym_match] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_try] = ACTIONS(1002), - [anon_sym_catch] = ACTIONS(1002), - [anon_sym_return] = ACTIONS(1002), - [anon_sym_source] = ACTIONS(1002), - [anon_sym_source_DASHenv] = ACTIONS(1002), - [anon_sym_register] = ACTIONS(1002), - [anon_sym_hide] = ACTIONS(1002), - [anon_sym_hide_DASHenv] = ACTIONS(1002), - [anon_sym_overlay] = ACTIONS(1002), - [anon_sym_as] = ACTIONS(1002), - [anon_sym_PLUS2] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1002), - [aux_sym__val_number_decimal_token1] = ACTIONS(1002), - [aux_sym__val_number_decimal_token2] = ACTIONS(1002), - [aux_sym__val_number_decimal_token3] = ACTIONS(1002), - [aux_sym__val_number_decimal_token4] = ACTIONS(1002), - [aux_sym__val_number_token1] = ACTIONS(1002), - [aux_sym__val_number_token2] = ACTIONS(1002), - [aux_sym__val_number_token3] = ACTIONS(1002), - [aux_sym__val_number_token4] = ACTIONS(1002), - [aux_sym__val_number_token5] = ACTIONS(1002), - [aux_sym__val_number_token6] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym__str_single_quotes] = ACTIONS(1002), - [sym__str_back_ticks] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1002), - [sym__entry_separator] = ACTIONS(1004), + [aux_sym_cmd_identifier_token14] = ACTIONS(2355), + [aux_sym_cmd_identifier_token15] = ACTIONS(2355), + [aux_sym_cmd_identifier_token16] = ACTIONS(2355), + [aux_sym_cmd_identifier_token17] = ACTIONS(2355), + [aux_sym_cmd_identifier_token18] = ACTIONS(2355), + [aux_sym_cmd_identifier_token19] = ACTIONS(2355), + [aux_sym_cmd_identifier_token20] = ACTIONS(2355), + [aux_sym_cmd_identifier_token21] = ACTIONS(2355), + [aux_sym_cmd_identifier_token22] = ACTIONS(2355), + [aux_sym_cmd_identifier_token23] = ACTIONS(2355), + [aux_sym_cmd_identifier_token24] = ACTIONS(2355), + [aux_sym_cmd_identifier_token25] = ACTIONS(2355), + [aux_sym_cmd_identifier_token26] = ACTIONS(2355), + [aux_sym_cmd_identifier_token27] = ACTIONS(2355), + [aux_sym_cmd_identifier_token28] = ACTIONS(2355), + [aux_sym_cmd_identifier_token29] = ACTIONS(2355), + [aux_sym_cmd_identifier_token30] = ACTIONS(2355), + [aux_sym_cmd_identifier_token31] = ACTIONS(2355), + [aux_sym_cmd_identifier_token32] = ACTIONS(2355), + [aux_sym_cmd_identifier_token33] = ACTIONS(2355), + [aux_sym_cmd_identifier_token34] = ACTIONS(2355), + [aux_sym_cmd_identifier_token35] = ACTIONS(2355), + [aux_sym_cmd_identifier_token36] = ACTIONS(2355), + [aux_sym_cmd_identifier_token37] = ACTIONS(2355), + [aux_sym_cmd_identifier_token38] = ACTIONS(2355), + [aux_sym_cmd_identifier_token39] = ACTIONS(2355), + [aux_sym_cmd_identifier_token40] = ACTIONS(2355), + [anon_sym_def] = ACTIONS(2355), + [anon_sym_export_DASHenv] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym_module] = ACTIONS(2355), + [anon_sym_use] = ACTIONS(2355), + [anon_sym_LPAREN] = ACTIONS(2355), + [anon_sym_DOLLAR] = ACTIONS(2355), + [anon_sym_error] = ACTIONS(2355), + [anon_sym_DASH2] = ACTIONS(2355), + [anon_sym_break] = ACTIONS(2355), + [anon_sym_continue] = ACTIONS(2355), + [anon_sym_for] = ACTIONS(2355), + [anon_sym_in2] = ACTIONS(2355), + [anon_sym_loop] = ACTIONS(2355), + [anon_sym_make] = ACTIONS(2355), + [anon_sym_while] = ACTIONS(2355), + [anon_sym_do] = ACTIONS(2355), + [anon_sym_if] = ACTIONS(2355), + [anon_sym_else] = ACTIONS(2355), + [anon_sym_match] = ACTIONS(2355), + [anon_sym_RBRACE] = ACTIONS(2355), + [anon_sym_try] = ACTIONS(2355), + [anon_sym_catch] = ACTIONS(2355), + [anon_sym_return] = ACTIONS(2355), + [anon_sym_source] = ACTIONS(2355), + [anon_sym_source_DASHenv] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_hide] = ACTIONS(2355), + [anon_sym_hide_DASHenv] = ACTIONS(2355), + [anon_sym_overlay] = ACTIONS(2355), + [anon_sym_as] = ACTIONS(2355), + [anon_sym_PLUS2] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2355), + [aux_sym__val_number_decimal_token1] = ACTIONS(2355), + [aux_sym__val_number_decimal_token2] = ACTIONS(2355), + [aux_sym__val_number_decimal_token3] = ACTIONS(2355), + [aux_sym__val_number_decimal_token4] = ACTIONS(2355), + [aux_sym__val_number_token1] = ACTIONS(2355), + [aux_sym__val_number_token2] = ACTIONS(2355), + [aux_sym__val_number_token3] = ACTIONS(2355), + [aux_sym__val_number_token4] = ACTIONS(2355), + [aux_sym__val_number_token5] = ACTIONS(2355), + [aux_sym__val_number_token6] = ACTIONS(2355), + [anon_sym_DQUOTE] = ACTIONS(2355), + [sym__str_single_quotes] = ACTIONS(2355), + [sym__str_back_ticks] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2355), + [sym__entry_separator] = ACTIONS(2357), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1004), + [sym_raw_string_begin] = ACTIONS(2357), }, [618] = { [sym_comment] = STATE(618), - [anon_sym_export] = ACTIONS(1018), - [anon_sym_alias] = ACTIONS(1018), - [anon_sym_let] = ACTIONS(1018), - [anon_sym_let_DASHenv] = ACTIONS(1018), - [anon_sym_mut] = ACTIONS(1018), - [anon_sym_const] = ACTIONS(1018), - [aux_sym_cmd_identifier_token1] = ACTIONS(1018), - [aux_sym_cmd_identifier_token2] = ACTIONS(1018), - [aux_sym_cmd_identifier_token3] = ACTIONS(1018), - [aux_sym_cmd_identifier_token4] = ACTIONS(1018), - [aux_sym_cmd_identifier_token5] = ACTIONS(1018), - [aux_sym_cmd_identifier_token6] = ACTIONS(1018), - [aux_sym_cmd_identifier_token7] = ACTIONS(1018), - [aux_sym_cmd_identifier_token8] = ACTIONS(1018), - [aux_sym_cmd_identifier_token9] = ACTIONS(1018), - [aux_sym_cmd_identifier_token10] = ACTIONS(1018), - [aux_sym_cmd_identifier_token11] = ACTIONS(1018), - [aux_sym_cmd_identifier_token12] = ACTIONS(1018), - [aux_sym_cmd_identifier_token13] = ACTIONS(1018), - [aux_sym_cmd_identifier_token14] = ACTIONS(1018), - [aux_sym_cmd_identifier_token15] = ACTIONS(1018), - [aux_sym_cmd_identifier_token16] = ACTIONS(1018), - [aux_sym_cmd_identifier_token17] = ACTIONS(1018), - [aux_sym_cmd_identifier_token18] = ACTIONS(1018), - [aux_sym_cmd_identifier_token19] = ACTIONS(1018), - [aux_sym_cmd_identifier_token20] = ACTIONS(1018), - [aux_sym_cmd_identifier_token21] = ACTIONS(1018), - [aux_sym_cmd_identifier_token22] = ACTIONS(1018), - [aux_sym_cmd_identifier_token23] = ACTIONS(1018), - [aux_sym_cmd_identifier_token24] = ACTIONS(1018), - [aux_sym_cmd_identifier_token25] = ACTIONS(1018), - [aux_sym_cmd_identifier_token26] = ACTIONS(1018), - [aux_sym_cmd_identifier_token27] = ACTIONS(1018), - [aux_sym_cmd_identifier_token28] = ACTIONS(1018), - [aux_sym_cmd_identifier_token29] = ACTIONS(1018), - [aux_sym_cmd_identifier_token30] = ACTIONS(1018), - [aux_sym_cmd_identifier_token31] = ACTIONS(1018), - [aux_sym_cmd_identifier_token32] = ACTIONS(1018), - [aux_sym_cmd_identifier_token33] = ACTIONS(1018), - [aux_sym_cmd_identifier_token34] = ACTIONS(1018), - [aux_sym_cmd_identifier_token35] = ACTIONS(1018), - [aux_sym_cmd_identifier_token36] = ACTIONS(1018), - [aux_sym_cmd_identifier_token37] = ACTIONS(1018), - [aux_sym_cmd_identifier_token38] = ACTIONS(1018), - [aux_sym_cmd_identifier_token39] = ACTIONS(1018), - [aux_sym_cmd_identifier_token40] = ACTIONS(1018), - [anon_sym_def] = ACTIONS(1018), - [anon_sym_export_DASHenv] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(1018), - [anon_sym_module] = ACTIONS(1018), - [anon_sym_use] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1018), - [anon_sym_DOLLAR] = ACTIONS(1018), - [anon_sym_error] = ACTIONS(1018), - [anon_sym_DASH2] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1018), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_in2] = ACTIONS(1018), - [anon_sym_loop] = ACTIONS(1018), - [anon_sym_make] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1018), - [anon_sym_do] = ACTIONS(1018), - [anon_sym_if] = ACTIONS(1018), - [anon_sym_else] = ACTIONS(1018), - [anon_sym_match] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1018), - [anon_sym_try] = ACTIONS(1018), - [anon_sym_catch] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1018), - [anon_sym_source] = ACTIONS(1018), - [anon_sym_source_DASHenv] = ACTIONS(1018), - [anon_sym_register] = ACTIONS(1018), - [anon_sym_hide] = ACTIONS(1018), - [anon_sym_hide_DASHenv] = ACTIONS(1018), - [anon_sym_overlay] = ACTIONS(1018), - [anon_sym_as] = ACTIONS(1018), - [anon_sym_PLUS2] = ACTIONS(1018), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1018), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1018), - [aux_sym__val_number_decimal_token1] = ACTIONS(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1018), - [aux_sym__val_number_decimal_token3] = ACTIONS(1018), - [aux_sym__val_number_decimal_token4] = ACTIONS(1018), - [aux_sym__val_number_token1] = ACTIONS(1018), - [aux_sym__val_number_token2] = ACTIONS(1018), - [aux_sym__val_number_token3] = ACTIONS(1018), - [aux_sym__val_number_token4] = ACTIONS(1018), - [aux_sym__val_number_token5] = ACTIONS(1018), - [aux_sym__val_number_token6] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [sym__str_single_quotes] = ACTIONS(1018), - [sym__str_back_ticks] = ACTIONS(1018), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1018), - [sym__entry_separator] = ACTIONS(1020), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1020), - }, - [619] = { - [sym_comment] = STATE(619), [anon_sym_export] = ACTIONS(2359), [anon_sym_alias] = ACTIONS(2359), [anon_sym_let] = ACTIONS(2359), @@ -141895,108 +142114,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2361), }, - [620] = { - [sym_comment] = STATE(620), - [anon_sym_export] = ACTIONS(1709), - [anon_sym_alias] = ACTIONS(1709), - [anon_sym_let] = ACTIONS(1709), - [anon_sym_let_DASHenv] = ACTIONS(1709), - [anon_sym_mut] = ACTIONS(1709), - [anon_sym_const] = ACTIONS(1709), - [aux_sym_cmd_identifier_token1] = ACTIONS(1709), - [aux_sym_cmd_identifier_token2] = ACTIONS(1709), - [aux_sym_cmd_identifier_token3] = ACTIONS(1709), - [aux_sym_cmd_identifier_token4] = ACTIONS(1709), - [aux_sym_cmd_identifier_token5] = ACTIONS(1709), - [aux_sym_cmd_identifier_token6] = ACTIONS(1709), - [aux_sym_cmd_identifier_token7] = ACTIONS(1709), - [aux_sym_cmd_identifier_token8] = ACTIONS(1709), - [aux_sym_cmd_identifier_token9] = ACTIONS(1709), - [aux_sym_cmd_identifier_token10] = ACTIONS(1709), - [aux_sym_cmd_identifier_token11] = ACTIONS(1709), - [aux_sym_cmd_identifier_token12] = ACTIONS(1709), - [aux_sym_cmd_identifier_token13] = ACTIONS(1709), - [aux_sym_cmd_identifier_token14] = ACTIONS(1709), - [aux_sym_cmd_identifier_token15] = ACTIONS(1709), - [aux_sym_cmd_identifier_token16] = ACTIONS(1709), - [aux_sym_cmd_identifier_token17] = ACTIONS(1709), - [aux_sym_cmd_identifier_token18] = ACTIONS(1709), - [aux_sym_cmd_identifier_token19] = ACTIONS(1709), - [aux_sym_cmd_identifier_token20] = ACTIONS(1709), - [aux_sym_cmd_identifier_token21] = ACTIONS(1709), - [aux_sym_cmd_identifier_token22] = ACTIONS(1709), - [aux_sym_cmd_identifier_token23] = ACTIONS(1709), - [aux_sym_cmd_identifier_token24] = ACTIONS(1709), - [aux_sym_cmd_identifier_token25] = ACTIONS(1709), - [aux_sym_cmd_identifier_token26] = ACTIONS(1709), - [aux_sym_cmd_identifier_token27] = ACTIONS(1709), - [aux_sym_cmd_identifier_token28] = ACTIONS(1709), - [aux_sym_cmd_identifier_token29] = ACTIONS(1709), - [aux_sym_cmd_identifier_token30] = ACTIONS(1709), - [aux_sym_cmd_identifier_token31] = ACTIONS(1709), - [aux_sym_cmd_identifier_token32] = ACTIONS(1709), - [aux_sym_cmd_identifier_token33] = ACTIONS(1709), - [aux_sym_cmd_identifier_token34] = ACTIONS(1709), - [aux_sym_cmd_identifier_token35] = ACTIONS(1709), - [aux_sym_cmd_identifier_token36] = ACTIONS(1709), - [aux_sym_cmd_identifier_token37] = ACTIONS(1709), - [aux_sym_cmd_identifier_token38] = ACTIONS(1709), - [aux_sym_cmd_identifier_token39] = ACTIONS(1709), - [aux_sym_cmd_identifier_token40] = ACTIONS(1709), - [anon_sym_def] = ACTIONS(1709), - [anon_sym_export_DASHenv] = ACTIONS(1709), - [anon_sym_extern] = ACTIONS(1709), - [anon_sym_module] = ACTIONS(1709), - [anon_sym_use] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_error] = ACTIONS(1709), - [anon_sym_DASH2] = ACTIONS(1709), - [anon_sym_break] = ACTIONS(1709), - [anon_sym_continue] = ACTIONS(1709), - [anon_sym_for] = ACTIONS(1709), - [anon_sym_in2] = ACTIONS(1709), - [anon_sym_loop] = ACTIONS(1709), - [anon_sym_make] = ACTIONS(1709), - [anon_sym_while] = ACTIONS(1709), - [anon_sym_do] = ACTIONS(1709), - [anon_sym_if] = ACTIONS(1709), - [anon_sym_else] = ACTIONS(1709), - [anon_sym_match] = ACTIONS(1709), - [anon_sym_RBRACE] = ACTIONS(1709), - [anon_sym_try] = ACTIONS(1709), - [anon_sym_catch] = ACTIONS(1709), - [anon_sym_return] = ACTIONS(1709), - [anon_sym_source] = ACTIONS(1709), - [anon_sym_source_DASHenv] = ACTIONS(1709), - [anon_sym_register] = ACTIONS(1709), - [anon_sym_hide] = ACTIONS(1709), - [anon_sym_hide_DASHenv] = ACTIONS(1709), - [anon_sym_overlay] = ACTIONS(1709), - [anon_sym_as] = ACTIONS(1709), - [anon_sym_PLUS2] = ACTIONS(1709), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1709), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1709), - [aux_sym__val_number_decimal_token1] = ACTIONS(1709), - [aux_sym__val_number_decimal_token2] = ACTIONS(1709), - [aux_sym__val_number_decimal_token3] = ACTIONS(1709), - [aux_sym__val_number_decimal_token4] = ACTIONS(1709), - [aux_sym__val_number_token1] = ACTIONS(1709), - [aux_sym__val_number_token2] = ACTIONS(1709), - [aux_sym__val_number_token3] = ACTIONS(1709), - [aux_sym__val_number_token4] = ACTIONS(1709), - [aux_sym__val_number_token5] = ACTIONS(1709), - [aux_sym__val_number_token6] = ACTIONS(1709), - [anon_sym_DQUOTE] = ACTIONS(1709), - [sym__str_single_quotes] = ACTIONS(1709), - [sym__str_back_ticks] = ACTIONS(1709), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1709), - [sym__entry_separator] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1721), - }, - [621] = { - [sym_comment] = STATE(621), + [619] = { + [sym_comment] = STATE(619), [anon_sym_export] = ACTIONS(2363), [anon_sym_alias] = ACTIONS(2363), [anon_sym_let] = ACTIONS(2363), @@ -142095,108 +142214,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2365), }, - [622] = { - [sym_comment] = STATE(622), - [anon_sym_export] = ACTIONS(2159), - [anon_sym_alias] = ACTIONS(2159), - [anon_sym_let] = ACTIONS(2159), - [anon_sym_let_DASHenv] = ACTIONS(2159), - [anon_sym_mut] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [aux_sym_cmd_identifier_token1] = ACTIONS(2159), - [aux_sym_cmd_identifier_token2] = ACTIONS(2159), - [aux_sym_cmd_identifier_token3] = ACTIONS(2159), - [aux_sym_cmd_identifier_token4] = ACTIONS(2159), - [aux_sym_cmd_identifier_token5] = ACTIONS(2159), - [aux_sym_cmd_identifier_token6] = ACTIONS(2159), - [aux_sym_cmd_identifier_token7] = ACTIONS(2159), - [aux_sym_cmd_identifier_token8] = ACTIONS(2159), - [aux_sym_cmd_identifier_token9] = ACTIONS(2159), - [aux_sym_cmd_identifier_token10] = ACTIONS(2159), - [aux_sym_cmd_identifier_token11] = ACTIONS(2159), - [aux_sym_cmd_identifier_token12] = ACTIONS(2159), - [aux_sym_cmd_identifier_token13] = ACTIONS(2159), - [aux_sym_cmd_identifier_token14] = ACTIONS(2159), - [aux_sym_cmd_identifier_token15] = ACTIONS(2159), - [aux_sym_cmd_identifier_token16] = ACTIONS(2159), - [aux_sym_cmd_identifier_token17] = ACTIONS(2159), - [aux_sym_cmd_identifier_token18] = ACTIONS(2159), - [aux_sym_cmd_identifier_token19] = ACTIONS(2159), - [aux_sym_cmd_identifier_token20] = ACTIONS(2159), - [aux_sym_cmd_identifier_token21] = ACTIONS(2159), - [aux_sym_cmd_identifier_token22] = ACTIONS(2159), - [aux_sym_cmd_identifier_token23] = ACTIONS(2159), - [aux_sym_cmd_identifier_token24] = ACTIONS(2159), - [aux_sym_cmd_identifier_token25] = ACTIONS(2159), - [aux_sym_cmd_identifier_token26] = ACTIONS(2159), - [aux_sym_cmd_identifier_token27] = ACTIONS(2159), - [aux_sym_cmd_identifier_token28] = ACTIONS(2159), - [aux_sym_cmd_identifier_token29] = ACTIONS(2159), - [aux_sym_cmd_identifier_token30] = ACTIONS(2159), - [aux_sym_cmd_identifier_token31] = ACTIONS(2159), - [aux_sym_cmd_identifier_token32] = ACTIONS(2159), - [aux_sym_cmd_identifier_token33] = ACTIONS(2159), - [aux_sym_cmd_identifier_token34] = ACTIONS(2159), - [aux_sym_cmd_identifier_token35] = ACTIONS(2159), - [aux_sym_cmd_identifier_token36] = ACTIONS(2159), - [aux_sym_cmd_identifier_token37] = ACTIONS(2159), - [aux_sym_cmd_identifier_token38] = ACTIONS(2159), - [aux_sym_cmd_identifier_token39] = ACTIONS(2159), - [aux_sym_cmd_identifier_token40] = ACTIONS(2159), - [anon_sym_def] = ACTIONS(2159), - [anon_sym_export_DASHenv] = ACTIONS(2159), - [anon_sym_extern] = ACTIONS(2159), - [anon_sym_module] = ACTIONS(2159), - [anon_sym_use] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_DOLLAR] = ACTIONS(2159), - [anon_sym_error] = ACTIONS(2159), - [anon_sym_DASH2] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_in2] = ACTIONS(2159), - [anon_sym_loop] = ACTIONS(2159), - [anon_sym_make] = ACTIONS(2159), - [anon_sym_while] = ACTIONS(2159), - [anon_sym_do] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_else] = ACTIONS(2159), - [anon_sym_match] = ACTIONS(2159), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_try] = ACTIONS(2159), - [anon_sym_catch] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_source] = ACTIONS(2159), - [anon_sym_source_DASHenv] = ACTIONS(2159), - [anon_sym_register] = ACTIONS(2159), - [anon_sym_hide] = ACTIONS(2159), - [anon_sym_hide_DASHenv] = ACTIONS(2159), - [anon_sym_overlay] = ACTIONS(2159), - [anon_sym_as] = ACTIONS(2159), - [anon_sym_PLUS2] = ACTIONS(2159), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2159), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2159), - [aux_sym__val_number_decimal_token1] = ACTIONS(2159), - [aux_sym__val_number_decimal_token2] = ACTIONS(2159), - [aux_sym__val_number_decimal_token3] = ACTIONS(2159), - [aux_sym__val_number_decimal_token4] = ACTIONS(2159), - [aux_sym__val_number_token1] = ACTIONS(2159), - [aux_sym__val_number_token2] = ACTIONS(2159), - [aux_sym__val_number_token3] = ACTIONS(2159), - [aux_sym__val_number_token4] = ACTIONS(2159), - [aux_sym__val_number_token5] = ACTIONS(2159), - [aux_sym__val_number_token6] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(2159), - [sym__str_single_quotes] = ACTIONS(2159), - [sym__str_back_ticks] = ACTIONS(2159), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2159), - [sym__entry_separator] = ACTIONS(2165), + [620] = { + [sym_comment] = STATE(620), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_alias] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_let_DASHenv] = ACTIONS(2183), + [anon_sym_mut] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [aux_sym_cmd_identifier_token1] = ACTIONS(2183), + [aux_sym_cmd_identifier_token2] = ACTIONS(2183), + [aux_sym_cmd_identifier_token3] = ACTIONS(2183), + [aux_sym_cmd_identifier_token4] = ACTIONS(2183), + [aux_sym_cmd_identifier_token5] = ACTIONS(2183), + [aux_sym_cmd_identifier_token6] = ACTIONS(2183), + [aux_sym_cmd_identifier_token7] = ACTIONS(2183), + [aux_sym_cmd_identifier_token8] = ACTIONS(2183), + [aux_sym_cmd_identifier_token9] = ACTIONS(2183), + [aux_sym_cmd_identifier_token10] = ACTIONS(2183), + [aux_sym_cmd_identifier_token11] = ACTIONS(2183), + [aux_sym_cmd_identifier_token12] = ACTIONS(2183), + [aux_sym_cmd_identifier_token13] = ACTIONS(2183), + [aux_sym_cmd_identifier_token14] = ACTIONS(2183), + [aux_sym_cmd_identifier_token15] = ACTIONS(2183), + [aux_sym_cmd_identifier_token16] = ACTIONS(2183), + [aux_sym_cmd_identifier_token17] = ACTIONS(2183), + [aux_sym_cmd_identifier_token18] = ACTIONS(2183), + [aux_sym_cmd_identifier_token19] = ACTIONS(2183), + [aux_sym_cmd_identifier_token20] = ACTIONS(2183), + [aux_sym_cmd_identifier_token21] = ACTIONS(2183), + [aux_sym_cmd_identifier_token22] = ACTIONS(2183), + [aux_sym_cmd_identifier_token23] = ACTIONS(2183), + [aux_sym_cmd_identifier_token24] = ACTIONS(2183), + [aux_sym_cmd_identifier_token25] = ACTIONS(2183), + [aux_sym_cmd_identifier_token26] = ACTIONS(2183), + [aux_sym_cmd_identifier_token27] = ACTIONS(2183), + [aux_sym_cmd_identifier_token28] = ACTIONS(2183), + [aux_sym_cmd_identifier_token29] = ACTIONS(2183), + [aux_sym_cmd_identifier_token30] = ACTIONS(2183), + [aux_sym_cmd_identifier_token31] = ACTIONS(2183), + [aux_sym_cmd_identifier_token32] = ACTIONS(2183), + [aux_sym_cmd_identifier_token33] = ACTIONS(2183), + [aux_sym_cmd_identifier_token34] = ACTIONS(2183), + [aux_sym_cmd_identifier_token35] = ACTIONS(2183), + [aux_sym_cmd_identifier_token36] = ACTIONS(2183), + [aux_sym_cmd_identifier_token37] = ACTIONS(2183), + [aux_sym_cmd_identifier_token38] = ACTIONS(2183), + [aux_sym_cmd_identifier_token39] = ACTIONS(2183), + [aux_sym_cmd_identifier_token40] = ACTIONS(2183), + [anon_sym_def] = ACTIONS(2183), + [anon_sym_export_DASHenv] = ACTIONS(2183), + [anon_sym_extern] = ACTIONS(2183), + [anon_sym_module] = ACTIONS(2183), + [anon_sym_use] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_DOLLAR] = ACTIONS(2183), + [anon_sym_error] = ACTIONS(2183), + [anon_sym_DASH2] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_in2] = ACTIONS(2183), + [anon_sym_loop] = ACTIONS(2183), + [anon_sym_make] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_else] = ACTIONS(2183), + [anon_sym_match] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_catch] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_source] = ACTIONS(2183), + [anon_sym_source_DASHenv] = ACTIONS(2183), + [anon_sym_register] = ACTIONS(2183), + [anon_sym_hide] = ACTIONS(2183), + [anon_sym_hide_DASHenv] = ACTIONS(2183), + [anon_sym_overlay] = ACTIONS(2183), + [anon_sym_as] = ACTIONS(2183), + [anon_sym_PLUS2] = ACTIONS(2183), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2183), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2183), + [aux_sym__val_number_decimal_token1] = ACTIONS(2183), + [aux_sym__val_number_decimal_token2] = ACTIONS(2183), + [aux_sym__val_number_decimal_token3] = ACTIONS(2183), + [aux_sym__val_number_decimal_token4] = ACTIONS(2183), + [aux_sym__val_number_token1] = ACTIONS(2183), + [aux_sym__val_number_token2] = ACTIONS(2183), + [aux_sym__val_number_token3] = ACTIONS(2183), + [aux_sym__val_number_token4] = ACTIONS(2183), + [aux_sym__val_number_token5] = ACTIONS(2183), + [aux_sym__val_number_token6] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [sym__str_single_quotes] = ACTIONS(2183), + [sym__str_back_ticks] = ACTIONS(2183), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2183), + [sym__entry_separator] = ACTIONS(2185), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2165), + [sym_raw_string_begin] = ACTIONS(2185), }, - [623] = { - [sym_comment] = STATE(623), + [621] = { + [sym_comment] = STATE(621), [anon_sym_export] = ACTIONS(2367), [anon_sym_alias] = ACTIONS(2367), [anon_sym_let] = ACTIONS(2367), @@ -142295,208 +142414,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2369), }, - [624] = { - [sym_comment] = STATE(624), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [aux_sym_cmd_identifier_token1] = ACTIONS(990), - [aux_sym_cmd_identifier_token2] = ACTIONS(990), - [aux_sym_cmd_identifier_token3] = ACTIONS(990), - [aux_sym_cmd_identifier_token4] = ACTIONS(990), - [aux_sym_cmd_identifier_token5] = ACTIONS(990), - [aux_sym_cmd_identifier_token6] = ACTIONS(990), - [aux_sym_cmd_identifier_token7] = ACTIONS(990), - [aux_sym_cmd_identifier_token8] = ACTIONS(990), - [aux_sym_cmd_identifier_token9] = ACTIONS(990), - [aux_sym_cmd_identifier_token10] = ACTIONS(990), - [aux_sym_cmd_identifier_token11] = ACTIONS(990), - [aux_sym_cmd_identifier_token12] = ACTIONS(990), - [aux_sym_cmd_identifier_token13] = ACTIONS(990), - [aux_sym_cmd_identifier_token14] = ACTIONS(990), - [aux_sym_cmd_identifier_token15] = ACTIONS(990), - [aux_sym_cmd_identifier_token16] = ACTIONS(990), - [aux_sym_cmd_identifier_token17] = ACTIONS(990), - [aux_sym_cmd_identifier_token18] = ACTIONS(990), - [aux_sym_cmd_identifier_token19] = ACTIONS(990), - [aux_sym_cmd_identifier_token20] = ACTIONS(990), - [aux_sym_cmd_identifier_token21] = ACTIONS(990), - [aux_sym_cmd_identifier_token22] = ACTIONS(990), - [aux_sym_cmd_identifier_token23] = ACTIONS(990), - [aux_sym_cmd_identifier_token24] = ACTIONS(990), - [aux_sym_cmd_identifier_token25] = ACTIONS(990), - [aux_sym_cmd_identifier_token26] = ACTIONS(990), - [aux_sym_cmd_identifier_token27] = ACTIONS(990), - [aux_sym_cmd_identifier_token28] = ACTIONS(990), - [aux_sym_cmd_identifier_token29] = ACTIONS(990), - [aux_sym_cmd_identifier_token30] = ACTIONS(990), - [aux_sym_cmd_identifier_token31] = ACTIONS(990), - [aux_sym_cmd_identifier_token32] = ACTIONS(990), - [aux_sym_cmd_identifier_token33] = ACTIONS(990), - [aux_sym_cmd_identifier_token34] = ACTIONS(990), - [aux_sym_cmd_identifier_token35] = ACTIONS(990), - [aux_sym_cmd_identifier_token36] = ACTIONS(990), - [aux_sym_cmd_identifier_token37] = ACTIONS(990), - [aux_sym_cmd_identifier_token38] = ACTIONS(990), - [aux_sym_cmd_identifier_token39] = ACTIONS(990), - [aux_sym_cmd_identifier_token40] = ACTIONS(990), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_error] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in2] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_make] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_try] = ACTIONS(990), - [anon_sym_catch] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_PLUS2] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(990), - [aux_sym__val_number_decimal_token3] = ACTIONS(990), - [aux_sym__val_number_decimal_token4] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(990), - [aux_sym__val_number_token2] = ACTIONS(990), - [aux_sym__val_number_token3] = ACTIONS(990), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(990), - [sym__entry_separator] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(992), - }, - [625] = { - [sym_comment] = STATE(625), - [anon_sym_export] = ACTIONS(2347), - [anon_sym_alias] = ACTIONS(2347), - [anon_sym_let] = ACTIONS(2347), - [anon_sym_let_DASHenv] = ACTIONS(2347), - [anon_sym_mut] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [aux_sym_cmd_identifier_token1] = ACTIONS(2347), - [aux_sym_cmd_identifier_token2] = ACTIONS(2347), - [aux_sym_cmd_identifier_token3] = ACTIONS(2347), - [aux_sym_cmd_identifier_token4] = ACTIONS(2347), - [aux_sym_cmd_identifier_token5] = ACTIONS(2347), - [aux_sym_cmd_identifier_token6] = ACTIONS(2347), - [aux_sym_cmd_identifier_token7] = ACTIONS(2347), - [aux_sym_cmd_identifier_token8] = ACTIONS(2347), - [aux_sym_cmd_identifier_token9] = ACTIONS(2347), - [aux_sym_cmd_identifier_token10] = ACTIONS(2347), - [aux_sym_cmd_identifier_token11] = ACTIONS(2347), - [aux_sym_cmd_identifier_token12] = ACTIONS(2347), - [aux_sym_cmd_identifier_token13] = ACTIONS(2347), - [aux_sym_cmd_identifier_token14] = ACTIONS(2347), - [aux_sym_cmd_identifier_token15] = ACTIONS(2347), - [aux_sym_cmd_identifier_token16] = ACTIONS(2347), - [aux_sym_cmd_identifier_token17] = ACTIONS(2347), - [aux_sym_cmd_identifier_token18] = ACTIONS(2347), - [aux_sym_cmd_identifier_token19] = ACTIONS(2347), - [aux_sym_cmd_identifier_token20] = ACTIONS(2347), - [aux_sym_cmd_identifier_token21] = ACTIONS(2347), - [aux_sym_cmd_identifier_token22] = ACTIONS(2347), - [aux_sym_cmd_identifier_token23] = ACTIONS(2347), - [aux_sym_cmd_identifier_token24] = ACTIONS(2347), - [aux_sym_cmd_identifier_token25] = ACTIONS(2347), - [aux_sym_cmd_identifier_token26] = ACTIONS(2347), - [aux_sym_cmd_identifier_token27] = ACTIONS(2347), - [aux_sym_cmd_identifier_token28] = ACTIONS(2347), - [aux_sym_cmd_identifier_token29] = ACTIONS(2347), - [aux_sym_cmd_identifier_token30] = ACTIONS(2347), - [aux_sym_cmd_identifier_token31] = ACTIONS(2347), - [aux_sym_cmd_identifier_token32] = ACTIONS(2347), - [aux_sym_cmd_identifier_token33] = ACTIONS(2347), - [aux_sym_cmd_identifier_token34] = ACTIONS(2347), - [aux_sym_cmd_identifier_token35] = ACTIONS(2347), - [aux_sym_cmd_identifier_token36] = ACTIONS(2347), - [aux_sym_cmd_identifier_token37] = ACTIONS(2347), - [aux_sym_cmd_identifier_token38] = ACTIONS(2347), - [aux_sym_cmd_identifier_token39] = ACTIONS(2347), - [aux_sym_cmd_identifier_token40] = ACTIONS(2347), - [anon_sym_def] = ACTIONS(2347), - [anon_sym_export_DASHenv] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym_module] = ACTIONS(2347), - [anon_sym_use] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2347), - [anon_sym_DOLLAR] = ACTIONS(2347), - [anon_sym_error] = ACTIONS(2347), - [anon_sym_DASH2] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_in2] = ACTIONS(2347), - [anon_sym_loop] = ACTIONS(2347), - [anon_sym_make] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_match] = ACTIONS(2347), - [anon_sym_RBRACE] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_catch] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_source] = ACTIONS(2347), - [anon_sym_source_DASHenv] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_hide] = ACTIONS(2347), - [anon_sym_hide_DASHenv] = ACTIONS(2347), - [anon_sym_overlay] = ACTIONS(2347), - [anon_sym_as] = ACTIONS(2347), - [anon_sym_PLUS2] = ACTIONS(2347), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2347), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2347), - [aux_sym__val_number_decimal_token1] = ACTIONS(2347), - [aux_sym__val_number_decimal_token2] = ACTIONS(2347), - [aux_sym__val_number_decimal_token3] = ACTIONS(2347), - [aux_sym__val_number_decimal_token4] = ACTIONS(2347), - [aux_sym__val_number_token1] = ACTIONS(2347), - [aux_sym__val_number_token2] = ACTIONS(2347), - [aux_sym__val_number_token3] = ACTIONS(2347), - [aux_sym__val_number_token4] = ACTIONS(2347), - [aux_sym__val_number_token5] = ACTIONS(2347), - [aux_sym__val_number_token6] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2347), - [sym__str_single_quotes] = ACTIONS(2347), - [sym__str_back_ticks] = ACTIONS(2347), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2347), - [sym__entry_separator] = ACTIONS(2349), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2349), - }, - [626] = { - [sym_comment] = STATE(626), + [622] = { + [sym_comment] = STATE(622), [anon_sym_export] = ACTIONS(2371), [anon_sym_alias] = ACTIONS(2371), [anon_sym_let] = ACTIONS(2371), @@ -142595,308 +142514,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2373), }, - [627] = { - [sym_comment] = STATE(627), - [aux_sym__multiple_types_repeat1] = STATE(591), - [anon_sym_export] = ACTIONS(2286), - [anon_sym_alias] = ACTIONS(2286), - [anon_sym_let] = ACTIONS(2286), - [anon_sym_let_DASHenv] = ACTIONS(2286), - [anon_sym_mut] = ACTIONS(2286), - [anon_sym_const] = ACTIONS(2286), - [aux_sym_cmd_identifier_token1] = ACTIONS(2286), - [aux_sym_cmd_identifier_token2] = ACTIONS(2286), - [aux_sym_cmd_identifier_token3] = ACTIONS(2286), - [aux_sym_cmd_identifier_token4] = ACTIONS(2286), - [aux_sym_cmd_identifier_token5] = ACTIONS(2286), - [aux_sym_cmd_identifier_token6] = ACTIONS(2286), - [aux_sym_cmd_identifier_token7] = ACTIONS(2286), - [aux_sym_cmd_identifier_token8] = ACTIONS(2286), - [aux_sym_cmd_identifier_token9] = ACTIONS(2286), - [aux_sym_cmd_identifier_token10] = ACTIONS(2286), - [aux_sym_cmd_identifier_token11] = ACTIONS(2286), - [aux_sym_cmd_identifier_token12] = ACTIONS(2286), - [aux_sym_cmd_identifier_token13] = ACTIONS(2286), - [aux_sym_cmd_identifier_token14] = ACTIONS(2286), - [aux_sym_cmd_identifier_token15] = ACTIONS(2286), - [aux_sym_cmd_identifier_token16] = ACTIONS(2286), - [aux_sym_cmd_identifier_token17] = ACTIONS(2286), - [aux_sym_cmd_identifier_token18] = ACTIONS(2286), - [aux_sym_cmd_identifier_token19] = ACTIONS(2286), - [aux_sym_cmd_identifier_token20] = ACTIONS(2286), - [aux_sym_cmd_identifier_token21] = ACTIONS(2286), - [aux_sym_cmd_identifier_token22] = ACTIONS(2286), - [aux_sym_cmd_identifier_token23] = ACTIONS(2286), - [aux_sym_cmd_identifier_token24] = ACTIONS(2286), - [aux_sym_cmd_identifier_token25] = ACTIONS(2286), - [aux_sym_cmd_identifier_token26] = ACTIONS(2286), - [aux_sym_cmd_identifier_token27] = ACTIONS(2286), - [aux_sym_cmd_identifier_token28] = ACTIONS(2286), - [aux_sym_cmd_identifier_token29] = ACTIONS(2286), - [aux_sym_cmd_identifier_token30] = ACTIONS(2286), - [aux_sym_cmd_identifier_token31] = ACTIONS(2286), - [aux_sym_cmd_identifier_token32] = ACTIONS(2286), - [aux_sym_cmd_identifier_token33] = ACTIONS(2286), - [aux_sym_cmd_identifier_token34] = ACTIONS(2286), - [aux_sym_cmd_identifier_token35] = ACTIONS(2286), - [aux_sym_cmd_identifier_token36] = ACTIONS(2286), - [aux_sym_cmd_identifier_token37] = ACTIONS(2286), - [aux_sym_cmd_identifier_token38] = ACTIONS(2286), - [aux_sym_cmd_identifier_token39] = ACTIONS(2286), - [aux_sym_cmd_identifier_token40] = ACTIONS(2286), - [anon_sym_def] = ACTIONS(2286), - [anon_sym_export_DASHenv] = ACTIONS(2286), - [anon_sym_extern] = ACTIONS(2286), - [anon_sym_module] = ACTIONS(2286), - [anon_sym_use] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2286), - [anon_sym_DOLLAR] = ACTIONS(2286), - [anon_sym_error] = ACTIONS(2286), - [anon_sym_DASH2] = ACTIONS(2286), - [anon_sym_break] = ACTIONS(2286), - [anon_sym_continue] = ACTIONS(2286), - [anon_sym_for] = ACTIONS(2286), - [anon_sym_in2] = ACTIONS(2286), - [anon_sym_loop] = ACTIONS(2286), - [anon_sym_make] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(2286), - [anon_sym_do] = ACTIONS(2286), - [anon_sym_if] = ACTIONS(2286), - [anon_sym_else] = ACTIONS(2286), - [anon_sym_match] = ACTIONS(2286), - [anon_sym_try] = ACTIONS(2286), - [anon_sym_catch] = ACTIONS(2286), - [anon_sym_return] = ACTIONS(2286), - [anon_sym_source] = ACTIONS(2286), - [anon_sym_source_DASHenv] = ACTIONS(2286), - [anon_sym_register] = ACTIONS(2286), - [anon_sym_hide] = ACTIONS(2286), - [anon_sym_hide_DASHenv] = ACTIONS(2286), - [anon_sym_overlay] = ACTIONS(2286), - [anon_sym_as] = ACTIONS(2286), - [anon_sym_PLUS2] = ACTIONS(2286), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2286), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2286), - [aux_sym__val_number_decimal_token1] = ACTIONS(2286), - [aux_sym__val_number_decimal_token2] = ACTIONS(2286), - [aux_sym__val_number_decimal_token3] = ACTIONS(2286), - [aux_sym__val_number_decimal_token4] = ACTIONS(2286), - [aux_sym__val_number_token1] = ACTIONS(2286), - [aux_sym__val_number_token2] = ACTIONS(2286), - [aux_sym__val_number_token3] = ACTIONS(2286), - [aux_sym__val_number_token4] = ACTIONS(2286), - [aux_sym__val_number_token5] = ACTIONS(2286), - [aux_sym__val_number_token6] = ACTIONS(2286), - [anon_sym_DQUOTE] = ACTIONS(2286), - [sym__str_single_quotes] = ACTIONS(2286), - [sym__str_back_ticks] = ACTIONS(2286), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2286), - [sym__entry_separator] = ACTIONS(2290), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2292), - }, - [628] = { - [sym_comment] = STATE(628), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_alias] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_let_DASHenv] = ACTIONS(1755), - [anon_sym_mut] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1755), - [aux_sym_cmd_identifier_token3] = ACTIONS(1755), - [aux_sym_cmd_identifier_token4] = ACTIONS(1755), - [aux_sym_cmd_identifier_token5] = ACTIONS(1755), - [aux_sym_cmd_identifier_token6] = ACTIONS(1755), - [aux_sym_cmd_identifier_token7] = ACTIONS(1755), - [aux_sym_cmd_identifier_token8] = ACTIONS(1755), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1755), - [aux_sym_cmd_identifier_token11] = ACTIONS(1755), - [aux_sym_cmd_identifier_token12] = ACTIONS(1755), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1755), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1755), - [aux_sym_cmd_identifier_token17] = ACTIONS(1755), - [aux_sym_cmd_identifier_token18] = ACTIONS(1755), - [aux_sym_cmd_identifier_token19] = ACTIONS(1755), - [aux_sym_cmd_identifier_token20] = ACTIONS(1755), - [aux_sym_cmd_identifier_token21] = ACTIONS(1755), - [aux_sym_cmd_identifier_token22] = ACTIONS(1755), - [aux_sym_cmd_identifier_token23] = ACTIONS(1755), - [aux_sym_cmd_identifier_token24] = ACTIONS(1755), - [aux_sym_cmd_identifier_token25] = ACTIONS(1755), - [aux_sym_cmd_identifier_token26] = ACTIONS(1755), - [aux_sym_cmd_identifier_token27] = ACTIONS(1755), - [aux_sym_cmd_identifier_token28] = ACTIONS(1755), - [aux_sym_cmd_identifier_token29] = ACTIONS(1755), - [aux_sym_cmd_identifier_token30] = ACTIONS(1755), - [aux_sym_cmd_identifier_token31] = ACTIONS(1755), - [aux_sym_cmd_identifier_token32] = ACTIONS(1755), - [aux_sym_cmd_identifier_token33] = ACTIONS(1755), - [aux_sym_cmd_identifier_token34] = ACTIONS(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1755), - [aux_sym_cmd_identifier_token36] = ACTIONS(1755), - [aux_sym_cmd_identifier_token37] = ACTIONS(1755), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1755), - [aux_sym_cmd_identifier_token40] = ACTIONS(1755), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_export_DASHenv] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_make] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1755), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_source] = ACTIONS(1755), - [anon_sym_source_DASHenv] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_hide] = ACTIONS(1755), - [anon_sym_hide_DASHenv] = ACTIONS(1755), - [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1755), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1755), - [aux_sym__val_number_decimal_token3] = ACTIONS(1755), - [aux_sym__val_number_decimal_token4] = ACTIONS(1755), - [aux_sym__val_number_token1] = ACTIONS(1755), - [aux_sym__val_number_token2] = ACTIONS(1755), - [aux_sym__val_number_token3] = ACTIONS(1755), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym__str_single_quotes] = ACTIONS(1755), - [sym__str_back_ticks] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1755), - [sym__entry_separator] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [629] = { - [sym_comment] = STATE(629), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_alias] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_let_DASHenv] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [aux_sym_cmd_identifier_token1] = ACTIONS(1783), - [aux_sym_cmd_identifier_token2] = ACTIONS(1783), - [aux_sym_cmd_identifier_token3] = ACTIONS(1783), - [aux_sym_cmd_identifier_token4] = ACTIONS(1783), - [aux_sym_cmd_identifier_token5] = ACTIONS(1783), - [aux_sym_cmd_identifier_token6] = ACTIONS(1783), - [aux_sym_cmd_identifier_token7] = ACTIONS(1783), - [aux_sym_cmd_identifier_token8] = ACTIONS(1783), - [aux_sym_cmd_identifier_token9] = ACTIONS(1783), - [aux_sym_cmd_identifier_token10] = ACTIONS(1783), - [aux_sym_cmd_identifier_token11] = ACTIONS(1783), - [aux_sym_cmd_identifier_token12] = ACTIONS(1783), - [aux_sym_cmd_identifier_token13] = ACTIONS(1783), - [aux_sym_cmd_identifier_token14] = ACTIONS(1783), - [aux_sym_cmd_identifier_token15] = ACTIONS(1783), - [aux_sym_cmd_identifier_token16] = ACTIONS(1783), - [aux_sym_cmd_identifier_token17] = ACTIONS(1783), - [aux_sym_cmd_identifier_token18] = ACTIONS(1783), - [aux_sym_cmd_identifier_token19] = ACTIONS(1783), - [aux_sym_cmd_identifier_token20] = ACTIONS(1783), - [aux_sym_cmd_identifier_token21] = ACTIONS(1783), - [aux_sym_cmd_identifier_token22] = ACTIONS(1783), - [aux_sym_cmd_identifier_token23] = ACTIONS(1783), - [aux_sym_cmd_identifier_token24] = ACTIONS(1783), - [aux_sym_cmd_identifier_token25] = ACTIONS(1783), - [aux_sym_cmd_identifier_token26] = ACTIONS(1783), - [aux_sym_cmd_identifier_token27] = ACTIONS(1783), - [aux_sym_cmd_identifier_token28] = ACTIONS(1783), - [aux_sym_cmd_identifier_token29] = ACTIONS(1783), - [aux_sym_cmd_identifier_token30] = ACTIONS(1783), - [aux_sym_cmd_identifier_token31] = ACTIONS(1783), - [aux_sym_cmd_identifier_token32] = ACTIONS(1783), - [aux_sym_cmd_identifier_token33] = ACTIONS(1783), - [aux_sym_cmd_identifier_token34] = ACTIONS(1783), - [aux_sym_cmd_identifier_token35] = ACTIONS(1783), - [aux_sym_cmd_identifier_token36] = ACTIONS(1783), - [aux_sym_cmd_identifier_token37] = ACTIONS(1783), - [aux_sym_cmd_identifier_token38] = ACTIONS(1783), - [aux_sym_cmd_identifier_token39] = ACTIONS(1783), - [aux_sym_cmd_identifier_token40] = ACTIONS(1783), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_export_DASHenv] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_error] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_make] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_catch] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_source] = ACTIONS(1783), - [anon_sym_source_DASHenv] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_hide] = ACTIONS(1783), - [anon_sym_hide_DASHenv] = ACTIONS(1783), - [anon_sym_overlay] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_PLUS2] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1783), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1783), - [aux_sym__val_number_decimal_token3] = ACTIONS(1783), - [aux_sym__val_number_decimal_token4] = ACTIONS(1783), - [aux_sym__val_number_token1] = ACTIONS(1783), - [aux_sym__val_number_token2] = ACTIONS(1783), - [aux_sym__val_number_token3] = ACTIONS(1783), - [aux_sym__val_number_token4] = ACTIONS(1783), - [aux_sym__val_number_token5] = ACTIONS(1783), - [aux_sym__val_number_token6] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1783), - [sym__str_single_quotes] = ACTIONS(1783), - [sym__str_back_ticks] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1783), - [sym__entry_separator] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1785), + [623] = { + [sym_comment] = STATE(623), + [anon_sym_export] = ACTIONS(1006), + [anon_sym_alias] = ACTIONS(1006), + [anon_sym_let] = ACTIONS(1006), + [anon_sym_let_DASHenv] = ACTIONS(1006), + [anon_sym_mut] = ACTIONS(1006), + [anon_sym_const] = ACTIONS(1006), + [aux_sym_cmd_identifier_token1] = ACTIONS(1006), + [aux_sym_cmd_identifier_token2] = ACTIONS(1008), + [aux_sym_cmd_identifier_token3] = ACTIONS(1008), + [aux_sym_cmd_identifier_token4] = ACTIONS(1008), + [aux_sym_cmd_identifier_token5] = ACTIONS(1008), + [aux_sym_cmd_identifier_token6] = ACTIONS(1008), + [aux_sym_cmd_identifier_token7] = ACTIONS(1008), + [aux_sym_cmd_identifier_token8] = ACTIONS(1006), + [aux_sym_cmd_identifier_token9] = ACTIONS(1006), + [aux_sym_cmd_identifier_token10] = ACTIONS(1008), + [aux_sym_cmd_identifier_token11] = ACTIONS(1008), + [aux_sym_cmd_identifier_token12] = ACTIONS(1006), + [aux_sym_cmd_identifier_token13] = ACTIONS(1006), + [aux_sym_cmd_identifier_token14] = ACTIONS(1006), + [aux_sym_cmd_identifier_token15] = ACTIONS(1006), + [aux_sym_cmd_identifier_token16] = ACTIONS(1008), + [aux_sym_cmd_identifier_token17] = ACTIONS(1008), + [aux_sym_cmd_identifier_token18] = ACTIONS(1008), + [aux_sym_cmd_identifier_token19] = ACTIONS(1008), + [aux_sym_cmd_identifier_token20] = ACTIONS(1008), + [aux_sym_cmd_identifier_token21] = ACTIONS(1008), + [aux_sym_cmd_identifier_token22] = ACTIONS(1008), + [aux_sym_cmd_identifier_token23] = ACTIONS(1008), + [aux_sym_cmd_identifier_token24] = ACTIONS(1008), + [aux_sym_cmd_identifier_token25] = ACTIONS(1008), + [aux_sym_cmd_identifier_token26] = ACTIONS(1008), + [aux_sym_cmd_identifier_token27] = ACTIONS(1008), + [aux_sym_cmd_identifier_token28] = ACTIONS(1008), + [aux_sym_cmd_identifier_token29] = ACTIONS(1008), + [aux_sym_cmd_identifier_token30] = ACTIONS(1008), + [aux_sym_cmd_identifier_token31] = ACTIONS(1008), + [aux_sym_cmd_identifier_token32] = ACTIONS(1008), + [aux_sym_cmd_identifier_token33] = ACTIONS(1008), + [aux_sym_cmd_identifier_token34] = ACTIONS(1006), + [aux_sym_cmd_identifier_token35] = ACTIONS(1008), + [aux_sym_cmd_identifier_token36] = ACTIONS(1008), + [aux_sym_cmd_identifier_token37] = ACTIONS(1008), + [aux_sym_cmd_identifier_token38] = ACTIONS(1006), + [aux_sym_cmd_identifier_token39] = ACTIONS(1008), + [aux_sym_cmd_identifier_token40] = ACTIONS(1008), + [anon_sym_def] = ACTIONS(1006), + [anon_sym_export_DASHenv] = ACTIONS(1006), + [anon_sym_extern] = ACTIONS(1006), + [anon_sym_module] = ACTIONS(1006), + [anon_sym_use] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1008), + [anon_sym_error] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(1006), + [anon_sym_continue] = ACTIONS(1006), + [anon_sym_for] = ACTIONS(1006), + [anon_sym_in2] = ACTIONS(1006), + [anon_sym_loop] = ACTIONS(1006), + [anon_sym_make] = ACTIONS(1006), + [anon_sym_while] = ACTIONS(1006), + [anon_sym_do] = ACTIONS(1006), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_else] = ACTIONS(1006), + [anon_sym_match] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_try] = ACTIONS(1006), + [anon_sym_catch] = ACTIONS(1006), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_source] = ACTIONS(1006), + [anon_sym_source_DASHenv] = ACTIONS(1006), + [anon_sym_register] = ACTIONS(1006), + [anon_sym_hide] = ACTIONS(1006), + [anon_sym_hide_DASHenv] = ACTIONS(1006), + [anon_sym_overlay] = ACTIONS(1006), + [anon_sym_as] = ACTIONS(1006), + [anon_sym_PLUS2] = ACTIONS(1006), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1008), + [anon_sym_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1008), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1008), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_decimal_token4] = ACTIONS(1008), + [aux_sym__val_number_token1] = ACTIONS(1008), + [aux_sym__val_number_token2] = ACTIONS(1008), + [aux_sym__val_number_token3] = ACTIONS(1008), + [aux_sym__val_number_token4] = ACTIONS(1006), + [aux_sym__val_number_token5] = ACTIONS(1006), + [aux_sym__val_number_token6] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1008), + [sym__str_single_quotes] = ACTIONS(1008), + [sym__str_back_ticks] = ACTIONS(1008), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1008), }, - [630] = { - [sym_comment] = STATE(630), + [624] = { + [sym_comment] = STATE(624), [anon_sym_export] = ACTIONS(2375), [anon_sym_alias] = ACTIONS(2375), [anon_sym_let] = ACTIONS(2375), @@ -142995,308 +142714,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2377), }, - [631] = { - [sym_comment] = STATE(631), - [anon_sym_export] = ACTIONS(1030), - [anon_sym_alias] = ACTIONS(1030), - [anon_sym_let] = ACTIONS(1030), - [anon_sym_let_DASHenv] = ACTIONS(1030), - [anon_sym_mut] = ACTIONS(1030), - [anon_sym_const] = ACTIONS(1030), - [aux_sym_cmd_identifier_token1] = ACTIONS(1030), - [aux_sym_cmd_identifier_token2] = ACTIONS(1030), - [aux_sym_cmd_identifier_token3] = ACTIONS(1030), - [aux_sym_cmd_identifier_token4] = ACTIONS(1030), - [aux_sym_cmd_identifier_token5] = ACTIONS(1030), - [aux_sym_cmd_identifier_token6] = ACTIONS(1030), - [aux_sym_cmd_identifier_token7] = ACTIONS(1030), - [aux_sym_cmd_identifier_token8] = ACTIONS(1030), - [aux_sym_cmd_identifier_token9] = ACTIONS(1030), - [aux_sym_cmd_identifier_token10] = ACTIONS(1030), - [aux_sym_cmd_identifier_token11] = ACTIONS(1030), - [aux_sym_cmd_identifier_token12] = ACTIONS(1030), - [aux_sym_cmd_identifier_token13] = ACTIONS(1030), - [aux_sym_cmd_identifier_token14] = ACTIONS(1030), - [aux_sym_cmd_identifier_token15] = ACTIONS(1030), - [aux_sym_cmd_identifier_token16] = ACTIONS(1030), - [aux_sym_cmd_identifier_token17] = ACTIONS(1030), - [aux_sym_cmd_identifier_token18] = ACTIONS(1030), - [aux_sym_cmd_identifier_token19] = ACTIONS(1030), - [aux_sym_cmd_identifier_token20] = ACTIONS(1030), - [aux_sym_cmd_identifier_token21] = ACTIONS(1030), - [aux_sym_cmd_identifier_token22] = ACTIONS(1030), - [aux_sym_cmd_identifier_token23] = ACTIONS(1030), - [aux_sym_cmd_identifier_token24] = ACTIONS(1030), - [aux_sym_cmd_identifier_token25] = ACTIONS(1030), - [aux_sym_cmd_identifier_token26] = ACTIONS(1030), - [aux_sym_cmd_identifier_token27] = ACTIONS(1030), - [aux_sym_cmd_identifier_token28] = ACTIONS(1030), - [aux_sym_cmd_identifier_token29] = ACTIONS(1030), - [aux_sym_cmd_identifier_token30] = ACTIONS(1030), - [aux_sym_cmd_identifier_token31] = ACTIONS(1030), - [aux_sym_cmd_identifier_token32] = ACTIONS(1030), - [aux_sym_cmd_identifier_token33] = ACTIONS(1030), - [aux_sym_cmd_identifier_token34] = ACTIONS(1030), - [aux_sym_cmd_identifier_token35] = ACTIONS(1030), - [aux_sym_cmd_identifier_token36] = ACTIONS(1030), - [aux_sym_cmd_identifier_token37] = ACTIONS(1030), - [aux_sym_cmd_identifier_token38] = ACTIONS(1030), - [aux_sym_cmd_identifier_token39] = ACTIONS(1030), - [aux_sym_cmd_identifier_token40] = ACTIONS(1030), - [anon_sym_def] = ACTIONS(1030), - [anon_sym_export_DASHenv] = ACTIONS(1030), - [anon_sym_extern] = ACTIONS(1030), - [anon_sym_module] = ACTIONS(1030), - [anon_sym_use] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(1030), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_error] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(1030), - [anon_sym_break] = ACTIONS(1030), - [anon_sym_continue] = ACTIONS(1030), - [anon_sym_for] = ACTIONS(1030), - [anon_sym_in2] = ACTIONS(1030), - [anon_sym_loop] = ACTIONS(1030), - [anon_sym_make] = ACTIONS(1030), - [anon_sym_while] = ACTIONS(1030), - [anon_sym_do] = ACTIONS(1030), - [anon_sym_if] = ACTIONS(1030), - [anon_sym_else] = ACTIONS(1030), - [anon_sym_match] = ACTIONS(1030), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_try] = ACTIONS(1030), - [anon_sym_catch] = ACTIONS(1030), - [anon_sym_return] = ACTIONS(1030), - [anon_sym_source] = ACTIONS(1030), - [anon_sym_source_DASHenv] = ACTIONS(1030), - [anon_sym_register] = ACTIONS(1030), - [anon_sym_hide] = ACTIONS(1030), - [anon_sym_hide_DASHenv] = ACTIONS(1030), - [anon_sym_overlay] = ACTIONS(1030), - [anon_sym_as] = ACTIONS(1030), - [anon_sym_PLUS2] = ACTIONS(1030), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1030), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1030), - [aux_sym__val_number_decimal_token1] = ACTIONS(1030), - [aux_sym__val_number_decimal_token2] = ACTIONS(1030), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), - [aux_sym__val_number_token1] = ACTIONS(1030), - [aux_sym__val_number_token2] = ACTIONS(1030), - [aux_sym__val_number_token3] = ACTIONS(1030), - [aux_sym__val_number_token4] = ACTIONS(1030), - [aux_sym__val_number_token5] = ACTIONS(1030), - [aux_sym__val_number_token6] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym__str_single_quotes] = ACTIONS(1030), - [sym__str_back_ticks] = ACTIONS(1030), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1030), - [sym__entry_separator] = ACTIONS(1032), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1032), - }, - [632] = { - [sym_comment] = STATE(632), - [anon_sym_export] = ACTIONS(1972), - [anon_sym_alias] = ACTIONS(1972), - [anon_sym_let] = ACTIONS(1972), - [anon_sym_let_DASHenv] = ACTIONS(1972), - [anon_sym_mut] = ACTIONS(1972), - [anon_sym_const] = ACTIONS(1972), - [aux_sym_cmd_identifier_token1] = ACTIONS(1972), - [aux_sym_cmd_identifier_token2] = ACTIONS(1972), - [aux_sym_cmd_identifier_token3] = ACTIONS(1972), - [aux_sym_cmd_identifier_token4] = ACTIONS(1972), - [aux_sym_cmd_identifier_token5] = ACTIONS(1972), - [aux_sym_cmd_identifier_token6] = ACTIONS(1972), - [aux_sym_cmd_identifier_token7] = ACTIONS(1972), - [aux_sym_cmd_identifier_token8] = ACTIONS(1972), - [aux_sym_cmd_identifier_token9] = ACTIONS(1972), - [aux_sym_cmd_identifier_token10] = ACTIONS(1972), - [aux_sym_cmd_identifier_token11] = ACTIONS(1972), - [aux_sym_cmd_identifier_token12] = ACTIONS(1972), - [aux_sym_cmd_identifier_token13] = ACTIONS(1972), - [aux_sym_cmd_identifier_token14] = ACTIONS(1972), - [aux_sym_cmd_identifier_token15] = ACTIONS(1972), - [aux_sym_cmd_identifier_token16] = ACTIONS(1972), - [aux_sym_cmd_identifier_token17] = ACTIONS(1972), - [aux_sym_cmd_identifier_token18] = ACTIONS(1972), - [aux_sym_cmd_identifier_token19] = ACTIONS(1972), - [aux_sym_cmd_identifier_token20] = ACTIONS(1972), - [aux_sym_cmd_identifier_token21] = ACTIONS(1972), - [aux_sym_cmd_identifier_token22] = ACTIONS(1972), - [aux_sym_cmd_identifier_token23] = ACTIONS(1972), - [aux_sym_cmd_identifier_token24] = ACTIONS(1972), - [aux_sym_cmd_identifier_token25] = ACTIONS(1972), - [aux_sym_cmd_identifier_token26] = ACTIONS(1972), - [aux_sym_cmd_identifier_token27] = ACTIONS(1972), - [aux_sym_cmd_identifier_token28] = ACTIONS(1972), - [aux_sym_cmd_identifier_token29] = ACTIONS(1972), - [aux_sym_cmd_identifier_token30] = ACTIONS(1972), - [aux_sym_cmd_identifier_token31] = ACTIONS(1972), - [aux_sym_cmd_identifier_token32] = ACTIONS(1972), - [aux_sym_cmd_identifier_token33] = ACTIONS(1972), - [aux_sym_cmd_identifier_token34] = ACTIONS(1972), - [aux_sym_cmd_identifier_token35] = ACTIONS(1972), - [aux_sym_cmd_identifier_token36] = ACTIONS(1972), - [aux_sym_cmd_identifier_token37] = ACTIONS(1972), - [aux_sym_cmd_identifier_token38] = ACTIONS(1972), - [aux_sym_cmd_identifier_token39] = ACTIONS(1972), - [aux_sym_cmd_identifier_token40] = ACTIONS(1972), - [anon_sym_def] = ACTIONS(1972), - [anon_sym_export_DASHenv] = ACTIONS(1972), - [anon_sym_extern] = ACTIONS(1972), - [anon_sym_module] = ACTIONS(1972), - [anon_sym_use] = ACTIONS(1972), - [anon_sym_LPAREN] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(1972), - [anon_sym_error] = ACTIONS(1972), - [anon_sym_DASH2] = ACTIONS(1972), - [anon_sym_break] = ACTIONS(1972), - [anon_sym_continue] = ACTIONS(1972), - [anon_sym_for] = ACTIONS(1972), - [anon_sym_in2] = ACTIONS(1972), - [anon_sym_loop] = ACTIONS(1972), - [anon_sym_make] = ACTIONS(1972), - [anon_sym_while] = ACTIONS(1972), - [anon_sym_do] = ACTIONS(1972), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_else] = ACTIONS(1972), - [anon_sym_match] = ACTIONS(1972), - [anon_sym_RBRACE] = ACTIONS(1972), - [anon_sym_try] = ACTIONS(1972), - [anon_sym_catch] = ACTIONS(1972), - [anon_sym_return] = ACTIONS(1972), - [anon_sym_source] = ACTIONS(1972), - [anon_sym_source_DASHenv] = ACTIONS(1972), - [anon_sym_register] = ACTIONS(1972), - [anon_sym_hide] = ACTIONS(1972), - [anon_sym_hide_DASHenv] = ACTIONS(1972), - [anon_sym_overlay] = ACTIONS(1972), - [anon_sym_as] = ACTIONS(1972), - [anon_sym_PLUS2] = ACTIONS(1972), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1972), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1972), - [aux_sym__val_number_decimal_token1] = ACTIONS(1972), - [aux_sym__val_number_decimal_token2] = ACTIONS(1972), - [aux_sym__val_number_decimal_token3] = ACTIONS(1972), - [aux_sym__val_number_decimal_token4] = ACTIONS(1972), - [aux_sym__val_number_token1] = ACTIONS(1972), - [aux_sym__val_number_token2] = ACTIONS(1972), - [aux_sym__val_number_token3] = ACTIONS(1972), - [aux_sym__val_number_token4] = ACTIONS(1972), - [aux_sym__val_number_token5] = ACTIONS(1972), - [aux_sym__val_number_token6] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1972), - [sym__str_single_quotes] = ACTIONS(1972), - [sym__str_back_ticks] = ACTIONS(1972), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1972), - [sym__entry_separator] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1974), - }, - [633] = { - [sym_comment] = STATE(633), - [anon_sym_export] = ACTIONS(2090), - [anon_sym_alias] = ACTIONS(2090), - [anon_sym_let] = ACTIONS(2090), - [anon_sym_let_DASHenv] = ACTIONS(2090), - [anon_sym_mut] = ACTIONS(2090), - [anon_sym_const] = ACTIONS(2090), - [aux_sym_cmd_identifier_token1] = ACTIONS(2090), - [aux_sym_cmd_identifier_token2] = ACTIONS(2090), - [aux_sym_cmd_identifier_token3] = ACTIONS(2090), - [aux_sym_cmd_identifier_token4] = ACTIONS(2090), - [aux_sym_cmd_identifier_token5] = ACTIONS(2090), - [aux_sym_cmd_identifier_token6] = ACTIONS(2090), - [aux_sym_cmd_identifier_token7] = ACTIONS(2090), - [aux_sym_cmd_identifier_token8] = ACTIONS(2090), - [aux_sym_cmd_identifier_token9] = ACTIONS(2090), - [aux_sym_cmd_identifier_token10] = ACTIONS(2090), - [aux_sym_cmd_identifier_token11] = ACTIONS(2090), - [aux_sym_cmd_identifier_token12] = ACTIONS(2090), - [aux_sym_cmd_identifier_token13] = ACTIONS(2090), - [aux_sym_cmd_identifier_token14] = ACTIONS(2090), - [aux_sym_cmd_identifier_token15] = ACTIONS(2090), - [aux_sym_cmd_identifier_token16] = ACTIONS(2090), - [aux_sym_cmd_identifier_token17] = ACTIONS(2090), - [aux_sym_cmd_identifier_token18] = ACTIONS(2090), - [aux_sym_cmd_identifier_token19] = ACTIONS(2090), - [aux_sym_cmd_identifier_token20] = ACTIONS(2090), - [aux_sym_cmd_identifier_token21] = ACTIONS(2090), - [aux_sym_cmd_identifier_token22] = ACTIONS(2090), - [aux_sym_cmd_identifier_token23] = ACTIONS(2090), - [aux_sym_cmd_identifier_token24] = ACTIONS(2090), - [aux_sym_cmd_identifier_token25] = ACTIONS(2090), - [aux_sym_cmd_identifier_token26] = ACTIONS(2090), - [aux_sym_cmd_identifier_token27] = ACTIONS(2090), - [aux_sym_cmd_identifier_token28] = ACTIONS(2090), - [aux_sym_cmd_identifier_token29] = ACTIONS(2090), - [aux_sym_cmd_identifier_token30] = ACTIONS(2090), - [aux_sym_cmd_identifier_token31] = ACTIONS(2090), - [aux_sym_cmd_identifier_token32] = ACTIONS(2090), - [aux_sym_cmd_identifier_token33] = ACTIONS(2090), - [aux_sym_cmd_identifier_token34] = ACTIONS(2090), - [aux_sym_cmd_identifier_token35] = ACTIONS(2090), - [aux_sym_cmd_identifier_token36] = ACTIONS(2090), - [aux_sym_cmd_identifier_token37] = ACTIONS(2090), - [aux_sym_cmd_identifier_token38] = ACTIONS(2090), - [aux_sym_cmd_identifier_token39] = ACTIONS(2090), - [aux_sym_cmd_identifier_token40] = ACTIONS(2090), - [anon_sym_def] = ACTIONS(2090), - [anon_sym_export_DASHenv] = ACTIONS(2090), - [anon_sym_extern] = ACTIONS(2090), - [anon_sym_module] = ACTIONS(2090), - [anon_sym_use] = ACTIONS(2090), - [anon_sym_LPAREN] = ACTIONS(2090), - [anon_sym_DOLLAR] = ACTIONS(2090), - [anon_sym_error] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2090), - [anon_sym_break] = ACTIONS(2090), - [anon_sym_continue] = ACTIONS(2090), - [anon_sym_for] = ACTIONS(2090), - [anon_sym_in2] = ACTIONS(2090), - [anon_sym_loop] = ACTIONS(2090), - [anon_sym_make] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2090), - [anon_sym_do] = ACTIONS(2090), - [anon_sym_if] = ACTIONS(2090), - [anon_sym_else] = ACTIONS(2090), - [anon_sym_match] = ACTIONS(2090), - [anon_sym_RBRACE] = ACTIONS(2090), - [anon_sym_try] = ACTIONS(2090), - [anon_sym_catch] = ACTIONS(2090), - [anon_sym_return] = ACTIONS(2090), - [anon_sym_source] = ACTIONS(2090), - [anon_sym_source_DASHenv] = ACTIONS(2090), - [anon_sym_register] = ACTIONS(2090), - [anon_sym_hide] = ACTIONS(2090), - [anon_sym_hide_DASHenv] = ACTIONS(2090), - [anon_sym_overlay] = ACTIONS(2090), - [anon_sym_as] = ACTIONS(2090), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2090), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2090), - [aux_sym__val_number_decimal_token1] = ACTIONS(2090), - [aux_sym__val_number_decimal_token2] = ACTIONS(2090), - [aux_sym__val_number_decimal_token3] = ACTIONS(2090), - [aux_sym__val_number_decimal_token4] = ACTIONS(2090), - [aux_sym__val_number_token1] = ACTIONS(2090), - [aux_sym__val_number_token2] = ACTIONS(2090), - [aux_sym__val_number_token3] = ACTIONS(2090), - [aux_sym__val_number_token4] = ACTIONS(2090), - [aux_sym__val_number_token5] = ACTIONS(2090), - [aux_sym__val_number_token6] = ACTIONS(2090), - [anon_sym_DQUOTE] = ACTIONS(2090), - [sym__str_single_quotes] = ACTIONS(2090), - [sym__str_back_ticks] = ACTIONS(2090), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2090), - [sym__entry_separator] = ACTIONS(2092), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2092), - }, - [634] = { - [sym_comment] = STATE(634), + [625] = { + [sym_comment] = STATE(625), [anon_sym_export] = ACTIONS(2379), [anon_sym_alias] = ACTIONS(2379), [anon_sym_let] = ACTIONS(2379), @@ -143395,8 +142814,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2381), }, - [635] = { - [sym_comment] = STATE(635), + [626] = { + [sym_comment] = STATE(626), [anon_sym_export] = ACTIONS(2383), [anon_sym_alias] = ACTIONS(2383), [anon_sym_let] = ACTIONS(2383), @@ -143495,1808 +142914,2308 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2385), }, - [636] = { - [sym_comment] = STATE(636), - [anon_sym_export] = ACTIONS(2387), - [anon_sym_alias] = ACTIONS(2387), - [anon_sym_let] = ACTIONS(2387), - [anon_sym_let_DASHenv] = ACTIONS(2387), - [anon_sym_mut] = ACTIONS(2387), - [anon_sym_const] = ACTIONS(2387), - [aux_sym_cmd_identifier_token1] = ACTIONS(2387), - [aux_sym_cmd_identifier_token2] = ACTIONS(2387), - [aux_sym_cmd_identifier_token3] = ACTIONS(2387), - [aux_sym_cmd_identifier_token4] = ACTIONS(2387), - [aux_sym_cmd_identifier_token5] = ACTIONS(2387), - [aux_sym_cmd_identifier_token6] = ACTIONS(2387), - [aux_sym_cmd_identifier_token7] = ACTIONS(2387), - [aux_sym_cmd_identifier_token8] = ACTIONS(2387), - [aux_sym_cmd_identifier_token9] = ACTIONS(2387), - [aux_sym_cmd_identifier_token10] = ACTIONS(2387), - [aux_sym_cmd_identifier_token11] = ACTIONS(2387), - [aux_sym_cmd_identifier_token12] = ACTIONS(2387), - [aux_sym_cmd_identifier_token13] = ACTIONS(2387), - [aux_sym_cmd_identifier_token14] = ACTIONS(2387), - [aux_sym_cmd_identifier_token15] = ACTIONS(2387), - [aux_sym_cmd_identifier_token16] = ACTIONS(2387), - [aux_sym_cmd_identifier_token17] = ACTIONS(2387), - [aux_sym_cmd_identifier_token18] = ACTIONS(2387), - [aux_sym_cmd_identifier_token19] = ACTIONS(2387), - [aux_sym_cmd_identifier_token20] = ACTIONS(2387), - [aux_sym_cmd_identifier_token21] = ACTIONS(2387), - [aux_sym_cmd_identifier_token22] = ACTIONS(2387), - [aux_sym_cmd_identifier_token23] = ACTIONS(2387), - [aux_sym_cmd_identifier_token24] = ACTIONS(2387), - [aux_sym_cmd_identifier_token25] = ACTIONS(2387), - [aux_sym_cmd_identifier_token26] = ACTIONS(2387), - [aux_sym_cmd_identifier_token27] = ACTIONS(2387), - [aux_sym_cmd_identifier_token28] = ACTIONS(2387), - [aux_sym_cmd_identifier_token29] = ACTIONS(2387), - [aux_sym_cmd_identifier_token30] = ACTIONS(2387), - [aux_sym_cmd_identifier_token31] = ACTIONS(2387), - [aux_sym_cmd_identifier_token32] = ACTIONS(2387), - [aux_sym_cmd_identifier_token33] = ACTIONS(2387), - [aux_sym_cmd_identifier_token34] = ACTIONS(2387), - [aux_sym_cmd_identifier_token35] = ACTIONS(2387), - [aux_sym_cmd_identifier_token36] = ACTIONS(2387), - [aux_sym_cmd_identifier_token37] = ACTIONS(2387), - [aux_sym_cmd_identifier_token38] = ACTIONS(2387), - [aux_sym_cmd_identifier_token39] = ACTIONS(2387), - [aux_sym_cmd_identifier_token40] = ACTIONS(2387), - [anon_sym_def] = ACTIONS(2387), - [anon_sym_export_DASHenv] = ACTIONS(2387), - [anon_sym_extern] = ACTIONS(2387), - [anon_sym_module] = ACTIONS(2387), - [anon_sym_use] = ACTIONS(2387), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_DOLLAR] = ACTIONS(2387), - [anon_sym_error] = ACTIONS(2387), - [anon_sym_DASH2] = ACTIONS(2387), - [anon_sym_break] = ACTIONS(2387), - [anon_sym_continue] = ACTIONS(2387), - [anon_sym_for] = ACTIONS(2387), - [anon_sym_in2] = ACTIONS(2387), - [anon_sym_loop] = ACTIONS(2387), - [anon_sym_make] = ACTIONS(2387), - [anon_sym_while] = ACTIONS(2387), - [anon_sym_do] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_else] = ACTIONS(2387), - [anon_sym_match] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2387), - [anon_sym_try] = ACTIONS(2387), - [anon_sym_catch] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2387), - [anon_sym_source] = ACTIONS(2387), - [anon_sym_source_DASHenv] = ACTIONS(2387), - [anon_sym_register] = ACTIONS(2387), - [anon_sym_hide] = ACTIONS(2387), - [anon_sym_hide_DASHenv] = ACTIONS(2387), - [anon_sym_overlay] = ACTIONS(2387), - [anon_sym_as] = ACTIONS(2387), - [anon_sym_PLUS2] = ACTIONS(2387), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2387), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2387), - [aux_sym__val_number_decimal_token1] = ACTIONS(2387), - [aux_sym__val_number_decimal_token2] = ACTIONS(2387), - [aux_sym__val_number_decimal_token3] = ACTIONS(2387), - [aux_sym__val_number_decimal_token4] = ACTIONS(2387), - [aux_sym__val_number_token1] = ACTIONS(2387), - [aux_sym__val_number_token2] = ACTIONS(2387), - [aux_sym__val_number_token3] = ACTIONS(2387), - [aux_sym__val_number_token4] = ACTIONS(2387), - [aux_sym__val_number_token5] = ACTIONS(2387), - [aux_sym__val_number_token6] = ACTIONS(2387), - [anon_sym_DQUOTE] = ACTIONS(2387), - [sym__str_single_quotes] = ACTIONS(2387), - [sym__str_back_ticks] = ACTIONS(2387), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2387), - [sym__entry_separator] = ACTIONS(2389), + [627] = { + [sym_comment] = STATE(627), + [aux_sym__multiple_types_repeat1] = STATE(600), + [anon_sym_export] = ACTIONS(2286), + [anon_sym_alias] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2286), + [anon_sym_let_DASHenv] = ACTIONS(2286), + [anon_sym_mut] = ACTIONS(2286), + [anon_sym_const] = ACTIONS(2286), + [aux_sym_cmd_identifier_token1] = ACTIONS(2286), + [aux_sym_cmd_identifier_token2] = ACTIONS(2286), + [aux_sym_cmd_identifier_token3] = ACTIONS(2286), + [aux_sym_cmd_identifier_token4] = ACTIONS(2286), + [aux_sym_cmd_identifier_token5] = ACTIONS(2286), + [aux_sym_cmd_identifier_token6] = ACTIONS(2286), + [aux_sym_cmd_identifier_token7] = ACTIONS(2286), + [aux_sym_cmd_identifier_token8] = ACTIONS(2286), + [aux_sym_cmd_identifier_token9] = ACTIONS(2286), + [aux_sym_cmd_identifier_token10] = ACTIONS(2286), + [aux_sym_cmd_identifier_token11] = ACTIONS(2286), + [aux_sym_cmd_identifier_token12] = ACTIONS(2286), + [aux_sym_cmd_identifier_token13] = ACTIONS(2286), + [aux_sym_cmd_identifier_token14] = ACTIONS(2286), + [aux_sym_cmd_identifier_token15] = ACTIONS(2286), + [aux_sym_cmd_identifier_token16] = ACTIONS(2286), + [aux_sym_cmd_identifier_token17] = ACTIONS(2286), + [aux_sym_cmd_identifier_token18] = ACTIONS(2286), + [aux_sym_cmd_identifier_token19] = ACTIONS(2286), + [aux_sym_cmd_identifier_token20] = ACTIONS(2286), + [aux_sym_cmd_identifier_token21] = ACTIONS(2286), + [aux_sym_cmd_identifier_token22] = ACTIONS(2286), + [aux_sym_cmd_identifier_token23] = ACTIONS(2286), + [aux_sym_cmd_identifier_token24] = ACTIONS(2286), + [aux_sym_cmd_identifier_token25] = ACTIONS(2286), + [aux_sym_cmd_identifier_token26] = ACTIONS(2286), + [aux_sym_cmd_identifier_token27] = ACTIONS(2286), + [aux_sym_cmd_identifier_token28] = ACTIONS(2286), + [aux_sym_cmd_identifier_token29] = ACTIONS(2286), + [aux_sym_cmd_identifier_token30] = ACTIONS(2286), + [aux_sym_cmd_identifier_token31] = ACTIONS(2286), + [aux_sym_cmd_identifier_token32] = ACTIONS(2286), + [aux_sym_cmd_identifier_token33] = ACTIONS(2286), + [aux_sym_cmd_identifier_token34] = ACTIONS(2286), + [aux_sym_cmd_identifier_token35] = ACTIONS(2286), + [aux_sym_cmd_identifier_token36] = ACTIONS(2286), + [aux_sym_cmd_identifier_token37] = ACTIONS(2286), + [aux_sym_cmd_identifier_token38] = ACTIONS(2286), + [aux_sym_cmd_identifier_token39] = ACTIONS(2286), + [aux_sym_cmd_identifier_token40] = ACTIONS(2286), + [anon_sym_def] = ACTIONS(2286), + [anon_sym_export_DASHenv] = ACTIONS(2286), + [anon_sym_extern] = ACTIONS(2286), + [anon_sym_module] = ACTIONS(2286), + [anon_sym_use] = ACTIONS(2286), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_DOLLAR] = ACTIONS(2286), + [anon_sym_error] = ACTIONS(2286), + [anon_sym_DASH2] = ACTIONS(2286), + [anon_sym_break] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2286), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_in2] = ACTIONS(2286), + [anon_sym_loop] = ACTIONS(2286), + [anon_sym_make] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2286), + [anon_sym_do] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_else] = ACTIONS(2286), + [anon_sym_match] = ACTIONS(2286), + [anon_sym_try] = ACTIONS(2286), + [anon_sym_catch] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_source] = ACTIONS(2286), + [anon_sym_source_DASHenv] = ACTIONS(2286), + [anon_sym_register] = ACTIONS(2286), + [anon_sym_hide] = ACTIONS(2286), + [anon_sym_hide_DASHenv] = ACTIONS(2286), + [anon_sym_overlay] = ACTIONS(2286), + [anon_sym_as] = ACTIONS(2286), + [anon_sym_PLUS2] = ACTIONS(2286), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2286), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2286), + [aux_sym__val_number_decimal_token1] = ACTIONS(2286), + [aux_sym__val_number_decimal_token2] = ACTIONS(2286), + [aux_sym__val_number_decimal_token3] = ACTIONS(2286), + [aux_sym__val_number_decimal_token4] = ACTIONS(2286), + [aux_sym__val_number_token1] = ACTIONS(2286), + [aux_sym__val_number_token2] = ACTIONS(2286), + [aux_sym__val_number_token3] = ACTIONS(2286), + [aux_sym__val_number_token4] = ACTIONS(2286), + [aux_sym__val_number_token5] = ACTIONS(2286), + [aux_sym__val_number_token6] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [sym__str_single_quotes] = ACTIONS(2286), + [sym__str_back_ticks] = ACTIONS(2286), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2286), + [sym__entry_separator] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2389), + [sym_raw_string_begin] = ACTIONS(2292), }, - [637] = { - [sym_comment] = STATE(637), - [anon_sym_export] = ACTIONS(1948), - [anon_sym_alias] = ACTIONS(1948), - [anon_sym_let] = ACTIONS(1948), - [anon_sym_let_DASHenv] = ACTIONS(1948), - [anon_sym_mut] = ACTIONS(1948), - [anon_sym_const] = ACTIONS(1948), - [aux_sym_cmd_identifier_token1] = ACTIONS(1948), - [aux_sym_cmd_identifier_token2] = ACTIONS(1948), - [aux_sym_cmd_identifier_token3] = ACTIONS(1948), - [aux_sym_cmd_identifier_token4] = ACTIONS(1948), - [aux_sym_cmd_identifier_token5] = ACTIONS(1948), - [aux_sym_cmd_identifier_token6] = ACTIONS(1948), - [aux_sym_cmd_identifier_token7] = ACTIONS(1948), - [aux_sym_cmd_identifier_token8] = ACTIONS(1948), - [aux_sym_cmd_identifier_token9] = ACTIONS(1948), - [aux_sym_cmd_identifier_token10] = ACTIONS(1948), - [aux_sym_cmd_identifier_token11] = ACTIONS(1948), - [aux_sym_cmd_identifier_token12] = ACTIONS(1948), - [aux_sym_cmd_identifier_token13] = ACTIONS(1948), - [aux_sym_cmd_identifier_token14] = ACTIONS(1948), - [aux_sym_cmd_identifier_token15] = ACTIONS(1948), - [aux_sym_cmd_identifier_token16] = ACTIONS(1948), - [aux_sym_cmd_identifier_token17] = ACTIONS(1948), - [aux_sym_cmd_identifier_token18] = ACTIONS(1948), - [aux_sym_cmd_identifier_token19] = ACTIONS(1948), - [aux_sym_cmd_identifier_token20] = ACTIONS(1948), - [aux_sym_cmd_identifier_token21] = ACTIONS(1948), - [aux_sym_cmd_identifier_token22] = ACTIONS(1948), - [aux_sym_cmd_identifier_token23] = ACTIONS(1948), - [aux_sym_cmd_identifier_token24] = ACTIONS(1948), - [aux_sym_cmd_identifier_token25] = ACTIONS(1948), - [aux_sym_cmd_identifier_token26] = ACTIONS(1948), - [aux_sym_cmd_identifier_token27] = ACTIONS(1948), - [aux_sym_cmd_identifier_token28] = ACTIONS(1948), - [aux_sym_cmd_identifier_token29] = ACTIONS(1948), - [aux_sym_cmd_identifier_token30] = ACTIONS(1948), - [aux_sym_cmd_identifier_token31] = ACTIONS(1948), - [aux_sym_cmd_identifier_token32] = ACTIONS(1948), - [aux_sym_cmd_identifier_token33] = ACTIONS(1948), - [aux_sym_cmd_identifier_token34] = ACTIONS(1948), - [aux_sym_cmd_identifier_token35] = ACTIONS(1948), - [aux_sym_cmd_identifier_token36] = ACTIONS(1948), - [aux_sym_cmd_identifier_token37] = ACTIONS(1948), - [aux_sym_cmd_identifier_token38] = ACTIONS(1948), - [aux_sym_cmd_identifier_token39] = ACTIONS(1948), - [aux_sym_cmd_identifier_token40] = ACTIONS(1948), - [anon_sym_def] = ACTIONS(1948), - [anon_sym_export_DASHenv] = ACTIONS(1948), - [anon_sym_extern] = ACTIONS(1948), - [anon_sym_module] = ACTIONS(1948), - [anon_sym_use] = ACTIONS(1948), - [anon_sym_LPAREN] = ACTIONS(1948), - [anon_sym_DOLLAR] = ACTIONS(1948), - [anon_sym_error] = ACTIONS(1948), - [anon_sym_DASH2] = ACTIONS(1948), - [anon_sym_break] = ACTIONS(1948), - [anon_sym_continue] = ACTIONS(1948), - [anon_sym_for] = ACTIONS(1948), - [anon_sym_in2] = ACTIONS(1948), - [anon_sym_loop] = ACTIONS(1948), - [anon_sym_make] = ACTIONS(1948), - [anon_sym_while] = ACTIONS(1948), - [anon_sym_do] = ACTIONS(1948), - [anon_sym_if] = ACTIONS(1948), - [anon_sym_else] = ACTIONS(1948), - [anon_sym_match] = ACTIONS(1948), - [anon_sym_RBRACE] = ACTIONS(1948), - [anon_sym_try] = ACTIONS(1948), - [anon_sym_catch] = ACTIONS(1948), - [anon_sym_return] = ACTIONS(1948), - [anon_sym_source] = ACTIONS(1948), - [anon_sym_source_DASHenv] = ACTIONS(1948), - [anon_sym_register] = ACTIONS(1948), - [anon_sym_hide] = ACTIONS(1948), - [anon_sym_hide_DASHenv] = ACTIONS(1948), - [anon_sym_overlay] = ACTIONS(1948), - [anon_sym_as] = ACTIONS(1948), - [anon_sym_PLUS2] = ACTIONS(1948), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1948), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1948), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1948), - [aux_sym__val_number_decimal_token3] = ACTIONS(1948), - [aux_sym__val_number_decimal_token4] = ACTIONS(1948), - [aux_sym__val_number_token1] = ACTIONS(1948), - [aux_sym__val_number_token2] = ACTIONS(1948), - [aux_sym__val_number_token3] = ACTIONS(1948), - [aux_sym__val_number_token4] = ACTIONS(1948), - [aux_sym__val_number_token5] = ACTIONS(1948), - [aux_sym__val_number_token6] = ACTIONS(1948), - [anon_sym_DQUOTE] = ACTIONS(1948), - [sym__str_single_quotes] = ACTIONS(1948), - [sym__str_back_ticks] = ACTIONS(1948), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1948), - [sym__entry_separator] = ACTIONS(1950), + [628] = { + [sym_comment] = STATE(628), + [anon_sym_export] = ACTIONS(2038), + [anon_sym_alias] = ACTIONS(2038), + [anon_sym_let] = ACTIONS(2038), + [anon_sym_let_DASHenv] = ACTIONS(2038), + [anon_sym_mut] = ACTIONS(2038), + [anon_sym_const] = ACTIONS(2038), + [aux_sym_cmd_identifier_token1] = ACTIONS(2038), + [aux_sym_cmd_identifier_token2] = ACTIONS(2038), + [aux_sym_cmd_identifier_token3] = ACTIONS(2038), + [aux_sym_cmd_identifier_token4] = ACTIONS(2038), + [aux_sym_cmd_identifier_token5] = ACTIONS(2038), + [aux_sym_cmd_identifier_token6] = ACTIONS(2038), + [aux_sym_cmd_identifier_token7] = ACTIONS(2038), + [aux_sym_cmd_identifier_token8] = ACTIONS(2038), + [aux_sym_cmd_identifier_token9] = ACTIONS(2038), + [aux_sym_cmd_identifier_token10] = ACTIONS(2038), + [aux_sym_cmd_identifier_token11] = ACTIONS(2038), + [aux_sym_cmd_identifier_token12] = ACTIONS(2038), + [aux_sym_cmd_identifier_token13] = ACTIONS(2038), + [aux_sym_cmd_identifier_token14] = ACTIONS(2038), + [aux_sym_cmd_identifier_token15] = ACTIONS(2038), + [aux_sym_cmd_identifier_token16] = ACTIONS(2038), + [aux_sym_cmd_identifier_token17] = ACTIONS(2038), + [aux_sym_cmd_identifier_token18] = ACTIONS(2038), + [aux_sym_cmd_identifier_token19] = ACTIONS(2038), + [aux_sym_cmd_identifier_token20] = ACTIONS(2038), + [aux_sym_cmd_identifier_token21] = ACTIONS(2038), + [aux_sym_cmd_identifier_token22] = ACTIONS(2038), + [aux_sym_cmd_identifier_token23] = ACTIONS(2038), + [aux_sym_cmd_identifier_token24] = ACTIONS(2038), + [aux_sym_cmd_identifier_token25] = ACTIONS(2038), + [aux_sym_cmd_identifier_token26] = ACTIONS(2038), + [aux_sym_cmd_identifier_token27] = ACTIONS(2038), + [aux_sym_cmd_identifier_token28] = ACTIONS(2038), + [aux_sym_cmd_identifier_token29] = ACTIONS(2038), + [aux_sym_cmd_identifier_token30] = ACTIONS(2038), + [aux_sym_cmd_identifier_token31] = ACTIONS(2038), + [aux_sym_cmd_identifier_token32] = ACTIONS(2038), + [aux_sym_cmd_identifier_token33] = ACTIONS(2038), + [aux_sym_cmd_identifier_token34] = ACTIONS(2038), + [aux_sym_cmd_identifier_token35] = ACTIONS(2038), + [aux_sym_cmd_identifier_token36] = ACTIONS(2038), + [aux_sym_cmd_identifier_token37] = ACTIONS(2038), + [aux_sym_cmd_identifier_token38] = ACTIONS(2038), + [aux_sym_cmd_identifier_token39] = ACTIONS(2038), + [aux_sym_cmd_identifier_token40] = ACTIONS(2038), + [anon_sym_def] = ACTIONS(2038), + [anon_sym_export_DASHenv] = ACTIONS(2038), + [anon_sym_extern] = ACTIONS(2038), + [anon_sym_module] = ACTIONS(2038), + [anon_sym_use] = ACTIONS(2038), + [anon_sym_LPAREN] = ACTIONS(2038), + [anon_sym_DOLLAR] = ACTIONS(2038), + [anon_sym_error] = ACTIONS(2038), + [anon_sym_DASH2] = ACTIONS(2038), + [anon_sym_break] = ACTIONS(2038), + [anon_sym_continue] = ACTIONS(2038), + [anon_sym_for] = ACTIONS(2038), + [anon_sym_in2] = ACTIONS(2038), + [anon_sym_loop] = ACTIONS(2038), + [anon_sym_make] = ACTIONS(2038), + [anon_sym_while] = ACTIONS(2038), + [anon_sym_do] = ACTIONS(2038), + [anon_sym_if] = ACTIONS(2038), + [anon_sym_else] = ACTIONS(2038), + [anon_sym_match] = ACTIONS(2038), + [anon_sym_RBRACE] = ACTIONS(2038), + [anon_sym_try] = ACTIONS(2038), + [anon_sym_catch] = ACTIONS(2038), + [anon_sym_return] = ACTIONS(2038), + [anon_sym_source] = ACTIONS(2038), + [anon_sym_source_DASHenv] = ACTIONS(2038), + [anon_sym_register] = ACTIONS(2038), + [anon_sym_hide] = ACTIONS(2038), + [anon_sym_hide_DASHenv] = ACTIONS(2038), + [anon_sym_overlay] = ACTIONS(2038), + [anon_sym_as] = ACTIONS(2038), + [anon_sym_PLUS2] = ACTIONS(2038), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2038), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2038), + [aux_sym__val_number_decimal_token1] = ACTIONS(2038), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2038), + [aux_sym__val_number_decimal_token4] = ACTIONS(2038), + [aux_sym__val_number_token1] = ACTIONS(2038), + [aux_sym__val_number_token2] = ACTIONS(2038), + [aux_sym__val_number_token3] = ACTIONS(2038), + [aux_sym__val_number_token4] = ACTIONS(2038), + [aux_sym__val_number_token5] = ACTIONS(2038), + [aux_sym__val_number_token6] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym__str_single_quotes] = ACTIONS(2038), + [sym__str_back_ticks] = ACTIONS(2038), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2038), + [sym__entry_separator] = ACTIONS(2040), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2040), + }, + [629] = { + [sym_comment] = STATE(629), + [aux_sym_shebang_repeat1] = STATE(629), + [anon_sym_export] = ACTIONS(1294), + [anon_sym_alias] = ACTIONS(1294), + [anon_sym_let] = ACTIONS(1294), + [anon_sym_let_DASHenv] = ACTIONS(1294), + [anon_sym_mut] = ACTIONS(1294), + [anon_sym_const] = ACTIONS(1294), + [aux_sym_cmd_identifier_token1] = ACTIONS(1294), + [aux_sym_cmd_identifier_token2] = ACTIONS(1296), + [aux_sym_cmd_identifier_token3] = ACTIONS(1296), + [aux_sym_cmd_identifier_token4] = ACTIONS(1296), + [aux_sym_cmd_identifier_token5] = ACTIONS(1296), + [aux_sym_cmd_identifier_token6] = ACTIONS(1296), + [aux_sym_cmd_identifier_token7] = ACTIONS(1296), + [aux_sym_cmd_identifier_token8] = ACTIONS(1294), + [aux_sym_cmd_identifier_token9] = ACTIONS(1294), + [aux_sym_cmd_identifier_token10] = ACTIONS(1296), + [aux_sym_cmd_identifier_token11] = ACTIONS(1296), + [aux_sym_cmd_identifier_token12] = ACTIONS(1294), + [aux_sym_cmd_identifier_token13] = ACTIONS(1294), + [aux_sym_cmd_identifier_token14] = ACTIONS(1294), + [aux_sym_cmd_identifier_token15] = ACTIONS(1294), + [aux_sym_cmd_identifier_token16] = ACTIONS(1296), + [aux_sym_cmd_identifier_token17] = ACTIONS(1296), + [aux_sym_cmd_identifier_token18] = ACTIONS(1296), + [aux_sym_cmd_identifier_token19] = ACTIONS(1296), + [aux_sym_cmd_identifier_token20] = ACTIONS(1296), + [aux_sym_cmd_identifier_token21] = ACTIONS(1296), + [aux_sym_cmd_identifier_token22] = ACTIONS(1296), + [aux_sym_cmd_identifier_token23] = ACTIONS(1296), + [aux_sym_cmd_identifier_token24] = ACTIONS(1296), + [aux_sym_cmd_identifier_token25] = ACTIONS(1296), + [aux_sym_cmd_identifier_token26] = ACTIONS(1296), + [aux_sym_cmd_identifier_token27] = ACTIONS(1296), + [aux_sym_cmd_identifier_token28] = ACTIONS(1296), + [aux_sym_cmd_identifier_token29] = ACTIONS(1296), + [aux_sym_cmd_identifier_token30] = ACTIONS(1296), + [aux_sym_cmd_identifier_token31] = ACTIONS(1296), + [aux_sym_cmd_identifier_token32] = ACTIONS(1296), + [aux_sym_cmd_identifier_token33] = ACTIONS(1296), + [aux_sym_cmd_identifier_token34] = ACTIONS(1294), + [aux_sym_cmd_identifier_token35] = ACTIONS(1296), + [aux_sym_cmd_identifier_token36] = ACTIONS(1296), + [aux_sym_cmd_identifier_token37] = ACTIONS(1296), + [aux_sym_cmd_identifier_token38] = ACTIONS(1294), + [aux_sym_cmd_identifier_token39] = ACTIONS(1296), + [aux_sym_cmd_identifier_token40] = ACTIONS(1296), + [sym__newline] = ACTIONS(2387), + [anon_sym_def] = ACTIONS(1294), + [anon_sym_export_DASHenv] = ACTIONS(1294), + [anon_sym_extern] = ACTIONS(1294), + [anon_sym_module] = ACTIONS(1294), + [anon_sym_use] = ACTIONS(1294), + [anon_sym_LPAREN] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1296), + [anon_sym_error] = ACTIONS(1294), + [anon_sym_DASH2] = ACTIONS(1294), + [anon_sym_break] = ACTIONS(1294), + [anon_sym_continue] = ACTIONS(1294), + [anon_sym_for] = ACTIONS(1294), + [anon_sym_in2] = ACTIONS(1294), + [anon_sym_loop] = ACTIONS(1294), + [anon_sym_make] = ACTIONS(1294), + [anon_sym_while] = ACTIONS(1294), + [anon_sym_do] = ACTIONS(1294), + [anon_sym_if] = ACTIONS(1294), + [anon_sym_else] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1294), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_catch] = ACTIONS(1294), + [anon_sym_return] = ACTIONS(1294), + [anon_sym_source] = ACTIONS(1294), + [anon_sym_source_DASHenv] = ACTIONS(1294), + [anon_sym_register] = ACTIONS(1294), + [anon_sym_hide] = ACTIONS(1294), + [anon_sym_hide_DASHenv] = ACTIONS(1294), + [anon_sym_overlay] = ACTIONS(1294), + [anon_sym_as] = ACTIONS(1294), + [anon_sym_PLUS2] = ACTIONS(1294), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1296), + [aux_sym__val_number_decimal_token1] = ACTIONS(1294), + [aux_sym__val_number_decimal_token2] = ACTIONS(1296), + [aux_sym__val_number_decimal_token3] = ACTIONS(1296), + [aux_sym__val_number_decimal_token4] = ACTIONS(1296), + [aux_sym__val_number_token1] = ACTIONS(1296), + [aux_sym__val_number_token2] = ACTIONS(1296), + [aux_sym__val_number_token3] = ACTIONS(1296), + [aux_sym__val_number_token4] = ACTIONS(1294), + [aux_sym__val_number_token5] = ACTIONS(1294), + [aux_sym__val_number_token6] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1296), + [sym__str_single_quotes] = ACTIONS(1296), + [sym__str_back_ticks] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1296), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1296), + }, + [630] = { + [sym_comment] = STATE(630), + [anon_sym_export] = ACTIONS(1739), + [anon_sym_alias] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_let_DASHenv] = ACTIONS(1739), + [anon_sym_mut] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [aux_sym_cmd_identifier_token1] = ACTIONS(1739), + [aux_sym_cmd_identifier_token2] = ACTIONS(1739), + [aux_sym_cmd_identifier_token3] = ACTIONS(1739), + [aux_sym_cmd_identifier_token4] = ACTIONS(1739), + [aux_sym_cmd_identifier_token5] = ACTIONS(1739), + [aux_sym_cmd_identifier_token6] = ACTIONS(1739), + [aux_sym_cmd_identifier_token7] = ACTIONS(1739), + [aux_sym_cmd_identifier_token8] = ACTIONS(1739), + [aux_sym_cmd_identifier_token9] = ACTIONS(1739), + [aux_sym_cmd_identifier_token10] = ACTIONS(1739), + [aux_sym_cmd_identifier_token11] = ACTIONS(1739), + [aux_sym_cmd_identifier_token12] = ACTIONS(1739), + [aux_sym_cmd_identifier_token13] = ACTIONS(1739), + [aux_sym_cmd_identifier_token14] = ACTIONS(1739), + [aux_sym_cmd_identifier_token15] = ACTIONS(1739), + [aux_sym_cmd_identifier_token16] = ACTIONS(1739), + [aux_sym_cmd_identifier_token17] = ACTIONS(1739), + [aux_sym_cmd_identifier_token18] = ACTIONS(1739), + [aux_sym_cmd_identifier_token19] = ACTIONS(1739), + [aux_sym_cmd_identifier_token20] = ACTIONS(1739), + [aux_sym_cmd_identifier_token21] = ACTIONS(1739), + [aux_sym_cmd_identifier_token22] = ACTIONS(1739), + [aux_sym_cmd_identifier_token23] = ACTIONS(1739), + [aux_sym_cmd_identifier_token24] = ACTIONS(1739), + [aux_sym_cmd_identifier_token25] = ACTIONS(1739), + [aux_sym_cmd_identifier_token26] = ACTIONS(1739), + [aux_sym_cmd_identifier_token27] = ACTIONS(1739), + [aux_sym_cmd_identifier_token28] = ACTIONS(1739), + [aux_sym_cmd_identifier_token29] = ACTIONS(1739), + [aux_sym_cmd_identifier_token30] = ACTIONS(1739), + [aux_sym_cmd_identifier_token31] = ACTIONS(1739), + [aux_sym_cmd_identifier_token32] = ACTIONS(1739), + [aux_sym_cmd_identifier_token33] = ACTIONS(1739), + [aux_sym_cmd_identifier_token34] = ACTIONS(1739), + [aux_sym_cmd_identifier_token35] = ACTIONS(1739), + [aux_sym_cmd_identifier_token36] = ACTIONS(1739), + [aux_sym_cmd_identifier_token37] = ACTIONS(1739), + [aux_sym_cmd_identifier_token38] = ACTIONS(1739), + [aux_sym_cmd_identifier_token39] = ACTIONS(1739), + [aux_sym_cmd_identifier_token40] = ACTIONS(1739), + [anon_sym_def] = ACTIONS(1739), + [anon_sym_export_DASHenv] = ACTIONS(1739), + [anon_sym_extern] = ACTIONS(1739), + [anon_sym_module] = ACTIONS(1739), + [anon_sym_use] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_error] = ACTIONS(1739), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_break] = ACTIONS(1739), + [anon_sym_continue] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_in2] = ACTIONS(1739), + [anon_sym_loop] = ACTIONS(1739), + [anon_sym_make] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_do] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_else] = ACTIONS(1739), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1739), + [anon_sym_try] = ACTIONS(1739), + [anon_sym_catch] = ACTIONS(1739), + [anon_sym_return] = ACTIONS(1739), + [anon_sym_source] = ACTIONS(1739), + [anon_sym_source_DASHenv] = ACTIONS(1739), + [anon_sym_register] = ACTIONS(1739), + [anon_sym_hide] = ACTIONS(1739), + [anon_sym_hide_DASHenv] = ACTIONS(1739), + [anon_sym_overlay] = ACTIONS(1739), + [anon_sym_as] = ACTIONS(1739), + [anon_sym_PLUS2] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1739), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1739), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1739), + [aux_sym__val_number_token1] = ACTIONS(1739), + [aux_sym__val_number_token2] = ACTIONS(1739), + [aux_sym__val_number_token3] = ACTIONS(1739), + [aux_sym__val_number_token4] = ACTIONS(1739), + [aux_sym__val_number_token5] = ACTIONS(1739), + [aux_sym__val_number_token6] = ACTIONS(1739), + [anon_sym_DQUOTE] = ACTIONS(1739), + [sym__str_single_quotes] = ACTIONS(1739), + [sym__str_back_ticks] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1739), + [sym__entry_separator] = ACTIONS(1741), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1741), + }, + [631] = { + [sym_comment] = STATE(631), + [anon_sym_export] = ACTIONS(1026), + [anon_sym_alias] = ACTIONS(1026), + [anon_sym_let] = ACTIONS(1026), + [anon_sym_let_DASHenv] = ACTIONS(1026), + [anon_sym_mut] = ACTIONS(1026), + [anon_sym_const] = ACTIONS(1026), + [aux_sym_cmd_identifier_token1] = ACTIONS(1026), + [aux_sym_cmd_identifier_token2] = ACTIONS(1026), + [aux_sym_cmd_identifier_token3] = ACTIONS(1026), + [aux_sym_cmd_identifier_token4] = ACTIONS(1026), + [aux_sym_cmd_identifier_token5] = ACTIONS(1026), + [aux_sym_cmd_identifier_token6] = ACTIONS(1026), + [aux_sym_cmd_identifier_token7] = ACTIONS(1026), + [aux_sym_cmd_identifier_token8] = ACTIONS(1026), + [aux_sym_cmd_identifier_token9] = ACTIONS(1026), + [aux_sym_cmd_identifier_token10] = ACTIONS(1026), + [aux_sym_cmd_identifier_token11] = ACTIONS(1026), + [aux_sym_cmd_identifier_token12] = ACTIONS(1026), + [aux_sym_cmd_identifier_token13] = ACTIONS(1026), + [aux_sym_cmd_identifier_token14] = ACTIONS(1026), + [aux_sym_cmd_identifier_token15] = ACTIONS(1026), + [aux_sym_cmd_identifier_token16] = ACTIONS(1026), + [aux_sym_cmd_identifier_token17] = ACTIONS(1026), + [aux_sym_cmd_identifier_token18] = ACTIONS(1026), + [aux_sym_cmd_identifier_token19] = ACTIONS(1026), + [aux_sym_cmd_identifier_token20] = ACTIONS(1026), + [aux_sym_cmd_identifier_token21] = ACTIONS(1026), + [aux_sym_cmd_identifier_token22] = ACTIONS(1026), + [aux_sym_cmd_identifier_token23] = ACTIONS(1026), + [aux_sym_cmd_identifier_token24] = ACTIONS(1026), + [aux_sym_cmd_identifier_token25] = ACTIONS(1026), + [aux_sym_cmd_identifier_token26] = ACTIONS(1026), + [aux_sym_cmd_identifier_token27] = ACTIONS(1026), + [aux_sym_cmd_identifier_token28] = ACTIONS(1026), + [aux_sym_cmd_identifier_token29] = ACTIONS(1026), + [aux_sym_cmd_identifier_token30] = ACTIONS(1026), + [aux_sym_cmd_identifier_token31] = ACTIONS(1026), + [aux_sym_cmd_identifier_token32] = ACTIONS(1026), + [aux_sym_cmd_identifier_token33] = ACTIONS(1026), + [aux_sym_cmd_identifier_token34] = ACTIONS(1026), + [aux_sym_cmd_identifier_token35] = ACTIONS(1026), + [aux_sym_cmd_identifier_token36] = ACTIONS(1026), + [aux_sym_cmd_identifier_token37] = ACTIONS(1026), + [aux_sym_cmd_identifier_token38] = ACTIONS(1026), + [aux_sym_cmd_identifier_token39] = ACTIONS(1026), + [aux_sym_cmd_identifier_token40] = ACTIONS(1026), + [anon_sym_def] = ACTIONS(1026), + [anon_sym_export_DASHenv] = ACTIONS(1026), + [anon_sym_extern] = ACTIONS(1026), + [anon_sym_module] = ACTIONS(1026), + [anon_sym_use] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(1026), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_error] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(1026), + [anon_sym_break] = ACTIONS(1026), + [anon_sym_continue] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1026), + [anon_sym_in2] = ACTIONS(1026), + [anon_sym_loop] = ACTIONS(1026), + [anon_sym_make] = ACTIONS(1026), + [anon_sym_while] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1026), + [anon_sym_else] = ACTIONS(1026), + [anon_sym_match] = ACTIONS(1026), + [anon_sym_RBRACE] = ACTIONS(1026), + [anon_sym_try] = ACTIONS(1026), + [anon_sym_catch] = ACTIONS(1026), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_source] = ACTIONS(1026), + [anon_sym_source_DASHenv] = ACTIONS(1026), + [anon_sym_register] = ACTIONS(1026), + [anon_sym_hide] = ACTIONS(1026), + [anon_sym_hide_DASHenv] = ACTIONS(1026), + [anon_sym_overlay] = ACTIONS(1026), + [anon_sym_as] = ACTIONS(1026), + [anon_sym_PLUS2] = ACTIONS(1026), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1026), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1026), + [aux_sym__val_number_decimal_token1] = ACTIONS(1026), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1026), + [aux_sym__val_number_decimal_token4] = ACTIONS(1026), + [aux_sym__val_number_token1] = ACTIONS(1026), + [aux_sym__val_number_token2] = ACTIONS(1026), + [aux_sym__val_number_token3] = ACTIONS(1026), + [aux_sym__val_number_token4] = ACTIONS(1026), + [aux_sym__val_number_token5] = ACTIONS(1026), + [aux_sym__val_number_token6] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym__str_single_quotes] = ACTIONS(1026), + [sym__str_back_ticks] = ACTIONS(1026), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1026), + [sym__entry_separator] = ACTIONS(1028), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1028), + }, + [632] = { + [sym_comment] = STATE(632), + [anon_sym_export] = ACTIONS(2390), + [anon_sym_alias] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_let_DASHenv] = ACTIONS(2390), + [anon_sym_mut] = ACTIONS(2390), + [anon_sym_const] = ACTIONS(2390), + [aux_sym_cmd_identifier_token1] = ACTIONS(2390), + [aux_sym_cmd_identifier_token2] = ACTIONS(2390), + [aux_sym_cmd_identifier_token3] = ACTIONS(2390), + [aux_sym_cmd_identifier_token4] = ACTIONS(2390), + [aux_sym_cmd_identifier_token5] = ACTIONS(2390), + [aux_sym_cmd_identifier_token6] = ACTIONS(2390), + [aux_sym_cmd_identifier_token7] = ACTIONS(2390), + [aux_sym_cmd_identifier_token8] = ACTIONS(2390), + [aux_sym_cmd_identifier_token9] = ACTIONS(2390), + [aux_sym_cmd_identifier_token10] = ACTIONS(2390), + [aux_sym_cmd_identifier_token11] = ACTIONS(2390), + [aux_sym_cmd_identifier_token12] = ACTIONS(2390), + [aux_sym_cmd_identifier_token13] = ACTIONS(2390), + [aux_sym_cmd_identifier_token14] = ACTIONS(2390), + [aux_sym_cmd_identifier_token15] = ACTIONS(2390), + [aux_sym_cmd_identifier_token16] = ACTIONS(2390), + [aux_sym_cmd_identifier_token17] = ACTIONS(2390), + [aux_sym_cmd_identifier_token18] = ACTIONS(2390), + [aux_sym_cmd_identifier_token19] = ACTIONS(2390), + [aux_sym_cmd_identifier_token20] = ACTIONS(2390), + [aux_sym_cmd_identifier_token21] = ACTIONS(2390), + [aux_sym_cmd_identifier_token22] = ACTIONS(2390), + [aux_sym_cmd_identifier_token23] = ACTIONS(2390), + [aux_sym_cmd_identifier_token24] = ACTIONS(2390), + [aux_sym_cmd_identifier_token25] = ACTIONS(2390), + [aux_sym_cmd_identifier_token26] = ACTIONS(2390), + [aux_sym_cmd_identifier_token27] = ACTIONS(2390), + [aux_sym_cmd_identifier_token28] = ACTIONS(2390), + [aux_sym_cmd_identifier_token29] = ACTIONS(2390), + [aux_sym_cmd_identifier_token30] = ACTIONS(2390), + [aux_sym_cmd_identifier_token31] = ACTIONS(2390), + [aux_sym_cmd_identifier_token32] = ACTIONS(2390), + [aux_sym_cmd_identifier_token33] = ACTIONS(2390), + [aux_sym_cmd_identifier_token34] = ACTIONS(2390), + [aux_sym_cmd_identifier_token35] = ACTIONS(2390), + [aux_sym_cmd_identifier_token36] = ACTIONS(2390), + [aux_sym_cmd_identifier_token37] = ACTIONS(2390), + [aux_sym_cmd_identifier_token38] = ACTIONS(2390), + [aux_sym_cmd_identifier_token39] = ACTIONS(2390), + [aux_sym_cmd_identifier_token40] = ACTIONS(2390), + [anon_sym_def] = ACTIONS(2390), + [anon_sym_export_DASHenv] = ACTIONS(2390), + [anon_sym_extern] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_use] = ACTIONS(2390), + [anon_sym_LPAREN] = ACTIONS(2390), + [anon_sym_DOLLAR] = ACTIONS(2390), + [anon_sym_error] = ACTIONS(2390), + [anon_sym_DASH2] = ACTIONS(2390), + [anon_sym_break] = ACTIONS(2390), + [anon_sym_continue] = ACTIONS(2390), + [anon_sym_for] = ACTIONS(2390), + [anon_sym_in2] = ACTIONS(2390), + [anon_sym_loop] = ACTIONS(2390), + [anon_sym_make] = ACTIONS(2390), + [anon_sym_while] = ACTIONS(2390), + [anon_sym_do] = ACTIONS(2390), + [anon_sym_if] = ACTIONS(2390), + [anon_sym_else] = ACTIONS(2390), + [anon_sym_match] = ACTIONS(2390), + [anon_sym_RBRACE] = ACTIONS(2390), + [anon_sym_try] = ACTIONS(2390), + [anon_sym_catch] = ACTIONS(2390), + [anon_sym_return] = ACTIONS(2390), + [anon_sym_source] = ACTIONS(2390), + [anon_sym_source_DASHenv] = ACTIONS(2390), + [anon_sym_register] = ACTIONS(2390), + [anon_sym_hide] = ACTIONS(2390), + [anon_sym_hide_DASHenv] = ACTIONS(2390), + [anon_sym_overlay] = ACTIONS(2390), + [anon_sym_as] = ACTIONS(2390), + [anon_sym_PLUS2] = ACTIONS(2390), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2390), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2390), + [aux_sym__val_number_decimal_token1] = ACTIONS(2390), + [aux_sym__val_number_decimal_token2] = ACTIONS(2390), + [aux_sym__val_number_decimal_token3] = ACTIONS(2390), + [aux_sym__val_number_decimal_token4] = ACTIONS(2390), + [aux_sym__val_number_token1] = ACTIONS(2390), + [aux_sym__val_number_token2] = ACTIONS(2390), + [aux_sym__val_number_token3] = ACTIONS(2390), + [aux_sym__val_number_token4] = ACTIONS(2390), + [aux_sym__val_number_token5] = ACTIONS(2390), + [aux_sym__val_number_token6] = ACTIONS(2390), + [anon_sym_DQUOTE] = ACTIONS(2390), + [sym__str_single_quotes] = ACTIONS(2390), + [sym__str_back_ticks] = ACTIONS(2390), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2390), + [sym__entry_separator] = ACTIONS(2392), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2392), + }, + [633] = { + [sym_comment] = STATE(633), + [anon_sym_export] = ACTIONS(2394), + [anon_sym_alias] = ACTIONS(2394), + [anon_sym_let] = ACTIONS(2394), + [anon_sym_let_DASHenv] = ACTIONS(2394), + [anon_sym_mut] = ACTIONS(2394), + [anon_sym_const] = ACTIONS(2394), + [aux_sym_cmd_identifier_token1] = ACTIONS(2394), + [aux_sym_cmd_identifier_token2] = ACTIONS(2394), + [aux_sym_cmd_identifier_token3] = ACTIONS(2394), + [aux_sym_cmd_identifier_token4] = ACTIONS(2394), + [aux_sym_cmd_identifier_token5] = ACTIONS(2394), + [aux_sym_cmd_identifier_token6] = ACTIONS(2394), + [aux_sym_cmd_identifier_token7] = ACTIONS(2394), + [aux_sym_cmd_identifier_token8] = ACTIONS(2394), + [aux_sym_cmd_identifier_token9] = ACTIONS(2394), + [aux_sym_cmd_identifier_token10] = ACTIONS(2394), + [aux_sym_cmd_identifier_token11] = ACTIONS(2394), + [aux_sym_cmd_identifier_token12] = ACTIONS(2394), + [aux_sym_cmd_identifier_token13] = ACTIONS(2394), + [aux_sym_cmd_identifier_token14] = ACTIONS(2394), + [aux_sym_cmd_identifier_token15] = ACTIONS(2394), + [aux_sym_cmd_identifier_token16] = ACTIONS(2394), + [aux_sym_cmd_identifier_token17] = ACTIONS(2394), + [aux_sym_cmd_identifier_token18] = ACTIONS(2394), + [aux_sym_cmd_identifier_token19] = ACTIONS(2394), + [aux_sym_cmd_identifier_token20] = ACTIONS(2394), + [aux_sym_cmd_identifier_token21] = ACTIONS(2394), + [aux_sym_cmd_identifier_token22] = ACTIONS(2394), + [aux_sym_cmd_identifier_token23] = ACTIONS(2394), + [aux_sym_cmd_identifier_token24] = ACTIONS(2394), + [aux_sym_cmd_identifier_token25] = ACTIONS(2394), + [aux_sym_cmd_identifier_token26] = ACTIONS(2394), + [aux_sym_cmd_identifier_token27] = ACTIONS(2394), + [aux_sym_cmd_identifier_token28] = ACTIONS(2394), + [aux_sym_cmd_identifier_token29] = ACTIONS(2394), + [aux_sym_cmd_identifier_token30] = ACTIONS(2394), + [aux_sym_cmd_identifier_token31] = ACTIONS(2394), + [aux_sym_cmd_identifier_token32] = ACTIONS(2394), + [aux_sym_cmd_identifier_token33] = ACTIONS(2394), + [aux_sym_cmd_identifier_token34] = ACTIONS(2394), + [aux_sym_cmd_identifier_token35] = ACTIONS(2394), + [aux_sym_cmd_identifier_token36] = ACTIONS(2394), + [aux_sym_cmd_identifier_token37] = ACTIONS(2394), + [aux_sym_cmd_identifier_token38] = ACTIONS(2394), + [aux_sym_cmd_identifier_token39] = ACTIONS(2394), + [aux_sym_cmd_identifier_token40] = ACTIONS(2394), + [anon_sym_def] = ACTIONS(2394), + [anon_sym_export_DASHenv] = ACTIONS(2394), + [anon_sym_extern] = ACTIONS(2394), + [anon_sym_module] = ACTIONS(2394), + [anon_sym_use] = ACTIONS(2394), + [anon_sym_LPAREN] = ACTIONS(2394), + [anon_sym_DOLLAR] = ACTIONS(2394), + [anon_sym_error] = ACTIONS(2394), + [anon_sym_DASH2] = ACTIONS(2394), + [anon_sym_break] = ACTIONS(2394), + [anon_sym_continue] = ACTIONS(2394), + [anon_sym_for] = ACTIONS(2394), + [anon_sym_in2] = ACTIONS(2394), + [anon_sym_loop] = ACTIONS(2394), + [anon_sym_make] = ACTIONS(2394), + [anon_sym_while] = ACTIONS(2394), + [anon_sym_do] = ACTIONS(2394), + [anon_sym_if] = ACTIONS(2394), + [anon_sym_else] = ACTIONS(2394), + [anon_sym_match] = ACTIONS(2394), + [anon_sym_RBRACE] = ACTIONS(2394), + [anon_sym_try] = ACTIONS(2394), + [anon_sym_catch] = ACTIONS(2394), + [anon_sym_return] = ACTIONS(2394), + [anon_sym_source] = ACTIONS(2394), + [anon_sym_source_DASHenv] = ACTIONS(2394), + [anon_sym_register] = ACTIONS(2394), + [anon_sym_hide] = ACTIONS(2394), + [anon_sym_hide_DASHenv] = ACTIONS(2394), + [anon_sym_overlay] = ACTIONS(2394), + [anon_sym_as] = ACTIONS(2394), + [anon_sym_PLUS2] = ACTIONS(2394), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2394), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2394), + [aux_sym__val_number_decimal_token1] = ACTIONS(2394), + [aux_sym__val_number_decimal_token2] = ACTIONS(2394), + [aux_sym__val_number_decimal_token3] = ACTIONS(2394), + [aux_sym__val_number_decimal_token4] = ACTIONS(2394), + [aux_sym__val_number_token1] = ACTIONS(2394), + [aux_sym__val_number_token2] = ACTIONS(2394), + [aux_sym__val_number_token3] = ACTIONS(2394), + [aux_sym__val_number_token4] = ACTIONS(2394), + [aux_sym__val_number_token5] = ACTIONS(2394), + [aux_sym__val_number_token6] = ACTIONS(2394), + [anon_sym_DQUOTE] = ACTIONS(2394), + [sym__str_single_quotes] = ACTIONS(2394), + [sym__str_back_ticks] = ACTIONS(2394), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2394), + [sym__entry_separator] = ACTIONS(2396), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2396), + }, + [634] = { + [sym_comment] = STATE(634), + [anon_sym_export] = ACTIONS(2122), + [anon_sym_alias] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_let_DASHenv] = ACTIONS(2122), + [anon_sym_mut] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [aux_sym_cmd_identifier_token1] = ACTIONS(2122), + [aux_sym_cmd_identifier_token2] = ACTIONS(2122), + [aux_sym_cmd_identifier_token3] = ACTIONS(2122), + [aux_sym_cmd_identifier_token4] = ACTIONS(2122), + [aux_sym_cmd_identifier_token5] = ACTIONS(2122), + [aux_sym_cmd_identifier_token6] = ACTIONS(2122), + [aux_sym_cmd_identifier_token7] = ACTIONS(2122), + [aux_sym_cmd_identifier_token8] = ACTIONS(2122), + [aux_sym_cmd_identifier_token9] = ACTIONS(2122), + [aux_sym_cmd_identifier_token10] = ACTIONS(2122), + [aux_sym_cmd_identifier_token11] = ACTIONS(2122), + [aux_sym_cmd_identifier_token12] = ACTIONS(2122), + [aux_sym_cmd_identifier_token13] = ACTIONS(2122), + [aux_sym_cmd_identifier_token14] = ACTIONS(2122), + [aux_sym_cmd_identifier_token15] = ACTIONS(2122), + [aux_sym_cmd_identifier_token16] = ACTIONS(2122), + [aux_sym_cmd_identifier_token17] = ACTIONS(2122), + [aux_sym_cmd_identifier_token18] = ACTIONS(2122), + [aux_sym_cmd_identifier_token19] = ACTIONS(2122), + [aux_sym_cmd_identifier_token20] = ACTIONS(2122), + [aux_sym_cmd_identifier_token21] = ACTIONS(2122), + [aux_sym_cmd_identifier_token22] = ACTIONS(2122), + [aux_sym_cmd_identifier_token23] = ACTIONS(2122), + [aux_sym_cmd_identifier_token24] = ACTIONS(2122), + [aux_sym_cmd_identifier_token25] = ACTIONS(2122), + [aux_sym_cmd_identifier_token26] = ACTIONS(2122), + [aux_sym_cmd_identifier_token27] = ACTIONS(2122), + [aux_sym_cmd_identifier_token28] = ACTIONS(2122), + [aux_sym_cmd_identifier_token29] = ACTIONS(2122), + [aux_sym_cmd_identifier_token30] = ACTIONS(2122), + [aux_sym_cmd_identifier_token31] = ACTIONS(2122), + [aux_sym_cmd_identifier_token32] = ACTIONS(2122), + [aux_sym_cmd_identifier_token33] = ACTIONS(2122), + [aux_sym_cmd_identifier_token34] = ACTIONS(2122), + [aux_sym_cmd_identifier_token35] = ACTIONS(2122), + [aux_sym_cmd_identifier_token36] = ACTIONS(2122), + [aux_sym_cmd_identifier_token37] = ACTIONS(2122), + [aux_sym_cmd_identifier_token38] = ACTIONS(2122), + [aux_sym_cmd_identifier_token39] = ACTIONS(2122), + [aux_sym_cmd_identifier_token40] = ACTIONS(2122), + [anon_sym_def] = ACTIONS(2122), + [anon_sym_export_DASHenv] = ACTIONS(2122), + [anon_sym_extern] = ACTIONS(2122), + [anon_sym_module] = ACTIONS(2122), + [anon_sym_use] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_DOLLAR] = ACTIONS(2122), + [anon_sym_error] = ACTIONS(2122), + [anon_sym_DASH2] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_in2] = ACTIONS(2122), + [anon_sym_loop] = ACTIONS(2122), + [anon_sym_make] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_else] = ACTIONS(2122), + [anon_sym_match] = ACTIONS(2122), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2122), + [anon_sym_catch] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_source] = ACTIONS(2122), + [anon_sym_source_DASHenv] = ACTIONS(2122), + [anon_sym_register] = ACTIONS(2122), + [anon_sym_hide] = ACTIONS(2122), + [anon_sym_hide_DASHenv] = ACTIONS(2122), + [anon_sym_overlay] = ACTIONS(2122), + [anon_sym_as] = ACTIONS(2122), + [anon_sym_PLUS2] = ACTIONS(2122), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2122), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2122), + [aux_sym__val_number_decimal_token1] = ACTIONS(2122), + [aux_sym__val_number_decimal_token2] = ACTIONS(2122), + [aux_sym__val_number_decimal_token3] = ACTIONS(2122), + [aux_sym__val_number_decimal_token4] = ACTIONS(2122), + [aux_sym__val_number_token1] = ACTIONS(2122), + [aux_sym__val_number_token2] = ACTIONS(2122), + [aux_sym__val_number_token3] = ACTIONS(2122), + [aux_sym__val_number_token4] = ACTIONS(2122), + [aux_sym__val_number_token5] = ACTIONS(2122), + [aux_sym__val_number_token6] = ACTIONS(2122), + [anon_sym_DQUOTE] = ACTIONS(2122), + [sym__str_single_quotes] = ACTIONS(2122), + [sym__str_back_ticks] = ACTIONS(2122), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2122), + [sym__entry_separator] = ACTIONS(2128), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2128), + }, + [635] = { + [sym_comment] = STATE(635), + [anon_sym_export] = ACTIONS(1863), + [anon_sym_alias] = ACTIONS(1863), + [anon_sym_let] = ACTIONS(1863), + [anon_sym_let_DASHenv] = ACTIONS(1863), + [anon_sym_mut] = ACTIONS(1863), + [anon_sym_const] = ACTIONS(1863), + [aux_sym_cmd_identifier_token1] = ACTIONS(1863), + [aux_sym_cmd_identifier_token2] = ACTIONS(1863), + [aux_sym_cmd_identifier_token3] = ACTIONS(1863), + [aux_sym_cmd_identifier_token4] = ACTIONS(1863), + [aux_sym_cmd_identifier_token5] = ACTIONS(1863), + [aux_sym_cmd_identifier_token6] = ACTIONS(1863), + [aux_sym_cmd_identifier_token7] = ACTIONS(1863), + [aux_sym_cmd_identifier_token8] = ACTIONS(1863), + [aux_sym_cmd_identifier_token9] = ACTIONS(1863), + [aux_sym_cmd_identifier_token10] = ACTIONS(1863), + [aux_sym_cmd_identifier_token11] = ACTIONS(1863), + [aux_sym_cmd_identifier_token12] = ACTIONS(1863), + [aux_sym_cmd_identifier_token13] = ACTIONS(1863), + [aux_sym_cmd_identifier_token14] = ACTIONS(1863), + [aux_sym_cmd_identifier_token15] = ACTIONS(1863), + [aux_sym_cmd_identifier_token16] = ACTIONS(1863), + [aux_sym_cmd_identifier_token17] = ACTIONS(1863), + [aux_sym_cmd_identifier_token18] = ACTIONS(1863), + [aux_sym_cmd_identifier_token19] = ACTIONS(1863), + [aux_sym_cmd_identifier_token20] = ACTIONS(1863), + [aux_sym_cmd_identifier_token21] = ACTIONS(1863), + [aux_sym_cmd_identifier_token22] = ACTIONS(1863), + [aux_sym_cmd_identifier_token23] = ACTIONS(1863), + [aux_sym_cmd_identifier_token24] = ACTIONS(1863), + [aux_sym_cmd_identifier_token25] = ACTIONS(1863), + [aux_sym_cmd_identifier_token26] = ACTIONS(1863), + [aux_sym_cmd_identifier_token27] = ACTIONS(1863), + [aux_sym_cmd_identifier_token28] = ACTIONS(1863), + [aux_sym_cmd_identifier_token29] = ACTIONS(1863), + [aux_sym_cmd_identifier_token30] = ACTIONS(1863), + [aux_sym_cmd_identifier_token31] = ACTIONS(1863), + [aux_sym_cmd_identifier_token32] = ACTIONS(1863), + [aux_sym_cmd_identifier_token33] = ACTIONS(1863), + [aux_sym_cmd_identifier_token34] = ACTIONS(1863), + [aux_sym_cmd_identifier_token35] = ACTIONS(1863), + [aux_sym_cmd_identifier_token36] = ACTIONS(1863), + [aux_sym_cmd_identifier_token37] = ACTIONS(1863), + [aux_sym_cmd_identifier_token38] = ACTIONS(1863), + [aux_sym_cmd_identifier_token39] = ACTIONS(1863), + [aux_sym_cmd_identifier_token40] = ACTIONS(1863), + [anon_sym_def] = ACTIONS(1863), + [anon_sym_export_DASHenv] = ACTIONS(1863), + [anon_sym_extern] = ACTIONS(1863), + [anon_sym_module] = ACTIONS(1863), + [anon_sym_use] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_DOLLAR] = ACTIONS(1863), + [anon_sym_error] = ACTIONS(1863), + [anon_sym_DASH2] = ACTIONS(1863), + [anon_sym_break] = ACTIONS(1863), + [anon_sym_continue] = ACTIONS(1863), + [anon_sym_for] = ACTIONS(1863), + [anon_sym_in2] = ACTIONS(1863), + [anon_sym_loop] = ACTIONS(1863), + [anon_sym_make] = ACTIONS(1863), + [anon_sym_while] = ACTIONS(1863), + [anon_sym_do] = ACTIONS(1863), + [anon_sym_if] = ACTIONS(1863), + [anon_sym_else] = ACTIONS(1863), + [anon_sym_match] = ACTIONS(1863), + [anon_sym_RBRACE] = ACTIONS(1863), + [anon_sym_try] = ACTIONS(1863), + [anon_sym_catch] = ACTIONS(1863), + [anon_sym_return] = ACTIONS(1863), + [anon_sym_source] = ACTIONS(1863), + [anon_sym_source_DASHenv] = ACTIONS(1863), + [anon_sym_register] = ACTIONS(1863), + [anon_sym_hide] = ACTIONS(1863), + [anon_sym_hide_DASHenv] = ACTIONS(1863), + [anon_sym_overlay] = ACTIONS(1863), + [anon_sym_as] = ACTIONS(1863), + [anon_sym_PLUS2] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1863), + [aux_sym__val_number_decimal_token1] = ACTIONS(1863), + [aux_sym__val_number_decimal_token2] = ACTIONS(1863), + [aux_sym__val_number_decimal_token3] = ACTIONS(1863), + [aux_sym__val_number_decimal_token4] = ACTIONS(1863), + [aux_sym__val_number_token1] = ACTIONS(1863), + [aux_sym__val_number_token2] = ACTIONS(1863), + [aux_sym__val_number_token3] = ACTIONS(1863), + [aux_sym__val_number_token4] = ACTIONS(1863), + [aux_sym__val_number_token5] = ACTIONS(1863), + [aux_sym__val_number_token6] = ACTIONS(1863), + [anon_sym_DQUOTE] = ACTIONS(1863), + [sym__str_single_quotes] = ACTIONS(1863), + [sym__str_back_ticks] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1863), + [sym__entry_separator] = ACTIONS(1865), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1865), + }, + [636] = { + [sym_comment] = STATE(636), + [anon_sym_export] = ACTIONS(2398), + [anon_sym_alias] = ACTIONS(2398), + [anon_sym_let] = ACTIONS(2398), + [anon_sym_let_DASHenv] = ACTIONS(2398), + [anon_sym_mut] = ACTIONS(2398), + [anon_sym_const] = ACTIONS(2398), + [aux_sym_cmd_identifier_token1] = ACTIONS(2398), + [aux_sym_cmd_identifier_token2] = ACTIONS(2398), + [aux_sym_cmd_identifier_token3] = ACTIONS(2398), + [aux_sym_cmd_identifier_token4] = ACTIONS(2398), + [aux_sym_cmd_identifier_token5] = ACTIONS(2398), + [aux_sym_cmd_identifier_token6] = ACTIONS(2398), + [aux_sym_cmd_identifier_token7] = ACTIONS(2398), + [aux_sym_cmd_identifier_token8] = ACTIONS(2398), + [aux_sym_cmd_identifier_token9] = ACTIONS(2398), + [aux_sym_cmd_identifier_token10] = ACTIONS(2398), + [aux_sym_cmd_identifier_token11] = ACTIONS(2398), + [aux_sym_cmd_identifier_token12] = ACTIONS(2398), + [aux_sym_cmd_identifier_token13] = ACTIONS(2398), + [aux_sym_cmd_identifier_token14] = ACTIONS(2398), + [aux_sym_cmd_identifier_token15] = ACTIONS(2398), + [aux_sym_cmd_identifier_token16] = ACTIONS(2398), + [aux_sym_cmd_identifier_token17] = ACTIONS(2398), + [aux_sym_cmd_identifier_token18] = ACTIONS(2398), + [aux_sym_cmd_identifier_token19] = ACTIONS(2398), + [aux_sym_cmd_identifier_token20] = ACTIONS(2398), + [aux_sym_cmd_identifier_token21] = ACTIONS(2398), + [aux_sym_cmd_identifier_token22] = ACTIONS(2398), + [aux_sym_cmd_identifier_token23] = ACTIONS(2398), + [aux_sym_cmd_identifier_token24] = ACTIONS(2398), + [aux_sym_cmd_identifier_token25] = ACTIONS(2398), + [aux_sym_cmd_identifier_token26] = ACTIONS(2398), + [aux_sym_cmd_identifier_token27] = ACTIONS(2398), + [aux_sym_cmd_identifier_token28] = ACTIONS(2398), + [aux_sym_cmd_identifier_token29] = ACTIONS(2398), + [aux_sym_cmd_identifier_token30] = ACTIONS(2398), + [aux_sym_cmd_identifier_token31] = ACTIONS(2398), + [aux_sym_cmd_identifier_token32] = ACTIONS(2398), + [aux_sym_cmd_identifier_token33] = ACTIONS(2398), + [aux_sym_cmd_identifier_token34] = ACTIONS(2398), + [aux_sym_cmd_identifier_token35] = ACTIONS(2398), + [aux_sym_cmd_identifier_token36] = ACTIONS(2398), + [aux_sym_cmd_identifier_token37] = ACTIONS(2398), + [aux_sym_cmd_identifier_token38] = ACTIONS(2398), + [aux_sym_cmd_identifier_token39] = ACTIONS(2398), + [aux_sym_cmd_identifier_token40] = ACTIONS(2398), + [anon_sym_def] = ACTIONS(2398), + [anon_sym_export_DASHenv] = ACTIONS(2398), + [anon_sym_extern] = ACTIONS(2398), + [anon_sym_module] = ACTIONS(2398), + [anon_sym_use] = ACTIONS(2398), + [anon_sym_LPAREN] = ACTIONS(2398), + [anon_sym_DOLLAR] = ACTIONS(2398), + [anon_sym_error] = ACTIONS(2398), + [anon_sym_DASH2] = ACTIONS(2398), + [anon_sym_break] = ACTIONS(2398), + [anon_sym_continue] = ACTIONS(2398), + [anon_sym_for] = ACTIONS(2398), + [anon_sym_in2] = ACTIONS(2398), + [anon_sym_loop] = ACTIONS(2398), + [anon_sym_make] = ACTIONS(2398), + [anon_sym_while] = ACTIONS(2398), + [anon_sym_do] = ACTIONS(2398), + [anon_sym_if] = ACTIONS(2398), + [anon_sym_else] = ACTIONS(2398), + [anon_sym_match] = ACTIONS(2398), + [anon_sym_RBRACE] = ACTIONS(2398), + [anon_sym_try] = ACTIONS(2398), + [anon_sym_catch] = ACTIONS(2398), + [anon_sym_return] = ACTIONS(2398), + [anon_sym_source] = ACTIONS(2398), + [anon_sym_source_DASHenv] = ACTIONS(2398), + [anon_sym_register] = ACTIONS(2398), + [anon_sym_hide] = ACTIONS(2398), + [anon_sym_hide_DASHenv] = ACTIONS(2398), + [anon_sym_overlay] = ACTIONS(2398), + [anon_sym_as] = ACTIONS(2398), + [anon_sym_PLUS2] = ACTIONS(2398), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2398), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2398), + [aux_sym__val_number_decimal_token1] = ACTIONS(2398), + [aux_sym__val_number_decimal_token2] = ACTIONS(2398), + [aux_sym__val_number_decimal_token3] = ACTIONS(2398), + [aux_sym__val_number_decimal_token4] = ACTIONS(2398), + [aux_sym__val_number_token1] = ACTIONS(2398), + [aux_sym__val_number_token2] = ACTIONS(2398), + [aux_sym__val_number_token3] = ACTIONS(2398), + [aux_sym__val_number_token4] = ACTIONS(2398), + [aux_sym__val_number_token5] = ACTIONS(2398), + [aux_sym__val_number_token6] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2398), + [sym__str_single_quotes] = ACTIONS(2398), + [sym__str_back_ticks] = ACTIONS(2398), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2398), + [sym__entry_separator] = ACTIONS(2400), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2400), + }, + [637] = { + [sym_comment] = STATE(637), + [anon_sym_export] = ACTIONS(2402), + [anon_sym_alias] = ACTIONS(2402), + [anon_sym_let] = ACTIONS(2402), + [anon_sym_let_DASHenv] = ACTIONS(2402), + [anon_sym_mut] = ACTIONS(2402), + [anon_sym_const] = ACTIONS(2402), + [aux_sym_cmd_identifier_token1] = ACTIONS(2402), + [aux_sym_cmd_identifier_token2] = ACTIONS(2402), + [aux_sym_cmd_identifier_token3] = ACTIONS(2402), + [aux_sym_cmd_identifier_token4] = ACTIONS(2402), + [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [aux_sym_cmd_identifier_token6] = ACTIONS(2402), + [aux_sym_cmd_identifier_token7] = ACTIONS(2402), + [aux_sym_cmd_identifier_token8] = ACTIONS(2402), + [aux_sym_cmd_identifier_token9] = ACTIONS(2402), + [aux_sym_cmd_identifier_token10] = ACTIONS(2402), + [aux_sym_cmd_identifier_token11] = ACTIONS(2402), + [aux_sym_cmd_identifier_token12] = ACTIONS(2402), + [aux_sym_cmd_identifier_token13] = ACTIONS(2402), + [aux_sym_cmd_identifier_token14] = ACTIONS(2402), + [aux_sym_cmd_identifier_token15] = ACTIONS(2402), + [aux_sym_cmd_identifier_token16] = ACTIONS(2402), + [aux_sym_cmd_identifier_token17] = ACTIONS(2402), + [aux_sym_cmd_identifier_token18] = ACTIONS(2402), + [aux_sym_cmd_identifier_token19] = ACTIONS(2402), + [aux_sym_cmd_identifier_token20] = ACTIONS(2402), + [aux_sym_cmd_identifier_token21] = ACTIONS(2402), + [aux_sym_cmd_identifier_token22] = ACTIONS(2402), + [aux_sym_cmd_identifier_token23] = ACTIONS(2402), + [aux_sym_cmd_identifier_token24] = ACTIONS(2402), + [aux_sym_cmd_identifier_token25] = ACTIONS(2402), + [aux_sym_cmd_identifier_token26] = ACTIONS(2402), + [aux_sym_cmd_identifier_token27] = ACTIONS(2402), + [aux_sym_cmd_identifier_token28] = ACTIONS(2402), + [aux_sym_cmd_identifier_token29] = ACTIONS(2402), + [aux_sym_cmd_identifier_token30] = ACTIONS(2402), + [aux_sym_cmd_identifier_token31] = ACTIONS(2402), + [aux_sym_cmd_identifier_token32] = ACTIONS(2402), + [aux_sym_cmd_identifier_token33] = ACTIONS(2402), + [aux_sym_cmd_identifier_token34] = ACTIONS(2402), + [aux_sym_cmd_identifier_token35] = ACTIONS(2402), + [aux_sym_cmd_identifier_token36] = ACTIONS(2402), + [aux_sym_cmd_identifier_token37] = ACTIONS(2402), + [aux_sym_cmd_identifier_token38] = ACTIONS(2402), + [aux_sym_cmd_identifier_token39] = ACTIONS(2402), + [aux_sym_cmd_identifier_token40] = ACTIONS(2402), + [anon_sym_def] = ACTIONS(2402), + [anon_sym_export_DASHenv] = ACTIONS(2402), + [anon_sym_extern] = ACTIONS(2402), + [anon_sym_module] = ACTIONS(2402), + [anon_sym_use] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_DOLLAR] = ACTIONS(2402), + [anon_sym_error] = ACTIONS(2402), + [anon_sym_DASH2] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_in2] = ACTIONS(2402), + [anon_sym_loop] = ACTIONS(2402), + [anon_sym_make] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_do] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_else] = ACTIONS(2402), + [anon_sym_match] = ACTIONS(2402), + [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_try] = ACTIONS(2402), + [anon_sym_catch] = ACTIONS(2402), + [anon_sym_return] = ACTIONS(2402), + [anon_sym_source] = ACTIONS(2402), + [anon_sym_source_DASHenv] = ACTIONS(2402), + [anon_sym_register] = ACTIONS(2402), + [anon_sym_hide] = ACTIONS(2402), + [anon_sym_hide_DASHenv] = ACTIONS(2402), + [anon_sym_overlay] = ACTIONS(2402), + [anon_sym_as] = ACTIONS(2402), + [anon_sym_PLUS2] = ACTIONS(2402), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2402), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2402), + [aux_sym__val_number_decimal_token1] = ACTIONS(2402), + [aux_sym__val_number_decimal_token2] = ACTIONS(2402), + [aux_sym__val_number_decimal_token3] = ACTIONS(2402), + [aux_sym__val_number_decimal_token4] = ACTIONS(2402), + [aux_sym__val_number_token1] = ACTIONS(2402), + [aux_sym__val_number_token2] = ACTIONS(2402), + [aux_sym__val_number_token3] = ACTIONS(2402), + [aux_sym__val_number_token4] = ACTIONS(2402), + [aux_sym__val_number_token5] = ACTIONS(2402), + [aux_sym__val_number_token6] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(2402), + [sym__str_single_quotes] = ACTIONS(2402), + [sym__str_back_ticks] = ACTIONS(2402), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2402), + [sym__entry_separator] = ACTIONS(2404), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1950), + [sym_raw_string_begin] = ACTIONS(2404), }, [638] = { [sym_comment] = STATE(638), - [anon_sym_export] = ACTIONS(2391), - [anon_sym_alias] = ACTIONS(2391), - [anon_sym_let] = ACTIONS(2391), - [anon_sym_let_DASHenv] = ACTIONS(2391), - [anon_sym_mut] = ACTIONS(2391), - [anon_sym_const] = ACTIONS(2391), - [aux_sym_cmd_identifier_token1] = ACTIONS(2391), - [aux_sym_cmd_identifier_token2] = ACTIONS(2391), - [aux_sym_cmd_identifier_token3] = ACTIONS(2391), - [aux_sym_cmd_identifier_token4] = ACTIONS(2391), - [aux_sym_cmd_identifier_token5] = ACTIONS(2391), - [aux_sym_cmd_identifier_token6] = ACTIONS(2391), - [aux_sym_cmd_identifier_token7] = ACTIONS(2391), - [aux_sym_cmd_identifier_token8] = ACTIONS(2391), - [aux_sym_cmd_identifier_token9] = ACTIONS(2391), - [aux_sym_cmd_identifier_token10] = ACTIONS(2391), - [aux_sym_cmd_identifier_token11] = ACTIONS(2391), - [aux_sym_cmd_identifier_token12] = ACTIONS(2391), - [aux_sym_cmd_identifier_token13] = ACTIONS(2391), - [aux_sym_cmd_identifier_token14] = ACTIONS(2391), - [aux_sym_cmd_identifier_token15] = ACTIONS(2391), - [aux_sym_cmd_identifier_token16] = ACTIONS(2391), - [aux_sym_cmd_identifier_token17] = ACTIONS(2391), - [aux_sym_cmd_identifier_token18] = ACTIONS(2391), - [aux_sym_cmd_identifier_token19] = ACTIONS(2391), - [aux_sym_cmd_identifier_token20] = ACTIONS(2391), - [aux_sym_cmd_identifier_token21] = ACTIONS(2391), - [aux_sym_cmd_identifier_token22] = ACTIONS(2391), - [aux_sym_cmd_identifier_token23] = ACTIONS(2391), - [aux_sym_cmd_identifier_token24] = ACTIONS(2391), - [aux_sym_cmd_identifier_token25] = ACTIONS(2391), - [aux_sym_cmd_identifier_token26] = ACTIONS(2391), - [aux_sym_cmd_identifier_token27] = ACTIONS(2391), - [aux_sym_cmd_identifier_token28] = ACTIONS(2391), - [aux_sym_cmd_identifier_token29] = ACTIONS(2391), - [aux_sym_cmd_identifier_token30] = ACTIONS(2391), - [aux_sym_cmd_identifier_token31] = ACTIONS(2391), - [aux_sym_cmd_identifier_token32] = ACTIONS(2391), - [aux_sym_cmd_identifier_token33] = ACTIONS(2391), - [aux_sym_cmd_identifier_token34] = ACTIONS(2391), - [aux_sym_cmd_identifier_token35] = ACTIONS(2391), - [aux_sym_cmd_identifier_token36] = ACTIONS(2391), - [aux_sym_cmd_identifier_token37] = ACTIONS(2391), - [aux_sym_cmd_identifier_token38] = ACTIONS(2391), - [aux_sym_cmd_identifier_token39] = ACTIONS(2391), - [aux_sym_cmd_identifier_token40] = ACTIONS(2391), - [anon_sym_def] = ACTIONS(2391), - [anon_sym_export_DASHenv] = ACTIONS(2391), - [anon_sym_extern] = ACTIONS(2391), - [anon_sym_module] = ACTIONS(2391), - [anon_sym_use] = ACTIONS(2391), - [anon_sym_LPAREN] = ACTIONS(2391), - [anon_sym_DOLLAR] = ACTIONS(2391), - [anon_sym_error] = ACTIONS(2391), - [anon_sym_DASH2] = ACTIONS(2391), - [anon_sym_break] = ACTIONS(2391), - [anon_sym_continue] = ACTIONS(2391), - [anon_sym_for] = ACTIONS(2391), - [anon_sym_in2] = ACTIONS(2391), - [anon_sym_loop] = ACTIONS(2391), - [anon_sym_make] = ACTIONS(2391), - [anon_sym_while] = ACTIONS(2391), - [anon_sym_do] = ACTIONS(2391), - [anon_sym_if] = ACTIONS(2391), - [anon_sym_else] = ACTIONS(2391), - [anon_sym_match] = ACTIONS(2391), - [anon_sym_RBRACE] = ACTIONS(2391), - [anon_sym_try] = ACTIONS(2391), - [anon_sym_catch] = ACTIONS(2391), - [anon_sym_return] = ACTIONS(2391), - [anon_sym_source] = ACTIONS(2391), - [anon_sym_source_DASHenv] = ACTIONS(2391), - [anon_sym_register] = ACTIONS(2391), - [anon_sym_hide] = ACTIONS(2391), - [anon_sym_hide_DASHenv] = ACTIONS(2391), - [anon_sym_overlay] = ACTIONS(2391), - [anon_sym_as] = ACTIONS(2391), - [anon_sym_PLUS2] = ACTIONS(2391), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2391), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2391), - [aux_sym__val_number_decimal_token1] = ACTIONS(2391), - [aux_sym__val_number_decimal_token2] = ACTIONS(2391), - [aux_sym__val_number_decimal_token3] = ACTIONS(2391), - [aux_sym__val_number_decimal_token4] = ACTIONS(2391), - [aux_sym__val_number_token1] = ACTIONS(2391), - [aux_sym__val_number_token2] = ACTIONS(2391), - [aux_sym__val_number_token3] = ACTIONS(2391), - [aux_sym__val_number_token4] = ACTIONS(2391), - [aux_sym__val_number_token5] = ACTIONS(2391), - [aux_sym__val_number_token6] = ACTIONS(2391), - [anon_sym_DQUOTE] = ACTIONS(2391), - [sym__str_single_quotes] = ACTIONS(2391), - [sym__str_back_ticks] = ACTIONS(2391), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2391), - [sym__entry_separator] = ACTIONS(2393), + [anon_sym_export] = ACTIONS(2406), + [anon_sym_alias] = ACTIONS(2406), + [anon_sym_let] = ACTIONS(2406), + [anon_sym_let_DASHenv] = ACTIONS(2406), + [anon_sym_mut] = ACTIONS(2406), + [anon_sym_const] = ACTIONS(2406), + [aux_sym_cmd_identifier_token1] = ACTIONS(2406), + [aux_sym_cmd_identifier_token2] = ACTIONS(2406), + [aux_sym_cmd_identifier_token3] = ACTIONS(2406), + [aux_sym_cmd_identifier_token4] = ACTIONS(2406), + [aux_sym_cmd_identifier_token5] = ACTIONS(2406), + [aux_sym_cmd_identifier_token6] = ACTIONS(2406), + [aux_sym_cmd_identifier_token7] = ACTIONS(2406), + [aux_sym_cmd_identifier_token8] = ACTIONS(2406), + [aux_sym_cmd_identifier_token9] = ACTIONS(2406), + [aux_sym_cmd_identifier_token10] = ACTIONS(2406), + [aux_sym_cmd_identifier_token11] = ACTIONS(2406), + [aux_sym_cmd_identifier_token12] = ACTIONS(2406), + [aux_sym_cmd_identifier_token13] = ACTIONS(2406), + [aux_sym_cmd_identifier_token14] = ACTIONS(2406), + [aux_sym_cmd_identifier_token15] = ACTIONS(2406), + [aux_sym_cmd_identifier_token16] = ACTIONS(2406), + [aux_sym_cmd_identifier_token17] = ACTIONS(2406), + [aux_sym_cmd_identifier_token18] = ACTIONS(2406), + [aux_sym_cmd_identifier_token19] = ACTIONS(2406), + [aux_sym_cmd_identifier_token20] = ACTIONS(2406), + [aux_sym_cmd_identifier_token21] = ACTIONS(2406), + [aux_sym_cmd_identifier_token22] = ACTIONS(2406), + [aux_sym_cmd_identifier_token23] = ACTIONS(2406), + [aux_sym_cmd_identifier_token24] = ACTIONS(2406), + [aux_sym_cmd_identifier_token25] = ACTIONS(2406), + [aux_sym_cmd_identifier_token26] = ACTIONS(2406), + [aux_sym_cmd_identifier_token27] = ACTIONS(2406), + [aux_sym_cmd_identifier_token28] = ACTIONS(2406), + [aux_sym_cmd_identifier_token29] = ACTIONS(2406), + [aux_sym_cmd_identifier_token30] = ACTIONS(2406), + [aux_sym_cmd_identifier_token31] = ACTIONS(2406), + [aux_sym_cmd_identifier_token32] = ACTIONS(2406), + [aux_sym_cmd_identifier_token33] = ACTIONS(2406), + [aux_sym_cmd_identifier_token34] = ACTIONS(2406), + [aux_sym_cmd_identifier_token35] = ACTIONS(2406), + [aux_sym_cmd_identifier_token36] = ACTIONS(2406), + [aux_sym_cmd_identifier_token37] = ACTIONS(2406), + [aux_sym_cmd_identifier_token38] = ACTIONS(2406), + [aux_sym_cmd_identifier_token39] = ACTIONS(2406), + [aux_sym_cmd_identifier_token40] = ACTIONS(2406), + [anon_sym_def] = ACTIONS(2406), + [anon_sym_export_DASHenv] = ACTIONS(2406), + [anon_sym_extern] = ACTIONS(2406), + [anon_sym_module] = ACTIONS(2406), + [anon_sym_use] = ACTIONS(2406), + [anon_sym_LPAREN] = ACTIONS(2406), + [anon_sym_DOLLAR] = ACTIONS(2406), + [anon_sym_error] = ACTIONS(2406), + [anon_sym_DASH2] = ACTIONS(2406), + [anon_sym_break] = ACTIONS(2406), + [anon_sym_continue] = ACTIONS(2406), + [anon_sym_for] = ACTIONS(2406), + [anon_sym_in2] = ACTIONS(2406), + [anon_sym_loop] = ACTIONS(2406), + [anon_sym_make] = ACTIONS(2406), + [anon_sym_while] = ACTIONS(2406), + [anon_sym_do] = ACTIONS(2406), + [anon_sym_if] = ACTIONS(2406), + [anon_sym_else] = ACTIONS(2406), + [anon_sym_match] = ACTIONS(2406), + [anon_sym_RBRACE] = ACTIONS(2406), + [anon_sym_try] = ACTIONS(2406), + [anon_sym_catch] = ACTIONS(2406), + [anon_sym_return] = ACTIONS(2406), + [anon_sym_source] = ACTIONS(2406), + [anon_sym_source_DASHenv] = ACTIONS(2406), + [anon_sym_register] = ACTIONS(2406), + [anon_sym_hide] = ACTIONS(2406), + [anon_sym_hide_DASHenv] = ACTIONS(2406), + [anon_sym_overlay] = ACTIONS(2406), + [anon_sym_as] = ACTIONS(2406), + [anon_sym_PLUS2] = ACTIONS(2406), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2406), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2406), + [aux_sym__val_number_decimal_token1] = ACTIONS(2406), + [aux_sym__val_number_decimal_token2] = ACTIONS(2406), + [aux_sym__val_number_decimal_token3] = ACTIONS(2406), + [aux_sym__val_number_decimal_token4] = ACTIONS(2406), + [aux_sym__val_number_token1] = ACTIONS(2406), + [aux_sym__val_number_token2] = ACTIONS(2406), + [aux_sym__val_number_token3] = ACTIONS(2406), + [aux_sym__val_number_token4] = ACTIONS(2406), + [aux_sym__val_number_token5] = ACTIONS(2406), + [aux_sym__val_number_token6] = ACTIONS(2406), + [anon_sym_DQUOTE] = ACTIONS(2406), + [sym__str_single_quotes] = ACTIONS(2406), + [sym__str_back_ticks] = ACTIONS(2406), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2406), + [sym__entry_separator] = ACTIONS(2408), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2393), + [sym_raw_string_begin] = ACTIONS(2408), }, [639] = { [sym_comment] = STATE(639), - [anon_sym_export] = ACTIONS(2395), - [anon_sym_alias] = ACTIONS(2395), - [anon_sym_let] = ACTIONS(2395), - [anon_sym_let_DASHenv] = ACTIONS(2395), - [anon_sym_mut] = ACTIONS(2395), - [anon_sym_const] = ACTIONS(2395), - [aux_sym_cmd_identifier_token1] = ACTIONS(2395), - [aux_sym_cmd_identifier_token2] = ACTIONS(2395), - [aux_sym_cmd_identifier_token3] = ACTIONS(2395), - [aux_sym_cmd_identifier_token4] = ACTIONS(2395), - [aux_sym_cmd_identifier_token5] = ACTIONS(2395), - [aux_sym_cmd_identifier_token6] = ACTIONS(2395), - [aux_sym_cmd_identifier_token7] = ACTIONS(2395), - [aux_sym_cmd_identifier_token8] = ACTIONS(2395), - [aux_sym_cmd_identifier_token9] = ACTIONS(2395), - [aux_sym_cmd_identifier_token10] = ACTIONS(2395), - [aux_sym_cmd_identifier_token11] = ACTIONS(2395), - [aux_sym_cmd_identifier_token12] = ACTIONS(2395), - [aux_sym_cmd_identifier_token13] = ACTIONS(2395), - [aux_sym_cmd_identifier_token14] = ACTIONS(2395), - [aux_sym_cmd_identifier_token15] = ACTIONS(2395), - [aux_sym_cmd_identifier_token16] = ACTIONS(2395), - [aux_sym_cmd_identifier_token17] = ACTIONS(2395), - [aux_sym_cmd_identifier_token18] = ACTIONS(2395), - [aux_sym_cmd_identifier_token19] = ACTIONS(2395), - [aux_sym_cmd_identifier_token20] = ACTIONS(2395), - [aux_sym_cmd_identifier_token21] = ACTIONS(2395), - [aux_sym_cmd_identifier_token22] = ACTIONS(2395), - [aux_sym_cmd_identifier_token23] = ACTIONS(2395), - [aux_sym_cmd_identifier_token24] = ACTIONS(2395), - [aux_sym_cmd_identifier_token25] = ACTIONS(2395), - [aux_sym_cmd_identifier_token26] = ACTIONS(2395), - [aux_sym_cmd_identifier_token27] = ACTIONS(2395), - [aux_sym_cmd_identifier_token28] = ACTIONS(2395), - [aux_sym_cmd_identifier_token29] = ACTIONS(2395), - [aux_sym_cmd_identifier_token30] = ACTIONS(2395), - [aux_sym_cmd_identifier_token31] = ACTIONS(2395), - [aux_sym_cmd_identifier_token32] = ACTIONS(2395), - [aux_sym_cmd_identifier_token33] = ACTIONS(2395), - [aux_sym_cmd_identifier_token34] = ACTIONS(2395), - [aux_sym_cmd_identifier_token35] = ACTIONS(2395), - [aux_sym_cmd_identifier_token36] = ACTIONS(2395), - [aux_sym_cmd_identifier_token37] = ACTIONS(2395), - [aux_sym_cmd_identifier_token38] = ACTIONS(2395), - [aux_sym_cmd_identifier_token39] = ACTIONS(2395), - [aux_sym_cmd_identifier_token40] = ACTIONS(2395), - [anon_sym_def] = ACTIONS(2395), - [anon_sym_export_DASHenv] = ACTIONS(2395), - [anon_sym_extern] = ACTIONS(2395), - [anon_sym_module] = ACTIONS(2395), - [anon_sym_use] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2395), - [anon_sym_DOLLAR] = ACTIONS(2395), - [anon_sym_error] = ACTIONS(2395), - [anon_sym_DASH2] = ACTIONS(2395), - [anon_sym_break] = ACTIONS(2395), - [anon_sym_continue] = ACTIONS(2395), - [anon_sym_for] = ACTIONS(2395), - [anon_sym_in2] = ACTIONS(2395), - [anon_sym_loop] = ACTIONS(2395), - [anon_sym_make] = ACTIONS(2395), - [anon_sym_while] = ACTIONS(2395), - [anon_sym_do] = ACTIONS(2395), - [anon_sym_if] = ACTIONS(2395), - [anon_sym_else] = ACTIONS(2395), - [anon_sym_match] = ACTIONS(2395), - [anon_sym_RBRACE] = ACTIONS(2395), - [anon_sym_try] = ACTIONS(2395), - [anon_sym_catch] = ACTIONS(2395), - [anon_sym_return] = ACTIONS(2395), - [anon_sym_source] = ACTIONS(2395), - [anon_sym_source_DASHenv] = ACTIONS(2395), - [anon_sym_register] = ACTIONS(2395), - [anon_sym_hide] = ACTIONS(2395), - [anon_sym_hide_DASHenv] = ACTIONS(2395), - [anon_sym_overlay] = ACTIONS(2395), - [anon_sym_as] = ACTIONS(2395), - [anon_sym_PLUS2] = ACTIONS(2395), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2395), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2395), - [aux_sym__val_number_decimal_token1] = ACTIONS(2395), - [aux_sym__val_number_decimal_token2] = ACTIONS(2395), - [aux_sym__val_number_decimal_token3] = ACTIONS(2395), - [aux_sym__val_number_decimal_token4] = ACTIONS(2395), - [aux_sym__val_number_token1] = ACTIONS(2395), - [aux_sym__val_number_token2] = ACTIONS(2395), - [aux_sym__val_number_token3] = ACTIONS(2395), - [aux_sym__val_number_token4] = ACTIONS(2395), - [aux_sym__val_number_token5] = ACTIONS(2395), - [aux_sym__val_number_token6] = ACTIONS(2395), - [anon_sym_DQUOTE] = ACTIONS(2395), - [sym__str_single_quotes] = ACTIONS(2395), - [sym__str_back_ticks] = ACTIONS(2395), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2395), - [sym__entry_separator] = ACTIONS(2397), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_alias] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_let_DASHenv] = ACTIONS(2410), + [anon_sym_mut] = ACTIONS(2410), + [anon_sym_const] = ACTIONS(2410), + [aux_sym_cmd_identifier_token1] = ACTIONS(2410), + [aux_sym_cmd_identifier_token2] = ACTIONS(2410), + [aux_sym_cmd_identifier_token3] = ACTIONS(2410), + [aux_sym_cmd_identifier_token4] = ACTIONS(2410), + [aux_sym_cmd_identifier_token5] = ACTIONS(2410), + [aux_sym_cmd_identifier_token6] = ACTIONS(2410), + [aux_sym_cmd_identifier_token7] = ACTIONS(2410), + [aux_sym_cmd_identifier_token8] = ACTIONS(2410), + [aux_sym_cmd_identifier_token9] = ACTIONS(2410), + [aux_sym_cmd_identifier_token10] = ACTIONS(2410), + [aux_sym_cmd_identifier_token11] = ACTIONS(2410), + [aux_sym_cmd_identifier_token12] = ACTIONS(2410), + [aux_sym_cmd_identifier_token13] = ACTIONS(2410), + [aux_sym_cmd_identifier_token14] = ACTIONS(2410), + [aux_sym_cmd_identifier_token15] = ACTIONS(2410), + [aux_sym_cmd_identifier_token16] = ACTIONS(2410), + [aux_sym_cmd_identifier_token17] = ACTIONS(2410), + [aux_sym_cmd_identifier_token18] = ACTIONS(2410), + [aux_sym_cmd_identifier_token19] = ACTIONS(2410), + [aux_sym_cmd_identifier_token20] = ACTIONS(2410), + [aux_sym_cmd_identifier_token21] = ACTIONS(2410), + [aux_sym_cmd_identifier_token22] = ACTIONS(2410), + [aux_sym_cmd_identifier_token23] = ACTIONS(2410), + [aux_sym_cmd_identifier_token24] = ACTIONS(2410), + [aux_sym_cmd_identifier_token25] = ACTIONS(2410), + [aux_sym_cmd_identifier_token26] = ACTIONS(2410), + [aux_sym_cmd_identifier_token27] = ACTIONS(2410), + [aux_sym_cmd_identifier_token28] = ACTIONS(2410), + [aux_sym_cmd_identifier_token29] = ACTIONS(2410), + [aux_sym_cmd_identifier_token30] = ACTIONS(2410), + [aux_sym_cmd_identifier_token31] = ACTIONS(2410), + [aux_sym_cmd_identifier_token32] = ACTIONS(2410), + [aux_sym_cmd_identifier_token33] = ACTIONS(2410), + [aux_sym_cmd_identifier_token34] = ACTIONS(2410), + [aux_sym_cmd_identifier_token35] = ACTIONS(2410), + [aux_sym_cmd_identifier_token36] = ACTIONS(2410), + [aux_sym_cmd_identifier_token37] = ACTIONS(2410), + [aux_sym_cmd_identifier_token38] = ACTIONS(2410), + [aux_sym_cmd_identifier_token39] = ACTIONS(2410), + [aux_sym_cmd_identifier_token40] = ACTIONS(2410), + [anon_sym_def] = ACTIONS(2410), + [anon_sym_export_DASHenv] = ACTIONS(2410), + [anon_sym_extern] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_use] = ACTIONS(2410), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_DOLLAR] = ACTIONS(2410), + [anon_sym_error] = ACTIONS(2410), + [anon_sym_DASH2] = ACTIONS(2410), + [anon_sym_break] = ACTIONS(2410), + [anon_sym_continue] = ACTIONS(2410), + [anon_sym_for] = ACTIONS(2410), + [anon_sym_in2] = ACTIONS(2410), + [anon_sym_loop] = ACTIONS(2410), + [anon_sym_make] = ACTIONS(2410), + [anon_sym_while] = ACTIONS(2410), + [anon_sym_do] = ACTIONS(2410), + [anon_sym_if] = ACTIONS(2410), + [anon_sym_else] = ACTIONS(2410), + [anon_sym_match] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_try] = ACTIONS(2410), + [anon_sym_catch] = ACTIONS(2410), + [anon_sym_return] = ACTIONS(2410), + [anon_sym_source] = ACTIONS(2410), + [anon_sym_source_DASHenv] = ACTIONS(2410), + [anon_sym_register] = ACTIONS(2410), + [anon_sym_hide] = ACTIONS(2410), + [anon_sym_hide_DASHenv] = ACTIONS(2410), + [anon_sym_overlay] = ACTIONS(2410), + [anon_sym_as] = ACTIONS(2410), + [anon_sym_PLUS2] = ACTIONS(2410), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2410), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2410), + [aux_sym__val_number_decimal_token1] = ACTIONS(2410), + [aux_sym__val_number_decimal_token2] = ACTIONS(2410), + [aux_sym__val_number_decimal_token3] = ACTIONS(2410), + [aux_sym__val_number_decimal_token4] = ACTIONS(2410), + [aux_sym__val_number_token1] = ACTIONS(2410), + [aux_sym__val_number_token2] = ACTIONS(2410), + [aux_sym__val_number_token3] = ACTIONS(2410), + [aux_sym__val_number_token4] = ACTIONS(2410), + [aux_sym__val_number_token5] = ACTIONS(2410), + [aux_sym__val_number_token6] = ACTIONS(2410), + [anon_sym_DQUOTE] = ACTIONS(2410), + [sym__str_single_quotes] = ACTIONS(2410), + [sym__str_back_ticks] = ACTIONS(2410), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2410), + [sym__entry_separator] = ACTIONS(2412), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2397), + [sym_raw_string_begin] = ACTIONS(2412), }, [640] = { [sym_comment] = STATE(640), - [anon_sym_export] = ACTIONS(2399), - [anon_sym_alias] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_let_DASHenv] = ACTIONS(2399), - [anon_sym_mut] = ACTIONS(2399), - [anon_sym_const] = ACTIONS(2399), - [aux_sym_cmd_identifier_token1] = ACTIONS(2399), - [aux_sym_cmd_identifier_token2] = ACTIONS(2399), - [aux_sym_cmd_identifier_token3] = ACTIONS(2399), - [aux_sym_cmd_identifier_token4] = ACTIONS(2399), - [aux_sym_cmd_identifier_token5] = ACTIONS(2399), - [aux_sym_cmd_identifier_token6] = ACTIONS(2399), - [aux_sym_cmd_identifier_token7] = ACTIONS(2399), - [aux_sym_cmd_identifier_token8] = ACTIONS(2399), - [aux_sym_cmd_identifier_token9] = ACTIONS(2399), - [aux_sym_cmd_identifier_token10] = ACTIONS(2399), - [aux_sym_cmd_identifier_token11] = ACTIONS(2399), - [aux_sym_cmd_identifier_token12] = ACTIONS(2399), - [aux_sym_cmd_identifier_token13] = ACTIONS(2399), - [aux_sym_cmd_identifier_token14] = ACTIONS(2399), - [aux_sym_cmd_identifier_token15] = ACTIONS(2399), - [aux_sym_cmd_identifier_token16] = ACTIONS(2399), - [aux_sym_cmd_identifier_token17] = ACTIONS(2399), - [aux_sym_cmd_identifier_token18] = ACTIONS(2399), - [aux_sym_cmd_identifier_token19] = ACTIONS(2399), - [aux_sym_cmd_identifier_token20] = ACTIONS(2399), - [aux_sym_cmd_identifier_token21] = ACTIONS(2399), - [aux_sym_cmd_identifier_token22] = ACTIONS(2399), - [aux_sym_cmd_identifier_token23] = ACTIONS(2399), - [aux_sym_cmd_identifier_token24] = ACTIONS(2399), - [aux_sym_cmd_identifier_token25] = ACTIONS(2399), - [aux_sym_cmd_identifier_token26] = ACTIONS(2399), - [aux_sym_cmd_identifier_token27] = ACTIONS(2399), - [aux_sym_cmd_identifier_token28] = ACTIONS(2399), - [aux_sym_cmd_identifier_token29] = ACTIONS(2399), - [aux_sym_cmd_identifier_token30] = ACTIONS(2399), - [aux_sym_cmd_identifier_token31] = ACTIONS(2399), - [aux_sym_cmd_identifier_token32] = ACTIONS(2399), - [aux_sym_cmd_identifier_token33] = ACTIONS(2399), - [aux_sym_cmd_identifier_token34] = ACTIONS(2399), - [aux_sym_cmd_identifier_token35] = ACTIONS(2399), - [aux_sym_cmd_identifier_token36] = ACTIONS(2399), - [aux_sym_cmd_identifier_token37] = ACTIONS(2399), - [aux_sym_cmd_identifier_token38] = ACTIONS(2399), - [aux_sym_cmd_identifier_token39] = ACTIONS(2399), - [aux_sym_cmd_identifier_token40] = ACTIONS(2399), - [anon_sym_def] = ACTIONS(2399), - [anon_sym_export_DASHenv] = ACTIONS(2399), - [anon_sym_extern] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_use] = ACTIONS(2399), - [anon_sym_LPAREN] = ACTIONS(2399), - [anon_sym_DOLLAR] = ACTIONS(2399), - [anon_sym_error] = ACTIONS(2399), - [anon_sym_DASH2] = ACTIONS(2399), - [anon_sym_break] = ACTIONS(2399), - [anon_sym_continue] = ACTIONS(2399), - [anon_sym_for] = ACTIONS(2399), - [anon_sym_in2] = ACTIONS(2399), - [anon_sym_loop] = ACTIONS(2399), - [anon_sym_make] = ACTIONS(2399), - [anon_sym_while] = ACTIONS(2399), - [anon_sym_do] = ACTIONS(2399), - [anon_sym_if] = ACTIONS(2399), - [anon_sym_else] = ACTIONS(2399), - [anon_sym_match] = ACTIONS(2399), - [anon_sym_RBRACE] = ACTIONS(2399), - [anon_sym_try] = ACTIONS(2399), - [anon_sym_catch] = ACTIONS(2399), - [anon_sym_return] = ACTIONS(2399), - [anon_sym_source] = ACTIONS(2399), - [anon_sym_source_DASHenv] = ACTIONS(2399), - [anon_sym_register] = ACTIONS(2399), - [anon_sym_hide] = ACTIONS(2399), - [anon_sym_hide_DASHenv] = ACTIONS(2399), - [anon_sym_overlay] = ACTIONS(2399), - [anon_sym_as] = ACTIONS(2399), - [anon_sym_PLUS2] = ACTIONS(2399), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2399), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2399), - [aux_sym__val_number_decimal_token1] = ACTIONS(2399), - [aux_sym__val_number_decimal_token2] = ACTIONS(2399), - [aux_sym__val_number_decimal_token3] = ACTIONS(2399), - [aux_sym__val_number_decimal_token4] = ACTIONS(2399), - [aux_sym__val_number_token1] = ACTIONS(2399), - [aux_sym__val_number_token2] = ACTIONS(2399), - [aux_sym__val_number_token3] = ACTIONS(2399), - [aux_sym__val_number_token4] = ACTIONS(2399), - [aux_sym__val_number_token5] = ACTIONS(2399), - [aux_sym__val_number_token6] = ACTIONS(2399), - [anon_sym_DQUOTE] = ACTIONS(2399), - [sym__str_single_quotes] = ACTIONS(2399), - [sym__str_back_ticks] = ACTIONS(2399), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2399), - [sym__entry_separator] = ACTIONS(2401), + [anon_sym_export] = ACTIONS(2414), + [anon_sym_alias] = ACTIONS(2414), + [anon_sym_let] = ACTIONS(2414), + [anon_sym_let_DASHenv] = ACTIONS(2414), + [anon_sym_mut] = ACTIONS(2414), + [anon_sym_const] = ACTIONS(2414), + [aux_sym_cmd_identifier_token1] = ACTIONS(2414), + [aux_sym_cmd_identifier_token2] = ACTIONS(2414), + [aux_sym_cmd_identifier_token3] = ACTIONS(2414), + [aux_sym_cmd_identifier_token4] = ACTIONS(2414), + [aux_sym_cmd_identifier_token5] = ACTIONS(2414), + [aux_sym_cmd_identifier_token6] = ACTIONS(2414), + [aux_sym_cmd_identifier_token7] = ACTIONS(2414), + [aux_sym_cmd_identifier_token8] = ACTIONS(2414), + [aux_sym_cmd_identifier_token9] = ACTIONS(2414), + [aux_sym_cmd_identifier_token10] = ACTIONS(2414), + [aux_sym_cmd_identifier_token11] = ACTIONS(2414), + [aux_sym_cmd_identifier_token12] = ACTIONS(2414), + [aux_sym_cmd_identifier_token13] = ACTIONS(2414), + [aux_sym_cmd_identifier_token14] = ACTIONS(2414), + [aux_sym_cmd_identifier_token15] = ACTIONS(2414), + [aux_sym_cmd_identifier_token16] = ACTIONS(2414), + [aux_sym_cmd_identifier_token17] = ACTIONS(2414), + [aux_sym_cmd_identifier_token18] = ACTIONS(2414), + [aux_sym_cmd_identifier_token19] = ACTIONS(2414), + [aux_sym_cmd_identifier_token20] = ACTIONS(2414), + [aux_sym_cmd_identifier_token21] = ACTIONS(2414), + [aux_sym_cmd_identifier_token22] = ACTIONS(2414), + [aux_sym_cmd_identifier_token23] = ACTIONS(2414), + [aux_sym_cmd_identifier_token24] = ACTIONS(2414), + [aux_sym_cmd_identifier_token25] = ACTIONS(2414), + [aux_sym_cmd_identifier_token26] = ACTIONS(2414), + [aux_sym_cmd_identifier_token27] = ACTIONS(2414), + [aux_sym_cmd_identifier_token28] = ACTIONS(2414), + [aux_sym_cmd_identifier_token29] = ACTIONS(2414), + [aux_sym_cmd_identifier_token30] = ACTIONS(2414), + [aux_sym_cmd_identifier_token31] = ACTIONS(2414), + [aux_sym_cmd_identifier_token32] = ACTIONS(2414), + [aux_sym_cmd_identifier_token33] = ACTIONS(2414), + [aux_sym_cmd_identifier_token34] = ACTIONS(2414), + [aux_sym_cmd_identifier_token35] = ACTIONS(2414), + [aux_sym_cmd_identifier_token36] = ACTIONS(2414), + [aux_sym_cmd_identifier_token37] = ACTIONS(2414), + [aux_sym_cmd_identifier_token38] = ACTIONS(2414), + [aux_sym_cmd_identifier_token39] = ACTIONS(2414), + [aux_sym_cmd_identifier_token40] = ACTIONS(2414), + [anon_sym_def] = ACTIONS(2414), + [anon_sym_export_DASHenv] = ACTIONS(2414), + [anon_sym_extern] = ACTIONS(2414), + [anon_sym_module] = ACTIONS(2414), + [anon_sym_use] = ACTIONS(2414), + [anon_sym_LPAREN] = ACTIONS(2414), + [anon_sym_DOLLAR] = ACTIONS(2414), + [anon_sym_error] = ACTIONS(2414), + [anon_sym_DASH2] = ACTIONS(2414), + [anon_sym_break] = ACTIONS(2414), + [anon_sym_continue] = ACTIONS(2414), + [anon_sym_for] = ACTIONS(2414), + [anon_sym_in2] = ACTIONS(2414), + [anon_sym_loop] = ACTIONS(2414), + [anon_sym_make] = ACTIONS(2414), + [anon_sym_while] = ACTIONS(2414), + [anon_sym_do] = ACTIONS(2414), + [anon_sym_if] = ACTIONS(2414), + [anon_sym_else] = ACTIONS(2414), + [anon_sym_match] = ACTIONS(2414), + [anon_sym_RBRACE] = ACTIONS(2414), + [anon_sym_try] = ACTIONS(2414), + [anon_sym_catch] = ACTIONS(2414), + [anon_sym_return] = ACTIONS(2414), + [anon_sym_source] = ACTIONS(2414), + [anon_sym_source_DASHenv] = ACTIONS(2414), + [anon_sym_register] = ACTIONS(2414), + [anon_sym_hide] = ACTIONS(2414), + [anon_sym_hide_DASHenv] = ACTIONS(2414), + [anon_sym_overlay] = ACTIONS(2414), + [anon_sym_as] = ACTIONS(2414), + [anon_sym_PLUS2] = ACTIONS(2414), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2414), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2414), + [aux_sym__val_number_decimal_token1] = ACTIONS(2414), + [aux_sym__val_number_decimal_token2] = ACTIONS(2414), + [aux_sym__val_number_decimal_token3] = ACTIONS(2414), + [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [aux_sym__val_number_token1] = ACTIONS(2414), + [aux_sym__val_number_token2] = ACTIONS(2414), + [aux_sym__val_number_token3] = ACTIONS(2414), + [aux_sym__val_number_token4] = ACTIONS(2414), + [aux_sym__val_number_token5] = ACTIONS(2414), + [aux_sym__val_number_token6] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym__str_single_quotes] = ACTIONS(2414), + [sym__str_back_ticks] = ACTIONS(2414), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2414), + [sym__entry_separator] = ACTIONS(2416), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2401), + [sym_raw_string_begin] = ACTIONS(2416), }, [641] = { [sym_comment] = STATE(641), - [anon_sym_export] = ACTIONS(2403), - [anon_sym_alias] = ACTIONS(2403), - [anon_sym_let] = ACTIONS(2403), - [anon_sym_let_DASHenv] = ACTIONS(2403), - [anon_sym_mut] = ACTIONS(2403), - [anon_sym_const] = ACTIONS(2403), - [aux_sym_cmd_identifier_token1] = ACTIONS(2403), - [aux_sym_cmd_identifier_token2] = ACTIONS(2403), - [aux_sym_cmd_identifier_token3] = ACTIONS(2403), - [aux_sym_cmd_identifier_token4] = ACTIONS(2403), - [aux_sym_cmd_identifier_token5] = ACTIONS(2403), - [aux_sym_cmd_identifier_token6] = ACTIONS(2403), - [aux_sym_cmd_identifier_token7] = ACTIONS(2403), - [aux_sym_cmd_identifier_token8] = ACTIONS(2403), - [aux_sym_cmd_identifier_token9] = ACTIONS(2403), - [aux_sym_cmd_identifier_token10] = ACTIONS(2403), - [aux_sym_cmd_identifier_token11] = ACTIONS(2403), - [aux_sym_cmd_identifier_token12] = ACTIONS(2403), - [aux_sym_cmd_identifier_token13] = ACTIONS(2403), - [aux_sym_cmd_identifier_token14] = ACTIONS(2403), - [aux_sym_cmd_identifier_token15] = ACTIONS(2403), - [aux_sym_cmd_identifier_token16] = ACTIONS(2403), - [aux_sym_cmd_identifier_token17] = ACTIONS(2403), - [aux_sym_cmd_identifier_token18] = ACTIONS(2403), - [aux_sym_cmd_identifier_token19] = ACTIONS(2403), - [aux_sym_cmd_identifier_token20] = ACTIONS(2403), - [aux_sym_cmd_identifier_token21] = ACTIONS(2403), - [aux_sym_cmd_identifier_token22] = ACTIONS(2403), - [aux_sym_cmd_identifier_token23] = ACTIONS(2403), - [aux_sym_cmd_identifier_token24] = ACTIONS(2403), - [aux_sym_cmd_identifier_token25] = ACTIONS(2403), - [aux_sym_cmd_identifier_token26] = ACTIONS(2403), - [aux_sym_cmd_identifier_token27] = ACTIONS(2403), - [aux_sym_cmd_identifier_token28] = ACTIONS(2403), - [aux_sym_cmd_identifier_token29] = ACTIONS(2403), - [aux_sym_cmd_identifier_token30] = ACTIONS(2403), - [aux_sym_cmd_identifier_token31] = ACTIONS(2403), - [aux_sym_cmd_identifier_token32] = ACTIONS(2403), - [aux_sym_cmd_identifier_token33] = ACTIONS(2403), - [aux_sym_cmd_identifier_token34] = ACTIONS(2403), - [aux_sym_cmd_identifier_token35] = ACTIONS(2403), - [aux_sym_cmd_identifier_token36] = ACTIONS(2403), - [aux_sym_cmd_identifier_token37] = ACTIONS(2403), - [aux_sym_cmd_identifier_token38] = ACTIONS(2403), - [aux_sym_cmd_identifier_token39] = ACTIONS(2403), - [aux_sym_cmd_identifier_token40] = ACTIONS(2403), - [anon_sym_def] = ACTIONS(2403), - [anon_sym_export_DASHenv] = ACTIONS(2403), - [anon_sym_extern] = ACTIONS(2403), - [anon_sym_module] = ACTIONS(2403), - [anon_sym_use] = ACTIONS(2403), - [anon_sym_LPAREN] = ACTIONS(2403), - [anon_sym_DOLLAR] = ACTIONS(2403), - [anon_sym_error] = ACTIONS(2403), - [anon_sym_DASH2] = ACTIONS(2403), - [anon_sym_break] = ACTIONS(2403), - [anon_sym_continue] = ACTIONS(2403), - [anon_sym_for] = ACTIONS(2403), - [anon_sym_in2] = ACTIONS(2403), - [anon_sym_loop] = ACTIONS(2403), - [anon_sym_make] = ACTIONS(2403), - [anon_sym_while] = ACTIONS(2403), - [anon_sym_do] = ACTIONS(2403), - [anon_sym_if] = ACTIONS(2403), - [anon_sym_else] = ACTIONS(2403), - [anon_sym_match] = ACTIONS(2403), - [anon_sym_RBRACE] = ACTIONS(2403), - [anon_sym_try] = ACTIONS(2403), - [anon_sym_catch] = ACTIONS(2403), - [anon_sym_return] = ACTIONS(2403), - [anon_sym_source] = ACTIONS(2403), - [anon_sym_source_DASHenv] = ACTIONS(2403), - [anon_sym_register] = ACTIONS(2403), - [anon_sym_hide] = ACTIONS(2403), - [anon_sym_hide_DASHenv] = ACTIONS(2403), - [anon_sym_overlay] = ACTIONS(2403), - [anon_sym_as] = ACTIONS(2403), - [anon_sym_PLUS2] = ACTIONS(2403), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2403), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2403), - [aux_sym__val_number_decimal_token1] = ACTIONS(2403), - [aux_sym__val_number_decimal_token2] = ACTIONS(2403), - [aux_sym__val_number_decimal_token3] = ACTIONS(2403), - [aux_sym__val_number_decimal_token4] = ACTIONS(2403), - [aux_sym__val_number_token1] = ACTIONS(2403), - [aux_sym__val_number_token2] = ACTIONS(2403), - [aux_sym__val_number_token3] = ACTIONS(2403), - [aux_sym__val_number_token4] = ACTIONS(2403), - [aux_sym__val_number_token5] = ACTIONS(2403), - [aux_sym__val_number_token6] = ACTIONS(2403), - [anon_sym_DQUOTE] = ACTIONS(2403), - [sym__str_single_quotes] = ACTIONS(2403), - [sym__str_back_ticks] = ACTIONS(2403), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2403), - [sym__entry_separator] = ACTIONS(2405), + [anon_sym_export] = ACTIONS(2418), + [anon_sym_alias] = ACTIONS(2418), + [anon_sym_let] = ACTIONS(2418), + [anon_sym_let_DASHenv] = ACTIONS(2418), + [anon_sym_mut] = ACTIONS(2418), + [anon_sym_const] = ACTIONS(2418), + [aux_sym_cmd_identifier_token1] = ACTIONS(2418), + [aux_sym_cmd_identifier_token2] = ACTIONS(2418), + [aux_sym_cmd_identifier_token3] = ACTIONS(2418), + [aux_sym_cmd_identifier_token4] = ACTIONS(2418), + [aux_sym_cmd_identifier_token5] = ACTIONS(2418), + [aux_sym_cmd_identifier_token6] = ACTIONS(2418), + [aux_sym_cmd_identifier_token7] = ACTIONS(2418), + [aux_sym_cmd_identifier_token8] = ACTIONS(2418), + [aux_sym_cmd_identifier_token9] = ACTIONS(2418), + [aux_sym_cmd_identifier_token10] = ACTIONS(2418), + [aux_sym_cmd_identifier_token11] = ACTIONS(2418), + [aux_sym_cmd_identifier_token12] = ACTIONS(2418), + [aux_sym_cmd_identifier_token13] = ACTIONS(2418), + [aux_sym_cmd_identifier_token14] = ACTIONS(2418), + [aux_sym_cmd_identifier_token15] = ACTIONS(2418), + [aux_sym_cmd_identifier_token16] = ACTIONS(2418), + [aux_sym_cmd_identifier_token17] = ACTIONS(2418), + [aux_sym_cmd_identifier_token18] = ACTIONS(2418), + [aux_sym_cmd_identifier_token19] = ACTIONS(2418), + [aux_sym_cmd_identifier_token20] = ACTIONS(2418), + [aux_sym_cmd_identifier_token21] = ACTIONS(2418), + [aux_sym_cmd_identifier_token22] = ACTIONS(2418), + [aux_sym_cmd_identifier_token23] = ACTIONS(2418), + [aux_sym_cmd_identifier_token24] = ACTIONS(2418), + [aux_sym_cmd_identifier_token25] = ACTIONS(2418), + [aux_sym_cmd_identifier_token26] = ACTIONS(2418), + [aux_sym_cmd_identifier_token27] = ACTIONS(2418), + [aux_sym_cmd_identifier_token28] = ACTIONS(2418), + [aux_sym_cmd_identifier_token29] = ACTIONS(2418), + [aux_sym_cmd_identifier_token30] = ACTIONS(2418), + [aux_sym_cmd_identifier_token31] = ACTIONS(2418), + [aux_sym_cmd_identifier_token32] = ACTIONS(2418), + [aux_sym_cmd_identifier_token33] = ACTIONS(2418), + [aux_sym_cmd_identifier_token34] = ACTIONS(2418), + [aux_sym_cmd_identifier_token35] = ACTIONS(2418), + [aux_sym_cmd_identifier_token36] = ACTIONS(2418), + [aux_sym_cmd_identifier_token37] = ACTIONS(2418), + [aux_sym_cmd_identifier_token38] = ACTIONS(2418), + [aux_sym_cmd_identifier_token39] = ACTIONS(2418), + [aux_sym_cmd_identifier_token40] = ACTIONS(2418), + [anon_sym_def] = ACTIONS(2418), + [anon_sym_export_DASHenv] = ACTIONS(2418), + [anon_sym_extern] = ACTIONS(2418), + [anon_sym_module] = ACTIONS(2418), + [anon_sym_use] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_DOLLAR] = ACTIONS(2418), + [anon_sym_error] = ACTIONS(2418), + [anon_sym_DASH2] = ACTIONS(2418), + [anon_sym_break] = ACTIONS(2418), + [anon_sym_continue] = ACTIONS(2418), + [anon_sym_for] = ACTIONS(2418), + [anon_sym_in2] = ACTIONS(2418), + [anon_sym_loop] = ACTIONS(2418), + [anon_sym_make] = ACTIONS(2418), + [anon_sym_while] = ACTIONS(2418), + [anon_sym_do] = ACTIONS(2418), + [anon_sym_if] = ACTIONS(2418), + [anon_sym_else] = ACTIONS(2418), + [anon_sym_match] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_try] = ACTIONS(2418), + [anon_sym_catch] = ACTIONS(2418), + [anon_sym_return] = ACTIONS(2418), + [anon_sym_source] = ACTIONS(2418), + [anon_sym_source_DASHenv] = ACTIONS(2418), + [anon_sym_register] = ACTIONS(2418), + [anon_sym_hide] = ACTIONS(2418), + [anon_sym_hide_DASHenv] = ACTIONS(2418), + [anon_sym_overlay] = ACTIONS(2418), + [anon_sym_as] = ACTIONS(2418), + [anon_sym_PLUS2] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2418), + [aux_sym__val_number_decimal_token1] = ACTIONS(2418), + [aux_sym__val_number_decimal_token2] = ACTIONS(2418), + [aux_sym__val_number_decimal_token3] = ACTIONS(2418), + [aux_sym__val_number_decimal_token4] = ACTIONS(2418), + [aux_sym__val_number_token1] = ACTIONS(2418), + [aux_sym__val_number_token2] = ACTIONS(2418), + [aux_sym__val_number_token3] = ACTIONS(2418), + [aux_sym__val_number_token4] = ACTIONS(2418), + [aux_sym__val_number_token5] = ACTIONS(2418), + [aux_sym__val_number_token6] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(2418), + [sym__str_single_quotes] = ACTIONS(2418), + [sym__str_back_ticks] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2418), + [sym__entry_separator] = ACTIONS(2420), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2405), + [sym_raw_string_begin] = ACTIONS(2420), }, [642] = { [sym_comment] = STATE(642), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_alias] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_let_DASHenv] = ACTIONS(1755), - [anon_sym_mut] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1757), - [aux_sym_cmd_identifier_token3] = ACTIONS(1757), - [aux_sym_cmd_identifier_token4] = ACTIONS(1757), - [aux_sym_cmd_identifier_token5] = ACTIONS(1757), - [aux_sym_cmd_identifier_token6] = ACTIONS(1757), - [aux_sym_cmd_identifier_token7] = ACTIONS(1757), - [aux_sym_cmd_identifier_token8] = ACTIONS(1755), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1757), - [aux_sym_cmd_identifier_token11] = ACTIONS(1757), - [aux_sym_cmd_identifier_token12] = ACTIONS(1755), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1755), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1757), - [aux_sym_cmd_identifier_token17] = ACTIONS(1757), - [aux_sym_cmd_identifier_token18] = ACTIONS(1757), - [aux_sym_cmd_identifier_token19] = ACTIONS(1757), - [aux_sym_cmd_identifier_token20] = ACTIONS(1757), - [aux_sym_cmd_identifier_token21] = ACTIONS(1757), - [aux_sym_cmd_identifier_token22] = ACTIONS(1757), - [aux_sym_cmd_identifier_token23] = ACTIONS(1757), - [aux_sym_cmd_identifier_token24] = ACTIONS(1757), - [aux_sym_cmd_identifier_token25] = ACTIONS(1757), - [aux_sym_cmd_identifier_token26] = ACTIONS(1757), - [aux_sym_cmd_identifier_token27] = ACTIONS(1757), - [aux_sym_cmd_identifier_token28] = ACTIONS(1757), - [aux_sym_cmd_identifier_token29] = ACTIONS(1757), - [aux_sym_cmd_identifier_token30] = ACTIONS(1757), - [aux_sym_cmd_identifier_token31] = ACTIONS(1757), - [aux_sym_cmd_identifier_token32] = ACTIONS(1757), - [aux_sym_cmd_identifier_token33] = ACTIONS(1757), - [aux_sym_cmd_identifier_token34] = ACTIONS(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [aux_sym_cmd_identifier_token37] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_export_DASHenv] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_make] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_source] = ACTIONS(1755), - [anon_sym_source_DASHenv] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_hide] = ACTIONS(1755), - [anon_sym_hide_DASHenv] = ACTIONS(1755), - [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(2300), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1765), + [anon_sym_alias] = ACTIONS(1765), + [anon_sym_let] = ACTIONS(1765), + [anon_sym_let_DASHenv] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [aux_sym_cmd_identifier_token1] = ACTIONS(1765), + [aux_sym_cmd_identifier_token2] = ACTIONS(1765), + [aux_sym_cmd_identifier_token3] = ACTIONS(1765), + [aux_sym_cmd_identifier_token4] = ACTIONS(1765), + [aux_sym_cmd_identifier_token5] = ACTIONS(1765), + [aux_sym_cmd_identifier_token6] = ACTIONS(1765), + [aux_sym_cmd_identifier_token7] = ACTIONS(1765), + [aux_sym_cmd_identifier_token8] = ACTIONS(1765), + [aux_sym_cmd_identifier_token9] = ACTIONS(1765), + [aux_sym_cmd_identifier_token10] = ACTIONS(1765), + [aux_sym_cmd_identifier_token11] = ACTIONS(1765), + [aux_sym_cmd_identifier_token12] = ACTIONS(1765), + [aux_sym_cmd_identifier_token13] = ACTIONS(1765), + [aux_sym_cmd_identifier_token14] = ACTIONS(1765), + [aux_sym_cmd_identifier_token15] = ACTIONS(1765), + [aux_sym_cmd_identifier_token16] = ACTIONS(1765), + [aux_sym_cmd_identifier_token17] = ACTIONS(1765), + [aux_sym_cmd_identifier_token18] = ACTIONS(1765), + [aux_sym_cmd_identifier_token19] = ACTIONS(1765), + [aux_sym_cmd_identifier_token20] = ACTIONS(1765), + [aux_sym_cmd_identifier_token21] = ACTIONS(1765), + [aux_sym_cmd_identifier_token22] = ACTIONS(1765), + [aux_sym_cmd_identifier_token23] = ACTIONS(1765), + [aux_sym_cmd_identifier_token24] = ACTIONS(1765), + [aux_sym_cmd_identifier_token25] = ACTIONS(1765), + [aux_sym_cmd_identifier_token26] = ACTIONS(1765), + [aux_sym_cmd_identifier_token27] = ACTIONS(1765), + [aux_sym_cmd_identifier_token28] = ACTIONS(1765), + [aux_sym_cmd_identifier_token29] = ACTIONS(1765), + [aux_sym_cmd_identifier_token30] = ACTIONS(1765), + [aux_sym_cmd_identifier_token31] = ACTIONS(1765), + [aux_sym_cmd_identifier_token32] = ACTIONS(1765), + [aux_sym_cmd_identifier_token33] = ACTIONS(1765), + [aux_sym_cmd_identifier_token34] = ACTIONS(1765), + [aux_sym_cmd_identifier_token35] = ACTIONS(1765), + [aux_sym_cmd_identifier_token36] = ACTIONS(1765), + [aux_sym_cmd_identifier_token37] = ACTIONS(1765), + [aux_sym_cmd_identifier_token38] = ACTIONS(1765), + [aux_sym_cmd_identifier_token39] = ACTIONS(1765), + [aux_sym_cmd_identifier_token40] = ACTIONS(1765), + [anon_sym_def] = ACTIONS(1765), + [anon_sym_export_DASHenv] = ACTIONS(1765), + [anon_sym_extern] = ACTIONS(1765), + [anon_sym_module] = ACTIONS(1765), + [anon_sym_use] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_DOLLAR] = ACTIONS(1765), + [anon_sym_error] = ACTIONS(1765), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_in2] = ACTIONS(1765), + [anon_sym_loop] = ACTIONS(1765), + [anon_sym_make] = ACTIONS(1765), + [anon_sym_while] = ACTIONS(1765), + [anon_sym_do] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_else] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_try] = ACTIONS(1765), + [anon_sym_catch] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_source] = ACTIONS(1765), + [anon_sym_source_DASHenv] = ACTIONS(1765), + [anon_sym_register] = ACTIONS(1765), + [anon_sym_hide] = ACTIONS(1765), + [anon_sym_hide_DASHenv] = ACTIONS(1765), + [anon_sym_overlay] = ACTIONS(1765), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_PLUS2] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1765), + [aux_sym__val_number_decimal_token3] = ACTIONS(1765), + [aux_sym__val_number_decimal_token4] = ACTIONS(1765), + [aux_sym__val_number_token1] = ACTIONS(1765), + [aux_sym__val_number_token2] = ACTIONS(1765), + [aux_sym__val_number_token3] = ACTIONS(1765), + [aux_sym__val_number_token4] = ACTIONS(1765), + [aux_sym__val_number_token5] = ACTIONS(1765), + [aux_sym__val_number_token6] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1765), + [sym__str_single_quotes] = ACTIONS(1765), + [sym__str_back_ticks] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), + [sym__entry_separator] = ACTIONS(1767), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1767), }, [643] = { [sym_comment] = STATE(643), - [anon_sym_export] = ACTIONS(2407), - [anon_sym_alias] = ACTIONS(2407), - [anon_sym_let] = ACTIONS(2407), - [anon_sym_let_DASHenv] = ACTIONS(2407), - [anon_sym_mut] = ACTIONS(2407), - [anon_sym_const] = ACTIONS(2407), - [aux_sym_cmd_identifier_token1] = ACTIONS(2407), - [aux_sym_cmd_identifier_token2] = ACTIONS(2407), - [aux_sym_cmd_identifier_token3] = ACTIONS(2407), - [aux_sym_cmd_identifier_token4] = ACTIONS(2407), - [aux_sym_cmd_identifier_token5] = ACTIONS(2407), - [aux_sym_cmd_identifier_token6] = ACTIONS(2407), - [aux_sym_cmd_identifier_token7] = ACTIONS(2407), - [aux_sym_cmd_identifier_token8] = ACTIONS(2407), - [aux_sym_cmd_identifier_token9] = ACTIONS(2407), - [aux_sym_cmd_identifier_token10] = ACTIONS(2407), - [aux_sym_cmd_identifier_token11] = ACTIONS(2407), - [aux_sym_cmd_identifier_token12] = ACTIONS(2407), - [aux_sym_cmd_identifier_token13] = ACTIONS(2407), - [aux_sym_cmd_identifier_token14] = ACTIONS(2407), - [aux_sym_cmd_identifier_token15] = ACTIONS(2407), - [aux_sym_cmd_identifier_token16] = ACTIONS(2407), - [aux_sym_cmd_identifier_token17] = ACTIONS(2407), - [aux_sym_cmd_identifier_token18] = ACTIONS(2407), - [aux_sym_cmd_identifier_token19] = ACTIONS(2407), - [aux_sym_cmd_identifier_token20] = ACTIONS(2407), - [aux_sym_cmd_identifier_token21] = ACTIONS(2407), - [aux_sym_cmd_identifier_token22] = ACTIONS(2407), - [aux_sym_cmd_identifier_token23] = ACTIONS(2407), - [aux_sym_cmd_identifier_token24] = ACTIONS(2407), - [aux_sym_cmd_identifier_token25] = ACTIONS(2407), - [aux_sym_cmd_identifier_token26] = ACTIONS(2407), - [aux_sym_cmd_identifier_token27] = ACTIONS(2407), - [aux_sym_cmd_identifier_token28] = ACTIONS(2407), - [aux_sym_cmd_identifier_token29] = ACTIONS(2407), - [aux_sym_cmd_identifier_token30] = ACTIONS(2407), - [aux_sym_cmd_identifier_token31] = ACTIONS(2407), - [aux_sym_cmd_identifier_token32] = ACTIONS(2407), - [aux_sym_cmd_identifier_token33] = ACTIONS(2407), - [aux_sym_cmd_identifier_token34] = ACTIONS(2407), - [aux_sym_cmd_identifier_token35] = ACTIONS(2407), - [aux_sym_cmd_identifier_token36] = ACTIONS(2407), - [aux_sym_cmd_identifier_token37] = ACTIONS(2407), - [aux_sym_cmd_identifier_token38] = ACTIONS(2407), - [aux_sym_cmd_identifier_token39] = ACTIONS(2407), - [aux_sym_cmd_identifier_token40] = ACTIONS(2407), - [anon_sym_def] = ACTIONS(2407), - [anon_sym_export_DASHenv] = ACTIONS(2407), - [anon_sym_extern] = ACTIONS(2407), - [anon_sym_module] = ACTIONS(2407), - [anon_sym_use] = ACTIONS(2407), - [anon_sym_LPAREN] = ACTIONS(2407), - [anon_sym_DOLLAR] = ACTIONS(2407), - [anon_sym_error] = ACTIONS(2407), - [anon_sym_DASH2] = ACTIONS(2407), - [anon_sym_break] = ACTIONS(2407), - [anon_sym_continue] = ACTIONS(2407), - [anon_sym_for] = ACTIONS(2407), - [anon_sym_in2] = ACTIONS(2407), - [anon_sym_loop] = ACTIONS(2407), - [anon_sym_make] = ACTIONS(2407), - [anon_sym_while] = ACTIONS(2407), - [anon_sym_do] = ACTIONS(2407), - [anon_sym_if] = ACTIONS(2407), - [anon_sym_else] = ACTIONS(2407), - [anon_sym_match] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_try] = ACTIONS(2407), - [anon_sym_catch] = ACTIONS(2407), - [anon_sym_return] = ACTIONS(2407), - [anon_sym_source] = ACTIONS(2407), - [anon_sym_source_DASHenv] = ACTIONS(2407), - [anon_sym_register] = ACTIONS(2407), - [anon_sym_hide] = ACTIONS(2407), - [anon_sym_hide_DASHenv] = ACTIONS(2407), - [anon_sym_overlay] = ACTIONS(2407), - [anon_sym_as] = ACTIONS(2407), - [anon_sym_PLUS2] = ACTIONS(2407), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2407), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2407), - [aux_sym__val_number_decimal_token1] = ACTIONS(2407), - [aux_sym__val_number_decimal_token2] = ACTIONS(2407), - [aux_sym__val_number_decimal_token3] = ACTIONS(2407), - [aux_sym__val_number_decimal_token4] = ACTIONS(2407), - [aux_sym__val_number_token1] = ACTIONS(2407), - [aux_sym__val_number_token2] = ACTIONS(2407), - [aux_sym__val_number_token3] = ACTIONS(2407), - [aux_sym__val_number_token4] = ACTIONS(2407), - [aux_sym__val_number_token5] = ACTIONS(2407), - [aux_sym__val_number_token6] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym__str_single_quotes] = ACTIONS(2407), - [sym__str_back_ticks] = ACTIONS(2407), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2407), - [sym__entry_separator] = ACTIONS(2409), + [anon_sym_export] = ACTIONS(2422), + [anon_sym_alias] = ACTIONS(2422), + [anon_sym_let] = ACTIONS(2422), + [anon_sym_let_DASHenv] = ACTIONS(2422), + [anon_sym_mut] = ACTIONS(2422), + [anon_sym_const] = ACTIONS(2422), + [aux_sym_cmd_identifier_token1] = ACTIONS(2422), + [aux_sym_cmd_identifier_token2] = ACTIONS(2422), + [aux_sym_cmd_identifier_token3] = ACTIONS(2422), + [aux_sym_cmd_identifier_token4] = ACTIONS(2422), + [aux_sym_cmd_identifier_token5] = ACTIONS(2422), + [aux_sym_cmd_identifier_token6] = ACTIONS(2422), + [aux_sym_cmd_identifier_token7] = ACTIONS(2422), + [aux_sym_cmd_identifier_token8] = ACTIONS(2422), + [aux_sym_cmd_identifier_token9] = ACTIONS(2422), + [aux_sym_cmd_identifier_token10] = ACTIONS(2422), + [aux_sym_cmd_identifier_token11] = ACTIONS(2422), + [aux_sym_cmd_identifier_token12] = ACTIONS(2422), + [aux_sym_cmd_identifier_token13] = ACTIONS(2422), + [aux_sym_cmd_identifier_token14] = ACTIONS(2422), + [aux_sym_cmd_identifier_token15] = ACTIONS(2422), + [aux_sym_cmd_identifier_token16] = ACTIONS(2422), + [aux_sym_cmd_identifier_token17] = ACTIONS(2422), + [aux_sym_cmd_identifier_token18] = ACTIONS(2422), + [aux_sym_cmd_identifier_token19] = ACTIONS(2422), + [aux_sym_cmd_identifier_token20] = ACTIONS(2422), + [aux_sym_cmd_identifier_token21] = ACTIONS(2422), + [aux_sym_cmd_identifier_token22] = ACTIONS(2422), + [aux_sym_cmd_identifier_token23] = ACTIONS(2422), + [aux_sym_cmd_identifier_token24] = ACTIONS(2422), + [aux_sym_cmd_identifier_token25] = ACTIONS(2422), + [aux_sym_cmd_identifier_token26] = ACTIONS(2422), + [aux_sym_cmd_identifier_token27] = ACTIONS(2422), + [aux_sym_cmd_identifier_token28] = ACTIONS(2422), + [aux_sym_cmd_identifier_token29] = ACTIONS(2422), + [aux_sym_cmd_identifier_token30] = ACTIONS(2422), + [aux_sym_cmd_identifier_token31] = ACTIONS(2422), + [aux_sym_cmd_identifier_token32] = ACTIONS(2422), + [aux_sym_cmd_identifier_token33] = ACTIONS(2422), + [aux_sym_cmd_identifier_token34] = ACTIONS(2422), + [aux_sym_cmd_identifier_token35] = ACTIONS(2422), + [aux_sym_cmd_identifier_token36] = ACTIONS(2422), + [aux_sym_cmd_identifier_token37] = ACTIONS(2422), + [aux_sym_cmd_identifier_token38] = ACTIONS(2422), + [aux_sym_cmd_identifier_token39] = ACTIONS(2422), + [aux_sym_cmd_identifier_token40] = ACTIONS(2422), + [anon_sym_def] = ACTIONS(2422), + [anon_sym_export_DASHenv] = ACTIONS(2422), + [anon_sym_extern] = ACTIONS(2422), + [anon_sym_module] = ACTIONS(2422), + [anon_sym_use] = ACTIONS(2422), + [anon_sym_LPAREN] = ACTIONS(2422), + [anon_sym_DOLLAR] = ACTIONS(2422), + [anon_sym_error] = ACTIONS(2422), + [anon_sym_DASH2] = ACTIONS(2422), + [anon_sym_break] = ACTIONS(2422), + [anon_sym_continue] = ACTIONS(2422), + [anon_sym_for] = ACTIONS(2422), + [anon_sym_in2] = ACTIONS(2422), + [anon_sym_loop] = ACTIONS(2422), + [anon_sym_make] = ACTIONS(2422), + [anon_sym_while] = ACTIONS(2422), + [anon_sym_do] = ACTIONS(2422), + [anon_sym_if] = ACTIONS(2422), + [anon_sym_else] = ACTIONS(2422), + [anon_sym_match] = ACTIONS(2422), + [anon_sym_RBRACE] = ACTIONS(2422), + [anon_sym_try] = ACTIONS(2422), + [anon_sym_catch] = ACTIONS(2422), + [anon_sym_return] = ACTIONS(2422), + [anon_sym_source] = ACTIONS(2422), + [anon_sym_source_DASHenv] = ACTIONS(2422), + [anon_sym_register] = ACTIONS(2422), + [anon_sym_hide] = ACTIONS(2422), + [anon_sym_hide_DASHenv] = ACTIONS(2422), + [anon_sym_overlay] = ACTIONS(2422), + [anon_sym_as] = ACTIONS(2422), + [anon_sym_PLUS2] = ACTIONS(2422), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2422), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2422), + [aux_sym__val_number_decimal_token1] = ACTIONS(2422), + [aux_sym__val_number_decimal_token2] = ACTIONS(2422), + [aux_sym__val_number_decimal_token3] = ACTIONS(2422), + [aux_sym__val_number_decimal_token4] = ACTIONS(2422), + [aux_sym__val_number_token1] = ACTIONS(2422), + [aux_sym__val_number_token2] = ACTIONS(2422), + [aux_sym__val_number_token3] = ACTIONS(2422), + [aux_sym__val_number_token4] = ACTIONS(2422), + [aux_sym__val_number_token5] = ACTIONS(2422), + [aux_sym__val_number_token6] = ACTIONS(2422), + [anon_sym_DQUOTE] = ACTIONS(2422), + [sym__str_single_quotes] = ACTIONS(2422), + [sym__str_back_ticks] = ACTIONS(2422), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2422), + [sym__entry_separator] = ACTIONS(2424), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2409), + [sym_raw_string_begin] = ACTIONS(2424), }, [644] = { [sym_comment] = STATE(644), - [anon_sym_export] = ACTIONS(2337), - [anon_sym_alias] = ACTIONS(2337), - [anon_sym_let] = ACTIONS(2337), - [anon_sym_let_DASHenv] = ACTIONS(2337), - [anon_sym_mut] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2337), - [aux_sym_cmd_identifier_token1] = ACTIONS(2337), - [aux_sym_cmd_identifier_token2] = ACTIONS(2341), - [aux_sym_cmd_identifier_token3] = ACTIONS(2341), - [aux_sym_cmd_identifier_token4] = ACTIONS(2341), - [aux_sym_cmd_identifier_token5] = ACTIONS(2341), - [aux_sym_cmd_identifier_token6] = ACTIONS(2341), - [aux_sym_cmd_identifier_token7] = ACTIONS(2341), - [aux_sym_cmd_identifier_token8] = ACTIONS(2337), - [aux_sym_cmd_identifier_token9] = ACTIONS(2337), - [aux_sym_cmd_identifier_token10] = ACTIONS(2341), - [aux_sym_cmd_identifier_token11] = ACTIONS(2341), - [aux_sym_cmd_identifier_token12] = ACTIONS(2337), - [aux_sym_cmd_identifier_token13] = ACTIONS(2337), - [aux_sym_cmd_identifier_token14] = ACTIONS(2337), - [aux_sym_cmd_identifier_token15] = ACTIONS(2337), - [aux_sym_cmd_identifier_token16] = ACTIONS(2341), - [aux_sym_cmd_identifier_token17] = ACTIONS(2341), - [aux_sym_cmd_identifier_token18] = ACTIONS(2341), - [aux_sym_cmd_identifier_token19] = ACTIONS(2341), - [aux_sym_cmd_identifier_token20] = ACTIONS(2341), - [aux_sym_cmd_identifier_token21] = ACTIONS(2341), - [aux_sym_cmd_identifier_token22] = ACTIONS(2341), - [aux_sym_cmd_identifier_token23] = ACTIONS(2341), - [aux_sym_cmd_identifier_token24] = ACTIONS(2341), - [aux_sym_cmd_identifier_token25] = ACTIONS(2341), - [aux_sym_cmd_identifier_token26] = ACTIONS(2341), - [aux_sym_cmd_identifier_token27] = ACTIONS(2341), - [aux_sym_cmd_identifier_token28] = ACTIONS(2341), - [aux_sym_cmd_identifier_token29] = ACTIONS(2341), - [aux_sym_cmd_identifier_token30] = ACTIONS(2341), - [aux_sym_cmd_identifier_token31] = ACTIONS(2341), - [aux_sym_cmd_identifier_token32] = ACTIONS(2341), - [aux_sym_cmd_identifier_token33] = ACTIONS(2341), - [aux_sym_cmd_identifier_token34] = ACTIONS(2337), - [aux_sym_cmd_identifier_token35] = ACTIONS(2341), - [aux_sym_cmd_identifier_token36] = ACTIONS(2341), - [aux_sym_cmd_identifier_token37] = ACTIONS(2341), - [aux_sym_cmd_identifier_token38] = ACTIONS(2337), - [aux_sym_cmd_identifier_token39] = ACTIONS(2341), - [aux_sym_cmd_identifier_token40] = ACTIONS(2341), - [anon_sym_def] = ACTIONS(2337), - [anon_sym_export_DASHenv] = ACTIONS(2337), - [anon_sym_extern] = ACTIONS(2337), - [anon_sym_module] = ACTIONS(2337), - [anon_sym_use] = ACTIONS(2337), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_DOLLAR] = ACTIONS(2341), - [anon_sym_error] = ACTIONS(2337), - [anon_sym_DASH2] = ACTIONS(2337), - [anon_sym_break] = ACTIONS(2337), - [anon_sym_continue] = ACTIONS(2337), - [anon_sym_for] = ACTIONS(2337), - [anon_sym_in2] = ACTIONS(2337), - [anon_sym_loop] = ACTIONS(2337), - [anon_sym_make] = ACTIONS(2337), - [anon_sym_while] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(2337), - [anon_sym_if] = ACTIONS(2337), - [anon_sym_else] = ACTIONS(2337), - [anon_sym_match] = ACTIONS(2337), - [anon_sym_RBRACE] = ACTIONS(2341), - [anon_sym_try] = ACTIONS(2337), - [anon_sym_catch] = ACTIONS(2337), - [anon_sym_return] = ACTIONS(2337), - [anon_sym_source] = ACTIONS(2337), - [anon_sym_source_DASHenv] = ACTIONS(2337), - [anon_sym_register] = ACTIONS(2337), - [anon_sym_hide] = ACTIONS(2337), - [anon_sym_hide_DASHenv] = ACTIONS(2337), - [anon_sym_overlay] = ACTIONS(2337), - [anon_sym_as] = ACTIONS(2337), - [anon_sym_PLUS2] = ACTIONS(2337), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2341), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2341), - [aux_sym__val_number_decimal_token1] = ACTIONS(2337), - [aux_sym__val_number_decimal_token2] = ACTIONS(2341), - [aux_sym__val_number_decimal_token3] = ACTIONS(2341), - [aux_sym__val_number_decimal_token4] = ACTIONS(2341), - [aux_sym__val_number_token1] = ACTIONS(2341), - [aux_sym__val_number_token2] = ACTIONS(2341), - [aux_sym__val_number_token3] = ACTIONS(2341), - [aux_sym__val_number_token4] = ACTIONS(2337), - [aux_sym__val_number_token5] = ACTIONS(2337), - [aux_sym__val_number_token6] = ACTIONS(2337), - [anon_sym_LBRACK2] = ACTIONS(2411), - [anon_sym_DQUOTE] = ACTIONS(2341), - [sym__str_single_quotes] = ACTIONS(2341), - [sym__str_back_ticks] = ACTIONS(2341), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2341), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2341), + [anon_sym_export] = ACTIONS(2426), + [anon_sym_alias] = ACTIONS(2426), + [anon_sym_let] = ACTIONS(2426), + [anon_sym_let_DASHenv] = ACTIONS(2426), + [anon_sym_mut] = ACTIONS(2426), + [anon_sym_const] = ACTIONS(2426), + [aux_sym_cmd_identifier_token1] = ACTIONS(2426), + [aux_sym_cmd_identifier_token2] = ACTIONS(2426), + [aux_sym_cmd_identifier_token3] = ACTIONS(2426), + [aux_sym_cmd_identifier_token4] = ACTIONS(2426), + [aux_sym_cmd_identifier_token5] = ACTIONS(2426), + [aux_sym_cmd_identifier_token6] = ACTIONS(2426), + [aux_sym_cmd_identifier_token7] = ACTIONS(2426), + [aux_sym_cmd_identifier_token8] = ACTIONS(2426), + [aux_sym_cmd_identifier_token9] = ACTIONS(2426), + [aux_sym_cmd_identifier_token10] = ACTIONS(2426), + [aux_sym_cmd_identifier_token11] = ACTIONS(2426), + [aux_sym_cmd_identifier_token12] = ACTIONS(2426), + [aux_sym_cmd_identifier_token13] = ACTIONS(2426), + [aux_sym_cmd_identifier_token14] = ACTIONS(2426), + [aux_sym_cmd_identifier_token15] = ACTIONS(2426), + [aux_sym_cmd_identifier_token16] = ACTIONS(2426), + [aux_sym_cmd_identifier_token17] = ACTIONS(2426), + [aux_sym_cmd_identifier_token18] = ACTIONS(2426), + [aux_sym_cmd_identifier_token19] = ACTIONS(2426), + [aux_sym_cmd_identifier_token20] = ACTIONS(2426), + [aux_sym_cmd_identifier_token21] = ACTIONS(2426), + [aux_sym_cmd_identifier_token22] = ACTIONS(2426), + [aux_sym_cmd_identifier_token23] = ACTIONS(2426), + [aux_sym_cmd_identifier_token24] = ACTIONS(2426), + [aux_sym_cmd_identifier_token25] = ACTIONS(2426), + [aux_sym_cmd_identifier_token26] = ACTIONS(2426), + [aux_sym_cmd_identifier_token27] = ACTIONS(2426), + [aux_sym_cmd_identifier_token28] = ACTIONS(2426), + [aux_sym_cmd_identifier_token29] = ACTIONS(2426), + [aux_sym_cmd_identifier_token30] = ACTIONS(2426), + [aux_sym_cmd_identifier_token31] = ACTIONS(2426), + [aux_sym_cmd_identifier_token32] = ACTIONS(2426), + [aux_sym_cmd_identifier_token33] = ACTIONS(2426), + [aux_sym_cmd_identifier_token34] = ACTIONS(2426), + [aux_sym_cmd_identifier_token35] = ACTIONS(2426), + [aux_sym_cmd_identifier_token36] = ACTIONS(2426), + [aux_sym_cmd_identifier_token37] = ACTIONS(2426), + [aux_sym_cmd_identifier_token38] = ACTIONS(2426), + [aux_sym_cmd_identifier_token39] = ACTIONS(2426), + [aux_sym_cmd_identifier_token40] = ACTIONS(2426), + [anon_sym_def] = ACTIONS(2426), + [anon_sym_export_DASHenv] = ACTIONS(2426), + [anon_sym_extern] = ACTIONS(2426), + [anon_sym_module] = ACTIONS(2426), + [anon_sym_use] = ACTIONS(2426), + [anon_sym_LPAREN] = ACTIONS(2426), + [anon_sym_DOLLAR] = ACTIONS(2426), + [anon_sym_error] = ACTIONS(2426), + [anon_sym_DASH2] = ACTIONS(2426), + [anon_sym_break] = ACTIONS(2426), + [anon_sym_continue] = ACTIONS(2426), + [anon_sym_for] = ACTIONS(2426), + [anon_sym_in2] = ACTIONS(2426), + [anon_sym_loop] = ACTIONS(2426), + [anon_sym_make] = ACTIONS(2426), + [anon_sym_while] = ACTIONS(2426), + [anon_sym_do] = ACTIONS(2426), + [anon_sym_if] = ACTIONS(2426), + [anon_sym_else] = ACTIONS(2426), + [anon_sym_match] = ACTIONS(2426), + [anon_sym_RBRACE] = ACTIONS(2426), + [anon_sym_try] = ACTIONS(2426), + [anon_sym_catch] = ACTIONS(2426), + [anon_sym_return] = ACTIONS(2426), + [anon_sym_source] = ACTIONS(2426), + [anon_sym_source_DASHenv] = ACTIONS(2426), + [anon_sym_register] = ACTIONS(2426), + [anon_sym_hide] = ACTIONS(2426), + [anon_sym_hide_DASHenv] = ACTIONS(2426), + [anon_sym_overlay] = ACTIONS(2426), + [anon_sym_as] = ACTIONS(2426), + [anon_sym_PLUS2] = ACTIONS(2426), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2426), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2426), + [aux_sym__val_number_decimal_token1] = ACTIONS(2426), + [aux_sym__val_number_decimal_token2] = ACTIONS(2426), + [aux_sym__val_number_decimal_token3] = ACTIONS(2426), + [aux_sym__val_number_decimal_token4] = ACTIONS(2426), + [aux_sym__val_number_token1] = ACTIONS(2426), + [aux_sym__val_number_token2] = ACTIONS(2426), + [aux_sym__val_number_token3] = ACTIONS(2426), + [aux_sym__val_number_token4] = ACTIONS(2426), + [aux_sym__val_number_token5] = ACTIONS(2426), + [aux_sym__val_number_token6] = ACTIONS(2426), + [anon_sym_DQUOTE] = ACTIONS(2426), + [sym__str_single_quotes] = ACTIONS(2426), + [sym__str_back_ticks] = ACTIONS(2426), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2426), + [sym__entry_separator] = ACTIONS(2428), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2428), }, [645] = { [sym_comment] = STATE(645), - [anon_sym_export] = ACTIONS(2413), - [anon_sym_alias] = ACTIONS(2413), - [anon_sym_let] = ACTIONS(2413), - [anon_sym_let_DASHenv] = ACTIONS(2413), - [anon_sym_mut] = ACTIONS(2413), - [anon_sym_const] = ACTIONS(2413), - [aux_sym_cmd_identifier_token1] = ACTIONS(2413), - [aux_sym_cmd_identifier_token2] = ACTIONS(2413), - [aux_sym_cmd_identifier_token3] = ACTIONS(2413), - [aux_sym_cmd_identifier_token4] = ACTIONS(2413), - [aux_sym_cmd_identifier_token5] = ACTIONS(2413), - [aux_sym_cmd_identifier_token6] = ACTIONS(2413), - [aux_sym_cmd_identifier_token7] = ACTIONS(2413), - [aux_sym_cmd_identifier_token8] = ACTIONS(2413), - [aux_sym_cmd_identifier_token9] = ACTIONS(2413), - [aux_sym_cmd_identifier_token10] = ACTIONS(2413), - [aux_sym_cmd_identifier_token11] = ACTIONS(2413), - [aux_sym_cmd_identifier_token12] = ACTIONS(2413), - [aux_sym_cmd_identifier_token13] = ACTIONS(2413), - [aux_sym_cmd_identifier_token14] = ACTIONS(2413), - [aux_sym_cmd_identifier_token15] = ACTIONS(2413), - [aux_sym_cmd_identifier_token16] = ACTIONS(2413), - [aux_sym_cmd_identifier_token17] = ACTIONS(2413), - [aux_sym_cmd_identifier_token18] = ACTIONS(2413), - [aux_sym_cmd_identifier_token19] = ACTIONS(2413), - [aux_sym_cmd_identifier_token20] = ACTIONS(2413), - [aux_sym_cmd_identifier_token21] = ACTIONS(2413), - [aux_sym_cmd_identifier_token22] = ACTIONS(2413), - [aux_sym_cmd_identifier_token23] = ACTIONS(2413), - [aux_sym_cmd_identifier_token24] = ACTIONS(2413), - [aux_sym_cmd_identifier_token25] = ACTIONS(2413), - [aux_sym_cmd_identifier_token26] = ACTIONS(2413), - [aux_sym_cmd_identifier_token27] = ACTIONS(2413), - [aux_sym_cmd_identifier_token28] = ACTIONS(2413), - [aux_sym_cmd_identifier_token29] = ACTIONS(2413), - [aux_sym_cmd_identifier_token30] = ACTIONS(2413), - [aux_sym_cmd_identifier_token31] = ACTIONS(2413), - [aux_sym_cmd_identifier_token32] = ACTIONS(2413), - [aux_sym_cmd_identifier_token33] = ACTIONS(2413), - [aux_sym_cmd_identifier_token34] = ACTIONS(2413), - [aux_sym_cmd_identifier_token35] = ACTIONS(2413), - [aux_sym_cmd_identifier_token36] = ACTIONS(2413), - [aux_sym_cmd_identifier_token37] = ACTIONS(2413), - [aux_sym_cmd_identifier_token38] = ACTIONS(2413), - [aux_sym_cmd_identifier_token39] = ACTIONS(2413), - [aux_sym_cmd_identifier_token40] = ACTIONS(2413), - [anon_sym_def] = ACTIONS(2413), - [anon_sym_export_DASHenv] = ACTIONS(2413), - [anon_sym_extern] = ACTIONS(2413), - [anon_sym_module] = ACTIONS(2413), - [anon_sym_use] = ACTIONS(2413), - [anon_sym_LPAREN] = ACTIONS(2413), - [anon_sym_DOLLAR] = ACTIONS(2413), - [anon_sym_error] = ACTIONS(2413), - [anon_sym_DASH2] = ACTIONS(2413), - [anon_sym_break] = ACTIONS(2413), - [anon_sym_continue] = ACTIONS(2413), - [anon_sym_for] = ACTIONS(2413), - [anon_sym_in2] = ACTIONS(2413), - [anon_sym_loop] = ACTIONS(2413), - [anon_sym_make] = ACTIONS(2413), - [anon_sym_while] = ACTIONS(2413), - [anon_sym_do] = ACTIONS(2413), - [anon_sym_if] = ACTIONS(2413), - [anon_sym_else] = ACTIONS(2413), - [anon_sym_match] = ACTIONS(2413), - [anon_sym_RBRACE] = ACTIONS(2413), - [anon_sym_try] = ACTIONS(2413), - [anon_sym_catch] = ACTIONS(2413), - [anon_sym_return] = ACTIONS(2413), - [anon_sym_source] = ACTIONS(2413), - [anon_sym_source_DASHenv] = ACTIONS(2413), - [anon_sym_register] = ACTIONS(2413), - [anon_sym_hide] = ACTIONS(2413), - [anon_sym_hide_DASHenv] = ACTIONS(2413), - [anon_sym_overlay] = ACTIONS(2413), - [anon_sym_as] = ACTIONS(2413), - [anon_sym_PLUS2] = ACTIONS(2413), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2413), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2413), - [aux_sym__val_number_decimal_token1] = ACTIONS(2413), - [aux_sym__val_number_decimal_token2] = ACTIONS(2413), - [aux_sym__val_number_decimal_token3] = ACTIONS(2413), - [aux_sym__val_number_decimal_token4] = ACTIONS(2413), - [aux_sym__val_number_token1] = ACTIONS(2413), - [aux_sym__val_number_token2] = ACTIONS(2413), - [aux_sym__val_number_token3] = ACTIONS(2413), - [aux_sym__val_number_token4] = ACTIONS(2413), - [aux_sym__val_number_token5] = ACTIONS(2413), - [aux_sym__val_number_token6] = ACTIONS(2413), - [anon_sym_DQUOTE] = ACTIONS(2413), - [sym__str_single_quotes] = ACTIONS(2413), - [sym__str_back_ticks] = ACTIONS(2413), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2413), - [sym__entry_separator] = ACTIONS(2415), + [anon_sym_export] = ACTIONS(2430), + [anon_sym_alias] = ACTIONS(2430), + [anon_sym_let] = ACTIONS(2430), + [anon_sym_let_DASHenv] = ACTIONS(2430), + [anon_sym_mut] = ACTIONS(2430), + [anon_sym_const] = ACTIONS(2430), + [aux_sym_cmd_identifier_token1] = ACTIONS(2430), + [aux_sym_cmd_identifier_token2] = ACTIONS(2430), + [aux_sym_cmd_identifier_token3] = ACTIONS(2430), + [aux_sym_cmd_identifier_token4] = ACTIONS(2430), + [aux_sym_cmd_identifier_token5] = ACTIONS(2430), + [aux_sym_cmd_identifier_token6] = ACTIONS(2430), + [aux_sym_cmd_identifier_token7] = ACTIONS(2430), + [aux_sym_cmd_identifier_token8] = ACTIONS(2430), + [aux_sym_cmd_identifier_token9] = ACTIONS(2430), + [aux_sym_cmd_identifier_token10] = ACTIONS(2430), + [aux_sym_cmd_identifier_token11] = ACTIONS(2430), + [aux_sym_cmd_identifier_token12] = ACTIONS(2430), + [aux_sym_cmd_identifier_token13] = ACTIONS(2430), + [aux_sym_cmd_identifier_token14] = ACTIONS(2430), + [aux_sym_cmd_identifier_token15] = ACTIONS(2430), + [aux_sym_cmd_identifier_token16] = ACTIONS(2430), + [aux_sym_cmd_identifier_token17] = ACTIONS(2430), + [aux_sym_cmd_identifier_token18] = ACTIONS(2430), + [aux_sym_cmd_identifier_token19] = ACTIONS(2430), + [aux_sym_cmd_identifier_token20] = ACTIONS(2430), + [aux_sym_cmd_identifier_token21] = ACTIONS(2430), + [aux_sym_cmd_identifier_token22] = ACTIONS(2430), + [aux_sym_cmd_identifier_token23] = ACTIONS(2430), + [aux_sym_cmd_identifier_token24] = ACTIONS(2430), + [aux_sym_cmd_identifier_token25] = ACTIONS(2430), + [aux_sym_cmd_identifier_token26] = ACTIONS(2430), + [aux_sym_cmd_identifier_token27] = ACTIONS(2430), + [aux_sym_cmd_identifier_token28] = ACTIONS(2430), + [aux_sym_cmd_identifier_token29] = ACTIONS(2430), + [aux_sym_cmd_identifier_token30] = ACTIONS(2430), + [aux_sym_cmd_identifier_token31] = ACTIONS(2430), + [aux_sym_cmd_identifier_token32] = ACTIONS(2430), + [aux_sym_cmd_identifier_token33] = ACTIONS(2430), + [aux_sym_cmd_identifier_token34] = ACTIONS(2430), + [aux_sym_cmd_identifier_token35] = ACTIONS(2430), + [aux_sym_cmd_identifier_token36] = ACTIONS(2430), + [aux_sym_cmd_identifier_token37] = ACTIONS(2430), + [aux_sym_cmd_identifier_token38] = ACTIONS(2430), + [aux_sym_cmd_identifier_token39] = ACTIONS(2430), + [aux_sym_cmd_identifier_token40] = ACTIONS(2430), + [anon_sym_def] = ACTIONS(2430), + [anon_sym_export_DASHenv] = ACTIONS(2430), + [anon_sym_extern] = ACTIONS(2430), + [anon_sym_module] = ACTIONS(2430), + [anon_sym_use] = ACTIONS(2430), + [anon_sym_LPAREN] = ACTIONS(2430), + [anon_sym_DOLLAR] = ACTIONS(2430), + [anon_sym_error] = ACTIONS(2430), + [anon_sym_DASH2] = ACTIONS(2430), + [anon_sym_break] = ACTIONS(2430), + [anon_sym_continue] = ACTIONS(2430), + [anon_sym_for] = ACTIONS(2430), + [anon_sym_in2] = ACTIONS(2430), + [anon_sym_loop] = ACTIONS(2430), + [anon_sym_make] = ACTIONS(2430), + [anon_sym_while] = ACTIONS(2430), + [anon_sym_do] = ACTIONS(2430), + [anon_sym_if] = ACTIONS(2430), + [anon_sym_else] = ACTIONS(2430), + [anon_sym_match] = ACTIONS(2430), + [anon_sym_RBRACE] = ACTIONS(2430), + [anon_sym_try] = ACTIONS(2430), + [anon_sym_catch] = ACTIONS(2430), + [anon_sym_return] = ACTIONS(2430), + [anon_sym_source] = ACTIONS(2430), + [anon_sym_source_DASHenv] = ACTIONS(2430), + [anon_sym_register] = ACTIONS(2430), + [anon_sym_hide] = ACTIONS(2430), + [anon_sym_hide_DASHenv] = ACTIONS(2430), + [anon_sym_overlay] = ACTIONS(2430), + [anon_sym_as] = ACTIONS(2430), + [anon_sym_PLUS2] = ACTIONS(2430), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2430), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2430), + [aux_sym__val_number_decimal_token1] = ACTIONS(2430), + [aux_sym__val_number_decimal_token2] = ACTIONS(2430), + [aux_sym__val_number_decimal_token3] = ACTIONS(2430), + [aux_sym__val_number_decimal_token4] = ACTIONS(2430), + [aux_sym__val_number_token1] = ACTIONS(2430), + [aux_sym__val_number_token2] = ACTIONS(2430), + [aux_sym__val_number_token3] = ACTIONS(2430), + [aux_sym__val_number_token4] = ACTIONS(2430), + [aux_sym__val_number_token5] = ACTIONS(2430), + [aux_sym__val_number_token6] = ACTIONS(2430), + [anon_sym_DQUOTE] = ACTIONS(2430), + [sym__str_single_quotes] = ACTIONS(2430), + [sym__str_back_ticks] = ACTIONS(2430), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2430), + [sym__entry_separator] = ACTIONS(2432), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2415), + [sym_raw_string_begin] = ACTIONS(2432), }, [646] = { [sym_comment] = STATE(646), - [anon_sym_export] = ACTIONS(2417), - [anon_sym_alias] = ACTIONS(2417), - [anon_sym_let] = ACTIONS(2417), - [anon_sym_let_DASHenv] = ACTIONS(2417), - [anon_sym_mut] = ACTIONS(2417), - [anon_sym_const] = ACTIONS(2417), - [aux_sym_cmd_identifier_token1] = ACTIONS(2417), - [aux_sym_cmd_identifier_token2] = ACTIONS(2417), - [aux_sym_cmd_identifier_token3] = ACTIONS(2417), - [aux_sym_cmd_identifier_token4] = ACTIONS(2417), - [aux_sym_cmd_identifier_token5] = ACTIONS(2417), - [aux_sym_cmd_identifier_token6] = ACTIONS(2417), - [aux_sym_cmd_identifier_token7] = ACTIONS(2417), - [aux_sym_cmd_identifier_token8] = ACTIONS(2417), - [aux_sym_cmd_identifier_token9] = ACTIONS(2417), - [aux_sym_cmd_identifier_token10] = ACTIONS(2417), - [aux_sym_cmd_identifier_token11] = ACTIONS(2417), - [aux_sym_cmd_identifier_token12] = ACTIONS(2417), - [aux_sym_cmd_identifier_token13] = ACTIONS(2417), - [aux_sym_cmd_identifier_token14] = ACTIONS(2417), - [aux_sym_cmd_identifier_token15] = ACTIONS(2417), - [aux_sym_cmd_identifier_token16] = ACTIONS(2417), - [aux_sym_cmd_identifier_token17] = ACTIONS(2417), - [aux_sym_cmd_identifier_token18] = ACTIONS(2417), - [aux_sym_cmd_identifier_token19] = ACTIONS(2417), - [aux_sym_cmd_identifier_token20] = ACTIONS(2417), - [aux_sym_cmd_identifier_token21] = ACTIONS(2417), - [aux_sym_cmd_identifier_token22] = ACTIONS(2417), - [aux_sym_cmd_identifier_token23] = ACTIONS(2417), - [aux_sym_cmd_identifier_token24] = ACTIONS(2417), - [aux_sym_cmd_identifier_token25] = ACTIONS(2417), - [aux_sym_cmd_identifier_token26] = ACTIONS(2417), - [aux_sym_cmd_identifier_token27] = ACTIONS(2417), - [aux_sym_cmd_identifier_token28] = ACTIONS(2417), - [aux_sym_cmd_identifier_token29] = ACTIONS(2417), - [aux_sym_cmd_identifier_token30] = ACTIONS(2417), - [aux_sym_cmd_identifier_token31] = ACTIONS(2417), - [aux_sym_cmd_identifier_token32] = ACTIONS(2417), - [aux_sym_cmd_identifier_token33] = ACTIONS(2417), - [aux_sym_cmd_identifier_token34] = ACTIONS(2417), - [aux_sym_cmd_identifier_token35] = ACTIONS(2417), - [aux_sym_cmd_identifier_token36] = ACTIONS(2417), - [aux_sym_cmd_identifier_token37] = ACTIONS(2417), - [aux_sym_cmd_identifier_token38] = ACTIONS(2417), - [aux_sym_cmd_identifier_token39] = ACTIONS(2417), - [aux_sym_cmd_identifier_token40] = ACTIONS(2417), - [anon_sym_def] = ACTIONS(2417), - [anon_sym_export_DASHenv] = ACTIONS(2417), - [anon_sym_extern] = ACTIONS(2417), - [anon_sym_module] = ACTIONS(2417), - [anon_sym_use] = ACTIONS(2417), - [anon_sym_LPAREN] = ACTIONS(2417), - [anon_sym_DOLLAR] = ACTIONS(2417), - [anon_sym_error] = ACTIONS(2417), - [anon_sym_DASH2] = ACTIONS(2417), - [anon_sym_break] = ACTIONS(2417), - [anon_sym_continue] = ACTIONS(2417), - [anon_sym_for] = ACTIONS(2417), - [anon_sym_in2] = ACTIONS(2417), - [anon_sym_loop] = ACTIONS(2417), - [anon_sym_make] = ACTIONS(2417), - [anon_sym_while] = ACTIONS(2417), - [anon_sym_do] = ACTIONS(2417), - [anon_sym_if] = ACTIONS(2417), - [anon_sym_else] = ACTIONS(2417), - [anon_sym_match] = ACTIONS(2417), - [anon_sym_RBRACE] = ACTIONS(2417), - [anon_sym_try] = ACTIONS(2417), - [anon_sym_catch] = ACTIONS(2417), - [anon_sym_return] = ACTIONS(2417), - [anon_sym_source] = ACTIONS(2417), - [anon_sym_source_DASHenv] = ACTIONS(2417), - [anon_sym_register] = ACTIONS(2417), - [anon_sym_hide] = ACTIONS(2417), - [anon_sym_hide_DASHenv] = ACTIONS(2417), - [anon_sym_overlay] = ACTIONS(2417), - [anon_sym_as] = ACTIONS(2417), - [anon_sym_PLUS2] = ACTIONS(2417), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2417), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2417), - [aux_sym__val_number_decimal_token1] = ACTIONS(2417), - [aux_sym__val_number_decimal_token2] = ACTIONS(2417), - [aux_sym__val_number_decimal_token3] = ACTIONS(2417), - [aux_sym__val_number_decimal_token4] = ACTIONS(2417), - [aux_sym__val_number_token1] = ACTIONS(2417), - [aux_sym__val_number_token2] = ACTIONS(2417), - [aux_sym__val_number_token3] = ACTIONS(2417), - [aux_sym__val_number_token4] = ACTIONS(2417), - [aux_sym__val_number_token5] = ACTIONS(2417), - [aux_sym__val_number_token6] = ACTIONS(2417), - [anon_sym_DQUOTE] = ACTIONS(2417), - [sym__str_single_quotes] = ACTIONS(2417), - [sym__str_back_ticks] = ACTIONS(2417), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2417), - [sym__entry_separator] = ACTIONS(2419), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2419), + [anon_sym_export] = ACTIONS(2322), + [anon_sym_alias] = ACTIONS(2322), + [anon_sym_let] = ACTIONS(2322), + [anon_sym_let_DASHenv] = ACTIONS(2322), + [anon_sym_mut] = ACTIONS(2322), + [anon_sym_const] = ACTIONS(2322), + [aux_sym_cmd_identifier_token1] = ACTIONS(2322), + [aux_sym_cmd_identifier_token2] = ACTIONS(2326), + [aux_sym_cmd_identifier_token3] = ACTIONS(2326), + [aux_sym_cmd_identifier_token4] = ACTIONS(2326), + [aux_sym_cmd_identifier_token5] = ACTIONS(2326), + [aux_sym_cmd_identifier_token6] = ACTIONS(2326), + [aux_sym_cmd_identifier_token7] = ACTIONS(2326), + [aux_sym_cmd_identifier_token8] = ACTIONS(2322), + [aux_sym_cmd_identifier_token9] = ACTIONS(2322), + [aux_sym_cmd_identifier_token10] = ACTIONS(2326), + [aux_sym_cmd_identifier_token11] = ACTIONS(2326), + [aux_sym_cmd_identifier_token12] = ACTIONS(2322), + [aux_sym_cmd_identifier_token13] = ACTIONS(2322), + [aux_sym_cmd_identifier_token14] = ACTIONS(2322), + [aux_sym_cmd_identifier_token15] = ACTIONS(2322), + [aux_sym_cmd_identifier_token16] = ACTIONS(2326), + [aux_sym_cmd_identifier_token17] = ACTIONS(2326), + [aux_sym_cmd_identifier_token18] = ACTIONS(2326), + [aux_sym_cmd_identifier_token19] = ACTIONS(2326), + [aux_sym_cmd_identifier_token20] = ACTIONS(2326), + [aux_sym_cmd_identifier_token21] = ACTIONS(2326), + [aux_sym_cmd_identifier_token22] = ACTIONS(2326), + [aux_sym_cmd_identifier_token23] = ACTIONS(2326), + [aux_sym_cmd_identifier_token24] = ACTIONS(2326), + [aux_sym_cmd_identifier_token25] = ACTIONS(2326), + [aux_sym_cmd_identifier_token26] = ACTIONS(2326), + [aux_sym_cmd_identifier_token27] = ACTIONS(2326), + [aux_sym_cmd_identifier_token28] = ACTIONS(2326), + [aux_sym_cmd_identifier_token29] = ACTIONS(2326), + [aux_sym_cmd_identifier_token30] = ACTIONS(2326), + [aux_sym_cmd_identifier_token31] = ACTIONS(2326), + [aux_sym_cmd_identifier_token32] = ACTIONS(2326), + [aux_sym_cmd_identifier_token33] = ACTIONS(2326), + [aux_sym_cmd_identifier_token34] = ACTIONS(2322), + [aux_sym_cmd_identifier_token35] = ACTIONS(2326), + [aux_sym_cmd_identifier_token36] = ACTIONS(2326), + [aux_sym_cmd_identifier_token37] = ACTIONS(2326), + [aux_sym_cmd_identifier_token38] = ACTIONS(2322), + [aux_sym_cmd_identifier_token39] = ACTIONS(2326), + [aux_sym_cmd_identifier_token40] = ACTIONS(2326), + [anon_sym_def] = ACTIONS(2322), + [anon_sym_export_DASHenv] = ACTIONS(2322), + [anon_sym_extern] = ACTIONS(2322), + [anon_sym_module] = ACTIONS(2322), + [anon_sym_use] = ACTIONS(2322), + [anon_sym_LPAREN] = ACTIONS(2326), + [anon_sym_DOLLAR] = ACTIONS(2326), + [anon_sym_error] = ACTIONS(2322), + [anon_sym_DASH2] = ACTIONS(2322), + [anon_sym_break] = ACTIONS(2322), + [anon_sym_continue] = ACTIONS(2322), + [anon_sym_for] = ACTIONS(2322), + [anon_sym_in2] = ACTIONS(2322), + [anon_sym_loop] = ACTIONS(2322), + [anon_sym_make] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2322), + [anon_sym_do] = ACTIONS(2322), + [anon_sym_if] = ACTIONS(2322), + [anon_sym_else] = ACTIONS(2322), + [anon_sym_match] = ACTIONS(2322), + [anon_sym_RBRACE] = ACTIONS(2326), + [anon_sym_try] = ACTIONS(2322), + [anon_sym_catch] = ACTIONS(2322), + [anon_sym_return] = ACTIONS(2322), + [anon_sym_source] = ACTIONS(2322), + [anon_sym_source_DASHenv] = ACTIONS(2322), + [anon_sym_register] = ACTIONS(2322), + [anon_sym_hide] = ACTIONS(2322), + [anon_sym_hide_DASHenv] = ACTIONS(2322), + [anon_sym_overlay] = ACTIONS(2322), + [anon_sym_as] = ACTIONS(2322), + [anon_sym_PLUS2] = ACTIONS(2322), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2326), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2326), + [aux_sym__val_number_decimal_token1] = ACTIONS(2322), + [aux_sym__val_number_decimal_token2] = ACTIONS(2326), + [aux_sym__val_number_decimal_token3] = ACTIONS(2326), + [aux_sym__val_number_decimal_token4] = ACTIONS(2326), + [aux_sym__val_number_token1] = ACTIONS(2326), + [aux_sym__val_number_token2] = ACTIONS(2326), + [aux_sym__val_number_token3] = ACTIONS(2326), + [aux_sym__val_number_token4] = ACTIONS(2322), + [aux_sym__val_number_token5] = ACTIONS(2322), + [aux_sym__val_number_token6] = ACTIONS(2322), + [anon_sym_LBRACK2] = ACTIONS(2434), + [anon_sym_DQUOTE] = ACTIONS(2326), + [sym__str_single_quotes] = ACTIONS(2326), + [sym__str_back_ticks] = ACTIONS(2326), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2326), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2326), }, [647] = { [sym_comment] = STATE(647), - [anon_sym_export] = ACTIONS(1988), - [anon_sym_alias] = ACTIONS(1988), - [anon_sym_let] = ACTIONS(1988), - [anon_sym_let_DASHenv] = ACTIONS(1988), - [anon_sym_mut] = ACTIONS(1988), - [anon_sym_const] = ACTIONS(1988), - [aux_sym_cmd_identifier_token1] = ACTIONS(1988), - [aux_sym_cmd_identifier_token2] = ACTIONS(1988), - [aux_sym_cmd_identifier_token3] = ACTIONS(1988), - [aux_sym_cmd_identifier_token4] = ACTIONS(1988), - [aux_sym_cmd_identifier_token5] = ACTIONS(1988), - [aux_sym_cmd_identifier_token6] = ACTIONS(1988), - [aux_sym_cmd_identifier_token7] = ACTIONS(1988), - [aux_sym_cmd_identifier_token8] = ACTIONS(1988), - [aux_sym_cmd_identifier_token9] = ACTIONS(1988), - [aux_sym_cmd_identifier_token10] = ACTIONS(1988), - [aux_sym_cmd_identifier_token11] = ACTIONS(1988), - [aux_sym_cmd_identifier_token12] = ACTIONS(1988), - [aux_sym_cmd_identifier_token13] = ACTIONS(1988), - [aux_sym_cmd_identifier_token14] = ACTIONS(1988), - [aux_sym_cmd_identifier_token15] = ACTIONS(1988), - [aux_sym_cmd_identifier_token16] = ACTIONS(1988), - [aux_sym_cmd_identifier_token17] = ACTIONS(1988), - [aux_sym_cmd_identifier_token18] = ACTIONS(1988), - [aux_sym_cmd_identifier_token19] = ACTIONS(1988), - [aux_sym_cmd_identifier_token20] = ACTIONS(1988), - [aux_sym_cmd_identifier_token21] = ACTIONS(1988), - [aux_sym_cmd_identifier_token22] = ACTIONS(1988), - [aux_sym_cmd_identifier_token23] = ACTIONS(1988), - [aux_sym_cmd_identifier_token24] = ACTIONS(1988), - [aux_sym_cmd_identifier_token25] = ACTIONS(1988), - [aux_sym_cmd_identifier_token26] = ACTIONS(1988), - [aux_sym_cmd_identifier_token27] = ACTIONS(1988), - [aux_sym_cmd_identifier_token28] = ACTIONS(1988), - [aux_sym_cmd_identifier_token29] = ACTIONS(1988), - [aux_sym_cmd_identifier_token30] = ACTIONS(1988), - [aux_sym_cmd_identifier_token31] = ACTIONS(1988), - [aux_sym_cmd_identifier_token32] = ACTIONS(1988), - [aux_sym_cmd_identifier_token33] = ACTIONS(1988), - [aux_sym_cmd_identifier_token34] = ACTIONS(1988), - [aux_sym_cmd_identifier_token35] = ACTIONS(1988), - [aux_sym_cmd_identifier_token36] = ACTIONS(1988), - [aux_sym_cmd_identifier_token37] = ACTIONS(1988), - [aux_sym_cmd_identifier_token38] = ACTIONS(1988), - [aux_sym_cmd_identifier_token39] = ACTIONS(1988), - [aux_sym_cmd_identifier_token40] = ACTIONS(1988), - [anon_sym_def] = ACTIONS(1988), - [anon_sym_export_DASHenv] = ACTIONS(1988), - [anon_sym_extern] = ACTIONS(1988), - [anon_sym_module] = ACTIONS(1988), - [anon_sym_use] = ACTIONS(1988), - [anon_sym_LPAREN] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1988), - [anon_sym_error] = ACTIONS(1988), - [anon_sym_DASH2] = ACTIONS(1988), - [anon_sym_break] = ACTIONS(1988), - [anon_sym_continue] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1988), - [anon_sym_in2] = ACTIONS(1988), - [anon_sym_loop] = ACTIONS(1988), - [anon_sym_make] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1988), - [anon_sym_do] = ACTIONS(1988), - [anon_sym_if] = ACTIONS(1988), - [anon_sym_else] = ACTIONS(1988), - [anon_sym_match] = ACTIONS(1988), - [anon_sym_RBRACE] = ACTIONS(1988), - [anon_sym_try] = ACTIONS(1988), - [anon_sym_catch] = ACTIONS(1988), - [anon_sym_return] = ACTIONS(1988), - [anon_sym_source] = ACTIONS(1988), - [anon_sym_source_DASHenv] = ACTIONS(1988), - [anon_sym_register] = ACTIONS(1988), - [anon_sym_hide] = ACTIONS(1988), - [anon_sym_hide_DASHenv] = ACTIONS(1988), - [anon_sym_overlay] = ACTIONS(1988), - [anon_sym_as] = ACTIONS(1988), - [anon_sym_PLUS2] = ACTIONS(1988), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1988), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1988), - [aux_sym__val_number_decimal_token1] = ACTIONS(1988), - [aux_sym__val_number_decimal_token2] = ACTIONS(1988), - [aux_sym__val_number_decimal_token3] = ACTIONS(1988), - [aux_sym__val_number_decimal_token4] = ACTIONS(1988), - [aux_sym__val_number_token1] = ACTIONS(1988), - [aux_sym__val_number_token2] = ACTIONS(1988), - [aux_sym__val_number_token3] = ACTIONS(1988), - [aux_sym__val_number_token4] = ACTIONS(1988), - [aux_sym__val_number_token5] = ACTIONS(1988), - [aux_sym__val_number_token6] = ACTIONS(1988), - [anon_sym_DQUOTE] = ACTIONS(1988), - [sym__str_single_quotes] = ACTIONS(1988), - [sym__str_back_ticks] = ACTIONS(1988), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1988), - [sym__entry_separator] = ACTIONS(1990), + [anon_sym_export] = ACTIONS(1899), + [anon_sym_alias] = ACTIONS(1899), + [anon_sym_let] = ACTIONS(1899), + [anon_sym_let_DASHenv] = ACTIONS(1899), + [anon_sym_mut] = ACTIONS(1899), + [anon_sym_const] = ACTIONS(1899), + [aux_sym_cmd_identifier_token1] = ACTIONS(1899), + [aux_sym_cmd_identifier_token2] = ACTIONS(1899), + [aux_sym_cmd_identifier_token3] = ACTIONS(1899), + [aux_sym_cmd_identifier_token4] = ACTIONS(1899), + [aux_sym_cmd_identifier_token5] = ACTIONS(1899), + [aux_sym_cmd_identifier_token6] = ACTIONS(1899), + [aux_sym_cmd_identifier_token7] = ACTIONS(1899), + [aux_sym_cmd_identifier_token8] = ACTIONS(1899), + [aux_sym_cmd_identifier_token9] = ACTIONS(1899), + [aux_sym_cmd_identifier_token10] = ACTIONS(1899), + [aux_sym_cmd_identifier_token11] = ACTIONS(1899), + [aux_sym_cmd_identifier_token12] = ACTIONS(1899), + [aux_sym_cmd_identifier_token13] = ACTIONS(1899), + [aux_sym_cmd_identifier_token14] = ACTIONS(1899), + [aux_sym_cmd_identifier_token15] = ACTIONS(1899), + [aux_sym_cmd_identifier_token16] = ACTIONS(1899), + [aux_sym_cmd_identifier_token17] = ACTIONS(1899), + [aux_sym_cmd_identifier_token18] = ACTIONS(1899), + [aux_sym_cmd_identifier_token19] = ACTIONS(1899), + [aux_sym_cmd_identifier_token20] = ACTIONS(1899), + [aux_sym_cmd_identifier_token21] = ACTIONS(1899), + [aux_sym_cmd_identifier_token22] = ACTIONS(1899), + [aux_sym_cmd_identifier_token23] = ACTIONS(1899), + [aux_sym_cmd_identifier_token24] = ACTIONS(1899), + [aux_sym_cmd_identifier_token25] = ACTIONS(1899), + [aux_sym_cmd_identifier_token26] = ACTIONS(1899), + [aux_sym_cmd_identifier_token27] = ACTIONS(1899), + [aux_sym_cmd_identifier_token28] = ACTIONS(1899), + [aux_sym_cmd_identifier_token29] = ACTIONS(1899), + [aux_sym_cmd_identifier_token30] = ACTIONS(1899), + [aux_sym_cmd_identifier_token31] = ACTIONS(1899), + [aux_sym_cmd_identifier_token32] = ACTIONS(1899), + [aux_sym_cmd_identifier_token33] = ACTIONS(1899), + [aux_sym_cmd_identifier_token34] = ACTIONS(1899), + [aux_sym_cmd_identifier_token35] = ACTIONS(1899), + [aux_sym_cmd_identifier_token36] = ACTIONS(1899), + [aux_sym_cmd_identifier_token37] = ACTIONS(1899), + [aux_sym_cmd_identifier_token38] = ACTIONS(1899), + [aux_sym_cmd_identifier_token39] = ACTIONS(1899), + [aux_sym_cmd_identifier_token40] = ACTIONS(1899), + [anon_sym_def] = ACTIONS(1899), + [anon_sym_export_DASHenv] = ACTIONS(1899), + [anon_sym_extern] = ACTIONS(1899), + [anon_sym_module] = ACTIONS(1899), + [anon_sym_use] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym_DOLLAR] = ACTIONS(1899), + [anon_sym_error] = ACTIONS(1899), + [anon_sym_DASH2] = ACTIONS(1899), + [anon_sym_break] = ACTIONS(1899), + [anon_sym_continue] = ACTIONS(1899), + [anon_sym_for] = ACTIONS(1899), + [anon_sym_in2] = ACTIONS(1899), + [anon_sym_loop] = ACTIONS(1899), + [anon_sym_make] = ACTIONS(1899), + [anon_sym_while] = ACTIONS(1899), + [anon_sym_do] = ACTIONS(1899), + [anon_sym_if] = ACTIONS(1899), + [anon_sym_else] = ACTIONS(1899), + [anon_sym_match] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(1899), + [anon_sym_try] = ACTIONS(1899), + [anon_sym_catch] = ACTIONS(1899), + [anon_sym_return] = ACTIONS(1899), + [anon_sym_source] = ACTIONS(1899), + [anon_sym_source_DASHenv] = ACTIONS(1899), + [anon_sym_register] = ACTIONS(1899), + [anon_sym_hide] = ACTIONS(1899), + [anon_sym_hide_DASHenv] = ACTIONS(1899), + [anon_sym_overlay] = ACTIONS(1899), + [anon_sym_as] = ACTIONS(1899), + [anon_sym_PLUS2] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1899), + [aux_sym__val_number_decimal_token1] = ACTIONS(1899), + [aux_sym__val_number_decimal_token2] = ACTIONS(1899), + [aux_sym__val_number_decimal_token3] = ACTIONS(1899), + [aux_sym__val_number_decimal_token4] = ACTIONS(1899), + [aux_sym__val_number_token1] = ACTIONS(1899), + [aux_sym__val_number_token2] = ACTIONS(1899), + [aux_sym__val_number_token3] = ACTIONS(1899), + [aux_sym__val_number_token4] = ACTIONS(1899), + [aux_sym__val_number_token5] = ACTIONS(1899), + [aux_sym__val_number_token6] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1899), + [sym__str_single_quotes] = ACTIONS(1899), + [sym__str_back_ticks] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1899), + [sym__entry_separator] = ACTIONS(1901), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1990), + [sym_raw_string_begin] = ACTIONS(1901), }, [648] = { [sym_comment] = STATE(648), - [anon_sym_export] = ACTIONS(2167), - [anon_sym_alias] = ACTIONS(2167), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_let_DASHenv] = ACTIONS(2167), - [anon_sym_mut] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [aux_sym_cmd_identifier_token1] = ACTIONS(2167), - [aux_sym_cmd_identifier_token2] = ACTIONS(2167), - [aux_sym_cmd_identifier_token3] = ACTIONS(2167), - [aux_sym_cmd_identifier_token4] = ACTIONS(2167), - [aux_sym_cmd_identifier_token5] = ACTIONS(2167), - [aux_sym_cmd_identifier_token6] = ACTIONS(2167), - [aux_sym_cmd_identifier_token7] = ACTIONS(2167), - [aux_sym_cmd_identifier_token8] = ACTIONS(2167), - [aux_sym_cmd_identifier_token9] = ACTIONS(2167), - [aux_sym_cmd_identifier_token10] = ACTIONS(2167), - [aux_sym_cmd_identifier_token11] = ACTIONS(2167), - [aux_sym_cmd_identifier_token12] = ACTIONS(2167), - [aux_sym_cmd_identifier_token13] = ACTIONS(2167), - [aux_sym_cmd_identifier_token14] = ACTIONS(2167), - [aux_sym_cmd_identifier_token15] = ACTIONS(2167), - [aux_sym_cmd_identifier_token16] = ACTIONS(2167), - [aux_sym_cmd_identifier_token17] = ACTIONS(2167), - [aux_sym_cmd_identifier_token18] = ACTIONS(2167), - [aux_sym_cmd_identifier_token19] = ACTIONS(2167), - [aux_sym_cmd_identifier_token20] = ACTIONS(2167), - [aux_sym_cmd_identifier_token21] = ACTIONS(2167), - [aux_sym_cmd_identifier_token22] = ACTIONS(2167), - [aux_sym_cmd_identifier_token23] = ACTIONS(2167), - [aux_sym_cmd_identifier_token24] = ACTIONS(2167), - [aux_sym_cmd_identifier_token25] = ACTIONS(2167), - [aux_sym_cmd_identifier_token26] = ACTIONS(2167), - [aux_sym_cmd_identifier_token27] = ACTIONS(2167), - [aux_sym_cmd_identifier_token28] = ACTIONS(2167), - [aux_sym_cmd_identifier_token29] = ACTIONS(2167), - [aux_sym_cmd_identifier_token30] = ACTIONS(2167), - [aux_sym_cmd_identifier_token31] = ACTIONS(2167), - [aux_sym_cmd_identifier_token32] = ACTIONS(2167), - [aux_sym_cmd_identifier_token33] = ACTIONS(2167), - [aux_sym_cmd_identifier_token34] = ACTIONS(2167), - [aux_sym_cmd_identifier_token35] = ACTIONS(2167), - [aux_sym_cmd_identifier_token36] = ACTIONS(2167), - [aux_sym_cmd_identifier_token37] = ACTIONS(2167), - [aux_sym_cmd_identifier_token38] = ACTIONS(2167), - [aux_sym_cmd_identifier_token39] = ACTIONS(2167), - [aux_sym_cmd_identifier_token40] = ACTIONS(2167), - [anon_sym_def] = ACTIONS(2167), - [anon_sym_export_DASHenv] = ACTIONS(2167), - [anon_sym_extern] = ACTIONS(2167), - [anon_sym_module] = ACTIONS(2167), - [anon_sym_use] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_DOLLAR] = ACTIONS(2167), - [anon_sym_error] = ACTIONS(2167), - [anon_sym_DASH2] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_in2] = ACTIONS(2167), - [anon_sym_loop] = ACTIONS(2167), - [anon_sym_make] = ACTIONS(2167), - [anon_sym_while] = ACTIONS(2167), - [anon_sym_do] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_else] = ACTIONS(2167), - [anon_sym_match] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_try] = ACTIONS(2167), - [anon_sym_catch] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_source] = ACTIONS(2167), - [anon_sym_source_DASHenv] = ACTIONS(2167), - [anon_sym_register] = ACTIONS(2167), - [anon_sym_hide] = ACTIONS(2167), - [anon_sym_hide_DASHenv] = ACTIONS(2167), - [anon_sym_overlay] = ACTIONS(2167), - [anon_sym_as] = ACTIONS(2167), - [anon_sym_PLUS2] = ACTIONS(2167), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2167), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2167), - [aux_sym__val_number_decimal_token1] = ACTIONS(2167), - [aux_sym__val_number_decimal_token2] = ACTIONS(2167), - [aux_sym__val_number_decimal_token3] = ACTIONS(2167), - [aux_sym__val_number_decimal_token4] = ACTIONS(2167), - [aux_sym__val_number_token1] = ACTIONS(2167), - [aux_sym__val_number_token2] = ACTIONS(2167), - [aux_sym__val_number_token3] = ACTIONS(2167), - [aux_sym__val_number_token4] = ACTIONS(2167), - [aux_sym__val_number_token5] = ACTIONS(2167), - [aux_sym__val_number_token6] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym__str_single_quotes] = ACTIONS(2167), - [sym__str_back_ticks] = ACTIONS(2167), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2167), - [sym__entry_separator] = ACTIONS(2173), + [anon_sym_export] = ACTIONS(2436), + [anon_sym_alias] = ACTIONS(2436), + [anon_sym_let] = ACTIONS(2436), + [anon_sym_let_DASHenv] = ACTIONS(2436), + [anon_sym_mut] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [aux_sym_cmd_identifier_token1] = ACTIONS(2436), + [aux_sym_cmd_identifier_token2] = ACTIONS(2436), + [aux_sym_cmd_identifier_token3] = ACTIONS(2436), + [aux_sym_cmd_identifier_token4] = ACTIONS(2436), + [aux_sym_cmd_identifier_token5] = ACTIONS(2436), + [aux_sym_cmd_identifier_token6] = ACTIONS(2436), + [aux_sym_cmd_identifier_token7] = ACTIONS(2436), + [aux_sym_cmd_identifier_token8] = ACTIONS(2436), + [aux_sym_cmd_identifier_token9] = ACTIONS(2436), + [aux_sym_cmd_identifier_token10] = ACTIONS(2436), + [aux_sym_cmd_identifier_token11] = ACTIONS(2436), + [aux_sym_cmd_identifier_token12] = ACTIONS(2436), + [aux_sym_cmd_identifier_token13] = ACTIONS(2436), + [aux_sym_cmd_identifier_token14] = ACTIONS(2436), + [aux_sym_cmd_identifier_token15] = ACTIONS(2436), + [aux_sym_cmd_identifier_token16] = ACTIONS(2436), + [aux_sym_cmd_identifier_token17] = ACTIONS(2436), + [aux_sym_cmd_identifier_token18] = ACTIONS(2436), + [aux_sym_cmd_identifier_token19] = ACTIONS(2436), + [aux_sym_cmd_identifier_token20] = ACTIONS(2436), + [aux_sym_cmd_identifier_token21] = ACTIONS(2436), + [aux_sym_cmd_identifier_token22] = ACTIONS(2436), + [aux_sym_cmd_identifier_token23] = ACTIONS(2436), + [aux_sym_cmd_identifier_token24] = ACTIONS(2436), + [aux_sym_cmd_identifier_token25] = ACTIONS(2436), + [aux_sym_cmd_identifier_token26] = ACTIONS(2436), + [aux_sym_cmd_identifier_token27] = ACTIONS(2436), + [aux_sym_cmd_identifier_token28] = ACTIONS(2436), + [aux_sym_cmd_identifier_token29] = ACTIONS(2436), + [aux_sym_cmd_identifier_token30] = ACTIONS(2436), + [aux_sym_cmd_identifier_token31] = ACTIONS(2436), + [aux_sym_cmd_identifier_token32] = ACTIONS(2436), + [aux_sym_cmd_identifier_token33] = ACTIONS(2436), + [aux_sym_cmd_identifier_token34] = ACTIONS(2436), + [aux_sym_cmd_identifier_token35] = ACTIONS(2436), + [aux_sym_cmd_identifier_token36] = ACTIONS(2436), + [aux_sym_cmd_identifier_token37] = ACTIONS(2436), + [aux_sym_cmd_identifier_token38] = ACTIONS(2436), + [aux_sym_cmd_identifier_token39] = ACTIONS(2436), + [aux_sym_cmd_identifier_token40] = ACTIONS(2436), + [anon_sym_def] = ACTIONS(2436), + [anon_sym_export_DASHenv] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym_module] = ACTIONS(2436), + [anon_sym_use] = ACTIONS(2436), + [anon_sym_LPAREN] = ACTIONS(2436), + [anon_sym_DOLLAR] = ACTIONS(2436), + [anon_sym_error] = ACTIONS(2436), + [anon_sym_DASH2] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_in2] = ACTIONS(2436), + [anon_sym_loop] = ACTIONS(2436), + [anon_sym_make] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_else] = ACTIONS(2436), + [anon_sym_match] = ACTIONS(2436), + [anon_sym_RBRACE] = ACTIONS(2436), + [anon_sym_try] = ACTIONS(2436), + [anon_sym_catch] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_source] = ACTIONS(2436), + [anon_sym_source_DASHenv] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_hide] = ACTIONS(2436), + [anon_sym_hide_DASHenv] = ACTIONS(2436), + [anon_sym_overlay] = ACTIONS(2436), + [anon_sym_as] = ACTIONS(2436), + [anon_sym_PLUS2] = ACTIONS(2436), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2436), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2436), + [aux_sym__val_number_decimal_token1] = ACTIONS(2436), + [aux_sym__val_number_decimal_token2] = ACTIONS(2436), + [aux_sym__val_number_decimal_token3] = ACTIONS(2436), + [aux_sym__val_number_decimal_token4] = ACTIONS(2436), + [aux_sym__val_number_token1] = ACTIONS(2436), + [aux_sym__val_number_token2] = ACTIONS(2436), + [aux_sym__val_number_token3] = ACTIONS(2436), + [aux_sym__val_number_token4] = ACTIONS(2436), + [aux_sym__val_number_token5] = ACTIONS(2436), + [aux_sym__val_number_token6] = ACTIONS(2436), + [anon_sym_DQUOTE] = ACTIONS(2436), + [sym__str_single_quotes] = ACTIONS(2436), + [sym__str_back_ticks] = ACTIONS(2436), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2436), + [sym__entry_separator] = ACTIONS(2438), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2173), + [sym_raw_string_begin] = ACTIONS(2438), }, [649] = { [sym_comment] = STATE(649), - [anon_sym_export] = ACTIONS(2421), - [anon_sym_alias] = ACTIONS(2421), - [anon_sym_let] = ACTIONS(2421), - [anon_sym_let_DASHenv] = ACTIONS(2421), - [anon_sym_mut] = ACTIONS(2421), - [anon_sym_const] = ACTIONS(2421), - [aux_sym_cmd_identifier_token1] = ACTIONS(2421), - [aux_sym_cmd_identifier_token2] = ACTIONS(2421), - [aux_sym_cmd_identifier_token3] = ACTIONS(2421), - [aux_sym_cmd_identifier_token4] = ACTIONS(2421), - [aux_sym_cmd_identifier_token5] = ACTIONS(2421), - [aux_sym_cmd_identifier_token6] = ACTIONS(2421), - [aux_sym_cmd_identifier_token7] = ACTIONS(2421), - [aux_sym_cmd_identifier_token8] = ACTIONS(2421), - [aux_sym_cmd_identifier_token9] = ACTIONS(2421), - [aux_sym_cmd_identifier_token10] = ACTIONS(2421), - [aux_sym_cmd_identifier_token11] = ACTIONS(2421), - [aux_sym_cmd_identifier_token12] = ACTIONS(2421), - [aux_sym_cmd_identifier_token13] = ACTIONS(2421), - [aux_sym_cmd_identifier_token14] = ACTIONS(2421), - [aux_sym_cmd_identifier_token15] = ACTIONS(2421), - [aux_sym_cmd_identifier_token16] = ACTIONS(2421), - [aux_sym_cmd_identifier_token17] = ACTIONS(2421), - [aux_sym_cmd_identifier_token18] = ACTIONS(2421), - [aux_sym_cmd_identifier_token19] = ACTIONS(2421), - [aux_sym_cmd_identifier_token20] = ACTIONS(2421), - [aux_sym_cmd_identifier_token21] = ACTIONS(2421), - [aux_sym_cmd_identifier_token22] = ACTIONS(2421), - [aux_sym_cmd_identifier_token23] = ACTIONS(2421), - [aux_sym_cmd_identifier_token24] = ACTIONS(2421), - [aux_sym_cmd_identifier_token25] = ACTIONS(2421), - [aux_sym_cmd_identifier_token26] = ACTIONS(2421), - [aux_sym_cmd_identifier_token27] = ACTIONS(2421), - [aux_sym_cmd_identifier_token28] = ACTIONS(2421), - [aux_sym_cmd_identifier_token29] = ACTIONS(2421), - [aux_sym_cmd_identifier_token30] = ACTIONS(2421), - [aux_sym_cmd_identifier_token31] = ACTIONS(2421), - [aux_sym_cmd_identifier_token32] = ACTIONS(2421), - [aux_sym_cmd_identifier_token33] = ACTIONS(2421), - [aux_sym_cmd_identifier_token34] = ACTIONS(2421), - [aux_sym_cmd_identifier_token35] = ACTIONS(2421), - [aux_sym_cmd_identifier_token36] = ACTIONS(2421), - [aux_sym_cmd_identifier_token37] = ACTIONS(2421), - [aux_sym_cmd_identifier_token38] = ACTIONS(2421), - [aux_sym_cmd_identifier_token39] = ACTIONS(2421), - [aux_sym_cmd_identifier_token40] = ACTIONS(2421), - [anon_sym_def] = ACTIONS(2421), - [anon_sym_export_DASHenv] = ACTIONS(2421), - [anon_sym_extern] = ACTIONS(2421), - [anon_sym_module] = ACTIONS(2421), - [anon_sym_use] = ACTIONS(2421), - [anon_sym_LPAREN] = ACTIONS(2421), - [anon_sym_DOLLAR] = ACTIONS(2421), - [anon_sym_error] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2421), - [anon_sym_break] = ACTIONS(2421), - [anon_sym_continue] = ACTIONS(2421), - [anon_sym_for] = ACTIONS(2421), - [anon_sym_in2] = ACTIONS(2421), - [anon_sym_loop] = ACTIONS(2421), - [anon_sym_make] = ACTIONS(2421), - [anon_sym_while] = ACTIONS(2421), - [anon_sym_do] = ACTIONS(2421), - [anon_sym_if] = ACTIONS(2421), - [anon_sym_else] = ACTIONS(2421), - [anon_sym_match] = ACTIONS(2421), - [anon_sym_RBRACE] = ACTIONS(2421), - [anon_sym_try] = ACTIONS(2421), - [anon_sym_catch] = ACTIONS(2421), - [anon_sym_return] = ACTIONS(2421), - [anon_sym_source] = ACTIONS(2421), - [anon_sym_source_DASHenv] = ACTIONS(2421), - [anon_sym_register] = ACTIONS(2421), - [anon_sym_hide] = ACTIONS(2421), - [anon_sym_hide_DASHenv] = ACTIONS(2421), - [anon_sym_overlay] = ACTIONS(2421), - [anon_sym_as] = ACTIONS(2421), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2421), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2421), - [aux_sym__val_number_decimal_token1] = ACTIONS(2421), - [aux_sym__val_number_decimal_token2] = ACTIONS(2421), - [aux_sym__val_number_decimal_token3] = ACTIONS(2421), - [aux_sym__val_number_decimal_token4] = ACTIONS(2421), - [aux_sym__val_number_token1] = ACTIONS(2421), - [aux_sym__val_number_token2] = ACTIONS(2421), - [aux_sym__val_number_token3] = ACTIONS(2421), - [aux_sym__val_number_token4] = ACTIONS(2421), - [aux_sym__val_number_token5] = ACTIONS(2421), - [aux_sym__val_number_token6] = ACTIONS(2421), - [anon_sym_DQUOTE] = ACTIONS(2421), - [sym__str_single_quotes] = ACTIONS(2421), - [sym__str_back_ticks] = ACTIONS(2421), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2421), - [sym__entry_separator] = ACTIONS(2423), + [anon_sym_export] = ACTIONS(2440), + [anon_sym_alias] = ACTIONS(2440), + [anon_sym_let] = ACTIONS(2440), + [anon_sym_let_DASHenv] = ACTIONS(2440), + [anon_sym_mut] = ACTIONS(2440), + [anon_sym_const] = ACTIONS(2440), + [aux_sym_cmd_identifier_token1] = ACTIONS(2440), + [aux_sym_cmd_identifier_token2] = ACTIONS(2440), + [aux_sym_cmd_identifier_token3] = ACTIONS(2440), + [aux_sym_cmd_identifier_token4] = ACTIONS(2440), + [aux_sym_cmd_identifier_token5] = ACTIONS(2440), + [aux_sym_cmd_identifier_token6] = ACTIONS(2440), + [aux_sym_cmd_identifier_token7] = ACTIONS(2440), + [aux_sym_cmd_identifier_token8] = ACTIONS(2440), + [aux_sym_cmd_identifier_token9] = ACTIONS(2440), + [aux_sym_cmd_identifier_token10] = ACTIONS(2440), + [aux_sym_cmd_identifier_token11] = ACTIONS(2440), + [aux_sym_cmd_identifier_token12] = ACTIONS(2440), + [aux_sym_cmd_identifier_token13] = ACTIONS(2440), + [aux_sym_cmd_identifier_token14] = ACTIONS(2440), + [aux_sym_cmd_identifier_token15] = ACTIONS(2440), + [aux_sym_cmd_identifier_token16] = ACTIONS(2440), + [aux_sym_cmd_identifier_token17] = ACTIONS(2440), + [aux_sym_cmd_identifier_token18] = ACTIONS(2440), + [aux_sym_cmd_identifier_token19] = ACTIONS(2440), + [aux_sym_cmd_identifier_token20] = ACTIONS(2440), + [aux_sym_cmd_identifier_token21] = ACTIONS(2440), + [aux_sym_cmd_identifier_token22] = ACTIONS(2440), + [aux_sym_cmd_identifier_token23] = ACTIONS(2440), + [aux_sym_cmd_identifier_token24] = ACTIONS(2440), + [aux_sym_cmd_identifier_token25] = ACTIONS(2440), + [aux_sym_cmd_identifier_token26] = ACTIONS(2440), + [aux_sym_cmd_identifier_token27] = ACTIONS(2440), + [aux_sym_cmd_identifier_token28] = ACTIONS(2440), + [aux_sym_cmd_identifier_token29] = ACTIONS(2440), + [aux_sym_cmd_identifier_token30] = ACTIONS(2440), + [aux_sym_cmd_identifier_token31] = ACTIONS(2440), + [aux_sym_cmd_identifier_token32] = ACTIONS(2440), + [aux_sym_cmd_identifier_token33] = ACTIONS(2440), + [aux_sym_cmd_identifier_token34] = ACTIONS(2440), + [aux_sym_cmd_identifier_token35] = ACTIONS(2440), + [aux_sym_cmd_identifier_token36] = ACTIONS(2440), + [aux_sym_cmd_identifier_token37] = ACTIONS(2440), + [aux_sym_cmd_identifier_token38] = ACTIONS(2440), + [aux_sym_cmd_identifier_token39] = ACTIONS(2440), + [aux_sym_cmd_identifier_token40] = ACTIONS(2440), + [anon_sym_def] = ACTIONS(2440), + [anon_sym_export_DASHenv] = ACTIONS(2440), + [anon_sym_extern] = ACTIONS(2440), + [anon_sym_module] = ACTIONS(2440), + [anon_sym_use] = ACTIONS(2440), + [anon_sym_LPAREN] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2440), + [anon_sym_error] = ACTIONS(2440), + [anon_sym_DASH2] = ACTIONS(2440), + [anon_sym_break] = ACTIONS(2440), + [anon_sym_continue] = ACTIONS(2440), + [anon_sym_for] = ACTIONS(2440), + [anon_sym_in2] = ACTIONS(2440), + [anon_sym_loop] = ACTIONS(2440), + [anon_sym_make] = ACTIONS(2440), + [anon_sym_while] = ACTIONS(2440), + [anon_sym_do] = ACTIONS(2440), + [anon_sym_if] = ACTIONS(2440), + [anon_sym_else] = ACTIONS(2440), + [anon_sym_match] = ACTIONS(2440), + [anon_sym_RBRACE] = ACTIONS(2440), + [anon_sym_try] = ACTIONS(2440), + [anon_sym_catch] = ACTIONS(2440), + [anon_sym_return] = ACTIONS(2440), + [anon_sym_source] = ACTIONS(2440), + [anon_sym_source_DASHenv] = ACTIONS(2440), + [anon_sym_register] = ACTIONS(2440), + [anon_sym_hide] = ACTIONS(2440), + [anon_sym_hide_DASHenv] = ACTIONS(2440), + [anon_sym_overlay] = ACTIONS(2440), + [anon_sym_as] = ACTIONS(2440), + [anon_sym_PLUS2] = ACTIONS(2440), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2440), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2440), + [aux_sym__val_number_decimal_token1] = ACTIONS(2440), + [aux_sym__val_number_decimal_token2] = ACTIONS(2440), + [aux_sym__val_number_decimal_token3] = ACTIONS(2440), + [aux_sym__val_number_decimal_token4] = ACTIONS(2440), + [aux_sym__val_number_token1] = ACTIONS(2440), + [aux_sym__val_number_token2] = ACTIONS(2440), + [aux_sym__val_number_token3] = ACTIONS(2440), + [aux_sym__val_number_token4] = ACTIONS(2440), + [aux_sym__val_number_token5] = ACTIONS(2440), + [aux_sym__val_number_token6] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [sym__str_single_quotes] = ACTIONS(2440), + [sym__str_back_ticks] = ACTIONS(2440), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2440), + [sym__entry_separator] = ACTIONS(2442), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2423), + [sym_raw_string_begin] = ACTIONS(2442), }, [650] = { [sym_comment] = STATE(650), - [anon_sym_export] = ACTIONS(2175), - [anon_sym_alias] = ACTIONS(2175), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_let_DASHenv] = ACTIONS(2175), - [anon_sym_mut] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [aux_sym_cmd_identifier_token1] = ACTIONS(2175), - [aux_sym_cmd_identifier_token2] = ACTIONS(2175), - [aux_sym_cmd_identifier_token3] = ACTIONS(2175), - [aux_sym_cmd_identifier_token4] = ACTIONS(2175), - [aux_sym_cmd_identifier_token5] = ACTIONS(2175), - [aux_sym_cmd_identifier_token6] = ACTIONS(2175), - [aux_sym_cmd_identifier_token7] = ACTIONS(2175), - [aux_sym_cmd_identifier_token8] = ACTIONS(2175), - [aux_sym_cmd_identifier_token9] = ACTIONS(2175), - [aux_sym_cmd_identifier_token10] = ACTIONS(2175), - [aux_sym_cmd_identifier_token11] = ACTIONS(2175), - [aux_sym_cmd_identifier_token12] = ACTIONS(2175), - [aux_sym_cmd_identifier_token13] = ACTIONS(2175), - [aux_sym_cmd_identifier_token14] = ACTIONS(2175), - [aux_sym_cmd_identifier_token15] = ACTIONS(2175), - [aux_sym_cmd_identifier_token16] = ACTIONS(2175), - [aux_sym_cmd_identifier_token17] = ACTIONS(2175), - [aux_sym_cmd_identifier_token18] = ACTIONS(2175), - [aux_sym_cmd_identifier_token19] = ACTIONS(2175), - [aux_sym_cmd_identifier_token20] = ACTIONS(2175), - [aux_sym_cmd_identifier_token21] = ACTIONS(2175), - [aux_sym_cmd_identifier_token22] = ACTIONS(2175), - [aux_sym_cmd_identifier_token23] = ACTIONS(2175), - [aux_sym_cmd_identifier_token24] = ACTIONS(2175), - [aux_sym_cmd_identifier_token25] = ACTIONS(2175), - [aux_sym_cmd_identifier_token26] = ACTIONS(2175), - [aux_sym_cmd_identifier_token27] = ACTIONS(2175), - [aux_sym_cmd_identifier_token28] = ACTIONS(2175), - [aux_sym_cmd_identifier_token29] = ACTIONS(2175), - [aux_sym_cmd_identifier_token30] = ACTIONS(2175), - [aux_sym_cmd_identifier_token31] = ACTIONS(2175), - [aux_sym_cmd_identifier_token32] = ACTIONS(2175), - [aux_sym_cmd_identifier_token33] = ACTIONS(2175), - [aux_sym_cmd_identifier_token34] = ACTIONS(2175), - [aux_sym_cmd_identifier_token35] = ACTIONS(2175), - [aux_sym_cmd_identifier_token36] = ACTIONS(2175), - [aux_sym_cmd_identifier_token37] = ACTIONS(2175), - [aux_sym_cmd_identifier_token38] = ACTIONS(2175), - [aux_sym_cmd_identifier_token39] = ACTIONS(2175), - [aux_sym_cmd_identifier_token40] = ACTIONS(2175), - [anon_sym_def] = ACTIONS(2175), - [anon_sym_export_DASHenv] = ACTIONS(2175), - [anon_sym_extern] = ACTIONS(2175), - [anon_sym_module] = ACTIONS(2175), - [anon_sym_use] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_DOLLAR] = ACTIONS(2175), - [anon_sym_error] = ACTIONS(2175), - [anon_sym_DASH2] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_in2] = ACTIONS(2175), - [anon_sym_loop] = ACTIONS(2175), - [anon_sym_make] = ACTIONS(2175), - [anon_sym_while] = ACTIONS(2175), - [anon_sym_do] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_else] = ACTIONS(2175), - [anon_sym_match] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_try] = ACTIONS(2175), - [anon_sym_catch] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_source] = ACTIONS(2175), - [anon_sym_source_DASHenv] = ACTIONS(2175), - [anon_sym_register] = ACTIONS(2175), - [anon_sym_hide] = ACTIONS(2175), - [anon_sym_hide_DASHenv] = ACTIONS(2175), - [anon_sym_overlay] = ACTIONS(2175), - [anon_sym_as] = ACTIONS(2175), - [anon_sym_PLUS2] = ACTIONS(2175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2175), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2175), - [aux_sym__val_number_decimal_token1] = ACTIONS(2175), - [aux_sym__val_number_decimal_token2] = ACTIONS(2175), - [aux_sym__val_number_decimal_token3] = ACTIONS(2175), - [aux_sym__val_number_decimal_token4] = ACTIONS(2175), - [aux_sym__val_number_token1] = ACTIONS(2175), - [aux_sym__val_number_token2] = ACTIONS(2175), - [aux_sym__val_number_token3] = ACTIONS(2175), - [aux_sym__val_number_token4] = ACTIONS(2175), - [aux_sym__val_number_token5] = ACTIONS(2175), - [aux_sym__val_number_token6] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2175), - [sym__str_single_quotes] = ACTIONS(2175), - [sym__str_back_ticks] = ACTIONS(2175), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2175), - [sym__entry_separator] = ACTIONS(2181), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2181), - }, - [651] = { - [sym_comment] = STATE(651), - [anon_sym_export] = ACTIONS(1709), - [anon_sym_alias] = ACTIONS(1709), - [anon_sym_let] = ACTIONS(1709), - [anon_sym_let_DASHenv] = ACTIONS(1709), - [anon_sym_mut] = ACTIONS(1709), - [anon_sym_const] = ACTIONS(1709), - [aux_sym_cmd_identifier_token1] = ACTIONS(1709), - [aux_sym_cmd_identifier_token2] = ACTIONS(1721), - [aux_sym_cmd_identifier_token3] = ACTIONS(1721), - [aux_sym_cmd_identifier_token4] = ACTIONS(1721), - [aux_sym_cmd_identifier_token5] = ACTIONS(1721), - [aux_sym_cmd_identifier_token6] = ACTIONS(1721), - [aux_sym_cmd_identifier_token7] = ACTIONS(1721), - [aux_sym_cmd_identifier_token8] = ACTIONS(1709), - [aux_sym_cmd_identifier_token9] = ACTIONS(1709), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1709), - [aux_sym_cmd_identifier_token13] = ACTIONS(1709), - [aux_sym_cmd_identifier_token14] = ACTIONS(1709), - [aux_sym_cmd_identifier_token15] = ACTIONS(1709), - [aux_sym_cmd_identifier_token16] = ACTIONS(1721), - [aux_sym_cmd_identifier_token17] = ACTIONS(1721), - [aux_sym_cmd_identifier_token18] = ACTIONS(1721), - [aux_sym_cmd_identifier_token19] = ACTIONS(1721), - [aux_sym_cmd_identifier_token20] = ACTIONS(1721), - [aux_sym_cmd_identifier_token21] = ACTIONS(1721), - [aux_sym_cmd_identifier_token22] = ACTIONS(1721), - [aux_sym_cmd_identifier_token23] = ACTIONS(1721), - [aux_sym_cmd_identifier_token24] = ACTIONS(1721), - [aux_sym_cmd_identifier_token25] = ACTIONS(1721), - [aux_sym_cmd_identifier_token26] = ACTIONS(1721), - [aux_sym_cmd_identifier_token27] = ACTIONS(1721), - [aux_sym_cmd_identifier_token28] = ACTIONS(1721), - [aux_sym_cmd_identifier_token29] = ACTIONS(1721), - [aux_sym_cmd_identifier_token30] = ACTIONS(1721), - [aux_sym_cmd_identifier_token31] = ACTIONS(1721), - [aux_sym_cmd_identifier_token32] = ACTIONS(1721), - [aux_sym_cmd_identifier_token33] = ACTIONS(1721), - [aux_sym_cmd_identifier_token34] = ACTIONS(1709), - [aux_sym_cmd_identifier_token35] = ACTIONS(1721), - [aux_sym_cmd_identifier_token36] = ACTIONS(1721), - [aux_sym_cmd_identifier_token37] = ACTIONS(1721), - [aux_sym_cmd_identifier_token38] = ACTIONS(1709), - [aux_sym_cmd_identifier_token39] = ACTIONS(1721), - [aux_sym_cmd_identifier_token40] = ACTIONS(1721), - [anon_sym_def] = ACTIONS(1709), - [anon_sym_export_DASHenv] = ACTIONS(1709), - [anon_sym_extern] = ACTIONS(1709), - [anon_sym_module] = ACTIONS(1709), - [anon_sym_use] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_error] = ACTIONS(1709), - [anon_sym_DASH2] = ACTIONS(1709), - [anon_sym_break] = ACTIONS(1709), - [anon_sym_continue] = ACTIONS(1709), - [anon_sym_for] = ACTIONS(1709), - [anon_sym_in2] = ACTIONS(1709), - [anon_sym_loop] = ACTIONS(1709), - [anon_sym_make] = ACTIONS(1709), - [anon_sym_while] = ACTIONS(1709), - [anon_sym_do] = ACTIONS(1709), - [anon_sym_if] = ACTIONS(1709), - [anon_sym_else] = ACTIONS(1709), - [anon_sym_match] = ACTIONS(1709), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1709), - [anon_sym_catch] = ACTIONS(1709), - [anon_sym_return] = ACTIONS(1709), - [anon_sym_source] = ACTIONS(1709), - [anon_sym_source_DASHenv] = ACTIONS(1709), - [anon_sym_register] = ACTIONS(1709), - [anon_sym_hide] = ACTIONS(1709), - [anon_sym_hide_DASHenv] = ACTIONS(1709), - [anon_sym_overlay] = ACTIONS(1709), - [anon_sym_as] = ACTIONS(1709), - [anon_sym_PLUS2] = ACTIONS(1709), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1709), - [aux_sym__val_number_decimal_token2] = ACTIONS(1721), - [aux_sym__val_number_decimal_token3] = ACTIONS(1721), - [aux_sym__val_number_decimal_token4] = ACTIONS(1721), - [aux_sym__val_number_token1] = ACTIONS(1721), - [aux_sym__val_number_token2] = ACTIONS(1721), - [aux_sym__val_number_token3] = ACTIONS(1721), - [aux_sym__val_number_token4] = ACTIONS(1709), - [aux_sym__val_number_token5] = ACTIONS(1709), - [aux_sym__val_number_token6] = ACTIONS(1709), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym__str_single_quotes] = ACTIONS(1721), - [sym__str_back_ticks] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1781), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1721), - }, - [652] = { - [sym_comment] = STATE(652), - [anon_sym_export] = ACTIONS(2327), - [anon_sym_alias] = ACTIONS(2327), - [anon_sym_let] = ACTIONS(2327), - [anon_sym_let_DASHenv] = ACTIONS(2327), - [anon_sym_mut] = ACTIONS(2327), - [anon_sym_const] = ACTIONS(2327), - [aux_sym_cmd_identifier_token1] = ACTIONS(2327), - [aux_sym_cmd_identifier_token2] = ACTIONS(2329), - [aux_sym_cmd_identifier_token3] = ACTIONS(2329), - [aux_sym_cmd_identifier_token4] = ACTIONS(2329), - [aux_sym_cmd_identifier_token5] = ACTIONS(2329), - [aux_sym_cmd_identifier_token6] = ACTIONS(2329), - [aux_sym_cmd_identifier_token7] = ACTIONS(2329), - [aux_sym_cmd_identifier_token8] = ACTIONS(2327), - [aux_sym_cmd_identifier_token9] = ACTIONS(2327), - [aux_sym_cmd_identifier_token10] = ACTIONS(2329), - [aux_sym_cmd_identifier_token11] = ACTIONS(2329), - [aux_sym_cmd_identifier_token12] = ACTIONS(2327), - [aux_sym_cmd_identifier_token13] = ACTIONS(2327), - [aux_sym_cmd_identifier_token14] = ACTIONS(2327), - [aux_sym_cmd_identifier_token15] = ACTIONS(2327), - [aux_sym_cmd_identifier_token16] = ACTIONS(2329), - [aux_sym_cmd_identifier_token17] = ACTIONS(2329), - [aux_sym_cmd_identifier_token18] = ACTIONS(2329), - [aux_sym_cmd_identifier_token19] = ACTIONS(2329), - [aux_sym_cmd_identifier_token20] = ACTIONS(2329), - [aux_sym_cmd_identifier_token21] = ACTIONS(2329), - [aux_sym_cmd_identifier_token22] = ACTIONS(2329), - [aux_sym_cmd_identifier_token23] = ACTIONS(2329), - [aux_sym_cmd_identifier_token24] = ACTIONS(2329), - [aux_sym_cmd_identifier_token25] = ACTIONS(2329), - [aux_sym_cmd_identifier_token26] = ACTIONS(2329), - [aux_sym_cmd_identifier_token27] = ACTIONS(2329), - [aux_sym_cmd_identifier_token28] = ACTIONS(2329), - [aux_sym_cmd_identifier_token29] = ACTIONS(2329), - [aux_sym_cmd_identifier_token30] = ACTIONS(2329), - [aux_sym_cmd_identifier_token31] = ACTIONS(2329), - [aux_sym_cmd_identifier_token32] = ACTIONS(2329), - [aux_sym_cmd_identifier_token33] = ACTIONS(2329), - [aux_sym_cmd_identifier_token34] = ACTIONS(2327), - [aux_sym_cmd_identifier_token35] = ACTIONS(2329), - [aux_sym_cmd_identifier_token36] = ACTIONS(2329), - [aux_sym_cmd_identifier_token37] = ACTIONS(2329), - [aux_sym_cmd_identifier_token38] = ACTIONS(2327), - [aux_sym_cmd_identifier_token39] = ACTIONS(2329), - [aux_sym_cmd_identifier_token40] = ACTIONS(2329), - [anon_sym_def] = ACTIONS(2327), - [anon_sym_export_DASHenv] = ACTIONS(2327), - [anon_sym_extern] = ACTIONS(2327), - [anon_sym_module] = ACTIONS(2327), - [anon_sym_use] = ACTIONS(2327), - [anon_sym_LPAREN] = ACTIONS(2327), - [anon_sym_DOLLAR] = ACTIONS(2329), - [anon_sym_error] = ACTIONS(2327), - [anon_sym_DASH2] = ACTIONS(2327), - [anon_sym_break] = ACTIONS(2327), - [anon_sym_continue] = ACTIONS(2327), - [anon_sym_for] = ACTIONS(2327), - [anon_sym_in2] = ACTIONS(2327), - [anon_sym_loop] = ACTIONS(2327), - [anon_sym_make] = ACTIONS(2327), - [anon_sym_while] = ACTIONS(2327), - [anon_sym_do] = ACTIONS(2327), - [anon_sym_if] = ACTIONS(2327), - [anon_sym_else] = ACTIONS(2327), - [anon_sym_match] = ACTIONS(2327), - [anon_sym_RBRACE] = ACTIONS(2329), - [anon_sym_try] = ACTIONS(2327), - [anon_sym_catch] = ACTIONS(2327), - [anon_sym_return] = ACTIONS(2327), - [anon_sym_source] = ACTIONS(2327), - [anon_sym_source_DASHenv] = ACTIONS(2327), - [anon_sym_register] = ACTIONS(2327), - [anon_sym_hide] = ACTIONS(2327), - [anon_sym_hide_DASHenv] = ACTIONS(2327), - [anon_sym_overlay] = ACTIONS(2327), - [anon_sym_as] = ACTIONS(2327), - [anon_sym_LPAREN2] = ACTIONS(2329), - [anon_sym_PLUS2] = ACTIONS(2327), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2329), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2329), - [aux_sym__val_number_decimal_token4] = ACTIONS(2329), - [aux_sym__val_number_token1] = ACTIONS(2329), - [aux_sym__val_number_token2] = ACTIONS(2329), - [aux_sym__val_number_token3] = ACTIONS(2329), - [aux_sym__val_number_token4] = ACTIONS(2327), - [aux_sym__val_number_token5] = ACTIONS(2327), - [aux_sym__val_number_token6] = ACTIONS(2327), - [anon_sym_DQUOTE] = ACTIONS(2329), - [sym__str_single_quotes] = ACTIONS(2329), - [sym__str_back_ticks] = ACTIONS(2329), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2329), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2329), - }, - [653] = { - [sym_comment] = STATE(653), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_alias] = ACTIONS(1992), - [anon_sym_let] = ACTIONS(1992), - [anon_sym_let_DASHenv] = ACTIONS(1992), - [anon_sym_mut] = ACTIONS(1992), - [anon_sym_const] = ACTIONS(1992), - [aux_sym_cmd_identifier_token1] = ACTIONS(1992), - [aux_sym_cmd_identifier_token2] = ACTIONS(1992), - [aux_sym_cmd_identifier_token3] = ACTIONS(1992), - [aux_sym_cmd_identifier_token4] = ACTIONS(1992), - [aux_sym_cmd_identifier_token5] = ACTIONS(1992), - [aux_sym_cmd_identifier_token6] = ACTIONS(1992), - [aux_sym_cmd_identifier_token7] = ACTIONS(1992), - [aux_sym_cmd_identifier_token8] = ACTIONS(1992), - [aux_sym_cmd_identifier_token9] = ACTIONS(1992), - [aux_sym_cmd_identifier_token10] = ACTIONS(1992), - [aux_sym_cmd_identifier_token11] = ACTIONS(1992), - [aux_sym_cmd_identifier_token12] = ACTIONS(1992), - [aux_sym_cmd_identifier_token13] = ACTIONS(1992), - [aux_sym_cmd_identifier_token14] = ACTIONS(1992), - [aux_sym_cmd_identifier_token15] = ACTIONS(1992), - [aux_sym_cmd_identifier_token16] = ACTIONS(1992), - [aux_sym_cmd_identifier_token17] = ACTIONS(1992), - [aux_sym_cmd_identifier_token18] = ACTIONS(1992), - [aux_sym_cmd_identifier_token19] = ACTIONS(1992), - [aux_sym_cmd_identifier_token20] = ACTIONS(1992), - [aux_sym_cmd_identifier_token21] = ACTIONS(1992), - [aux_sym_cmd_identifier_token22] = ACTIONS(1992), - [aux_sym_cmd_identifier_token23] = ACTIONS(1992), - [aux_sym_cmd_identifier_token24] = ACTIONS(1992), - [aux_sym_cmd_identifier_token25] = ACTIONS(1992), - [aux_sym_cmd_identifier_token26] = ACTIONS(1992), - [aux_sym_cmd_identifier_token27] = ACTIONS(1992), - [aux_sym_cmd_identifier_token28] = ACTIONS(1992), - [aux_sym_cmd_identifier_token29] = ACTIONS(1992), - [aux_sym_cmd_identifier_token30] = ACTIONS(1992), - [aux_sym_cmd_identifier_token31] = ACTIONS(1992), - [aux_sym_cmd_identifier_token32] = ACTIONS(1992), - [aux_sym_cmd_identifier_token33] = ACTIONS(1992), - [aux_sym_cmd_identifier_token34] = ACTIONS(1992), - [aux_sym_cmd_identifier_token35] = ACTIONS(1992), - [aux_sym_cmd_identifier_token36] = ACTIONS(1992), - [aux_sym_cmd_identifier_token37] = ACTIONS(1992), - [aux_sym_cmd_identifier_token38] = ACTIONS(1992), - [aux_sym_cmd_identifier_token39] = ACTIONS(1992), - [aux_sym_cmd_identifier_token40] = ACTIONS(1992), - [anon_sym_def] = ACTIONS(1992), - [anon_sym_export_DASHenv] = ACTIONS(1992), - [anon_sym_extern] = ACTIONS(1992), - [anon_sym_module] = ACTIONS(1992), - [anon_sym_use] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1992), - [anon_sym_DOLLAR] = ACTIONS(1992), - [anon_sym_error] = ACTIONS(1992), - [anon_sym_DASH2] = ACTIONS(1992), - [anon_sym_break] = ACTIONS(1992), - [anon_sym_continue] = ACTIONS(1992), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_in2] = ACTIONS(1992), - [anon_sym_loop] = ACTIONS(1992), - [anon_sym_make] = ACTIONS(1992), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_do] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(1992), - [anon_sym_match] = ACTIONS(1992), - [anon_sym_RBRACE] = ACTIONS(1992), - [anon_sym_try] = ACTIONS(1992), - [anon_sym_catch] = ACTIONS(1992), - [anon_sym_return] = ACTIONS(1992), - [anon_sym_source] = ACTIONS(1992), - [anon_sym_source_DASHenv] = ACTIONS(1992), - [anon_sym_register] = ACTIONS(1992), - [anon_sym_hide] = ACTIONS(1992), - [anon_sym_hide_DASHenv] = ACTIONS(1992), - [anon_sym_overlay] = ACTIONS(1992), - [anon_sym_as] = ACTIONS(1992), - [anon_sym_PLUS2] = ACTIONS(1992), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1992), - [aux_sym__val_number_decimal_token1] = ACTIONS(1992), - [aux_sym__val_number_decimal_token2] = ACTIONS(1992), - [aux_sym__val_number_decimal_token3] = ACTIONS(1992), - [aux_sym__val_number_decimal_token4] = ACTIONS(1992), - [aux_sym__val_number_token1] = ACTIONS(1992), - [aux_sym__val_number_token2] = ACTIONS(1992), - [aux_sym__val_number_token3] = ACTIONS(1992), - [aux_sym__val_number_token4] = ACTIONS(1992), - [aux_sym__val_number_token5] = ACTIONS(1992), - [aux_sym__val_number_token6] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1992), - [sym__str_single_quotes] = ACTIONS(1992), - [sym__str_back_ticks] = ACTIONS(1992), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1992), - [sym__entry_separator] = ACTIONS(1994), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1994), - }, - [654] = { - [sym_comment] = STATE(654), [anon_sym_export] = ACTIONS(1010), [anon_sym_alias] = ACTIONS(1010), [anon_sym_let] = ACTIONS(1010), @@ -145395,1208 +145314,1308 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1012), }, + [651] = { + [sym_comment] = STATE(651), + [anon_sym_export] = ACTIONS(1014), + [anon_sym_alias] = ACTIONS(1014), + [anon_sym_let] = ACTIONS(1014), + [anon_sym_let_DASHenv] = ACTIONS(1014), + [anon_sym_mut] = ACTIONS(1014), + [anon_sym_const] = ACTIONS(1014), + [aux_sym_cmd_identifier_token1] = ACTIONS(1014), + [aux_sym_cmd_identifier_token2] = ACTIONS(1016), + [aux_sym_cmd_identifier_token3] = ACTIONS(1016), + [aux_sym_cmd_identifier_token4] = ACTIONS(1016), + [aux_sym_cmd_identifier_token5] = ACTIONS(1016), + [aux_sym_cmd_identifier_token6] = ACTIONS(1016), + [aux_sym_cmd_identifier_token7] = ACTIONS(1016), + [aux_sym_cmd_identifier_token8] = ACTIONS(1014), + [aux_sym_cmd_identifier_token9] = ACTIONS(1014), + [aux_sym_cmd_identifier_token10] = ACTIONS(1016), + [aux_sym_cmd_identifier_token11] = ACTIONS(1016), + [aux_sym_cmd_identifier_token12] = ACTIONS(1014), + [aux_sym_cmd_identifier_token13] = ACTIONS(1014), + [aux_sym_cmd_identifier_token14] = ACTIONS(1014), + [aux_sym_cmd_identifier_token15] = ACTIONS(1014), + [aux_sym_cmd_identifier_token16] = ACTIONS(1016), + [aux_sym_cmd_identifier_token17] = ACTIONS(1016), + [aux_sym_cmd_identifier_token18] = ACTIONS(1016), + [aux_sym_cmd_identifier_token19] = ACTIONS(1016), + [aux_sym_cmd_identifier_token20] = ACTIONS(1016), + [aux_sym_cmd_identifier_token21] = ACTIONS(1016), + [aux_sym_cmd_identifier_token22] = ACTIONS(1016), + [aux_sym_cmd_identifier_token23] = ACTIONS(1016), + [aux_sym_cmd_identifier_token24] = ACTIONS(1016), + [aux_sym_cmd_identifier_token25] = ACTIONS(1016), + [aux_sym_cmd_identifier_token26] = ACTIONS(1016), + [aux_sym_cmd_identifier_token27] = ACTIONS(1016), + [aux_sym_cmd_identifier_token28] = ACTIONS(1016), + [aux_sym_cmd_identifier_token29] = ACTIONS(1016), + [aux_sym_cmd_identifier_token30] = ACTIONS(1016), + [aux_sym_cmd_identifier_token31] = ACTIONS(1016), + [aux_sym_cmd_identifier_token32] = ACTIONS(1016), + [aux_sym_cmd_identifier_token33] = ACTIONS(1016), + [aux_sym_cmd_identifier_token34] = ACTIONS(1014), + [aux_sym_cmd_identifier_token35] = ACTIONS(1016), + [aux_sym_cmd_identifier_token36] = ACTIONS(1016), + [aux_sym_cmd_identifier_token37] = ACTIONS(1016), + [aux_sym_cmd_identifier_token38] = ACTIONS(1014), + [aux_sym_cmd_identifier_token39] = ACTIONS(1016), + [aux_sym_cmd_identifier_token40] = ACTIONS(1016), + [anon_sym_def] = ACTIONS(1014), + [anon_sym_export_DASHenv] = ACTIONS(1014), + [anon_sym_extern] = ACTIONS(1014), + [anon_sym_module] = ACTIONS(1014), + [anon_sym_use] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1016), + [anon_sym_DOLLAR] = ACTIONS(1016), + [anon_sym_error] = ACTIONS(1014), + [anon_sym_DASH2] = ACTIONS(1014), + [anon_sym_break] = ACTIONS(1014), + [anon_sym_continue] = ACTIONS(1014), + [anon_sym_for] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_loop] = ACTIONS(1014), + [anon_sym_make] = ACTIONS(1014), + [anon_sym_while] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1014), + [anon_sym_if] = ACTIONS(1014), + [anon_sym_else] = ACTIONS(1014), + [anon_sym_match] = ACTIONS(1014), + [anon_sym_RBRACE] = ACTIONS(1016), + [anon_sym_try] = ACTIONS(1014), + [anon_sym_catch] = ACTIONS(1014), + [anon_sym_return] = ACTIONS(1014), + [anon_sym_source] = ACTIONS(1014), + [anon_sym_source_DASHenv] = ACTIONS(1014), + [anon_sym_register] = ACTIONS(1014), + [anon_sym_hide] = ACTIONS(1014), + [anon_sym_hide_DASHenv] = ACTIONS(1014), + [anon_sym_overlay] = ACTIONS(1014), + [anon_sym_as] = ACTIONS(1014), + [anon_sym_PLUS2] = ACTIONS(1014), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1016), + [anon_sym_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1016), + [aux_sym__val_number_decimal_token1] = ACTIONS(1014), + [aux_sym__val_number_decimal_token2] = ACTIONS(1016), + [aux_sym__val_number_decimal_token3] = ACTIONS(1016), + [aux_sym__val_number_decimal_token4] = ACTIONS(1016), + [aux_sym__val_number_token1] = ACTIONS(1016), + [aux_sym__val_number_token2] = ACTIONS(1016), + [aux_sym__val_number_token3] = ACTIONS(1016), + [aux_sym__val_number_token4] = ACTIONS(1014), + [aux_sym__val_number_token5] = ACTIONS(1014), + [aux_sym__val_number_token6] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1016), + [sym__str_single_quotes] = ACTIONS(1016), + [sym__str_back_ticks] = ACTIONS(1016), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1016), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1016), + }, + [652] = { + [sym_comment] = STATE(652), + [anon_sym_export] = ACTIONS(1853), + [anon_sym_alias] = ACTIONS(1853), + [anon_sym_let] = ACTIONS(1853), + [anon_sym_let_DASHenv] = ACTIONS(1853), + [anon_sym_mut] = ACTIONS(1853), + [anon_sym_const] = ACTIONS(1853), + [aux_sym_cmd_identifier_token1] = ACTIONS(1853), + [aux_sym_cmd_identifier_token2] = ACTIONS(1853), + [aux_sym_cmd_identifier_token3] = ACTIONS(1853), + [aux_sym_cmd_identifier_token4] = ACTIONS(1853), + [aux_sym_cmd_identifier_token5] = ACTIONS(1853), + [aux_sym_cmd_identifier_token6] = ACTIONS(1853), + [aux_sym_cmd_identifier_token7] = ACTIONS(1853), + [aux_sym_cmd_identifier_token8] = ACTIONS(1853), + [aux_sym_cmd_identifier_token9] = ACTIONS(1853), + [aux_sym_cmd_identifier_token10] = ACTIONS(1853), + [aux_sym_cmd_identifier_token11] = ACTIONS(1853), + [aux_sym_cmd_identifier_token12] = ACTIONS(1853), + [aux_sym_cmd_identifier_token13] = ACTIONS(1853), + [aux_sym_cmd_identifier_token14] = ACTIONS(1853), + [aux_sym_cmd_identifier_token15] = ACTIONS(1853), + [aux_sym_cmd_identifier_token16] = ACTIONS(1853), + [aux_sym_cmd_identifier_token17] = ACTIONS(1853), + [aux_sym_cmd_identifier_token18] = ACTIONS(1853), + [aux_sym_cmd_identifier_token19] = ACTIONS(1853), + [aux_sym_cmd_identifier_token20] = ACTIONS(1853), + [aux_sym_cmd_identifier_token21] = ACTIONS(1853), + [aux_sym_cmd_identifier_token22] = ACTIONS(1853), + [aux_sym_cmd_identifier_token23] = ACTIONS(1853), + [aux_sym_cmd_identifier_token24] = ACTIONS(1853), + [aux_sym_cmd_identifier_token25] = ACTIONS(1853), + [aux_sym_cmd_identifier_token26] = ACTIONS(1853), + [aux_sym_cmd_identifier_token27] = ACTIONS(1853), + [aux_sym_cmd_identifier_token28] = ACTIONS(1853), + [aux_sym_cmd_identifier_token29] = ACTIONS(1853), + [aux_sym_cmd_identifier_token30] = ACTIONS(1853), + [aux_sym_cmd_identifier_token31] = ACTIONS(1853), + [aux_sym_cmd_identifier_token32] = ACTIONS(1853), + [aux_sym_cmd_identifier_token33] = ACTIONS(1853), + [aux_sym_cmd_identifier_token34] = ACTIONS(1853), + [aux_sym_cmd_identifier_token35] = ACTIONS(1853), + [aux_sym_cmd_identifier_token36] = ACTIONS(1853), + [aux_sym_cmd_identifier_token37] = ACTIONS(1853), + [aux_sym_cmd_identifier_token38] = ACTIONS(1853), + [aux_sym_cmd_identifier_token39] = ACTIONS(1853), + [aux_sym_cmd_identifier_token40] = ACTIONS(1853), + [anon_sym_def] = ACTIONS(1853), + [anon_sym_export_DASHenv] = ACTIONS(1853), + [anon_sym_extern] = ACTIONS(1853), + [anon_sym_module] = ACTIONS(1853), + [anon_sym_use] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1853), + [anon_sym_DOLLAR] = ACTIONS(1853), + [anon_sym_error] = ACTIONS(1853), + [anon_sym_DASH2] = ACTIONS(1853), + [anon_sym_break] = ACTIONS(1853), + [anon_sym_continue] = ACTIONS(1853), + [anon_sym_for] = ACTIONS(1853), + [anon_sym_in2] = ACTIONS(1853), + [anon_sym_loop] = ACTIONS(1853), + [anon_sym_make] = ACTIONS(1853), + [anon_sym_while] = ACTIONS(1853), + [anon_sym_do] = ACTIONS(1853), + [anon_sym_if] = ACTIONS(1853), + [anon_sym_else] = ACTIONS(1853), + [anon_sym_match] = ACTIONS(1853), + [anon_sym_RBRACE] = ACTIONS(1853), + [anon_sym_try] = ACTIONS(1853), + [anon_sym_catch] = ACTIONS(1853), + [anon_sym_return] = ACTIONS(1853), + [anon_sym_source] = ACTIONS(1853), + [anon_sym_source_DASHenv] = ACTIONS(1853), + [anon_sym_register] = ACTIONS(1853), + [anon_sym_hide] = ACTIONS(1853), + [anon_sym_hide_DASHenv] = ACTIONS(1853), + [anon_sym_overlay] = ACTIONS(1853), + [anon_sym_as] = ACTIONS(1853), + [anon_sym_PLUS2] = ACTIONS(1853), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1853), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1853), + [aux_sym__val_number_decimal_token1] = ACTIONS(1853), + [aux_sym__val_number_decimal_token2] = ACTIONS(1853), + [aux_sym__val_number_decimal_token3] = ACTIONS(1853), + [aux_sym__val_number_decimal_token4] = ACTIONS(1853), + [aux_sym__val_number_token1] = ACTIONS(1853), + [aux_sym__val_number_token2] = ACTIONS(1853), + [aux_sym__val_number_token3] = ACTIONS(1853), + [aux_sym__val_number_token4] = ACTIONS(1853), + [aux_sym__val_number_token5] = ACTIONS(1853), + [aux_sym__val_number_token6] = ACTIONS(1853), + [anon_sym_DQUOTE] = ACTIONS(1853), + [sym__str_single_quotes] = ACTIONS(1853), + [sym__str_back_ticks] = ACTIONS(1853), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1853), + [sym__entry_separator] = ACTIONS(1855), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1855), + }, + [653] = { + [sym_comment] = STATE(653), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_alias] = ACTIONS(1044), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_let_DASHenv] = ACTIONS(1044), + [anon_sym_mut] = ACTIONS(1044), + [anon_sym_const] = ACTIONS(1044), + [aux_sym_cmd_identifier_token1] = ACTIONS(1044), + [aux_sym_cmd_identifier_token2] = ACTIONS(1044), + [aux_sym_cmd_identifier_token3] = ACTIONS(1044), + [aux_sym_cmd_identifier_token4] = ACTIONS(1044), + [aux_sym_cmd_identifier_token5] = ACTIONS(1044), + [aux_sym_cmd_identifier_token6] = ACTIONS(1044), + [aux_sym_cmd_identifier_token7] = ACTIONS(1044), + [aux_sym_cmd_identifier_token8] = ACTIONS(1044), + [aux_sym_cmd_identifier_token9] = ACTIONS(1044), + [aux_sym_cmd_identifier_token10] = ACTIONS(1044), + [aux_sym_cmd_identifier_token11] = ACTIONS(1044), + [aux_sym_cmd_identifier_token12] = ACTIONS(1044), + [aux_sym_cmd_identifier_token13] = ACTIONS(1044), + [aux_sym_cmd_identifier_token14] = ACTIONS(1044), + [aux_sym_cmd_identifier_token15] = ACTIONS(1044), + [aux_sym_cmd_identifier_token16] = ACTIONS(1044), + [aux_sym_cmd_identifier_token17] = ACTIONS(1044), + [aux_sym_cmd_identifier_token18] = ACTIONS(1044), + [aux_sym_cmd_identifier_token19] = ACTIONS(1044), + [aux_sym_cmd_identifier_token20] = ACTIONS(1044), + [aux_sym_cmd_identifier_token21] = ACTIONS(1044), + [aux_sym_cmd_identifier_token22] = ACTIONS(1044), + [aux_sym_cmd_identifier_token23] = ACTIONS(1044), + [aux_sym_cmd_identifier_token24] = ACTIONS(1044), + [aux_sym_cmd_identifier_token25] = ACTIONS(1044), + [aux_sym_cmd_identifier_token26] = ACTIONS(1044), + [aux_sym_cmd_identifier_token27] = ACTIONS(1044), + [aux_sym_cmd_identifier_token28] = ACTIONS(1044), + [aux_sym_cmd_identifier_token29] = ACTIONS(1044), + [aux_sym_cmd_identifier_token30] = ACTIONS(1044), + [aux_sym_cmd_identifier_token31] = ACTIONS(1044), + [aux_sym_cmd_identifier_token32] = ACTIONS(1044), + [aux_sym_cmd_identifier_token33] = ACTIONS(1044), + [aux_sym_cmd_identifier_token34] = ACTIONS(1044), + [aux_sym_cmd_identifier_token35] = ACTIONS(1044), + [aux_sym_cmd_identifier_token36] = ACTIONS(1044), + [aux_sym_cmd_identifier_token37] = ACTIONS(1044), + [aux_sym_cmd_identifier_token38] = ACTIONS(1044), + [aux_sym_cmd_identifier_token39] = ACTIONS(1044), + [aux_sym_cmd_identifier_token40] = ACTIONS(1044), + [anon_sym_def] = ACTIONS(1044), + [anon_sym_export_DASHenv] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_use] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_error] = ACTIONS(1044), + [anon_sym_DASH2] = ACTIONS(1044), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_in2] = ACTIONS(1044), + [anon_sym_loop] = ACTIONS(1044), + [anon_sym_make] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [anon_sym_do] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_else] = ACTIONS(1044), + [anon_sym_match] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1044), + [anon_sym_try] = ACTIONS(1044), + [anon_sym_catch] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_source] = ACTIONS(1044), + [anon_sym_source_DASHenv] = ACTIONS(1044), + [anon_sym_register] = ACTIONS(1044), + [anon_sym_hide] = ACTIONS(1044), + [anon_sym_hide_DASHenv] = ACTIONS(1044), + [anon_sym_overlay] = ACTIONS(1044), + [anon_sym_as] = ACTIONS(1044), + [anon_sym_PLUS2] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1044), + [aux_sym__val_number_decimal_token1] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1044), + [aux_sym__val_number_decimal_token3] = ACTIONS(1044), + [aux_sym__val_number_decimal_token4] = ACTIONS(1044), + [aux_sym__val_number_token1] = ACTIONS(1044), + [aux_sym__val_number_token2] = ACTIONS(1044), + [aux_sym__val_number_token3] = ACTIONS(1044), + [aux_sym__val_number_token4] = ACTIONS(1044), + [aux_sym__val_number_token5] = ACTIONS(1044), + [aux_sym__val_number_token6] = ACTIONS(1044), + [anon_sym_DQUOTE] = ACTIONS(1044), + [sym__str_single_quotes] = ACTIONS(1044), + [sym__str_back_ticks] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1044), + [sym__entry_separator] = ACTIONS(1046), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1046), + }, + [654] = { + [sym_comment] = STATE(654), + [anon_sym_export] = ACTIONS(2444), + [anon_sym_alias] = ACTIONS(2444), + [anon_sym_let] = ACTIONS(2444), + [anon_sym_let_DASHenv] = ACTIONS(2444), + [anon_sym_mut] = ACTIONS(2444), + [anon_sym_const] = ACTIONS(2444), + [aux_sym_cmd_identifier_token1] = ACTIONS(2444), + [aux_sym_cmd_identifier_token2] = ACTIONS(2444), + [aux_sym_cmd_identifier_token3] = ACTIONS(2444), + [aux_sym_cmd_identifier_token4] = ACTIONS(2444), + [aux_sym_cmd_identifier_token5] = ACTIONS(2444), + [aux_sym_cmd_identifier_token6] = ACTIONS(2444), + [aux_sym_cmd_identifier_token7] = ACTIONS(2444), + [aux_sym_cmd_identifier_token8] = ACTIONS(2444), + [aux_sym_cmd_identifier_token9] = ACTIONS(2444), + [aux_sym_cmd_identifier_token10] = ACTIONS(2444), + [aux_sym_cmd_identifier_token11] = ACTIONS(2444), + [aux_sym_cmd_identifier_token12] = ACTIONS(2444), + [aux_sym_cmd_identifier_token13] = ACTIONS(2444), + [aux_sym_cmd_identifier_token14] = ACTIONS(2444), + [aux_sym_cmd_identifier_token15] = ACTIONS(2444), + [aux_sym_cmd_identifier_token16] = ACTIONS(2444), + [aux_sym_cmd_identifier_token17] = ACTIONS(2444), + [aux_sym_cmd_identifier_token18] = ACTIONS(2444), + [aux_sym_cmd_identifier_token19] = ACTIONS(2444), + [aux_sym_cmd_identifier_token20] = ACTIONS(2444), + [aux_sym_cmd_identifier_token21] = ACTIONS(2444), + [aux_sym_cmd_identifier_token22] = ACTIONS(2444), + [aux_sym_cmd_identifier_token23] = ACTIONS(2444), + [aux_sym_cmd_identifier_token24] = ACTIONS(2444), + [aux_sym_cmd_identifier_token25] = ACTIONS(2444), + [aux_sym_cmd_identifier_token26] = ACTIONS(2444), + [aux_sym_cmd_identifier_token27] = ACTIONS(2444), + [aux_sym_cmd_identifier_token28] = ACTIONS(2444), + [aux_sym_cmd_identifier_token29] = ACTIONS(2444), + [aux_sym_cmd_identifier_token30] = ACTIONS(2444), + [aux_sym_cmd_identifier_token31] = ACTIONS(2444), + [aux_sym_cmd_identifier_token32] = ACTIONS(2444), + [aux_sym_cmd_identifier_token33] = ACTIONS(2444), + [aux_sym_cmd_identifier_token34] = ACTIONS(2444), + [aux_sym_cmd_identifier_token35] = ACTIONS(2444), + [aux_sym_cmd_identifier_token36] = ACTIONS(2444), + [aux_sym_cmd_identifier_token37] = ACTIONS(2444), + [aux_sym_cmd_identifier_token38] = ACTIONS(2444), + [aux_sym_cmd_identifier_token39] = ACTIONS(2444), + [aux_sym_cmd_identifier_token40] = ACTIONS(2444), + [anon_sym_def] = ACTIONS(2444), + [anon_sym_export_DASHenv] = ACTIONS(2444), + [anon_sym_extern] = ACTIONS(2444), + [anon_sym_module] = ACTIONS(2444), + [anon_sym_use] = ACTIONS(2444), + [anon_sym_LPAREN] = ACTIONS(2444), + [anon_sym_DOLLAR] = ACTIONS(2444), + [anon_sym_error] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2444), + [anon_sym_break] = ACTIONS(2444), + [anon_sym_continue] = ACTIONS(2444), + [anon_sym_for] = ACTIONS(2444), + [anon_sym_in2] = ACTIONS(2444), + [anon_sym_loop] = ACTIONS(2444), + [anon_sym_make] = ACTIONS(2444), + [anon_sym_while] = ACTIONS(2444), + [anon_sym_do] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2444), + [anon_sym_else] = ACTIONS(2444), + [anon_sym_match] = ACTIONS(2444), + [anon_sym_RBRACE] = ACTIONS(2444), + [anon_sym_try] = ACTIONS(2444), + [anon_sym_catch] = ACTIONS(2444), + [anon_sym_return] = ACTIONS(2444), + [anon_sym_source] = ACTIONS(2444), + [anon_sym_source_DASHenv] = ACTIONS(2444), + [anon_sym_register] = ACTIONS(2444), + [anon_sym_hide] = ACTIONS(2444), + [anon_sym_hide_DASHenv] = ACTIONS(2444), + [anon_sym_overlay] = ACTIONS(2444), + [anon_sym_as] = ACTIONS(2444), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2444), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2444), + [aux_sym__val_number_decimal_token1] = ACTIONS(2444), + [aux_sym__val_number_decimal_token2] = ACTIONS(2444), + [aux_sym__val_number_decimal_token3] = ACTIONS(2444), + [aux_sym__val_number_decimal_token4] = ACTIONS(2444), + [aux_sym__val_number_token1] = ACTIONS(2444), + [aux_sym__val_number_token2] = ACTIONS(2444), + [aux_sym__val_number_token3] = ACTIONS(2444), + [aux_sym__val_number_token4] = ACTIONS(2444), + [aux_sym__val_number_token5] = ACTIONS(2444), + [aux_sym__val_number_token6] = ACTIONS(2444), + [anon_sym_DQUOTE] = ACTIONS(2444), + [sym__str_single_quotes] = ACTIONS(2444), + [sym__str_back_ticks] = ACTIONS(2444), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2444), + [sym__entry_separator] = ACTIONS(2446), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2446), + }, [655] = { [sym_comment] = STATE(655), - [anon_sym_export] = ACTIONS(2425), - [anon_sym_alias] = ACTIONS(2425), - [anon_sym_let] = ACTIONS(2425), - [anon_sym_let_DASHenv] = ACTIONS(2425), - [anon_sym_mut] = ACTIONS(2425), - [anon_sym_const] = ACTIONS(2425), - [aux_sym_cmd_identifier_token1] = ACTIONS(2425), - [aux_sym_cmd_identifier_token2] = ACTIONS(2425), - [aux_sym_cmd_identifier_token3] = ACTIONS(2425), - [aux_sym_cmd_identifier_token4] = ACTIONS(2425), - [aux_sym_cmd_identifier_token5] = ACTIONS(2425), - [aux_sym_cmd_identifier_token6] = ACTIONS(2425), - [aux_sym_cmd_identifier_token7] = ACTIONS(2425), - [aux_sym_cmd_identifier_token8] = ACTIONS(2425), - [aux_sym_cmd_identifier_token9] = ACTIONS(2425), - [aux_sym_cmd_identifier_token10] = ACTIONS(2425), - [aux_sym_cmd_identifier_token11] = ACTIONS(2425), - [aux_sym_cmd_identifier_token12] = ACTIONS(2425), - [aux_sym_cmd_identifier_token13] = ACTIONS(2425), - [aux_sym_cmd_identifier_token14] = ACTIONS(2425), - [aux_sym_cmd_identifier_token15] = ACTIONS(2425), - [aux_sym_cmd_identifier_token16] = ACTIONS(2425), - [aux_sym_cmd_identifier_token17] = ACTIONS(2425), - [aux_sym_cmd_identifier_token18] = ACTIONS(2425), - [aux_sym_cmd_identifier_token19] = ACTIONS(2425), - [aux_sym_cmd_identifier_token20] = ACTIONS(2425), - [aux_sym_cmd_identifier_token21] = ACTIONS(2425), - [aux_sym_cmd_identifier_token22] = ACTIONS(2425), - [aux_sym_cmd_identifier_token23] = ACTIONS(2425), - [aux_sym_cmd_identifier_token24] = ACTIONS(2425), - [aux_sym_cmd_identifier_token25] = ACTIONS(2425), - [aux_sym_cmd_identifier_token26] = ACTIONS(2425), - [aux_sym_cmd_identifier_token27] = ACTIONS(2425), - [aux_sym_cmd_identifier_token28] = ACTIONS(2425), - [aux_sym_cmd_identifier_token29] = ACTIONS(2425), - [aux_sym_cmd_identifier_token30] = ACTIONS(2425), - [aux_sym_cmd_identifier_token31] = ACTIONS(2425), - [aux_sym_cmd_identifier_token32] = ACTIONS(2425), - [aux_sym_cmd_identifier_token33] = ACTIONS(2425), - [aux_sym_cmd_identifier_token34] = ACTIONS(2425), - [aux_sym_cmd_identifier_token35] = ACTIONS(2425), - [aux_sym_cmd_identifier_token36] = ACTIONS(2425), - [aux_sym_cmd_identifier_token37] = ACTIONS(2425), - [aux_sym_cmd_identifier_token38] = ACTIONS(2425), - [aux_sym_cmd_identifier_token39] = ACTIONS(2425), - [aux_sym_cmd_identifier_token40] = ACTIONS(2425), - [anon_sym_def] = ACTIONS(2425), - [anon_sym_export_DASHenv] = ACTIONS(2425), - [anon_sym_extern] = ACTIONS(2425), - [anon_sym_module] = ACTIONS(2425), - [anon_sym_use] = ACTIONS(2425), - [anon_sym_LPAREN] = ACTIONS(2425), - [anon_sym_DOLLAR] = ACTIONS(2425), - [anon_sym_error] = ACTIONS(2425), - [anon_sym_DASH2] = ACTIONS(2425), - [anon_sym_break] = ACTIONS(2425), - [anon_sym_continue] = ACTIONS(2425), - [anon_sym_for] = ACTIONS(2425), - [anon_sym_in2] = ACTIONS(2425), - [anon_sym_loop] = ACTIONS(2425), - [anon_sym_make] = ACTIONS(2425), - [anon_sym_while] = ACTIONS(2425), - [anon_sym_do] = ACTIONS(2425), - [anon_sym_if] = ACTIONS(2425), - [anon_sym_else] = ACTIONS(2425), - [anon_sym_match] = ACTIONS(2425), - [anon_sym_RBRACE] = ACTIONS(2425), - [anon_sym_try] = ACTIONS(2425), - [anon_sym_catch] = ACTIONS(2425), - [anon_sym_return] = ACTIONS(2425), - [anon_sym_source] = ACTIONS(2425), - [anon_sym_source_DASHenv] = ACTIONS(2425), - [anon_sym_register] = ACTIONS(2425), - [anon_sym_hide] = ACTIONS(2425), - [anon_sym_hide_DASHenv] = ACTIONS(2425), - [anon_sym_overlay] = ACTIONS(2425), - [anon_sym_as] = ACTIONS(2425), - [anon_sym_PLUS2] = ACTIONS(2425), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2425), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2425), - [aux_sym__val_number_decimal_token1] = ACTIONS(2425), - [aux_sym__val_number_decimal_token2] = ACTIONS(2425), - [aux_sym__val_number_decimal_token3] = ACTIONS(2425), - [aux_sym__val_number_decimal_token4] = ACTIONS(2425), - [aux_sym__val_number_token1] = ACTIONS(2425), - [aux_sym__val_number_token2] = ACTIONS(2425), - [aux_sym__val_number_token3] = ACTIONS(2425), - [aux_sym__val_number_token4] = ACTIONS(2425), - [aux_sym__val_number_token5] = ACTIONS(2425), - [aux_sym__val_number_token6] = ACTIONS(2425), - [anon_sym_DQUOTE] = ACTIONS(2425), - [sym__str_single_quotes] = ACTIONS(2425), - [sym__str_back_ticks] = ACTIONS(2425), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2425), - [sym__entry_separator] = ACTIONS(2427), + [anon_sym_export] = ACTIONS(2448), + [anon_sym_alias] = ACTIONS(2448), + [anon_sym_let] = ACTIONS(2448), + [anon_sym_let_DASHenv] = ACTIONS(2448), + [anon_sym_mut] = ACTIONS(2448), + [anon_sym_const] = ACTIONS(2448), + [aux_sym_cmd_identifier_token1] = ACTIONS(2448), + [aux_sym_cmd_identifier_token2] = ACTIONS(2448), + [aux_sym_cmd_identifier_token3] = ACTIONS(2448), + [aux_sym_cmd_identifier_token4] = ACTIONS(2448), + [aux_sym_cmd_identifier_token5] = ACTIONS(2448), + [aux_sym_cmd_identifier_token6] = ACTIONS(2448), + [aux_sym_cmd_identifier_token7] = ACTIONS(2448), + [aux_sym_cmd_identifier_token8] = ACTIONS(2448), + [aux_sym_cmd_identifier_token9] = ACTIONS(2448), + [aux_sym_cmd_identifier_token10] = ACTIONS(2448), + [aux_sym_cmd_identifier_token11] = ACTIONS(2448), + [aux_sym_cmd_identifier_token12] = ACTIONS(2448), + [aux_sym_cmd_identifier_token13] = ACTIONS(2448), + [aux_sym_cmd_identifier_token14] = ACTIONS(2448), + [aux_sym_cmd_identifier_token15] = ACTIONS(2448), + [aux_sym_cmd_identifier_token16] = ACTIONS(2448), + [aux_sym_cmd_identifier_token17] = ACTIONS(2448), + [aux_sym_cmd_identifier_token18] = ACTIONS(2448), + [aux_sym_cmd_identifier_token19] = ACTIONS(2448), + [aux_sym_cmd_identifier_token20] = ACTIONS(2448), + [aux_sym_cmd_identifier_token21] = ACTIONS(2448), + [aux_sym_cmd_identifier_token22] = ACTIONS(2448), + [aux_sym_cmd_identifier_token23] = ACTIONS(2448), + [aux_sym_cmd_identifier_token24] = ACTIONS(2448), + [aux_sym_cmd_identifier_token25] = ACTIONS(2448), + [aux_sym_cmd_identifier_token26] = ACTIONS(2448), + [aux_sym_cmd_identifier_token27] = ACTIONS(2448), + [aux_sym_cmd_identifier_token28] = ACTIONS(2448), + [aux_sym_cmd_identifier_token29] = ACTIONS(2448), + [aux_sym_cmd_identifier_token30] = ACTIONS(2448), + [aux_sym_cmd_identifier_token31] = ACTIONS(2448), + [aux_sym_cmd_identifier_token32] = ACTIONS(2448), + [aux_sym_cmd_identifier_token33] = ACTIONS(2448), + [aux_sym_cmd_identifier_token34] = ACTIONS(2448), + [aux_sym_cmd_identifier_token35] = ACTIONS(2448), + [aux_sym_cmd_identifier_token36] = ACTIONS(2448), + [aux_sym_cmd_identifier_token37] = ACTIONS(2448), + [aux_sym_cmd_identifier_token38] = ACTIONS(2448), + [aux_sym_cmd_identifier_token39] = ACTIONS(2448), + [aux_sym_cmd_identifier_token40] = ACTIONS(2448), + [anon_sym_def] = ACTIONS(2448), + [anon_sym_export_DASHenv] = ACTIONS(2448), + [anon_sym_extern] = ACTIONS(2448), + [anon_sym_module] = ACTIONS(2448), + [anon_sym_use] = ACTIONS(2448), + [anon_sym_LPAREN] = ACTIONS(2448), + [anon_sym_DOLLAR] = ACTIONS(2448), + [anon_sym_error] = ACTIONS(2448), + [anon_sym_DASH2] = ACTIONS(2448), + [anon_sym_break] = ACTIONS(2448), + [anon_sym_continue] = ACTIONS(2448), + [anon_sym_for] = ACTIONS(2448), + [anon_sym_in2] = ACTIONS(2448), + [anon_sym_loop] = ACTIONS(2448), + [anon_sym_make] = ACTIONS(2448), + [anon_sym_while] = ACTIONS(2448), + [anon_sym_do] = ACTIONS(2448), + [anon_sym_if] = ACTIONS(2448), + [anon_sym_else] = ACTIONS(2448), + [anon_sym_match] = ACTIONS(2448), + [anon_sym_RBRACE] = ACTIONS(2448), + [anon_sym_try] = ACTIONS(2448), + [anon_sym_catch] = ACTIONS(2448), + [anon_sym_return] = ACTIONS(2448), + [anon_sym_source] = ACTIONS(2448), + [anon_sym_source_DASHenv] = ACTIONS(2448), + [anon_sym_register] = ACTIONS(2448), + [anon_sym_hide] = ACTIONS(2448), + [anon_sym_hide_DASHenv] = ACTIONS(2448), + [anon_sym_overlay] = ACTIONS(2448), + [anon_sym_as] = ACTIONS(2448), + [anon_sym_PLUS2] = ACTIONS(2448), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2448), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2448), + [aux_sym__val_number_decimal_token1] = ACTIONS(2448), + [aux_sym__val_number_decimal_token2] = ACTIONS(2448), + [aux_sym__val_number_decimal_token3] = ACTIONS(2448), + [aux_sym__val_number_decimal_token4] = ACTIONS(2448), + [aux_sym__val_number_token1] = ACTIONS(2448), + [aux_sym__val_number_token2] = ACTIONS(2448), + [aux_sym__val_number_token3] = ACTIONS(2448), + [aux_sym__val_number_token4] = ACTIONS(2448), + [aux_sym__val_number_token5] = ACTIONS(2448), + [aux_sym__val_number_token6] = ACTIONS(2448), + [anon_sym_DQUOTE] = ACTIONS(2448), + [sym__str_single_quotes] = ACTIONS(2448), + [sym__str_back_ticks] = ACTIONS(2448), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2448), + [sym__entry_separator] = ACTIONS(2450), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2427), + [sym_raw_string_begin] = ACTIONS(2450), }, [656] = { [sym_comment] = STATE(656), - [anon_sym_export] = ACTIONS(2094), - [anon_sym_alias] = ACTIONS(2094), - [anon_sym_let] = ACTIONS(2094), - [anon_sym_let_DASHenv] = ACTIONS(2094), - [anon_sym_mut] = ACTIONS(2094), - [anon_sym_const] = ACTIONS(2094), - [aux_sym_cmd_identifier_token1] = ACTIONS(2094), - [aux_sym_cmd_identifier_token2] = ACTIONS(2094), - [aux_sym_cmd_identifier_token3] = ACTIONS(2094), - [aux_sym_cmd_identifier_token4] = ACTIONS(2094), - [aux_sym_cmd_identifier_token5] = ACTIONS(2094), - [aux_sym_cmd_identifier_token6] = ACTIONS(2094), - [aux_sym_cmd_identifier_token7] = ACTIONS(2094), - [aux_sym_cmd_identifier_token8] = ACTIONS(2094), - [aux_sym_cmd_identifier_token9] = ACTIONS(2094), - [aux_sym_cmd_identifier_token10] = ACTIONS(2094), - [aux_sym_cmd_identifier_token11] = ACTIONS(2094), - [aux_sym_cmd_identifier_token12] = ACTIONS(2094), - [aux_sym_cmd_identifier_token13] = ACTIONS(2094), - [aux_sym_cmd_identifier_token14] = ACTIONS(2094), - [aux_sym_cmd_identifier_token15] = ACTIONS(2094), - [aux_sym_cmd_identifier_token16] = ACTIONS(2094), - [aux_sym_cmd_identifier_token17] = ACTIONS(2094), - [aux_sym_cmd_identifier_token18] = ACTIONS(2094), - [aux_sym_cmd_identifier_token19] = ACTIONS(2094), - [aux_sym_cmd_identifier_token20] = ACTIONS(2094), - [aux_sym_cmd_identifier_token21] = ACTIONS(2094), - [aux_sym_cmd_identifier_token22] = ACTIONS(2094), - [aux_sym_cmd_identifier_token23] = ACTIONS(2094), - [aux_sym_cmd_identifier_token24] = ACTIONS(2094), - [aux_sym_cmd_identifier_token25] = ACTIONS(2094), - [aux_sym_cmd_identifier_token26] = ACTIONS(2094), - [aux_sym_cmd_identifier_token27] = ACTIONS(2094), - [aux_sym_cmd_identifier_token28] = ACTIONS(2094), - [aux_sym_cmd_identifier_token29] = ACTIONS(2094), - [aux_sym_cmd_identifier_token30] = ACTIONS(2094), - [aux_sym_cmd_identifier_token31] = ACTIONS(2094), - [aux_sym_cmd_identifier_token32] = ACTIONS(2094), - [aux_sym_cmd_identifier_token33] = ACTIONS(2094), - [aux_sym_cmd_identifier_token34] = ACTIONS(2094), - [aux_sym_cmd_identifier_token35] = ACTIONS(2094), - [aux_sym_cmd_identifier_token36] = ACTIONS(2094), - [aux_sym_cmd_identifier_token37] = ACTIONS(2094), - [aux_sym_cmd_identifier_token38] = ACTIONS(2094), - [aux_sym_cmd_identifier_token39] = ACTIONS(2094), - [aux_sym_cmd_identifier_token40] = ACTIONS(2094), - [anon_sym_def] = ACTIONS(2094), - [anon_sym_export_DASHenv] = ACTIONS(2094), - [anon_sym_extern] = ACTIONS(2094), - [anon_sym_module] = ACTIONS(2094), - [anon_sym_use] = ACTIONS(2094), - [anon_sym_LPAREN] = ACTIONS(2094), - [anon_sym_DOLLAR] = ACTIONS(2094), - [anon_sym_error] = ACTIONS(2094), - [anon_sym_DASH2] = ACTIONS(2094), - [anon_sym_break] = ACTIONS(2094), - [anon_sym_continue] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2094), - [anon_sym_in2] = ACTIONS(2094), - [anon_sym_loop] = ACTIONS(2094), - [anon_sym_make] = ACTIONS(2094), - [anon_sym_while] = ACTIONS(2094), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_if] = ACTIONS(2094), - [anon_sym_else] = ACTIONS(2094), - [anon_sym_match] = ACTIONS(2094), - [anon_sym_RBRACE] = ACTIONS(2094), - [anon_sym_try] = ACTIONS(2094), - [anon_sym_catch] = ACTIONS(2094), - [anon_sym_return] = ACTIONS(2094), - [anon_sym_source] = ACTIONS(2094), - [anon_sym_source_DASHenv] = ACTIONS(2094), - [anon_sym_register] = ACTIONS(2094), - [anon_sym_hide] = ACTIONS(2094), - [anon_sym_hide_DASHenv] = ACTIONS(2094), - [anon_sym_overlay] = ACTIONS(2094), - [anon_sym_as] = ACTIONS(2094), - [anon_sym_PLUS2] = ACTIONS(2094), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2094), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2094), - [aux_sym__val_number_decimal_token1] = ACTIONS(2094), - [aux_sym__val_number_decimal_token2] = ACTIONS(2094), - [aux_sym__val_number_decimal_token3] = ACTIONS(2094), - [aux_sym__val_number_decimal_token4] = ACTIONS(2094), - [aux_sym__val_number_token1] = ACTIONS(2094), - [aux_sym__val_number_token2] = ACTIONS(2094), - [aux_sym__val_number_token3] = ACTIONS(2094), - [aux_sym__val_number_token4] = ACTIONS(2094), - [aux_sym__val_number_token5] = ACTIONS(2094), - [aux_sym__val_number_token6] = ACTIONS(2094), - [anon_sym_DQUOTE] = ACTIONS(2094), - [sym__str_single_quotes] = ACTIONS(2094), - [sym__str_back_ticks] = ACTIONS(2094), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2094), - [sym__entry_separator] = ACTIONS(2096), + [anon_sym_export] = ACTIONS(1847), + [anon_sym_alias] = ACTIONS(1847), + [anon_sym_let] = ACTIONS(1847), + [anon_sym_let_DASHenv] = ACTIONS(1847), + [anon_sym_mut] = ACTIONS(1847), + [anon_sym_const] = ACTIONS(1847), + [aux_sym_cmd_identifier_token1] = ACTIONS(1847), + [aux_sym_cmd_identifier_token2] = ACTIONS(1847), + [aux_sym_cmd_identifier_token3] = ACTIONS(1847), + [aux_sym_cmd_identifier_token4] = ACTIONS(1847), + [aux_sym_cmd_identifier_token5] = ACTIONS(1847), + [aux_sym_cmd_identifier_token6] = ACTIONS(1847), + [aux_sym_cmd_identifier_token7] = ACTIONS(1847), + [aux_sym_cmd_identifier_token8] = ACTIONS(1847), + [aux_sym_cmd_identifier_token9] = ACTIONS(1847), + [aux_sym_cmd_identifier_token10] = ACTIONS(1847), + [aux_sym_cmd_identifier_token11] = ACTIONS(1847), + [aux_sym_cmd_identifier_token12] = ACTIONS(1847), + [aux_sym_cmd_identifier_token13] = ACTIONS(1847), + [aux_sym_cmd_identifier_token14] = ACTIONS(1847), + [aux_sym_cmd_identifier_token15] = ACTIONS(1847), + [aux_sym_cmd_identifier_token16] = ACTIONS(1847), + [aux_sym_cmd_identifier_token17] = ACTIONS(1847), + [aux_sym_cmd_identifier_token18] = ACTIONS(1847), + [aux_sym_cmd_identifier_token19] = ACTIONS(1847), + [aux_sym_cmd_identifier_token20] = ACTIONS(1847), + [aux_sym_cmd_identifier_token21] = ACTIONS(1847), + [aux_sym_cmd_identifier_token22] = ACTIONS(1847), + [aux_sym_cmd_identifier_token23] = ACTIONS(1847), + [aux_sym_cmd_identifier_token24] = ACTIONS(1847), + [aux_sym_cmd_identifier_token25] = ACTIONS(1847), + [aux_sym_cmd_identifier_token26] = ACTIONS(1847), + [aux_sym_cmd_identifier_token27] = ACTIONS(1847), + [aux_sym_cmd_identifier_token28] = ACTIONS(1847), + [aux_sym_cmd_identifier_token29] = ACTIONS(1847), + [aux_sym_cmd_identifier_token30] = ACTIONS(1847), + [aux_sym_cmd_identifier_token31] = ACTIONS(1847), + [aux_sym_cmd_identifier_token32] = ACTIONS(1847), + [aux_sym_cmd_identifier_token33] = ACTIONS(1847), + [aux_sym_cmd_identifier_token34] = ACTIONS(1847), + [aux_sym_cmd_identifier_token35] = ACTIONS(1847), + [aux_sym_cmd_identifier_token36] = ACTIONS(1847), + [aux_sym_cmd_identifier_token37] = ACTIONS(1847), + [aux_sym_cmd_identifier_token38] = ACTIONS(1847), + [aux_sym_cmd_identifier_token39] = ACTIONS(1847), + [aux_sym_cmd_identifier_token40] = ACTIONS(1847), + [anon_sym_def] = ACTIONS(1847), + [anon_sym_export_DASHenv] = ACTIONS(1847), + [anon_sym_extern] = ACTIONS(1847), + [anon_sym_module] = ACTIONS(1847), + [anon_sym_use] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1847), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_error] = ACTIONS(1847), + [anon_sym_DASH2] = ACTIONS(1847), + [anon_sym_break] = ACTIONS(1847), + [anon_sym_continue] = ACTIONS(1847), + [anon_sym_for] = ACTIONS(1847), + [anon_sym_in2] = ACTIONS(1847), + [anon_sym_loop] = ACTIONS(1847), + [anon_sym_make] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1847), + [anon_sym_do] = ACTIONS(1847), + [anon_sym_if] = ACTIONS(1847), + [anon_sym_else] = ACTIONS(1847), + [anon_sym_match] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(1847), + [anon_sym_try] = ACTIONS(1847), + [anon_sym_catch] = ACTIONS(1847), + [anon_sym_return] = ACTIONS(1847), + [anon_sym_source] = ACTIONS(1847), + [anon_sym_source_DASHenv] = ACTIONS(1847), + [anon_sym_register] = ACTIONS(1847), + [anon_sym_hide] = ACTIONS(1847), + [anon_sym_hide_DASHenv] = ACTIONS(1847), + [anon_sym_overlay] = ACTIONS(1847), + [anon_sym_as] = ACTIONS(1847), + [anon_sym_PLUS2] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1847), + [aux_sym__val_number_decimal_token1] = ACTIONS(1847), + [aux_sym__val_number_decimal_token2] = ACTIONS(1847), + [aux_sym__val_number_decimal_token3] = ACTIONS(1847), + [aux_sym__val_number_decimal_token4] = ACTIONS(1847), + [aux_sym__val_number_token1] = ACTIONS(1847), + [aux_sym__val_number_token2] = ACTIONS(1847), + [aux_sym__val_number_token3] = ACTIONS(1847), + [aux_sym__val_number_token4] = ACTIONS(1847), + [aux_sym__val_number_token5] = ACTIONS(1847), + [aux_sym__val_number_token6] = ACTIONS(1847), + [anon_sym_DQUOTE] = ACTIONS(1847), + [sym__str_single_quotes] = ACTIONS(1847), + [sym__str_back_ticks] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1847), + [sym__entry_separator] = ACTIONS(1851), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2096), + [sym_raw_string_begin] = ACTIONS(1851), }, [657] = { [sym_comment] = STATE(657), - [anon_sym_export] = ACTIONS(2429), - [anon_sym_alias] = ACTIONS(2429), - [anon_sym_let] = ACTIONS(2429), - [anon_sym_let_DASHenv] = ACTIONS(2429), - [anon_sym_mut] = ACTIONS(2429), - [anon_sym_const] = ACTIONS(2429), - [aux_sym_cmd_identifier_token1] = ACTIONS(2429), - [aux_sym_cmd_identifier_token2] = ACTIONS(2429), - [aux_sym_cmd_identifier_token3] = ACTIONS(2429), - [aux_sym_cmd_identifier_token4] = ACTIONS(2429), - [aux_sym_cmd_identifier_token5] = ACTIONS(2429), - [aux_sym_cmd_identifier_token6] = ACTIONS(2429), - [aux_sym_cmd_identifier_token7] = ACTIONS(2429), - [aux_sym_cmd_identifier_token8] = ACTIONS(2429), - [aux_sym_cmd_identifier_token9] = ACTIONS(2429), - [aux_sym_cmd_identifier_token10] = ACTIONS(2429), - [aux_sym_cmd_identifier_token11] = ACTIONS(2429), - [aux_sym_cmd_identifier_token12] = ACTIONS(2429), - [aux_sym_cmd_identifier_token13] = ACTIONS(2429), - [aux_sym_cmd_identifier_token14] = ACTIONS(2429), - [aux_sym_cmd_identifier_token15] = ACTIONS(2429), - [aux_sym_cmd_identifier_token16] = ACTIONS(2429), - [aux_sym_cmd_identifier_token17] = ACTIONS(2429), - [aux_sym_cmd_identifier_token18] = ACTIONS(2429), - [aux_sym_cmd_identifier_token19] = ACTIONS(2429), - [aux_sym_cmd_identifier_token20] = ACTIONS(2429), - [aux_sym_cmd_identifier_token21] = ACTIONS(2429), - [aux_sym_cmd_identifier_token22] = ACTIONS(2429), - [aux_sym_cmd_identifier_token23] = ACTIONS(2429), - [aux_sym_cmd_identifier_token24] = ACTIONS(2429), - [aux_sym_cmd_identifier_token25] = ACTIONS(2429), - [aux_sym_cmd_identifier_token26] = ACTIONS(2429), - [aux_sym_cmd_identifier_token27] = ACTIONS(2429), - [aux_sym_cmd_identifier_token28] = ACTIONS(2429), - [aux_sym_cmd_identifier_token29] = ACTIONS(2429), - [aux_sym_cmd_identifier_token30] = ACTIONS(2429), - [aux_sym_cmd_identifier_token31] = ACTIONS(2429), - [aux_sym_cmd_identifier_token32] = ACTIONS(2429), - [aux_sym_cmd_identifier_token33] = ACTIONS(2429), - [aux_sym_cmd_identifier_token34] = ACTIONS(2429), - [aux_sym_cmd_identifier_token35] = ACTIONS(2429), - [aux_sym_cmd_identifier_token36] = ACTIONS(2429), - [aux_sym_cmd_identifier_token37] = ACTIONS(2429), - [aux_sym_cmd_identifier_token38] = ACTIONS(2429), - [aux_sym_cmd_identifier_token39] = ACTIONS(2429), - [aux_sym_cmd_identifier_token40] = ACTIONS(2429), - [anon_sym_def] = ACTIONS(2429), - [anon_sym_export_DASHenv] = ACTIONS(2429), - [anon_sym_extern] = ACTIONS(2429), - [anon_sym_module] = ACTIONS(2429), - [anon_sym_use] = ACTIONS(2429), - [anon_sym_LPAREN] = ACTIONS(2429), - [anon_sym_DOLLAR] = ACTIONS(2429), - [anon_sym_error] = ACTIONS(2429), - [anon_sym_DASH2] = ACTIONS(2429), - [anon_sym_break] = ACTIONS(2429), - [anon_sym_continue] = ACTIONS(2429), - [anon_sym_for] = ACTIONS(2429), - [anon_sym_in2] = ACTIONS(2429), - [anon_sym_loop] = ACTIONS(2429), - [anon_sym_make] = ACTIONS(2429), - [anon_sym_while] = ACTIONS(2429), - [anon_sym_do] = ACTIONS(2429), - [anon_sym_if] = ACTIONS(2429), - [anon_sym_else] = ACTIONS(2429), - [anon_sym_match] = ACTIONS(2429), - [anon_sym_RBRACE] = ACTIONS(2429), - [anon_sym_try] = ACTIONS(2429), - [anon_sym_catch] = ACTIONS(2429), - [anon_sym_return] = ACTIONS(2429), - [anon_sym_source] = ACTIONS(2429), - [anon_sym_source_DASHenv] = ACTIONS(2429), - [anon_sym_register] = ACTIONS(2429), - [anon_sym_hide] = ACTIONS(2429), - [anon_sym_hide_DASHenv] = ACTIONS(2429), - [anon_sym_overlay] = ACTIONS(2429), - [anon_sym_as] = ACTIONS(2429), - [anon_sym_PLUS2] = ACTIONS(2429), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2429), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2429), - [aux_sym__val_number_decimal_token1] = ACTIONS(2429), - [aux_sym__val_number_decimal_token2] = ACTIONS(2429), - [aux_sym__val_number_decimal_token3] = ACTIONS(2429), - [aux_sym__val_number_decimal_token4] = ACTIONS(2429), - [aux_sym__val_number_token1] = ACTIONS(2429), - [aux_sym__val_number_token2] = ACTIONS(2429), - [aux_sym__val_number_token3] = ACTIONS(2429), - [aux_sym__val_number_token4] = ACTIONS(2429), - [aux_sym__val_number_token5] = ACTIONS(2429), - [aux_sym__val_number_token6] = ACTIONS(2429), - [anon_sym_DQUOTE] = ACTIONS(2429), - [sym__str_single_quotes] = ACTIONS(2429), - [sym__str_back_ticks] = ACTIONS(2429), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2429), - [sym__entry_separator] = ACTIONS(2431), + [anon_sym_export] = ACTIONS(2452), + [anon_sym_alias] = ACTIONS(2452), + [anon_sym_let] = ACTIONS(2452), + [anon_sym_let_DASHenv] = ACTIONS(2452), + [anon_sym_mut] = ACTIONS(2452), + [anon_sym_const] = ACTIONS(2452), + [aux_sym_cmd_identifier_token1] = ACTIONS(2452), + [aux_sym_cmd_identifier_token2] = ACTIONS(2452), + [aux_sym_cmd_identifier_token3] = ACTIONS(2452), + [aux_sym_cmd_identifier_token4] = ACTIONS(2452), + [aux_sym_cmd_identifier_token5] = ACTIONS(2452), + [aux_sym_cmd_identifier_token6] = ACTIONS(2452), + [aux_sym_cmd_identifier_token7] = ACTIONS(2452), + [aux_sym_cmd_identifier_token8] = ACTIONS(2452), + [aux_sym_cmd_identifier_token9] = ACTIONS(2452), + [aux_sym_cmd_identifier_token10] = ACTIONS(2452), + [aux_sym_cmd_identifier_token11] = ACTIONS(2452), + [aux_sym_cmd_identifier_token12] = ACTIONS(2452), + [aux_sym_cmd_identifier_token13] = ACTIONS(2452), + [aux_sym_cmd_identifier_token14] = ACTIONS(2452), + [aux_sym_cmd_identifier_token15] = ACTIONS(2452), + [aux_sym_cmd_identifier_token16] = ACTIONS(2452), + [aux_sym_cmd_identifier_token17] = ACTIONS(2452), + [aux_sym_cmd_identifier_token18] = ACTIONS(2452), + [aux_sym_cmd_identifier_token19] = ACTIONS(2452), + [aux_sym_cmd_identifier_token20] = ACTIONS(2452), + [aux_sym_cmd_identifier_token21] = ACTIONS(2452), + [aux_sym_cmd_identifier_token22] = ACTIONS(2452), + [aux_sym_cmd_identifier_token23] = ACTIONS(2452), + [aux_sym_cmd_identifier_token24] = ACTIONS(2452), + [aux_sym_cmd_identifier_token25] = ACTIONS(2452), + [aux_sym_cmd_identifier_token26] = ACTIONS(2452), + [aux_sym_cmd_identifier_token27] = ACTIONS(2452), + [aux_sym_cmd_identifier_token28] = ACTIONS(2452), + [aux_sym_cmd_identifier_token29] = ACTIONS(2452), + [aux_sym_cmd_identifier_token30] = ACTIONS(2452), + [aux_sym_cmd_identifier_token31] = ACTIONS(2452), + [aux_sym_cmd_identifier_token32] = ACTIONS(2452), + [aux_sym_cmd_identifier_token33] = ACTIONS(2452), + [aux_sym_cmd_identifier_token34] = ACTIONS(2452), + [aux_sym_cmd_identifier_token35] = ACTIONS(2452), + [aux_sym_cmd_identifier_token36] = ACTIONS(2452), + [aux_sym_cmd_identifier_token37] = ACTIONS(2452), + [aux_sym_cmd_identifier_token38] = ACTIONS(2452), + [aux_sym_cmd_identifier_token39] = ACTIONS(2452), + [aux_sym_cmd_identifier_token40] = ACTIONS(2452), + [anon_sym_def] = ACTIONS(2452), + [anon_sym_export_DASHenv] = ACTIONS(2452), + [anon_sym_extern] = ACTIONS(2452), + [anon_sym_module] = ACTIONS(2452), + [anon_sym_use] = ACTIONS(2452), + [anon_sym_LPAREN] = ACTIONS(2452), + [anon_sym_DOLLAR] = ACTIONS(2452), + [anon_sym_error] = ACTIONS(2452), + [anon_sym_DASH2] = ACTIONS(2452), + [anon_sym_break] = ACTIONS(2452), + [anon_sym_continue] = ACTIONS(2452), + [anon_sym_for] = ACTIONS(2452), + [anon_sym_in2] = ACTIONS(2452), + [anon_sym_loop] = ACTIONS(2452), + [anon_sym_make] = ACTIONS(2452), + [anon_sym_while] = ACTIONS(2452), + [anon_sym_do] = ACTIONS(2452), + [anon_sym_if] = ACTIONS(2452), + [anon_sym_else] = ACTIONS(2452), + [anon_sym_match] = ACTIONS(2452), + [anon_sym_RBRACE] = ACTIONS(2452), + [anon_sym_try] = ACTIONS(2452), + [anon_sym_catch] = ACTIONS(2452), + [anon_sym_return] = ACTIONS(2452), + [anon_sym_source] = ACTIONS(2452), + [anon_sym_source_DASHenv] = ACTIONS(2452), + [anon_sym_register] = ACTIONS(2452), + [anon_sym_hide] = ACTIONS(2452), + [anon_sym_hide_DASHenv] = ACTIONS(2452), + [anon_sym_overlay] = ACTIONS(2452), + [anon_sym_as] = ACTIONS(2452), + [anon_sym_PLUS2] = ACTIONS(2452), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2452), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2452), + [aux_sym__val_number_decimal_token1] = ACTIONS(2452), + [aux_sym__val_number_decimal_token2] = ACTIONS(2452), + [aux_sym__val_number_decimal_token3] = ACTIONS(2452), + [aux_sym__val_number_decimal_token4] = ACTIONS(2452), + [aux_sym__val_number_token1] = ACTIONS(2452), + [aux_sym__val_number_token2] = ACTIONS(2452), + [aux_sym__val_number_token3] = ACTIONS(2452), + [aux_sym__val_number_token4] = ACTIONS(2452), + [aux_sym__val_number_token5] = ACTIONS(2452), + [aux_sym__val_number_token6] = ACTIONS(2452), + [anon_sym_DQUOTE] = ACTIONS(2452), + [sym__str_single_quotes] = ACTIONS(2452), + [sym__str_back_ticks] = ACTIONS(2452), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2452), + [sym__entry_separator] = ACTIONS(2454), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2431), + [sym_raw_string_begin] = ACTIONS(2454), }, [658] = { [sym_comment] = STATE(658), - [anon_sym_export] = ACTIONS(1890), - [anon_sym_alias] = ACTIONS(1890), - [anon_sym_let] = ACTIONS(1890), - [anon_sym_let_DASHenv] = ACTIONS(1890), - [anon_sym_mut] = ACTIONS(1890), - [anon_sym_const] = ACTIONS(1890), - [aux_sym_cmd_identifier_token1] = ACTIONS(1890), - [aux_sym_cmd_identifier_token2] = ACTIONS(1890), - [aux_sym_cmd_identifier_token3] = ACTIONS(1890), - [aux_sym_cmd_identifier_token4] = ACTIONS(1890), - [aux_sym_cmd_identifier_token5] = ACTIONS(1890), - [aux_sym_cmd_identifier_token6] = ACTIONS(1890), - [aux_sym_cmd_identifier_token7] = ACTIONS(1890), - [aux_sym_cmd_identifier_token8] = ACTIONS(1890), - [aux_sym_cmd_identifier_token9] = ACTIONS(1890), - [aux_sym_cmd_identifier_token10] = ACTIONS(1890), - [aux_sym_cmd_identifier_token11] = ACTIONS(1890), - [aux_sym_cmd_identifier_token12] = ACTIONS(1890), - [aux_sym_cmd_identifier_token13] = ACTIONS(1890), - [aux_sym_cmd_identifier_token14] = ACTIONS(1890), - [aux_sym_cmd_identifier_token15] = ACTIONS(1890), - [aux_sym_cmd_identifier_token16] = ACTIONS(1890), - [aux_sym_cmd_identifier_token17] = ACTIONS(1890), - [aux_sym_cmd_identifier_token18] = ACTIONS(1890), - [aux_sym_cmd_identifier_token19] = ACTIONS(1890), - [aux_sym_cmd_identifier_token20] = ACTIONS(1890), - [aux_sym_cmd_identifier_token21] = ACTIONS(1890), - [aux_sym_cmd_identifier_token22] = ACTIONS(1890), - [aux_sym_cmd_identifier_token23] = ACTIONS(1890), - [aux_sym_cmd_identifier_token24] = ACTIONS(1890), - [aux_sym_cmd_identifier_token25] = ACTIONS(1890), - [aux_sym_cmd_identifier_token26] = ACTIONS(1890), - [aux_sym_cmd_identifier_token27] = ACTIONS(1890), - [aux_sym_cmd_identifier_token28] = ACTIONS(1890), - [aux_sym_cmd_identifier_token29] = ACTIONS(1890), - [aux_sym_cmd_identifier_token30] = ACTIONS(1890), - [aux_sym_cmd_identifier_token31] = ACTIONS(1890), - [aux_sym_cmd_identifier_token32] = ACTIONS(1890), - [aux_sym_cmd_identifier_token33] = ACTIONS(1890), - [aux_sym_cmd_identifier_token34] = ACTIONS(1890), - [aux_sym_cmd_identifier_token35] = ACTIONS(1890), - [aux_sym_cmd_identifier_token36] = ACTIONS(1890), - [aux_sym_cmd_identifier_token37] = ACTIONS(1890), - [aux_sym_cmd_identifier_token38] = ACTIONS(1890), - [aux_sym_cmd_identifier_token39] = ACTIONS(1890), - [aux_sym_cmd_identifier_token40] = ACTIONS(1890), - [anon_sym_def] = ACTIONS(1890), - [anon_sym_export_DASHenv] = ACTIONS(1890), - [anon_sym_extern] = ACTIONS(1890), - [anon_sym_module] = ACTIONS(1890), - [anon_sym_use] = ACTIONS(1890), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(1890), - [anon_sym_error] = ACTIONS(1890), - [anon_sym_DASH2] = ACTIONS(1890), - [anon_sym_break] = ACTIONS(1890), - [anon_sym_continue] = ACTIONS(1890), - [anon_sym_for] = ACTIONS(1890), - [anon_sym_in2] = ACTIONS(1890), - [anon_sym_loop] = ACTIONS(1890), - [anon_sym_make] = ACTIONS(1890), - [anon_sym_while] = ACTIONS(1890), - [anon_sym_do] = ACTIONS(1890), - [anon_sym_if] = ACTIONS(1890), - [anon_sym_else] = ACTIONS(1890), - [anon_sym_match] = ACTIONS(1890), - [anon_sym_RBRACE] = ACTIONS(1890), - [anon_sym_try] = ACTIONS(1890), - [anon_sym_catch] = ACTIONS(1890), - [anon_sym_return] = ACTIONS(1890), - [anon_sym_source] = ACTIONS(1890), - [anon_sym_source_DASHenv] = ACTIONS(1890), - [anon_sym_register] = ACTIONS(1890), - [anon_sym_hide] = ACTIONS(1890), - [anon_sym_hide_DASHenv] = ACTIONS(1890), - [anon_sym_overlay] = ACTIONS(1890), - [anon_sym_as] = ACTIONS(1890), - [anon_sym_PLUS2] = ACTIONS(1890), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1890), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1890), - [aux_sym__val_number_decimal_token1] = ACTIONS(1890), - [aux_sym__val_number_decimal_token2] = ACTIONS(1890), - [aux_sym__val_number_decimal_token3] = ACTIONS(1890), - [aux_sym__val_number_decimal_token4] = ACTIONS(1890), - [aux_sym__val_number_token1] = ACTIONS(1890), - [aux_sym__val_number_token2] = ACTIONS(1890), - [aux_sym__val_number_token3] = ACTIONS(1890), - [aux_sym__val_number_token4] = ACTIONS(1890), - [aux_sym__val_number_token5] = ACTIONS(1890), - [aux_sym__val_number_token6] = ACTIONS(1890), - [anon_sym_DQUOTE] = ACTIONS(1890), - [sym__str_single_quotes] = ACTIONS(1890), - [sym__str_back_ticks] = ACTIONS(1890), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1890), - [sym__entry_separator] = ACTIONS(1892), + [anon_sym_export] = ACTIONS(2165), + [anon_sym_alias] = ACTIONS(2165), + [anon_sym_let] = ACTIONS(2165), + [anon_sym_let_DASHenv] = ACTIONS(2165), + [anon_sym_mut] = ACTIONS(2165), + [anon_sym_const] = ACTIONS(2165), + [aux_sym_cmd_identifier_token1] = ACTIONS(2165), + [aux_sym_cmd_identifier_token2] = ACTIONS(2165), + [aux_sym_cmd_identifier_token3] = ACTIONS(2165), + [aux_sym_cmd_identifier_token4] = ACTIONS(2165), + [aux_sym_cmd_identifier_token5] = ACTIONS(2165), + [aux_sym_cmd_identifier_token6] = ACTIONS(2165), + [aux_sym_cmd_identifier_token7] = ACTIONS(2165), + [aux_sym_cmd_identifier_token8] = ACTIONS(2165), + [aux_sym_cmd_identifier_token9] = ACTIONS(2165), + [aux_sym_cmd_identifier_token10] = ACTIONS(2165), + [aux_sym_cmd_identifier_token11] = ACTIONS(2165), + [aux_sym_cmd_identifier_token12] = ACTIONS(2165), + [aux_sym_cmd_identifier_token13] = ACTIONS(2165), + [aux_sym_cmd_identifier_token14] = ACTIONS(2165), + [aux_sym_cmd_identifier_token15] = ACTIONS(2165), + [aux_sym_cmd_identifier_token16] = ACTIONS(2165), + [aux_sym_cmd_identifier_token17] = ACTIONS(2165), + [aux_sym_cmd_identifier_token18] = ACTIONS(2165), + [aux_sym_cmd_identifier_token19] = ACTIONS(2165), + [aux_sym_cmd_identifier_token20] = ACTIONS(2165), + [aux_sym_cmd_identifier_token21] = ACTIONS(2165), + [aux_sym_cmd_identifier_token22] = ACTIONS(2165), + [aux_sym_cmd_identifier_token23] = ACTIONS(2165), + [aux_sym_cmd_identifier_token24] = ACTIONS(2165), + [aux_sym_cmd_identifier_token25] = ACTIONS(2165), + [aux_sym_cmd_identifier_token26] = ACTIONS(2165), + [aux_sym_cmd_identifier_token27] = ACTIONS(2165), + [aux_sym_cmd_identifier_token28] = ACTIONS(2165), + [aux_sym_cmd_identifier_token29] = ACTIONS(2165), + [aux_sym_cmd_identifier_token30] = ACTIONS(2165), + [aux_sym_cmd_identifier_token31] = ACTIONS(2165), + [aux_sym_cmd_identifier_token32] = ACTIONS(2165), + [aux_sym_cmd_identifier_token33] = ACTIONS(2165), + [aux_sym_cmd_identifier_token34] = ACTIONS(2165), + [aux_sym_cmd_identifier_token35] = ACTIONS(2165), + [aux_sym_cmd_identifier_token36] = ACTIONS(2165), + [aux_sym_cmd_identifier_token37] = ACTIONS(2165), + [aux_sym_cmd_identifier_token38] = ACTIONS(2165), + [aux_sym_cmd_identifier_token39] = ACTIONS(2165), + [aux_sym_cmd_identifier_token40] = ACTIONS(2165), + [anon_sym_def] = ACTIONS(2165), + [anon_sym_export_DASHenv] = ACTIONS(2165), + [anon_sym_extern] = ACTIONS(2165), + [anon_sym_module] = ACTIONS(2165), + [anon_sym_use] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2165), + [anon_sym_DOLLAR] = ACTIONS(2165), + [anon_sym_error] = ACTIONS(2165), + [anon_sym_DASH2] = ACTIONS(2165), + [anon_sym_break] = ACTIONS(2165), + [anon_sym_continue] = ACTIONS(2165), + [anon_sym_for] = ACTIONS(2165), + [anon_sym_in2] = ACTIONS(2165), + [anon_sym_loop] = ACTIONS(2165), + [anon_sym_make] = ACTIONS(2165), + [anon_sym_while] = ACTIONS(2165), + [anon_sym_do] = ACTIONS(2165), + [anon_sym_if] = ACTIONS(2165), + [anon_sym_else] = ACTIONS(2165), + [anon_sym_match] = ACTIONS(2165), + [anon_sym_RBRACE] = ACTIONS(2165), + [anon_sym_try] = ACTIONS(2165), + [anon_sym_catch] = ACTIONS(2165), + [anon_sym_return] = ACTIONS(2165), + [anon_sym_source] = ACTIONS(2165), + [anon_sym_source_DASHenv] = ACTIONS(2165), + [anon_sym_register] = ACTIONS(2165), + [anon_sym_hide] = ACTIONS(2165), + [anon_sym_hide_DASHenv] = ACTIONS(2165), + [anon_sym_overlay] = ACTIONS(2165), + [anon_sym_as] = ACTIONS(2165), + [anon_sym_PLUS2] = ACTIONS(2165), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2165), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2165), + [aux_sym__val_number_decimal_token1] = ACTIONS(2165), + [aux_sym__val_number_decimal_token2] = ACTIONS(2165), + [aux_sym__val_number_decimal_token3] = ACTIONS(2165), + [aux_sym__val_number_decimal_token4] = ACTIONS(2165), + [aux_sym__val_number_token1] = ACTIONS(2165), + [aux_sym__val_number_token2] = ACTIONS(2165), + [aux_sym__val_number_token3] = ACTIONS(2165), + [aux_sym__val_number_token4] = ACTIONS(2165), + [aux_sym__val_number_token5] = ACTIONS(2165), + [aux_sym__val_number_token6] = ACTIONS(2165), + [anon_sym_DQUOTE] = ACTIONS(2165), + [sym__str_single_quotes] = ACTIONS(2165), + [sym__str_back_ticks] = ACTIONS(2165), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2165), + [sym__entry_separator] = ACTIONS(2171), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1892), + [sym_raw_string_begin] = ACTIONS(2171), }, [659] = { [sym_comment] = STATE(659), - [anon_sym_export] = ACTIONS(2333), - [anon_sym_alias] = ACTIONS(2333), - [anon_sym_let] = ACTIONS(2333), - [anon_sym_let_DASHenv] = ACTIONS(2333), - [anon_sym_mut] = ACTIONS(2333), - [anon_sym_const] = ACTIONS(2333), - [aux_sym_cmd_identifier_token1] = ACTIONS(2333), - [aux_sym_cmd_identifier_token2] = ACTIONS(2335), - [aux_sym_cmd_identifier_token3] = ACTIONS(2335), - [aux_sym_cmd_identifier_token4] = ACTIONS(2335), - [aux_sym_cmd_identifier_token5] = ACTIONS(2335), - [aux_sym_cmd_identifier_token6] = ACTIONS(2335), - [aux_sym_cmd_identifier_token7] = ACTIONS(2335), - [aux_sym_cmd_identifier_token8] = ACTIONS(2333), - [aux_sym_cmd_identifier_token9] = ACTIONS(2333), - [aux_sym_cmd_identifier_token10] = ACTIONS(2335), - [aux_sym_cmd_identifier_token11] = ACTIONS(2335), - [aux_sym_cmd_identifier_token12] = ACTIONS(2333), - [aux_sym_cmd_identifier_token13] = ACTIONS(2333), - [aux_sym_cmd_identifier_token14] = ACTIONS(2333), - [aux_sym_cmd_identifier_token15] = ACTIONS(2333), - [aux_sym_cmd_identifier_token16] = ACTIONS(2335), - [aux_sym_cmd_identifier_token17] = ACTIONS(2335), - [aux_sym_cmd_identifier_token18] = ACTIONS(2335), - [aux_sym_cmd_identifier_token19] = ACTIONS(2335), - [aux_sym_cmd_identifier_token20] = ACTIONS(2335), - [aux_sym_cmd_identifier_token21] = ACTIONS(2335), - [aux_sym_cmd_identifier_token22] = ACTIONS(2335), - [aux_sym_cmd_identifier_token23] = ACTIONS(2335), - [aux_sym_cmd_identifier_token24] = ACTIONS(2335), - [aux_sym_cmd_identifier_token25] = ACTIONS(2335), - [aux_sym_cmd_identifier_token26] = ACTIONS(2335), - [aux_sym_cmd_identifier_token27] = ACTIONS(2335), - [aux_sym_cmd_identifier_token28] = ACTIONS(2335), - [aux_sym_cmd_identifier_token29] = ACTIONS(2335), - [aux_sym_cmd_identifier_token30] = ACTIONS(2335), - [aux_sym_cmd_identifier_token31] = ACTIONS(2335), - [aux_sym_cmd_identifier_token32] = ACTIONS(2335), - [aux_sym_cmd_identifier_token33] = ACTIONS(2335), - [aux_sym_cmd_identifier_token34] = ACTIONS(2333), - [aux_sym_cmd_identifier_token35] = ACTIONS(2335), - [aux_sym_cmd_identifier_token36] = ACTIONS(2335), - [aux_sym_cmd_identifier_token37] = ACTIONS(2335), - [aux_sym_cmd_identifier_token38] = ACTIONS(2333), - [aux_sym_cmd_identifier_token39] = ACTIONS(2335), - [aux_sym_cmd_identifier_token40] = ACTIONS(2335), - [anon_sym_def] = ACTIONS(2333), - [anon_sym_export_DASHenv] = ACTIONS(2333), - [anon_sym_extern] = ACTIONS(2333), - [anon_sym_module] = ACTIONS(2333), - [anon_sym_use] = ACTIONS(2333), - [anon_sym_LPAREN] = ACTIONS(2333), - [anon_sym_DOLLAR] = ACTIONS(2335), - [anon_sym_error] = ACTIONS(2333), - [anon_sym_DASH2] = ACTIONS(2333), - [anon_sym_break] = ACTIONS(2333), - [anon_sym_continue] = ACTIONS(2333), - [anon_sym_for] = ACTIONS(2333), - [anon_sym_in2] = ACTIONS(2333), - [anon_sym_loop] = ACTIONS(2333), - [anon_sym_make] = ACTIONS(2333), - [anon_sym_while] = ACTIONS(2333), - [anon_sym_do] = ACTIONS(2333), - [anon_sym_if] = ACTIONS(2333), - [anon_sym_else] = ACTIONS(2333), - [anon_sym_match] = ACTIONS(2333), - [anon_sym_RBRACE] = ACTIONS(2335), - [anon_sym_try] = ACTIONS(2333), - [anon_sym_catch] = ACTIONS(2333), - [anon_sym_return] = ACTIONS(2333), - [anon_sym_source] = ACTIONS(2333), - [anon_sym_source_DASHenv] = ACTIONS(2333), - [anon_sym_register] = ACTIONS(2333), - [anon_sym_hide] = ACTIONS(2333), - [anon_sym_hide_DASHenv] = ACTIONS(2333), - [anon_sym_overlay] = ACTIONS(2333), - [anon_sym_as] = ACTIONS(2333), - [anon_sym_LPAREN2] = ACTIONS(2335), - [anon_sym_PLUS2] = ACTIONS(2333), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2335), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2335), - [aux_sym__val_number_decimal_token1] = ACTIONS(2333), - [aux_sym__val_number_decimal_token2] = ACTIONS(2335), - [aux_sym__val_number_decimal_token3] = ACTIONS(2335), - [aux_sym__val_number_decimal_token4] = ACTIONS(2335), - [aux_sym__val_number_token1] = ACTIONS(2335), - [aux_sym__val_number_token2] = ACTIONS(2335), - [aux_sym__val_number_token3] = ACTIONS(2335), - [aux_sym__val_number_token4] = ACTIONS(2333), - [aux_sym__val_number_token5] = ACTIONS(2333), - [aux_sym__val_number_token6] = ACTIONS(2333), - [anon_sym_DQUOTE] = ACTIONS(2335), - [sym__str_single_quotes] = ACTIONS(2335), - [sym__str_back_ticks] = ACTIONS(2335), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2335), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2335), + [anon_sym_export] = ACTIONS(2146), + [anon_sym_alias] = ACTIONS(2146), + [anon_sym_let] = ACTIONS(2146), + [anon_sym_let_DASHenv] = ACTIONS(2146), + [anon_sym_mut] = ACTIONS(2146), + [anon_sym_const] = ACTIONS(2146), + [aux_sym_cmd_identifier_token1] = ACTIONS(2146), + [aux_sym_cmd_identifier_token2] = ACTIONS(2146), + [aux_sym_cmd_identifier_token3] = ACTIONS(2146), + [aux_sym_cmd_identifier_token4] = ACTIONS(2146), + [aux_sym_cmd_identifier_token5] = ACTIONS(2146), + [aux_sym_cmd_identifier_token6] = ACTIONS(2146), + [aux_sym_cmd_identifier_token7] = ACTIONS(2146), + [aux_sym_cmd_identifier_token8] = ACTIONS(2146), + [aux_sym_cmd_identifier_token9] = ACTIONS(2146), + [aux_sym_cmd_identifier_token10] = ACTIONS(2146), + [aux_sym_cmd_identifier_token11] = ACTIONS(2146), + [aux_sym_cmd_identifier_token12] = ACTIONS(2146), + [aux_sym_cmd_identifier_token13] = ACTIONS(2146), + [aux_sym_cmd_identifier_token14] = ACTIONS(2146), + [aux_sym_cmd_identifier_token15] = ACTIONS(2146), + [aux_sym_cmd_identifier_token16] = ACTIONS(2146), + [aux_sym_cmd_identifier_token17] = ACTIONS(2146), + [aux_sym_cmd_identifier_token18] = ACTIONS(2146), + [aux_sym_cmd_identifier_token19] = ACTIONS(2146), + [aux_sym_cmd_identifier_token20] = ACTIONS(2146), + [aux_sym_cmd_identifier_token21] = ACTIONS(2146), + [aux_sym_cmd_identifier_token22] = ACTIONS(2146), + [aux_sym_cmd_identifier_token23] = ACTIONS(2146), + [aux_sym_cmd_identifier_token24] = ACTIONS(2146), + [aux_sym_cmd_identifier_token25] = ACTIONS(2146), + [aux_sym_cmd_identifier_token26] = ACTIONS(2146), + [aux_sym_cmd_identifier_token27] = ACTIONS(2146), + [aux_sym_cmd_identifier_token28] = ACTIONS(2146), + [aux_sym_cmd_identifier_token29] = ACTIONS(2146), + [aux_sym_cmd_identifier_token30] = ACTIONS(2146), + [aux_sym_cmd_identifier_token31] = ACTIONS(2146), + [aux_sym_cmd_identifier_token32] = ACTIONS(2146), + [aux_sym_cmd_identifier_token33] = ACTIONS(2146), + [aux_sym_cmd_identifier_token34] = ACTIONS(2146), + [aux_sym_cmd_identifier_token35] = ACTIONS(2146), + [aux_sym_cmd_identifier_token36] = ACTIONS(2146), + [aux_sym_cmd_identifier_token37] = ACTIONS(2146), + [aux_sym_cmd_identifier_token38] = ACTIONS(2146), + [aux_sym_cmd_identifier_token39] = ACTIONS(2146), + [aux_sym_cmd_identifier_token40] = ACTIONS(2146), + [anon_sym_def] = ACTIONS(2146), + [anon_sym_export_DASHenv] = ACTIONS(2146), + [anon_sym_extern] = ACTIONS(2146), + [anon_sym_module] = ACTIONS(2146), + [anon_sym_use] = ACTIONS(2146), + [anon_sym_LPAREN] = ACTIONS(2146), + [anon_sym_DOLLAR] = ACTIONS(2146), + [anon_sym_error] = ACTIONS(2146), + [anon_sym_DASH2] = ACTIONS(2146), + [anon_sym_break] = ACTIONS(2146), + [anon_sym_continue] = ACTIONS(2146), + [anon_sym_for] = ACTIONS(2146), + [anon_sym_in2] = ACTIONS(2146), + [anon_sym_loop] = ACTIONS(2146), + [anon_sym_make] = ACTIONS(2146), + [anon_sym_while] = ACTIONS(2146), + [anon_sym_do] = ACTIONS(2146), + [anon_sym_if] = ACTIONS(2146), + [anon_sym_else] = ACTIONS(2146), + [anon_sym_match] = ACTIONS(2146), + [anon_sym_RBRACE] = ACTIONS(2146), + [anon_sym_try] = ACTIONS(2146), + [anon_sym_catch] = ACTIONS(2146), + [anon_sym_return] = ACTIONS(2146), + [anon_sym_source] = ACTIONS(2146), + [anon_sym_source_DASHenv] = ACTIONS(2146), + [anon_sym_register] = ACTIONS(2146), + [anon_sym_hide] = ACTIONS(2146), + [anon_sym_hide_DASHenv] = ACTIONS(2146), + [anon_sym_overlay] = ACTIONS(2146), + [anon_sym_as] = ACTIONS(2146), + [anon_sym_PLUS2] = ACTIONS(2146), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2146), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2146), + [aux_sym__val_number_decimal_token1] = ACTIONS(2146), + [aux_sym__val_number_decimal_token2] = ACTIONS(2146), + [aux_sym__val_number_decimal_token3] = ACTIONS(2146), + [aux_sym__val_number_decimal_token4] = ACTIONS(2146), + [aux_sym__val_number_token1] = ACTIONS(2146), + [aux_sym__val_number_token2] = ACTIONS(2146), + [aux_sym__val_number_token3] = ACTIONS(2146), + [aux_sym__val_number_token4] = ACTIONS(2146), + [aux_sym__val_number_token5] = ACTIONS(2146), + [aux_sym__val_number_token6] = ACTIONS(2146), + [anon_sym_DQUOTE] = ACTIONS(2146), + [sym__str_single_quotes] = ACTIONS(2146), + [sym__str_back_ticks] = ACTIONS(2146), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2146), + [sym__entry_separator] = ACTIONS(2152), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2152), }, [660] = { [sym_comment] = STATE(660), - [anon_sym_export] = ACTIONS(2433), - [anon_sym_alias] = ACTIONS(2433), - [anon_sym_let] = ACTIONS(2433), - [anon_sym_let_DASHenv] = ACTIONS(2433), - [anon_sym_mut] = ACTIONS(2433), - [anon_sym_const] = ACTIONS(2433), - [aux_sym_cmd_identifier_token1] = ACTIONS(2433), - [aux_sym_cmd_identifier_token2] = ACTIONS(2433), - [aux_sym_cmd_identifier_token3] = ACTIONS(2433), - [aux_sym_cmd_identifier_token4] = ACTIONS(2433), - [aux_sym_cmd_identifier_token5] = ACTIONS(2433), - [aux_sym_cmd_identifier_token6] = ACTIONS(2433), - [aux_sym_cmd_identifier_token7] = ACTIONS(2433), - [aux_sym_cmd_identifier_token8] = ACTIONS(2433), - [aux_sym_cmd_identifier_token9] = ACTIONS(2433), - [aux_sym_cmd_identifier_token10] = ACTIONS(2433), - [aux_sym_cmd_identifier_token11] = ACTIONS(2433), - [aux_sym_cmd_identifier_token12] = ACTIONS(2433), - [aux_sym_cmd_identifier_token13] = ACTIONS(2433), - [aux_sym_cmd_identifier_token14] = ACTIONS(2433), - [aux_sym_cmd_identifier_token15] = ACTIONS(2433), - [aux_sym_cmd_identifier_token16] = ACTIONS(2433), - [aux_sym_cmd_identifier_token17] = ACTIONS(2433), - [aux_sym_cmd_identifier_token18] = ACTIONS(2433), - [aux_sym_cmd_identifier_token19] = ACTIONS(2433), - [aux_sym_cmd_identifier_token20] = ACTIONS(2433), - [aux_sym_cmd_identifier_token21] = ACTIONS(2433), - [aux_sym_cmd_identifier_token22] = ACTIONS(2433), - [aux_sym_cmd_identifier_token23] = ACTIONS(2433), - [aux_sym_cmd_identifier_token24] = ACTIONS(2433), - [aux_sym_cmd_identifier_token25] = ACTIONS(2433), - [aux_sym_cmd_identifier_token26] = ACTIONS(2433), - [aux_sym_cmd_identifier_token27] = ACTIONS(2433), - [aux_sym_cmd_identifier_token28] = ACTIONS(2433), - [aux_sym_cmd_identifier_token29] = ACTIONS(2433), - [aux_sym_cmd_identifier_token30] = ACTIONS(2433), - [aux_sym_cmd_identifier_token31] = ACTIONS(2433), - [aux_sym_cmd_identifier_token32] = ACTIONS(2433), - [aux_sym_cmd_identifier_token33] = ACTIONS(2433), - [aux_sym_cmd_identifier_token34] = ACTIONS(2433), - [aux_sym_cmd_identifier_token35] = ACTIONS(2433), - [aux_sym_cmd_identifier_token36] = ACTIONS(2433), - [aux_sym_cmd_identifier_token37] = ACTIONS(2433), - [aux_sym_cmd_identifier_token38] = ACTIONS(2433), - [aux_sym_cmd_identifier_token39] = ACTIONS(2433), - [aux_sym_cmd_identifier_token40] = ACTIONS(2433), - [anon_sym_def] = ACTIONS(2433), - [anon_sym_export_DASHenv] = ACTIONS(2433), - [anon_sym_extern] = ACTIONS(2433), - [anon_sym_module] = ACTIONS(2433), - [anon_sym_use] = ACTIONS(2433), - [anon_sym_LPAREN] = ACTIONS(2433), - [anon_sym_DOLLAR] = ACTIONS(2433), - [anon_sym_error] = ACTIONS(2433), - [anon_sym_DASH2] = ACTIONS(2433), - [anon_sym_break] = ACTIONS(2433), - [anon_sym_continue] = ACTIONS(2433), - [anon_sym_for] = ACTIONS(2433), - [anon_sym_in2] = ACTIONS(2433), - [anon_sym_loop] = ACTIONS(2433), - [anon_sym_make] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2433), - [anon_sym_do] = ACTIONS(2433), - [anon_sym_if] = ACTIONS(2433), - [anon_sym_else] = ACTIONS(2433), - [anon_sym_match] = ACTIONS(2433), - [anon_sym_RBRACE] = ACTIONS(2433), - [anon_sym_try] = ACTIONS(2433), - [anon_sym_catch] = ACTIONS(2433), - [anon_sym_return] = ACTIONS(2433), - [anon_sym_source] = ACTIONS(2433), - [anon_sym_source_DASHenv] = ACTIONS(2433), - [anon_sym_register] = ACTIONS(2433), - [anon_sym_hide] = ACTIONS(2433), - [anon_sym_hide_DASHenv] = ACTIONS(2433), - [anon_sym_overlay] = ACTIONS(2433), - [anon_sym_as] = ACTIONS(2433), - [anon_sym_PLUS2] = ACTIONS(2433), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2433), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2433), - [aux_sym__val_number_decimal_token1] = ACTIONS(2433), - [aux_sym__val_number_decimal_token2] = ACTIONS(2433), - [aux_sym__val_number_decimal_token3] = ACTIONS(2433), - [aux_sym__val_number_decimal_token4] = ACTIONS(2433), - [aux_sym__val_number_token1] = ACTIONS(2433), - [aux_sym__val_number_token2] = ACTIONS(2433), - [aux_sym__val_number_token3] = ACTIONS(2433), - [aux_sym__val_number_token4] = ACTIONS(2433), - [aux_sym__val_number_token5] = ACTIONS(2433), - [aux_sym__val_number_token6] = ACTIONS(2433), - [anon_sym_DQUOTE] = ACTIONS(2433), - [sym__str_single_quotes] = ACTIONS(2433), - [sym__str_back_ticks] = ACTIONS(2433), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2433), - [sym__entry_separator] = ACTIONS(2435), + [anon_sym_export] = ACTIONS(1907), + [anon_sym_alias] = ACTIONS(1907), + [anon_sym_let] = ACTIONS(1907), + [anon_sym_let_DASHenv] = ACTIONS(1907), + [anon_sym_mut] = ACTIONS(1907), + [anon_sym_const] = ACTIONS(1907), + [aux_sym_cmd_identifier_token1] = ACTIONS(1907), + [aux_sym_cmd_identifier_token2] = ACTIONS(1907), + [aux_sym_cmd_identifier_token3] = ACTIONS(1907), + [aux_sym_cmd_identifier_token4] = ACTIONS(1907), + [aux_sym_cmd_identifier_token5] = ACTIONS(1907), + [aux_sym_cmd_identifier_token6] = ACTIONS(1907), + [aux_sym_cmd_identifier_token7] = ACTIONS(1907), + [aux_sym_cmd_identifier_token8] = ACTIONS(1907), + [aux_sym_cmd_identifier_token9] = ACTIONS(1907), + [aux_sym_cmd_identifier_token10] = ACTIONS(1907), + [aux_sym_cmd_identifier_token11] = ACTIONS(1907), + [aux_sym_cmd_identifier_token12] = ACTIONS(1907), + [aux_sym_cmd_identifier_token13] = ACTIONS(1907), + [aux_sym_cmd_identifier_token14] = ACTIONS(1907), + [aux_sym_cmd_identifier_token15] = ACTIONS(1907), + [aux_sym_cmd_identifier_token16] = ACTIONS(1907), + [aux_sym_cmd_identifier_token17] = ACTIONS(1907), + [aux_sym_cmd_identifier_token18] = ACTIONS(1907), + [aux_sym_cmd_identifier_token19] = ACTIONS(1907), + [aux_sym_cmd_identifier_token20] = ACTIONS(1907), + [aux_sym_cmd_identifier_token21] = ACTIONS(1907), + [aux_sym_cmd_identifier_token22] = ACTIONS(1907), + [aux_sym_cmd_identifier_token23] = ACTIONS(1907), + [aux_sym_cmd_identifier_token24] = ACTIONS(1907), + [aux_sym_cmd_identifier_token25] = ACTIONS(1907), + [aux_sym_cmd_identifier_token26] = ACTIONS(1907), + [aux_sym_cmd_identifier_token27] = ACTIONS(1907), + [aux_sym_cmd_identifier_token28] = ACTIONS(1907), + [aux_sym_cmd_identifier_token29] = ACTIONS(1907), + [aux_sym_cmd_identifier_token30] = ACTIONS(1907), + [aux_sym_cmd_identifier_token31] = ACTIONS(1907), + [aux_sym_cmd_identifier_token32] = ACTIONS(1907), + [aux_sym_cmd_identifier_token33] = ACTIONS(1907), + [aux_sym_cmd_identifier_token34] = ACTIONS(1907), + [aux_sym_cmd_identifier_token35] = ACTIONS(1907), + [aux_sym_cmd_identifier_token36] = ACTIONS(1907), + [aux_sym_cmd_identifier_token37] = ACTIONS(1907), + [aux_sym_cmd_identifier_token38] = ACTIONS(1907), + [aux_sym_cmd_identifier_token39] = ACTIONS(1907), + [aux_sym_cmd_identifier_token40] = ACTIONS(1907), + [anon_sym_def] = ACTIONS(1907), + [anon_sym_export_DASHenv] = ACTIONS(1907), + [anon_sym_extern] = ACTIONS(1907), + [anon_sym_module] = ACTIONS(1907), + [anon_sym_use] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(1907), + [anon_sym_DOLLAR] = ACTIONS(1907), + [anon_sym_error] = ACTIONS(1907), + [anon_sym_DASH2] = ACTIONS(1907), + [anon_sym_break] = ACTIONS(1907), + [anon_sym_continue] = ACTIONS(1907), + [anon_sym_for] = ACTIONS(1907), + [anon_sym_in2] = ACTIONS(1907), + [anon_sym_loop] = ACTIONS(1907), + [anon_sym_make] = ACTIONS(1907), + [anon_sym_while] = ACTIONS(1907), + [anon_sym_do] = ACTIONS(1907), + [anon_sym_if] = ACTIONS(1907), + [anon_sym_else] = ACTIONS(1907), + [anon_sym_match] = ACTIONS(1907), + [anon_sym_RBRACE] = ACTIONS(1907), + [anon_sym_try] = ACTIONS(1907), + [anon_sym_catch] = ACTIONS(1907), + [anon_sym_return] = ACTIONS(1907), + [anon_sym_source] = ACTIONS(1907), + [anon_sym_source_DASHenv] = ACTIONS(1907), + [anon_sym_register] = ACTIONS(1907), + [anon_sym_hide] = ACTIONS(1907), + [anon_sym_hide_DASHenv] = ACTIONS(1907), + [anon_sym_overlay] = ACTIONS(1907), + [anon_sym_as] = ACTIONS(1907), + [anon_sym_PLUS2] = ACTIONS(1907), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1907), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1907), + [aux_sym__val_number_decimal_token1] = ACTIONS(1907), + [aux_sym__val_number_decimal_token2] = ACTIONS(1907), + [aux_sym__val_number_decimal_token3] = ACTIONS(1907), + [aux_sym__val_number_decimal_token4] = ACTIONS(1907), + [aux_sym__val_number_token1] = ACTIONS(1907), + [aux_sym__val_number_token2] = ACTIONS(1907), + [aux_sym__val_number_token3] = ACTIONS(1907), + [aux_sym__val_number_token4] = ACTIONS(1907), + [aux_sym__val_number_token5] = ACTIONS(1907), + [aux_sym__val_number_token6] = ACTIONS(1907), + [anon_sym_DQUOTE] = ACTIONS(1907), + [sym__str_single_quotes] = ACTIONS(1907), + [sym__str_back_ticks] = ACTIONS(1907), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1907), + [sym__entry_separator] = ACTIONS(1909), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2435), + [sym_raw_string_begin] = ACTIONS(1909), }, [661] = { [sym_comment] = STATE(661), - [anon_sym_export] = ACTIONS(2437), - [anon_sym_alias] = ACTIONS(2437), - [anon_sym_let] = ACTIONS(2437), - [anon_sym_let_DASHenv] = ACTIONS(2437), - [anon_sym_mut] = ACTIONS(2437), - [anon_sym_const] = ACTIONS(2437), - [aux_sym_cmd_identifier_token1] = ACTIONS(2437), - [aux_sym_cmd_identifier_token2] = ACTIONS(2437), - [aux_sym_cmd_identifier_token3] = ACTIONS(2437), - [aux_sym_cmd_identifier_token4] = ACTIONS(2437), - [aux_sym_cmd_identifier_token5] = ACTIONS(2437), - [aux_sym_cmd_identifier_token6] = ACTIONS(2437), - [aux_sym_cmd_identifier_token7] = ACTIONS(2437), - [aux_sym_cmd_identifier_token8] = ACTIONS(2437), - [aux_sym_cmd_identifier_token9] = ACTIONS(2437), - [aux_sym_cmd_identifier_token10] = ACTIONS(2437), - [aux_sym_cmd_identifier_token11] = ACTIONS(2437), - [aux_sym_cmd_identifier_token12] = ACTIONS(2437), - [aux_sym_cmd_identifier_token13] = ACTIONS(2437), - [aux_sym_cmd_identifier_token14] = ACTIONS(2437), - [aux_sym_cmd_identifier_token15] = ACTIONS(2437), - [aux_sym_cmd_identifier_token16] = ACTIONS(2437), - [aux_sym_cmd_identifier_token17] = ACTIONS(2437), - [aux_sym_cmd_identifier_token18] = ACTIONS(2437), - [aux_sym_cmd_identifier_token19] = ACTIONS(2437), - [aux_sym_cmd_identifier_token20] = ACTIONS(2437), - [aux_sym_cmd_identifier_token21] = ACTIONS(2437), - [aux_sym_cmd_identifier_token22] = ACTIONS(2437), - [aux_sym_cmd_identifier_token23] = ACTIONS(2437), - [aux_sym_cmd_identifier_token24] = ACTIONS(2437), - [aux_sym_cmd_identifier_token25] = ACTIONS(2437), - [aux_sym_cmd_identifier_token26] = ACTIONS(2437), - [aux_sym_cmd_identifier_token27] = ACTIONS(2437), - [aux_sym_cmd_identifier_token28] = ACTIONS(2437), - [aux_sym_cmd_identifier_token29] = ACTIONS(2437), - [aux_sym_cmd_identifier_token30] = ACTIONS(2437), - [aux_sym_cmd_identifier_token31] = ACTIONS(2437), - [aux_sym_cmd_identifier_token32] = ACTIONS(2437), - [aux_sym_cmd_identifier_token33] = ACTIONS(2437), - [aux_sym_cmd_identifier_token34] = ACTIONS(2437), - [aux_sym_cmd_identifier_token35] = ACTIONS(2437), - [aux_sym_cmd_identifier_token36] = ACTIONS(2437), - [aux_sym_cmd_identifier_token37] = ACTIONS(2437), - [aux_sym_cmd_identifier_token38] = ACTIONS(2437), - [aux_sym_cmd_identifier_token39] = ACTIONS(2437), - [aux_sym_cmd_identifier_token40] = ACTIONS(2437), - [anon_sym_def] = ACTIONS(2437), - [anon_sym_export_DASHenv] = ACTIONS(2437), - [anon_sym_extern] = ACTIONS(2437), - [anon_sym_module] = ACTIONS(2437), - [anon_sym_use] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH2] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_in2] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_make] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_else] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_catch] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_PLUS2] = ACTIONS(2437), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2437), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = ACTIONS(2437), - [aux_sym__val_number_decimal_token4] = ACTIONS(2437), - [aux_sym__val_number_token1] = ACTIONS(2437), - [aux_sym__val_number_token2] = ACTIONS(2437), - [aux_sym__val_number_token3] = ACTIONS(2437), - [aux_sym__val_number_token4] = ACTIONS(2437), - [aux_sym__val_number_token5] = ACTIONS(2437), - [aux_sym__val_number_token6] = ACTIONS(2437), - [anon_sym_DQUOTE] = ACTIONS(2437), - [sym__str_single_quotes] = ACTIONS(2437), - [sym__str_back_ticks] = ACTIONS(2437), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2437), - [sym__entry_separator] = ACTIONS(2439), + [anon_sym_export] = ACTIONS(1915), + [anon_sym_alias] = ACTIONS(1915), + [anon_sym_let] = ACTIONS(1915), + [anon_sym_let_DASHenv] = ACTIONS(1915), + [anon_sym_mut] = ACTIONS(1915), + [anon_sym_const] = ACTIONS(1915), + [aux_sym_cmd_identifier_token1] = ACTIONS(1915), + [aux_sym_cmd_identifier_token2] = ACTIONS(1915), + [aux_sym_cmd_identifier_token3] = ACTIONS(1915), + [aux_sym_cmd_identifier_token4] = ACTIONS(1915), + [aux_sym_cmd_identifier_token5] = ACTIONS(1915), + [aux_sym_cmd_identifier_token6] = ACTIONS(1915), + [aux_sym_cmd_identifier_token7] = ACTIONS(1915), + [aux_sym_cmd_identifier_token8] = ACTIONS(1915), + [aux_sym_cmd_identifier_token9] = ACTIONS(1915), + [aux_sym_cmd_identifier_token10] = ACTIONS(1915), + [aux_sym_cmd_identifier_token11] = ACTIONS(1915), + [aux_sym_cmd_identifier_token12] = ACTIONS(1915), + [aux_sym_cmd_identifier_token13] = ACTIONS(1915), + [aux_sym_cmd_identifier_token14] = ACTIONS(1915), + [aux_sym_cmd_identifier_token15] = ACTIONS(1915), + [aux_sym_cmd_identifier_token16] = ACTIONS(1915), + [aux_sym_cmd_identifier_token17] = ACTIONS(1915), + [aux_sym_cmd_identifier_token18] = ACTIONS(1915), + [aux_sym_cmd_identifier_token19] = ACTIONS(1915), + [aux_sym_cmd_identifier_token20] = ACTIONS(1915), + [aux_sym_cmd_identifier_token21] = ACTIONS(1915), + [aux_sym_cmd_identifier_token22] = ACTIONS(1915), + [aux_sym_cmd_identifier_token23] = ACTIONS(1915), + [aux_sym_cmd_identifier_token24] = ACTIONS(1915), + [aux_sym_cmd_identifier_token25] = ACTIONS(1915), + [aux_sym_cmd_identifier_token26] = ACTIONS(1915), + [aux_sym_cmd_identifier_token27] = ACTIONS(1915), + [aux_sym_cmd_identifier_token28] = ACTIONS(1915), + [aux_sym_cmd_identifier_token29] = ACTIONS(1915), + [aux_sym_cmd_identifier_token30] = ACTIONS(1915), + [aux_sym_cmd_identifier_token31] = ACTIONS(1915), + [aux_sym_cmd_identifier_token32] = ACTIONS(1915), + [aux_sym_cmd_identifier_token33] = ACTIONS(1915), + [aux_sym_cmd_identifier_token34] = ACTIONS(1915), + [aux_sym_cmd_identifier_token35] = ACTIONS(1915), + [aux_sym_cmd_identifier_token36] = ACTIONS(1915), + [aux_sym_cmd_identifier_token37] = ACTIONS(1915), + [aux_sym_cmd_identifier_token38] = ACTIONS(1915), + [aux_sym_cmd_identifier_token39] = ACTIONS(1915), + [aux_sym_cmd_identifier_token40] = ACTIONS(1915), + [anon_sym_def] = ACTIONS(1915), + [anon_sym_export_DASHenv] = ACTIONS(1915), + [anon_sym_extern] = ACTIONS(1915), + [anon_sym_module] = ACTIONS(1915), + [anon_sym_use] = ACTIONS(1915), + [anon_sym_LPAREN] = ACTIONS(1915), + [anon_sym_DOLLAR] = ACTIONS(1915), + [anon_sym_error] = ACTIONS(1915), + [anon_sym_DASH2] = ACTIONS(1915), + [anon_sym_break] = ACTIONS(1915), + [anon_sym_continue] = ACTIONS(1915), + [anon_sym_for] = ACTIONS(1915), + [anon_sym_in2] = ACTIONS(1915), + [anon_sym_loop] = ACTIONS(1915), + [anon_sym_make] = ACTIONS(1915), + [anon_sym_while] = ACTIONS(1915), + [anon_sym_do] = ACTIONS(1915), + [anon_sym_if] = ACTIONS(1915), + [anon_sym_else] = ACTIONS(1915), + [anon_sym_match] = ACTIONS(1915), + [anon_sym_RBRACE] = ACTIONS(1915), + [anon_sym_try] = ACTIONS(1915), + [anon_sym_catch] = ACTIONS(1915), + [anon_sym_return] = ACTIONS(1915), + [anon_sym_source] = ACTIONS(1915), + [anon_sym_source_DASHenv] = ACTIONS(1915), + [anon_sym_register] = ACTIONS(1915), + [anon_sym_hide] = ACTIONS(1915), + [anon_sym_hide_DASHenv] = ACTIONS(1915), + [anon_sym_overlay] = ACTIONS(1915), + [anon_sym_as] = ACTIONS(1915), + [anon_sym_PLUS2] = ACTIONS(1915), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1915), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1915), + [aux_sym__val_number_decimal_token1] = ACTIONS(1915), + [aux_sym__val_number_decimal_token2] = ACTIONS(1915), + [aux_sym__val_number_decimal_token3] = ACTIONS(1915), + [aux_sym__val_number_decimal_token4] = ACTIONS(1915), + [aux_sym__val_number_token1] = ACTIONS(1915), + [aux_sym__val_number_token2] = ACTIONS(1915), + [aux_sym__val_number_token3] = ACTIONS(1915), + [aux_sym__val_number_token4] = ACTIONS(1915), + [aux_sym__val_number_token5] = ACTIONS(1915), + [aux_sym__val_number_token6] = ACTIONS(1915), + [anon_sym_DQUOTE] = ACTIONS(1915), + [sym__str_single_quotes] = ACTIONS(1915), + [sym__str_back_ticks] = ACTIONS(1915), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1915), + [sym__entry_separator] = ACTIONS(1917), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2439), + [sym_raw_string_begin] = ACTIONS(1917), }, [662] = { [sym_comment] = STATE(662), - [anon_sym_export] = ACTIONS(2004), - [anon_sym_alias] = ACTIONS(2004), - [anon_sym_let] = ACTIONS(2004), - [anon_sym_let_DASHenv] = ACTIONS(2004), - [anon_sym_mut] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2004), - [aux_sym_cmd_identifier_token1] = ACTIONS(2004), - [aux_sym_cmd_identifier_token2] = ACTIONS(2004), - [aux_sym_cmd_identifier_token3] = ACTIONS(2004), - [aux_sym_cmd_identifier_token4] = ACTIONS(2004), - [aux_sym_cmd_identifier_token5] = ACTIONS(2004), - [aux_sym_cmd_identifier_token6] = ACTIONS(2004), - [aux_sym_cmd_identifier_token7] = ACTIONS(2004), - [aux_sym_cmd_identifier_token8] = ACTIONS(2004), - [aux_sym_cmd_identifier_token9] = ACTIONS(2004), - [aux_sym_cmd_identifier_token10] = ACTIONS(2004), - [aux_sym_cmd_identifier_token11] = ACTIONS(2004), - [aux_sym_cmd_identifier_token12] = ACTIONS(2004), - [aux_sym_cmd_identifier_token13] = ACTIONS(2004), - [aux_sym_cmd_identifier_token14] = ACTIONS(2004), - [aux_sym_cmd_identifier_token15] = ACTIONS(2004), - [aux_sym_cmd_identifier_token16] = ACTIONS(2004), - [aux_sym_cmd_identifier_token17] = ACTIONS(2004), - [aux_sym_cmd_identifier_token18] = ACTIONS(2004), - [aux_sym_cmd_identifier_token19] = ACTIONS(2004), - [aux_sym_cmd_identifier_token20] = ACTIONS(2004), - [aux_sym_cmd_identifier_token21] = ACTIONS(2004), - [aux_sym_cmd_identifier_token22] = ACTIONS(2004), - [aux_sym_cmd_identifier_token23] = ACTIONS(2004), - [aux_sym_cmd_identifier_token24] = ACTIONS(2004), - [aux_sym_cmd_identifier_token25] = ACTIONS(2004), - [aux_sym_cmd_identifier_token26] = ACTIONS(2004), - [aux_sym_cmd_identifier_token27] = ACTIONS(2004), - [aux_sym_cmd_identifier_token28] = ACTIONS(2004), - [aux_sym_cmd_identifier_token29] = ACTIONS(2004), - [aux_sym_cmd_identifier_token30] = ACTIONS(2004), - [aux_sym_cmd_identifier_token31] = ACTIONS(2004), - [aux_sym_cmd_identifier_token32] = ACTIONS(2004), - [aux_sym_cmd_identifier_token33] = ACTIONS(2004), - [aux_sym_cmd_identifier_token34] = ACTIONS(2004), - [aux_sym_cmd_identifier_token35] = ACTIONS(2004), - [aux_sym_cmd_identifier_token36] = ACTIONS(2004), - [aux_sym_cmd_identifier_token37] = ACTIONS(2004), - [aux_sym_cmd_identifier_token38] = ACTIONS(2004), - [aux_sym_cmd_identifier_token39] = ACTIONS(2004), - [aux_sym_cmd_identifier_token40] = ACTIONS(2004), - [anon_sym_def] = ACTIONS(2004), - [anon_sym_export_DASHenv] = ACTIONS(2004), - [anon_sym_extern] = ACTIONS(2004), - [anon_sym_module] = ACTIONS(2004), - [anon_sym_use] = ACTIONS(2004), - [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_DOLLAR] = ACTIONS(2004), - [anon_sym_error] = ACTIONS(2004), - [anon_sym_DASH2] = ACTIONS(2004), - [anon_sym_break] = ACTIONS(2004), - [anon_sym_continue] = ACTIONS(2004), - [anon_sym_for] = ACTIONS(2004), - [anon_sym_in2] = ACTIONS(2004), - [anon_sym_loop] = ACTIONS(2004), - [anon_sym_make] = ACTIONS(2004), - [anon_sym_while] = ACTIONS(2004), - [anon_sym_do] = ACTIONS(2004), - [anon_sym_if] = ACTIONS(2004), - [anon_sym_else] = ACTIONS(2004), - [anon_sym_match] = ACTIONS(2004), - [anon_sym_RBRACE] = ACTIONS(2004), - [anon_sym_try] = ACTIONS(2004), - [anon_sym_catch] = ACTIONS(2004), - [anon_sym_return] = ACTIONS(2004), - [anon_sym_source] = ACTIONS(2004), - [anon_sym_source_DASHenv] = ACTIONS(2004), - [anon_sym_register] = ACTIONS(2004), - [anon_sym_hide] = ACTIONS(2004), - [anon_sym_hide_DASHenv] = ACTIONS(2004), - [anon_sym_overlay] = ACTIONS(2004), - [anon_sym_as] = ACTIONS(2004), - [anon_sym_PLUS2] = ACTIONS(2004), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2004), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2004), - [aux_sym__val_number_decimal_token1] = ACTIONS(2004), - [aux_sym__val_number_decimal_token2] = ACTIONS(2004), - [aux_sym__val_number_decimal_token3] = ACTIONS(2004), - [aux_sym__val_number_decimal_token4] = ACTIONS(2004), - [aux_sym__val_number_token1] = ACTIONS(2004), - [aux_sym__val_number_token2] = ACTIONS(2004), - [aux_sym__val_number_token3] = ACTIONS(2004), - [aux_sym__val_number_token4] = ACTIONS(2004), - [aux_sym__val_number_token5] = ACTIONS(2004), - [aux_sym__val_number_token6] = ACTIONS(2004), - [anon_sym_DQUOTE] = ACTIONS(2004), - [sym__str_single_quotes] = ACTIONS(2004), - [sym__str_back_ticks] = ACTIONS(2004), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2004), - [sym__entry_separator] = ACTIONS(2006), + [anon_sym_export] = ACTIONS(994), + [anon_sym_alias] = ACTIONS(994), + [anon_sym_let] = ACTIONS(994), + [anon_sym_let_DASHenv] = ACTIONS(994), + [anon_sym_mut] = ACTIONS(994), + [anon_sym_const] = ACTIONS(994), + [aux_sym_cmd_identifier_token1] = ACTIONS(994), + [aux_sym_cmd_identifier_token2] = ACTIONS(994), + [aux_sym_cmd_identifier_token3] = ACTIONS(994), + [aux_sym_cmd_identifier_token4] = ACTIONS(994), + [aux_sym_cmd_identifier_token5] = ACTIONS(994), + [aux_sym_cmd_identifier_token6] = ACTIONS(994), + [aux_sym_cmd_identifier_token7] = ACTIONS(994), + [aux_sym_cmd_identifier_token8] = ACTIONS(994), + [aux_sym_cmd_identifier_token9] = ACTIONS(994), + [aux_sym_cmd_identifier_token10] = ACTIONS(994), + [aux_sym_cmd_identifier_token11] = ACTIONS(994), + [aux_sym_cmd_identifier_token12] = ACTIONS(994), + [aux_sym_cmd_identifier_token13] = ACTIONS(994), + [aux_sym_cmd_identifier_token14] = ACTIONS(994), + [aux_sym_cmd_identifier_token15] = ACTIONS(994), + [aux_sym_cmd_identifier_token16] = ACTIONS(994), + [aux_sym_cmd_identifier_token17] = ACTIONS(994), + [aux_sym_cmd_identifier_token18] = ACTIONS(994), + [aux_sym_cmd_identifier_token19] = ACTIONS(994), + [aux_sym_cmd_identifier_token20] = ACTIONS(994), + [aux_sym_cmd_identifier_token21] = ACTIONS(994), + [aux_sym_cmd_identifier_token22] = ACTIONS(994), + [aux_sym_cmd_identifier_token23] = ACTIONS(994), + [aux_sym_cmd_identifier_token24] = ACTIONS(994), + [aux_sym_cmd_identifier_token25] = ACTIONS(994), + [aux_sym_cmd_identifier_token26] = ACTIONS(994), + [aux_sym_cmd_identifier_token27] = ACTIONS(994), + [aux_sym_cmd_identifier_token28] = ACTIONS(994), + [aux_sym_cmd_identifier_token29] = ACTIONS(994), + [aux_sym_cmd_identifier_token30] = ACTIONS(994), + [aux_sym_cmd_identifier_token31] = ACTIONS(994), + [aux_sym_cmd_identifier_token32] = ACTIONS(994), + [aux_sym_cmd_identifier_token33] = ACTIONS(994), + [aux_sym_cmd_identifier_token34] = ACTIONS(994), + [aux_sym_cmd_identifier_token35] = ACTIONS(994), + [aux_sym_cmd_identifier_token36] = ACTIONS(994), + [aux_sym_cmd_identifier_token37] = ACTIONS(994), + [aux_sym_cmd_identifier_token38] = ACTIONS(994), + [aux_sym_cmd_identifier_token39] = ACTIONS(994), + [aux_sym_cmd_identifier_token40] = ACTIONS(994), + [anon_sym_def] = ACTIONS(994), + [anon_sym_export_DASHenv] = ACTIONS(994), + [anon_sym_extern] = ACTIONS(994), + [anon_sym_module] = ACTIONS(994), + [anon_sym_use] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_error] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_break] = ACTIONS(994), + [anon_sym_continue] = ACTIONS(994), + [anon_sym_for] = ACTIONS(994), + [anon_sym_in2] = ACTIONS(994), + [anon_sym_loop] = ACTIONS(994), + [anon_sym_make] = ACTIONS(994), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(994), + [anon_sym_if] = ACTIONS(994), + [anon_sym_else] = ACTIONS(994), + [anon_sym_match] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_try] = ACTIONS(994), + [anon_sym_catch] = ACTIONS(994), + [anon_sym_return] = ACTIONS(994), + [anon_sym_source] = ACTIONS(994), + [anon_sym_source_DASHenv] = ACTIONS(994), + [anon_sym_register] = ACTIONS(994), + [anon_sym_hide] = ACTIONS(994), + [anon_sym_hide_DASHenv] = ACTIONS(994), + [anon_sym_overlay] = ACTIONS(994), + [anon_sym_as] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(994), + [aux_sym__val_number_decimal_token1] = ACTIONS(994), + [aux_sym__val_number_decimal_token2] = ACTIONS(994), + [aux_sym__val_number_decimal_token3] = ACTIONS(994), + [aux_sym__val_number_decimal_token4] = ACTIONS(994), + [aux_sym__val_number_token1] = ACTIONS(994), + [aux_sym__val_number_token2] = ACTIONS(994), + [aux_sym__val_number_token3] = ACTIONS(994), + [aux_sym__val_number_token4] = ACTIONS(994), + [aux_sym__val_number_token5] = ACTIONS(994), + [aux_sym__val_number_token6] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym__str_single_quotes] = ACTIONS(994), + [sym__str_back_ticks] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(994), + [sym__entry_separator] = ACTIONS(996), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2006), + [sym_raw_string_begin] = ACTIONS(996), }, [663] = { [sym_comment] = STATE(663), - [anon_sym_export] = ACTIONS(2441), - [anon_sym_alias] = ACTIONS(2441), - [anon_sym_let] = ACTIONS(2441), - [anon_sym_let_DASHenv] = ACTIONS(2441), - [anon_sym_mut] = ACTIONS(2441), - [anon_sym_const] = ACTIONS(2441), - [aux_sym_cmd_identifier_token1] = ACTIONS(2441), - [aux_sym_cmd_identifier_token2] = ACTIONS(2441), - [aux_sym_cmd_identifier_token3] = ACTIONS(2441), - [aux_sym_cmd_identifier_token4] = ACTIONS(2441), - [aux_sym_cmd_identifier_token5] = ACTIONS(2441), - [aux_sym_cmd_identifier_token6] = ACTIONS(2441), - [aux_sym_cmd_identifier_token7] = ACTIONS(2441), - [aux_sym_cmd_identifier_token8] = ACTIONS(2441), - [aux_sym_cmd_identifier_token9] = ACTIONS(2441), - [aux_sym_cmd_identifier_token10] = ACTIONS(2441), - [aux_sym_cmd_identifier_token11] = ACTIONS(2441), - [aux_sym_cmd_identifier_token12] = ACTIONS(2441), - [aux_sym_cmd_identifier_token13] = ACTIONS(2441), - [aux_sym_cmd_identifier_token14] = ACTIONS(2441), - [aux_sym_cmd_identifier_token15] = ACTIONS(2441), - [aux_sym_cmd_identifier_token16] = ACTIONS(2441), - [aux_sym_cmd_identifier_token17] = ACTIONS(2441), - [aux_sym_cmd_identifier_token18] = ACTIONS(2441), - [aux_sym_cmd_identifier_token19] = ACTIONS(2441), - [aux_sym_cmd_identifier_token20] = ACTIONS(2441), - [aux_sym_cmd_identifier_token21] = ACTIONS(2441), - [aux_sym_cmd_identifier_token22] = ACTIONS(2441), - [aux_sym_cmd_identifier_token23] = ACTIONS(2441), - [aux_sym_cmd_identifier_token24] = ACTIONS(2441), - [aux_sym_cmd_identifier_token25] = ACTIONS(2441), - [aux_sym_cmd_identifier_token26] = ACTIONS(2441), - [aux_sym_cmd_identifier_token27] = ACTIONS(2441), - [aux_sym_cmd_identifier_token28] = ACTIONS(2441), - [aux_sym_cmd_identifier_token29] = ACTIONS(2441), - [aux_sym_cmd_identifier_token30] = ACTIONS(2441), - [aux_sym_cmd_identifier_token31] = ACTIONS(2441), - [aux_sym_cmd_identifier_token32] = ACTIONS(2441), - [aux_sym_cmd_identifier_token33] = ACTIONS(2441), - [aux_sym_cmd_identifier_token34] = ACTIONS(2441), - [aux_sym_cmd_identifier_token35] = ACTIONS(2441), - [aux_sym_cmd_identifier_token36] = ACTIONS(2441), - [aux_sym_cmd_identifier_token37] = ACTIONS(2441), - [aux_sym_cmd_identifier_token38] = ACTIONS(2441), - [aux_sym_cmd_identifier_token39] = ACTIONS(2441), - [aux_sym_cmd_identifier_token40] = ACTIONS(2441), - [anon_sym_def] = ACTIONS(2441), - [anon_sym_export_DASHenv] = ACTIONS(2441), - [anon_sym_extern] = ACTIONS(2441), - [anon_sym_module] = ACTIONS(2441), - [anon_sym_use] = ACTIONS(2441), - [anon_sym_LPAREN] = ACTIONS(2441), - [anon_sym_DOLLAR] = ACTIONS(2441), - [anon_sym_error] = ACTIONS(2441), - [anon_sym_DASH2] = ACTIONS(2441), - [anon_sym_break] = ACTIONS(2441), - [anon_sym_continue] = ACTIONS(2441), - [anon_sym_for] = ACTIONS(2441), - [anon_sym_in2] = ACTIONS(2441), - [anon_sym_loop] = ACTIONS(2441), - [anon_sym_make] = ACTIONS(2441), - [anon_sym_while] = ACTIONS(2441), - [anon_sym_do] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2441), - [anon_sym_else] = ACTIONS(2441), - [anon_sym_match] = ACTIONS(2441), - [anon_sym_RBRACE] = ACTIONS(2441), - [anon_sym_try] = ACTIONS(2441), - [anon_sym_catch] = ACTIONS(2441), - [anon_sym_return] = ACTIONS(2441), - [anon_sym_source] = ACTIONS(2441), - [anon_sym_source_DASHenv] = ACTIONS(2441), - [anon_sym_register] = ACTIONS(2441), - [anon_sym_hide] = ACTIONS(2441), - [anon_sym_hide_DASHenv] = ACTIONS(2441), - [anon_sym_overlay] = ACTIONS(2441), - [anon_sym_as] = ACTIONS(2441), - [anon_sym_PLUS2] = ACTIONS(2441), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2441), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2441), - [aux_sym__val_number_decimal_token1] = ACTIONS(2441), - [aux_sym__val_number_decimal_token2] = ACTIONS(2441), - [aux_sym__val_number_decimal_token3] = ACTIONS(2441), - [aux_sym__val_number_decimal_token4] = ACTIONS(2441), - [aux_sym__val_number_token1] = ACTIONS(2441), - [aux_sym__val_number_token2] = ACTIONS(2441), - [aux_sym__val_number_token3] = ACTIONS(2441), - [aux_sym__val_number_token4] = ACTIONS(2441), - [aux_sym__val_number_token5] = ACTIONS(2441), - [aux_sym__val_number_token6] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym__str_single_quotes] = ACTIONS(2441), - [sym__str_back_ticks] = ACTIONS(2441), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2441), - [sym__entry_separator] = ACTIONS(2443), + [anon_sym_export] = ACTIONS(998), + [anon_sym_alias] = ACTIONS(998), + [anon_sym_let] = ACTIONS(998), + [anon_sym_let_DASHenv] = ACTIONS(998), + [anon_sym_mut] = ACTIONS(998), + [anon_sym_const] = ACTIONS(998), + [aux_sym_cmd_identifier_token1] = ACTIONS(998), + [aux_sym_cmd_identifier_token2] = ACTIONS(998), + [aux_sym_cmd_identifier_token3] = ACTIONS(998), + [aux_sym_cmd_identifier_token4] = ACTIONS(998), + [aux_sym_cmd_identifier_token5] = ACTIONS(998), + [aux_sym_cmd_identifier_token6] = ACTIONS(998), + [aux_sym_cmd_identifier_token7] = ACTIONS(998), + [aux_sym_cmd_identifier_token8] = ACTIONS(998), + [aux_sym_cmd_identifier_token9] = ACTIONS(998), + [aux_sym_cmd_identifier_token10] = ACTIONS(998), + [aux_sym_cmd_identifier_token11] = ACTIONS(998), + [aux_sym_cmd_identifier_token12] = ACTIONS(998), + [aux_sym_cmd_identifier_token13] = ACTIONS(998), + [aux_sym_cmd_identifier_token14] = ACTIONS(998), + [aux_sym_cmd_identifier_token15] = ACTIONS(998), + [aux_sym_cmd_identifier_token16] = ACTIONS(998), + [aux_sym_cmd_identifier_token17] = ACTIONS(998), + [aux_sym_cmd_identifier_token18] = ACTIONS(998), + [aux_sym_cmd_identifier_token19] = ACTIONS(998), + [aux_sym_cmd_identifier_token20] = ACTIONS(998), + [aux_sym_cmd_identifier_token21] = ACTIONS(998), + [aux_sym_cmd_identifier_token22] = ACTIONS(998), + [aux_sym_cmd_identifier_token23] = ACTIONS(998), + [aux_sym_cmd_identifier_token24] = ACTIONS(998), + [aux_sym_cmd_identifier_token25] = ACTIONS(998), + [aux_sym_cmd_identifier_token26] = ACTIONS(998), + [aux_sym_cmd_identifier_token27] = ACTIONS(998), + [aux_sym_cmd_identifier_token28] = ACTIONS(998), + [aux_sym_cmd_identifier_token29] = ACTIONS(998), + [aux_sym_cmd_identifier_token30] = ACTIONS(998), + [aux_sym_cmd_identifier_token31] = ACTIONS(998), + [aux_sym_cmd_identifier_token32] = ACTIONS(998), + [aux_sym_cmd_identifier_token33] = ACTIONS(998), + [aux_sym_cmd_identifier_token34] = ACTIONS(998), + [aux_sym_cmd_identifier_token35] = ACTIONS(998), + [aux_sym_cmd_identifier_token36] = ACTIONS(998), + [aux_sym_cmd_identifier_token37] = ACTIONS(998), + [aux_sym_cmd_identifier_token38] = ACTIONS(998), + [aux_sym_cmd_identifier_token39] = ACTIONS(998), + [aux_sym_cmd_identifier_token40] = ACTIONS(998), + [anon_sym_def] = ACTIONS(998), + [anon_sym_export_DASHenv] = ACTIONS(998), + [anon_sym_extern] = ACTIONS(998), + [anon_sym_module] = ACTIONS(998), + [anon_sym_use] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_error] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(998), + [anon_sym_break] = ACTIONS(998), + [anon_sym_continue] = ACTIONS(998), + [anon_sym_for] = ACTIONS(998), + [anon_sym_in2] = ACTIONS(998), + [anon_sym_loop] = ACTIONS(998), + [anon_sym_make] = ACTIONS(998), + [anon_sym_while] = ACTIONS(998), + [anon_sym_do] = ACTIONS(998), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(998), + [anon_sym_match] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_try] = ACTIONS(998), + [anon_sym_catch] = ACTIONS(998), + [anon_sym_return] = ACTIONS(998), + [anon_sym_source] = ACTIONS(998), + [anon_sym_source_DASHenv] = ACTIONS(998), + [anon_sym_register] = ACTIONS(998), + [anon_sym_hide] = ACTIONS(998), + [anon_sym_hide_DASHenv] = ACTIONS(998), + [anon_sym_overlay] = ACTIONS(998), + [anon_sym_as] = ACTIONS(998), + [anon_sym_PLUS2] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(998), + [aux_sym__val_number_decimal_token1] = ACTIONS(998), + [aux_sym__val_number_decimal_token2] = ACTIONS(998), + [aux_sym__val_number_decimal_token3] = ACTIONS(998), + [aux_sym__val_number_decimal_token4] = ACTIONS(998), + [aux_sym__val_number_token1] = ACTIONS(998), + [aux_sym__val_number_token2] = ACTIONS(998), + [aux_sym__val_number_token3] = ACTIONS(998), + [aux_sym__val_number_token4] = ACTIONS(998), + [aux_sym__val_number_token5] = ACTIONS(998), + [aux_sym__val_number_token6] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym__str_single_quotes] = ACTIONS(998), + [sym__str_back_ticks] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(998), + [sym__entry_separator] = ACTIONS(1000), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2443), + [sym_raw_string_begin] = ACTIONS(1000), }, [664] = { [sym_comment] = STATE(664), - [anon_sym_export] = ACTIONS(2445), - [anon_sym_alias] = ACTIONS(2445), - [anon_sym_let] = ACTIONS(2445), - [anon_sym_let_DASHenv] = ACTIONS(2445), - [anon_sym_mut] = ACTIONS(2445), - [anon_sym_const] = ACTIONS(2445), - [aux_sym_cmd_identifier_token1] = ACTIONS(2445), - [aux_sym_cmd_identifier_token2] = ACTIONS(2445), - [aux_sym_cmd_identifier_token3] = ACTIONS(2445), - [aux_sym_cmd_identifier_token4] = ACTIONS(2445), - [aux_sym_cmd_identifier_token5] = ACTIONS(2445), - [aux_sym_cmd_identifier_token6] = ACTIONS(2445), - [aux_sym_cmd_identifier_token7] = ACTIONS(2445), - [aux_sym_cmd_identifier_token8] = ACTIONS(2445), - [aux_sym_cmd_identifier_token9] = ACTIONS(2445), - [aux_sym_cmd_identifier_token10] = ACTIONS(2445), - [aux_sym_cmd_identifier_token11] = ACTIONS(2445), - [aux_sym_cmd_identifier_token12] = ACTIONS(2445), - [aux_sym_cmd_identifier_token13] = ACTIONS(2445), - [aux_sym_cmd_identifier_token14] = ACTIONS(2445), - [aux_sym_cmd_identifier_token15] = ACTIONS(2445), - [aux_sym_cmd_identifier_token16] = ACTIONS(2445), - [aux_sym_cmd_identifier_token17] = ACTIONS(2445), - [aux_sym_cmd_identifier_token18] = ACTIONS(2445), - [aux_sym_cmd_identifier_token19] = ACTIONS(2445), - [aux_sym_cmd_identifier_token20] = ACTIONS(2445), - [aux_sym_cmd_identifier_token21] = ACTIONS(2445), - [aux_sym_cmd_identifier_token22] = ACTIONS(2445), - [aux_sym_cmd_identifier_token23] = ACTIONS(2445), - [aux_sym_cmd_identifier_token24] = ACTIONS(2445), - [aux_sym_cmd_identifier_token25] = ACTIONS(2445), - [aux_sym_cmd_identifier_token26] = ACTIONS(2445), - [aux_sym_cmd_identifier_token27] = ACTIONS(2445), - [aux_sym_cmd_identifier_token28] = ACTIONS(2445), - [aux_sym_cmd_identifier_token29] = ACTIONS(2445), - [aux_sym_cmd_identifier_token30] = ACTIONS(2445), - [aux_sym_cmd_identifier_token31] = ACTIONS(2445), - [aux_sym_cmd_identifier_token32] = ACTIONS(2445), - [aux_sym_cmd_identifier_token33] = ACTIONS(2445), - [aux_sym_cmd_identifier_token34] = ACTIONS(2445), - [aux_sym_cmd_identifier_token35] = ACTIONS(2445), - [aux_sym_cmd_identifier_token36] = ACTIONS(2445), - [aux_sym_cmd_identifier_token37] = ACTIONS(2445), - [aux_sym_cmd_identifier_token38] = ACTIONS(2445), - [aux_sym_cmd_identifier_token39] = ACTIONS(2445), - [aux_sym_cmd_identifier_token40] = ACTIONS(2445), - [anon_sym_def] = ACTIONS(2445), - [anon_sym_export_DASHenv] = ACTIONS(2445), - [anon_sym_extern] = ACTIONS(2445), - [anon_sym_module] = ACTIONS(2445), - [anon_sym_use] = ACTIONS(2445), - [anon_sym_LPAREN] = ACTIONS(2445), - [anon_sym_DOLLAR] = ACTIONS(2445), - [anon_sym_error] = ACTIONS(2445), - [anon_sym_DASH2] = ACTIONS(2445), - [anon_sym_break] = ACTIONS(2445), - [anon_sym_continue] = ACTIONS(2445), - [anon_sym_for] = ACTIONS(2445), - [anon_sym_in2] = ACTIONS(2445), - [anon_sym_loop] = ACTIONS(2445), - [anon_sym_make] = ACTIONS(2445), - [anon_sym_while] = ACTIONS(2445), - [anon_sym_do] = ACTIONS(2445), - [anon_sym_if] = ACTIONS(2445), - [anon_sym_else] = ACTIONS(2445), - [anon_sym_match] = ACTIONS(2445), - [anon_sym_RBRACE] = ACTIONS(2445), - [anon_sym_try] = ACTIONS(2445), - [anon_sym_catch] = ACTIONS(2445), - [anon_sym_return] = ACTIONS(2445), - [anon_sym_source] = ACTIONS(2445), - [anon_sym_source_DASHenv] = ACTIONS(2445), - [anon_sym_register] = ACTIONS(2445), - [anon_sym_hide] = ACTIONS(2445), - [anon_sym_hide_DASHenv] = ACTIONS(2445), - [anon_sym_overlay] = ACTIONS(2445), - [anon_sym_as] = ACTIONS(2445), - [anon_sym_PLUS2] = ACTIONS(2445), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2445), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2445), - [aux_sym__val_number_decimal_token1] = ACTIONS(2445), - [aux_sym__val_number_decimal_token2] = ACTIONS(2445), - [aux_sym__val_number_decimal_token3] = ACTIONS(2445), - [aux_sym__val_number_decimal_token4] = ACTIONS(2445), - [aux_sym__val_number_token1] = ACTIONS(2445), - [aux_sym__val_number_token2] = ACTIONS(2445), - [aux_sym__val_number_token3] = ACTIONS(2445), - [aux_sym__val_number_token4] = ACTIONS(2445), - [aux_sym__val_number_token5] = ACTIONS(2445), - [aux_sym__val_number_token6] = ACTIONS(2445), - [anon_sym_DQUOTE] = ACTIONS(2445), - [sym__str_single_quotes] = ACTIONS(2445), - [sym__str_back_ticks] = ACTIONS(2445), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2445), - [sym__entry_separator] = ACTIONS(2447), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2447), - }, - [665] = { - [sym_comment] = STATE(665), - [anon_sym_export] = ACTIONS(2449), - [anon_sym_alias] = ACTIONS(2449), - [anon_sym_let] = ACTIONS(2449), - [anon_sym_let_DASHenv] = ACTIONS(2449), - [anon_sym_mut] = ACTIONS(2449), - [anon_sym_const] = ACTIONS(2449), - [aux_sym_cmd_identifier_token1] = ACTIONS(2449), - [aux_sym_cmd_identifier_token2] = ACTIONS(2449), - [aux_sym_cmd_identifier_token3] = ACTIONS(2449), - [aux_sym_cmd_identifier_token4] = ACTIONS(2449), - [aux_sym_cmd_identifier_token5] = ACTIONS(2449), - [aux_sym_cmd_identifier_token6] = ACTIONS(2449), - [aux_sym_cmd_identifier_token7] = ACTIONS(2449), - [aux_sym_cmd_identifier_token8] = ACTIONS(2449), - [aux_sym_cmd_identifier_token9] = ACTIONS(2449), - [aux_sym_cmd_identifier_token10] = ACTIONS(2449), - [aux_sym_cmd_identifier_token11] = ACTIONS(2449), - [aux_sym_cmd_identifier_token12] = ACTIONS(2449), - [aux_sym_cmd_identifier_token13] = ACTIONS(2449), - [aux_sym_cmd_identifier_token14] = ACTIONS(2449), - [aux_sym_cmd_identifier_token15] = ACTIONS(2449), - [aux_sym_cmd_identifier_token16] = ACTIONS(2449), - [aux_sym_cmd_identifier_token17] = ACTIONS(2449), - [aux_sym_cmd_identifier_token18] = ACTIONS(2449), - [aux_sym_cmd_identifier_token19] = ACTIONS(2449), - [aux_sym_cmd_identifier_token20] = ACTIONS(2449), - [aux_sym_cmd_identifier_token21] = ACTIONS(2449), - [aux_sym_cmd_identifier_token22] = ACTIONS(2449), - [aux_sym_cmd_identifier_token23] = ACTIONS(2449), - [aux_sym_cmd_identifier_token24] = ACTIONS(2449), - [aux_sym_cmd_identifier_token25] = ACTIONS(2449), - [aux_sym_cmd_identifier_token26] = ACTIONS(2449), - [aux_sym_cmd_identifier_token27] = ACTIONS(2449), - [aux_sym_cmd_identifier_token28] = ACTIONS(2449), - [aux_sym_cmd_identifier_token29] = ACTIONS(2449), - [aux_sym_cmd_identifier_token30] = ACTIONS(2449), - [aux_sym_cmd_identifier_token31] = ACTIONS(2449), - [aux_sym_cmd_identifier_token32] = ACTIONS(2449), - [aux_sym_cmd_identifier_token33] = ACTIONS(2449), - [aux_sym_cmd_identifier_token34] = ACTIONS(2449), - [aux_sym_cmd_identifier_token35] = ACTIONS(2449), - [aux_sym_cmd_identifier_token36] = ACTIONS(2449), - [aux_sym_cmd_identifier_token37] = ACTIONS(2449), - [aux_sym_cmd_identifier_token38] = ACTIONS(2449), - [aux_sym_cmd_identifier_token39] = ACTIONS(2449), - [aux_sym_cmd_identifier_token40] = ACTIONS(2449), - [anon_sym_def] = ACTIONS(2449), - [anon_sym_export_DASHenv] = ACTIONS(2449), - [anon_sym_extern] = ACTIONS(2449), - [anon_sym_module] = ACTIONS(2449), - [anon_sym_use] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2449), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_error] = ACTIONS(2449), - [anon_sym_DASH2] = ACTIONS(2449), - [anon_sym_break] = ACTIONS(2449), - [anon_sym_continue] = ACTIONS(2449), - [anon_sym_for] = ACTIONS(2449), - [anon_sym_in2] = ACTIONS(2449), - [anon_sym_loop] = ACTIONS(2449), - [anon_sym_make] = ACTIONS(2449), - [anon_sym_while] = ACTIONS(2449), - [anon_sym_do] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2449), - [anon_sym_else] = ACTIONS(2449), - [anon_sym_match] = ACTIONS(2449), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_try] = ACTIONS(2449), - [anon_sym_catch] = ACTIONS(2449), - [anon_sym_return] = ACTIONS(2449), - [anon_sym_source] = ACTIONS(2449), - [anon_sym_source_DASHenv] = ACTIONS(2449), - [anon_sym_register] = ACTIONS(2449), - [anon_sym_hide] = ACTIONS(2449), - [anon_sym_hide_DASHenv] = ACTIONS(2449), - [anon_sym_overlay] = ACTIONS(2449), - [anon_sym_as] = ACTIONS(2449), - [anon_sym_PLUS2] = ACTIONS(2449), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2449), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2449), - [aux_sym__val_number_decimal_token1] = ACTIONS(2449), - [aux_sym__val_number_decimal_token2] = ACTIONS(2449), - [aux_sym__val_number_decimal_token3] = ACTIONS(2449), - [aux_sym__val_number_decimal_token4] = ACTIONS(2449), - [aux_sym__val_number_token1] = ACTIONS(2449), - [aux_sym__val_number_token2] = ACTIONS(2449), - [aux_sym__val_number_token3] = ACTIONS(2449), - [aux_sym__val_number_token4] = ACTIONS(2449), - [aux_sym__val_number_token5] = ACTIONS(2449), - [aux_sym__val_number_token6] = ACTIONS(2449), - [anon_sym_DQUOTE] = ACTIONS(2449), - [sym__str_single_quotes] = ACTIONS(2449), - [sym__str_back_ticks] = ACTIONS(2449), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2449), - [sym__entry_separator] = ACTIONS(2451), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2451), - }, - [666] = { - [sym_comment] = STATE(666), - [aux_sym_shebang_repeat1] = STATE(666), - [anon_sym_export] = ACTIONS(1294), - [anon_sym_alias] = ACTIONS(1294), - [anon_sym_let] = ACTIONS(1294), - [anon_sym_let_DASHenv] = ACTIONS(1294), - [anon_sym_mut] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [aux_sym_cmd_identifier_token1] = ACTIONS(1294), - [aux_sym_cmd_identifier_token2] = ACTIONS(1296), - [aux_sym_cmd_identifier_token3] = ACTIONS(1296), - [aux_sym_cmd_identifier_token4] = ACTIONS(1296), - [aux_sym_cmd_identifier_token5] = ACTIONS(1296), - [aux_sym_cmd_identifier_token6] = ACTIONS(1296), - [aux_sym_cmd_identifier_token7] = ACTIONS(1296), - [aux_sym_cmd_identifier_token8] = ACTIONS(1294), - [aux_sym_cmd_identifier_token9] = ACTIONS(1294), - [aux_sym_cmd_identifier_token10] = ACTIONS(1296), - [aux_sym_cmd_identifier_token11] = ACTIONS(1296), - [aux_sym_cmd_identifier_token12] = ACTIONS(1294), - [aux_sym_cmd_identifier_token13] = ACTIONS(1294), - [aux_sym_cmd_identifier_token14] = ACTIONS(1294), - [aux_sym_cmd_identifier_token15] = ACTIONS(1294), - [aux_sym_cmd_identifier_token16] = ACTIONS(1296), - [aux_sym_cmd_identifier_token17] = ACTIONS(1296), - [aux_sym_cmd_identifier_token18] = ACTIONS(1296), - [aux_sym_cmd_identifier_token19] = ACTIONS(1296), - [aux_sym_cmd_identifier_token20] = ACTIONS(1296), - [aux_sym_cmd_identifier_token21] = ACTIONS(1296), - [aux_sym_cmd_identifier_token22] = ACTIONS(1296), - [aux_sym_cmd_identifier_token23] = ACTIONS(1296), - [aux_sym_cmd_identifier_token24] = ACTIONS(1296), - [aux_sym_cmd_identifier_token25] = ACTIONS(1296), - [aux_sym_cmd_identifier_token26] = ACTIONS(1296), - [aux_sym_cmd_identifier_token27] = ACTIONS(1296), - [aux_sym_cmd_identifier_token28] = ACTIONS(1296), - [aux_sym_cmd_identifier_token29] = ACTIONS(1296), - [aux_sym_cmd_identifier_token30] = ACTIONS(1296), - [aux_sym_cmd_identifier_token31] = ACTIONS(1296), - [aux_sym_cmd_identifier_token32] = ACTIONS(1296), - [aux_sym_cmd_identifier_token33] = ACTIONS(1296), - [aux_sym_cmd_identifier_token34] = ACTIONS(1294), - [aux_sym_cmd_identifier_token35] = ACTIONS(1296), - [aux_sym_cmd_identifier_token36] = ACTIONS(1296), - [aux_sym_cmd_identifier_token37] = ACTIONS(1296), - [aux_sym_cmd_identifier_token38] = ACTIONS(1294), - [aux_sym_cmd_identifier_token39] = ACTIONS(1296), - [aux_sym_cmd_identifier_token40] = ACTIONS(1296), - [sym__newline] = ACTIONS(2453), - [anon_sym_def] = ACTIONS(1294), - [anon_sym_export_DASHenv] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym_module] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1296), - [anon_sym_DOLLAR] = ACTIONS(1296), - [anon_sym_error] = ACTIONS(1294), - [anon_sym_DASH2] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_in2] = ACTIONS(1294), - [anon_sym_loop] = ACTIONS(1294), - [anon_sym_make] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_else] = ACTIONS(1294), - [anon_sym_match] = ACTIONS(1294), - [anon_sym_try] = ACTIONS(1294), - [anon_sym_catch] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_source] = ACTIONS(1294), - [anon_sym_source_DASHenv] = ACTIONS(1294), - [anon_sym_register] = ACTIONS(1294), - [anon_sym_hide] = ACTIONS(1294), - [anon_sym_hide_DASHenv] = ACTIONS(1294), - [anon_sym_overlay] = ACTIONS(1294), - [anon_sym_as] = ACTIONS(1294), - [anon_sym_PLUS2] = ACTIONS(1294), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1296), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1296), - [aux_sym__val_number_decimal_token1] = ACTIONS(1294), - [aux_sym__val_number_decimal_token2] = ACTIONS(1296), - [aux_sym__val_number_decimal_token3] = ACTIONS(1296), - [aux_sym__val_number_decimal_token4] = ACTIONS(1296), - [aux_sym__val_number_token1] = ACTIONS(1296), - [aux_sym__val_number_token2] = ACTIONS(1296), - [aux_sym__val_number_token3] = ACTIONS(1296), - [aux_sym__val_number_token4] = ACTIONS(1294), - [aux_sym__val_number_token5] = ACTIONS(1294), - [aux_sym__val_number_token6] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym__str_single_quotes] = ACTIONS(1296), - [sym__str_back_ticks] = ACTIONS(1296), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1296), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1296), - }, - [667] = { - [sym_comment] = STATE(667), [anon_sym_export] = ACTIONS(2456), [anon_sym_alias] = ACTIONS(2456), [anon_sym_let] = ACTIONS(2456), @@ -146695,6 +146714,306 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2458), }, + [665] = { + [sym_comment] = STATE(665), + [anon_sym_export] = ACTIONS(2130), + [anon_sym_alias] = ACTIONS(2130), + [anon_sym_let] = ACTIONS(2130), + [anon_sym_let_DASHenv] = ACTIONS(2130), + [anon_sym_mut] = ACTIONS(2130), + [anon_sym_const] = ACTIONS(2130), + [aux_sym_cmd_identifier_token1] = ACTIONS(2130), + [aux_sym_cmd_identifier_token2] = ACTIONS(2130), + [aux_sym_cmd_identifier_token3] = ACTIONS(2130), + [aux_sym_cmd_identifier_token4] = ACTIONS(2130), + [aux_sym_cmd_identifier_token5] = ACTIONS(2130), + [aux_sym_cmd_identifier_token6] = ACTIONS(2130), + [aux_sym_cmd_identifier_token7] = ACTIONS(2130), + [aux_sym_cmd_identifier_token8] = ACTIONS(2130), + [aux_sym_cmd_identifier_token9] = ACTIONS(2130), + [aux_sym_cmd_identifier_token10] = ACTIONS(2130), + [aux_sym_cmd_identifier_token11] = ACTIONS(2130), + [aux_sym_cmd_identifier_token12] = ACTIONS(2130), + [aux_sym_cmd_identifier_token13] = ACTIONS(2130), + [aux_sym_cmd_identifier_token14] = ACTIONS(2130), + [aux_sym_cmd_identifier_token15] = ACTIONS(2130), + [aux_sym_cmd_identifier_token16] = ACTIONS(2130), + [aux_sym_cmd_identifier_token17] = ACTIONS(2130), + [aux_sym_cmd_identifier_token18] = ACTIONS(2130), + [aux_sym_cmd_identifier_token19] = ACTIONS(2130), + [aux_sym_cmd_identifier_token20] = ACTIONS(2130), + [aux_sym_cmd_identifier_token21] = ACTIONS(2130), + [aux_sym_cmd_identifier_token22] = ACTIONS(2130), + [aux_sym_cmd_identifier_token23] = ACTIONS(2130), + [aux_sym_cmd_identifier_token24] = ACTIONS(2130), + [aux_sym_cmd_identifier_token25] = ACTIONS(2130), + [aux_sym_cmd_identifier_token26] = ACTIONS(2130), + [aux_sym_cmd_identifier_token27] = ACTIONS(2130), + [aux_sym_cmd_identifier_token28] = ACTIONS(2130), + [aux_sym_cmd_identifier_token29] = ACTIONS(2130), + [aux_sym_cmd_identifier_token30] = ACTIONS(2130), + [aux_sym_cmd_identifier_token31] = ACTIONS(2130), + [aux_sym_cmd_identifier_token32] = ACTIONS(2130), + [aux_sym_cmd_identifier_token33] = ACTIONS(2130), + [aux_sym_cmd_identifier_token34] = ACTIONS(2130), + [aux_sym_cmd_identifier_token35] = ACTIONS(2130), + [aux_sym_cmd_identifier_token36] = ACTIONS(2130), + [aux_sym_cmd_identifier_token37] = ACTIONS(2130), + [aux_sym_cmd_identifier_token38] = ACTIONS(2130), + [aux_sym_cmd_identifier_token39] = ACTIONS(2130), + [aux_sym_cmd_identifier_token40] = ACTIONS(2130), + [anon_sym_def] = ACTIONS(2130), + [anon_sym_export_DASHenv] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(2130), + [anon_sym_module] = ACTIONS(2130), + [anon_sym_use] = ACTIONS(2130), + [anon_sym_LPAREN] = ACTIONS(2130), + [anon_sym_DOLLAR] = ACTIONS(2130), + [anon_sym_error] = ACTIONS(2130), + [anon_sym_DASH2] = ACTIONS(2130), + [anon_sym_break] = ACTIONS(2130), + [anon_sym_continue] = ACTIONS(2130), + [anon_sym_for] = ACTIONS(2130), + [anon_sym_in2] = ACTIONS(2130), + [anon_sym_loop] = ACTIONS(2130), + [anon_sym_make] = ACTIONS(2130), + [anon_sym_while] = ACTIONS(2130), + [anon_sym_do] = ACTIONS(2130), + [anon_sym_if] = ACTIONS(2130), + [anon_sym_else] = ACTIONS(2130), + [anon_sym_match] = ACTIONS(2130), + [anon_sym_RBRACE] = ACTIONS(2130), + [anon_sym_try] = ACTIONS(2130), + [anon_sym_catch] = ACTIONS(2130), + [anon_sym_return] = ACTIONS(2130), + [anon_sym_source] = ACTIONS(2130), + [anon_sym_source_DASHenv] = ACTIONS(2130), + [anon_sym_register] = ACTIONS(2130), + [anon_sym_hide] = ACTIONS(2130), + [anon_sym_hide_DASHenv] = ACTIONS(2130), + [anon_sym_overlay] = ACTIONS(2130), + [anon_sym_as] = ACTIONS(2130), + [anon_sym_PLUS2] = ACTIONS(2130), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2130), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2130), + [aux_sym__val_number_decimal_token1] = ACTIONS(2130), + [aux_sym__val_number_decimal_token2] = ACTIONS(2130), + [aux_sym__val_number_decimal_token3] = ACTIONS(2130), + [aux_sym__val_number_decimal_token4] = ACTIONS(2130), + [aux_sym__val_number_token1] = ACTIONS(2130), + [aux_sym__val_number_token2] = ACTIONS(2130), + [aux_sym__val_number_token3] = ACTIONS(2130), + [aux_sym__val_number_token4] = ACTIONS(2130), + [aux_sym__val_number_token5] = ACTIONS(2130), + [aux_sym__val_number_token6] = ACTIONS(2130), + [anon_sym_DQUOTE] = ACTIONS(2130), + [sym__str_single_quotes] = ACTIONS(2130), + [sym__str_back_ticks] = ACTIONS(2130), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2130), + [sym__entry_separator] = ACTIONS(2136), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2136), + }, + [666] = { + [sym_comment] = STATE(666), + [anon_sym_export] = ACTIONS(1785), + [anon_sym_alias] = ACTIONS(1785), + [anon_sym_let] = ACTIONS(1785), + [anon_sym_let_DASHenv] = ACTIONS(1785), + [anon_sym_mut] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(1785), + [aux_sym_cmd_identifier_token1] = ACTIONS(1785), + [aux_sym_cmd_identifier_token2] = ACTIONS(1785), + [aux_sym_cmd_identifier_token3] = ACTIONS(1785), + [aux_sym_cmd_identifier_token4] = ACTIONS(1785), + [aux_sym_cmd_identifier_token5] = ACTIONS(1785), + [aux_sym_cmd_identifier_token6] = ACTIONS(1785), + [aux_sym_cmd_identifier_token7] = ACTIONS(1785), + [aux_sym_cmd_identifier_token8] = ACTIONS(1785), + [aux_sym_cmd_identifier_token9] = ACTIONS(1785), + [aux_sym_cmd_identifier_token10] = ACTIONS(1785), + [aux_sym_cmd_identifier_token11] = ACTIONS(1785), + [aux_sym_cmd_identifier_token12] = ACTIONS(1785), + [aux_sym_cmd_identifier_token13] = ACTIONS(1785), + [aux_sym_cmd_identifier_token14] = ACTIONS(1785), + [aux_sym_cmd_identifier_token15] = ACTIONS(1785), + [aux_sym_cmd_identifier_token16] = ACTIONS(1785), + [aux_sym_cmd_identifier_token17] = ACTIONS(1785), + [aux_sym_cmd_identifier_token18] = ACTIONS(1785), + [aux_sym_cmd_identifier_token19] = ACTIONS(1785), + [aux_sym_cmd_identifier_token20] = ACTIONS(1785), + [aux_sym_cmd_identifier_token21] = ACTIONS(1785), + [aux_sym_cmd_identifier_token22] = ACTIONS(1785), + [aux_sym_cmd_identifier_token23] = ACTIONS(1785), + [aux_sym_cmd_identifier_token24] = ACTIONS(1785), + [aux_sym_cmd_identifier_token25] = ACTIONS(1785), + [aux_sym_cmd_identifier_token26] = ACTIONS(1785), + [aux_sym_cmd_identifier_token27] = ACTIONS(1785), + [aux_sym_cmd_identifier_token28] = ACTIONS(1785), + [aux_sym_cmd_identifier_token29] = ACTIONS(1785), + [aux_sym_cmd_identifier_token30] = ACTIONS(1785), + [aux_sym_cmd_identifier_token31] = ACTIONS(1785), + [aux_sym_cmd_identifier_token32] = ACTIONS(1785), + [aux_sym_cmd_identifier_token33] = ACTIONS(1785), + [aux_sym_cmd_identifier_token34] = ACTIONS(1785), + [aux_sym_cmd_identifier_token35] = ACTIONS(1785), + [aux_sym_cmd_identifier_token36] = ACTIONS(1785), + [aux_sym_cmd_identifier_token37] = ACTIONS(1785), + [aux_sym_cmd_identifier_token38] = ACTIONS(1785), + [aux_sym_cmd_identifier_token39] = ACTIONS(1785), + [aux_sym_cmd_identifier_token40] = ACTIONS(1785), + [anon_sym_def] = ACTIONS(1785), + [anon_sym_export_DASHenv] = ACTIONS(1785), + [anon_sym_extern] = ACTIONS(1785), + [anon_sym_module] = ACTIONS(1785), + [anon_sym_use] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1785), + [anon_sym_error] = ACTIONS(1785), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_break] = ACTIONS(1785), + [anon_sym_continue] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1785), + [anon_sym_in2] = ACTIONS(1785), + [anon_sym_loop] = ACTIONS(1785), + [anon_sym_make] = ACTIONS(1785), + [anon_sym_while] = ACTIONS(1785), + [anon_sym_do] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1785), + [anon_sym_else] = ACTIONS(1785), + [anon_sym_match] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1785), + [anon_sym_catch] = ACTIONS(1785), + [anon_sym_return] = ACTIONS(1785), + [anon_sym_source] = ACTIONS(1785), + [anon_sym_source_DASHenv] = ACTIONS(1785), + [anon_sym_register] = ACTIONS(1785), + [anon_sym_hide] = ACTIONS(1785), + [anon_sym_hide_DASHenv] = ACTIONS(1785), + [anon_sym_overlay] = ACTIONS(1785), + [anon_sym_as] = ACTIONS(1785), + [anon_sym_PLUS2] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), + [aux_sym__val_number_decimal_token1] = ACTIONS(1785), + [aux_sym__val_number_decimal_token2] = ACTIONS(1785), + [aux_sym__val_number_decimal_token3] = ACTIONS(1785), + [aux_sym__val_number_decimal_token4] = ACTIONS(1785), + [aux_sym__val_number_token1] = ACTIONS(1785), + [aux_sym__val_number_token2] = ACTIONS(1785), + [aux_sym__val_number_token3] = ACTIONS(1785), + [aux_sym__val_number_token4] = ACTIONS(1785), + [aux_sym__val_number_token5] = ACTIONS(1785), + [aux_sym__val_number_token6] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1785), + [sym__str_single_quotes] = ACTIONS(1785), + [sym__str_back_ticks] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), + [sym__entry_separator] = ACTIONS(1787), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1787), + }, + [667] = { + [sym_comment] = STATE(667), + [anon_sym_export] = ACTIONS(1765), + [anon_sym_alias] = ACTIONS(1765), + [anon_sym_let] = ACTIONS(1765), + [anon_sym_let_DASHenv] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [aux_sym_cmd_identifier_token1] = ACTIONS(1765), + [aux_sym_cmd_identifier_token2] = ACTIONS(1767), + [aux_sym_cmd_identifier_token3] = ACTIONS(1767), + [aux_sym_cmd_identifier_token4] = ACTIONS(1767), + [aux_sym_cmd_identifier_token5] = ACTIONS(1767), + [aux_sym_cmd_identifier_token6] = ACTIONS(1767), + [aux_sym_cmd_identifier_token7] = ACTIONS(1767), + [aux_sym_cmd_identifier_token8] = ACTIONS(1765), + [aux_sym_cmd_identifier_token9] = ACTIONS(1765), + [aux_sym_cmd_identifier_token10] = ACTIONS(1767), + [aux_sym_cmd_identifier_token11] = ACTIONS(1767), + [aux_sym_cmd_identifier_token12] = ACTIONS(1765), + [aux_sym_cmd_identifier_token13] = ACTIONS(1765), + [aux_sym_cmd_identifier_token14] = ACTIONS(1765), + [aux_sym_cmd_identifier_token15] = ACTIONS(1765), + [aux_sym_cmd_identifier_token16] = ACTIONS(1767), + [aux_sym_cmd_identifier_token17] = ACTIONS(1767), + [aux_sym_cmd_identifier_token18] = ACTIONS(1767), + [aux_sym_cmd_identifier_token19] = ACTIONS(1767), + [aux_sym_cmd_identifier_token20] = ACTIONS(1767), + [aux_sym_cmd_identifier_token21] = ACTIONS(1767), + [aux_sym_cmd_identifier_token22] = ACTIONS(1767), + [aux_sym_cmd_identifier_token23] = ACTIONS(1767), + [aux_sym_cmd_identifier_token24] = ACTIONS(1767), + [aux_sym_cmd_identifier_token25] = ACTIONS(1767), + [aux_sym_cmd_identifier_token26] = ACTIONS(1767), + [aux_sym_cmd_identifier_token27] = ACTIONS(1767), + [aux_sym_cmd_identifier_token28] = ACTIONS(1767), + [aux_sym_cmd_identifier_token29] = ACTIONS(1767), + [aux_sym_cmd_identifier_token30] = ACTIONS(1767), + [aux_sym_cmd_identifier_token31] = ACTIONS(1767), + [aux_sym_cmd_identifier_token32] = ACTIONS(1767), + [aux_sym_cmd_identifier_token33] = ACTIONS(1767), + [aux_sym_cmd_identifier_token34] = ACTIONS(1765), + [aux_sym_cmd_identifier_token35] = ACTIONS(1767), + [aux_sym_cmd_identifier_token36] = ACTIONS(1767), + [aux_sym_cmd_identifier_token37] = ACTIONS(1767), + [aux_sym_cmd_identifier_token38] = ACTIONS(1765), + [aux_sym_cmd_identifier_token39] = ACTIONS(1767), + [aux_sym_cmd_identifier_token40] = ACTIONS(1767), + [anon_sym_def] = ACTIONS(1765), + [anon_sym_export_DASHenv] = ACTIONS(1765), + [anon_sym_extern] = ACTIONS(1765), + [anon_sym_module] = ACTIONS(1765), + [anon_sym_use] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1767), + [anon_sym_error] = ACTIONS(1765), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_in2] = ACTIONS(1765), + [anon_sym_loop] = ACTIONS(1765), + [anon_sym_make] = ACTIONS(1765), + [anon_sym_while] = ACTIONS(1765), + [anon_sym_do] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_else] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_try] = ACTIONS(1765), + [anon_sym_catch] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_source] = ACTIONS(1765), + [anon_sym_source_DASHenv] = ACTIONS(1765), + [anon_sym_register] = ACTIONS(1765), + [anon_sym_hide] = ACTIONS(1765), + [anon_sym_hide_DASHenv] = ACTIONS(1765), + [anon_sym_overlay] = ACTIONS(1765), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_PLUS2] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), + [aux_sym__immediate_decimal_token2] = ACTIONS(2341), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1765), + [aux_sym__val_number_token5] = ACTIONS(1765), + [aux_sym__val_number_token6] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1767), + }, [668] = { [sym_comment] = STATE(668), [anon_sym_export] = ACTIONS(2460), @@ -146897,106 +147216,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [670] = { [sym_comment] = STATE(670), - [anon_sym_export] = ACTIONS(2151), - [anon_sym_alias] = ACTIONS(2151), - [anon_sym_let] = ACTIONS(2151), - [anon_sym_let_DASHenv] = ACTIONS(2151), - [anon_sym_mut] = ACTIONS(2151), - [anon_sym_const] = ACTIONS(2151), - [aux_sym_cmd_identifier_token1] = ACTIONS(2151), - [aux_sym_cmd_identifier_token2] = ACTIONS(2151), - [aux_sym_cmd_identifier_token3] = ACTIONS(2151), - [aux_sym_cmd_identifier_token4] = ACTIONS(2151), - [aux_sym_cmd_identifier_token5] = ACTIONS(2151), - [aux_sym_cmd_identifier_token6] = ACTIONS(2151), - [aux_sym_cmd_identifier_token7] = ACTIONS(2151), - [aux_sym_cmd_identifier_token8] = ACTIONS(2151), - [aux_sym_cmd_identifier_token9] = ACTIONS(2151), - [aux_sym_cmd_identifier_token10] = ACTIONS(2151), - [aux_sym_cmd_identifier_token11] = ACTIONS(2151), - [aux_sym_cmd_identifier_token12] = ACTIONS(2151), - [aux_sym_cmd_identifier_token13] = ACTIONS(2151), - [aux_sym_cmd_identifier_token14] = ACTIONS(2151), - [aux_sym_cmd_identifier_token15] = ACTIONS(2151), - [aux_sym_cmd_identifier_token16] = ACTIONS(2151), - [aux_sym_cmd_identifier_token17] = ACTIONS(2151), - [aux_sym_cmd_identifier_token18] = ACTIONS(2151), - [aux_sym_cmd_identifier_token19] = ACTIONS(2151), - [aux_sym_cmd_identifier_token20] = ACTIONS(2151), - [aux_sym_cmd_identifier_token21] = ACTIONS(2151), - [aux_sym_cmd_identifier_token22] = ACTIONS(2151), - [aux_sym_cmd_identifier_token23] = ACTIONS(2151), - [aux_sym_cmd_identifier_token24] = ACTIONS(2151), - [aux_sym_cmd_identifier_token25] = ACTIONS(2151), - [aux_sym_cmd_identifier_token26] = ACTIONS(2151), - [aux_sym_cmd_identifier_token27] = ACTIONS(2151), - [aux_sym_cmd_identifier_token28] = ACTIONS(2151), - [aux_sym_cmd_identifier_token29] = ACTIONS(2151), - [aux_sym_cmd_identifier_token30] = ACTIONS(2151), - [aux_sym_cmd_identifier_token31] = ACTIONS(2151), - [aux_sym_cmd_identifier_token32] = ACTIONS(2151), - [aux_sym_cmd_identifier_token33] = ACTIONS(2151), - [aux_sym_cmd_identifier_token34] = ACTIONS(2151), - [aux_sym_cmd_identifier_token35] = ACTIONS(2151), - [aux_sym_cmd_identifier_token36] = ACTIONS(2151), - [aux_sym_cmd_identifier_token37] = ACTIONS(2151), - [aux_sym_cmd_identifier_token38] = ACTIONS(2151), - [aux_sym_cmd_identifier_token39] = ACTIONS(2151), - [aux_sym_cmd_identifier_token40] = ACTIONS(2151), - [anon_sym_def] = ACTIONS(2151), - [anon_sym_export_DASHenv] = ACTIONS(2151), - [anon_sym_extern] = ACTIONS(2151), - [anon_sym_module] = ACTIONS(2151), - [anon_sym_use] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_DOLLAR] = ACTIONS(2151), - [anon_sym_error] = ACTIONS(2151), - [anon_sym_DASH2] = ACTIONS(2151), - [anon_sym_break] = ACTIONS(2151), - [anon_sym_continue] = ACTIONS(2151), - [anon_sym_for] = ACTIONS(2151), - [anon_sym_in2] = ACTIONS(2151), - [anon_sym_loop] = ACTIONS(2151), - [anon_sym_make] = ACTIONS(2151), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_do] = ACTIONS(2151), - [anon_sym_if] = ACTIONS(2151), - [anon_sym_else] = ACTIONS(2151), - [anon_sym_match] = ACTIONS(2151), - [anon_sym_RBRACE] = ACTIONS(2151), - [anon_sym_try] = ACTIONS(2151), - [anon_sym_catch] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2151), - [anon_sym_source] = ACTIONS(2151), - [anon_sym_source_DASHenv] = ACTIONS(2151), - [anon_sym_register] = ACTIONS(2151), - [anon_sym_hide] = ACTIONS(2151), - [anon_sym_hide_DASHenv] = ACTIONS(2151), - [anon_sym_overlay] = ACTIONS(2151), - [anon_sym_as] = ACTIONS(2151), - [anon_sym_PLUS2] = ACTIONS(2151), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2151), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2151), - [aux_sym__val_number_decimal_token1] = ACTIONS(2151), - [aux_sym__val_number_decimal_token2] = ACTIONS(2151), - [aux_sym__val_number_decimal_token3] = ACTIONS(2151), - [aux_sym__val_number_decimal_token4] = ACTIONS(2151), - [aux_sym__val_number_token1] = ACTIONS(2151), - [aux_sym__val_number_token2] = ACTIONS(2151), - [aux_sym__val_number_token3] = ACTIONS(2151), - [aux_sym__val_number_token4] = ACTIONS(2151), - [aux_sym__val_number_token5] = ACTIONS(2151), - [aux_sym__val_number_token6] = ACTIONS(2151), - [anon_sym_DQUOTE] = ACTIONS(2151), - [sym__str_single_quotes] = ACTIONS(2151), - [sym__str_back_ticks] = ACTIONS(2151), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2151), - [sym__entry_separator] = ACTIONS(2153), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2153), - }, - [671] = { - [sym_comment] = STATE(671), [anon_sym_export] = ACTIONS(2468), [anon_sym_alias] = ACTIONS(2468), [anon_sym_let] = ACTIONS(2468), @@ -147093,10 +147312,410 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2468), [sym__entry_separator] = ACTIONS(2470), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2470), + [sym_raw_string_begin] = ACTIONS(2470), + }, + [671] = { + [sym_comment] = STATE(671), + [anon_sym_export] = ACTIONS(2464), + [anon_sym_alias] = ACTIONS(2464), + [anon_sym_let] = ACTIONS(2464), + [anon_sym_let_DASHenv] = ACTIONS(2464), + [anon_sym_mut] = ACTIONS(2464), + [anon_sym_const] = ACTIONS(2464), + [aux_sym_cmd_identifier_token1] = ACTIONS(2464), + [aux_sym_cmd_identifier_token2] = ACTIONS(2464), + [aux_sym_cmd_identifier_token3] = ACTIONS(2464), + [aux_sym_cmd_identifier_token4] = ACTIONS(2464), + [aux_sym_cmd_identifier_token5] = ACTIONS(2464), + [aux_sym_cmd_identifier_token6] = ACTIONS(2464), + [aux_sym_cmd_identifier_token7] = ACTIONS(2464), + [aux_sym_cmd_identifier_token8] = ACTIONS(2464), + [aux_sym_cmd_identifier_token9] = ACTIONS(2464), + [aux_sym_cmd_identifier_token10] = ACTIONS(2464), + [aux_sym_cmd_identifier_token11] = ACTIONS(2464), + [aux_sym_cmd_identifier_token12] = ACTIONS(2464), + [aux_sym_cmd_identifier_token13] = ACTIONS(2464), + [aux_sym_cmd_identifier_token14] = ACTIONS(2464), + [aux_sym_cmd_identifier_token15] = ACTIONS(2464), + [aux_sym_cmd_identifier_token16] = ACTIONS(2464), + [aux_sym_cmd_identifier_token17] = ACTIONS(2464), + [aux_sym_cmd_identifier_token18] = ACTIONS(2464), + [aux_sym_cmd_identifier_token19] = ACTIONS(2464), + [aux_sym_cmd_identifier_token20] = ACTIONS(2464), + [aux_sym_cmd_identifier_token21] = ACTIONS(2464), + [aux_sym_cmd_identifier_token22] = ACTIONS(2464), + [aux_sym_cmd_identifier_token23] = ACTIONS(2464), + [aux_sym_cmd_identifier_token24] = ACTIONS(2464), + [aux_sym_cmd_identifier_token25] = ACTIONS(2464), + [aux_sym_cmd_identifier_token26] = ACTIONS(2464), + [aux_sym_cmd_identifier_token27] = ACTIONS(2464), + [aux_sym_cmd_identifier_token28] = ACTIONS(2464), + [aux_sym_cmd_identifier_token29] = ACTIONS(2464), + [aux_sym_cmd_identifier_token30] = ACTIONS(2464), + [aux_sym_cmd_identifier_token31] = ACTIONS(2464), + [aux_sym_cmd_identifier_token32] = ACTIONS(2464), + [aux_sym_cmd_identifier_token33] = ACTIONS(2464), + [aux_sym_cmd_identifier_token34] = ACTIONS(2464), + [aux_sym_cmd_identifier_token35] = ACTIONS(2464), + [aux_sym_cmd_identifier_token36] = ACTIONS(2464), + [aux_sym_cmd_identifier_token37] = ACTIONS(2464), + [aux_sym_cmd_identifier_token38] = ACTIONS(2464), + [aux_sym_cmd_identifier_token39] = ACTIONS(2464), + [aux_sym_cmd_identifier_token40] = ACTIONS(2464), + [anon_sym_def] = ACTIONS(2464), + [anon_sym_export_DASHenv] = ACTIONS(2464), + [anon_sym_extern] = ACTIONS(2464), + [anon_sym_module] = ACTIONS(2464), + [anon_sym_use] = ACTIONS(2464), + [anon_sym_LPAREN] = ACTIONS(2464), + [anon_sym_DOLLAR] = ACTIONS(2464), + [anon_sym_error] = ACTIONS(2464), + [anon_sym_DASH2] = ACTIONS(2464), + [anon_sym_break] = ACTIONS(2464), + [anon_sym_continue] = ACTIONS(2464), + [anon_sym_for] = ACTIONS(2464), + [anon_sym_in2] = ACTIONS(2464), + [anon_sym_loop] = ACTIONS(2464), + [anon_sym_make] = ACTIONS(2464), + [anon_sym_while] = ACTIONS(2464), + [anon_sym_do] = ACTIONS(2464), + [anon_sym_if] = ACTIONS(2464), + [anon_sym_else] = ACTIONS(2464), + [anon_sym_match] = ACTIONS(2464), + [anon_sym_RBRACE] = ACTIONS(2464), + [anon_sym_try] = ACTIONS(2464), + [anon_sym_catch] = ACTIONS(2464), + [anon_sym_return] = ACTIONS(2464), + [anon_sym_source] = ACTIONS(2464), + [anon_sym_source_DASHenv] = ACTIONS(2464), + [anon_sym_register] = ACTIONS(2464), + [anon_sym_hide] = ACTIONS(2464), + [anon_sym_hide_DASHenv] = ACTIONS(2464), + [anon_sym_overlay] = ACTIONS(2464), + [anon_sym_as] = ACTIONS(2464), + [anon_sym_PLUS2] = ACTIONS(2464), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2464), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2464), + [aux_sym__val_number_decimal_token1] = ACTIONS(2464), + [aux_sym__val_number_decimal_token2] = ACTIONS(2464), + [aux_sym__val_number_decimal_token3] = ACTIONS(2464), + [aux_sym__val_number_decimal_token4] = ACTIONS(2464), + [aux_sym__val_number_token1] = ACTIONS(2464), + [aux_sym__val_number_token2] = ACTIONS(2464), + [aux_sym__val_number_token3] = ACTIONS(2464), + [aux_sym__val_number_token4] = ACTIONS(2464), + [aux_sym__val_number_token5] = ACTIONS(2464), + [aux_sym__val_number_token6] = ACTIONS(2464), + [anon_sym_DQUOTE] = ACTIONS(2464), + [sym__str_single_quotes] = ACTIONS(2464), + [sym__str_back_ticks] = ACTIONS(2464), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2464), + [sym__entry_separator] = ACTIONS(2466), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2466), + }, + [672] = { + [sym_comment] = STATE(672), + [anon_sym_export] = ACTIONS(1002), + [anon_sym_alias] = ACTIONS(1002), + [anon_sym_let] = ACTIONS(1002), + [anon_sym_let_DASHenv] = ACTIONS(1002), + [anon_sym_mut] = ACTIONS(1002), + [anon_sym_const] = ACTIONS(1002), + [aux_sym_cmd_identifier_token1] = ACTIONS(1002), + [aux_sym_cmd_identifier_token2] = ACTIONS(1002), + [aux_sym_cmd_identifier_token3] = ACTIONS(1002), + [aux_sym_cmd_identifier_token4] = ACTIONS(1002), + [aux_sym_cmd_identifier_token5] = ACTIONS(1002), + [aux_sym_cmd_identifier_token6] = ACTIONS(1002), + [aux_sym_cmd_identifier_token7] = ACTIONS(1002), + [aux_sym_cmd_identifier_token8] = ACTIONS(1002), + [aux_sym_cmd_identifier_token9] = ACTIONS(1002), + [aux_sym_cmd_identifier_token10] = ACTIONS(1002), + [aux_sym_cmd_identifier_token11] = ACTIONS(1002), + [aux_sym_cmd_identifier_token12] = ACTIONS(1002), + [aux_sym_cmd_identifier_token13] = ACTIONS(1002), + [aux_sym_cmd_identifier_token14] = ACTIONS(1002), + [aux_sym_cmd_identifier_token15] = ACTIONS(1002), + [aux_sym_cmd_identifier_token16] = ACTIONS(1002), + [aux_sym_cmd_identifier_token17] = ACTIONS(1002), + [aux_sym_cmd_identifier_token18] = ACTIONS(1002), + [aux_sym_cmd_identifier_token19] = ACTIONS(1002), + [aux_sym_cmd_identifier_token20] = ACTIONS(1002), + [aux_sym_cmd_identifier_token21] = ACTIONS(1002), + [aux_sym_cmd_identifier_token22] = ACTIONS(1002), + [aux_sym_cmd_identifier_token23] = ACTIONS(1002), + [aux_sym_cmd_identifier_token24] = ACTIONS(1002), + [aux_sym_cmd_identifier_token25] = ACTIONS(1002), + [aux_sym_cmd_identifier_token26] = ACTIONS(1002), + [aux_sym_cmd_identifier_token27] = ACTIONS(1002), + [aux_sym_cmd_identifier_token28] = ACTIONS(1002), + [aux_sym_cmd_identifier_token29] = ACTIONS(1002), + [aux_sym_cmd_identifier_token30] = ACTIONS(1002), + [aux_sym_cmd_identifier_token31] = ACTIONS(1002), + [aux_sym_cmd_identifier_token32] = ACTIONS(1002), + [aux_sym_cmd_identifier_token33] = ACTIONS(1002), + [aux_sym_cmd_identifier_token34] = ACTIONS(1002), + [aux_sym_cmd_identifier_token35] = ACTIONS(1002), + [aux_sym_cmd_identifier_token36] = ACTIONS(1002), + [aux_sym_cmd_identifier_token37] = ACTIONS(1002), + [aux_sym_cmd_identifier_token38] = ACTIONS(1002), + [aux_sym_cmd_identifier_token39] = ACTIONS(1002), + [aux_sym_cmd_identifier_token40] = ACTIONS(1002), + [anon_sym_def] = ACTIONS(1002), + [anon_sym_export_DASHenv] = ACTIONS(1002), + [anon_sym_extern] = ACTIONS(1002), + [anon_sym_module] = ACTIONS(1002), + [anon_sym_use] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_error] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_break] = ACTIONS(1002), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_in2] = ACTIONS(1002), + [anon_sym_loop] = ACTIONS(1002), + [anon_sym_make] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_else] = ACTIONS(1002), + [anon_sym_match] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_try] = ACTIONS(1002), + [anon_sym_catch] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_source] = ACTIONS(1002), + [anon_sym_source_DASHenv] = ACTIONS(1002), + [anon_sym_register] = ACTIONS(1002), + [anon_sym_hide] = ACTIONS(1002), + [anon_sym_hide_DASHenv] = ACTIONS(1002), + [anon_sym_overlay] = ACTIONS(1002), + [anon_sym_as] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1002), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1002), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(1002), + [aux_sym__val_number_decimal_token3] = ACTIONS(1002), + [aux_sym__val_number_decimal_token4] = ACTIONS(1002), + [aux_sym__val_number_token1] = ACTIONS(1002), + [aux_sym__val_number_token2] = ACTIONS(1002), + [aux_sym__val_number_token3] = ACTIONS(1002), + [aux_sym__val_number_token4] = ACTIONS(1002), + [aux_sym__val_number_token5] = ACTIONS(1002), + [aux_sym__val_number_token6] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym__str_single_quotes] = ACTIONS(1002), + [sym__str_back_ticks] = ACTIONS(1002), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1002), + [sym__entry_separator] = ACTIONS(1004), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1004), }, - [672] = { - [sym_comment] = STATE(672), + [673] = { + [sym_comment] = STATE(673), + [anon_sym_export] = ACTIONS(2173), + [anon_sym_alias] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_let_DASHenv] = ACTIONS(2173), + [anon_sym_mut] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [aux_sym_cmd_identifier_token1] = ACTIONS(2173), + [aux_sym_cmd_identifier_token2] = ACTIONS(2173), + [aux_sym_cmd_identifier_token3] = ACTIONS(2173), + [aux_sym_cmd_identifier_token4] = ACTIONS(2173), + [aux_sym_cmd_identifier_token5] = ACTIONS(2173), + [aux_sym_cmd_identifier_token6] = ACTIONS(2173), + [aux_sym_cmd_identifier_token7] = ACTIONS(2173), + [aux_sym_cmd_identifier_token8] = ACTIONS(2173), + [aux_sym_cmd_identifier_token9] = ACTIONS(2173), + [aux_sym_cmd_identifier_token10] = ACTIONS(2173), + [aux_sym_cmd_identifier_token11] = ACTIONS(2173), + [aux_sym_cmd_identifier_token12] = ACTIONS(2173), + [aux_sym_cmd_identifier_token13] = ACTIONS(2173), + [aux_sym_cmd_identifier_token14] = ACTIONS(2173), + [aux_sym_cmd_identifier_token15] = ACTIONS(2173), + [aux_sym_cmd_identifier_token16] = ACTIONS(2173), + [aux_sym_cmd_identifier_token17] = ACTIONS(2173), + [aux_sym_cmd_identifier_token18] = ACTIONS(2173), + [aux_sym_cmd_identifier_token19] = ACTIONS(2173), + [aux_sym_cmd_identifier_token20] = ACTIONS(2173), + [aux_sym_cmd_identifier_token21] = ACTIONS(2173), + [aux_sym_cmd_identifier_token22] = ACTIONS(2173), + [aux_sym_cmd_identifier_token23] = ACTIONS(2173), + [aux_sym_cmd_identifier_token24] = ACTIONS(2173), + [aux_sym_cmd_identifier_token25] = ACTIONS(2173), + [aux_sym_cmd_identifier_token26] = ACTIONS(2173), + [aux_sym_cmd_identifier_token27] = ACTIONS(2173), + [aux_sym_cmd_identifier_token28] = ACTIONS(2173), + [aux_sym_cmd_identifier_token29] = ACTIONS(2173), + [aux_sym_cmd_identifier_token30] = ACTIONS(2173), + [aux_sym_cmd_identifier_token31] = ACTIONS(2173), + [aux_sym_cmd_identifier_token32] = ACTIONS(2173), + [aux_sym_cmd_identifier_token33] = ACTIONS(2173), + [aux_sym_cmd_identifier_token34] = ACTIONS(2173), + [aux_sym_cmd_identifier_token35] = ACTIONS(2173), + [aux_sym_cmd_identifier_token36] = ACTIONS(2173), + [aux_sym_cmd_identifier_token37] = ACTIONS(2173), + [aux_sym_cmd_identifier_token38] = ACTIONS(2173), + [aux_sym_cmd_identifier_token39] = ACTIONS(2173), + [aux_sym_cmd_identifier_token40] = ACTIONS(2173), + [anon_sym_def] = ACTIONS(2173), + [anon_sym_export_DASHenv] = ACTIONS(2173), + [anon_sym_extern] = ACTIONS(2173), + [anon_sym_module] = ACTIONS(2173), + [anon_sym_use] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2173), + [anon_sym_error] = ACTIONS(2173), + [anon_sym_DASH2] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_in2] = ACTIONS(2173), + [anon_sym_loop] = ACTIONS(2173), + [anon_sym_make] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_else] = ACTIONS(2173), + [anon_sym_match] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_catch] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_source] = ACTIONS(2173), + [anon_sym_source_DASHenv] = ACTIONS(2173), + [anon_sym_register] = ACTIONS(2173), + [anon_sym_hide] = ACTIONS(2173), + [anon_sym_hide_DASHenv] = ACTIONS(2173), + [anon_sym_overlay] = ACTIONS(2173), + [anon_sym_as] = ACTIONS(2173), + [anon_sym_PLUS2] = ACTIONS(2173), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2173), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2173), + [aux_sym__val_number_decimal_token1] = ACTIONS(2173), + [aux_sym__val_number_decimal_token2] = ACTIONS(2173), + [aux_sym__val_number_decimal_token3] = ACTIONS(2173), + [aux_sym__val_number_decimal_token4] = ACTIONS(2173), + [aux_sym__val_number_token1] = ACTIONS(2173), + [aux_sym__val_number_token2] = ACTIONS(2173), + [aux_sym__val_number_token3] = ACTIONS(2173), + [aux_sym__val_number_token4] = ACTIONS(2173), + [aux_sym__val_number_token5] = ACTIONS(2173), + [aux_sym__val_number_token6] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2173), + [sym__str_single_quotes] = ACTIONS(2173), + [sym__str_back_ticks] = ACTIONS(2173), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2173), + [sym__entry_separator] = ACTIONS(2175), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2175), + }, + [674] = { + [sym_comment] = STATE(674), + [anon_sym_export] = ACTIONS(1841), + [anon_sym_alias] = ACTIONS(1841), + [anon_sym_let] = ACTIONS(1841), + [anon_sym_let_DASHenv] = ACTIONS(1841), + [anon_sym_mut] = ACTIONS(1841), + [anon_sym_const] = ACTIONS(1841), + [aux_sym_cmd_identifier_token1] = ACTIONS(1841), + [aux_sym_cmd_identifier_token2] = ACTIONS(1841), + [aux_sym_cmd_identifier_token3] = ACTIONS(1841), + [aux_sym_cmd_identifier_token4] = ACTIONS(1841), + [aux_sym_cmd_identifier_token5] = ACTIONS(1841), + [aux_sym_cmd_identifier_token6] = ACTIONS(1841), + [aux_sym_cmd_identifier_token7] = ACTIONS(1841), + [aux_sym_cmd_identifier_token8] = ACTIONS(1841), + [aux_sym_cmd_identifier_token9] = ACTIONS(1841), + [aux_sym_cmd_identifier_token10] = ACTIONS(1841), + [aux_sym_cmd_identifier_token11] = ACTIONS(1841), + [aux_sym_cmd_identifier_token12] = ACTIONS(1841), + [aux_sym_cmd_identifier_token13] = ACTIONS(1841), + [aux_sym_cmd_identifier_token14] = ACTIONS(1841), + [aux_sym_cmd_identifier_token15] = ACTIONS(1841), + [aux_sym_cmd_identifier_token16] = ACTIONS(1841), + [aux_sym_cmd_identifier_token17] = ACTIONS(1841), + [aux_sym_cmd_identifier_token18] = ACTIONS(1841), + [aux_sym_cmd_identifier_token19] = ACTIONS(1841), + [aux_sym_cmd_identifier_token20] = ACTIONS(1841), + [aux_sym_cmd_identifier_token21] = ACTIONS(1841), + [aux_sym_cmd_identifier_token22] = ACTIONS(1841), + [aux_sym_cmd_identifier_token23] = ACTIONS(1841), + [aux_sym_cmd_identifier_token24] = ACTIONS(1841), + [aux_sym_cmd_identifier_token25] = ACTIONS(1841), + [aux_sym_cmd_identifier_token26] = ACTIONS(1841), + [aux_sym_cmd_identifier_token27] = ACTIONS(1841), + [aux_sym_cmd_identifier_token28] = ACTIONS(1841), + [aux_sym_cmd_identifier_token29] = ACTIONS(1841), + [aux_sym_cmd_identifier_token30] = ACTIONS(1841), + [aux_sym_cmd_identifier_token31] = ACTIONS(1841), + [aux_sym_cmd_identifier_token32] = ACTIONS(1841), + [aux_sym_cmd_identifier_token33] = ACTIONS(1841), + [aux_sym_cmd_identifier_token34] = ACTIONS(1841), + [aux_sym_cmd_identifier_token35] = ACTIONS(1841), + [aux_sym_cmd_identifier_token36] = ACTIONS(1841), + [aux_sym_cmd_identifier_token37] = ACTIONS(1841), + [aux_sym_cmd_identifier_token38] = ACTIONS(1841), + [aux_sym_cmd_identifier_token39] = ACTIONS(1841), + [aux_sym_cmd_identifier_token40] = ACTIONS(1841), + [anon_sym_def] = ACTIONS(1841), + [anon_sym_export_DASHenv] = ACTIONS(1841), + [anon_sym_extern] = ACTIONS(1841), + [anon_sym_module] = ACTIONS(1841), + [anon_sym_use] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_error] = ACTIONS(1841), + [anon_sym_DASH2] = ACTIONS(1841), + [anon_sym_break] = ACTIONS(1841), + [anon_sym_continue] = ACTIONS(1841), + [anon_sym_for] = ACTIONS(1841), + [anon_sym_in2] = ACTIONS(1841), + [anon_sym_loop] = ACTIONS(1841), + [anon_sym_make] = ACTIONS(1841), + [anon_sym_while] = ACTIONS(1841), + [anon_sym_do] = ACTIONS(1841), + [anon_sym_if] = ACTIONS(1841), + [anon_sym_else] = ACTIONS(1841), + [anon_sym_match] = ACTIONS(1841), + [anon_sym_RBRACE] = ACTIONS(1841), + [anon_sym_try] = ACTIONS(1841), + [anon_sym_catch] = ACTIONS(1841), + [anon_sym_return] = ACTIONS(1841), + [anon_sym_source] = ACTIONS(1841), + [anon_sym_source_DASHenv] = ACTIONS(1841), + [anon_sym_register] = ACTIONS(1841), + [anon_sym_hide] = ACTIONS(1841), + [anon_sym_hide_DASHenv] = ACTIONS(1841), + [anon_sym_overlay] = ACTIONS(1841), + [anon_sym_as] = ACTIONS(1841), + [anon_sym_PLUS2] = ACTIONS(1841), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1841), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1841), + [aux_sym__val_number_decimal_token1] = ACTIONS(1841), + [aux_sym__val_number_decimal_token2] = ACTIONS(1841), + [aux_sym__val_number_decimal_token3] = ACTIONS(1841), + [aux_sym__val_number_decimal_token4] = ACTIONS(1841), + [aux_sym__val_number_token1] = ACTIONS(1841), + [aux_sym__val_number_token2] = ACTIONS(1841), + [aux_sym__val_number_token3] = ACTIONS(1841), + [aux_sym__val_number_token4] = ACTIONS(1841), + [aux_sym__val_number_token5] = ACTIONS(1841), + [aux_sym__val_number_token6] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym__str_single_quotes] = ACTIONS(1841), + [sym__str_back_ticks] = ACTIONS(1841), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1841), + [sym__entry_separator] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1843), + }, + [675] = { + [sym_comment] = STATE(675), [anon_sym_export] = ACTIONS(2472), [anon_sym_alias] = ACTIONS(2472), [anon_sym_let] = ACTIONS(2472), @@ -147195,2229 +147814,1729 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2474), }, - [673] = { - [sym_comment] = STATE(673), - [anon_sym_export] = ACTIONS(2086), - [anon_sym_alias] = ACTIONS(2086), - [anon_sym_let] = ACTIONS(2086), - [anon_sym_let_DASHenv] = ACTIONS(2086), - [anon_sym_mut] = ACTIONS(2086), - [anon_sym_const] = ACTIONS(2086), - [aux_sym_cmd_identifier_token1] = ACTIONS(2086), - [aux_sym_cmd_identifier_token2] = ACTIONS(2086), - [aux_sym_cmd_identifier_token3] = ACTIONS(2086), - [aux_sym_cmd_identifier_token4] = ACTIONS(2086), - [aux_sym_cmd_identifier_token5] = ACTIONS(2086), - [aux_sym_cmd_identifier_token6] = ACTIONS(2086), - [aux_sym_cmd_identifier_token7] = ACTIONS(2086), - [aux_sym_cmd_identifier_token8] = ACTIONS(2086), - [aux_sym_cmd_identifier_token9] = ACTIONS(2086), - [aux_sym_cmd_identifier_token10] = ACTIONS(2086), - [aux_sym_cmd_identifier_token11] = ACTIONS(2086), - [aux_sym_cmd_identifier_token12] = ACTIONS(2086), - [aux_sym_cmd_identifier_token13] = ACTIONS(2086), - [aux_sym_cmd_identifier_token14] = ACTIONS(2086), - [aux_sym_cmd_identifier_token15] = ACTIONS(2086), - [aux_sym_cmd_identifier_token16] = ACTIONS(2086), - [aux_sym_cmd_identifier_token17] = ACTIONS(2086), - [aux_sym_cmd_identifier_token18] = ACTIONS(2086), - [aux_sym_cmd_identifier_token19] = ACTIONS(2086), - [aux_sym_cmd_identifier_token20] = ACTIONS(2086), - [aux_sym_cmd_identifier_token21] = ACTIONS(2086), - [aux_sym_cmd_identifier_token22] = ACTIONS(2086), - [aux_sym_cmd_identifier_token23] = ACTIONS(2086), - [aux_sym_cmd_identifier_token24] = ACTIONS(2086), - [aux_sym_cmd_identifier_token25] = ACTIONS(2086), - [aux_sym_cmd_identifier_token26] = ACTIONS(2086), - [aux_sym_cmd_identifier_token27] = ACTIONS(2086), - [aux_sym_cmd_identifier_token28] = ACTIONS(2086), - [aux_sym_cmd_identifier_token29] = ACTIONS(2086), - [aux_sym_cmd_identifier_token30] = ACTIONS(2086), - [aux_sym_cmd_identifier_token31] = ACTIONS(2086), - [aux_sym_cmd_identifier_token32] = ACTIONS(2086), - [aux_sym_cmd_identifier_token33] = ACTIONS(2086), - [aux_sym_cmd_identifier_token34] = ACTIONS(2086), - [aux_sym_cmd_identifier_token35] = ACTIONS(2086), - [aux_sym_cmd_identifier_token36] = ACTIONS(2086), - [aux_sym_cmd_identifier_token37] = ACTIONS(2086), - [aux_sym_cmd_identifier_token38] = ACTIONS(2086), - [aux_sym_cmd_identifier_token39] = ACTIONS(2086), - [aux_sym_cmd_identifier_token40] = ACTIONS(2086), - [anon_sym_def] = ACTIONS(2086), - [anon_sym_export_DASHenv] = ACTIONS(2086), - [anon_sym_extern] = ACTIONS(2086), - [anon_sym_module] = ACTIONS(2086), - [anon_sym_use] = ACTIONS(2086), - [anon_sym_LPAREN] = ACTIONS(2086), - [anon_sym_DOLLAR] = ACTIONS(2086), - [anon_sym_error] = ACTIONS(2086), - [anon_sym_DASH2] = ACTIONS(2086), - [anon_sym_break] = ACTIONS(2086), - [anon_sym_continue] = ACTIONS(2086), - [anon_sym_for] = ACTIONS(2086), - [anon_sym_in2] = ACTIONS(2086), - [anon_sym_loop] = ACTIONS(2086), - [anon_sym_make] = ACTIONS(2086), - [anon_sym_while] = ACTIONS(2086), - [anon_sym_do] = ACTIONS(2086), - [anon_sym_if] = ACTIONS(2086), - [anon_sym_else] = ACTIONS(2086), - [anon_sym_match] = ACTIONS(2086), - [anon_sym_RBRACE] = ACTIONS(2086), - [anon_sym_try] = ACTIONS(2086), - [anon_sym_catch] = ACTIONS(2086), - [anon_sym_return] = ACTIONS(2086), - [anon_sym_source] = ACTIONS(2086), - [anon_sym_source_DASHenv] = ACTIONS(2086), - [anon_sym_register] = ACTIONS(2086), - [anon_sym_hide] = ACTIONS(2086), - [anon_sym_hide_DASHenv] = ACTIONS(2086), - [anon_sym_overlay] = ACTIONS(2086), - [anon_sym_as] = ACTIONS(2086), - [anon_sym_PLUS2] = ACTIONS(2086), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2086), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2086), - [aux_sym__val_number_decimal_token1] = ACTIONS(2086), - [aux_sym__val_number_decimal_token2] = ACTIONS(2086), - [aux_sym__val_number_decimal_token3] = ACTIONS(2086), - [aux_sym__val_number_decimal_token4] = ACTIONS(2086), - [aux_sym__val_number_token1] = ACTIONS(2086), - [aux_sym__val_number_token2] = ACTIONS(2086), - [aux_sym__val_number_token3] = ACTIONS(2086), - [aux_sym__val_number_token4] = ACTIONS(2086), - [aux_sym__val_number_token5] = ACTIONS(2086), - [aux_sym__val_number_token6] = ACTIONS(2086), - [anon_sym_DQUOTE] = ACTIONS(2086), - [sym__str_single_quotes] = ACTIONS(2086), - [sym__str_back_ticks] = ACTIONS(2086), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2086), - [sym__entry_separator] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2088), - }, - [674] = { - [sym_comment] = STATE(674), - [anon_sym_export] = ACTIONS(2476), - [anon_sym_alias] = ACTIONS(2476), - [anon_sym_let] = ACTIONS(2476), - [anon_sym_let_DASHenv] = ACTIONS(2476), - [anon_sym_mut] = ACTIONS(2476), - [anon_sym_const] = ACTIONS(2476), - [aux_sym_cmd_identifier_token1] = ACTIONS(2476), - [aux_sym_cmd_identifier_token2] = ACTIONS(2476), - [aux_sym_cmd_identifier_token3] = ACTIONS(2476), - [aux_sym_cmd_identifier_token4] = ACTIONS(2476), - [aux_sym_cmd_identifier_token5] = ACTIONS(2476), - [aux_sym_cmd_identifier_token6] = ACTIONS(2476), - [aux_sym_cmd_identifier_token7] = ACTIONS(2476), - [aux_sym_cmd_identifier_token8] = ACTIONS(2476), - [aux_sym_cmd_identifier_token9] = ACTIONS(2476), - [aux_sym_cmd_identifier_token10] = ACTIONS(2476), - [aux_sym_cmd_identifier_token11] = ACTIONS(2476), - [aux_sym_cmd_identifier_token12] = ACTIONS(2476), - [aux_sym_cmd_identifier_token13] = ACTIONS(2476), - [aux_sym_cmd_identifier_token14] = ACTIONS(2476), - [aux_sym_cmd_identifier_token15] = ACTIONS(2476), - [aux_sym_cmd_identifier_token16] = ACTIONS(2476), - [aux_sym_cmd_identifier_token17] = ACTIONS(2476), - [aux_sym_cmd_identifier_token18] = ACTIONS(2476), - [aux_sym_cmd_identifier_token19] = ACTIONS(2476), - [aux_sym_cmd_identifier_token20] = ACTIONS(2476), - [aux_sym_cmd_identifier_token21] = ACTIONS(2476), - [aux_sym_cmd_identifier_token22] = ACTIONS(2476), - [aux_sym_cmd_identifier_token23] = ACTIONS(2476), - [aux_sym_cmd_identifier_token24] = ACTIONS(2476), - [aux_sym_cmd_identifier_token25] = ACTIONS(2476), - [aux_sym_cmd_identifier_token26] = ACTIONS(2476), - [aux_sym_cmd_identifier_token27] = ACTIONS(2476), - [aux_sym_cmd_identifier_token28] = ACTIONS(2476), - [aux_sym_cmd_identifier_token29] = ACTIONS(2476), - [aux_sym_cmd_identifier_token30] = ACTIONS(2476), - [aux_sym_cmd_identifier_token31] = ACTIONS(2476), - [aux_sym_cmd_identifier_token32] = ACTIONS(2476), - [aux_sym_cmd_identifier_token33] = ACTIONS(2476), - [aux_sym_cmd_identifier_token34] = ACTIONS(2476), - [aux_sym_cmd_identifier_token35] = ACTIONS(2476), - [aux_sym_cmd_identifier_token36] = ACTIONS(2476), - [aux_sym_cmd_identifier_token37] = ACTIONS(2476), - [aux_sym_cmd_identifier_token38] = ACTIONS(2476), - [aux_sym_cmd_identifier_token39] = ACTIONS(2476), - [aux_sym_cmd_identifier_token40] = ACTIONS(2476), - [anon_sym_def] = ACTIONS(2476), - [anon_sym_export_DASHenv] = ACTIONS(2476), - [anon_sym_extern] = ACTIONS(2476), - [anon_sym_module] = ACTIONS(2476), - [anon_sym_use] = ACTIONS(2476), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_DOLLAR] = ACTIONS(2476), - [anon_sym_error] = ACTIONS(2476), - [anon_sym_DASH2] = ACTIONS(2476), - [anon_sym_break] = ACTIONS(2476), - [anon_sym_continue] = ACTIONS(2476), - [anon_sym_for] = ACTIONS(2476), - [anon_sym_in2] = ACTIONS(2476), - [anon_sym_loop] = ACTIONS(2476), - [anon_sym_make] = ACTIONS(2476), - [anon_sym_while] = ACTIONS(2476), - [anon_sym_do] = ACTIONS(2476), - [anon_sym_if] = ACTIONS(2476), - [anon_sym_else] = ACTIONS(2476), - [anon_sym_match] = ACTIONS(2476), - [anon_sym_RBRACE] = ACTIONS(2476), - [anon_sym_try] = ACTIONS(2476), - [anon_sym_catch] = ACTIONS(2476), - [anon_sym_return] = ACTIONS(2476), - [anon_sym_source] = ACTIONS(2476), - [anon_sym_source_DASHenv] = ACTIONS(2476), - [anon_sym_register] = ACTIONS(2476), - [anon_sym_hide] = ACTIONS(2476), - [anon_sym_hide_DASHenv] = ACTIONS(2476), - [anon_sym_overlay] = ACTIONS(2476), - [anon_sym_as] = ACTIONS(2476), - [anon_sym_PLUS2] = ACTIONS(2476), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2476), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2476), - [aux_sym__val_number_decimal_token1] = ACTIONS(2476), - [aux_sym__val_number_decimal_token2] = ACTIONS(2476), - [aux_sym__val_number_decimal_token3] = ACTIONS(2476), - [aux_sym__val_number_decimal_token4] = ACTIONS(2476), - [aux_sym__val_number_token1] = ACTIONS(2476), - [aux_sym__val_number_token2] = ACTIONS(2476), - [aux_sym__val_number_token3] = ACTIONS(2476), - [aux_sym__val_number_token4] = ACTIONS(2476), - [aux_sym__val_number_token5] = ACTIONS(2476), - [aux_sym__val_number_token6] = ACTIONS(2476), - [anon_sym_DQUOTE] = ACTIONS(2476), - [sym__str_single_quotes] = ACTIONS(2476), - [sym__str_back_ticks] = ACTIONS(2476), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2476), - [sym__entry_separator] = ACTIONS(2478), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2478), - }, - [675] = { - [sym_comment] = STATE(675), - [anon_sym_export] = ACTIONS(2068), - [anon_sym_alias] = ACTIONS(2068), - [anon_sym_let] = ACTIONS(2068), - [anon_sym_let_DASHenv] = ACTIONS(2068), - [anon_sym_mut] = ACTIONS(2068), - [anon_sym_const] = ACTIONS(2068), - [aux_sym_cmd_identifier_token1] = ACTIONS(2068), - [aux_sym_cmd_identifier_token2] = ACTIONS(2068), - [aux_sym_cmd_identifier_token3] = ACTIONS(2068), - [aux_sym_cmd_identifier_token4] = ACTIONS(2068), - [aux_sym_cmd_identifier_token5] = ACTIONS(2068), - [aux_sym_cmd_identifier_token6] = ACTIONS(2068), - [aux_sym_cmd_identifier_token7] = ACTIONS(2068), - [aux_sym_cmd_identifier_token8] = ACTIONS(2068), - [aux_sym_cmd_identifier_token9] = ACTIONS(2068), - [aux_sym_cmd_identifier_token10] = ACTIONS(2068), - [aux_sym_cmd_identifier_token11] = ACTIONS(2068), - [aux_sym_cmd_identifier_token12] = ACTIONS(2068), - [aux_sym_cmd_identifier_token13] = ACTIONS(2068), - [aux_sym_cmd_identifier_token14] = ACTIONS(2068), - [aux_sym_cmd_identifier_token15] = ACTIONS(2068), - [aux_sym_cmd_identifier_token16] = ACTIONS(2068), - [aux_sym_cmd_identifier_token17] = ACTIONS(2068), - [aux_sym_cmd_identifier_token18] = ACTIONS(2068), - [aux_sym_cmd_identifier_token19] = ACTIONS(2068), - [aux_sym_cmd_identifier_token20] = ACTIONS(2068), - [aux_sym_cmd_identifier_token21] = ACTIONS(2068), - [aux_sym_cmd_identifier_token22] = ACTIONS(2068), - [aux_sym_cmd_identifier_token23] = ACTIONS(2068), - [aux_sym_cmd_identifier_token24] = ACTIONS(2068), - [aux_sym_cmd_identifier_token25] = ACTIONS(2068), - [aux_sym_cmd_identifier_token26] = ACTIONS(2068), - [aux_sym_cmd_identifier_token27] = ACTIONS(2068), - [aux_sym_cmd_identifier_token28] = ACTIONS(2068), - [aux_sym_cmd_identifier_token29] = ACTIONS(2068), - [aux_sym_cmd_identifier_token30] = ACTIONS(2068), - [aux_sym_cmd_identifier_token31] = ACTIONS(2068), - [aux_sym_cmd_identifier_token32] = ACTIONS(2068), - [aux_sym_cmd_identifier_token33] = ACTIONS(2068), - [aux_sym_cmd_identifier_token34] = ACTIONS(2068), - [aux_sym_cmd_identifier_token35] = ACTIONS(2068), - [aux_sym_cmd_identifier_token36] = ACTIONS(2068), - [aux_sym_cmd_identifier_token37] = ACTIONS(2068), - [aux_sym_cmd_identifier_token38] = ACTIONS(2068), - [aux_sym_cmd_identifier_token39] = ACTIONS(2068), - [aux_sym_cmd_identifier_token40] = ACTIONS(2068), - [anon_sym_def] = ACTIONS(2068), - [anon_sym_export_DASHenv] = ACTIONS(2068), - [anon_sym_extern] = ACTIONS(2068), - [anon_sym_module] = ACTIONS(2068), - [anon_sym_use] = ACTIONS(2068), - [anon_sym_LPAREN] = ACTIONS(2068), - [anon_sym_DOLLAR] = ACTIONS(2068), - [anon_sym_error] = ACTIONS(2068), - [anon_sym_DASH2] = ACTIONS(2068), - [anon_sym_break] = ACTIONS(2068), - [anon_sym_continue] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(2068), - [anon_sym_in2] = ACTIONS(2068), - [anon_sym_loop] = ACTIONS(2068), - [anon_sym_make] = ACTIONS(2068), - [anon_sym_while] = ACTIONS(2068), - [anon_sym_do] = ACTIONS(2068), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_else] = ACTIONS(2068), - [anon_sym_match] = ACTIONS(2068), - [anon_sym_RBRACE] = ACTIONS(2068), - [anon_sym_try] = ACTIONS(2068), - [anon_sym_catch] = ACTIONS(2068), - [anon_sym_return] = ACTIONS(2068), - [anon_sym_source] = ACTIONS(2068), - [anon_sym_source_DASHenv] = ACTIONS(2068), - [anon_sym_register] = ACTIONS(2068), - [anon_sym_hide] = ACTIONS(2068), - [anon_sym_hide_DASHenv] = ACTIONS(2068), - [anon_sym_overlay] = ACTIONS(2068), - [anon_sym_as] = ACTIONS(2068), - [anon_sym_PLUS2] = ACTIONS(2068), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2068), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2068), - [aux_sym__val_number_decimal_token1] = ACTIONS(2068), - [aux_sym__val_number_decimal_token2] = ACTIONS(2068), - [aux_sym__val_number_decimal_token3] = ACTIONS(2068), - [aux_sym__val_number_decimal_token4] = ACTIONS(2068), - [aux_sym__val_number_token1] = ACTIONS(2068), - [aux_sym__val_number_token2] = ACTIONS(2068), - [aux_sym__val_number_token3] = ACTIONS(2068), - [aux_sym__val_number_token4] = ACTIONS(2068), - [aux_sym__val_number_token5] = ACTIONS(2068), - [aux_sym__val_number_token6] = ACTIONS(2068), - [anon_sym_DQUOTE] = ACTIONS(2068), - [sym__str_single_quotes] = ACTIONS(2068), - [sym__str_back_ticks] = ACTIONS(2068), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2068), - [sym__entry_separator] = ACTIONS(2070), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2070), - }, [676] = { [sym_comment] = STATE(676), - [anon_sym_export] = ACTIONS(2155), - [anon_sym_alias] = ACTIONS(2155), - [anon_sym_let] = ACTIONS(2155), - [anon_sym_let_DASHenv] = ACTIONS(2155), - [anon_sym_mut] = ACTIONS(2155), - [anon_sym_const] = ACTIONS(2155), - [aux_sym_cmd_identifier_token1] = ACTIONS(2155), - [aux_sym_cmd_identifier_token2] = ACTIONS(2155), - [aux_sym_cmd_identifier_token3] = ACTIONS(2155), - [aux_sym_cmd_identifier_token4] = ACTIONS(2155), - [aux_sym_cmd_identifier_token5] = ACTIONS(2155), - [aux_sym_cmd_identifier_token6] = ACTIONS(2155), - [aux_sym_cmd_identifier_token7] = ACTIONS(2155), - [aux_sym_cmd_identifier_token8] = ACTIONS(2155), - [aux_sym_cmd_identifier_token9] = ACTIONS(2155), - [aux_sym_cmd_identifier_token10] = ACTIONS(2155), - [aux_sym_cmd_identifier_token11] = ACTIONS(2155), - [aux_sym_cmd_identifier_token12] = ACTIONS(2155), - [aux_sym_cmd_identifier_token13] = ACTIONS(2155), - [aux_sym_cmd_identifier_token14] = ACTIONS(2155), - [aux_sym_cmd_identifier_token15] = ACTIONS(2155), - [aux_sym_cmd_identifier_token16] = ACTIONS(2155), - [aux_sym_cmd_identifier_token17] = ACTIONS(2155), - [aux_sym_cmd_identifier_token18] = ACTIONS(2155), - [aux_sym_cmd_identifier_token19] = ACTIONS(2155), - [aux_sym_cmd_identifier_token20] = ACTIONS(2155), - [aux_sym_cmd_identifier_token21] = ACTIONS(2155), - [aux_sym_cmd_identifier_token22] = ACTIONS(2155), - [aux_sym_cmd_identifier_token23] = ACTIONS(2155), - [aux_sym_cmd_identifier_token24] = ACTIONS(2155), - [aux_sym_cmd_identifier_token25] = ACTIONS(2155), - [aux_sym_cmd_identifier_token26] = ACTIONS(2155), - [aux_sym_cmd_identifier_token27] = ACTIONS(2155), - [aux_sym_cmd_identifier_token28] = ACTIONS(2155), - [aux_sym_cmd_identifier_token29] = ACTIONS(2155), - [aux_sym_cmd_identifier_token30] = ACTIONS(2155), - [aux_sym_cmd_identifier_token31] = ACTIONS(2155), - [aux_sym_cmd_identifier_token32] = ACTIONS(2155), - [aux_sym_cmd_identifier_token33] = ACTIONS(2155), - [aux_sym_cmd_identifier_token34] = ACTIONS(2155), - [aux_sym_cmd_identifier_token35] = ACTIONS(2155), - [aux_sym_cmd_identifier_token36] = ACTIONS(2155), - [aux_sym_cmd_identifier_token37] = ACTIONS(2155), - [aux_sym_cmd_identifier_token38] = ACTIONS(2155), - [aux_sym_cmd_identifier_token39] = ACTIONS(2155), - [aux_sym_cmd_identifier_token40] = ACTIONS(2155), - [anon_sym_def] = ACTIONS(2155), - [anon_sym_export_DASHenv] = ACTIONS(2155), - [anon_sym_extern] = ACTIONS(2155), - [anon_sym_module] = ACTIONS(2155), - [anon_sym_use] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2155), - [anon_sym_error] = ACTIONS(2155), - [anon_sym_DASH2] = ACTIONS(2155), - [anon_sym_break] = ACTIONS(2155), - [anon_sym_continue] = ACTIONS(2155), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_in2] = ACTIONS(2155), - [anon_sym_loop] = ACTIONS(2155), - [anon_sym_make] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(2155), - [anon_sym_do] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2155), - [anon_sym_else] = ACTIONS(2155), - [anon_sym_match] = ACTIONS(2155), - [anon_sym_RBRACE] = ACTIONS(2155), - [anon_sym_try] = ACTIONS(2155), - [anon_sym_catch] = ACTIONS(2155), - [anon_sym_return] = ACTIONS(2155), - [anon_sym_source] = ACTIONS(2155), - [anon_sym_source_DASHenv] = ACTIONS(2155), - [anon_sym_register] = ACTIONS(2155), - [anon_sym_hide] = ACTIONS(2155), - [anon_sym_hide_DASHenv] = ACTIONS(2155), - [anon_sym_overlay] = ACTIONS(2155), - [anon_sym_as] = ACTIONS(2155), - [anon_sym_PLUS2] = ACTIONS(2155), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2155), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2155), - [aux_sym__val_number_decimal_token1] = ACTIONS(2155), - [aux_sym__val_number_decimal_token2] = ACTIONS(2155), - [aux_sym__val_number_decimal_token3] = ACTIONS(2155), - [aux_sym__val_number_decimal_token4] = ACTIONS(2155), - [aux_sym__val_number_token1] = ACTIONS(2155), - [aux_sym__val_number_token2] = ACTIONS(2155), - [aux_sym__val_number_token3] = ACTIONS(2155), - [aux_sym__val_number_token4] = ACTIONS(2155), - [aux_sym__val_number_token5] = ACTIONS(2155), - [aux_sym__val_number_token6] = ACTIONS(2155), - [anon_sym_DQUOTE] = ACTIONS(2155), - [sym__str_single_quotes] = ACTIONS(2155), - [sym__str_back_ticks] = ACTIONS(2155), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2155), - [sym__entry_separator] = ACTIONS(2157), + [anon_sym_export] = ACTIONS(1707), + [anon_sym_alias] = ACTIONS(1707), + [anon_sym_let] = ACTIONS(1707), + [anon_sym_let_DASHenv] = ACTIONS(1707), + [anon_sym_mut] = ACTIONS(1707), + [anon_sym_const] = ACTIONS(1707), + [aux_sym_cmd_identifier_token1] = ACTIONS(1707), + [aux_sym_cmd_identifier_token2] = ACTIONS(1707), + [aux_sym_cmd_identifier_token3] = ACTIONS(1707), + [aux_sym_cmd_identifier_token4] = ACTIONS(1707), + [aux_sym_cmd_identifier_token5] = ACTIONS(1707), + [aux_sym_cmd_identifier_token6] = ACTIONS(1707), + [aux_sym_cmd_identifier_token7] = ACTIONS(1707), + [aux_sym_cmd_identifier_token8] = ACTIONS(1707), + [aux_sym_cmd_identifier_token9] = ACTIONS(1707), + [aux_sym_cmd_identifier_token10] = ACTIONS(1707), + [aux_sym_cmd_identifier_token11] = ACTIONS(1707), + [aux_sym_cmd_identifier_token12] = ACTIONS(1707), + [aux_sym_cmd_identifier_token13] = ACTIONS(1707), + [aux_sym_cmd_identifier_token14] = ACTIONS(1707), + [aux_sym_cmd_identifier_token15] = ACTIONS(1707), + [aux_sym_cmd_identifier_token16] = ACTIONS(1707), + [aux_sym_cmd_identifier_token17] = ACTIONS(1707), + [aux_sym_cmd_identifier_token18] = ACTIONS(1707), + [aux_sym_cmd_identifier_token19] = ACTIONS(1707), + [aux_sym_cmd_identifier_token20] = ACTIONS(1707), + [aux_sym_cmd_identifier_token21] = ACTIONS(1707), + [aux_sym_cmd_identifier_token22] = ACTIONS(1707), + [aux_sym_cmd_identifier_token23] = ACTIONS(1707), + [aux_sym_cmd_identifier_token24] = ACTIONS(1707), + [aux_sym_cmd_identifier_token25] = ACTIONS(1707), + [aux_sym_cmd_identifier_token26] = ACTIONS(1707), + [aux_sym_cmd_identifier_token27] = ACTIONS(1707), + [aux_sym_cmd_identifier_token28] = ACTIONS(1707), + [aux_sym_cmd_identifier_token29] = ACTIONS(1707), + [aux_sym_cmd_identifier_token30] = ACTIONS(1707), + [aux_sym_cmd_identifier_token31] = ACTIONS(1707), + [aux_sym_cmd_identifier_token32] = ACTIONS(1707), + [aux_sym_cmd_identifier_token33] = ACTIONS(1707), + [aux_sym_cmd_identifier_token34] = ACTIONS(1707), + [aux_sym_cmd_identifier_token35] = ACTIONS(1707), + [aux_sym_cmd_identifier_token36] = ACTIONS(1707), + [aux_sym_cmd_identifier_token37] = ACTIONS(1707), + [aux_sym_cmd_identifier_token38] = ACTIONS(1707), + [aux_sym_cmd_identifier_token39] = ACTIONS(1707), + [aux_sym_cmd_identifier_token40] = ACTIONS(1707), + [anon_sym_def] = ACTIONS(1707), + [anon_sym_export_DASHenv] = ACTIONS(1707), + [anon_sym_extern] = ACTIONS(1707), + [anon_sym_module] = ACTIONS(1707), + [anon_sym_use] = ACTIONS(1707), + [anon_sym_LPAREN] = ACTIONS(1707), + [anon_sym_DOLLAR] = ACTIONS(1707), + [anon_sym_error] = ACTIONS(1707), + [anon_sym_DASH2] = ACTIONS(1707), + [anon_sym_break] = ACTIONS(1707), + [anon_sym_continue] = ACTIONS(1707), + [anon_sym_for] = ACTIONS(1707), + [anon_sym_in2] = ACTIONS(1707), + [anon_sym_loop] = ACTIONS(1707), + [anon_sym_make] = ACTIONS(1707), + [anon_sym_while] = ACTIONS(1707), + [anon_sym_do] = ACTIONS(1707), + [anon_sym_if] = ACTIONS(1707), + [anon_sym_else] = ACTIONS(1707), + [anon_sym_match] = ACTIONS(1707), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_try] = ACTIONS(1707), + [anon_sym_catch] = ACTIONS(1707), + [anon_sym_return] = ACTIONS(1707), + [anon_sym_source] = ACTIONS(1707), + [anon_sym_source_DASHenv] = ACTIONS(1707), + [anon_sym_register] = ACTIONS(1707), + [anon_sym_hide] = ACTIONS(1707), + [anon_sym_hide_DASHenv] = ACTIONS(1707), + [anon_sym_overlay] = ACTIONS(1707), + [anon_sym_as] = ACTIONS(1707), + [anon_sym_PLUS2] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1707), + [aux_sym__val_number_decimal_token1] = ACTIONS(1707), + [aux_sym__val_number_decimal_token2] = ACTIONS(1707), + [aux_sym__val_number_decimal_token3] = ACTIONS(1707), + [aux_sym__val_number_decimal_token4] = ACTIONS(1707), + [aux_sym__val_number_token1] = ACTIONS(1707), + [aux_sym__val_number_token2] = ACTIONS(1707), + [aux_sym__val_number_token3] = ACTIONS(1707), + [aux_sym__val_number_token4] = ACTIONS(1707), + [aux_sym__val_number_token5] = ACTIONS(1707), + [aux_sym__val_number_token6] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1707), + [sym__str_single_quotes] = ACTIONS(1707), + [sym__str_back_ticks] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1707), + [sym__entry_separator] = ACTIONS(1719), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2157), + [sym_raw_string_begin] = ACTIONS(1719), }, [677] = { [sym_comment] = STATE(677), - [anon_sym_export] = ACTIONS(2480), - [anon_sym_alias] = ACTIONS(2480), - [anon_sym_let] = ACTIONS(2480), - [anon_sym_let_DASHenv] = ACTIONS(2480), - [anon_sym_mut] = ACTIONS(2480), - [anon_sym_const] = ACTIONS(2480), - [aux_sym_cmd_identifier_token1] = ACTIONS(2480), - [aux_sym_cmd_identifier_token2] = ACTIONS(2480), - [aux_sym_cmd_identifier_token3] = ACTIONS(2480), - [aux_sym_cmd_identifier_token4] = ACTIONS(2480), - [aux_sym_cmd_identifier_token5] = ACTIONS(2480), - [aux_sym_cmd_identifier_token6] = ACTIONS(2480), - [aux_sym_cmd_identifier_token7] = ACTIONS(2480), - [aux_sym_cmd_identifier_token8] = ACTIONS(2480), - [aux_sym_cmd_identifier_token9] = ACTIONS(2480), - [aux_sym_cmd_identifier_token10] = ACTIONS(2480), - [aux_sym_cmd_identifier_token11] = ACTIONS(2480), - [aux_sym_cmd_identifier_token12] = ACTIONS(2480), - [aux_sym_cmd_identifier_token13] = ACTIONS(2480), - [aux_sym_cmd_identifier_token14] = ACTIONS(2480), - [aux_sym_cmd_identifier_token15] = ACTIONS(2480), - [aux_sym_cmd_identifier_token16] = ACTIONS(2480), - [aux_sym_cmd_identifier_token17] = ACTIONS(2480), - [aux_sym_cmd_identifier_token18] = ACTIONS(2480), - [aux_sym_cmd_identifier_token19] = ACTIONS(2480), - [aux_sym_cmd_identifier_token20] = ACTIONS(2480), - [aux_sym_cmd_identifier_token21] = ACTIONS(2480), - [aux_sym_cmd_identifier_token22] = ACTIONS(2480), - [aux_sym_cmd_identifier_token23] = ACTIONS(2480), - [aux_sym_cmd_identifier_token24] = ACTIONS(2480), - [aux_sym_cmd_identifier_token25] = ACTIONS(2480), - [aux_sym_cmd_identifier_token26] = ACTIONS(2480), - [aux_sym_cmd_identifier_token27] = ACTIONS(2480), - [aux_sym_cmd_identifier_token28] = ACTIONS(2480), - [aux_sym_cmd_identifier_token29] = ACTIONS(2480), - [aux_sym_cmd_identifier_token30] = ACTIONS(2480), - [aux_sym_cmd_identifier_token31] = ACTIONS(2480), - [aux_sym_cmd_identifier_token32] = ACTIONS(2480), - [aux_sym_cmd_identifier_token33] = ACTIONS(2480), - [aux_sym_cmd_identifier_token34] = ACTIONS(2480), - [aux_sym_cmd_identifier_token35] = ACTIONS(2480), - [aux_sym_cmd_identifier_token36] = ACTIONS(2480), - [aux_sym_cmd_identifier_token37] = ACTIONS(2480), - [aux_sym_cmd_identifier_token38] = ACTIONS(2480), - [aux_sym_cmd_identifier_token39] = ACTIONS(2480), - [aux_sym_cmd_identifier_token40] = ACTIONS(2480), - [anon_sym_def] = ACTIONS(2480), - [anon_sym_export_DASHenv] = ACTIONS(2480), - [anon_sym_extern] = ACTIONS(2480), - [anon_sym_module] = ACTIONS(2480), - [anon_sym_use] = ACTIONS(2480), - [anon_sym_LPAREN] = ACTIONS(2480), - [anon_sym_DOLLAR] = ACTIONS(2480), - [anon_sym_error] = ACTIONS(2480), - [anon_sym_DASH2] = ACTIONS(2480), - [anon_sym_break] = ACTIONS(2480), - [anon_sym_continue] = ACTIONS(2480), - [anon_sym_for] = ACTIONS(2480), - [anon_sym_in2] = ACTIONS(2480), - [anon_sym_loop] = ACTIONS(2480), - [anon_sym_make] = ACTIONS(2480), - [anon_sym_while] = ACTIONS(2480), - [anon_sym_do] = ACTIONS(2480), - [anon_sym_if] = ACTIONS(2480), - [anon_sym_else] = ACTIONS(2480), - [anon_sym_match] = ACTIONS(2480), - [anon_sym_RBRACE] = ACTIONS(2480), - [anon_sym_try] = ACTIONS(2480), - [anon_sym_catch] = ACTIONS(2480), - [anon_sym_return] = ACTIONS(2480), - [anon_sym_source] = ACTIONS(2480), - [anon_sym_source_DASHenv] = ACTIONS(2480), - [anon_sym_register] = ACTIONS(2480), - [anon_sym_hide] = ACTIONS(2480), - [anon_sym_hide_DASHenv] = ACTIONS(2480), - [anon_sym_overlay] = ACTIONS(2480), - [anon_sym_as] = ACTIONS(2480), - [anon_sym_PLUS2] = ACTIONS(2480), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2480), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2480), - [aux_sym__val_number_decimal_token1] = ACTIONS(2480), - [aux_sym__val_number_decimal_token2] = ACTIONS(2480), - [aux_sym__val_number_decimal_token3] = ACTIONS(2480), - [aux_sym__val_number_decimal_token4] = ACTIONS(2480), - [aux_sym__val_number_token1] = ACTIONS(2480), - [aux_sym__val_number_token2] = ACTIONS(2480), - [aux_sym__val_number_token3] = ACTIONS(2480), - [aux_sym__val_number_token4] = ACTIONS(2480), - [aux_sym__val_number_token5] = ACTIONS(2480), - [aux_sym__val_number_token6] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(2480), - [sym__str_single_quotes] = ACTIONS(2480), - [sym__str_back_ticks] = ACTIONS(2480), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2480), - [sym__entry_separator] = ACTIONS(2482), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2482), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_alias] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_let_DASHenv] = ACTIONS(2318), + [anon_sym_mut] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [aux_sym_cmd_identifier_token1] = ACTIONS(2318), + [aux_sym_cmd_identifier_token2] = ACTIONS(2320), + [aux_sym_cmd_identifier_token3] = ACTIONS(2320), + [aux_sym_cmd_identifier_token4] = ACTIONS(2320), + [aux_sym_cmd_identifier_token5] = ACTIONS(2320), + [aux_sym_cmd_identifier_token6] = ACTIONS(2320), + [aux_sym_cmd_identifier_token7] = ACTIONS(2320), + [aux_sym_cmd_identifier_token8] = ACTIONS(2318), + [aux_sym_cmd_identifier_token9] = ACTIONS(2318), + [aux_sym_cmd_identifier_token10] = ACTIONS(2320), + [aux_sym_cmd_identifier_token11] = ACTIONS(2320), + [aux_sym_cmd_identifier_token12] = ACTIONS(2318), + [aux_sym_cmd_identifier_token13] = ACTIONS(2318), + [aux_sym_cmd_identifier_token14] = ACTIONS(2318), + [aux_sym_cmd_identifier_token15] = ACTIONS(2318), + [aux_sym_cmd_identifier_token16] = ACTIONS(2320), + [aux_sym_cmd_identifier_token17] = ACTIONS(2320), + [aux_sym_cmd_identifier_token18] = ACTIONS(2320), + [aux_sym_cmd_identifier_token19] = ACTIONS(2320), + [aux_sym_cmd_identifier_token20] = ACTIONS(2320), + [aux_sym_cmd_identifier_token21] = ACTIONS(2320), + [aux_sym_cmd_identifier_token22] = ACTIONS(2320), + [aux_sym_cmd_identifier_token23] = ACTIONS(2320), + [aux_sym_cmd_identifier_token24] = ACTIONS(2320), + [aux_sym_cmd_identifier_token25] = ACTIONS(2320), + [aux_sym_cmd_identifier_token26] = ACTIONS(2320), + [aux_sym_cmd_identifier_token27] = ACTIONS(2320), + [aux_sym_cmd_identifier_token28] = ACTIONS(2320), + [aux_sym_cmd_identifier_token29] = ACTIONS(2320), + [aux_sym_cmd_identifier_token30] = ACTIONS(2320), + [aux_sym_cmd_identifier_token31] = ACTIONS(2320), + [aux_sym_cmd_identifier_token32] = ACTIONS(2320), + [aux_sym_cmd_identifier_token33] = ACTIONS(2320), + [aux_sym_cmd_identifier_token34] = ACTIONS(2318), + [aux_sym_cmd_identifier_token35] = ACTIONS(2320), + [aux_sym_cmd_identifier_token36] = ACTIONS(2320), + [aux_sym_cmd_identifier_token37] = ACTIONS(2320), + [aux_sym_cmd_identifier_token38] = ACTIONS(2318), + [aux_sym_cmd_identifier_token39] = ACTIONS(2320), + [aux_sym_cmd_identifier_token40] = ACTIONS(2320), + [anon_sym_def] = ACTIONS(2318), + [anon_sym_export_DASHenv] = ACTIONS(2318), + [anon_sym_extern] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_use] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_DOLLAR] = ACTIONS(2320), + [anon_sym_error] = ACTIONS(2318), + [anon_sym_DASH2] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_in2] = ACTIONS(2318), + [anon_sym_loop] = ACTIONS(2318), + [anon_sym_make] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_else] = ACTIONS(2318), + [anon_sym_match] = ACTIONS(2318), + [anon_sym_RBRACE] = ACTIONS(2320), + [anon_sym_try] = ACTIONS(2318), + [anon_sym_catch] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_source] = ACTIONS(2318), + [anon_sym_source_DASHenv] = ACTIONS(2318), + [anon_sym_register] = ACTIONS(2318), + [anon_sym_hide] = ACTIONS(2318), + [anon_sym_hide_DASHenv] = ACTIONS(2318), + [anon_sym_overlay] = ACTIONS(2318), + [anon_sym_as] = ACTIONS(2318), + [anon_sym_LPAREN2] = ACTIONS(2320), + [anon_sym_PLUS2] = ACTIONS(2318), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2320), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2320), + [aux_sym__val_number_decimal_token1] = ACTIONS(2318), + [aux_sym__val_number_decimal_token2] = ACTIONS(2320), + [aux_sym__val_number_decimal_token3] = ACTIONS(2320), + [aux_sym__val_number_decimal_token4] = ACTIONS(2320), + [aux_sym__val_number_token1] = ACTIONS(2320), + [aux_sym__val_number_token2] = ACTIONS(2320), + [aux_sym__val_number_token3] = ACTIONS(2320), + [aux_sym__val_number_token4] = ACTIONS(2318), + [aux_sym__val_number_token5] = ACTIONS(2318), + [aux_sym__val_number_token6] = ACTIONS(2318), + [anon_sym_DQUOTE] = ACTIONS(2320), + [sym__str_single_quotes] = ACTIONS(2320), + [sym__str_back_ticks] = ACTIONS(2320), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2320), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2320), }, [678] = { [sym_comment] = STATE(678), - [anon_sym_export] = ACTIONS(994), - [anon_sym_alias] = ACTIONS(994), - [anon_sym_let] = ACTIONS(994), - [anon_sym_let_DASHenv] = ACTIONS(994), - [anon_sym_mut] = ACTIONS(994), - [anon_sym_const] = ACTIONS(994), - [aux_sym_cmd_identifier_token1] = ACTIONS(994), - [aux_sym_cmd_identifier_token2] = ACTIONS(994), - [aux_sym_cmd_identifier_token3] = ACTIONS(994), - [aux_sym_cmd_identifier_token4] = ACTIONS(994), - [aux_sym_cmd_identifier_token5] = ACTIONS(994), - [aux_sym_cmd_identifier_token6] = ACTIONS(994), - [aux_sym_cmd_identifier_token7] = ACTIONS(994), - [aux_sym_cmd_identifier_token8] = ACTIONS(994), - [aux_sym_cmd_identifier_token9] = ACTIONS(994), - [aux_sym_cmd_identifier_token10] = ACTIONS(994), - [aux_sym_cmd_identifier_token11] = ACTIONS(994), - [aux_sym_cmd_identifier_token12] = ACTIONS(994), - [aux_sym_cmd_identifier_token13] = ACTIONS(994), - [aux_sym_cmd_identifier_token14] = ACTIONS(994), - [aux_sym_cmd_identifier_token15] = ACTIONS(994), - [aux_sym_cmd_identifier_token16] = ACTIONS(994), - [aux_sym_cmd_identifier_token17] = ACTIONS(994), - [aux_sym_cmd_identifier_token18] = ACTIONS(994), - [aux_sym_cmd_identifier_token19] = ACTIONS(994), - [aux_sym_cmd_identifier_token20] = ACTIONS(994), - [aux_sym_cmd_identifier_token21] = ACTIONS(994), - [aux_sym_cmd_identifier_token22] = ACTIONS(994), - [aux_sym_cmd_identifier_token23] = ACTIONS(994), - [aux_sym_cmd_identifier_token24] = ACTIONS(994), - [aux_sym_cmd_identifier_token25] = ACTIONS(994), - [aux_sym_cmd_identifier_token26] = ACTIONS(994), - [aux_sym_cmd_identifier_token27] = ACTIONS(994), - [aux_sym_cmd_identifier_token28] = ACTIONS(994), - [aux_sym_cmd_identifier_token29] = ACTIONS(994), - [aux_sym_cmd_identifier_token30] = ACTIONS(994), - [aux_sym_cmd_identifier_token31] = ACTIONS(994), - [aux_sym_cmd_identifier_token32] = ACTIONS(994), - [aux_sym_cmd_identifier_token33] = ACTIONS(994), - [aux_sym_cmd_identifier_token34] = ACTIONS(994), - [aux_sym_cmd_identifier_token35] = ACTIONS(994), - [aux_sym_cmd_identifier_token36] = ACTIONS(994), - [aux_sym_cmd_identifier_token37] = ACTIONS(994), - [aux_sym_cmd_identifier_token38] = ACTIONS(994), - [aux_sym_cmd_identifier_token39] = ACTIONS(994), - [aux_sym_cmd_identifier_token40] = ACTIONS(994), - [anon_sym_def] = ACTIONS(994), - [anon_sym_export_DASHenv] = ACTIONS(994), - [anon_sym_extern] = ACTIONS(994), - [anon_sym_module] = ACTIONS(994), - [anon_sym_use] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(994), - [anon_sym_error] = ACTIONS(994), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_break] = ACTIONS(994), - [anon_sym_continue] = ACTIONS(994), - [anon_sym_for] = ACTIONS(994), - [anon_sym_in2] = ACTIONS(994), - [anon_sym_loop] = ACTIONS(994), - [anon_sym_make] = ACTIONS(994), - [anon_sym_while] = ACTIONS(994), - [anon_sym_do] = ACTIONS(994), - [anon_sym_if] = ACTIONS(994), - [anon_sym_else] = ACTIONS(994), - [anon_sym_match] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(994), - [anon_sym_try] = ACTIONS(994), - [anon_sym_catch] = ACTIONS(994), - [anon_sym_return] = ACTIONS(994), - [anon_sym_source] = ACTIONS(994), - [anon_sym_source_DASHenv] = ACTIONS(994), - [anon_sym_register] = ACTIONS(994), - [anon_sym_hide] = ACTIONS(994), - [anon_sym_hide_DASHenv] = ACTIONS(994), - [anon_sym_overlay] = ACTIONS(994), - [anon_sym_as] = ACTIONS(994), - [anon_sym_PLUS2] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(994), - [aux_sym__val_number_decimal_token1] = ACTIONS(994), - [aux_sym__val_number_decimal_token2] = ACTIONS(994), - [aux_sym__val_number_decimal_token3] = ACTIONS(994), - [aux_sym__val_number_decimal_token4] = ACTIONS(994), - [aux_sym__val_number_token1] = ACTIONS(994), - [aux_sym__val_number_token2] = ACTIONS(994), - [aux_sym__val_number_token3] = ACTIONS(994), - [aux_sym__val_number_token4] = ACTIONS(994), - [aux_sym__val_number_token5] = ACTIONS(994), - [aux_sym__val_number_token6] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym__str_single_quotes] = ACTIONS(994), - [sym__str_back_ticks] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(994), - [sym__entry_separator] = ACTIONS(996), + [anon_sym_export] = ACTIONS(1927), + [anon_sym_alias] = ACTIONS(1927), + [anon_sym_let] = ACTIONS(1927), + [anon_sym_let_DASHenv] = ACTIONS(1927), + [anon_sym_mut] = ACTIONS(1927), + [anon_sym_const] = ACTIONS(1927), + [aux_sym_cmd_identifier_token1] = ACTIONS(1927), + [aux_sym_cmd_identifier_token2] = ACTIONS(1927), + [aux_sym_cmd_identifier_token3] = ACTIONS(1927), + [aux_sym_cmd_identifier_token4] = ACTIONS(1927), + [aux_sym_cmd_identifier_token5] = ACTIONS(1927), + [aux_sym_cmd_identifier_token6] = ACTIONS(1927), + [aux_sym_cmd_identifier_token7] = ACTIONS(1927), + [aux_sym_cmd_identifier_token8] = ACTIONS(1927), + [aux_sym_cmd_identifier_token9] = ACTIONS(1927), + [aux_sym_cmd_identifier_token10] = ACTIONS(1927), + [aux_sym_cmd_identifier_token11] = ACTIONS(1927), + [aux_sym_cmd_identifier_token12] = ACTIONS(1927), + [aux_sym_cmd_identifier_token13] = ACTIONS(1927), + [aux_sym_cmd_identifier_token14] = ACTIONS(1927), + [aux_sym_cmd_identifier_token15] = ACTIONS(1927), + [aux_sym_cmd_identifier_token16] = ACTIONS(1927), + [aux_sym_cmd_identifier_token17] = ACTIONS(1927), + [aux_sym_cmd_identifier_token18] = ACTIONS(1927), + [aux_sym_cmd_identifier_token19] = ACTIONS(1927), + [aux_sym_cmd_identifier_token20] = ACTIONS(1927), + [aux_sym_cmd_identifier_token21] = ACTIONS(1927), + [aux_sym_cmd_identifier_token22] = ACTIONS(1927), + [aux_sym_cmd_identifier_token23] = ACTIONS(1927), + [aux_sym_cmd_identifier_token24] = ACTIONS(1927), + [aux_sym_cmd_identifier_token25] = ACTIONS(1927), + [aux_sym_cmd_identifier_token26] = ACTIONS(1927), + [aux_sym_cmd_identifier_token27] = ACTIONS(1927), + [aux_sym_cmd_identifier_token28] = ACTIONS(1927), + [aux_sym_cmd_identifier_token29] = ACTIONS(1927), + [aux_sym_cmd_identifier_token30] = ACTIONS(1927), + [aux_sym_cmd_identifier_token31] = ACTIONS(1927), + [aux_sym_cmd_identifier_token32] = ACTIONS(1927), + [aux_sym_cmd_identifier_token33] = ACTIONS(1927), + [aux_sym_cmd_identifier_token34] = ACTIONS(1927), + [aux_sym_cmd_identifier_token35] = ACTIONS(1927), + [aux_sym_cmd_identifier_token36] = ACTIONS(1927), + [aux_sym_cmd_identifier_token37] = ACTIONS(1927), + [aux_sym_cmd_identifier_token38] = ACTIONS(1927), + [aux_sym_cmd_identifier_token39] = ACTIONS(1927), + [aux_sym_cmd_identifier_token40] = ACTIONS(1927), + [anon_sym_def] = ACTIONS(1927), + [anon_sym_export_DASHenv] = ACTIONS(1927), + [anon_sym_extern] = ACTIONS(1927), + [anon_sym_module] = ACTIONS(1927), + [anon_sym_use] = ACTIONS(1927), + [anon_sym_LPAREN] = ACTIONS(1927), + [anon_sym_DOLLAR] = ACTIONS(1927), + [anon_sym_error] = ACTIONS(1927), + [anon_sym_DASH2] = ACTIONS(1927), + [anon_sym_break] = ACTIONS(1927), + [anon_sym_continue] = ACTIONS(1927), + [anon_sym_for] = ACTIONS(1927), + [anon_sym_in2] = ACTIONS(1927), + [anon_sym_loop] = ACTIONS(1927), + [anon_sym_make] = ACTIONS(1927), + [anon_sym_while] = ACTIONS(1927), + [anon_sym_do] = ACTIONS(1927), + [anon_sym_if] = ACTIONS(1927), + [anon_sym_else] = ACTIONS(1927), + [anon_sym_match] = ACTIONS(1927), + [anon_sym_RBRACE] = ACTIONS(1927), + [anon_sym_try] = ACTIONS(1927), + [anon_sym_catch] = ACTIONS(1927), + [anon_sym_return] = ACTIONS(1927), + [anon_sym_source] = ACTIONS(1927), + [anon_sym_source_DASHenv] = ACTIONS(1927), + [anon_sym_register] = ACTIONS(1927), + [anon_sym_hide] = ACTIONS(1927), + [anon_sym_hide_DASHenv] = ACTIONS(1927), + [anon_sym_overlay] = ACTIONS(1927), + [anon_sym_as] = ACTIONS(1927), + [anon_sym_PLUS2] = ACTIONS(1927), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1927), + [aux_sym__val_number_decimal_token1] = ACTIONS(1927), + [aux_sym__val_number_decimal_token2] = ACTIONS(1927), + [aux_sym__val_number_decimal_token3] = ACTIONS(1927), + [aux_sym__val_number_decimal_token4] = ACTIONS(1927), + [aux_sym__val_number_token1] = ACTIONS(1927), + [aux_sym__val_number_token2] = ACTIONS(1927), + [aux_sym__val_number_token3] = ACTIONS(1927), + [aux_sym__val_number_token4] = ACTIONS(1927), + [aux_sym__val_number_token5] = ACTIONS(1927), + [aux_sym__val_number_token6] = ACTIONS(1927), + [anon_sym_DQUOTE] = ACTIONS(1927), + [sym__str_single_quotes] = ACTIONS(1927), + [sym__str_back_ticks] = ACTIONS(1927), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1927), + [sym__entry_separator] = ACTIONS(1929), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(996), + [sym_raw_string_begin] = ACTIONS(1929), }, [679] = { [sym_comment] = STATE(679), - [anon_sym_export] = ACTIONS(2484), - [anon_sym_alias] = ACTIONS(2484), - [anon_sym_let] = ACTIONS(2484), - [anon_sym_let_DASHenv] = ACTIONS(2484), - [anon_sym_mut] = ACTIONS(2484), - [anon_sym_const] = ACTIONS(2484), - [aux_sym_cmd_identifier_token1] = ACTIONS(2484), - [aux_sym_cmd_identifier_token2] = ACTIONS(2484), - [aux_sym_cmd_identifier_token3] = ACTIONS(2484), - [aux_sym_cmd_identifier_token4] = ACTIONS(2484), - [aux_sym_cmd_identifier_token5] = ACTIONS(2484), - [aux_sym_cmd_identifier_token6] = ACTIONS(2484), - [aux_sym_cmd_identifier_token7] = ACTIONS(2484), - [aux_sym_cmd_identifier_token8] = ACTIONS(2484), - [aux_sym_cmd_identifier_token9] = ACTIONS(2484), - [aux_sym_cmd_identifier_token10] = ACTIONS(2484), - [aux_sym_cmd_identifier_token11] = ACTIONS(2484), - [aux_sym_cmd_identifier_token12] = ACTIONS(2484), - [aux_sym_cmd_identifier_token13] = ACTIONS(2484), - [aux_sym_cmd_identifier_token14] = ACTIONS(2484), - [aux_sym_cmd_identifier_token15] = ACTIONS(2484), - [aux_sym_cmd_identifier_token16] = ACTIONS(2484), - [aux_sym_cmd_identifier_token17] = ACTIONS(2484), - [aux_sym_cmd_identifier_token18] = ACTIONS(2484), - [aux_sym_cmd_identifier_token19] = ACTIONS(2484), - [aux_sym_cmd_identifier_token20] = ACTIONS(2484), - [aux_sym_cmd_identifier_token21] = ACTIONS(2484), - [aux_sym_cmd_identifier_token22] = ACTIONS(2484), - [aux_sym_cmd_identifier_token23] = ACTIONS(2484), - [aux_sym_cmd_identifier_token24] = ACTIONS(2484), - [aux_sym_cmd_identifier_token25] = ACTIONS(2484), - [aux_sym_cmd_identifier_token26] = ACTIONS(2484), - [aux_sym_cmd_identifier_token27] = ACTIONS(2484), - [aux_sym_cmd_identifier_token28] = ACTIONS(2484), - [aux_sym_cmd_identifier_token29] = ACTIONS(2484), - [aux_sym_cmd_identifier_token30] = ACTIONS(2484), - [aux_sym_cmd_identifier_token31] = ACTIONS(2484), - [aux_sym_cmd_identifier_token32] = ACTIONS(2484), - [aux_sym_cmd_identifier_token33] = ACTIONS(2484), - [aux_sym_cmd_identifier_token34] = ACTIONS(2484), - [aux_sym_cmd_identifier_token35] = ACTIONS(2484), - [aux_sym_cmd_identifier_token36] = ACTIONS(2484), - [aux_sym_cmd_identifier_token37] = ACTIONS(2484), - [aux_sym_cmd_identifier_token38] = ACTIONS(2484), - [aux_sym_cmd_identifier_token39] = ACTIONS(2484), - [aux_sym_cmd_identifier_token40] = ACTIONS(2484), - [anon_sym_def] = ACTIONS(2484), - [anon_sym_export_DASHenv] = ACTIONS(2484), - [anon_sym_extern] = ACTIONS(2484), - [anon_sym_module] = ACTIONS(2484), - [anon_sym_use] = ACTIONS(2484), - [anon_sym_LPAREN] = ACTIONS(2484), - [anon_sym_DOLLAR] = ACTIONS(2484), - [anon_sym_error] = ACTIONS(2484), - [anon_sym_DASH2] = ACTIONS(2484), - [anon_sym_break] = ACTIONS(2484), - [anon_sym_continue] = ACTIONS(2484), - [anon_sym_for] = ACTIONS(2484), - [anon_sym_in2] = ACTIONS(2484), - [anon_sym_loop] = ACTIONS(2484), - [anon_sym_make] = ACTIONS(2484), - [anon_sym_while] = ACTIONS(2484), - [anon_sym_do] = ACTIONS(2484), - [anon_sym_if] = ACTIONS(2484), - [anon_sym_else] = ACTIONS(2484), - [anon_sym_match] = ACTIONS(2484), - [anon_sym_RBRACE] = ACTIONS(2484), - [anon_sym_try] = ACTIONS(2484), - [anon_sym_catch] = ACTIONS(2484), - [anon_sym_return] = ACTIONS(2484), - [anon_sym_source] = ACTIONS(2484), - [anon_sym_source_DASHenv] = ACTIONS(2484), - [anon_sym_register] = ACTIONS(2484), - [anon_sym_hide] = ACTIONS(2484), - [anon_sym_hide_DASHenv] = ACTIONS(2484), - [anon_sym_overlay] = ACTIONS(2484), - [anon_sym_as] = ACTIONS(2484), - [anon_sym_PLUS2] = ACTIONS(2484), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2484), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2484), - [aux_sym__val_number_decimal_token1] = ACTIONS(2484), - [aux_sym__val_number_decimal_token2] = ACTIONS(2484), - [aux_sym__val_number_decimal_token3] = ACTIONS(2484), - [aux_sym__val_number_decimal_token4] = ACTIONS(2484), - [aux_sym__val_number_token1] = ACTIONS(2484), - [aux_sym__val_number_token2] = ACTIONS(2484), - [aux_sym__val_number_token3] = ACTIONS(2484), - [aux_sym__val_number_token4] = ACTIONS(2484), - [aux_sym__val_number_token5] = ACTIONS(2484), - [aux_sym__val_number_token6] = ACTIONS(2484), - [anon_sym_DQUOTE] = ACTIONS(2484), - [sym__str_single_quotes] = ACTIONS(2484), - [sym__str_back_ticks] = ACTIONS(2484), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2484), - [sym__entry_separator] = ACTIONS(2486), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2486), + [anon_sym_export] = ACTIONS(1785), + [anon_sym_alias] = ACTIONS(1785), + [anon_sym_let] = ACTIONS(1785), + [anon_sym_let_DASHenv] = ACTIONS(1785), + [anon_sym_mut] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(1785), + [aux_sym_cmd_identifier_token1] = ACTIONS(1785), + [aux_sym_cmd_identifier_token2] = ACTIONS(1787), + [aux_sym_cmd_identifier_token3] = ACTIONS(1787), + [aux_sym_cmd_identifier_token4] = ACTIONS(1787), + [aux_sym_cmd_identifier_token5] = ACTIONS(1787), + [aux_sym_cmd_identifier_token6] = ACTIONS(1787), + [aux_sym_cmd_identifier_token7] = ACTIONS(1787), + [aux_sym_cmd_identifier_token8] = ACTIONS(1785), + [aux_sym_cmd_identifier_token9] = ACTIONS(1785), + [aux_sym_cmd_identifier_token10] = ACTIONS(1787), + [aux_sym_cmd_identifier_token11] = ACTIONS(1787), + [aux_sym_cmd_identifier_token12] = ACTIONS(1785), + [aux_sym_cmd_identifier_token13] = ACTIONS(1785), + [aux_sym_cmd_identifier_token14] = ACTIONS(1785), + [aux_sym_cmd_identifier_token15] = ACTIONS(1785), + [aux_sym_cmd_identifier_token16] = ACTIONS(1787), + [aux_sym_cmd_identifier_token17] = ACTIONS(1787), + [aux_sym_cmd_identifier_token18] = ACTIONS(1787), + [aux_sym_cmd_identifier_token19] = ACTIONS(1787), + [aux_sym_cmd_identifier_token20] = ACTIONS(1787), + [aux_sym_cmd_identifier_token21] = ACTIONS(1787), + [aux_sym_cmd_identifier_token22] = ACTIONS(1787), + [aux_sym_cmd_identifier_token23] = ACTIONS(1787), + [aux_sym_cmd_identifier_token24] = ACTIONS(1787), + [aux_sym_cmd_identifier_token25] = ACTIONS(1787), + [aux_sym_cmd_identifier_token26] = ACTIONS(1787), + [aux_sym_cmd_identifier_token27] = ACTIONS(1787), + [aux_sym_cmd_identifier_token28] = ACTIONS(1787), + [aux_sym_cmd_identifier_token29] = ACTIONS(1787), + [aux_sym_cmd_identifier_token30] = ACTIONS(1787), + [aux_sym_cmd_identifier_token31] = ACTIONS(1787), + [aux_sym_cmd_identifier_token32] = ACTIONS(1787), + [aux_sym_cmd_identifier_token33] = ACTIONS(1787), + [aux_sym_cmd_identifier_token34] = ACTIONS(1785), + [aux_sym_cmd_identifier_token35] = ACTIONS(1787), + [aux_sym_cmd_identifier_token36] = ACTIONS(1787), + [aux_sym_cmd_identifier_token37] = ACTIONS(1787), + [aux_sym_cmd_identifier_token38] = ACTIONS(1785), + [aux_sym_cmd_identifier_token39] = ACTIONS(1787), + [aux_sym_cmd_identifier_token40] = ACTIONS(1787), + [anon_sym_def] = ACTIONS(1785), + [anon_sym_export_DASHenv] = ACTIONS(1785), + [anon_sym_extern] = ACTIONS(1785), + [anon_sym_module] = ACTIONS(1785), + [anon_sym_use] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_DOLLAR] = ACTIONS(1787), + [anon_sym_error] = ACTIONS(1785), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_break] = ACTIONS(1785), + [anon_sym_continue] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1785), + [anon_sym_in2] = ACTIONS(1785), + [anon_sym_loop] = ACTIONS(1785), + [anon_sym_make] = ACTIONS(1785), + [anon_sym_while] = ACTIONS(1785), + [anon_sym_do] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1785), + [anon_sym_else] = ACTIONS(1785), + [anon_sym_match] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1787), + [anon_sym_try] = ACTIONS(1785), + [anon_sym_catch] = ACTIONS(1785), + [anon_sym_return] = ACTIONS(1785), + [anon_sym_source] = ACTIONS(1785), + [anon_sym_source_DASHenv] = ACTIONS(1785), + [anon_sym_register] = ACTIONS(1785), + [anon_sym_hide] = ACTIONS(1785), + [anon_sym_hide_DASHenv] = ACTIONS(1785), + [anon_sym_overlay] = ACTIONS(1785), + [anon_sym_as] = ACTIONS(1785), + [anon_sym_PLUS2] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1787), + [aux_sym__immediate_decimal_token2] = ACTIONS(2476), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1787), + [aux_sym__val_number_decimal_token1] = ACTIONS(1785), + [aux_sym__val_number_decimal_token2] = ACTIONS(1787), + [aux_sym__val_number_decimal_token3] = ACTIONS(1787), + [aux_sym__val_number_decimal_token4] = ACTIONS(1787), + [aux_sym__val_number_token1] = ACTIONS(1787), + [aux_sym__val_number_token2] = ACTIONS(1787), + [aux_sym__val_number_token3] = ACTIONS(1787), + [aux_sym__val_number_token4] = ACTIONS(1785), + [aux_sym__val_number_token5] = ACTIONS(1785), + [aux_sym__val_number_token6] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1787), + [sym__str_single_quotes] = ACTIONS(1787), + [sym__str_back_ticks] = ACTIONS(1787), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1787), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1787), }, [680] = { [sym_comment] = STATE(680), - [anon_sym_export] = ACTIONS(2488), - [anon_sym_alias] = ACTIONS(2488), - [anon_sym_let] = ACTIONS(2488), - [anon_sym_let_DASHenv] = ACTIONS(2488), - [anon_sym_mut] = ACTIONS(2488), - [anon_sym_const] = ACTIONS(2488), - [aux_sym_cmd_identifier_token1] = ACTIONS(2488), - [aux_sym_cmd_identifier_token2] = ACTIONS(2488), - [aux_sym_cmd_identifier_token3] = ACTIONS(2488), - [aux_sym_cmd_identifier_token4] = ACTIONS(2488), - [aux_sym_cmd_identifier_token5] = ACTIONS(2488), - [aux_sym_cmd_identifier_token6] = ACTIONS(2488), - [aux_sym_cmd_identifier_token7] = ACTIONS(2488), - [aux_sym_cmd_identifier_token8] = ACTIONS(2488), - [aux_sym_cmd_identifier_token9] = ACTIONS(2488), - [aux_sym_cmd_identifier_token10] = ACTIONS(2488), - [aux_sym_cmd_identifier_token11] = ACTIONS(2488), - [aux_sym_cmd_identifier_token12] = ACTIONS(2488), - [aux_sym_cmd_identifier_token13] = ACTIONS(2488), - [aux_sym_cmd_identifier_token14] = ACTIONS(2488), - [aux_sym_cmd_identifier_token15] = ACTIONS(2488), - [aux_sym_cmd_identifier_token16] = ACTIONS(2488), - [aux_sym_cmd_identifier_token17] = ACTIONS(2488), - [aux_sym_cmd_identifier_token18] = ACTIONS(2488), - [aux_sym_cmd_identifier_token19] = ACTIONS(2488), - [aux_sym_cmd_identifier_token20] = ACTIONS(2488), - [aux_sym_cmd_identifier_token21] = ACTIONS(2488), - [aux_sym_cmd_identifier_token22] = ACTIONS(2488), - [aux_sym_cmd_identifier_token23] = ACTIONS(2488), - [aux_sym_cmd_identifier_token24] = ACTIONS(2488), - [aux_sym_cmd_identifier_token25] = ACTIONS(2488), - [aux_sym_cmd_identifier_token26] = ACTIONS(2488), - [aux_sym_cmd_identifier_token27] = ACTIONS(2488), - [aux_sym_cmd_identifier_token28] = ACTIONS(2488), - [aux_sym_cmd_identifier_token29] = ACTIONS(2488), - [aux_sym_cmd_identifier_token30] = ACTIONS(2488), - [aux_sym_cmd_identifier_token31] = ACTIONS(2488), - [aux_sym_cmd_identifier_token32] = ACTIONS(2488), - [aux_sym_cmd_identifier_token33] = ACTIONS(2488), - [aux_sym_cmd_identifier_token34] = ACTIONS(2488), - [aux_sym_cmd_identifier_token35] = ACTIONS(2488), - [aux_sym_cmd_identifier_token36] = ACTIONS(2488), - [aux_sym_cmd_identifier_token37] = ACTIONS(2488), - [aux_sym_cmd_identifier_token38] = ACTIONS(2488), - [aux_sym_cmd_identifier_token39] = ACTIONS(2488), - [aux_sym_cmd_identifier_token40] = ACTIONS(2488), - [anon_sym_def] = ACTIONS(2488), - [anon_sym_export_DASHenv] = ACTIONS(2488), - [anon_sym_extern] = ACTIONS(2488), - [anon_sym_module] = ACTIONS(2488), - [anon_sym_use] = ACTIONS(2488), - [anon_sym_LPAREN] = ACTIONS(2488), - [anon_sym_DOLLAR] = ACTIONS(2488), - [anon_sym_error] = ACTIONS(2488), - [anon_sym_DASH2] = ACTIONS(2488), - [anon_sym_break] = ACTIONS(2488), - [anon_sym_continue] = ACTIONS(2488), - [anon_sym_for] = ACTIONS(2488), - [anon_sym_in2] = ACTIONS(2488), - [anon_sym_loop] = ACTIONS(2488), - [anon_sym_make] = ACTIONS(2488), - [anon_sym_while] = ACTIONS(2488), - [anon_sym_do] = ACTIONS(2488), - [anon_sym_if] = ACTIONS(2488), - [anon_sym_else] = ACTIONS(2488), - [anon_sym_match] = ACTIONS(2488), - [anon_sym_RBRACE] = ACTIONS(2488), - [anon_sym_try] = ACTIONS(2488), - [anon_sym_catch] = ACTIONS(2488), - [anon_sym_return] = ACTIONS(2488), - [anon_sym_source] = ACTIONS(2488), - [anon_sym_source_DASHenv] = ACTIONS(2488), - [anon_sym_register] = ACTIONS(2488), - [anon_sym_hide] = ACTIONS(2488), - [anon_sym_hide_DASHenv] = ACTIONS(2488), - [anon_sym_overlay] = ACTIONS(2488), - [anon_sym_as] = ACTIONS(2488), - [anon_sym_PLUS2] = ACTIONS(2488), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2488), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2488), - [aux_sym__val_number_decimal_token1] = ACTIONS(2488), - [aux_sym__val_number_decimal_token2] = ACTIONS(2488), - [aux_sym__val_number_decimal_token3] = ACTIONS(2488), - [aux_sym__val_number_decimal_token4] = ACTIONS(2488), - [aux_sym__val_number_token1] = ACTIONS(2488), - [aux_sym__val_number_token2] = ACTIONS(2488), - [aux_sym__val_number_token3] = ACTIONS(2488), - [aux_sym__val_number_token4] = ACTIONS(2488), - [aux_sym__val_number_token5] = ACTIONS(2488), - [aux_sym__val_number_token6] = ACTIONS(2488), - [anon_sym_DQUOTE] = ACTIONS(2488), - [sym__str_single_quotes] = ACTIONS(2488), - [sym__str_back_ticks] = ACTIONS(2488), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2488), - [sym__entry_separator] = ACTIONS(2490), + [anon_sym_export] = ACTIONS(2478), + [anon_sym_alias] = ACTIONS(2478), + [anon_sym_let] = ACTIONS(2478), + [anon_sym_let_DASHenv] = ACTIONS(2478), + [anon_sym_mut] = ACTIONS(2478), + [anon_sym_const] = ACTIONS(2478), + [aux_sym_cmd_identifier_token1] = ACTIONS(2478), + [aux_sym_cmd_identifier_token2] = ACTIONS(2478), + [aux_sym_cmd_identifier_token3] = ACTIONS(2478), + [aux_sym_cmd_identifier_token4] = ACTIONS(2478), + [aux_sym_cmd_identifier_token5] = ACTIONS(2478), + [aux_sym_cmd_identifier_token6] = ACTIONS(2478), + [aux_sym_cmd_identifier_token7] = ACTIONS(2478), + [aux_sym_cmd_identifier_token8] = ACTIONS(2478), + [aux_sym_cmd_identifier_token9] = ACTIONS(2478), + [aux_sym_cmd_identifier_token10] = ACTIONS(2478), + [aux_sym_cmd_identifier_token11] = ACTIONS(2478), + [aux_sym_cmd_identifier_token12] = ACTIONS(2478), + [aux_sym_cmd_identifier_token13] = ACTIONS(2478), + [aux_sym_cmd_identifier_token14] = ACTIONS(2478), + [aux_sym_cmd_identifier_token15] = ACTIONS(2478), + [aux_sym_cmd_identifier_token16] = ACTIONS(2478), + [aux_sym_cmd_identifier_token17] = ACTIONS(2478), + [aux_sym_cmd_identifier_token18] = ACTIONS(2478), + [aux_sym_cmd_identifier_token19] = ACTIONS(2478), + [aux_sym_cmd_identifier_token20] = ACTIONS(2478), + [aux_sym_cmd_identifier_token21] = ACTIONS(2478), + [aux_sym_cmd_identifier_token22] = ACTIONS(2478), + [aux_sym_cmd_identifier_token23] = ACTIONS(2478), + [aux_sym_cmd_identifier_token24] = ACTIONS(2478), + [aux_sym_cmd_identifier_token25] = ACTIONS(2478), + [aux_sym_cmd_identifier_token26] = ACTIONS(2478), + [aux_sym_cmd_identifier_token27] = ACTIONS(2478), + [aux_sym_cmd_identifier_token28] = ACTIONS(2478), + [aux_sym_cmd_identifier_token29] = ACTIONS(2478), + [aux_sym_cmd_identifier_token30] = ACTIONS(2478), + [aux_sym_cmd_identifier_token31] = ACTIONS(2478), + [aux_sym_cmd_identifier_token32] = ACTIONS(2478), + [aux_sym_cmd_identifier_token33] = ACTIONS(2478), + [aux_sym_cmd_identifier_token34] = ACTIONS(2478), + [aux_sym_cmd_identifier_token35] = ACTIONS(2478), + [aux_sym_cmd_identifier_token36] = ACTIONS(2478), + [aux_sym_cmd_identifier_token37] = ACTIONS(2478), + [aux_sym_cmd_identifier_token38] = ACTIONS(2478), + [aux_sym_cmd_identifier_token39] = ACTIONS(2478), + [aux_sym_cmd_identifier_token40] = ACTIONS(2478), + [anon_sym_def] = ACTIONS(2478), + [anon_sym_export_DASHenv] = ACTIONS(2478), + [anon_sym_extern] = ACTIONS(2478), + [anon_sym_module] = ACTIONS(2478), + [anon_sym_use] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2478), + [anon_sym_DOLLAR] = ACTIONS(2478), + [anon_sym_error] = ACTIONS(2478), + [anon_sym_DASH2] = ACTIONS(2478), + [anon_sym_break] = ACTIONS(2478), + [anon_sym_continue] = ACTIONS(2478), + [anon_sym_for] = ACTIONS(2478), + [anon_sym_in2] = ACTIONS(2478), + [anon_sym_loop] = ACTIONS(2478), + [anon_sym_make] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2478), + [anon_sym_do] = ACTIONS(2478), + [anon_sym_if] = ACTIONS(2478), + [anon_sym_else] = ACTIONS(2478), + [anon_sym_match] = ACTIONS(2478), + [anon_sym_RBRACE] = ACTIONS(2478), + [anon_sym_try] = ACTIONS(2478), + [anon_sym_catch] = ACTIONS(2478), + [anon_sym_return] = ACTIONS(2478), + [anon_sym_source] = ACTIONS(2478), + [anon_sym_source_DASHenv] = ACTIONS(2478), + [anon_sym_register] = ACTIONS(2478), + [anon_sym_hide] = ACTIONS(2478), + [anon_sym_hide_DASHenv] = ACTIONS(2478), + [anon_sym_overlay] = ACTIONS(2478), + [anon_sym_as] = ACTIONS(2478), + [anon_sym_PLUS2] = ACTIONS(2478), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2478), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2478), + [aux_sym__val_number_decimal_token1] = ACTIONS(2478), + [aux_sym__val_number_decimal_token2] = ACTIONS(2478), + [aux_sym__val_number_decimal_token3] = ACTIONS(2478), + [aux_sym__val_number_decimal_token4] = ACTIONS(2478), + [aux_sym__val_number_token1] = ACTIONS(2478), + [aux_sym__val_number_token2] = ACTIONS(2478), + [aux_sym__val_number_token3] = ACTIONS(2478), + [aux_sym__val_number_token4] = ACTIONS(2478), + [aux_sym__val_number_token5] = ACTIONS(2478), + [aux_sym__val_number_token6] = ACTIONS(2478), + [anon_sym_DQUOTE] = ACTIONS(2478), + [sym__str_single_quotes] = ACTIONS(2478), + [sym__str_back_ticks] = ACTIONS(2478), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2478), + [sym__entry_separator] = ACTIONS(2480), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2490), + [sym_raw_string_begin] = ACTIONS(2480), }, [681] = { [sym_comment] = STATE(681), - [anon_sym_export] = ACTIONS(1739), - [anon_sym_alias] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1739), - [anon_sym_let_DASHenv] = ACTIONS(1739), - [anon_sym_mut] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [aux_sym_cmd_identifier_token1] = ACTIONS(1739), - [aux_sym_cmd_identifier_token2] = ACTIONS(1739), - [aux_sym_cmd_identifier_token3] = ACTIONS(1739), - [aux_sym_cmd_identifier_token4] = ACTIONS(1739), - [aux_sym_cmd_identifier_token5] = ACTIONS(1739), - [aux_sym_cmd_identifier_token6] = ACTIONS(1739), - [aux_sym_cmd_identifier_token7] = ACTIONS(1739), - [aux_sym_cmd_identifier_token8] = ACTIONS(1739), - [aux_sym_cmd_identifier_token9] = ACTIONS(1739), - [aux_sym_cmd_identifier_token10] = ACTIONS(1739), - [aux_sym_cmd_identifier_token11] = ACTIONS(1739), - [aux_sym_cmd_identifier_token12] = ACTIONS(1739), - [aux_sym_cmd_identifier_token13] = ACTIONS(1739), - [aux_sym_cmd_identifier_token14] = ACTIONS(1739), - [aux_sym_cmd_identifier_token15] = ACTIONS(1739), - [aux_sym_cmd_identifier_token16] = ACTIONS(1739), - [aux_sym_cmd_identifier_token17] = ACTIONS(1739), - [aux_sym_cmd_identifier_token18] = ACTIONS(1739), - [aux_sym_cmd_identifier_token19] = ACTIONS(1739), - [aux_sym_cmd_identifier_token20] = ACTIONS(1739), - [aux_sym_cmd_identifier_token21] = ACTIONS(1739), - [aux_sym_cmd_identifier_token22] = ACTIONS(1739), - [aux_sym_cmd_identifier_token23] = ACTIONS(1739), - [aux_sym_cmd_identifier_token24] = ACTIONS(1739), - [aux_sym_cmd_identifier_token25] = ACTIONS(1739), - [aux_sym_cmd_identifier_token26] = ACTIONS(1739), - [aux_sym_cmd_identifier_token27] = ACTIONS(1739), - [aux_sym_cmd_identifier_token28] = ACTIONS(1739), - [aux_sym_cmd_identifier_token29] = ACTIONS(1739), - [aux_sym_cmd_identifier_token30] = ACTIONS(1739), - [aux_sym_cmd_identifier_token31] = ACTIONS(1739), - [aux_sym_cmd_identifier_token32] = ACTIONS(1739), - [aux_sym_cmd_identifier_token33] = ACTIONS(1739), - [aux_sym_cmd_identifier_token34] = ACTIONS(1739), - [aux_sym_cmd_identifier_token35] = ACTIONS(1739), - [aux_sym_cmd_identifier_token36] = ACTIONS(1739), - [aux_sym_cmd_identifier_token37] = ACTIONS(1739), - [aux_sym_cmd_identifier_token38] = ACTIONS(1739), - [aux_sym_cmd_identifier_token39] = ACTIONS(1739), - [aux_sym_cmd_identifier_token40] = ACTIONS(1739), - [anon_sym_def] = ACTIONS(1739), - [anon_sym_export_DASHenv] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1739), - [anon_sym_module] = ACTIONS(1739), - [anon_sym_use] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_error] = ACTIONS(1739), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_in2] = ACTIONS(1739), - [anon_sym_loop] = ACTIONS(1739), - [anon_sym_make] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_else] = ACTIONS(1739), - [anon_sym_match] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_catch] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_source] = ACTIONS(1739), - [anon_sym_source_DASHenv] = ACTIONS(1739), - [anon_sym_register] = ACTIONS(1739), - [anon_sym_hide] = ACTIONS(1739), - [anon_sym_hide_DASHenv] = ACTIONS(1739), - [anon_sym_overlay] = ACTIONS(1739), - [anon_sym_as] = ACTIONS(1739), - [anon_sym_PLUS2] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1739), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1739), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1739), - [aux_sym__val_number_token1] = ACTIONS(1739), - [aux_sym__val_number_token2] = ACTIONS(1739), - [aux_sym__val_number_token3] = ACTIONS(1739), - [aux_sym__val_number_token4] = ACTIONS(1739), - [aux_sym__val_number_token5] = ACTIONS(1739), - [aux_sym__val_number_token6] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1739), - [sym__str_single_quotes] = ACTIONS(1739), - [sym__str_back_ticks] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1739), - [sym__entry_separator] = ACTIONS(1741), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_alias] = ACTIONS(2482), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_let_DASHenv] = ACTIONS(2482), + [anon_sym_mut] = ACTIONS(2482), + [anon_sym_const] = ACTIONS(2482), + [aux_sym_cmd_identifier_token1] = ACTIONS(2482), + [aux_sym_cmd_identifier_token2] = ACTIONS(2482), + [aux_sym_cmd_identifier_token3] = ACTIONS(2482), + [aux_sym_cmd_identifier_token4] = ACTIONS(2482), + [aux_sym_cmd_identifier_token5] = ACTIONS(2482), + [aux_sym_cmd_identifier_token6] = ACTIONS(2482), + [aux_sym_cmd_identifier_token7] = ACTIONS(2482), + [aux_sym_cmd_identifier_token8] = ACTIONS(2482), + [aux_sym_cmd_identifier_token9] = ACTIONS(2482), + [aux_sym_cmd_identifier_token10] = ACTIONS(2482), + [aux_sym_cmd_identifier_token11] = ACTIONS(2482), + [aux_sym_cmd_identifier_token12] = ACTIONS(2482), + [aux_sym_cmd_identifier_token13] = ACTIONS(2482), + [aux_sym_cmd_identifier_token14] = ACTIONS(2482), + [aux_sym_cmd_identifier_token15] = ACTIONS(2482), + [aux_sym_cmd_identifier_token16] = ACTIONS(2482), + [aux_sym_cmd_identifier_token17] = ACTIONS(2482), + [aux_sym_cmd_identifier_token18] = ACTIONS(2482), + [aux_sym_cmd_identifier_token19] = ACTIONS(2482), + [aux_sym_cmd_identifier_token20] = ACTIONS(2482), + [aux_sym_cmd_identifier_token21] = ACTIONS(2482), + [aux_sym_cmd_identifier_token22] = ACTIONS(2482), + [aux_sym_cmd_identifier_token23] = ACTIONS(2482), + [aux_sym_cmd_identifier_token24] = ACTIONS(2482), + [aux_sym_cmd_identifier_token25] = ACTIONS(2482), + [aux_sym_cmd_identifier_token26] = ACTIONS(2482), + [aux_sym_cmd_identifier_token27] = ACTIONS(2482), + [aux_sym_cmd_identifier_token28] = ACTIONS(2482), + [aux_sym_cmd_identifier_token29] = ACTIONS(2482), + [aux_sym_cmd_identifier_token30] = ACTIONS(2482), + [aux_sym_cmd_identifier_token31] = ACTIONS(2482), + [aux_sym_cmd_identifier_token32] = ACTIONS(2482), + [aux_sym_cmd_identifier_token33] = ACTIONS(2482), + [aux_sym_cmd_identifier_token34] = ACTIONS(2482), + [aux_sym_cmd_identifier_token35] = ACTIONS(2482), + [aux_sym_cmd_identifier_token36] = ACTIONS(2482), + [aux_sym_cmd_identifier_token37] = ACTIONS(2482), + [aux_sym_cmd_identifier_token38] = ACTIONS(2482), + [aux_sym_cmd_identifier_token39] = ACTIONS(2482), + [aux_sym_cmd_identifier_token40] = ACTIONS(2482), + [anon_sym_def] = ACTIONS(2482), + [anon_sym_export_DASHenv] = ACTIONS(2482), + [anon_sym_extern] = ACTIONS(2482), + [anon_sym_module] = ACTIONS(2482), + [anon_sym_use] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2482), + [anon_sym_DOLLAR] = ACTIONS(2482), + [anon_sym_error] = ACTIONS(2482), + [anon_sym_DASH2] = ACTIONS(2482), + [anon_sym_break] = ACTIONS(2482), + [anon_sym_continue] = ACTIONS(2482), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_in2] = ACTIONS(2482), + [anon_sym_loop] = ACTIONS(2482), + [anon_sym_make] = ACTIONS(2482), + [anon_sym_while] = ACTIONS(2482), + [anon_sym_do] = ACTIONS(2482), + [anon_sym_if] = ACTIONS(2482), + [anon_sym_else] = ACTIONS(2482), + [anon_sym_match] = ACTIONS(2482), + [anon_sym_RBRACE] = ACTIONS(2482), + [anon_sym_try] = ACTIONS(2482), + [anon_sym_catch] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(2482), + [anon_sym_source] = ACTIONS(2482), + [anon_sym_source_DASHenv] = ACTIONS(2482), + [anon_sym_register] = ACTIONS(2482), + [anon_sym_hide] = ACTIONS(2482), + [anon_sym_hide_DASHenv] = ACTIONS(2482), + [anon_sym_overlay] = ACTIONS(2482), + [anon_sym_as] = ACTIONS(2482), + [anon_sym_PLUS2] = ACTIONS(2482), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2482), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2482), + [aux_sym__val_number_decimal_token1] = ACTIONS(2482), + [aux_sym__val_number_decimal_token2] = ACTIONS(2482), + [aux_sym__val_number_decimal_token3] = ACTIONS(2482), + [aux_sym__val_number_decimal_token4] = ACTIONS(2482), + [aux_sym__val_number_token1] = ACTIONS(2482), + [aux_sym__val_number_token2] = ACTIONS(2482), + [aux_sym__val_number_token3] = ACTIONS(2482), + [aux_sym__val_number_token4] = ACTIONS(2482), + [aux_sym__val_number_token5] = ACTIONS(2482), + [aux_sym__val_number_token6] = ACTIONS(2482), + [anon_sym_DQUOTE] = ACTIONS(2482), + [sym__str_single_quotes] = ACTIONS(2482), + [sym__str_back_ticks] = ACTIONS(2482), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2482), + [sym__entry_separator] = ACTIONS(2484), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1741), + [sym_raw_string_begin] = ACTIONS(2484), }, [682] = { [sym_comment] = STATE(682), - [anon_sym_export] = ACTIONS(2492), - [anon_sym_alias] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_let_DASHenv] = ACTIONS(2492), - [anon_sym_mut] = ACTIONS(2492), - [anon_sym_const] = ACTIONS(2492), - [aux_sym_cmd_identifier_token1] = ACTIONS(2492), - [aux_sym_cmd_identifier_token2] = ACTIONS(2492), - [aux_sym_cmd_identifier_token3] = ACTIONS(2492), - [aux_sym_cmd_identifier_token4] = ACTIONS(2492), - [aux_sym_cmd_identifier_token5] = ACTIONS(2492), - [aux_sym_cmd_identifier_token6] = ACTIONS(2492), - [aux_sym_cmd_identifier_token7] = ACTIONS(2492), - [aux_sym_cmd_identifier_token8] = ACTIONS(2492), - [aux_sym_cmd_identifier_token9] = ACTIONS(2492), - [aux_sym_cmd_identifier_token10] = ACTIONS(2492), - [aux_sym_cmd_identifier_token11] = ACTIONS(2492), - [aux_sym_cmd_identifier_token12] = ACTIONS(2492), - [aux_sym_cmd_identifier_token13] = ACTIONS(2492), - [aux_sym_cmd_identifier_token14] = ACTIONS(2492), - [aux_sym_cmd_identifier_token15] = ACTIONS(2492), - [aux_sym_cmd_identifier_token16] = ACTIONS(2492), - [aux_sym_cmd_identifier_token17] = ACTIONS(2492), - [aux_sym_cmd_identifier_token18] = ACTIONS(2492), - [aux_sym_cmd_identifier_token19] = ACTIONS(2492), - [aux_sym_cmd_identifier_token20] = ACTIONS(2492), - [aux_sym_cmd_identifier_token21] = ACTIONS(2492), - [aux_sym_cmd_identifier_token22] = ACTIONS(2492), - [aux_sym_cmd_identifier_token23] = ACTIONS(2492), - [aux_sym_cmd_identifier_token24] = ACTIONS(2492), - [aux_sym_cmd_identifier_token25] = ACTIONS(2492), - [aux_sym_cmd_identifier_token26] = ACTIONS(2492), - [aux_sym_cmd_identifier_token27] = ACTIONS(2492), - [aux_sym_cmd_identifier_token28] = ACTIONS(2492), - [aux_sym_cmd_identifier_token29] = ACTIONS(2492), - [aux_sym_cmd_identifier_token30] = ACTIONS(2492), - [aux_sym_cmd_identifier_token31] = ACTIONS(2492), - [aux_sym_cmd_identifier_token32] = ACTIONS(2492), - [aux_sym_cmd_identifier_token33] = ACTIONS(2492), - [aux_sym_cmd_identifier_token34] = ACTIONS(2492), - [aux_sym_cmd_identifier_token35] = ACTIONS(2492), - [aux_sym_cmd_identifier_token36] = ACTIONS(2492), - [aux_sym_cmd_identifier_token37] = ACTIONS(2492), - [aux_sym_cmd_identifier_token38] = ACTIONS(2492), - [aux_sym_cmd_identifier_token39] = ACTIONS(2492), - [aux_sym_cmd_identifier_token40] = ACTIONS(2492), - [anon_sym_def] = ACTIONS(2492), - [anon_sym_export_DASHenv] = ACTIONS(2492), - [anon_sym_extern] = ACTIONS(2492), - [anon_sym_module] = ACTIONS(2492), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_DOLLAR] = ACTIONS(2492), - [anon_sym_error] = ACTIONS(2492), - [anon_sym_DASH2] = ACTIONS(2492), - [anon_sym_break] = ACTIONS(2492), - [anon_sym_continue] = ACTIONS(2492), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_in2] = ACTIONS(2492), - [anon_sym_loop] = ACTIONS(2492), - [anon_sym_make] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_else] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_RBRACE] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_catch] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_source] = ACTIONS(2492), - [anon_sym_source_DASHenv] = ACTIONS(2492), - [anon_sym_register] = ACTIONS(2492), - [anon_sym_hide] = ACTIONS(2492), - [anon_sym_hide_DASHenv] = ACTIONS(2492), - [anon_sym_overlay] = ACTIONS(2492), - [anon_sym_as] = ACTIONS(2492), - [anon_sym_PLUS2] = ACTIONS(2492), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2492), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2492), - [aux_sym__val_number_decimal_token1] = ACTIONS(2492), - [aux_sym__val_number_decimal_token2] = ACTIONS(2492), - [aux_sym__val_number_decimal_token3] = ACTIONS(2492), - [aux_sym__val_number_decimal_token4] = ACTIONS(2492), - [aux_sym__val_number_token1] = ACTIONS(2492), - [aux_sym__val_number_token2] = ACTIONS(2492), - [aux_sym__val_number_token3] = ACTIONS(2492), - [aux_sym__val_number_token4] = ACTIONS(2492), - [aux_sym__val_number_token5] = ACTIONS(2492), - [aux_sym__val_number_token6] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [sym__str_single_quotes] = ACTIONS(2492), - [sym__str_back_ticks] = ACTIONS(2492), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2492), - [sym__entry_separator] = ACTIONS(2494), + [anon_sym_export] = ACTIONS(1887), + [anon_sym_alias] = ACTIONS(1887), + [anon_sym_let] = ACTIONS(1887), + [anon_sym_let_DASHenv] = ACTIONS(1887), + [anon_sym_mut] = ACTIONS(1887), + [anon_sym_const] = ACTIONS(1887), + [aux_sym_cmd_identifier_token1] = ACTIONS(1887), + [aux_sym_cmd_identifier_token2] = ACTIONS(1887), + [aux_sym_cmd_identifier_token3] = ACTIONS(1887), + [aux_sym_cmd_identifier_token4] = ACTIONS(1887), + [aux_sym_cmd_identifier_token5] = ACTIONS(1887), + [aux_sym_cmd_identifier_token6] = ACTIONS(1887), + [aux_sym_cmd_identifier_token7] = ACTIONS(1887), + [aux_sym_cmd_identifier_token8] = ACTIONS(1887), + [aux_sym_cmd_identifier_token9] = ACTIONS(1887), + [aux_sym_cmd_identifier_token10] = ACTIONS(1887), + [aux_sym_cmd_identifier_token11] = ACTIONS(1887), + [aux_sym_cmd_identifier_token12] = ACTIONS(1887), + [aux_sym_cmd_identifier_token13] = ACTIONS(1887), + [aux_sym_cmd_identifier_token14] = ACTIONS(1887), + [aux_sym_cmd_identifier_token15] = ACTIONS(1887), + [aux_sym_cmd_identifier_token16] = ACTIONS(1887), + [aux_sym_cmd_identifier_token17] = ACTIONS(1887), + [aux_sym_cmd_identifier_token18] = ACTIONS(1887), + [aux_sym_cmd_identifier_token19] = ACTIONS(1887), + [aux_sym_cmd_identifier_token20] = ACTIONS(1887), + [aux_sym_cmd_identifier_token21] = ACTIONS(1887), + [aux_sym_cmd_identifier_token22] = ACTIONS(1887), + [aux_sym_cmd_identifier_token23] = ACTIONS(1887), + [aux_sym_cmd_identifier_token24] = ACTIONS(1887), + [aux_sym_cmd_identifier_token25] = ACTIONS(1887), + [aux_sym_cmd_identifier_token26] = ACTIONS(1887), + [aux_sym_cmd_identifier_token27] = ACTIONS(1887), + [aux_sym_cmd_identifier_token28] = ACTIONS(1887), + [aux_sym_cmd_identifier_token29] = ACTIONS(1887), + [aux_sym_cmd_identifier_token30] = ACTIONS(1887), + [aux_sym_cmd_identifier_token31] = ACTIONS(1887), + [aux_sym_cmd_identifier_token32] = ACTIONS(1887), + [aux_sym_cmd_identifier_token33] = ACTIONS(1887), + [aux_sym_cmd_identifier_token34] = ACTIONS(1887), + [aux_sym_cmd_identifier_token35] = ACTIONS(1887), + [aux_sym_cmd_identifier_token36] = ACTIONS(1887), + [aux_sym_cmd_identifier_token37] = ACTIONS(1887), + [aux_sym_cmd_identifier_token38] = ACTIONS(1887), + [aux_sym_cmd_identifier_token39] = ACTIONS(1887), + [aux_sym_cmd_identifier_token40] = ACTIONS(1887), + [anon_sym_def] = ACTIONS(1887), + [anon_sym_export_DASHenv] = ACTIONS(1887), + [anon_sym_extern] = ACTIONS(1887), + [anon_sym_module] = ACTIONS(1887), + [anon_sym_use] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1887), + [anon_sym_DOLLAR] = ACTIONS(1887), + [anon_sym_error] = ACTIONS(1887), + [anon_sym_DASH2] = ACTIONS(1887), + [anon_sym_break] = ACTIONS(1887), + [anon_sym_continue] = ACTIONS(1887), + [anon_sym_for] = ACTIONS(1887), + [anon_sym_in2] = ACTIONS(1887), + [anon_sym_loop] = ACTIONS(1887), + [anon_sym_make] = ACTIONS(1887), + [anon_sym_while] = ACTIONS(1887), + [anon_sym_do] = ACTIONS(1887), + [anon_sym_if] = ACTIONS(1887), + [anon_sym_else] = ACTIONS(1887), + [anon_sym_match] = ACTIONS(1887), + [anon_sym_RBRACE] = ACTIONS(1887), + [anon_sym_try] = ACTIONS(1887), + [anon_sym_catch] = ACTIONS(1887), + [anon_sym_return] = ACTIONS(1887), + [anon_sym_source] = ACTIONS(1887), + [anon_sym_source_DASHenv] = ACTIONS(1887), + [anon_sym_register] = ACTIONS(1887), + [anon_sym_hide] = ACTIONS(1887), + [anon_sym_hide_DASHenv] = ACTIONS(1887), + [anon_sym_overlay] = ACTIONS(1887), + [anon_sym_as] = ACTIONS(1887), + [anon_sym_PLUS2] = ACTIONS(1887), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1887), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1887), + [aux_sym__val_number_decimal_token1] = ACTIONS(1887), + [aux_sym__val_number_decimal_token2] = ACTIONS(1887), + [aux_sym__val_number_decimal_token3] = ACTIONS(1887), + [aux_sym__val_number_decimal_token4] = ACTIONS(1887), + [aux_sym__val_number_token1] = ACTIONS(1887), + [aux_sym__val_number_token2] = ACTIONS(1887), + [aux_sym__val_number_token3] = ACTIONS(1887), + [aux_sym__val_number_token4] = ACTIONS(1887), + [aux_sym__val_number_token5] = ACTIONS(1887), + [aux_sym__val_number_token6] = ACTIONS(1887), + [anon_sym_DQUOTE] = ACTIONS(1887), + [sym__str_single_quotes] = ACTIONS(1887), + [sym__str_back_ticks] = ACTIONS(1887), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1887), + [sym__entry_separator] = ACTIONS(1889), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2494), + [sym_raw_string_begin] = ACTIONS(1889), }, [683] = { [sym_comment] = STATE(683), - [anon_sym_export] = ACTIONS(2496), - [anon_sym_alias] = ACTIONS(2496), - [anon_sym_let] = ACTIONS(2496), - [anon_sym_let_DASHenv] = ACTIONS(2496), - [anon_sym_mut] = ACTIONS(2496), - [anon_sym_const] = ACTIONS(2496), - [aux_sym_cmd_identifier_token1] = ACTIONS(2496), - [aux_sym_cmd_identifier_token2] = ACTIONS(2496), - [aux_sym_cmd_identifier_token3] = ACTIONS(2496), - [aux_sym_cmd_identifier_token4] = ACTIONS(2496), - [aux_sym_cmd_identifier_token5] = ACTIONS(2496), - [aux_sym_cmd_identifier_token6] = ACTIONS(2496), - [aux_sym_cmd_identifier_token7] = ACTIONS(2496), - [aux_sym_cmd_identifier_token8] = ACTIONS(2496), - [aux_sym_cmd_identifier_token9] = ACTIONS(2496), - [aux_sym_cmd_identifier_token10] = ACTIONS(2496), - [aux_sym_cmd_identifier_token11] = ACTIONS(2496), - [aux_sym_cmd_identifier_token12] = ACTIONS(2496), - [aux_sym_cmd_identifier_token13] = ACTIONS(2496), - [aux_sym_cmd_identifier_token14] = ACTIONS(2496), - [aux_sym_cmd_identifier_token15] = ACTIONS(2496), - [aux_sym_cmd_identifier_token16] = ACTIONS(2496), - [aux_sym_cmd_identifier_token17] = ACTIONS(2496), - [aux_sym_cmd_identifier_token18] = ACTIONS(2496), - [aux_sym_cmd_identifier_token19] = ACTIONS(2496), - [aux_sym_cmd_identifier_token20] = ACTIONS(2496), - [aux_sym_cmd_identifier_token21] = ACTIONS(2496), - [aux_sym_cmd_identifier_token22] = ACTIONS(2496), - [aux_sym_cmd_identifier_token23] = ACTIONS(2496), - [aux_sym_cmd_identifier_token24] = ACTIONS(2496), - [aux_sym_cmd_identifier_token25] = ACTIONS(2496), - [aux_sym_cmd_identifier_token26] = ACTIONS(2496), - [aux_sym_cmd_identifier_token27] = ACTIONS(2496), - [aux_sym_cmd_identifier_token28] = ACTIONS(2496), - [aux_sym_cmd_identifier_token29] = ACTIONS(2496), - [aux_sym_cmd_identifier_token30] = ACTIONS(2496), - [aux_sym_cmd_identifier_token31] = ACTIONS(2496), - [aux_sym_cmd_identifier_token32] = ACTIONS(2496), - [aux_sym_cmd_identifier_token33] = ACTIONS(2496), - [aux_sym_cmd_identifier_token34] = ACTIONS(2496), - [aux_sym_cmd_identifier_token35] = ACTIONS(2496), - [aux_sym_cmd_identifier_token36] = ACTIONS(2496), - [aux_sym_cmd_identifier_token37] = ACTIONS(2496), - [aux_sym_cmd_identifier_token38] = ACTIONS(2496), - [aux_sym_cmd_identifier_token39] = ACTIONS(2496), - [aux_sym_cmd_identifier_token40] = ACTIONS(2496), - [anon_sym_def] = ACTIONS(2496), - [anon_sym_export_DASHenv] = ACTIONS(2496), - [anon_sym_extern] = ACTIONS(2496), - [anon_sym_module] = ACTIONS(2496), - [anon_sym_use] = ACTIONS(2496), - [anon_sym_LPAREN] = ACTIONS(2496), - [anon_sym_DOLLAR] = ACTIONS(2496), - [anon_sym_error] = ACTIONS(2496), - [anon_sym_DASH2] = ACTIONS(2496), - [anon_sym_break] = ACTIONS(2496), - [anon_sym_continue] = ACTIONS(2496), - [anon_sym_for] = ACTIONS(2496), - [anon_sym_in2] = ACTIONS(2496), - [anon_sym_loop] = ACTIONS(2496), - [anon_sym_make] = ACTIONS(2496), - [anon_sym_while] = ACTIONS(2496), - [anon_sym_do] = ACTIONS(2496), - [anon_sym_if] = ACTIONS(2496), - [anon_sym_else] = ACTIONS(2496), - [anon_sym_match] = ACTIONS(2496), - [anon_sym_RBRACE] = ACTIONS(2496), - [anon_sym_try] = ACTIONS(2496), - [anon_sym_catch] = ACTIONS(2496), - [anon_sym_return] = ACTIONS(2496), - [anon_sym_source] = ACTIONS(2496), - [anon_sym_source_DASHenv] = ACTIONS(2496), - [anon_sym_register] = ACTIONS(2496), - [anon_sym_hide] = ACTIONS(2496), - [anon_sym_hide_DASHenv] = ACTIONS(2496), - [anon_sym_overlay] = ACTIONS(2496), - [anon_sym_as] = ACTIONS(2496), - [anon_sym_PLUS2] = ACTIONS(2496), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2496), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2496), - [aux_sym__val_number_decimal_token1] = ACTIONS(2496), - [aux_sym__val_number_decimal_token2] = ACTIONS(2496), - [aux_sym__val_number_decimal_token3] = ACTIONS(2496), - [aux_sym__val_number_decimal_token4] = ACTIONS(2496), - [aux_sym__val_number_token1] = ACTIONS(2496), - [aux_sym__val_number_token2] = ACTIONS(2496), - [aux_sym__val_number_token3] = ACTIONS(2496), - [aux_sym__val_number_token4] = ACTIONS(2496), - [aux_sym__val_number_token5] = ACTIONS(2496), - [aux_sym__val_number_token6] = ACTIONS(2496), - [anon_sym_DQUOTE] = ACTIONS(2496), - [sym__str_single_quotes] = ACTIONS(2496), - [sym__str_back_ticks] = ACTIONS(2496), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2496), - [sym__entry_separator] = ACTIONS(2498), + [anon_sym_export] = ACTIONS(1942), + [anon_sym_alias] = ACTIONS(1942), + [anon_sym_let] = ACTIONS(1942), + [anon_sym_let_DASHenv] = ACTIONS(1942), + [anon_sym_mut] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1942), + [aux_sym_cmd_identifier_token1] = ACTIONS(1942), + [aux_sym_cmd_identifier_token2] = ACTIONS(1942), + [aux_sym_cmd_identifier_token3] = ACTIONS(1942), + [aux_sym_cmd_identifier_token4] = ACTIONS(1942), + [aux_sym_cmd_identifier_token5] = ACTIONS(1942), + [aux_sym_cmd_identifier_token6] = ACTIONS(1942), + [aux_sym_cmd_identifier_token7] = ACTIONS(1942), + [aux_sym_cmd_identifier_token8] = ACTIONS(1942), + [aux_sym_cmd_identifier_token9] = ACTIONS(1942), + [aux_sym_cmd_identifier_token10] = ACTIONS(1942), + [aux_sym_cmd_identifier_token11] = ACTIONS(1942), + [aux_sym_cmd_identifier_token12] = ACTIONS(1942), + [aux_sym_cmd_identifier_token13] = ACTIONS(1942), + [aux_sym_cmd_identifier_token14] = ACTIONS(1942), + [aux_sym_cmd_identifier_token15] = ACTIONS(1942), + [aux_sym_cmd_identifier_token16] = ACTIONS(1942), + [aux_sym_cmd_identifier_token17] = ACTIONS(1942), + [aux_sym_cmd_identifier_token18] = ACTIONS(1942), + [aux_sym_cmd_identifier_token19] = ACTIONS(1942), + [aux_sym_cmd_identifier_token20] = ACTIONS(1942), + [aux_sym_cmd_identifier_token21] = ACTIONS(1942), + [aux_sym_cmd_identifier_token22] = ACTIONS(1942), + [aux_sym_cmd_identifier_token23] = ACTIONS(1942), + [aux_sym_cmd_identifier_token24] = ACTIONS(1942), + [aux_sym_cmd_identifier_token25] = ACTIONS(1942), + [aux_sym_cmd_identifier_token26] = ACTIONS(1942), + [aux_sym_cmd_identifier_token27] = ACTIONS(1942), + [aux_sym_cmd_identifier_token28] = ACTIONS(1942), + [aux_sym_cmd_identifier_token29] = ACTIONS(1942), + [aux_sym_cmd_identifier_token30] = ACTIONS(1942), + [aux_sym_cmd_identifier_token31] = ACTIONS(1942), + [aux_sym_cmd_identifier_token32] = ACTIONS(1942), + [aux_sym_cmd_identifier_token33] = ACTIONS(1942), + [aux_sym_cmd_identifier_token34] = ACTIONS(1942), + [aux_sym_cmd_identifier_token35] = ACTIONS(1942), + [aux_sym_cmd_identifier_token36] = ACTIONS(1942), + [aux_sym_cmd_identifier_token37] = ACTIONS(1942), + [aux_sym_cmd_identifier_token38] = ACTIONS(1942), + [aux_sym_cmd_identifier_token39] = ACTIONS(1942), + [aux_sym_cmd_identifier_token40] = ACTIONS(1942), + [anon_sym_def] = ACTIONS(1942), + [anon_sym_export_DASHenv] = ACTIONS(1942), + [anon_sym_extern] = ACTIONS(1942), + [anon_sym_module] = ACTIONS(1942), + [anon_sym_use] = ACTIONS(1942), + [anon_sym_LPAREN] = ACTIONS(1942), + [anon_sym_DOLLAR] = ACTIONS(1942), + [anon_sym_error] = ACTIONS(1942), + [anon_sym_DASH2] = ACTIONS(1942), + [anon_sym_break] = ACTIONS(1942), + [anon_sym_continue] = ACTIONS(1942), + [anon_sym_for] = ACTIONS(1942), + [anon_sym_in2] = ACTIONS(1942), + [anon_sym_loop] = ACTIONS(1942), + [anon_sym_make] = ACTIONS(1942), + [anon_sym_while] = ACTIONS(1942), + [anon_sym_do] = ACTIONS(1942), + [anon_sym_if] = ACTIONS(1942), + [anon_sym_else] = ACTIONS(1942), + [anon_sym_match] = ACTIONS(1942), + [anon_sym_RBRACE] = ACTIONS(1942), + [anon_sym_try] = ACTIONS(1942), + [anon_sym_catch] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1942), + [anon_sym_source] = ACTIONS(1942), + [anon_sym_source_DASHenv] = ACTIONS(1942), + [anon_sym_register] = ACTIONS(1942), + [anon_sym_hide] = ACTIONS(1942), + [anon_sym_hide_DASHenv] = ACTIONS(1942), + [anon_sym_overlay] = ACTIONS(1942), + [anon_sym_as] = ACTIONS(1942), + [anon_sym_PLUS2] = ACTIONS(1942), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1942), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1942), + [aux_sym__val_number_decimal_token1] = ACTIONS(1942), + [aux_sym__val_number_decimal_token2] = ACTIONS(1942), + [aux_sym__val_number_decimal_token3] = ACTIONS(1942), + [aux_sym__val_number_decimal_token4] = ACTIONS(1942), + [aux_sym__val_number_token1] = ACTIONS(1942), + [aux_sym__val_number_token2] = ACTIONS(1942), + [aux_sym__val_number_token3] = ACTIONS(1942), + [aux_sym__val_number_token4] = ACTIONS(1942), + [aux_sym__val_number_token5] = ACTIONS(1942), + [aux_sym__val_number_token6] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym__str_single_quotes] = ACTIONS(1942), + [sym__str_back_ticks] = ACTIONS(1942), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1942), + [sym__entry_separator] = ACTIONS(1944), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2498), + [sym_raw_string_begin] = ACTIONS(1944), }, [684] = { [sym_comment] = STATE(684), - [anon_sym_export] = ACTIONS(2133), - [anon_sym_alias] = ACTIONS(2133), - [anon_sym_let] = ACTIONS(2133), - [anon_sym_let_DASHenv] = ACTIONS(2133), - [anon_sym_mut] = ACTIONS(2133), - [anon_sym_const] = ACTIONS(2133), - [aux_sym_cmd_identifier_token1] = ACTIONS(2133), - [aux_sym_cmd_identifier_token2] = ACTIONS(2133), - [aux_sym_cmd_identifier_token3] = ACTIONS(2133), - [aux_sym_cmd_identifier_token4] = ACTIONS(2133), - [aux_sym_cmd_identifier_token5] = ACTIONS(2133), - [aux_sym_cmd_identifier_token6] = ACTIONS(2133), - [aux_sym_cmd_identifier_token7] = ACTIONS(2133), - [aux_sym_cmd_identifier_token8] = ACTIONS(2133), - [aux_sym_cmd_identifier_token9] = ACTIONS(2133), - [aux_sym_cmd_identifier_token10] = ACTIONS(2133), - [aux_sym_cmd_identifier_token11] = ACTIONS(2133), - [aux_sym_cmd_identifier_token12] = ACTIONS(2133), - [aux_sym_cmd_identifier_token13] = ACTIONS(2133), - [aux_sym_cmd_identifier_token14] = ACTIONS(2133), - [aux_sym_cmd_identifier_token15] = ACTIONS(2133), - [aux_sym_cmd_identifier_token16] = ACTIONS(2133), - [aux_sym_cmd_identifier_token17] = ACTIONS(2133), - [aux_sym_cmd_identifier_token18] = ACTIONS(2133), - [aux_sym_cmd_identifier_token19] = ACTIONS(2133), - [aux_sym_cmd_identifier_token20] = ACTIONS(2133), - [aux_sym_cmd_identifier_token21] = ACTIONS(2133), - [aux_sym_cmd_identifier_token22] = ACTIONS(2133), - [aux_sym_cmd_identifier_token23] = ACTIONS(2133), - [aux_sym_cmd_identifier_token24] = ACTIONS(2133), - [aux_sym_cmd_identifier_token25] = ACTIONS(2133), - [aux_sym_cmd_identifier_token26] = ACTIONS(2133), - [aux_sym_cmd_identifier_token27] = ACTIONS(2133), - [aux_sym_cmd_identifier_token28] = ACTIONS(2133), - [aux_sym_cmd_identifier_token29] = ACTIONS(2133), - [aux_sym_cmd_identifier_token30] = ACTIONS(2133), - [aux_sym_cmd_identifier_token31] = ACTIONS(2133), - [aux_sym_cmd_identifier_token32] = ACTIONS(2133), - [aux_sym_cmd_identifier_token33] = ACTIONS(2133), - [aux_sym_cmd_identifier_token34] = ACTIONS(2133), - [aux_sym_cmd_identifier_token35] = ACTIONS(2133), - [aux_sym_cmd_identifier_token36] = ACTIONS(2133), - [aux_sym_cmd_identifier_token37] = ACTIONS(2133), - [aux_sym_cmd_identifier_token38] = ACTIONS(2133), - [aux_sym_cmd_identifier_token39] = ACTIONS(2133), - [aux_sym_cmd_identifier_token40] = ACTIONS(2133), - [anon_sym_def] = ACTIONS(2133), - [anon_sym_export_DASHenv] = ACTIONS(2133), - [anon_sym_extern] = ACTIONS(2133), - [anon_sym_module] = ACTIONS(2133), - [anon_sym_use] = ACTIONS(2133), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_DOLLAR] = ACTIONS(2133), - [anon_sym_error] = ACTIONS(2133), - [anon_sym_DASH2] = ACTIONS(2133), - [anon_sym_break] = ACTIONS(2133), - [anon_sym_continue] = ACTIONS(2133), - [anon_sym_for] = ACTIONS(2133), - [anon_sym_in2] = ACTIONS(2133), - [anon_sym_loop] = ACTIONS(2133), - [anon_sym_make] = ACTIONS(2133), - [anon_sym_while] = ACTIONS(2133), - [anon_sym_do] = ACTIONS(2133), - [anon_sym_if] = ACTIONS(2133), - [anon_sym_else] = ACTIONS(2133), - [anon_sym_match] = ACTIONS(2133), - [anon_sym_RBRACE] = ACTIONS(2133), - [anon_sym_try] = ACTIONS(2133), - [anon_sym_catch] = ACTIONS(2133), - [anon_sym_return] = ACTIONS(2133), - [anon_sym_source] = ACTIONS(2133), - [anon_sym_source_DASHenv] = ACTIONS(2133), - [anon_sym_register] = ACTIONS(2133), - [anon_sym_hide] = ACTIONS(2133), - [anon_sym_hide_DASHenv] = ACTIONS(2133), - [anon_sym_overlay] = ACTIONS(2133), - [anon_sym_as] = ACTIONS(2133), - [anon_sym_PLUS2] = ACTIONS(2133), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2133), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2133), - [aux_sym__val_number_decimal_token1] = ACTIONS(2133), - [aux_sym__val_number_decimal_token2] = ACTIONS(2133), - [aux_sym__val_number_decimal_token3] = ACTIONS(2133), - [aux_sym__val_number_decimal_token4] = ACTIONS(2133), - [aux_sym__val_number_token1] = ACTIONS(2133), - [aux_sym__val_number_token2] = ACTIONS(2133), - [aux_sym__val_number_token3] = ACTIONS(2133), - [aux_sym__val_number_token4] = ACTIONS(2133), - [aux_sym__val_number_token5] = ACTIONS(2133), - [aux_sym__val_number_token6] = ACTIONS(2133), - [anon_sym_DQUOTE] = ACTIONS(2133), - [sym__str_single_quotes] = ACTIONS(2133), - [sym__str_back_ticks] = ACTIONS(2133), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2133), - [sym__entry_separator] = ACTIONS(2139), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2139), - }, - [685] = { - [sym_comment] = STATE(685), - [anon_sym_export] = ACTIONS(2500), - [anon_sym_alias] = ACTIONS(2500), - [anon_sym_let] = ACTIONS(2500), - [anon_sym_let_DASHenv] = ACTIONS(2500), - [anon_sym_mut] = ACTIONS(2500), - [anon_sym_const] = ACTIONS(2500), - [aux_sym_cmd_identifier_token1] = ACTIONS(2500), - [aux_sym_cmd_identifier_token2] = ACTIONS(2500), - [aux_sym_cmd_identifier_token3] = ACTIONS(2500), - [aux_sym_cmd_identifier_token4] = ACTIONS(2500), - [aux_sym_cmd_identifier_token5] = ACTIONS(2500), - [aux_sym_cmd_identifier_token6] = ACTIONS(2500), - [aux_sym_cmd_identifier_token7] = ACTIONS(2500), - [aux_sym_cmd_identifier_token8] = ACTIONS(2500), - [aux_sym_cmd_identifier_token9] = ACTIONS(2500), - [aux_sym_cmd_identifier_token10] = ACTIONS(2500), - [aux_sym_cmd_identifier_token11] = ACTIONS(2500), - [aux_sym_cmd_identifier_token12] = ACTIONS(2500), - [aux_sym_cmd_identifier_token13] = ACTIONS(2500), - [aux_sym_cmd_identifier_token14] = ACTIONS(2500), - [aux_sym_cmd_identifier_token15] = ACTIONS(2500), - [aux_sym_cmd_identifier_token16] = ACTIONS(2500), - [aux_sym_cmd_identifier_token17] = ACTIONS(2500), - [aux_sym_cmd_identifier_token18] = ACTIONS(2500), - [aux_sym_cmd_identifier_token19] = ACTIONS(2500), - [aux_sym_cmd_identifier_token20] = ACTIONS(2500), - [aux_sym_cmd_identifier_token21] = ACTIONS(2500), - [aux_sym_cmd_identifier_token22] = ACTIONS(2500), - [aux_sym_cmd_identifier_token23] = ACTIONS(2500), - [aux_sym_cmd_identifier_token24] = ACTIONS(2500), - [aux_sym_cmd_identifier_token25] = ACTIONS(2500), - [aux_sym_cmd_identifier_token26] = ACTIONS(2500), - [aux_sym_cmd_identifier_token27] = ACTIONS(2500), - [aux_sym_cmd_identifier_token28] = ACTIONS(2500), - [aux_sym_cmd_identifier_token29] = ACTIONS(2500), - [aux_sym_cmd_identifier_token30] = ACTIONS(2500), - [aux_sym_cmd_identifier_token31] = ACTIONS(2500), - [aux_sym_cmd_identifier_token32] = ACTIONS(2500), - [aux_sym_cmd_identifier_token33] = ACTIONS(2500), - [aux_sym_cmd_identifier_token34] = ACTIONS(2500), - [aux_sym_cmd_identifier_token35] = ACTIONS(2500), - [aux_sym_cmd_identifier_token36] = ACTIONS(2500), - [aux_sym_cmd_identifier_token37] = ACTIONS(2500), - [aux_sym_cmd_identifier_token38] = ACTIONS(2500), - [aux_sym_cmd_identifier_token39] = ACTIONS(2500), - [aux_sym_cmd_identifier_token40] = ACTIONS(2500), - [anon_sym_def] = ACTIONS(2500), - [anon_sym_export_DASHenv] = ACTIONS(2500), - [anon_sym_extern] = ACTIONS(2500), - [anon_sym_module] = ACTIONS(2500), - [anon_sym_use] = ACTIONS(2500), - [anon_sym_LPAREN] = ACTIONS(2500), - [anon_sym_DOLLAR] = ACTIONS(2500), - [anon_sym_error] = ACTIONS(2500), - [anon_sym_DASH2] = ACTIONS(2500), - [anon_sym_break] = ACTIONS(2500), - [anon_sym_continue] = ACTIONS(2500), - [anon_sym_for] = ACTIONS(2500), - [anon_sym_in2] = ACTIONS(2500), - [anon_sym_loop] = ACTIONS(2500), - [anon_sym_make] = ACTIONS(2500), - [anon_sym_while] = ACTIONS(2500), - [anon_sym_do] = ACTIONS(2500), - [anon_sym_if] = ACTIONS(2500), - [anon_sym_else] = ACTIONS(2500), - [anon_sym_match] = ACTIONS(2500), - [anon_sym_RBRACE] = ACTIONS(2500), - [anon_sym_try] = ACTIONS(2500), - [anon_sym_catch] = ACTIONS(2500), - [anon_sym_return] = ACTIONS(2500), - [anon_sym_source] = ACTIONS(2500), - [anon_sym_source_DASHenv] = ACTIONS(2500), - [anon_sym_register] = ACTIONS(2500), - [anon_sym_hide] = ACTIONS(2500), - [anon_sym_hide_DASHenv] = ACTIONS(2500), - [anon_sym_overlay] = ACTIONS(2500), - [anon_sym_as] = ACTIONS(2500), - [anon_sym_PLUS2] = ACTIONS(2500), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2500), - [aux_sym__val_number_decimal_token1] = ACTIONS(2500), - [aux_sym__val_number_decimal_token2] = ACTIONS(2500), - [aux_sym__val_number_decimal_token3] = ACTIONS(2500), - [aux_sym__val_number_decimal_token4] = ACTIONS(2500), - [aux_sym__val_number_token1] = ACTIONS(2500), - [aux_sym__val_number_token2] = ACTIONS(2500), - [aux_sym__val_number_token3] = ACTIONS(2500), - [aux_sym__val_number_token4] = ACTIONS(2500), - [aux_sym__val_number_token5] = ACTIONS(2500), - [aux_sym__val_number_token6] = ACTIONS(2500), - [anon_sym_DQUOTE] = ACTIONS(2500), - [sym__str_single_quotes] = ACTIONS(2500), - [sym__str_back_ticks] = ACTIONS(2500), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2500), - [sym__entry_separator] = ACTIONS(2502), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2502), - }, - [686] = { - [sym_comment] = STATE(686), - [anon_sym_export] = ACTIONS(1907), - [anon_sym_alias] = ACTIONS(1907), - [anon_sym_let] = ACTIONS(1907), - [anon_sym_let_DASHenv] = ACTIONS(1907), - [anon_sym_mut] = ACTIONS(1907), - [anon_sym_const] = ACTIONS(1907), - [aux_sym_cmd_identifier_token1] = ACTIONS(1907), - [aux_sym_cmd_identifier_token2] = ACTIONS(1907), - [aux_sym_cmd_identifier_token3] = ACTIONS(1907), - [aux_sym_cmd_identifier_token4] = ACTIONS(1907), - [aux_sym_cmd_identifier_token5] = ACTIONS(1907), - [aux_sym_cmd_identifier_token6] = ACTIONS(1907), - [aux_sym_cmd_identifier_token7] = ACTIONS(1907), - [aux_sym_cmd_identifier_token8] = ACTIONS(1907), - [aux_sym_cmd_identifier_token9] = ACTIONS(1907), - [aux_sym_cmd_identifier_token10] = ACTIONS(1907), - [aux_sym_cmd_identifier_token11] = ACTIONS(1907), - [aux_sym_cmd_identifier_token12] = ACTIONS(1907), - [aux_sym_cmd_identifier_token13] = ACTIONS(1907), - [aux_sym_cmd_identifier_token14] = ACTIONS(1907), - [aux_sym_cmd_identifier_token15] = ACTIONS(1907), - [aux_sym_cmd_identifier_token16] = ACTIONS(1907), - [aux_sym_cmd_identifier_token17] = ACTIONS(1907), - [aux_sym_cmd_identifier_token18] = ACTIONS(1907), - [aux_sym_cmd_identifier_token19] = ACTIONS(1907), - [aux_sym_cmd_identifier_token20] = ACTIONS(1907), - [aux_sym_cmd_identifier_token21] = ACTIONS(1907), - [aux_sym_cmd_identifier_token22] = ACTIONS(1907), - [aux_sym_cmd_identifier_token23] = ACTIONS(1907), - [aux_sym_cmd_identifier_token24] = ACTIONS(1907), - [aux_sym_cmd_identifier_token25] = ACTIONS(1907), - [aux_sym_cmd_identifier_token26] = ACTIONS(1907), - [aux_sym_cmd_identifier_token27] = ACTIONS(1907), - [aux_sym_cmd_identifier_token28] = ACTIONS(1907), - [aux_sym_cmd_identifier_token29] = ACTIONS(1907), - [aux_sym_cmd_identifier_token30] = ACTIONS(1907), - [aux_sym_cmd_identifier_token31] = ACTIONS(1907), - [aux_sym_cmd_identifier_token32] = ACTIONS(1907), - [aux_sym_cmd_identifier_token33] = ACTIONS(1907), - [aux_sym_cmd_identifier_token34] = ACTIONS(1907), - [aux_sym_cmd_identifier_token35] = ACTIONS(1907), - [aux_sym_cmd_identifier_token36] = ACTIONS(1907), - [aux_sym_cmd_identifier_token37] = ACTIONS(1907), - [aux_sym_cmd_identifier_token38] = ACTIONS(1907), - [aux_sym_cmd_identifier_token39] = ACTIONS(1907), - [aux_sym_cmd_identifier_token40] = ACTIONS(1907), - [anon_sym_def] = ACTIONS(1907), - [anon_sym_export_DASHenv] = ACTIONS(1907), - [anon_sym_extern] = ACTIONS(1907), - [anon_sym_module] = ACTIONS(1907), - [anon_sym_use] = ACTIONS(1907), - [anon_sym_LPAREN] = ACTIONS(1907), - [anon_sym_DOLLAR] = ACTIONS(1907), - [anon_sym_error] = ACTIONS(1907), - [anon_sym_DASH2] = ACTIONS(1907), - [anon_sym_break] = ACTIONS(1907), - [anon_sym_continue] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(1907), - [anon_sym_in2] = ACTIONS(1907), - [anon_sym_loop] = ACTIONS(1907), - [anon_sym_make] = ACTIONS(1907), - [anon_sym_while] = ACTIONS(1907), - [anon_sym_do] = ACTIONS(1907), - [anon_sym_if] = ACTIONS(1907), - [anon_sym_else] = ACTIONS(1907), - [anon_sym_match] = ACTIONS(1907), - [anon_sym_RBRACE] = ACTIONS(1907), - [anon_sym_try] = ACTIONS(1907), - [anon_sym_catch] = ACTIONS(1907), - [anon_sym_return] = ACTIONS(1907), - [anon_sym_source] = ACTIONS(1907), - [anon_sym_source_DASHenv] = ACTIONS(1907), - [anon_sym_register] = ACTIONS(1907), - [anon_sym_hide] = ACTIONS(1907), - [anon_sym_hide_DASHenv] = ACTIONS(1907), - [anon_sym_overlay] = ACTIONS(1907), - [anon_sym_as] = ACTIONS(1907), - [anon_sym_PLUS2] = ACTIONS(1907), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1907), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1907), - [aux_sym__val_number_decimal_token1] = ACTIONS(1907), - [aux_sym__val_number_decimal_token2] = ACTIONS(1907), - [aux_sym__val_number_decimal_token3] = ACTIONS(1907), - [aux_sym__val_number_decimal_token4] = ACTIONS(1907), - [aux_sym__val_number_token1] = ACTIONS(1907), - [aux_sym__val_number_token2] = ACTIONS(1907), - [aux_sym__val_number_token3] = ACTIONS(1907), - [aux_sym__val_number_token4] = ACTIONS(1907), - [aux_sym__val_number_token5] = ACTIONS(1907), - [aux_sym__val_number_token6] = ACTIONS(1907), - [anon_sym_DQUOTE] = ACTIONS(1907), - [sym__str_single_quotes] = ACTIONS(1907), - [sym__str_back_ticks] = ACTIONS(1907), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1907), - [sym__entry_separator] = ACTIONS(1911), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1911), - }, - [687] = { - [sym_comment] = STATE(687), - [anon_sym_export] = ACTIONS(998), - [anon_sym_alias] = ACTIONS(998), - [anon_sym_let] = ACTIONS(998), - [anon_sym_let_DASHenv] = ACTIONS(998), - [anon_sym_mut] = ACTIONS(998), - [anon_sym_const] = ACTIONS(998), - [aux_sym_cmd_identifier_token1] = ACTIONS(998), - [aux_sym_cmd_identifier_token2] = ACTIONS(998), - [aux_sym_cmd_identifier_token3] = ACTIONS(998), - [aux_sym_cmd_identifier_token4] = ACTIONS(998), - [aux_sym_cmd_identifier_token5] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(998), - [aux_sym_cmd_identifier_token7] = ACTIONS(998), - [aux_sym_cmd_identifier_token8] = ACTIONS(998), - [aux_sym_cmd_identifier_token9] = ACTIONS(998), - [aux_sym_cmd_identifier_token10] = ACTIONS(998), - [aux_sym_cmd_identifier_token11] = ACTIONS(998), - [aux_sym_cmd_identifier_token12] = ACTIONS(998), - [aux_sym_cmd_identifier_token13] = ACTIONS(998), - [aux_sym_cmd_identifier_token14] = ACTIONS(998), - [aux_sym_cmd_identifier_token15] = ACTIONS(998), - [aux_sym_cmd_identifier_token16] = ACTIONS(998), - [aux_sym_cmd_identifier_token17] = ACTIONS(998), - [aux_sym_cmd_identifier_token18] = ACTIONS(998), - [aux_sym_cmd_identifier_token19] = ACTIONS(998), - [aux_sym_cmd_identifier_token20] = ACTIONS(998), - [aux_sym_cmd_identifier_token21] = ACTIONS(998), - [aux_sym_cmd_identifier_token22] = ACTIONS(998), - [aux_sym_cmd_identifier_token23] = ACTIONS(998), - [aux_sym_cmd_identifier_token24] = ACTIONS(998), - [aux_sym_cmd_identifier_token25] = ACTIONS(998), - [aux_sym_cmd_identifier_token26] = ACTIONS(998), - [aux_sym_cmd_identifier_token27] = ACTIONS(998), - [aux_sym_cmd_identifier_token28] = ACTIONS(998), - [aux_sym_cmd_identifier_token29] = ACTIONS(998), - [aux_sym_cmd_identifier_token30] = ACTIONS(998), - [aux_sym_cmd_identifier_token31] = ACTIONS(998), - [aux_sym_cmd_identifier_token32] = ACTIONS(998), - [aux_sym_cmd_identifier_token33] = ACTIONS(998), - [aux_sym_cmd_identifier_token34] = ACTIONS(998), - [aux_sym_cmd_identifier_token35] = ACTIONS(998), - [aux_sym_cmd_identifier_token36] = ACTIONS(998), - [aux_sym_cmd_identifier_token37] = ACTIONS(998), - [aux_sym_cmd_identifier_token38] = ACTIONS(998), - [aux_sym_cmd_identifier_token39] = ACTIONS(998), - [aux_sym_cmd_identifier_token40] = ACTIONS(998), - [anon_sym_def] = ACTIONS(998), - [anon_sym_export_DASHenv] = ACTIONS(998), - [anon_sym_extern] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_use] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_error] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(998), - [anon_sym_break] = ACTIONS(998), - [anon_sym_continue] = ACTIONS(998), - [anon_sym_for] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_loop] = ACTIONS(998), - [anon_sym_make] = ACTIONS(998), - [anon_sym_while] = ACTIONS(998), - [anon_sym_do] = ACTIONS(998), - [anon_sym_if] = ACTIONS(998), - [anon_sym_else] = ACTIONS(998), - [anon_sym_match] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_try] = ACTIONS(998), - [anon_sym_catch] = ACTIONS(998), - [anon_sym_return] = ACTIONS(998), - [anon_sym_source] = ACTIONS(998), - [anon_sym_source_DASHenv] = ACTIONS(998), - [anon_sym_register] = ACTIONS(998), - [anon_sym_hide] = ACTIONS(998), - [anon_sym_hide_DASHenv] = ACTIONS(998), - [anon_sym_overlay] = ACTIONS(998), - [anon_sym_as] = ACTIONS(998), - [anon_sym_PLUS2] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(998), - [aux_sym__val_number_decimal_token1] = ACTIONS(998), - [aux_sym__val_number_decimal_token2] = ACTIONS(998), - [aux_sym__val_number_decimal_token3] = ACTIONS(998), - [aux_sym__val_number_decimal_token4] = ACTIONS(998), - [aux_sym__val_number_token1] = ACTIONS(998), - [aux_sym__val_number_token2] = ACTIONS(998), - [aux_sym__val_number_token3] = ACTIONS(998), - [aux_sym__val_number_token4] = ACTIONS(998), - [aux_sym__val_number_token5] = ACTIONS(998), - [aux_sym__val_number_token6] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym__str_single_quotes] = ACTIONS(998), - [sym__str_back_ticks] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(998), - [sym__entry_separator] = ACTIONS(1000), + [anon_sym_export] = ACTIONS(2486), + [anon_sym_alias] = ACTIONS(2486), + [anon_sym_let] = ACTIONS(2486), + [anon_sym_let_DASHenv] = ACTIONS(2486), + [anon_sym_mut] = ACTIONS(2486), + [anon_sym_const] = ACTIONS(2486), + [aux_sym_cmd_identifier_token1] = ACTIONS(2486), + [aux_sym_cmd_identifier_token2] = ACTIONS(2486), + [aux_sym_cmd_identifier_token3] = ACTIONS(2486), + [aux_sym_cmd_identifier_token4] = ACTIONS(2486), + [aux_sym_cmd_identifier_token5] = ACTIONS(2486), + [aux_sym_cmd_identifier_token6] = ACTIONS(2486), + [aux_sym_cmd_identifier_token7] = ACTIONS(2486), + [aux_sym_cmd_identifier_token8] = ACTIONS(2486), + [aux_sym_cmd_identifier_token9] = ACTIONS(2486), + [aux_sym_cmd_identifier_token10] = ACTIONS(2486), + [aux_sym_cmd_identifier_token11] = ACTIONS(2486), + [aux_sym_cmd_identifier_token12] = ACTIONS(2486), + [aux_sym_cmd_identifier_token13] = ACTIONS(2486), + [aux_sym_cmd_identifier_token14] = ACTIONS(2486), + [aux_sym_cmd_identifier_token15] = ACTIONS(2486), + [aux_sym_cmd_identifier_token16] = ACTIONS(2486), + [aux_sym_cmd_identifier_token17] = ACTIONS(2486), + [aux_sym_cmd_identifier_token18] = ACTIONS(2486), + [aux_sym_cmd_identifier_token19] = ACTIONS(2486), + [aux_sym_cmd_identifier_token20] = ACTIONS(2486), + [aux_sym_cmd_identifier_token21] = ACTIONS(2486), + [aux_sym_cmd_identifier_token22] = ACTIONS(2486), + [aux_sym_cmd_identifier_token23] = ACTIONS(2486), + [aux_sym_cmd_identifier_token24] = ACTIONS(2486), + [aux_sym_cmd_identifier_token25] = ACTIONS(2486), + [aux_sym_cmd_identifier_token26] = ACTIONS(2486), + [aux_sym_cmd_identifier_token27] = ACTIONS(2486), + [aux_sym_cmd_identifier_token28] = ACTIONS(2486), + [aux_sym_cmd_identifier_token29] = ACTIONS(2486), + [aux_sym_cmd_identifier_token30] = ACTIONS(2486), + [aux_sym_cmd_identifier_token31] = ACTIONS(2486), + [aux_sym_cmd_identifier_token32] = ACTIONS(2486), + [aux_sym_cmd_identifier_token33] = ACTIONS(2486), + [aux_sym_cmd_identifier_token34] = ACTIONS(2486), + [aux_sym_cmd_identifier_token35] = ACTIONS(2486), + [aux_sym_cmd_identifier_token36] = ACTIONS(2486), + [aux_sym_cmd_identifier_token37] = ACTIONS(2486), + [aux_sym_cmd_identifier_token38] = ACTIONS(2486), + [aux_sym_cmd_identifier_token39] = ACTIONS(2486), + [aux_sym_cmd_identifier_token40] = ACTIONS(2486), + [anon_sym_def] = ACTIONS(2486), + [anon_sym_export_DASHenv] = ACTIONS(2486), + [anon_sym_extern] = ACTIONS(2486), + [anon_sym_module] = ACTIONS(2486), + [anon_sym_use] = ACTIONS(2486), + [anon_sym_LPAREN] = ACTIONS(2486), + [anon_sym_DOLLAR] = ACTIONS(2486), + [anon_sym_error] = ACTIONS(2486), + [anon_sym_DASH2] = ACTIONS(2486), + [anon_sym_break] = ACTIONS(2486), + [anon_sym_continue] = ACTIONS(2486), + [anon_sym_for] = ACTIONS(2486), + [anon_sym_in2] = ACTIONS(2486), + [anon_sym_loop] = ACTIONS(2486), + [anon_sym_make] = ACTIONS(2486), + [anon_sym_while] = ACTIONS(2486), + [anon_sym_do] = ACTIONS(2486), + [anon_sym_if] = ACTIONS(2486), + [anon_sym_else] = ACTIONS(2486), + [anon_sym_match] = ACTIONS(2486), + [anon_sym_RBRACE] = ACTIONS(2486), + [anon_sym_try] = ACTIONS(2486), + [anon_sym_catch] = ACTIONS(2486), + [anon_sym_return] = ACTIONS(2486), + [anon_sym_source] = ACTIONS(2486), + [anon_sym_source_DASHenv] = ACTIONS(2486), + [anon_sym_register] = ACTIONS(2486), + [anon_sym_hide] = ACTIONS(2486), + [anon_sym_hide_DASHenv] = ACTIONS(2486), + [anon_sym_overlay] = ACTIONS(2486), + [anon_sym_as] = ACTIONS(2486), + [anon_sym_PLUS2] = ACTIONS(2486), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2486), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2486), + [aux_sym__val_number_decimal_token1] = ACTIONS(2486), + [aux_sym__val_number_decimal_token2] = ACTIONS(2486), + [aux_sym__val_number_decimal_token3] = ACTIONS(2486), + [aux_sym__val_number_decimal_token4] = ACTIONS(2486), + [aux_sym__val_number_token1] = ACTIONS(2486), + [aux_sym__val_number_token2] = ACTIONS(2486), + [aux_sym__val_number_token3] = ACTIONS(2486), + [aux_sym__val_number_token4] = ACTIONS(2486), + [aux_sym__val_number_token5] = ACTIONS(2486), + [aux_sym__val_number_token6] = ACTIONS(2486), + [anon_sym_DQUOTE] = ACTIONS(2486), + [sym__str_single_quotes] = ACTIONS(2486), + [sym__str_back_ticks] = ACTIONS(2486), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2486), + [sym__entry_separator] = ACTIONS(2488), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1000), + [sym_raw_string_begin] = ACTIONS(2488), + }, + [685] = { + [sym_comment] = STATE(685), + [anon_sym_export] = ACTIONS(2298), + [anon_sym_alias] = ACTIONS(2298), + [anon_sym_let] = ACTIONS(2298), + [anon_sym_let_DASHenv] = ACTIONS(2298), + [anon_sym_mut] = ACTIONS(2298), + [anon_sym_const] = ACTIONS(2298), + [aux_sym_cmd_identifier_token1] = ACTIONS(2298), + [aux_sym_cmd_identifier_token2] = ACTIONS(2300), + [aux_sym_cmd_identifier_token3] = ACTIONS(2300), + [aux_sym_cmd_identifier_token4] = ACTIONS(2300), + [aux_sym_cmd_identifier_token5] = ACTIONS(2300), + [aux_sym_cmd_identifier_token6] = ACTIONS(2300), + [aux_sym_cmd_identifier_token7] = ACTIONS(2300), + [aux_sym_cmd_identifier_token8] = ACTIONS(2298), + [aux_sym_cmd_identifier_token9] = ACTIONS(2298), + [aux_sym_cmd_identifier_token10] = ACTIONS(2300), + [aux_sym_cmd_identifier_token11] = ACTIONS(2300), + [aux_sym_cmd_identifier_token12] = ACTIONS(2298), + [aux_sym_cmd_identifier_token13] = ACTIONS(2298), + [aux_sym_cmd_identifier_token14] = ACTIONS(2298), + [aux_sym_cmd_identifier_token15] = ACTIONS(2298), + [aux_sym_cmd_identifier_token16] = ACTIONS(2300), + [aux_sym_cmd_identifier_token17] = ACTIONS(2300), + [aux_sym_cmd_identifier_token18] = ACTIONS(2300), + [aux_sym_cmd_identifier_token19] = ACTIONS(2300), + [aux_sym_cmd_identifier_token20] = ACTIONS(2300), + [aux_sym_cmd_identifier_token21] = ACTIONS(2300), + [aux_sym_cmd_identifier_token22] = ACTIONS(2300), + [aux_sym_cmd_identifier_token23] = ACTIONS(2300), + [aux_sym_cmd_identifier_token24] = ACTIONS(2300), + [aux_sym_cmd_identifier_token25] = ACTIONS(2300), + [aux_sym_cmd_identifier_token26] = ACTIONS(2300), + [aux_sym_cmd_identifier_token27] = ACTIONS(2300), + [aux_sym_cmd_identifier_token28] = ACTIONS(2300), + [aux_sym_cmd_identifier_token29] = ACTIONS(2300), + [aux_sym_cmd_identifier_token30] = ACTIONS(2300), + [aux_sym_cmd_identifier_token31] = ACTIONS(2300), + [aux_sym_cmd_identifier_token32] = ACTIONS(2300), + [aux_sym_cmd_identifier_token33] = ACTIONS(2300), + [aux_sym_cmd_identifier_token34] = ACTIONS(2298), + [aux_sym_cmd_identifier_token35] = ACTIONS(2300), + [aux_sym_cmd_identifier_token36] = ACTIONS(2300), + [aux_sym_cmd_identifier_token37] = ACTIONS(2300), + [aux_sym_cmd_identifier_token38] = ACTIONS(2298), + [aux_sym_cmd_identifier_token39] = ACTIONS(2300), + [aux_sym_cmd_identifier_token40] = ACTIONS(2300), + [anon_sym_def] = ACTIONS(2298), + [anon_sym_export_DASHenv] = ACTIONS(2298), + [anon_sym_extern] = ACTIONS(2298), + [anon_sym_module] = ACTIONS(2298), + [anon_sym_use] = ACTIONS(2298), + [anon_sym_LPAREN] = ACTIONS(2298), + [anon_sym_DOLLAR] = ACTIONS(2300), + [anon_sym_error] = ACTIONS(2298), + [anon_sym_DASH2] = ACTIONS(2298), + [anon_sym_break] = ACTIONS(2298), + [anon_sym_continue] = ACTIONS(2298), + [anon_sym_for] = ACTIONS(2298), + [anon_sym_in2] = ACTIONS(2298), + [anon_sym_loop] = ACTIONS(2298), + [anon_sym_make] = ACTIONS(2298), + [anon_sym_while] = ACTIONS(2298), + [anon_sym_do] = ACTIONS(2298), + [anon_sym_if] = ACTIONS(2298), + [anon_sym_else] = ACTIONS(2298), + [anon_sym_match] = ACTIONS(2298), + [anon_sym_RBRACE] = ACTIONS(2300), + [anon_sym_try] = ACTIONS(2298), + [anon_sym_catch] = ACTIONS(2298), + [anon_sym_return] = ACTIONS(2298), + [anon_sym_source] = ACTIONS(2298), + [anon_sym_source_DASHenv] = ACTIONS(2298), + [anon_sym_register] = ACTIONS(2298), + [anon_sym_hide] = ACTIONS(2298), + [anon_sym_hide_DASHenv] = ACTIONS(2298), + [anon_sym_overlay] = ACTIONS(2298), + [anon_sym_as] = ACTIONS(2298), + [anon_sym_LPAREN2] = ACTIONS(2300), + [anon_sym_PLUS2] = ACTIONS(2298), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2300), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2300), + [aux_sym__val_number_decimal_token1] = ACTIONS(2298), + [aux_sym__val_number_decimal_token2] = ACTIONS(2300), + [aux_sym__val_number_decimal_token3] = ACTIONS(2300), + [aux_sym__val_number_decimal_token4] = ACTIONS(2300), + [aux_sym__val_number_token1] = ACTIONS(2300), + [aux_sym__val_number_token2] = ACTIONS(2300), + [aux_sym__val_number_token3] = ACTIONS(2300), + [aux_sym__val_number_token4] = ACTIONS(2298), + [aux_sym__val_number_token5] = ACTIONS(2298), + [aux_sym__val_number_token6] = ACTIONS(2298), + [anon_sym_DQUOTE] = ACTIONS(2300), + [sym__str_single_quotes] = ACTIONS(2300), + [sym__str_back_ticks] = ACTIONS(2300), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2300), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2300), + }, + [686] = { + [sym_comment] = STATE(686), + [anon_sym_export] = ACTIONS(2490), + [anon_sym_alias] = ACTIONS(2490), + [anon_sym_let] = ACTIONS(2490), + [anon_sym_let_DASHenv] = ACTIONS(2490), + [anon_sym_mut] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(2490), + [aux_sym_cmd_identifier_token1] = ACTIONS(2490), + [aux_sym_cmd_identifier_token2] = ACTIONS(2490), + [aux_sym_cmd_identifier_token3] = ACTIONS(2490), + [aux_sym_cmd_identifier_token4] = ACTIONS(2490), + [aux_sym_cmd_identifier_token5] = ACTIONS(2490), + [aux_sym_cmd_identifier_token6] = ACTIONS(2490), + [aux_sym_cmd_identifier_token7] = ACTIONS(2490), + [aux_sym_cmd_identifier_token8] = ACTIONS(2490), + [aux_sym_cmd_identifier_token9] = ACTIONS(2490), + [aux_sym_cmd_identifier_token10] = ACTIONS(2490), + [aux_sym_cmd_identifier_token11] = ACTIONS(2490), + [aux_sym_cmd_identifier_token12] = ACTIONS(2490), + [aux_sym_cmd_identifier_token13] = ACTIONS(2490), + [aux_sym_cmd_identifier_token14] = ACTIONS(2490), + [aux_sym_cmd_identifier_token15] = ACTIONS(2490), + [aux_sym_cmd_identifier_token16] = ACTIONS(2490), + [aux_sym_cmd_identifier_token17] = ACTIONS(2490), + [aux_sym_cmd_identifier_token18] = ACTIONS(2490), + [aux_sym_cmd_identifier_token19] = ACTIONS(2490), + [aux_sym_cmd_identifier_token20] = ACTIONS(2490), + [aux_sym_cmd_identifier_token21] = ACTIONS(2490), + [aux_sym_cmd_identifier_token22] = ACTIONS(2490), + [aux_sym_cmd_identifier_token23] = ACTIONS(2490), + [aux_sym_cmd_identifier_token24] = ACTIONS(2490), + [aux_sym_cmd_identifier_token25] = ACTIONS(2490), + [aux_sym_cmd_identifier_token26] = ACTIONS(2490), + [aux_sym_cmd_identifier_token27] = ACTIONS(2490), + [aux_sym_cmd_identifier_token28] = ACTIONS(2490), + [aux_sym_cmd_identifier_token29] = ACTIONS(2490), + [aux_sym_cmd_identifier_token30] = ACTIONS(2490), + [aux_sym_cmd_identifier_token31] = ACTIONS(2490), + [aux_sym_cmd_identifier_token32] = ACTIONS(2490), + [aux_sym_cmd_identifier_token33] = ACTIONS(2490), + [aux_sym_cmd_identifier_token34] = ACTIONS(2490), + [aux_sym_cmd_identifier_token35] = ACTIONS(2490), + [aux_sym_cmd_identifier_token36] = ACTIONS(2490), + [aux_sym_cmd_identifier_token37] = ACTIONS(2490), + [aux_sym_cmd_identifier_token38] = ACTIONS(2490), + [aux_sym_cmd_identifier_token39] = ACTIONS(2490), + [aux_sym_cmd_identifier_token40] = ACTIONS(2490), + [anon_sym_def] = ACTIONS(2490), + [anon_sym_export_DASHenv] = ACTIONS(2490), + [anon_sym_extern] = ACTIONS(2490), + [anon_sym_module] = ACTIONS(2490), + [anon_sym_use] = ACTIONS(2490), + [anon_sym_LPAREN] = ACTIONS(2490), + [anon_sym_DOLLAR] = ACTIONS(2490), + [anon_sym_error] = ACTIONS(2490), + [anon_sym_DASH2] = ACTIONS(2490), + [anon_sym_break] = ACTIONS(2490), + [anon_sym_continue] = ACTIONS(2490), + [anon_sym_for] = ACTIONS(2490), + [anon_sym_in2] = ACTIONS(2490), + [anon_sym_loop] = ACTIONS(2490), + [anon_sym_make] = ACTIONS(2490), + [anon_sym_while] = ACTIONS(2490), + [anon_sym_do] = ACTIONS(2490), + [anon_sym_if] = ACTIONS(2490), + [anon_sym_else] = ACTIONS(2490), + [anon_sym_match] = ACTIONS(2490), + [anon_sym_RBRACE] = ACTIONS(2490), + [anon_sym_try] = ACTIONS(2490), + [anon_sym_catch] = ACTIONS(2490), + [anon_sym_return] = ACTIONS(2490), + [anon_sym_source] = ACTIONS(2490), + [anon_sym_source_DASHenv] = ACTIONS(2490), + [anon_sym_register] = ACTIONS(2490), + [anon_sym_hide] = ACTIONS(2490), + [anon_sym_hide_DASHenv] = ACTIONS(2490), + [anon_sym_overlay] = ACTIONS(2490), + [anon_sym_as] = ACTIONS(2490), + [anon_sym_PLUS2] = ACTIONS(2490), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2490), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2490), + [aux_sym__val_number_decimal_token1] = ACTIONS(2490), + [aux_sym__val_number_decimal_token2] = ACTIONS(2490), + [aux_sym__val_number_decimal_token3] = ACTIONS(2490), + [aux_sym__val_number_decimal_token4] = ACTIONS(2490), + [aux_sym__val_number_token1] = ACTIONS(2490), + [aux_sym__val_number_token2] = ACTIONS(2490), + [aux_sym__val_number_token3] = ACTIONS(2490), + [aux_sym__val_number_token4] = ACTIONS(2490), + [aux_sym__val_number_token5] = ACTIONS(2490), + [aux_sym__val_number_token6] = ACTIONS(2490), + [anon_sym_DQUOTE] = ACTIONS(2490), + [sym__str_single_quotes] = ACTIONS(2490), + [sym__str_back_ticks] = ACTIONS(2490), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2490), + [sym__entry_separator] = ACTIONS(2492), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2492), + }, + [687] = { + [sym_comment] = STATE(687), + [anon_sym_export] = ACTIONS(2018), + [anon_sym_alias] = ACTIONS(2018), + [anon_sym_let] = ACTIONS(2018), + [anon_sym_let_DASHenv] = ACTIONS(2018), + [anon_sym_mut] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(2018), + [aux_sym_cmd_identifier_token1] = ACTIONS(2018), + [aux_sym_cmd_identifier_token2] = ACTIONS(2018), + [aux_sym_cmd_identifier_token3] = ACTIONS(2018), + [aux_sym_cmd_identifier_token4] = ACTIONS(2018), + [aux_sym_cmd_identifier_token5] = ACTIONS(2018), + [aux_sym_cmd_identifier_token6] = ACTIONS(2018), + [aux_sym_cmd_identifier_token7] = ACTIONS(2018), + [aux_sym_cmd_identifier_token8] = ACTIONS(2018), + [aux_sym_cmd_identifier_token9] = ACTIONS(2018), + [aux_sym_cmd_identifier_token10] = ACTIONS(2018), + [aux_sym_cmd_identifier_token11] = ACTIONS(2018), + [aux_sym_cmd_identifier_token12] = ACTIONS(2018), + [aux_sym_cmd_identifier_token13] = ACTIONS(2018), + [aux_sym_cmd_identifier_token14] = ACTIONS(2018), + [aux_sym_cmd_identifier_token15] = ACTIONS(2018), + [aux_sym_cmd_identifier_token16] = ACTIONS(2018), + [aux_sym_cmd_identifier_token17] = ACTIONS(2018), + [aux_sym_cmd_identifier_token18] = ACTIONS(2018), + [aux_sym_cmd_identifier_token19] = ACTIONS(2018), + [aux_sym_cmd_identifier_token20] = ACTIONS(2018), + [aux_sym_cmd_identifier_token21] = ACTIONS(2018), + [aux_sym_cmd_identifier_token22] = ACTIONS(2018), + [aux_sym_cmd_identifier_token23] = ACTIONS(2018), + [aux_sym_cmd_identifier_token24] = ACTIONS(2018), + [aux_sym_cmd_identifier_token25] = ACTIONS(2018), + [aux_sym_cmd_identifier_token26] = ACTIONS(2018), + [aux_sym_cmd_identifier_token27] = ACTIONS(2018), + [aux_sym_cmd_identifier_token28] = ACTIONS(2018), + [aux_sym_cmd_identifier_token29] = ACTIONS(2018), + [aux_sym_cmd_identifier_token30] = ACTIONS(2018), + [aux_sym_cmd_identifier_token31] = ACTIONS(2018), + [aux_sym_cmd_identifier_token32] = ACTIONS(2018), + [aux_sym_cmd_identifier_token33] = ACTIONS(2018), + [aux_sym_cmd_identifier_token34] = ACTIONS(2018), + [aux_sym_cmd_identifier_token35] = ACTIONS(2018), + [aux_sym_cmd_identifier_token36] = ACTIONS(2018), + [aux_sym_cmd_identifier_token37] = ACTIONS(2018), + [aux_sym_cmd_identifier_token38] = ACTIONS(2018), + [aux_sym_cmd_identifier_token39] = ACTIONS(2018), + [aux_sym_cmd_identifier_token40] = ACTIONS(2018), + [anon_sym_def] = ACTIONS(2018), + [anon_sym_export_DASHenv] = ACTIONS(2018), + [anon_sym_extern] = ACTIONS(2018), + [anon_sym_module] = ACTIONS(2018), + [anon_sym_use] = ACTIONS(2018), + [anon_sym_LPAREN] = ACTIONS(2018), + [anon_sym_DOLLAR] = ACTIONS(2018), + [anon_sym_error] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2018), + [anon_sym_break] = ACTIONS(2018), + [anon_sym_continue] = ACTIONS(2018), + [anon_sym_for] = ACTIONS(2018), + [anon_sym_in2] = ACTIONS(2018), + [anon_sym_loop] = ACTIONS(2018), + [anon_sym_make] = ACTIONS(2018), + [anon_sym_while] = ACTIONS(2018), + [anon_sym_do] = ACTIONS(2018), + [anon_sym_if] = ACTIONS(2018), + [anon_sym_else] = ACTIONS(2018), + [anon_sym_match] = ACTIONS(2018), + [anon_sym_RBRACE] = ACTIONS(2018), + [anon_sym_try] = ACTIONS(2018), + [anon_sym_catch] = ACTIONS(2018), + [anon_sym_return] = ACTIONS(2018), + [anon_sym_source] = ACTIONS(2018), + [anon_sym_source_DASHenv] = ACTIONS(2018), + [anon_sym_register] = ACTIONS(2018), + [anon_sym_hide] = ACTIONS(2018), + [anon_sym_hide_DASHenv] = ACTIONS(2018), + [anon_sym_overlay] = ACTIONS(2018), + [anon_sym_as] = ACTIONS(2018), + [anon_sym_PLUS2] = ACTIONS(2018), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2018), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2018), + [aux_sym__val_number_decimal_token1] = ACTIONS(2018), + [aux_sym__val_number_decimal_token2] = ACTIONS(2018), + [aux_sym__val_number_decimal_token3] = ACTIONS(2018), + [aux_sym__val_number_decimal_token4] = ACTIONS(2018), + [aux_sym__val_number_token1] = ACTIONS(2018), + [aux_sym__val_number_token2] = ACTIONS(2018), + [aux_sym__val_number_token3] = ACTIONS(2018), + [aux_sym__val_number_token4] = ACTIONS(2018), + [aux_sym__val_number_token5] = ACTIONS(2018), + [aux_sym__val_number_token6] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2018), + [sym__str_single_quotes] = ACTIONS(2018), + [sym__str_back_ticks] = ACTIONS(2018), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2018), + [sym__entry_separator] = ACTIONS(2020), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2020), }, [688] = { [sym_comment] = STATE(688), - [anon_sym_export] = ACTIONS(2504), - [anon_sym_alias] = ACTIONS(2504), - [anon_sym_let] = ACTIONS(2504), - [anon_sym_let_DASHenv] = ACTIONS(2504), - [anon_sym_mut] = ACTIONS(2504), - [anon_sym_const] = ACTIONS(2504), - [aux_sym_cmd_identifier_token1] = ACTIONS(2504), - [aux_sym_cmd_identifier_token2] = ACTIONS(2504), - [aux_sym_cmd_identifier_token3] = ACTIONS(2504), - [aux_sym_cmd_identifier_token4] = ACTIONS(2504), - [aux_sym_cmd_identifier_token5] = ACTIONS(2504), - [aux_sym_cmd_identifier_token6] = ACTIONS(2504), - [aux_sym_cmd_identifier_token7] = ACTIONS(2504), - [aux_sym_cmd_identifier_token8] = ACTIONS(2504), - [aux_sym_cmd_identifier_token9] = ACTIONS(2504), - [aux_sym_cmd_identifier_token10] = ACTIONS(2504), - [aux_sym_cmd_identifier_token11] = ACTIONS(2504), - [aux_sym_cmd_identifier_token12] = ACTIONS(2504), - [aux_sym_cmd_identifier_token13] = ACTIONS(2504), - [aux_sym_cmd_identifier_token14] = ACTIONS(2504), - [aux_sym_cmd_identifier_token15] = ACTIONS(2504), - [aux_sym_cmd_identifier_token16] = ACTIONS(2504), - [aux_sym_cmd_identifier_token17] = ACTIONS(2504), - [aux_sym_cmd_identifier_token18] = ACTIONS(2504), - [aux_sym_cmd_identifier_token19] = ACTIONS(2504), - [aux_sym_cmd_identifier_token20] = ACTIONS(2504), - [aux_sym_cmd_identifier_token21] = ACTIONS(2504), - [aux_sym_cmd_identifier_token22] = ACTIONS(2504), - [aux_sym_cmd_identifier_token23] = ACTIONS(2504), - [aux_sym_cmd_identifier_token24] = ACTIONS(2504), - [aux_sym_cmd_identifier_token25] = ACTIONS(2504), - [aux_sym_cmd_identifier_token26] = ACTIONS(2504), - [aux_sym_cmd_identifier_token27] = ACTIONS(2504), - [aux_sym_cmd_identifier_token28] = ACTIONS(2504), - [aux_sym_cmd_identifier_token29] = ACTIONS(2504), - [aux_sym_cmd_identifier_token30] = ACTIONS(2504), - [aux_sym_cmd_identifier_token31] = ACTIONS(2504), - [aux_sym_cmd_identifier_token32] = ACTIONS(2504), - [aux_sym_cmd_identifier_token33] = ACTIONS(2504), - [aux_sym_cmd_identifier_token34] = ACTIONS(2504), - [aux_sym_cmd_identifier_token35] = ACTIONS(2504), - [aux_sym_cmd_identifier_token36] = ACTIONS(2504), - [aux_sym_cmd_identifier_token37] = ACTIONS(2504), - [aux_sym_cmd_identifier_token38] = ACTIONS(2504), - [aux_sym_cmd_identifier_token39] = ACTIONS(2504), - [aux_sym_cmd_identifier_token40] = ACTIONS(2504), - [anon_sym_def] = ACTIONS(2504), - [anon_sym_export_DASHenv] = ACTIONS(2504), - [anon_sym_extern] = ACTIONS(2504), - [anon_sym_module] = ACTIONS(2504), - [anon_sym_use] = ACTIONS(2504), - [anon_sym_LPAREN] = ACTIONS(2504), - [anon_sym_DOLLAR] = ACTIONS(2504), - [anon_sym_error] = ACTIONS(2504), - [anon_sym_DASH2] = ACTIONS(2504), - [anon_sym_break] = ACTIONS(2504), - [anon_sym_continue] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_in2] = ACTIONS(2504), - [anon_sym_loop] = ACTIONS(2504), - [anon_sym_make] = ACTIONS(2504), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_do] = ACTIONS(2504), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_else] = ACTIONS(2504), - [anon_sym_match] = ACTIONS(2504), - [anon_sym_RBRACE] = ACTIONS(2504), - [anon_sym_try] = ACTIONS(2504), - [anon_sym_catch] = ACTIONS(2504), - [anon_sym_return] = ACTIONS(2504), - [anon_sym_source] = ACTIONS(2504), - [anon_sym_source_DASHenv] = ACTIONS(2504), - [anon_sym_register] = ACTIONS(2504), - [anon_sym_hide] = ACTIONS(2504), - [anon_sym_hide_DASHenv] = ACTIONS(2504), - [anon_sym_overlay] = ACTIONS(2504), - [anon_sym_as] = ACTIONS(2504), - [anon_sym_PLUS2] = ACTIONS(2504), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2504), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2504), - [aux_sym__val_number_decimal_token1] = ACTIONS(2504), - [aux_sym__val_number_decimal_token2] = ACTIONS(2504), - [aux_sym__val_number_decimal_token3] = ACTIONS(2504), - [aux_sym__val_number_decimal_token4] = ACTIONS(2504), - [aux_sym__val_number_token1] = ACTIONS(2504), - [aux_sym__val_number_token2] = ACTIONS(2504), - [aux_sym__val_number_token3] = ACTIONS(2504), - [aux_sym__val_number_token4] = ACTIONS(2504), - [aux_sym__val_number_token5] = ACTIONS(2504), - [aux_sym__val_number_token6] = ACTIONS(2504), - [anon_sym_DQUOTE] = ACTIONS(2504), - [sym__str_single_quotes] = ACTIONS(2504), - [sym__str_back_ticks] = ACTIONS(2504), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2504), - [sym__entry_separator] = ACTIONS(2506), + [anon_sym_export] = ACTIONS(2494), + [anon_sym_alias] = ACTIONS(2494), + [anon_sym_let] = ACTIONS(2494), + [anon_sym_let_DASHenv] = ACTIONS(2494), + [anon_sym_mut] = ACTIONS(2494), + [anon_sym_const] = ACTIONS(2494), + [aux_sym_cmd_identifier_token1] = ACTIONS(2494), + [aux_sym_cmd_identifier_token2] = ACTIONS(2494), + [aux_sym_cmd_identifier_token3] = ACTIONS(2494), + [aux_sym_cmd_identifier_token4] = ACTIONS(2494), + [aux_sym_cmd_identifier_token5] = ACTIONS(2494), + [aux_sym_cmd_identifier_token6] = ACTIONS(2494), + [aux_sym_cmd_identifier_token7] = ACTIONS(2494), + [aux_sym_cmd_identifier_token8] = ACTIONS(2494), + [aux_sym_cmd_identifier_token9] = ACTIONS(2494), + [aux_sym_cmd_identifier_token10] = ACTIONS(2494), + [aux_sym_cmd_identifier_token11] = ACTIONS(2494), + [aux_sym_cmd_identifier_token12] = ACTIONS(2494), + [aux_sym_cmd_identifier_token13] = ACTIONS(2494), + [aux_sym_cmd_identifier_token14] = ACTIONS(2494), + [aux_sym_cmd_identifier_token15] = ACTIONS(2494), + [aux_sym_cmd_identifier_token16] = ACTIONS(2494), + [aux_sym_cmd_identifier_token17] = ACTIONS(2494), + [aux_sym_cmd_identifier_token18] = ACTIONS(2494), + [aux_sym_cmd_identifier_token19] = ACTIONS(2494), + [aux_sym_cmd_identifier_token20] = ACTIONS(2494), + [aux_sym_cmd_identifier_token21] = ACTIONS(2494), + [aux_sym_cmd_identifier_token22] = ACTIONS(2494), + [aux_sym_cmd_identifier_token23] = ACTIONS(2494), + [aux_sym_cmd_identifier_token24] = ACTIONS(2494), + [aux_sym_cmd_identifier_token25] = ACTIONS(2494), + [aux_sym_cmd_identifier_token26] = ACTIONS(2494), + [aux_sym_cmd_identifier_token27] = ACTIONS(2494), + [aux_sym_cmd_identifier_token28] = ACTIONS(2494), + [aux_sym_cmd_identifier_token29] = ACTIONS(2494), + [aux_sym_cmd_identifier_token30] = ACTIONS(2494), + [aux_sym_cmd_identifier_token31] = ACTIONS(2494), + [aux_sym_cmd_identifier_token32] = ACTIONS(2494), + [aux_sym_cmd_identifier_token33] = ACTIONS(2494), + [aux_sym_cmd_identifier_token34] = ACTIONS(2494), + [aux_sym_cmd_identifier_token35] = ACTIONS(2494), + [aux_sym_cmd_identifier_token36] = ACTIONS(2494), + [aux_sym_cmd_identifier_token37] = ACTIONS(2494), + [aux_sym_cmd_identifier_token38] = ACTIONS(2494), + [aux_sym_cmd_identifier_token39] = ACTIONS(2494), + [aux_sym_cmd_identifier_token40] = ACTIONS(2494), + [anon_sym_def] = ACTIONS(2494), + [anon_sym_export_DASHenv] = ACTIONS(2494), + [anon_sym_extern] = ACTIONS(2494), + [anon_sym_module] = ACTIONS(2494), + [anon_sym_use] = ACTIONS(2494), + [anon_sym_LPAREN] = ACTIONS(2494), + [anon_sym_DOLLAR] = ACTIONS(2494), + [anon_sym_error] = ACTIONS(2494), + [anon_sym_DASH2] = ACTIONS(2494), + [anon_sym_break] = ACTIONS(2494), + [anon_sym_continue] = ACTIONS(2494), + [anon_sym_for] = ACTIONS(2494), + [anon_sym_in2] = ACTIONS(2494), + [anon_sym_loop] = ACTIONS(2494), + [anon_sym_make] = ACTIONS(2494), + [anon_sym_while] = ACTIONS(2494), + [anon_sym_do] = ACTIONS(2494), + [anon_sym_if] = ACTIONS(2494), + [anon_sym_else] = ACTIONS(2494), + [anon_sym_match] = ACTIONS(2494), + [anon_sym_RBRACE] = ACTIONS(2494), + [anon_sym_try] = ACTIONS(2494), + [anon_sym_catch] = ACTIONS(2494), + [anon_sym_return] = ACTIONS(2494), + [anon_sym_source] = ACTIONS(2494), + [anon_sym_source_DASHenv] = ACTIONS(2494), + [anon_sym_register] = ACTIONS(2494), + [anon_sym_hide] = ACTIONS(2494), + [anon_sym_hide_DASHenv] = ACTIONS(2494), + [anon_sym_overlay] = ACTIONS(2494), + [anon_sym_as] = ACTIONS(2494), + [anon_sym_PLUS2] = ACTIONS(2494), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2494), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2494), + [aux_sym__val_number_decimal_token1] = ACTIONS(2494), + [aux_sym__val_number_decimal_token2] = ACTIONS(2494), + [aux_sym__val_number_decimal_token3] = ACTIONS(2494), + [aux_sym__val_number_decimal_token4] = ACTIONS(2494), + [aux_sym__val_number_token1] = ACTIONS(2494), + [aux_sym__val_number_token2] = ACTIONS(2494), + [aux_sym__val_number_token3] = ACTIONS(2494), + [aux_sym__val_number_token4] = ACTIONS(2494), + [aux_sym__val_number_token5] = ACTIONS(2494), + [aux_sym__val_number_token6] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2494), + [sym__str_single_quotes] = ACTIONS(2494), + [sym__str_back_ticks] = ACTIONS(2494), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2494), + [sym__entry_separator] = ACTIONS(2496), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2506), + [sym_raw_string_begin] = ACTIONS(2496), }, [689] = { [sym_comment] = STATE(689), - [anon_sym_export] = ACTIONS(1006), - [anon_sym_alias] = ACTIONS(1006), - [anon_sym_let] = ACTIONS(1006), - [anon_sym_let_DASHenv] = ACTIONS(1006), - [anon_sym_mut] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [aux_sym_cmd_identifier_token1] = ACTIONS(1006), - [aux_sym_cmd_identifier_token2] = ACTIONS(1008), - [aux_sym_cmd_identifier_token3] = ACTIONS(1008), - [aux_sym_cmd_identifier_token4] = ACTIONS(1008), - [aux_sym_cmd_identifier_token5] = ACTIONS(1008), - [aux_sym_cmd_identifier_token6] = ACTIONS(1008), - [aux_sym_cmd_identifier_token7] = ACTIONS(1008), - [aux_sym_cmd_identifier_token8] = ACTIONS(1006), - [aux_sym_cmd_identifier_token9] = ACTIONS(1006), - [aux_sym_cmd_identifier_token10] = ACTIONS(1008), - [aux_sym_cmd_identifier_token11] = ACTIONS(1008), - [aux_sym_cmd_identifier_token12] = ACTIONS(1006), - [aux_sym_cmd_identifier_token13] = ACTIONS(1006), - [aux_sym_cmd_identifier_token14] = ACTIONS(1006), - [aux_sym_cmd_identifier_token15] = ACTIONS(1006), - [aux_sym_cmd_identifier_token16] = ACTIONS(1008), - [aux_sym_cmd_identifier_token17] = ACTIONS(1008), - [aux_sym_cmd_identifier_token18] = ACTIONS(1008), - [aux_sym_cmd_identifier_token19] = ACTIONS(1008), - [aux_sym_cmd_identifier_token20] = ACTIONS(1008), - [aux_sym_cmd_identifier_token21] = ACTIONS(1008), - [aux_sym_cmd_identifier_token22] = ACTIONS(1008), - [aux_sym_cmd_identifier_token23] = ACTIONS(1008), - [aux_sym_cmd_identifier_token24] = ACTIONS(1008), - [aux_sym_cmd_identifier_token25] = ACTIONS(1008), - [aux_sym_cmd_identifier_token26] = ACTIONS(1008), - [aux_sym_cmd_identifier_token27] = ACTIONS(1008), - [aux_sym_cmd_identifier_token28] = ACTIONS(1008), - [aux_sym_cmd_identifier_token29] = ACTIONS(1008), - [aux_sym_cmd_identifier_token30] = ACTIONS(1008), - [aux_sym_cmd_identifier_token31] = ACTIONS(1008), - [aux_sym_cmd_identifier_token32] = ACTIONS(1008), - [aux_sym_cmd_identifier_token33] = ACTIONS(1008), - [aux_sym_cmd_identifier_token34] = ACTIONS(1006), - [aux_sym_cmd_identifier_token35] = ACTIONS(1008), - [aux_sym_cmd_identifier_token36] = ACTIONS(1008), - [aux_sym_cmd_identifier_token37] = ACTIONS(1008), - [aux_sym_cmd_identifier_token38] = ACTIONS(1006), - [aux_sym_cmd_identifier_token39] = ACTIONS(1008), - [aux_sym_cmd_identifier_token40] = ACTIONS(1008), - [anon_sym_def] = ACTIONS(1006), - [anon_sym_export_DASHenv] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_module] = ACTIONS(1006), - [anon_sym_use] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_error] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_in2] = ACTIONS(1006), - [anon_sym_loop] = ACTIONS(1006), - [anon_sym_make] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_source] = ACTIONS(1006), - [anon_sym_source_DASHenv] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_hide_DASHenv] = ACTIONS(1006), - [anon_sym_overlay] = ACTIONS(1006), - [anon_sym_as] = ACTIONS(1006), - [anon_sym_PLUS2] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1008), - [anon_sym_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1008), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1008), - [aux_sym__val_number_decimal_token3] = ACTIONS(1008), - [aux_sym__val_number_decimal_token4] = ACTIONS(1008), - [aux_sym__val_number_token1] = ACTIONS(1008), - [aux_sym__val_number_token2] = ACTIONS(1008), - [aux_sym__val_number_token3] = ACTIONS(1008), - [aux_sym__val_number_token4] = ACTIONS(1006), - [aux_sym__val_number_token5] = ACTIONS(1006), - [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1008), - [sym__str_single_quotes] = ACTIONS(1008), - [sym__str_back_ticks] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1008), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1008), + [anon_sym_export] = ACTIONS(2498), + [anon_sym_alias] = ACTIONS(2498), + [anon_sym_let] = ACTIONS(2498), + [anon_sym_let_DASHenv] = ACTIONS(2498), + [anon_sym_mut] = ACTIONS(2498), + [anon_sym_const] = ACTIONS(2498), + [aux_sym_cmd_identifier_token1] = ACTIONS(2498), + [aux_sym_cmd_identifier_token2] = ACTIONS(2498), + [aux_sym_cmd_identifier_token3] = ACTIONS(2498), + [aux_sym_cmd_identifier_token4] = ACTIONS(2498), + [aux_sym_cmd_identifier_token5] = ACTIONS(2498), + [aux_sym_cmd_identifier_token6] = ACTIONS(2498), + [aux_sym_cmd_identifier_token7] = ACTIONS(2498), + [aux_sym_cmd_identifier_token8] = ACTIONS(2498), + [aux_sym_cmd_identifier_token9] = ACTIONS(2498), + [aux_sym_cmd_identifier_token10] = ACTIONS(2498), + [aux_sym_cmd_identifier_token11] = ACTIONS(2498), + [aux_sym_cmd_identifier_token12] = ACTIONS(2498), + [aux_sym_cmd_identifier_token13] = ACTIONS(2498), + [aux_sym_cmd_identifier_token14] = ACTIONS(2498), + [aux_sym_cmd_identifier_token15] = ACTIONS(2498), + [aux_sym_cmd_identifier_token16] = ACTIONS(2498), + [aux_sym_cmd_identifier_token17] = ACTIONS(2498), + [aux_sym_cmd_identifier_token18] = ACTIONS(2498), + [aux_sym_cmd_identifier_token19] = ACTIONS(2498), + [aux_sym_cmd_identifier_token20] = ACTIONS(2498), + [aux_sym_cmd_identifier_token21] = ACTIONS(2498), + [aux_sym_cmd_identifier_token22] = ACTIONS(2498), + [aux_sym_cmd_identifier_token23] = ACTIONS(2498), + [aux_sym_cmd_identifier_token24] = ACTIONS(2498), + [aux_sym_cmd_identifier_token25] = ACTIONS(2498), + [aux_sym_cmd_identifier_token26] = ACTIONS(2498), + [aux_sym_cmd_identifier_token27] = ACTIONS(2498), + [aux_sym_cmd_identifier_token28] = ACTIONS(2498), + [aux_sym_cmd_identifier_token29] = ACTIONS(2498), + [aux_sym_cmd_identifier_token30] = ACTIONS(2498), + [aux_sym_cmd_identifier_token31] = ACTIONS(2498), + [aux_sym_cmd_identifier_token32] = ACTIONS(2498), + [aux_sym_cmd_identifier_token33] = ACTIONS(2498), + [aux_sym_cmd_identifier_token34] = ACTIONS(2498), + [aux_sym_cmd_identifier_token35] = ACTIONS(2498), + [aux_sym_cmd_identifier_token36] = ACTIONS(2498), + [aux_sym_cmd_identifier_token37] = ACTIONS(2498), + [aux_sym_cmd_identifier_token38] = ACTIONS(2498), + [aux_sym_cmd_identifier_token39] = ACTIONS(2498), + [aux_sym_cmd_identifier_token40] = ACTIONS(2498), + [anon_sym_def] = ACTIONS(2498), + [anon_sym_export_DASHenv] = ACTIONS(2498), + [anon_sym_extern] = ACTIONS(2498), + [anon_sym_module] = ACTIONS(2498), + [anon_sym_use] = ACTIONS(2498), + [anon_sym_LPAREN] = ACTIONS(2498), + [anon_sym_DOLLAR] = ACTIONS(2498), + [anon_sym_error] = ACTIONS(2498), + [anon_sym_DASH2] = ACTIONS(2498), + [anon_sym_break] = ACTIONS(2498), + [anon_sym_continue] = ACTIONS(2498), + [anon_sym_for] = ACTIONS(2498), + [anon_sym_in2] = ACTIONS(2498), + [anon_sym_loop] = ACTIONS(2498), + [anon_sym_make] = ACTIONS(2498), + [anon_sym_while] = ACTIONS(2498), + [anon_sym_do] = ACTIONS(2498), + [anon_sym_if] = ACTIONS(2498), + [anon_sym_else] = ACTIONS(2498), + [anon_sym_match] = ACTIONS(2498), + [anon_sym_RBRACE] = ACTIONS(2498), + [anon_sym_try] = ACTIONS(2498), + [anon_sym_catch] = ACTIONS(2498), + [anon_sym_return] = ACTIONS(2498), + [anon_sym_source] = ACTIONS(2498), + [anon_sym_source_DASHenv] = ACTIONS(2498), + [anon_sym_register] = ACTIONS(2498), + [anon_sym_hide] = ACTIONS(2498), + [anon_sym_hide_DASHenv] = ACTIONS(2498), + [anon_sym_overlay] = ACTIONS(2498), + [anon_sym_as] = ACTIONS(2498), + [anon_sym_PLUS2] = ACTIONS(2498), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2498), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2498), + [aux_sym__val_number_decimal_token1] = ACTIONS(2498), + [aux_sym__val_number_decimal_token2] = ACTIONS(2498), + [aux_sym__val_number_decimal_token3] = ACTIONS(2498), + [aux_sym__val_number_decimal_token4] = ACTIONS(2498), + [aux_sym__val_number_token1] = ACTIONS(2498), + [aux_sym__val_number_token2] = ACTIONS(2498), + [aux_sym__val_number_token3] = ACTIONS(2498), + [aux_sym__val_number_token4] = ACTIONS(2498), + [aux_sym__val_number_token5] = ACTIONS(2498), + [aux_sym__val_number_token6] = ACTIONS(2498), + [anon_sym_DQUOTE] = ACTIONS(2498), + [sym__str_single_quotes] = ACTIONS(2498), + [sym__str_back_ticks] = ACTIONS(2498), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2498), + [sym__entry_separator] = ACTIONS(2500), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2500), }, [690] = { [sym_comment] = STATE(690), - [anon_sym_export] = ACTIONS(2129), - [anon_sym_alias] = ACTIONS(2129), - [anon_sym_let] = ACTIONS(2129), - [anon_sym_let_DASHenv] = ACTIONS(2129), - [anon_sym_mut] = ACTIONS(2129), - [anon_sym_const] = ACTIONS(2129), - [aux_sym_cmd_identifier_token1] = ACTIONS(2129), - [aux_sym_cmd_identifier_token2] = ACTIONS(2129), - [aux_sym_cmd_identifier_token3] = ACTIONS(2129), - [aux_sym_cmd_identifier_token4] = ACTIONS(2129), - [aux_sym_cmd_identifier_token5] = ACTIONS(2129), - [aux_sym_cmd_identifier_token6] = ACTIONS(2129), - [aux_sym_cmd_identifier_token7] = ACTIONS(2129), - [aux_sym_cmd_identifier_token8] = ACTIONS(2129), - [aux_sym_cmd_identifier_token9] = ACTIONS(2129), - [aux_sym_cmd_identifier_token10] = ACTIONS(2129), - [aux_sym_cmd_identifier_token11] = ACTIONS(2129), - [aux_sym_cmd_identifier_token12] = ACTIONS(2129), - [aux_sym_cmd_identifier_token13] = ACTIONS(2129), - [aux_sym_cmd_identifier_token14] = ACTIONS(2129), - [aux_sym_cmd_identifier_token15] = ACTIONS(2129), - [aux_sym_cmd_identifier_token16] = ACTIONS(2129), - [aux_sym_cmd_identifier_token17] = ACTIONS(2129), - [aux_sym_cmd_identifier_token18] = ACTIONS(2129), - [aux_sym_cmd_identifier_token19] = ACTIONS(2129), - [aux_sym_cmd_identifier_token20] = ACTIONS(2129), - [aux_sym_cmd_identifier_token21] = ACTIONS(2129), - [aux_sym_cmd_identifier_token22] = ACTIONS(2129), - [aux_sym_cmd_identifier_token23] = ACTIONS(2129), - [aux_sym_cmd_identifier_token24] = ACTIONS(2129), - [aux_sym_cmd_identifier_token25] = ACTIONS(2129), - [aux_sym_cmd_identifier_token26] = ACTIONS(2129), - [aux_sym_cmd_identifier_token27] = ACTIONS(2129), - [aux_sym_cmd_identifier_token28] = ACTIONS(2129), - [aux_sym_cmd_identifier_token29] = ACTIONS(2129), - [aux_sym_cmd_identifier_token30] = ACTIONS(2129), - [aux_sym_cmd_identifier_token31] = ACTIONS(2129), - [aux_sym_cmd_identifier_token32] = ACTIONS(2129), - [aux_sym_cmd_identifier_token33] = ACTIONS(2129), - [aux_sym_cmd_identifier_token34] = ACTIONS(2129), - [aux_sym_cmd_identifier_token35] = ACTIONS(2129), - [aux_sym_cmd_identifier_token36] = ACTIONS(2129), - [aux_sym_cmd_identifier_token37] = ACTIONS(2129), - [aux_sym_cmd_identifier_token38] = ACTIONS(2129), - [aux_sym_cmd_identifier_token39] = ACTIONS(2129), - [aux_sym_cmd_identifier_token40] = ACTIONS(2129), - [anon_sym_def] = ACTIONS(2129), - [anon_sym_export_DASHenv] = ACTIONS(2129), - [anon_sym_extern] = ACTIONS(2129), - [anon_sym_module] = ACTIONS(2129), - [anon_sym_use] = ACTIONS(2129), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_DOLLAR] = ACTIONS(2129), - [anon_sym_error] = ACTIONS(2129), - [anon_sym_DASH2] = ACTIONS(2129), - [anon_sym_break] = ACTIONS(2129), - [anon_sym_continue] = ACTIONS(2129), - [anon_sym_for] = ACTIONS(2129), - [anon_sym_in2] = ACTIONS(2129), - [anon_sym_loop] = ACTIONS(2129), - [anon_sym_make] = ACTIONS(2129), - [anon_sym_while] = ACTIONS(2129), - [anon_sym_do] = ACTIONS(2129), - [anon_sym_if] = ACTIONS(2129), - [anon_sym_else] = ACTIONS(2129), - [anon_sym_match] = ACTIONS(2129), - [anon_sym_RBRACE] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(2129), - [anon_sym_catch] = ACTIONS(2129), - [anon_sym_return] = ACTIONS(2129), - [anon_sym_source] = ACTIONS(2129), - [anon_sym_source_DASHenv] = ACTIONS(2129), - [anon_sym_register] = ACTIONS(2129), - [anon_sym_hide] = ACTIONS(2129), - [anon_sym_hide_DASHenv] = ACTIONS(2129), - [anon_sym_overlay] = ACTIONS(2129), - [anon_sym_as] = ACTIONS(2129), - [anon_sym_PLUS2] = ACTIONS(2129), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2129), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2129), - [aux_sym__val_number_decimal_token1] = ACTIONS(2129), - [aux_sym__val_number_decimal_token2] = ACTIONS(2129), - [aux_sym__val_number_decimal_token3] = ACTIONS(2129), - [aux_sym__val_number_decimal_token4] = ACTIONS(2129), - [aux_sym__val_number_token1] = ACTIONS(2129), - [aux_sym__val_number_token2] = ACTIONS(2129), - [aux_sym__val_number_token3] = ACTIONS(2129), - [aux_sym__val_number_token4] = ACTIONS(2129), - [aux_sym__val_number_token5] = ACTIONS(2129), - [aux_sym__val_number_token6] = ACTIONS(2129), - [anon_sym_DQUOTE] = ACTIONS(2129), - [sym__str_single_quotes] = ACTIONS(2129), - [sym__str_back_ticks] = ACTIONS(2129), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2129), - [sym__entry_separator] = ACTIONS(2131), + [anon_sym_export] = ACTIONS(2502), + [anon_sym_alias] = ACTIONS(2502), + [anon_sym_let] = ACTIONS(2502), + [anon_sym_let_DASHenv] = ACTIONS(2502), + [anon_sym_mut] = ACTIONS(2502), + [anon_sym_const] = ACTIONS(2502), + [aux_sym_cmd_identifier_token1] = ACTIONS(2502), + [aux_sym_cmd_identifier_token2] = ACTIONS(2502), + [aux_sym_cmd_identifier_token3] = ACTIONS(2502), + [aux_sym_cmd_identifier_token4] = ACTIONS(2502), + [aux_sym_cmd_identifier_token5] = ACTIONS(2502), + [aux_sym_cmd_identifier_token6] = ACTIONS(2502), + [aux_sym_cmd_identifier_token7] = ACTIONS(2502), + [aux_sym_cmd_identifier_token8] = ACTIONS(2502), + [aux_sym_cmd_identifier_token9] = ACTIONS(2502), + [aux_sym_cmd_identifier_token10] = ACTIONS(2502), + [aux_sym_cmd_identifier_token11] = ACTIONS(2502), + [aux_sym_cmd_identifier_token12] = ACTIONS(2502), + [aux_sym_cmd_identifier_token13] = ACTIONS(2502), + [aux_sym_cmd_identifier_token14] = ACTIONS(2502), + [aux_sym_cmd_identifier_token15] = ACTIONS(2502), + [aux_sym_cmd_identifier_token16] = ACTIONS(2502), + [aux_sym_cmd_identifier_token17] = ACTIONS(2502), + [aux_sym_cmd_identifier_token18] = ACTIONS(2502), + [aux_sym_cmd_identifier_token19] = ACTIONS(2502), + [aux_sym_cmd_identifier_token20] = ACTIONS(2502), + [aux_sym_cmd_identifier_token21] = ACTIONS(2502), + [aux_sym_cmd_identifier_token22] = ACTIONS(2502), + [aux_sym_cmd_identifier_token23] = ACTIONS(2502), + [aux_sym_cmd_identifier_token24] = ACTIONS(2502), + [aux_sym_cmd_identifier_token25] = ACTIONS(2502), + [aux_sym_cmd_identifier_token26] = ACTIONS(2502), + [aux_sym_cmd_identifier_token27] = ACTIONS(2502), + [aux_sym_cmd_identifier_token28] = ACTIONS(2502), + [aux_sym_cmd_identifier_token29] = ACTIONS(2502), + [aux_sym_cmd_identifier_token30] = ACTIONS(2502), + [aux_sym_cmd_identifier_token31] = ACTIONS(2502), + [aux_sym_cmd_identifier_token32] = ACTIONS(2502), + [aux_sym_cmd_identifier_token33] = ACTIONS(2502), + [aux_sym_cmd_identifier_token34] = ACTIONS(2502), + [aux_sym_cmd_identifier_token35] = ACTIONS(2502), + [aux_sym_cmd_identifier_token36] = ACTIONS(2502), + [aux_sym_cmd_identifier_token37] = ACTIONS(2502), + [aux_sym_cmd_identifier_token38] = ACTIONS(2502), + [aux_sym_cmd_identifier_token39] = ACTIONS(2502), + [aux_sym_cmd_identifier_token40] = ACTIONS(2502), + [anon_sym_def] = ACTIONS(2502), + [anon_sym_export_DASHenv] = ACTIONS(2502), + [anon_sym_extern] = ACTIONS(2502), + [anon_sym_module] = ACTIONS(2502), + [anon_sym_use] = ACTIONS(2502), + [anon_sym_LPAREN] = ACTIONS(2502), + [anon_sym_DOLLAR] = ACTIONS(2502), + [anon_sym_error] = ACTIONS(2502), + [anon_sym_DASH2] = ACTIONS(2502), + [anon_sym_break] = ACTIONS(2502), + [anon_sym_continue] = ACTIONS(2502), + [anon_sym_for] = ACTIONS(2502), + [anon_sym_in2] = ACTIONS(2502), + [anon_sym_loop] = ACTIONS(2502), + [anon_sym_make] = ACTIONS(2502), + [anon_sym_while] = ACTIONS(2502), + [anon_sym_do] = ACTIONS(2502), + [anon_sym_if] = ACTIONS(2502), + [anon_sym_else] = ACTIONS(2502), + [anon_sym_match] = ACTIONS(2502), + [anon_sym_RBRACE] = ACTIONS(2502), + [anon_sym_try] = ACTIONS(2502), + [anon_sym_catch] = ACTIONS(2502), + [anon_sym_return] = ACTIONS(2502), + [anon_sym_source] = ACTIONS(2502), + [anon_sym_source_DASHenv] = ACTIONS(2502), + [anon_sym_register] = ACTIONS(2502), + [anon_sym_hide] = ACTIONS(2502), + [anon_sym_hide_DASHenv] = ACTIONS(2502), + [anon_sym_overlay] = ACTIONS(2502), + [anon_sym_as] = ACTIONS(2502), + [anon_sym_PLUS2] = ACTIONS(2502), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2502), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2502), + [aux_sym__val_number_decimal_token1] = ACTIONS(2502), + [aux_sym__val_number_decimal_token2] = ACTIONS(2502), + [aux_sym__val_number_decimal_token3] = ACTIONS(2502), + [aux_sym__val_number_decimal_token4] = ACTIONS(2502), + [aux_sym__val_number_token1] = ACTIONS(2502), + [aux_sym__val_number_token2] = ACTIONS(2502), + [aux_sym__val_number_token3] = ACTIONS(2502), + [aux_sym__val_number_token4] = ACTIONS(2502), + [aux_sym__val_number_token5] = ACTIONS(2502), + [aux_sym__val_number_token6] = ACTIONS(2502), + [anon_sym_DQUOTE] = ACTIONS(2502), + [sym__str_single_quotes] = ACTIONS(2502), + [sym__str_back_ticks] = ACTIONS(2502), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2502), + [sym__entry_separator] = ACTIONS(2504), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2131), + [sym_raw_string_begin] = ACTIONS(2504), }, [691] = { [sym_comment] = STATE(691), - [anon_sym_export] = ACTIONS(2183), - [anon_sym_alias] = ACTIONS(2183), - [anon_sym_let] = ACTIONS(2183), - [anon_sym_let_DASHenv] = ACTIONS(2183), - [anon_sym_mut] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [aux_sym_cmd_identifier_token1] = ACTIONS(2183), - [aux_sym_cmd_identifier_token2] = ACTIONS(2183), - [aux_sym_cmd_identifier_token3] = ACTIONS(2183), - [aux_sym_cmd_identifier_token4] = ACTIONS(2183), - [aux_sym_cmd_identifier_token5] = ACTIONS(2183), - [aux_sym_cmd_identifier_token6] = ACTIONS(2183), - [aux_sym_cmd_identifier_token7] = ACTIONS(2183), - [aux_sym_cmd_identifier_token8] = ACTIONS(2183), - [aux_sym_cmd_identifier_token9] = ACTIONS(2183), - [aux_sym_cmd_identifier_token10] = ACTIONS(2183), - [aux_sym_cmd_identifier_token11] = ACTIONS(2183), - [aux_sym_cmd_identifier_token12] = ACTIONS(2183), - [aux_sym_cmd_identifier_token13] = ACTIONS(2183), - [aux_sym_cmd_identifier_token14] = ACTIONS(2183), - [aux_sym_cmd_identifier_token15] = ACTIONS(2183), - [aux_sym_cmd_identifier_token16] = ACTIONS(2183), - [aux_sym_cmd_identifier_token17] = ACTIONS(2183), - [aux_sym_cmd_identifier_token18] = ACTIONS(2183), - [aux_sym_cmd_identifier_token19] = ACTIONS(2183), - [aux_sym_cmd_identifier_token20] = ACTIONS(2183), - [aux_sym_cmd_identifier_token21] = ACTIONS(2183), - [aux_sym_cmd_identifier_token22] = ACTIONS(2183), - [aux_sym_cmd_identifier_token23] = ACTIONS(2183), - [aux_sym_cmd_identifier_token24] = ACTIONS(2183), - [aux_sym_cmd_identifier_token25] = ACTIONS(2183), - [aux_sym_cmd_identifier_token26] = ACTIONS(2183), - [aux_sym_cmd_identifier_token27] = ACTIONS(2183), - [aux_sym_cmd_identifier_token28] = ACTIONS(2183), - [aux_sym_cmd_identifier_token29] = ACTIONS(2183), - [aux_sym_cmd_identifier_token30] = ACTIONS(2183), - [aux_sym_cmd_identifier_token31] = ACTIONS(2183), - [aux_sym_cmd_identifier_token32] = ACTIONS(2183), - [aux_sym_cmd_identifier_token33] = ACTIONS(2183), - [aux_sym_cmd_identifier_token34] = ACTIONS(2183), - [aux_sym_cmd_identifier_token35] = ACTIONS(2183), - [aux_sym_cmd_identifier_token36] = ACTIONS(2183), - [aux_sym_cmd_identifier_token37] = ACTIONS(2183), - [aux_sym_cmd_identifier_token38] = ACTIONS(2183), - [aux_sym_cmd_identifier_token39] = ACTIONS(2183), - [aux_sym_cmd_identifier_token40] = ACTIONS(2183), - [anon_sym_def] = ACTIONS(2183), - [anon_sym_export_DASHenv] = ACTIONS(2183), - [anon_sym_extern] = ACTIONS(2183), - [anon_sym_module] = ACTIONS(2183), - [anon_sym_use] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2183), - [anon_sym_error] = ACTIONS(2183), - [anon_sym_DASH2] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_in2] = ACTIONS(2183), - [anon_sym_loop] = ACTIONS(2183), - [anon_sym_make] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_else] = ACTIONS(2183), - [anon_sym_match] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_try] = ACTIONS(2183), - [anon_sym_catch] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_source] = ACTIONS(2183), - [anon_sym_source_DASHenv] = ACTIONS(2183), - [anon_sym_register] = ACTIONS(2183), - [anon_sym_hide] = ACTIONS(2183), - [anon_sym_hide_DASHenv] = ACTIONS(2183), - [anon_sym_overlay] = ACTIONS(2183), - [anon_sym_as] = ACTIONS(2183), - [anon_sym_PLUS2] = ACTIONS(2183), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2183), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2183), - [aux_sym__val_number_decimal_token1] = ACTIONS(2183), - [aux_sym__val_number_decimal_token2] = ACTIONS(2183), - [aux_sym__val_number_decimal_token3] = ACTIONS(2183), - [aux_sym__val_number_decimal_token4] = ACTIONS(2183), - [aux_sym__val_number_token1] = ACTIONS(2183), - [aux_sym__val_number_token2] = ACTIONS(2183), - [aux_sym__val_number_token3] = ACTIONS(2183), - [aux_sym__val_number_token4] = ACTIONS(2183), - [aux_sym__val_number_token5] = ACTIONS(2183), - [aux_sym__val_number_token6] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2183), - [sym__str_single_quotes] = ACTIONS(2183), - [sym__str_back_ticks] = ACTIONS(2183), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2183), - [sym__entry_separator] = ACTIONS(2185), + [anon_sym_export] = ACTIONS(2506), + [anon_sym_alias] = ACTIONS(2506), + [anon_sym_let] = ACTIONS(2506), + [anon_sym_let_DASHenv] = ACTIONS(2506), + [anon_sym_mut] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(2506), + [aux_sym_cmd_identifier_token1] = ACTIONS(2506), + [aux_sym_cmd_identifier_token2] = ACTIONS(2506), + [aux_sym_cmd_identifier_token3] = ACTIONS(2506), + [aux_sym_cmd_identifier_token4] = ACTIONS(2506), + [aux_sym_cmd_identifier_token5] = ACTIONS(2506), + [aux_sym_cmd_identifier_token6] = ACTIONS(2506), + [aux_sym_cmd_identifier_token7] = ACTIONS(2506), + [aux_sym_cmd_identifier_token8] = ACTIONS(2506), + [aux_sym_cmd_identifier_token9] = ACTIONS(2506), + [aux_sym_cmd_identifier_token10] = ACTIONS(2506), + [aux_sym_cmd_identifier_token11] = ACTIONS(2506), + [aux_sym_cmd_identifier_token12] = ACTIONS(2506), + [aux_sym_cmd_identifier_token13] = ACTIONS(2506), + [aux_sym_cmd_identifier_token14] = ACTIONS(2506), + [aux_sym_cmd_identifier_token15] = ACTIONS(2506), + [aux_sym_cmd_identifier_token16] = ACTIONS(2506), + [aux_sym_cmd_identifier_token17] = ACTIONS(2506), + [aux_sym_cmd_identifier_token18] = ACTIONS(2506), + [aux_sym_cmd_identifier_token19] = ACTIONS(2506), + [aux_sym_cmd_identifier_token20] = ACTIONS(2506), + [aux_sym_cmd_identifier_token21] = ACTIONS(2506), + [aux_sym_cmd_identifier_token22] = ACTIONS(2506), + [aux_sym_cmd_identifier_token23] = ACTIONS(2506), + [aux_sym_cmd_identifier_token24] = ACTIONS(2506), + [aux_sym_cmd_identifier_token25] = ACTIONS(2506), + [aux_sym_cmd_identifier_token26] = ACTIONS(2506), + [aux_sym_cmd_identifier_token27] = ACTIONS(2506), + [aux_sym_cmd_identifier_token28] = ACTIONS(2506), + [aux_sym_cmd_identifier_token29] = ACTIONS(2506), + [aux_sym_cmd_identifier_token30] = ACTIONS(2506), + [aux_sym_cmd_identifier_token31] = ACTIONS(2506), + [aux_sym_cmd_identifier_token32] = ACTIONS(2506), + [aux_sym_cmd_identifier_token33] = ACTIONS(2506), + [aux_sym_cmd_identifier_token34] = ACTIONS(2506), + [aux_sym_cmd_identifier_token35] = ACTIONS(2506), + [aux_sym_cmd_identifier_token36] = ACTIONS(2506), + [aux_sym_cmd_identifier_token37] = ACTIONS(2506), + [aux_sym_cmd_identifier_token38] = ACTIONS(2506), + [aux_sym_cmd_identifier_token39] = ACTIONS(2506), + [aux_sym_cmd_identifier_token40] = ACTIONS(2506), + [anon_sym_def] = ACTIONS(2506), + [anon_sym_export_DASHenv] = ACTIONS(2506), + [anon_sym_extern] = ACTIONS(2506), + [anon_sym_module] = ACTIONS(2506), + [anon_sym_use] = ACTIONS(2506), + [anon_sym_LPAREN] = ACTIONS(2506), + [anon_sym_DOLLAR] = ACTIONS(2506), + [anon_sym_error] = ACTIONS(2506), + [anon_sym_DASH2] = ACTIONS(2506), + [anon_sym_break] = ACTIONS(2506), + [anon_sym_continue] = ACTIONS(2506), + [anon_sym_for] = ACTIONS(2506), + [anon_sym_in2] = ACTIONS(2506), + [anon_sym_loop] = ACTIONS(2506), + [anon_sym_make] = ACTIONS(2506), + [anon_sym_while] = ACTIONS(2506), + [anon_sym_do] = ACTIONS(2506), + [anon_sym_if] = ACTIONS(2506), + [anon_sym_else] = ACTIONS(2506), + [anon_sym_match] = ACTIONS(2506), + [anon_sym_RBRACE] = ACTIONS(2506), + [anon_sym_try] = ACTIONS(2506), + [anon_sym_catch] = ACTIONS(2506), + [anon_sym_return] = ACTIONS(2506), + [anon_sym_source] = ACTIONS(2506), + [anon_sym_source_DASHenv] = ACTIONS(2506), + [anon_sym_register] = ACTIONS(2506), + [anon_sym_hide] = ACTIONS(2506), + [anon_sym_hide_DASHenv] = ACTIONS(2506), + [anon_sym_overlay] = ACTIONS(2506), + [anon_sym_as] = ACTIONS(2506), + [anon_sym_PLUS2] = ACTIONS(2506), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2506), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2506), + [aux_sym__val_number_decimal_token1] = ACTIONS(2506), + [aux_sym__val_number_decimal_token2] = ACTIONS(2506), + [aux_sym__val_number_decimal_token3] = ACTIONS(2506), + [aux_sym__val_number_decimal_token4] = ACTIONS(2506), + [aux_sym__val_number_token1] = ACTIONS(2506), + [aux_sym__val_number_token2] = ACTIONS(2506), + [aux_sym__val_number_token3] = ACTIONS(2506), + [aux_sym__val_number_token4] = ACTIONS(2506), + [aux_sym__val_number_token5] = ACTIONS(2506), + [aux_sym__val_number_token6] = ACTIONS(2506), + [anon_sym_DQUOTE] = ACTIONS(2506), + [sym__str_single_quotes] = ACTIONS(2506), + [sym__str_back_ticks] = ACTIONS(2506), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2506), + [sym__entry_separator] = ACTIONS(2508), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2185), + [sym_raw_string_begin] = ACTIONS(2508), }, [692] = { [sym_comment] = STATE(692), - [anon_sym_export] = ACTIONS(2508), - [anon_sym_alias] = ACTIONS(2508), - [anon_sym_let] = ACTIONS(2508), - [anon_sym_let_DASHenv] = ACTIONS(2508), - [anon_sym_mut] = ACTIONS(2508), - [anon_sym_const] = ACTIONS(2508), - [aux_sym_cmd_identifier_token1] = ACTIONS(2508), - [aux_sym_cmd_identifier_token2] = ACTIONS(2508), - [aux_sym_cmd_identifier_token3] = ACTIONS(2508), - [aux_sym_cmd_identifier_token4] = ACTIONS(2508), - [aux_sym_cmd_identifier_token5] = ACTIONS(2508), - [aux_sym_cmd_identifier_token6] = ACTIONS(2508), - [aux_sym_cmd_identifier_token7] = ACTIONS(2508), - [aux_sym_cmd_identifier_token8] = ACTIONS(2508), - [aux_sym_cmd_identifier_token9] = ACTIONS(2508), - [aux_sym_cmd_identifier_token10] = ACTIONS(2508), - [aux_sym_cmd_identifier_token11] = ACTIONS(2508), - [aux_sym_cmd_identifier_token12] = ACTIONS(2508), - [aux_sym_cmd_identifier_token13] = ACTIONS(2508), - [aux_sym_cmd_identifier_token14] = ACTIONS(2508), - [aux_sym_cmd_identifier_token15] = ACTIONS(2508), - [aux_sym_cmd_identifier_token16] = ACTIONS(2508), - [aux_sym_cmd_identifier_token17] = ACTIONS(2508), - [aux_sym_cmd_identifier_token18] = ACTIONS(2508), - [aux_sym_cmd_identifier_token19] = ACTIONS(2508), - [aux_sym_cmd_identifier_token20] = ACTIONS(2508), - [aux_sym_cmd_identifier_token21] = ACTIONS(2508), - [aux_sym_cmd_identifier_token22] = ACTIONS(2508), - [aux_sym_cmd_identifier_token23] = ACTIONS(2508), - [aux_sym_cmd_identifier_token24] = ACTIONS(2508), - [aux_sym_cmd_identifier_token25] = ACTIONS(2508), - [aux_sym_cmd_identifier_token26] = ACTIONS(2508), - [aux_sym_cmd_identifier_token27] = ACTIONS(2508), - [aux_sym_cmd_identifier_token28] = ACTIONS(2508), - [aux_sym_cmd_identifier_token29] = ACTIONS(2508), - [aux_sym_cmd_identifier_token30] = ACTIONS(2508), - [aux_sym_cmd_identifier_token31] = ACTIONS(2508), - [aux_sym_cmd_identifier_token32] = ACTIONS(2508), - [aux_sym_cmd_identifier_token33] = ACTIONS(2508), - [aux_sym_cmd_identifier_token34] = ACTIONS(2508), - [aux_sym_cmd_identifier_token35] = ACTIONS(2508), - [aux_sym_cmd_identifier_token36] = ACTIONS(2508), - [aux_sym_cmd_identifier_token37] = ACTIONS(2508), - [aux_sym_cmd_identifier_token38] = ACTIONS(2508), - [aux_sym_cmd_identifier_token39] = ACTIONS(2508), - [aux_sym_cmd_identifier_token40] = ACTIONS(2508), - [anon_sym_def] = ACTIONS(2508), - [anon_sym_export_DASHenv] = ACTIONS(2508), - [anon_sym_extern] = ACTIONS(2508), - [anon_sym_module] = ACTIONS(2508), - [anon_sym_use] = ACTIONS(2508), - [anon_sym_LPAREN] = ACTIONS(2508), - [anon_sym_DOLLAR] = ACTIONS(2508), - [anon_sym_error] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2508), - [anon_sym_break] = ACTIONS(2508), - [anon_sym_continue] = ACTIONS(2508), - [anon_sym_for] = ACTIONS(2508), - [anon_sym_in2] = ACTIONS(2508), - [anon_sym_loop] = ACTIONS(2508), - [anon_sym_make] = ACTIONS(2508), - [anon_sym_while] = ACTIONS(2508), - [anon_sym_do] = ACTIONS(2508), - [anon_sym_if] = ACTIONS(2508), - [anon_sym_else] = ACTIONS(2508), - [anon_sym_match] = ACTIONS(2508), - [anon_sym_RBRACE] = ACTIONS(2508), - [anon_sym_try] = ACTIONS(2508), - [anon_sym_catch] = ACTIONS(2508), - [anon_sym_return] = ACTIONS(2508), - [anon_sym_source] = ACTIONS(2508), - [anon_sym_source_DASHenv] = ACTIONS(2508), - [anon_sym_register] = ACTIONS(2508), - [anon_sym_hide] = ACTIONS(2508), - [anon_sym_hide_DASHenv] = ACTIONS(2508), - [anon_sym_overlay] = ACTIONS(2508), - [anon_sym_as] = ACTIONS(2508), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2508), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2508), - [aux_sym__val_number_decimal_token1] = ACTIONS(2508), - [aux_sym__val_number_decimal_token2] = ACTIONS(2508), - [aux_sym__val_number_decimal_token3] = ACTIONS(2508), - [aux_sym__val_number_decimal_token4] = ACTIONS(2508), - [aux_sym__val_number_token1] = ACTIONS(2508), - [aux_sym__val_number_token2] = ACTIONS(2508), - [aux_sym__val_number_token3] = ACTIONS(2508), - [aux_sym__val_number_token4] = ACTIONS(2508), - [aux_sym__val_number_token5] = ACTIONS(2508), - [aux_sym__val_number_token6] = ACTIONS(2508), - [anon_sym_DQUOTE] = ACTIONS(2508), - [sym__str_single_quotes] = ACTIONS(2508), - [sym__str_back_ticks] = ACTIONS(2508), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2508), - [sym__entry_separator] = ACTIONS(2510), + [anon_sym_export] = ACTIONS(2510), + [anon_sym_alias] = ACTIONS(2510), + [anon_sym_let] = ACTIONS(2510), + [anon_sym_let_DASHenv] = ACTIONS(2510), + [anon_sym_mut] = ACTIONS(2510), + [anon_sym_const] = ACTIONS(2510), + [aux_sym_cmd_identifier_token1] = ACTIONS(2510), + [aux_sym_cmd_identifier_token2] = ACTIONS(2510), + [aux_sym_cmd_identifier_token3] = ACTIONS(2510), + [aux_sym_cmd_identifier_token4] = ACTIONS(2510), + [aux_sym_cmd_identifier_token5] = ACTIONS(2510), + [aux_sym_cmd_identifier_token6] = ACTIONS(2510), + [aux_sym_cmd_identifier_token7] = ACTIONS(2510), + [aux_sym_cmd_identifier_token8] = ACTIONS(2510), + [aux_sym_cmd_identifier_token9] = ACTIONS(2510), + [aux_sym_cmd_identifier_token10] = ACTIONS(2510), + [aux_sym_cmd_identifier_token11] = ACTIONS(2510), + [aux_sym_cmd_identifier_token12] = ACTIONS(2510), + [aux_sym_cmd_identifier_token13] = ACTIONS(2510), + [aux_sym_cmd_identifier_token14] = ACTIONS(2510), + [aux_sym_cmd_identifier_token15] = ACTIONS(2510), + [aux_sym_cmd_identifier_token16] = ACTIONS(2510), + [aux_sym_cmd_identifier_token17] = ACTIONS(2510), + [aux_sym_cmd_identifier_token18] = ACTIONS(2510), + [aux_sym_cmd_identifier_token19] = ACTIONS(2510), + [aux_sym_cmd_identifier_token20] = ACTIONS(2510), + [aux_sym_cmd_identifier_token21] = ACTIONS(2510), + [aux_sym_cmd_identifier_token22] = ACTIONS(2510), + [aux_sym_cmd_identifier_token23] = ACTIONS(2510), + [aux_sym_cmd_identifier_token24] = ACTIONS(2510), + [aux_sym_cmd_identifier_token25] = ACTIONS(2510), + [aux_sym_cmd_identifier_token26] = ACTIONS(2510), + [aux_sym_cmd_identifier_token27] = ACTIONS(2510), + [aux_sym_cmd_identifier_token28] = ACTIONS(2510), + [aux_sym_cmd_identifier_token29] = ACTIONS(2510), + [aux_sym_cmd_identifier_token30] = ACTIONS(2510), + [aux_sym_cmd_identifier_token31] = ACTIONS(2510), + [aux_sym_cmd_identifier_token32] = ACTIONS(2510), + [aux_sym_cmd_identifier_token33] = ACTIONS(2510), + [aux_sym_cmd_identifier_token34] = ACTIONS(2510), + [aux_sym_cmd_identifier_token35] = ACTIONS(2510), + [aux_sym_cmd_identifier_token36] = ACTIONS(2510), + [aux_sym_cmd_identifier_token37] = ACTIONS(2510), + [aux_sym_cmd_identifier_token38] = ACTIONS(2510), + [aux_sym_cmd_identifier_token39] = ACTIONS(2510), + [aux_sym_cmd_identifier_token40] = ACTIONS(2510), + [anon_sym_def] = ACTIONS(2510), + [anon_sym_export_DASHenv] = ACTIONS(2510), + [anon_sym_extern] = ACTIONS(2510), + [anon_sym_module] = ACTIONS(2510), + [anon_sym_use] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(2510), + [anon_sym_DOLLAR] = ACTIONS(2510), + [anon_sym_error] = ACTIONS(2510), + [anon_sym_DASH2] = ACTIONS(2510), + [anon_sym_break] = ACTIONS(2510), + [anon_sym_continue] = ACTIONS(2510), + [anon_sym_for] = ACTIONS(2510), + [anon_sym_in2] = ACTIONS(2510), + [anon_sym_loop] = ACTIONS(2510), + [anon_sym_make] = ACTIONS(2510), + [anon_sym_while] = ACTIONS(2510), + [anon_sym_do] = ACTIONS(2510), + [anon_sym_if] = ACTIONS(2510), + [anon_sym_else] = ACTIONS(2510), + [anon_sym_match] = ACTIONS(2510), + [anon_sym_RBRACE] = ACTIONS(2510), + [anon_sym_try] = ACTIONS(2510), + [anon_sym_catch] = ACTIONS(2510), + [anon_sym_return] = ACTIONS(2510), + [anon_sym_source] = ACTIONS(2510), + [anon_sym_source_DASHenv] = ACTIONS(2510), + [anon_sym_register] = ACTIONS(2510), + [anon_sym_hide] = ACTIONS(2510), + [anon_sym_hide_DASHenv] = ACTIONS(2510), + [anon_sym_overlay] = ACTIONS(2510), + [anon_sym_as] = ACTIONS(2510), + [anon_sym_PLUS2] = ACTIONS(2510), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2510), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2510), + [aux_sym__val_number_decimal_token1] = ACTIONS(2510), + [aux_sym__val_number_decimal_token2] = ACTIONS(2510), + [aux_sym__val_number_decimal_token3] = ACTIONS(2510), + [aux_sym__val_number_decimal_token4] = ACTIONS(2510), + [aux_sym__val_number_token1] = ACTIONS(2510), + [aux_sym__val_number_token2] = ACTIONS(2510), + [aux_sym__val_number_token3] = ACTIONS(2510), + [aux_sym__val_number_token4] = ACTIONS(2510), + [aux_sym__val_number_token5] = ACTIONS(2510), + [aux_sym__val_number_token6] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2510), + [sym__str_single_quotes] = ACTIONS(2510), + [sym__str_back_ticks] = ACTIONS(2510), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2510), + [sym__entry_separator] = ACTIONS(2512), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2510), + [sym_raw_string_begin] = ACTIONS(2512), }, [693] = { [sym_comment] = STATE(693), - [anon_sym_export] = ACTIONS(2512), - [anon_sym_alias] = ACTIONS(2512), - [anon_sym_let] = ACTIONS(2512), - [anon_sym_let_DASHenv] = ACTIONS(2512), - [anon_sym_mut] = ACTIONS(2512), - [anon_sym_const] = ACTIONS(2512), - [aux_sym_cmd_identifier_token1] = ACTIONS(2512), - [aux_sym_cmd_identifier_token2] = ACTIONS(2512), - [aux_sym_cmd_identifier_token3] = ACTIONS(2512), - [aux_sym_cmd_identifier_token4] = ACTIONS(2512), - [aux_sym_cmd_identifier_token5] = ACTIONS(2512), - [aux_sym_cmd_identifier_token6] = ACTIONS(2512), - [aux_sym_cmd_identifier_token7] = ACTIONS(2512), - [aux_sym_cmd_identifier_token8] = ACTIONS(2512), - [aux_sym_cmd_identifier_token9] = ACTIONS(2512), - [aux_sym_cmd_identifier_token10] = ACTIONS(2512), - [aux_sym_cmd_identifier_token11] = ACTIONS(2512), - [aux_sym_cmd_identifier_token12] = ACTIONS(2512), - [aux_sym_cmd_identifier_token13] = ACTIONS(2512), - [aux_sym_cmd_identifier_token14] = ACTIONS(2512), - [aux_sym_cmd_identifier_token15] = ACTIONS(2512), - [aux_sym_cmd_identifier_token16] = ACTIONS(2512), - [aux_sym_cmd_identifier_token17] = ACTIONS(2512), - [aux_sym_cmd_identifier_token18] = ACTIONS(2512), - [aux_sym_cmd_identifier_token19] = ACTIONS(2512), - [aux_sym_cmd_identifier_token20] = ACTIONS(2512), - [aux_sym_cmd_identifier_token21] = ACTIONS(2512), - [aux_sym_cmd_identifier_token22] = ACTIONS(2512), - [aux_sym_cmd_identifier_token23] = ACTIONS(2512), - [aux_sym_cmd_identifier_token24] = ACTIONS(2512), - [aux_sym_cmd_identifier_token25] = ACTIONS(2512), - [aux_sym_cmd_identifier_token26] = ACTIONS(2512), - [aux_sym_cmd_identifier_token27] = ACTIONS(2512), - [aux_sym_cmd_identifier_token28] = ACTIONS(2512), - [aux_sym_cmd_identifier_token29] = ACTIONS(2512), - [aux_sym_cmd_identifier_token30] = ACTIONS(2512), - [aux_sym_cmd_identifier_token31] = ACTIONS(2512), - [aux_sym_cmd_identifier_token32] = ACTIONS(2512), - [aux_sym_cmd_identifier_token33] = ACTIONS(2512), - [aux_sym_cmd_identifier_token34] = ACTIONS(2512), - [aux_sym_cmd_identifier_token35] = ACTIONS(2512), - [aux_sym_cmd_identifier_token36] = ACTIONS(2512), - [aux_sym_cmd_identifier_token37] = ACTIONS(2512), - [aux_sym_cmd_identifier_token38] = ACTIONS(2512), - [aux_sym_cmd_identifier_token39] = ACTIONS(2512), - [aux_sym_cmd_identifier_token40] = ACTIONS(2512), - [anon_sym_def] = ACTIONS(2512), - [anon_sym_export_DASHenv] = ACTIONS(2512), - [anon_sym_extern] = ACTIONS(2512), - [anon_sym_module] = ACTIONS(2512), - [anon_sym_use] = ACTIONS(2512), - [anon_sym_LPAREN] = ACTIONS(2512), - [anon_sym_DOLLAR] = ACTIONS(2512), - [anon_sym_error] = ACTIONS(2512), - [anon_sym_DASH2] = ACTIONS(2512), - [anon_sym_break] = ACTIONS(2512), - [anon_sym_continue] = ACTIONS(2512), - [anon_sym_for] = ACTIONS(2512), - [anon_sym_in2] = ACTIONS(2512), - [anon_sym_loop] = ACTIONS(2512), - [anon_sym_make] = ACTIONS(2512), - [anon_sym_while] = ACTIONS(2512), - [anon_sym_do] = ACTIONS(2512), - [anon_sym_if] = ACTIONS(2512), - [anon_sym_else] = ACTIONS(2512), - [anon_sym_match] = ACTIONS(2512), - [anon_sym_RBRACE] = ACTIONS(2512), - [anon_sym_try] = ACTIONS(2512), - [anon_sym_catch] = ACTIONS(2512), - [anon_sym_return] = ACTIONS(2512), - [anon_sym_source] = ACTIONS(2512), - [anon_sym_source_DASHenv] = ACTIONS(2512), - [anon_sym_register] = ACTIONS(2512), - [anon_sym_hide] = ACTIONS(2512), - [anon_sym_hide_DASHenv] = ACTIONS(2512), - [anon_sym_overlay] = ACTIONS(2512), - [anon_sym_as] = ACTIONS(2512), - [anon_sym_PLUS2] = ACTIONS(2512), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2512), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2512), - [aux_sym__val_number_decimal_token1] = ACTIONS(2512), - [aux_sym__val_number_decimal_token2] = ACTIONS(2512), - [aux_sym__val_number_decimal_token3] = ACTIONS(2512), - [aux_sym__val_number_decimal_token4] = ACTIONS(2512), - [aux_sym__val_number_token1] = ACTIONS(2512), - [aux_sym__val_number_token2] = ACTIONS(2512), - [aux_sym__val_number_token3] = ACTIONS(2512), - [aux_sym__val_number_token4] = ACTIONS(2512), - [aux_sym__val_number_token5] = ACTIONS(2512), - [aux_sym__val_number_token6] = ACTIONS(2512), - [anon_sym_DQUOTE] = ACTIONS(2512), - [sym__str_single_quotes] = ACTIONS(2512), - [sym__str_back_ticks] = ACTIONS(2512), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2512), - [sym__entry_separator] = ACTIONS(2514), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2514), - }, - [694] = { - [sym_comment] = STATE(694), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_alias] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_let_DASHenv] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [aux_sym_cmd_identifier_token1] = ACTIONS(1783), - [aux_sym_cmd_identifier_token2] = ACTIONS(1785), - [aux_sym_cmd_identifier_token3] = ACTIONS(1785), - [aux_sym_cmd_identifier_token4] = ACTIONS(1785), - [aux_sym_cmd_identifier_token5] = ACTIONS(1785), - [aux_sym_cmd_identifier_token6] = ACTIONS(1785), - [aux_sym_cmd_identifier_token7] = ACTIONS(1785), - [aux_sym_cmd_identifier_token8] = ACTIONS(1783), - [aux_sym_cmd_identifier_token9] = ACTIONS(1783), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1783), - [aux_sym_cmd_identifier_token13] = ACTIONS(1783), - [aux_sym_cmd_identifier_token14] = ACTIONS(1783), - [aux_sym_cmd_identifier_token15] = ACTIONS(1783), - [aux_sym_cmd_identifier_token16] = ACTIONS(1785), - [aux_sym_cmd_identifier_token17] = ACTIONS(1785), - [aux_sym_cmd_identifier_token18] = ACTIONS(1785), - [aux_sym_cmd_identifier_token19] = ACTIONS(1785), - [aux_sym_cmd_identifier_token20] = ACTIONS(1785), - [aux_sym_cmd_identifier_token21] = ACTIONS(1785), - [aux_sym_cmd_identifier_token22] = ACTIONS(1785), - [aux_sym_cmd_identifier_token23] = ACTIONS(1785), - [aux_sym_cmd_identifier_token24] = ACTIONS(1785), - [aux_sym_cmd_identifier_token25] = ACTIONS(1785), - [aux_sym_cmd_identifier_token26] = ACTIONS(1785), - [aux_sym_cmd_identifier_token27] = ACTIONS(1785), - [aux_sym_cmd_identifier_token28] = ACTIONS(1785), - [aux_sym_cmd_identifier_token29] = ACTIONS(1785), - [aux_sym_cmd_identifier_token30] = ACTIONS(1785), - [aux_sym_cmd_identifier_token31] = ACTIONS(1785), - [aux_sym_cmd_identifier_token32] = ACTIONS(1785), - [aux_sym_cmd_identifier_token33] = ACTIONS(1785), - [aux_sym_cmd_identifier_token34] = ACTIONS(1783), - [aux_sym_cmd_identifier_token35] = ACTIONS(1785), - [aux_sym_cmd_identifier_token36] = ACTIONS(1785), - [aux_sym_cmd_identifier_token37] = ACTIONS(1785), - [aux_sym_cmd_identifier_token38] = ACTIONS(1783), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_export_DASHenv] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_error] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_make] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_catch] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_source] = ACTIONS(1783), - [anon_sym_source_DASHenv] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_hide] = ACTIONS(1783), - [anon_sym_hide_DASHenv] = ACTIONS(1783), - [anon_sym_overlay] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_PLUS2] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [aux_sym__immediate_decimal_token2] = ACTIONS(2516), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1783), - [aux_sym__val_number_token5] = ACTIONS(1783), - [aux_sym__val_number_token6] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1785), - }, - [695] = { - [sym_comment] = STATE(695), - [anon_sym_export] = ACTIONS(2512), - [anon_sym_alias] = ACTIONS(2512), - [anon_sym_let] = ACTIONS(2512), - [anon_sym_let_DASHenv] = ACTIONS(2512), - [anon_sym_mut] = ACTIONS(2512), - [anon_sym_const] = ACTIONS(2512), - [aux_sym_cmd_identifier_token1] = ACTIONS(2512), + [anon_sym_export] = ACTIONS(2514), + [anon_sym_alias] = ACTIONS(2514), + [anon_sym_let] = ACTIONS(2514), + [anon_sym_let_DASHenv] = ACTIONS(2514), + [anon_sym_mut] = ACTIONS(2514), + [anon_sym_const] = ACTIONS(2514), + [aux_sym_cmd_identifier_token1] = ACTIONS(2514), [aux_sym_cmd_identifier_token2] = ACTIONS(2514), [aux_sym_cmd_identifier_token3] = ACTIONS(2514), [aux_sym_cmd_identifier_token4] = ACTIONS(2514), [aux_sym_cmd_identifier_token5] = ACTIONS(2514), [aux_sym_cmd_identifier_token6] = ACTIONS(2514), [aux_sym_cmd_identifier_token7] = ACTIONS(2514), - [aux_sym_cmd_identifier_token8] = ACTIONS(2512), - [aux_sym_cmd_identifier_token9] = ACTIONS(2512), + [aux_sym_cmd_identifier_token8] = ACTIONS(2514), + [aux_sym_cmd_identifier_token9] = ACTIONS(2514), [aux_sym_cmd_identifier_token10] = ACTIONS(2514), [aux_sym_cmd_identifier_token11] = ACTIONS(2514), - [aux_sym_cmd_identifier_token12] = ACTIONS(2512), - [aux_sym_cmd_identifier_token13] = ACTIONS(2512), - [aux_sym_cmd_identifier_token14] = ACTIONS(2512), - [aux_sym_cmd_identifier_token15] = ACTIONS(2512), + [aux_sym_cmd_identifier_token12] = ACTIONS(2514), + [aux_sym_cmd_identifier_token13] = ACTIONS(2514), + [aux_sym_cmd_identifier_token14] = ACTIONS(2514), + [aux_sym_cmd_identifier_token15] = ACTIONS(2514), [aux_sym_cmd_identifier_token16] = ACTIONS(2514), [aux_sym_cmd_identifier_token17] = ACTIONS(2514), [aux_sym_cmd_identifier_token18] = ACTIONS(2514), @@ -149436,66 +149555,860 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(2514), [aux_sym_cmd_identifier_token32] = ACTIONS(2514), [aux_sym_cmd_identifier_token33] = ACTIONS(2514), - [aux_sym_cmd_identifier_token34] = ACTIONS(2512), + [aux_sym_cmd_identifier_token34] = ACTIONS(2514), [aux_sym_cmd_identifier_token35] = ACTIONS(2514), [aux_sym_cmd_identifier_token36] = ACTIONS(2514), [aux_sym_cmd_identifier_token37] = ACTIONS(2514), - [aux_sym_cmd_identifier_token38] = ACTIONS(2512), + [aux_sym_cmd_identifier_token38] = ACTIONS(2514), [aux_sym_cmd_identifier_token39] = ACTIONS(2514), [aux_sym_cmd_identifier_token40] = ACTIONS(2514), - [anon_sym_def] = ACTIONS(2512), - [anon_sym_export_DASHenv] = ACTIONS(2512), - [anon_sym_extern] = ACTIONS(2512), - [anon_sym_module] = ACTIONS(2512), - [anon_sym_use] = ACTIONS(2512), + [anon_sym_def] = ACTIONS(2514), + [anon_sym_export_DASHenv] = ACTIONS(2514), + [anon_sym_extern] = ACTIONS(2514), + [anon_sym_module] = ACTIONS(2514), + [anon_sym_use] = ACTIONS(2514), [anon_sym_LPAREN] = ACTIONS(2514), [anon_sym_DOLLAR] = ACTIONS(2514), - [anon_sym_error] = ACTIONS(2512), - [anon_sym_DASH2] = ACTIONS(2512), - [anon_sym_break] = ACTIONS(2512), - [anon_sym_continue] = ACTIONS(2512), - [anon_sym_for] = ACTIONS(2512), - [anon_sym_in2] = ACTIONS(2512), - [anon_sym_loop] = ACTIONS(2512), - [anon_sym_make] = ACTIONS(2512), - [anon_sym_while] = ACTIONS(2512), - [anon_sym_do] = ACTIONS(2512), - [anon_sym_if] = ACTIONS(2512), - [anon_sym_else] = ACTIONS(2512), - [anon_sym_match] = ACTIONS(2512), + [anon_sym_error] = ACTIONS(2514), + [anon_sym_DASH2] = ACTIONS(2514), + [anon_sym_break] = ACTIONS(2514), + [anon_sym_continue] = ACTIONS(2514), + [anon_sym_for] = ACTIONS(2514), + [anon_sym_in2] = ACTIONS(2514), + [anon_sym_loop] = ACTIONS(2514), + [anon_sym_make] = ACTIONS(2514), + [anon_sym_while] = ACTIONS(2514), + [anon_sym_do] = ACTIONS(2514), + [anon_sym_if] = ACTIONS(2514), + [anon_sym_else] = ACTIONS(2514), + [anon_sym_match] = ACTIONS(2514), [anon_sym_RBRACE] = ACTIONS(2514), - [anon_sym_try] = ACTIONS(2512), - [anon_sym_catch] = ACTIONS(2512), - [anon_sym_return] = ACTIONS(2512), - [anon_sym_source] = ACTIONS(2512), - [anon_sym_source_DASHenv] = ACTIONS(2512), - [anon_sym_register] = ACTIONS(2512), - [anon_sym_hide] = ACTIONS(2512), - [anon_sym_hide_DASHenv] = ACTIONS(2512), - [anon_sym_overlay] = ACTIONS(2512), - [anon_sym_as] = ACTIONS(2512), - [anon_sym_PLUS2] = ACTIONS(2512), + [anon_sym_try] = ACTIONS(2514), + [anon_sym_catch] = ACTIONS(2514), + [anon_sym_return] = ACTIONS(2514), + [anon_sym_source] = ACTIONS(2514), + [anon_sym_source_DASHenv] = ACTIONS(2514), + [anon_sym_register] = ACTIONS(2514), + [anon_sym_hide] = ACTIONS(2514), + [anon_sym_hide_DASHenv] = ACTIONS(2514), + [anon_sym_overlay] = ACTIONS(2514), + [anon_sym_as] = ACTIONS(2514), + [anon_sym_PLUS2] = ACTIONS(2514), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2514), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2514), - [aux_sym__val_number_decimal_token1] = ACTIONS(2512), + [aux_sym__val_number_decimal_token1] = ACTIONS(2514), [aux_sym__val_number_decimal_token2] = ACTIONS(2514), [aux_sym__val_number_decimal_token3] = ACTIONS(2514), [aux_sym__val_number_decimal_token4] = ACTIONS(2514), [aux_sym__val_number_token1] = ACTIONS(2514), [aux_sym__val_number_token2] = ACTIONS(2514), [aux_sym__val_number_token3] = ACTIONS(2514), - [aux_sym__val_number_token4] = ACTIONS(2512), - [aux_sym__val_number_token5] = ACTIONS(2512), - [aux_sym__val_number_token6] = ACTIONS(2512), + [aux_sym__val_number_token4] = ACTIONS(2514), + [aux_sym__val_number_token5] = ACTIONS(2514), + [aux_sym__val_number_token6] = ACTIONS(2514), [anon_sym_DQUOTE] = ACTIONS(2514), [sym__str_single_quotes] = ACTIONS(2514), [sym__str_back_ticks] = ACTIONS(2514), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2514), + [sym__entry_separator] = ACTIONS(2516), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2516), + }, + [694] = { + [sym_comment] = STATE(694), + [anon_sym_export] = ACTIONS(990), + [anon_sym_alias] = ACTIONS(990), + [anon_sym_let] = ACTIONS(990), + [anon_sym_let_DASHenv] = ACTIONS(990), + [anon_sym_mut] = ACTIONS(990), + [anon_sym_const] = ACTIONS(990), + [aux_sym_cmd_identifier_token1] = ACTIONS(990), + [aux_sym_cmd_identifier_token2] = ACTIONS(990), + [aux_sym_cmd_identifier_token3] = ACTIONS(990), + [aux_sym_cmd_identifier_token4] = ACTIONS(990), + [aux_sym_cmd_identifier_token5] = ACTIONS(990), + [aux_sym_cmd_identifier_token6] = ACTIONS(990), + [aux_sym_cmd_identifier_token7] = ACTIONS(990), + [aux_sym_cmd_identifier_token8] = ACTIONS(990), + [aux_sym_cmd_identifier_token9] = ACTIONS(990), + [aux_sym_cmd_identifier_token10] = ACTIONS(990), + [aux_sym_cmd_identifier_token11] = ACTIONS(990), + [aux_sym_cmd_identifier_token12] = ACTIONS(990), + [aux_sym_cmd_identifier_token13] = ACTIONS(990), + [aux_sym_cmd_identifier_token14] = ACTIONS(990), + [aux_sym_cmd_identifier_token15] = ACTIONS(990), + [aux_sym_cmd_identifier_token16] = ACTIONS(990), + [aux_sym_cmd_identifier_token17] = ACTIONS(990), + [aux_sym_cmd_identifier_token18] = ACTIONS(990), + [aux_sym_cmd_identifier_token19] = ACTIONS(990), + [aux_sym_cmd_identifier_token20] = ACTIONS(990), + [aux_sym_cmd_identifier_token21] = ACTIONS(990), + [aux_sym_cmd_identifier_token22] = ACTIONS(990), + [aux_sym_cmd_identifier_token23] = ACTIONS(990), + [aux_sym_cmd_identifier_token24] = ACTIONS(990), + [aux_sym_cmd_identifier_token25] = ACTIONS(990), + [aux_sym_cmd_identifier_token26] = ACTIONS(990), + [aux_sym_cmd_identifier_token27] = ACTIONS(990), + [aux_sym_cmd_identifier_token28] = ACTIONS(990), + [aux_sym_cmd_identifier_token29] = ACTIONS(990), + [aux_sym_cmd_identifier_token30] = ACTIONS(990), + [aux_sym_cmd_identifier_token31] = ACTIONS(990), + [aux_sym_cmd_identifier_token32] = ACTIONS(990), + [aux_sym_cmd_identifier_token33] = ACTIONS(990), + [aux_sym_cmd_identifier_token34] = ACTIONS(990), + [aux_sym_cmd_identifier_token35] = ACTIONS(990), + [aux_sym_cmd_identifier_token36] = ACTIONS(990), + [aux_sym_cmd_identifier_token37] = ACTIONS(990), + [aux_sym_cmd_identifier_token38] = ACTIONS(990), + [aux_sym_cmd_identifier_token39] = ACTIONS(990), + [aux_sym_cmd_identifier_token40] = ACTIONS(990), + [anon_sym_def] = ACTIONS(990), + [anon_sym_export_DASHenv] = ACTIONS(990), + [anon_sym_extern] = ACTIONS(990), + [anon_sym_module] = ACTIONS(990), + [anon_sym_use] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(990), + [anon_sym_DOLLAR] = ACTIONS(990), + [anon_sym_error] = ACTIONS(990), + [anon_sym_DASH2] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_continue] = ACTIONS(990), + [anon_sym_for] = ACTIONS(990), + [anon_sym_in2] = ACTIONS(990), + [anon_sym_loop] = ACTIONS(990), + [anon_sym_make] = ACTIONS(990), + [anon_sym_while] = ACTIONS(990), + [anon_sym_do] = ACTIONS(990), + [anon_sym_if] = ACTIONS(990), + [anon_sym_else] = ACTIONS(990), + [anon_sym_match] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_try] = ACTIONS(990), + [anon_sym_catch] = ACTIONS(990), + [anon_sym_return] = ACTIONS(990), + [anon_sym_source] = ACTIONS(990), + [anon_sym_source_DASHenv] = ACTIONS(990), + [anon_sym_register] = ACTIONS(990), + [anon_sym_hide] = ACTIONS(990), + [anon_sym_hide_DASHenv] = ACTIONS(990), + [anon_sym_overlay] = ACTIONS(990), + [anon_sym_as] = ACTIONS(990), + [anon_sym_PLUS2] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(990), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [aux_sym__val_number_decimal_token2] = ACTIONS(990), + [aux_sym__val_number_decimal_token3] = ACTIONS(990), + [aux_sym__val_number_decimal_token4] = ACTIONS(990), + [aux_sym__val_number_token1] = ACTIONS(990), + [aux_sym__val_number_token2] = ACTIONS(990), + [aux_sym__val_number_token3] = ACTIONS(990), + [aux_sym__val_number_token4] = ACTIONS(990), + [aux_sym__val_number_token5] = ACTIONS(990), + [aux_sym__val_number_token6] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym__str_single_quotes] = ACTIONS(990), + [sym__str_back_ticks] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(990), + [sym__entry_separator] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(992), + }, + [695] = { + [sym_comment] = STATE(695), + [anon_sym_export] = ACTIONS(2379), + [anon_sym_alias] = ACTIONS(2379), + [anon_sym_let] = ACTIONS(2379), + [anon_sym_let_DASHenv] = ACTIONS(2379), + [anon_sym_mut] = ACTIONS(2379), + [anon_sym_const] = ACTIONS(2379), + [aux_sym_cmd_identifier_token1] = ACTIONS(2379), + [aux_sym_cmd_identifier_token2] = ACTIONS(2381), + [aux_sym_cmd_identifier_token3] = ACTIONS(2381), + [aux_sym_cmd_identifier_token4] = ACTIONS(2381), + [aux_sym_cmd_identifier_token5] = ACTIONS(2381), + [aux_sym_cmd_identifier_token6] = ACTIONS(2381), + [aux_sym_cmd_identifier_token7] = ACTIONS(2381), + [aux_sym_cmd_identifier_token8] = ACTIONS(2379), + [aux_sym_cmd_identifier_token9] = ACTIONS(2379), + [aux_sym_cmd_identifier_token10] = ACTIONS(2381), + [aux_sym_cmd_identifier_token11] = ACTIONS(2381), + [aux_sym_cmd_identifier_token12] = ACTIONS(2379), + [aux_sym_cmd_identifier_token13] = ACTIONS(2379), + [aux_sym_cmd_identifier_token14] = ACTIONS(2379), + [aux_sym_cmd_identifier_token15] = ACTIONS(2379), + [aux_sym_cmd_identifier_token16] = ACTIONS(2381), + [aux_sym_cmd_identifier_token17] = ACTIONS(2381), + [aux_sym_cmd_identifier_token18] = ACTIONS(2381), + [aux_sym_cmd_identifier_token19] = ACTIONS(2381), + [aux_sym_cmd_identifier_token20] = ACTIONS(2381), + [aux_sym_cmd_identifier_token21] = ACTIONS(2381), + [aux_sym_cmd_identifier_token22] = ACTIONS(2381), + [aux_sym_cmd_identifier_token23] = ACTIONS(2381), + [aux_sym_cmd_identifier_token24] = ACTIONS(2381), + [aux_sym_cmd_identifier_token25] = ACTIONS(2381), + [aux_sym_cmd_identifier_token26] = ACTIONS(2381), + [aux_sym_cmd_identifier_token27] = ACTIONS(2381), + [aux_sym_cmd_identifier_token28] = ACTIONS(2381), + [aux_sym_cmd_identifier_token29] = ACTIONS(2381), + [aux_sym_cmd_identifier_token30] = ACTIONS(2381), + [aux_sym_cmd_identifier_token31] = ACTIONS(2381), + [aux_sym_cmd_identifier_token32] = ACTIONS(2381), + [aux_sym_cmd_identifier_token33] = ACTIONS(2381), + [aux_sym_cmd_identifier_token34] = ACTIONS(2379), + [aux_sym_cmd_identifier_token35] = ACTIONS(2381), + [aux_sym_cmd_identifier_token36] = ACTIONS(2381), + [aux_sym_cmd_identifier_token37] = ACTIONS(2381), + [aux_sym_cmd_identifier_token38] = ACTIONS(2379), + [aux_sym_cmd_identifier_token39] = ACTIONS(2381), + [aux_sym_cmd_identifier_token40] = ACTIONS(2381), + [anon_sym_def] = ACTIONS(2379), + [anon_sym_export_DASHenv] = ACTIONS(2379), + [anon_sym_extern] = ACTIONS(2379), + [anon_sym_module] = ACTIONS(2379), + [anon_sym_use] = ACTIONS(2379), + [anon_sym_LPAREN] = ACTIONS(2381), + [anon_sym_DOLLAR] = ACTIONS(2381), + [anon_sym_error] = ACTIONS(2379), + [anon_sym_DASH2] = ACTIONS(2379), + [anon_sym_break] = ACTIONS(2379), + [anon_sym_continue] = ACTIONS(2379), + [anon_sym_for] = ACTIONS(2379), + [anon_sym_in2] = ACTIONS(2379), + [anon_sym_loop] = ACTIONS(2379), + [anon_sym_make] = ACTIONS(2379), + [anon_sym_while] = ACTIONS(2379), + [anon_sym_do] = ACTIONS(2379), + [anon_sym_if] = ACTIONS(2379), + [anon_sym_else] = ACTIONS(2379), + [anon_sym_match] = ACTIONS(2379), + [anon_sym_RBRACE] = ACTIONS(2381), + [anon_sym_try] = ACTIONS(2379), + [anon_sym_catch] = ACTIONS(2379), + [anon_sym_return] = ACTIONS(2379), + [anon_sym_source] = ACTIONS(2379), + [anon_sym_source_DASHenv] = ACTIONS(2379), + [anon_sym_register] = ACTIONS(2379), + [anon_sym_hide] = ACTIONS(2379), + [anon_sym_hide_DASHenv] = ACTIONS(2379), + [anon_sym_overlay] = ACTIONS(2379), + [anon_sym_as] = ACTIONS(2379), + [anon_sym_PLUS2] = ACTIONS(2379), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2381), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2381), + [aux_sym__val_number_decimal_token1] = ACTIONS(2379), + [aux_sym__val_number_decimal_token2] = ACTIONS(2381), + [aux_sym__val_number_decimal_token3] = ACTIONS(2381), + [aux_sym__val_number_decimal_token4] = ACTIONS(2381), + [aux_sym__val_number_token1] = ACTIONS(2381), + [aux_sym__val_number_token2] = ACTIONS(2381), + [aux_sym__val_number_token3] = ACTIONS(2381), + [aux_sym__val_number_token4] = ACTIONS(2379), + [aux_sym__val_number_token5] = ACTIONS(2379), + [aux_sym__val_number_token6] = ACTIONS(2379), + [anon_sym_DQUOTE] = ACTIONS(2381), + [sym__str_single_quotes] = ACTIONS(2381), + [sym__str_back_ticks] = ACTIONS(2381), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2381), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2381), + }, + [696] = { + [sym_comment] = STATE(696), + [anon_sym_export] = ACTIONS(2165), + [anon_sym_alias] = ACTIONS(2165), + [anon_sym_let] = ACTIONS(2165), + [anon_sym_let_DASHenv] = ACTIONS(2165), + [anon_sym_mut] = ACTIONS(2165), + [anon_sym_const] = ACTIONS(2165), + [aux_sym_cmd_identifier_token1] = ACTIONS(2165), + [aux_sym_cmd_identifier_token2] = ACTIONS(2171), + [aux_sym_cmd_identifier_token3] = ACTIONS(2171), + [aux_sym_cmd_identifier_token4] = ACTIONS(2171), + [aux_sym_cmd_identifier_token5] = ACTIONS(2171), + [aux_sym_cmd_identifier_token6] = ACTIONS(2171), + [aux_sym_cmd_identifier_token7] = ACTIONS(2171), + [aux_sym_cmd_identifier_token8] = ACTIONS(2165), + [aux_sym_cmd_identifier_token9] = ACTIONS(2165), + [aux_sym_cmd_identifier_token10] = ACTIONS(2171), + [aux_sym_cmd_identifier_token11] = ACTIONS(2171), + [aux_sym_cmd_identifier_token12] = ACTIONS(2165), + [aux_sym_cmd_identifier_token13] = ACTIONS(2165), + [aux_sym_cmd_identifier_token14] = ACTIONS(2165), + [aux_sym_cmd_identifier_token15] = ACTIONS(2165), + [aux_sym_cmd_identifier_token16] = ACTIONS(2171), + [aux_sym_cmd_identifier_token17] = ACTIONS(2171), + [aux_sym_cmd_identifier_token18] = ACTIONS(2171), + [aux_sym_cmd_identifier_token19] = ACTIONS(2171), + [aux_sym_cmd_identifier_token20] = ACTIONS(2171), + [aux_sym_cmd_identifier_token21] = ACTIONS(2171), + [aux_sym_cmd_identifier_token22] = ACTIONS(2171), + [aux_sym_cmd_identifier_token23] = ACTIONS(2171), + [aux_sym_cmd_identifier_token24] = ACTIONS(2171), + [aux_sym_cmd_identifier_token25] = ACTIONS(2171), + [aux_sym_cmd_identifier_token26] = ACTIONS(2171), + [aux_sym_cmd_identifier_token27] = ACTIONS(2171), + [aux_sym_cmd_identifier_token28] = ACTIONS(2171), + [aux_sym_cmd_identifier_token29] = ACTIONS(2171), + [aux_sym_cmd_identifier_token30] = ACTIONS(2171), + [aux_sym_cmd_identifier_token31] = ACTIONS(2171), + [aux_sym_cmd_identifier_token32] = ACTIONS(2171), + [aux_sym_cmd_identifier_token33] = ACTIONS(2171), + [aux_sym_cmd_identifier_token34] = ACTIONS(2165), + [aux_sym_cmd_identifier_token35] = ACTIONS(2171), + [aux_sym_cmd_identifier_token36] = ACTIONS(2171), + [aux_sym_cmd_identifier_token37] = ACTIONS(2171), + [aux_sym_cmd_identifier_token38] = ACTIONS(2165), + [aux_sym_cmd_identifier_token39] = ACTIONS(2171), + [aux_sym_cmd_identifier_token40] = ACTIONS(2171), + [anon_sym_def] = ACTIONS(2165), + [anon_sym_export_DASHenv] = ACTIONS(2165), + [anon_sym_extern] = ACTIONS(2165), + [anon_sym_module] = ACTIONS(2165), + [anon_sym_use] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_DOLLAR] = ACTIONS(2171), + [anon_sym_error] = ACTIONS(2165), + [anon_sym_DASH2] = ACTIONS(2165), + [anon_sym_break] = ACTIONS(2165), + [anon_sym_continue] = ACTIONS(2165), + [anon_sym_for] = ACTIONS(2165), + [anon_sym_in2] = ACTIONS(2165), + [anon_sym_loop] = ACTIONS(2165), + [anon_sym_make] = ACTIONS(2165), + [anon_sym_while] = ACTIONS(2165), + [anon_sym_do] = ACTIONS(2165), + [anon_sym_if] = ACTIONS(2165), + [anon_sym_else] = ACTIONS(2165), + [anon_sym_match] = ACTIONS(2165), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_try] = ACTIONS(2165), + [anon_sym_catch] = ACTIONS(2165), + [anon_sym_return] = ACTIONS(2165), + [anon_sym_source] = ACTIONS(2165), + [anon_sym_source_DASHenv] = ACTIONS(2165), + [anon_sym_register] = ACTIONS(2165), + [anon_sym_hide] = ACTIONS(2165), + [anon_sym_hide_DASHenv] = ACTIONS(2165), + [anon_sym_overlay] = ACTIONS(2165), + [anon_sym_as] = ACTIONS(2165), + [anon_sym_PLUS2] = ACTIONS(2165), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2171), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2171), + [aux_sym__val_number_decimal_token1] = ACTIONS(2165), + [aux_sym__val_number_decimal_token2] = ACTIONS(2171), + [aux_sym__val_number_decimal_token3] = ACTIONS(2171), + [aux_sym__val_number_decimal_token4] = ACTIONS(2171), + [aux_sym__val_number_token1] = ACTIONS(2171), + [aux_sym__val_number_token2] = ACTIONS(2171), + [aux_sym__val_number_token3] = ACTIONS(2171), + [aux_sym__val_number_token4] = ACTIONS(2165), + [aux_sym__val_number_token5] = ACTIONS(2165), + [aux_sym__val_number_token6] = ACTIONS(2165), + [anon_sym_DQUOTE] = ACTIONS(2171), + [sym__str_single_quotes] = ACTIONS(2171), + [sym__str_back_ticks] = ACTIONS(2171), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2171), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2171), + }, + [697] = { + [sym_comment] = STATE(697), + [anon_sym_export] = ACTIONS(2018), + [anon_sym_alias] = ACTIONS(2018), + [anon_sym_let] = ACTIONS(2018), + [anon_sym_let_DASHenv] = ACTIONS(2018), + [anon_sym_mut] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(2018), + [aux_sym_cmd_identifier_token1] = ACTIONS(2018), + [aux_sym_cmd_identifier_token2] = ACTIONS(2020), + [aux_sym_cmd_identifier_token3] = ACTIONS(2020), + [aux_sym_cmd_identifier_token4] = ACTIONS(2020), + [aux_sym_cmd_identifier_token5] = ACTIONS(2020), + [aux_sym_cmd_identifier_token6] = ACTIONS(2020), + [aux_sym_cmd_identifier_token7] = ACTIONS(2020), + [aux_sym_cmd_identifier_token8] = ACTIONS(2018), + [aux_sym_cmd_identifier_token9] = ACTIONS(2018), + [aux_sym_cmd_identifier_token10] = ACTIONS(2020), + [aux_sym_cmd_identifier_token11] = ACTIONS(2020), + [aux_sym_cmd_identifier_token12] = ACTIONS(2018), + [aux_sym_cmd_identifier_token13] = ACTIONS(2018), + [aux_sym_cmd_identifier_token14] = ACTIONS(2018), + [aux_sym_cmd_identifier_token15] = ACTIONS(2018), + [aux_sym_cmd_identifier_token16] = ACTIONS(2020), + [aux_sym_cmd_identifier_token17] = ACTIONS(2020), + [aux_sym_cmd_identifier_token18] = ACTIONS(2020), + [aux_sym_cmd_identifier_token19] = ACTIONS(2020), + [aux_sym_cmd_identifier_token20] = ACTIONS(2020), + [aux_sym_cmd_identifier_token21] = ACTIONS(2020), + [aux_sym_cmd_identifier_token22] = ACTIONS(2020), + [aux_sym_cmd_identifier_token23] = ACTIONS(2020), + [aux_sym_cmd_identifier_token24] = ACTIONS(2020), + [aux_sym_cmd_identifier_token25] = ACTIONS(2020), + [aux_sym_cmd_identifier_token26] = ACTIONS(2020), + [aux_sym_cmd_identifier_token27] = ACTIONS(2020), + [aux_sym_cmd_identifier_token28] = ACTIONS(2020), + [aux_sym_cmd_identifier_token29] = ACTIONS(2020), + [aux_sym_cmd_identifier_token30] = ACTIONS(2020), + [aux_sym_cmd_identifier_token31] = ACTIONS(2020), + [aux_sym_cmd_identifier_token32] = ACTIONS(2020), + [aux_sym_cmd_identifier_token33] = ACTIONS(2020), + [aux_sym_cmd_identifier_token34] = ACTIONS(2018), + [aux_sym_cmd_identifier_token35] = ACTIONS(2020), + [aux_sym_cmd_identifier_token36] = ACTIONS(2020), + [aux_sym_cmd_identifier_token37] = ACTIONS(2020), + [aux_sym_cmd_identifier_token38] = ACTIONS(2018), + [aux_sym_cmd_identifier_token39] = ACTIONS(2020), + [aux_sym_cmd_identifier_token40] = ACTIONS(2020), + [anon_sym_def] = ACTIONS(2018), + [anon_sym_export_DASHenv] = ACTIONS(2018), + [anon_sym_extern] = ACTIONS(2018), + [anon_sym_module] = ACTIONS(2018), + [anon_sym_use] = ACTIONS(2018), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_DOLLAR] = ACTIONS(2020), + [anon_sym_error] = ACTIONS(2018), + [anon_sym_DASH2] = ACTIONS(2018), + [anon_sym_break] = ACTIONS(2018), + [anon_sym_continue] = ACTIONS(2018), + [anon_sym_for] = ACTIONS(2018), + [anon_sym_in2] = ACTIONS(2018), + [anon_sym_loop] = ACTIONS(2018), + [anon_sym_make] = ACTIONS(2018), + [anon_sym_while] = ACTIONS(2018), + [anon_sym_do] = ACTIONS(2018), + [anon_sym_if] = ACTIONS(2018), + [anon_sym_else] = ACTIONS(2018), + [anon_sym_match] = ACTIONS(2018), + [anon_sym_RBRACE] = ACTIONS(2020), + [anon_sym_try] = ACTIONS(2018), + [anon_sym_catch] = ACTIONS(2018), + [anon_sym_return] = ACTIONS(2018), + [anon_sym_source] = ACTIONS(2018), + [anon_sym_source_DASHenv] = ACTIONS(2018), + [anon_sym_register] = ACTIONS(2018), + [anon_sym_hide] = ACTIONS(2018), + [anon_sym_hide_DASHenv] = ACTIONS(2018), + [anon_sym_overlay] = ACTIONS(2018), + [anon_sym_as] = ACTIONS(2018), + [anon_sym_PLUS2] = ACTIONS(2018), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2020), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2020), + [aux_sym__val_number_decimal_token1] = ACTIONS(2018), + [aux_sym__val_number_decimal_token2] = ACTIONS(2020), + [aux_sym__val_number_decimal_token3] = ACTIONS(2020), + [aux_sym__val_number_decimal_token4] = ACTIONS(2020), + [aux_sym__val_number_token1] = ACTIONS(2020), + [aux_sym__val_number_token2] = ACTIONS(2020), + [aux_sym__val_number_token3] = ACTIONS(2020), + [aux_sym__val_number_token4] = ACTIONS(2018), + [aux_sym__val_number_token5] = ACTIONS(2018), + [aux_sym__val_number_token6] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2020), + [sym__str_single_quotes] = ACTIONS(2020), + [sym__str_back_ticks] = ACTIONS(2020), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2020), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2020), + }, + [698] = { + [sym_comment] = STATE(698), + [anon_sym_export] = ACTIONS(2173), + [anon_sym_alias] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_let_DASHenv] = ACTIONS(2173), + [anon_sym_mut] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [aux_sym_cmd_identifier_token1] = ACTIONS(2173), + [aux_sym_cmd_identifier_token2] = ACTIONS(2175), + [aux_sym_cmd_identifier_token3] = ACTIONS(2175), + [aux_sym_cmd_identifier_token4] = ACTIONS(2175), + [aux_sym_cmd_identifier_token5] = ACTIONS(2175), + [aux_sym_cmd_identifier_token6] = ACTIONS(2175), + [aux_sym_cmd_identifier_token7] = ACTIONS(2175), + [aux_sym_cmd_identifier_token8] = ACTIONS(2173), + [aux_sym_cmd_identifier_token9] = ACTIONS(2173), + [aux_sym_cmd_identifier_token10] = ACTIONS(2175), + [aux_sym_cmd_identifier_token11] = ACTIONS(2175), + [aux_sym_cmd_identifier_token12] = ACTIONS(2173), + [aux_sym_cmd_identifier_token13] = ACTIONS(2173), + [aux_sym_cmd_identifier_token14] = ACTIONS(2173), + [aux_sym_cmd_identifier_token15] = ACTIONS(2173), + [aux_sym_cmd_identifier_token16] = ACTIONS(2175), + [aux_sym_cmd_identifier_token17] = ACTIONS(2175), + [aux_sym_cmd_identifier_token18] = ACTIONS(2175), + [aux_sym_cmd_identifier_token19] = ACTIONS(2175), + [aux_sym_cmd_identifier_token20] = ACTIONS(2175), + [aux_sym_cmd_identifier_token21] = ACTIONS(2175), + [aux_sym_cmd_identifier_token22] = ACTIONS(2175), + [aux_sym_cmd_identifier_token23] = ACTIONS(2175), + [aux_sym_cmd_identifier_token24] = ACTIONS(2175), + [aux_sym_cmd_identifier_token25] = ACTIONS(2175), + [aux_sym_cmd_identifier_token26] = ACTIONS(2175), + [aux_sym_cmd_identifier_token27] = ACTIONS(2175), + [aux_sym_cmd_identifier_token28] = ACTIONS(2175), + [aux_sym_cmd_identifier_token29] = ACTIONS(2175), + [aux_sym_cmd_identifier_token30] = ACTIONS(2175), + [aux_sym_cmd_identifier_token31] = ACTIONS(2175), + [aux_sym_cmd_identifier_token32] = ACTIONS(2175), + [aux_sym_cmd_identifier_token33] = ACTIONS(2175), + [aux_sym_cmd_identifier_token34] = ACTIONS(2173), + [aux_sym_cmd_identifier_token35] = ACTIONS(2175), + [aux_sym_cmd_identifier_token36] = ACTIONS(2175), + [aux_sym_cmd_identifier_token37] = ACTIONS(2175), + [aux_sym_cmd_identifier_token38] = ACTIONS(2173), + [aux_sym_cmd_identifier_token39] = ACTIONS(2175), + [aux_sym_cmd_identifier_token40] = ACTIONS(2175), + [anon_sym_def] = ACTIONS(2173), + [anon_sym_export_DASHenv] = ACTIONS(2173), + [anon_sym_extern] = ACTIONS(2173), + [anon_sym_module] = ACTIONS(2173), + [anon_sym_use] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_DOLLAR] = ACTIONS(2175), + [anon_sym_error] = ACTIONS(2173), + [anon_sym_DASH2] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_in2] = ACTIONS(2173), + [anon_sym_loop] = ACTIONS(2173), + [anon_sym_make] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_do] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_else] = ACTIONS(2173), + [anon_sym_match] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_catch] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_source] = ACTIONS(2173), + [anon_sym_source_DASHenv] = ACTIONS(2173), + [anon_sym_register] = ACTIONS(2173), + [anon_sym_hide] = ACTIONS(2173), + [anon_sym_hide_DASHenv] = ACTIONS(2173), + [anon_sym_overlay] = ACTIONS(2173), + [anon_sym_as] = ACTIONS(2173), + [anon_sym_PLUS2] = ACTIONS(2173), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2175), + [aux_sym__val_number_decimal_token1] = ACTIONS(2173), + [aux_sym__val_number_decimal_token2] = ACTIONS(2175), + [aux_sym__val_number_decimal_token3] = ACTIONS(2175), + [aux_sym__val_number_decimal_token4] = ACTIONS(2175), + [aux_sym__val_number_token1] = ACTIONS(2175), + [aux_sym__val_number_token2] = ACTIONS(2175), + [aux_sym__val_number_token3] = ACTIONS(2175), + [aux_sym__val_number_token4] = ACTIONS(2173), + [aux_sym__val_number_token5] = ACTIONS(2173), + [aux_sym__val_number_token6] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2175), + [sym__str_single_quotes] = ACTIONS(2175), + [sym__str_back_ticks] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2175), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2175), + }, + [699] = { + [sym_comment] = STATE(699), + [anon_sym_export] = ACTIONS(2394), + [anon_sym_alias] = ACTIONS(2394), + [anon_sym_let] = ACTIONS(2394), + [anon_sym_let_DASHenv] = ACTIONS(2394), + [anon_sym_mut] = ACTIONS(2394), + [anon_sym_const] = ACTIONS(2394), + [aux_sym_cmd_identifier_token1] = ACTIONS(2394), + [aux_sym_cmd_identifier_token2] = ACTIONS(2396), + [aux_sym_cmd_identifier_token3] = ACTIONS(2396), + [aux_sym_cmd_identifier_token4] = ACTIONS(2396), + [aux_sym_cmd_identifier_token5] = ACTIONS(2396), + [aux_sym_cmd_identifier_token6] = ACTIONS(2396), + [aux_sym_cmd_identifier_token7] = ACTIONS(2396), + [aux_sym_cmd_identifier_token8] = ACTIONS(2394), + [aux_sym_cmd_identifier_token9] = ACTIONS(2394), + [aux_sym_cmd_identifier_token10] = ACTIONS(2396), + [aux_sym_cmd_identifier_token11] = ACTIONS(2396), + [aux_sym_cmd_identifier_token12] = ACTIONS(2394), + [aux_sym_cmd_identifier_token13] = ACTIONS(2394), + [aux_sym_cmd_identifier_token14] = ACTIONS(2394), + [aux_sym_cmd_identifier_token15] = ACTIONS(2394), + [aux_sym_cmd_identifier_token16] = ACTIONS(2396), + [aux_sym_cmd_identifier_token17] = ACTIONS(2396), + [aux_sym_cmd_identifier_token18] = ACTIONS(2396), + [aux_sym_cmd_identifier_token19] = ACTIONS(2396), + [aux_sym_cmd_identifier_token20] = ACTIONS(2396), + [aux_sym_cmd_identifier_token21] = ACTIONS(2396), + [aux_sym_cmd_identifier_token22] = ACTIONS(2396), + [aux_sym_cmd_identifier_token23] = ACTIONS(2396), + [aux_sym_cmd_identifier_token24] = ACTIONS(2396), + [aux_sym_cmd_identifier_token25] = ACTIONS(2396), + [aux_sym_cmd_identifier_token26] = ACTIONS(2396), + [aux_sym_cmd_identifier_token27] = ACTIONS(2396), + [aux_sym_cmd_identifier_token28] = ACTIONS(2396), + [aux_sym_cmd_identifier_token29] = ACTIONS(2396), + [aux_sym_cmd_identifier_token30] = ACTIONS(2396), + [aux_sym_cmd_identifier_token31] = ACTIONS(2396), + [aux_sym_cmd_identifier_token32] = ACTIONS(2396), + [aux_sym_cmd_identifier_token33] = ACTIONS(2396), + [aux_sym_cmd_identifier_token34] = ACTIONS(2394), + [aux_sym_cmd_identifier_token35] = ACTIONS(2396), + [aux_sym_cmd_identifier_token36] = ACTIONS(2396), + [aux_sym_cmd_identifier_token37] = ACTIONS(2396), + [aux_sym_cmd_identifier_token38] = ACTIONS(2394), + [aux_sym_cmd_identifier_token39] = ACTIONS(2396), + [aux_sym_cmd_identifier_token40] = ACTIONS(2396), + [anon_sym_def] = ACTIONS(2394), + [anon_sym_export_DASHenv] = ACTIONS(2394), + [anon_sym_extern] = ACTIONS(2394), + [anon_sym_module] = ACTIONS(2394), + [anon_sym_use] = ACTIONS(2394), + [anon_sym_LPAREN] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(2396), + [anon_sym_error] = ACTIONS(2394), + [anon_sym_DASH2] = ACTIONS(2394), + [anon_sym_break] = ACTIONS(2394), + [anon_sym_continue] = ACTIONS(2394), + [anon_sym_for] = ACTIONS(2394), + [anon_sym_in2] = ACTIONS(2394), + [anon_sym_loop] = ACTIONS(2394), + [anon_sym_make] = ACTIONS(2394), + [anon_sym_while] = ACTIONS(2394), + [anon_sym_do] = ACTIONS(2394), + [anon_sym_if] = ACTIONS(2394), + [anon_sym_else] = ACTIONS(2394), + [anon_sym_match] = ACTIONS(2394), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_try] = ACTIONS(2394), + [anon_sym_catch] = ACTIONS(2394), + [anon_sym_return] = ACTIONS(2394), + [anon_sym_source] = ACTIONS(2394), + [anon_sym_source_DASHenv] = ACTIONS(2394), + [anon_sym_register] = ACTIONS(2394), + [anon_sym_hide] = ACTIONS(2394), + [anon_sym_hide_DASHenv] = ACTIONS(2394), + [anon_sym_overlay] = ACTIONS(2394), + [anon_sym_as] = ACTIONS(2394), + [anon_sym_PLUS2] = ACTIONS(2394), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2396), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2396), + [aux_sym__val_number_decimal_token1] = ACTIONS(2394), + [aux_sym__val_number_decimal_token2] = ACTIONS(2396), + [aux_sym__val_number_decimal_token3] = ACTIONS(2396), + [aux_sym__val_number_decimal_token4] = ACTIONS(2396), + [aux_sym__val_number_token1] = ACTIONS(2396), + [aux_sym__val_number_token2] = ACTIONS(2396), + [aux_sym__val_number_token3] = ACTIONS(2396), + [aux_sym__val_number_token4] = ACTIONS(2394), + [aux_sym__val_number_token5] = ACTIONS(2394), + [aux_sym__val_number_token6] = ACTIONS(2394), + [anon_sym_DQUOTE] = ACTIONS(2396), + [sym__str_single_quotes] = ACTIONS(2396), + [sym__str_back_ticks] = ACTIONS(2396), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2396), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2396), + }, + [700] = { + [sym_comment] = STATE(700), + [anon_sym_export] = ACTIONS(1853), + [anon_sym_alias] = ACTIONS(1853), + [anon_sym_let] = ACTIONS(1853), + [anon_sym_let_DASHenv] = ACTIONS(1853), + [anon_sym_mut] = ACTIONS(1853), + [anon_sym_const] = ACTIONS(1853), + [aux_sym_cmd_identifier_token1] = ACTIONS(1853), + [aux_sym_cmd_identifier_token2] = ACTIONS(1855), + [aux_sym_cmd_identifier_token3] = ACTIONS(1855), + [aux_sym_cmd_identifier_token4] = ACTIONS(1855), + [aux_sym_cmd_identifier_token5] = ACTIONS(1855), + [aux_sym_cmd_identifier_token6] = ACTIONS(1855), + [aux_sym_cmd_identifier_token7] = ACTIONS(1855), + [aux_sym_cmd_identifier_token8] = ACTIONS(1853), + [aux_sym_cmd_identifier_token9] = ACTIONS(1853), + [aux_sym_cmd_identifier_token10] = ACTIONS(1855), + [aux_sym_cmd_identifier_token11] = ACTIONS(1855), + [aux_sym_cmd_identifier_token12] = ACTIONS(1853), + [aux_sym_cmd_identifier_token13] = ACTIONS(1853), + [aux_sym_cmd_identifier_token14] = ACTIONS(1853), + [aux_sym_cmd_identifier_token15] = ACTIONS(1853), + [aux_sym_cmd_identifier_token16] = ACTIONS(1855), + [aux_sym_cmd_identifier_token17] = ACTIONS(1855), + [aux_sym_cmd_identifier_token18] = ACTIONS(1855), + [aux_sym_cmd_identifier_token19] = ACTIONS(1855), + [aux_sym_cmd_identifier_token20] = ACTIONS(1855), + [aux_sym_cmd_identifier_token21] = ACTIONS(1855), + [aux_sym_cmd_identifier_token22] = ACTIONS(1855), + [aux_sym_cmd_identifier_token23] = ACTIONS(1855), + [aux_sym_cmd_identifier_token24] = ACTIONS(1855), + [aux_sym_cmd_identifier_token25] = ACTIONS(1855), + [aux_sym_cmd_identifier_token26] = ACTIONS(1855), + [aux_sym_cmd_identifier_token27] = ACTIONS(1855), + [aux_sym_cmd_identifier_token28] = ACTIONS(1855), + [aux_sym_cmd_identifier_token29] = ACTIONS(1855), + [aux_sym_cmd_identifier_token30] = ACTIONS(1855), + [aux_sym_cmd_identifier_token31] = ACTIONS(1855), + [aux_sym_cmd_identifier_token32] = ACTIONS(1855), + [aux_sym_cmd_identifier_token33] = ACTIONS(1855), + [aux_sym_cmd_identifier_token34] = ACTIONS(1853), + [aux_sym_cmd_identifier_token35] = ACTIONS(1855), + [aux_sym_cmd_identifier_token36] = ACTIONS(1855), + [aux_sym_cmd_identifier_token37] = ACTIONS(1855), + [aux_sym_cmd_identifier_token38] = ACTIONS(1853), + [aux_sym_cmd_identifier_token39] = ACTIONS(1855), + [aux_sym_cmd_identifier_token40] = ACTIONS(1855), + [anon_sym_def] = ACTIONS(1853), + [anon_sym_export_DASHenv] = ACTIONS(1853), + [anon_sym_extern] = ACTIONS(1853), + [anon_sym_module] = ACTIONS(1853), + [anon_sym_use] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1855), + [anon_sym_DOLLAR] = ACTIONS(1855), + [anon_sym_error] = ACTIONS(1853), + [anon_sym_DASH2] = ACTIONS(1853), + [anon_sym_break] = ACTIONS(1853), + [anon_sym_continue] = ACTIONS(1853), + [anon_sym_for] = ACTIONS(1853), + [anon_sym_in2] = ACTIONS(1853), + [anon_sym_loop] = ACTIONS(1853), + [anon_sym_make] = ACTIONS(1853), + [anon_sym_while] = ACTIONS(1853), + [anon_sym_do] = ACTIONS(1853), + [anon_sym_if] = ACTIONS(1853), + [anon_sym_else] = ACTIONS(1853), + [anon_sym_match] = ACTIONS(1853), + [anon_sym_RBRACE] = ACTIONS(1855), + [anon_sym_try] = ACTIONS(1853), + [anon_sym_catch] = ACTIONS(1853), + [anon_sym_return] = ACTIONS(1853), + [anon_sym_source] = ACTIONS(1853), + [anon_sym_source_DASHenv] = ACTIONS(1853), + [anon_sym_register] = ACTIONS(1853), + [anon_sym_hide] = ACTIONS(1853), + [anon_sym_hide_DASHenv] = ACTIONS(1853), + [anon_sym_overlay] = ACTIONS(1853), + [anon_sym_as] = ACTIONS(1853), + [anon_sym_PLUS2] = ACTIONS(1853), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1855), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1855), + [aux_sym__val_number_decimal_token1] = ACTIONS(1853), + [aux_sym__val_number_decimal_token2] = ACTIONS(1855), + [aux_sym__val_number_decimal_token3] = ACTIONS(1855), + [aux_sym__val_number_decimal_token4] = ACTIONS(1855), + [aux_sym__val_number_token1] = ACTIONS(1855), + [aux_sym__val_number_token2] = ACTIONS(1855), + [aux_sym__val_number_token3] = ACTIONS(1855), + [aux_sym__val_number_token4] = ACTIONS(1853), + [aux_sym__val_number_token5] = ACTIONS(1853), + [aux_sym__val_number_token6] = ACTIONS(1853), + [anon_sym_DQUOTE] = ACTIONS(1855), + [sym__str_single_quotes] = ACTIONS(1855), + [sym__str_back_ticks] = ACTIONS(1855), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1855), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1855), + }, + [701] = { + [sym_comment] = STATE(701), + [anon_sym_export] = ACTIONS(2371), + [anon_sym_alias] = ACTIONS(2371), + [anon_sym_let] = ACTIONS(2371), + [anon_sym_let_DASHenv] = ACTIONS(2371), + [anon_sym_mut] = ACTIONS(2371), + [anon_sym_const] = ACTIONS(2371), + [aux_sym_cmd_identifier_token1] = ACTIONS(2371), + [aux_sym_cmd_identifier_token2] = ACTIONS(2373), + [aux_sym_cmd_identifier_token3] = ACTIONS(2373), + [aux_sym_cmd_identifier_token4] = ACTIONS(2373), + [aux_sym_cmd_identifier_token5] = ACTIONS(2373), + [aux_sym_cmd_identifier_token6] = ACTIONS(2373), + [aux_sym_cmd_identifier_token7] = ACTIONS(2373), + [aux_sym_cmd_identifier_token8] = ACTIONS(2371), + [aux_sym_cmd_identifier_token9] = ACTIONS(2371), + [aux_sym_cmd_identifier_token10] = ACTIONS(2373), + [aux_sym_cmd_identifier_token11] = ACTIONS(2373), + [aux_sym_cmd_identifier_token12] = ACTIONS(2371), + [aux_sym_cmd_identifier_token13] = ACTIONS(2371), + [aux_sym_cmd_identifier_token14] = ACTIONS(2371), + [aux_sym_cmd_identifier_token15] = ACTIONS(2371), + [aux_sym_cmd_identifier_token16] = ACTIONS(2373), + [aux_sym_cmd_identifier_token17] = ACTIONS(2373), + [aux_sym_cmd_identifier_token18] = ACTIONS(2373), + [aux_sym_cmd_identifier_token19] = ACTIONS(2373), + [aux_sym_cmd_identifier_token20] = ACTIONS(2373), + [aux_sym_cmd_identifier_token21] = ACTIONS(2373), + [aux_sym_cmd_identifier_token22] = ACTIONS(2373), + [aux_sym_cmd_identifier_token23] = ACTIONS(2373), + [aux_sym_cmd_identifier_token24] = ACTIONS(2373), + [aux_sym_cmd_identifier_token25] = ACTIONS(2373), + [aux_sym_cmd_identifier_token26] = ACTIONS(2373), + [aux_sym_cmd_identifier_token27] = ACTIONS(2373), + [aux_sym_cmd_identifier_token28] = ACTIONS(2373), + [aux_sym_cmd_identifier_token29] = ACTIONS(2373), + [aux_sym_cmd_identifier_token30] = ACTIONS(2373), + [aux_sym_cmd_identifier_token31] = ACTIONS(2373), + [aux_sym_cmd_identifier_token32] = ACTIONS(2373), + [aux_sym_cmd_identifier_token33] = ACTIONS(2373), + [aux_sym_cmd_identifier_token34] = ACTIONS(2371), + [aux_sym_cmd_identifier_token35] = ACTIONS(2373), + [aux_sym_cmd_identifier_token36] = ACTIONS(2373), + [aux_sym_cmd_identifier_token37] = ACTIONS(2373), + [aux_sym_cmd_identifier_token38] = ACTIONS(2371), + [aux_sym_cmd_identifier_token39] = ACTIONS(2373), + [aux_sym_cmd_identifier_token40] = ACTIONS(2373), + [anon_sym_def] = ACTIONS(2371), + [anon_sym_export_DASHenv] = ACTIONS(2371), + [anon_sym_extern] = ACTIONS(2371), + [anon_sym_module] = ACTIONS(2371), + [anon_sym_use] = ACTIONS(2371), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_DOLLAR] = ACTIONS(2373), + [anon_sym_error] = ACTIONS(2371), + [anon_sym_DASH2] = ACTIONS(2371), + [anon_sym_break] = ACTIONS(2371), + [anon_sym_continue] = ACTIONS(2371), + [anon_sym_for] = ACTIONS(2371), + [anon_sym_in2] = ACTIONS(2371), + [anon_sym_loop] = ACTIONS(2371), + [anon_sym_make] = ACTIONS(2371), + [anon_sym_while] = ACTIONS(2371), + [anon_sym_do] = ACTIONS(2371), + [anon_sym_if] = ACTIONS(2371), + [anon_sym_else] = ACTIONS(2371), + [anon_sym_match] = ACTIONS(2371), + [anon_sym_RBRACE] = ACTIONS(2373), + [anon_sym_try] = ACTIONS(2371), + [anon_sym_catch] = ACTIONS(2371), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_source] = ACTIONS(2371), + [anon_sym_source_DASHenv] = ACTIONS(2371), + [anon_sym_register] = ACTIONS(2371), + [anon_sym_hide] = ACTIONS(2371), + [anon_sym_hide_DASHenv] = ACTIONS(2371), + [anon_sym_overlay] = ACTIONS(2371), + [anon_sym_as] = ACTIONS(2371), + [anon_sym_PLUS2] = ACTIONS(2371), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2373), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2373), + [aux_sym__val_number_decimal_token1] = ACTIONS(2371), + [aux_sym__val_number_decimal_token2] = ACTIONS(2373), + [aux_sym__val_number_decimal_token3] = ACTIONS(2373), + [aux_sym__val_number_decimal_token4] = ACTIONS(2373), + [aux_sym__val_number_token1] = ACTIONS(2373), + [aux_sym__val_number_token2] = ACTIONS(2373), + [aux_sym__val_number_token3] = ACTIONS(2373), + [aux_sym__val_number_token4] = ACTIONS(2371), + [aux_sym__val_number_token5] = ACTIONS(2371), + [aux_sym__val_number_token6] = ACTIONS(2371), + [anon_sym_DQUOTE] = ACTIONS(2373), + [sym__str_single_quotes] = ACTIONS(2373), + [sym__str_back_ticks] = ACTIONS(2373), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2373), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2514), + [sym_raw_string_begin] = ACTIONS(2373), }, - [696] = { - [sym_comment] = STATE(696), + [702] = { + [sym_comment] = STATE(702), [anon_sym_export] = ACTIONS(2375), [anon_sym_alias] = ACTIONS(2375), [anon_sym_let] = ACTIONS(2375), @@ -149593,998 +150506,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(2377), }, - [697] = { - [sym_comment] = STATE(697), - [anon_sym_export] = ACTIONS(2518), - [anon_sym_alias] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_let_DASHenv] = ACTIONS(2518), - [anon_sym_mut] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(2518), - [aux_sym_cmd_identifier_token1] = ACTIONS(2518), - [aux_sym_cmd_identifier_token2] = ACTIONS(2520), - [aux_sym_cmd_identifier_token3] = ACTIONS(2520), - [aux_sym_cmd_identifier_token4] = ACTIONS(2520), - [aux_sym_cmd_identifier_token5] = ACTIONS(2520), - [aux_sym_cmd_identifier_token6] = ACTIONS(2520), - [aux_sym_cmd_identifier_token7] = ACTIONS(2520), - [aux_sym_cmd_identifier_token8] = ACTIONS(2518), - [aux_sym_cmd_identifier_token9] = ACTIONS(2518), - [aux_sym_cmd_identifier_token10] = ACTIONS(2520), - [aux_sym_cmd_identifier_token11] = ACTIONS(2520), - [aux_sym_cmd_identifier_token12] = ACTIONS(2518), - [aux_sym_cmd_identifier_token13] = ACTIONS(2518), - [aux_sym_cmd_identifier_token14] = ACTIONS(2518), - [aux_sym_cmd_identifier_token15] = ACTIONS(2518), - [aux_sym_cmd_identifier_token16] = ACTIONS(2520), - [aux_sym_cmd_identifier_token17] = ACTIONS(2520), - [aux_sym_cmd_identifier_token18] = ACTIONS(2520), - [aux_sym_cmd_identifier_token19] = ACTIONS(2520), - [aux_sym_cmd_identifier_token20] = ACTIONS(2520), - [aux_sym_cmd_identifier_token21] = ACTIONS(2520), - [aux_sym_cmd_identifier_token22] = ACTIONS(2520), - [aux_sym_cmd_identifier_token23] = ACTIONS(2520), - [aux_sym_cmd_identifier_token24] = ACTIONS(2520), - [aux_sym_cmd_identifier_token25] = ACTIONS(2520), - [aux_sym_cmd_identifier_token26] = ACTIONS(2520), - [aux_sym_cmd_identifier_token27] = ACTIONS(2520), - [aux_sym_cmd_identifier_token28] = ACTIONS(2520), - [aux_sym_cmd_identifier_token29] = ACTIONS(2520), - [aux_sym_cmd_identifier_token30] = ACTIONS(2520), - [aux_sym_cmd_identifier_token31] = ACTIONS(2520), - [aux_sym_cmd_identifier_token32] = ACTIONS(2520), - [aux_sym_cmd_identifier_token33] = ACTIONS(2520), - [aux_sym_cmd_identifier_token34] = ACTIONS(2518), - [aux_sym_cmd_identifier_token35] = ACTIONS(2520), - [aux_sym_cmd_identifier_token36] = ACTIONS(2520), - [aux_sym_cmd_identifier_token37] = ACTIONS(2520), - [aux_sym_cmd_identifier_token38] = ACTIONS(2518), - [aux_sym_cmd_identifier_token39] = ACTIONS(2520), - [aux_sym_cmd_identifier_token40] = ACTIONS(2520), - [anon_sym_def] = ACTIONS(2518), - [anon_sym_export_DASHenv] = ACTIONS(2518), - [anon_sym_extern] = ACTIONS(2518), - [anon_sym_module] = ACTIONS(2518), - [anon_sym_use] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2520), - [anon_sym_error] = ACTIONS(2518), - [anon_sym_DASH2] = ACTIONS(2518), - [anon_sym_break] = ACTIONS(2518), - [anon_sym_continue] = ACTIONS(2518), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_in2] = ACTIONS(2518), - [anon_sym_loop] = ACTIONS(2518), - [anon_sym_make] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_else] = ACTIONS(2518), - [anon_sym_match] = ACTIONS(2518), - [anon_sym_RBRACE] = ACTIONS(2520), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_catch] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_source] = ACTIONS(2518), - [anon_sym_source_DASHenv] = ACTIONS(2518), - [anon_sym_register] = ACTIONS(2518), - [anon_sym_hide] = ACTIONS(2518), - [anon_sym_hide_DASHenv] = ACTIONS(2518), - [anon_sym_overlay] = ACTIONS(2518), - [anon_sym_as] = ACTIONS(2518), - [anon_sym_PLUS2] = ACTIONS(2518), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2520), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2520), - [aux_sym__val_number_decimal_token1] = ACTIONS(2518), - [aux_sym__val_number_decimal_token2] = ACTIONS(2520), - [aux_sym__val_number_decimal_token3] = ACTIONS(2520), - [aux_sym__val_number_decimal_token4] = ACTIONS(2520), - [aux_sym__val_number_token1] = ACTIONS(2520), - [aux_sym__val_number_token2] = ACTIONS(2520), - [aux_sym__val_number_token3] = ACTIONS(2520), - [aux_sym__val_number_token4] = ACTIONS(2518), - [aux_sym__val_number_token5] = ACTIONS(2518), - [aux_sym__val_number_token6] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2520), - [sym__str_single_quotes] = ACTIONS(2520), - [sym__str_back_ticks] = ACTIONS(2520), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2520), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2520), - }, - [698] = { - [sym_comment] = STATE(698), - [anon_sym_export] = ACTIONS(2407), - [anon_sym_alias] = ACTIONS(2407), - [anon_sym_let] = ACTIONS(2407), - [anon_sym_let_DASHenv] = ACTIONS(2407), - [anon_sym_mut] = ACTIONS(2407), - [anon_sym_const] = ACTIONS(2407), - [aux_sym_cmd_identifier_token1] = ACTIONS(2407), - [aux_sym_cmd_identifier_token2] = ACTIONS(2409), - [aux_sym_cmd_identifier_token3] = ACTIONS(2409), - [aux_sym_cmd_identifier_token4] = ACTIONS(2409), - [aux_sym_cmd_identifier_token5] = ACTIONS(2409), - [aux_sym_cmd_identifier_token6] = ACTIONS(2409), - [aux_sym_cmd_identifier_token7] = ACTIONS(2409), - [aux_sym_cmd_identifier_token8] = ACTIONS(2407), - [aux_sym_cmd_identifier_token9] = ACTIONS(2407), - [aux_sym_cmd_identifier_token10] = ACTIONS(2409), - [aux_sym_cmd_identifier_token11] = ACTIONS(2409), - [aux_sym_cmd_identifier_token12] = ACTIONS(2407), - [aux_sym_cmd_identifier_token13] = ACTIONS(2407), - [aux_sym_cmd_identifier_token14] = ACTIONS(2407), - [aux_sym_cmd_identifier_token15] = ACTIONS(2407), - [aux_sym_cmd_identifier_token16] = ACTIONS(2409), - [aux_sym_cmd_identifier_token17] = ACTIONS(2409), - [aux_sym_cmd_identifier_token18] = ACTIONS(2409), - [aux_sym_cmd_identifier_token19] = ACTIONS(2409), - [aux_sym_cmd_identifier_token20] = ACTIONS(2409), - [aux_sym_cmd_identifier_token21] = ACTIONS(2409), - [aux_sym_cmd_identifier_token22] = ACTIONS(2409), - [aux_sym_cmd_identifier_token23] = ACTIONS(2409), - [aux_sym_cmd_identifier_token24] = ACTIONS(2409), - [aux_sym_cmd_identifier_token25] = ACTIONS(2409), - [aux_sym_cmd_identifier_token26] = ACTIONS(2409), - [aux_sym_cmd_identifier_token27] = ACTIONS(2409), - [aux_sym_cmd_identifier_token28] = ACTIONS(2409), - [aux_sym_cmd_identifier_token29] = ACTIONS(2409), - [aux_sym_cmd_identifier_token30] = ACTIONS(2409), - [aux_sym_cmd_identifier_token31] = ACTIONS(2409), - [aux_sym_cmd_identifier_token32] = ACTIONS(2409), - [aux_sym_cmd_identifier_token33] = ACTIONS(2409), - [aux_sym_cmd_identifier_token34] = ACTIONS(2407), - [aux_sym_cmd_identifier_token35] = ACTIONS(2409), - [aux_sym_cmd_identifier_token36] = ACTIONS(2409), - [aux_sym_cmd_identifier_token37] = ACTIONS(2409), - [aux_sym_cmd_identifier_token38] = ACTIONS(2407), - [aux_sym_cmd_identifier_token39] = ACTIONS(2409), - [aux_sym_cmd_identifier_token40] = ACTIONS(2409), - [anon_sym_def] = ACTIONS(2407), - [anon_sym_export_DASHenv] = ACTIONS(2407), - [anon_sym_extern] = ACTIONS(2407), - [anon_sym_module] = ACTIONS(2407), - [anon_sym_use] = ACTIONS(2407), - [anon_sym_LPAREN] = ACTIONS(2409), - [anon_sym_DOLLAR] = ACTIONS(2409), - [anon_sym_error] = ACTIONS(2407), - [anon_sym_DASH2] = ACTIONS(2407), - [anon_sym_break] = ACTIONS(2407), - [anon_sym_continue] = ACTIONS(2407), - [anon_sym_for] = ACTIONS(2407), - [anon_sym_in2] = ACTIONS(2407), - [anon_sym_loop] = ACTIONS(2407), - [anon_sym_make] = ACTIONS(2407), - [anon_sym_while] = ACTIONS(2407), - [anon_sym_do] = ACTIONS(2407), - [anon_sym_if] = ACTIONS(2407), - [anon_sym_else] = ACTIONS(2407), - [anon_sym_match] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2409), - [anon_sym_try] = ACTIONS(2407), - [anon_sym_catch] = ACTIONS(2407), - [anon_sym_return] = ACTIONS(2407), - [anon_sym_source] = ACTIONS(2407), - [anon_sym_source_DASHenv] = ACTIONS(2407), - [anon_sym_register] = ACTIONS(2407), - [anon_sym_hide] = ACTIONS(2407), - [anon_sym_hide_DASHenv] = ACTIONS(2407), - [anon_sym_overlay] = ACTIONS(2407), - [anon_sym_as] = ACTIONS(2407), - [anon_sym_PLUS2] = ACTIONS(2407), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2409), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2409), - [aux_sym__val_number_decimal_token1] = ACTIONS(2407), - [aux_sym__val_number_decimal_token2] = ACTIONS(2409), - [aux_sym__val_number_decimal_token3] = ACTIONS(2409), - [aux_sym__val_number_decimal_token4] = ACTIONS(2409), - [aux_sym__val_number_token1] = ACTIONS(2409), - [aux_sym__val_number_token2] = ACTIONS(2409), - [aux_sym__val_number_token3] = ACTIONS(2409), - [aux_sym__val_number_token4] = ACTIONS(2407), - [aux_sym__val_number_token5] = ACTIONS(2407), - [aux_sym__val_number_token6] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2409), - [sym__str_single_quotes] = ACTIONS(2409), - [sym__str_back_ticks] = ACTIONS(2409), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2409), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2409), - }, - [699] = { - [sym_comment] = STATE(699), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_alias] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_let_DASHenv] = ACTIONS(1755), - [anon_sym_mut] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [aux_sym_cmd_identifier_token1] = ACTIONS(1755), - [aux_sym_cmd_identifier_token2] = ACTIONS(1757), - [aux_sym_cmd_identifier_token3] = ACTIONS(1757), - [aux_sym_cmd_identifier_token4] = ACTIONS(1757), - [aux_sym_cmd_identifier_token5] = ACTIONS(1757), - [aux_sym_cmd_identifier_token6] = ACTIONS(1757), - [aux_sym_cmd_identifier_token7] = ACTIONS(1757), - [aux_sym_cmd_identifier_token8] = ACTIONS(1755), - [aux_sym_cmd_identifier_token9] = ACTIONS(1755), - [aux_sym_cmd_identifier_token10] = ACTIONS(1757), - [aux_sym_cmd_identifier_token11] = ACTIONS(1757), - [aux_sym_cmd_identifier_token12] = ACTIONS(1755), - [aux_sym_cmd_identifier_token13] = ACTIONS(1755), - [aux_sym_cmd_identifier_token14] = ACTIONS(1755), - [aux_sym_cmd_identifier_token15] = ACTIONS(1755), - [aux_sym_cmd_identifier_token16] = ACTIONS(1757), - [aux_sym_cmd_identifier_token17] = ACTIONS(1757), - [aux_sym_cmd_identifier_token18] = ACTIONS(1757), - [aux_sym_cmd_identifier_token19] = ACTIONS(1757), - [aux_sym_cmd_identifier_token20] = ACTIONS(1757), - [aux_sym_cmd_identifier_token21] = ACTIONS(1757), - [aux_sym_cmd_identifier_token22] = ACTIONS(1757), - [aux_sym_cmd_identifier_token23] = ACTIONS(1757), - [aux_sym_cmd_identifier_token24] = ACTIONS(1757), - [aux_sym_cmd_identifier_token25] = ACTIONS(1757), - [aux_sym_cmd_identifier_token26] = ACTIONS(1757), - [aux_sym_cmd_identifier_token27] = ACTIONS(1757), - [aux_sym_cmd_identifier_token28] = ACTIONS(1757), - [aux_sym_cmd_identifier_token29] = ACTIONS(1757), - [aux_sym_cmd_identifier_token30] = ACTIONS(1757), - [aux_sym_cmd_identifier_token31] = ACTIONS(1757), - [aux_sym_cmd_identifier_token32] = ACTIONS(1757), - [aux_sym_cmd_identifier_token33] = ACTIONS(1757), - [aux_sym_cmd_identifier_token34] = ACTIONS(1755), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [aux_sym_cmd_identifier_token37] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1755), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_export_DASHenv] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_use] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_error] = ACTIONS(1755), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_in2] = ACTIONS(1755), - [anon_sym_loop] = ACTIONS(1755), - [anon_sym_make] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_catch] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_source] = ACTIONS(1755), - [anon_sym_source_DASHenv] = ACTIONS(1755), - [anon_sym_register] = ACTIONS(1755), - [anon_sym_hide] = ACTIONS(1755), - [anon_sym_hide_DASHenv] = ACTIONS(1755), - [anon_sym_overlay] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_PLUS2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1755), - [aux_sym__val_number_token5] = ACTIONS(1755), - [aux_sym__val_number_token6] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [700] = { - [sym_comment] = STATE(700), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_alias] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_let_DASHenv] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [aux_sym_cmd_identifier_token1] = ACTIONS(1783), - [aux_sym_cmd_identifier_token2] = ACTIONS(1785), - [aux_sym_cmd_identifier_token3] = ACTIONS(1785), - [aux_sym_cmd_identifier_token4] = ACTIONS(1785), - [aux_sym_cmd_identifier_token5] = ACTIONS(1785), - [aux_sym_cmd_identifier_token6] = ACTIONS(1785), - [aux_sym_cmd_identifier_token7] = ACTIONS(1785), - [aux_sym_cmd_identifier_token8] = ACTIONS(1783), - [aux_sym_cmd_identifier_token9] = ACTIONS(1783), - [aux_sym_cmd_identifier_token10] = ACTIONS(1785), - [aux_sym_cmd_identifier_token11] = ACTIONS(1785), - [aux_sym_cmd_identifier_token12] = ACTIONS(1783), - [aux_sym_cmd_identifier_token13] = ACTIONS(1783), - [aux_sym_cmd_identifier_token14] = ACTIONS(1783), - [aux_sym_cmd_identifier_token15] = ACTIONS(1783), - [aux_sym_cmd_identifier_token16] = ACTIONS(1785), - [aux_sym_cmd_identifier_token17] = ACTIONS(1785), - [aux_sym_cmd_identifier_token18] = ACTIONS(1785), - [aux_sym_cmd_identifier_token19] = ACTIONS(1785), - [aux_sym_cmd_identifier_token20] = ACTIONS(1785), - [aux_sym_cmd_identifier_token21] = ACTIONS(1785), - [aux_sym_cmd_identifier_token22] = ACTIONS(1785), - [aux_sym_cmd_identifier_token23] = ACTIONS(1785), - [aux_sym_cmd_identifier_token24] = ACTIONS(1785), - [aux_sym_cmd_identifier_token25] = ACTIONS(1785), - [aux_sym_cmd_identifier_token26] = ACTIONS(1785), - [aux_sym_cmd_identifier_token27] = ACTIONS(1785), - [aux_sym_cmd_identifier_token28] = ACTIONS(1785), - [aux_sym_cmd_identifier_token29] = ACTIONS(1785), - [aux_sym_cmd_identifier_token30] = ACTIONS(1785), - [aux_sym_cmd_identifier_token31] = ACTIONS(1785), - [aux_sym_cmd_identifier_token32] = ACTIONS(1785), - [aux_sym_cmd_identifier_token33] = ACTIONS(1785), - [aux_sym_cmd_identifier_token34] = ACTIONS(1783), - [aux_sym_cmd_identifier_token35] = ACTIONS(1785), - [aux_sym_cmd_identifier_token36] = ACTIONS(1785), - [aux_sym_cmd_identifier_token37] = ACTIONS(1785), - [aux_sym_cmd_identifier_token38] = ACTIONS(1783), - [aux_sym_cmd_identifier_token39] = ACTIONS(1785), - [aux_sym_cmd_identifier_token40] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_export_DASHenv] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1785), - [anon_sym_error] = ACTIONS(1783), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_in2] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_make] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_catch] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_source] = ACTIONS(1783), - [anon_sym_source_DASHenv] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_hide] = ACTIONS(1783), - [anon_sym_hide_DASHenv] = ACTIONS(1783), - [anon_sym_overlay] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_PLUS2] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1783), - [aux_sym__val_number_token5] = ACTIONS(1783), - [aux_sym__val_number_token6] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1785), - }, - [701] = { - [sym_comment] = STATE(701), - [anon_sym_export] = ACTIONS(1890), - [anon_sym_alias] = ACTIONS(1890), - [anon_sym_let] = ACTIONS(1890), - [anon_sym_let_DASHenv] = ACTIONS(1890), - [anon_sym_mut] = ACTIONS(1890), - [anon_sym_const] = ACTIONS(1890), - [aux_sym_cmd_identifier_token1] = ACTIONS(1890), - [aux_sym_cmd_identifier_token2] = ACTIONS(1892), - [aux_sym_cmd_identifier_token3] = ACTIONS(1892), - [aux_sym_cmd_identifier_token4] = ACTIONS(1892), - [aux_sym_cmd_identifier_token5] = ACTIONS(1892), - [aux_sym_cmd_identifier_token6] = ACTIONS(1892), - [aux_sym_cmd_identifier_token7] = ACTIONS(1892), - [aux_sym_cmd_identifier_token8] = ACTIONS(1890), - [aux_sym_cmd_identifier_token9] = ACTIONS(1890), - [aux_sym_cmd_identifier_token10] = ACTIONS(1892), - [aux_sym_cmd_identifier_token11] = ACTIONS(1892), - [aux_sym_cmd_identifier_token12] = ACTIONS(1890), - [aux_sym_cmd_identifier_token13] = ACTIONS(1890), - [aux_sym_cmd_identifier_token14] = ACTIONS(1890), - [aux_sym_cmd_identifier_token15] = ACTIONS(1890), - [aux_sym_cmd_identifier_token16] = ACTIONS(1892), - [aux_sym_cmd_identifier_token17] = ACTIONS(1892), - [aux_sym_cmd_identifier_token18] = ACTIONS(1892), - [aux_sym_cmd_identifier_token19] = ACTIONS(1892), - [aux_sym_cmd_identifier_token20] = ACTIONS(1892), - [aux_sym_cmd_identifier_token21] = ACTIONS(1892), - [aux_sym_cmd_identifier_token22] = ACTIONS(1892), - [aux_sym_cmd_identifier_token23] = ACTIONS(1892), - [aux_sym_cmd_identifier_token24] = ACTIONS(1892), - [aux_sym_cmd_identifier_token25] = ACTIONS(1892), - [aux_sym_cmd_identifier_token26] = ACTIONS(1892), - [aux_sym_cmd_identifier_token27] = ACTIONS(1892), - [aux_sym_cmd_identifier_token28] = ACTIONS(1892), - [aux_sym_cmd_identifier_token29] = ACTIONS(1892), - [aux_sym_cmd_identifier_token30] = ACTIONS(1892), - [aux_sym_cmd_identifier_token31] = ACTIONS(1892), - [aux_sym_cmd_identifier_token32] = ACTIONS(1892), - [aux_sym_cmd_identifier_token33] = ACTIONS(1892), - [aux_sym_cmd_identifier_token34] = ACTIONS(1890), - [aux_sym_cmd_identifier_token35] = ACTIONS(1892), - [aux_sym_cmd_identifier_token36] = ACTIONS(1892), - [aux_sym_cmd_identifier_token37] = ACTIONS(1892), - [aux_sym_cmd_identifier_token38] = ACTIONS(1890), - [aux_sym_cmd_identifier_token39] = ACTIONS(1892), - [aux_sym_cmd_identifier_token40] = ACTIONS(1892), - [anon_sym_def] = ACTIONS(1890), - [anon_sym_export_DASHenv] = ACTIONS(1890), - [anon_sym_extern] = ACTIONS(1890), - [anon_sym_module] = ACTIONS(1890), - [anon_sym_use] = ACTIONS(1890), - [anon_sym_LPAREN] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [anon_sym_error] = ACTIONS(1890), - [anon_sym_DASH2] = ACTIONS(1890), - [anon_sym_break] = ACTIONS(1890), - [anon_sym_continue] = ACTIONS(1890), - [anon_sym_for] = ACTIONS(1890), - [anon_sym_in2] = ACTIONS(1890), - [anon_sym_loop] = ACTIONS(1890), - [anon_sym_make] = ACTIONS(1890), - [anon_sym_while] = ACTIONS(1890), - [anon_sym_do] = ACTIONS(1890), - [anon_sym_if] = ACTIONS(1890), - [anon_sym_else] = ACTIONS(1890), - [anon_sym_match] = ACTIONS(1890), - [anon_sym_RBRACE] = ACTIONS(1892), - [anon_sym_try] = ACTIONS(1890), - [anon_sym_catch] = ACTIONS(1890), - [anon_sym_return] = ACTIONS(1890), - [anon_sym_source] = ACTIONS(1890), - [anon_sym_source_DASHenv] = ACTIONS(1890), - [anon_sym_register] = ACTIONS(1890), - [anon_sym_hide] = ACTIONS(1890), - [anon_sym_hide_DASHenv] = ACTIONS(1890), - [anon_sym_overlay] = ACTIONS(1890), - [anon_sym_as] = ACTIONS(1890), - [anon_sym_PLUS2] = ACTIONS(1890), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1892), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1892), - [aux_sym__val_number_decimal_token1] = ACTIONS(1890), - [aux_sym__val_number_decimal_token2] = ACTIONS(1892), - [aux_sym__val_number_decimal_token3] = ACTIONS(1892), - [aux_sym__val_number_decimal_token4] = ACTIONS(1892), - [aux_sym__val_number_token1] = ACTIONS(1892), - [aux_sym__val_number_token2] = ACTIONS(1892), - [aux_sym__val_number_token3] = ACTIONS(1892), - [aux_sym__val_number_token4] = ACTIONS(1890), - [aux_sym__val_number_token5] = ACTIONS(1890), - [aux_sym__val_number_token6] = ACTIONS(1890), - [anon_sym_DQUOTE] = ACTIONS(1892), - [sym__str_single_quotes] = ACTIONS(1892), - [sym__str_back_ticks] = ACTIONS(1892), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1892), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1892), - }, - [702] = { - [sym_comment] = STATE(702), - [anon_sym_export] = ACTIONS(2094), - [anon_sym_alias] = ACTIONS(2094), - [anon_sym_let] = ACTIONS(2094), - [anon_sym_let_DASHenv] = ACTIONS(2094), - [anon_sym_mut] = ACTIONS(2094), - [anon_sym_const] = ACTIONS(2094), - [aux_sym_cmd_identifier_token1] = ACTIONS(2094), - [aux_sym_cmd_identifier_token2] = ACTIONS(2096), - [aux_sym_cmd_identifier_token3] = ACTIONS(2096), - [aux_sym_cmd_identifier_token4] = ACTIONS(2096), - [aux_sym_cmd_identifier_token5] = ACTIONS(2096), - [aux_sym_cmd_identifier_token6] = ACTIONS(2096), - [aux_sym_cmd_identifier_token7] = ACTIONS(2096), - [aux_sym_cmd_identifier_token8] = ACTIONS(2094), - [aux_sym_cmd_identifier_token9] = ACTIONS(2094), - [aux_sym_cmd_identifier_token10] = ACTIONS(2096), - [aux_sym_cmd_identifier_token11] = ACTIONS(2096), - [aux_sym_cmd_identifier_token12] = ACTIONS(2094), - [aux_sym_cmd_identifier_token13] = ACTIONS(2094), - [aux_sym_cmd_identifier_token14] = ACTIONS(2094), - [aux_sym_cmd_identifier_token15] = ACTIONS(2094), - [aux_sym_cmd_identifier_token16] = ACTIONS(2096), - [aux_sym_cmd_identifier_token17] = ACTIONS(2096), - [aux_sym_cmd_identifier_token18] = ACTIONS(2096), - [aux_sym_cmd_identifier_token19] = ACTIONS(2096), - [aux_sym_cmd_identifier_token20] = ACTIONS(2096), - [aux_sym_cmd_identifier_token21] = ACTIONS(2096), - [aux_sym_cmd_identifier_token22] = ACTIONS(2096), - [aux_sym_cmd_identifier_token23] = ACTIONS(2096), - [aux_sym_cmd_identifier_token24] = ACTIONS(2096), - [aux_sym_cmd_identifier_token25] = ACTIONS(2096), - [aux_sym_cmd_identifier_token26] = ACTIONS(2096), - [aux_sym_cmd_identifier_token27] = ACTIONS(2096), - [aux_sym_cmd_identifier_token28] = ACTIONS(2096), - [aux_sym_cmd_identifier_token29] = ACTIONS(2096), - [aux_sym_cmd_identifier_token30] = ACTIONS(2096), - [aux_sym_cmd_identifier_token31] = ACTIONS(2096), - [aux_sym_cmd_identifier_token32] = ACTIONS(2096), - [aux_sym_cmd_identifier_token33] = ACTIONS(2096), - [aux_sym_cmd_identifier_token34] = ACTIONS(2094), - [aux_sym_cmd_identifier_token35] = ACTIONS(2096), - [aux_sym_cmd_identifier_token36] = ACTIONS(2096), - [aux_sym_cmd_identifier_token37] = ACTIONS(2096), - [aux_sym_cmd_identifier_token38] = ACTIONS(2094), - [aux_sym_cmd_identifier_token39] = ACTIONS(2096), - [aux_sym_cmd_identifier_token40] = ACTIONS(2096), - [anon_sym_def] = ACTIONS(2094), - [anon_sym_export_DASHenv] = ACTIONS(2094), - [anon_sym_extern] = ACTIONS(2094), - [anon_sym_module] = ACTIONS(2094), - [anon_sym_use] = ACTIONS(2094), - [anon_sym_LPAREN] = ACTIONS(2096), - [anon_sym_DOLLAR] = ACTIONS(2096), - [anon_sym_error] = ACTIONS(2094), - [anon_sym_DASH2] = ACTIONS(2094), - [anon_sym_break] = ACTIONS(2094), - [anon_sym_continue] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2094), - [anon_sym_in2] = ACTIONS(2094), - [anon_sym_loop] = ACTIONS(2094), - [anon_sym_make] = ACTIONS(2094), - [anon_sym_while] = ACTIONS(2094), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_if] = ACTIONS(2094), - [anon_sym_else] = ACTIONS(2094), - [anon_sym_match] = ACTIONS(2094), - [anon_sym_RBRACE] = ACTIONS(2096), - [anon_sym_try] = ACTIONS(2094), - [anon_sym_catch] = ACTIONS(2094), - [anon_sym_return] = ACTIONS(2094), - [anon_sym_source] = ACTIONS(2094), - [anon_sym_source_DASHenv] = ACTIONS(2094), - [anon_sym_register] = ACTIONS(2094), - [anon_sym_hide] = ACTIONS(2094), - [anon_sym_hide_DASHenv] = ACTIONS(2094), - [anon_sym_overlay] = ACTIONS(2094), - [anon_sym_as] = ACTIONS(2094), - [anon_sym_PLUS2] = ACTIONS(2094), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2096), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2096), - [aux_sym__val_number_decimal_token1] = ACTIONS(2094), - [aux_sym__val_number_decimal_token2] = ACTIONS(2096), - [aux_sym__val_number_decimal_token3] = ACTIONS(2096), - [aux_sym__val_number_decimal_token4] = ACTIONS(2096), - [aux_sym__val_number_token1] = ACTIONS(2096), - [aux_sym__val_number_token2] = ACTIONS(2096), - [aux_sym__val_number_token3] = ACTIONS(2096), - [aux_sym__val_number_token4] = ACTIONS(2094), - [aux_sym__val_number_token5] = ACTIONS(2094), - [aux_sym__val_number_token6] = ACTIONS(2094), - [anon_sym_DQUOTE] = ACTIONS(2096), - [sym__str_single_quotes] = ACTIONS(2096), - [sym__str_back_ticks] = ACTIONS(2096), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2096), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2096), - }, [703] = { [sym_comment] = STATE(703), - [anon_sym_export] = ACTIONS(2167), - [anon_sym_alias] = ACTIONS(2167), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_let_DASHenv] = ACTIONS(2167), - [anon_sym_mut] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [aux_sym_cmd_identifier_token1] = ACTIONS(2167), - [aux_sym_cmd_identifier_token2] = ACTIONS(2173), - [aux_sym_cmd_identifier_token3] = ACTIONS(2173), - [aux_sym_cmd_identifier_token4] = ACTIONS(2173), - [aux_sym_cmd_identifier_token5] = ACTIONS(2173), - [aux_sym_cmd_identifier_token6] = ACTIONS(2173), - [aux_sym_cmd_identifier_token7] = ACTIONS(2173), - [aux_sym_cmd_identifier_token8] = ACTIONS(2167), - [aux_sym_cmd_identifier_token9] = ACTIONS(2167), - [aux_sym_cmd_identifier_token10] = ACTIONS(2173), - [aux_sym_cmd_identifier_token11] = ACTIONS(2173), - [aux_sym_cmd_identifier_token12] = ACTIONS(2167), - [aux_sym_cmd_identifier_token13] = ACTIONS(2167), - [aux_sym_cmd_identifier_token14] = ACTIONS(2167), - [aux_sym_cmd_identifier_token15] = ACTIONS(2167), - [aux_sym_cmd_identifier_token16] = ACTIONS(2173), - [aux_sym_cmd_identifier_token17] = ACTIONS(2173), - [aux_sym_cmd_identifier_token18] = ACTIONS(2173), - [aux_sym_cmd_identifier_token19] = ACTIONS(2173), - [aux_sym_cmd_identifier_token20] = ACTIONS(2173), - [aux_sym_cmd_identifier_token21] = ACTIONS(2173), - [aux_sym_cmd_identifier_token22] = ACTIONS(2173), - [aux_sym_cmd_identifier_token23] = ACTIONS(2173), - [aux_sym_cmd_identifier_token24] = ACTIONS(2173), - [aux_sym_cmd_identifier_token25] = ACTIONS(2173), - [aux_sym_cmd_identifier_token26] = ACTIONS(2173), - [aux_sym_cmd_identifier_token27] = ACTIONS(2173), - [aux_sym_cmd_identifier_token28] = ACTIONS(2173), - [aux_sym_cmd_identifier_token29] = ACTIONS(2173), - [aux_sym_cmd_identifier_token30] = ACTIONS(2173), - [aux_sym_cmd_identifier_token31] = ACTIONS(2173), - [aux_sym_cmd_identifier_token32] = ACTIONS(2173), - [aux_sym_cmd_identifier_token33] = ACTIONS(2173), - [aux_sym_cmd_identifier_token34] = ACTIONS(2167), - [aux_sym_cmd_identifier_token35] = ACTIONS(2173), - [aux_sym_cmd_identifier_token36] = ACTIONS(2173), - [aux_sym_cmd_identifier_token37] = ACTIONS(2173), - [aux_sym_cmd_identifier_token38] = ACTIONS(2167), - [aux_sym_cmd_identifier_token39] = ACTIONS(2173), - [aux_sym_cmd_identifier_token40] = ACTIONS(2173), - [anon_sym_def] = ACTIONS(2167), - [anon_sym_export_DASHenv] = ACTIONS(2167), - [anon_sym_extern] = ACTIONS(2167), - [anon_sym_module] = ACTIONS(2167), - [anon_sym_use] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2173), - [anon_sym_error] = ACTIONS(2167), - [anon_sym_DASH2] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_in2] = ACTIONS(2167), - [anon_sym_loop] = ACTIONS(2167), - [anon_sym_make] = ACTIONS(2167), - [anon_sym_while] = ACTIONS(2167), - [anon_sym_do] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_else] = ACTIONS(2167), - [anon_sym_match] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2173), - [anon_sym_try] = ACTIONS(2167), - [anon_sym_catch] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_source] = ACTIONS(2167), - [anon_sym_source_DASHenv] = ACTIONS(2167), - [anon_sym_register] = ACTIONS(2167), - [anon_sym_hide] = ACTIONS(2167), - [anon_sym_hide_DASHenv] = ACTIONS(2167), - [anon_sym_overlay] = ACTIONS(2167), - [anon_sym_as] = ACTIONS(2167), - [anon_sym_PLUS2] = ACTIONS(2167), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2173), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2173), - [aux_sym__val_number_decimal_token1] = ACTIONS(2167), - [aux_sym__val_number_decimal_token2] = ACTIONS(2173), - [aux_sym__val_number_decimal_token3] = ACTIONS(2173), - [aux_sym__val_number_decimal_token4] = ACTIONS(2173), - [aux_sym__val_number_token1] = ACTIONS(2173), - [aux_sym__val_number_token2] = ACTIONS(2173), - [aux_sym__val_number_token3] = ACTIONS(2173), - [aux_sym__val_number_token4] = ACTIONS(2167), - [aux_sym__val_number_token5] = ACTIONS(2167), - [aux_sym__val_number_token6] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2173), - [sym__str_single_quotes] = ACTIONS(2173), - [sym__str_back_ticks] = ACTIONS(2173), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2173), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2173), - }, - [704] = { - [sym_comment] = STATE(704), - [anon_sym_export] = ACTIONS(2175), - [anon_sym_alias] = ACTIONS(2175), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_let_DASHenv] = ACTIONS(2175), - [anon_sym_mut] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [aux_sym_cmd_identifier_token1] = ACTIONS(2175), - [aux_sym_cmd_identifier_token2] = ACTIONS(2181), - [aux_sym_cmd_identifier_token3] = ACTIONS(2181), - [aux_sym_cmd_identifier_token4] = ACTIONS(2181), - [aux_sym_cmd_identifier_token5] = ACTIONS(2181), - [aux_sym_cmd_identifier_token6] = ACTIONS(2181), - [aux_sym_cmd_identifier_token7] = ACTIONS(2181), - [aux_sym_cmd_identifier_token8] = ACTIONS(2175), - [aux_sym_cmd_identifier_token9] = ACTIONS(2175), - [aux_sym_cmd_identifier_token10] = ACTIONS(2181), - [aux_sym_cmd_identifier_token11] = ACTIONS(2181), - [aux_sym_cmd_identifier_token12] = ACTIONS(2175), - [aux_sym_cmd_identifier_token13] = ACTIONS(2175), - [aux_sym_cmd_identifier_token14] = ACTIONS(2175), - [aux_sym_cmd_identifier_token15] = ACTIONS(2175), - [aux_sym_cmd_identifier_token16] = ACTIONS(2181), - [aux_sym_cmd_identifier_token17] = ACTIONS(2181), - [aux_sym_cmd_identifier_token18] = ACTIONS(2181), - [aux_sym_cmd_identifier_token19] = ACTIONS(2181), - [aux_sym_cmd_identifier_token20] = ACTIONS(2181), - [aux_sym_cmd_identifier_token21] = ACTIONS(2181), - [aux_sym_cmd_identifier_token22] = ACTIONS(2181), - [aux_sym_cmd_identifier_token23] = ACTIONS(2181), - [aux_sym_cmd_identifier_token24] = ACTIONS(2181), - [aux_sym_cmd_identifier_token25] = ACTIONS(2181), - [aux_sym_cmd_identifier_token26] = ACTIONS(2181), - [aux_sym_cmd_identifier_token27] = ACTIONS(2181), - [aux_sym_cmd_identifier_token28] = ACTIONS(2181), - [aux_sym_cmd_identifier_token29] = ACTIONS(2181), - [aux_sym_cmd_identifier_token30] = ACTIONS(2181), - [aux_sym_cmd_identifier_token31] = ACTIONS(2181), - [aux_sym_cmd_identifier_token32] = ACTIONS(2181), - [aux_sym_cmd_identifier_token33] = ACTIONS(2181), - [aux_sym_cmd_identifier_token34] = ACTIONS(2175), - [aux_sym_cmd_identifier_token35] = ACTIONS(2181), - [aux_sym_cmd_identifier_token36] = ACTIONS(2181), - [aux_sym_cmd_identifier_token37] = ACTIONS(2181), - [aux_sym_cmd_identifier_token38] = ACTIONS(2175), - [aux_sym_cmd_identifier_token39] = ACTIONS(2181), - [aux_sym_cmd_identifier_token40] = ACTIONS(2181), - [anon_sym_def] = ACTIONS(2175), - [anon_sym_export_DASHenv] = ACTIONS(2175), - [anon_sym_extern] = ACTIONS(2175), - [anon_sym_module] = ACTIONS(2175), - [anon_sym_use] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_DOLLAR] = ACTIONS(2181), - [anon_sym_error] = ACTIONS(2175), - [anon_sym_DASH2] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_in2] = ACTIONS(2175), - [anon_sym_loop] = ACTIONS(2175), - [anon_sym_make] = ACTIONS(2175), - [anon_sym_while] = ACTIONS(2175), - [anon_sym_do] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_else] = ACTIONS(2175), - [anon_sym_match] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2181), - [anon_sym_try] = ACTIONS(2175), - [anon_sym_catch] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_source] = ACTIONS(2175), - [anon_sym_source_DASHenv] = ACTIONS(2175), - [anon_sym_register] = ACTIONS(2175), - [anon_sym_hide] = ACTIONS(2175), - [anon_sym_hide_DASHenv] = ACTIONS(2175), - [anon_sym_overlay] = ACTIONS(2175), - [anon_sym_as] = ACTIONS(2175), - [anon_sym_PLUS2] = ACTIONS(2175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2181), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2181), - [aux_sym__val_number_decimal_token1] = ACTIONS(2175), - [aux_sym__val_number_decimal_token2] = ACTIONS(2181), - [aux_sym__val_number_decimal_token3] = ACTIONS(2181), - [aux_sym__val_number_decimal_token4] = ACTIONS(2181), - [aux_sym__val_number_token1] = ACTIONS(2181), - [aux_sym__val_number_token2] = ACTIONS(2181), - [aux_sym__val_number_token3] = ACTIONS(2181), - [aux_sym__val_number_token4] = ACTIONS(2175), - [aux_sym__val_number_token5] = ACTIONS(2175), - [aux_sym__val_number_token6] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2181), - [sym__str_single_quotes] = ACTIONS(2181), - [sym__str_back_ticks] = ACTIONS(2181), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2181), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2181), - }, - [705] = { - [sym_comment] = STATE(705), - [anon_sym_export] = ACTIONS(2500), - [anon_sym_alias] = ACTIONS(2500), - [anon_sym_let] = ACTIONS(2500), - [anon_sym_let_DASHenv] = ACTIONS(2500), - [anon_sym_mut] = ACTIONS(2500), - [anon_sym_const] = ACTIONS(2500), - [aux_sym_cmd_identifier_token1] = ACTIONS(2500), - [aux_sym_cmd_identifier_token2] = ACTIONS(2502), - [aux_sym_cmd_identifier_token3] = ACTIONS(2502), - [aux_sym_cmd_identifier_token4] = ACTIONS(2502), - [aux_sym_cmd_identifier_token5] = ACTIONS(2502), - [aux_sym_cmd_identifier_token6] = ACTIONS(2502), - [aux_sym_cmd_identifier_token7] = ACTIONS(2502), - [aux_sym_cmd_identifier_token8] = ACTIONS(2500), - [aux_sym_cmd_identifier_token9] = ACTIONS(2500), - [aux_sym_cmd_identifier_token10] = ACTIONS(2502), - [aux_sym_cmd_identifier_token11] = ACTIONS(2502), - [aux_sym_cmd_identifier_token12] = ACTIONS(2500), - [aux_sym_cmd_identifier_token13] = ACTIONS(2500), - [aux_sym_cmd_identifier_token14] = ACTIONS(2500), - [aux_sym_cmd_identifier_token15] = ACTIONS(2500), - [aux_sym_cmd_identifier_token16] = ACTIONS(2502), - [aux_sym_cmd_identifier_token17] = ACTIONS(2502), - [aux_sym_cmd_identifier_token18] = ACTIONS(2502), - [aux_sym_cmd_identifier_token19] = ACTIONS(2502), - [aux_sym_cmd_identifier_token20] = ACTIONS(2502), - [aux_sym_cmd_identifier_token21] = ACTIONS(2502), - [aux_sym_cmd_identifier_token22] = ACTIONS(2502), - [aux_sym_cmd_identifier_token23] = ACTIONS(2502), - [aux_sym_cmd_identifier_token24] = ACTIONS(2502), - [aux_sym_cmd_identifier_token25] = ACTIONS(2502), - [aux_sym_cmd_identifier_token26] = ACTIONS(2502), - [aux_sym_cmd_identifier_token27] = ACTIONS(2502), - [aux_sym_cmd_identifier_token28] = ACTIONS(2502), - [aux_sym_cmd_identifier_token29] = ACTIONS(2502), - [aux_sym_cmd_identifier_token30] = ACTIONS(2502), - [aux_sym_cmd_identifier_token31] = ACTIONS(2502), - [aux_sym_cmd_identifier_token32] = ACTIONS(2502), - [aux_sym_cmd_identifier_token33] = ACTIONS(2502), - [aux_sym_cmd_identifier_token34] = ACTIONS(2500), - [aux_sym_cmd_identifier_token35] = ACTIONS(2502), - [aux_sym_cmd_identifier_token36] = ACTIONS(2502), - [aux_sym_cmd_identifier_token37] = ACTIONS(2502), - [aux_sym_cmd_identifier_token38] = ACTIONS(2500), - [aux_sym_cmd_identifier_token39] = ACTIONS(2502), - [aux_sym_cmd_identifier_token40] = ACTIONS(2502), - [anon_sym_def] = ACTIONS(2500), - [anon_sym_export_DASHenv] = ACTIONS(2500), - [anon_sym_extern] = ACTIONS(2500), - [anon_sym_module] = ACTIONS(2500), - [anon_sym_use] = ACTIONS(2500), - [anon_sym_LPAREN] = ACTIONS(2502), - [anon_sym_DOLLAR] = ACTIONS(2502), - [anon_sym_error] = ACTIONS(2500), - [anon_sym_DASH2] = ACTIONS(2500), - [anon_sym_break] = ACTIONS(2500), - [anon_sym_continue] = ACTIONS(2500), - [anon_sym_for] = ACTIONS(2500), - [anon_sym_in2] = ACTIONS(2500), - [anon_sym_loop] = ACTIONS(2500), - [anon_sym_make] = ACTIONS(2500), - [anon_sym_while] = ACTIONS(2500), - [anon_sym_do] = ACTIONS(2500), - [anon_sym_if] = ACTIONS(2500), - [anon_sym_else] = ACTIONS(2500), - [anon_sym_match] = ACTIONS(2500), - [anon_sym_RBRACE] = ACTIONS(2502), - [anon_sym_try] = ACTIONS(2500), - [anon_sym_catch] = ACTIONS(2500), - [anon_sym_return] = ACTIONS(2500), - [anon_sym_source] = ACTIONS(2500), - [anon_sym_source_DASHenv] = ACTIONS(2500), - [anon_sym_register] = ACTIONS(2500), - [anon_sym_hide] = ACTIONS(2500), - [anon_sym_hide_DASHenv] = ACTIONS(2500), - [anon_sym_overlay] = ACTIONS(2500), - [anon_sym_as] = ACTIONS(2500), - [anon_sym_PLUS2] = ACTIONS(2500), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2502), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2502), - [aux_sym__val_number_decimal_token1] = ACTIONS(2500), - [aux_sym__val_number_decimal_token2] = ACTIONS(2502), - [aux_sym__val_number_decimal_token3] = ACTIONS(2502), - [aux_sym__val_number_decimal_token4] = ACTIONS(2502), - [aux_sym__val_number_token1] = ACTIONS(2502), - [aux_sym__val_number_token2] = ACTIONS(2502), - [aux_sym__val_number_token3] = ACTIONS(2502), - [aux_sym__val_number_token4] = ACTIONS(2500), - [aux_sym__val_number_token5] = ACTIONS(2500), - [aux_sym__val_number_token6] = ACTIONS(2500), - [anon_sym_DQUOTE] = ACTIONS(2502), - [sym__str_single_quotes] = ACTIONS(2502), - [sym__str_back_ticks] = ACTIONS(2502), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2502), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2502), - }, - [706] = { - [sym_comment] = STATE(706), - [anon_sym_export] = ACTIONS(2133), - [anon_sym_alias] = ACTIONS(2133), - [anon_sym_let] = ACTIONS(2133), - [anon_sym_let_DASHenv] = ACTIONS(2133), - [anon_sym_mut] = ACTIONS(2133), - [anon_sym_const] = ACTIONS(2133), - [aux_sym_cmd_identifier_token1] = ACTIONS(2133), - [aux_sym_cmd_identifier_token2] = ACTIONS(2139), - [aux_sym_cmd_identifier_token3] = ACTIONS(2139), - [aux_sym_cmd_identifier_token4] = ACTIONS(2139), - [aux_sym_cmd_identifier_token5] = ACTIONS(2139), - [aux_sym_cmd_identifier_token6] = ACTIONS(2139), - [aux_sym_cmd_identifier_token7] = ACTIONS(2139), - [aux_sym_cmd_identifier_token8] = ACTIONS(2133), - [aux_sym_cmd_identifier_token9] = ACTIONS(2133), - [aux_sym_cmd_identifier_token10] = ACTIONS(2139), - [aux_sym_cmd_identifier_token11] = ACTIONS(2139), - [aux_sym_cmd_identifier_token12] = ACTIONS(2133), - [aux_sym_cmd_identifier_token13] = ACTIONS(2133), - [aux_sym_cmd_identifier_token14] = ACTIONS(2133), - [aux_sym_cmd_identifier_token15] = ACTIONS(2133), - [aux_sym_cmd_identifier_token16] = ACTIONS(2139), - [aux_sym_cmd_identifier_token17] = ACTIONS(2139), - [aux_sym_cmd_identifier_token18] = ACTIONS(2139), - [aux_sym_cmd_identifier_token19] = ACTIONS(2139), - [aux_sym_cmd_identifier_token20] = ACTIONS(2139), - [aux_sym_cmd_identifier_token21] = ACTIONS(2139), - [aux_sym_cmd_identifier_token22] = ACTIONS(2139), - [aux_sym_cmd_identifier_token23] = ACTIONS(2139), - [aux_sym_cmd_identifier_token24] = ACTIONS(2139), - [aux_sym_cmd_identifier_token25] = ACTIONS(2139), - [aux_sym_cmd_identifier_token26] = ACTIONS(2139), - [aux_sym_cmd_identifier_token27] = ACTIONS(2139), - [aux_sym_cmd_identifier_token28] = ACTIONS(2139), - [aux_sym_cmd_identifier_token29] = ACTIONS(2139), - [aux_sym_cmd_identifier_token30] = ACTIONS(2139), - [aux_sym_cmd_identifier_token31] = ACTIONS(2139), - [aux_sym_cmd_identifier_token32] = ACTIONS(2139), - [aux_sym_cmd_identifier_token33] = ACTIONS(2139), - [aux_sym_cmd_identifier_token34] = ACTIONS(2133), - [aux_sym_cmd_identifier_token35] = ACTIONS(2139), - [aux_sym_cmd_identifier_token36] = ACTIONS(2139), - [aux_sym_cmd_identifier_token37] = ACTIONS(2139), - [aux_sym_cmd_identifier_token38] = ACTIONS(2133), - [aux_sym_cmd_identifier_token39] = ACTIONS(2139), - [aux_sym_cmd_identifier_token40] = ACTIONS(2139), - [anon_sym_def] = ACTIONS(2133), - [anon_sym_export_DASHenv] = ACTIONS(2133), - [anon_sym_extern] = ACTIONS(2133), - [anon_sym_module] = ACTIONS(2133), - [anon_sym_use] = ACTIONS(2133), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_DOLLAR] = ACTIONS(2139), - [anon_sym_error] = ACTIONS(2133), - [anon_sym_DASH2] = ACTIONS(2133), - [anon_sym_break] = ACTIONS(2133), - [anon_sym_continue] = ACTIONS(2133), - [anon_sym_for] = ACTIONS(2133), - [anon_sym_in2] = ACTIONS(2133), - [anon_sym_loop] = ACTIONS(2133), - [anon_sym_make] = ACTIONS(2133), - [anon_sym_while] = ACTIONS(2133), - [anon_sym_do] = ACTIONS(2133), - [anon_sym_if] = ACTIONS(2133), - [anon_sym_else] = ACTIONS(2133), - [anon_sym_match] = ACTIONS(2133), - [anon_sym_RBRACE] = ACTIONS(2139), - [anon_sym_try] = ACTIONS(2133), - [anon_sym_catch] = ACTIONS(2133), - [anon_sym_return] = ACTIONS(2133), - [anon_sym_source] = ACTIONS(2133), - [anon_sym_source_DASHenv] = ACTIONS(2133), - [anon_sym_register] = ACTIONS(2133), - [anon_sym_hide] = ACTIONS(2133), - [anon_sym_hide_DASHenv] = ACTIONS(2133), - [anon_sym_overlay] = ACTIONS(2133), - [anon_sym_as] = ACTIONS(2133), - [anon_sym_PLUS2] = ACTIONS(2133), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2139), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2139), - [aux_sym__val_number_decimal_token1] = ACTIONS(2133), - [aux_sym__val_number_decimal_token2] = ACTIONS(2139), - [aux_sym__val_number_decimal_token3] = ACTIONS(2139), - [aux_sym__val_number_decimal_token4] = ACTIONS(2139), - [aux_sym__val_number_token1] = ACTIONS(2139), - [aux_sym__val_number_token2] = ACTIONS(2139), - [aux_sym__val_number_token3] = ACTIONS(2139), - [aux_sym__val_number_token4] = ACTIONS(2133), - [aux_sym__val_number_token5] = ACTIONS(2133), - [aux_sym__val_number_token6] = ACTIONS(2133), - [anon_sym_DQUOTE] = ACTIONS(2139), - [sym__str_single_quotes] = ACTIONS(2139), - [sym__str_back_ticks] = ACTIONS(2139), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2139), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2139), - }, - [707] = { - [sym_comment] = STATE(707), [anon_sym_export] = ACTIONS(1290), [anon_sym_alias] = ACTIONS(1290), [anon_sym_let] = ACTIONS(1290), @@ -150682,1097 +150605,2384 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1288), }, + [704] = { + [sym_comment] = STATE(704), + [anon_sym_export] = ACTIONS(2157), + [anon_sym_alias] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_let_DASHenv] = ACTIONS(2157), + [anon_sym_mut] = ACTIONS(2157), + [anon_sym_const] = ACTIONS(2157), + [aux_sym_cmd_identifier_token1] = ACTIONS(2157), + [aux_sym_cmd_identifier_token2] = ACTIONS(2163), + [aux_sym_cmd_identifier_token3] = ACTIONS(2163), + [aux_sym_cmd_identifier_token4] = ACTIONS(2163), + [aux_sym_cmd_identifier_token5] = ACTIONS(2163), + [aux_sym_cmd_identifier_token6] = ACTIONS(2163), + [aux_sym_cmd_identifier_token7] = ACTIONS(2163), + [aux_sym_cmd_identifier_token8] = ACTIONS(2157), + [aux_sym_cmd_identifier_token9] = ACTIONS(2157), + [aux_sym_cmd_identifier_token10] = ACTIONS(2163), + [aux_sym_cmd_identifier_token11] = ACTIONS(2163), + [aux_sym_cmd_identifier_token12] = ACTIONS(2157), + [aux_sym_cmd_identifier_token13] = ACTIONS(2157), + [aux_sym_cmd_identifier_token14] = ACTIONS(2157), + [aux_sym_cmd_identifier_token15] = ACTIONS(2157), + [aux_sym_cmd_identifier_token16] = ACTIONS(2163), + [aux_sym_cmd_identifier_token17] = ACTIONS(2163), + [aux_sym_cmd_identifier_token18] = ACTIONS(2163), + [aux_sym_cmd_identifier_token19] = ACTIONS(2163), + [aux_sym_cmd_identifier_token20] = ACTIONS(2163), + [aux_sym_cmd_identifier_token21] = ACTIONS(2163), + [aux_sym_cmd_identifier_token22] = ACTIONS(2163), + [aux_sym_cmd_identifier_token23] = ACTIONS(2163), + [aux_sym_cmd_identifier_token24] = ACTIONS(2163), + [aux_sym_cmd_identifier_token25] = ACTIONS(2163), + [aux_sym_cmd_identifier_token26] = ACTIONS(2163), + [aux_sym_cmd_identifier_token27] = ACTIONS(2163), + [aux_sym_cmd_identifier_token28] = ACTIONS(2163), + [aux_sym_cmd_identifier_token29] = ACTIONS(2163), + [aux_sym_cmd_identifier_token30] = ACTIONS(2163), + [aux_sym_cmd_identifier_token31] = ACTIONS(2163), + [aux_sym_cmd_identifier_token32] = ACTIONS(2163), + [aux_sym_cmd_identifier_token33] = ACTIONS(2163), + [aux_sym_cmd_identifier_token34] = ACTIONS(2157), + [aux_sym_cmd_identifier_token35] = ACTIONS(2163), + [aux_sym_cmd_identifier_token36] = ACTIONS(2163), + [aux_sym_cmd_identifier_token37] = ACTIONS(2163), + [aux_sym_cmd_identifier_token38] = ACTIONS(2157), + [aux_sym_cmd_identifier_token39] = ACTIONS(2163), + [aux_sym_cmd_identifier_token40] = ACTIONS(2163), + [anon_sym_def] = ACTIONS(2157), + [anon_sym_export_DASHenv] = ACTIONS(2157), + [anon_sym_extern] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), + [anon_sym_use] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_DOLLAR] = ACTIONS(2163), + [anon_sym_error] = ACTIONS(2157), + [anon_sym_DASH2] = ACTIONS(2157), + [anon_sym_break] = ACTIONS(2157), + [anon_sym_continue] = ACTIONS(2157), + [anon_sym_for] = ACTIONS(2157), + [anon_sym_in2] = ACTIONS(2157), + [anon_sym_loop] = ACTIONS(2157), + [anon_sym_make] = ACTIONS(2157), + [anon_sym_while] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_if] = ACTIONS(2157), + [anon_sym_else] = ACTIONS(2157), + [anon_sym_match] = ACTIONS(2157), + [anon_sym_RBRACE] = ACTIONS(2163), + [anon_sym_try] = ACTIONS(2157), + [anon_sym_catch] = ACTIONS(2157), + [anon_sym_return] = ACTIONS(2157), + [anon_sym_source] = ACTIONS(2157), + [anon_sym_source_DASHenv] = ACTIONS(2157), + [anon_sym_register] = ACTIONS(2157), + [anon_sym_hide] = ACTIONS(2157), + [anon_sym_hide_DASHenv] = ACTIONS(2157), + [anon_sym_overlay] = ACTIONS(2157), + [anon_sym_as] = ACTIONS(2157), + [anon_sym_PLUS2] = ACTIONS(2157), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2163), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2163), + [aux_sym__val_number_decimal_token1] = ACTIONS(2157), + [aux_sym__val_number_decimal_token2] = ACTIONS(2163), + [aux_sym__val_number_decimal_token3] = ACTIONS(2163), + [aux_sym__val_number_decimal_token4] = ACTIONS(2163), + [aux_sym__val_number_token1] = ACTIONS(2163), + [aux_sym__val_number_token2] = ACTIONS(2163), + [aux_sym__val_number_token3] = ACTIONS(2163), + [aux_sym__val_number_token4] = ACTIONS(2157), + [aux_sym__val_number_token5] = ACTIONS(2157), + [aux_sym__val_number_token6] = ACTIONS(2157), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym__str_single_quotes] = ACTIONS(2163), + [sym__str_back_ticks] = ACTIONS(2163), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2163), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2163), + }, + [705] = { + [sym_comment] = STATE(705), + [anon_sym_export] = ACTIONS(2383), + [anon_sym_alias] = ACTIONS(2383), + [anon_sym_let] = ACTIONS(2383), + [anon_sym_let_DASHenv] = ACTIONS(2383), + [anon_sym_mut] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2383), + [aux_sym_cmd_identifier_token1] = ACTIONS(2383), + [aux_sym_cmd_identifier_token2] = ACTIONS(2385), + [aux_sym_cmd_identifier_token3] = ACTIONS(2385), + [aux_sym_cmd_identifier_token4] = ACTIONS(2385), + [aux_sym_cmd_identifier_token5] = ACTIONS(2385), + [aux_sym_cmd_identifier_token6] = ACTIONS(2385), + [aux_sym_cmd_identifier_token7] = ACTIONS(2385), + [aux_sym_cmd_identifier_token8] = ACTIONS(2383), + [aux_sym_cmd_identifier_token9] = ACTIONS(2383), + [aux_sym_cmd_identifier_token10] = ACTIONS(2385), + [aux_sym_cmd_identifier_token11] = ACTIONS(2385), + [aux_sym_cmd_identifier_token12] = ACTIONS(2383), + [aux_sym_cmd_identifier_token13] = ACTIONS(2383), + [aux_sym_cmd_identifier_token14] = ACTIONS(2383), + [aux_sym_cmd_identifier_token15] = ACTIONS(2383), + [aux_sym_cmd_identifier_token16] = ACTIONS(2385), + [aux_sym_cmd_identifier_token17] = ACTIONS(2385), + [aux_sym_cmd_identifier_token18] = ACTIONS(2385), + [aux_sym_cmd_identifier_token19] = ACTIONS(2385), + [aux_sym_cmd_identifier_token20] = ACTIONS(2385), + [aux_sym_cmd_identifier_token21] = ACTIONS(2385), + [aux_sym_cmd_identifier_token22] = ACTIONS(2385), + [aux_sym_cmd_identifier_token23] = ACTIONS(2385), + [aux_sym_cmd_identifier_token24] = ACTIONS(2385), + [aux_sym_cmd_identifier_token25] = ACTIONS(2385), + [aux_sym_cmd_identifier_token26] = ACTIONS(2385), + [aux_sym_cmd_identifier_token27] = ACTIONS(2385), + [aux_sym_cmd_identifier_token28] = ACTIONS(2385), + [aux_sym_cmd_identifier_token29] = ACTIONS(2385), + [aux_sym_cmd_identifier_token30] = ACTIONS(2385), + [aux_sym_cmd_identifier_token31] = ACTIONS(2385), + [aux_sym_cmd_identifier_token32] = ACTIONS(2385), + [aux_sym_cmd_identifier_token33] = ACTIONS(2385), + [aux_sym_cmd_identifier_token34] = ACTIONS(2383), + [aux_sym_cmd_identifier_token35] = ACTIONS(2385), + [aux_sym_cmd_identifier_token36] = ACTIONS(2385), + [aux_sym_cmd_identifier_token37] = ACTIONS(2385), + [aux_sym_cmd_identifier_token38] = ACTIONS(2383), + [aux_sym_cmd_identifier_token39] = ACTIONS(2385), + [aux_sym_cmd_identifier_token40] = ACTIONS(2385), + [anon_sym_def] = ACTIONS(2383), + [anon_sym_export_DASHenv] = ACTIONS(2383), + [anon_sym_extern] = ACTIONS(2383), + [anon_sym_module] = ACTIONS(2383), + [anon_sym_use] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2385), + [anon_sym_DOLLAR] = ACTIONS(2385), + [anon_sym_error] = ACTIONS(2383), + [anon_sym_DASH2] = ACTIONS(2383), + [anon_sym_break] = ACTIONS(2383), + [anon_sym_continue] = ACTIONS(2383), + [anon_sym_for] = ACTIONS(2383), + [anon_sym_in2] = ACTIONS(2383), + [anon_sym_loop] = ACTIONS(2383), + [anon_sym_make] = ACTIONS(2383), + [anon_sym_while] = ACTIONS(2383), + [anon_sym_do] = ACTIONS(2383), + [anon_sym_if] = ACTIONS(2383), + [anon_sym_else] = ACTIONS(2383), + [anon_sym_match] = ACTIONS(2383), + [anon_sym_RBRACE] = ACTIONS(2385), + [anon_sym_try] = ACTIONS(2383), + [anon_sym_catch] = ACTIONS(2383), + [anon_sym_return] = ACTIONS(2383), + [anon_sym_source] = ACTIONS(2383), + [anon_sym_source_DASHenv] = ACTIONS(2383), + [anon_sym_register] = ACTIONS(2383), + [anon_sym_hide] = ACTIONS(2383), + [anon_sym_hide_DASHenv] = ACTIONS(2383), + [anon_sym_overlay] = ACTIONS(2383), + [anon_sym_as] = ACTIONS(2383), + [anon_sym_PLUS2] = ACTIONS(2383), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2385), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2385), + [aux_sym__val_number_decimal_token1] = ACTIONS(2383), + [aux_sym__val_number_decimal_token2] = ACTIONS(2385), + [aux_sym__val_number_decimal_token3] = ACTIONS(2385), + [aux_sym__val_number_decimal_token4] = ACTIONS(2385), + [aux_sym__val_number_token1] = ACTIONS(2385), + [aux_sym__val_number_token2] = ACTIONS(2385), + [aux_sym__val_number_token3] = ACTIONS(2385), + [aux_sym__val_number_token4] = ACTIONS(2383), + [aux_sym__val_number_token5] = ACTIONS(2383), + [aux_sym__val_number_token6] = ACTIONS(2383), + [anon_sym_DQUOTE] = ACTIONS(2385), + [sym__str_single_quotes] = ACTIONS(2385), + [sym__str_back_ticks] = ACTIONS(2385), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2385), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2385), + }, + [706] = { + [sym_comment] = STATE(706), + [anon_sym_export] = ACTIONS(2122), + [anon_sym_alias] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_let_DASHenv] = ACTIONS(2122), + [anon_sym_mut] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [aux_sym_cmd_identifier_token1] = ACTIONS(2122), + [aux_sym_cmd_identifier_token2] = ACTIONS(2128), + [aux_sym_cmd_identifier_token3] = ACTIONS(2128), + [aux_sym_cmd_identifier_token4] = ACTIONS(2128), + [aux_sym_cmd_identifier_token5] = ACTIONS(2128), + [aux_sym_cmd_identifier_token6] = ACTIONS(2128), + [aux_sym_cmd_identifier_token7] = ACTIONS(2128), + [aux_sym_cmd_identifier_token8] = ACTIONS(2122), + [aux_sym_cmd_identifier_token9] = ACTIONS(2122), + [aux_sym_cmd_identifier_token10] = ACTIONS(2128), + [aux_sym_cmd_identifier_token11] = ACTIONS(2128), + [aux_sym_cmd_identifier_token12] = ACTIONS(2122), + [aux_sym_cmd_identifier_token13] = ACTIONS(2122), + [aux_sym_cmd_identifier_token14] = ACTIONS(2122), + [aux_sym_cmd_identifier_token15] = ACTIONS(2122), + [aux_sym_cmd_identifier_token16] = ACTIONS(2128), + [aux_sym_cmd_identifier_token17] = ACTIONS(2128), + [aux_sym_cmd_identifier_token18] = ACTIONS(2128), + [aux_sym_cmd_identifier_token19] = ACTIONS(2128), + [aux_sym_cmd_identifier_token20] = ACTIONS(2128), + [aux_sym_cmd_identifier_token21] = ACTIONS(2128), + [aux_sym_cmd_identifier_token22] = ACTIONS(2128), + [aux_sym_cmd_identifier_token23] = ACTIONS(2128), + [aux_sym_cmd_identifier_token24] = ACTIONS(2128), + [aux_sym_cmd_identifier_token25] = ACTIONS(2128), + [aux_sym_cmd_identifier_token26] = ACTIONS(2128), + [aux_sym_cmd_identifier_token27] = ACTIONS(2128), + [aux_sym_cmd_identifier_token28] = ACTIONS(2128), + [aux_sym_cmd_identifier_token29] = ACTIONS(2128), + [aux_sym_cmd_identifier_token30] = ACTIONS(2128), + [aux_sym_cmd_identifier_token31] = ACTIONS(2128), + [aux_sym_cmd_identifier_token32] = ACTIONS(2128), + [aux_sym_cmd_identifier_token33] = ACTIONS(2128), + [aux_sym_cmd_identifier_token34] = ACTIONS(2122), + [aux_sym_cmd_identifier_token35] = ACTIONS(2128), + [aux_sym_cmd_identifier_token36] = ACTIONS(2128), + [aux_sym_cmd_identifier_token37] = ACTIONS(2128), + [aux_sym_cmd_identifier_token38] = ACTIONS(2122), + [aux_sym_cmd_identifier_token39] = ACTIONS(2128), + [aux_sym_cmd_identifier_token40] = ACTIONS(2128), + [anon_sym_def] = ACTIONS(2122), + [anon_sym_export_DASHenv] = ACTIONS(2122), + [anon_sym_extern] = ACTIONS(2122), + [anon_sym_module] = ACTIONS(2122), + [anon_sym_use] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2128), + [anon_sym_DOLLAR] = ACTIONS(2128), + [anon_sym_error] = ACTIONS(2122), + [anon_sym_DASH2] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_in2] = ACTIONS(2122), + [anon_sym_loop] = ACTIONS(2122), + [anon_sym_make] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_do] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_else] = ACTIONS(2122), + [anon_sym_match] = ACTIONS(2122), + [anon_sym_RBRACE] = ACTIONS(2128), + [anon_sym_try] = ACTIONS(2122), + [anon_sym_catch] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_source] = ACTIONS(2122), + [anon_sym_source_DASHenv] = ACTIONS(2122), + [anon_sym_register] = ACTIONS(2122), + [anon_sym_hide] = ACTIONS(2122), + [anon_sym_hide_DASHenv] = ACTIONS(2122), + [anon_sym_overlay] = ACTIONS(2122), + [anon_sym_as] = ACTIONS(2122), + [anon_sym_PLUS2] = ACTIONS(2122), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2128), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2128), + [aux_sym__val_number_decimal_token1] = ACTIONS(2122), + [aux_sym__val_number_decimal_token2] = ACTIONS(2128), + [aux_sym__val_number_decimal_token3] = ACTIONS(2128), + [aux_sym__val_number_decimal_token4] = ACTIONS(2128), + [aux_sym__val_number_token1] = ACTIONS(2128), + [aux_sym__val_number_token2] = ACTIONS(2128), + [aux_sym__val_number_token3] = ACTIONS(2128), + [aux_sym__val_number_token4] = ACTIONS(2122), + [aux_sym__val_number_token5] = ACTIONS(2122), + [aux_sym__val_number_token6] = ACTIONS(2122), + [anon_sym_DQUOTE] = ACTIONS(2128), + [sym__str_single_quotes] = ACTIONS(2128), + [sym__str_back_ticks] = ACTIONS(2128), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2128), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2128), + }, + [707] = { + [sym_comment] = STATE(707), + [anon_sym_export] = ACTIONS(2130), + [anon_sym_alias] = ACTIONS(2130), + [anon_sym_let] = ACTIONS(2130), + [anon_sym_let_DASHenv] = ACTIONS(2130), + [anon_sym_mut] = ACTIONS(2130), + [anon_sym_const] = ACTIONS(2130), + [aux_sym_cmd_identifier_token1] = ACTIONS(2130), + [aux_sym_cmd_identifier_token2] = ACTIONS(2136), + [aux_sym_cmd_identifier_token3] = ACTIONS(2136), + [aux_sym_cmd_identifier_token4] = ACTIONS(2136), + [aux_sym_cmd_identifier_token5] = ACTIONS(2136), + [aux_sym_cmd_identifier_token6] = ACTIONS(2136), + [aux_sym_cmd_identifier_token7] = ACTIONS(2136), + [aux_sym_cmd_identifier_token8] = ACTIONS(2130), + [aux_sym_cmd_identifier_token9] = ACTIONS(2130), + [aux_sym_cmd_identifier_token10] = ACTIONS(2136), + [aux_sym_cmd_identifier_token11] = ACTIONS(2136), + [aux_sym_cmd_identifier_token12] = ACTIONS(2130), + [aux_sym_cmd_identifier_token13] = ACTIONS(2130), + [aux_sym_cmd_identifier_token14] = ACTIONS(2130), + [aux_sym_cmd_identifier_token15] = ACTIONS(2130), + [aux_sym_cmd_identifier_token16] = ACTIONS(2136), + [aux_sym_cmd_identifier_token17] = ACTIONS(2136), + [aux_sym_cmd_identifier_token18] = ACTIONS(2136), + [aux_sym_cmd_identifier_token19] = ACTIONS(2136), + [aux_sym_cmd_identifier_token20] = ACTIONS(2136), + [aux_sym_cmd_identifier_token21] = ACTIONS(2136), + [aux_sym_cmd_identifier_token22] = ACTIONS(2136), + [aux_sym_cmd_identifier_token23] = ACTIONS(2136), + [aux_sym_cmd_identifier_token24] = ACTIONS(2136), + [aux_sym_cmd_identifier_token25] = ACTIONS(2136), + [aux_sym_cmd_identifier_token26] = ACTIONS(2136), + [aux_sym_cmd_identifier_token27] = ACTIONS(2136), + [aux_sym_cmd_identifier_token28] = ACTIONS(2136), + [aux_sym_cmd_identifier_token29] = ACTIONS(2136), + [aux_sym_cmd_identifier_token30] = ACTIONS(2136), + [aux_sym_cmd_identifier_token31] = ACTIONS(2136), + [aux_sym_cmd_identifier_token32] = ACTIONS(2136), + [aux_sym_cmd_identifier_token33] = ACTIONS(2136), + [aux_sym_cmd_identifier_token34] = ACTIONS(2130), + [aux_sym_cmd_identifier_token35] = ACTIONS(2136), + [aux_sym_cmd_identifier_token36] = ACTIONS(2136), + [aux_sym_cmd_identifier_token37] = ACTIONS(2136), + [aux_sym_cmd_identifier_token38] = ACTIONS(2130), + [aux_sym_cmd_identifier_token39] = ACTIONS(2136), + [aux_sym_cmd_identifier_token40] = ACTIONS(2136), + [anon_sym_def] = ACTIONS(2130), + [anon_sym_export_DASHenv] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(2130), + [anon_sym_module] = ACTIONS(2130), + [anon_sym_use] = ACTIONS(2130), + [anon_sym_LPAREN] = ACTIONS(2136), + [anon_sym_DOLLAR] = ACTIONS(2136), + [anon_sym_error] = ACTIONS(2130), + [anon_sym_DASH2] = ACTIONS(2130), + [anon_sym_break] = ACTIONS(2130), + [anon_sym_continue] = ACTIONS(2130), + [anon_sym_for] = ACTIONS(2130), + [anon_sym_in2] = ACTIONS(2130), + [anon_sym_loop] = ACTIONS(2130), + [anon_sym_make] = ACTIONS(2130), + [anon_sym_while] = ACTIONS(2130), + [anon_sym_do] = ACTIONS(2130), + [anon_sym_if] = ACTIONS(2130), + [anon_sym_else] = ACTIONS(2130), + [anon_sym_match] = ACTIONS(2130), + [anon_sym_RBRACE] = ACTIONS(2136), + [anon_sym_try] = ACTIONS(2130), + [anon_sym_catch] = ACTIONS(2130), + [anon_sym_return] = ACTIONS(2130), + [anon_sym_source] = ACTIONS(2130), + [anon_sym_source_DASHenv] = ACTIONS(2130), + [anon_sym_register] = ACTIONS(2130), + [anon_sym_hide] = ACTIONS(2130), + [anon_sym_hide_DASHenv] = ACTIONS(2130), + [anon_sym_overlay] = ACTIONS(2130), + [anon_sym_as] = ACTIONS(2130), + [anon_sym_PLUS2] = ACTIONS(2130), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2136), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2136), + [aux_sym__val_number_decimal_token1] = ACTIONS(2130), + [aux_sym__val_number_decimal_token2] = ACTIONS(2136), + [aux_sym__val_number_decimal_token3] = ACTIONS(2136), + [aux_sym__val_number_decimal_token4] = ACTIONS(2136), + [aux_sym__val_number_token1] = ACTIONS(2136), + [aux_sym__val_number_token2] = ACTIONS(2136), + [aux_sym__val_number_token3] = ACTIONS(2136), + [aux_sym__val_number_token4] = ACTIONS(2130), + [aux_sym__val_number_token5] = ACTIONS(2130), + [aux_sym__val_number_token6] = ACTIONS(2130), + [anon_sym_DQUOTE] = ACTIONS(2136), + [sym__str_single_quotes] = ACTIONS(2136), + [sym__str_back_ticks] = ACTIONS(2136), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2136), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2136), + }, [708] = { [sym_comment] = STATE(708), - [anon_sym_export] = ACTIONS(2472), - [anon_sym_alias] = ACTIONS(2472), - [anon_sym_let] = ACTIONS(2472), - [anon_sym_let_DASHenv] = ACTIONS(2472), - [anon_sym_mut] = ACTIONS(2472), - [anon_sym_const] = ACTIONS(2472), - [aux_sym_cmd_identifier_token1] = ACTIONS(2472), - [aux_sym_cmd_identifier_token2] = ACTIONS(2474), - [aux_sym_cmd_identifier_token3] = ACTIONS(2474), - [aux_sym_cmd_identifier_token4] = ACTIONS(2474), - [aux_sym_cmd_identifier_token5] = ACTIONS(2474), - [aux_sym_cmd_identifier_token6] = ACTIONS(2474), - [aux_sym_cmd_identifier_token7] = ACTIONS(2474), - [aux_sym_cmd_identifier_token8] = ACTIONS(2472), - [aux_sym_cmd_identifier_token9] = ACTIONS(2472), - [aux_sym_cmd_identifier_token10] = ACTIONS(2474), - [aux_sym_cmd_identifier_token11] = ACTIONS(2474), - [aux_sym_cmd_identifier_token12] = ACTIONS(2472), - [aux_sym_cmd_identifier_token13] = ACTIONS(2472), - [aux_sym_cmd_identifier_token14] = ACTIONS(2472), - [aux_sym_cmd_identifier_token15] = ACTIONS(2472), - [aux_sym_cmd_identifier_token16] = ACTIONS(2474), - [aux_sym_cmd_identifier_token17] = ACTIONS(2474), - [aux_sym_cmd_identifier_token18] = ACTIONS(2474), - [aux_sym_cmd_identifier_token19] = ACTIONS(2474), - [aux_sym_cmd_identifier_token20] = ACTIONS(2474), - [aux_sym_cmd_identifier_token21] = ACTIONS(2474), - [aux_sym_cmd_identifier_token22] = ACTIONS(2474), - [aux_sym_cmd_identifier_token23] = ACTIONS(2474), - [aux_sym_cmd_identifier_token24] = ACTIONS(2474), - [aux_sym_cmd_identifier_token25] = ACTIONS(2474), - [aux_sym_cmd_identifier_token26] = ACTIONS(2474), - [aux_sym_cmd_identifier_token27] = ACTIONS(2474), - [aux_sym_cmd_identifier_token28] = ACTIONS(2474), - [aux_sym_cmd_identifier_token29] = ACTIONS(2474), - [aux_sym_cmd_identifier_token30] = ACTIONS(2474), - [aux_sym_cmd_identifier_token31] = ACTIONS(2474), - [aux_sym_cmd_identifier_token32] = ACTIONS(2474), - [aux_sym_cmd_identifier_token33] = ACTIONS(2474), - [aux_sym_cmd_identifier_token34] = ACTIONS(2472), - [aux_sym_cmd_identifier_token35] = ACTIONS(2474), - [aux_sym_cmd_identifier_token36] = ACTIONS(2474), - [aux_sym_cmd_identifier_token37] = ACTIONS(2474), - [aux_sym_cmd_identifier_token38] = ACTIONS(2472), - [aux_sym_cmd_identifier_token39] = ACTIONS(2474), - [aux_sym_cmd_identifier_token40] = ACTIONS(2474), - [anon_sym_def] = ACTIONS(2472), - [anon_sym_export_DASHenv] = ACTIONS(2472), - [anon_sym_extern] = ACTIONS(2472), - [anon_sym_module] = ACTIONS(2472), - [anon_sym_use] = ACTIONS(2472), - [anon_sym_LPAREN] = ACTIONS(2474), - [anon_sym_DOLLAR] = ACTIONS(2474), - [anon_sym_error] = ACTIONS(2472), - [anon_sym_DASH2] = ACTIONS(2472), - [anon_sym_break] = ACTIONS(2472), - [anon_sym_continue] = ACTIONS(2472), - [anon_sym_for] = ACTIONS(2472), - [anon_sym_in2] = ACTIONS(2472), - [anon_sym_loop] = ACTIONS(2472), - [anon_sym_make] = ACTIONS(2472), - [anon_sym_while] = ACTIONS(2472), - [anon_sym_do] = ACTIONS(2472), - [anon_sym_if] = ACTIONS(2472), - [anon_sym_else] = ACTIONS(2472), - [anon_sym_match] = ACTIONS(2472), - [anon_sym_RBRACE] = ACTIONS(2474), - [anon_sym_try] = ACTIONS(2472), - [anon_sym_catch] = ACTIONS(2472), - [anon_sym_return] = ACTIONS(2472), - [anon_sym_source] = ACTIONS(2472), - [anon_sym_source_DASHenv] = ACTIONS(2472), - [anon_sym_register] = ACTIONS(2472), - [anon_sym_hide] = ACTIONS(2472), - [anon_sym_hide_DASHenv] = ACTIONS(2472), - [anon_sym_overlay] = ACTIONS(2472), - [anon_sym_as] = ACTIONS(2472), - [anon_sym_PLUS2] = ACTIONS(2472), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2474), - [aux_sym__val_number_decimal_token1] = ACTIONS(2472), - [aux_sym__val_number_decimal_token2] = ACTIONS(2474), - [aux_sym__val_number_decimal_token3] = ACTIONS(2474), - [aux_sym__val_number_decimal_token4] = ACTIONS(2474), - [aux_sym__val_number_token1] = ACTIONS(2474), - [aux_sym__val_number_token2] = ACTIONS(2474), - [aux_sym__val_number_token3] = ACTIONS(2474), - [aux_sym__val_number_token4] = ACTIONS(2472), - [aux_sym__val_number_token5] = ACTIONS(2472), - [aux_sym__val_number_token6] = ACTIONS(2472), - [anon_sym_DQUOTE] = ACTIONS(2474), - [sym__str_single_quotes] = ACTIONS(2474), - [sym__str_back_ticks] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2474), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2474), + [anon_sym_export] = ACTIONS(2146), + [anon_sym_alias] = ACTIONS(2146), + [anon_sym_let] = ACTIONS(2146), + [anon_sym_let_DASHenv] = ACTIONS(2146), + [anon_sym_mut] = ACTIONS(2146), + [anon_sym_const] = ACTIONS(2146), + [aux_sym_cmd_identifier_token1] = ACTIONS(2146), + [aux_sym_cmd_identifier_token2] = ACTIONS(2152), + [aux_sym_cmd_identifier_token3] = ACTIONS(2152), + [aux_sym_cmd_identifier_token4] = ACTIONS(2152), + [aux_sym_cmd_identifier_token5] = ACTIONS(2152), + [aux_sym_cmd_identifier_token6] = ACTIONS(2152), + [aux_sym_cmd_identifier_token7] = ACTIONS(2152), + [aux_sym_cmd_identifier_token8] = ACTIONS(2146), + [aux_sym_cmd_identifier_token9] = ACTIONS(2146), + [aux_sym_cmd_identifier_token10] = ACTIONS(2152), + [aux_sym_cmd_identifier_token11] = ACTIONS(2152), + [aux_sym_cmd_identifier_token12] = ACTIONS(2146), + [aux_sym_cmd_identifier_token13] = ACTIONS(2146), + [aux_sym_cmd_identifier_token14] = ACTIONS(2146), + [aux_sym_cmd_identifier_token15] = ACTIONS(2146), + [aux_sym_cmd_identifier_token16] = ACTIONS(2152), + [aux_sym_cmd_identifier_token17] = ACTIONS(2152), + [aux_sym_cmd_identifier_token18] = ACTIONS(2152), + [aux_sym_cmd_identifier_token19] = ACTIONS(2152), + [aux_sym_cmd_identifier_token20] = ACTIONS(2152), + [aux_sym_cmd_identifier_token21] = ACTIONS(2152), + [aux_sym_cmd_identifier_token22] = ACTIONS(2152), + [aux_sym_cmd_identifier_token23] = ACTIONS(2152), + [aux_sym_cmd_identifier_token24] = ACTIONS(2152), + [aux_sym_cmd_identifier_token25] = ACTIONS(2152), + [aux_sym_cmd_identifier_token26] = ACTIONS(2152), + [aux_sym_cmd_identifier_token27] = ACTIONS(2152), + [aux_sym_cmd_identifier_token28] = ACTIONS(2152), + [aux_sym_cmd_identifier_token29] = ACTIONS(2152), + [aux_sym_cmd_identifier_token30] = ACTIONS(2152), + [aux_sym_cmd_identifier_token31] = ACTIONS(2152), + [aux_sym_cmd_identifier_token32] = ACTIONS(2152), + [aux_sym_cmd_identifier_token33] = ACTIONS(2152), + [aux_sym_cmd_identifier_token34] = ACTIONS(2146), + [aux_sym_cmd_identifier_token35] = ACTIONS(2152), + [aux_sym_cmd_identifier_token36] = ACTIONS(2152), + [aux_sym_cmd_identifier_token37] = ACTIONS(2152), + [aux_sym_cmd_identifier_token38] = ACTIONS(2146), + [aux_sym_cmd_identifier_token39] = ACTIONS(2152), + [aux_sym_cmd_identifier_token40] = ACTIONS(2152), + [anon_sym_def] = ACTIONS(2146), + [anon_sym_export_DASHenv] = ACTIONS(2146), + [anon_sym_extern] = ACTIONS(2146), + [anon_sym_module] = ACTIONS(2146), + [anon_sym_use] = ACTIONS(2146), + [anon_sym_LPAREN] = ACTIONS(2152), + [anon_sym_DOLLAR] = ACTIONS(2152), + [anon_sym_error] = ACTIONS(2146), + [anon_sym_DASH2] = ACTIONS(2146), + [anon_sym_break] = ACTIONS(2146), + [anon_sym_continue] = ACTIONS(2146), + [anon_sym_for] = ACTIONS(2146), + [anon_sym_in2] = ACTIONS(2146), + [anon_sym_loop] = ACTIONS(2146), + [anon_sym_make] = ACTIONS(2146), + [anon_sym_while] = ACTIONS(2146), + [anon_sym_do] = ACTIONS(2146), + [anon_sym_if] = ACTIONS(2146), + [anon_sym_else] = ACTIONS(2146), + [anon_sym_match] = ACTIONS(2146), + [anon_sym_RBRACE] = ACTIONS(2152), + [anon_sym_try] = ACTIONS(2146), + [anon_sym_catch] = ACTIONS(2146), + [anon_sym_return] = ACTIONS(2146), + [anon_sym_source] = ACTIONS(2146), + [anon_sym_source_DASHenv] = ACTIONS(2146), + [anon_sym_register] = ACTIONS(2146), + [anon_sym_hide] = ACTIONS(2146), + [anon_sym_hide_DASHenv] = ACTIONS(2146), + [anon_sym_overlay] = ACTIONS(2146), + [anon_sym_as] = ACTIONS(2146), + [anon_sym_PLUS2] = ACTIONS(2146), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2152), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2152), + [aux_sym__val_number_decimal_token1] = ACTIONS(2146), + [aux_sym__val_number_decimal_token2] = ACTIONS(2152), + [aux_sym__val_number_decimal_token3] = ACTIONS(2152), + [aux_sym__val_number_decimal_token4] = ACTIONS(2152), + [aux_sym__val_number_token1] = ACTIONS(2152), + [aux_sym__val_number_token2] = ACTIONS(2152), + [aux_sym__val_number_token3] = ACTIONS(2152), + [aux_sym__val_number_token4] = ACTIONS(2146), + [aux_sym__val_number_token5] = ACTIONS(2146), + [aux_sym__val_number_token6] = ACTIONS(2146), + [anon_sym_DQUOTE] = ACTIONS(2152), + [sym__str_single_quotes] = ACTIONS(2152), + [sym__str_back_ticks] = ACTIONS(2152), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2152), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2152), }, [709] = { [sym_comment] = STATE(709), - [anon_sym_export] = ACTIONS(2347), - [anon_sym_alias] = ACTIONS(2347), - [anon_sym_let] = ACTIONS(2347), - [anon_sym_let_DASHenv] = ACTIONS(2347), - [anon_sym_mut] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [aux_sym_cmd_identifier_token1] = ACTIONS(2347), - [aux_sym_cmd_identifier_token2] = ACTIONS(2349), - [aux_sym_cmd_identifier_token3] = ACTIONS(2349), - [aux_sym_cmd_identifier_token4] = ACTIONS(2349), - [aux_sym_cmd_identifier_token5] = ACTIONS(2349), - [aux_sym_cmd_identifier_token6] = ACTIONS(2349), - [aux_sym_cmd_identifier_token7] = ACTIONS(2349), - [aux_sym_cmd_identifier_token8] = ACTIONS(2347), - [aux_sym_cmd_identifier_token9] = ACTIONS(2347), - [aux_sym_cmd_identifier_token10] = ACTIONS(2349), - [aux_sym_cmd_identifier_token11] = ACTIONS(2349), - [aux_sym_cmd_identifier_token12] = ACTIONS(2347), - [aux_sym_cmd_identifier_token13] = ACTIONS(2347), - [aux_sym_cmd_identifier_token14] = ACTIONS(2347), - [aux_sym_cmd_identifier_token15] = ACTIONS(2347), - [aux_sym_cmd_identifier_token16] = ACTIONS(2349), - [aux_sym_cmd_identifier_token17] = ACTIONS(2349), - [aux_sym_cmd_identifier_token18] = ACTIONS(2349), - [aux_sym_cmd_identifier_token19] = ACTIONS(2349), - [aux_sym_cmd_identifier_token20] = ACTIONS(2349), - [aux_sym_cmd_identifier_token21] = ACTIONS(2349), - [aux_sym_cmd_identifier_token22] = ACTIONS(2349), - [aux_sym_cmd_identifier_token23] = ACTIONS(2349), - [aux_sym_cmd_identifier_token24] = ACTIONS(2349), - [aux_sym_cmd_identifier_token25] = ACTIONS(2349), - [aux_sym_cmd_identifier_token26] = ACTIONS(2349), - [aux_sym_cmd_identifier_token27] = ACTIONS(2349), - [aux_sym_cmd_identifier_token28] = ACTIONS(2349), - [aux_sym_cmd_identifier_token29] = ACTIONS(2349), - [aux_sym_cmd_identifier_token30] = ACTIONS(2349), - [aux_sym_cmd_identifier_token31] = ACTIONS(2349), - [aux_sym_cmd_identifier_token32] = ACTIONS(2349), - [aux_sym_cmd_identifier_token33] = ACTIONS(2349), - [aux_sym_cmd_identifier_token34] = ACTIONS(2347), - [aux_sym_cmd_identifier_token35] = ACTIONS(2349), - [aux_sym_cmd_identifier_token36] = ACTIONS(2349), - [aux_sym_cmd_identifier_token37] = ACTIONS(2349), - [aux_sym_cmd_identifier_token38] = ACTIONS(2347), - [aux_sym_cmd_identifier_token39] = ACTIONS(2349), - [aux_sym_cmd_identifier_token40] = ACTIONS(2349), - [anon_sym_def] = ACTIONS(2347), - [anon_sym_export_DASHenv] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym_module] = ACTIONS(2347), - [anon_sym_use] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_DOLLAR] = ACTIONS(2349), - [anon_sym_error] = ACTIONS(2347), - [anon_sym_DASH2] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_in2] = ACTIONS(2347), - [anon_sym_loop] = ACTIONS(2347), - [anon_sym_make] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_match] = ACTIONS(2347), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_catch] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_source] = ACTIONS(2347), - [anon_sym_source_DASHenv] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_hide] = ACTIONS(2347), - [anon_sym_hide_DASHenv] = ACTIONS(2347), - [anon_sym_overlay] = ACTIONS(2347), - [anon_sym_as] = ACTIONS(2347), - [anon_sym_PLUS2] = ACTIONS(2347), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2349), - [aux_sym__val_number_decimal_token1] = ACTIONS(2347), - [aux_sym__val_number_decimal_token2] = ACTIONS(2349), - [aux_sym__val_number_decimal_token3] = ACTIONS(2349), - [aux_sym__val_number_decimal_token4] = ACTIONS(2349), - [aux_sym__val_number_token1] = ACTIONS(2349), - [aux_sym__val_number_token2] = ACTIONS(2349), - [aux_sym__val_number_token3] = ACTIONS(2349), - [aux_sym__val_number_token4] = ACTIONS(2347), - [aux_sym__val_number_token5] = ACTIONS(2347), - [aux_sym__val_number_token6] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym__str_single_quotes] = ACTIONS(2349), - [sym__str_back_ticks] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2349), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2349), + [anon_sym_export] = ACTIONS(2422), + [anon_sym_alias] = ACTIONS(2422), + [anon_sym_let] = ACTIONS(2422), + [anon_sym_let_DASHenv] = ACTIONS(2422), + [anon_sym_mut] = ACTIONS(2422), + [anon_sym_const] = ACTIONS(2422), + [aux_sym_cmd_identifier_token1] = ACTIONS(2422), + [aux_sym_cmd_identifier_token2] = ACTIONS(2424), + [aux_sym_cmd_identifier_token3] = ACTIONS(2424), + [aux_sym_cmd_identifier_token4] = ACTIONS(2424), + [aux_sym_cmd_identifier_token5] = ACTIONS(2424), + [aux_sym_cmd_identifier_token6] = ACTIONS(2424), + [aux_sym_cmd_identifier_token7] = ACTIONS(2424), + [aux_sym_cmd_identifier_token8] = ACTIONS(2422), + [aux_sym_cmd_identifier_token9] = ACTIONS(2422), + [aux_sym_cmd_identifier_token10] = ACTIONS(2424), + [aux_sym_cmd_identifier_token11] = ACTIONS(2424), + [aux_sym_cmd_identifier_token12] = ACTIONS(2422), + [aux_sym_cmd_identifier_token13] = ACTIONS(2422), + [aux_sym_cmd_identifier_token14] = ACTIONS(2422), + [aux_sym_cmd_identifier_token15] = ACTIONS(2422), + [aux_sym_cmd_identifier_token16] = ACTIONS(2424), + [aux_sym_cmd_identifier_token17] = ACTIONS(2424), + [aux_sym_cmd_identifier_token18] = ACTIONS(2424), + [aux_sym_cmd_identifier_token19] = ACTIONS(2424), + [aux_sym_cmd_identifier_token20] = ACTIONS(2424), + [aux_sym_cmd_identifier_token21] = ACTIONS(2424), + [aux_sym_cmd_identifier_token22] = ACTIONS(2424), + [aux_sym_cmd_identifier_token23] = ACTIONS(2424), + [aux_sym_cmd_identifier_token24] = ACTIONS(2424), + [aux_sym_cmd_identifier_token25] = ACTIONS(2424), + [aux_sym_cmd_identifier_token26] = ACTIONS(2424), + [aux_sym_cmd_identifier_token27] = ACTIONS(2424), + [aux_sym_cmd_identifier_token28] = ACTIONS(2424), + [aux_sym_cmd_identifier_token29] = ACTIONS(2424), + [aux_sym_cmd_identifier_token30] = ACTIONS(2424), + [aux_sym_cmd_identifier_token31] = ACTIONS(2424), + [aux_sym_cmd_identifier_token32] = ACTIONS(2424), + [aux_sym_cmd_identifier_token33] = ACTIONS(2424), + [aux_sym_cmd_identifier_token34] = ACTIONS(2422), + [aux_sym_cmd_identifier_token35] = ACTIONS(2424), + [aux_sym_cmd_identifier_token36] = ACTIONS(2424), + [aux_sym_cmd_identifier_token37] = ACTIONS(2424), + [aux_sym_cmd_identifier_token38] = ACTIONS(2422), + [aux_sym_cmd_identifier_token39] = ACTIONS(2424), + [aux_sym_cmd_identifier_token40] = ACTIONS(2424), + [anon_sym_def] = ACTIONS(2422), + [anon_sym_export_DASHenv] = ACTIONS(2422), + [anon_sym_extern] = ACTIONS(2422), + [anon_sym_module] = ACTIONS(2422), + [anon_sym_use] = ACTIONS(2422), + [anon_sym_LPAREN] = ACTIONS(2424), + [anon_sym_DOLLAR] = ACTIONS(2424), + [anon_sym_error] = ACTIONS(2422), + [anon_sym_DASH2] = ACTIONS(2422), + [anon_sym_break] = ACTIONS(2422), + [anon_sym_continue] = ACTIONS(2422), + [anon_sym_for] = ACTIONS(2422), + [anon_sym_in2] = ACTIONS(2422), + [anon_sym_loop] = ACTIONS(2422), + [anon_sym_make] = ACTIONS(2422), + [anon_sym_while] = ACTIONS(2422), + [anon_sym_do] = ACTIONS(2422), + [anon_sym_if] = ACTIONS(2422), + [anon_sym_else] = ACTIONS(2422), + [anon_sym_match] = ACTIONS(2422), + [anon_sym_RBRACE] = ACTIONS(2424), + [anon_sym_try] = ACTIONS(2422), + [anon_sym_catch] = ACTIONS(2422), + [anon_sym_return] = ACTIONS(2422), + [anon_sym_source] = ACTIONS(2422), + [anon_sym_source_DASHenv] = ACTIONS(2422), + [anon_sym_register] = ACTIONS(2422), + [anon_sym_hide] = ACTIONS(2422), + [anon_sym_hide_DASHenv] = ACTIONS(2422), + [anon_sym_overlay] = ACTIONS(2422), + [anon_sym_as] = ACTIONS(2422), + [anon_sym_PLUS2] = ACTIONS(2422), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2424), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2424), + [aux_sym__val_number_decimal_token1] = ACTIONS(2422), + [aux_sym__val_number_decimal_token2] = ACTIONS(2424), + [aux_sym__val_number_decimal_token3] = ACTIONS(2424), + [aux_sym__val_number_decimal_token4] = ACTIONS(2424), + [aux_sym__val_number_token1] = ACTIONS(2424), + [aux_sym__val_number_token2] = ACTIONS(2424), + [aux_sym__val_number_token3] = ACTIONS(2424), + [aux_sym__val_number_token4] = ACTIONS(2422), + [aux_sym__val_number_token5] = ACTIONS(2422), + [aux_sym__val_number_token6] = ACTIONS(2422), + [anon_sym_DQUOTE] = ACTIONS(2424), + [sym__str_single_quotes] = ACTIONS(2424), + [sym__str_back_ticks] = ACTIONS(2424), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2424), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2424), }, [710] = { [sym_comment] = STATE(710), - [anon_sym_export] = ACTIONS(2347), - [anon_sym_alias] = ACTIONS(2347), - [anon_sym_let] = ACTIONS(2347), - [anon_sym_let_DASHenv] = ACTIONS(2347), - [anon_sym_mut] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [aux_sym_cmd_identifier_token1] = ACTIONS(2347), - [aux_sym_cmd_identifier_token2] = ACTIONS(2349), - [aux_sym_cmd_identifier_token3] = ACTIONS(2349), - [aux_sym_cmd_identifier_token4] = ACTIONS(2349), - [aux_sym_cmd_identifier_token5] = ACTIONS(2349), - [aux_sym_cmd_identifier_token6] = ACTIONS(2349), - [aux_sym_cmd_identifier_token7] = ACTIONS(2349), - [aux_sym_cmd_identifier_token8] = ACTIONS(2347), - [aux_sym_cmd_identifier_token9] = ACTIONS(2347), - [aux_sym_cmd_identifier_token10] = ACTIONS(2349), - [aux_sym_cmd_identifier_token11] = ACTIONS(2349), - [aux_sym_cmd_identifier_token12] = ACTIONS(2347), - [aux_sym_cmd_identifier_token13] = ACTIONS(2347), - [aux_sym_cmd_identifier_token14] = ACTIONS(2347), - [aux_sym_cmd_identifier_token15] = ACTIONS(2347), - [aux_sym_cmd_identifier_token16] = ACTIONS(2349), - [aux_sym_cmd_identifier_token17] = ACTIONS(2349), - [aux_sym_cmd_identifier_token18] = ACTIONS(2349), - [aux_sym_cmd_identifier_token19] = ACTIONS(2349), - [aux_sym_cmd_identifier_token20] = ACTIONS(2349), - [aux_sym_cmd_identifier_token21] = ACTIONS(2349), - [aux_sym_cmd_identifier_token22] = ACTIONS(2349), - [aux_sym_cmd_identifier_token23] = ACTIONS(2349), - [aux_sym_cmd_identifier_token24] = ACTIONS(2349), - [aux_sym_cmd_identifier_token25] = ACTIONS(2349), - [aux_sym_cmd_identifier_token26] = ACTIONS(2349), - [aux_sym_cmd_identifier_token27] = ACTIONS(2349), - [aux_sym_cmd_identifier_token28] = ACTIONS(2349), - [aux_sym_cmd_identifier_token29] = ACTIONS(2349), - [aux_sym_cmd_identifier_token30] = ACTIONS(2349), - [aux_sym_cmd_identifier_token31] = ACTIONS(2349), - [aux_sym_cmd_identifier_token32] = ACTIONS(2349), - [aux_sym_cmd_identifier_token33] = ACTIONS(2349), - [aux_sym_cmd_identifier_token34] = ACTIONS(2347), - [aux_sym_cmd_identifier_token35] = ACTIONS(2349), - [aux_sym_cmd_identifier_token36] = ACTIONS(2349), - [aux_sym_cmd_identifier_token37] = ACTIONS(2349), - [aux_sym_cmd_identifier_token38] = ACTIONS(2347), - [aux_sym_cmd_identifier_token39] = ACTIONS(2349), - [aux_sym_cmd_identifier_token40] = ACTIONS(2349), - [anon_sym_def] = ACTIONS(2347), - [anon_sym_export_DASHenv] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym_module] = ACTIONS(2347), - [anon_sym_use] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_DOLLAR] = ACTIONS(2349), - [anon_sym_error] = ACTIONS(2347), - [anon_sym_DASH2] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_in2] = ACTIONS(2347), - [anon_sym_loop] = ACTIONS(2347), - [anon_sym_make] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_match] = ACTIONS(2347), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_catch] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_source] = ACTIONS(2347), - [anon_sym_source_DASHenv] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_hide] = ACTIONS(2347), - [anon_sym_hide_DASHenv] = ACTIONS(2347), - [anon_sym_overlay] = ACTIONS(2347), - [anon_sym_as] = ACTIONS(2347), - [anon_sym_PLUS2] = ACTIONS(2347), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2349), - [aux_sym__val_number_decimal_token1] = ACTIONS(2347), - [aux_sym__val_number_decimal_token2] = ACTIONS(2349), - [aux_sym__val_number_decimal_token3] = ACTIONS(2349), - [aux_sym__val_number_decimal_token4] = ACTIONS(2349), - [aux_sym__val_number_token1] = ACTIONS(2349), - [aux_sym__val_number_token2] = ACTIONS(2349), - [aux_sym__val_number_token3] = ACTIONS(2349), - [aux_sym__val_number_token4] = ACTIONS(2347), - [aux_sym__val_number_token5] = ACTIONS(2347), - [aux_sym__val_number_token6] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym__str_single_quotes] = ACTIONS(2349), - [sym__str_back_ticks] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2349), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2349), + [anon_sym_export] = ACTIONS(2426), + [anon_sym_alias] = ACTIONS(2426), + [anon_sym_let] = ACTIONS(2426), + [anon_sym_let_DASHenv] = ACTIONS(2426), + [anon_sym_mut] = ACTIONS(2426), + [anon_sym_const] = ACTIONS(2426), + [aux_sym_cmd_identifier_token1] = ACTIONS(2426), + [aux_sym_cmd_identifier_token2] = ACTIONS(2428), + [aux_sym_cmd_identifier_token3] = ACTIONS(2428), + [aux_sym_cmd_identifier_token4] = ACTIONS(2428), + [aux_sym_cmd_identifier_token5] = ACTIONS(2428), + [aux_sym_cmd_identifier_token6] = ACTIONS(2428), + [aux_sym_cmd_identifier_token7] = ACTIONS(2428), + [aux_sym_cmd_identifier_token8] = ACTIONS(2426), + [aux_sym_cmd_identifier_token9] = ACTIONS(2426), + [aux_sym_cmd_identifier_token10] = ACTIONS(2428), + [aux_sym_cmd_identifier_token11] = ACTIONS(2428), + [aux_sym_cmd_identifier_token12] = ACTIONS(2426), + [aux_sym_cmd_identifier_token13] = ACTIONS(2426), + [aux_sym_cmd_identifier_token14] = ACTIONS(2426), + [aux_sym_cmd_identifier_token15] = ACTIONS(2426), + [aux_sym_cmd_identifier_token16] = ACTIONS(2428), + [aux_sym_cmd_identifier_token17] = ACTIONS(2428), + [aux_sym_cmd_identifier_token18] = ACTIONS(2428), + [aux_sym_cmd_identifier_token19] = ACTIONS(2428), + [aux_sym_cmd_identifier_token20] = ACTIONS(2428), + [aux_sym_cmd_identifier_token21] = ACTIONS(2428), + [aux_sym_cmd_identifier_token22] = ACTIONS(2428), + [aux_sym_cmd_identifier_token23] = ACTIONS(2428), + [aux_sym_cmd_identifier_token24] = ACTIONS(2428), + [aux_sym_cmd_identifier_token25] = ACTIONS(2428), + [aux_sym_cmd_identifier_token26] = ACTIONS(2428), + [aux_sym_cmd_identifier_token27] = ACTIONS(2428), + [aux_sym_cmd_identifier_token28] = ACTIONS(2428), + [aux_sym_cmd_identifier_token29] = ACTIONS(2428), + [aux_sym_cmd_identifier_token30] = ACTIONS(2428), + [aux_sym_cmd_identifier_token31] = ACTIONS(2428), + [aux_sym_cmd_identifier_token32] = ACTIONS(2428), + [aux_sym_cmd_identifier_token33] = ACTIONS(2428), + [aux_sym_cmd_identifier_token34] = ACTIONS(2426), + [aux_sym_cmd_identifier_token35] = ACTIONS(2428), + [aux_sym_cmd_identifier_token36] = ACTIONS(2428), + [aux_sym_cmd_identifier_token37] = ACTIONS(2428), + [aux_sym_cmd_identifier_token38] = ACTIONS(2426), + [aux_sym_cmd_identifier_token39] = ACTIONS(2428), + [aux_sym_cmd_identifier_token40] = ACTIONS(2428), + [anon_sym_def] = ACTIONS(2426), + [anon_sym_export_DASHenv] = ACTIONS(2426), + [anon_sym_extern] = ACTIONS(2426), + [anon_sym_module] = ACTIONS(2426), + [anon_sym_use] = ACTIONS(2426), + [anon_sym_LPAREN] = ACTIONS(2428), + [anon_sym_DOLLAR] = ACTIONS(2428), + [anon_sym_error] = ACTIONS(2426), + [anon_sym_DASH2] = ACTIONS(2426), + [anon_sym_break] = ACTIONS(2426), + [anon_sym_continue] = ACTIONS(2426), + [anon_sym_for] = ACTIONS(2426), + [anon_sym_in2] = ACTIONS(2426), + [anon_sym_loop] = ACTIONS(2426), + [anon_sym_make] = ACTIONS(2426), + [anon_sym_while] = ACTIONS(2426), + [anon_sym_do] = ACTIONS(2426), + [anon_sym_if] = ACTIONS(2426), + [anon_sym_else] = ACTIONS(2426), + [anon_sym_match] = ACTIONS(2426), + [anon_sym_RBRACE] = ACTIONS(2428), + [anon_sym_try] = ACTIONS(2426), + [anon_sym_catch] = ACTIONS(2426), + [anon_sym_return] = ACTIONS(2426), + [anon_sym_source] = ACTIONS(2426), + [anon_sym_source_DASHenv] = ACTIONS(2426), + [anon_sym_register] = ACTIONS(2426), + [anon_sym_hide] = ACTIONS(2426), + [anon_sym_hide_DASHenv] = ACTIONS(2426), + [anon_sym_overlay] = ACTIONS(2426), + [anon_sym_as] = ACTIONS(2426), + [anon_sym_PLUS2] = ACTIONS(2426), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2428), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2428), + [aux_sym__val_number_decimal_token1] = ACTIONS(2426), + [aux_sym__val_number_decimal_token2] = ACTIONS(2428), + [aux_sym__val_number_decimal_token3] = ACTIONS(2428), + [aux_sym__val_number_decimal_token4] = ACTIONS(2428), + [aux_sym__val_number_token1] = ACTIONS(2428), + [aux_sym__val_number_token2] = ACTIONS(2428), + [aux_sym__val_number_token3] = ACTIONS(2428), + [aux_sym__val_number_token4] = ACTIONS(2426), + [aux_sym__val_number_token5] = ACTIONS(2426), + [aux_sym__val_number_token6] = ACTIONS(2426), + [anon_sym_DQUOTE] = ACTIONS(2428), + [sym__str_single_quotes] = ACTIONS(2428), + [sym__str_back_ticks] = ACTIONS(2428), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2428), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2428), }, [711] = { [sym_comment] = STATE(711), - [anon_sym_export] = ACTIONS(2476), - [anon_sym_alias] = ACTIONS(2476), - [anon_sym_let] = ACTIONS(2476), - [anon_sym_let_DASHenv] = ACTIONS(2476), - [anon_sym_mut] = ACTIONS(2476), - [anon_sym_const] = ACTIONS(2476), - [aux_sym_cmd_identifier_token1] = ACTIONS(2476), - [aux_sym_cmd_identifier_token2] = ACTIONS(2478), - [aux_sym_cmd_identifier_token3] = ACTIONS(2478), - [aux_sym_cmd_identifier_token4] = ACTIONS(2478), - [aux_sym_cmd_identifier_token5] = ACTIONS(2478), - [aux_sym_cmd_identifier_token6] = ACTIONS(2478), - [aux_sym_cmd_identifier_token7] = ACTIONS(2478), - [aux_sym_cmd_identifier_token8] = ACTIONS(2476), - [aux_sym_cmd_identifier_token9] = ACTIONS(2476), - [aux_sym_cmd_identifier_token10] = ACTIONS(2478), - [aux_sym_cmd_identifier_token11] = ACTIONS(2478), - [aux_sym_cmd_identifier_token12] = ACTIONS(2476), - [aux_sym_cmd_identifier_token13] = ACTIONS(2476), - [aux_sym_cmd_identifier_token14] = ACTIONS(2476), - [aux_sym_cmd_identifier_token15] = ACTIONS(2476), - [aux_sym_cmd_identifier_token16] = ACTIONS(2478), - [aux_sym_cmd_identifier_token17] = ACTIONS(2478), - [aux_sym_cmd_identifier_token18] = ACTIONS(2478), - [aux_sym_cmd_identifier_token19] = ACTIONS(2478), - [aux_sym_cmd_identifier_token20] = ACTIONS(2478), - [aux_sym_cmd_identifier_token21] = ACTIONS(2478), - [aux_sym_cmd_identifier_token22] = ACTIONS(2478), - [aux_sym_cmd_identifier_token23] = ACTIONS(2478), - [aux_sym_cmd_identifier_token24] = ACTIONS(2478), - [aux_sym_cmd_identifier_token25] = ACTIONS(2478), - [aux_sym_cmd_identifier_token26] = ACTIONS(2478), - [aux_sym_cmd_identifier_token27] = ACTIONS(2478), - [aux_sym_cmd_identifier_token28] = ACTIONS(2478), - [aux_sym_cmd_identifier_token29] = ACTIONS(2478), - [aux_sym_cmd_identifier_token30] = ACTIONS(2478), - [aux_sym_cmd_identifier_token31] = ACTIONS(2478), - [aux_sym_cmd_identifier_token32] = ACTIONS(2478), - [aux_sym_cmd_identifier_token33] = ACTIONS(2478), - [aux_sym_cmd_identifier_token34] = ACTIONS(2476), - [aux_sym_cmd_identifier_token35] = ACTIONS(2478), - [aux_sym_cmd_identifier_token36] = ACTIONS(2478), - [aux_sym_cmd_identifier_token37] = ACTIONS(2478), - [aux_sym_cmd_identifier_token38] = ACTIONS(2476), - [aux_sym_cmd_identifier_token39] = ACTIONS(2478), - [aux_sym_cmd_identifier_token40] = ACTIONS(2478), - [anon_sym_def] = ACTIONS(2476), - [anon_sym_export_DASHenv] = ACTIONS(2476), - [anon_sym_extern] = ACTIONS(2476), - [anon_sym_module] = ACTIONS(2476), - [anon_sym_use] = ACTIONS(2476), - [anon_sym_LPAREN] = ACTIONS(2478), - [anon_sym_DOLLAR] = ACTIONS(2478), - [anon_sym_error] = ACTIONS(2476), - [anon_sym_DASH2] = ACTIONS(2476), - [anon_sym_break] = ACTIONS(2476), - [anon_sym_continue] = ACTIONS(2476), - [anon_sym_for] = ACTIONS(2476), - [anon_sym_in2] = ACTIONS(2476), - [anon_sym_loop] = ACTIONS(2476), - [anon_sym_make] = ACTIONS(2476), - [anon_sym_while] = ACTIONS(2476), - [anon_sym_do] = ACTIONS(2476), - [anon_sym_if] = ACTIONS(2476), - [anon_sym_else] = ACTIONS(2476), - [anon_sym_match] = ACTIONS(2476), - [anon_sym_RBRACE] = ACTIONS(2478), - [anon_sym_try] = ACTIONS(2476), - [anon_sym_catch] = ACTIONS(2476), - [anon_sym_return] = ACTIONS(2476), - [anon_sym_source] = ACTIONS(2476), - [anon_sym_source_DASHenv] = ACTIONS(2476), - [anon_sym_register] = ACTIONS(2476), - [anon_sym_hide] = ACTIONS(2476), - [anon_sym_hide_DASHenv] = ACTIONS(2476), - [anon_sym_overlay] = ACTIONS(2476), - [anon_sym_as] = ACTIONS(2476), - [anon_sym_PLUS2] = ACTIONS(2476), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2478), - [aux_sym__val_number_decimal_token1] = ACTIONS(2476), - [aux_sym__val_number_decimal_token2] = ACTIONS(2478), - [aux_sym__val_number_decimal_token3] = ACTIONS(2478), - [aux_sym__val_number_decimal_token4] = ACTIONS(2478), - [aux_sym__val_number_token1] = ACTIONS(2478), - [aux_sym__val_number_token2] = ACTIONS(2478), - [aux_sym__val_number_token3] = ACTIONS(2478), - [aux_sym__val_number_token4] = ACTIONS(2476), - [aux_sym__val_number_token5] = ACTIONS(2476), - [aux_sym__val_number_token6] = ACTIONS(2476), - [anon_sym_DQUOTE] = ACTIONS(2478), - [sym__str_single_quotes] = ACTIONS(2478), - [sym__str_back_ticks] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2478), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2478), + [anon_sym_export] = ACTIONS(2436), + [anon_sym_alias] = ACTIONS(2436), + [anon_sym_let] = ACTIONS(2436), + [anon_sym_let_DASHenv] = ACTIONS(2436), + [anon_sym_mut] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [aux_sym_cmd_identifier_token1] = ACTIONS(2436), + [aux_sym_cmd_identifier_token2] = ACTIONS(2438), + [aux_sym_cmd_identifier_token3] = ACTIONS(2438), + [aux_sym_cmd_identifier_token4] = ACTIONS(2438), + [aux_sym_cmd_identifier_token5] = ACTIONS(2438), + [aux_sym_cmd_identifier_token6] = ACTIONS(2438), + [aux_sym_cmd_identifier_token7] = ACTIONS(2438), + [aux_sym_cmd_identifier_token8] = ACTIONS(2436), + [aux_sym_cmd_identifier_token9] = ACTIONS(2436), + [aux_sym_cmd_identifier_token10] = ACTIONS(2438), + [aux_sym_cmd_identifier_token11] = ACTIONS(2438), + [aux_sym_cmd_identifier_token12] = ACTIONS(2436), + [aux_sym_cmd_identifier_token13] = ACTIONS(2436), + [aux_sym_cmd_identifier_token14] = ACTIONS(2436), + [aux_sym_cmd_identifier_token15] = ACTIONS(2436), + [aux_sym_cmd_identifier_token16] = ACTIONS(2438), + [aux_sym_cmd_identifier_token17] = ACTIONS(2438), + [aux_sym_cmd_identifier_token18] = ACTIONS(2438), + [aux_sym_cmd_identifier_token19] = ACTIONS(2438), + [aux_sym_cmd_identifier_token20] = ACTIONS(2438), + [aux_sym_cmd_identifier_token21] = ACTIONS(2438), + [aux_sym_cmd_identifier_token22] = ACTIONS(2438), + [aux_sym_cmd_identifier_token23] = ACTIONS(2438), + [aux_sym_cmd_identifier_token24] = ACTIONS(2438), + [aux_sym_cmd_identifier_token25] = ACTIONS(2438), + [aux_sym_cmd_identifier_token26] = ACTIONS(2438), + [aux_sym_cmd_identifier_token27] = ACTIONS(2438), + [aux_sym_cmd_identifier_token28] = ACTIONS(2438), + [aux_sym_cmd_identifier_token29] = ACTIONS(2438), + [aux_sym_cmd_identifier_token30] = ACTIONS(2438), + [aux_sym_cmd_identifier_token31] = ACTIONS(2438), + [aux_sym_cmd_identifier_token32] = ACTIONS(2438), + [aux_sym_cmd_identifier_token33] = ACTIONS(2438), + [aux_sym_cmd_identifier_token34] = ACTIONS(2436), + [aux_sym_cmd_identifier_token35] = ACTIONS(2438), + [aux_sym_cmd_identifier_token36] = ACTIONS(2438), + [aux_sym_cmd_identifier_token37] = ACTIONS(2438), + [aux_sym_cmd_identifier_token38] = ACTIONS(2436), + [aux_sym_cmd_identifier_token39] = ACTIONS(2438), + [aux_sym_cmd_identifier_token40] = ACTIONS(2438), + [anon_sym_def] = ACTIONS(2436), + [anon_sym_export_DASHenv] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym_module] = ACTIONS(2436), + [anon_sym_use] = ACTIONS(2436), + [anon_sym_LPAREN] = ACTIONS(2438), + [anon_sym_DOLLAR] = ACTIONS(2438), + [anon_sym_error] = ACTIONS(2436), + [anon_sym_DASH2] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_in2] = ACTIONS(2436), + [anon_sym_loop] = ACTIONS(2436), + [anon_sym_make] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_do] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_else] = ACTIONS(2436), + [anon_sym_match] = ACTIONS(2436), + [anon_sym_RBRACE] = ACTIONS(2438), + [anon_sym_try] = ACTIONS(2436), + [anon_sym_catch] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_source] = ACTIONS(2436), + [anon_sym_source_DASHenv] = ACTIONS(2436), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_hide] = ACTIONS(2436), + [anon_sym_hide_DASHenv] = ACTIONS(2436), + [anon_sym_overlay] = ACTIONS(2436), + [anon_sym_as] = ACTIONS(2436), + [anon_sym_PLUS2] = ACTIONS(2436), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2438), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2438), + [aux_sym__val_number_decimal_token1] = ACTIONS(2436), + [aux_sym__val_number_decimal_token2] = ACTIONS(2438), + [aux_sym__val_number_decimal_token3] = ACTIONS(2438), + [aux_sym__val_number_decimal_token4] = ACTIONS(2438), + [aux_sym__val_number_token1] = ACTIONS(2438), + [aux_sym__val_number_token2] = ACTIONS(2438), + [aux_sym__val_number_token3] = ACTIONS(2438), + [aux_sym__val_number_token4] = ACTIONS(2436), + [aux_sym__val_number_token5] = ACTIONS(2436), + [aux_sym__val_number_token6] = ACTIONS(2436), + [anon_sym_DQUOTE] = ACTIONS(2438), + [sym__str_single_quotes] = ACTIONS(2438), + [sym__str_back_ticks] = ACTIONS(2438), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2438), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2438), }, [712] = { [sym_comment] = STATE(712), - [anon_sym_export] = ACTIONS(2504), - [anon_sym_alias] = ACTIONS(2504), - [anon_sym_let] = ACTIONS(2504), - [anon_sym_let_DASHenv] = ACTIONS(2504), - [anon_sym_mut] = ACTIONS(2504), - [anon_sym_const] = ACTIONS(2504), - [aux_sym_cmd_identifier_token1] = ACTIONS(2504), - [aux_sym_cmd_identifier_token2] = ACTIONS(2506), - [aux_sym_cmd_identifier_token3] = ACTIONS(2506), - [aux_sym_cmd_identifier_token4] = ACTIONS(2506), - [aux_sym_cmd_identifier_token5] = ACTIONS(2506), - [aux_sym_cmd_identifier_token6] = ACTIONS(2506), - [aux_sym_cmd_identifier_token7] = ACTIONS(2506), - [aux_sym_cmd_identifier_token8] = ACTIONS(2504), - [aux_sym_cmd_identifier_token9] = ACTIONS(2504), - [aux_sym_cmd_identifier_token10] = ACTIONS(2506), - [aux_sym_cmd_identifier_token11] = ACTIONS(2506), - [aux_sym_cmd_identifier_token12] = ACTIONS(2504), - [aux_sym_cmd_identifier_token13] = ACTIONS(2504), - [aux_sym_cmd_identifier_token14] = ACTIONS(2504), - [aux_sym_cmd_identifier_token15] = ACTIONS(2504), - [aux_sym_cmd_identifier_token16] = ACTIONS(2506), - [aux_sym_cmd_identifier_token17] = ACTIONS(2506), - [aux_sym_cmd_identifier_token18] = ACTIONS(2506), - [aux_sym_cmd_identifier_token19] = ACTIONS(2506), - [aux_sym_cmd_identifier_token20] = ACTIONS(2506), - [aux_sym_cmd_identifier_token21] = ACTIONS(2506), - [aux_sym_cmd_identifier_token22] = ACTIONS(2506), - [aux_sym_cmd_identifier_token23] = ACTIONS(2506), - [aux_sym_cmd_identifier_token24] = ACTIONS(2506), - [aux_sym_cmd_identifier_token25] = ACTIONS(2506), - [aux_sym_cmd_identifier_token26] = ACTIONS(2506), - [aux_sym_cmd_identifier_token27] = ACTIONS(2506), - [aux_sym_cmd_identifier_token28] = ACTIONS(2506), - [aux_sym_cmd_identifier_token29] = ACTIONS(2506), - [aux_sym_cmd_identifier_token30] = ACTIONS(2506), - [aux_sym_cmd_identifier_token31] = ACTIONS(2506), - [aux_sym_cmd_identifier_token32] = ACTIONS(2506), - [aux_sym_cmd_identifier_token33] = ACTIONS(2506), - [aux_sym_cmd_identifier_token34] = ACTIONS(2504), - [aux_sym_cmd_identifier_token35] = ACTIONS(2506), - [aux_sym_cmd_identifier_token36] = ACTIONS(2506), - [aux_sym_cmd_identifier_token37] = ACTIONS(2506), - [aux_sym_cmd_identifier_token38] = ACTIONS(2504), - [aux_sym_cmd_identifier_token39] = ACTIONS(2506), - [aux_sym_cmd_identifier_token40] = ACTIONS(2506), - [anon_sym_def] = ACTIONS(2504), - [anon_sym_export_DASHenv] = ACTIONS(2504), - [anon_sym_extern] = ACTIONS(2504), - [anon_sym_module] = ACTIONS(2504), - [anon_sym_use] = ACTIONS(2504), - [anon_sym_LPAREN] = ACTIONS(2506), - [anon_sym_DOLLAR] = ACTIONS(2506), - [anon_sym_error] = ACTIONS(2504), - [anon_sym_DASH2] = ACTIONS(2504), - [anon_sym_break] = ACTIONS(2504), - [anon_sym_continue] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_in2] = ACTIONS(2504), - [anon_sym_loop] = ACTIONS(2504), - [anon_sym_make] = ACTIONS(2504), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_do] = ACTIONS(2504), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_else] = ACTIONS(2504), - [anon_sym_match] = ACTIONS(2504), - [anon_sym_RBRACE] = ACTIONS(2506), - [anon_sym_try] = ACTIONS(2504), - [anon_sym_catch] = ACTIONS(2504), - [anon_sym_return] = ACTIONS(2504), - [anon_sym_source] = ACTIONS(2504), - [anon_sym_source_DASHenv] = ACTIONS(2504), - [anon_sym_register] = ACTIONS(2504), - [anon_sym_hide] = ACTIONS(2504), - [anon_sym_hide_DASHenv] = ACTIONS(2504), - [anon_sym_overlay] = ACTIONS(2504), - [anon_sym_as] = ACTIONS(2504), - [anon_sym_PLUS2] = ACTIONS(2504), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2506), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2506), - [aux_sym__val_number_decimal_token1] = ACTIONS(2504), - [aux_sym__val_number_decimal_token2] = ACTIONS(2506), - [aux_sym__val_number_decimal_token3] = ACTIONS(2506), - [aux_sym__val_number_decimal_token4] = ACTIONS(2506), - [aux_sym__val_number_token1] = ACTIONS(2506), - [aux_sym__val_number_token2] = ACTIONS(2506), - [aux_sym__val_number_token3] = ACTIONS(2506), - [aux_sym__val_number_token4] = ACTIONS(2504), - [aux_sym__val_number_token5] = ACTIONS(2504), - [aux_sym__val_number_token6] = ACTIONS(2504), - [anon_sym_DQUOTE] = ACTIONS(2506), - [sym__str_single_quotes] = ACTIONS(2506), - [sym__str_back_ticks] = ACTIONS(2506), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2506), + [anon_sym_export] = ACTIONS(2494), + [anon_sym_alias] = ACTIONS(2494), + [anon_sym_let] = ACTIONS(2494), + [anon_sym_let_DASHenv] = ACTIONS(2494), + [anon_sym_mut] = ACTIONS(2494), + [anon_sym_const] = ACTIONS(2494), + [aux_sym_cmd_identifier_token1] = ACTIONS(2494), + [aux_sym_cmd_identifier_token2] = ACTIONS(2496), + [aux_sym_cmd_identifier_token3] = ACTIONS(2496), + [aux_sym_cmd_identifier_token4] = ACTIONS(2496), + [aux_sym_cmd_identifier_token5] = ACTIONS(2496), + [aux_sym_cmd_identifier_token6] = ACTIONS(2496), + [aux_sym_cmd_identifier_token7] = ACTIONS(2496), + [aux_sym_cmd_identifier_token8] = ACTIONS(2494), + [aux_sym_cmd_identifier_token9] = ACTIONS(2494), + [aux_sym_cmd_identifier_token10] = ACTIONS(2496), + [aux_sym_cmd_identifier_token11] = ACTIONS(2496), + [aux_sym_cmd_identifier_token12] = ACTIONS(2494), + [aux_sym_cmd_identifier_token13] = ACTIONS(2494), + [aux_sym_cmd_identifier_token14] = ACTIONS(2494), + [aux_sym_cmd_identifier_token15] = ACTIONS(2494), + [aux_sym_cmd_identifier_token16] = ACTIONS(2496), + [aux_sym_cmd_identifier_token17] = ACTIONS(2496), + [aux_sym_cmd_identifier_token18] = ACTIONS(2496), + [aux_sym_cmd_identifier_token19] = ACTIONS(2496), + [aux_sym_cmd_identifier_token20] = ACTIONS(2496), + [aux_sym_cmd_identifier_token21] = ACTIONS(2496), + [aux_sym_cmd_identifier_token22] = ACTIONS(2496), + [aux_sym_cmd_identifier_token23] = ACTIONS(2496), + [aux_sym_cmd_identifier_token24] = ACTIONS(2496), + [aux_sym_cmd_identifier_token25] = ACTIONS(2496), + [aux_sym_cmd_identifier_token26] = ACTIONS(2496), + [aux_sym_cmd_identifier_token27] = ACTIONS(2496), + [aux_sym_cmd_identifier_token28] = ACTIONS(2496), + [aux_sym_cmd_identifier_token29] = ACTIONS(2496), + [aux_sym_cmd_identifier_token30] = ACTIONS(2496), + [aux_sym_cmd_identifier_token31] = ACTIONS(2496), + [aux_sym_cmd_identifier_token32] = ACTIONS(2496), + [aux_sym_cmd_identifier_token33] = ACTIONS(2496), + [aux_sym_cmd_identifier_token34] = ACTIONS(2494), + [aux_sym_cmd_identifier_token35] = ACTIONS(2496), + [aux_sym_cmd_identifier_token36] = ACTIONS(2496), + [aux_sym_cmd_identifier_token37] = ACTIONS(2496), + [aux_sym_cmd_identifier_token38] = ACTIONS(2494), + [aux_sym_cmd_identifier_token39] = ACTIONS(2496), + [aux_sym_cmd_identifier_token40] = ACTIONS(2496), + [anon_sym_def] = ACTIONS(2494), + [anon_sym_export_DASHenv] = ACTIONS(2494), + [anon_sym_extern] = ACTIONS(2494), + [anon_sym_module] = ACTIONS(2494), + [anon_sym_use] = ACTIONS(2494), + [anon_sym_LPAREN] = ACTIONS(2496), + [anon_sym_DOLLAR] = ACTIONS(2496), + [anon_sym_error] = ACTIONS(2494), + [anon_sym_DASH2] = ACTIONS(2494), + [anon_sym_break] = ACTIONS(2494), + [anon_sym_continue] = ACTIONS(2494), + [anon_sym_for] = ACTIONS(2494), + [anon_sym_in2] = ACTIONS(2494), + [anon_sym_loop] = ACTIONS(2494), + [anon_sym_make] = ACTIONS(2494), + [anon_sym_while] = ACTIONS(2494), + [anon_sym_do] = ACTIONS(2494), + [anon_sym_if] = ACTIONS(2494), + [anon_sym_else] = ACTIONS(2494), + [anon_sym_match] = ACTIONS(2494), + [anon_sym_RBRACE] = ACTIONS(2496), + [anon_sym_try] = ACTIONS(2494), + [anon_sym_catch] = ACTIONS(2494), + [anon_sym_return] = ACTIONS(2494), + [anon_sym_source] = ACTIONS(2494), + [anon_sym_source_DASHenv] = ACTIONS(2494), + [anon_sym_register] = ACTIONS(2494), + [anon_sym_hide] = ACTIONS(2494), + [anon_sym_hide_DASHenv] = ACTIONS(2494), + [anon_sym_overlay] = ACTIONS(2494), + [anon_sym_as] = ACTIONS(2494), + [anon_sym_PLUS2] = ACTIONS(2494), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2496), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2496), + [aux_sym__val_number_decimal_token1] = ACTIONS(2494), + [aux_sym__val_number_decimal_token2] = ACTIONS(2496), + [aux_sym__val_number_decimal_token3] = ACTIONS(2496), + [aux_sym__val_number_decimal_token4] = ACTIONS(2496), + [aux_sym__val_number_token1] = ACTIONS(2496), + [aux_sym__val_number_token2] = ACTIONS(2496), + [aux_sym__val_number_token3] = ACTIONS(2496), + [aux_sym__val_number_token4] = ACTIONS(2494), + [aux_sym__val_number_token5] = ACTIONS(2494), + [aux_sym__val_number_token6] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [sym__str_single_quotes] = ACTIONS(2496), + [sym__str_back_ticks] = ACTIONS(2496), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2496), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2506), + [sym_raw_string_begin] = ACTIONS(2496), }, [713] = { [sym_comment] = STATE(713), - [anon_sym_export] = ACTIONS(2371), - [anon_sym_alias] = ACTIONS(2371), - [anon_sym_let] = ACTIONS(2371), - [anon_sym_let_DASHenv] = ACTIONS(2371), - [anon_sym_mut] = ACTIONS(2371), - [anon_sym_const] = ACTIONS(2371), - [aux_sym_cmd_identifier_token1] = ACTIONS(2371), - [aux_sym_cmd_identifier_token2] = ACTIONS(2373), - [aux_sym_cmd_identifier_token3] = ACTIONS(2373), - [aux_sym_cmd_identifier_token4] = ACTIONS(2373), - [aux_sym_cmd_identifier_token5] = ACTIONS(2373), - [aux_sym_cmd_identifier_token6] = ACTIONS(2373), - [aux_sym_cmd_identifier_token7] = ACTIONS(2373), - [aux_sym_cmd_identifier_token8] = ACTIONS(2371), - [aux_sym_cmd_identifier_token9] = ACTIONS(2371), - [aux_sym_cmd_identifier_token10] = ACTIONS(2373), - [aux_sym_cmd_identifier_token11] = ACTIONS(2373), - [aux_sym_cmd_identifier_token12] = ACTIONS(2371), - [aux_sym_cmd_identifier_token13] = ACTIONS(2371), - [aux_sym_cmd_identifier_token14] = ACTIONS(2371), - [aux_sym_cmd_identifier_token15] = ACTIONS(2371), - [aux_sym_cmd_identifier_token16] = ACTIONS(2373), - [aux_sym_cmd_identifier_token17] = ACTIONS(2373), - [aux_sym_cmd_identifier_token18] = ACTIONS(2373), - [aux_sym_cmd_identifier_token19] = ACTIONS(2373), - [aux_sym_cmd_identifier_token20] = ACTIONS(2373), - [aux_sym_cmd_identifier_token21] = ACTIONS(2373), - [aux_sym_cmd_identifier_token22] = ACTIONS(2373), - [aux_sym_cmd_identifier_token23] = ACTIONS(2373), - [aux_sym_cmd_identifier_token24] = ACTIONS(2373), - [aux_sym_cmd_identifier_token25] = ACTIONS(2373), - [aux_sym_cmd_identifier_token26] = ACTIONS(2373), - [aux_sym_cmd_identifier_token27] = ACTIONS(2373), - [aux_sym_cmd_identifier_token28] = ACTIONS(2373), - [aux_sym_cmd_identifier_token29] = ACTIONS(2373), - [aux_sym_cmd_identifier_token30] = ACTIONS(2373), - [aux_sym_cmd_identifier_token31] = ACTIONS(2373), - [aux_sym_cmd_identifier_token32] = ACTIONS(2373), - [aux_sym_cmd_identifier_token33] = ACTIONS(2373), - [aux_sym_cmd_identifier_token34] = ACTIONS(2371), - [aux_sym_cmd_identifier_token35] = ACTIONS(2373), - [aux_sym_cmd_identifier_token36] = ACTIONS(2373), - [aux_sym_cmd_identifier_token37] = ACTIONS(2373), - [aux_sym_cmd_identifier_token38] = ACTIONS(2371), - [aux_sym_cmd_identifier_token39] = ACTIONS(2373), - [aux_sym_cmd_identifier_token40] = ACTIONS(2373), - [anon_sym_def] = ACTIONS(2371), - [anon_sym_export_DASHenv] = ACTIONS(2371), - [anon_sym_extern] = ACTIONS(2371), - [anon_sym_module] = ACTIONS(2371), - [anon_sym_use] = ACTIONS(2371), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_DOLLAR] = ACTIONS(2373), - [anon_sym_error] = ACTIONS(2371), - [anon_sym_DASH2] = ACTIONS(2371), - [anon_sym_break] = ACTIONS(2371), - [anon_sym_continue] = ACTIONS(2371), - [anon_sym_for] = ACTIONS(2371), - [anon_sym_in2] = ACTIONS(2371), - [anon_sym_loop] = ACTIONS(2371), - [anon_sym_make] = ACTIONS(2371), - [anon_sym_while] = ACTIONS(2371), - [anon_sym_do] = ACTIONS(2371), - [anon_sym_if] = ACTIONS(2371), - [anon_sym_else] = ACTIONS(2371), - [anon_sym_match] = ACTIONS(2371), - [anon_sym_RBRACE] = ACTIONS(2373), - [anon_sym_try] = ACTIONS(2371), - [anon_sym_catch] = ACTIONS(2371), - [anon_sym_return] = ACTIONS(2371), - [anon_sym_source] = ACTIONS(2371), - [anon_sym_source_DASHenv] = ACTIONS(2371), - [anon_sym_register] = ACTIONS(2371), - [anon_sym_hide] = ACTIONS(2371), - [anon_sym_hide_DASHenv] = ACTIONS(2371), - [anon_sym_overlay] = ACTIONS(2371), - [anon_sym_as] = ACTIONS(2371), - [anon_sym_PLUS2] = ACTIONS(2371), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2373), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2373), - [aux_sym__val_number_decimal_token1] = ACTIONS(2371), - [aux_sym__val_number_decimal_token2] = ACTIONS(2373), - [aux_sym__val_number_decimal_token3] = ACTIONS(2373), - [aux_sym__val_number_decimal_token4] = ACTIONS(2373), - [aux_sym__val_number_token1] = ACTIONS(2373), - [aux_sym__val_number_token2] = ACTIONS(2373), - [aux_sym__val_number_token3] = ACTIONS(2373), - [aux_sym__val_number_token4] = ACTIONS(2371), - [aux_sym__val_number_token5] = ACTIONS(2371), - [aux_sym__val_number_token6] = ACTIONS(2371), - [anon_sym_DQUOTE] = ACTIONS(2373), - [sym__str_single_quotes] = ACTIONS(2373), - [sym__str_back_ticks] = ACTIONS(2373), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2373), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2373), - }, - [714] = { - [sym_comment] = STATE(714), - [anon_sym_export] = ACTIONS(2492), - [anon_sym_alias] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_let_DASHenv] = ACTIONS(2492), - [anon_sym_mut] = ACTIONS(2492), - [anon_sym_const] = ACTIONS(2492), - [aux_sym_cmd_identifier_token1] = ACTIONS(2492), - [aux_sym_cmd_identifier_token2] = ACTIONS(2494), - [aux_sym_cmd_identifier_token3] = ACTIONS(2494), - [aux_sym_cmd_identifier_token4] = ACTIONS(2494), - [aux_sym_cmd_identifier_token5] = ACTIONS(2494), - [aux_sym_cmd_identifier_token6] = ACTIONS(2494), - [aux_sym_cmd_identifier_token7] = ACTIONS(2494), - [aux_sym_cmd_identifier_token8] = ACTIONS(2492), - [aux_sym_cmd_identifier_token9] = ACTIONS(2492), - [aux_sym_cmd_identifier_token10] = ACTIONS(2494), - [aux_sym_cmd_identifier_token11] = ACTIONS(2494), - [aux_sym_cmd_identifier_token12] = ACTIONS(2492), - [aux_sym_cmd_identifier_token13] = ACTIONS(2492), - [aux_sym_cmd_identifier_token14] = ACTIONS(2492), - [aux_sym_cmd_identifier_token15] = ACTIONS(2492), - [aux_sym_cmd_identifier_token16] = ACTIONS(2494), - [aux_sym_cmd_identifier_token17] = ACTIONS(2494), - [aux_sym_cmd_identifier_token18] = ACTIONS(2494), - [aux_sym_cmd_identifier_token19] = ACTIONS(2494), - [aux_sym_cmd_identifier_token20] = ACTIONS(2494), - [aux_sym_cmd_identifier_token21] = ACTIONS(2494), - [aux_sym_cmd_identifier_token22] = ACTIONS(2494), - [aux_sym_cmd_identifier_token23] = ACTIONS(2494), - [aux_sym_cmd_identifier_token24] = ACTIONS(2494), - [aux_sym_cmd_identifier_token25] = ACTIONS(2494), - [aux_sym_cmd_identifier_token26] = ACTIONS(2494), - [aux_sym_cmd_identifier_token27] = ACTIONS(2494), - [aux_sym_cmd_identifier_token28] = ACTIONS(2494), - [aux_sym_cmd_identifier_token29] = ACTIONS(2494), - [aux_sym_cmd_identifier_token30] = ACTIONS(2494), - [aux_sym_cmd_identifier_token31] = ACTIONS(2494), - [aux_sym_cmd_identifier_token32] = ACTIONS(2494), - [aux_sym_cmd_identifier_token33] = ACTIONS(2494), - [aux_sym_cmd_identifier_token34] = ACTIONS(2492), - [aux_sym_cmd_identifier_token35] = ACTIONS(2494), - [aux_sym_cmd_identifier_token36] = ACTIONS(2494), - [aux_sym_cmd_identifier_token37] = ACTIONS(2494), - [aux_sym_cmd_identifier_token38] = ACTIONS(2492), - [aux_sym_cmd_identifier_token39] = ACTIONS(2494), - [aux_sym_cmd_identifier_token40] = ACTIONS(2494), - [anon_sym_def] = ACTIONS(2492), - [anon_sym_export_DASHenv] = ACTIONS(2492), - [anon_sym_extern] = ACTIONS(2492), - [anon_sym_module] = ACTIONS(2492), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2494), - [anon_sym_DOLLAR] = ACTIONS(2494), - [anon_sym_error] = ACTIONS(2492), - [anon_sym_DASH2] = ACTIONS(2492), - [anon_sym_break] = ACTIONS(2492), - [anon_sym_continue] = ACTIONS(2492), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_in2] = ACTIONS(2492), - [anon_sym_loop] = ACTIONS(2492), - [anon_sym_make] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_else] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_RBRACE] = ACTIONS(2494), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_catch] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_source] = ACTIONS(2492), - [anon_sym_source_DASHenv] = ACTIONS(2492), - [anon_sym_register] = ACTIONS(2492), - [anon_sym_hide] = ACTIONS(2492), - [anon_sym_hide_DASHenv] = ACTIONS(2492), - [anon_sym_overlay] = ACTIONS(2492), - [anon_sym_as] = ACTIONS(2492), - [anon_sym_PLUS2] = ACTIONS(2492), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2494), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2494), - [aux_sym__val_number_decimal_token1] = ACTIONS(2492), - [aux_sym__val_number_decimal_token2] = ACTIONS(2494), - [aux_sym__val_number_decimal_token3] = ACTIONS(2494), - [aux_sym__val_number_decimal_token4] = ACTIONS(2494), - [aux_sym__val_number_token1] = ACTIONS(2494), - [aux_sym__val_number_token2] = ACTIONS(2494), - [aux_sym__val_number_token3] = ACTIONS(2494), - [aux_sym__val_number_token4] = ACTIONS(2492), - [aux_sym__val_number_token5] = ACTIONS(2492), - [aux_sym__val_number_token6] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2494), - [sym__str_single_quotes] = ACTIONS(2494), - [sym__str_back_ticks] = ACTIONS(2494), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2494), + [anon_sym_export] = ACTIONS(2498), + [anon_sym_alias] = ACTIONS(2498), + [anon_sym_let] = ACTIONS(2498), + [anon_sym_let_DASHenv] = ACTIONS(2498), + [anon_sym_mut] = ACTIONS(2498), + [anon_sym_const] = ACTIONS(2498), + [aux_sym_cmd_identifier_token1] = ACTIONS(2498), + [aux_sym_cmd_identifier_token2] = ACTIONS(2500), + [aux_sym_cmd_identifier_token3] = ACTIONS(2500), + [aux_sym_cmd_identifier_token4] = ACTIONS(2500), + [aux_sym_cmd_identifier_token5] = ACTIONS(2500), + [aux_sym_cmd_identifier_token6] = ACTIONS(2500), + [aux_sym_cmd_identifier_token7] = ACTIONS(2500), + [aux_sym_cmd_identifier_token8] = ACTIONS(2498), + [aux_sym_cmd_identifier_token9] = ACTIONS(2498), + [aux_sym_cmd_identifier_token10] = ACTIONS(2500), + [aux_sym_cmd_identifier_token11] = ACTIONS(2500), + [aux_sym_cmd_identifier_token12] = ACTIONS(2498), + [aux_sym_cmd_identifier_token13] = ACTIONS(2498), + [aux_sym_cmd_identifier_token14] = ACTIONS(2498), + [aux_sym_cmd_identifier_token15] = ACTIONS(2498), + [aux_sym_cmd_identifier_token16] = ACTIONS(2500), + [aux_sym_cmd_identifier_token17] = ACTIONS(2500), + [aux_sym_cmd_identifier_token18] = ACTIONS(2500), + [aux_sym_cmd_identifier_token19] = ACTIONS(2500), + [aux_sym_cmd_identifier_token20] = ACTIONS(2500), + [aux_sym_cmd_identifier_token21] = ACTIONS(2500), + [aux_sym_cmd_identifier_token22] = ACTIONS(2500), + [aux_sym_cmd_identifier_token23] = ACTIONS(2500), + [aux_sym_cmd_identifier_token24] = ACTIONS(2500), + [aux_sym_cmd_identifier_token25] = ACTIONS(2500), + [aux_sym_cmd_identifier_token26] = ACTIONS(2500), + [aux_sym_cmd_identifier_token27] = ACTIONS(2500), + [aux_sym_cmd_identifier_token28] = ACTIONS(2500), + [aux_sym_cmd_identifier_token29] = ACTIONS(2500), + [aux_sym_cmd_identifier_token30] = ACTIONS(2500), + [aux_sym_cmd_identifier_token31] = ACTIONS(2500), + [aux_sym_cmd_identifier_token32] = ACTIONS(2500), + [aux_sym_cmd_identifier_token33] = ACTIONS(2500), + [aux_sym_cmd_identifier_token34] = ACTIONS(2498), + [aux_sym_cmd_identifier_token35] = ACTIONS(2500), + [aux_sym_cmd_identifier_token36] = ACTIONS(2500), + [aux_sym_cmd_identifier_token37] = ACTIONS(2500), + [aux_sym_cmd_identifier_token38] = ACTIONS(2498), + [aux_sym_cmd_identifier_token39] = ACTIONS(2500), + [aux_sym_cmd_identifier_token40] = ACTIONS(2500), + [anon_sym_def] = ACTIONS(2498), + [anon_sym_export_DASHenv] = ACTIONS(2498), + [anon_sym_extern] = ACTIONS(2498), + [anon_sym_module] = ACTIONS(2498), + [anon_sym_use] = ACTIONS(2498), + [anon_sym_LPAREN] = ACTIONS(2500), + [anon_sym_DOLLAR] = ACTIONS(2500), + [anon_sym_error] = ACTIONS(2498), + [anon_sym_DASH2] = ACTIONS(2498), + [anon_sym_break] = ACTIONS(2498), + [anon_sym_continue] = ACTIONS(2498), + [anon_sym_for] = ACTIONS(2498), + [anon_sym_in2] = ACTIONS(2498), + [anon_sym_loop] = ACTIONS(2498), + [anon_sym_make] = ACTIONS(2498), + [anon_sym_while] = ACTIONS(2498), + [anon_sym_do] = ACTIONS(2498), + [anon_sym_if] = ACTIONS(2498), + [anon_sym_else] = ACTIONS(2498), + [anon_sym_match] = ACTIONS(2498), + [anon_sym_RBRACE] = ACTIONS(2500), + [anon_sym_try] = ACTIONS(2498), + [anon_sym_catch] = ACTIONS(2498), + [anon_sym_return] = ACTIONS(2498), + [anon_sym_source] = ACTIONS(2498), + [anon_sym_source_DASHenv] = ACTIONS(2498), + [anon_sym_register] = ACTIONS(2498), + [anon_sym_hide] = ACTIONS(2498), + [anon_sym_hide_DASHenv] = ACTIONS(2498), + [anon_sym_overlay] = ACTIONS(2498), + [anon_sym_as] = ACTIONS(2498), + [anon_sym_PLUS2] = ACTIONS(2498), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2500), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2500), + [aux_sym__val_number_decimal_token1] = ACTIONS(2498), + [aux_sym__val_number_decimal_token2] = ACTIONS(2500), + [aux_sym__val_number_decimal_token3] = ACTIONS(2500), + [aux_sym__val_number_decimal_token4] = ACTIONS(2500), + [aux_sym__val_number_token1] = ACTIONS(2500), + [aux_sym__val_number_token2] = ACTIONS(2500), + [aux_sym__val_number_token3] = ACTIONS(2500), + [aux_sym__val_number_token4] = ACTIONS(2498), + [aux_sym__val_number_token5] = ACTIONS(2498), + [aux_sym__val_number_token6] = ACTIONS(2498), + [anon_sym_DQUOTE] = ACTIONS(2500), + [sym__str_single_quotes] = ACTIONS(2500), + [sym__str_back_ticks] = ACTIONS(2500), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2500), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2494), + [sym_raw_string_begin] = ACTIONS(2500), + }, + [714] = { + [sym_comment] = STATE(714), + [anon_sym_export] = ACTIONS(2514), + [anon_sym_alias] = ACTIONS(2514), + [anon_sym_let] = ACTIONS(2514), + [anon_sym_let_DASHenv] = ACTIONS(2514), + [anon_sym_mut] = ACTIONS(2514), + [anon_sym_const] = ACTIONS(2514), + [aux_sym_cmd_identifier_token1] = ACTIONS(2514), + [aux_sym_cmd_identifier_token2] = ACTIONS(2516), + [aux_sym_cmd_identifier_token3] = ACTIONS(2516), + [aux_sym_cmd_identifier_token4] = ACTIONS(2516), + [aux_sym_cmd_identifier_token5] = ACTIONS(2516), + [aux_sym_cmd_identifier_token6] = ACTIONS(2516), + [aux_sym_cmd_identifier_token7] = ACTIONS(2516), + [aux_sym_cmd_identifier_token8] = ACTIONS(2514), + [aux_sym_cmd_identifier_token9] = ACTIONS(2514), + [aux_sym_cmd_identifier_token10] = ACTIONS(2516), + [aux_sym_cmd_identifier_token11] = ACTIONS(2516), + [aux_sym_cmd_identifier_token12] = ACTIONS(2514), + [aux_sym_cmd_identifier_token13] = ACTIONS(2514), + [aux_sym_cmd_identifier_token14] = ACTIONS(2514), + [aux_sym_cmd_identifier_token15] = ACTIONS(2514), + [aux_sym_cmd_identifier_token16] = ACTIONS(2516), + [aux_sym_cmd_identifier_token17] = ACTIONS(2516), + [aux_sym_cmd_identifier_token18] = ACTIONS(2516), + [aux_sym_cmd_identifier_token19] = ACTIONS(2516), + [aux_sym_cmd_identifier_token20] = ACTIONS(2516), + [aux_sym_cmd_identifier_token21] = ACTIONS(2516), + [aux_sym_cmd_identifier_token22] = ACTIONS(2516), + [aux_sym_cmd_identifier_token23] = ACTIONS(2516), + [aux_sym_cmd_identifier_token24] = ACTIONS(2516), + [aux_sym_cmd_identifier_token25] = ACTIONS(2516), + [aux_sym_cmd_identifier_token26] = ACTIONS(2516), + [aux_sym_cmd_identifier_token27] = ACTIONS(2516), + [aux_sym_cmd_identifier_token28] = ACTIONS(2516), + [aux_sym_cmd_identifier_token29] = ACTIONS(2516), + [aux_sym_cmd_identifier_token30] = ACTIONS(2516), + [aux_sym_cmd_identifier_token31] = ACTIONS(2516), + [aux_sym_cmd_identifier_token32] = ACTIONS(2516), + [aux_sym_cmd_identifier_token33] = ACTIONS(2516), + [aux_sym_cmd_identifier_token34] = ACTIONS(2514), + [aux_sym_cmd_identifier_token35] = ACTIONS(2516), + [aux_sym_cmd_identifier_token36] = ACTIONS(2516), + [aux_sym_cmd_identifier_token37] = ACTIONS(2516), + [aux_sym_cmd_identifier_token38] = ACTIONS(2514), + [aux_sym_cmd_identifier_token39] = ACTIONS(2516), + [aux_sym_cmd_identifier_token40] = ACTIONS(2516), + [anon_sym_def] = ACTIONS(2514), + [anon_sym_export_DASHenv] = ACTIONS(2514), + [anon_sym_extern] = ACTIONS(2514), + [anon_sym_module] = ACTIONS(2514), + [anon_sym_use] = ACTIONS(2514), + [anon_sym_LPAREN] = ACTIONS(2516), + [anon_sym_DOLLAR] = ACTIONS(2516), + [anon_sym_error] = ACTIONS(2514), + [anon_sym_DASH2] = ACTIONS(2514), + [anon_sym_break] = ACTIONS(2514), + [anon_sym_continue] = ACTIONS(2514), + [anon_sym_for] = ACTIONS(2514), + [anon_sym_in2] = ACTIONS(2514), + [anon_sym_loop] = ACTIONS(2514), + [anon_sym_make] = ACTIONS(2514), + [anon_sym_while] = ACTIONS(2514), + [anon_sym_do] = ACTIONS(2514), + [anon_sym_if] = ACTIONS(2514), + [anon_sym_else] = ACTIONS(2514), + [anon_sym_match] = ACTIONS(2514), + [anon_sym_RBRACE] = ACTIONS(2516), + [anon_sym_try] = ACTIONS(2514), + [anon_sym_catch] = ACTIONS(2514), + [anon_sym_return] = ACTIONS(2514), + [anon_sym_source] = ACTIONS(2514), + [anon_sym_source_DASHenv] = ACTIONS(2514), + [anon_sym_register] = ACTIONS(2514), + [anon_sym_hide] = ACTIONS(2514), + [anon_sym_hide_DASHenv] = ACTIONS(2514), + [anon_sym_overlay] = ACTIONS(2514), + [anon_sym_as] = ACTIONS(2514), + [anon_sym_PLUS2] = ACTIONS(2514), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2516), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2516), + [aux_sym__val_number_decimal_token1] = ACTIONS(2514), + [aux_sym__val_number_decimal_token2] = ACTIONS(2516), + [aux_sym__val_number_decimal_token3] = ACTIONS(2516), + [aux_sym__val_number_decimal_token4] = ACTIONS(2516), + [aux_sym__val_number_token1] = ACTIONS(2516), + [aux_sym__val_number_token2] = ACTIONS(2516), + [aux_sym__val_number_token3] = ACTIONS(2516), + [aux_sym__val_number_token4] = ACTIONS(2514), + [aux_sym__val_number_token5] = ACTIONS(2514), + [aux_sym__val_number_token6] = ACTIONS(2514), + [anon_sym_DQUOTE] = ACTIONS(2516), + [sym__str_single_quotes] = ACTIONS(2516), + [sym__str_back_ticks] = ACTIONS(2516), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2516), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2516), }, [715] = { [sym_comment] = STATE(715), - [anon_sym_export] = ACTIONS(2508), - [anon_sym_alias] = ACTIONS(2508), - [anon_sym_let] = ACTIONS(2508), - [anon_sym_let_DASHenv] = ACTIONS(2508), - [anon_sym_mut] = ACTIONS(2508), - [anon_sym_const] = ACTIONS(2508), - [aux_sym_cmd_identifier_token1] = ACTIONS(2508), - [aux_sym_cmd_identifier_token2] = ACTIONS(2510), - [aux_sym_cmd_identifier_token3] = ACTIONS(2510), - [aux_sym_cmd_identifier_token4] = ACTIONS(2510), - [aux_sym_cmd_identifier_token5] = ACTIONS(2510), - [aux_sym_cmd_identifier_token6] = ACTIONS(2510), - [aux_sym_cmd_identifier_token7] = ACTIONS(2510), - [aux_sym_cmd_identifier_token8] = ACTIONS(2508), - [aux_sym_cmd_identifier_token9] = ACTIONS(2508), - [aux_sym_cmd_identifier_token10] = ACTIONS(2510), - [aux_sym_cmd_identifier_token11] = ACTIONS(2510), - [aux_sym_cmd_identifier_token12] = ACTIONS(2508), - [aux_sym_cmd_identifier_token13] = ACTIONS(2508), - [aux_sym_cmd_identifier_token14] = ACTIONS(2508), - [aux_sym_cmd_identifier_token15] = ACTIONS(2508), - [aux_sym_cmd_identifier_token16] = ACTIONS(2510), - [aux_sym_cmd_identifier_token17] = ACTIONS(2510), - [aux_sym_cmd_identifier_token18] = ACTIONS(2510), - [aux_sym_cmd_identifier_token19] = ACTIONS(2510), - [aux_sym_cmd_identifier_token20] = ACTIONS(2510), - [aux_sym_cmd_identifier_token21] = ACTIONS(2510), - [aux_sym_cmd_identifier_token22] = ACTIONS(2510), - [aux_sym_cmd_identifier_token23] = ACTIONS(2510), - [aux_sym_cmd_identifier_token24] = ACTIONS(2510), - [aux_sym_cmd_identifier_token25] = ACTIONS(2510), - [aux_sym_cmd_identifier_token26] = ACTIONS(2510), - [aux_sym_cmd_identifier_token27] = ACTIONS(2510), - [aux_sym_cmd_identifier_token28] = ACTIONS(2510), - [aux_sym_cmd_identifier_token29] = ACTIONS(2510), - [aux_sym_cmd_identifier_token30] = ACTIONS(2510), - [aux_sym_cmd_identifier_token31] = ACTIONS(2510), - [aux_sym_cmd_identifier_token32] = ACTIONS(2510), - [aux_sym_cmd_identifier_token33] = ACTIONS(2510), - [aux_sym_cmd_identifier_token34] = ACTIONS(2508), - [aux_sym_cmd_identifier_token35] = ACTIONS(2510), - [aux_sym_cmd_identifier_token36] = ACTIONS(2510), - [aux_sym_cmd_identifier_token37] = ACTIONS(2510), - [aux_sym_cmd_identifier_token38] = ACTIONS(2508), - [aux_sym_cmd_identifier_token39] = ACTIONS(2510), - [aux_sym_cmd_identifier_token40] = ACTIONS(2510), - [anon_sym_def] = ACTIONS(2508), - [anon_sym_export_DASHenv] = ACTIONS(2508), - [anon_sym_extern] = ACTIONS(2508), - [anon_sym_module] = ACTIONS(2508), - [anon_sym_use] = ACTIONS(2508), - [anon_sym_LPAREN] = ACTIONS(2510), - [anon_sym_DOLLAR] = ACTIONS(2510), - [anon_sym_error] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2508), - [anon_sym_break] = ACTIONS(2508), - [anon_sym_continue] = ACTIONS(2508), - [anon_sym_for] = ACTIONS(2508), - [anon_sym_in2] = ACTIONS(2508), - [anon_sym_loop] = ACTIONS(2508), - [anon_sym_make] = ACTIONS(2508), - [anon_sym_while] = ACTIONS(2508), - [anon_sym_do] = ACTIONS(2508), - [anon_sym_if] = ACTIONS(2508), - [anon_sym_else] = ACTIONS(2508), - [anon_sym_match] = ACTIONS(2508), - [anon_sym_RBRACE] = ACTIONS(2510), - [anon_sym_try] = ACTIONS(2508), - [anon_sym_catch] = ACTIONS(2508), - [anon_sym_return] = ACTIONS(2508), - [anon_sym_source] = ACTIONS(2508), - [anon_sym_source_DASHenv] = ACTIONS(2508), - [anon_sym_register] = ACTIONS(2508), - [anon_sym_hide] = ACTIONS(2508), - [anon_sym_hide_DASHenv] = ACTIONS(2508), - [anon_sym_overlay] = ACTIONS(2508), - [anon_sym_as] = ACTIONS(2508), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2510), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2510), - [aux_sym__val_number_decimal_token1] = ACTIONS(2508), - [aux_sym__val_number_decimal_token2] = ACTIONS(2510), - [aux_sym__val_number_decimal_token3] = ACTIONS(2510), - [aux_sym__val_number_decimal_token4] = ACTIONS(2510), - [aux_sym__val_number_token1] = ACTIONS(2510), - [aux_sym__val_number_token2] = ACTIONS(2510), - [aux_sym__val_number_token3] = ACTIONS(2510), - [aux_sym__val_number_token4] = ACTIONS(2508), - [aux_sym__val_number_token5] = ACTIONS(2508), - [aux_sym__val_number_token6] = ACTIONS(2508), - [anon_sym_DQUOTE] = ACTIONS(2510), - [sym__str_single_quotes] = ACTIONS(2510), - [sym__str_back_ticks] = ACTIONS(2510), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2510), + [anon_sym_export] = ACTIONS(2351), + [anon_sym_alias] = ACTIONS(2351), + [anon_sym_let] = ACTIONS(2351), + [anon_sym_let_DASHenv] = ACTIONS(2351), + [anon_sym_mut] = ACTIONS(2351), + [anon_sym_const] = ACTIONS(2351), + [aux_sym_cmd_identifier_token1] = ACTIONS(2351), + [aux_sym_cmd_identifier_token2] = ACTIONS(2353), + [aux_sym_cmd_identifier_token3] = ACTIONS(2353), + [aux_sym_cmd_identifier_token4] = ACTIONS(2353), + [aux_sym_cmd_identifier_token5] = ACTIONS(2353), + [aux_sym_cmd_identifier_token6] = ACTIONS(2353), + [aux_sym_cmd_identifier_token7] = ACTIONS(2353), + [aux_sym_cmd_identifier_token8] = ACTIONS(2351), + [aux_sym_cmd_identifier_token9] = ACTIONS(2351), + [aux_sym_cmd_identifier_token10] = ACTIONS(2353), + [aux_sym_cmd_identifier_token11] = ACTIONS(2353), + [aux_sym_cmd_identifier_token12] = ACTIONS(2351), + [aux_sym_cmd_identifier_token13] = ACTIONS(2351), + [aux_sym_cmd_identifier_token14] = ACTIONS(2351), + [aux_sym_cmd_identifier_token15] = ACTIONS(2351), + [aux_sym_cmd_identifier_token16] = ACTIONS(2353), + [aux_sym_cmd_identifier_token17] = ACTIONS(2353), + [aux_sym_cmd_identifier_token18] = ACTIONS(2353), + [aux_sym_cmd_identifier_token19] = ACTIONS(2353), + [aux_sym_cmd_identifier_token20] = ACTIONS(2353), + [aux_sym_cmd_identifier_token21] = ACTIONS(2353), + [aux_sym_cmd_identifier_token22] = ACTIONS(2353), + [aux_sym_cmd_identifier_token23] = ACTIONS(2353), + [aux_sym_cmd_identifier_token24] = ACTIONS(2353), + [aux_sym_cmd_identifier_token25] = ACTIONS(2353), + [aux_sym_cmd_identifier_token26] = ACTIONS(2353), + [aux_sym_cmd_identifier_token27] = ACTIONS(2353), + [aux_sym_cmd_identifier_token28] = ACTIONS(2353), + [aux_sym_cmd_identifier_token29] = ACTIONS(2353), + [aux_sym_cmd_identifier_token30] = ACTIONS(2353), + [aux_sym_cmd_identifier_token31] = ACTIONS(2353), + [aux_sym_cmd_identifier_token32] = ACTIONS(2353), + [aux_sym_cmd_identifier_token33] = ACTIONS(2353), + [aux_sym_cmd_identifier_token34] = ACTIONS(2351), + [aux_sym_cmd_identifier_token35] = ACTIONS(2353), + [aux_sym_cmd_identifier_token36] = ACTIONS(2353), + [aux_sym_cmd_identifier_token37] = ACTIONS(2353), + [aux_sym_cmd_identifier_token38] = ACTIONS(2351), + [aux_sym_cmd_identifier_token39] = ACTIONS(2353), + [aux_sym_cmd_identifier_token40] = ACTIONS(2353), + [anon_sym_def] = ACTIONS(2351), + [anon_sym_export_DASHenv] = ACTIONS(2351), + [anon_sym_extern] = ACTIONS(2351), + [anon_sym_module] = ACTIONS(2351), + [anon_sym_use] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(2353), + [anon_sym_DOLLAR] = ACTIONS(2353), + [anon_sym_error] = ACTIONS(2351), + [anon_sym_DASH2] = ACTIONS(2351), + [anon_sym_break] = ACTIONS(2351), + [anon_sym_continue] = ACTIONS(2351), + [anon_sym_for] = ACTIONS(2351), + [anon_sym_in2] = ACTIONS(2351), + [anon_sym_loop] = ACTIONS(2351), + [anon_sym_make] = ACTIONS(2351), + [anon_sym_while] = ACTIONS(2351), + [anon_sym_do] = ACTIONS(2351), + [anon_sym_if] = ACTIONS(2351), + [anon_sym_else] = ACTIONS(2351), + [anon_sym_match] = ACTIONS(2351), + [anon_sym_RBRACE] = ACTIONS(2353), + [anon_sym_try] = ACTIONS(2351), + [anon_sym_catch] = ACTIONS(2351), + [anon_sym_return] = ACTIONS(2351), + [anon_sym_source] = ACTIONS(2351), + [anon_sym_source_DASHenv] = ACTIONS(2351), + [anon_sym_register] = ACTIONS(2351), + [anon_sym_hide] = ACTIONS(2351), + [anon_sym_hide_DASHenv] = ACTIONS(2351), + [anon_sym_overlay] = ACTIONS(2351), + [anon_sym_as] = ACTIONS(2351), + [anon_sym_PLUS2] = ACTIONS(2351), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2353), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2353), + [aux_sym__val_number_decimal_token1] = ACTIONS(2351), + [aux_sym__val_number_decimal_token2] = ACTIONS(2353), + [aux_sym__val_number_decimal_token3] = ACTIONS(2353), + [aux_sym__val_number_decimal_token4] = ACTIONS(2353), + [aux_sym__val_number_token1] = ACTIONS(2353), + [aux_sym__val_number_token2] = ACTIONS(2353), + [aux_sym__val_number_token3] = ACTIONS(2353), + [aux_sym__val_number_token4] = ACTIONS(2351), + [aux_sym__val_number_token5] = ACTIONS(2351), + [aux_sym__val_number_token6] = ACTIONS(2351), + [anon_sym_DQUOTE] = ACTIONS(2353), + [sym__str_single_quotes] = ACTIONS(2353), + [sym__str_back_ticks] = ACTIONS(2353), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2353), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2510), + [sym_raw_string_begin] = ACTIONS(2353), }, [716] = { [sym_comment] = STATE(716), - [anon_sym_export] = ACTIONS(2391), - [anon_sym_alias] = ACTIONS(2391), - [anon_sym_let] = ACTIONS(2391), - [anon_sym_let_DASHenv] = ACTIONS(2391), - [anon_sym_mut] = ACTIONS(2391), - [anon_sym_const] = ACTIONS(2391), - [aux_sym_cmd_identifier_token1] = ACTIONS(2391), - [aux_sym_cmd_identifier_token2] = ACTIONS(2393), - [aux_sym_cmd_identifier_token3] = ACTIONS(2393), - [aux_sym_cmd_identifier_token4] = ACTIONS(2393), - [aux_sym_cmd_identifier_token5] = ACTIONS(2393), - [aux_sym_cmd_identifier_token6] = ACTIONS(2393), - [aux_sym_cmd_identifier_token7] = ACTIONS(2393), - [aux_sym_cmd_identifier_token8] = ACTIONS(2391), - [aux_sym_cmd_identifier_token9] = ACTIONS(2391), - [aux_sym_cmd_identifier_token10] = ACTIONS(2393), - [aux_sym_cmd_identifier_token11] = ACTIONS(2393), - [aux_sym_cmd_identifier_token12] = ACTIONS(2391), - [aux_sym_cmd_identifier_token13] = ACTIONS(2391), - [aux_sym_cmd_identifier_token14] = ACTIONS(2391), - [aux_sym_cmd_identifier_token15] = ACTIONS(2391), - [aux_sym_cmd_identifier_token16] = ACTIONS(2393), - [aux_sym_cmd_identifier_token17] = ACTIONS(2393), - [aux_sym_cmd_identifier_token18] = ACTIONS(2393), - [aux_sym_cmd_identifier_token19] = ACTIONS(2393), - [aux_sym_cmd_identifier_token20] = ACTIONS(2393), - [aux_sym_cmd_identifier_token21] = ACTIONS(2393), - [aux_sym_cmd_identifier_token22] = ACTIONS(2393), - [aux_sym_cmd_identifier_token23] = ACTIONS(2393), - [aux_sym_cmd_identifier_token24] = ACTIONS(2393), - [aux_sym_cmd_identifier_token25] = ACTIONS(2393), - [aux_sym_cmd_identifier_token26] = ACTIONS(2393), - [aux_sym_cmd_identifier_token27] = ACTIONS(2393), - [aux_sym_cmd_identifier_token28] = ACTIONS(2393), - [aux_sym_cmd_identifier_token29] = ACTIONS(2393), - [aux_sym_cmd_identifier_token30] = ACTIONS(2393), - [aux_sym_cmd_identifier_token31] = ACTIONS(2393), - [aux_sym_cmd_identifier_token32] = ACTIONS(2393), - [aux_sym_cmd_identifier_token33] = ACTIONS(2393), - [aux_sym_cmd_identifier_token34] = ACTIONS(2391), - [aux_sym_cmd_identifier_token35] = ACTIONS(2393), - [aux_sym_cmd_identifier_token36] = ACTIONS(2393), - [aux_sym_cmd_identifier_token37] = ACTIONS(2393), - [aux_sym_cmd_identifier_token38] = ACTIONS(2391), - [aux_sym_cmd_identifier_token39] = ACTIONS(2393), - [aux_sym_cmd_identifier_token40] = ACTIONS(2393), - [anon_sym_def] = ACTIONS(2391), - [anon_sym_export_DASHenv] = ACTIONS(2391), - [anon_sym_extern] = ACTIONS(2391), - [anon_sym_module] = ACTIONS(2391), - [anon_sym_use] = ACTIONS(2391), - [anon_sym_LPAREN] = ACTIONS(2393), - [anon_sym_DOLLAR] = ACTIONS(2393), - [anon_sym_error] = ACTIONS(2391), - [anon_sym_DASH2] = ACTIONS(2391), - [anon_sym_break] = ACTIONS(2391), - [anon_sym_continue] = ACTIONS(2391), - [anon_sym_for] = ACTIONS(2391), - [anon_sym_in2] = ACTIONS(2391), - [anon_sym_loop] = ACTIONS(2391), - [anon_sym_make] = ACTIONS(2391), - [anon_sym_while] = ACTIONS(2391), - [anon_sym_do] = ACTIONS(2391), - [anon_sym_if] = ACTIONS(2391), - [anon_sym_else] = ACTIONS(2391), - [anon_sym_match] = ACTIONS(2391), - [anon_sym_RBRACE] = ACTIONS(2393), - [anon_sym_try] = ACTIONS(2391), - [anon_sym_catch] = ACTIONS(2391), - [anon_sym_return] = ACTIONS(2391), - [anon_sym_source] = ACTIONS(2391), - [anon_sym_source_DASHenv] = ACTIONS(2391), - [anon_sym_register] = ACTIONS(2391), - [anon_sym_hide] = ACTIONS(2391), - [anon_sym_hide_DASHenv] = ACTIONS(2391), - [anon_sym_overlay] = ACTIONS(2391), - [anon_sym_as] = ACTIONS(2391), - [anon_sym_PLUS2] = ACTIONS(2391), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2393), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2393), - [aux_sym__val_number_decimal_token1] = ACTIONS(2391), - [aux_sym__val_number_decimal_token2] = ACTIONS(2393), - [aux_sym__val_number_decimal_token3] = ACTIONS(2393), - [aux_sym__val_number_decimal_token4] = ACTIONS(2393), - [aux_sym__val_number_token1] = ACTIONS(2393), - [aux_sym__val_number_token2] = ACTIONS(2393), - [aux_sym__val_number_token3] = ACTIONS(2393), - [aux_sym__val_number_token4] = ACTIONS(2391), - [aux_sym__val_number_token5] = ACTIONS(2391), - [aux_sym__val_number_token6] = ACTIONS(2391), - [anon_sym_DQUOTE] = ACTIONS(2393), - [sym__str_single_quotes] = ACTIONS(2393), - [sym__str_back_ticks] = ACTIONS(2393), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2393), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2393), + [anon_sym_export] = ACTIONS(2355), + [anon_sym_alias] = ACTIONS(2355), + [anon_sym_let] = ACTIONS(2355), + [anon_sym_let_DASHenv] = ACTIONS(2355), + [anon_sym_mut] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [aux_sym_cmd_identifier_token1] = ACTIONS(2355), + [aux_sym_cmd_identifier_token2] = ACTIONS(2357), + [aux_sym_cmd_identifier_token3] = ACTIONS(2357), + [aux_sym_cmd_identifier_token4] = ACTIONS(2357), + [aux_sym_cmd_identifier_token5] = ACTIONS(2357), + [aux_sym_cmd_identifier_token6] = ACTIONS(2357), + [aux_sym_cmd_identifier_token7] = ACTIONS(2357), + [aux_sym_cmd_identifier_token8] = ACTIONS(2355), + [aux_sym_cmd_identifier_token9] = ACTIONS(2355), + [aux_sym_cmd_identifier_token10] = ACTIONS(2357), + [aux_sym_cmd_identifier_token11] = ACTIONS(2357), + [aux_sym_cmd_identifier_token12] = ACTIONS(2355), + [aux_sym_cmd_identifier_token13] = ACTIONS(2355), + [aux_sym_cmd_identifier_token14] = ACTIONS(2355), + [aux_sym_cmd_identifier_token15] = ACTIONS(2355), + [aux_sym_cmd_identifier_token16] = ACTIONS(2357), + [aux_sym_cmd_identifier_token17] = ACTIONS(2357), + [aux_sym_cmd_identifier_token18] = ACTIONS(2357), + [aux_sym_cmd_identifier_token19] = ACTIONS(2357), + [aux_sym_cmd_identifier_token20] = ACTIONS(2357), + [aux_sym_cmd_identifier_token21] = ACTIONS(2357), + [aux_sym_cmd_identifier_token22] = ACTIONS(2357), + [aux_sym_cmd_identifier_token23] = ACTIONS(2357), + [aux_sym_cmd_identifier_token24] = ACTIONS(2357), + [aux_sym_cmd_identifier_token25] = ACTIONS(2357), + [aux_sym_cmd_identifier_token26] = ACTIONS(2357), + [aux_sym_cmd_identifier_token27] = ACTIONS(2357), + [aux_sym_cmd_identifier_token28] = ACTIONS(2357), + [aux_sym_cmd_identifier_token29] = ACTIONS(2357), + [aux_sym_cmd_identifier_token30] = ACTIONS(2357), + [aux_sym_cmd_identifier_token31] = ACTIONS(2357), + [aux_sym_cmd_identifier_token32] = ACTIONS(2357), + [aux_sym_cmd_identifier_token33] = ACTIONS(2357), + [aux_sym_cmd_identifier_token34] = ACTIONS(2355), + [aux_sym_cmd_identifier_token35] = ACTIONS(2357), + [aux_sym_cmd_identifier_token36] = ACTIONS(2357), + [aux_sym_cmd_identifier_token37] = ACTIONS(2357), + [aux_sym_cmd_identifier_token38] = ACTIONS(2355), + [aux_sym_cmd_identifier_token39] = ACTIONS(2357), + [aux_sym_cmd_identifier_token40] = ACTIONS(2357), + [anon_sym_def] = ACTIONS(2355), + [anon_sym_export_DASHenv] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym_module] = ACTIONS(2355), + [anon_sym_use] = ACTIONS(2355), + [anon_sym_LPAREN] = ACTIONS(2357), + [anon_sym_DOLLAR] = ACTIONS(2357), + [anon_sym_error] = ACTIONS(2355), + [anon_sym_DASH2] = ACTIONS(2355), + [anon_sym_break] = ACTIONS(2355), + [anon_sym_continue] = ACTIONS(2355), + [anon_sym_for] = ACTIONS(2355), + [anon_sym_in2] = ACTIONS(2355), + [anon_sym_loop] = ACTIONS(2355), + [anon_sym_make] = ACTIONS(2355), + [anon_sym_while] = ACTIONS(2355), + [anon_sym_do] = ACTIONS(2355), + [anon_sym_if] = ACTIONS(2355), + [anon_sym_else] = ACTIONS(2355), + [anon_sym_match] = ACTIONS(2355), + [anon_sym_RBRACE] = ACTIONS(2357), + [anon_sym_try] = ACTIONS(2355), + [anon_sym_catch] = ACTIONS(2355), + [anon_sym_return] = ACTIONS(2355), + [anon_sym_source] = ACTIONS(2355), + [anon_sym_source_DASHenv] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_hide] = ACTIONS(2355), + [anon_sym_hide_DASHenv] = ACTIONS(2355), + [anon_sym_overlay] = ACTIONS(2355), + [anon_sym_as] = ACTIONS(2355), + [anon_sym_PLUS2] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2357), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2357), + [aux_sym__val_number_decimal_token1] = ACTIONS(2355), + [aux_sym__val_number_decimal_token2] = ACTIONS(2357), + [aux_sym__val_number_decimal_token3] = ACTIONS(2357), + [aux_sym__val_number_decimal_token4] = ACTIONS(2357), + [aux_sym__val_number_token1] = ACTIONS(2357), + [aux_sym__val_number_token2] = ACTIONS(2357), + [aux_sym__val_number_token3] = ACTIONS(2357), + [aux_sym__val_number_token4] = ACTIONS(2355), + [aux_sym__val_number_token5] = ACTIONS(2355), + [aux_sym__val_number_token6] = ACTIONS(2355), + [anon_sym_DQUOTE] = ACTIONS(2357), + [sym__str_single_quotes] = ACTIONS(2357), + [sym__str_back_ticks] = ACTIONS(2357), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2357), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2357), }, [717] = { [sym_comment] = STATE(717), - [anon_sym_export] = ACTIONS(2413), - [anon_sym_alias] = ACTIONS(2413), - [anon_sym_let] = ACTIONS(2413), - [anon_sym_let_DASHenv] = ACTIONS(2413), - [anon_sym_mut] = ACTIONS(2413), - [anon_sym_const] = ACTIONS(2413), - [aux_sym_cmd_identifier_token1] = ACTIONS(2413), - [aux_sym_cmd_identifier_token2] = ACTIONS(2415), - [aux_sym_cmd_identifier_token3] = ACTIONS(2415), - [aux_sym_cmd_identifier_token4] = ACTIONS(2415), - [aux_sym_cmd_identifier_token5] = ACTIONS(2415), - [aux_sym_cmd_identifier_token6] = ACTIONS(2415), - [aux_sym_cmd_identifier_token7] = ACTIONS(2415), - [aux_sym_cmd_identifier_token8] = ACTIONS(2413), - [aux_sym_cmd_identifier_token9] = ACTIONS(2413), - [aux_sym_cmd_identifier_token10] = ACTIONS(2415), - [aux_sym_cmd_identifier_token11] = ACTIONS(2415), - [aux_sym_cmd_identifier_token12] = ACTIONS(2413), - [aux_sym_cmd_identifier_token13] = ACTIONS(2413), - [aux_sym_cmd_identifier_token14] = ACTIONS(2413), - [aux_sym_cmd_identifier_token15] = ACTIONS(2413), - [aux_sym_cmd_identifier_token16] = ACTIONS(2415), - [aux_sym_cmd_identifier_token17] = ACTIONS(2415), - [aux_sym_cmd_identifier_token18] = ACTIONS(2415), - [aux_sym_cmd_identifier_token19] = ACTIONS(2415), - [aux_sym_cmd_identifier_token20] = ACTIONS(2415), - [aux_sym_cmd_identifier_token21] = ACTIONS(2415), - [aux_sym_cmd_identifier_token22] = ACTIONS(2415), - [aux_sym_cmd_identifier_token23] = ACTIONS(2415), - [aux_sym_cmd_identifier_token24] = ACTIONS(2415), - [aux_sym_cmd_identifier_token25] = ACTIONS(2415), - [aux_sym_cmd_identifier_token26] = ACTIONS(2415), - [aux_sym_cmd_identifier_token27] = ACTIONS(2415), - [aux_sym_cmd_identifier_token28] = ACTIONS(2415), - [aux_sym_cmd_identifier_token29] = ACTIONS(2415), - [aux_sym_cmd_identifier_token30] = ACTIONS(2415), - [aux_sym_cmd_identifier_token31] = ACTIONS(2415), - [aux_sym_cmd_identifier_token32] = ACTIONS(2415), - [aux_sym_cmd_identifier_token33] = ACTIONS(2415), - [aux_sym_cmd_identifier_token34] = ACTIONS(2413), - [aux_sym_cmd_identifier_token35] = ACTIONS(2415), - [aux_sym_cmd_identifier_token36] = ACTIONS(2415), - [aux_sym_cmd_identifier_token37] = ACTIONS(2415), - [aux_sym_cmd_identifier_token38] = ACTIONS(2413), - [aux_sym_cmd_identifier_token39] = ACTIONS(2415), - [aux_sym_cmd_identifier_token40] = ACTIONS(2415), - [anon_sym_def] = ACTIONS(2413), - [anon_sym_export_DASHenv] = ACTIONS(2413), - [anon_sym_extern] = ACTIONS(2413), - [anon_sym_module] = ACTIONS(2413), - [anon_sym_use] = ACTIONS(2413), - [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_DOLLAR] = ACTIONS(2415), - [anon_sym_error] = ACTIONS(2413), - [anon_sym_DASH2] = ACTIONS(2413), - [anon_sym_break] = ACTIONS(2413), - [anon_sym_continue] = ACTIONS(2413), - [anon_sym_for] = ACTIONS(2413), - [anon_sym_in2] = ACTIONS(2413), - [anon_sym_loop] = ACTIONS(2413), - [anon_sym_make] = ACTIONS(2413), - [anon_sym_while] = ACTIONS(2413), - [anon_sym_do] = ACTIONS(2413), - [anon_sym_if] = ACTIONS(2413), - [anon_sym_else] = ACTIONS(2413), - [anon_sym_match] = ACTIONS(2413), - [anon_sym_RBRACE] = ACTIONS(2415), - [anon_sym_try] = ACTIONS(2413), - [anon_sym_catch] = ACTIONS(2413), - [anon_sym_return] = ACTIONS(2413), - [anon_sym_source] = ACTIONS(2413), - [anon_sym_source_DASHenv] = ACTIONS(2413), - [anon_sym_register] = ACTIONS(2413), - [anon_sym_hide] = ACTIONS(2413), - [anon_sym_hide_DASHenv] = ACTIONS(2413), - [anon_sym_overlay] = ACTIONS(2413), - [anon_sym_as] = ACTIONS(2413), - [anon_sym_PLUS2] = ACTIONS(2413), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2415), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2415), - [aux_sym__val_number_decimal_token1] = ACTIONS(2413), - [aux_sym__val_number_decimal_token2] = ACTIONS(2415), - [aux_sym__val_number_decimal_token3] = ACTIONS(2415), - [aux_sym__val_number_decimal_token4] = ACTIONS(2415), - [aux_sym__val_number_token1] = ACTIONS(2415), - [aux_sym__val_number_token2] = ACTIONS(2415), - [aux_sym__val_number_token3] = ACTIONS(2415), - [aux_sym__val_number_token4] = ACTIONS(2413), - [aux_sym__val_number_token5] = ACTIONS(2413), - [aux_sym__val_number_token6] = ACTIONS(2413), - [anon_sym_DQUOTE] = ACTIONS(2415), - [sym__str_single_quotes] = ACTIONS(2415), - [sym__str_back_ticks] = ACTIONS(2415), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2415), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2415), + [anon_sym_export] = ACTIONS(2359), + [anon_sym_alias] = ACTIONS(2359), + [anon_sym_let] = ACTIONS(2359), + [anon_sym_let_DASHenv] = ACTIONS(2359), + [anon_sym_mut] = ACTIONS(2359), + [anon_sym_const] = ACTIONS(2359), + [aux_sym_cmd_identifier_token1] = ACTIONS(2359), + [aux_sym_cmd_identifier_token2] = ACTIONS(2361), + [aux_sym_cmd_identifier_token3] = ACTIONS(2361), + [aux_sym_cmd_identifier_token4] = ACTIONS(2361), + [aux_sym_cmd_identifier_token5] = ACTIONS(2361), + [aux_sym_cmd_identifier_token6] = ACTIONS(2361), + [aux_sym_cmd_identifier_token7] = ACTIONS(2361), + [aux_sym_cmd_identifier_token8] = ACTIONS(2359), + [aux_sym_cmd_identifier_token9] = ACTIONS(2359), + [aux_sym_cmd_identifier_token10] = ACTIONS(2361), + [aux_sym_cmd_identifier_token11] = ACTIONS(2361), + [aux_sym_cmd_identifier_token12] = ACTIONS(2359), + [aux_sym_cmd_identifier_token13] = ACTIONS(2359), + [aux_sym_cmd_identifier_token14] = ACTIONS(2359), + [aux_sym_cmd_identifier_token15] = ACTIONS(2359), + [aux_sym_cmd_identifier_token16] = ACTIONS(2361), + [aux_sym_cmd_identifier_token17] = ACTIONS(2361), + [aux_sym_cmd_identifier_token18] = ACTIONS(2361), + [aux_sym_cmd_identifier_token19] = ACTIONS(2361), + [aux_sym_cmd_identifier_token20] = ACTIONS(2361), + [aux_sym_cmd_identifier_token21] = ACTIONS(2361), + [aux_sym_cmd_identifier_token22] = ACTIONS(2361), + [aux_sym_cmd_identifier_token23] = ACTIONS(2361), + [aux_sym_cmd_identifier_token24] = ACTIONS(2361), + [aux_sym_cmd_identifier_token25] = ACTIONS(2361), + [aux_sym_cmd_identifier_token26] = ACTIONS(2361), + [aux_sym_cmd_identifier_token27] = ACTIONS(2361), + [aux_sym_cmd_identifier_token28] = ACTIONS(2361), + [aux_sym_cmd_identifier_token29] = ACTIONS(2361), + [aux_sym_cmd_identifier_token30] = ACTIONS(2361), + [aux_sym_cmd_identifier_token31] = ACTIONS(2361), + [aux_sym_cmd_identifier_token32] = ACTIONS(2361), + [aux_sym_cmd_identifier_token33] = ACTIONS(2361), + [aux_sym_cmd_identifier_token34] = ACTIONS(2359), + [aux_sym_cmd_identifier_token35] = ACTIONS(2361), + [aux_sym_cmd_identifier_token36] = ACTIONS(2361), + [aux_sym_cmd_identifier_token37] = ACTIONS(2361), + [aux_sym_cmd_identifier_token38] = ACTIONS(2359), + [aux_sym_cmd_identifier_token39] = ACTIONS(2361), + [aux_sym_cmd_identifier_token40] = ACTIONS(2361), + [anon_sym_def] = ACTIONS(2359), + [anon_sym_export_DASHenv] = ACTIONS(2359), + [anon_sym_extern] = ACTIONS(2359), + [anon_sym_module] = ACTIONS(2359), + [anon_sym_use] = ACTIONS(2359), + [anon_sym_LPAREN] = ACTIONS(2361), + [anon_sym_DOLLAR] = ACTIONS(2361), + [anon_sym_error] = ACTIONS(2359), + [anon_sym_DASH2] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(2359), + [anon_sym_continue] = ACTIONS(2359), + [anon_sym_for] = ACTIONS(2359), + [anon_sym_in2] = ACTIONS(2359), + [anon_sym_loop] = ACTIONS(2359), + [anon_sym_make] = ACTIONS(2359), + [anon_sym_while] = ACTIONS(2359), + [anon_sym_do] = ACTIONS(2359), + [anon_sym_if] = ACTIONS(2359), + [anon_sym_else] = ACTIONS(2359), + [anon_sym_match] = ACTIONS(2359), + [anon_sym_RBRACE] = ACTIONS(2361), + [anon_sym_try] = ACTIONS(2359), + [anon_sym_catch] = ACTIONS(2359), + [anon_sym_return] = ACTIONS(2359), + [anon_sym_source] = ACTIONS(2359), + [anon_sym_source_DASHenv] = ACTIONS(2359), + [anon_sym_register] = ACTIONS(2359), + [anon_sym_hide] = ACTIONS(2359), + [anon_sym_hide_DASHenv] = ACTIONS(2359), + [anon_sym_overlay] = ACTIONS(2359), + [anon_sym_as] = ACTIONS(2359), + [anon_sym_PLUS2] = ACTIONS(2359), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2361), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2361), + [aux_sym__val_number_decimal_token1] = ACTIONS(2359), + [aux_sym__val_number_decimal_token2] = ACTIONS(2361), + [aux_sym__val_number_decimal_token3] = ACTIONS(2361), + [aux_sym__val_number_decimal_token4] = ACTIONS(2361), + [aux_sym__val_number_token1] = ACTIONS(2361), + [aux_sym__val_number_token2] = ACTIONS(2361), + [aux_sym__val_number_token3] = ACTIONS(2361), + [aux_sym__val_number_token4] = ACTIONS(2359), + [aux_sym__val_number_token5] = ACTIONS(2359), + [aux_sym__val_number_token6] = ACTIONS(2359), + [anon_sym_DQUOTE] = ACTIONS(2361), + [sym__str_single_quotes] = ACTIONS(2361), + [sym__str_back_ticks] = ACTIONS(2361), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2361), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2361), }, [718] = { [sym_comment] = STATE(718), - [anon_sym_export] = ACTIONS(2480), - [anon_sym_alias] = ACTIONS(2480), - [anon_sym_let] = ACTIONS(2480), - [anon_sym_let_DASHenv] = ACTIONS(2480), - [anon_sym_mut] = ACTIONS(2480), - [anon_sym_const] = ACTIONS(2480), - [aux_sym_cmd_identifier_token1] = ACTIONS(2480), - [aux_sym_cmd_identifier_token2] = ACTIONS(2482), - [aux_sym_cmd_identifier_token3] = ACTIONS(2482), - [aux_sym_cmd_identifier_token4] = ACTIONS(2482), - [aux_sym_cmd_identifier_token5] = ACTIONS(2482), - [aux_sym_cmd_identifier_token6] = ACTIONS(2482), - [aux_sym_cmd_identifier_token7] = ACTIONS(2482), - [aux_sym_cmd_identifier_token8] = ACTIONS(2480), - [aux_sym_cmd_identifier_token9] = ACTIONS(2480), - [aux_sym_cmd_identifier_token10] = ACTIONS(2482), - [aux_sym_cmd_identifier_token11] = ACTIONS(2482), - [aux_sym_cmd_identifier_token12] = ACTIONS(2480), - [aux_sym_cmd_identifier_token13] = ACTIONS(2480), - [aux_sym_cmd_identifier_token14] = ACTIONS(2480), - [aux_sym_cmd_identifier_token15] = ACTIONS(2480), - [aux_sym_cmd_identifier_token16] = ACTIONS(2482), - [aux_sym_cmd_identifier_token17] = ACTIONS(2482), - [aux_sym_cmd_identifier_token18] = ACTIONS(2482), - [aux_sym_cmd_identifier_token19] = ACTIONS(2482), - [aux_sym_cmd_identifier_token20] = ACTIONS(2482), - [aux_sym_cmd_identifier_token21] = ACTIONS(2482), - [aux_sym_cmd_identifier_token22] = ACTIONS(2482), - [aux_sym_cmd_identifier_token23] = ACTIONS(2482), - [aux_sym_cmd_identifier_token24] = ACTIONS(2482), - [aux_sym_cmd_identifier_token25] = ACTIONS(2482), - [aux_sym_cmd_identifier_token26] = ACTIONS(2482), - [aux_sym_cmd_identifier_token27] = ACTIONS(2482), - [aux_sym_cmd_identifier_token28] = ACTIONS(2482), - [aux_sym_cmd_identifier_token29] = ACTIONS(2482), - [aux_sym_cmd_identifier_token30] = ACTIONS(2482), - [aux_sym_cmd_identifier_token31] = ACTIONS(2482), - [aux_sym_cmd_identifier_token32] = ACTIONS(2482), - [aux_sym_cmd_identifier_token33] = ACTIONS(2482), - [aux_sym_cmd_identifier_token34] = ACTIONS(2480), - [aux_sym_cmd_identifier_token35] = ACTIONS(2482), - [aux_sym_cmd_identifier_token36] = ACTIONS(2482), - [aux_sym_cmd_identifier_token37] = ACTIONS(2482), - [aux_sym_cmd_identifier_token38] = ACTIONS(2480), - [aux_sym_cmd_identifier_token39] = ACTIONS(2482), - [aux_sym_cmd_identifier_token40] = ACTIONS(2482), - [anon_sym_def] = ACTIONS(2480), - [anon_sym_export_DASHenv] = ACTIONS(2480), - [anon_sym_extern] = ACTIONS(2480), - [anon_sym_module] = ACTIONS(2480), - [anon_sym_use] = ACTIONS(2480), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_DOLLAR] = ACTIONS(2482), - [anon_sym_error] = ACTIONS(2480), - [anon_sym_DASH2] = ACTIONS(2480), - [anon_sym_break] = ACTIONS(2480), - [anon_sym_continue] = ACTIONS(2480), - [anon_sym_for] = ACTIONS(2480), - [anon_sym_in2] = ACTIONS(2480), - [anon_sym_loop] = ACTIONS(2480), - [anon_sym_make] = ACTIONS(2480), - [anon_sym_while] = ACTIONS(2480), - [anon_sym_do] = ACTIONS(2480), - [anon_sym_if] = ACTIONS(2480), - [anon_sym_else] = ACTIONS(2480), - [anon_sym_match] = ACTIONS(2480), - [anon_sym_RBRACE] = ACTIONS(2482), - [anon_sym_try] = ACTIONS(2480), - [anon_sym_catch] = ACTIONS(2480), - [anon_sym_return] = ACTIONS(2480), - [anon_sym_source] = ACTIONS(2480), - [anon_sym_source_DASHenv] = ACTIONS(2480), - [anon_sym_register] = ACTIONS(2480), - [anon_sym_hide] = ACTIONS(2480), - [anon_sym_hide_DASHenv] = ACTIONS(2480), - [anon_sym_overlay] = ACTIONS(2480), - [anon_sym_as] = ACTIONS(2480), - [anon_sym_PLUS2] = ACTIONS(2480), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2482), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2482), - [aux_sym__val_number_decimal_token1] = ACTIONS(2480), - [aux_sym__val_number_decimal_token2] = ACTIONS(2482), - [aux_sym__val_number_decimal_token3] = ACTIONS(2482), - [aux_sym__val_number_decimal_token4] = ACTIONS(2482), - [aux_sym__val_number_token1] = ACTIONS(2482), - [aux_sym__val_number_token2] = ACTIONS(2482), - [aux_sym__val_number_token3] = ACTIONS(2482), - [aux_sym__val_number_token4] = ACTIONS(2480), - [aux_sym__val_number_token5] = ACTIONS(2480), - [aux_sym__val_number_token6] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(2482), - [sym__str_single_quotes] = ACTIONS(2482), - [sym__str_back_ticks] = ACTIONS(2482), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2482), + [anon_sym_export] = ACTIONS(2363), + [anon_sym_alias] = ACTIONS(2363), + [anon_sym_let] = ACTIONS(2363), + [anon_sym_let_DASHenv] = ACTIONS(2363), + [anon_sym_mut] = ACTIONS(2363), + [anon_sym_const] = ACTIONS(2363), + [aux_sym_cmd_identifier_token1] = ACTIONS(2363), + [aux_sym_cmd_identifier_token2] = ACTIONS(2365), + [aux_sym_cmd_identifier_token3] = ACTIONS(2365), + [aux_sym_cmd_identifier_token4] = ACTIONS(2365), + [aux_sym_cmd_identifier_token5] = ACTIONS(2365), + [aux_sym_cmd_identifier_token6] = ACTIONS(2365), + [aux_sym_cmd_identifier_token7] = ACTIONS(2365), + [aux_sym_cmd_identifier_token8] = ACTIONS(2363), + [aux_sym_cmd_identifier_token9] = ACTIONS(2363), + [aux_sym_cmd_identifier_token10] = ACTIONS(2365), + [aux_sym_cmd_identifier_token11] = ACTIONS(2365), + [aux_sym_cmd_identifier_token12] = ACTIONS(2363), + [aux_sym_cmd_identifier_token13] = ACTIONS(2363), + [aux_sym_cmd_identifier_token14] = ACTIONS(2363), + [aux_sym_cmd_identifier_token15] = ACTIONS(2363), + [aux_sym_cmd_identifier_token16] = ACTIONS(2365), + [aux_sym_cmd_identifier_token17] = ACTIONS(2365), + [aux_sym_cmd_identifier_token18] = ACTIONS(2365), + [aux_sym_cmd_identifier_token19] = ACTIONS(2365), + [aux_sym_cmd_identifier_token20] = ACTIONS(2365), + [aux_sym_cmd_identifier_token21] = ACTIONS(2365), + [aux_sym_cmd_identifier_token22] = ACTIONS(2365), + [aux_sym_cmd_identifier_token23] = ACTIONS(2365), + [aux_sym_cmd_identifier_token24] = ACTIONS(2365), + [aux_sym_cmd_identifier_token25] = ACTIONS(2365), + [aux_sym_cmd_identifier_token26] = ACTIONS(2365), + [aux_sym_cmd_identifier_token27] = ACTIONS(2365), + [aux_sym_cmd_identifier_token28] = ACTIONS(2365), + [aux_sym_cmd_identifier_token29] = ACTIONS(2365), + [aux_sym_cmd_identifier_token30] = ACTIONS(2365), + [aux_sym_cmd_identifier_token31] = ACTIONS(2365), + [aux_sym_cmd_identifier_token32] = ACTIONS(2365), + [aux_sym_cmd_identifier_token33] = ACTIONS(2365), + [aux_sym_cmd_identifier_token34] = ACTIONS(2363), + [aux_sym_cmd_identifier_token35] = ACTIONS(2365), + [aux_sym_cmd_identifier_token36] = ACTIONS(2365), + [aux_sym_cmd_identifier_token37] = ACTIONS(2365), + [aux_sym_cmd_identifier_token38] = ACTIONS(2363), + [aux_sym_cmd_identifier_token39] = ACTIONS(2365), + [aux_sym_cmd_identifier_token40] = ACTIONS(2365), + [anon_sym_def] = ACTIONS(2363), + [anon_sym_export_DASHenv] = ACTIONS(2363), + [anon_sym_extern] = ACTIONS(2363), + [anon_sym_module] = ACTIONS(2363), + [anon_sym_use] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(2365), + [anon_sym_DOLLAR] = ACTIONS(2365), + [anon_sym_error] = ACTIONS(2363), + [anon_sym_DASH2] = ACTIONS(2363), + [anon_sym_break] = ACTIONS(2363), + [anon_sym_continue] = ACTIONS(2363), + [anon_sym_for] = ACTIONS(2363), + [anon_sym_in2] = ACTIONS(2363), + [anon_sym_loop] = ACTIONS(2363), + [anon_sym_make] = ACTIONS(2363), + [anon_sym_while] = ACTIONS(2363), + [anon_sym_do] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2363), + [anon_sym_else] = ACTIONS(2363), + [anon_sym_match] = ACTIONS(2363), + [anon_sym_RBRACE] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(2363), + [anon_sym_catch] = ACTIONS(2363), + [anon_sym_return] = ACTIONS(2363), + [anon_sym_source] = ACTIONS(2363), + [anon_sym_source_DASHenv] = ACTIONS(2363), + [anon_sym_register] = ACTIONS(2363), + [anon_sym_hide] = ACTIONS(2363), + [anon_sym_hide_DASHenv] = ACTIONS(2363), + [anon_sym_overlay] = ACTIONS(2363), + [anon_sym_as] = ACTIONS(2363), + [anon_sym_PLUS2] = ACTIONS(2363), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2365), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2365), + [aux_sym__val_number_decimal_token1] = ACTIONS(2363), + [aux_sym__val_number_decimal_token2] = ACTIONS(2365), + [aux_sym__val_number_decimal_token3] = ACTIONS(2365), + [aux_sym__val_number_decimal_token4] = ACTIONS(2365), + [aux_sym__val_number_token1] = ACTIONS(2365), + [aux_sym__val_number_token2] = ACTIONS(2365), + [aux_sym__val_number_token3] = ACTIONS(2365), + [aux_sym__val_number_token4] = ACTIONS(2363), + [aux_sym__val_number_token5] = ACTIONS(2363), + [aux_sym__val_number_token6] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(2365), + [sym__str_single_quotes] = ACTIONS(2365), + [sym__str_back_ticks] = ACTIONS(2365), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2365), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2482), + [sym_raw_string_begin] = ACTIONS(2365), }, [719] = { [sym_comment] = STATE(719), + [anon_sym_export] = ACTIONS(1026), + [anon_sym_alias] = ACTIONS(1026), + [anon_sym_let] = ACTIONS(1026), + [anon_sym_let_DASHenv] = ACTIONS(1026), + [anon_sym_mut] = ACTIONS(1026), + [anon_sym_const] = ACTIONS(1026), + [aux_sym_cmd_identifier_token1] = ACTIONS(1026), + [aux_sym_cmd_identifier_token2] = ACTIONS(1028), + [aux_sym_cmd_identifier_token3] = ACTIONS(1028), + [aux_sym_cmd_identifier_token4] = ACTIONS(1028), + [aux_sym_cmd_identifier_token5] = ACTIONS(1028), + [aux_sym_cmd_identifier_token6] = ACTIONS(1028), + [aux_sym_cmd_identifier_token7] = ACTIONS(1028), + [aux_sym_cmd_identifier_token8] = ACTIONS(1026), + [aux_sym_cmd_identifier_token9] = ACTIONS(1026), + [aux_sym_cmd_identifier_token10] = ACTIONS(1028), + [aux_sym_cmd_identifier_token11] = ACTIONS(1028), + [aux_sym_cmd_identifier_token12] = ACTIONS(1026), + [aux_sym_cmd_identifier_token13] = ACTIONS(1026), + [aux_sym_cmd_identifier_token14] = ACTIONS(1026), + [aux_sym_cmd_identifier_token15] = ACTIONS(1026), + [aux_sym_cmd_identifier_token16] = ACTIONS(1028), + [aux_sym_cmd_identifier_token17] = ACTIONS(1028), + [aux_sym_cmd_identifier_token18] = ACTIONS(1028), + [aux_sym_cmd_identifier_token19] = ACTIONS(1028), + [aux_sym_cmd_identifier_token20] = ACTIONS(1028), + [aux_sym_cmd_identifier_token21] = ACTIONS(1028), + [aux_sym_cmd_identifier_token22] = ACTIONS(1028), + [aux_sym_cmd_identifier_token23] = ACTIONS(1028), + [aux_sym_cmd_identifier_token24] = ACTIONS(1028), + [aux_sym_cmd_identifier_token25] = ACTIONS(1028), + [aux_sym_cmd_identifier_token26] = ACTIONS(1028), + [aux_sym_cmd_identifier_token27] = ACTIONS(1028), + [aux_sym_cmd_identifier_token28] = ACTIONS(1028), + [aux_sym_cmd_identifier_token29] = ACTIONS(1028), + [aux_sym_cmd_identifier_token30] = ACTIONS(1028), + [aux_sym_cmd_identifier_token31] = ACTIONS(1028), + [aux_sym_cmd_identifier_token32] = ACTIONS(1028), + [aux_sym_cmd_identifier_token33] = ACTIONS(1028), + [aux_sym_cmd_identifier_token34] = ACTIONS(1026), + [aux_sym_cmd_identifier_token35] = ACTIONS(1028), + [aux_sym_cmd_identifier_token36] = ACTIONS(1028), + [aux_sym_cmd_identifier_token37] = ACTIONS(1028), + [aux_sym_cmd_identifier_token38] = ACTIONS(1026), + [aux_sym_cmd_identifier_token39] = ACTIONS(1028), + [aux_sym_cmd_identifier_token40] = ACTIONS(1028), + [anon_sym_def] = ACTIONS(1026), + [anon_sym_export_DASHenv] = ACTIONS(1026), + [anon_sym_extern] = ACTIONS(1026), + [anon_sym_module] = ACTIONS(1026), + [anon_sym_use] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR] = ACTIONS(1028), + [anon_sym_error] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(1026), + [anon_sym_break] = ACTIONS(1026), + [anon_sym_continue] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1026), + [anon_sym_in2] = ACTIONS(1026), + [anon_sym_loop] = ACTIONS(1026), + [anon_sym_make] = ACTIONS(1026), + [anon_sym_while] = ACTIONS(1026), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1026), + [anon_sym_else] = ACTIONS(1026), + [anon_sym_match] = ACTIONS(1026), + [anon_sym_RBRACE] = ACTIONS(1028), + [anon_sym_try] = ACTIONS(1026), + [anon_sym_catch] = ACTIONS(1026), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_source] = ACTIONS(1026), + [anon_sym_source_DASHenv] = ACTIONS(1026), + [anon_sym_register] = ACTIONS(1026), + [anon_sym_hide] = ACTIONS(1026), + [anon_sym_hide_DASHenv] = ACTIONS(1026), + [anon_sym_overlay] = ACTIONS(1026), + [anon_sym_as] = ACTIONS(1026), + [anon_sym_PLUS2] = ACTIONS(1026), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1028), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1028), + [aux_sym__val_number_decimal_token1] = ACTIONS(1026), + [aux_sym__val_number_decimal_token2] = ACTIONS(1028), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), + [aux_sym__val_number_token1] = ACTIONS(1028), + [aux_sym__val_number_token2] = ACTIONS(1028), + [aux_sym__val_number_token3] = ACTIONS(1028), + [aux_sym__val_number_token4] = ACTIONS(1026), + [aux_sym__val_number_token5] = ACTIONS(1026), + [aux_sym__val_number_token6] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1028), + [sym__str_single_quotes] = ACTIONS(1028), + [sym__str_back_ticks] = ACTIONS(1028), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1028), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1028), + }, + [720] = { + [sym_comment] = STATE(720), + [anon_sym_export] = ACTIONS(1863), + [anon_sym_alias] = ACTIONS(1863), + [anon_sym_let] = ACTIONS(1863), + [anon_sym_let_DASHenv] = ACTIONS(1863), + [anon_sym_mut] = ACTIONS(1863), + [anon_sym_const] = ACTIONS(1863), + [aux_sym_cmd_identifier_token1] = ACTIONS(1863), + [aux_sym_cmd_identifier_token2] = ACTIONS(1865), + [aux_sym_cmd_identifier_token3] = ACTIONS(1865), + [aux_sym_cmd_identifier_token4] = ACTIONS(1865), + [aux_sym_cmd_identifier_token5] = ACTIONS(1865), + [aux_sym_cmd_identifier_token6] = ACTIONS(1865), + [aux_sym_cmd_identifier_token7] = ACTIONS(1865), + [aux_sym_cmd_identifier_token8] = ACTIONS(1863), + [aux_sym_cmd_identifier_token9] = ACTIONS(1863), + [aux_sym_cmd_identifier_token10] = ACTIONS(1865), + [aux_sym_cmd_identifier_token11] = ACTIONS(1865), + [aux_sym_cmd_identifier_token12] = ACTIONS(1863), + [aux_sym_cmd_identifier_token13] = ACTIONS(1863), + [aux_sym_cmd_identifier_token14] = ACTIONS(1863), + [aux_sym_cmd_identifier_token15] = ACTIONS(1863), + [aux_sym_cmd_identifier_token16] = ACTIONS(1865), + [aux_sym_cmd_identifier_token17] = ACTIONS(1865), + [aux_sym_cmd_identifier_token18] = ACTIONS(1865), + [aux_sym_cmd_identifier_token19] = ACTIONS(1865), + [aux_sym_cmd_identifier_token20] = ACTIONS(1865), + [aux_sym_cmd_identifier_token21] = ACTIONS(1865), + [aux_sym_cmd_identifier_token22] = ACTIONS(1865), + [aux_sym_cmd_identifier_token23] = ACTIONS(1865), + [aux_sym_cmd_identifier_token24] = ACTIONS(1865), + [aux_sym_cmd_identifier_token25] = ACTIONS(1865), + [aux_sym_cmd_identifier_token26] = ACTIONS(1865), + [aux_sym_cmd_identifier_token27] = ACTIONS(1865), + [aux_sym_cmd_identifier_token28] = ACTIONS(1865), + [aux_sym_cmd_identifier_token29] = ACTIONS(1865), + [aux_sym_cmd_identifier_token30] = ACTIONS(1865), + [aux_sym_cmd_identifier_token31] = ACTIONS(1865), + [aux_sym_cmd_identifier_token32] = ACTIONS(1865), + [aux_sym_cmd_identifier_token33] = ACTIONS(1865), + [aux_sym_cmd_identifier_token34] = ACTIONS(1863), + [aux_sym_cmd_identifier_token35] = ACTIONS(1865), + [aux_sym_cmd_identifier_token36] = ACTIONS(1865), + [aux_sym_cmd_identifier_token37] = ACTIONS(1865), + [aux_sym_cmd_identifier_token38] = ACTIONS(1863), + [aux_sym_cmd_identifier_token39] = ACTIONS(1865), + [aux_sym_cmd_identifier_token40] = ACTIONS(1865), + [anon_sym_def] = ACTIONS(1863), + [anon_sym_export_DASHenv] = ACTIONS(1863), + [anon_sym_extern] = ACTIONS(1863), + [anon_sym_module] = ACTIONS(1863), + [anon_sym_use] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1865), + [anon_sym_DOLLAR] = ACTIONS(1865), + [anon_sym_error] = ACTIONS(1863), + [anon_sym_DASH2] = ACTIONS(1863), + [anon_sym_break] = ACTIONS(1863), + [anon_sym_continue] = ACTIONS(1863), + [anon_sym_for] = ACTIONS(1863), + [anon_sym_in2] = ACTIONS(1863), + [anon_sym_loop] = ACTIONS(1863), + [anon_sym_make] = ACTIONS(1863), + [anon_sym_while] = ACTIONS(1863), + [anon_sym_do] = ACTIONS(1863), + [anon_sym_if] = ACTIONS(1863), + [anon_sym_else] = ACTIONS(1863), + [anon_sym_match] = ACTIONS(1863), + [anon_sym_RBRACE] = ACTIONS(1865), + [anon_sym_try] = ACTIONS(1863), + [anon_sym_catch] = ACTIONS(1863), + [anon_sym_return] = ACTIONS(1863), + [anon_sym_source] = ACTIONS(1863), + [anon_sym_source_DASHenv] = ACTIONS(1863), + [anon_sym_register] = ACTIONS(1863), + [anon_sym_hide] = ACTIONS(1863), + [anon_sym_hide_DASHenv] = ACTIONS(1863), + [anon_sym_overlay] = ACTIONS(1863), + [anon_sym_as] = ACTIONS(1863), + [anon_sym_PLUS2] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1865), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1865), + [aux_sym__val_number_decimal_token1] = ACTIONS(1863), + [aux_sym__val_number_decimal_token2] = ACTIONS(1865), + [aux_sym__val_number_decimal_token3] = ACTIONS(1865), + [aux_sym__val_number_decimal_token4] = ACTIONS(1865), + [aux_sym__val_number_token1] = ACTIONS(1865), + [aux_sym__val_number_token2] = ACTIONS(1865), + [aux_sym__val_number_token3] = ACTIONS(1865), + [aux_sym__val_number_token4] = ACTIONS(1863), + [aux_sym__val_number_token5] = ACTIONS(1863), + [aux_sym__val_number_token6] = ACTIONS(1863), + [anon_sym_DQUOTE] = ACTIONS(1865), + [sym__str_single_quotes] = ACTIONS(1865), + [sym__str_back_ticks] = ACTIONS(1865), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1865), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1865), + }, + [721] = { + [sym_comment] = STATE(721), + [anon_sym_export] = ACTIONS(2398), + [anon_sym_alias] = ACTIONS(2398), + [anon_sym_let] = ACTIONS(2398), + [anon_sym_let_DASHenv] = ACTIONS(2398), + [anon_sym_mut] = ACTIONS(2398), + [anon_sym_const] = ACTIONS(2398), + [aux_sym_cmd_identifier_token1] = ACTIONS(2398), + [aux_sym_cmd_identifier_token2] = ACTIONS(2400), + [aux_sym_cmd_identifier_token3] = ACTIONS(2400), + [aux_sym_cmd_identifier_token4] = ACTIONS(2400), + [aux_sym_cmd_identifier_token5] = ACTIONS(2400), + [aux_sym_cmd_identifier_token6] = ACTIONS(2400), + [aux_sym_cmd_identifier_token7] = ACTIONS(2400), + [aux_sym_cmd_identifier_token8] = ACTIONS(2398), + [aux_sym_cmd_identifier_token9] = ACTIONS(2398), + [aux_sym_cmd_identifier_token10] = ACTIONS(2400), + [aux_sym_cmd_identifier_token11] = ACTIONS(2400), + [aux_sym_cmd_identifier_token12] = ACTIONS(2398), + [aux_sym_cmd_identifier_token13] = ACTIONS(2398), + [aux_sym_cmd_identifier_token14] = ACTIONS(2398), + [aux_sym_cmd_identifier_token15] = ACTIONS(2398), + [aux_sym_cmd_identifier_token16] = ACTIONS(2400), + [aux_sym_cmd_identifier_token17] = ACTIONS(2400), + [aux_sym_cmd_identifier_token18] = ACTIONS(2400), + [aux_sym_cmd_identifier_token19] = ACTIONS(2400), + [aux_sym_cmd_identifier_token20] = ACTIONS(2400), + [aux_sym_cmd_identifier_token21] = ACTIONS(2400), + [aux_sym_cmd_identifier_token22] = ACTIONS(2400), + [aux_sym_cmd_identifier_token23] = ACTIONS(2400), + [aux_sym_cmd_identifier_token24] = ACTIONS(2400), + [aux_sym_cmd_identifier_token25] = ACTIONS(2400), + [aux_sym_cmd_identifier_token26] = ACTIONS(2400), + [aux_sym_cmd_identifier_token27] = ACTIONS(2400), + [aux_sym_cmd_identifier_token28] = ACTIONS(2400), + [aux_sym_cmd_identifier_token29] = ACTIONS(2400), + [aux_sym_cmd_identifier_token30] = ACTIONS(2400), + [aux_sym_cmd_identifier_token31] = ACTIONS(2400), + [aux_sym_cmd_identifier_token32] = ACTIONS(2400), + [aux_sym_cmd_identifier_token33] = ACTIONS(2400), + [aux_sym_cmd_identifier_token34] = ACTIONS(2398), + [aux_sym_cmd_identifier_token35] = ACTIONS(2400), + [aux_sym_cmd_identifier_token36] = ACTIONS(2400), + [aux_sym_cmd_identifier_token37] = ACTIONS(2400), + [aux_sym_cmd_identifier_token38] = ACTIONS(2398), + [aux_sym_cmd_identifier_token39] = ACTIONS(2400), + [aux_sym_cmd_identifier_token40] = ACTIONS(2400), + [anon_sym_def] = ACTIONS(2398), + [anon_sym_export_DASHenv] = ACTIONS(2398), + [anon_sym_extern] = ACTIONS(2398), + [anon_sym_module] = ACTIONS(2398), + [anon_sym_use] = ACTIONS(2398), + [anon_sym_LPAREN] = ACTIONS(2400), + [anon_sym_DOLLAR] = ACTIONS(2400), + [anon_sym_error] = ACTIONS(2398), + [anon_sym_DASH2] = ACTIONS(2398), + [anon_sym_break] = ACTIONS(2398), + [anon_sym_continue] = ACTIONS(2398), + [anon_sym_for] = ACTIONS(2398), + [anon_sym_in2] = ACTIONS(2398), + [anon_sym_loop] = ACTIONS(2398), + [anon_sym_make] = ACTIONS(2398), + [anon_sym_while] = ACTIONS(2398), + [anon_sym_do] = ACTIONS(2398), + [anon_sym_if] = ACTIONS(2398), + [anon_sym_else] = ACTIONS(2398), + [anon_sym_match] = ACTIONS(2398), + [anon_sym_RBRACE] = ACTIONS(2400), + [anon_sym_try] = ACTIONS(2398), + [anon_sym_catch] = ACTIONS(2398), + [anon_sym_return] = ACTIONS(2398), + [anon_sym_source] = ACTIONS(2398), + [anon_sym_source_DASHenv] = ACTIONS(2398), + [anon_sym_register] = ACTIONS(2398), + [anon_sym_hide] = ACTIONS(2398), + [anon_sym_hide_DASHenv] = ACTIONS(2398), + [anon_sym_overlay] = ACTIONS(2398), + [anon_sym_as] = ACTIONS(2398), + [anon_sym_PLUS2] = ACTIONS(2398), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2400), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2400), + [aux_sym__val_number_decimal_token1] = ACTIONS(2398), + [aux_sym__val_number_decimal_token2] = ACTIONS(2400), + [aux_sym__val_number_decimal_token3] = ACTIONS(2400), + [aux_sym__val_number_decimal_token4] = ACTIONS(2400), + [aux_sym__val_number_token1] = ACTIONS(2400), + [aux_sym__val_number_token2] = ACTIONS(2400), + [aux_sym__val_number_token3] = ACTIONS(2400), + [aux_sym__val_number_token4] = ACTIONS(2398), + [aux_sym__val_number_token5] = ACTIONS(2398), + [aux_sym__val_number_token6] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2400), + [sym__str_single_quotes] = ACTIONS(2400), + [sym__str_back_ticks] = ACTIONS(2400), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2400), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2400), + }, + [722] = { + [sym_comment] = STATE(722), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_alias] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_let_DASHenv] = ACTIONS(2410), + [anon_sym_mut] = ACTIONS(2410), + [anon_sym_const] = ACTIONS(2410), + [aux_sym_cmd_identifier_token1] = ACTIONS(2410), + [aux_sym_cmd_identifier_token2] = ACTIONS(2412), + [aux_sym_cmd_identifier_token3] = ACTIONS(2412), + [aux_sym_cmd_identifier_token4] = ACTIONS(2412), + [aux_sym_cmd_identifier_token5] = ACTIONS(2412), + [aux_sym_cmd_identifier_token6] = ACTIONS(2412), + [aux_sym_cmd_identifier_token7] = ACTIONS(2412), + [aux_sym_cmd_identifier_token8] = ACTIONS(2410), + [aux_sym_cmd_identifier_token9] = ACTIONS(2410), + [aux_sym_cmd_identifier_token10] = ACTIONS(2412), + [aux_sym_cmd_identifier_token11] = ACTIONS(2412), + [aux_sym_cmd_identifier_token12] = ACTIONS(2410), + [aux_sym_cmd_identifier_token13] = ACTIONS(2410), + [aux_sym_cmd_identifier_token14] = ACTIONS(2410), + [aux_sym_cmd_identifier_token15] = ACTIONS(2410), + [aux_sym_cmd_identifier_token16] = ACTIONS(2412), + [aux_sym_cmd_identifier_token17] = ACTIONS(2412), + [aux_sym_cmd_identifier_token18] = ACTIONS(2412), + [aux_sym_cmd_identifier_token19] = ACTIONS(2412), + [aux_sym_cmd_identifier_token20] = ACTIONS(2412), + [aux_sym_cmd_identifier_token21] = ACTIONS(2412), + [aux_sym_cmd_identifier_token22] = ACTIONS(2412), + [aux_sym_cmd_identifier_token23] = ACTIONS(2412), + [aux_sym_cmd_identifier_token24] = ACTIONS(2412), + [aux_sym_cmd_identifier_token25] = ACTIONS(2412), + [aux_sym_cmd_identifier_token26] = ACTIONS(2412), + [aux_sym_cmd_identifier_token27] = ACTIONS(2412), + [aux_sym_cmd_identifier_token28] = ACTIONS(2412), + [aux_sym_cmd_identifier_token29] = ACTIONS(2412), + [aux_sym_cmd_identifier_token30] = ACTIONS(2412), + [aux_sym_cmd_identifier_token31] = ACTIONS(2412), + [aux_sym_cmd_identifier_token32] = ACTIONS(2412), + [aux_sym_cmd_identifier_token33] = ACTIONS(2412), + [aux_sym_cmd_identifier_token34] = ACTIONS(2410), + [aux_sym_cmd_identifier_token35] = ACTIONS(2412), + [aux_sym_cmd_identifier_token36] = ACTIONS(2412), + [aux_sym_cmd_identifier_token37] = ACTIONS(2412), + [aux_sym_cmd_identifier_token38] = ACTIONS(2410), + [aux_sym_cmd_identifier_token39] = ACTIONS(2412), + [aux_sym_cmd_identifier_token40] = ACTIONS(2412), + [anon_sym_def] = ACTIONS(2410), + [anon_sym_export_DASHenv] = ACTIONS(2410), + [anon_sym_extern] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_use] = ACTIONS(2410), + [anon_sym_LPAREN] = ACTIONS(2412), + [anon_sym_DOLLAR] = ACTIONS(2412), + [anon_sym_error] = ACTIONS(2410), + [anon_sym_DASH2] = ACTIONS(2410), + [anon_sym_break] = ACTIONS(2410), + [anon_sym_continue] = ACTIONS(2410), + [anon_sym_for] = ACTIONS(2410), + [anon_sym_in2] = ACTIONS(2410), + [anon_sym_loop] = ACTIONS(2410), + [anon_sym_make] = ACTIONS(2410), + [anon_sym_while] = ACTIONS(2410), + [anon_sym_do] = ACTIONS(2410), + [anon_sym_if] = ACTIONS(2410), + [anon_sym_else] = ACTIONS(2410), + [anon_sym_match] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2412), + [anon_sym_try] = ACTIONS(2410), + [anon_sym_catch] = ACTIONS(2410), + [anon_sym_return] = ACTIONS(2410), + [anon_sym_source] = ACTIONS(2410), + [anon_sym_source_DASHenv] = ACTIONS(2410), + [anon_sym_register] = ACTIONS(2410), + [anon_sym_hide] = ACTIONS(2410), + [anon_sym_hide_DASHenv] = ACTIONS(2410), + [anon_sym_overlay] = ACTIONS(2410), + [anon_sym_as] = ACTIONS(2410), + [anon_sym_PLUS2] = ACTIONS(2410), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2412), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2412), + [aux_sym__val_number_decimal_token1] = ACTIONS(2410), + [aux_sym__val_number_decimal_token2] = ACTIONS(2412), + [aux_sym__val_number_decimal_token3] = ACTIONS(2412), + [aux_sym__val_number_decimal_token4] = ACTIONS(2412), + [aux_sym__val_number_token1] = ACTIONS(2412), + [aux_sym__val_number_token2] = ACTIONS(2412), + [aux_sym__val_number_token3] = ACTIONS(2412), + [aux_sym__val_number_token4] = ACTIONS(2410), + [aux_sym__val_number_token5] = ACTIONS(2410), + [aux_sym__val_number_token6] = ACTIONS(2410), + [anon_sym_DQUOTE] = ACTIONS(2412), + [sym__str_single_quotes] = ACTIONS(2412), + [sym__str_back_ticks] = ACTIONS(2412), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2412), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2412), + }, + [723] = { + [sym_comment] = STATE(723), + [anon_sym_export] = ACTIONS(2414), + [anon_sym_alias] = ACTIONS(2414), + [anon_sym_let] = ACTIONS(2414), + [anon_sym_let_DASHenv] = ACTIONS(2414), + [anon_sym_mut] = ACTIONS(2414), + [anon_sym_const] = ACTIONS(2414), + [aux_sym_cmd_identifier_token1] = ACTIONS(2414), + [aux_sym_cmd_identifier_token2] = ACTIONS(2416), + [aux_sym_cmd_identifier_token3] = ACTIONS(2416), + [aux_sym_cmd_identifier_token4] = ACTIONS(2416), + [aux_sym_cmd_identifier_token5] = ACTIONS(2416), + [aux_sym_cmd_identifier_token6] = ACTIONS(2416), + [aux_sym_cmd_identifier_token7] = ACTIONS(2416), + [aux_sym_cmd_identifier_token8] = ACTIONS(2414), + [aux_sym_cmd_identifier_token9] = ACTIONS(2414), + [aux_sym_cmd_identifier_token10] = ACTIONS(2416), + [aux_sym_cmd_identifier_token11] = ACTIONS(2416), + [aux_sym_cmd_identifier_token12] = ACTIONS(2414), + [aux_sym_cmd_identifier_token13] = ACTIONS(2414), + [aux_sym_cmd_identifier_token14] = ACTIONS(2414), + [aux_sym_cmd_identifier_token15] = ACTIONS(2414), + [aux_sym_cmd_identifier_token16] = ACTIONS(2416), + [aux_sym_cmd_identifier_token17] = ACTIONS(2416), + [aux_sym_cmd_identifier_token18] = ACTIONS(2416), + [aux_sym_cmd_identifier_token19] = ACTIONS(2416), + [aux_sym_cmd_identifier_token20] = ACTIONS(2416), + [aux_sym_cmd_identifier_token21] = ACTIONS(2416), + [aux_sym_cmd_identifier_token22] = ACTIONS(2416), + [aux_sym_cmd_identifier_token23] = ACTIONS(2416), + [aux_sym_cmd_identifier_token24] = ACTIONS(2416), + [aux_sym_cmd_identifier_token25] = ACTIONS(2416), + [aux_sym_cmd_identifier_token26] = ACTIONS(2416), + [aux_sym_cmd_identifier_token27] = ACTIONS(2416), + [aux_sym_cmd_identifier_token28] = ACTIONS(2416), + [aux_sym_cmd_identifier_token29] = ACTIONS(2416), + [aux_sym_cmd_identifier_token30] = ACTIONS(2416), + [aux_sym_cmd_identifier_token31] = ACTIONS(2416), + [aux_sym_cmd_identifier_token32] = ACTIONS(2416), + [aux_sym_cmd_identifier_token33] = ACTIONS(2416), + [aux_sym_cmd_identifier_token34] = ACTIONS(2414), + [aux_sym_cmd_identifier_token35] = ACTIONS(2416), + [aux_sym_cmd_identifier_token36] = ACTIONS(2416), + [aux_sym_cmd_identifier_token37] = ACTIONS(2416), + [aux_sym_cmd_identifier_token38] = ACTIONS(2414), + [aux_sym_cmd_identifier_token39] = ACTIONS(2416), + [aux_sym_cmd_identifier_token40] = ACTIONS(2416), + [anon_sym_def] = ACTIONS(2414), + [anon_sym_export_DASHenv] = ACTIONS(2414), + [anon_sym_extern] = ACTIONS(2414), + [anon_sym_module] = ACTIONS(2414), + [anon_sym_use] = ACTIONS(2414), + [anon_sym_LPAREN] = ACTIONS(2416), + [anon_sym_DOLLAR] = ACTIONS(2416), + [anon_sym_error] = ACTIONS(2414), + [anon_sym_DASH2] = ACTIONS(2414), + [anon_sym_break] = ACTIONS(2414), + [anon_sym_continue] = ACTIONS(2414), + [anon_sym_for] = ACTIONS(2414), + [anon_sym_in2] = ACTIONS(2414), + [anon_sym_loop] = ACTIONS(2414), + [anon_sym_make] = ACTIONS(2414), + [anon_sym_while] = ACTIONS(2414), + [anon_sym_do] = ACTIONS(2414), + [anon_sym_if] = ACTIONS(2414), + [anon_sym_else] = ACTIONS(2414), + [anon_sym_match] = ACTIONS(2414), + [anon_sym_RBRACE] = ACTIONS(2416), + [anon_sym_try] = ACTIONS(2414), + [anon_sym_catch] = ACTIONS(2414), + [anon_sym_return] = ACTIONS(2414), + [anon_sym_source] = ACTIONS(2414), + [anon_sym_source_DASHenv] = ACTIONS(2414), + [anon_sym_register] = ACTIONS(2414), + [anon_sym_hide] = ACTIONS(2414), + [anon_sym_hide_DASHenv] = ACTIONS(2414), + [anon_sym_overlay] = ACTIONS(2414), + [anon_sym_as] = ACTIONS(2414), + [anon_sym_PLUS2] = ACTIONS(2414), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2416), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2416), + [aux_sym__val_number_decimal_token1] = ACTIONS(2414), + [aux_sym__val_number_decimal_token2] = ACTIONS(2416), + [aux_sym__val_number_decimal_token3] = ACTIONS(2416), + [aux_sym__val_number_decimal_token4] = ACTIONS(2416), + [aux_sym__val_number_token1] = ACTIONS(2416), + [aux_sym__val_number_token2] = ACTIONS(2416), + [aux_sym__val_number_token3] = ACTIONS(2416), + [aux_sym__val_number_token4] = ACTIONS(2414), + [aux_sym__val_number_token5] = ACTIONS(2414), + [aux_sym__val_number_token6] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym__str_single_quotes] = ACTIONS(2416), + [sym__str_back_ticks] = ACTIONS(2416), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2416), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2416), + }, + [724] = { + [sym_comment] = STATE(724), + [anon_sym_export] = ACTIONS(2418), + [anon_sym_alias] = ACTIONS(2418), + [anon_sym_let] = ACTIONS(2418), + [anon_sym_let_DASHenv] = ACTIONS(2418), + [anon_sym_mut] = ACTIONS(2418), + [anon_sym_const] = ACTIONS(2418), + [aux_sym_cmd_identifier_token1] = ACTIONS(2418), + [aux_sym_cmd_identifier_token2] = ACTIONS(2420), + [aux_sym_cmd_identifier_token3] = ACTIONS(2420), + [aux_sym_cmd_identifier_token4] = ACTIONS(2420), + [aux_sym_cmd_identifier_token5] = ACTIONS(2420), + [aux_sym_cmd_identifier_token6] = ACTIONS(2420), + [aux_sym_cmd_identifier_token7] = ACTIONS(2420), + [aux_sym_cmd_identifier_token8] = ACTIONS(2418), + [aux_sym_cmd_identifier_token9] = ACTIONS(2418), + [aux_sym_cmd_identifier_token10] = ACTIONS(2420), + [aux_sym_cmd_identifier_token11] = ACTIONS(2420), + [aux_sym_cmd_identifier_token12] = ACTIONS(2418), + [aux_sym_cmd_identifier_token13] = ACTIONS(2418), + [aux_sym_cmd_identifier_token14] = ACTIONS(2418), + [aux_sym_cmd_identifier_token15] = ACTIONS(2418), + [aux_sym_cmd_identifier_token16] = ACTIONS(2420), + [aux_sym_cmd_identifier_token17] = ACTIONS(2420), + [aux_sym_cmd_identifier_token18] = ACTIONS(2420), + [aux_sym_cmd_identifier_token19] = ACTIONS(2420), + [aux_sym_cmd_identifier_token20] = ACTIONS(2420), + [aux_sym_cmd_identifier_token21] = ACTIONS(2420), + [aux_sym_cmd_identifier_token22] = ACTIONS(2420), + [aux_sym_cmd_identifier_token23] = ACTIONS(2420), + [aux_sym_cmd_identifier_token24] = ACTIONS(2420), + [aux_sym_cmd_identifier_token25] = ACTIONS(2420), + [aux_sym_cmd_identifier_token26] = ACTIONS(2420), + [aux_sym_cmd_identifier_token27] = ACTIONS(2420), + [aux_sym_cmd_identifier_token28] = ACTIONS(2420), + [aux_sym_cmd_identifier_token29] = ACTIONS(2420), + [aux_sym_cmd_identifier_token30] = ACTIONS(2420), + [aux_sym_cmd_identifier_token31] = ACTIONS(2420), + [aux_sym_cmd_identifier_token32] = ACTIONS(2420), + [aux_sym_cmd_identifier_token33] = ACTIONS(2420), + [aux_sym_cmd_identifier_token34] = ACTIONS(2418), + [aux_sym_cmd_identifier_token35] = ACTIONS(2420), + [aux_sym_cmd_identifier_token36] = ACTIONS(2420), + [aux_sym_cmd_identifier_token37] = ACTIONS(2420), + [aux_sym_cmd_identifier_token38] = ACTIONS(2418), + [aux_sym_cmd_identifier_token39] = ACTIONS(2420), + [aux_sym_cmd_identifier_token40] = ACTIONS(2420), + [anon_sym_def] = ACTIONS(2418), + [anon_sym_export_DASHenv] = ACTIONS(2418), + [anon_sym_extern] = ACTIONS(2418), + [anon_sym_module] = ACTIONS(2418), + [anon_sym_use] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2420), + [anon_sym_DOLLAR] = ACTIONS(2420), + [anon_sym_error] = ACTIONS(2418), + [anon_sym_DASH2] = ACTIONS(2418), + [anon_sym_break] = ACTIONS(2418), + [anon_sym_continue] = ACTIONS(2418), + [anon_sym_for] = ACTIONS(2418), + [anon_sym_in2] = ACTIONS(2418), + [anon_sym_loop] = ACTIONS(2418), + [anon_sym_make] = ACTIONS(2418), + [anon_sym_while] = ACTIONS(2418), + [anon_sym_do] = ACTIONS(2418), + [anon_sym_if] = ACTIONS(2418), + [anon_sym_else] = ACTIONS(2418), + [anon_sym_match] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2420), + [anon_sym_try] = ACTIONS(2418), + [anon_sym_catch] = ACTIONS(2418), + [anon_sym_return] = ACTIONS(2418), + [anon_sym_source] = ACTIONS(2418), + [anon_sym_source_DASHenv] = ACTIONS(2418), + [anon_sym_register] = ACTIONS(2418), + [anon_sym_hide] = ACTIONS(2418), + [anon_sym_hide_DASHenv] = ACTIONS(2418), + [anon_sym_overlay] = ACTIONS(2418), + [anon_sym_as] = ACTIONS(2418), + [anon_sym_PLUS2] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2420), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2420), + [aux_sym__val_number_decimal_token1] = ACTIONS(2418), + [aux_sym__val_number_decimal_token2] = ACTIONS(2420), + [aux_sym__val_number_decimal_token3] = ACTIONS(2420), + [aux_sym__val_number_decimal_token4] = ACTIONS(2420), + [aux_sym__val_number_token1] = ACTIONS(2420), + [aux_sym__val_number_token2] = ACTIONS(2420), + [aux_sym__val_number_token3] = ACTIONS(2420), + [aux_sym__val_number_token4] = ACTIONS(2418), + [aux_sym__val_number_token5] = ACTIONS(2418), + [aux_sym__val_number_token6] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(2420), + [sym__str_single_quotes] = ACTIONS(2420), + [sym__str_back_ticks] = ACTIONS(2420), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2420), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2420), + }, + [725] = { + [sym_comment] = STATE(725), + [anon_sym_export] = ACTIONS(2430), + [anon_sym_alias] = ACTIONS(2430), + [anon_sym_let] = ACTIONS(2430), + [anon_sym_let_DASHenv] = ACTIONS(2430), + [anon_sym_mut] = ACTIONS(2430), + [anon_sym_const] = ACTIONS(2430), + [aux_sym_cmd_identifier_token1] = ACTIONS(2430), + [aux_sym_cmd_identifier_token2] = ACTIONS(2432), + [aux_sym_cmd_identifier_token3] = ACTIONS(2432), + [aux_sym_cmd_identifier_token4] = ACTIONS(2432), + [aux_sym_cmd_identifier_token5] = ACTIONS(2432), + [aux_sym_cmd_identifier_token6] = ACTIONS(2432), + [aux_sym_cmd_identifier_token7] = ACTIONS(2432), + [aux_sym_cmd_identifier_token8] = ACTIONS(2430), + [aux_sym_cmd_identifier_token9] = ACTIONS(2430), + [aux_sym_cmd_identifier_token10] = ACTIONS(2432), + [aux_sym_cmd_identifier_token11] = ACTIONS(2432), + [aux_sym_cmd_identifier_token12] = ACTIONS(2430), + [aux_sym_cmd_identifier_token13] = ACTIONS(2430), + [aux_sym_cmd_identifier_token14] = ACTIONS(2430), + [aux_sym_cmd_identifier_token15] = ACTIONS(2430), + [aux_sym_cmd_identifier_token16] = ACTIONS(2432), + [aux_sym_cmd_identifier_token17] = ACTIONS(2432), + [aux_sym_cmd_identifier_token18] = ACTIONS(2432), + [aux_sym_cmd_identifier_token19] = ACTIONS(2432), + [aux_sym_cmd_identifier_token20] = ACTIONS(2432), + [aux_sym_cmd_identifier_token21] = ACTIONS(2432), + [aux_sym_cmd_identifier_token22] = ACTIONS(2432), + [aux_sym_cmd_identifier_token23] = ACTIONS(2432), + [aux_sym_cmd_identifier_token24] = ACTIONS(2432), + [aux_sym_cmd_identifier_token25] = ACTIONS(2432), + [aux_sym_cmd_identifier_token26] = ACTIONS(2432), + [aux_sym_cmd_identifier_token27] = ACTIONS(2432), + [aux_sym_cmd_identifier_token28] = ACTIONS(2432), + [aux_sym_cmd_identifier_token29] = ACTIONS(2432), + [aux_sym_cmd_identifier_token30] = ACTIONS(2432), + [aux_sym_cmd_identifier_token31] = ACTIONS(2432), + [aux_sym_cmd_identifier_token32] = ACTIONS(2432), + [aux_sym_cmd_identifier_token33] = ACTIONS(2432), + [aux_sym_cmd_identifier_token34] = ACTIONS(2430), + [aux_sym_cmd_identifier_token35] = ACTIONS(2432), + [aux_sym_cmd_identifier_token36] = ACTIONS(2432), + [aux_sym_cmd_identifier_token37] = ACTIONS(2432), + [aux_sym_cmd_identifier_token38] = ACTIONS(2430), + [aux_sym_cmd_identifier_token39] = ACTIONS(2432), + [aux_sym_cmd_identifier_token40] = ACTIONS(2432), + [anon_sym_def] = ACTIONS(2430), + [anon_sym_export_DASHenv] = ACTIONS(2430), + [anon_sym_extern] = ACTIONS(2430), + [anon_sym_module] = ACTIONS(2430), + [anon_sym_use] = ACTIONS(2430), + [anon_sym_LPAREN] = ACTIONS(2432), + [anon_sym_DOLLAR] = ACTIONS(2432), + [anon_sym_error] = ACTIONS(2430), + [anon_sym_DASH2] = ACTIONS(2430), + [anon_sym_break] = ACTIONS(2430), + [anon_sym_continue] = ACTIONS(2430), + [anon_sym_for] = ACTIONS(2430), + [anon_sym_in2] = ACTIONS(2430), + [anon_sym_loop] = ACTIONS(2430), + [anon_sym_make] = ACTIONS(2430), + [anon_sym_while] = ACTIONS(2430), + [anon_sym_do] = ACTIONS(2430), + [anon_sym_if] = ACTIONS(2430), + [anon_sym_else] = ACTIONS(2430), + [anon_sym_match] = ACTIONS(2430), + [anon_sym_RBRACE] = ACTIONS(2432), + [anon_sym_try] = ACTIONS(2430), + [anon_sym_catch] = ACTIONS(2430), + [anon_sym_return] = ACTIONS(2430), + [anon_sym_source] = ACTIONS(2430), + [anon_sym_source_DASHenv] = ACTIONS(2430), + [anon_sym_register] = ACTIONS(2430), + [anon_sym_hide] = ACTIONS(2430), + [anon_sym_hide_DASHenv] = ACTIONS(2430), + [anon_sym_overlay] = ACTIONS(2430), + [anon_sym_as] = ACTIONS(2430), + [anon_sym_PLUS2] = ACTIONS(2430), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2432), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2432), + [aux_sym__val_number_decimal_token1] = ACTIONS(2430), + [aux_sym__val_number_decimal_token2] = ACTIONS(2432), + [aux_sym__val_number_decimal_token3] = ACTIONS(2432), + [aux_sym__val_number_decimal_token4] = ACTIONS(2432), + [aux_sym__val_number_token1] = ACTIONS(2432), + [aux_sym__val_number_token2] = ACTIONS(2432), + [aux_sym__val_number_token3] = ACTIONS(2432), + [aux_sym__val_number_token4] = ACTIONS(2430), + [aux_sym__val_number_token5] = ACTIONS(2430), + [aux_sym__val_number_token6] = ACTIONS(2430), + [anon_sym_DQUOTE] = ACTIONS(2432), + [sym__str_single_quotes] = ACTIONS(2432), + [sym__str_back_ticks] = ACTIONS(2432), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2432), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2432), + }, + [726] = { + [sym_comment] = STATE(726), + [anon_sym_export] = ACTIONS(1847), + [anon_sym_alias] = ACTIONS(1847), + [anon_sym_let] = ACTIONS(1847), + [anon_sym_let_DASHenv] = ACTIONS(1847), + [anon_sym_mut] = ACTIONS(1847), + [anon_sym_const] = ACTIONS(1847), + [aux_sym_cmd_identifier_token1] = ACTIONS(1847), + [aux_sym_cmd_identifier_token2] = ACTIONS(1851), + [aux_sym_cmd_identifier_token3] = ACTIONS(1851), + [aux_sym_cmd_identifier_token4] = ACTIONS(1851), + [aux_sym_cmd_identifier_token5] = ACTIONS(1851), + [aux_sym_cmd_identifier_token6] = ACTIONS(1851), + [aux_sym_cmd_identifier_token7] = ACTIONS(1851), + [aux_sym_cmd_identifier_token8] = ACTIONS(1847), + [aux_sym_cmd_identifier_token9] = ACTIONS(1847), + [aux_sym_cmd_identifier_token10] = ACTIONS(1851), + [aux_sym_cmd_identifier_token11] = ACTIONS(1851), + [aux_sym_cmd_identifier_token12] = ACTIONS(1847), + [aux_sym_cmd_identifier_token13] = ACTIONS(1847), + [aux_sym_cmd_identifier_token14] = ACTIONS(1847), + [aux_sym_cmd_identifier_token15] = ACTIONS(1847), + [aux_sym_cmd_identifier_token16] = ACTIONS(1851), + [aux_sym_cmd_identifier_token17] = ACTIONS(1851), + [aux_sym_cmd_identifier_token18] = ACTIONS(1851), + [aux_sym_cmd_identifier_token19] = ACTIONS(1851), + [aux_sym_cmd_identifier_token20] = ACTIONS(1851), + [aux_sym_cmd_identifier_token21] = ACTIONS(1851), + [aux_sym_cmd_identifier_token22] = ACTIONS(1851), + [aux_sym_cmd_identifier_token23] = ACTIONS(1851), + [aux_sym_cmd_identifier_token24] = ACTIONS(1851), + [aux_sym_cmd_identifier_token25] = ACTIONS(1851), + [aux_sym_cmd_identifier_token26] = ACTIONS(1851), + [aux_sym_cmd_identifier_token27] = ACTIONS(1851), + [aux_sym_cmd_identifier_token28] = ACTIONS(1851), + [aux_sym_cmd_identifier_token29] = ACTIONS(1851), + [aux_sym_cmd_identifier_token30] = ACTIONS(1851), + [aux_sym_cmd_identifier_token31] = ACTIONS(1851), + [aux_sym_cmd_identifier_token32] = ACTIONS(1851), + [aux_sym_cmd_identifier_token33] = ACTIONS(1851), + [aux_sym_cmd_identifier_token34] = ACTIONS(1847), + [aux_sym_cmd_identifier_token35] = ACTIONS(1851), + [aux_sym_cmd_identifier_token36] = ACTIONS(1851), + [aux_sym_cmd_identifier_token37] = ACTIONS(1851), + [aux_sym_cmd_identifier_token38] = ACTIONS(1847), + [aux_sym_cmd_identifier_token39] = ACTIONS(1851), + [aux_sym_cmd_identifier_token40] = ACTIONS(1851), + [anon_sym_def] = ACTIONS(1847), + [anon_sym_export_DASHenv] = ACTIONS(1847), + [anon_sym_extern] = ACTIONS(1847), + [anon_sym_module] = ACTIONS(1847), + [anon_sym_use] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1851), + [anon_sym_DOLLAR] = ACTIONS(1851), + [anon_sym_error] = ACTIONS(1847), + [anon_sym_DASH2] = ACTIONS(1847), + [anon_sym_break] = ACTIONS(1847), + [anon_sym_continue] = ACTIONS(1847), + [anon_sym_for] = ACTIONS(1847), + [anon_sym_in2] = ACTIONS(1847), + [anon_sym_loop] = ACTIONS(1847), + [anon_sym_make] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1847), + [anon_sym_do] = ACTIONS(1847), + [anon_sym_if] = ACTIONS(1847), + [anon_sym_else] = ACTIONS(1847), + [anon_sym_match] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(1851), + [anon_sym_try] = ACTIONS(1847), + [anon_sym_catch] = ACTIONS(1847), + [anon_sym_return] = ACTIONS(1847), + [anon_sym_source] = ACTIONS(1847), + [anon_sym_source_DASHenv] = ACTIONS(1847), + [anon_sym_register] = ACTIONS(1847), + [anon_sym_hide] = ACTIONS(1847), + [anon_sym_hide_DASHenv] = ACTIONS(1847), + [anon_sym_overlay] = ACTIONS(1847), + [anon_sym_as] = ACTIONS(1847), + [anon_sym_PLUS2] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1851), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1851), + [aux_sym__val_number_decimal_token1] = ACTIONS(1847), + [aux_sym__val_number_decimal_token2] = ACTIONS(1851), + [aux_sym__val_number_decimal_token3] = ACTIONS(1851), + [aux_sym__val_number_decimal_token4] = ACTIONS(1851), + [aux_sym__val_number_token1] = ACTIONS(1851), + [aux_sym__val_number_token2] = ACTIONS(1851), + [aux_sym__val_number_token3] = ACTIONS(1851), + [aux_sym__val_number_token4] = ACTIONS(1847), + [aux_sym__val_number_token5] = ACTIONS(1847), + [aux_sym__val_number_token6] = ACTIONS(1847), + [anon_sym_DQUOTE] = ACTIONS(1851), + [sym__str_single_quotes] = ACTIONS(1851), + [sym__str_back_ticks] = ACTIONS(1851), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1851), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1851), + }, + [727] = { + [sym_comment] = STATE(727), + [anon_sym_export] = ACTIONS(2456), + [anon_sym_alias] = ACTIONS(2456), + [anon_sym_let] = ACTIONS(2456), + [anon_sym_let_DASHenv] = ACTIONS(2456), + [anon_sym_mut] = ACTIONS(2456), + [anon_sym_const] = ACTIONS(2456), + [aux_sym_cmd_identifier_token1] = ACTIONS(2456), + [aux_sym_cmd_identifier_token2] = ACTIONS(2458), + [aux_sym_cmd_identifier_token3] = ACTIONS(2458), + [aux_sym_cmd_identifier_token4] = ACTIONS(2458), + [aux_sym_cmd_identifier_token5] = ACTIONS(2458), + [aux_sym_cmd_identifier_token6] = ACTIONS(2458), + [aux_sym_cmd_identifier_token7] = ACTIONS(2458), + [aux_sym_cmd_identifier_token8] = ACTIONS(2456), + [aux_sym_cmd_identifier_token9] = ACTIONS(2456), + [aux_sym_cmd_identifier_token10] = ACTIONS(2458), + [aux_sym_cmd_identifier_token11] = ACTIONS(2458), + [aux_sym_cmd_identifier_token12] = ACTIONS(2456), + [aux_sym_cmd_identifier_token13] = ACTIONS(2456), + [aux_sym_cmd_identifier_token14] = ACTIONS(2456), + [aux_sym_cmd_identifier_token15] = ACTIONS(2456), + [aux_sym_cmd_identifier_token16] = ACTIONS(2458), + [aux_sym_cmd_identifier_token17] = ACTIONS(2458), + [aux_sym_cmd_identifier_token18] = ACTIONS(2458), + [aux_sym_cmd_identifier_token19] = ACTIONS(2458), + [aux_sym_cmd_identifier_token20] = ACTIONS(2458), + [aux_sym_cmd_identifier_token21] = ACTIONS(2458), + [aux_sym_cmd_identifier_token22] = ACTIONS(2458), + [aux_sym_cmd_identifier_token23] = ACTIONS(2458), + [aux_sym_cmd_identifier_token24] = ACTIONS(2458), + [aux_sym_cmd_identifier_token25] = ACTIONS(2458), + [aux_sym_cmd_identifier_token26] = ACTIONS(2458), + [aux_sym_cmd_identifier_token27] = ACTIONS(2458), + [aux_sym_cmd_identifier_token28] = ACTIONS(2458), + [aux_sym_cmd_identifier_token29] = ACTIONS(2458), + [aux_sym_cmd_identifier_token30] = ACTIONS(2458), + [aux_sym_cmd_identifier_token31] = ACTIONS(2458), + [aux_sym_cmd_identifier_token32] = ACTIONS(2458), + [aux_sym_cmd_identifier_token33] = ACTIONS(2458), + [aux_sym_cmd_identifier_token34] = ACTIONS(2456), + [aux_sym_cmd_identifier_token35] = ACTIONS(2458), + [aux_sym_cmd_identifier_token36] = ACTIONS(2458), + [aux_sym_cmd_identifier_token37] = ACTIONS(2458), + [aux_sym_cmd_identifier_token38] = ACTIONS(2456), + [aux_sym_cmd_identifier_token39] = ACTIONS(2458), + [aux_sym_cmd_identifier_token40] = ACTIONS(2458), + [anon_sym_def] = ACTIONS(2456), + [anon_sym_export_DASHenv] = ACTIONS(2456), + [anon_sym_extern] = ACTIONS(2456), + [anon_sym_module] = ACTIONS(2456), + [anon_sym_use] = ACTIONS(2456), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_DOLLAR] = ACTIONS(2458), + [anon_sym_error] = ACTIONS(2456), + [anon_sym_DASH2] = ACTIONS(2456), + [anon_sym_break] = ACTIONS(2456), + [anon_sym_continue] = ACTIONS(2456), + [anon_sym_for] = ACTIONS(2456), + [anon_sym_in2] = ACTIONS(2456), + [anon_sym_loop] = ACTIONS(2456), + [anon_sym_make] = ACTIONS(2456), + [anon_sym_while] = ACTIONS(2456), + [anon_sym_do] = ACTIONS(2456), + [anon_sym_if] = ACTIONS(2456), + [anon_sym_else] = ACTIONS(2456), + [anon_sym_match] = ACTIONS(2456), + [anon_sym_RBRACE] = ACTIONS(2458), + [anon_sym_try] = ACTIONS(2456), + [anon_sym_catch] = ACTIONS(2456), + [anon_sym_return] = ACTIONS(2456), + [anon_sym_source] = ACTIONS(2456), + [anon_sym_source_DASHenv] = ACTIONS(2456), + [anon_sym_register] = ACTIONS(2456), + [anon_sym_hide] = ACTIONS(2456), + [anon_sym_hide_DASHenv] = ACTIONS(2456), + [anon_sym_overlay] = ACTIONS(2456), + [anon_sym_as] = ACTIONS(2456), + [anon_sym_PLUS2] = ACTIONS(2456), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2458), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2458), + [aux_sym__val_number_decimal_token1] = ACTIONS(2456), + [aux_sym__val_number_decimal_token2] = ACTIONS(2458), + [aux_sym__val_number_decimal_token3] = ACTIONS(2458), + [aux_sym__val_number_decimal_token4] = ACTIONS(2458), + [aux_sym__val_number_token1] = ACTIONS(2458), + [aux_sym__val_number_token2] = ACTIONS(2458), + [aux_sym__val_number_token3] = ACTIONS(2458), + [aux_sym__val_number_token4] = ACTIONS(2456), + [aux_sym__val_number_token5] = ACTIONS(2456), + [aux_sym__val_number_token6] = ACTIONS(2456), + [anon_sym_DQUOTE] = ACTIONS(2458), + [sym__str_single_quotes] = ACTIONS(2458), + [sym__str_back_ticks] = ACTIONS(2458), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2458), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2458), + }, + [728] = { + [sym_comment] = STATE(728), [anon_sym_export] = ACTIONS(2464), [anon_sym_alias] = ACTIONS(2464), [anon_sym_let] = ACTIONS(2464), @@ -151870,2582 +153080,899 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(2466), }, - [720] = { - [sym_comment] = STATE(720), - [anon_sym_export] = ACTIONS(2468), - [anon_sym_alias] = ACTIONS(2468), - [anon_sym_let] = ACTIONS(2468), - [anon_sym_let_DASHenv] = ACTIONS(2468), - [anon_sym_mut] = ACTIONS(2468), - [anon_sym_const] = ACTIONS(2468), - [aux_sym_cmd_identifier_token1] = ACTIONS(2468), - [aux_sym_cmd_identifier_token2] = ACTIONS(2470), - [aux_sym_cmd_identifier_token3] = ACTIONS(2470), - [aux_sym_cmd_identifier_token4] = ACTIONS(2470), - [aux_sym_cmd_identifier_token5] = ACTIONS(2470), - [aux_sym_cmd_identifier_token6] = ACTIONS(2470), - [aux_sym_cmd_identifier_token7] = ACTIONS(2470), - [aux_sym_cmd_identifier_token8] = ACTIONS(2468), - [aux_sym_cmd_identifier_token9] = ACTIONS(2468), - [aux_sym_cmd_identifier_token10] = ACTIONS(2470), - [aux_sym_cmd_identifier_token11] = ACTIONS(2470), - [aux_sym_cmd_identifier_token12] = ACTIONS(2468), - [aux_sym_cmd_identifier_token13] = ACTIONS(2468), - [aux_sym_cmd_identifier_token14] = ACTIONS(2468), - [aux_sym_cmd_identifier_token15] = ACTIONS(2468), - [aux_sym_cmd_identifier_token16] = ACTIONS(2470), - [aux_sym_cmd_identifier_token17] = ACTIONS(2470), - [aux_sym_cmd_identifier_token18] = ACTIONS(2470), - [aux_sym_cmd_identifier_token19] = ACTIONS(2470), - [aux_sym_cmd_identifier_token20] = ACTIONS(2470), - [aux_sym_cmd_identifier_token21] = ACTIONS(2470), - [aux_sym_cmd_identifier_token22] = ACTIONS(2470), - [aux_sym_cmd_identifier_token23] = ACTIONS(2470), - [aux_sym_cmd_identifier_token24] = ACTIONS(2470), - [aux_sym_cmd_identifier_token25] = ACTIONS(2470), - [aux_sym_cmd_identifier_token26] = ACTIONS(2470), - [aux_sym_cmd_identifier_token27] = ACTIONS(2470), - [aux_sym_cmd_identifier_token28] = ACTIONS(2470), - [aux_sym_cmd_identifier_token29] = ACTIONS(2470), - [aux_sym_cmd_identifier_token30] = ACTIONS(2470), - [aux_sym_cmd_identifier_token31] = ACTIONS(2470), - [aux_sym_cmd_identifier_token32] = ACTIONS(2470), - [aux_sym_cmd_identifier_token33] = ACTIONS(2470), - [aux_sym_cmd_identifier_token34] = ACTIONS(2468), - [aux_sym_cmd_identifier_token35] = ACTIONS(2470), - [aux_sym_cmd_identifier_token36] = ACTIONS(2470), - [aux_sym_cmd_identifier_token37] = ACTIONS(2470), - [aux_sym_cmd_identifier_token38] = ACTIONS(2468), - [aux_sym_cmd_identifier_token39] = ACTIONS(2470), - [aux_sym_cmd_identifier_token40] = ACTIONS(2470), - [anon_sym_def] = ACTIONS(2468), - [anon_sym_export_DASHenv] = ACTIONS(2468), - [anon_sym_extern] = ACTIONS(2468), - [anon_sym_module] = ACTIONS(2468), - [anon_sym_use] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(2470), - [anon_sym_DOLLAR] = ACTIONS(2470), - [anon_sym_error] = ACTIONS(2468), - [anon_sym_DASH2] = ACTIONS(2468), - [anon_sym_break] = ACTIONS(2468), - [anon_sym_continue] = ACTIONS(2468), - [anon_sym_for] = ACTIONS(2468), - [anon_sym_in2] = ACTIONS(2468), - [anon_sym_loop] = ACTIONS(2468), - [anon_sym_make] = ACTIONS(2468), - [anon_sym_while] = ACTIONS(2468), - [anon_sym_do] = ACTIONS(2468), - [anon_sym_if] = ACTIONS(2468), - [anon_sym_else] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2468), - [anon_sym_RBRACE] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2468), - [anon_sym_catch] = ACTIONS(2468), - [anon_sym_return] = ACTIONS(2468), - [anon_sym_source] = ACTIONS(2468), - [anon_sym_source_DASHenv] = ACTIONS(2468), - [anon_sym_register] = ACTIONS(2468), - [anon_sym_hide] = ACTIONS(2468), - [anon_sym_hide_DASHenv] = ACTIONS(2468), - [anon_sym_overlay] = ACTIONS(2468), - [anon_sym_as] = ACTIONS(2468), - [anon_sym_PLUS2] = ACTIONS(2468), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2470), - [aux_sym__val_number_decimal_token1] = ACTIONS(2468), - [aux_sym__val_number_decimal_token2] = ACTIONS(2470), - [aux_sym__val_number_decimal_token3] = ACTIONS(2470), - [aux_sym__val_number_decimal_token4] = ACTIONS(2470), - [aux_sym__val_number_token1] = ACTIONS(2470), - [aux_sym__val_number_token2] = ACTIONS(2470), - [aux_sym__val_number_token3] = ACTIONS(2470), - [aux_sym__val_number_token4] = ACTIONS(2468), - [aux_sym__val_number_token5] = ACTIONS(2468), - [aux_sym__val_number_token6] = ACTIONS(2468), - [anon_sym_DQUOTE] = ACTIONS(2470), - [sym__str_single_quotes] = ACTIONS(2470), - [sym__str_back_ticks] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2470), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2470), - }, - [721] = { - [sym_comment] = STATE(721), - [anon_sym_export] = ACTIONS(2421), - [anon_sym_alias] = ACTIONS(2421), - [anon_sym_let] = ACTIONS(2421), - [anon_sym_let_DASHenv] = ACTIONS(2421), - [anon_sym_mut] = ACTIONS(2421), - [anon_sym_const] = ACTIONS(2421), - [aux_sym_cmd_identifier_token1] = ACTIONS(2421), - [aux_sym_cmd_identifier_token2] = ACTIONS(2423), - [aux_sym_cmd_identifier_token3] = ACTIONS(2423), - [aux_sym_cmd_identifier_token4] = ACTIONS(2423), - [aux_sym_cmd_identifier_token5] = ACTIONS(2423), - [aux_sym_cmd_identifier_token6] = ACTIONS(2423), - [aux_sym_cmd_identifier_token7] = ACTIONS(2423), - [aux_sym_cmd_identifier_token8] = ACTIONS(2421), - [aux_sym_cmd_identifier_token9] = ACTIONS(2421), - [aux_sym_cmd_identifier_token10] = ACTIONS(2423), - [aux_sym_cmd_identifier_token11] = ACTIONS(2423), - [aux_sym_cmd_identifier_token12] = ACTIONS(2421), - [aux_sym_cmd_identifier_token13] = ACTIONS(2421), - [aux_sym_cmd_identifier_token14] = ACTIONS(2421), - [aux_sym_cmd_identifier_token15] = ACTIONS(2421), - [aux_sym_cmd_identifier_token16] = ACTIONS(2423), - [aux_sym_cmd_identifier_token17] = ACTIONS(2423), - [aux_sym_cmd_identifier_token18] = ACTIONS(2423), - [aux_sym_cmd_identifier_token19] = ACTIONS(2423), - [aux_sym_cmd_identifier_token20] = ACTIONS(2423), - [aux_sym_cmd_identifier_token21] = ACTIONS(2423), - [aux_sym_cmd_identifier_token22] = ACTIONS(2423), - [aux_sym_cmd_identifier_token23] = ACTIONS(2423), - [aux_sym_cmd_identifier_token24] = ACTIONS(2423), - [aux_sym_cmd_identifier_token25] = ACTIONS(2423), - [aux_sym_cmd_identifier_token26] = ACTIONS(2423), - [aux_sym_cmd_identifier_token27] = ACTIONS(2423), - [aux_sym_cmd_identifier_token28] = ACTIONS(2423), - [aux_sym_cmd_identifier_token29] = ACTIONS(2423), - [aux_sym_cmd_identifier_token30] = ACTIONS(2423), - [aux_sym_cmd_identifier_token31] = ACTIONS(2423), - [aux_sym_cmd_identifier_token32] = ACTIONS(2423), - [aux_sym_cmd_identifier_token33] = ACTIONS(2423), - [aux_sym_cmd_identifier_token34] = ACTIONS(2421), - [aux_sym_cmd_identifier_token35] = ACTIONS(2423), - [aux_sym_cmd_identifier_token36] = ACTIONS(2423), - [aux_sym_cmd_identifier_token37] = ACTIONS(2423), - [aux_sym_cmd_identifier_token38] = ACTIONS(2421), - [aux_sym_cmd_identifier_token39] = ACTIONS(2423), - [aux_sym_cmd_identifier_token40] = ACTIONS(2423), - [anon_sym_def] = ACTIONS(2421), - [anon_sym_export_DASHenv] = ACTIONS(2421), - [anon_sym_extern] = ACTIONS(2421), - [anon_sym_module] = ACTIONS(2421), - [anon_sym_use] = ACTIONS(2421), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_DOLLAR] = ACTIONS(2423), - [anon_sym_error] = ACTIONS(2421), - [anon_sym_DASH2] = ACTIONS(2421), - [anon_sym_break] = ACTIONS(2421), - [anon_sym_continue] = ACTIONS(2421), - [anon_sym_for] = ACTIONS(2421), - [anon_sym_in2] = ACTIONS(2421), - [anon_sym_loop] = ACTIONS(2421), - [anon_sym_make] = ACTIONS(2421), - [anon_sym_while] = ACTIONS(2421), - [anon_sym_do] = ACTIONS(2421), - [anon_sym_if] = ACTIONS(2421), - [anon_sym_else] = ACTIONS(2421), - [anon_sym_match] = ACTIONS(2421), - [anon_sym_RBRACE] = ACTIONS(2423), - [anon_sym_try] = ACTIONS(2421), - [anon_sym_catch] = ACTIONS(2421), - [anon_sym_return] = ACTIONS(2421), - [anon_sym_source] = ACTIONS(2421), - [anon_sym_source_DASHenv] = ACTIONS(2421), - [anon_sym_register] = ACTIONS(2421), - [anon_sym_hide] = ACTIONS(2421), - [anon_sym_hide_DASHenv] = ACTIONS(2421), - [anon_sym_overlay] = ACTIONS(2421), - [anon_sym_as] = ACTIONS(2421), - [anon_sym_PLUS2] = ACTIONS(2421), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2423), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2423), - [aux_sym__val_number_decimal_token1] = ACTIONS(2421), - [aux_sym__val_number_decimal_token2] = ACTIONS(2423), - [aux_sym__val_number_decimal_token3] = ACTIONS(2423), - [aux_sym__val_number_decimal_token4] = ACTIONS(2423), - [aux_sym__val_number_token1] = ACTIONS(2423), - [aux_sym__val_number_token2] = ACTIONS(2423), - [aux_sym__val_number_token3] = ACTIONS(2423), - [aux_sym__val_number_token4] = ACTIONS(2421), - [aux_sym__val_number_token5] = ACTIONS(2421), - [aux_sym__val_number_token6] = ACTIONS(2421), - [anon_sym_DQUOTE] = ACTIONS(2423), - [sym__str_single_quotes] = ACTIONS(2423), - [sym__str_back_ticks] = ACTIONS(2423), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2423), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2423), - }, - [722] = { - [sym_comment] = STATE(722), - [anon_sym_export] = ACTIONS(2425), - [anon_sym_alias] = ACTIONS(2425), - [anon_sym_let] = ACTIONS(2425), - [anon_sym_let_DASHenv] = ACTIONS(2425), - [anon_sym_mut] = ACTIONS(2425), - [anon_sym_const] = ACTIONS(2425), - [aux_sym_cmd_identifier_token1] = ACTIONS(2425), - [aux_sym_cmd_identifier_token2] = ACTIONS(2427), - [aux_sym_cmd_identifier_token3] = ACTIONS(2427), - [aux_sym_cmd_identifier_token4] = ACTIONS(2427), - [aux_sym_cmd_identifier_token5] = ACTIONS(2427), - [aux_sym_cmd_identifier_token6] = ACTIONS(2427), - [aux_sym_cmd_identifier_token7] = ACTIONS(2427), - [aux_sym_cmd_identifier_token8] = ACTIONS(2425), - [aux_sym_cmd_identifier_token9] = ACTIONS(2425), - [aux_sym_cmd_identifier_token10] = ACTIONS(2427), - [aux_sym_cmd_identifier_token11] = ACTIONS(2427), - [aux_sym_cmd_identifier_token12] = ACTIONS(2425), - [aux_sym_cmd_identifier_token13] = ACTIONS(2425), - [aux_sym_cmd_identifier_token14] = ACTIONS(2425), - [aux_sym_cmd_identifier_token15] = ACTIONS(2425), - [aux_sym_cmd_identifier_token16] = ACTIONS(2427), - [aux_sym_cmd_identifier_token17] = ACTIONS(2427), - [aux_sym_cmd_identifier_token18] = ACTIONS(2427), - [aux_sym_cmd_identifier_token19] = ACTIONS(2427), - [aux_sym_cmd_identifier_token20] = ACTIONS(2427), - [aux_sym_cmd_identifier_token21] = ACTIONS(2427), - [aux_sym_cmd_identifier_token22] = ACTIONS(2427), - [aux_sym_cmd_identifier_token23] = ACTIONS(2427), - [aux_sym_cmd_identifier_token24] = ACTIONS(2427), - [aux_sym_cmd_identifier_token25] = ACTIONS(2427), - [aux_sym_cmd_identifier_token26] = ACTIONS(2427), - [aux_sym_cmd_identifier_token27] = ACTIONS(2427), - [aux_sym_cmd_identifier_token28] = ACTIONS(2427), - [aux_sym_cmd_identifier_token29] = ACTIONS(2427), - [aux_sym_cmd_identifier_token30] = ACTIONS(2427), - [aux_sym_cmd_identifier_token31] = ACTIONS(2427), - [aux_sym_cmd_identifier_token32] = ACTIONS(2427), - [aux_sym_cmd_identifier_token33] = ACTIONS(2427), - [aux_sym_cmd_identifier_token34] = ACTIONS(2425), - [aux_sym_cmd_identifier_token35] = ACTIONS(2427), - [aux_sym_cmd_identifier_token36] = ACTIONS(2427), - [aux_sym_cmd_identifier_token37] = ACTIONS(2427), - [aux_sym_cmd_identifier_token38] = ACTIONS(2425), - [aux_sym_cmd_identifier_token39] = ACTIONS(2427), - [aux_sym_cmd_identifier_token40] = ACTIONS(2427), - [anon_sym_def] = ACTIONS(2425), - [anon_sym_export_DASHenv] = ACTIONS(2425), - [anon_sym_extern] = ACTIONS(2425), - [anon_sym_module] = ACTIONS(2425), - [anon_sym_use] = ACTIONS(2425), - [anon_sym_LPAREN] = ACTIONS(2427), - [anon_sym_DOLLAR] = ACTIONS(2427), - [anon_sym_error] = ACTIONS(2425), - [anon_sym_DASH2] = ACTIONS(2425), - [anon_sym_break] = ACTIONS(2425), - [anon_sym_continue] = ACTIONS(2425), - [anon_sym_for] = ACTIONS(2425), - [anon_sym_in2] = ACTIONS(2425), - [anon_sym_loop] = ACTIONS(2425), - [anon_sym_make] = ACTIONS(2425), - [anon_sym_while] = ACTIONS(2425), - [anon_sym_do] = ACTIONS(2425), - [anon_sym_if] = ACTIONS(2425), - [anon_sym_else] = ACTIONS(2425), - [anon_sym_match] = ACTIONS(2425), - [anon_sym_RBRACE] = ACTIONS(2427), - [anon_sym_try] = ACTIONS(2425), - [anon_sym_catch] = ACTIONS(2425), - [anon_sym_return] = ACTIONS(2425), - [anon_sym_source] = ACTIONS(2425), - [anon_sym_source_DASHenv] = ACTIONS(2425), - [anon_sym_register] = ACTIONS(2425), - [anon_sym_hide] = ACTIONS(2425), - [anon_sym_hide_DASHenv] = ACTIONS(2425), - [anon_sym_overlay] = ACTIONS(2425), - [anon_sym_as] = ACTIONS(2425), - [anon_sym_PLUS2] = ACTIONS(2425), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2427), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2427), - [aux_sym__val_number_decimal_token1] = ACTIONS(2425), - [aux_sym__val_number_decimal_token2] = ACTIONS(2427), - [aux_sym__val_number_decimal_token3] = ACTIONS(2427), - [aux_sym__val_number_decimal_token4] = ACTIONS(2427), - [aux_sym__val_number_token1] = ACTIONS(2427), - [aux_sym__val_number_token2] = ACTIONS(2427), - [aux_sym__val_number_token3] = ACTIONS(2427), - [aux_sym__val_number_token4] = ACTIONS(2425), - [aux_sym__val_number_token5] = ACTIONS(2425), - [aux_sym__val_number_token6] = ACTIONS(2425), - [anon_sym_DQUOTE] = ACTIONS(2427), - [sym__str_single_quotes] = ACTIONS(2427), - [sym__str_back_ticks] = ACTIONS(2427), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2427), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2427), - }, - [723] = { - [sym_comment] = STATE(723), - [anon_sym_export] = ACTIONS(2488), - [anon_sym_alias] = ACTIONS(2488), - [anon_sym_let] = ACTIONS(2488), - [anon_sym_let_DASHenv] = ACTIONS(2488), - [anon_sym_mut] = ACTIONS(2488), - [anon_sym_const] = ACTIONS(2488), - [aux_sym_cmd_identifier_token1] = ACTIONS(2488), - [aux_sym_cmd_identifier_token2] = ACTIONS(2490), - [aux_sym_cmd_identifier_token3] = ACTIONS(2490), - [aux_sym_cmd_identifier_token4] = ACTIONS(2490), - [aux_sym_cmd_identifier_token5] = ACTIONS(2490), - [aux_sym_cmd_identifier_token6] = ACTIONS(2490), - [aux_sym_cmd_identifier_token7] = ACTIONS(2490), - [aux_sym_cmd_identifier_token8] = ACTIONS(2488), - [aux_sym_cmd_identifier_token9] = ACTIONS(2488), - [aux_sym_cmd_identifier_token10] = ACTIONS(2490), - [aux_sym_cmd_identifier_token11] = ACTIONS(2490), - [aux_sym_cmd_identifier_token12] = ACTIONS(2488), - [aux_sym_cmd_identifier_token13] = ACTIONS(2488), - [aux_sym_cmd_identifier_token14] = ACTIONS(2488), - [aux_sym_cmd_identifier_token15] = ACTIONS(2488), - [aux_sym_cmd_identifier_token16] = ACTIONS(2490), - [aux_sym_cmd_identifier_token17] = ACTIONS(2490), - [aux_sym_cmd_identifier_token18] = ACTIONS(2490), - [aux_sym_cmd_identifier_token19] = ACTIONS(2490), - [aux_sym_cmd_identifier_token20] = ACTIONS(2490), - [aux_sym_cmd_identifier_token21] = ACTIONS(2490), - [aux_sym_cmd_identifier_token22] = ACTIONS(2490), - [aux_sym_cmd_identifier_token23] = ACTIONS(2490), - [aux_sym_cmd_identifier_token24] = ACTIONS(2490), - [aux_sym_cmd_identifier_token25] = ACTIONS(2490), - [aux_sym_cmd_identifier_token26] = ACTIONS(2490), - [aux_sym_cmd_identifier_token27] = ACTIONS(2490), - [aux_sym_cmd_identifier_token28] = ACTIONS(2490), - [aux_sym_cmd_identifier_token29] = ACTIONS(2490), - [aux_sym_cmd_identifier_token30] = ACTIONS(2490), - [aux_sym_cmd_identifier_token31] = ACTIONS(2490), - [aux_sym_cmd_identifier_token32] = ACTIONS(2490), - [aux_sym_cmd_identifier_token33] = ACTIONS(2490), - [aux_sym_cmd_identifier_token34] = ACTIONS(2488), - [aux_sym_cmd_identifier_token35] = ACTIONS(2490), - [aux_sym_cmd_identifier_token36] = ACTIONS(2490), - [aux_sym_cmd_identifier_token37] = ACTIONS(2490), - [aux_sym_cmd_identifier_token38] = ACTIONS(2488), - [aux_sym_cmd_identifier_token39] = ACTIONS(2490), - [aux_sym_cmd_identifier_token40] = ACTIONS(2490), - [anon_sym_def] = ACTIONS(2488), - [anon_sym_export_DASHenv] = ACTIONS(2488), - [anon_sym_extern] = ACTIONS(2488), - [anon_sym_module] = ACTIONS(2488), - [anon_sym_use] = ACTIONS(2488), - [anon_sym_LPAREN] = ACTIONS(2490), - [anon_sym_DOLLAR] = ACTIONS(2490), - [anon_sym_error] = ACTIONS(2488), - [anon_sym_DASH2] = ACTIONS(2488), - [anon_sym_break] = ACTIONS(2488), - [anon_sym_continue] = ACTIONS(2488), - [anon_sym_for] = ACTIONS(2488), - [anon_sym_in2] = ACTIONS(2488), - [anon_sym_loop] = ACTIONS(2488), - [anon_sym_make] = ACTIONS(2488), - [anon_sym_while] = ACTIONS(2488), - [anon_sym_do] = ACTIONS(2488), - [anon_sym_if] = ACTIONS(2488), - [anon_sym_else] = ACTIONS(2488), - [anon_sym_match] = ACTIONS(2488), - [anon_sym_RBRACE] = ACTIONS(2490), - [anon_sym_try] = ACTIONS(2488), - [anon_sym_catch] = ACTIONS(2488), - [anon_sym_return] = ACTIONS(2488), - [anon_sym_source] = ACTIONS(2488), - [anon_sym_source_DASHenv] = ACTIONS(2488), - [anon_sym_register] = ACTIONS(2488), - [anon_sym_hide] = ACTIONS(2488), - [anon_sym_hide_DASHenv] = ACTIONS(2488), - [anon_sym_overlay] = ACTIONS(2488), - [anon_sym_as] = ACTIONS(2488), - [anon_sym_PLUS2] = ACTIONS(2488), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2490), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2490), - [aux_sym__val_number_decimal_token1] = ACTIONS(2488), - [aux_sym__val_number_decimal_token2] = ACTIONS(2490), - [aux_sym__val_number_decimal_token3] = ACTIONS(2490), - [aux_sym__val_number_decimal_token4] = ACTIONS(2490), - [aux_sym__val_number_token1] = ACTIONS(2490), - [aux_sym__val_number_token2] = ACTIONS(2490), - [aux_sym__val_number_token3] = ACTIONS(2490), - [aux_sym__val_number_token4] = ACTIONS(2488), - [aux_sym__val_number_token5] = ACTIONS(2488), - [aux_sym__val_number_token6] = ACTIONS(2488), - [anon_sym_DQUOTE] = ACTIONS(2490), - [sym__str_single_quotes] = ACTIONS(2490), - [sym__str_back_ticks] = ACTIONS(2490), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2490), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2490), - }, - [724] = { - [sym_comment] = STATE(724), - [anon_sym_export] = ACTIONS(2496), - [anon_sym_alias] = ACTIONS(2496), - [anon_sym_let] = ACTIONS(2496), - [anon_sym_let_DASHenv] = ACTIONS(2496), - [anon_sym_mut] = ACTIONS(2496), - [anon_sym_const] = ACTIONS(2496), - [aux_sym_cmd_identifier_token1] = ACTIONS(2496), - [aux_sym_cmd_identifier_token2] = ACTIONS(2498), - [aux_sym_cmd_identifier_token3] = ACTIONS(2498), - [aux_sym_cmd_identifier_token4] = ACTIONS(2498), - [aux_sym_cmd_identifier_token5] = ACTIONS(2498), - [aux_sym_cmd_identifier_token6] = ACTIONS(2498), - [aux_sym_cmd_identifier_token7] = ACTIONS(2498), - [aux_sym_cmd_identifier_token8] = ACTIONS(2496), - [aux_sym_cmd_identifier_token9] = ACTIONS(2496), - [aux_sym_cmd_identifier_token10] = ACTIONS(2498), - [aux_sym_cmd_identifier_token11] = ACTIONS(2498), - [aux_sym_cmd_identifier_token12] = ACTIONS(2496), - [aux_sym_cmd_identifier_token13] = ACTIONS(2496), - [aux_sym_cmd_identifier_token14] = ACTIONS(2496), - [aux_sym_cmd_identifier_token15] = ACTIONS(2496), - [aux_sym_cmd_identifier_token16] = ACTIONS(2498), - [aux_sym_cmd_identifier_token17] = ACTIONS(2498), - [aux_sym_cmd_identifier_token18] = ACTIONS(2498), - [aux_sym_cmd_identifier_token19] = ACTIONS(2498), - [aux_sym_cmd_identifier_token20] = ACTIONS(2498), - [aux_sym_cmd_identifier_token21] = ACTIONS(2498), - [aux_sym_cmd_identifier_token22] = ACTIONS(2498), - [aux_sym_cmd_identifier_token23] = ACTIONS(2498), - [aux_sym_cmd_identifier_token24] = ACTIONS(2498), - [aux_sym_cmd_identifier_token25] = ACTIONS(2498), - [aux_sym_cmd_identifier_token26] = ACTIONS(2498), - [aux_sym_cmd_identifier_token27] = ACTIONS(2498), - [aux_sym_cmd_identifier_token28] = ACTIONS(2498), - [aux_sym_cmd_identifier_token29] = ACTIONS(2498), - [aux_sym_cmd_identifier_token30] = ACTIONS(2498), - [aux_sym_cmd_identifier_token31] = ACTIONS(2498), - [aux_sym_cmd_identifier_token32] = ACTIONS(2498), - [aux_sym_cmd_identifier_token33] = ACTIONS(2498), - [aux_sym_cmd_identifier_token34] = ACTIONS(2496), - [aux_sym_cmd_identifier_token35] = ACTIONS(2498), - [aux_sym_cmd_identifier_token36] = ACTIONS(2498), - [aux_sym_cmd_identifier_token37] = ACTIONS(2498), - [aux_sym_cmd_identifier_token38] = ACTIONS(2496), - [aux_sym_cmd_identifier_token39] = ACTIONS(2498), - [aux_sym_cmd_identifier_token40] = ACTIONS(2498), - [anon_sym_def] = ACTIONS(2496), - [anon_sym_export_DASHenv] = ACTIONS(2496), - [anon_sym_extern] = ACTIONS(2496), - [anon_sym_module] = ACTIONS(2496), - [anon_sym_use] = ACTIONS(2496), - [anon_sym_LPAREN] = ACTIONS(2498), - [anon_sym_DOLLAR] = ACTIONS(2498), - [anon_sym_error] = ACTIONS(2496), - [anon_sym_DASH2] = ACTIONS(2496), - [anon_sym_break] = ACTIONS(2496), - [anon_sym_continue] = ACTIONS(2496), - [anon_sym_for] = ACTIONS(2496), - [anon_sym_in2] = ACTIONS(2496), - [anon_sym_loop] = ACTIONS(2496), - [anon_sym_make] = ACTIONS(2496), - [anon_sym_while] = ACTIONS(2496), - [anon_sym_do] = ACTIONS(2496), - [anon_sym_if] = ACTIONS(2496), - [anon_sym_else] = ACTIONS(2496), - [anon_sym_match] = ACTIONS(2496), - [anon_sym_RBRACE] = ACTIONS(2498), - [anon_sym_try] = ACTIONS(2496), - [anon_sym_catch] = ACTIONS(2496), - [anon_sym_return] = ACTIONS(2496), - [anon_sym_source] = ACTIONS(2496), - [anon_sym_source_DASHenv] = ACTIONS(2496), - [anon_sym_register] = ACTIONS(2496), - [anon_sym_hide] = ACTIONS(2496), - [anon_sym_hide_DASHenv] = ACTIONS(2496), - [anon_sym_overlay] = ACTIONS(2496), - [anon_sym_as] = ACTIONS(2496), - [anon_sym_PLUS2] = ACTIONS(2496), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2498), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2498), - [aux_sym__val_number_decimal_token1] = ACTIONS(2496), - [aux_sym__val_number_decimal_token2] = ACTIONS(2498), - [aux_sym__val_number_decimal_token3] = ACTIONS(2498), - [aux_sym__val_number_decimal_token4] = ACTIONS(2498), - [aux_sym__val_number_token1] = ACTIONS(2498), - [aux_sym__val_number_token2] = ACTIONS(2498), - [aux_sym__val_number_token3] = ACTIONS(2498), - [aux_sym__val_number_token4] = ACTIONS(2496), - [aux_sym__val_number_token5] = ACTIONS(2496), - [aux_sym__val_number_token6] = ACTIONS(2496), - [anon_sym_DQUOTE] = ACTIONS(2498), - [sym__str_single_quotes] = ACTIONS(2498), - [sym__str_back_ticks] = ACTIONS(2498), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2498), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2498), - }, - [725] = { - [sym_comment] = STATE(725), - [anon_sym_export] = ACTIONS(1948), - [anon_sym_alias] = ACTIONS(1948), - [anon_sym_let] = ACTIONS(1948), - [anon_sym_let_DASHenv] = ACTIONS(1948), - [anon_sym_mut] = ACTIONS(1948), - [anon_sym_const] = ACTIONS(1948), - [aux_sym_cmd_identifier_token1] = ACTIONS(1948), - [aux_sym_cmd_identifier_token2] = ACTIONS(1950), - [aux_sym_cmd_identifier_token3] = ACTIONS(1950), - [aux_sym_cmd_identifier_token4] = ACTIONS(1950), - [aux_sym_cmd_identifier_token5] = ACTIONS(1950), - [aux_sym_cmd_identifier_token6] = ACTIONS(1950), - [aux_sym_cmd_identifier_token7] = ACTIONS(1950), - [aux_sym_cmd_identifier_token8] = ACTIONS(1948), - [aux_sym_cmd_identifier_token9] = ACTIONS(1948), - [aux_sym_cmd_identifier_token10] = ACTIONS(1950), - [aux_sym_cmd_identifier_token11] = ACTIONS(1950), - [aux_sym_cmd_identifier_token12] = ACTIONS(1948), - [aux_sym_cmd_identifier_token13] = ACTIONS(1948), - [aux_sym_cmd_identifier_token14] = ACTIONS(1948), - [aux_sym_cmd_identifier_token15] = ACTIONS(1948), - [aux_sym_cmd_identifier_token16] = ACTIONS(1950), - [aux_sym_cmd_identifier_token17] = ACTIONS(1950), - [aux_sym_cmd_identifier_token18] = ACTIONS(1950), - [aux_sym_cmd_identifier_token19] = ACTIONS(1950), - [aux_sym_cmd_identifier_token20] = ACTIONS(1950), - [aux_sym_cmd_identifier_token21] = ACTIONS(1950), - [aux_sym_cmd_identifier_token22] = ACTIONS(1950), - [aux_sym_cmd_identifier_token23] = ACTIONS(1950), - [aux_sym_cmd_identifier_token24] = ACTIONS(1950), - [aux_sym_cmd_identifier_token25] = ACTIONS(1950), - [aux_sym_cmd_identifier_token26] = ACTIONS(1950), - [aux_sym_cmd_identifier_token27] = ACTIONS(1950), - [aux_sym_cmd_identifier_token28] = ACTIONS(1950), - [aux_sym_cmd_identifier_token29] = ACTIONS(1950), - [aux_sym_cmd_identifier_token30] = ACTIONS(1950), - [aux_sym_cmd_identifier_token31] = ACTIONS(1950), - [aux_sym_cmd_identifier_token32] = ACTIONS(1950), - [aux_sym_cmd_identifier_token33] = ACTIONS(1950), - [aux_sym_cmd_identifier_token34] = ACTIONS(1948), - [aux_sym_cmd_identifier_token35] = ACTIONS(1950), - [aux_sym_cmd_identifier_token36] = ACTIONS(1950), - [aux_sym_cmd_identifier_token37] = ACTIONS(1950), - [aux_sym_cmd_identifier_token38] = ACTIONS(1948), - [aux_sym_cmd_identifier_token39] = ACTIONS(1950), - [aux_sym_cmd_identifier_token40] = ACTIONS(1950), - [anon_sym_def] = ACTIONS(1948), - [anon_sym_export_DASHenv] = ACTIONS(1948), - [anon_sym_extern] = ACTIONS(1948), - [anon_sym_module] = ACTIONS(1948), - [anon_sym_use] = ACTIONS(1948), - [anon_sym_LPAREN] = ACTIONS(1950), - [anon_sym_DOLLAR] = ACTIONS(1950), - [anon_sym_error] = ACTIONS(1948), - [anon_sym_DASH2] = ACTIONS(1948), - [anon_sym_break] = ACTIONS(1948), - [anon_sym_continue] = ACTIONS(1948), - [anon_sym_for] = ACTIONS(1948), - [anon_sym_in2] = ACTIONS(1948), - [anon_sym_loop] = ACTIONS(1948), - [anon_sym_make] = ACTIONS(1948), - [anon_sym_while] = ACTIONS(1948), - [anon_sym_do] = ACTIONS(1948), - [anon_sym_if] = ACTIONS(1948), - [anon_sym_else] = ACTIONS(1948), - [anon_sym_match] = ACTIONS(1948), - [anon_sym_RBRACE] = ACTIONS(1950), - [anon_sym_try] = ACTIONS(1948), - [anon_sym_catch] = ACTIONS(1948), - [anon_sym_return] = ACTIONS(1948), - [anon_sym_source] = ACTIONS(1948), - [anon_sym_source_DASHenv] = ACTIONS(1948), - [anon_sym_register] = ACTIONS(1948), - [anon_sym_hide] = ACTIONS(1948), - [anon_sym_hide_DASHenv] = ACTIONS(1948), - [anon_sym_overlay] = ACTIONS(1948), - [anon_sym_as] = ACTIONS(1948), - [anon_sym_PLUS2] = ACTIONS(1948), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1950), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1950), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1950), - [aux_sym__val_number_decimal_token4] = ACTIONS(1950), - [aux_sym__val_number_token1] = ACTIONS(1950), - [aux_sym__val_number_token2] = ACTIONS(1950), - [aux_sym__val_number_token3] = ACTIONS(1950), - [aux_sym__val_number_token4] = ACTIONS(1948), - [aux_sym__val_number_token5] = ACTIONS(1948), - [aux_sym__val_number_token6] = ACTIONS(1948), - [anon_sym_DQUOTE] = ACTIONS(1950), - [sym__str_single_quotes] = ACTIONS(1950), - [sym__str_back_ticks] = ACTIONS(1950), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1950), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1950), - }, - [726] = { - [sym_comment] = STATE(726), - [anon_sym_export] = ACTIONS(2387), - [anon_sym_alias] = ACTIONS(2387), - [anon_sym_let] = ACTIONS(2387), - [anon_sym_let_DASHenv] = ACTIONS(2387), - [anon_sym_mut] = ACTIONS(2387), - [anon_sym_const] = ACTIONS(2387), - [aux_sym_cmd_identifier_token1] = ACTIONS(2387), - [aux_sym_cmd_identifier_token2] = ACTIONS(2389), - [aux_sym_cmd_identifier_token3] = ACTIONS(2389), - [aux_sym_cmd_identifier_token4] = ACTIONS(2389), - [aux_sym_cmd_identifier_token5] = ACTIONS(2389), - [aux_sym_cmd_identifier_token6] = ACTIONS(2389), - [aux_sym_cmd_identifier_token7] = ACTIONS(2389), - [aux_sym_cmd_identifier_token8] = ACTIONS(2387), - [aux_sym_cmd_identifier_token9] = ACTIONS(2387), - [aux_sym_cmd_identifier_token10] = ACTIONS(2389), - [aux_sym_cmd_identifier_token11] = ACTIONS(2389), - [aux_sym_cmd_identifier_token12] = ACTIONS(2387), - [aux_sym_cmd_identifier_token13] = ACTIONS(2387), - [aux_sym_cmd_identifier_token14] = ACTIONS(2387), - [aux_sym_cmd_identifier_token15] = ACTIONS(2387), - [aux_sym_cmd_identifier_token16] = ACTIONS(2389), - [aux_sym_cmd_identifier_token17] = ACTIONS(2389), - [aux_sym_cmd_identifier_token18] = ACTIONS(2389), - [aux_sym_cmd_identifier_token19] = ACTIONS(2389), - [aux_sym_cmd_identifier_token20] = ACTIONS(2389), - [aux_sym_cmd_identifier_token21] = ACTIONS(2389), - [aux_sym_cmd_identifier_token22] = ACTIONS(2389), - [aux_sym_cmd_identifier_token23] = ACTIONS(2389), - [aux_sym_cmd_identifier_token24] = ACTIONS(2389), - [aux_sym_cmd_identifier_token25] = ACTIONS(2389), - [aux_sym_cmd_identifier_token26] = ACTIONS(2389), - [aux_sym_cmd_identifier_token27] = ACTIONS(2389), - [aux_sym_cmd_identifier_token28] = ACTIONS(2389), - [aux_sym_cmd_identifier_token29] = ACTIONS(2389), - [aux_sym_cmd_identifier_token30] = ACTIONS(2389), - [aux_sym_cmd_identifier_token31] = ACTIONS(2389), - [aux_sym_cmd_identifier_token32] = ACTIONS(2389), - [aux_sym_cmd_identifier_token33] = ACTIONS(2389), - [aux_sym_cmd_identifier_token34] = ACTIONS(2387), - [aux_sym_cmd_identifier_token35] = ACTIONS(2389), - [aux_sym_cmd_identifier_token36] = ACTIONS(2389), - [aux_sym_cmd_identifier_token37] = ACTIONS(2389), - [aux_sym_cmd_identifier_token38] = ACTIONS(2387), - [aux_sym_cmd_identifier_token39] = ACTIONS(2389), - [aux_sym_cmd_identifier_token40] = ACTIONS(2389), - [anon_sym_def] = ACTIONS(2387), - [anon_sym_export_DASHenv] = ACTIONS(2387), - [anon_sym_extern] = ACTIONS(2387), - [anon_sym_module] = ACTIONS(2387), - [anon_sym_use] = ACTIONS(2387), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_DOLLAR] = ACTIONS(2389), - [anon_sym_error] = ACTIONS(2387), - [anon_sym_DASH2] = ACTIONS(2387), - [anon_sym_break] = ACTIONS(2387), - [anon_sym_continue] = ACTIONS(2387), - [anon_sym_for] = ACTIONS(2387), - [anon_sym_in2] = ACTIONS(2387), - [anon_sym_loop] = ACTIONS(2387), - [anon_sym_make] = ACTIONS(2387), - [anon_sym_while] = ACTIONS(2387), - [anon_sym_do] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_else] = ACTIONS(2387), - [anon_sym_match] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2389), - [anon_sym_try] = ACTIONS(2387), - [anon_sym_catch] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2387), - [anon_sym_source] = ACTIONS(2387), - [anon_sym_source_DASHenv] = ACTIONS(2387), - [anon_sym_register] = ACTIONS(2387), - [anon_sym_hide] = ACTIONS(2387), - [anon_sym_hide_DASHenv] = ACTIONS(2387), - [anon_sym_overlay] = ACTIONS(2387), - [anon_sym_as] = ACTIONS(2387), - [anon_sym_PLUS2] = ACTIONS(2387), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2389), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2389), - [aux_sym__val_number_decimal_token1] = ACTIONS(2387), - [aux_sym__val_number_decimal_token2] = ACTIONS(2389), - [aux_sym__val_number_decimal_token3] = ACTIONS(2389), - [aux_sym__val_number_decimal_token4] = ACTIONS(2389), - [aux_sym__val_number_token1] = ACTIONS(2389), - [aux_sym__val_number_token2] = ACTIONS(2389), - [aux_sym__val_number_token3] = ACTIONS(2389), - [aux_sym__val_number_token4] = ACTIONS(2387), - [aux_sym__val_number_token5] = ACTIONS(2387), - [aux_sym__val_number_token6] = ACTIONS(2387), - [anon_sym_DQUOTE] = ACTIONS(2389), - [sym__str_single_quotes] = ACTIONS(2389), - [sym__str_back_ticks] = ACTIONS(2389), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2389), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2389), - }, - [727] = { - [sym_comment] = STATE(727), - [anon_sym_export] = ACTIONS(2367), - [anon_sym_alias] = ACTIONS(2367), - [anon_sym_let] = ACTIONS(2367), - [anon_sym_let_DASHenv] = ACTIONS(2367), - [anon_sym_mut] = ACTIONS(2367), - [anon_sym_const] = ACTIONS(2367), - [aux_sym_cmd_identifier_token1] = ACTIONS(2367), - [aux_sym_cmd_identifier_token2] = ACTIONS(2369), - [aux_sym_cmd_identifier_token3] = ACTIONS(2369), - [aux_sym_cmd_identifier_token4] = ACTIONS(2369), - [aux_sym_cmd_identifier_token5] = ACTIONS(2369), - [aux_sym_cmd_identifier_token6] = ACTIONS(2369), - [aux_sym_cmd_identifier_token7] = ACTIONS(2369), - [aux_sym_cmd_identifier_token8] = ACTIONS(2367), - [aux_sym_cmd_identifier_token9] = ACTIONS(2367), - [aux_sym_cmd_identifier_token10] = ACTIONS(2369), - [aux_sym_cmd_identifier_token11] = ACTIONS(2369), - [aux_sym_cmd_identifier_token12] = ACTIONS(2367), - [aux_sym_cmd_identifier_token13] = ACTIONS(2367), - [aux_sym_cmd_identifier_token14] = ACTIONS(2367), - [aux_sym_cmd_identifier_token15] = ACTIONS(2367), - [aux_sym_cmd_identifier_token16] = ACTIONS(2369), - [aux_sym_cmd_identifier_token17] = ACTIONS(2369), - [aux_sym_cmd_identifier_token18] = ACTIONS(2369), - [aux_sym_cmd_identifier_token19] = ACTIONS(2369), - [aux_sym_cmd_identifier_token20] = ACTIONS(2369), - [aux_sym_cmd_identifier_token21] = ACTIONS(2369), - [aux_sym_cmd_identifier_token22] = ACTIONS(2369), - [aux_sym_cmd_identifier_token23] = ACTIONS(2369), - [aux_sym_cmd_identifier_token24] = ACTIONS(2369), - [aux_sym_cmd_identifier_token25] = ACTIONS(2369), - [aux_sym_cmd_identifier_token26] = ACTIONS(2369), - [aux_sym_cmd_identifier_token27] = ACTIONS(2369), - [aux_sym_cmd_identifier_token28] = ACTIONS(2369), - [aux_sym_cmd_identifier_token29] = ACTIONS(2369), - [aux_sym_cmd_identifier_token30] = ACTIONS(2369), - [aux_sym_cmd_identifier_token31] = ACTIONS(2369), - [aux_sym_cmd_identifier_token32] = ACTIONS(2369), - [aux_sym_cmd_identifier_token33] = ACTIONS(2369), - [aux_sym_cmd_identifier_token34] = ACTIONS(2367), - [aux_sym_cmd_identifier_token35] = ACTIONS(2369), - [aux_sym_cmd_identifier_token36] = ACTIONS(2369), - [aux_sym_cmd_identifier_token37] = ACTIONS(2369), - [aux_sym_cmd_identifier_token38] = ACTIONS(2367), - [aux_sym_cmd_identifier_token39] = ACTIONS(2369), - [aux_sym_cmd_identifier_token40] = ACTIONS(2369), - [anon_sym_def] = ACTIONS(2367), - [anon_sym_export_DASHenv] = ACTIONS(2367), - [anon_sym_extern] = ACTIONS(2367), - [anon_sym_module] = ACTIONS(2367), - [anon_sym_use] = ACTIONS(2367), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_DOLLAR] = ACTIONS(2369), - [anon_sym_error] = ACTIONS(2367), - [anon_sym_DASH2] = ACTIONS(2367), - [anon_sym_break] = ACTIONS(2367), - [anon_sym_continue] = ACTIONS(2367), - [anon_sym_for] = ACTIONS(2367), - [anon_sym_in2] = ACTIONS(2367), - [anon_sym_loop] = ACTIONS(2367), - [anon_sym_make] = ACTIONS(2367), - [anon_sym_while] = ACTIONS(2367), - [anon_sym_do] = ACTIONS(2367), - [anon_sym_if] = ACTIONS(2367), - [anon_sym_else] = ACTIONS(2367), - [anon_sym_match] = ACTIONS(2367), - [anon_sym_RBRACE] = ACTIONS(2369), - [anon_sym_try] = ACTIONS(2367), - [anon_sym_catch] = ACTIONS(2367), - [anon_sym_return] = ACTIONS(2367), - [anon_sym_source] = ACTIONS(2367), - [anon_sym_source_DASHenv] = ACTIONS(2367), - [anon_sym_register] = ACTIONS(2367), - [anon_sym_hide] = ACTIONS(2367), - [anon_sym_hide_DASHenv] = ACTIONS(2367), - [anon_sym_overlay] = ACTIONS(2367), - [anon_sym_as] = ACTIONS(2367), - [anon_sym_PLUS2] = ACTIONS(2367), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2369), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2369), - [aux_sym__val_number_decimal_token1] = ACTIONS(2367), - [aux_sym__val_number_decimal_token2] = ACTIONS(2369), - [aux_sym__val_number_decimal_token3] = ACTIONS(2369), - [aux_sym__val_number_decimal_token4] = ACTIONS(2369), - [aux_sym__val_number_token1] = ACTIONS(2369), - [aux_sym__val_number_token2] = ACTIONS(2369), - [aux_sym__val_number_token3] = ACTIONS(2369), - [aux_sym__val_number_token4] = ACTIONS(2367), - [aux_sym__val_number_token5] = ACTIONS(2367), - [aux_sym__val_number_token6] = ACTIONS(2367), - [anon_sym_DQUOTE] = ACTIONS(2369), - [sym__str_single_quotes] = ACTIONS(2369), - [sym__str_back_ticks] = ACTIONS(2369), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2369), + [729] = { + [sym_comment] = STATE(729), + [anon_sym_export] = ACTIONS(2464), + [anon_sym_alias] = ACTIONS(2464), + [anon_sym_let] = ACTIONS(2464), + [anon_sym_let_DASHenv] = ACTIONS(2464), + [anon_sym_mut] = ACTIONS(2464), + [anon_sym_const] = ACTIONS(2464), + [aux_sym_cmd_identifier_token1] = ACTIONS(2464), + [aux_sym_cmd_identifier_token2] = ACTIONS(2466), + [aux_sym_cmd_identifier_token3] = ACTIONS(2466), + [aux_sym_cmd_identifier_token4] = ACTIONS(2466), + [aux_sym_cmd_identifier_token5] = ACTIONS(2466), + [aux_sym_cmd_identifier_token6] = ACTIONS(2466), + [aux_sym_cmd_identifier_token7] = ACTIONS(2466), + [aux_sym_cmd_identifier_token8] = ACTIONS(2464), + [aux_sym_cmd_identifier_token9] = ACTIONS(2464), + [aux_sym_cmd_identifier_token10] = ACTIONS(2466), + [aux_sym_cmd_identifier_token11] = ACTIONS(2466), + [aux_sym_cmd_identifier_token12] = ACTIONS(2464), + [aux_sym_cmd_identifier_token13] = ACTIONS(2464), + [aux_sym_cmd_identifier_token14] = ACTIONS(2464), + [aux_sym_cmd_identifier_token15] = ACTIONS(2464), + [aux_sym_cmd_identifier_token16] = ACTIONS(2466), + [aux_sym_cmd_identifier_token17] = ACTIONS(2466), + [aux_sym_cmd_identifier_token18] = ACTIONS(2466), + [aux_sym_cmd_identifier_token19] = ACTIONS(2466), + [aux_sym_cmd_identifier_token20] = ACTIONS(2466), + [aux_sym_cmd_identifier_token21] = ACTIONS(2466), + [aux_sym_cmd_identifier_token22] = ACTIONS(2466), + [aux_sym_cmd_identifier_token23] = ACTIONS(2466), + [aux_sym_cmd_identifier_token24] = ACTIONS(2466), + [aux_sym_cmd_identifier_token25] = ACTIONS(2466), + [aux_sym_cmd_identifier_token26] = ACTIONS(2466), + [aux_sym_cmd_identifier_token27] = ACTIONS(2466), + [aux_sym_cmd_identifier_token28] = ACTIONS(2466), + [aux_sym_cmd_identifier_token29] = ACTIONS(2466), + [aux_sym_cmd_identifier_token30] = ACTIONS(2466), + [aux_sym_cmd_identifier_token31] = ACTIONS(2466), + [aux_sym_cmd_identifier_token32] = ACTIONS(2466), + [aux_sym_cmd_identifier_token33] = ACTIONS(2466), + [aux_sym_cmd_identifier_token34] = ACTIONS(2464), + [aux_sym_cmd_identifier_token35] = ACTIONS(2466), + [aux_sym_cmd_identifier_token36] = ACTIONS(2466), + [aux_sym_cmd_identifier_token37] = ACTIONS(2466), + [aux_sym_cmd_identifier_token38] = ACTIONS(2464), + [aux_sym_cmd_identifier_token39] = ACTIONS(2466), + [aux_sym_cmd_identifier_token40] = ACTIONS(2466), + [anon_sym_def] = ACTIONS(2464), + [anon_sym_export_DASHenv] = ACTIONS(2464), + [anon_sym_extern] = ACTIONS(2464), + [anon_sym_module] = ACTIONS(2464), + [anon_sym_use] = ACTIONS(2464), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_DOLLAR] = ACTIONS(2466), + [anon_sym_error] = ACTIONS(2464), + [anon_sym_DASH2] = ACTIONS(2464), + [anon_sym_break] = ACTIONS(2464), + [anon_sym_continue] = ACTIONS(2464), + [anon_sym_for] = ACTIONS(2464), + [anon_sym_in2] = ACTIONS(2464), + [anon_sym_loop] = ACTIONS(2464), + [anon_sym_make] = ACTIONS(2464), + [anon_sym_while] = ACTIONS(2464), + [anon_sym_do] = ACTIONS(2464), + [anon_sym_if] = ACTIONS(2464), + [anon_sym_else] = ACTIONS(2464), + [anon_sym_match] = ACTIONS(2464), + [anon_sym_RBRACE] = ACTIONS(2466), + [anon_sym_try] = ACTIONS(2464), + [anon_sym_catch] = ACTIONS(2464), + [anon_sym_return] = ACTIONS(2464), + [anon_sym_source] = ACTIONS(2464), + [anon_sym_source_DASHenv] = ACTIONS(2464), + [anon_sym_register] = ACTIONS(2464), + [anon_sym_hide] = ACTIONS(2464), + [anon_sym_hide_DASHenv] = ACTIONS(2464), + [anon_sym_overlay] = ACTIONS(2464), + [anon_sym_as] = ACTIONS(2464), + [anon_sym_PLUS2] = ACTIONS(2464), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2466), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2466), + [aux_sym__val_number_decimal_token1] = ACTIONS(2464), + [aux_sym__val_number_decimal_token2] = ACTIONS(2466), + [aux_sym__val_number_decimal_token3] = ACTIONS(2466), + [aux_sym__val_number_decimal_token4] = ACTIONS(2466), + [aux_sym__val_number_token1] = ACTIONS(2466), + [aux_sym__val_number_token2] = ACTIONS(2466), + [aux_sym__val_number_token3] = ACTIONS(2466), + [aux_sym__val_number_token4] = ACTIONS(2464), + [aux_sym__val_number_token5] = ACTIONS(2464), + [aux_sym__val_number_token6] = ACTIONS(2464), + [anon_sym_DQUOTE] = ACTIONS(2466), + [sym__str_single_quotes] = ACTIONS(2466), + [sym__str_back_ticks] = ACTIONS(2466), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2466), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2369), - }, - [728] = { - [sym_comment] = STATE(728), - [anon_sym_export] = ACTIONS(1972), - [anon_sym_alias] = ACTIONS(1972), - [anon_sym_let] = ACTIONS(1972), - [anon_sym_let_DASHenv] = ACTIONS(1972), - [anon_sym_mut] = ACTIONS(1972), - [anon_sym_const] = ACTIONS(1972), - [aux_sym_cmd_identifier_token1] = ACTIONS(1972), - [aux_sym_cmd_identifier_token2] = ACTIONS(1974), - [aux_sym_cmd_identifier_token3] = ACTIONS(1974), - [aux_sym_cmd_identifier_token4] = ACTIONS(1974), - [aux_sym_cmd_identifier_token5] = ACTIONS(1974), - [aux_sym_cmd_identifier_token6] = ACTIONS(1974), - [aux_sym_cmd_identifier_token7] = ACTIONS(1974), - [aux_sym_cmd_identifier_token8] = ACTIONS(1972), - [aux_sym_cmd_identifier_token9] = ACTIONS(1972), - [aux_sym_cmd_identifier_token10] = ACTIONS(1974), - [aux_sym_cmd_identifier_token11] = ACTIONS(1974), - [aux_sym_cmd_identifier_token12] = ACTIONS(1972), - [aux_sym_cmd_identifier_token13] = ACTIONS(1972), - [aux_sym_cmd_identifier_token14] = ACTIONS(1972), - [aux_sym_cmd_identifier_token15] = ACTIONS(1972), - [aux_sym_cmd_identifier_token16] = ACTIONS(1974), - [aux_sym_cmd_identifier_token17] = ACTIONS(1974), - [aux_sym_cmd_identifier_token18] = ACTIONS(1974), - [aux_sym_cmd_identifier_token19] = ACTIONS(1974), - [aux_sym_cmd_identifier_token20] = ACTIONS(1974), - [aux_sym_cmd_identifier_token21] = ACTIONS(1974), - [aux_sym_cmd_identifier_token22] = ACTIONS(1974), - [aux_sym_cmd_identifier_token23] = ACTIONS(1974), - [aux_sym_cmd_identifier_token24] = ACTIONS(1974), - [aux_sym_cmd_identifier_token25] = ACTIONS(1974), - [aux_sym_cmd_identifier_token26] = ACTIONS(1974), - [aux_sym_cmd_identifier_token27] = ACTIONS(1974), - [aux_sym_cmd_identifier_token28] = ACTIONS(1974), - [aux_sym_cmd_identifier_token29] = ACTIONS(1974), - [aux_sym_cmd_identifier_token30] = ACTIONS(1974), - [aux_sym_cmd_identifier_token31] = ACTIONS(1974), - [aux_sym_cmd_identifier_token32] = ACTIONS(1974), - [aux_sym_cmd_identifier_token33] = ACTIONS(1974), - [aux_sym_cmd_identifier_token34] = ACTIONS(1972), - [aux_sym_cmd_identifier_token35] = ACTIONS(1974), - [aux_sym_cmd_identifier_token36] = ACTIONS(1974), - [aux_sym_cmd_identifier_token37] = ACTIONS(1974), - [aux_sym_cmd_identifier_token38] = ACTIONS(1972), - [aux_sym_cmd_identifier_token39] = ACTIONS(1974), - [aux_sym_cmd_identifier_token40] = ACTIONS(1974), - [anon_sym_def] = ACTIONS(1972), - [anon_sym_export_DASHenv] = ACTIONS(1972), - [anon_sym_extern] = ACTIONS(1972), - [anon_sym_module] = ACTIONS(1972), - [anon_sym_use] = ACTIONS(1972), - [anon_sym_LPAREN] = ACTIONS(1974), - [anon_sym_DOLLAR] = ACTIONS(1974), - [anon_sym_error] = ACTIONS(1972), - [anon_sym_DASH2] = ACTIONS(1972), - [anon_sym_break] = ACTIONS(1972), - [anon_sym_continue] = ACTIONS(1972), - [anon_sym_for] = ACTIONS(1972), - [anon_sym_in2] = ACTIONS(1972), - [anon_sym_loop] = ACTIONS(1972), - [anon_sym_make] = ACTIONS(1972), - [anon_sym_while] = ACTIONS(1972), - [anon_sym_do] = ACTIONS(1972), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_else] = ACTIONS(1972), - [anon_sym_match] = ACTIONS(1972), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_try] = ACTIONS(1972), - [anon_sym_catch] = ACTIONS(1972), - [anon_sym_return] = ACTIONS(1972), - [anon_sym_source] = ACTIONS(1972), - [anon_sym_source_DASHenv] = ACTIONS(1972), - [anon_sym_register] = ACTIONS(1972), - [anon_sym_hide] = ACTIONS(1972), - [anon_sym_hide_DASHenv] = ACTIONS(1972), - [anon_sym_overlay] = ACTIONS(1972), - [anon_sym_as] = ACTIONS(1972), - [anon_sym_PLUS2] = ACTIONS(1972), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1974), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1972), - [aux_sym__val_number_decimal_token2] = ACTIONS(1974), - [aux_sym__val_number_decimal_token3] = ACTIONS(1974), - [aux_sym__val_number_decimal_token4] = ACTIONS(1974), - [aux_sym__val_number_token1] = ACTIONS(1974), - [aux_sym__val_number_token2] = ACTIONS(1974), - [aux_sym__val_number_token3] = ACTIONS(1974), - [aux_sym__val_number_token4] = ACTIONS(1972), - [aux_sym__val_number_token5] = ACTIONS(1972), - [aux_sym__val_number_token6] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym__str_single_quotes] = ACTIONS(1974), - [sym__str_back_ticks] = ACTIONS(1974), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1974), - }, - [729] = { - [sym_comment] = STATE(729), - [anon_sym_export] = ACTIONS(2445), - [anon_sym_alias] = ACTIONS(2445), - [anon_sym_let] = ACTIONS(2445), - [anon_sym_let_DASHenv] = ACTIONS(2445), - [anon_sym_mut] = ACTIONS(2445), - [anon_sym_const] = ACTIONS(2445), - [aux_sym_cmd_identifier_token1] = ACTIONS(2445), - [aux_sym_cmd_identifier_token2] = ACTIONS(2447), - [aux_sym_cmd_identifier_token3] = ACTIONS(2447), - [aux_sym_cmd_identifier_token4] = ACTIONS(2447), - [aux_sym_cmd_identifier_token5] = ACTIONS(2447), - [aux_sym_cmd_identifier_token6] = ACTIONS(2447), - [aux_sym_cmd_identifier_token7] = ACTIONS(2447), - [aux_sym_cmd_identifier_token8] = ACTIONS(2445), - [aux_sym_cmd_identifier_token9] = ACTIONS(2445), - [aux_sym_cmd_identifier_token10] = ACTIONS(2447), - [aux_sym_cmd_identifier_token11] = ACTIONS(2447), - [aux_sym_cmd_identifier_token12] = ACTIONS(2445), - [aux_sym_cmd_identifier_token13] = ACTIONS(2445), - [aux_sym_cmd_identifier_token14] = ACTIONS(2445), - [aux_sym_cmd_identifier_token15] = ACTIONS(2445), - [aux_sym_cmd_identifier_token16] = ACTIONS(2447), - [aux_sym_cmd_identifier_token17] = ACTIONS(2447), - [aux_sym_cmd_identifier_token18] = ACTIONS(2447), - [aux_sym_cmd_identifier_token19] = ACTIONS(2447), - [aux_sym_cmd_identifier_token20] = ACTIONS(2447), - [aux_sym_cmd_identifier_token21] = ACTIONS(2447), - [aux_sym_cmd_identifier_token22] = ACTIONS(2447), - [aux_sym_cmd_identifier_token23] = ACTIONS(2447), - [aux_sym_cmd_identifier_token24] = ACTIONS(2447), - [aux_sym_cmd_identifier_token25] = ACTIONS(2447), - [aux_sym_cmd_identifier_token26] = ACTIONS(2447), - [aux_sym_cmd_identifier_token27] = ACTIONS(2447), - [aux_sym_cmd_identifier_token28] = ACTIONS(2447), - [aux_sym_cmd_identifier_token29] = ACTIONS(2447), - [aux_sym_cmd_identifier_token30] = ACTIONS(2447), - [aux_sym_cmd_identifier_token31] = ACTIONS(2447), - [aux_sym_cmd_identifier_token32] = ACTIONS(2447), - [aux_sym_cmd_identifier_token33] = ACTIONS(2447), - [aux_sym_cmd_identifier_token34] = ACTIONS(2445), - [aux_sym_cmd_identifier_token35] = ACTIONS(2447), - [aux_sym_cmd_identifier_token36] = ACTIONS(2447), - [aux_sym_cmd_identifier_token37] = ACTIONS(2447), - [aux_sym_cmd_identifier_token38] = ACTIONS(2445), - [aux_sym_cmd_identifier_token39] = ACTIONS(2447), - [aux_sym_cmd_identifier_token40] = ACTIONS(2447), - [anon_sym_def] = ACTIONS(2445), - [anon_sym_export_DASHenv] = ACTIONS(2445), - [anon_sym_extern] = ACTIONS(2445), - [anon_sym_module] = ACTIONS(2445), - [anon_sym_use] = ACTIONS(2445), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2447), - [anon_sym_error] = ACTIONS(2445), - [anon_sym_DASH2] = ACTIONS(2445), - [anon_sym_break] = ACTIONS(2445), - [anon_sym_continue] = ACTIONS(2445), - [anon_sym_for] = ACTIONS(2445), - [anon_sym_in2] = ACTIONS(2445), - [anon_sym_loop] = ACTIONS(2445), - [anon_sym_make] = ACTIONS(2445), - [anon_sym_while] = ACTIONS(2445), - [anon_sym_do] = ACTIONS(2445), - [anon_sym_if] = ACTIONS(2445), - [anon_sym_else] = ACTIONS(2445), - [anon_sym_match] = ACTIONS(2445), - [anon_sym_RBRACE] = ACTIONS(2447), - [anon_sym_try] = ACTIONS(2445), - [anon_sym_catch] = ACTIONS(2445), - [anon_sym_return] = ACTIONS(2445), - [anon_sym_source] = ACTIONS(2445), - [anon_sym_source_DASHenv] = ACTIONS(2445), - [anon_sym_register] = ACTIONS(2445), - [anon_sym_hide] = ACTIONS(2445), - [anon_sym_hide_DASHenv] = ACTIONS(2445), - [anon_sym_overlay] = ACTIONS(2445), - [anon_sym_as] = ACTIONS(2445), - [anon_sym_PLUS2] = ACTIONS(2445), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2447), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2447), - [aux_sym__val_number_decimal_token1] = ACTIONS(2445), - [aux_sym__val_number_decimal_token2] = ACTIONS(2447), - [aux_sym__val_number_decimal_token3] = ACTIONS(2447), - [aux_sym__val_number_decimal_token4] = ACTIONS(2447), - [aux_sym__val_number_token1] = ACTIONS(2447), - [aux_sym__val_number_token2] = ACTIONS(2447), - [aux_sym__val_number_token3] = ACTIONS(2447), - [aux_sym__val_number_token4] = ACTIONS(2445), - [aux_sym__val_number_token5] = ACTIONS(2445), - [aux_sym__val_number_token6] = ACTIONS(2445), - [anon_sym_DQUOTE] = ACTIONS(2447), - [sym__str_single_quotes] = ACTIONS(2447), - [sym__str_back_ticks] = ACTIONS(2447), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2447), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2447), + [sym_raw_string_begin] = ACTIONS(2466), }, [730] = { [sym_comment] = STATE(730), - [anon_sym_export] = ACTIONS(2449), - [anon_sym_alias] = ACTIONS(2449), - [anon_sym_let] = ACTIONS(2449), - [anon_sym_let_DASHenv] = ACTIONS(2449), - [anon_sym_mut] = ACTIONS(2449), - [anon_sym_const] = ACTIONS(2449), - [aux_sym_cmd_identifier_token1] = ACTIONS(2449), - [aux_sym_cmd_identifier_token2] = ACTIONS(2451), - [aux_sym_cmd_identifier_token3] = ACTIONS(2451), - [aux_sym_cmd_identifier_token4] = ACTIONS(2451), - [aux_sym_cmd_identifier_token5] = ACTIONS(2451), - [aux_sym_cmd_identifier_token6] = ACTIONS(2451), - [aux_sym_cmd_identifier_token7] = ACTIONS(2451), - [aux_sym_cmd_identifier_token8] = ACTIONS(2449), - [aux_sym_cmd_identifier_token9] = ACTIONS(2449), - [aux_sym_cmd_identifier_token10] = ACTIONS(2451), - [aux_sym_cmd_identifier_token11] = ACTIONS(2451), - [aux_sym_cmd_identifier_token12] = ACTIONS(2449), - [aux_sym_cmd_identifier_token13] = ACTIONS(2449), - [aux_sym_cmd_identifier_token14] = ACTIONS(2449), - [aux_sym_cmd_identifier_token15] = ACTIONS(2449), - [aux_sym_cmd_identifier_token16] = ACTIONS(2451), - [aux_sym_cmd_identifier_token17] = ACTIONS(2451), - [aux_sym_cmd_identifier_token18] = ACTIONS(2451), - [aux_sym_cmd_identifier_token19] = ACTIONS(2451), - [aux_sym_cmd_identifier_token20] = ACTIONS(2451), - [aux_sym_cmd_identifier_token21] = ACTIONS(2451), - [aux_sym_cmd_identifier_token22] = ACTIONS(2451), - [aux_sym_cmd_identifier_token23] = ACTIONS(2451), - [aux_sym_cmd_identifier_token24] = ACTIONS(2451), - [aux_sym_cmd_identifier_token25] = ACTIONS(2451), - [aux_sym_cmd_identifier_token26] = ACTIONS(2451), - [aux_sym_cmd_identifier_token27] = ACTIONS(2451), - [aux_sym_cmd_identifier_token28] = ACTIONS(2451), - [aux_sym_cmd_identifier_token29] = ACTIONS(2451), - [aux_sym_cmd_identifier_token30] = ACTIONS(2451), - [aux_sym_cmd_identifier_token31] = ACTIONS(2451), - [aux_sym_cmd_identifier_token32] = ACTIONS(2451), - [aux_sym_cmd_identifier_token33] = ACTIONS(2451), - [aux_sym_cmd_identifier_token34] = ACTIONS(2449), - [aux_sym_cmd_identifier_token35] = ACTIONS(2451), - [aux_sym_cmd_identifier_token36] = ACTIONS(2451), - [aux_sym_cmd_identifier_token37] = ACTIONS(2451), - [aux_sym_cmd_identifier_token38] = ACTIONS(2449), - [aux_sym_cmd_identifier_token39] = ACTIONS(2451), - [aux_sym_cmd_identifier_token40] = ACTIONS(2451), - [anon_sym_def] = ACTIONS(2449), - [anon_sym_export_DASHenv] = ACTIONS(2449), - [anon_sym_extern] = ACTIONS(2449), - [anon_sym_module] = ACTIONS(2449), - [anon_sym_use] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_DOLLAR] = ACTIONS(2451), - [anon_sym_error] = ACTIONS(2449), - [anon_sym_DASH2] = ACTIONS(2449), - [anon_sym_break] = ACTIONS(2449), - [anon_sym_continue] = ACTIONS(2449), - [anon_sym_for] = ACTIONS(2449), - [anon_sym_in2] = ACTIONS(2449), - [anon_sym_loop] = ACTIONS(2449), - [anon_sym_make] = ACTIONS(2449), - [anon_sym_while] = ACTIONS(2449), - [anon_sym_do] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2449), - [anon_sym_else] = ACTIONS(2449), - [anon_sym_match] = ACTIONS(2449), - [anon_sym_RBRACE] = ACTIONS(2451), - [anon_sym_try] = ACTIONS(2449), - [anon_sym_catch] = ACTIONS(2449), - [anon_sym_return] = ACTIONS(2449), - [anon_sym_source] = ACTIONS(2449), - [anon_sym_source_DASHenv] = ACTIONS(2449), - [anon_sym_register] = ACTIONS(2449), - [anon_sym_hide] = ACTIONS(2449), - [anon_sym_hide_DASHenv] = ACTIONS(2449), - [anon_sym_overlay] = ACTIONS(2449), - [anon_sym_as] = ACTIONS(2449), - [anon_sym_PLUS2] = ACTIONS(2449), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2451), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2451), - [aux_sym__val_number_decimal_token1] = ACTIONS(2449), - [aux_sym__val_number_decimal_token2] = ACTIONS(2451), - [aux_sym__val_number_decimal_token3] = ACTIONS(2451), - [aux_sym__val_number_decimal_token4] = ACTIONS(2451), - [aux_sym__val_number_token1] = ACTIONS(2451), - [aux_sym__val_number_token2] = ACTIONS(2451), - [aux_sym__val_number_token3] = ACTIONS(2451), - [aux_sym__val_number_token4] = ACTIONS(2449), - [aux_sym__val_number_token5] = ACTIONS(2449), - [aux_sym__val_number_token6] = ACTIONS(2449), - [anon_sym_DQUOTE] = ACTIONS(2451), - [sym__str_single_quotes] = ACTIONS(2451), - [sym__str_back_ticks] = ACTIONS(2451), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2451), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2451), + [anon_sym_export] = ACTIONS(2472), + [anon_sym_alias] = ACTIONS(2472), + [anon_sym_let] = ACTIONS(2472), + [anon_sym_let_DASHenv] = ACTIONS(2472), + [anon_sym_mut] = ACTIONS(2472), + [anon_sym_const] = ACTIONS(2472), + [aux_sym_cmd_identifier_token1] = ACTIONS(2472), + [aux_sym_cmd_identifier_token2] = ACTIONS(2474), + [aux_sym_cmd_identifier_token3] = ACTIONS(2474), + [aux_sym_cmd_identifier_token4] = ACTIONS(2474), + [aux_sym_cmd_identifier_token5] = ACTIONS(2474), + [aux_sym_cmd_identifier_token6] = ACTIONS(2474), + [aux_sym_cmd_identifier_token7] = ACTIONS(2474), + [aux_sym_cmd_identifier_token8] = ACTIONS(2472), + [aux_sym_cmd_identifier_token9] = ACTIONS(2472), + [aux_sym_cmd_identifier_token10] = ACTIONS(2474), + [aux_sym_cmd_identifier_token11] = ACTIONS(2474), + [aux_sym_cmd_identifier_token12] = ACTIONS(2472), + [aux_sym_cmd_identifier_token13] = ACTIONS(2472), + [aux_sym_cmd_identifier_token14] = ACTIONS(2472), + [aux_sym_cmd_identifier_token15] = ACTIONS(2472), + [aux_sym_cmd_identifier_token16] = ACTIONS(2474), + [aux_sym_cmd_identifier_token17] = ACTIONS(2474), + [aux_sym_cmd_identifier_token18] = ACTIONS(2474), + [aux_sym_cmd_identifier_token19] = ACTIONS(2474), + [aux_sym_cmd_identifier_token20] = ACTIONS(2474), + [aux_sym_cmd_identifier_token21] = ACTIONS(2474), + [aux_sym_cmd_identifier_token22] = ACTIONS(2474), + [aux_sym_cmd_identifier_token23] = ACTIONS(2474), + [aux_sym_cmd_identifier_token24] = ACTIONS(2474), + [aux_sym_cmd_identifier_token25] = ACTIONS(2474), + [aux_sym_cmd_identifier_token26] = ACTIONS(2474), + [aux_sym_cmd_identifier_token27] = ACTIONS(2474), + [aux_sym_cmd_identifier_token28] = ACTIONS(2474), + [aux_sym_cmd_identifier_token29] = ACTIONS(2474), + [aux_sym_cmd_identifier_token30] = ACTIONS(2474), + [aux_sym_cmd_identifier_token31] = ACTIONS(2474), + [aux_sym_cmd_identifier_token32] = ACTIONS(2474), + [aux_sym_cmd_identifier_token33] = ACTIONS(2474), + [aux_sym_cmd_identifier_token34] = ACTIONS(2472), + [aux_sym_cmd_identifier_token35] = ACTIONS(2474), + [aux_sym_cmd_identifier_token36] = ACTIONS(2474), + [aux_sym_cmd_identifier_token37] = ACTIONS(2474), + [aux_sym_cmd_identifier_token38] = ACTIONS(2472), + [aux_sym_cmd_identifier_token39] = ACTIONS(2474), + [aux_sym_cmd_identifier_token40] = ACTIONS(2474), + [anon_sym_def] = ACTIONS(2472), + [anon_sym_export_DASHenv] = ACTIONS(2472), + [anon_sym_extern] = ACTIONS(2472), + [anon_sym_module] = ACTIONS(2472), + [anon_sym_use] = ACTIONS(2472), + [anon_sym_LPAREN] = ACTIONS(2474), + [anon_sym_DOLLAR] = ACTIONS(2474), + [anon_sym_error] = ACTIONS(2472), + [anon_sym_DASH2] = ACTIONS(2472), + [anon_sym_break] = ACTIONS(2472), + [anon_sym_continue] = ACTIONS(2472), + [anon_sym_for] = ACTIONS(2472), + [anon_sym_in2] = ACTIONS(2472), + [anon_sym_loop] = ACTIONS(2472), + [anon_sym_make] = ACTIONS(2472), + [anon_sym_while] = ACTIONS(2472), + [anon_sym_do] = ACTIONS(2472), + [anon_sym_if] = ACTIONS(2472), + [anon_sym_else] = ACTIONS(2472), + [anon_sym_match] = ACTIONS(2472), + [anon_sym_RBRACE] = ACTIONS(2474), + [anon_sym_try] = ACTIONS(2472), + [anon_sym_catch] = ACTIONS(2472), + [anon_sym_return] = ACTIONS(2472), + [anon_sym_source] = ACTIONS(2472), + [anon_sym_source_DASHenv] = ACTIONS(2472), + [anon_sym_register] = ACTIONS(2472), + [anon_sym_hide] = ACTIONS(2472), + [anon_sym_hide_DASHenv] = ACTIONS(2472), + [anon_sym_overlay] = ACTIONS(2472), + [anon_sym_as] = ACTIONS(2472), + [anon_sym_PLUS2] = ACTIONS(2472), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2474), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2474), + [aux_sym__val_number_decimal_token1] = ACTIONS(2472), + [aux_sym__val_number_decimal_token2] = ACTIONS(2474), + [aux_sym__val_number_decimal_token3] = ACTIONS(2474), + [aux_sym__val_number_decimal_token4] = ACTIONS(2474), + [aux_sym__val_number_token1] = ACTIONS(2474), + [aux_sym__val_number_token2] = ACTIONS(2474), + [aux_sym__val_number_token3] = ACTIONS(2474), + [aux_sym__val_number_token4] = ACTIONS(2472), + [aux_sym__val_number_token5] = ACTIONS(2472), + [aux_sym__val_number_token6] = ACTIONS(2472), + [anon_sym_DQUOTE] = ACTIONS(2474), + [sym__str_single_quotes] = ACTIONS(2474), + [sym__str_back_ticks] = ACTIONS(2474), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2474), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2474), }, [731] = { [sym_comment] = STATE(731), - [anon_sym_export] = ACTIONS(1988), - [anon_sym_alias] = ACTIONS(1988), - [anon_sym_let] = ACTIONS(1988), - [anon_sym_let_DASHenv] = ACTIONS(1988), - [anon_sym_mut] = ACTIONS(1988), - [anon_sym_const] = ACTIONS(1988), - [aux_sym_cmd_identifier_token1] = ACTIONS(1988), - [aux_sym_cmd_identifier_token2] = ACTIONS(1990), - [aux_sym_cmd_identifier_token3] = ACTIONS(1990), - [aux_sym_cmd_identifier_token4] = ACTIONS(1990), - [aux_sym_cmd_identifier_token5] = ACTIONS(1990), - [aux_sym_cmd_identifier_token6] = ACTIONS(1990), - [aux_sym_cmd_identifier_token7] = ACTIONS(1990), - [aux_sym_cmd_identifier_token8] = ACTIONS(1988), - [aux_sym_cmd_identifier_token9] = ACTIONS(1988), - [aux_sym_cmd_identifier_token10] = ACTIONS(1990), - [aux_sym_cmd_identifier_token11] = ACTIONS(1990), - [aux_sym_cmd_identifier_token12] = ACTIONS(1988), - [aux_sym_cmd_identifier_token13] = ACTIONS(1988), - [aux_sym_cmd_identifier_token14] = ACTIONS(1988), - [aux_sym_cmd_identifier_token15] = ACTIONS(1988), - [aux_sym_cmd_identifier_token16] = ACTIONS(1990), - [aux_sym_cmd_identifier_token17] = ACTIONS(1990), - [aux_sym_cmd_identifier_token18] = ACTIONS(1990), - [aux_sym_cmd_identifier_token19] = ACTIONS(1990), - [aux_sym_cmd_identifier_token20] = ACTIONS(1990), - [aux_sym_cmd_identifier_token21] = ACTIONS(1990), - [aux_sym_cmd_identifier_token22] = ACTIONS(1990), - [aux_sym_cmd_identifier_token23] = ACTIONS(1990), - [aux_sym_cmd_identifier_token24] = ACTIONS(1990), - [aux_sym_cmd_identifier_token25] = ACTIONS(1990), - [aux_sym_cmd_identifier_token26] = ACTIONS(1990), - [aux_sym_cmd_identifier_token27] = ACTIONS(1990), - [aux_sym_cmd_identifier_token28] = ACTIONS(1990), - [aux_sym_cmd_identifier_token29] = ACTIONS(1990), - [aux_sym_cmd_identifier_token30] = ACTIONS(1990), - [aux_sym_cmd_identifier_token31] = ACTIONS(1990), - [aux_sym_cmd_identifier_token32] = ACTIONS(1990), - [aux_sym_cmd_identifier_token33] = ACTIONS(1990), - [aux_sym_cmd_identifier_token34] = ACTIONS(1988), - [aux_sym_cmd_identifier_token35] = ACTIONS(1990), - [aux_sym_cmd_identifier_token36] = ACTIONS(1990), - [aux_sym_cmd_identifier_token37] = ACTIONS(1990), - [aux_sym_cmd_identifier_token38] = ACTIONS(1988), - [aux_sym_cmd_identifier_token39] = ACTIONS(1990), - [aux_sym_cmd_identifier_token40] = ACTIONS(1990), - [anon_sym_def] = ACTIONS(1988), - [anon_sym_export_DASHenv] = ACTIONS(1988), - [anon_sym_extern] = ACTIONS(1988), - [anon_sym_module] = ACTIONS(1988), - [anon_sym_use] = ACTIONS(1988), - [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_DOLLAR] = ACTIONS(1990), - [anon_sym_error] = ACTIONS(1988), - [anon_sym_DASH2] = ACTIONS(1988), - [anon_sym_break] = ACTIONS(1988), - [anon_sym_continue] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1988), - [anon_sym_in2] = ACTIONS(1988), - [anon_sym_loop] = ACTIONS(1988), - [anon_sym_make] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1988), - [anon_sym_do] = ACTIONS(1988), - [anon_sym_if] = ACTIONS(1988), - [anon_sym_else] = ACTIONS(1988), - [anon_sym_match] = ACTIONS(1988), - [anon_sym_RBRACE] = ACTIONS(1990), - [anon_sym_try] = ACTIONS(1988), - [anon_sym_catch] = ACTIONS(1988), - [anon_sym_return] = ACTIONS(1988), - [anon_sym_source] = ACTIONS(1988), - [anon_sym_source_DASHenv] = ACTIONS(1988), - [anon_sym_register] = ACTIONS(1988), - [anon_sym_hide] = ACTIONS(1988), - [anon_sym_hide_DASHenv] = ACTIONS(1988), - [anon_sym_overlay] = ACTIONS(1988), - [anon_sym_as] = ACTIONS(1988), - [anon_sym_PLUS2] = ACTIONS(1988), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1990), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1990), - [aux_sym__val_number_decimal_token1] = ACTIONS(1988), - [aux_sym__val_number_decimal_token2] = ACTIONS(1990), - [aux_sym__val_number_decimal_token3] = ACTIONS(1990), - [aux_sym__val_number_decimal_token4] = ACTIONS(1990), - [aux_sym__val_number_token1] = ACTIONS(1990), - [aux_sym__val_number_token2] = ACTIONS(1990), - [aux_sym__val_number_token3] = ACTIONS(1990), - [aux_sym__val_number_token4] = ACTIONS(1988), - [aux_sym__val_number_token5] = ACTIONS(1988), - [aux_sym__val_number_token6] = ACTIONS(1988), - [anon_sym_DQUOTE] = ACTIONS(1990), - [sym__str_single_quotes] = ACTIONS(1990), - [sym__str_back_ticks] = ACTIONS(1990), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1990), + [anon_sym_export] = ACTIONS(2486), + [anon_sym_alias] = ACTIONS(2486), + [anon_sym_let] = ACTIONS(2486), + [anon_sym_let_DASHenv] = ACTIONS(2486), + [anon_sym_mut] = ACTIONS(2486), + [anon_sym_const] = ACTIONS(2486), + [aux_sym_cmd_identifier_token1] = ACTIONS(2486), + [aux_sym_cmd_identifier_token2] = ACTIONS(2488), + [aux_sym_cmd_identifier_token3] = ACTIONS(2488), + [aux_sym_cmd_identifier_token4] = ACTIONS(2488), + [aux_sym_cmd_identifier_token5] = ACTIONS(2488), + [aux_sym_cmd_identifier_token6] = ACTIONS(2488), + [aux_sym_cmd_identifier_token7] = ACTIONS(2488), + [aux_sym_cmd_identifier_token8] = ACTIONS(2486), + [aux_sym_cmd_identifier_token9] = ACTIONS(2486), + [aux_sym_cmd_identifier_token10] = ACTIONS(2488), + [aux_sym_cmd_identifier_token11] = ACTIONS(2488), + [aux_sym_cmd_identifier_token12] = ACTIONS(2486), + [aux_sym_cmd_identifier_token13] = ACTIONS(2486), + [aux_sym_cmd_identifier_token14] = ACTIONS(2486), + [aux_sym_cmd_identifier_token15] = ACTIONS(2486), + [aux_sym_cmd_identifier_token16] = ACTIONS(2488), + [aux_sym_cmd_identifier_token17] = ACTIONS(2488), + [aux_sym_cmd_identifier_token18] = ACTIONS(2488), + [aux_sym_cmd_identifier_token19] = ACTIONS(2488), + [aux_sym_cmd_identifier_token20] = ACTIONS(2488), + [aux_sym_cmd_identifier_token21] = ACTIONS(2488), + [aux_sym_cmd_identifier_token22] = ACTIONS(2488), + [aux_sym_cmd_identifier_token23] = ACTIONS(2488), + [aux_sym_cmd_identifier_token24] = ACTIONS(2488), + [aux_sym_cmd_identifier_token25] = ACTIONS(2488), + [aux_sym_cmd_identifier_token26] = ACTIONS(2488), + [aux_sym_cmd_identifier_token27] = ACTIONS(2488), + [aux_sym_cmd_identifier_token28] = ACTIONS(2488), + [aux_sym_cmd_identifier_token29] = ACTIONS(2488), + [aux_sym_cmd_identifier_token30] = ACTIONS(2488), + [aux_sym_cmd_identifier_token31] = ACTIONS(2488), + [aux_sym_cmd_identifier_token32] = ACTIONS(2488), + [aux_sym_cmd_identifier_token33] = ACTIONS(2488), + [aux_sym_cmd_identifier_token34] = ACTIONS(2486), + [aux_sym_cmd_identifier_token35] = ACTIONS(2488), + [aux_sym_cmd_identifier_token36] = ACTIONS(2488), + [aux_sym_cmd_identifier_token37] = ACTIONS(2488), + [aux_sym_cmd_identifier_token38] = ACTIONS(2486), + [aux_sym_cmd_identifier_token39] = ACTIONS(2488), + [aux_sym_cmd_identifier_token40] = ACTIONS(2488), + [anon_sym_def] = ACTIONS(2486), + [anon_sym_export_DASHenv] = ACTIONS(2486), + [anon_sym_extern] = ACTIONS(2486), + [anon_sym_module] = ACTIONS(2486), + [anon_sym_use] = ACTIONS(2486), + [anon_sym_LPAREN] = ACTIONS(2488), + [anon_sym_DOLLAR] = ACTIONS(2488), + [anon_sym_error] = ACTIONS(2486), + [anon_sym_DASH2] = ACTIONS(2486), + [anon_sym_break] = ACTIONS(2486), + [anon_sym_continue] = ACTIONS(2486), + [anon_sym_for] = ACTIONS(2486), + [anon_sym_in2] = ACTIONS(2486), + [anon_sym_loop] = ACTIONS(2486), + [anon_sym_make] = ACTIONS(2486), + [anon_sym_while] = ACTIONS(2486), + [anon_sym_do] = ACTIONS(2486), + [anon_sym_if] = ACTIONS(2486), + [anon_sym_else] = ACTIONS(2486), + [anon_sym_match] = ACTIONS(2486), + [anon_sym_RBRACE] = ACTIONS(2488), + [anon_sym_try] = ACTIONS(2486), + [anon_sym_catch] = ACTIONS(2486), + [anon_sym_return] = ACTIONS(2486), + [anon_sym_source] = ACTIONS(2486), + [anon_sym_source_DASHenv] = ACTIONS(2486), + [anon_sym_register] = ACTIONS(2486), + [anon_sym_hide] = ACTIONS(2486), + [anon_sym_hide_DASHenv] = ACTIONS(2486), + [anon_sym_overlay] = ACTIONS(2486), + [anon_sym_as] = ACTIONS(2486), + [anon_sym_PLUS2] = ACTIONS(2486), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2488), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2488), + [aux_sym__val_number_decimal_token1] = ACTIONS(2486), + [aux_sym__val_number_decimal_token2] = ACTIONS(2488), + [aux_sym__val_number_decimal_token3] = ACTIONS(2488), + [aux_sym__val_number_decimal_token4] = ACTIONS(2488), + [aux_sym__val_number_token1] = ACTIONS(2488), + [aux_sym__val_number_token2] = ACTIONS(2488), + [aux_sym__val_number_token3] = ACTIONS(2488), + [aux_sym__val_number_token4] = ACTIONS(2486), + [aux_sym__val_number_token5] = ACTIONS(2486), + [aux_sym__val_number_token6] = ACTIONS(2486), + [anon_sym_DQUOTE] = ACTIONS(2488), + [sym__str_single_quotes] = ACTIONS(2488), + [sym__str_back_ticks] = ACTIONS(2488), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2488), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1990), + [sym_raw_string_begin] = ACTIONS(2488), }, [732] = { [sym_comment] = STATE(732), - [anon_sym_export] = ACTIONS(1992), - [anon_sym_alias] = ACTIONS(1992), - [anon_sym_let] = ACTIONS(1992), - [anon_sym_let_DASHenv] = ACTIONS(1992), - [anon_sym_mut] = ACTIONS(1992), - [anon_sym_const] = ACTIONS(1992), - [aux_sym_cmd_identifier_token1] = ACTIONS(1992), - [aux_sym_cmd_identifier_token2] = ACTIONS(1994), - [aux_sym_cmd_identifier_token3] = ACTIONS(1994), - [aux_sym_cmd_identifier_token4] = ACTIONS(1994), - [aux_sym_cmd_identifier_token5] = ACTIONS(1994), - [aux_sym_cmd_identifier_token6] = ACTIONS(1994), - [aux_sym_cmd_identifier_token7] = ACTIONS(1994), - [aux_sym_cmd_identifier_token8] = ACTIONS(1992), - [aux_sym_cmd_identifier_token9] = ACTIONS(1992), - [aux_sym_cmd_identifier_token10] = ACTIONS(1994), - [aux_sym_cmd_identifier_token11] = ACTIONS(1994), - [aux_sym_cmd_identifier_token12] = ACTIONS(1992), - [aux_sym_cmd_identifier_token13] = ACTIONS(1992), - [aux_sym_cmd_identifier_token14] = ACTIONS(1992), - [aux_sym_cmd_identifier_token15] = ACTIONS(1992), - [aux_sym_cmd_identifier_token16] = ACTIONS(1994), - [aux_sym_cmd_identifier_token17] = ACTIONS(1994), - [aux_sym_cmd_identifier_token18] = ACTIONS(1994), - [aux_sym_cmd_identifier_token19] = ACTIONS(1994), - [aux_sym_cmd_identifier_token20] = ACTIONS(1994), - [aux_sym_cmd_identifier_token21] = ACTIONS(1994), - [aux_sym_cmd_identifier_token22] = ACTIONS(1994), - [aux_sym_cmd_identifier_token23] = ACTIONS(1994), - [aux_sym_cmd_identifier_token24] = ACTIONS(1994), - [aux_sym_cmd_identifier_token25] = ACTIONS(1994), - [aux_sym_cmd_identifier_token26] = ACTIONS(1994), - [aux_sym_cmd_identifier_token27] = ACTIONS(1994), - [aux_sym_cmd_identifier_token28] = ACTIONS(1994), - [aux_sym_cmd_identifier_token29] = ACTIONS(1994), - [aux_sym_cmd_identifier_token30] = ACTIONS(1994), - [aux_sym_cmd_identifier_token31] = ACTIONS(1994), - [aux_sym_cmd_identifier_token32] = ACTIONS(1994), - [aux_sym_cmd_identifier_token33] = ACTIONS(1994), - [aux_sym_cmd_identifier_token34] = ACTIONS(1992), - [aux_sym_cmd_identifier_token35] = ACTIONS(1994), - [aux_sym_cmd_identifier_token36] = ACTIONS(1994), - [aux_sym_cmd_identifier_token37] = ACTIONS(1994), - [aux_sym_cmd_identifier_token38] = ACTIONS(1992), - [aux_sym_cmd_identifier_token39] = ACTIONS(1994), - [aux_sym_cmd_identifier_token40] = ACTIONS(1994), - [anon_sym_def] = ACTIONS(1992), - [anon_sym_export_DASHenv] = ACTIONS(1992), - [anon_sym_extern] = ACTIONS(1992), - [anon_sym_module] = ACTIONS(1992), - [anon_sym_use] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1994), - [anon_sym_DOLLAR] = ACTIONS(1994), - [anon_sym_error] = ACTIONS(1992), - [anon_sym_DASH2] = ACTIONS(1992), - [anon_sym_break] = ACTIONS(1992), - [anon_sym_continue] = ACTIONS(1992), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_in2] = ACTIONS(1992), - [anon_sym_loop] = ACTIONS(1992), - [anon_sym_make] = ACTIONS(1992), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_do] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(1992), - [anon_sym_match] = ACTIONS(1992), - [anon_sym_RBRACE] = ACTIONS(1994), - [anon_sym_try] = ACTIONS(1992), - [anon_sym_catch] = ACTIONS(1992), - [anon_sym_return] = ACTIONS(1992), - [anon_sym_source] = ACTIONS(1992), - [anon_sym_source_DASHenv] = ACTIONS(1992), - [anon_sym_register] = ACTIONS(1992), - [anon_sym_hide] = ACTIONS(1992), - [anon_sym_hide_DASHenv] = ACTIONS(1992), - [anon_sym_overlay] = ACTIONS(1992), - [anon_sym_as] = ACTIONS(1992), - [anon_sym_PLUS2] = ACTIONS(1992), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1994), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1994), - [aux_sym__val_number_decimal_token1] = ACTIONS(1992), - [aux_sym__val_number_decimal_token2] = ACTIONS(1994), - [aux_sym__val_number_decimal_token3] = ACTIONS(1994), - [aux_sym__val_number_decimal_token4] = ACTIONS(1994), - [aux_sym__val_number_token1] = ACTIONS(1994), - [aux_sym__val_number_token2] = ACTIONS(1994), - [aux_sym__val_number_token3] = ACTIONS(1994), - [aux_sym__val_number_token4] = ACTIONS(1992), - [aux_sym__val_number_token5] = ACTIONS(1992), - [aux_sym__val_number_token6] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1994), - [sym__str_single_quotes] = ACTIONS(1994), - [sym__str_back_ticks] = ACTIONS(1994), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1994), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1994), + [anon_sym_export] = ACTIONS(2510), + [anon_sym_alias] = ACTIONS(2510), + [anon_sym_let] = ACTIONS(2510), + [anon_sym_let_DASHenv] = ACTIONS(2510), + [anon_sym_mut] = ACTIONS(2510), + [anon_sym_const] = ACTIONS(2510), + [aux_sym_cmd_identifier_token1] = ACTIONS(2510), + [aux_sym_cmd_identifier_token2] = ACTIONS(2512), + [aux_sym_cmd_identifier_token3] = ACTIONS(2512), + [aux_sym_cmd_identifier_token4] = ACTIONS(2512), + [aux_sym_cmd_identifier_token5] = ACTIONS(2512), + [aux_sym_cmd_identifier_token6] = ACTIONS(2512), + [aux_sym_cmd_identifier_token7] = ACTIONS(2512), + [aux_sym_cmd_identifier_token8] = ACTIONS(2510), + [aux_sym_cmd_identifier_token9] = ACTIONS(2510), + [aux_sym_cmd_identifier_token10] = ACTIONS(2512), + [aux_sym_cmd_identifier_token11] = ACTIONS(2512), + [aux_sym_cmd_identifier_token12] = ACTIONS(2510), + [aux_sym_cmd_identifier_token13] = ACTIONS(2510), + [aux_sym_cmd_identifier_token14] = ACTIONS(2510), + [aux_sym_cmd_identifier_token15] = ACTIONS(2510), + [aux_sym_cmd_identifier_token16] = ACTIONS(2512), + [aux_sym_cmd_identifier_token17] = ACTIONS(2512), + [aux_sym_cmd_identifier_token18] = ACTIONS(2512), + [aux_sym_cmd_identifier_token19] = ACTIONS(2512), + [aux_sym_cmd_identifier_token20] = ACTIONS(2512), + [aux_sym_cmd_identifier_token21] = ACTIONS(2512), + [aux_sym_cmd_identifier_token22] = ACTIONS(2512), + [aux_sym_cmd_identifier_token23] = ACTIONS(2512), + [aux_sym_cmd_identifier_token24] = ACTIONS(2512), + [aux_sym_cmd_identifier_token25] = ACTIONS(2512), + [aux_sym_cmd_identifier_token26] = ACTIONS(2512), + [aux_sym_cmd_identifier_token27] = ACTIONS(2512), + [aux_sym_cmd_identifier_token28] = ACTIONS(2512), + [aux_sym_cmd_identifier_token29] = ACTIONS(2512), + [aux_sym_cmd_identifier_token30] = ACTIONS(2512), + [aux_sym_cmd_identifier_token31] = ACTIONS(2512), + [aux_sym_cmd_identifier_token32] = ACTIONS(2512), + [aux_sym_cmd_identifier_token33] = ACTIONS(2512), + [aux_sym_cmd_identifier_token34] = ACTIONS(2510), + [aux_sym_cmd_identifier_token35] = ACTIONS(2512), + [aux_sym_cmd_identifier_token36] = ACTIONS(2512), + [aux_sym_cmd_identifier_token37] = ACTIONS(2512), + [aux_sym_cmd_identifier_token38] = ACTIONS(2510), + [aux_sym_cmd_identifier_token39] = ACTIONS(2512), + [aux_sym_cmd_identifier_token40] = ACTIONS(2512), + [anon_sym_def] = ACTIONS(2510), + [anon_sym_export_DASHenv] = ACTIONS(2510), + [anon_sym_extern] = ACTIONS(2510), + [anon_sym_module] = ACTIONS(2510), + [anon_sym_use] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(2512), + [anon_sym_DOLLAR] = ACTIONS(2512), + [anon_sym_error] = ACTIONS(2510), + [anon_sym_DASH2] = ACTIONS(2510), + [anon_sym_break] = ACTIONS(2510), + [anon_sym_continue] = ACTIONS(2510), + [anon_sym_for] = ACTIONS(2510), + [anon_sym_in2] = ACTIONS(2510), + [anon_sym_loop] = ACTIONS(2510), + [anon_sym_make] = ACTIONS(2510), + [anon_sym_while] = ACTIONS(2510), + [anon_sym_do] = ACTIONS(2510), + [anon_sym_if] = ACTIONS(2510), + [anon_sym_else] = ACTIONS(2510), + [anon_sym_match] = ACTIONS(2510), + [anon_sym_RBRACE] = ACTIONS(2512), + [anon_sym_try] = ACTIONS(2510), + [anon_sym_catch] = ACTIONS(2510), + [anon_sym_return] = ACTIONS(2510), + [anon_sym_source] = ACTIONS(2510), + [anon_sym_source_DASHenv] = ACTIONS(2510), + [anon_sym_register] = ACTIONS(2510), + [anon_sym_hide] = ACTIONS(2510), + [anon_sym_hide_DASHenv] = ACTIONS(2510), + [anon_sym_overlay] = ACTIONS(2510), + [anon_sym_as] = ACTIONS(2510), + [anon_sym_PLUS2] = ACTIONS(2510), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2512), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2512), + [aux_sym__val_number_decimal_token1] = ACTIONS(2510), + [aux_sym__val_number_decimal_token2] = ACTIONS(2512), + [aux_sym__val_number_decimal_token3] = ACTIONS(2512), + [aux_sym__val_number_decimal_token4] = ACTIONS(2512), + [aux_sym__val_number_token1] = ACTIONS(2512), + [aux_sym__val_number_token2] = ACTIONS(2512), + [aux_sym__val_number_token3] = ACTIONS(2512), + [aux_sym__val_number_token4] = ACTIONS(2510), + [aux_sym__val_number_token5] = ACTIONS(2510), + [aux_sym__val_number_token6] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [sym__str_single_quotes] = ACTIONS(2512), + [sym__str_back_ticks] = ACTIONS(2512), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2512), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2512), }, [733] = { [sym_comment] = STATE(733), - [anon_sym_export] = ACTIONS(2437), - [anon_sym_alias] = ACTIONS(2437), - [anon_sym_let] = ACTIONS(2437), - [anon_sym_let_DASHenv] = ACTIONS(2437), - [anon_sym_mut] = ACTIONS(2437), - [anon_sym_const] = ACTIONS(2437), - [aux_sym_cmd_identifier_token1] = ACTIONS(2437), - [aux_sym_cmd_identifier_token2] = ACTIONS(2439), - [aux_sym_cmd_identifier_token3] = ACTIONS(2439), - [aux_sym_cmd_identifier_token4] = ACTIONS(2439), - [aux_sym_cmd_identifier_token5] = ACTIONS(2439), - [aux_sym_cmd_identifier_token6] = ACTIONS(2439), - [aux_sym_cmd_identifier_token7] = ACTIONS(2439), - [aux_sym_cmd_identifier_token8] = ACTIONS(2437), - [aux_sym_cmd_identifier_token9] = ACTIONS(2437), - [aux_sym_cmd_identifier_token10] = ACTIONS(2439), - [aux_sym_cmd_identifier_token11] = ACTIONS(2439), - [aux_sym_cmd_identifier_token12] = ACTIONS(2437), - [aux_sym_cmd_identifier_token13] = ACTIONS(2437), - [aux_sym_cmd_identifier_token14] = ACTIONS(2437), - [aux_sym_cmd_identifier_token15] = ACTIONS(2437), - [aux_sym_cmd_identifier_token16] = ACTIONS(2439), - [aux_sym_cmd_identifier_token17] = ACTIONS(2439), - [aux_sym_cmd_identifier_token18] = ACTIONS(2439), - [aux_sym_cmd_identifier_token19] = ACTIONS(2439), - [aux_sym_cmd_identifier_token20] = ACTIONS(2439), - [aux_sym_cmd_identifier_token21] = ACTIONS(2439), - [aux_sym_cmd_identifier_token22] = ACTIONS(2439), - [aux_sym_cmd_identifier_token23] = ACTIONS(2439), - [aux_sym_cmd_identifier_token24] = ACTIONS(2439), - [aux_sym_cmd_identifier_token25] = ACTIONS(2439), - [aux_sym_cmd_identifier_token26] = ACTIONS(2439), - [aux_sym_cmd_identifier_token27] = ACTIONS(2439), - [aux_sym_cmd_identifier_token28] = ACTIONS(2439), - [aux_sym_cmd_identifier_token29] = ACTIONS(2439), - [aux_sym_cmd_identifier_token30] = ACTIONS(2439), - [aux_sym_cmd_identifier_token31] = ACTIONS(2439), - [aux_sym_cmd_identifier_token32] = ACTIONS(2439), - [aux_sym_cmd_identifier_token33] = ACTIONS(2439), - [aux_sym_cmd_identifier_token34] = ACTIONS(2437), - [aux_sym_cmd_identifier_token35] = ACTIONS(2439), - [aux_sym_cmd_identifier_token36] = ACTIONS(2439), - [aux_sym_cmd_identifier_token37] = ACTIONS(2439), - [aux_sym_cmd_identifier_token38] = ACTIONS(2437), - [aux_sym_cmd_identifier_token39] = ACTIONS(2439), - [aux_sym_cmd_identifier_token40] = ACTIONS(2439), - [anon_sym_def] = ACTIONS(2437), - [anon_sym_export_DASHenv] = ACTIONS(2437), - [anon_sym_extern] = ACTIONS(2437), - [anon_sym_module] = ACTIONS(2437), - [anon_sym_use] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_DOLLAR] = ACTIONS(2439), - [anon_sym_error] = ACTIONS(2437), - [anon_sym_DASH2] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_in2] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_make] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_else] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2439), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_catch] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_source] = ACTIONS(2437), - [anon_sym_source_DASHenv] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_hide] = ACTIONS(2437), - [anon_sym_hide_DASHenv] = ACTIONS(2437), - [anon_sym_overlay] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_PLUS2] = ACTIONS(2437), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2439), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2439), - [aux_sym__val_number_decimal_token1] = ACTIONS(2437), - [aux_sym__val_number_decimal_token2] = ACTIONS(2439), - [aux_sym__val_number_decimal_token3] = ACTIONS(2439), - [aux_sym__val_number_decimal_token4] = ACTIONS(2439), - [aux_sym__val_number_token1] = ACTIONS(2439), - [aux_sym__val_number_token2] = ACTIONS(2439), - [aux_sym__val_number_token3] = ACTIONS(2439), - [aux_sym__val_number_token4] = ACTIONS(2437), - [aux_sym__val_number_token5] = ACTIONS(2437), - [aux_sym__val_number_token6] = ACTIONS(2437), - [anon_sym_DQUOTE] = ACTIONS(2439), - [sym__str_single_quotes] = ACTIONS(2439), - [sym__str_back_ticks] = ACTIONS(2439), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2439), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2439), + [anon_sym_export] = ACTIONS(2402), + [anon_sym_alias] = ACTIONS(2402), + [anon_sym_let] = ACTIONS(2402), + [anon_sym_let_DASHenv] = ACTIONS(2402), + [anon_sym_mut] = ACTIONS(2402), + [anon_sym_const] = ACTIONS(2402), + [aux_sym_cmd_identifier_token1] = ACTIONS(2402), + [aux_sym_cmd_identifier_token2] = ACTIONS(2404), + [aux_sym_cmd_identifier_token3] = ACTIONS(2404), + [aux_sym_cmd_identifier_token4] = ACTIONS(2404), + [aux_sym_cmd_identifier_token5] = ACTIONS(2404), + [aux_sym_cmd_identifier_token6] = ACTIONS(2404), + [aux_sym_cmd_identifier_token7] = ACTIONS(2404), + [aux_sym_cmd_identifier_token8] = ACTIONS(2402), + [aux_sym_cmd_identifier_token9] = ACTIONS(2402), + [aux_sym_cmd_identifier_token10] = ACTIONS(2404), + [aux_sym_cmd_identifier_token11] = ACTIONS(2404), + [aux_sym_cmd_identifier_token12] = ACTIONS(2402), + [aux_sym_cmd_identifier_token13] = ACTIONS(2402), + [aux_sym_cmd_identifier_token14] = ACTIONS(2402), + [aux_sym_cmd_identifier_token15] = ACTIONS(2402), + [aux_sym_cmd_identifier_token16] = ACTIONS(2404), + [aux_sym_cmd_identifier_token17] = ACTIONS(2404), + [aux_sym_cmd_identifier_token18] = ACTIONS(2404), + [aux_sym_cmd_identifier_token19] = ACTIONS(2404), + [aux_sym_cmd_identifier_token20] = ACTIONS(2404), + [aux_sym_cmd_identifier_token21] = ACTIONS(2404), + [aux_sym_cmd_identifier_token22] = ACTIONS(2404), + [aux_sym_cmd_identifier_token23] = ACTIONS(2404), + [aux_sym_cmd_identifier_token24] = ACTIONS(2404), + [aux_sym_cmd_identifier_token25] = ACTIONS(2404), + [aux_sym_cmd_identifier_token26] = ACTIONS(2404), + [aux_sym_cmd_identifier_token27] = ACTIONS(2404), + [aux_sym_cmd_identifier_token28] = ACTIONS(2404), + [aux_sym_cmd_identifier_token29] = ACTIONS(2404), + [aux_sym_cmd_identifier_token30] = ACTIONS(2404), + [aux_sym_cmd_identifier_token31] = ACTIONS(2404), + [aux_sym_cmd_identifier_token32] = ACTIONS(2404), + [aux_sym_cmd_identifier_token33] = ACTIONS(2404), + [aux_sym_cmd_identifier_token34] = ACTIONS(2402), + [aux_sym_cmd_identifier_token35] = ACTIONS(2404), + [aux_sym_cmd_identifier_token36] = ACTIONS(2404), + [aux_sym_cmd_identifier_token37] = ACTIONS(2404), + [aux_sym_cmd_identifier_token38] = ACTIONS(2402), + [aux_sym_cmd_identifier_token39] = ACTIONS(2404), + [aux_sym_cmd_identifier_token40] = ACTIONS(2404), + [anon_sym_def] = ACTIONS(2402), + [anon_sym_export_DASHenv] = ACTIONS(2402), + [anon_sym_extern] = ACTIONS(2402), + [anon_sym_module] = ACTIONS(2402), + [anon_sym_use] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2404), + [anon_sym_DOLLAR] = ACTIONS(2404), + [anon_sym_error] = ACTIONS(2402), + [anon_sym_DASH2] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_in2] = ACTIONS(2402), + [anon_sym_loop] = ACTIONS(2402), + [anon_sym_make] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_do] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_else] = ACTIONS(2402), + [anon_sym_match] = ACTIONS(2402), + [anon_sym_RBRACE] = ACTIONS(2404), + [anon_sym_try] = ACTIONS(2402), + [anon_sym_catch] = ACTIONS(2402), + [anon_sym_return] = ACTIONS(2402), + [anon_sym_source] = ACTIONS(2402), + [anon_sym_source_DASHenv] = ACTIONS(2402), + [anon_sym_register] = ACTIONS(2402), + [anon_sym_hide] = ACTIONS(2402), + [anon_sym_hide_DASHenv] = ACTIONS(2402), + [anon_sym_overlay] = ACTIONS(2402), + [anon_sym_as] = ACTIONS(2402), + [anon_sym_PLUS2] = ACTIONS(2402), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2404), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2404), + [aux_sym__val_number_decimal_token1] = ACTIONS(2402), + [aux_sym__val_number_decimal_token2] = ACTIONS(2404), + [aux_sym__val_number_decimal_token3] = ACTIONS(2404), + [aux_sym__val_number_decimal_token4] = ACTIONS(2404), + [aux_sym__val_number_token1] = ACTIONS(2404), + [aux_sym__val_number_token2] = ACTIONS(2404), + [aux_sym__val_number_token3] = ACTIONS(2404), + [aux_sym__val_number_token4] = ACTIONS(2402), + [aux_sym__val_number_token5] = ACTIONS(2402), + [aux_sym__val_number_token6] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(2404), + [sym__str_single_quotes] = ACTIONS(2404), + [sym__str_back_ticks] = ACTIONS(2404), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2404), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2404), }, [734] = { [sym_comment] = STATE(734), - [anon_sym_export] = ACTIONS(2004), - [anon_sym_alias] = ACTIONS(2004), - [anon_sym_let] = ACTIONS(2004), - [anon_sym_let_DASHenv] = ACTIONS(2004), - [anon_sym_mut] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2004), - [aux_sym_cmd_identifier_token1] = ACTIONS(2004), - [aux_sym_cmd_identifier_token2] = ACTIONS(2006), - [aux_sym_cmd_identifier_token3] = ACTIONS(2006), - [aux_sym_cmd_identifier_token4] = ACTIONS(2006), - [aux_sym_cmd_identifier_token5] = ACTIONS(2006), - [aux_sym_cmd_identifier_token6] = ACTIONS(2006), - [aux_sym_cmd_identifier_token7] = ACTIONS(2006), - [aux_sym_cmd_identifier_token8] = ACTIONS(2004), - [aux_sym_cmd_identifier_token9] = ACTIONS(2004), - [aux_sym_cmd_identifier_token10] = ACTIONS(2006), - [aux_sym_cmd_identifier_token11] = ACTIONS(2006), - [aux_sym_cmd_identifier_token12] = ACTIONS(2004), - [aux_sym_cmd_identifier_token13] = ACTIONS(2004), - [aux_sym_cmd_identifier_token14] = ACTIONS(2004), - [aux_sym_cmd_identifier_token15] = ACTIONS(2004), - [aux_sym_cmd_identifier_token16] = ACTIONS(2006), - [aux_sym_cmd_identifier_token17] = ACTIONS(2006), - [aux_sym_cmd_identifier_token18] = ACTIONS(2006), - [aux_sym_cmd_identifier_token19] = ACTIONS(2006), - [aux_sym_cmd_identifier_token20] = ACTIONS(2006), - [aux_sym_cmd_identifier_token21] = ACTIONS(2006), - [aux_sym_cmd_identifier_token22] = ACTIONS(2006), - [aux_sym_cmd_identifier_token23] = ACTIONS(2006), - [aux_sym_cmd_identifier_token24] = ACTIONS(2006), - [aux_sym_cmd_identifier_token25] = ACTIONS(2006), - [aux_sym_cmd_identifier_token26] = ACTIONS(2006), - [aux_sym_cmd_identifier_token27] = ACTIONS(2006), - [aux_sym_cmd_identifier_token28] = ACTIONS(2006), - [aux_sym_cmd_identifier_token29] = ACTIONS(2006), - [aux_sym_cmd_identifier_token30] = ACTIONS(2006), - [aux_sym_cmd_identifier_token31] = ACTIONS(2006), - [aux_sym_cmd_identifier_token32] = ACTIONS(2006), - [aux_sym_cmd_identifier_token33] = ACTIONS(2006), - [aux_sym_cmd_identifier_token34] = ACTIONS(2004), - [aux_sym_cmd_identifier_token35] = ACTIONS(2006), - [aux_sym_cmd_identifier_token36] = ACTIONS(2006), - [aux_sym_cmd_identifier_token37] = ACTIONS(2006), - [aux_sym_cmd_identifier_token38] = ACTIONS(2004), - [aux_sym_cmd_identifier_token39] = ACTIONS(2006), - [aux_sym_cmd_identifier_token40] = ACTIONS(2006), - [anon_sym_def] = ACTIONS(2004), - [anon_sym_export_DASHenv] = ACTIONS(2004), - [anon_sym_extern] = ACTIONS(2004), - [anon_sym_module] = ACTIONS(2004), - [anon_sym_use] = ACTIONS(2004), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_DOLLAR] = ACTIONS(2006), - [anon_sym_error] = ACTIONS(2004), - [anon_sym_DASH2] = ACTIONS(2004), - [anon_sym_break] = ACTIONS(2004), - [anon_sym_continue] = ACTIONS(2004), - [anon_sym_for] = ACTIONS(2004), - [anon_sym_in2] = ACTIONS(2004), - [anon_sym_loop] = ACTIONS(2004), - [anon_sym_make] = ACTIONS(2004), - [anon_sym_while] = ACTIONS(2004), - [anon_sym_do] = ACTIONS(2004), - [anon_sym_if] = ACTIONS(2004), - [anon_sym_else] = ACTIONS(2004), - [anon_sym_match] = ACTIONS(2004), - [anon_sym_RBRACE] = ACTIONS(2006), - [anon_sym_try] = ACTIONS(2004), - [anon_sym_catch] = ACTIONS(2004), - [anon_sym_return] = ACTIONS(2004), - [anon_sym_source] = ACTIONS(2004), - [anon_sym_source_DASHenv] = ACTIONS(2004), - [anon_sym_register] = ACTIONS(2004), - [anon_sym_hide] = ACTIONS(2004), - [anon_sym_hide_DASHenv] = ACTIONS(2004), - [anon_sym_overlay] = ACTIONS(2004), - [anon_sym_as] = ACTIONS(2004), - [anon_sym_PLUS2] = ACTIONS(2004), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2006), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2006), - [aux_sym__val_number_decimal_token1] = ACTIONS(2004), - [aux_sym__val_number_decimal_token2] = ACTIONS(2006), - [aux_sym__val_number_decimal_token3] = ACTIONS(2006), - [aux_sym__val_number_decimal_token4] = ACTIONS(2006), - [aux_sym__val_number_token1] = ACTIONS(2006), - [aux_sym__val_number_token2] = ACTIONS(2006), - [aux_sym__val_number_token3] = ACTIONS(2006), - [aux_sym__val_number_token4] = ACTIONS(2004), - [aux_sym__val_number_token5] = ACTIONS(2004), - [aux_sym__val_number_token6] = ACTIONS(2004), - [anon_sym_DQUOTE] = ACTIONS(2006), - [sym__str_single_quotes] = ACTIONS(2006), - [sym__str_back_ticks] = ACTIONS(2006), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2006), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2006), + [anon_sym_export] = ACTIONS(2347), + [anon_sym_alias] = ACTIONS(2347), + [anon_sym_let] = ACTIONS(2347), + [anon_sym_let_DASHenv] = ACTIONS(2347), + [anon_sym_mut] = ACTIONS(2347), + [anon_sym_const] = ACTIONS(2347), + [aux_sym_cmd_identifier_token1] = ACTIONS(2347), + [aux_sym_cmd_identifier_token2] = ACTIONS(2349), + [aux_sym_cmd_identifier_token3] = ACTIONS(2349), + [aux_sym_cmd_identifier_token4] = ACTIONS(2349), + [aux_sym_cmd_identifier_token5] = ACTIONS(2349), + [aux_sym_cmd_identifier_token6] = ACTIONS(2349), + [aux_sym_cmd_identifier_token7] = ACTIONS(2349), + [aux_sym_cmd_identifier_token8] = ACTIONS(2347), + [aux_sym_cmd_identifier_token9] = ACTIONS(2347), + [aux_sym_cmd_identifier_token10] = ACTIONS(2349), + [aux_sym_cmd_identifier_token11] = ACTIONS(2349), + [aux_sym_cmd_identifier_token12] = ACTIONS(2347), + [aux_sym_cmd_identifier_token13] = ACTIONS(2347), + [aux_sym_cmd_identifier_token14] = ACTIONS(2347), + [aux_sym_cmd_identifier_token15] = ACTIONS(2347), + [aux_sym_cmd_identifier_token16] = ACTIONS(2349), + [aux_sym_cmd_identifier_token17] = ACTIONS(2349), + [aux_sym_cmd_identifier_token18] = ACTIONS(2349), + [aux_sym_cmd_identifier_token19] = ACTIONS(2349), + [aux_sym_cmd_identifier_token20] = ACTIONS(2349), + [aux_sym_cmd_identifier_token21] = ACTIONS(2349), + [aux_sym_cmd_identifier_token22] = ACTIONS(2349), + [aux_sym_cmd_identifier_token23] = ACTIONS(2349), + [aux_sym_cmd_identifier_token24] = ACTIONS(2349), + [aux_sym_cmd_identifier_token25] = ACTIONS(2349), + [aux_sym_cmd_identifier_token26] = ACTIONS(2349), + [aux_sym_cmd_identifier_token27] = ACTIONS(2349), + [aux_sym_cmd_identifier_token28] = ACTIONS(2349), + [aux_sym_cmd_identifier_token29] = ACTIONS(2349), + [aux_sym_cmd_identifier_token30] = ACTIONS(2349), + [aux_sym_cmd_identifier_token31] = ACTIONS(2349), + [aux_sym_cmd_identifier_token32] = ACTIONS(2349), + [aux_sym_cmd_identifier_token33] = ACTIONS(2349), + [aux_sym_cmd_identifier_token34] = ACTIONS(2347), + [aux_sym_cmd_identifier_token35] = ACTIONS(2349), + [aux_sym_cmd_identifier_token36] = ACTIONS(2349), + [aux_sym_cmd_identifier_token37] = ACTIONS(2349), + [aux_sym_cmd_identifier_token38] = ACTIONS(2347), + [aux_sym_cmd_identifier_token39] = ACTIONS(2349), + [aux_sym_cmd_identifier_token40] = ACTIONS(2349), + [anon_sym_def] = ACTIONS(2347), + [anon_sym_export_DASHenv] = ACTIONS(2347), + [anon_sym_extern] = ACTIONS(2347), + [anon_sym_module] = ACTIONS(2347), + [anon_sym_use] = ACTIONS(2347), + [anon_sym_LPAREN] = ACTIONS(2349), + [anon_sym_DOLLAR] = ACTIONS(2349), + [anon_sym_error] = ACTIONS(2347), + [anon_sym_DASH2] = ACTIONS(2347), + [anon_sym_break] = ACTIONS(2347), + [anon_sym_continue] = ACTIONS(2347), + [anon_sym_for] = ACTIONS(2347), + [anon_sym_in2] = ACTIONS(2347), + [anon_sym_loop] = ACTIONS(2347), + [anon_sym_make] = ACTIONS(2347), + [anon_sym_while] = ACTIONS(2347), + [anon_sym_do] = ACTIONS(2347), + [anon_sym_if] = ACTIONS(2347), + [anon_sym_else] = ACTIONS(2347), + [anon_sym_match] = ACTIONS(2347), + [anon_sym_RBRACE] = ACTIONS(2349), + [anon_sym_try] = ACTIONS(2347), + [anon_sym_catch] = ACTIONS(2347), + [anon_sym_return] = ACTIONS(2347), + [anon_sym_source] = ACTIONS(2347), + [anon_sym_source_DASHenv] = ACTIONS(2347), + [anon_sym_register] = ACTIONS(2347), + [anon_sym_hide] = ACTIONS(2347), + [anon_sym_hide_DASHenv] = ACTIONS(2347), + [anon_sym_overlay] = ACTIONS(2347), + [anon_sym_as] = ACTIONS(2347), + [anon_sym_PLUS2] = ACTIONS(2347), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2349), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2349), + [aux_sym__val_number_decimal_token1] = ACTIONS(2347), + [aux_sym__val_number_decimal_token2] = ACTIONS(2349), + [aux_sym__val_number_decimal_token3] = ACTIONS(2349), + [aux_sym__val_number_decimal_token4] = ACTIONS(2349), + [aux_sym__val_number_token1] = ACTIONS(2349), + [aux_sym__val_number_token2] = ACTIONS(2349), + [aux_sym__val_number_token3] = ACTIONS(2349), + [aux_sym__val_number_token4] = ACTIONS(2347), + [aux_sym__val_number_token5] = ACTIONS(2347), + [aux_sym__val_number_token6] = ACTIONS(2347), + [anon_sym_DQUOTE] = ACTIONS(2349), + [sym__str_single_quotes] = ACTIONS(2349), + [sym__str_back_ticks] = ACTIONS(2349), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2349), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2349), }, [735] = { [sym_comment] = STATE(735), - [anon_sym_export] = ACTIONS(2456), - [anon_sym_alias] = ACTIONS(2456), - [anon_sym_let] = ACTIONS(2456), - [anon_sym_let_DASHenv] = ACTIONS(2456), - [anon_sym_mut] = ACTIONS(2456), - [anon_sym_const] = ACTIONS(2456), - [aux_sym_cmd_identifier_token1] = ACTIONS(2456), - [aux_sym_cmd_identifier_token2] = ACTIONS(2458), - [aux_sym_cmd_identifier_token3] = ACTIONS(2458), - [aux_sym_cmd_identifier_token4] = ACTIONS(2458), - [aux_sym_cmd_identifier_token5] = ACTIONS(2458), - [aux_sym_cmd_identifier_token6] = ACTIONS(2458), - [aux_sym_cmd_identifier_token7] = ACTIONS(2458), - [aux_sym_cmd_identifier_token8] = ACTIONS(2456), - [aux_sym_cmd_identifier_token9] = ACTIONS(2456), - [aux_sym_cmd_identifier_token10] = ACTIONS(2458), - [aux_sym_cmd_identifier_token11] = ACTIONS(2458), - [aux_sym_cmd_identifier_token12] = ACTIONS(2456), - [aux_sym_cmd_identifier_token13] = ACTIONS(2456), - [aux_sym_cmd_identifier_token14] = ACTIONS(2456), - [aux_sym_cmd_identifier_token15] = ACTIONS(2456), - [aux_sym_cmd_identifier_token16] = ACTIONS(2458), - [aux_sym_cmd_identifier_token17] = ACTIONS(2458), - [aux_sym_cmd_identifier_token18] = ACTIONS(2458), - [aux_sym_cmd_identifier_token19] = ACTIONS(2458), - [aux_sym_cmd_identifier_token20] = ACTIONS(2458), - [aux_sym_cmd_identifier_token21] = ACTIONS(2458), - [aux_sym_cmd_identifier_token22] = ACTIONS(2458), - [aux_sym_cmd_identifier_token23] = ACTIONS(2458), - [aux_sym_cmd_identifier_token24] = ACTIONS(2458), - [aux_sym_cmd_identifier_token25] = ACTIONS(2458), - [aux_sym_cmd_identifier_token26] = ACTIONS(2458), - [aux_sym_cmd_identifier_token27] = ACTIONS(2458), - [aux_sym_cmd_identifier_token28] = ACTIONS(2458), - [aux_sym_cmd_identifier_token29] = ACTIONS(2458), - [aux_sym_cmd_identifier_token30] = ACTIONS(2458), - [aux_sym_cmd_identifier_token31] = ACTIONS(2458), - [aux_sym_cmd_identifier_token32] = ACTIONS(2458), - [aux_sym_cmd_identifier_token33] = ACTIONS(2458), - [aux_sym_cmd_identifier_token34] = ACTIONS(2456), - [aux_sym_cmd_identifier_token35] = ACTIONS(2458), - [aux_sym_cmd_identifier_token36] = ACTIONS(2458), - [aux_sym_cmd_identifier_token37] = ACTIONS(2458), - [aux_sym_cmd_identifier_token38] = ACTIONS(2456), - [aux_sym_cmd_identifier_token39] = ACTIONS(2458), - [aux_sym_cmd_identifier_token40] = ACTIONS(2458), - [anon_sym_def] = ACTIONS(2456), - [anon_sym_export_DASHenv] = ACTIONS(2456), - [anon_sym_extern] = ACTIONS(2456), - [anon_sym_module] = ACTIONS(2456), - [anon_sym_use] = ACTIONS(2456), - [anon_sym_LPAREN] = ACTIONS(2458), - [anon_sym_DOLLAR] = ACTIONS(2458), - [anon_sym_error] = ACTIONS(2456), - [anon_sym_DASH2] = ACTIONS(2456), - [anon_sym_break] = ACTIONS(2456), - [anon_sym_continue] = ACTIONS(2456), - [anon_sym_for] = ACTIONS(2456), - [anon_sym_in2] = ACTIONS(2456), - [anon_sym_loop] = ACTIONS(2456), - [anon_sym_make] = ACTIONS(2456), - [anon_sym_while] = ACTIONS(2456), - [anon_sym_do] = ACTIONS(2456), - [anon_sym_if] = ACTIONS(2456), - [anon_sym_else] = ACTIONS(2456), - [anon_sym_match] = ACTIONS(2456), - [anon_sym_RBRACE] = ACTIONS(2458), - [anon_sym_try] = ACTIONS(2456), - [anon_sym_catch] = ACTIONS(2456), - [anon_sym_return] = ACTIONS(2456), - [anon_sym_source] = ACTIONS(2456), - [anon_sym_source_DASHenv] = ACTIONS(2456), - [anon_sym_register] = ACTIONS(2456), - [anon_sym_hide] = ACTIONS(2456), - [anon_sym_hide_DASHenv] = ACTIONS(2456), - [anon_sym_overlay] = ACTIONS(2456), - [anon_sym_as] = ACTIONS(2456), - [anon_sym_PLUS2] = ACTIONS(2456), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2458), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2458), - [aux_sym__val_number_decimal_token1] = ACTIONS(2456), - [aux_sym__val_number_decimal_token2] = ACTIONS(2458), - [aux_sym__val_number_decimal_token3] = ACTIONS(2458), - [aux_sym__val_number_decimal_token4] = ACTIONS(2458), - [aux_sym__val_number_token1] = ACTIONS(2458), - [aux_sym__val_number_token2] = ACTIONS(2458), - [aux_sym__val_number_token3] = ACTIONS(2458), - [aux_sym__val_number_token4] = ACTIONS(2456), - [aux_sym__val_number_token5] = ACTIONS(2456), - [aux_sym__val_number_token6] = ACTIONS(2456), - [anon_sym_DQUOTE] = ACTIONS(2458), - [sym__str_single_quotes] = ACTIONS(2458), - [sym__str_back_ticks] = ACTIONS(2458), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2458), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2458), + [anon_sym_export] = ACTIONS(2390), + [anon_sym_alias] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_let_DASHenv] = ACTIONS(2390), + [anon_sym_mut] = ACTIONS(2390), + [anon_sym_const] = ACTIONS(2390), + [aux_sym_cmd_identifier_token1] = ACTIONS(2390), + [aux_sym_cmd_identifier_token2] = ACTIONS(2392), + [aux_sym_cmd_identifier_token3] = ACTIONS(2392), + [aux_sym_cmd_identifier_token4] = ACTIONS(2392), + [aux_sym_cmd_identifier_token5] = ACTIONS(2392), + [aux_sym_cmd_identifier_token6] = ACTIONS(2392), + [aux_sym_cmd_identifier_token7] = ACTIONS(2392), + [aux_sym_cmd_identifier_token8] = ACTIONS(2390), + [aux_sym_cmd_identifier_token9] = ACTIONS(2390), + [aux_sym_cmd_identifier_token10] = ACTIONS(2392), + [aux_sym_cmd_identifier_token11] = ACTIONS(2392), + [aux_sym_cmd_identifier_token12] = ACTIONS(2390), + [aux_sym_cmd_identifier_token13] = ACTIONS(2390), + [aux_sym_cmd_identifier_token14] = ACTIONS(2390), + [aux_sym_cmd_identifier_token15] = ACTIONS(2390), + [aux_sym_cmd_identifier_token16] = ACTIONS(2392), + [aux_sym_cmd_identifier_token17] = ACTIONS(2392), + [aux_sym_cmd_identifier_token18] = ACTIONS(2392), + [aux_sym_cmd_identifier_token19] = ACTIONS(2392), + [aux_sym_cmd_identifier_token20] = ACTIONS(2392), + [aux_sym_cmd_identifier_token21] = ACTIONS(2392), + [aux_sym_cmd_identifier_token22] = ACTIONS(2392), + [aux_sym_cmd_identifier_token23] = ACTIONS(2392), + [aux_sym_cmd_identifier_token24] = ACTIONS(2392), + [aux_sym_cmd_identifier_token25] = ACTIONS(2392), + [aux_sym_cmd_identifier_token26] = ACTIONS(2392), + [aux_sym_cmd_identifier_token27] = ACTIONS(2392), + [aux_sym_cmd_identifier_token28] = ACTIONS(2392), + [aux_sym_cmd_identifier_token29] = ACTIONS(2392), + [aux_sym_cmd_identifier_token30] = ACTIONS(2392), + [aux_sym_cmd_identifier_token31] = ACTIONS(2392), + [aux_sym_cmd_identifier_token32] = ACTIONS(2392), + [aux_sym_cmd_identifier_token33] = ACTIONS(2392), + [aux_sym_cmd_identifier_token34] = ACTIONS(2390), + [aux_sym_cmd_identifier_token35] = ACTIONS(2392), + [aux_sym_cmd_identifier_token36] = ACTIONS(2392), + [aux_sym_cmd_identifier_token37] = ACTIONS(2392), + [aux_sym_cmd_identifier_token38] = ACTIONS(2390), + [aux_sym_cmd_identifier_token39] = ACTIONS(2392), + [aux_sym_cmd_identifier_token40] = ACTIONS(2392), + [anon_sym_def] = ACTIONS(2390), + [anon_sym_export_DASHenv] = ACTIONS(2390), + [anon_sym_extern] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_use] = ACTIONS(2390), + [anon_sym_LPAREN] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2392), + [anon_sym_error] = ACTIONS(2390), + [anon_sym_DASH2] = ACTIONS(2390), + [anon_sym_break] = ACTIONS(2390), + [anon_sym_continue] = ACTIONS(2390), + [anon_sym_for] = ACTIONS(2390), + [anon_sym_in2] = ACTIONS(2390), + [anon_sym_loop] = ACTIONS(2390), + [anon_sym_make] = ACTIONS(2390), + [anon_sym_while] = ACTIONS(2390), + [anon_sym_do] = ACTIONS(2390), + [anon_sym_if] = ACTIONS(2390), + [anon_sym_else] = ACTIONS(2390), + [anon_sym_match] = ACTIONS(2390), + [anon_sym_RBRACE] = ACTIONS(2392), + [anon_sym_try] = ACTIONS(2390), + [anon_sym_catch] = ACTIONS(2390), + [anon_sym_return] = ACTIONS(2390), + [anon_sym_source] = ACTIONS(2390), + [anon_sym_source_DASHenv] = ACTIONS(2390), + [anon_sym_register] = ACTIONS(2390), + [anon_sym_hide] = ACTIONS(2390), + [anon_sym_hide_DASHenv] = ACTIONS(2390), + [anon_sym_overlay] = ACTIONS(2390), + [anon_sym_as] = ACTIONS(2390), + [anon_sym_PLUS2] = ACTIONS(2390), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2392), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2392), + [aux_sym__val_number_decimal_token1] = ACTIONS(2390), + [aux_sym__val_number_decimal_token2] = ACTIONS(2392), + [aux_sym__val_number_decimal_token3] = ACTIONS(2392), + [aux_sym__val_number_decimal_token4] = ACTIONS(2392), + [aux_sym__val_number_token1] = ACTIONS(2392), + [aux_sym__val_number_token2] = ACTIONS(2392), + [aux_sym__val_number_token3] = ACTIONS(2392), + [aux_sym__val_number_token4] = ACTIONS(2390), + [aux_sym__val_number_token5] = ACTIONS(2390), + [aux_sym__val_number_token6] = ACTIONS(2390), + [anon_sym_DQUOTE] = ACTIONS(2392), + [sym__str_single_quotes] = ACTIONS(2392), + [sym__str_back_ticks] = ACTIONS(2392), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2392), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2392), }, [736] = { [sym_comment] = STATE(736), - [anon_sym_export] = ACTIONS(2460), - [anon_sym_alias] = ACTIONS(2460), - [anon_sym_let] = ACTIONS(2460), - [anon_sym_let_DASHenv] = ACTIONS(2460), - [anon_sym_mut] = ACTIONS(2460), - [anon_sym_const] = ACTIONS(2460), - [aux_sym_cmd_identifier_token1] = ACTIONS(2460), - [aux_sym_cmd_identifier_token2] = ACTIONS(2462), - [aux_sym_cmd_identifier_token3] = ACTIONS(2462), - [aux_sym_cmd_identifier_token4] = ACTIONS(2462), - [aux_sym_cmd_identifier_token5] = ACTIONS(2462), - [aux_sym_cmd_identifier_token6] = ACTIONS(2462), - [aux_sym_cmd_identifier_token7] = ACTIONS(2462), - [aux_sym_cmd_identifier_token8] = ACTIONS(2460), - [aux_sym_cmd_identifier_token9] = ACTIONS(2460), - [aux_sym_cmd_identifier_token10] = ACTIONS(2462), - [aux_sym_cmd_identifier_token11] = ACTIONS(2462), - [aux_sym_cmd_identifier_token12] = ACTIONS(2460), - [aux_sym_cmd_identifier_token13] = ACTIONS(2460), - [aux_sym_cmd_identifier_token14] = ACTIONS(2460), - [aux_sym_cmd_identifier_token15] = ACTIONS(2460), - [aux_sym_cmd_identifier_token16] = ACTIONS(2462), - [aux_sym_cmd_identifier_token17] = ACTIONS(2462), - [aux_sym_cmd_identifier_token18] = ACTIONS(2462), - [aux_sym_cmd_identifier_token19] = ACTIONS(2462), - [aux_sym_cmd_identifier_token20] = ACTIONS(2462), - [aux_sym_cmd_identifier_token21] = ACTIONS(2462), - [aux_sym_cmd_identifier_token22] = ACTIONS(2462), - [aux_sym_cmd_identifier_token23] = ACTIONS(2462), - [aux_sym_cmd_identifier_token24] = ACTIONS(2462), - [aux_sym_cmd_identifier_token25] = ACTIONS(2462), - [aux_sym_cmd_identifier_token26] = ACTIONS(2462), - [aux_sym_cmd_identifier_token27] = ACTIONS(2462), - [aux_sym_cmd_identifier_token28] = ACTIONS(2462), - [aux_sym_cmd_identifier_token29] = ACTIONS(2462), - [aux_sym_cmd_identifier_token30] = ACTIONS(2462), - [aux_sym_cmd_identifier_token31] = ACTIONS(2462), - [aux_sym_cmd_identifier_token32] = ACTIONS(2462), - [aux_sym_cmd_identifier_token33] = ACTIONS(2462), - [aux_sym_cmd_identifier_token34] = ACTIONS(2460), - [aux_sym_cmd_identifier_token35] = ACTIONS(2462), - [aux_sym_cmd_identifier_token36] = ACTIONS(2462), - [aux_sym_cmd_identifier_token37] = ACTIONS(2462), - [aux_sym_cmd_identifier_token38] = ACTIONS(2460), - [aux_sym_cmd_identifier_token39] = ACTIONS(2462), - [aux_sym_cmd_identifier_token40] = ACTIONS(2462), - [anon_sym_def] = ACTIONS(2460), - [anon_sym_export_DASHenv] = ACTIONS(2460), - [anon_sym_extern] = ACTIONS(2460), - [anon_sym_module] = ACTIONS(2460), - [anon_sym_use] = ACTIONS(2460), - [anon_sym_LPAREN] = ACTIONS(2462), - [anon_sym_DOLLAR] = ACTIONS(2462), - [anon_sym_error] = ACTIONS(2460), - [anon_sym_DASH2] = ACTIONS(2460), - [anon_sym_break] = ACTIONS(2460), - [anon_sym_continue] = ACTIONS(2460), - [anon_sym_for] = ACTIONS(2460), - [anon_sym_in2] = ACTIONS(2460), - [anon_sym_loop] = ACTIONS(2460), - [anon_sym_make] = ACTIONS(2460), - [anon_sym_while] = ACTIONS(2460), - [anon_sym_do] = ACTIONS(2460), - [anon_sym_if] = ACTIONS(2460), - [anon_sym_else] = ACTIONS(2460), - [anon_sym_match] = ACTIONS(2460), - [anon_sym_RBRACE] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2460), - [anon_sym_catch] = ACTIONS(2460), - [anon_sym_return] = ACTIONS(2460), - [anon_sym_source] = ACTIONS(2460), - [anon_sym_source_DASHenv] = ACTIONS(2460), - [anon_sym_register] = ACTIONS(2460), - [anon_sym_hide] = ACTIONS(2460), - [anon_sym_hide_DASHenv] = ACTIONS(2460), - [anon_sym_overlay] = ACTIONS(2460), - [anon_sym_as] = ACTIONS(2460), - [anon_sym_PLUS2] = ACTIONS(2460), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2462), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2462), - [aux_sym__val_number_decimal_token1] = ACTIONS(2460), - [aux_sym__val_number_decimal_token2] = ACTIONS(2462), - [aux_sym__val_number_decimal_token3] = ACTIONS(2462), - [aux_sym__val_number_decimal_token4] = ACTIONS(2462), - [aux_sym__val_number_token1] = ACTIONS(2462), - [aux_sym__val_number_token2] = ACTIONS(2462), - [aux_sym__val_number_token3] = ACTIONS(2462), - [aux_sym__val_number_token4] = ACTIONS(2460), - [aux_sym__val_number_token5] = ACTIONS(2460), - [aux_sym__val_number_token6] = ACTIONS(2460), - [anon_sym_DQUOTE] = ACTIONS(2462), - [sym__str_single_quotes] = ACTIONS(2462), - [sym__str_back_ticks] = ACTIONS(2462), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2462), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2462), + [anon_sym_export] = ACTIONS(2406), + [anon_sym_alias] = ACTIONS(2406), + [anon_sym_let] = ACTIONS(2406), + [anon_sym_let_DASHenv] = ACTIONS(2406), + [anon_sym_mut] = ACTIONS(2406), + [anon_sym_const] = ACTIONS(2406), + [aux_sym_cmd_identifier_token1] = ACTIONS(2406), + [aux_sym_cmd_identifier_token2] = ACTIONS(2408), + [aux_sym_cmd_identifier_token3] = ACTIONS(2408), + [aux_sym_cmd_identifier_token4] = ACTIONS(2408), + [aux_sym_cmd_identifier_token5] = ACTIONS(2408), + [aux_sym_cmd_identifier_token6] = ACTIONS(2408), + [aux_sym_cmd_identifier_token7] = ACTIONS(2408), + [aux_sym_cmd_identifier_token8] = ACTIONS(2406), + [aux_sym_cmd_identifier_token9] = ACTIONS(2406), + [aux_sym_cmd_identifier_token10] = ACTIONS(2408), + [aux_sym_cmd_identifier_token11] = ACTIONS(2408), + [aux_sym_cmd_identifier_token12] = ACTIONS(2406), + [aux_sym_cmd_identifier_token13] = ACTIONS(2406), + [aux_sym_cmd_identifier_token14] = ACTIONS(2406), + [aux_sym_cmd_identifier_token15] = ACTIONS(2406), + [aux_sym_cmd_identifier_token16] = ACTIONS(2408), + [aux_sym_cmd_identifier_token17] = ACTIONS(2408), + [aux_sym_cmd_identifier_token18] = ACTIONS(2408), + [aux_sym_cmd_identifier_token19] = ACTIONS(2408), + [aux_sym_cmd_identifier_token20] = ACTIONS(2408), + [aux_sym_cmd_identifier_token21] = ACTIONS(2408), + [aux_sym_cmd_identifier_token22] = ACTIONS(2408), + [aux_sym_cmd_identifier_token23] = ACTIONS(2408), + [aux_sym_cmd_identifier_token24] = ACTIONS(2408), + [aux_sym_cmd_identifier_token25] = ACTIONS(2408), + [aux_sym_cmd_identifier_token26] = ACTIONS(2408), + [aux_sym_cmd_identifier_token27] = ACTIONS(2408), + [aux_sym_cmd_identifier_token28] = ACTIONS(2408), + [aux_sym_cmd_identifier_token29] = ACTIONS(2408), + [aux_sym_cmd_identifier_token30] = ACTIONS(2408), + [aux_sym_cmd_identifier_token31] = ACTIONS(2408), + [aux_sym_cmd_identifier_token32] = ACTIONS(2408), + [aux_sym_cmd_identifier_token33] = ACTIONS(2408), + [aux_sym_cmd_identifier_token34] = ACTIONS(2406), + [aux_sym_cmd_identifier_token35] = ACTIONS(2408), + [aux_sym_cmd_identifier_token36] = ACTIONS(2408), + [aux_sym_cmd_identifier_token37] = ACTIONS(2408), + [aux_sym_cmd_identifier_token38] = ACTIONS(2406), + [aux_sym_cmd_identifier_token39] = ACTIONS(2408), + [aux_sym_cmd_identifier_token40] = ACTIONS(2408), + [anon_sym_def] = ACTIONS(2406), + [anon_sym_export_DASHenv] = ACTIONS(2406), + [anon_sym_extern] = ACTIONS(2406), + [anon_sym_module] = ACTIONS(2406), + [anon_sym_use] = ACTIONS(2406), + [anon_sym_LPAREN] = ACTIONS(2408), + [anon_sym_DOLLAR] = ACTIONS(2408), + [anon_sym_error] = ACTIONS(2406), + [anon_sym_DASH2] = ACTIONS(2406), + [anon_sym_break] = ACTIONS(2406), + [anon_sym_continue] = ACTIONS(2406), + [anon_sym_for] = ACTIONS(2406), + [anon_sym_in2] = ACTIONS(2406), + [anon_sym_loop] = ACTIONS(2406), + [anon_sym_make] = ACTIONS(2406), + [anon_sym_while] = ACTIONS(2406), + [anon_sym_do] = ACTIONS(2406), + [anon_sym_if] = ACTIONS(2406), + [anon_sym_else] = ACTIONS(2406), + [anon_sym_match] = ACTIONS(2406), + [anon_sym_RBRACE] = ACTIONS(2408), + [anon_sym_try] = ACTIONS(2406), + [anon_sym_catch] = ACTIONS(2406), + [anon_sym_return] = ACTIONS(2406), + [anon_sym_source] = ACTIONS(2406), + [anon_sym_source_DASHenv] = ACTIONS(2406), + [anon_sym_register] = ACTIONS(2406), + [anon_sym_hide] = ACTIONS(2406), + [anon_sym_hide_DASHenv] = ACTIONS(2406), + [anon_sym_overlay] = ACTIONS(2406), + [anon_sym_as] = ACTIONS(2406), + [anon_sym_PLUS2] = ACTIONS(2406), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2408), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2408), + [aux_sym__val_number_decimal_token1] = ACTIONS(2406), + [aux_sym__val_number_decimal_token2] = ACTIONS(2408), + [aux_sym__val_number_decimal_token3] = ACTIONS(2408), + [aux_sym__val_number_decimal_token4] = ACTIONS(2408), + [aux_sym__val_number_token1] = ACTIONS(2408), + [aux_sym__val_number_token2] = ACTIONS(2408), + [aux_sym__val_number_token3] = ACTIONS(2408), + [aux_sym__val_number_token4] = ACTIONS(2406), + [aux_sym__val_number_token5] = ACTIONS(2406), + [aux_sym__val_number_token6] = ACTIONS(2406), + [anon_sym_DQUOTE] = ACTIONS(2408), + [sym__str_single_quotes] = ACTIONS(2408), + [sym__str_back_ticks] = ACTIONS(2408), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2408), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2408), }, [737] = { [sym_comment] = STATE(737), - [anon_sym_export] = ACTIONS(2129), - [anon_sym_alias] = ACTIONS(2129), - [anon_sym_let] = ACTIONS(2129), - [anon_sym_let_DASHenv] = ACTIONS(2129), - [anon_sym_mut] = ACTIONS(2129), - [anon_sym_const] = ACTIONS(2129), - [aux_sym_cmd_identifier_token1] = ACTIONS(2129), - [aux_sym_cmd_identifier_token2] = ACTIONS(2131), - [aux_sym_cmd_identifier_token3] = ACTIONS(2131), - [aux_sym_cmd_identifier_token4] = ACTIONS(2131), - [aux_sym_cmd_identifier_token5] = ACTIONS(2131), - [aux_sym_cmd_identifier_token6] = ACTIONS(2131), - [aux_sym_cmd_identifier_token7] = ACTIONS(2131), - [aux_sym_cmd_identifier_token8] = ACTIONS(2129), - [aux_sym_cmd_identifier_token9] = ACTIONS(2129), - [aux_sym_cmd_identifier_token10] = ACTIONS(2131), - [aux_sym_cmd_identifier_token11] = ACTIONS(2131), - [aux_sym_cmd_identifier_token12] = ACTIONS(2129), - [aux_sym_cmd_identifier_token13] = ACTIONS(2129), - [aux_sym_cmd_identifier_token14] = ACTIONS(2129), - [aux_sym_cmd_identifier_token15] = ACTIONS(2129), - [aux_sym_cmd_identifier_token16] = ACTIONS(2131), - [aux_sym_cmd_identifier_token17] = ACTIONS(2131), - [aux_sym_cmd_identifier_token18] = ACTIONS(2131), - [aux_sym_cmd_identifier_token19] = ACTIONS(2131), - [aux_sym_cmd_identifier_token20] = ACTIONS(2131), - [aux_sym_cmd_identifier_token21] = ACTIONS(2131), - [aux_sym_cmd_identifier_token22] = ACTIONS(2131), - [aux_sym_cmd_identifier_token23] = ACTIONS(2131), - [aux_sym_cmd_identifier_token24] = ACTIONS(2131), - [aux_sym_cmd_identifier_token25] = ACTIONS(2131), - [aux_sym_cmd_identifier_token26] = ACTIONS(2131), - [aux_sym_cmd_identifier_token27] = ACTIONS(2131), - [aux_sym_cmd_identifier_token28] = ACTIONS(2131), - [aux_sym_cmd_identifier_token29] = ACTIONS(2131), - [aux_sym_cmd_identifier_token30] = ACTIONS(2131), - [aux_sym_cmd_identifier_token31] = ACTIONS(2131), - [aux_sym_cmd_identifier_token32] = ACTIONS(2131), - [aux_sym_cmd_identifier_token33] = ACTIONS(2131), - [aux_sym_cmd_identifier_token34] = ACTIONS(2129), - [aux_sym_cmd_identifier_token35] = ACTIONS(2131), - [aux_sym_cmd_identifier_token36] = ACTIONS(2131), - [aux_sym_cmd_identifier_token37] = ACTIONS(2131), - [aux_sym_cmd_identifier_token38] = ACTIONS(2129), - [aux_sym_cmd_identifier_token39] = ACTIONS(2131), - [aux_sym_cmd_identifier_token40] = ACTIONS(2131), - [anon_sym_def] = ACTIONS(2129), - [anon_sym_export_DASHenv] = ACTIONS(2129), - [anon_sym_extern] = ACTIONS(2129), - [anon_sym_module] = ACTIONS(2129), - [anon_sym_use] = ACTIONS(2129), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_DOLLAR] = ACTIONS(2131), - [anon_sym_error] = ACTIONS(2129), - [anon_sym_DASH2] = ACTIONS(2129), - [anon_sym_break] = ACTIONS(2129), - [anon_sym_continue] = ACTIONS(2129), - [anon_sym_for] = ACTIONS(2129), - [anon_sym_in2] = ACTIONS(2129), - [anon_sym_loop] = ACTIONS(2129), - [anon_sym_make] = ACTIONS(2129), - [anon_sym_while] = ACTIONS(2129), - [anon_sym_do] = ACTIONS(2129), - [anon_sym_if] = ACTIONS(2129), - [anon_sym_else] = ACTIONS(2129), - [anon_sym_match] = ACTIONS(2129), - [anon_sym_RBRACE] = ACTIONS(2131), - [anon_sym_try] = ACTIONS(2129), - [anon_sym_catch] = ACTIONS(2129), - [anon_sym_return] = ACTIONS(2129), - [anon_sym_source] = ACTIONS(2129), - [anon_sym_source_DASHenv] = ACTIONS(2129), - [anon_sym_register] = ACTIONS(2129), - [anon_sym_hide] = ACTIONS(2129), - [anon_sym_hide_DASHenv] = ACTIONS(2129), - [anon_sym_overlay] = ACTIONS(2129), - [anon_sym_as] = ACTIONS(2129), - [anon_sym_PLUS2] = ACTIONS(2129), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2131), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2131), - [aux_sym__val_number_decimal_token1] = ACTIONS(2129), - [aux_sym__val_number_decimal_token2] = ACTIONS(2131), - [aux_sym__val_number_decimal_token3] = ACTIONS(2131), - [aux_sym__val_number_decimal_token4] = ACTIONS(2131), - [aux_sym__val_number_token1] = ACTIONS(2131), - [aux_sym__val_number_token2] = ACTIONS(2131), - [aux_sym__val_number_token3] = ACTIONS(2131), - [aux_sym__val_number_token4] = ACTIONS(2129), - [aux_sym__val_number_token5] = ACTIONS(2129), - [aux_sym__val_number_token6] = ACTIONS(2129), - [anon_sym_DQUOTE] = ACTIONS(2131), - [sym__str_single_quotes] = ACTIONS(2131), - [sym__str_back_ticks] = ACTIONS(2131), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2131), + [anon_sym_export] = ACTIONS(1887), + [anon_sym_alias] = ACTIONS(1887), + [anon_sym_let] = ACTIONS(1887), + [anon_sym_let_DASHenv] = ACTIONS(1887), + [anon_sym_mut] = ACTIONS(1887), + [anon_sym_const] = ACTIONS(1887), + [aux_sym_cmd_identifier_token1] = ACTIONS(1887), + [aux_sym_cmd_identifier_token2] = ACTIONS(1889), + [aux_sym_cmd_identifier_token3] = ACTIONS(1889), + [aux_sym_cmd_identifier_token4] = ACTIONS(1889), + [aux_sym_cmd_identifier_token5] = ACTIONS(1889), + [aux_sym_cmd_identifier_token6] = ACTIONS(1889), + [aux_sym_cmd_identifier_token7] = ACTIONS(1889), + [aux_sym_cmd_identifier_token8] = ACTIONS(1887), + [aux_sym_cmd_identifier_token9] = ACTIONS(1887), + [aux_sym_cmd_identifier_token10] = ACTIONS(1889), + [aux_sym_cmd_identifier_token11] = ACTIONS(1889), + [aux_sym_cmd_identifier_token12] = ACTIONS(1887), + [aux_sym_cmd_identifier_token13] = ACTIONS(1887), + [aux_sym_cmd_identifier_token14] = ACTIONS(1887), + [aux_sym_cmd_identifier_token15] = ACTIONS(1887), + [aux_sym_cmd_identifier_token16] = ACTIONS(1889), + [aux_sym_cmd_identifier_token17] = ACTIONS(1889), + [aux_sym_cmd_identifier_token18] = ACTIONS(1889), + [aux_sym_cmd_identifier_token19] = ACTIONS(1889), + [aux_sym_cmd_identifier_token20] = ACTIONS(1889), + [aux_sym_cmd_identifier_token21] = ACTIONS(1889), + [aux_sym_cmd_identifier_token22] = ACTIONS(1889), + [aux_sym_cmd_identifier_token23] = ACTIONS(1889), + [aux_sym_cmd_identifier_token24] = ACTIONS(1889), + [aux_sym_cmd_identifier_token25] = ACTIONS(1889), + [aux_sym_cmd_identifier_token26] = ACTIONS(1889), + [aux_sym_cmd_identifier_token27] = ACTIONS(1889), + [aux_sym_cmd_identifier_token28] = ACTIONS(1889), + [aux_sym_cmd_identifier_token29] = ACTIONS(1889), + [aux_sym_cmd_identifier_token30] = ACTIONS(1889), + [aux_sym_cmd_identifier_token31] = ACTIONS(1889), + [aux_sym_cmd_identifier_token32] = ACTIONS(1889), + [aux_sym_cmd_identifier_token33] = ACTIONS(1889), + [aux_sym_cmd_identifier_token34] = ACTIONS(1887), + [aux_sym_cmd_identifier_token35] = ACTIONS(1889), + [aux_sym_cmd_identifier_token36] = ACTIONS(1889), + [aux_sym_cmd_identifier_token37] = ACTIONS(1889), + [aux_sym_cmd_identifier_token38] = ACTIONS(1887), + [aux_sym_cmd_identifier_token39] = ACTIONS(1889), + [aux_sym_cmd_identifier_token40] = ACTIONS(1889), + [anon_sym_def] = ACTIONS(1887), + [anon_sym_export_DASHenv] = ACTIONS(1887), + [anon_sym_extern] = ACTIONS(1887), + [anon_sym_module] = ACTIONS(1887), + [anon_sym_use] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1889), + [anon_sym_DOLLAR] = ACTIONS(1889), + [anon_sym_error] = ACTIONS(1887), + [anon_sym_DASH2] = ACTIONS(1887), + [anon_sym_break] = ACTIONS(1887), + [anon_sym_continue] = ACTIONS(1887), + [anon_sym_for] = ACTIONS(1887), + [anon_sym_in2] = ACTIONS(1887), + [anon_sym_loop] = ACTIONS(1887), + [anon_sym_make] = ACTIONS(1887), + [anon_sym_while] = ACTIONS(1887), + [anon_sym_do] = ACTIONS(1887), + [anon_sym_if] = ACTIONS(1887), + [anon_sym_else] = ACTIONS(1887), + [anon_sym_match] = ACTIONS(1887), + [anon_sym_RBRACE] = ACTIONS(1889), + [anon_sym_try] = ACTIONS(1887), + [anon_sym_catch] = ACTIONS(1887), + [anon_sym_return] = ACTIONS(1887), + [anon_sym_source] = ACTIONS(1887), + [anon_sym_source_DASHenv] = ACTIONS(1887), + [anon_sym_register] = ACTIONS(1887), + [anon_sym_hide] = ACTIONS(1887), + [anon_sym_hide_DASHenv] = ACTIONS(1887), + [anon_sym_overlay] = ACTIONS(1887), + [anon_sym_as] = ACTIONS(1887), + [anon_sym_PLUS2] = ACTIONS(1887), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1889), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1889), + [aux_sym__val_number_decimal_token1] = ACTIONS(1887), + [aux_sym__val_number_decimal_token2] = ACTIONS(1889), + [aux_sym__val_number_decimal_token3] = ACTIONS(1889), + [aux_sym__val_number_decimal_token4] = ACTIONS(1889), + [aux_sym__val_number_token1] = ACTIONS(1889), + [aux_sym__val_number_token2] = ACTIONS(1889), + [aux_sym__val_number_token3] = ACTIONS(1889), + [aux_sym__val_number_token4] = ACTIONS(1887), + [aux_sym__val_number_token5] = ACTIONS(1887), + [aux_sym__val_number_token6] = ACTIONS(1887), + [anon_sym_DQUOTE] = ACTIONS(1889), + [sym__str_single_quotes] = ACTIONS(1889), + [sym__str_back_ticks] = ACTIONS(1889), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1889), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1889), }, [738] = { [sym_comment] = STATE(738), - [anon_sym_export] = ACTIONS(2183), - [anon_sym_alias] = ACTIONS(2183), - [anon_sym_let] = ACTIONS(2183), - [anon_sym_let_DASHenv] = ACTIONS(2183), - [anon_sym_mut] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [aux_sym_cmd_identifier_token1] = ACTIONS(2183), - [aux_sym_cmd_identifier_token2] = ACTIONS(2185), - [aux_sym_cmd_identifier_token3] = ACTIONS(2185), - [aux_sym_cmd_identifier_token4] = ACTIONS(2185), - [aux_sym_cmd_identifier_token5] = ACTIONS(2185), - [aux_sym_cmd_identifier_token6] = ACTIONS(2185), - [aux_sym_cmd_identifier_token7] = ACTIONS(2185), - [aux_sym_cmd_identifier_token8] = ACTIONS(2183), - [aux_sym_cmd_identifier_token9] = ACTIONS(2183), - [aux_sym_cmd_identifier_token10] = ACTIONS(2185), - [aux_sym_cmd_identifier_token11] = ACTIONS(2185), - [aux_sym_cmd_identifier_token12] = ACTIONS(2183), - [aux_sym_cmd_identifier_token13] = ACTIONS(2183), - [aux_sym_cmd_identifier_token14] = ACTIONS(2183), - [aux_sym_cmd_identifier_token15] = ACTIONS(2183), - [aux_sym_cmd_identifier_token16] = ACTIONS(2185), - [aux_sym_cmd_identifier_token17] = ACTIONS(2185), - [aux_sym_cmd_identifier_token18] = ACTIONS(2185), - [aux_sym_cmd_identifier_token19] = ACTIONS(2185), - [aux_sym_cmd_identifier_token20] = ACTIONS(2185), - [aux_sym_cmd_identifier_token21] = ACTIONS(2185), - [aux_sym_cmd_identifier_token22] = ACTIONS(2185), - [aux_sym_cmd_identifier_token23] = ACTIONS(2185), - [aux_sym_cmd_identifier_token24] = ACTIONS(2185), - [aux_sym_cmd_identifier_token25] = ACTIONS(2185), - [aux_sym_cmd_identifier_token26] = ACTIONS(2185), - [aux_sym_cmd_identifier_token27] = ACTIONS(2185), - [aux_sym_cmd_identifier_token28] = ACTIONS(2185), - [aux_sym_cmd_identifier_token29] = ACTIONS(2185), - [aux_sym_cmd_identifier_token30] = ACTIONS(2185), - [aux_sym_cmd_identifier_token31] = ACTIONS(2185), - [aux_sym_cmd_identifier_token32] = ACTIONS(2185), - [aux_sym_cmd_identifier_token33] = ACTIONS(2185), - [aux_sym_cmd_identifier_token34] = ACTIONS(2183), - [aux_sym_cmd_identifier_token35] = ACTIONS(2185), - [aux_sym_cmd_identifier_token36] = ACTIONS(2185), - [aux_sym_cmd_identifier_token37] = ACTIONS(2185), - [aux_sym_cmd_identifier_token38] = ACTIONS(2183), - [aux_sym_cmd_identifier_token39] = ACTIONS(2185), - [aux_sym_cmd_identifier_token40] = ACTIONS(2185), - [anon_sym_def] = ACTIONS(2183), - [anon_sym_export_DASHenv] = ACTIONS(2183), - [anon_sym_extern] = ACTIONS(2183), - [anon_sym_module] = ACTIONS(2183), - [anon_sym_use] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2185), - [anon_sym_error] = ACTIONS(2183), - [anon_sym_DASH2] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_in2] = ACTIONS(2183), - [anon_sym_loop] = ACTIONS(2183), - [anon_sym_make] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [anon_sym_do] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_else] = ACTIONS(2183), - [anon_sym_match] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2185), - [anon_sym_try] = ACTIONS(2183), - [anon_sym_catch] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_source] = ACTIONS(2183), - [anon_sym_source_DASHenv] = ACTIONS(2183), - [anon_sym_register] = ACTIONS(2183), - [anon_sym_hide] = ACTIONS(2183), - [anon_sym_hide_DASHenv] = ACTIONS(2183), - [anon_sym_overlay] = ACTIONS(2183), - [anon_sym_as] = ACTIONS(2183), - [anon_sym_PLUS2] = ACTIONS(2183), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2185), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2185), - [aux_sym__val_number_decimal_token1] = ACTIONS(2183), - [aux_sym__val_number_decimal_token2] = ACTIONS(2185), - [aux_sym__val_number_decimal_token3] = ACTIONS(2185), - [aux_sym__val_number_decimal_token4] = ACTIONS(2185), - [aux_sym__val_number_token1] = ACTIONS(2185), - [aux_sym__val_number_token2] = ACTIONS(2185), - [aux_sym__val_number_token3] = ACTIONS(2185), - [aux_sym__val_number_token4] = ACTIONS(2183), - [aux_sym__val_number_token5] = ACTIONS(2183), - [aux_sym__val_number_token6] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2185), - [sym__str_single_quotes] = ACTIONS(2185), - [sym__str_back_ticks] = ACTIONS(2185), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2185), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2185), - }, - [739] = { - [sym_comment] = STATE(739), - [anon_sym_export] = ACTIONS(2068), - [anon_sym_alias] = ACTIONS(2068), - [anon_sym_let] = ACTIONS(2068), - [anon_sym_let_DASHenv] = ACTIONS(2068), - [anon_sym_mut] = ACTIONS(2068), - [anon_sym_const] = ACTIONS(2068), - [aux_sym_cmd_identifier_token1] = ACTIONS(2068), - [aux_sym_cmd_identifier_token2] = ACTIONS(2070), - [aux_sym_cmd_identifier_token3] = ACTIONS(2070), - [aux_sym_cmd_identifier_token4] = ACTIONS(2070), - [aux_sym_cmd_identifier_token5] = ACTIONS(2070), - [aux_sym_cmd_identifier_token6] = ACTIONS(2070), - [aux_sym_cmd_identifier_token7] = ACTIONS(2070), - [aux_sym_cmd_identifier_token8] = ACTIONS(2068), - [aux_sym_cmd_identifier_token9] = ACTIONS(2068), - [aux_sym_cmd_identifier_token10] = ACTIONS(2070), - [aux_sym_cmd_identifier_token11] = ACTIONS(2070), - [aux_sym_cmd_identifier_token12] = ACTIONS(2068), - [aux_sym_cmd_identifier_token13] = ACTIONS(2068), - [aux_sym_cmd_identifier_token14] = ACTIONS(2068), - [aux_sym_cmd_identifier_token15] = ACTIONS(2068), - [aux_sym_cmd_identifier_token16] = ACTIONS(2070), - [aux_sym_cmd_identifier_token17] = ACTIONS(2070), - [aux_sym_cmd_identifier_token18] = ACTIONS(2070), - [aux_sym_cmd_identifier_token19] = ACTIONS(2070), - [aux_sym_cmd_identifier_token20] = ACTIONS(2070), - [aux_sym_cmd_identifier_token21] = ACTIONS(2070), - [aux_sym_cmd_identifier_token22] = ACTIONS(2070), - [aux_sym_cmd_identifier_token23] = ACTIONS(2070), - [aux_sym_cmd_identifier_token24] = ACTIONS(2070), - [aux_sym_cmd_identifier_token25] = ACTIONS(2070), - [aux_sym_cmd_identifier_token26] = ACTIONS(2070), - [aux_sym_cmd_identifier_token27] = ACTIONS(2070), - [aux_sym_cmd_identifier_token28] = ACTIONS(2070), - [aux_sym_cmd_identifier_token29] = ACTIONS(2070), - [aux_sym_cmd_identifier_token30] = ACTIONS(2070), - [aux_sym_cmd_identifier_token31] = ACTIONS(2070), - [aux_sym_cmd_identifier_token32] = ACTIONS(2070), - [aux_sym_cmd_identifier_token33] = ACTIONS(2070), - [aux_sym_cmd_identifier_token34] = ACTIONS(2068), - [aux_sym_cmd_identifier_token35] = ACTIONS(2070), - [aux_sym_cmd_identifier_token36] = ACTIONS(2070), - [aux_sym_cmd_identifier_token37] = ACTIONS(2070), - [aux_sym_cmd_identifier_token38] = ACTIONS(2068), - [aux_sym_cmd_identifier_token39] = ACTIONS(2070), - [aux_sym_cmd_identifier_token40] = ACTIONS(2070), - [anon_sym_def] = ACTIONS(2068), - [anon_sym_export_DASHenv] = ACTIONS(2068), - [anon_sym_extern] = ACTIONS(2068), - [anon_sym_module] = ACTIONS(2068), - [anon_sym_use] = ACTIONS(2068), - [anon_sym_LPAREN] = ACTIONS(2070), - [anon_sym_DOLLAR] = ACTIONS(2070), - [anon_sym_error] = ACTIONS(2068), - [anon_sym_DASH2] = ACTIONS(2068), - [anon_sym_break] = ACTIONS(2068), - [anon_sym_continue] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(2068), - [anon_sym_in2] = ACTIONS(2068), - [anon_sym_loop] = ACTIONS(2068), - [anon_sym_make] = ACTIONS(2068), - [anon_sym_while] = ACTIONS(2068), - [anon_sym_do] = ACTIONS(2068), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_else] = ACTIONS(2068), - [anon_sym_match] = ACTIONS(2068), - [anon_sym_RBRACE] = ACTIONS(2070), - [anon_sym_try] = ACTIONS(2068), - [anon_sym_catch] = ACTIONS(2068), - [anon_sym_return] = ACTIONS(2068), - [anon_sym_source] = ACTIONS(2068), - [anon_sym_source_DASHenv] = ACTIONS(2068), - [anon_sym_register] = ACTIONS(2068), - [anon_sym_hide] = ACTIONS(2068), - [anon_sym_hide_DASHenv] = ACTIONS(2068), - [anon_sym_overlay] = ACTIONS(2068), - [anon_sym_as] = ACTIONS(2068), - [anon_sym_PLUS2] = ACTIONS(2068), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2070), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2070), - [aux_sym__val_number_decimal_token1] = ACTIONS(2068), - [aux_sym__val_number_decimal_token2] = ACTIONS(2070), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), - [aux_sym__val_number_token1] = ACTIONS(2070), - [aux_sym__val_number_token2] = ACTIONS(2070), - [aux_sym__val_number_token3] = ACTIONS(2070), - [aux_sym__val_number_token4] = ACTIONS(2068), - [aux_sym__val_number_token5] = ACTIONS(2068), - [aux_sym__val_number_token6] = ACTIONS(2068), - [anon_sym_DQUOTE] = ACTIONS(2070), - [sym__str_single_quotes] = ACTIONS(2070), - [sym__str_back_ticks] = ACTIONS(2070), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2070), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2070), - }, - [740] = { - [sym_comment] = STATE(740), - [anon_sym_export] = ACTIONS(2151), - [anon_sym_alias] = ACTIONS(2151), - [anon_sym_let] = ACTIONS(2151), - [anon_sym_let_DASHenv] = ACTIONS(2151), - [anon_sym_mut] = ACTIONS(2151), - [anon_sym_const] = ACTIONS(2151), - [aux_sym_cmd_identifier_token1] = ACTIONS(2151), - [aux_sym_cmd_identifier_token2] = ACTIONS(2153), - [aux_sym_cmd_identifier_token3] = ACTIONS(2153), - [aux_sym_cmd_identifier_token4] = ACTIONS(2153), - [aux_sym_cmd_identifier_token5] = ACTIONS(2153), - [aux_sym_cmd_identifier_token6] = ACTIONS(2153), - [aux_sym_cmd_identifier_token7] = ACTIONS(2153), - [aux_sym_cmd_identifier_token8] = ACTIONS(2151), - [aux_sym_cmd_identifier_token9] = ACTIONS(2151), - [aux_sym_cmd_identifier_token10] = ACTIONS(2153), - [aux_sym_cmd_identifier_token11] = ACTIONS(2153), - [aux_sym_cmd_identifier_token12] = ACTIONS(2151), - [aux_sym_cmd_identifier_token13] = ACTIONS(2151), - [aux_sym_cmd_identifier_token14] = ACTIONS(2151), - [aux_sym_cmd_identifier_token15] = ACTIONS(2151), - [aux_sym_cmd_identifier_token16] = ACTIONS(2153), - [aux_sym_cmd_identifier_token17] = ACTIONS(2153), - [aux_sym_cmd_identifier_token18] = ACTIONS(2153), - [aux_sym_cmd_identifier_token19] = ACTIONS(2153), - [aux_sym_cmd_identifier_token20] = ACTIONS(2153), - [aux_sym_cmd_identifier_token21] = ACTIONS(2153), - [aux_sym_cmd_identifier_token22] = ACTIONS(2153), - [aux_sym_cmd_identifier_token23] = ACTIONS(2153), - [aux_sym_cmd_identifier_token24] = ACTIONS(2153), - [aux_sym_cmd_identifier_token25] = ACTIONS(2153), - [aux_sym_cmd_identifier_token26] = ACTIONS(2153), - [aux_sym_cmd_identifier_token27] = ACTIONS(2153), - [aux_sym_cmd_identifier_token28] = ACTIONS(2153), - [aux_sym_cmd_identifier_token29] = ACTIONS(2153), - [aux_sym_cmd_identifier_token30] = ACTIONS(2153), - [aux_sym_cmd_identifier_token31] = ACTIONS(2153), - [aux_sym_cmd_identifier_token32] = ACTIONS(2153), - [aux_sym_cmd_identifier_token33] = ACTIONS(2153), - [aux_sym_cmd_identifier_token34] = ACTIONS(2151), - [aux_sym_cmd_identifier_token35] = ACTIONS(2153), - [aux_sym_cmd_identifier_token36] = ACTIONS(2153), - [aux_sym_cmd_identifier_token37] = ACTIONS(2153), - [aux_sym_cmd_identifier_token38] = ACTIONS(2151), - [aux_sym_cmd_identifier_token39] = ACTIONS(2153), - [aux_sym_cmd_identifier_token40] = ACTIONS(2153), - [anon_sym_def] = ACTIONS(2151), - [anon_sym_export_DASHenv] = ACTIONS(2151), - [anon_sym_extern] = ACTIONS(2151), - [anon_sym_module] = ACTIONS(2151), - [anon_sym_use] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_DOLLAR] = ACTIONS(2153), - [anon_sym_error] = ACTIONS(2151), - [anon_sym_DASH2] = ACTIONS(2151), - [anon_sym_break] = ACTIONS(2151), - [anon_sym_continue] = ACTIONS(2151), - [anon_sym_for] = ACTIONS(2151), - [anon_sym_in2] = ACTIONS(2151), - [anon_sym_loop] = ACTIONS(2151), - [anon_sym_make] = ACTIONS(2151), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_do] = ACTIONS(2151), - [anon_sym_if] = ACTIONS(2151), - [anon_sym_else] = ACTIONS(2151), - [anon_sym_match] = ACTIONS(2151), - [anon_sym_RBRACE] = ACTIONS(2153), - [anon_sym_try] = ACTIONS(2151), - [anon_sym_catch] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2151), - [anon_sym_source] = ACTIONS(2151), - [anon_sym_source_DASHenv] = ACTIONS(2151), - [anon_sym_register] = ACTIONS(2151), - [anon_sym_hide] = ACTIONS(2151), - [anon_sym_hide_DASHenv] = ACTIONS(2151), - [anon_sym_overlay] = ACTIONS(2151), - [anon_sym_as] = ACTIONS(2151), - [anon_sym_PLUS2] = ACTIONS(2151), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2153), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2153), - [aux_sym__val_number_decimal_token1] = ACTIONS(2151), - [aux_sym__val_number_decimal_token2] = ACTIONS(2153), - [aux_sym__val_number_decimal_token3] = ACTIONS(2153), - [aux_sym__val_number_decimal_token4] = ACTIONS(2153), - [aux_sym__val_number_token1] = ACTIONS(2153), - [aux_sym__val_number_token2] = ACTIONS(2153), - [aux_sym__val_number_token3] = ACTIONS(2153), - [aux_sym__val_number_token4] = ACTIONS(2151), - [aux_sym__val_number_token5] = ACTIONS(2151), - [aux_sym__val_number_token6] = ACTIONS(2151), - [anon_sym_DQUOTE] = ACTIONS(2153), - [sym__str_single_quotes] = ACTIONS(2153), - [sym__str_back_ticks] = ACTIONS(2153), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2153), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2153), - }, - [741] = { - [sym_comment] = STATE(741), - [anon_sym_export] = ACTIONS(2086), - [anon_sym_alias] = ACTIONS(2086), - [anon_sym_let] = ACTIONS(2086), - [anon_sym_let_DASHenv] = ACTIONS(2086), - [anon_sym_mut] = ACTIONS(2086), - [anon_sym_const] = ACTIONS(2086), - [aux_sym_cmd_identifier_token1] = ACTIONS(2086), - [aux_sym_cmd_identifier_token2] = ACTIONS(2088), - [aux_sym_cmd_identifier_token3] = ACTIONS(2088), - [aux_sym_cmd_identifier_token4] = ACTIONS(2088), - [aux_sym_cmd_identifier_token5] = ACTIONS(2088), - [aux_sym_cmd_identifier_token6] = ACTIONS(2088), - [aux_sym_cmd_identifier_token7] = ACTIONS(2088), - [aux_sym_cmd_identifier_token8] = ACTIONS(2086), - [aux_sym_cmd_identifier_token9] = ACTIONS(2086), - [aux_sym_cmd_identifier_token10] = ACTIONS(2088), - [aux_sym_cmd_identifier_token11] = ACTIONS(2088), - [aux_sym_cmd_identifier_token12] = ACTIONS(2086), - [aux_sym_cmd_identifier_token13] = ACTIONS(2086), - [aux_sym_cmd_identifier_token14] = ACTIONS(2086), - [aux_sym_cmd_identifier_token15] = ACTIONS(2086), - [aux_sym_cmd_identifier_token16] = ACTIONS(2088), - [aux_sym_cmd_identifier_token17] = ACTIONS(2088), - [aux_sym_cmd_identifier_token18] = ACTIONS(2088), - [aux_sym_cmd_identifier_token19] = ACTIONS(2088), - [aux_sym_cmd_identifier_token20] = ACTIONS(2088), - [aux_sym_cmd_identifier_token21] = ACTIONS(2088), - [aux_sym_cmd_identifier_token22] = ACTIONS(2088), - [aux_sym_cmd_identifier_token23] = ACTIONS(2088), - [aux_sym_cmd_identifier_token24] = ACTIONS(2088), - [aux_sym_cmd_identifier_token25] = ACTIONS(2088), - [aux_sym_cmd_identifier_token26] = ACTIONS(2088), - [aux_sym_cmd_identifier_token27] = ACTIONS(2088), - [aux_sym_cmd_identifier_token28] = ACTIONS(2088), - [aux_sym_cmd_identifier_token29] = ACTIONS(2088), - [aux_sym_cmd_identifier_token30] = ACTIONS(2088), - [aux_sym_cmd_identifier_token31] = ACTIONS(2088), - [aux_sym_cmd_identifier_token32] = ACTIONS(2088), - [aux_sym_cmd_identifier_token33] = ACTIONS(2088), - [aux_sym_cmd_identifier_token34] = ACTIONS(2086), - [aux_sym_cmd_identifier_token35] = ACTIONS(2088), - [aux_sym_cmd_identifier_token36] = ACTIONS(2088), - [aux_sym_cmd_identifier_token37] = ACTIONS(2088), - [aux_sym_cmd_identifier_token38] = ACTIONS(2086), - [aux_sym_cmd_identifier_token39] = ACTIONS(2088), - [aux_sym_cmd_identifier_token40] = ACTIONS(2088), - [anon_sym_def] = ACTIONS(2086), - [anon_sym_export_DASHenv] = ACTIONS(2086), - [anon_sym_extern] = ACTIONS(2086), - [anon_sym_module] = ACTIONS(2086), - [anon_sym_use] = ACTIONS(2086), - [anon_sym_LPAREN] = ACTIONS(2088), - [anon_sym_DOLLAR] = ACTIONS(2088), - [anon_sym_error] = ACTIONS(2086), - [anon_sym_DASH2] = ACTIONS(2086), - [anon_sym_break] = ACTIONS(2086), - [anon_sym_continue] = ACTIONS(2086), - [anon_sym_for] = ACTIONS(2086), - [anon_sym_in2] = ACTIONS(2086), - [anon_sym_loop] = ACTIONS(2086), - [anon_sym_make] = ACTIONS(2086), - [anon_sym_while] = ACTIONS(2086), - [anon_sym_do] = ACTIONS(2086), - [anon_sym_if] = ACTIONS(2086), - [anon_sym_else] = ACTIONS(2086), - [anon_sym_match] = ACTIONS(2086), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_try] = ACTIONS(2086), - [anon_sym_catch] = ACTIONS(2086), - [anon_sym_return] = ACTIONS(2086), - [anon_sym_source] = ACTIONS(2086), - [anon_sym_source_DASHenv] = ACTIONS(2086), - [anon_sym_register] = ACTIONS(2086), - [anon_sym_hide] = ACTIONS(2086), - [anon_sym_hide_DASHenv] = ACTIONS(2086), - [anon_sym_overlay] = ACTIONS(2086), - [anon_sym_as] = ACTIONS(2086), - [anon_sym_PLUS2] = ACTIONS(2086), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2088), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2088), - [aux_sym__val_number_decimal_token1] = ACTIONS(2086), - [aux_sym__val_number_decimal_token2] = ACTIONS(2088), - [aux_sym__val_number_decimal_token3] = ACTIONS(2088), - [aux_sym__val_number_decimal_token4] = ACTIONS(2088), - [aux_sym__val_number_token1] = ACTIONS(2088), - [aux_sym__val_number_token2] = ACTIONS(2088), - [aux_sym__val_number_token3] = ACTIONS(2088), - [aux_sym__val_number_token4] = ACTIONS(2086), - [aux_sym__val_number_token5] = ACTIONS(2086), - [aux_sym__val_number_token6] = ACTIONS(2086), - [anon_sym_DQUOTE] = ACTIONS(2088), - [sym__str_single_quotes] = ACTIONS(2088), - [sym__str_back_ticks] = ACTIONS(2088), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2088), - }, - [742] = { - [sym_comment] = STATE(742), - [anon_sym_export] = ACTIONS(1907), - [anon_sym_alias] = ACTIONS(1907), - [anon_sym_let] = ACTIONS(1907), - [anon_sym_let_DASHenv] = ACTIONS(1907), - [anon_sym_mut] = ACTIONS(1907), - [anon_sym_const] = ACTIONS(1907), - [aux_sym_cmd_identifier_token1] = ACTIONS(1907), - [aux_sym_cmd_identifier_token2] = ACTIONS(1911), - [aux_sym_cmd_identifier_token3] = ACTIONS(1911), - [aux_sym_cmd_identifier_token4] = ACTIONS(1911), - [aux_sym_cmd_identifier_token5] = ACTIONS(1911), - [aux_sym_cmd_identifier_token6] = ACTIONS(1911), - [aux_sym_cmd_identifier_token7] = ACTIONS(1911), - [aux_sym_cmd_identifier_token8] = ACTIONS(1907), - [aux_sym_cmd_identifier_token9] = ACTIONS(1907), - [aux_sym_cmd_identifier_token10] = ACTIONS(1911), - [aux_sym_cmd_identifier_token11] = ACTIONS(1911), - [aux_sym_cmd_identifier_token12] = ACTIONS(1907), - [aux_sym_cmd_identifier_token13] = ACTIONS(1907), - [aux_sym_cmd_identifier_token14] = ACTIONS(1907), - [aux_sym_cmd_identifier_token15] = ACTIONS(1907), - [aux_sym_cmd_identifier_token16] = ACTIONS(1911), - [aux_sym_cmd_identifier_token17] = ACTIONS(1911), - [aux_sym_cmd_identifier_token18] = ACTIONS(1911), - [aux_sym_cmd_identifier_token19] = ACTIONS(1911), - [aux_sym_cmd_identifier_token20] = ACTIONS(1911), - [aux_sym_cmd_identifier_token21] = ACTIONS(1911), - [aux_sym_cmd_identifier_token22] = ACTIONS(1911), - [aux_sym_cmd_identifier_token23] = ACTIONS(1911), - [aux_sym_cmd_identifier_token24] = ACTIONS(1911), - [aux_sym_cmd_identifier_token25] = ACTIONS(1911), - [aux_sym_cmd_identifier_token26] = ACTIONS(1911), - [aux_sym_cmd_identifier_token27] = ACTIONS(1911), - [aux_sym_cmd_identifier_token28] = ACTIONS(1911), - [aux_sym_cmd_identifier_token29] = ACTIONS(1911), - [aux_sym_cmd_identifier_token30] = ACTIONS(1911), - [aux_sym_cmd_identifier_token31] = ACTIONS(1911), - [aux_sym_cmd_identifier_token32] = ACTIONS(1911), - [aux_sym_cmd_identifier_token33] = ACTIONS(1911), - [aux_sym_cmd_identifier_token34] = ACTIONS(1907), - [aux_sym_cmd_identifier_token35] = ACTIONS(1911), - [aux_sym_cmd_identifier_token36] = ACTIONS(1911), - [aux_sym_cmd_identifier_token37] = ACTIONS(1911), - [aux_sym_cmd_identifier_token38] = ACTIONS(1907), - [aux_sym_cmd_identifier_token39] = ACTIONS(1911), - [aux_sym_cmd_identifier_token40] = ACTIONS(1911), - [anon_sym_def] = ACTIONS(1907), - [anon_sym_export_DASHenv] = ACTIONS(1907), - [anon_sym_extern] = ACTIONS(1907), - [anon_sym_module] = ACTIONS(1907), - [anon_sym_use] = ACTIONS(1907), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_DOLLAR] = ACTIONS(1911), - [anon_sym_error] = ACTIONS(1907), - [anon_sym_DASH2] = ACTIONS(1907), - [anon_sym_break] = ACTIONS(1907), - [anon_sym_continue] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(1907), - [anon_sym_in2] = ACTIONS(1907), - [anon_sym_loop] = ACTIONS(1907), - [anon_sym_make] = ACTIONS(1907), - [anon_sym_while] = ACTIONS(1907), - [anon_sym_do] = ACTIONS(1907), - [anon_sym_if] = ACTIONS(1907), - [anon_sym_else] = ACTIONS(1907), - [anon_sym_match] = ACTIONS(1907), - [anon_sym_RBRACE] = ACTIONS(1911), - [anon_sym_try] = ACTIONS(1907), - [anon_sym_catch] = ACTIONS(1907), - [anon_sym_return] = ACTIONS(1907), - [anon_sym_source] = ACTIONS(1907), - [anon_sym_source_DASHenv] = ACTIONS(1907), - [anon_sym_register] = ACTIONS(1907), - [anon_sym_hide] = ACTIONS(1907), - [anon_sym_hide_DASHenv] = ACTIONS(1907), - [anon_sym_overlay] = ACTIONS(1907), - [anon_sym_as] = ACTIONS(1907), - [anon_sym_PLUS2] = ACTIONS(1907), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1911), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1911), - [aux_sym__val_number_decimal_token1] = ACTIONS(1907), - [aux_sym__val_number_decimal_token2] = ACTIONS(1911), - [aux_sym__val_number_decimal_token3] = ACTIONS(1911), - [aux_sym__val_number_decimal_token4] = ACTIONS(1911), - [aux_sym__val_number_token1] = ACTIONS(1911), - [aux_sym__val_number_token2] = ACTIONS(1911), - [aux_sym__val_number_token3] = ACTIONS(1911), - [aux_sym__val_number_token4] = ACTIONS(1907), - [aux_sym__val_number_token5] = ACTIONS(1907), - [aux_sym__val_number_token6] = ACTIONS(1907), - [anon_sym_DQUOTE] = ACTIONS(1911), - [sym__str_single_quotes] = ACTIONS(1911), - [sym__str_back_ticks] = ACTIONS(1911), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1911), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1911), - }, - [743] = { - [sym_comment] = STATE(743), - [anon_sym_export] = ACTIONS(2155), - [anon_sym_alias] = ACTIONS(2155), - [anon_sym_let] = ACTIONS(2155), - [anon_sym_let_DASHenv] = ACTIONS(2155), - [anon_sym_mut] = ACTIONS(2155), - [anon_sym_const] = ACTIONS(2155), - [aux_sym_cmd_identifier_token1] = ACTIONS(2155), - [aux_sym_cmd_identifier_token2] = ACTIONS(2157), - [aux_sym_cmd_identifier_token3] = ACTIONS(2157), - [aux_sym_cmd_identifier_token4] = ACTIONS(2157), - [aux_sym_cmd_identifier_token5] = ACTIONS(2157), - [aux_sym_cmd_identifier_token6] = ACTIONS(2157), - [aux_sym_cmd_identifier_token7] = ACTIONS(2157), - [aux_sym_cmd_identifier_token8] = ACTIONS(2155), - [aux_sym_cmd_identifier_token9] = ACTIONS(2155), - [aux_sym_cmd_identifier_token10] = ACTIONS(2157), - [aux_sym_cmd_identifier_token11] = ACTIONS(2157), - [aux_sym_cmd_identifier_token12] = ACTIONS(2155), - [aux_sym_cmd_identifier_token13] = ACTIONS(2155), - [aux_sym_cmd_identifier_token14] = ACTIONS(2155), - [aux_sym_cmd_identifier_token15] = ACTIONS(2155), - [aux_sym_cmd_identifier_token16] = ACTIONS(2157), - [aux_sym_cmd_identifier_token17] = ACTIONS(2157), - [aux_sym_cmd_identifier_token18] = ACTIONS(2157), - [aux_sym_cmd_identifier_token19] = ACTIONS(2157), - [aux_sym_cmd_identifier_token20] = ACTIONS(2157), - [aux_sym_cmd_identifier_token21] = ACTIONS(2157), - [aux_sym_cmd_identifier_token22] = ACTIONS(2157), - [aux_sym_cmd_identifier_token23] = ACTIONS(2157), - [aux_sym_cmd_identifier_token24] = ACTIONS(2157), - [aux_sym_cmd_identifier_token25] = ACTIONS(2157), - [aux_sym_cmd_identifier_token26] = ACTIONS(2157), - [aux_sym_cmd_identifier_token27] = ACTIONS(2157), - [aux_sym_cmd_identifier_token28] = ACTIONS(2157), - [aux_sym_cmd_identifier_token29] = ACTIONS(2157), - [aux_sym_cmd_identifier_token30] = ACTIONS(2157), - [aux_sym_cmd_identifier_token31] = ACTIONS(2157), - [aux_sym_cmd_identifier_token32] = ACTIONS(2157), - [aux_sym_cmd_identifier_token33] = ACTIONS(2157), - [aux_sym_cmd_identifier_token34] = ACTIONS(2155), - [aux_sym_cmd_identifier_token35] = ACTIONS(2157), - [aux_sym_cmd_identifier_token36] = ACTIONS(2157), - [aux_sym_cmd_identifier_token37] = ACTIONS(2157), - [aux_sym_cmd_identifier_token38] = ACTIONS(2155), - [aux_sym_cmd_identifier_token39] = ACTIONS(2157), - [aux_sym_cmd_identifier_token40] = ACTIONS(2157), - [anon_sym_def] = ACTIONS(2155), - [anon_sym_export_DASHenv] = ACTIONS(2155), - [anon_sym_extern] = ACTIONS(2155), - [anon_sym_module] = ACTIONS(2155), - [anon_sym_use] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(2157), - [anon_sym_DOLLAR] = ACTIONS(2157), - [anon_sym_error] = ACTIONS(2155), - [anon_sym_DASH2] = ACTIONS(2155), - [anon_sym_break] = ACTIONS(2155), - [anon_sym_continue] = ACTIONS(2155), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_in2] = ACTIONS(2155), - [anon_sym_loop] = ACTIONS(2155), - [anon_sym_make] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(2155), - [anon_sym_do] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2155), - [anon_sym_else] = ACTIONS(2155), - [anon_sym_match] = ACTIONS(2155), - [anon_sym_RBRACE] = ACTIONS(2157), - [anon_sym_try] = ACTIONS(2155), - [anon_sym_catch] = ACTIONS(2155), - [anon_sym_return] = ACTIONS(2155), - [anon_sym_source] = ACTIONS(2155), - [anon_sym_source_DASHenv] = ACTIONS(2155), - [anon_sym_register] = ACTIONS(2155), - [anon_sym_hide] = ACTIONS(2155), - [anon_sym_hide_DASHenv] = ACTIONS(2155), - [anon_sym_overlay] = ACTIONS(2155), - [anon_sym_as] = ACTIONS(2155), - [anon_sym_PLUS2] = ACTIONS(2155), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2157), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2157), - [aux_sym__val_number_decimal_token1] = ACTIONS(2155), - [aux_sym__val_number_decimal_token2] = ACTIONS(2157), - [aux_sym__val_number_decimal_token3] = ACTIONS(2157), - [aux_sym__val_number_decimal_token4] = ACTIONS(2157), - [aux_sym__val_number_token1] = ACTIONS(2157), - [aux_sym__val_number_token2] = ACTIONS(2157), - [aux_sym__val_number_token3] = ACTIONS(2157), - [aux_sym__val_number_token4] = ACTIONS(2155), - [aux_sym__val_number_token5] = ACTIONS(2155), - [aux_sym__val_number_token6] = ACTIONS(2155), - [anon_sym_DQUOTE] = ACTIONS(2157), - [sym__str_single_quotes] = ACTIONS(2157), - [sym__str_back_ticks] = ACTIONS(2157), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2157), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2157), - }, - [744] = { - [sym_comment] = STATE(744), - [anon_sym_export] = ACTIONS(2304), - [anon_sym_alias] = ACTIONS(2304), - [anon_sym_let] = ACTIONS(2304), - [anon_sym_let_DASHenv] = ACTIONS(2304), - [anon_sym_mut] = ACTIONS(2304), - [anon_sym_const] = ACTIONS(2304), - [aux_sym_cmd_identifier_token1] = ACTIONS(2304), - [aux_sym_cmd_identifier_token2] = ACTIONS(2308), - [aux_sym_cmd_identifier_token3] = ACTIONS(2308), - [aux_sym_cmd_identifier_token4] = ACTIONS(2308), - [aux_sym_cmd_identifier_token5] = ACTIONS(2308), - [aux_sym_cmd_identifier_token6] = ACTIONS(2308), - [aux_sym_cmd_identifier_token7] = ACTIONS(2308), - [aux_sym_cmd_identifier_token8] = ACTIONS(2304), - [aux_sym_cmd_identifier_token9] = ACTIONS(2304), - [aux_sym_cmd_identifier_token10] = ACTIONS(2308), - [aux_sym_cmd_identifier_token11] = ACTIONS(2308), - [aux_sym_cmd_identifier_token12] = ACTIONS(2304), - [aux_sym_cmd_identifier_token13] = ACTIONS(2304), - [aux_sym_cmd_identifier_token14] = ACTIONS(2304), - [aux_sym_cmd_identifier_token15] = ACTIONS(2304), - [aux_sym_cmd_identifier_token16] = ACTIONS(2308), - [aux_sym_cmd_identifier_token17] = ACTIONS(2308), - [aux_sym_cmd_identifier_token18] = ACTIONS(2308), - [aux_sym_cmd_identifier_token19] = ACTIONS(2308), - [aux_sym_cmd_identifier_token20] = ACTIONS(2308), - [aux_sym_cmd_identifier_token21] = ACTIONS(2308), - [aux_sym_cmd_identifier_token22] = ACTIONS(2308), - [aux_sym_cmd_identifier_token23] = ACTIONS(2308), - [aux_sym_cmd_identifier_token24] = ACTIONS(2308), - [aux_sym_cmd_identifier_token25] = ACTIONS(2308), - [aux_sym_cmd_identifier_token26] = ACTIONS(2308), - [aux_sym_cmd_identifier_token27] = ACTIONS(2308), - [aux_sym_cmd_identifier_token28] = ACTIONS(2308), - [aux_sym_cmd_identifier_token29] = ACTIONS(2308), - [aux_sym_cmd_identifier_token30] = ACTIONS(2308), - [aux_sym_cmd_identifier_token31] = ACTIONS(2308), - [aux_sym_cmd_identifier_token32] = ACTIONS(2308), - [aux_sym_cmd_identifier_token33] = ACTIONS(2308), - [aux_sym_cmd_identifier_token34] = ACTIONS(2304), - [aux_sym_cmd_identifier_token35] = ACTIONS(2308), - [aux_sym_cmd_identifier_token36] = ACTIONS(2308), - [aux_sym_cmd_identifier_token37] = ACTIONS(2308), - [aux_sym_cmd_identifier_token38] = ACTIONS(2304), - [aux_sym_cmd_identifier_token39] = ACTIONS(2308), - [aux_sym_cmd_identifier_token40] = ACTIONS(2308), - [anon_sym_def] = ACTIONS(2304), - [anon_sym_export_DASHenv] = ACTIONS(2304), - [anon_sym_extern] = ACTIONS(2304), - [anon_sym_module] = ACTIONS(2304), - [anon_sym_use] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2308), - [anon_sym_DOLLAR] = ACTIONS(2308), - [anon_sym_error] = ACTIONS(2304), - [anon_sym_DASH2] = ACTIONS(2304), - [anon_sym_break] = ACTIONS(2304), - [anon_sym_continue] = ACTIONS(2304), - [anon_sym_for] = ACTIONS(2304), - [anon_sym_in2] = ACTIONS(2304), - [anon_sym_loop] = ACTIONS(2304), - [anon_sym_make] = ACTIONS(2304), - [anon_sym_while] = ACTIONS(2304), - [anon_sym_do] = ACTIONS(2304), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_else] = ACTIONS(2304), - [anon_sym_match] = ACTIONS(2304), - [anon_sym_RBRACE] = ACTIONS(2308), - [anon_sym_try] = ACTIONS(2304), - [anon_sym_catch] = ACTIONS(2304), - [anon_sym_return] = ACTIONS(2304), - [anon_sym_source] = ACTIONS(2304), - [anon_sym_source_DASHenv] = ACTIONS(2304), - [anon_sym_register] = ACTIONS(2304), - [anon_sym_hide] = ACTIONS(2304), - [anon_sym_hide_DASHenv] = ACTIONS(2304), - [anon_sym_overlay] = ACTIONS(2304), - [anon_sym_as] = ACTIONS(2304), - [anon_sym_PLUS2] = ACTIONS(2304), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2308), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2308), - [aux_sym__val_number_decimal_token1] = ACTIONS(2304), - [aux_sym__val_number_decimal_token2] = ACTIONS(2308), - [aux_sym__val_number_decimal_token3] = ACTIONS(2308), - [aux_sym__val_number_decimal_token4] = ACTIONS(2308), - [aux_sym__val_number_token1] = ACTIONS(2308), - [aux_sym__val_number_token2] = ACTIONS(2308), - [aux_sym__val_number_token3] = ACTIONS(2308), - [aux_sym__val_number_token4] = ACTIONS(2304), - [aux_sym__val_number_token5] = ACTIONS(2304), - [aux_sym__val_number_token6] = ACTIONS(2304), - [anon_sym_DQUOTE] = ACTIONS(2308), - [sym__str_single_quotes] = ACTIONS(2308), - [sym__str_back_ticks] = ACTIONS(2308), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2308), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2308), - }, - [745] = { - [sym_comment] = STATE(745), - [anon_sym_export] = ACTIONS(2484), - [anon_sym_alias] = ACTIONS(2484), - [anon_sym_let] = ACTIONS(2484), - [anon_sym_let_DASHenv] = ACTIONS(2484), - [anon_sym_mut] = ACTIONS(2484), - [anon_sym_const] = ACTIONS(2484), - [aux_sym_cmd_identifier_token1] = ACTIONS(2484), - [aux_sym_cmd_identifier_token2] = ACTIONS(2486), - [aux_sym_cmd_identifier_token3] = ACTIONS(2486), - [aux_sym_cmd_identifier_token4] = ACTIONS(2486), - [aux_sym_cmd_identifier_token5] = ACTIONS(2486), - [aux_sym_cmd_identifier_token6] = ACTIONS(2486), - [aux_sym_cmd_identifier_token7] = ACTIONS(2486), - [aux_sym_cmd_identifier_token8] = ACTIONS(2484), - [aux_sym_cmd_identifier_token9] = ACTIONS(2484), - [aux_sym_cmd_identifier_token10] = ACTIONS(2486), - [aux_sym_cmd_identifier_token11] = ACTIONS(2486), - [aux_sym_cmd_identifier_token12] = ACTIONS(2484), - [aux_sym_cmd_identifier_token13] = ACTIONS(2484), - [aux_sym_cmd_identifier_token14] = ACTIONS(2484), - [aux_sym_cmd_identifier_token15] = ACTIONS(2484), - [aux_sym_cmd_identifier_token16] = ACTIONS(2486), - [aux_sym_cmd_identifier_token17] = ACTIONS(2486), - [aux_sym_cmd_identifier_token18] = ACTIONS(2486), - [aux_sym_cmd_identifier_token19] = ACTIONS(2486), - [aux_sym_cmd_identifier_token20] = ACTIONS(2486), - [aux_sym_cmd_identifier_token21] = ACTIONS(2486), - [aux_sym_cmd_identifier_token22] = ACTIONS(2486), - [aux_sym_cmd_identifier_token23] = ACTIONS(2486), - [aux_sym_cmd_identifier_token24] = ACTIONS(2486), - [aux_sym_cmd_identifier_token25] = ACTIONS(2486), - [aux_sym_cmd_identifier_token26] = ACTIONS(2486), - [aux_sym_cmd_identifier_token27] = ACTIONS(2486), - [aux_sym_cmd_identifier_token28] = ACTIONS(2486), - [aux_sym_cmd_identifier_token29] = ACTIONS(2486), - [aux_sym_cmd_identifier_token30] = ACTIONS(2486), - [aux_sym_cmd_identifier_token31] = ACTIONS(2486), - [aux_sym_cmd_identifier_token32] = ACTIONS(2486), - [aux_sym_cmd_identifier_token33] = ACTIONS(2486), - [aux_sym_cmd_identifier_token34] = ACTIONS(2484), - [aux_sym_cmd_identifier_token35] = ACTIONS(2486), - [aux_sym_cmd_identifier_token36] = ACTIONS(2486), - [aux_sym_cmd_identifier_token37] = ACTIONS(2486), - [aux_sym_cmd_identifier_token38] = ACTIONS(2484), - [aux_sym_cmd_identifier_token39] = ACTIONS(2486), - [aux_sym_cmd_identifier_token40] = ACTIONS(2486), - [anon_sym_def] = ACTIONS(2484), - [anon_sym_export_DASHenv] = ACTIONS(2484), - [anon_sym_extern] = ACTIONS(2484), - [anon_sym_module] = ACTIONS(2484), - [anon_sym_use] = ACTIONS(2484), - [anon_sym_LPAREN] = ACTIONS(2486), - [anon_sym_DOLLAR] = ACTIONS(2486), - [anon_sym_error] = ACTIONS(2484), - [anon_sym_DASH2] = ACTIONS(2484), - [anon_sym_break] = ACTIONS(2484), - [anon_sym_continue] = ACTIONS(2484), - [anon_sym_for] = ACTIONS(2484), - [anon_sym_in2] = ACTIONS(2484), - [anon_sym_loop] = ACTIONS(2484), - [anon_sym_make] = ACTIONS(2484), - [anon_sym_while] = ACTIONS(2484), - [anon_sym_do] = ACTIONS(2484), - [anon_sym_if] = ACTIONS(2484), - [anon_sym_else] = ACTIONS(2484), - [anon_sym_match] = ACTIONS(2484), - [anon_sym_RBRACE] = ACTIONS(2486), - [anon_sym_try] = ACTIONS(2484), - [anon_sym_catch] = ACTIONS(2484), - [anon_sym_return] = ACTIONS(2484), - [anon_sym_source] = ACTIONS(2484), - [anon_sym_source_DASHenv] = ACTIONS(2484), - [anon_sym_register] = ACTIONS(2484), - [anon_sym_hide] = ACTIONS(2484), - [anon_sym_hide_DASHenv] = ACTIONS(2484), - [anon_sym_overlay] = ACTIONS(2484), - [anon_sym_as] = ACTIONS(2484), - [anon_sym_PLUS2] = ACTIONS(2484), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2486), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2486), - [aux_sym__val_number_decimal_token1] = ACTIONS(2484), - [aux_sym__val_number_decimal_token2] = ACTIONS(2486), - [aux_sym__val_number_decimal_token3] = ACTIONS(2486), - [aux_sym__val_number_decimal_token4] = ACTIONS(2486), - [aux_sym__val_number_token1] = ACTIONS(2486), - [aux_sym__val_number_token2] = ACTIONS(2486), - [aux_sym__val_number_token3] = ACTIONS(2486), - [aux_sym__val_number_token4] = ACTIONS(2484), - [aux_sym__val_number_token5] = ACTIONS(2484), - [aux_sym__val_number_token6] = ACTIONS(2484), - [anon_sym_DQUOTE] = ACTIONS(2486), - [sym__str_single_quotes] = ACTIONS(2486), - [sym__str_back_ticks] = ACTIONS(2486), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2486), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2486), - }, - [746] = { - [sym_comment] = STATE(746), [anon_sym_export] = ACTIONS(2343), [anon_sym_alias] = ACTIONS(2343), [anon_sym_let] = ACTIONS(2343), @@ -154543,1790 +154070,1988 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(2345), }, - [747] = { - [sym_comment] = STATE(747), - [anon_sym_export] = ACTIONS(2351), - [anon_sym_alias] = ACTIONS(2351), - [anon_sym_let] = ACTIONS(2351), - [anon_sym_let_DASHenv] = ACTIONS(2351), - [anon_sym_mut] = ACTIONS(2351), - [anon_sym_const] = ACTIONS(2351), - [aux_sym_cmd_identifier_token1] = ACTIONS(2351), - [aux_sym_cmd_identifier_token2] = ACTIONS(2353), - [aux_sym_cmd_identifier_token3] = ACTIONS(2353), - [aux_sym_cmd_identifier_token4] = ACTIONS(2353), - [aux_sym_cmd_identifier_token5] = ACTIONS(2353), - [aux_sym_cmd_identifier_token6] = ACTIONS(2353), - [aux_sym_cmd_identifier_token7] = ACTIONS(2353), - [aux_sym_cmd_identifier_token8] = ACTIONS(2351), - [aux_sym_cmd_identifier_token9] = ACTIONS(2351), - [aux_sym_cmd_identifier_token10] = ACTIONS(2353), - [aux_sym_cmd_identifier_token11] = ACTIONS(2353), - [aux_sym_cmd_identifier_token12] = ACTIONS(2351), - [aux_sym_cmd_identifier_token13] = ACTIONS(2351), - [aux_sym_cmd_identifier_token14] = ACTIONS(2351), - [aux_sym_cmd_identifier_token15] = ACTIONS(2351), - [aux_sym_cmd_identifier_token16] = ACTIONS(2353), - [aux_sym_cmd_identifier_token17] = ACTIONS(2353), - [aux_sym_cmd_identifier_token18] = ACTIONS(2353), - [aux_sym_cmd_identifier_token19] = ACTIONS(2353), - [aux_sym_cmd_identifier_token20] = ACTIONS(2353), - [aux_sym_cmd_identifier_token21] = ACTIONS(2353), - [aux_sym_cmd_identifier_token22] = ACTIONS(2353), - [aux_sym_cmd_identifier_token23] = ACTIONS(2353), - [aux_sym_cmd_identifier_token24] = ACTIONS(2353), - [aux_sym_cmd_identifier_token25] = ACTIONS(2353), - [aux_sym_cmd_identifier_token26] = ACTIONS(2353), - [aux_sym_cmd_identifier_token27] = ACTIONS(2353), - [aux_sym_cmd_identifier_token28] = ACTIONS(2353), - [aux_sym_cmd_identifier_token29] = ACTIONS(2353), - [aux_sym_cmd_identifier_token30] = ACTIONS(2353), - [aux_sym_cmd_identifier_token31] = ACTIONS(2353), - [aux_sym_cmd_identifier_token32] = ACTIONS(2353), - [aux_sym_cmd_identifier_token33] = ACTIONS(2353), - [aux_sym_cmd_identifier_token34] = ACTIONS(2351), - [aux_sym_cmd_identifier_token35] = ACTIONS(2353), - [aux_sym_cmd_identifier_token36] = ACTIONS(2353), - [aux_sym_cmd_identifier_token37] = ACTIONS(2353), - [aux_sym_cmd_identifier_token38] = ACTIONS(2351), - [aux_sym_cmd_identifier_token39] = ACTIONS(2353), - [aux_sym_cmd_identifier_token40] = ACTIONS(2353), - [anon_sym_def] = ACTIONS(2351), - [anon_sym_export_DASHenv] = ACTIONS(2351), - [anon_sym_extern] = ACTIONS(2351), - [anon_sym_module] = ACTIONS(2351), - [anon_sym_use] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_DOLLAR] = ACTIONS(2353), - [anon_sym_error] = ACTIONS(2351), - [anon_sym_DASH2] = ACTIONS(2351), - [anon_sym_break] = ACTIONS(2351), - [anon_sym_continue] = ACTIONS(2351), - [anon_sym_for] = ACTIONS(2351), - [anon_sym_in2] = ACTIONS(2351), - [anon_sym_loop] = ACTIONS(2351), - [anon_sym_make] = ACTIONS(2351), - [anon_sym_while] = ACTIONS(2351), - [anon_sym_do] = ACTIONS(2351), - [anon_sym_if] = ACTIONS(2351), - [anon_sym_else] = ACTIONS(2351), - [anon_sym_match] = ACTIONS(2351), - [anon_sym_RBRACE] = ACTIONS(2353), - [anon_sym_try] = ACTIONS(2351), - [anon_sym_catch] = ACTIONS(2351), - [anon_sym_return] = ACTIONS(2351), - [anon_sym_source] = ACTIONS(2351), - [anon_sym_source_DASHenv] = ACTIONS(2351), - [anon_sym_register] = ACTIONS(2351), - [anon_sym_hide] = ACTIONS(2351), - [anon_sym_hide_DASHenv] = ACTIONS(2351), - [anon_sym_overlay] = ACTIONS(2351), - [anon_sym_as] = ACTIONS(2351), - [anon_sym_PLUS2] = ACTIONS(2351), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2353), - [aux_sym__val_number_decimal_token1] = ACTIONS(2351), - [aux_sym__val_number_decimal_token2] = ACTIONS(2353), - [aux_sym__val_number_decimal_token3] = ACTIONS(2353), - [aux_sym__val_number_decimal_token4] = ACTIONS(2353), - [aux_sym__val_number_token1] = ACTIONS(2353), - [aux_sym__val_number_token2] = ACTIONS(2353), - [aux_sym__val_number_token3] = ACTIONS(2353), - [aux_sym__val_number_token4] = ACTIONS(2351), - [aux_sym__val_number_token5] = ACTIONS(2351), - [aux_sym__val_number_token6] = ACTIONS(2351), - [anon_sym_DQUOTE] = ACTIONS(2353), - [sym__str_single_quotes] = ACTIONS(2353), - [sym__str_back_ticks] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2353), + [739] = { + [sym_comment] = STATE(739), + [anon_sym_export] = ACTIONS(2440), + [anon_sym_alias] = ACTIONS(2440), + [anon_sym_let] = ACTIONS(2440), + [anon_sym_let_DASHenv] = ACTIONS(2440), + [anon_sym_mut] = ACTIONS(2440), + [anon_sym_const] = ACTIONS(2440), + [aux_sym_cmd_identifier_token1] = ACTIONS(2440), + [aux_sym_cmd_identifier_token2] = ACTIONS(2442), + [aux_sym_cmd_identifier_token3] = ACTIONS(2442), + [aux_sym_cmd_identifier_token4] = ACTIONS(2442), + [aux_sym_cmd_identifier_token5] = ACTIONS(2442), + [aux_sym_cmd_identifier_token6] = ACTIONS(2442), + [aux_sym_cmd_identifier_token7] = ACTIONS(2442), + [aux_sym_cmd_identifier_token8] = ACTIONS(2440), + [aux_sym_cmd_identifier_token9] = ACTIONS(2440), + [aux_sym_cmd_identifier_token10] = ACTIONS(2442), + [aux_sym_cmd_identifier_token11] = ACTIONS(2442), + [aux_sym_cmd_identifier_token12] = ACTIONS(2440), + [aux_sym_cmd_identifier_token13] = ACTIONS(2440), + [aux_sym_cmd_identifier_token14] = ACTIONS(2440), + [aux_sym_cmd_identifier_token15] = ACTIONS(2440), + [aux_sym_cmd_identifier_token16] = ACTIONS(2442), + [aux_sym_cmd_identifier_token17] = ACTIONS(2442), + [aux_sym_cmd_identifier_token18] = ACTIONS(2442), + [aux_sym_cmd_identifier_token19] = ACTIONS(2442), + [aux_sym_cmd_identifier_token20] = ACTIONS(2442), + [aux_sym_cmd_identifier_token21] = ACTIONS(2442), + [aux_sym_cmd_identifier_token22] = ACTIONS(2442), + [aux_sym_cmd_identifier_token23] = ACTIONS(2442), + [aux_sym_cmd_identifier_token24] = ACTIONS(2442), + [aux_sym_cmd_identifier_token25] = ACTIONS(2442), + [aux_sym_cmd_identifier_token26] = ACTIONS(2442), + [aux_sym_cmd_identifier_token27] = ACTIONS(2442), + [aux_sym_cmd_identifier_token28] = ACTIONS(2442), + [aux_sym_cmd_identifier_token29] = ACTIONS(2442), + [aux_sym_cmd_identifier_token30] = ACTIONS(2442), + [aux_sym_cmd_identifier_token31] = ACTIONS(2442), + [aux_sym_cmd_identifier_token32] = ACTIONS(2442), + [aux_sym_cmd_identifier_token33] = ACTIONS(2442), + [aux_sym_cmd_identifier_token34] = ACTIONS(2440), + [aux_sym_cmd_identifier_token35] = ACTIONS(2442), + [aux_sym_cmd_identifier_token36] = ACTIONS(2442), + [aux_sym_cmd_identifier_token37] = ACTIONS(2442), + [aux_sym_cmd_identifier_token38] = ACTIONS(2440), + [aux_sym_cmd_identifier_token39] = ACTIONS(2442), + [aux_sym_cmd_identifier_token40] = ACTIONS(2442), + [anon_sym_def] = ACTIONS(2440), + [anon_sym_export_DASHenv] = ACTIONS(2440), + [anon_sym_extern] = ACTIONS(2440), + [anon_sym_module] = ACTIONS(2440), + [anon_sym_use] = ACTIONS(2440), + [anon_sym_LPAREN] = ACTIONS(2442), + [anon_sym_DOLLAR] = ACTIONS(2442), + [anon_sym_error] = ACTIONS(2440), + [anon_sym_DASH2] = ACTIONS(2440), + [anon_sym_break] = ACTIONS(2440), + [anon_sym_continue] = ACTIONS(2440), + [anon_sym_for] = ACTIONS(2440), + [anon_sym_in2] = ACTIONS(2440), + [anon_sym_loop] = ACTIONS(2440), + [anon_sym_make] = ACTIONS(2440), + [anon_sym_while] = ACTIONS(2440), + [anon_sym_do] = ACTIONS(2440), + [anon_sym_if] = ACTIONS(2440), + [anon_sym_else] = ACTIONS(2440), + [anon_sym_match] = ACTIONS(2440), + [anon_sym_RBRACE] = ACTIONS(2442), + [anon_sym_try] = ACTIONS(2440), + [anon_sym_catch] = ACTIONS(2440), + [anon_sym_return] = ACTIONS(2440), + [anon_sym_source] = ACTIONS(2440), + [anon_sym_source_DASHenv] = ACTIONS(2440), + [anon_sym_register] = ACTIONS(2440), + [anon_sym_hide] = ACTIONS(2440), + [anon_sym_hide_DASHenv] = ACTIONS(2440), + [anon_sym_overlay] = ACTIONS(2440), + [anon_sym_as] = ACTIONS(2440), + [anon_sym_PLUS2] = ACTIONS(2440), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2442), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2442), + [aux_sym__val_number_decimal_token1] = ACTIONS(2440), + [aux_sym__val_number_decimal_token2] = ACTIONS(2442), + [aux_sym__val_number_decimal_token3] = ACTIONS(2442), + [aux_sym__val_number_decimal_token4] = ACTIONS(2442), + [aux_sym__val_number_token1] = ACTIONS(2442), + [aux_sym__val_number_token2] = ACTIONS(2442), + [aux_sym__val_number_token3] = ACTIONS(2442), + [aux_sym__val_number_token4] = ACTIONS(2440), + [aux_sym__val_number_token5] = ACTIONS(2440), + [aux_sym__val_number_token6] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2442), + [sym__str_single_quotes] = ACTIONS(2442), + [sym__str_back_ticks] = ACTIONS(2442), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2442), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2442), + }, + [740] = { + [sym_comment] = STATE(740), + [anon_sym_export] = ACTIONS(1915), + [anon_sym_alias] = ACTIONS(1915), + [anon_sym_let] = ACTIONS(1915), + [anon_sym_let_DASHenv] = ACTIONS(1915), + [anon_sym_mut] = ACTIONS(1915), + [anon_sym_const] = ACTIONS(1915), + [aux_sym_cmd_identifier_token1] = ACTIONS(1915), + [aux_sym_cmd_identifier_token2] = ACTIONS(1917), + [aux_sym_cmd_identifier_token3] = ACTIONS(1917), + [aux_sym_cmd_identifier_token4] = ACTIONS(1917), + [aux_sym_cmd_identifier_token5] = ACTIONS(1917), + [aux_sym_cmd_identifier_token6] = ACTIONS(1917), + [aux_sym_cmd_identifier_token7] = ACTIONS(1917), + [aux_sym_cmd_identifier_token8] = ACTIONS(1915), + [aux_sym_cmd_identifier_token9] = ACTIONS(1915), + [aux_sym_cmd_identifier_token10] = ACTIONS(1917), + [aux_sym_cmd_identifier_token11] = ACTIONS(1917), + [aux_sym_cmd_identifier_token12] = ACTIONS(1915), + [aux_sym_cmd_identifier_token13] = ACTIONS(1915), + [aux_sym_cmd_identifier_token14] = ACTIONS(1915), + [aux_sym_cmd_identifier_token15] = ACTIONS(1915), + [aux_sym_cmd_identifier_token16] = ACTIONS(1917), + [aux_sym_cmd_identifier_token17] = ACTIONS(1917), + [aux_sym_cmd_identifier_token18] = ACTIONS(1917), + [aux_sym_cmd_identifier_token19] = ACTIONS(1917), + [aux_sym_cmd_identifier_token20] = ACTIONS(1917), + [aux_sym_cmd_identifier_token21] = ACTIONS(1917), + [aux_sym_cmd_identifier_token22] = ACTIONS(1917), + [aux_sym_cmd_identifier_token23] = ACTIONS(1917), + [aux_sym_cmd_identifier_token24] = ACTIONS(1917), + [aux_sym_cmd_identifier_token25] = ACTIONS(1917), + [aux_sym_cmd_identifier_token26] = ACTIONS(1917), + [aux_sym_cmd_identifier_token27] = ACTIONS(1917), + [aux_sym_cmd_identifier_token28] = ACTIONS(1917), + [aux_sym_cmd_identifier_token29] = ACTIONS(1917), + [aux_sym_cmd_identifier_token30] = ACTIONS(1917), + [aux_sym_cmd_identifier_token31] = ACTIONS(1917), + [aux_sym_cmd_identifier_token32] = ACTIONS(1917), + [aux_sym_cmd_identifier_token33] = ACTIONS(1917), + [aux_sym_cmd_identifier_token34] = ACTIONS(1915), + [aux_sym_cmd_identifier_token35] = ACTIONS(1917), + [aux_sym_cmd_identifier_token36] = ACTIONS(1917), + [aux_sym_cmd_identifier_token37] = ACTIONS(1917), + [aux_sym_cmd_identifier_token38] = ACTIONS(1915), + [aux_sym_cmd_identifier_token39] = ACTIONS(1917), + [aux_sym_cmd_identifier_token40] = ACTIONS(1917), + [anon_sym_def] = ACTIONS(1915), + [anon_sym_export_DASHenv] = ACTIONS(1915), + [anon_sym_extern] = ACTIONS(1915), + [anon_sym_module] = ACTIONS(1915), + [anon_sym_use] = ACTIONS(1915), + [anon_sym_LPAREN] = ACTIONS(1917), + [anon_sym_DOLLAR] = ACTIONS(1917), + [anon_sym_error] = ACTIONS(1915), + [anon_sym_DASH2] = ACTIONS(1915), + [anon_sym_break] = ACTIONS(1915), + [anon_sym_continue] = ACTIONS(1915), + [anon_sym_for] = ACTIONS(1915), + [anon_sym_in2] = ACTIONS(1915), + [anon_sym_loop] = ACTIONS(1915), + [anon_sym_make] = ACTIONS(1915), + [anon_sym_while] = ACTIONS(1915), + [anon_sym_do] = ACTIONS(1915), + [anon_sym_if] = ACTIONS(1915), + [anon_sym_else] = ACTIONS(1915), + [anon_sym_match] = ACTIONS(1915), + [anon_sym_RBRACE] = ACTIONS(1917), + [anon_sym_try] = ACTIONS(1915), + [anon_sym_catch] = ACTIONS(1915), + [anon_sym_return] = ACTIONS(1915), + [anon_sym_source] = ACTIONS(1915), + [anon_sym_source_DASHenv] = ACTIONS(1915), + [anon_sym_register] = ACTIONS(1915), + [anon_sym_hide] = ACTIONS(1915), + [anon_sym_hide_DASHenv] = ACTIONS(1915), + [anon_sym_overlay] = ACTIONS(1915), + [anon_sym_as] = ACTIONS(1915), + [anon_sym_PLUS2] = ACTIONS(1915), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1917), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1917), + [aux_sym__val_number_decimal_token1] = ACTIONS(1915), + [aux_sym__val_number_decimal_token2] = ACTIONS(1917), + [aux_sym__val_number_decimal_token3] = ACTIONS(1917), + [aux_sym__val_number_decimal_token4] = ACTIONS(1917), + [aux_sym__val_number_token1] = ACTIONS(1917), + [aux_sym__val_number_token2] = ACTIONS(1917), + [aux_sym__val_number_token3] = ACTIONS(1917), + [aux_sym__val_number_token4] = ACTIONS(1915), + [aux_sym__val_number_token5] = ACTIONS(1915), + [aux_sym__val_number_token6] = ACTIONS(1915), + [anon_sym_DQUOTE] = ACTIONS(1917), + [sym__str_single_quotes] = ACTIONS(1917), + [sym__str_back_ticks] = ACTIONS(1917), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1917), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1917), + }, + [741] = { + [sym_comment] = STATE(741), + [anon_sym_export] = ACTIONS(1927), + [anon_sym_alias] = ACTIONS(1927), + [anon_sym_let] = ACTIONS(1927), + [anon_sym_let_DASHenv] = ACTIONS(1927), + [anon_sym_mut] = ACTIONS(1927), + [anon_sym_const] = ACTIONS(1927), + [aux_sym_cmd_identifier_token1] = ACTIONS(1927), + [aux_sym_cmd_identifier_token2] = ACTIONS(1929), + [aux_sym_cmd_identifier_token3] = ACTIONS(1929), + [aux_sym_cmd_identifier_token4] = ACTIONS(1929), + [aux_sym_cmd_identifier_token5] = ACTIONS(1929), + [aux_sym_cmd_identifier_token6] = ACTIONS(1929), + [aux_sym_cmd_identifier_token7] = ACTIONS(1929), + [aux_sym_cmd_identifier_token8] = ACTIONS(1927), + [aux_sym_cmd_identifier_token9] = ACTIONS(1927), + [aux_sym_cmd_identifier_token10] = ACTIONS(1929), + [aux_sym_cmd_identifier_token11] = ACTIONS(1929), + [aux_sym_cmd_identifier_token12] = ACTIONS(1927), + [aux_sym_cmd_identifier_token13] = ACTIONS(1927), + [aux_sym_cmd_identifier_token14] = ACTIONS(1927), + [aux_sym_cmd_identifier_token15] = ACTIONS(1927), + [aux_sym_cmd_identifier_token16] = ACTIONS(1929), + [aux_sym_cmd_identifier_token17] = ACTIONS(1929), + [aux_sym_cmd_identifier_token18] = ACTIONS(1929), + [aux_sym_cmd_identifier_token19] = ACTIONS(1929), + [aux_sym_cmd_identifier_token20] = ACTIONS(1929), + [aux_sym_cmd_identifier_token21] = ACTIONS(1929), + [aux_sym_cmd_identifier_token22] = ACTIONS(1929), + [aux_sym_cmd_identifier_token23] = ACTIONS(1929), + [aux_sym_cmd_identifier_token24] = ACTIONS(1929), + [aux_sym_cmd_identifier_token25] = ACTIONS(1929), + [aux_sym_cmd_identifier_token26] = ACTIONS(1929), + [aux_sym_cmd_identifier_token27] = ACTIONS(1929), + [aux_sym_cmd_identifier_token28] = ACTIONS(1929), + [aux_sym_cmd_identifier_token29] = ACTIONS(1929), + [aux_sym_cmd_identifier_token30] = ACTIONS(1929), + [aux_sym_cmd_identifier_token31] = ACTIONS(1929), + [aux_sym_cmd_identifier_token32] = ACTIONS(1929), + [aux_sym_cmd_identifier_token33] = ACTIONS(1929), + [aux_sym_cmd_identifier_token34] = ACTIONS(1927), + [aux_sym_cmd_identifier_token35] = ACTIONS(1929), + [aux_sym_cmd_identifier_token36] = ACTIONS(1929), + [aux_sym_cmd_identifier_token37] = ACTIONS(1929), + [aux_sym_cmd_identifier_token38] = ACTIONS(1927), + [aux_sym_cmd_identifier_token39] = ACTIONS(1929), + [aux_sym_cmd_identifier_token40] = ACTIONS(1929), + [anon_sym_def] = ACTIONS(1927), + [anon_sym_export_DASHenv] = ACTIONS(1927), + [anon_sym_extern] = ACTIONS(1927), + [anon_sym_module] = ACTIONS(1927), + [anon_sym_use] = ACTIONS(1927), + [anon_sym_LPAREN] = ACTIONS(1929), + [anon_sym_DOLLAR] = ACTIONS(1929), + [anon_sym_error] = ACTIONS(1927), + [anon_sym_DASH2] = ACTIONS(1927), + [anon_sym_break] = ACTIONS(1927), + [anon_sym_continue] = ACTIONS(1927), + [anon_sym_for] = ACTIONS(1927), + [anon_sym_in2] = ACTIONS(1927), + [anon_sym_loop] = ACTIONS(1927), + [anon_sym_make] = ACTIONS(1927), + [anon_sym_while] = ACTIONS(1927), + [anon_sym_do] = ACTIONS(1927), + [anon_sym_if] = ACTIONS(1927), + [anon_sym_else] = ACTIONS(1927), + [anon_sym_match] = ACTIONS(1927), + [anon_sym_RBRACE] = ACTIONS(1929), + [anon_sym_try] = ACTIONS(1927), + [anon_sym_catch] = ACTIONS(1927), + [anon_sym_return] = ACTIONS(1927), + [anon_sym_source] = ACTIONS(1927), + [anon_sym_source_DASHenv] = ACTIONS(1927), + [anon_sym_register] = ACTIONS(1927), + [anon_sym_hide] = ACTIONS(1927), + [anon_sym_hide_DASHenv] = ACTIONS(1927), + [anon_sym_overlay] = ACTIONS(1927), + [anon_sym_as] = ACTIONS(1927), + [anon_sym_PLUS2] = ACTIONS(1927), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1929), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1929), + [aux_sym__val_number_decimal_token1] = ACTIONS(1927), + [aux_sym__val_number_decimal_token2] = ACTIONS(1929), + [aux_sym__val_number_decimal_token3] = ACTIONS(1929), + [aux_sym__val_number_decimal_token4] = ACTIONS(1929), + [aux_sym__val_number_token1] = ACTIONS(1929), + [aux_sym__val_number_token2] = ACTIONS(1929), + [aux_sym__val_number_token3] = ACTIONS(1929), + [aux_sym__val_number_token4] = ACTIONS(1927), + [aux_sym__val_number_token5] = ACTIONS(1927), + [aux_sym__val_number_token6] = ACTIONS(1927), + [anon_sym_DQUOTE] = ACTIONS(1929), + [sym__str_single_quotes] = ACTIONS(1929), + [sym__str_back_ticks] = ACTIONS(1929), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1929), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1929), + }, + [742] = { + [sym_comment] = STATE(742), + [anon_sym_export] = ACTIONS(1942), + [anon_sym_alias] = ACTIONS(1942), + [anon_sym_let] = ACTIONS(1942), + [anon_sym_let_DASHenv] = ACTIONS(1942), + [anon_sym_mut] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1942), + [aux_sym_cmd_identifier_token1] = ACTIONS(1942), + [aux_sym_cmd_identifier_token2] = ACTIONS(1944), + [aux_sym_cmd_identifier_token3] = ACTIONS(1944), + [aux_sym_cmd_identifier_token4] = ACTIONS(1944), + [aux_sym_cmd_identifier_token5] = ACTIONS(1944), + [aux_sym_cmd_identifier_token6] = ACTIONS(1944), + [aux_sym_cmd_identifier_token7] = ACTIONS(1944), + [aux_sym_cmd_identifier_token8] = ACTIONS(1942), + [aux_sym_cmd_identifier_token9] = ACTIONS(1942), + [aux_sym_cmd_identifier_token10] = ACTIONS(1944), + [aux_sym_cmd_identifier_token11] = ACTIONS(1944), + [aux_sym_cmd_identifier_token12] = ACTIONS(1942), + [aux_sym_cmd_identifier_token13] = ACTIONS(1942), + [aux_sym_cmd_identifier_token14] = ACTIONS(1942), + [aux_sym_cmd_identifier_token15] = ACTIONS(1942), + [aux_sym_cmd_identifier_token16] = ACTIONS(1944), + [aux_sym_cmd_identifier_token17] = ACTIONS(1944), + [aux_sym_cmd_identifier_token18] = ACTIONS(1944), + [aux_sym_cmd_identifier_token19] = ACTIONS(1944), + [aux_sym_cmd_identifier_token20] = ACTIONS(1944), + [aux_sym_cmd_identifier_token21] = ACTIONS(1944), + [aux_sym_cmd_identifier_token22] = ACTIONS(1944), + [aux_sym_cmd_identifier_token23] = ACTIONS(1944), + [aux_sym_cmd_identifier_token24] = ACTIONS(1944), + [aux_sym_cmd_identifier_token25] = ACTIONS(1944), + [aux_sym_cmd_identifier_token26] = ACTIONS(1944), + [aux_sym_cmd_identifier_token27] = ACTIONS(1944), + [aux_sym_cmd_identifier_token28] = ACTIONS(1944), + [aux_sym_cmd_identifier_token29] = ACTIONS(1944), + [aux_sym_cmd_identifier_token30] = ACTIONS(1944), + [aux_sym_cmd_identifier_token31] = ACTIONS(1944), + [aux_sym_cmd_identifier_token32] = ACTIONS(1944), + [aux_sym_cmd_identifier_token33] = ACTIONS(1944), + [aux_sym_cmd_identifier_token34] = ACTIONS(1942), + [aux_sym_cmd_identifier_token35] = ACTIONS(1944), + [aux_sym_cmd_identifier_token36] = ACTIONS(1944), + [aux_sym_cmd_identifier_token37] = ACTIONS(1944), + [aux_sym_cmd_identifier_token38] = ACTIONS(1942), + [aux_sym_cmd_identifier_token39] = ACTIONS(1944), + [aux_sym_cmd_identifier_token40] = ACTIONS(1944), + [anon_sym_def] = ACTIONS(1942), + [anon_sym_export_DASHenv] = ACTIONS(1942), + [anon_sym_extern] = ACTIONS(1942), + [anon_sym_module] = ACTIONS(1942), + [anon_sym_use] = ACTIONS(1942), + [anon_sym_LPAREN] = ACTIONS(1944), + [anon_sym_DOLLAR] = ACTIONS(1944), + [anon_sym_error] = ACTIONS(1942), + [anon_sym_DASH2] = ACTIONS(1942), + [anon_sym_break] = ACTIONS(1942), + [anon_sym_continue] = ACTIONS(1942), + [anon_sym_for] = ACTIONS(1942), + [anon_sym_in2] = ACTIONS(1942), + [anon_sym_loop] = ACTIONS(1942), + [anon_sym_make] = ACTIONS(1942), + [anon_sym_while] = ACTIONS(1942), + [anon_sym_do] = ACTIONS(1942), + [anon_sym_if] = ACTIONS(1942), + [anon_sym_else] = ACTIONS(1942), + [anon_sym_match] = ACTIONS(1942), + [anon_sym_RBRACE] = ACTIONS(1944), + [anon_sym_try] = ACTIONS(1942), + [anon_sym_catch] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1942), + [anon_sym_source] = ACTIONS(1942), + [anon_sym_source_DASHenv] = ACTIONS(1942), + [anon_sym_register] = ACTIONS(1942), + [anon_sym_hide] = ACTIONS(1942), + [anon_sym_hide_DASHenv] = ACTIONS(1942), + [anon_sym_overlay] = ACTIONS(1942), + [anon_sym_as] = ACTIONS(1942), + [anon_sym_PLUS2] = ACTIONS(1942), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1944), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1944), + [aux_sym__val_number_decimal_token1] = ACTIONS(1942), + [aux_sym__val_number_decimal_token2] = ACTIONS(1944), + [aux_sym__val_number_decimal_token3] = ACTIONS(1944), + [aux_sym__val_number_decimal_token4] = ACTIONS(1944), + [aux_sym__val_number_token1] = ACTIONS(1944), + [aux_sym__val_number_token2] = ACTIONS(1944), + [aux_sym__val_number_token3] = ACTIONS(1944), + [aux_sym__val_number_token4] = ACTIONS(1942), + [aux_sym__val_number_token5] = ACTIONS(1942), + [aux_sym__val_number_token6] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1944), + [sym__str_single_quotes] = ACTIONS(1944), + [sym__str_back_ticks] = ACTIONS(1944), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1944), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1944), + }, + [743] = { + [sym_comment] = STATE(743), + [anon_sym_export] = ACTIONS(2490), + [anon_sym_alias] = ACTIONS(2490), + [anon_sym_let] = ACTIONS(2490), + [anon_sym_let_DASHenv] = ACTIONS(2490), + [anon_sym_mut] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(2490), + [aux_sym_cmd_identifier_token1] = ACTIONS(2490), + [aux_sym_cmd_identifier_token2] = ACTIONS(2492), + [aux_sym_cmd_identifier_token3] = ACTIONS(2492), + [aux_sym_cmd_identifier_token4] = ACTIONS(2492), + [aux_sym_cmd_identifier_token5] = ACTIONS(2492), + [aux_sym_cmd_identifier_token6] = ACTIONS(2492), + [aux_sym_cmd_identifier_token7] = ACTIONS(2492), + [aux_sym_cmd_identifier_token8] = ACTIONS(2490), + [aux_sym_cmd_identifier_token9] = ACTIONS(2490), + [aux_sym_cmd_identifier_token10] = ACTIONS(2492), + [aux_sym_cmd_identifier_token11] = ACTIONS(2492), + [aux_sym_cmd_identifier_token12] = ACTIONS(2490), + [aux_sym_cmd_identifier_token13] = ACTIONS(2490), + [aux_sym_cmd_identifier_token14] = ACTIONS(2490), + [aux_sym_cmd_identifier_token15] = ACTIONS(2490), + [aux_sym_cmd_identifier_token16] = ACTIONS(2492), + [aux_sym_cmd_identifier_token17] = ACTIONS(2492), + [aux_sym_cmd_identifier_token18] = ACTIONS(2492), + [aux_sym_cmd_identifier_token19] = ACTIONS(2492), + [aux_sym_cmd_identifier_token20] = ACTIONS(2492), + [aux_sym_cmd_identifier_token21] = ACTIONS(2492), + [aux_sym_cmd_identifier_token22] = ACTIONS(2492), + [aux_sym_cmd_identifier_token23] = ACTIONS(2492), + [aux_sym_cmd_identifier_token24] = ACTIONS(2492), + [aux_sym_cmd_identifier_token25] = ACTIONS(2492), + [aux_sym_cmd_identifier_token26] = ACTIONS(2492), + [aux_sym_cmd_identifier_token27] = ACTIONS(2492), + [aux_sym_cmd_identifier_token28] = ACTIONS(2492), + [aux_sym_cmd_identifier_token29] = ACTIONS(2492), + [aux_sym_cmd_identifier_token30] = ACTIONS(2492), + [aux_sym_cmd_identifier_token31] = ACTIONS(2492), + [aux_sym_cmd_identifier_token32] = ACTIONS(2492), + [aux_sym_cmd_identifier_token33] = ACTIONS(2492), + [aux_sym_cmd_identifier_token34] = ACTIONS(2490), + [aux_sym_cmd_identifier_token35] = ACTIONS(2492), + [aux_sym_cmd_identifier_token36] = ACTIONS(2492), + [aux_sym_cmd_identifier_token37] = ACTIONS(2492), + [aux_sym_cmd_identifier_token38] = ACTIONS(2490), + [aux_sym_cmd_identifier_token39] = ACTIONS(2492), + [aux_sym_cmd_identifier_token40] = ACTIONS(2492), + [anon_sym_def] = ACTIONS(2490), + [anon_sym_export_DASHenv] = ACTIONS(2490), + [anon_sym_extern] = ACTIONS(2490), + [anon_sym_module] = ACTIONS(2490), + [anon_sym_use] = ACTIONS(2490), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_DOLLAR] = ACTIONS(2492), + [anon_sym_error] = ACTIONS(2490), + [anon_sym_DASH2] = ACTIONS(2490), + [anon_sym_break] = ACTIONS(2490), + [anon_sym_continue] = ACTIONS(2490), + [anon_sym_for] = ACTIONS(2490), + [anon_sym_in2] = ACTIONS(2490), + [anon_sym_loop] = ACTIONS(2490), + [anon_sym_make] = ACTIONS(2490), + [anon_sym_while] = ACTIONS(2490), + [anon_sym_do] = ACTIONS(2490), + [anon_sym_if] = ACTIONS(2490), + [anon_sym_else] = ACTIONS(2490), + [anon_sym_match] = ACTIONS(2490), + [anon_sym_RBRACE] = ACTIONS(2492), + [anon_sym_try] = ACTIONS(2490), + [anon_sym_catch] = ACTIONS(2490), + [anon_sym_return] = ACTIONS(2490), + [anon_sym_source] = ACTIONS(2490), + [anon_sym_source_DASHenv] = ACTIONS(2490), + [anon_sym_register] = ACTIONS(2490), + [anon_sym_hide] = ACTIONS(2490), + [anon_sym_hide_DASHenv] = ACTIONS(2490), + [anon_sym_overlay] = ACTIONS(2490), + [anon_sym_as] = ACTIONS(2490), + [anon_sym_PLUS2] = ACTIONS(2490), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2492), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2492), + [aux_sym__val_number_decimal_token1] = ACTIONS(2490), + [aux_sym__val_number_decimal_token2] = ACTIONS(2492), + [aux_sym__val_number_decimal_token3] = ACTIONS(2492), + [aux_sym__val_number_decimal_token4] = ACTIONS(2492), + [aux_sym__val_number_token1] = ACTIONS(2492), + [aux_sym__val_number_token2] = ACTIONS(2492), + [aux_sym__val_number_token3] = ACTIONS(2492), + [aux_sym__val_number_token4] = ACTIONS(2490), + [aux_sym__val_number_token5] = ACTIONS(2490), + [aux_sym__val_number_token6] = ACTIONS(2490), + [anon_sym_DQUOTE] = ACTIONS(2492), + [sym__str_single_quotes] = ACTIONS(2492), + [sym__str_back_ticks] = ACTIONS(2492), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2492), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2492), + }, + [744] = { + [sym_comment] = STATE(744), + [anon_sym_export] = ACTIONS(2034), + [anon_sym_alias] = ACTIONS(2034), + [anon_sym_let] = ACTIONS(2034), + [anon_sym_let_DASHenv] = ACTIONS(2034), + [anon_sym_mut] = ACTIONS(2034), + [anon_sym_const] = ACTIONS(2034), + [aux_sym_cmd_identifier_token1] = ACTIONS(2034), + [aux_sym_cmd_identifier_token2] = ACTIONS(2036), + [aux_sym_cmd_identifier_token3] = ACTIONS(2036), + [aux_sym_cmd_identifier_token4] = ACTIONS(2036), + [aux_sym_cmd_identifier_token5] = ACTIONS(2036), + [aux_sym_cmd_identifier_token6] = ACTIONS(2036), + [aux_sym_cmd_identifier_token7] = ACTIONS(2036), + [aux_sym_cmd_identifier_token8] = ACTIONS(2034), + [aux_sym_cmd_identifier_token9] = ACTIONS(2034), + [aux_sym_cmd_identifier_token10] = ACTIONS(2036), + [aux_sym_cmd_identifier_token11] = ACTIONS(2036), + [aux_sym_cmd_identifier_token12] = ACTIONS(2034), + [aux_sym_cmd_identifier_token13] = ACTIONS(2034), + [aux_sym_cmd_identifier_token14] = ACTIONS(2034), + [aux_sym_cmd_identifier_token15] = ACTIONS(2034), + [aux_sym_cmd_identifier_token16] = ACTIONS(2036), + [aux_sym_cmd_identifier_token17] = ACTIONS(2036), + [aux_sym_cmd_identifier_token18] = ACTIONS(2036), + [aux_sym_cmd_identifier_token19] = ACTIONS(2036), + [aux_sym_cmd_identifier_token20] = ACTIONS(2036), + [aux_sym_cmd_identifier_token21] = ACTIONS(2036), + [aux_sym_cmd_identifier_token22] = ACTIONS(2036), + [aux_sym_cmd_identifier_token23] = ACTIONS(2036), + [aux_sym_cmd_identifier_token24] = ACTIONS(2036), + [aux_sym_cmd_identifier_token25] = ACTIONS(2036), + [aux_sym_cmd_identifier_token26] = ACTIONS(2036), + [aux_sym_cmd_identifier_token27] = ACTIONS(2036), + [aux_sym_cmd_identifier_token28] = ACTIONS(2036), + [aux_sym_cmd_identifier_token29] = ACTIONS(2036), + [aux_sym_cmd_identifier_token30] = ACTIONS(2036), + [aux_sym_cmd_identifier_token31] = ACTIONS(2036), + [aux_sym_cmd_identifier_token32] = ACTIONS(2036), + [aux_sym_cmd_identifier_token33] = ACTIONS(2036), + [aux_sym_cmd_identifier_token34] = ACTIONS(2034), + [aux_sym_cmd_identifier_token35] = ACTIONS(2036), + [aux_sym_cmd_identifier_token36] = ACTIONS(2036), + [aux_sym_cmd_identifier_token37] = ACTIONS(2036), + [aux_sym_cmd_identifier_token38] = ACTIONS(2034), + [aux_sym_cmd_identifier_token39] = ACTIONS(2036), + [aux_sym_cmd_identifier_token40] = ACTIONS(2036), + [anon_sym_def] = ACTIONS(2034), + [anon_sym_export_DASHenv] = ACTIONS(2034), + [anon_sym_extern] = ACTIONS(2034), + [anon_sym_module] = ACTIONS(2034), + [anon_sym_use] = ACTIONS(2034), + [anon_sym_LPAREN] = ACTIONS(2036), + [anon_sym_DOLLAR] = ACTIONS(2036), + [anon_sym_error] = ACTIONS(2034), + [anon_sym_DASH2] = ACTIONS(2034), + [anon_sym_break] = ACTIONS(2034), + [anon_sym_continue] = ACTIONS(2034), + [anon_sym_for] = ACTIONS(2034), + [anon_sym_in2] = ACTIONS(2034), + [anon_sym_loop] = ACTIONS(2034), + [anon_sym_make] = ACTIONS(2034), + [anon_sym_while] = ACTIONS(2034), + [anon_sym_do] = ACTIONS(2034), + [anon_sym_if] = ACTIONS(2034), + [anon_sym_else] = ACTIONS(2034), + [anon_sym_match] = ACTIONS(2034), + [anon_sym_RBRACE] = ACTIONS(2036), + [anon_sym_try] = ACTIONS(2034), + [anon_sym_catch] = ACTIONS(2034), + [anon_sym_return] = ACTIONS(2034), + [anon_sym_source] = ACTIONS(2034), + [anon_sym_source_DASHenv] = ACTIONS(2034), + [anon_sym_register] = ACTIONS(2034), + [anon_sym_hide] = ACTIONS(2034), + [anon_sym_hide_DASHenv] = ACTIONS(2034), + [anon_sym_overlay] = ACTIONS(2034), + [anon_sym_as] = ACTIONS(2034), + [anon_sym_PLUS2] = ACTIONS(2034), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2036), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2036), + [aux_sym__val_number_decimal_token1] = ACTIONS(2034), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2036), + [aux_sym__val_number_decimal_token4] = ACTIONS(2036), + [aux_sym__val_number_token1] = ACTIONS(2036), + [aux_sym__val_number_token2] = ACTIONS(2036), + [aux_sym__val_number_token3] = ACTIONS(2036), + [aux_sym__val_number_token4] = ACTIONS(2034), + [aux_sym__val_number_token5] = ACTIONS(2034), + [aux_sym__val_number_token6] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym__str_single_quotes] = ACTIONS(2036), + [sym__str_back_ticks] = ACTIONS(2036), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2036), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2036), + }, + [745] = { + [sym_comment] = STATE(745), + [anon_sym_export] = ACTIONS(2367), + [anon_sym_alias] = ACTIONS(2367), + [anon_sym_let] = ACTIONS(2367), + [anon_sym_let_DASHenv] = ACTIONS(2367), + [anon_sym_mut] = ACTIONS(2367), + [anon_sym_const] = ACTIONS(2367), + [aux_sym_cmd_identifier_token1] = ACTIONS(2367), + [aux_sym_cmd_identifier_token2] = ACTIONS(2369), + [aux_sym_cmd_identifier_token3] = ACTIONS(2369), + [aux_sym_cmd_identifier_token4] = ACTIONS(2369), + [aux_sym_cmd_identifier_token5] = ACTIONS(2369), + [aux_sym_cmd_identifier_token6] = ACTIONS(2369), + [aux_sym_cmd_identifier_token7] = ACTIONS(2369), + [aux_sym_cmd_identifier_token8] = ACTIONS(2367), + [aux_sym_cmd_identifier_token9] = ACTIONS(2367), + [aux_sym_cmd_identifier_token10] = ACTIONS(2369), + [aux_sym_cmd_identifier_token11] = ACTIONS(2369), + [aux_sym_cmd_identifier_token12] = ACTIONS(2367), + [aux_sym_cmd_identifier_token13] = ACTIONS(2367), + [aux_sym_cmd_identifier_token14] = ACTIONS(2367), + [aux_sym_cmd_identifier_token15] = ACTIONS(2367), + [aux_sym_cmd_identifier_token16] = ACTIONS(2369), + [aux_sym_cmd_identifier_token17] = ACTIONS(2369), + [aux_sym_cmd_identifier_token18] = ACTIONS(2369), + [aux_sym_cmd_identifier_token19] = ACTIONS(2369), + [aux_sym_cmd_identifier_token20] = ACTIONS(2369), + [aux_sym_cmd_identifier_token21] = ACTIONS(2369), + [aux_sym_cmd_identifier_token22] = ACTIONS(2369), + [aux_sym_cmd_identifier_token23] = ACTIONS(2369), + [aux_sym_cmd_identifier_token24] = ACTIONS(2369), + [aux_sym_cmd_identifier_token25] = ACTIONS(2369), + [aux_sym_cmd_identifier_token26] = ACTIONS(2369), + [aux_sym_cmd_identifier_token27] = ACTIONS(2369), + [aux_sym_cmd_identifier_token28] = ACTIONS(2369), + [aux_sym_cmd_identifier_token29] = ACTIONS(2369), + [aux_sym_cmd_identifier_token30] = ACTIONS(2369), + [aux_sym_cmd_identifier_token31] = ACTIONS(2369), + [aux_sym_cmd_identifier_token32] = ACTIONS(2369), + [aux_sym_cmd_identifier_token33] = ACTIONS(2369), + [aux_sym_cmd_identifier_token34] = ACTIONS(2367), + [aux_sym_cmd_identifier_token35] = ACTIONS(2369), + [aux_sym_cmd_identifier_token36] = ACTIONS(2369), + [aux_sym_cmd_identifier_token37] = ACTIONS(2369), + [aux_sym_cmd_identifier_token38] = ACTIONS(2367), + [aux_sym_cmd_identifier_token39] = ACTIONS(2369), + [aux_sym_cmd_identifier_token40] = ACTIONS(2369), + [anon_sym_def] = ACTIONS(2367), + [anon_sym_export_DASHenv] = ACTIONS(2367), + [anon_sym_extern] = ACTIONS(2367), + [anon_sym_module] = ACTIONS(2367), + [anon_sym_use] = ACTIONS(2367), + [anon_sym_LPAREN] = ACTIONS(2369), + [anon_sym_DOLLAR] = ACTIONS(2369), + [anon_sym_error] = ACTIONS(2367), + [anon_sym_DASH2] = ACTIONS(2367), + [anon_sym_break] = ACTIONS(2367), + [anon_sym_continue] = ACTIONS(2367), + [anon_sym_for] = ACTIONS(2367), + [anon_sym_in2] = ACTIONS(2367), + [anon_sym_loop] = ACTIONS(2367), + [anon_sym_make] = ACTIONS(2367), + [anon_sym_while] = ACTIONS(2367), + [anon_sym_do] = ACTIONS(2367), + [anon_sym_if] = ACTIONS(2367), + [anon_sym_else] = ACTIONS(2367), + [anon_sym_match] = ACTIONS(2367), + [anon_sym_RBRACE] = ACTIONS(2369), + [anon_sym_try] = ACTIONS(2367), + [anon_sym_catch] = ACTIONS(2367), + [anon_sym_return] = ACTIONS(2367), + [anon_sym_source] = ACTIONS(2367), + [anon_sym_source_DASHenv] = ACTIONS(2367), + [anon_sym_register] = ACTIONS(2367), + [anon_sym_hide] = ACTIONS(2367), + [anon_sym_hide_DASHenv] = ACTIONS(2367), + [anon_sym_overlay] = ACTIONS(2367), + [anon_sym_as] = ACTIONS(2367), + [anon_sym_PLUS2] = ACTIONS(2367), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2369), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2369), + [aux_sym__val_number_decimal_token1] = ACTIONS(2367), + [aux_sym__val_number_decimal_token2] = ACTIONS(2369), + [aux_sym__val_number_decimal_token3] = ACTIONS(2369), + [aux_sym__val_number_decimal_token4] = ACTIONS(2369), + [aux_sym__val_number_token1] = ACTIONS(2369), + [aux_sym__val_number_token2] = ACTIONS(2369), + [aux_sym__val_number_token3] = ACTIONS(2369), + [aux_sym__val_number_token4] = ACTIONS(2367), + [aux_sym__val_number_token5] = ACTIONS(2367), + [aux_sym__val_number_token6] = ACTIONS(2367), + [anon_sym_DQUOTE] = ACTIONS(2369), + [sym__str_single_quotes] = ACTIONS(2369), + [sym__str_back_ticks] = ACTIONS(2369), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2369), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2353), + [sym_raw_string_begin] = ACTIONS(2369), + }, + [746] = { + [sym_comment] = STATE(746), + [anon_sym_export] = ACTIONS(2038), + [anon_sym_alias] = ACTIONS(2038), + [anon_sym_let] = ACTIONS(2038), + [anon_sym_let_DASHenv] = ACTIONS(2038), + [anon_sym_mut] = ACTIONS(2038), + [anon_sym_const] = ACTIONS(2038), + [aux_sym_cmd_identifier_token1] = ACTIONS(2038), + [aux_sym_cmd_identifier_token2] = ACTIONS(2040), + [aux_sym_cmd_identifier_token3] = ACTIONS(2040), + [aux_sym_cmd_identifier_token4] = ACTIONS(2040), + [aux_sym_cmd_identifier_token5] = ACTIONS(2040), + [aux_sym_cmd_identifier_token6] = ACTIONS(2040), + [aux_sym_cmd_identifier_token7] = ACTIONS(2040), + [aux_sym_cmd_identifier_token8] = ACTIONS(2038), + [aux_sym_cmd_identifier_token9] = ACTIONS(2038), + [aux_sym_cmd_identifier_token10] = ACTIONS(2040), + [aux_sym_cmd_identifier_token11] = ACTIONS(2040), + [aux_sym_cmd_identifier_token12] = ACTIONS(2038), + [aux_sym_cmd_identifier_token13] = ACTIONS(2038), + [aux_sym_cmd_identifier_token14] = ACTIONS(2038), + [aux_sym_cmd_identifier_token15] = ACTIONS(2038), + [aux_sym_cmd_identifier_token16] = ACTIONS(2040), + [aux_sym_cmd_identifier_token17] = ACTIONS(2040), + [aux_sym_cmd_identifier_token18] = ACTIONS(2040), + [aux_sym_cmd_identifier_token19] = ACTIONS(2040), + [aux_sym_cmd_identifier_token20] = ACTIONS(2040), + [aux_sym_cmd_identifier_token21] = ACTIONS(2040), + [aux_sym_cmd_identifier_token22] = ACTIONS(2040), + [aux_sym_cmd_identifier_token23] = ACTIONS(2040), + [aux_sym_cmd_identifier_token24] = ACTIONS(2040), + [aux_sym_cmd_identifier_token25] = ACTIONS(2040), + [aux_sym_cmd_identifier_token26] = ACTIONS(2040), + [aux_sym_cmd_identifier_token27] = ACTIONS(2040), + [aux_sym_cmd_identifier_token28] = ACTIONS(2040), + [aux_sym_cmd_identifier_token29] = ACTIONS(2040), + [aux_sym_cmd_identifier_token30] = ACTIONS(2040), + [aux_sym_cmd_identifier_token31] = ACTIONS(2040), + [aux_sym_cmd_identifier_token32] = ACTIONS(2040), + [aux_sym_cmd_identifier_token33] = ACTIONS(2040), + [aux_sym_cmd_identifier_token34] = ACTIONS(2038), + [aux_sym_cmd_identifier_token35] = ACTIONS(2040), + [aux_sym_cmd_identifier_token36] = ACTIONS(2040), + [aux_sym_cmd_identifier_token37] = ACTIONS(2040), + [aux_sym_cmd_identifier_token38] = ACTIONS(2038), + [aux_sym_cmd_identifier_token39] = ACTIONS(2040), + [aux_sym_cmd_identifier_token40] = ACTIONS(2040), + [anon_sym_def] = ACTIONS(2038), + [anon_sym_export_DASHenv] = ACTIONS(2038), + [anon_sym_extern] = ACTIONS(2038), + [anon_sym_module] = ACTIONS(2038), + [anon_sym_use] = ACTIONS(2038), + [anon_sym_LPAREN] = ACTIONS(2040), + [anon_sym_DOLLAR] = ACTIONS(2040), + [anon_sym_error] = ACTIONS(2038), + [anon_sym_DASH2] = ACTIONS(2038), + [anon_sym_break] = ACTIONS(2038), + [anon_sym_continue] = ACTIONS(2038), + [anon_sym_for] = ACTIONS(2038), + [anon_sym_in2] = ACTIONS(2038), + [anon_sym_loop] = ACTIONS(2038), + [anon_sym_make] = ACTIONS(2038), + [anon_sym_while] = ACTIONS(2038), + [anon_sym_do] = ACTIONS(2038), + [anon_sym_if] = ACTIONS(2038), + [anon_sym_else] = ACTIONS(2038), + [anon_sym_match] = ACTIONS(2038), + [anon_sym_RBRACE] = ACTIONS(2040), + [anon_sym_try] = ACTIONS(2038), + [anon_sym_catch] = ACTIONS(2038), + [anon_sym_return] = ACTIONS(2038), + [anon_sym_source] = ACTIONS(2038), + [anon_sym_source_DASHenv] = ACTIONS(2038), + [anon_sym_register] = ACTIONS(2038), + [anon_sym_hide] = ACTIONS(2038), + [anon_sym_hide_DASHenv] = ACTIONS(2038), + [anon_sym_overlay] = ACTIONS(2038), + [anon_sym_as] = ACTIONS(2038), + [anon_sym_PLUS2] = ACTIONS(2038), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2040), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2040), + [aux_sym__val_number_decimal_token1] = ACTIONS(2038), + [aux_sym__val_number_decimal_token2] = ACTIONS(2040), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), + [aux_sym__val_number_token1] = ACTIONS(2040), + [aux_sym__val_number_token2] = ACTIONS(2040), + [aux_sym__val_number_token3] = ACTIONS(2040), + [aux_sym__val_number_token4] = ACTIONS(2038), + [aux_sym__val_number_token5] = ACTIONS(2038), + [aux_sym__val_number_token6] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2040), + [sym__str_single_quotes] = ACTIONS(2040), + [sym__str_back_ticks] = ACTIONS(2040), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2040), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2040), + }, + [747] = { + [sym_comment] = STATE(747), + [anon_sym_export] = ACTIONS(1899), + [anon_sym_alias] = ACTIONS(1899), + [anon_sym_let] = ACTIONS(1899), + [anon_sym_let_DASHenv] = ACTIONS(1899), + [anon_sym_mut] = ACTIONS(1899), + [anon_sym_const] = ACTIONS(1899), + [aux_sym_cmd_identifier_token1] = ACTIONS(1899), + [aux_sym_cmd_identifier_token2] = ACTIONS(1901), + [aux_sym_cmd_identifier_token3] = ACTIONS(1901), + [aux_sym_cmd_identifier_token4] = ACTIONS(1901), + [aux_sym_cmd_identifier_token5] = ACTIONS(1901), + [aux_sym_cmd_identifier_token6] = ACTIONS(1901), + [aux_sym_cmd_identifier_token7] = ACTIONS(1901), + [aux_sym_cmd_identifier_token8] = ACTIONS(1899), + [aux_sym_cmd_identifier_token9] = ACTIONS(1899), + [aux_sym_cmd_identifier_token10] = ACTIONS(1901), + [aux_sym_cmd_identifier_token11] = ACTIONS(1901), + [aux_sym_cmd_identifier_token12] = ACTIONS(1899), + [aux_sym_cmd_identifier_token13] = ACTIONS(1899), + [aux_sym_cmd_identifier_token14] = ACTIONS(1899), + [aux_sym_cmd_identifier_token15] = ACTIONS(1899), + [aux_sym_cmd_identifier_token16] = ACTIONS(1901), + [aux_sym_cmd_identifier_token17] = ACTIONS(1901), + [aux_sym_cmd_identifier_token18] = ACTIONS(1901), + [aux_sym_cmd_identifier_token19] = ACTIONS(1901), + [aux_sym_cmd_identifier_token20] = ACTIONS(1901), + [aux_sym_cmd_identifier_token21] = ACTIONS(1901), + [aux_sym_cmd_identifier_token22] = ACTIONS(1901), + [aux_sym_cmd_identifier_token23] = ACTIONS(1901), + [aux_sym_cmd_identifier_token24] = ACTIONS(1901), + [aux_sym_cmd_identifier_token25] = ACTIONS(1901), + [aux_sym_cmd_identifier_token26] = ACTIONS(1901), + [aux_sym_cmd_identifier_token27] = ACTIONS(1901), + [aux_sym_cmd_identifier_token28] = ACTIONS(1901), + [aux_sym_cmd_identifier_token29] = ACTIONS(1901), + [aux_sym_cmd_identifier_token30] = ACTIONS(1901), + [aux_sym_cmd_identifier_token31] = ACTIONS(1901), + [aux_sym_cmd_identifier_token32] = ACTIONS(1901), + [aux_sym_cmd_identifier_token33] = ACTIONS(1901), + [aux_sym_cmd_identifier_token34] = ACTIONS(1899), + [aux_sym_cmd_identifier_token35] = ACTIONS(1901), + [aux_sym_cmd_identifier_token36] = ACTIONS(1901), + [aux_sym_cmd_identifier_token37] = ACTIONS(1901), + [aux_sym_cmd_identifier_token38] = ACTIONS(1899), + [aux_sym_cmd_identifier_token39] = ACTIONS(1901), + [aux_sym_cmd_identifier_token40] = ACTIONS(1901), + [anon_sym_def] = ACTIONS(1899), + [anon_sym_export_DASHenv] = ACTIONS(1899), + [anon_sym_extern] = ACTIONS(1899), + [anon_sym_module] = ACTIONS(1899), + [anon_sym_use] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_DOLLAR] = ACTIONS(1901), + [anon_sym_error] = ACTIONS(1899), + [anon_sym_DASH2] = ACTIONS(1899), + [anon_sym_break] = ACTIONS(1899), + [anon_sym_continue] = ACTIONS(1899), + [anon_sym_for] = ACTIONS(1899), + [anon_sym_in2] = ACTIONS(1899), + [anon_sym_loop] = ACTIONS(1899), + [anon_sym_make] = ACTIONS(1899), + [anon_sym_while] = ACTIONS(1899), + [anon_sym_do] = ACTIONS(1899), + [anon_sym_if] = ACTIONS(1899), + [anon_sym_else] = ACTIONS(1899), + [anon_sym_match] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(1901), + [anon_sym_try] = ACTIONS(1899), + [anon_sym_catch] = ACTIONS(1899), + [anon_sym_return] = ACTIONS(1899), + [anon_sym_source] = ACTIONS(1899), + [anon_sym_source_DASHenv] = ACTIONS(1899), + [anon_sym_register] = ACTIONS(1899), + [anon_sym_hide] = ACTIONS(1899), + [anon_sym_hide_DASHenv] = ACTIONS(1899), + [anon_sym_overlay] = ACTIONS(1899), + [anon_sym_as] = ACTIONS(1899), + [anon_sym_PLUS2] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1901), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1901), + [aux_sym__val_number_decimal_token1] = ACTIONS(1899), + [aux_sym__val_number_decimal_token2] = ACTIONS(1901), + [aux_sym__val_number_decimal_token3] = ACTIONS(1901), + [aux_sym__val_number_decimal_token4] = ACTIONS(1901), + [aux_sym__val_number_token1] = ACTIONS(1901), + [aux_sym__val_number_token2] = ACTIONS(1901), + [aux_sym__val_number_token3] = ACTIONS(1901), + [aux_sym__val_number_token4] = ACTIONS(1899), + [aux_sym__val_number_token5] = ACTIONS(1899), + [aux_sym__val_number_token6] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1901), + [sym__str_single_quotes] = ACTIONS(1901), + [sym__str_back_ticks] = ACTIONS(1901), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1901), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1901), }, [748] = { [sym_comment] = STATE(748), - [anon_sym_export] = ACTIONS(1913), - [anon_sym_alias] = ACTIONS(1913), - [anon_sym_let] = ACTIONS(1913), - [anon_sym_let_DASHenv] = ACTIONS(1913), - [anon_sym_mut] = ACTIONS(1913), - [anon_sym_const] = ACTIONS(1913), - [aux_sym_cmd_identifier_token1] = ACTIONS(1913), - [aux_sym_cmd_identifier_token2] = ACTIONS(1915), - [aux_sym_cmd_identifier_token3] = ACTIONS(1915), - [aux_sym_cmd_identifier_token4] = ACTIONS(1915), - [aux_sym_cmd_identifier_token5] = ACTIONS(1915), - [aux_sym_cmd_identifier_token6] = ACTIONS(1915), - [aux_sym_cmd_identifier_token7] = ACTIONS(1915), - [aux_sym_cmd_identifier_token8] = ACTIONS(1913), - [aux_sym_cmd_identifier_token9] = ACTIONS(1913), - [aux_sym_cmd_identifier_token10] = ACTIONS(1915), - [aux_sym_cmd_identifier_token11] = ACTIONS(1915), - [aux_sym_cmd_identifier_token12] = ACTIONS(1913), - [aux_sym_cmd_identifier_token13] = ACTIONS(1913), - [aux_sym_cmd_identifier_token14] = ACTIONS(1913), - [aux_sym_cmd_identifier_token15] = ACTIONS(1913), - [aux_sym_cmd_identifier_token16] = ACTIONS(1915), - [aux_sym_cmd_identifier_token17] = ACTIONS(1915), - [aux_sym_cmd_identifier_token18] = ACTIONS(1915), - [aux_sym_cmd_identifier_token19] = ACTIONS(1915), - [aux_sym_cmd_identifier_token20] = ACTIONS(1915), - [aux_sym_cmd_identifier_token21] = ACTIONS(1915), - [aux_sym_cmd_identifier_token22] = ACTIONS(1915), - [aux_sym_cmd_identifier_token23] = ACTIONS(1915), - [aux_sym_cmd_identifier_token24] = ACTIONS(1915), - [aux_sym_cmd_identifier_token25] = ACTIONS(1915), - [aux_sym_cmd_identifier_token26] = ACTIONS(1915), - [aux_sym_cmd_identifier_token27] = ACTIONS(1915), - [aux_sym_cmd_identifier_token28] = ACTIONS(1915), - [aux_sym_cmd_identifier_token29] = ACTIONS(1915), - [aux_sym_cmd_identifier_token30] = ACTIONS(1915), - [aux_sym_cmd_identifier_token31] = ACTIONS(1915), - [aux_sym_cmd_identifier_token32] = ACTIONS(1915), - [aux_sym_cmd_identifier_token33] = ACTIONS(1915), - [aux_sym_cmd_identifier_token34] = ACTIONS(1913), - [aux_sym_cmd_identifier_token35] = ACTIONS(1915), - [aux_sym_cmd_identifier_token36] = ACTIONS(1915), - [aux_sym_cmd_identifier_token37] = ACTIONS(1915), - [aux_sym_cmd_identifier_token38] = ACTIONS(1913), - [aux_sym_cmd_identifier_token39] = ACTIONS(1915), - [aux_sym_cmd_identifier_token40] = ACTIONS(1915), - [anon_sym_def] = ACTIONS(1913), - [anon_sym_export_DASHenv] = ACTIONS(1913), - [anon_sym_extern] = ACTIONS(1913), - [anon_sym_module] = ACTIONS(1913), - [anon_sym_use] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_DOLLAR] = ACTIONS(1915), - [anon_sym_error] = ACTIONS(1913), - [anon_sym_DASH2] = ACTIONS(1913), - [anon_sym_break] = ACTIONS(1913), - [anon_sym_continue] = ACTIONS(1913), - [anon_sym_for] = ACTIONS(1913), - [anon_sym_in2] = ACTIONS(1913), - [anon_sym_loop] = ACTIONS(1913), - [anon_sym_make] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1913), - [anon_sym_do] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1913), - [anon_sym_else] = ACTIONS(1913), - [anon_sym_match] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1915), - [anon_sym_try] = ACTIONS(1913), - [anon_sym_catch] = ACTIONS(1913), - [anon_sym_return] = ACTIONS(1913), - [anon_sym_source] = ACTIONS(1913), - [anon_sym_source_DASHenv] = ACTIONS(1913), - [anon_sym_register] = ACTIONS(1913), - [anon_sym_hide] = ACTIONS(1913), - [anon_sym_hide_DASHenv] = ACTIONS(1913), - [anon_sym_overlay] = ACTIONS(1913), - [anon_sym_as] = ACTIONS(1913), - [anon_sym_PLUS2] = ACTIONS(1913), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1915), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1915), - [aux_sym__val_number_decimal_token1] = ACTIONS(1913), - [aux_sym__val_number_decimal_token2] = ACTIONS(1915), - [aux_sym__val_number_decimal_token3] = ACTIONS(1915), - [aux_sym__val_number_decimal_token4] = ACTIONS(1915), - [aux_sym__val_number_token1] = ACTIONS(1915), - [aux_sym__val_number_token2] = ACTIONS(1915), - [aux_sym__val_number_token3] = ACTIONS(1915), - [aux_sym__val_number_token4] = ACTIONS(1913), - [aux_sym__val_number_token5] = ACTIONS(1913), - [aux_sym__val_number_token6] = ACTIONS(1913), - [anon_sym_DQUOTE] = ACTIONS(1915), - [sym__str_single_quotes] = ACTIONS(1915), - [sym__str_back_ticks] = ACTIONS(1915), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1915), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1915), + [anon_sym_export] = ACTIONS(2448), + [anon_sym_alias] = ACTIONS(2448), + [anon_sym_let] = ACTIONS(2448), + [anon_sym_let_DASHenv] = ACTIONS(2448), + [anon_sym_mut] = ACTIONS(2448), + [anon_sym_const] = ACTIONS(2448), + [aux_sym_cmd_identifier_token1] = ACTIONS(2448), + [aux_sym_cmd_identifier_token2] = ACTIONS(2450), + [aux_sym_cmd_identifier_token3] = ACTIONS(2450), + [aux_sym_cmd_identifier_token4] = ACTIONS(2450), + [aux_sym_cmd_identifier_token5] = ACTIONS(2450), + [aux_sym_cmd_identifier_token6] = ACTIONS(2450), + [aux_sym_cmd_identifier_token7] = ACTIONS(2450), + [aux_sym_cmd_identifier_token8] = ACTIONS(2448), + [aux_sym_cmd_identifier_token9] = ACTIONS(2448), + [aux_sym_cmd_identifier_token10] = ACTIONS(2450), + [aux_sym_cmd_identifier_token11] = ACTIONS(2450), + [aux_sym_cmd_identifier_token12] = ACTIONS(2448), + [aux_sym_cmd_identifier_token13] = ACTIONS(2448), + [aux_sym_cmd_identifier_token14] = ACTIONS(2448), + [aux_sym_cmd_identifier_token15] = ACTIONS(2448), + [aux_sym_cmd_identifier_token16] = ACTIONS(2450), + [aux_sym_cmd_identifier_token17] = ACTIONS(2450), + [aux_sym_cmd_identifier_token18] = ACTIONS(2450), + [aux_sym_cmd_identifier_token19] = ACTIONS(2450), + [aux_sym_cmd_identifier_token20] = ACTIONS(2450), + [aux_sym_cmd_identifier_token21] = ACTIONS(2450), + [aux_sym_cmd_identifier_token22] = ACTIONS(2450), + [aux_sym_cmd_identifier_token23] = ACTIONS(2450), + [aux_sym_cmd_identifier_token24] = ACTIONS(2450), + [aux_sym_cmd_identifier_token25] = ACTIONS(2450), + [aux_sym_cmd_identifier_token26] = ACTIONS(2450), + [aux_sym_cmd_identifier_token27] = ACTIONS(2450), + [aux_sym_cmd_identifier_token28] = ACTIONS(2450), + [aux_sym_cmd_identifier_token29] = ACTIONS(2450), + [aux_sym_cmd_identifier_token30] = ACTIONS(2450), + [aux_sym_cmd_identifier_token31] = ACTIONS(2450), + [aux_sym_cmd_identifier_token32] = ACTIONS(2450), + [aux_sym_cmd_identifier_token33] = ACTIONS(2450), + [aux_sym_cmd_identifier_token34] = ACTIONS(2448), + [aux_sym_cmd_identifier_token35] = ACTIONS(2450), + [aux_sym_cmd_identifier_token36] = ACTIONS(2450), + [aux_sym_cmd_identifier_token37] = ACTIONS(2450), + [aux_sym_cmd_identifier_token38] = ACTIONS(2448), + [aux_sym_cmd_identifier_token39] = ACTIONS(2450), + [aux_sym_cmd_identifier_token40] = ACTIONS(2450), + [anon_sym_def] = ACTIONS(2448), + [anon_sym_export_DASHenv] = ACTIONS(2448), + [anon_sym_extern] = ACTIONS(2448), + [anon_sym_module] = ACTIONS(2448), + [anon_sym_use] = ACTIONS(2448), + [anon_sym_LPAREN] = ACTIONS(2450), + [anon_sym_DOLLAR] = ACTIONS(2450), + [anon_sym_error] = ACTIONS(2448), + [anon_sym_DASH2] = ACTIONS(2448), + [anon_sym_break] = ACTIONS(2448), + [anon_sym_continue] = ACTIONS(2448), + [anon_sym_for] = ACTIONS(2448), + [anon_sym_in2] = ACTIONS(2448), + [anon_sym_loop] = ACTIONS(2448), + [anon_sym_make] = ACTIONS(2448), + [anon_sym_while] = ACTIONS(2448), + [anon_sym_do] = ACTIONS(2448), + [anon_sym_if] = ACTIONS(2448), + [anon_sym_else] = ACTIONS(2448), + [anon_sym_match] = ACTIONS(2448), + [anon_sym_RBRACE] = ACTIONS(2450), + [anon_sym_try] = ACTIONS(2448), + [anon_sym_catch] = ACTIONS(2448), + [anon_sym_return] = ACTIONS(2448), + [anon_sym_source] = ACTIONS(2448), + [anon_sym_source_DASHenv] = ACTIONS(2448), + [anon_sym_register] = ACTIONS(2448), + [anon_sym_hide] = ACTIONS(2448), + [anon_sym_hide_DASHenv] = ACTIONS(2448), + [anon_sym_overlay] = ACTIONS(2448), + [anon_sym_as] = ACTIONS(2448), + [anon_sym_PLUS2] = ACTIONS(2448), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2450), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2450), + [aux_sym__val_number_decimal_token1] = ACTIONS(2448), + [aux_sym__val_number_decimal_token2] = ACTIONS(2450), + [aux_sym__val_number_decimal_token3] = ACTIONS(2450), + [aux_sym__val_number_decimal_token4] = ACTIONS(2450), + [aux_sym__val_number_token1] = ACTIONS(2450), + [aux_sym__val_number_token2] = ACTIONS(2450), + [aux_sym__val_number_token3] = ACTIONS(2450), + [aux_sym__val_number_token4] = ACTIONS(2448), + [aux_sym__val_number_token5] = ACTIONS(2448), + [aux_sym__val_number_token6] = ACTIONS(2448), + [anon_sym_DQUOTE] = ACTIONS(2450), + [sym__str_single_quotes] = ACTIONS(2450), + [sym__str_back_ticks] = ACTIONS(2450), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2450), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2450), }, [749] = { [sym_comment] = STATE(749), - [anon_sym_export] = ACTIONS(2355), - [anon_sym_alias] = ACTIONS(2355), - [anon_sym_let] = ACTIONS(2355), - [anon_sym_let_DASHenv] = ACTIONS(2355), - [anon_sym_mut] = ACTIONS(2355), - [anon_sym_const] = ACTIONS(2355), - [aux_sym_cmd_identifier_token1] = ACTIONS(2355), - [aux_sym_cmd_identifier_token2] = ACTIONS(2357), - [aux_sym_cmd_identifier_token3] = ACTIONS(2357), - [aux_sym_cmd_identifier_token4] = ACTIONS(2357), - [aux_sym_cmd_identifier_token5] = ACTIONS(2357), - [aux_sym_cmd_identifier_token6] = ACTIONS(2357), - [aux_sym_cmd_identifier_token7] = ACTIONS(2357), - [aux_sym_cmd_identifier_token8] = ACTIONS(2355), - [aux_sym_cmd_identifier_token9] = ACTIONS(2355), - [aux_sym_cmd_identifier_token10] = ACTIONS(2357), - [aux_sym_cmd_identifier_token11] = ACTIONS(2357), - [aux_sym_cmd_identifier_token12] = ACTIONS(2355), - [aux_sym_cmd_identifier_token13] = ACTIONS(2355), - [aux_sym_cmd_identifier_token14] = ACTIONS(2355), - [aux_sym_cmd_identifier_token15] = ACTIONS(2355), - [aux_sym_cmd_identifier_token16] = ACTIONS(2357), - [aux_sym_cmd_identifier_token17] = ACTIONS(2357), - [aux_sym_cmd_identifier_token18] = ACTIONS(2357), - [aux_sym_cmd_identifier_token19] = ACTIONS(2357), - [aux_sym_cmd_identifier_token20] = ACTIONS(2357), - [aux_sym_cmd_identifier_token21] = ACTIONS(2357), - [aux_sym_cmd_identifier_token22] = ACTIONS(2357), - [aux_sym_cmd_identifier_token23] = ACTIONS(2357), - [aux_sym_cmd_identifier_token24] = ACTIONS(2357), - [aux_sym_cmd_identifier_token25] = ACTIONS(2357), - [aux_sym_cmd_identifier_token26] = ACTIONS(2357), - [aux_sym_cmd_identifier_token27] = ACTIONS(2357), - [aux_sym_cmd_identifier_token28] = ACTIONS(2357), - [aux_sym_cmd_identifier_token29] = ACTIONS(2357), - [aux_sym_cmd_identifier_token30] = ACTIONS(2357), - [aux_sym_cmd_identifier_token31] = ACTIONS(2357), - [aux_sym_cmd_identifier_token32] = ACTIONS(2357), - [aux_sym_cmd_identifier_token33] = ACTIONS(2357), - [aux_sym_cmd_identifier_token34] = ACTIONS(2355), - [aux_sym_cmd_identifier_token35] = ACTIONS(2357), - [aux_sym_cmd_identifier_token36] = ACTIONS(2357), - [aux_sym_cmd_identifier_token37] = ACTIONS(2357), - [aux_sym_cmd_identifier_token38] = ACTIONS(2355), - [aux_sym_cmd_identifier_token39] = ACTIONS(2357), - [aux_sym_cmd_identifier_token40] = ACTIONS(2357), - [anon_sym_def] = ACTIONS(2355), - [anon_sym_export_DASHenv] = ACTIONS(2355), - [anon_sym_extern] = ACTIONS(2355), - [anon_sym_module] = ACTIONS(2355), - [anon_sym_use] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2357), - [anon_sym_DOLLAR] = ACTIONS(2357), - [anon_sym_error] = ACTIONS(2355), - [anon_sym_DASH2] = ACTIONS(2355), - [anon_sym_break] = ACTIONS(2355), - [anon_sym_continue] = ACTIONS(2355), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_in2] = ACTIONS(2355), - [anon_sym_loop] = ACTIONS(2355), - [anon_sym_make] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [anon_sym_do] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2355), - [anon_sym_else] = ACTIONS(2355), - [anon_sym_match] = ACTIONS(2355), - [anon_sym_RBRACE] = ACTIONS(2357), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_catch] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2355), - [anon_sym_source] = ACTIONS(2355), - [anon_sym_source_DASHenv] = ACTIONS(2355), - [anon_sym_register] = ACTIONS(2355), - [anon_sym_hide] = ACTIONS(2355), - [anon_sym_hide_DASHenv] = ACTIONS(2355), - [anon_sym_overlay] = ACTIONS(2355), - [anon_sym_as] = ACTIONS(2355), - [anon_sym_PLUS2] = ACTIONS(2355), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2357), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2357), - [aux_sym__val_number_decimal_token1] = ACTIONS(2355), - [aux_sym__val_number_decimal_token2] = ACTIONS(2357), - [aux_sym__val_number_decimal_token3] = ACTIONS(2357), - [aux_sym__val_number_decimal_token4] = ACTIONS(2357), - [aux_sym__val_number_token1] = ACTIONS(2357), - [aux_sym__val_number_token2] = ACTIONS(2357), - [aux_sym__val_number_token3] = ACTIONS(2357), - [aux_sym__val_number_token4] = ACTIONS(2355), - [aux_sym__val_number_token5] = ACTIONS(2355), - [aux_sym__val_number_token6] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2357), - [sym__str_single_quotes] = ACTIONS(2357), - [sym__str_back_ticks] = ACTIONS(2357), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2357), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2357), + [anon_sym_export] = ACTIONS(2452), + [anon_sym_alias] = ACTIONS(2452), + [anon_sym_let] = ACTIONS(2452), + [anon_sym_let_DASHenv] = ACTIONS(2452), + [anon_sym_mut] = ACTIONS(2452), + [anon_sym_const] = ACTIONS(2452), + [aux_sym_cmd_identifier_token1] = ACTIONS(2452), + [aux_sym_cmd_identifier_token2] = ACTIONS(2454), + [aux_sym_cmd_identifier_token3] = ACTIONS(2454), + [aux_sym_cmd_identifier_token4] = ACTIONS(2454), + [aux_sym_cmd_identifier_token5] = ACTIONS(2454), + [aux_sym_cmd_identifier_token6] = ACTIONS(2454), + [aux_sym_cmd_identifier_token7] = ACTIONS(2454), + [aux_sym_cmd_identifier_token8] = ACTIONS(2452), + [aux_sym_cmd_identifier_token9] = ACTIONS(2452), + [aux_sym_cmd_identifier_token10] = ACTIONS(2454), + [aux_sym_cmd_identifier_token11] = ACTIONS(2454), + [aux_sym_cmd_identifier_token12] = ACTIONS(2452), + [aux_sym_cmd_identifier_token13] = ACTIONS(2452), + [aux_sym_cmd_identifier_token14] = ACTIONS(2452), + [aux_sym_cmd_identifier_token15] = ACTIONS(2452), + [aux_sym_cmd_identifier_token16] = ACTIONS(2454), + [aux_sym_cmd_identifier_token17] = ACTIONS(2454), + [aux_sym_cmd_identifier_token18] = ACTIONS(2454), + [aux_sym_cmd_identifier_token19] = ACTIONS(2454), + [aux_sym_cmd_identifier_token20] = ACTIONS(2454), + [aux_sym_cmd_identifier_token21] = ACTIONS(2454), + [aux_sym_cmd_identifier_token22] = ACTIONS(2454), + [aux_sym_cmd_identifier_token23] = ACTIONS(2454), + [aux_sym_cmd_identifier_token24] = ACTIONS(2454), + [aux_sym_cmd_identifier_token25] = ACTIONS(2454), + [aux_sym_cmd_identifier_token26] = ACTIONS(2454), + [aux_sym_cmd_identifier_token27] = ACTIONS(2454), + [aux_sym_cmd_identifier_token28] = ACTIONS(2454), + [aux_sym_cmd_identifier_token29] = ACTIONS(2454), + [aux_sym_cmd_identifier_token30] = ACTIONS(2454), + [aux_sym_cmd_identifier_token31] = ACTIONS(2454), + [aux_sym_cmd_identifier_token32] = ACTIONS(2454), + [aux_sym_cmd_identifier_token33] = ACTIONS(2454), + [aux_sym_cmd_identifier_token34] = ACTIONS(2452), + [aux_sym_cmd_identifier_token35] = ACTIONS(2454), + [aux_sym_cmd_identifier_token36] = ACTIONS(2454), + [aux_sym_cmd_identifier_token37] = ACTIONS(2454), + [aux_sym_cmd_identifier_token38] = ACTIONS(2452), + [aux_sym_cmd_identifier_token39] = ACTIONS(2454), + [aux_sym_cmd_identifier_token40] = ACTIONS(2454), + [anon_sym_def] = ACTIONS(2452), + [anon_sym_export_DASHenv] = ACTIONS(2452), + [anon_sym_extern] = ACTIONS(2452), + [anon_sym_module] = ACTIONS(2452), + [anon_sym_use] = ACTIONS(2452), + [anon_sym_LPAREN] = ACTIONS(2454), + [anon_sym_DOLLAR] = ACTIONS(2454), + [anon_sym_error] = ACTIONS(2452), + [anon_sym_DASH2] = ACTIONS(2452), + [anon_sym_break] = ACTIONS(2452), + [anon_sym_continue] = ACTIONS(2452), + [anon_sym_for] = ACTIONS(2452), + [anon_sym_in2] = ACTIONS(2452), + [anon_sym_loop] = ACTIONS(2452), + [anon_sym_make] = ACTIONS(2452), + [anon_sym_while] = ACTIONS(2452), + [anon_sym_do] = ACTIONS(2452), + [anon_sym_if] = ACTIONS(2452), + [anon_sym_else] = ACTIONS(2452), + [anon_sym_match] = ACTIONS(2452), + [anon_sym_RBRACE] = ACTIONS(2454), + [anon_sym_try] = ACTIONS(2452), + [anon_sym_catch] = ACTIONS(2452), + [anon_sym_return] = ACTIONS(2452), + [anon_sym_source] = ACTIONS(2452), + [anon_sym_source_DASHenv] = ACTIONS(2452), + [anon_sym_register] = ACTIONS(2452), + [anon_sym_hide] = ACTIONS(2452), + [anon_sym_hide_DASHenv] = ACTIONS(2452), + [anon_sym_overlay] = ACTIONS(2452), + [anon_sym_as] = ACTIONS(2452), + [anon_sym_PLUS2] = ACTIONS(2452), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2454), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2454), + [aux_sym__val_number_decimal_token1] = ACTIONS(2452), + [aux_sym__val_number_decimal_token2] = ACTIONS(2454), + [aux_sym__val_number_decimal_token3] = ACTIONS(2454), + [aux_sym__val_number_decimal_token4] = ACTIONS(2454), + [aux_sym__val_number_token1] = ACTIONS(2454), + [aux_sym__val_number_token2] = ACTIONS(2454), + [aux_sym__val_number_token3] = ACTIONS(2454), + [aux_sym__val_number_token4] = ACTIONS(2452), + [aux_sym__val_number_token5] = ACTIONS(2452), + [aux_sym__val_number_token6] = ACTIONS(2452), + [anon_sym_DQUOTE] = ACTIONS(2454), + [sym__str_single_quotes] = ACTIONS(2454), + [sym__str_back_ticks] = ACTIONS(2454), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2454), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2454), }, [750] = { [sym_comment] = STATE(750), - [anon_sym_export] = ACTIONS(2359), - [anon_sym_alias] = ACTIONS(2359), - [anon_sym_let] = ACTIONS(2359), - [anon_sym_let_DASHenv] = ACTIONS(2359), - [anon_sym_mut] = ACTIONS(2359), - [anon_sym_const] = ACTIONS(2359), - [aux_sym_cmd_identifier_token1] = ACTIONS(2359), - [aux_sym_cmd_identifier_token2] = ACTIONS(2361), - [aux_sym_cmd_identifier_token3] = ACTIONS(2361), - [aux_sym_cmd_identifier_token4] = ACTIONS(2361), - [aux_sym_cmd_identifier_token5] = ACTIONS(2361), - [aux_sym_cmd_identifier_token6] = ACTIONS(2361), - [aux_sym_cmd_identifier_token7] = ACTIONS(2361), - [aux_sym_cmd_identifier_token8] = ACTIONS(2359), - [aux_sym_cmd_identifier_token9] = ACTIONS(2359), - [aux_sym_cmd_identifier_token10] = ACTIONS(2361), - [aux_sym_cmd_identifier_token11] = ACTIONS(2361), - [aux_sym_cmd_identifier_token12] = ACTIONS(2359), - [aux_sym_cmd_identifier_token13] = ACTIONS(2359), - [aux_sym_cmd_identifier_token14] = ACTIONS(2359), - [aux_sym_cmd_identifier_token15] = ACTIONS(2359), - [aux_sym_cmd_identifier_token16] = ACTIONS(2361), - [aux_sym_cmd_identifier_token17] = ACTIONS(2361), - [aux_sym_cmd_identifier_token18] = ACTIONS(2361), - [aux_sym_cmd_identifier_token19] = ACTIONS(2361), - [aux_sym_cmd_identifier_token20] = ACTIONS(2361), - [aux_sym_cmd_identifier_token21] = ACTIONS(2361), - [aux_sym_cmd_identifier_token22] = ACTIONS(2361), - [aux_sym_cmd_identifier_token23] = ACTIONS(2361), - [aux_sym_cmd_identifier_token24] = ACTIONS(2361), - [aux_sym_cmd_identifier_token25] = ACTIONS(2361), - [aux_sym_cmd_identifier_token26] = ACTIONS(2361), - [aux_sym_cmd_identifier_token27] = ACTIONS(2361), - [aux_sym_cmd_identifier_token28] = ACTIONS(2361), - [aux_sym_cmd_identifier_token29] = ACTIONS(2361), - [aux_sym_cmd_identifier_token30] = ACTIONS(2361), - [aux_sym_cmd_identifier_token31] = ACTIONS(2361), - [aux_sym_cmd_identifier_token32] = ACTIONS(2361), - [aux_sym_cmd_identifier_token33] = ACTIONS(2361), - [aux_sym_cmd_identifier_token34] = ACTIONS(2359), - [aux_sym_cmd_identifier_token35] = ACTIONS(2361), - [aux_sym_cmd_identifier_token36] = ACTIONS(2361), - [aux_sym_cmd_identifier_token37] = ACTIONS(2361), - [aux_sym_cmd_identifier_token38] = ACTIONS(2359), - [aux_sym_cmd_identifier_token39] = ACTIONS(2361), - [aux_sym_cmd_identifier_token40] = ACTIONS(2361), - [anon_sym_def] = ACTIONS(2359), - [anon_sym_export_DASHenv] = ACTIONS(2359), - [anon_sym_extern] = ACTIONS(2359), - [anon_sym_module] = ACTIONS(2359), - [anon_sym_use] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2361), - [anon_sym_DOLLAR] = ACTIONS(2361), - [anon_sym_error] = ACTIONS(2359), - [anon_sym_DASH2] = ACTIONS(2359), - [anon_sym_break] = ACTIONS(2359), - [anon_sym_continue] = ACTIONS(2359), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_in2] = ACTIONS(2359), - [anon_sym_loop] = ACTIONS(2359), - [anon_sym_make] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_else] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), - [anon_sym_RBRACE] = ACTIONS(2361), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_catch] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_source] = ACTIONS(2359), - [anon_sym_source_DASHenv] = ACTIONS(2359), - [anon_sym_register] = ACTIONS(2359), - [anon_sym_hide] = ACTIONS(2359), - [anon_sym_hide_DASHenv] = ACTIONS(2359), - [anon_sym_overlay] = ACTIONS(2359), - [anon_sym_as] = ACTIONS(2359), - [anon_sym_PLUS2] = ACTIONS(2359), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2361), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2361), - [aux_sym__val_number_decimal_token1] = ACTIONS(2359), - [aux_sym__val_number_decimal_token2] = ACTIONS(2361), - [aux_sym__val_number_decimal_token3] = ACTIONS(2361), - [aux_sym__val_number_decimal_token4] = ACTIONS(2361), - [aux_sym__val_number_token1] = ACTIONS(2361), - [aux_sym__val_number_token2] = ACTIONS(2361), - [aux_sym__val_number_token3] = ACTIONS(2361), - [aux_sym__val_number_token4] = ACTIONS(2359), - [aux_sym__val_number_token5] = ACTIONS(2359), - [aux_sym__val_number_token6] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2361), - [sym__str_single_quotes] = ACTIONS(2361), - [sym__str_back_ticks] = ACTIONS(2361), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2361), + [anon_sym_export] = ACTIONS(1907), + [anon_sym_alias] = ACTIONS(1907), + [anon_sym_let] = ACTIONS(1907), + [anon_sym_let_DASHenv] = ACTIONS(1907), + [anon_sym_mut] = ACTIONS(1907), + [anon_sym_const] = ACTIONS(1907), + [aux_sym_cmd_identifier_token1] = ACTIONS(1907), + [aux_sym_cmd_identifier_token2] = ACTIONS(1909), + [aux_sym_cmd_identifier_token3] = ACTIONS(1909), + [aux_sym_cmd_identifier_token4] = ACTIONS(1909), + [aux_sym_cmd_identifier_token5] = ACTIONS(1909), + [aux_sym_cmd_identifier_token6] = ACTIONS(1909), + [aux_sym_cmd_identifier_token7] = ACTIONS(1909), + [aux_sym_cmd_identifier_token8] = ACTIONS(1907), + [aux_sym_cmd_identifier_token9] = ACTIONS(1907), + [aux_sym_cmd_identifier_token10] = ACTIONS(1909), + [aux_sym_cmd_identifier_token11] = ACTIONS(1909), + [aux_sym_cmd_identifier_token12] = ACTIONS(1907), + [aux_sym_cmd_identifier_token13] = ACTIONS(1907), + [aux_sym_cmd_identifier_token14] = ACTIONS(1907), + [aux_sym_cmd_identifier_token15] = ACTIONS(1907), + [aux_sym_cmd_identifier_token16] = ACTIONS(1909), + [aux_sym_cmd_identifier_token17] = ACTIONS(1909), + [aux_sym_cmd_identifier_token18] = ACTIONS(1909), + [aux_sym_cmd_identifier_token19] = ACTIONS(1909), + [aux_sym_cmd_identifier_token20] = ACTIONS(1909), + [aux_sym_cmd_identifier_token21] = ACTIONS(1909), + [aux_sym_cmd_identifier_token22] = ACTIONS(1909), + [aux_sym_cmd_identifier_token23] = ACTIONS(1909), + [aux_sym_cmd_identifier_token24] = ACTIONS(1909), + [aux_sym_cmd_identifier_token25] = ACTIONS(1909), + [aux_sym_cmd_identifier_token26] = ACTIONS(1909), + [aux_sym_cmd_identifier_token27] = ACTIONS(1909), + [aux_sym_cmd_identifier_token28] = ACTIONS(1909), + [aux_sym_cmd_identifier_token29] = ACTIONS(1909), + [aux_sym_cmd_identifier_token30] = ACTIONS(1909), + [aux_sym_cmd_identifier_token31] = ACTIONS(1909), + [aux_sym_cmd_identifier_token32] = ACTIONS(1909), + [aux_sym_cmd_identifier_token33] = ACTIONS(1909), + [aux_sym_cmd_identifier_token34] = ACTIONS(1907), + [aux_sym_cmd_identifier_token35] = ACTIONS(1909), + [aux_sym_cmd_identifier_token36] = ACTIONS(1909), + [aux_sym_cmd_identifier_token37] = ACTIONS(1909), + [aux_sym_cmd_identifier_token38] = ACTIONS(1907), + [aux_sym_cmd_identifier_token39] = ACTIONS(1909), + [aux_sym_cmd_identifier_token40] = ACTIONS(1909), + [anon_sym_def] = ACTIONS(1907), + [anon_sym_export_DASHenv] = ACTIONS(1907), + [anon_sym_extern] = ACTIONS(1907), + [anon_sym_module] = ACTIONS(1907), + [anon_sym_use] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_DOLLAR] = ACTIONS(1909), + [anon_sym_error] = ACTIONS(1907), + [anon_sym_DASH2] = ACTIONS(1907), + [anon_sym_break] = ACTIONS(1907), + [anon_sym_continue] = ACTIONS(1907), + [anon_sym_for] = ACTIONS(1907), + [anon_sym_in2] = ACTIONS(1907), + [anon_sym_loop] = ACTIONS(1907), + [anon_sym_make] = ACTIONS(1907), + [anon_sym_while] = ACTIONS(1907), + [anon_sym_do] = ACTIONS(1907), + [anon_sym_if] = ACTIONS(1907), + [anon_sym_else] = ACTIONS(1907), + [anon_sym_match] = ACTIONS(1907), + [anon_sym_RBRACE] = ACTIONS(1909), + [anon_sym_try] = ACTIONS(1907), + [anon_sym_catch] = ACTIONS(1907), + [anon_sym_return] = ACTIONS(1907), + [anon_sym_source] = ACTIONS(1907), + [anon_sym_source_DASHenv] = ACTIONS(1907), + [anon_sym_register] = ACTIONS(1907), + [anon_sym_hide] = ACTIONS(1907), + [anon_sym_hide_DASHenv] = ACTIONS(1907), + [anon_sym_overlay] = ACTIONS(1907), + [anon_sym_as] = ACTIONS(1907), + [anon_sym_PLUS2] = ACTIONS(1907), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1909), + [aux_sym__val_number_decimal_token1] = ACTIONS(1907), + [aux_sym__val_number_decimal_token2] = ACTIONS(1909), + [aux_sym__val_number_decimal_token3] = ACTIONS(1909), + [aux_sym__val_number_decimal_token4] = ACTIONS(1909), + [aux_sym__val_number_token1] = ACTIONS(1909), + [aux_sym__val_number_token2] = ACTIONS(1909), + [aux_sym__val_number_token3] = ACTIONS(1909), + [aux_sym__val_number_token4] = ACTIONS(1907), + [aux_sym__val_number_token5] = ACTIONS(1907), + [aux_sym__val_number_token6] = ACTIONS(1907), + [anon_sym_DQUOTE] = ACTIONS(1909), + [sym__str_single_quotes] = ACTIONS(1909), + [sym__str_back_ticks] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1909), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2361), + [sym_raw_string_begin] = ACTIONS(1909), }, [751] = { [sym_comment] = STATE(751), - [anon_sym_export] = ACTIONS(1709), - [anon_sym_alias] = ACTIONS(1709), - [anon_sym_let] = ACTIONS(1709), - [anon_sym_let_DASHenv] = ACTIONS(1709), - [anon_sym_mut] = ACTIONS(1709), - [anon_sym_const] = ACTIONS(1709), - [aux_sym_cmd_identifier_token1] = ACTIONS(1709), - [aux_sym_cmd_identifier_token2] = ACTIONS(1721), - [aux_sym_cmd_identifier_token3] = ACTIONS(1721), - [aux_sym_cmd_identifier_token4] = ACTIONS(1721), - [aux_sym_cmd_identifier_token5] = ACTIONS(1721), - [aux_sym_cmd_identifier_token6] = ACTIONS(1721), - [aux_sym_cmd_identifier_token7] = ACTIONS(1721), - [aux_sym_cmd_identifier_token8] = ACTIONS(1709), - [aux_sym_cmd_identifier_token9] = ACTIONS(1709), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1709), - [aux_sym_cmd_identifier_token13] = ACTIONS(1709), - [aux_sym_cmd_identifier_token14] = ACTIONS(1709), - [aux_sym_cmd_identifier_token15] = ACTIONS(1709), - [aux_sym_cmd_identifier_token16] = ACTIONS(1721), - [aux_sym_cmd_identifier_token17] = ACTIONS(1721), - [aux_sym_cmd_identifier_token18] = ACTIONS(1721), - [aux_sym_cmd_identifier_token19] = ACTIONS(1721), - [aux_sym_cmd_identifier_token20] = ACTIONS(1721), - [aux_sym_cmd_identifier_token21] = ACTIONS(1721), - [aux_sym_cmd_identifier_token22] = ACTIONS(1721), - [aux_sym_cmd_identifier_token23] = ACTIONS(1721), - [aux_sym_cmd_identifier_token24] = ACTIONS(1721), - [aux_sym_cmd_identifier_token25] = ACTIONS(1721), - [aux_sym_cmd_identifier_token26] = ACTIONS(1721), - [aux_sym_cmd_identifier_token27] = ACTIONS(1721), - [aux_sym_cmd_identifier_token28] = ACTIONS(1721), - [aux_sym_cmd_identifier_token29] = ACTIONS(1721), - [aux_sym_cmd_identifier_token30] = ACTIONS(1721), - [aux_sym_cmd_identifier_token31] = ACTIONS(1721), - [aux_sym_cmd_identifier_token32] = ACTIONS(1721), - [aux_sym_cmd_identifier_token33] = ACTIONS(1721), - [aux_sym_cmd_identifier_token34] = ACTIONS(1709), - [aux_sym_cmd_identifier_token35] = ACTIONS(1721), - [aux_sym_cmd_identifier_token36] = ACTIONS(1721), - [aux_sym_cmd_identifier_token37] = ACTIONS(1721), - [aux_sym_cmd_identifier_token38] = ACTIONS(1709), - [aux_sym_cmd_identifier_token39] = ACTIONS(1721), - [aux_sym_cmd_identifier_token40] = ACTIONS(1721), - [anon_sym_def] = ACTIONS(1709), - [anon_sym_export_DASHenv] = ACTIONS(1709), - [anon_sym_extern] = ACTIONS(1709), - [anon_sym_module] = ACTIONS(1709), - [anon_sym_use] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_error] = ACTIONS(1709), - [anon_sym_DASH2] = ACTIONS(1709), - [anon_sym_break] = ACTIONS(1709), - [anon_sym_continue] = ACTIONS(1709), - [anon_sym_for] = ACTIONS(1709), - [anon_sym_in2] = ACTIONS(1709), - [anon_sym_loop] = ACTIONS(1709), - [anon_sym_make] = ACTIONS(1709), - [anon_sym_while] = ACTIONS(1709), - [anon_sym_do] = ACTIONS(1709), - [anon_sym_if] = ACTIONS(1709), - [anon_sym_else] = ACTIONS(1709), - [anon_sym_match] = ACTIONS(1709), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1709), - [anon_sym_catch] = ACTIONS(1709), - [anon_sym_return] = ACTIONS(1709), - [anon_sym_source] = ACTIONS(1709), - [anon_sym_source_DASHenv] = ACTIONS(1709), - [anon_sym_register] = ACTIONS(1709), - [anon_sym_hide] = ACTIONS(1709), - [anon_sym_hide_DASHenv] = ACTIONS(1709), - [anon_sym_overlay] = ACTIONS(1709), - [anon_sym_as] = ACTIONS(1709), - [anon_sym_PLUS2] = ACTIONS(1709), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1709), - [aux_sym__val_number_decimal_token2] = ACTIONS(1721), - [aux_sym__val_number_decimal_token3] = ACTIONS(1721), - [aux_sym__val_number_decimal_token4] = ACTIONS(1721), - [aux_sym__val_number_token1] = ACTIONS(1721), - [aux_sym__val_number_token2] = ACTIONS(1721), - [aux_sym__val_number_token3] = ACTIONS(1721), - [aux_sym__val_number_token4] = ACTIONS(1709), - [aux_sym__val_number_token5] = ACTIONS(1709), - [aux_sym__val_number_token6] = ACTIONS(1709), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym__str_single_quotes] = ACTIONS(1721), - [sym__str_back_ticks] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1721), + [anon_sym_export] = ACTIONS(2468), + [anon_sym_alias] = ACTIONS(2468), + [anon_sym_let] = ACTIONS(2468), + [anon_sym_let_DASHenv] = ACTIONS(2468), + [anon_sym_mut] = ACTIONS(2468), + [anon_sym_const] = ACTIONS(2468), + [aux_sym_cmd_identifier_token1] = ACTIONS(2468), + [aux_sym_cmd_identifier_token2] = ACTIONS(2470), + [aux_sym_cmd_identifier_token3] = ACTIONS(2470), + [aux_sym_cmd_identifier_token4] = ACTIONS(2470), + [aux_sym_cmd_identifier_token5] = ACTIONS(2470), + [aux_sym_cmd_identifier_token6] = ACTIONS(2470), + [aux_sym_cmd_identifier_token7] = ACTIONS(2470), + [aux_sym_cmd_identifier_token8] = ACTIONS(2468), + [aux_sym_cmd_identifier_token9] = ACTIONS(2468), + [aux_sym_cmd_identifier_token10] = ACTIONS(2470), + [aux_sym_cmd_identifier_token11] = ACTIONS(2470), + [aux_sym_cmd_identifier_token12] = ACTIONS(2468), + [aux_sym_cmd_identifier_token13] = ACTIONS(2468), + [aux_sym_cmd_identifier_token14] = ACTIONS(2468), + [aux_sym_cmd_identifier_token15] = ACTIONS(2468), + [aux_sym_cmd_identifier_token16] = ACTIONS(2470), + [aux_sym_cmd_identifier_token17] = ACTIONS(2470), + [aux_sym_cmd_identifier_token18] = ACTIONS(2470), + [aux_sym_cmd_identifier_token19] = ACTIONS(2470), + [aux_sym_cmd_identifier_token20] = ACTIONS(2470), + [aux_sym_cmd_identifier_token21] = ACTIONS(2470), + [aux_sym_cmd_identifier_token22] = ACTIONS(2470), + [aux_sym_cmd_identifier_token23] = ACTIONS(2470), + [aux_sym_cmd_identifier_token24] = ACTIONS(2470), + [aux_sym_cmd_identifier_token25] = ACTIONS(2470), + [aux_sym_cmd_identifier_token26] = ACTIONS(2470), + [aux_sym_cmd_identifier_token27] = ACTIONS(2470), + [aux_sym_cmd_identifier_token28] = ACTIONS(2470), + [aux_sym_cmd_identifier_token29] = ACTIONS(2470), + [aux_sym_cmd_identifier_token30] = ACTIONS(2470), + [aux_sym_cmd_identifier_token31] = ACTIONS(2470), + [aux_sym_cmd_identifier_token32] = ACTIONS(2470), + [aux_sym_cmd_identifier_token33] = ACTIONS(2470), + [aux_sym_cmd_identifier_token34] = ACTIONS(2468), + [aux_sym_cmd_identifier_token35] = ACTIONS(2470), + [aux_sym_cmd_identifier_token36] = ACTIONS(2470), + [aux_sym_cmd_identifier_token37] = ACTIONS(2470), + [aux_sym_cmd_identifier_token38] = ACTIONS(2468), + [aux_sym_cmd_identifier_token39] = ACTIONS(2470), + [aux_sym_cmd_identifier_token40] = ACTIONS(2470), + [anon_sym_def] = ACTIONS(2468), + [anon_sym_export_DASHenv] = ACTIONS(2468), + [anon_sym_extern] = ACTIONS(2468), + [anon_sym_module] = ACTIONS(2468), + [anon_sym_use] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_DOLLAR] = ACTIONS(2470), + [anon_sym_error] = ACTIONS(2468), + [anon_sym_DASH2] = ACTIONS(2468), + [anon_sym_break] = ACTIONS(2468), + [anon_sym_continue] = ACTIONS(2468), + [anon_sym_for] = ACTIONS(2468), + [anon_sym_in2] = ACTIONS(2468), + [anon_sym_loop] = ACTIONS(2468), + [anon_sym_make] = ACTIONS(2468), + [anon_sym_while] = ACTIONS(2468), + [anon_sym_do] = ACTIONS(2468), + [anon_sym_if] = ACTIONS(2468), + [anon_sym_else] = ACTIONS(2468), + [anon_sym_match] = ACTIONS(2468), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2468), + [anon_sym_catch] = ACTIONS(2468), + [anon_sym_return] = ACTIONS(2468), + [anon_sym_source] = ACTIONS(2468), + [anon_sym_source_DASHenv] = ACTIONS(2468), + [anon_sym_register] = ACTIONS(2468), + [anon_sym_hide] = ACTIONS(2468), + [anon_sym_hide_DASHenv] = ACTIONS(2468), + [anon_sym_overlay] = ACTIONS(2468), + [anon_sym_as] = ACTIONS(2468), + [anon_sym_PLUS2] = ACTIONS(2468), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2470), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2470), + [aux_sym__val_number_decimal_token1] = ACTIONS(2468), + [aux_sym__val_number_decimal_token2] = ACTIONS(2470), + [aux_sym__val_number_decimal_token3] = ACTIONS(2470), + [aux_sym__val_number_decimal_token4] = ACTIONS(2470), + [aux_sym__val_number_token1] = ACTIONS(2470), + [aux_sym__val_number_token2] = ACTIONS(2470), + [aux_sym__val_number_token3] = ACTIONS(2470), + [aux_sym__val_number_token4] = ACTIONS(2468), + [aux_sym__val_number_token5] = ACTIONS(2468), + [aux_sym__val_number_token6] = ACTIONS(2468), + [anon_sym_DQUOTE] = ACTIONS(2470), + [sym__str_single_quotes] = ACTIONS(2470), + [sym__str_back_ticks] = ACTIONS(2470), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2470), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2470), }, [752] = { [sym_comment] = STATE(752), - [anon_sym_export] = ACTIONS(2429), - [anon_sym_alias] = ACTIONS(2429), - [anon_sym_let] = ACTIONS(2429), - [anon_sym_let_DASHenv] = ACTIONS(2429), - [anon_sym_mut] = ACTIONS(2429), - [anon_sym_const] = ACTIONS(2429), - [aux_sym_cmd_identifier_token1] = ACTIONS(2429), - [aux_sym_cmd_identifier_token2] = ACTIONS(2431), - [aux_sym_cmd_identifier_token3] = ACTIONS(2431), - [aux_sym_cmd_identifier_token4] = ACTIONS(2431), - [aux_sym_cmd_identifier_token5] = ACTIONS(2431), - [aux_sym_cmd_identifier_token6] = ACTIONS(2431), - [aux_sym_cmd_identifier_token7] = ACTIONS(2431), - [aux_sym_cmd_identifier_token8] = ACTIONS(2429), - [aux_sym_cmd_identifier_token9] = ACTIONS(2429), - [aux_sym_cmd_identifier_token10] = ACTIONS(2431), - [aux_sym_cmd_identifier_token11] = ACTIONS(2431), - [aux_sym_cmd_identifier_token12] = ACTIONS(2429), - [aux_sym_cmd_identifier_token13] = ACTIONS(2429), - [aux_sym_cmd_identifier_token14] = ACTIONS(2429), - [aux_sym_cmd_identifier_token15] = ACTIONS(2429), - [aux_sym_cmd_identifier_token16] = ACTIONS(2431), - [aux_sym_cmd_identifier_token17] = ACTIONS(2431), - [aux_sym_cmd_identifier_token18] = ACTIONS(2431), - [aux_sym_cmd_identifier_token19] = ACTIONS(2431), - [aux_sym_cmd_identifier_token20] = ACTIONS(2431), - [aux_sym_cmd_identifier_token21] = ACTIONS(2431), - [aux_sym_cmd_identifier_token22] = ACTIONS(2431), - [aux_sym_cmd_identifier_token23] = ACTIONS(2431), - [aux_sym_cmd_identifier_token24] = ACTIONS(2431), - [aux_sym_cmd_identifier_token25] = ACTIONS(2431), - [aux_sym_cmd_identifier_token26] = ACTIONS(2431), - [aux_sym_cmd_identifier_token27] = ACTIONS(2431), - [aux_sym_cmd_identifier_token28] = ACTIONS(2431), - [aux_sym_cmd_identifier_token29] = ACTIONS(2431), - [aux_sym_cmd_identifier_token30] = ACTIONS(2431), - [aux_sym_cmd_identifier_token31] = ACTIONS(2431), - [aux_sym_cmd_identifier_token32] = ACTIONS(2431), - [aux_sym_cmd_identifier_token33] = ACTIONS(2431), - [aux_sym_cmd_identifier_token34] = ACTIONS(2429), - [aux_sym_cmd_identifier_token35] = ACTIONS(2431), - [aux_sym_cmd_identifier_token36] = ACTIONS(2431), - [aux_sym_cmd_identifier_token37] = ACTIONS(2431), - [aux_sym_cmd_identifier_token38] = ACTIONS(2429), - [aux_sym_cmd_identifier_token39] = ACTIONS(2431), - [aux_sym_cmd_identifier_token40] = ACTIONS(2431), - [anon_sym_def] = ACTIONS(2429), - [anon_sym_export_DASHenv] = ACTIONS(2429), - [anon_sym_extern] = ACTIONS(2429), - [anon_sym_module] = ACTIONS(2429), - [anon_sym_use] = ACTIONS(2429), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_DOLLAR] = ACTIONS(2431), - [anon_sym_error] = ACTIONS(2429), - [anon_sym_DASH2] = ACTIONS(2429), - [anon_sym_break] = ACTIONS(2429), - [anon_sym_continue] = ACTIONS(2429), - [anon_sym_for] = ACTIONS(2429), - [anon_sym_in2] = ACTIONS(2429), - [anon_sym_loop] = ACTIONS(2429), - [anon_sym_make] = ACTIONS(2429), - [anon_sym_while] = ACTIONS(2429), - [anon_sym_do] = ACTIONS(2429), - [anon_sym_if] = ACTIONS(2429), - [anon_sym_else] = ACTIONS(2429), - [anon_sym_match] = ACTIONS(2429), - [anon_sym_RBRACE] = ACTIONS(2431), - [anon_sym_try] = ACTIONS(2429), - [anon_sym_catch] = ACTIONS(2429), - [anon_sym_return] = ACTIONS(2429), - [anon_sym_source] = ACTIONS(2429), - [anon_sym_source_DASHenv] = ACTIONS(2429), - [anon_sym_register] = ACTIONS(2429), - [anon_sym_hide] = ACTIONS(2429), - [anon_sym_hide_DASHenv] = ACTIONS(2429), - [anon_sym_overlay] = ACTIONS(2429), - [anon_sym_as] = ACTIONS(2429), - [anon_sym_PLUS2] = ACTIONS(2429), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2431), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2431), - [aux_sym__val_number_decimal_token1] = ACTIONS(2429), - [aux_sym__val_number_decimal_token2] = ACTIONS(2431), - [aux_sym__val_number_decimal_token3] = ACTIONS(2431), - [aux_sym__val_number_decimal_token4] = ACTIONS(2431), - [aux_sym__val_number_token1] = ACTIONS(2431), - [aux_sym__val_number_token2] = ACTIONS(2431), - [aux_sym__val_number_token3] = ACTIONS(2431), - [aux_sym__val_number_token4] = ACTIONS(2429), - [aux_sym__val_number_token5] = ACTIONS(2429), - [aux_sym__val_number_token6] = ACTIONS(2429), - [anon_sym_DQUOTE] = ACTIONS(2431), - [sym__str_single_quotes] = ACTIONS(2431), - [sym__str_back_ticks] = ACTIONS(2431), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2431), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2431), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_alias] = ACTIONS(2482), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_let_DASHenv] = ACTIONS(2482), + [anon_sym_mut] = ACTIONS(2482), + [anon_sym_const] = ACTIONS(2482), + [aux_sym_cmd_identifier_token1] = ACTIONS(2482), + [aux_sym_cmd_identifier_token2] = ACTIONS(2484), + [aux_sym_cmd_identifier_token3] = ACTIONS(2484), + [aux_sym_cmd_identifier_token4] = ACTIONS(2484), + [aux_sym_cmd_identifier_token5] = ACTIONS(2484), + [aux_sym_cmd_identifier_token6] = ACTIONS(2484), + [aux_sym_cmd_identifier_token7] = ACTIONS(2484), + [aux_sym_cmd_identifier_token8] = ACTIONS(2482), + [aux_sym_cmd_identifier_token9] = ACTIONS(2482), + [aux_sym_cmd_identifier_token10] = ACTIONS(2484), + [aux_sym_cmd_identifier_token11] = ACTIONS(2484), + [aux_sym_cmd_identifier_token12] = ACTIONS(2482), + [aux_sym_cmd_identifier_token13] = ACTIONS(2482), + [aux_sym_cmd_identifier_token14] = ACTIONS(2482), + [aux_sym_cmd_identifier_token15] = ACTIONS(2482), + [aux_sym_cmd_identifier_token16] = ACTIONS(2484), + [aux_sym_cmd_identifier_token17] = ACTIONS(2484), + [aux_sym_cmd_identifier_token18] = ACTIONS(2484), + [aux_sym_cmd_identifier_token19] = ACTIONS(2484), + [aux_sym_cmd_identifier_token20] = ACTIONS(2484), + [aux_sym_cmd_identifier_token21] = ACTIONS(2484), + [aux_sym_cmd_identifier_token22] = ACTIONS(2484), + [aux_sym_cmd_identifier_token23] = ACTIONS(2484), + [aux_sym_cmd_identifier_token24] = ACTIONS(2484), + [aux_sym_cmd_identifier_token25] = ACTIONS(2484), + [aux_sym_cmd_identifier_token26] = ACTIONS(2484), + [aux_sym_cmd_identifier_token27] = ACTIONS(2484), + [aux_sym_cmd_identifier_token28] = ACTIONS(2484), + [aux_sym_cmd_identifier_token29] = ACTIONS(2484), + [aux_sym_cmd_identifier_token30] = ACTIONS(2484), + [aux_sym_cmd_identifier_token31] = ACTIONS(2484), + [aux_sym_cmd_identifier_token32] = ACTIONS(2484), + [aux_sym_cmd_identifier_token33] = ACTIONS(2484), + [aux_sym_cmd_identifier_token34] = ACTIONS(2482), + [aux_sym_cmd_identifier_token35] = ACTIONS(2484), + [aux_sym_cmd_identifier_token36] = ACTIONS(2484), + [aux_sym_cmd_identifier_token37] = ACTIONS(2484), + [aux_sym_cmd_identifier_token38] = ACTIONS(2482), + [aux_sym_cmd_identifier_token39] = ACTIONS(2484), + [aux_sym_cmd_identifier_token40] = ACTIONS(2484), + [anon_sym_def] = ACTIONS(2482), + [anon_sym_export_DASHenv] = ACTIONS(2482), + [anon_sym_extern] = ACTIONS(2482), + [anon_sym_module] = ACTIONS(2482), + [anon_sym_use] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2484), + [anon_sym_error] = ACTIONS(2482), + [anon_sym_DASH2] = ACTIONS(2482), + [anon_sym_break] = ACTIONS(2482), + [anon_sym_continue] = ACTIONS(2482), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_in2] = ACTIONS(2482), + [anon_sym_loop] = ACTIONS(2482), + [anon_sym_make] = ACTIONS(2482), + [anon_sym_while] = ACTIONS(2482), + [anon_sym_do] = ACTIONS(2482), + [anon_sym_if] = ACTIONS(2482), + [anon_sym_else] = ACTIONS(2482), + [anon_sym_match] = ACTIONS(2482), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_try] = ACTIONS(2482), + [anon_sym_catch] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(2482), + [anon_sym_source] = ACTIONS(2482), + [anon_sym_source_DASHenv] = ACTIONS(2482), + [anon_sym_register] = ACTIONS(2482), + [anon_sym_hide] = ACTIONS(2482), + [anon_sym_hide_DASHenv] = ACTIONS(2482), + [anon_sym_overlay] = ACTIONS(2482), + [anon_sym_as] = ACTIONS(2482), + [anon_sym_PLUS2] = ACTIONS(2482), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2484), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2484), + [aux_sym__val_number_decimal_token1] = ACTIONS(2482), + [aux_sym__val_number_decimal_token2] = ACTIONS(2484), + [aux_sym__val_number_decimal_token3] = ACTIONS(2484), + [aux_sym__val_number_decimal_token4] = ACTIONS(2484), + [aux_sym__val_number_token1] = ACTIONS(2484), + [aux_sym__val_number_token2] = ACTIONS(2484), + [aux_sym__val_number_token3] = ACTIONS(2484), + [aux_sym__val_number_token4] = ACTIONS(2482), + [aux_sym__val_number_token5] = ACTIONS(2482), + [aux_sym__val_number_token6] = ACTIONS(2482), + [anon_sym_DQUOTE] = ACTIONS(2484), + [sym__str_single_quotes] = ACTIONS(2484), + [sym__str_back_ticks] = ACTIONS(2484), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2484), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2484), }, [753] = { [sym_comment] = STATE(753), - [anon_sym_export] = ACTIONS(2363), - [anon_sym_alias] = ACTIONS(2363), - [anon_sym_let] = ACTIONS(2363), - [anon_sym_let_DASHenv] = ACTIONS(2363), - [anon_sym_mut] = ACTIONS(2363), - [anon_sym_const] = ACTIONS(2363), - [aux_sym_cmd_identifier_token1] = ACTIONS(2363), - [aux_sym_cmd_identifier_token2] = ACTIONS(2365), - [aux_sym_cmd_identifier_token3] = ACTIONS(2365), - [aux_sym_cmd_identifier_token4] = ACTIONS(2365), - [aux_sym_cmd_identifier_token5] = ACTIONS(2365), - [aux_sym_cmd_identifier_token6] = ACTIONS(2365), - [aux_sym_cmd_identifier_token7] = ACTIONS(2365), - [aux_sym_cmd_identifier_token8] = ACTIONS(2363), - [aux_sym_cmd_identifier_token9] = ACTIONS(2363), - [aux_sym_cmd_identifier_token10] = ACTIONS(2365), - [aux_sym_cmd_identifier_token11] = ACTIONS(2365), - [aux_sym_cmd_identifier_token12] = ACTIONS(2363), - [aux_sym_cmd_identifier_token13] = ACTIONS(2363), - [aux_sym_cmd_identifier_token14] = ACTIONS(2363), - [aux_sym_cmd_identifier_token15] = ACTIONS(2363), - [aux_sym_cmd_identifier_token16] = ACTIONS(2365), - [aux_sym_cmd_identifier_token17] = ACTIONS(2365), - [aux_sym_cmd_identifier_token18] = ACTIONS(2365), - [aux_sym_cmd_identifier_token19] = ACTIONS(2365), - [aux_sym_cmd_identifier_token20] = ACTIONS(2365), - [aux_sym_cmd_identifier_token21] = ACTIONS(2365), - [aux_sym_cmd_identifier_token22] = ACTIONS(2365), - [aux_sym_cmd_identifier_token23] = ACTIONS(2365), - [aux_sym_cmd_identifier_token24] = ACTIONS(2365), - [aux_sym_cmd_identifier_token25] = ACTIONS(2365), - [aux_sym_cmd_identifier_token26] = ACTIONS(2365), - [aux_sym_cmd_identifier_token27] = ACTIONS(2365), - [aux_sym_cmd_identifier_token28] = ACTIONS(2365), - [aux_sym_cmd_identifier_token29] = ACTIONS(2365), - [aux_sym_cmd_identifier_token30] = ACTIONS(2365), - [aux_sym_cmd_identifier_token31] = ACTIONS(2365), - [aux_sym_cmd_identifier_token32] = ACTIONS(2365), - [aux_sym_cmd_identifier_token33] = ACTIONS(2365), - [aux_sym_cmd_identifier_token34] = ACTIONS(2363), - [aux_sym_cmd_identifier_token35] = ACTIONS(2365), - [aux_sym_cmd_identifier_token36] = ACTIONS(2365), - [aux_sym_cmd_identifier_token37] = ACTIONS(2365), - [aux_sym_cmd_identifier_token38] = ACTIONS(2363), - [aux_sym_cmd_identifier_token39] = ACTIONS(2365), - [aux_sym_cmd_identifier_token40] = ACTIONS(2365), - [anon_sym_def] = ACTIONS(2363), - [anon_sym_export_DASHenv] = ACTIONS(2363), - [anon_sym_extern] = ACTIONS(2363), - [anon_sym_module] = ACTIONS(2363), - [anon_sym_use] = ACTIONS(2363), - [anon_sym_LPAREN] = ACTIONS(2365), - [anon_sym_DOLLAR] = ACTIONS(2365), - [anon_sym_error] = ACTIONS(2363), - [anon_sym_DASH2] = ACTIONS(2363), - [anon_sym_break] = ACTIONS(2363), - [anon_sym_continue] = ACTIONS(2363), - [anon_sym_for] = ACTIONS(2363), - [anon_sym_in2] = ACTIONS(2363), - [anon_sym_loop] = ACTIONS(2363), - [anon_sym_make] = ACTIONS(2363), - [anon_sym_while] = ACTIONS(2363), - [anon_sym_do] = ACTIONS(2363), - [anon_sym_if] = ACTIONS(2363), - [anon_sym_else] = ACTIONS(2363), - [anon_sym_match] = ACTIONS(2363), - [anon_sym_RBRACE] = ACTIONS(2365), - [anon_sym_try] = ACTIONS(2363), - [anon_sym_catch] = ACTIONS(2363), - [anon_sym_return] = ACTIONS(2363), - [anon_sym_source] = ACTIONS(2363), - [anon_sym_source_DASHenv] = ACTIONS(2363), - [anon_sym_register] = ACTIONS(2363), - [anon_sym_hide] = ACTIONS(2363), - [anon_sym_hide_DASHenv] = ACTIONS(2363), - [anon_sym_overlay] = ACTIONS(2363), - [anon_sym_as] = ACTIONS(2363), - [anon_sym_PLUS2] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2365), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2365), - [aux_sym__val_number_decimal_token1] = ACTIONS(2363), - [aux_sym__val_number_decimal_token2] = ACTIONS(2365), - [aux_sym__val_number_decimal_token3] = ACTIONS(2365), - [aux_sym__val_number_decimal_token4] = ACTIONS(2365), - [aux_sym__val_number_token1] = ACTIONS(2365), - [aux_sym__val_number_token2] = ACTIONS(2365), - [aux_sym__val_number_token3] = ACTIONS(2365), - [aux_sym__val_number_token4] = ACTIONS(2363), - [aux_sym__val_number_token5] = ACTIONS(2363), - [aux_sym__val_number_token6] = ACTIONS(2363), - [anon_sym_DQUOTE] = ACTIONS(2365), - [sym__str_single_quotes] = ACTIONS(2365), - [sym__str_back_ticks] = ACTIONS(2365), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2365), + [anon_sym_export] = ACTIONS(1707), + [anon_sym_alias] = ACTIONS(1707), + [anon_sym_let] = ACTIONS(1707), + [anon_sym_let_DASHenv] = ACTIONS(1707), + [anon_sym_mut] = ACTIONS(1707), + [anon_sym_const] = ACTIONS(1707), + [aux_sym_cmd_identifier_token1] = ACTIONS(1707), + [aux_sym_cmd_identifier_token2] = ACTIONS(1719), + [aux_sym_cmd_identifier_token3] = ACTIONS(1719), + [aux_sym_cmd_identifier_token4] = ACTIONS(1719), + [aux_sym_cmd_identifier_token5] = ACTIONS(1719), + [aux_sym_cmd_identifier_token6] = ACTIONS(1719), + [aux_sym_cmd_identifier_token7] = ACTIONS(1719), + [aux_sym_cmd_identifier_token8] = ACTIONS(1707), + [aux_sym_cmd_identifier_token9] = ACTIONS(1707), + [aux_sym_cmd_identifier_token10] = ACTIONS(1719), + [aux_sym_cmd_identifier_token11] = ACTIONS(1719), + [aux_sym_cmd_identifier_token12] = ACTIONS(1707), + [aux_sym_cmd_identifier_token13] = ACTIONS(1707), + [aux_sym_cmd_identifier_token14] = ACTIONS(1707), + [aux_sym_cmd_identifier_token15] = ACTIONS(1707), + [aux_sym_cmd_identifier_token16] = ACTIONS(1719), + [aux_sym_cmd_identifier_token17] = ACTIONS(1719), + [aux_sym_cmd_identifier_token18] = ACTIONS(1719), + [aux_sym_cmd_identifier_token19] = ACTIONS(1719), + [aux_sym_cmd_identifier_token20] = ACTIONS(1719), + [aux_sym_cmd_identifier_token21] = ACTIONS(1719), + [aux_sym_cmd_identifier_token22] = ACTIONS(1719), + [aux_sym_cmd_identifier_token23] = ACTIONS(1719), + [aux_sym_cmd_identifier_token24] = ACTIONS(1719), + [aux_sym_cmd_identifier_token25] = ACTIONS(1719), + [aux_sym_cmd_identifier_token26] = ACTIONS(1719), + [aux_sym_cmd_identifier_token27] = ACTIONS(1719), + [aux_sym_cmd_identifier_token28] = ACTIONS(1719), + [aux_sym_cmd_identifier_token29] = ACTIONS(1719), + [aux_sym_cmd_identifier_token30] = ACTIONS(1719), + [aux_sym_cmd_identifier_token31] = ACTIONS(1719), + [aux_sym_cmd_identifier_token32] = ACTIONS(1719), + [aux_sym_cmd_identifier_token33] = ACTIONS(1719), + [aux_sym_cmd_identifier_token34] = ACTIONS(1707), + [aux_sym_cmd_identifier_token35] = ACTIONS(1719), + [aux_sym_cmd_identifier_token36] = ACTIONS(1719), + [aux_sym_cmd_identifier_token37] = ACTIONS(1719), + [aux_sym_cmd_identifier_token38] = ACTIONS(1707), + [aux_sym_cmd_identifier_token39] = ACTIONS(1719), + [aux_sym_cmd_identifier_token40] = ACTIONS(1719), + [anon_sym_def] = ACTIONS(1707), + [anon_sym_export_DASHenv] = ACTIONS(1707), + [anon_sym_extern] = ACTIONS(1707), + [anon_sym_module] = ACTIONS(1707), + [anon_sym_use] = ACTIONS(1707), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR] = ACTIONS(1719), + [anon_sym_error] = ACTIONS(1707), + [anon_sym_DASH2] = ACTIONS(1707), + [anon_sym_break] = ACTIONS(1707), + [anon_sym_continue] = ACTIONS(1707), + [anon_sym_for] = ACTIONS(1707), + [anon_sym_in2] = ACTIONS(1707), + [anon_sym_loop] = ACTIONS(1707), + [anon_sym_make] = ACTIONS(1707), + [anon_sym_while] = ACTIONS(1707), + [anon_sym_do] = ACTIONS(1707), + [anon_sym_if] = ACTIONS(1707), + [anon_sym_else] = ACTIONS(1707), + [anon_sym_match] = ACTIONS(1707), + [anon_sym_RBRACE] = ACTIONS(1719), + [anon_sym_try] = ACTIONS(1707), + [anon_sym_catch] = ACTIONS(1707), + [anon_sym_return] = ACTIONS(1707), + [anon_sym_source] = ACTIONS(1707), + [anon_sym_source_DASHenv] = ACTIONS(1707), + [anon_sym_register] = ACTIONS(1707), + [anon_sym_hide] = ACTIONS(1707), + [anon_sym_hide_DASHenv] = ACTIONS(1707), + [anon_sym_overlay] = ACTIONS(1707), + [anon_sym_as] = ACTIONS(1707), + [anon_sym_PLUS2] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1719), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1719), + [aux_sym__val_number_decimal_token1] = ACTIONS(1707), + [aux_sym__val_number_decimal_token2] = ACTIONS(1719), + [aux_sym__val_number_decimal_token3] = ACTIONS(1719), + [aux_sym__val_number_decimal_token4] = ACTIONS(1719), + [aux_sym__val_number_token1] = ACTIONS(1719), + [aux_sym__val_number_token2] = ACTIONS(1719), + [aux_sym__val_number_token3] = ACTIONS(1719), + [aux_sym__val_number_token4] = ACTIONS(1707), + [aux_sym__val_number_token5] = ACTIONS(1707), + [aux_sym__val_number_token6] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1719), + [sym__str_single_quotes] = ACTIONS(1719), + [sym__str_back_ticks] = ACTIONS(1719), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1719), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2365), + [sym_raw_string_begin] = ACTIONS(1719), }, [754] = { [sym_comment] = STATE(754), - [anon_sym_export] = ACTIONS(2433), - [anon_sym_alias] = ACTIONS(2433), - [anon_sym_let] = ACTIONS(2433), - [anon_sym_let_DASHenv] = ACTIONS(2433), - [anon_sym_mut] = ACTIONS(2433), - [anon_sym_const] = ACTIONS(2433), - [aux_sym_cmd_identifier_token1] = ACTIONS(2433), - [aux_sym_cmd_identifier_token2] = ACTIONS(2435), - [aux_sym_cmd_identifier_token3] = ACTIONS(2435), - [aux_sym_cmd_identifier_token4] = ACTIONS(2435), - [aux_sym_cmd_identifier_token5] = ACTIONS(2435), - [aux_sym_cmd_identifier_token6] = ACTIONS(2435), - [aux_sym_cmd_identifier_token7] = ACTIONS(2435), - [aux_sym_cmd_identifier_token8] = ACTIONS(2433), - [aux_sym_cmd_identifier_token9] = ACTIONS(2433), - [aux_sym_cmd_identifier_token10] = ACTIONS(2435), - [aux_sym_cmd_identifier_token11] = ACTIONS(2435), - [aux_sym_cmd_identifier_token12] = ACTIONS(2433), - [aux_sym_cmd_identifier_token13] = ACTIONS(2433), - [aux_sym_cmd_identifier_token14] = ACTIONS(2433), - [aux_sym_cmd_identifier_token15] = ACTIONS(2433), - [aux_sym_cmd_identifier_token16] = ACTIONS(2435), - [aux_sym_cmd_identifier_token17] = ACTIONS(2435), - [aux_sym_cmd_identifier_token18] = ACTIONS(2435), - [aux_sym_cmd_identifier_token19] = ACTIONS(2435), - [aux_sym_cmd_identifier_token20] = ACTIONS(2435), - [aux_sym_cmd_identifier_token21] = ACTIONS(2435), - [aux_sym_cmd_identifier_token22] = ACTIONS(2435), - [aux_sym_cmd_identifier_token23] = ACTIONS(2435), - [aux_sym_cmd_identifier_token24] = ACTIONS(2435), - [aux_sym_cmd_identifier_token25] = ACTIONS(2435), - [aux_sym_cmd_identifier_token26] = ACTIONS(2435), - [aux_sym_cmd_identifier_token27] = ACTIONS(2435), - [aux_sym_cmd_identifier_token28] = ACTIONS(2435), - [aux_sym_cmd_identifier_token29] = ACTIONS(2435), - [aux_sym_cmd_identifier_token30] = ACTIONS(2435), - [aux_sym_cmd_identifier_token31] = ACTIONS(2435), - [aux_sym_cmd_identifier_token32] = ACTIONS(2435), - [aux_sym_cmd_identifier_token33] = ACTIONS(2435), - [aux_sym_cmd_identifier_token34] = ACTIONS(2433), - [aux_sym_cmd_identifier_token35] = ACTIONS(2435), - [aux_sym_cmd_identifier_token36] = ACTIONS(2435), - [aux_sym_cmd_identifier_token37] = ACTIONS(2435), - [aux_sym_cmd_identifier_token38] = ACTIONS(2433), - [aux_sym_cmd_identifier_token39] = ACTIONS(2435), - [aux_sym_cmd_identifier_token40] = ACTIONS(2435), - [anon_sym_def] = ACTIONS(2433), - [anon_sym_export_DASHenv] = ACTIONS(2433), - [anon_sym_extern] = ACTIONS(2433), - [anon_sym_module] = ACTIONS(2433), - [anon_sym_use] = ACTIONS(2433), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_DOLLAR] = ACTIONS(2435), - [anon_sym_error] = ACTIONS(2433), - [anon_sym_DASH2] = ACTIONS(2433), - [anon_sym_break] = ACTIONS(2433), - [anon_sym_continue] = ACTIONS(2433), - [anon_sym_for] = ACTIONS(2433), - [anon_sym_in2] = ACTIONS(2433), - [anon_sym_loop] = ACTIONS(2433), - [anon_sym_make] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2433), - [anon_sym_do] = ACTIONS(2433), - [anon_sym_if] = ACTIONS(2433), - [anon_sym_else] = ACTIONS(2433), - [anon_sym_match] = ACTIONS(2433), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_try] = ACTIONS(2433), - [anon_sym_catch] = ACTIONS(2433), - [anon_sym_return] = ACTIONS(2433), - [anon_sym_source] = ACTIONS(2433), - [anon_sym_source_DASHenv] = ACTIONS(2433), - [anon_sym_register] = ACTIONS(2433), - [anon_sym_hide] = ACTIONS(2433), - [anon_sym_hide_DASHenv] = ACTIONS(2433), - [anon_sym_overlay] = ACTIONS(2433), - [anon_sym_as] = ACTIONS(2433), - [anon_sym_PLUS2] = ACTIONS(2433), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2435), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2435), - [aux_sym__val_number_decimal_token1] = ACTIONS(2433), - [aux_sym__val_number_decimal_token2] = ACTIONS(2435), - [aux_sym__val_number_decimal_token3] = ACTIONS(2435), - [aux_sym__val_number_decimal_token4] = ACTIONS(2435), - [aux_sym__val_number_token1] = ACTIONS(2435), - [aux_sym__val_number_token2] = ACTIONS(2435), - [aux_sym__val_number_token3] = ACTIONS(2435), - [aux_sym__val_number_token4] = ACTIONS(2433), - [aux_sym__val_number_token5] = ACTIONS(2433), - [aux_sym__val_number_token6] = ACTIONS(2433), - [anon_sym_DQUOTE] = ACTIONS(2435), - [sym__str_single_quotes] = ACTIONS(2435), - [sym__str_back_ticks] = ACTIONS(2435), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2435), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2435), + [anon_sym_export] = ACTIONS(2444), + [anon_sym_alias] = ACTIONS(2444), + [anon_sym_let] = ACTIONS(2444), + [anon_sym_let_DASHenv] = ACTIONS(2444), + [anon_sym_mut] = ACTIONS(2444), + [anon_sym_const] = ACTIONS(2444), + [aux_sym_cmd_identifier_token1] = ACTIONS(2444), + [aux_sym_cmd_identifier_token2] = ACTIONS(2446), + [aux_sym_cmd_identifier_token3] = ACTIONS(2446), + [aux_sym_cmd_identifier_token4] = ACTIONS(2446), + [aux_sym_cmd_identifier_token5] = ACTIONS(2446), + [aux_sym_cmd_identifier_token6] = ACTIONS(2446), + [aux_sym_cmd_identifier_token7] = ACTIONS(2446), + [aux_sym_cmd_identifier_token8] = ACTIONS(2444), + [aux_sym_cmd_identifier_token9] = ACTIONS(2444), + [aux_sym_cmd_identifier_token10] = ACTIONS(2446), + [aux_sym_cmd_identifier_token11] = ACTIONS(2446), + [aux_sym_cmd_identifier_token12] = ACTIONS(2444), + [aux_sym_cmd_identifier_token13] = ACTIONS(2444), + [aux_sym_cmd_identifier_token14] = ACTIONS(2444), + [aux_sym_cmd_identifier_token15] = ACTIONS(2444), + [aux_sym_cmd_identifier_token16] = ACTIONS(2446), + [aux_sym_cmd_identifier_token17] = ACTIONS(2446), + [aux_sym_cmd_identifier_token18] = ACTIONS(2446), + [aux_sym_cmd_identifier_token19] = ACTIONS(2446), + [aux_sym_cmd_identifier_token20] = ACTIONS(2446), + [aux_sym_cmd_identifier_token21] = ACTIONS(2446), + [aux_sym_cmd_identifier_token22] = ACTIONS(2446), + [aux_sym_cmd_identifier_token23] = ACTIONS(2446), + [aux_sym_cmd_identifier_token24] = ACTIONS(2446), + [aux_sym_cmd_identifier_token25] = ACTIONS(2446), + [aux_sym_cmd_identifier_token26] = ACTIONS(2446), + [aux_sym_cmd_identifier_token27] = ACTIONS(2446), + [aux_sym_cmd_identifier_token28] = ACTIONS(2446), + [aux_sym_cmd_identifier_token29] = ACTIONS(2446), + [aux_sym_cmd_identifier_token30] = ACTIONS(2446), + [aux_sym_cmd_identifier_token31] = ACTIONS(2446), + [aux_sym_cmd_identifier_token32] = ACTIONS(2446), + [aux_sym_cmd_identifier_token33] = ACTIONS(2446), + [aux_sym_cmd_identifier_token34] = ACTIONS(2444), + [aux_sym_cmd_identifier_token35] = ACTIONS(2446), + [aux_sym_cmd_identifier_token36] = ACTIONS(2446), + [aux_sym_cmd_identifier_token37] = ACTIONS(2446), + [aux_sym_cmd_identifier_token38] = ACTIONS(2444), + [aux_sym_cmd_identifier_token39] = ACTIONS(2446), + [aux_sym_cmd_identifier_token40] = ACTIONS(2446), + [anon_sym_def] = ACTIONS(2444), + [anon_sym_export_DASHenv] = ACTIONS(2444), + [anon_sym_extern] = ACTIONS(2444), + [anon_sym_module] = ACTIONS(2444), + [anon_sym_use] = ACTIONS(2444), + [anon_sym_LPAREN] = ACTIONS(2446), + [anon_sym_DOLLAR] = ACTIONS(2446), + [anon_sym_error] = ACTIONS(2444), + [anon_sym_DASH2] = ACTIONS(2444), + [anon_sym_break] = ACTIONS(2444), + [anon_sym_continue] = ACTIONS(2444), + [anon_sym_for] = ACTIONS(2444), + [anon_sym_in2] = ACTIONS(2444), + [anon_sym_loop] = ACTIONS(2444), + [anon_sym_make] = ACTIONS(2444), + [anon_sym_while] = ACTIONS(2444), + [anon_sym_do] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2444), + [anon_sym_else] = ACTIONS(2444), + [anon_sym_match] = ACTIONS(2444), + [anon_sym_RBRACE] = ACTIONS(2446), + [anon_sym_try] = ACTIONS(2444), + [anon_sym_catch] = ACTIONS(2444), + [anon_sym_return] = ACTIONS(2444), + [anon_sym_source] = ACTIONS(2444), + [anon_sym_source_DASHenv] = ACTIONS(2444), + [anon_sym_register] = ACTIONS(2444), + [anon_sym_hide] = ACTIONS(2444), + [anon_sym_hide_DASHenv] = ACTIONS(2444), + [anon_sym_overlay] = ACTIONS(2444), + [anon_sym_as] = ACTIONS(2444), + [anon_sym_PLUS2] = ACTIONS(2444), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2446), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2446), + [aux_sym__val_number_decimal_token1] = ACTIONS(2444), + [aux_sym__val_number_decimal_token2] = ACTIONS(2446), + [aux_sym__val_number_decimal_token3] = ACTIONS(2446), + [aux_sym__val_number_decimal_token4] = ACTIONS(2446), + [aux_sym__val_number_token1] = ACTIONS(2446), + [aux_sym__val_number_token2] = ACTIONS(2446), + [aux_sym__val_number_token3] = ACTIONS(2446), + [aux_sym__val_number_token4] = ACTIONS(2444), + [aux_sym__val_number_token5] = ACTIONS(2444), + [aux_sym__val_number_token6] = ACTIONS(2444), + [anon_sym_DQUOTE] = ACTIONS(2446), + [sym__str_single_quotes] = ACTIONS(2446), + [sym__str_back_ticks] = ACTIONS(2446), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2446), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2446), }, [755] = { [sym_comment] = STATE(755), - [anon_sym_export] = ACTIONS(2441), - [anon_sym_alias] = ACTIONS(2441), - [anon_sym_let] = ACTIONS(2441), - [anon_sym_let_DASHenv] = ACTIONS(2441), - [anon_sym_mut] = ACTIONS(2441), - [anon_sym_const] = ACTIONS(2441), - [aux_sym_cmd_identifier_token1] = ACTIONS(2441), - [aux_sym_cmd_identifier_token2] = ACTIONS(2443), - [aux_sym_cmd_identifier_token3] = ACTIONS(2443), - [aux_sym_cmd_identifier_token4] = ACTIONS(2443), - [aux_sym_cmd_identifier_token5] = ACTIONS(2443), - [aux_sym_cmd_identifier_token6] = ACTIONS(2443), - [aux_sym_cmd_identifier_token7] = ACTIONS(2443), - [aux_sym_cmd_identifier_token8] = ACTIONS(2441), - [aux_sym_cmd_identifier_token9] = ACTIONS(2441), - [aux_sym_cmd_identifier_token10] = ACTIONS(2443), - [aux_sym_cmd_identifier_token11] = ACTIONS(2443), - [aux_sym_cmd_identifier_token12] = ACTIONS(2441), - [aux_sym_cmd_identifier_token13] = ACTIONS(2441), - [aux_sym_cmd_identifier_token14] = ACTIONS(2441), - [aux_sym_cmd_identifier_token15] = ACTIONS(2441), - [aux_sym_cmd_identifier_token16] = ACTIONS(2443), - [aux_sym_cmd_identifier_token17] = ACTIONS(2443), - [aux_sym_cmd_identifier_token18] = ACTIONS(2443), - [aux_sym_cmd_identifier_token19] = ACTIONS(2443), - [aux_sym_cmd_identifier_token20] = ACTIONS(2443), - [aux_sym_cmd_identifier_token21] = ACTIONS(2443), - [aux_sym_cmd_identifier_token22] = ACTIONS(2443), - [aux_sym_cmd_identifier_token23] = ACTIONS(2443), - [aux_sym_cmd_identifier_token24] = ACTIONS(2443), - [aux_sym_cmd_identifier_token25] = ACTIONS(2443), - [aux_sym_cmd_identifier_token26] = ACTIONS(2443), - [aux_sym_cmd_identifier_token27] = ACTIONS(2443), - [aux_sym_cmd_identifier_token28] = ACTIONS(2443), - [aux_sym_cmd_identifier_token29] = ACTIONS(2443), - [aux_sym_cmd_identifier_token30] = ACTIONS(2443), - [aux_sym_cmd_identifier_token31] = ACTIONS(2443), - [aux_sym_cmd_identifier_token32] = ACTIONS(2443), - [aux_sym_cmd_identifier_token33] = ACTIONS(2443), - [aux_sym_cmd_identifier_token34] = ACTIONS(2441), - [aux_sym_cmd_identifier_token35] = ACTIONS(2443), - [aux_sym_cmd_identifier_token36] = ACTIONS(2443), - [aux_sym_cmd_identifier_token37] = ACTIONS(2443), - [aux_sym_cmd_identifier_token38] = ACTIONS(2441), - [aux_sym_cmd_identifier_token39] = ACTIONS(2443), - [aux_sym_cmd_identifier_token40] = ACTIONS(2443), - [anon_sym_def] = ACTIONS(2441), - [anon_sym_export_DASHenv] = ACTIONS(2441), - [anon_sym_extern] = ACTIONS(2441), - [anon_sym_module] = ACTIONS(2441), - [anon_sym_use] = ACTIONS(2441), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_DOLLAR] = ACTIONS(2443), - [anon_sym_error] = ACTIONS(2441), - [anon_sym_DASH2] = ACTIONS(2441), - [anon_sym_break] = ACTIONS(2441), - [anon_sym_continue] = ACTIONS(2441), - [anon_sym_for] = ACTIONS(2441), - [anon_sym_in2] = ACTIONS(2441), - [anon_sym_loop] = ACTIONS(2441), - [anon_sym_make] = ACTIONS(2441), - [anon_sym_while] = ACTIONS(2441), - [anon_sym_do] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2441), - [anon_sym_else] = ACTIONS(2441), - [anon_sym_match] = ACTIONS(2441), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_try] = ACTIONS(2441), - [anon_sym_catch] = ACTIONS(2441), - [anon_sym_return] = ACTIONS(2441), - [anon_sym_source] = ACTIONS(2441), - [anon_sym_source_DASHenv] = ACTIONS(2441), - [anon_sym_register] = ACTIONS(2441), - [anon_sym_hide] = ACTIONS(2441), - [anon_sym_hide_DASHenv] = ACTIONS(2441), - [anon_sym_overlay] = ACTIONS(2441), - [anon_sym_as] = ACTIONS(2441), - [anon_sym_PLUS2] = ACTIONS(2441), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2443), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2443), - [aux_sym__val_number_decimal_token1] = ACTIONS(2441), - [aux_sym__val_number_decimal_token2] = ACTIONS(2443), - [aux_sym__val_number_decimal_token3] = ACTIONS(2443), - [aux_sym__val_number_decimal_token4] = ACTIONS(2443), - [aux_sym__val_number_token1] = ACTIONS(2443), - [aux_sym__val_number_token2] = ACTIONS(2443), - [aux_sym__val_number_token3] = ACTIONS(2443), - [aux_sym__val_number_token4] = ACTIONS(2441), - [aux_sym__val_number_token5] = ACTIONS(2441), - [aux_sym__val_number_token6] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2443), - [sym__str_single_quotes] = ACTIONS(2443), - [sym__str_back_ticks] = ACTIONS(2443), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2443), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2443), + [anon_sym_export] = ACTIONS(2118), + [anon_sym_alias] = ACTIONS(2118), + [anon_sym_let] = ACTIONS(2118), + [anon_sym_let_DASHenv] = ACTIONS(2118), + [anon_sym_mut] = ACTIONS(2118), + [anon_sym_const] = ACTIONS(2118), + [aux_sym_cmd_identifier_token1] = ACTIONS(2118), + [aux_sym_cmd_identifier_token2] = ACTIONS(2120), + [aux_sym_cmd_identifier_token3] = ACTIONS(2120), + [aux_sym_cmd_identifier_token4] = ACTIONS(2120), + [aux_sym_cmd_identifier_token5] = ACTIONS(2120), + [aux_sym_cmd_identifier_token6] = ACTIONS(2120), + [aux_sym_cmd_identifier_token7] = ACTIONS(2120), + [aux_sym_cmd_identifier_token8] = ACTIONS(2118), + [aux_sym_cmd_identifier_token9] = ACTIONS(2118), + [aux_sym_cmd_identifier_token10] = ACTIONS(2120), + [aux_sym_cmd_identifier_token11] = ACTIONS(2120), + [aux_sym_cmd_identifier_token12] = ACTIONS(2118), + [aux_sym_cmd_identifier_token13] = ACTIONS(2118), + [aux_sym_cmd_identifier_token14] = ACTIONS(2118), + [aux_sym_cmd_identifier_token15] = ACTIONS(2118), + [aux_sym_cmd_identifier_token16] = ACTIONS(2120), + [aux_sym_cmd_identifier_token17] = ACTIONS(2120), + [aux_sym_cmd_identifier_token18] = ACTIONS(2120), + [aux_sym_cmd_identifier_token19] = ACTIONS(2120), + [aux_sym_cmd_identifier_token20] = ACTIONS(2120), + [aux_sym_cmd_identifier_token21] = ACTIONS(2120), + [aux_sym_cmd_identifier_token22] = ACTIONS(2120), + [aux_sym_cmd_identifier_token23] = ACTIONS(2120), + [aux_sym_cmd_identifier_token24] = ACTIONS(2120), + [aux_sym_cmd_identifier_token25] = ACTIONS(2120), + [aux_sym_cmd_identifier_token26] = ACTIONS(2120), + [aux_sym_cmd_identifier_token27] = ACTIONS(2120), + [aux_sym_cmd_identifier_token28] = ACTIONS(2120), + [aux_sym_cmd_identifier_token29] = ACTIONS(2120), + [aux_sym_cmd_identifier_token30] = ACTIONS(2120), + [aux_sym_cmd_identifier_token31] = ACTIONS(2120), + [aux_sym_cmd_identifier_token32] = ACTIONS(2120), + [aux_sym_cmd_identifier_token33] = ACTIONS(2120), + [aux_sym_cmd_identifier_token34] = ACTIONS(2118), + [aux_sym_cmd_identifier_token35] = ACTIONS(2120), + [aux_sym_cmd_identifier_token36] = ACTIONS(2120), + [aux_sym_cmd_identifier_token37] = ACTIONS(2120), + [aux_sym_cmd_identifier_token38] = ACTIONS(2118), + [aux_sym_cmd_identifier_token39] = ACTIONS(2120), + [aux_sym_cmd_identifier_token40] = ACTIONS(2120), + [anon_sym_def] = ACTIONS(2118), + [anon_sym_export_DASHenv] = ACTIONS(2118), + [anon_sym_extern] = ACTIONS(2118), + [anon_sym_module] = ACTIONS(2118), + [anon_sym_use] = ACTIONS(2118), + [anon_sym_LPAREN] = ACTIONS(2120), + [anon_sym_DOLLAR] = ACTIONS(2120), + [anon_sym_error] = ACTIONS(2118), + [anon_sym_DASH2] = ACTIONS(2118), + [anon_sym_break] = ACTIONS(2118), + [anon_sym_continue] = ACTIONS(2118), + [anon_sym_for] = ACTIONS(2118), + [anon_sym_in2] = ACTIONS(2118), + [anon_sym_loop] = ACTIONS(2118), + [anon_sym_make] = ACTIONS(2118), + [anon_sym_while] = ACTIONS(2118), + [anon_sym_do] = ACTIONS(2118), + [anon_sym_if] = ACTIONS(2118), + [anon_sym_else] = ACTIONS(2118), + [anon_sym_match] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2120), + [anon_sym_try] = ACTIONS(2118), + [anon_sym_catch] = ACTIONS(2118), + [anon_sym_return] = ACTIONS(2118), + [anon_sym_source] = ACTIONS(2118), + [anon_sym_source_DASHenv] = ACTIONS(2118), + [anon_sym_register] = ACTIONS(2118), + [anon_sym_hide] = ACTIONS(2118), + [anon_sym_hide_DASHenv] = ACTIONS(2118), + [anon_sym_overlay] = ACTIONS(2118), + [anon_sym_as] = ACTIONS(2118), + [anon_sym_PLUS2] = ACTIONS(2118), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2120), + [aux_sym__val_number_decimal_token1] = ACTIONS(2118), + [aux_sym__val_number_decimal_token2] = ACTIONS(2120), + [aux_sym__val_number_decimal_token3] = ACTIONS(2120), + [aux_sym__val_number_decimal_token4] = ACTIONS(2120), + [aux_sym__val_number_token1] = ACTIONS(2120), + [aux_sym__val_number_token2] = ACTIONS(2120), + [aux_sym__val_number_token3] = ACTIONS(2120), + [aux_sym__val_number_token4] = ACTIONS(2118), + [aux_sym__val_number_token5] = ACTIONS(2118), + [aux_sym__val_number_token6] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2120), + [sym__str_single_quotes] = ACTIONS(2120), + [sym__str_back_ticks] = ACTIONS(2120), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2120), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2120), }, [756] = { [sym_comment] = STATE(756), - [anon_sym_export] = ACTIONS(1018), - [anon_sym_alias] = ACTIONS(1018), - [anon_sym_let] = ACTIONS(1018), - [anon_sym_let_DASHenv] = ACTIONS(1018), - [anon_sym_mut] = ACTIONS(1018), - [anon_sym_const] = ACTIONS(1018), - [aux_sym_cmd_identifier_token1] = ACTIONS(1018), - [aux_sym_cmd_identifier_token2] = ACTIONS(1020), - [aux_sym_cmd_identifier_token3] = ACTIONS(1020), - [aux_sym_cmd_identifier_token4] = ACTIONS(1020), - [aux_sym_cmd_identifier_token5] = ACTIONS(1020), - [aux_sym_cmd_identifier_token6] = ACTIONS(1020), - [aux_sym_cmd_identifier_token7] = ACTIONS(1020), - [aux_sym_cmd_identifier_token8] = ACTIONS(1018), - [aux_sym_cmd_identifier_token9] = ACTIONS(1018), - [aux_sym_cmd_identifier_token10] = ACTIONS(1020), - [aux_sym_cmd_identifier_token11] = ACTIONS(1020), - [aux_sym_cmd_identifier_token12] = ACTIONS(1018), - [aux_sym_cmd_identifier_token13] = ACTIONS(1018), - [aux_sym_cmd_identifier_token14] = ACTIONS(1018), - [aux_sym_cmd_identifier_token15] = ACTIONS(1018), - [aux_sym_cmd_identifier_token16] = ACTIONS(1020), - [aux_sym_cmd_identifier_token17] = ACTIONS(1020), - [aux_sym_cmd_identifier_token18] = ACTIONS(1020), - [aux_sym_cmd_identifier_token19] = ACTIONS(1020), - [aux_sym_cmd_identifier_token20] = ACTIONS(1020), - [aux_sym_cmd_identifier_token21] = ACTIONS(1020), - [aux_sym_cmd_identifier_token22] = ACTIONS(1020), - [aux_sym_cmd_identifier_token23] = ACTIONS(1020), - [aux_sym_cmd_identifier_token24] = ACTIONS(1020), - [aux_sym_cmd_identifier_token25] = ACTIONS(1020), - [aux_sym_cmd_identifier_token26] = ACTIONS(1020), - [aux_sym_cmd_identifier_token27] = ACTIONS(1020), - [aux_sym_cmd_identifier_token28] = ACTIONS(1020), - [aux_sym_cmd_identifier_token29] = ACTIONS(1020), - [aux_sym_cmd_identifier_token30] = ACTIONS(1020), - [aux_sym_cmd_identifier_token31] = ACTIONS(1020), - [aux_sym_cmd_identifier_token32] = ACTIONS(1020), - [aux_sym_cmd_identifier_token33] = ACTIONS(1020), - [aux_sym_cmd_identifier_token34] = ACTIONS(1018), - [aux_sym_cmd_identifier_token35] = ACTIONS(1020), - [aux_sym_cmd_identifier_token36] = ACTIONS(1020), - [aux_sym_cmd_identifier_token37] = ACTIONS(1020), - [aux_sym_cmd_identifier_token38] = ACTIONS(1018), - [aux_sym_cmd_identifier_token39] = ACTIONS(1020), - [aux_sym_cmd_identifier_token40] = ACTIONS(1020), - [anon_sym_def] = ACTIONS(1018), - [anon_sym_export_DASHenv] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(1018), - [anon_sym_module] = ACTIONS(1018), - [anon_sym_use] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_error] = ACTIONS(1018), - [anon_sym_DASH2] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1018), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_in2] = ACTIONS(1018), - [anon_sym_loop] = ACTIONS(1018), - [anon_sym_make] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1018), - [anon_sym_do] = ACTIONS(1018), - [anon_sym_if] = ACTIONS(1018), - [anon_sym_else] = ACTIONS(1018), - [anon_sym_match] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_try] = ACTIONS(1018), - [anon_sym_catch] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1018), - [anon_sym_source] = ACTIONS(1018), - [anon_sym_source_DASHenv] = ACTIONS(1018), - [anon_sym_register] = ACTIONS(1018), - [anon_sym_hide] = ACTIONS(1018), - [anon_sym_hide_DASHenv] = ACTIONS(1018), - [anon_sym_overlay] = ACTIONS(1018), - [anon_sym_as] = ACTIONS(1018), - [anon_sym_PLUS2] = ACTIONS(1018), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1020), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1020), - [aux_sym__val_number_decimal_token1] = ACTIONS(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1020), - [aux_sym__val_number_decimal_token3] = ACTIONS(1020), - [aux_sym__val_number_decimal_token4] = ACTIONS(1020), - [aux_sym__val_number_token1] = ACTIONS(1020), - [aux_sym__val_number_token2] = ACTIONS(1020), - [aux_sym__val_number_token3] = ACTIONS(1020), - [aux_sym__val_number_token4] = ACTIONS(1018), - [aux_sym__val_number_token5] = ACTIONS(1018), - [aux_sym__val_number_token6] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1020), - [sym__str_single_quotes] = ACTIONS(1020), - [sym__str_back_ticks] = ACTIONS(1020), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1020), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_alias] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_let_DASHenv] = ACTIONS(2183), + [anon_sym_mut] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [aux_sym_cmd_identifier_token1] = ACTIONS(2183), + [aux_sym_cmd_identifier_token2] = ACTIONS(2185), + [aux_sym_cmd_identifier_token3] = ACTIONS(2185), + [aux_sym_cmd_identifier_token4] = ACTIONS(2185), + [aux_sym_cmd_identifier_token5] = ACTIONS(2185), + [aux_sym_cmd_identifier_token6] = ACTIONS(2185), + [aux_sym_cmd_identifier_token7] = ACTIONS(2185), + [aux_sym_cmd_identifier_token8] = ACTIONS(2183), + [aux_sym_cmd_identifier_token9] = ACTIONS(2183), + [aux_sym_cmd_identifier_token10] = ACTIONS(2185), + [aux_sym_cmd_identifier_token11] = ACTIONS(2185), + [aux_sym_cmd_identifier_token12] = ACTIONS(2183), + [aux_sym_cmd_identifier_token13] = ACTIONS(2183), + [aux_sym_cmd_identifier_token14] = ACTIONS(2183), + [aux_sym_cmd_identifier_token15] = ACTIONS(2183), + [aux_sym_cmd_identifier_token16] = ACTIONS(2185), + [aux_sym_cmd_identifier_token17] = ACTIONS(2185), + [aux_sym_cmd_identifier_token18] = ACTIONS(2185), + [aux_sym_cmd_identifier_token19] = ACTIONS(2185), + [aux_sym_cmd_identifier_token20] = ACTIONS(2185), + [aux_sym_cmd_identifier_token21] = ACTIONS(2185), + [aux_sym_cmd_identifier_token22] = ACTIONS(2185), + [aux_sym_cmd_identifier_token23] = ACTIONS(2185), + [aux_sym_cmd_identifier_token24] = ACTIONS(2185), + [aux_sym_cmd_identifier_token25] = ACTIONS(2185), + [aux_sym_cmd_identifier_token26] = ACTIONS(2185), + [aux_sym_cmd_identifier_token27] = ACTIONS(2185), + [aux_sym_cmd_identifier_token28] = ACTIONS(2185), + [aux_sym_cmd_identifier_token29] = ACTIONS(2185), + [aux_sym_cmd_identifier_token30] = ACTIONS(2185), + [aux_sym_cmd_identifier_token31] = ACTIONS(2185), + [aux_sym_cmd_identifier_token32] = ACTIONS(2185), + [aux_sym_cmd_identifier_token33] = ACTIONS(2185), + [aux_sym_cmd_identifier_token34] = ACTIONS(2183), + [aux_sym_cmd_identifier_token35] = ACTIONS(2185), + [aux_sym_cmd_identifier_token36] = ACTIONS(2185), + [aux_sym_cmd_identifier_token37] = ACTIONS(2185), + [aux_sym_cmd_identifier_token38] = ACTIONS(2183), + [aux_sym_cmd_identifier_token39] = ACTIONS(2185), + [aux_sym_cmd_identifier_token40] = ACTIONS(2185), + [anon_sym_def] = ACTIONS(2183), + [anon_sym_export_DASHenv] = ACTIONS(2183), + [anon_sym_extern] = ACTIONS(2183), + [anon_sym_module] = ACTIONS(2183), + [anon_sym_use] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2185), + [anon_sym_error] = ACTIONS(2183), + [anon_sym_DASH2] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_in2] = ACTIONS(2183), + [anon_sym_loop] = ACTIONS(2183), + [anon_sym_make] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_else] = ACTIONS(2183), + [anon_sym_match] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2185), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_catch] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_source] = ACTIONS(2183), + [anon_sym_source_DASHenv] = ACTIONS(2183), + [anon_sym_register] = ACTIONS(2183), + [anon_sym_hide] = ACTIONS(2183), + [anon_sym_hide_DASHenv] = ACTIONS(2183), + [anon_sym_overlay] = ACTIONS(2183), + [anon_sym_as] = ACTIONS(2183), + [anon_sym_PLUS2] = ACTIONS(2183), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2185), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2185), + [aux_sym__val_number_decimal_token1] = ACTIONS(2183), + [aux_sym__val_number_decimal_token2] = ACTIONS(2185), + [aux_sym__val_number_decimal_token3] = ACTIONS(2185), + [aux_sym__val_number_decimal_token4] = ACTIONS(2185), + [aux_sym__val_number_token1] = ACTIONS(2185), + [aux_sym__val_number_token2] = ACTIONS(2185), + [aux_sym__val_number_token3] = ACTIONS(2185), + [aux_sym__val_number_token4] = ACTIONS(2183), + [aux_sym__val_number_token5] = ACTIONS(2183), + [aux_sym__val_number_token6] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2185), + [sym__str_single_quotes] = ACTIONS(2185), + [sym__str_back_ticks] = ACTIONS(2185), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2185), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1020), + [sym_raw_string_begin] = ACTIONS(2185), }, [757] = { [sym_comment] = STATE(757), - [anon_sym_export] = ACTIONS(2159), - [anon_sym_alias] = ACTIONS(2159), - [anon_sym_let] = ACTIONS(2159), - [anon_sym_let_DASHenv] = ACTIONS(2159), - [anon_sym_mut] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [aux_sym_cmd_identifier_token1] = ACTIONS(2159), - [aux_sym_cmd_identifier_token2] = ACTIONS(2165), - [aux_sym_cmd_identifier_token3] = ACTIONS(2165), - [aux_sym_cmd_identifier_token4] = ACTIONS(2165), - [aux_sym_cmd_identifier_token5] = ACTIONS(2165), - [aux_sym_cmd_identifier_token6] = ACTIONS(2165), - [aux_sym_cmd_identifier_token7] = ACTIONS(2165), - [aux_sym_cmd_identifier_token8] = ACTIONS(2159), - [aux_sym_cmd_identifier_token9] = ACTIONS(2159), - [aux_sym_cmd_identifier_token10] = ACTIONS(2165), - [aux_sym_cmd_identifier_token11] = ACTIONS(2165), - [aux_sym_cmd_identifier_token12] = ACTIONS(2159), - [aux_sym_cmd_identifier_token13] = ACTIONS(2159), - [aux_sym_cmd_identifier_token14] = ACTIONS(2159), - [aux_sym_cmd_identifier_token15] = ACTIONS(2159), - [aux_sym_cmd_identifier_token16] = ACTIONS(2165), - [aux_sym_cmd_identifier_token17] = ACTIONS(2165), - [aux_sym_cmd_identifier_token18] = ACTIONS(2165), - [aux_sym_cmd_identifier_token19] = ACTIONS(2165), - [aux_sym_cmd_identifier_token20] = ACTIONS(2165), - [aux_sym_cmd_identifier_token21] = ACTIONS(2165), - [aux_sym_cmd_identifier_token22] = ACTIONS(2165), - [aux_sym_cmd_identifier_token23] = ACTIONS(2165), - [aux_sym_cmd_identifier_token24] = ACTIONS(2165), - [aux_sym_cmd_identifier_token25] = ACTIONS(2165), - [aux_sym_cmd_identifier_token26] = ACTIONS(2165), - [aux_sym_cmd_identifier_token27] = ACTIONS(2165), - [aux_sym_cmd_identifier_token28] = ACTIONS(2165), - [aux_sym_cmd_identifier_token29] = ACTIONS(2165), - [aux_sym_cmd_identifier_token30] = ACTIONS(2165), - [aux_sym_cmd_identifier_token31] = ACTIONS(2165), - [aux_sym_cmd_identifier_token32] = ACTIONS(2165), - [aux_sym_cmd_identifier_token33] = ACTIONS(2165), - [aux_sym_cmd_identifier_token34] = ACTIONS(2159), - [aux_sym_cmd_identifier_token35] = ACTIONS(2165), - [aux_sym_cmd_identifier_token36] = ACTIONS(2165), - [aux_sym_cmd_identifier_token37] = ACTIONS(2165), - [aux_sym_cmd_identifier_token38] = ACTIONS(2159), - [aux_sym_cmd_identifier_token39] = ACTIONS(2165), - [aux_sym_cmd_identifier_token40] = ACTIONS(2165), - [anon_sym_def] = ACTIONS(2159), - [anon_sym_export_DASHenv] = ACTIONS(2159), - [anon_sym_extern] = ACTIONS(2159), - [anon_sym_module] = ACTIONS(2159), - [anon_sym_use] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2165), - [anon_sym_DOLLAR] = ACTIONS(2165), - [anon_sym_error] = ACTIONS(2159), - [anon_sym_DASH2] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_in2] = ACTIONS(2159), - [anon_sym_loop] = ACTIONS(2159), - [anon_sym_make] = ACTIONS(2159), - [anon_sym_while] = ACTIONS(2159), - [anon_sym_do] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_else] = ACTIONS(2159), - [anon_sym_match] = ACTIONS(2159), - [anon_sym_RBRACE] = ACTIONS(2165), - [anon_sym_try] = ACTIONS(2159), - [anon_sym_catch] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_source] = ACTIONS(2159), - [anon_sym_source_DASHenv] = ACTIONS(2159), - [anon_sym_register] = ACTIONS(2159), - [anon_sym_hide] = ACTIONS(2159), - [anon_sym_hide_DASHenv] = ACTIONS(2159), - [anon_sym_overlay] = ACTIONS(2159), - [anon_sym_as] = ACTIONS(2159), - [anon_sym_PLUS2] = ACTIONS(2159), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2165), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2165), - [aux_sym__val_number_decimal_token1] = ACTIONS(2159), - [aux_sym__val_number_decimal_token2] = ACTIONS(2165), - [aux_sym__val_number_decimal_token3] = ACTIONS(2165), - [aux_sym__val_number_decimal_token4] = ACTIONS(2165), - [aux_sym__val_number_token1] = ACTIONS(2165), - [aux_sym__val_number_token2] = ACTIONS(2165), - [aux_sym__val_number_token3] = ACTIONS(2165), - [aux_sym__val_number_token4] = ACTIONS(2159), - [aux_sym__val_number_token5] = ACTIONS(2159), - [aux_sym__val_number_token6] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(2165), - [sym__str_single_quotes] = ACTIONS(2165), - [sym__str_back_ticks] = ACTIONS(2165), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2165), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2165), + [anon_sym_export] = ACTIONS(1044), + [anon_sym_alias] = ACTIONS(1044), + [anon_sym_let] = ACTIONS(1044), + [anon_sym_let_DASHenv] = ACTIONS(1044), + [anon_sym_mut] = ACTIONS(1044), + [anon_sym_const] = ACTIONS(1044), + [aux_sym_cmd_identifier_token1] = ACTIONS(1044), + [aux_sym_cmd_identifier_token2] = ACTIONS(1046), + [aux_sym_cmd_identifier_token3] = ACTIONS(1046), + [aux_sym_cmd_identifier_token4] = ACTIONS(1046), + [aux_sym_cmd_identifier_token5] = ACTIONS(1046), + [aux_sym_cmd_identifier_token6] = ACTIONS(1046), + [aux_sym_cmd_identifier_token7] = ACTIONS(1046), + [aux_sym_cmd_identifier_token8] = ACTIONS(1044), + [aux_sym_cmd_identifier_token9] = ACTIONS(1044), + [aux_sym_cmd_identifier_token10] = ACTIONS(1046), + [aux_sym_cmd_identifier_token11] = ACTIONS(1046), + [aux_sym_cmd_identifier_token12] = ACTIONS(1044), + [aux_sym_cmd_identifier_token13] = ACTIONS(1044), + [aux_sym_cmd_identifier_token14] = ACTIONS(1044), + [aux_sym_cmd_identifier_token15] = ACTIONS(1044), + [aux_sym_cmd_identifier_token16] = ACTIONS(1046), + [aux_sym_cmd_identifier_token17] = ACTIONS(1046), + [aux_sym_cmd_identifier_token18] = ACTIONS(1046), + [aux_sym_cmd_identifier_token19] = ACTIONS(1046), + [aux_sym_cmd_identifier_token20] = ACTIONS(1046), + [aux_sym_cmd_identifier_token21] = ACTIONS(1046), + [aux_sym_cmd_identifier_token22] = ACTIONS(1046), + [aux_sym_cmd_identifier_token23] = ACTIONS(1046), + [aux_sym_cmd_identifier_token24] = ACTIONS(1046), + [aux_sym_cmd_identifier_token25] = ACTIONS(1046), + [aux_sym_cmd_identifier_token26] = ACTIONS(1046), + [aux_sym_cmd_identifier_token27] = ACTIONS(1046), + [aux_sym_cmd_identifier_token28] = ACTIONS(1046), + [aux_sym_cmd_identifier_token29] = ACTIONS(1046), + [aux_sym_cmd_identifier_token30] = ACTIONS(1046), + [aux_sym_cmd_identifier_token31] = ACTIONS(1046), + [aux_sym_cmd_identifier_token32] = ACTIONS(1046), + [aux_sym_cmd_identifier_token33] = ACTIONS(1046), + [aux_sym_cmd_identifier_token34] = ACTIONS(1044), + [aux_sym_cmd_identifier_token35] = ACTIONS(1046), + [aux_sym_cmd_identifier_token36] = ACTIONS(1046), + [aux_sym_cmd_identifier_token37] = ACTIONS(1046), + [aux_sym_cmd_identifier_token38] = ACTIONS(1044), + [aux_sym_cmd_identifier_token39] = ACTIONS(1046), + [aux_sym_cmd_identifier_token40] = ACTIONS(1046), + [anon_sym_def] = ACTIONS(1044), + [anon_sym_export_DASHenv] = ACTIONS(1044), + [anon_sym_extern] = ACTIONS(1044), + [anon_sym_module] = ACTIONS(1044), + [anon_sym_use] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_DOLLAR] = ACTIONS(1046), + [anon_sym_error] = ACTIONS(1044), + [anon_sym_DASH2] = ACTIONS(1044), + [anon_sym_break] = ACTIONS(1044), + [anon_sym_continue] = ACTIONS(1044), + [anon_sym_for] = ACTIONS(1044), + [anon_sym_in2] = ACTIONS(1044), + [anon_sym_loop] = ACTIONS(1044), + [anon_sym_make] = ACTIONS(1044), + [anon_sym_while] = ACTIONS(1044), + [anon_sym_do] = ACTIONS(1044), + [anon_sym_if] = ACTIONS(1044), + [anon_sym_else] = ACTIONS(1044), + [anon_sym_match] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_try] = ACTIONS(1044), + [anon_sym_catch] = ACTIONS(1044), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_source] = ACTIONS(1044), + [anon_sym_source_DASHenv] = ACTIONS(1044), + [anon_sym_register] = ACTIONS(1044), + [anon_sym_hide] = ACTIONS(1044), + [anon_sym_hide_DASHenv] = ACTIONS(1044), + [anon_sym_overlay] = ACTIONS(1044), + [anon_sym_as] = ACTIONS(1044), + [anon_sym_PLUS2] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1046), + [aux_sym__val_number_decimal_token1] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1046), + [aux_sym__val_number_decimal_token3] = ACTIONS(1046), + [aux_sym__val_number_decimal_token4] = ACTIONS(1046), + [aux_sym__val_number_token1] = ACTIONS(1046), + [aux_sym__val_number_token2] = ACTIONS(1046), + [aux_sym__val_number_token3] = ACTIONS(1046), + [aux_sym__val_number_token4] = ACTIONS(1044), + [aux_sym__val_number_token5] = ACTIONS(1044), + [aux_sym__val_number_token6] = ACTIONS(1044), + [anon_sym_DQUOTE] = ACTIONS(1046), + [sym__str_single_quotes] = ACTIONS(1046), + [sym__str_back_ticks] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1046), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1046), }, [758] = { [sym_comment] = STATE(758), - [anon_sym_export] = ACTIONS(1030), - [anon_sym_alias] = ACTIONS(1030), - [anon_sym_let] = ACTIONS(1030), - [anon_sym_let_DASHenv] = ACTIONS(1030), - [anon_sym_mut] = ACTIONS(1030), - [anon_sym_const] = ACTIONS(1030), - [aux_sym_cmd_identifier_token1] = ACTIONS(1030), - [aux_sym_cmd_identifier_token2] = ACTIONS(1032), - [aux_sym_cmd_identifier_token3] = ACTIONS(1032), - [aux_sym_cmd_identifier_token4] = ACTIONS(1032), - [aux_sym_cmd_identifier_token5] = ACTIONS(1032), - [aux_sym_cmd_identifier_token6] = ACTIONS(1032), - [aux_sym_cmd_identifier_token7] = ACTIONS(1032), - [aux_sym_cmd_identifier_token8] = ACTIONS(1030), - [aux_sym_cmd_identifier_token9] = ACTIONS(1030), - [aux_sym_cmd_identifier_token10] = ACTIONS(1032), - [aux_sym_cmd_identifier_token11] = ACTIONS(1032), - [aux_sym_cmd_identifier_token12] = ACTIONS(1030), - [aux_sym_cmd_identifier_token13] = ACTIONS(1030), - [aux_sym_cmd_identifier_token14] = ACTIONS(1030), - [aux_sym_cmd_identifier_token15] = ACTIONS(1030), - [aux_sym_cmd_identifier_token16] = ACTIONS(1032), - [aux_sym_cmd_identifier_token17] = ACTIONS(1032), - [aux_sym_cmd_identifier_token18] = ACTIONS(1032), - [aux_sym_cmd_identifier_token19] = ACTIONS(1032), - [aux_sym_cmd_identifier_token20] = ACTIONS(1032), - [aux_sym_cmd_identifier_token21] = ACTIONS(1032), - [aux_sym_cmd_identifier_token22] = ACTIONS(1032), - [aux_sym_cmd_identifier_token23] = ACTIONS(1032), - [aux_sym_cmd_identifier_token24] = ACTIONS(1032), - [aux_sym_cmd_identifier_token25] = ACTIONS(1032), - [aux_sym_cmd_identifier_token26] = ACTIONS(1032), - [aux_sym_cmd_identifier_token27] = ACTIONS(1032), - [aux_sym_cmd_identifier_token28] = ACTIONS(1032), - [aux_sym_cmd_identifier_token29] = ACTIONS(1032), - [aux_sym_cmd_identifier_token30] = ACTIONS(1032), - [aux_sym_cmd_identifier_token31] = ACTIONS(1032), - [aux_sym_cmd_identifier_token32] = ACTIONS(1032), - [aux_sym_cmd_identifier_token33] = ACTIONS(1032), - [aux_sym_cmd_identifier_token34] = ACTIONS(1030), - [aux_sym_cmd_identifier_token35] = ACTIONS(1032), - [aux_sym_cmd_identifier_token36] = ACTIONS(1032), - [aux_sym_cmd_identifier_token37] = ACTIONS(1032), - [aux_sym_cmd_identifier_token38] = ACTIONS(1030), - [aux_sym_cmd_identifier_token39] = ACTIONS(1032), - [aux_sym_cmd_identifier_token40] = ACTIONS(1032), - [anon_sym_def] = ACTIONS(1030), - [anon_sym_export_DASHenv] = ACTIONS(1030), - [anon_sym_extern] = ACTIONS(1030), - [anon_sym_module] = ACTIONS(1030), - [anon_sym_use] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_error] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(1030), - [anon_sym_break] = ACTIONS(1030), - [anon_sym_continue] = ACTIONS(1030), - [anon_sym_for] = ACTIONS(1030), - [anon_sym_in2] = ACTIONS(1030), - [anon_sym_loop] = ACTIONS(1030), - [anon_sym_make] = ACTIONS(1030), - [anon_sym_while] = ACTIONS(1030), - [anon_sym_do] = ACTIONS(1030), - [anon_sym_if] = ACTIONS(1030), - [anon_sym_else] = ACTIONS(1030), - [anon_sym_match] = ACTIONS(1030), - [anon_sym_RBRACE] = ACTIONS(1032), - [anon_sym_try] = ACTIONS(1030), - [anon_sym_catch] = ACTIONS(1030), - [anon_sym_return] = ACTIONS(1030), - [anon_sym_source] = ACTIONS(1030), - [anon_sym_source_DASHenv] = ACTIONS(1030), - [anon_sym_register] = ACTIONS(1030), - [anon_sym_hide] = ACTIONS(1030), - [anon_sym_hide_DASHenv] = ACTIONS(1030), - [anon_sym_overlay] = ACTIONS(1030), - [anon_sym_as] = ACTIONS(1030), - [anon_sym_PLUS2] = ACTIONS(1030), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1032), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1032), - [aux_sym__val_number_decimal_token1] = ACTIONS(1030), - [aux_sym__val_number_decimal_token2] = ACTIONS(1032), - [aux_sym__val_number_decimal_token3] = ACTIONS(1032), - [aux_sym__val_number_decimal_token4] = ACTIONS(1032), - [aux_sym__val_number_token1] = ACTIONS(1032), - [aux_sym__val_number_token2] = ACTIONS(1032), - [aux_sym__val_number_token3] = ACTIONS(1032), - [aux_sym__val_number_token4] = ACTIONS(1030), - [aux_sym__val_number_token5] = ACTIONS(1030), - [aux_sym__val_number_token6] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1032), - [sym__str_single_quotes] = ACTIONS(1032), - [sym__str_back_ticks] = ACTIONS(1032), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1032), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1032), - }, - [759] = { - [sym_comment] = STATE(759), - [anon_sym_export] = ACTIONS(2090), - [anon_sym_alias] = ACTIONS(2090), - [anon_sym_let] = ACTIONS(2090), - [anon_sym_let_DASHenv] = ACTIONS(2090), - [anon_sym_mut] = ACTIONS(2090), - [anon_sym_const] = ACTIONS(2090), - [aux_sym_cmd_identifier_token1] = ACTIONS(2090), - [aux_sym_cmd_identifier_token2] = ACTIONS(2092), - [aux_sym_cmd_identifier_token3] = ACTIONS(2092), - [aux_sym_cmd_identifier_token4] = ACTIONS(2092), - [aux_sym_cmd_identifier_token5] = ACTIONS(2092), - [aux_sym_cmd_identifier_token6] = ACTIONS(2092), - [aux_sym_cmd_identifier_token7] = ACTIONS(2092), - [aux_sym_cmd_identifier_token8] = ACTIONS(2090), - [aux_sym_cmd_identifier_token9] = ACTIONS(2090), - [aux_sym_cmd_identifier_token10] = ACTIONS(2092), - [aux_sym_cmd_identifier_token11] = ACTIONS(2092), - [aux_sym_cmd_identifier_token12] = ACTIONS(2090), - [aux_sym_cmd_identifier_token13] = ACTIONS(2090), - [aux_sym_cmd_identifier_token14] = ACTIONS(2090), - [aux_sym_cmd_identifier_token15] = ACTIONS(2090), - [aux_sym_cmd_identifier_token16] = ACTIONS(2092), - [aux_sym_cmd_identifier_token17] = ACTIONS(2092), - [aux_sym_cmd_identifier_token18] = ACTIONS(2092), - [aux_sym_cmd_identifier_token19] = ACTIONS(2092), - [aux_sym_cmd_identifier_token20] = ACTIONS(2092), - [aux_sym_cmd_identifier_token21] = ACTIONS(2092), - [aux_sym_cmd_identifier_token22] = ACTIONS(2092), - [aux_sym_cmd_identifier_token23] = ACTIONS(2092), - [aux_sym_cmd_identifier_token24] = ACTIONS(2092), - [aux_sym_cmd_identifier_token25] = ACTIONS(2092), - [aux_sym_cmd_identifier_token26] = ACTIONS(2092), - [aux_sym_cmd_identifier_token27] = ACTIONS(2092), - [aux_sym_cmd_identifier_token28] = ACTIONS(2092), - [aux_sym_cmd_identifier_token29] = ACTIONS(2092), - [aux_sym_cmd_identifier_token30] = ACTIONS(2092), - [aux_sym_cmd_identifier_token31] = ACTIONS(2092), - [aux_sym_cmd_identifier_token32] = ACTIONS(2092), - [aux_sym_cmd_identifier_token33] = ACTIONS(2092), - [aux_sym_cmd_identifier_token34] = ACTIONS(2090), - [aux_sym_cmd_identifier_token35] = ACTIONS(2092), - [aux_sym_cmd_identifier_token36] = ACTIONS(2092), - [aux_sym_cmd_identifier_token37] = ACTIONS(2092), - [aux_sym_cmd_identifier_token38] = ACTIONS(2090), - [aux_sym_cmd_identifier_token39] = ACTIONS(2092), - [aux_sym_cmd_identifier_token40] = ACTIONS(2092), - [anon_sym_def] = ACTIONS(2090), - [anon_sym_export_DASHenv] = ACTIONS(2090), - [anon_sym_extern] = ACTIONS(2090), - [anon_sym_module] = ACTIONS(2090), - [anon_sym_use] = ACTIONS(2090), - [anon_sym_LPAREN] = ACTIONS(2092), - [anon_sym_DOLLAR] = ACTIONS(2092), - [anon_sym_error] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2090), - [anon_sym_break] = ACTIONS(2090), - [anon_sym_continue] = ACTIONS(2090), - [anon_sym_for] = ACTIONS(2090), - [anon_sym_in2] = ACTIONS(2090), - [anon_sym_loop] = ACTIONS(2090), - [anon_sym_make] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2090), - [anon_sym_do] = ACTIONS(2090), - [anon_sym_if] = ACTIONS(2090), - [anon_sym_else] = ACTIONS(2090), - [anon_sym_match] = ACTIONS(2090), - [anon_sym_RBRACE] = ACTIONS(2092), - [anon_sym_try] = ACTIONS(2090), - [anon_sym_catch] = ACTIONS(2090), - [anon_sym_return] = ACTIONS(2090), - [anon_sym_source] = ACTIONS(2090), - [anon_sym_source_DASHenv] = ACTIONS(2090), - [anon_sym_register] = ACTIONS(2090), - [anon_sym_hide] = ACTIONS(2090), - [anon_sym_hide_DASHenv] = ACTIONS(2090), - [anon_sym_overlay] = ACTIONS(2090), - [anon_sym_as] = ACTIONS(2090), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2092), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2092), - [aux_sym__val_number_decimal_token1] = ACTIONS(2090), - [aux_sym__val_number_decimal_token2] = ACTIONS(2092), - [aux_sym__val_number_decimal_token3] = ACTIONS(2092), - [aux_sym__val_number_decimal_token4] = ACTIONS(2092), - [aux_sym__val_number_token1] = ACTIONS(2092), - [aux_sym__val_number_token2] = ACTIONS(2092), - [aux_sym__val_number_token3] = ACTIONS(2092), - [aux_sym__val_number_token4] = ACTIONS(2090), - [aux_sym__val_number_token5] = ACTIONS(2090), - [aux_sym__val_number_token6] = ACTIONS(2090), - [anon_sym_DQUOTE] = ACTIONS(2092), - [sym__str_single_quotes] = ACTIONS(2092), - [sym__str_back_ticks] = ACTIONS(2092), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2092), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2092), - }, - [760] = { - [sym_comment] = STATE(760), - [anon_sym_export] = ACTIONS(2383), - [anon_sym_alias] = ACTIONS(2383), - [anon_sym_let] = ACTIONS(2383), - [anon_sym_let_DASHenv] = ACTIONS(2383), - [anon_sym_mut] = ACTIONS(2383), - [anon_sym_const] = ACTIONS(2383), - [aux_sym_cmd_identifier_token1] = ACTIONS(2383), - [aux_sym_cmd_identifier_token2] = ACTIONS(2385), - [aux_sym_cmd_identifier_token3] = ACTIONS(2385), - [aux_sym_cmd_identifier_token4] = ACTIONS(2385), - [aux_sym_cmd_identifier_token5] = ACTIONS(2385), - [aux_sym_cmd_identifier_token6] = ACTIONS(2385), - [aux_sym_cmd_identifier_token7] = ACTIONS(2385), - [aux_sym_cmd_identifier_token8] = ACTIONS(2383), - [aux_sym_cmd_identifier_token9] = ACTIONS(2383), - [aux_sym_cmd_identifier_token10] = ACTIONS(2385), - [aux_sym_cmd_identifier_token11] = ACTIONS(2385), - [aux_sym_cmd_identifier_token12] = ACTIONS(2383), - [aux_sym_cmd_identifier_token13] = ACTIONS(2383), - [aux_sym_cmd_identifier_token14] = ACTIONS(2383), - [aux_sym_cmd_identifier_token15] = ACTIONS(2383), - [aux_sym_cmd_identifier_token16] = ACTIONS(2385), - [aux_sym_cmd_identifier_token17] = ACTIONS(2385), - [aux_sym_cmd_identifier_token18] = ACTIONS(2385), - [aux_sym_cmd_identifier_token19] = ACTIONS(2385), - [aux_sym_cmd_identifier_token20] = ACTIONS(2385), - [aux_sym_cmd_identifier_token21] = ACTIONS(2385), - [aux_sym_cmd_identifier_token22] = ACTIONS(2385), - [aux_sym_cmd_identifier_token23] = ACTIONS(2385), - [aux_sym_cmd_identifier_token24] = ACTIONS(2385), - [aux_sym_cmd_identifier_token25] = ACTIONS(2385), - [aux_sym_cmd_identifier_token26] = ACTIONS(2385), - [aux_sym_cmd_identifier_token27] = ACTIONS(2385), - [aux_sym_cmd_identifier_token28] = ACTIONS(2385), - [aux_sym_cmd_identifier_token29] = ACTIONS(2385), - [aux_sym_cmd_identifier_token30] = ACTIONS(2385), - [aux_sym_cmd_identifier_token31] = ACTIONS(2385), - [aux_sym_cmd_identifier_token32] = ACTIONS(2385), - [aux_sym_cmd_identifier_token33] = ACTIONS(2385), - [aux_sym_cmd_identifier_token34] = ACTIONS(2383), - [aux_sym_cmd_identifier_token35] = ACTIONS(2385), - [aux_sym_cmd_identifier_token36] = ACTIONS(2385), - [aux_sym_cmd_identifier_token37] = ACTIONS(2385), - [aux_sym_cmd_identifier_token38] = ACTIONS(2383), - [aux_sym_cmd_identifier_token39] = ACTIONS(2385), - [aux_sym_cmd_identifier_token40] = ACTIONS(2385), - [anon_sym_def] = ACTIONS(2383), - [anon_sym_export_DASHenv] = ACTIONS(2383), - [anon_sym_extern] = ACTIONS(2383), - [anon_sym_module] = ACTIONS(2383), - [anon_sym_use] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_DOLLAR] = ACTIONS(2385), - [anon_sym_error] = ACTIONS(2383), - [anon_sym_DASH2] = ACTIONS(2383), - [anon_sym_break] = ACTIONS(2383), - [anon_sym_continue] = ACTIONS(2383), - [anon_sym_for] = ACTIONS(2383), - [anon_sym_in2] = ACTIONS(2383), - [anon_sym_loop] = ACTIONS(2383), - [anon_sym_make] = ACTIONS(2383), - [anon_sym_while] = ACTIONS(2383), - [anon_sym_do] = ACTIONS(2383), - [anon_sym_if] = ACTIONS(2383), - [anon_sym_else] = ACTIONS(2383), - [anon_sym_match] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2385), - [anon_sym_try] = ACTIONS(2383), - [anon_sym_catch] = ACTIONS(2383), - [anon_sym_return] = ACTIONS(2383), - [anon_sym_source] = ACTIONS(2383), - [anon_sym_source_DASHenv] = ACTIONS(2383), - [anon_sym_register] = ACTIONS(2383), - [anon_sym_hide] = ACTIONS(2383), - [anon_sym_hide_DASHenv] = ACTIONS(2383), - [anon_sym_overlay] = ACTIONS(2383), - [anon_sym_as] = ACTIONS(2383), - [anon_sym_PLUS2] = ACTIONS(2383), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2385), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2385), - [aux_sym__val_number_decimal_token1] = ACTIONS(2383), - [aux_sym__val_number_decimal_token2] = ACTIONS(2385), - [aux_sym__val_number_decimal_token3] = ACTIONS(2385), - [aux_sym__val_number_decimal_token4] = ACTIONS(2385), - [aux_sym__val_number_token1] = ACTIONS(2385), - [aux_sym__val_number_token2] = ACTIONS(2385), - [aux_sym__val_number_token3] = ACTIONS(2385), - [aux_sym__val_number_token4] = ACTIONS(2383), - [aux_sym__val_number_token5] = ACTIONS(2383), - [aux_sym__val_number_token6] = ACTIONS(2383), - [anon_sym_DQUOTE] = ACTIONS(2385), - [sym__str_single_quotes] = ACTIONS(2385), - [sym__str_back_ticks] = ACTIONS(2385), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2385), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2385), - }, - [761] = { - [sym_comment] = STATE(761), - [anon_sym_export] = ACTIONS(2395), - [anon_sym_alias] = ACTIONS(2395), - [anon_sym_let] = ACTIONS(2395), - [anon_sym_let_DASHenv] = ACTIONS(2395), - [anon_sym_mut] = ACTIONS(2395), - [anon_sym_const] = ACTIONS(2395), - [aux_sym_cmd_identifier_token1] = ACTIONS(2395), - [aux_sym_cmd_identifier_token2] = ACTIONS(2397), - [aux_sym_cmd_identifier_token3] = ACTIONS(2397), - [aux_sym_cmd_identifier_token4] = ACTIONS(2397), - [aux_sym_cmd_identifier_token5] = ACTIONS(2397), - [aux_sym_cmd_identifier_token6] = ACTIONS(2397), - [aux_sym_cmd_identifier_token7] = ACTIONS(2397), - [aux_sym_cmd_identifier_token8] = ACTIONS(2395), - [aux_sym_cmd_identifier_token9] = ACTIONS(2395), - [aux_sym_cmd_identifier_token10] = ACTIONS(2397), - [aux_sym_cmd_identifier_token11] = ACTIONS(2397), - [aux_sym_cmd_identifier_token12] = ACTIONS(2395), - [aux_sym_cmd_identifier_token13] = ACTIONS(2395), - [aux_sym_cmd_identifier_token14] = ACTIONS(2395), - [aux_sym_cmd_identifier_token15] = ACTIONS(2395), - [aux_sym_cmd_identifier_token16] = ACTIONS(2397), - [aux_sym_cmd_identifier_token17] = ACTIONS(2397), - [aux_sym_cmd_identifier_token18] = ACTIONS(2397), - [aux_sym_cmd_identifier_token19] = ACTIONS(2397), - [aux_sym_cmd_identifier_token20] = ACTIONS(2397), - [aux_sym_cmd_identifier_token21] = ACTIONS(2397), - [aux_sym_cmd_identifier_token22] = ACTIONS(2397), - [aux_sym_cmd_identifier_token23] = ACTIONS(2397), - [aux_sym_cmd_identifier_token24] = ACTIONS(2397), - [aux_sym_cmd_identifier_token25] = ACTIONS(2397), - [aux_sym_cmd_identifier_token26] = ACTIONS(2397), - [aux_sym_cmd_identifier_token27] = ACTIONS(2397), - [aux_sym_cmd_identifier_token28] = ACTIONS(2397), - [aux_sym_cmd_identifier_token29] = ACTIONS(2397), - [aux_sym_cmd_identifier_token30] = ACTIONS(2397), - [aux_sym_cmd_identifier_token31] = ACTIONS(2397), - [aux_sym_cmd_identifier_token32] = ACTIONS(2397), - [aux_sym_cmd_identifier_token33] = ACTIONS(2397), - [aux_sym_cmd_identifier_token34] = ACTIONS(2395), - [aux_sym_cmd_identifier_token35] = ACTIONS(2397), - [aux_sym_cmd_identifier_token36] = ACTIONS(2397), - [aux_sym_cmd_identifier_token37] = ACTIONS(2397), - [aux_sym_cmd_identifier_token38] = ACTIONS(2395), - [aux_sym_cmd_identifier_token39] = ACTIONS(2397), - [aux_sym_cmd_identifier_token40] = ACTIONS(2397), - [anon_sym_def] = ACTIONS(2395), - [anon_sym_export_DASHenv] = ACTIONS(2395), - [anon_sym_extern] = ACTIONS(2395), - [anon_sym_module] = ACTIONS(2395), - [anon_sym_use] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2397), - [anon_sym_DOLLAR] = ACTIONS(2397), - [anon_sym_error] = ACTIONS(2395), - [anon_sym_DASH2] = ACTIONS(2395), - [anon_sym_break] = ACTIONS(2395), - [anon_sym_continue] = ACTIONS(2395), - [anon_sym_for] = ACTIONS(2395), - [anon_sym_in2] = ACTIONS(2395), - [anon_sym_loop] = ACTIONS(2395), - [anon_sym_make] = ACTIONS(2395), - [anon_sym_while] = ACTIONS(2395), - [anon_sym_do] = ACTIONS(2395), - [anon_sym_if] = ACTIONS(2395), - [anon_sym_else] = ACTIONS(2395), - [anon_sym_match] = ACTIONS(2395), - [anon_sym_RBRACE] = ACTIONS(2397), - [anon_sym_try] = ACTIONS(2395), - [anon_sym_catch] = ACTIONS(2395), - [anon_sym_return] = ACTIONS(2395), - [anon_sym_source] = ACTIONS(2395), - [anon_sym_source_DASHenv] = ACTIONS(2395), - [anon_sym_register] = ACTIONS(2395), - [anon_sym_hide] = ACTIONS(2395), - [anon_sym_hide_DASHenv] = ACTIONS(2395), - [anon_sym_overlay] = ACTIONS(2395), - [anon_sym_as] = ACTIONS(2395), - [anon_sym_PLUS2] = ACTIONS(2395), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2397), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2397), - [aux_sym__val_number_decimal_token1] = ACTIONS(2395), - [aux_sym__val_number_decimal_token2] = ACTIONS(2397), - [aux_sym__val_number_decimal_token3] = ACTIONS(2397), - [aux_sym__val_number_decimal_token4] = ACTIONS(2397), - [aux_sym__val_number_token1] = ACTIONS(2397), - [aux_sym__val_number_token2] = ACTIONS(2397), - [aux_sym__val_number_token3] = ACTIONS(2397), - [aux_sym__val_number_token4] = ACTIONS(2395), - [aux_sym__val_number_token5] = ACTIONS(2395), - [aux_sym__val_number_token6] = ACTIONS(2395), - [anon_sym_DQUOTE] = ACTIONS(2397), - [sym__str_single_quotes] = ACTIONS(2397), - [sym__str_back_ticks] = ACTIONS(2397), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2397), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2397), - }, - [762] = { - [sym_comment] = STATE(762), - [anon_sym_export] = ACTIONS(2399), - [anon_sym_alias] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_let_DASHenv] = ACTIONS(2399), - [anon_sym_mut] = ACTIONS(2399), - [anon_sym_const] = ACTIONS(2399), - [aux_sym_cmd_identifier_token1] = ACTIONS(2399), - [aux_sym_cmd_identifier_token2] = ACTIONS(2401), - [aux_sym_cmd_identifier_token3] = ACTIONS(2401), - [aux_sym_cmd_identifier_token4] = ACTIONS(2401), - [aux_sym_cmd_identifier_token5] = ACTIONS(2401), - [aux_sym_cmd_identifier_token6] = ACTIONS(2401), - [aux_sym_cmd_identifier_token7] = ACTIONS(2401), - [aux_sym_cmd_identifier_token8] = ACTIONS(2399), - [aux_sym_cmd_identifier_token9] = ACTIONS(2399), - [aux_sym_cmd_identifier_token10] = ACTIONS(2401), - [aux_sym_cmd_identifier_token11] = ACTIONS(2401), - [aux_sym_cmd_identifier_token12] = ACTIONS(2399), - [aux_sym_cmd_identifier_token13] = ACTIONS(2399), - [aux_sym_cmd_identifier_token14] = ACTIONS(2399), - [aux_sym_cmd_identifier_token15] = ACTIONS(2399), - [aux_sym_cmd_identifier_token16] = ACTIONS(2401), - [aux_sym_cmd_identifier_token17] = ACTIONS(2401), - [aux_sym_cmd_identifier_token18] = ACTIONS(2401), - [aux_sym_cmd_identifier_token19] = ACTIONS(2401), - [aux_sym_cmd_identifier_token20] = ACTIONS(2401), - [aux_sym_cmd_identifier_token21] = ACTIONS(2401), - [aux_sym_cmd_identifier_token22] = ACTIONS(2401), - [aux_sym_cmd_identifier_token23] = ACTIONS(2401), - [aux_sym_cmd_identifier_token24] = ACTIONS(2401), - [aux_sym_cmd_identifier_token25] = ACTIONS(2401), - [aux_sym_cmd_identifier_token26] = ACTIONS(2401), - [aux_sym_cmd_identifier_token27] = ACTIONS(2401), - [aux_sym_cmd_identifier_token28] = ACTIONS(2401), - [aux_sym_cmd_identifier_token29] = ACTIONS(2401), - [aux_sym_cmd_identifier_token30] = ACTIONS(2401), - [aux_sym_cmd_identifier_token31] = ACTIONS(2401), - [aux_sym_cmd_identifier_token32] = ACTIONS(2401), - [aux_sym_cmd_identifier_token33] = ACTIONS(2401), - [aux_sym_cmd_identifier_token34] = ACTIONS(2399), - [aux_sym_cmd_identifier_token35] = ACTIONS(2401), - [aux_sym_cmd_identifier_token36] = ACTIONS(2401), - [aux_sym_cmd_identifier_token37] = ACTIONS(2401), - [aux_sym_cmd_identifier_token38] = ACTIONS(2399), - [aux_sym_cmd_identifier_token39] = ACTIONS(2401), - [aux_sym_cmd_identifier_token40] = ACTIONS(2401), - [anon_sym_def] = ACTIONS(2399), - [anon_sym_export_DASHenv] = ACTIONS(2399), - [anon_sym_extern] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_use] = ACTIONS(2399), - [anon_sym_LPAREN] = ACTIONS(2401), - [anon_sym_DOLLAR] = ACTIONS(2401), - [anon_sym_error] = ACTIONS(2399), - [anon_sym_DASH2] = ACTIONS(2399), - [anon_sym_break] = ACTIONS(2399), - [anon_sym_continue] = ACTIONS(2399), - [anon_sym_for] = ACTIONS(2399), - [anon_sym_in2] = ACTIONS(2399), - [anon_sym_loop] = ACTIONS(2399), - [anon_sym_make] = ACTIONS(2399), - [anon_sym_while] = ACTIONS(2399), - [anon_sym_do] = ACTIONS(2399), - [anon_sym_if] = ACTIONS(2399), - [anon_sym_else] = ACTIONS(2399), - [anon_sym_match] = ACTIONS(2399), - [anon_sym_RBRACE] = ACTIONS(2401), - [anon_sym_try] = ACTIONS(2399), - [anon_sym_catch] = ACTIONS(2399), - [anon_sym_return] = ACTIONS(2399), - [anon_sym_source] = ACTIONS(2399), - [anon_sym_source_DASHenv] = ACTIONS(2399), - [anon_sym_register] = ACTIONS(2399), - [anon_sym_hide] = ACTIONS(2399), - [anon_sym_hide_DASHenv] = ACTIONS(2399), - [anon_sym_overlay] = ACTIONS(2399), - [anon_sym_as] = ACTIONS(2399), - [anon_sym_PLUS2] = ACTIONS(2399), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2401), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2401), - [aux_sym__val_number_decimal_token1] = ACTIONS(2399), - [aux_sym__val_number_decimal_token2] = ACTIONS(2401), - [aux_sym__val_number_decimal_token3] = ACTIONS(2401), - [aux_sym__val_number_decimal_token4] = ACTIONS(2401), - [aux_sym__val_number_token1] = ACTIONS(2401), - [aux_sym__val_number_token2] = ACTIONS(2401), - [aux_sym__val_number_token3] = ACTIONS(2401), - [aux_sym__val_number_token4] = ACTIONS(2399), - [aux_sym__val_number_token5] = ACTIONS(2399), - [aux_sym__val_number_token6] = ACTIONS(2399), - [anon_sym_DQUOTE] = ACTIONS(2401), - [sym__str_single_quotes] = ACTIONS(2401), - [sym__str_back_ticks] = ACTIONS(2401), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2401), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2401), - }, - [763] = { - [sym_comment] = STATE(763), - [anon_sym_export] = ACTIONS(2403), - [anon_sym_alias] = ACTIONS(2403), - [anon_sym_let] = ACTIONS(2403), - [anon_sym_let_DASHenv] = ACTIONS(2403), - [anon_sym_mut] = ACTIONS(2403), - [anon_sym_const] = ACTIONS(2403), - [aux_sym_cmd_identifier_token1] = ACTIONS(2403), - [aux_sym_cmd_identifier_token2] = ACTIONS(2405), - [aux_sym_cmd_identifier_token3] = ACTIONS(2405), - [aux_sym_cmd_identifier_token4] = ACTIONS(2405), - [aux_sym_cmd_identifier_token5] = ACTIONS(2405), - [aux_sym_cmd_identifier_token6] = ACTIONS(2405), - [aux_sym_cmd_identifier_token7] = ACTIONS(2405), - [aux_sym_cmd_identifier_token8] = ACTIONS(2403), - [aux_sym_cmd_identifier_token9] = ACTIONS(2403), - [aux_sym_cmd_identifier_token10] = ACTIONS(2405), - [aux_sym_cmd_identifier_token11] = ACTIONS(2405), - [aux_sym_cmd_identifier_token12] = ACTIONS(2403), - [aux_sym_cmd_identifier_token13] = ACTIONS(2403), - [aux_sym_cmd_identifier_token14] = ACTIONS(2403), - [aux_sym_cmd_identifier_token15] = ACTIONS(2403), - [aux_sym_cmd_identifier_token16] = ACTIONS(2405), - [aux_sym_cmd_identifier_token17] = ACTIONS(2405), - [aux_sym_cmd_identifier_token18] = ACTIONS(2405), - [aux_sym_cmd_identifier_token19] = ACTIONS(2405), - [aux_sym_cmd_identifier_token20] = ACTIONS(2405), - [aux_sym_cmd_identifier_token21] = ACTIONS(2405), - [aux_sym_cmd_identifier_token22] = ACTIONS(2405), - [aux_sym_cmd_identifier_token23] = ACTIONS(2405), - [aux_sym_cmd_identifier_token24] = ACTIONS(2405), - [aux_sym_cmd_identifier_token25] = ACTIONS(2405), - [aux_sym_cmd_identifier_token26] = ACTIONS(2405), - [aux_sym_cmd_identifier_token27] = ACTIONS(2405), - [aux_sym_cmd_identifier_token28] = ACTIONS(2405), - [aux_sym_cmd_identifier_token29] = ACTIONS(2405), - [aux_sym_cmd_identifier_token30] = ACTIONS(2405), - [aux_sym_cmd_identifier_token31] = ACTIONS(2405), - [aux_sym_cmd_identifier_token32] = ACTIONS(2405), - [aux_sym_cmd_identifier_token33] = ACTIONS(2405), - [aux_sym_cmd_identifier_token34] = ACTIONS(2403), - [aux_sym_cmd_identifier_token35] = ACTIONS(2405), - [aux_sym_cmd_identifier_token36] = ACTIONS(2405), - [aux_sym_cmd_identifier_token37] = ACTIONS(2405), - [aux_sym_cmd_identifier_token38] = ACTIONS(2403), - [aux_sym_cmd_identifier_token39] = ACTIONS(2405), - [aux_sym_cmd_identifier_token40] = ACTIONS(2405), - [anon_sym_def] = ACTIONS(2403), - [anon_sym_export_DASHenv] = ACTIONS(2403), - [anon_sym_extern] = ACTIONS(2403), - [anon_sym_module] = ACTIONS(2403), - [anon_sym_use] = ACTIONS(2403), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_DOLLAR] = ACTIONS(2405), - [anon_sym_error] = ACTIONS(2403), - [anon_sym_DASH2] = ACTIONS(2403), - [anon_sym_break] = ACTIONS(2403), - [anon_sym_continue] = ACTIONS(2403), - [anon_sym_for] = ACTIONS(2403), - [anon_sym_in2] = ACTIONS(2403), - [anon_sym_loop] = ACTIONS(2403), - [anon_sym_make] = ACTIONS(2403), - [anon_sym_while] = ACTIONS(2403), - [anon_sym_do] = ACTIONS(2403), - [anon_sym_if] = ACTIONS(2403), - [anon_sym_else] = ACTIONS(2403), - [anon_sym_match] = ACTIONS(2403), - [anon_sym_RBRACE] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2403), - [anon_sym_catch] = ACTIONS(2403), - [anon_sym_return] = ACTIONS(2403), - [anon_sym_source] = ACTIONS(2403), - [anon_sym_source_DASHenv] = ACTIONS(2403), - [anon_sym_register] = ACTIONS(2403), - [anon_sym_hide] = ACTIONS(2403), - [anon_sym_hide_DASHenv] = ACTIONS(2403), - [anon_sym_overlay] = ACTIONS(2403), - [anon_sym_as] = ACTIONS(2403), - [anon_sym_PLUS2] = ACTIONS(2403), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2405), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2405), - [aux_sym__val_number_decimal_token1] = ACTIONS(2403), - [aux_sym__val_number_decimal_token2] = ACTIONS(2405), - [aux_sym__val_number_decimal_token3] = ACTIONS(2405), - [aux_sym__val_number_decimal_token4] = ACTIONS(2405), - [aux_sym__val_number_token1] = ACTIONS(2405), - [aux_sym__val_number_token2] = ACTIONS(2405), - [aux_sym__val_number_token3] = ACTIONS(2405), - [aux_sym__val_number_token4] = ACTIONS(2403), - [aux_sym__val_number_token5] = ACTIONS(2403), - [aux_sym__val_number_token6] = ACTIONS(2403), - [anon_sym_DQUOTE] = ACTIONS(2405), - [sym__str_single_quotes] = ACTIONS(2405), - [sym__str_back_ticks] = ACTIONS(2405), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2405), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2405), - }, - [764] = { - [sym_comment] = STATE(764), - [anon_sym_export] = ACTIONS(2106), - [anon_sym_alias] = ACTIONS(2106), - [anon_sym_let] = ACTIONS(2106), - [anon_sym_let_DASHenv] = ACTIONS(2106), - [anon_sym_mut] = ACTIONS(2106), - [anon_sym_const] = ACTIONS(2106), - [aux_sym_cmd_identifier_token1] = ACTIONS(2106), - [aux_sym_cmd_identifier_token2] = ACTIONS(2108), - [aux_sym_cmd_identifier_token3] = ACTIONS(2108), - [aux_sym_cmd_identifier_token4] = ACTIONS(2108), - [aux_sym_cmd_identifier_token5] = ACTIONS(2108), - [aux_sym_cmd_identifier_token6] = ACTIONS(2108), - [aux_sym_cmd_identifier_token7] = ACTIONS(2108), - [aux_sym_cmd_identifier_token8] = ACTIONS(2106), - [aux_sym_cmd_identifier_token9] = ACTIONS(2106), - [aux_sym_cmd_identifier_token10] = ACTIONS(2108), - [aux_sym_cmd_identifier_token11] = ACTIONS(2108), - [aux_sym_cmd_identifier_token12] = ACTIONS(2106), - [aux_sym_cmd_identifier_token13] = ACTIONS(2106), - [aux_sym_cmd_identifier_token14] = ACTIONS(2106), - [aux_sym_cmd_identifier_token15] = ACTIONS(2106), - [aux_sym_cmd_identifier_token16] = ACTIONS(2108), - [aux_sym_cmd_identifier_token17] = ACTIONS(2108), - [aux_sym_cmd_identifier_token18] = ACTIONS(2108), - [aux_sym_cmd_identifier_token19] = ACTIONS(2108), - [aux_sym_cmd_identifier_token20] = ACTIONS(2108), - [aux_sym_cmd_identifier_token21] = ACTIONS(2108), - [aux_sym_cmd_identifier_token22] = ACTIONS(2108), - [aux_sym_cmd_identifier_token23] = ACTIONS(2108), - [aux_sym_cmd_identifier_token24] = ACTIONS(2108), - [aux_sym_cmd_identifier_token25] = ACTIONS(2108), - [aux_sym_cmd_identifier_token26] = ACTIONS(2108), - [aux_sym_cmd_identifier_token27] = ACTIONS(2108), - [aux_sym_cmd_identifier_token28] = ACTIONS(2108), - [aux_sym_cmd_identifier_token29] = ACTIONS(2108), - [aux_sym_cmd_identifier_token30] = ACTIONS(2108), - [aux_sym_cmd_identifier_token31] = ACTIONS(2108), - [aux_sym_cmd_identifier_token32] = ACTIONS(2108), - [aux_sym_cmd_identifier_token33] = ACTIONS(2108), - [aux_sym_cmd_identifier_token34] = ACTIONS(2106), - [aux_sym_cmd_identifier_token35] = ACTIONS(2108), - [aux_sym_cmd_identifier_token36] = ACTIONS(2108), - [aux_sym_cmd_identifier_token37] = ACTIONS(2108), - [aux_sym_cmd_identifier_token38] = ACTIONS(2106), - [aux_sym_cmd_identifier_token39] = ACTIONS(2108), - [aux_sym_cmd_identifier_token40] = ACTIONS(2108), - [anon_sym_def] = ACTIONS(2106), - [anon_sym_export_DASHenv] = ACTIONS(2106), - [anon_sym_extern] = ACTIONS(2106), - [anon_sym_module] = ACTIONS(2106), - [anon_sym_use] = ACTIONS(2106), - [anon_sym_LPAREN] = ACTIONS(2108), - [anon_sym_DOLLAR] = ACTIONS(2108), - [anon_sym_error] = ACTIONS(2106), - [anon_sym_DASH2] = ACTIONS(2106), - [anon_sym_break] = ACTIONS(2106), - [anon_sym_continue] = ACTIONS(2106), - [anon_sym_for] = ACTIONS(2106), - [anon_sym_in2] = ACTIONS(2106), - [anon_sym_loop] = ACTIONS(2106), - [anon_sym_make] = ACTIONS(2106), - [anon_sym_while] = ACTIONS(2106), - [anon_sym_do] = ACTIONS(2106), - [anon_sym_if] = ACTIONS(2106), - [anon_sym_else] = ACTIONS(2106), - [anon_sym_match] = ACTIONS(2106), - [anon_sym_RBRACE] = ACTIONS(2108), - [anon_sym_try] = ACTIONS(2106), - [anon_sym_catch] = ACTIONS(2106), - [anon_sym_return] = ACTIONS(2106), - [anon_sym_source] = ACTIONS(2106), - [anon_sym_source_DASHenv] = ACTIONS(2106), - [anon_sym_register] = ACTIONS(2106), - [anon_sym_hide] = ACTIONS(2106), - [anon_sym_hide_DASHenv] = ACTIONS(2106), - [anon_sym_overlay] = ACTIONS(2106), - [anon_sym_as] = ACTIONS(2106), - [anon_sym_PLUS2] = ACTIONS(2106), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2108), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2108), - [aux_sym__val_number_decimal_token1] = ACTIONS(2106), - [aux_sym__val_number_decimal_token2] = ACTIONS(2108), - [aux_sym__val_number_decimal_token3] = ACTIONS(2108), - [aux_sym__val_number_decimal_token4] = ACTIONS(2108), - [aux_sym__val_number_token1] = ACTIONS(2108), - [aux_sym__val_number_token2] = ACTIONS(2108), - [aux_sym__val_number_token3] = ACTIONS(2108), - [aux_sym__val_number_token4] = ACTIONS(2106), - [aux_sym__val_number_token5] = ACTIONS(2106), - [aux_sym__val_number_token6] = ACTIONS(2106), - [anon_sym_DQUOTE] = ACTIONS(2108), - [sym__str_single_quotes] = ACTIONS(2108), - [sym__str_back_ticks] = ACTIONS(2108), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2108), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2108), + [anon_sym_export] = ACTIONS(990), + [anon_sym_alias] = ACTIONS(990), + [anon_sym_let] = ACTIONS(990), + [anon_sym_let_DASHenv] = ACTIONS(990), + [anon_sym_mut] = ACTIONS(990), + [anon_sym_const] = ACTIONS(990), + [aux_sym_cmd_identifier_token1] = ACTIONS(990), + [aux_sym_cmd_identifier_token2] = ACTIONS(992), + [aux_sym_cmd_identifier_token3] = ACTIONS(992), + [aux_sym_cmd_identifier_token4] = ACTIONS(992), + [aux_sym_cmd_identifier_token5] = ACTIONS(992), + [aux_sym_cmd_identifier_token6] = ACTIONS(992), + [aux_sym_cmd_identifier_token7] = ACTIONS(992), + [aux_sym_cmd_identifier_token8] = ACTIONS(990), + [aux_sym_cmd_identifier_token9] = ACTIONS(990), + [aux_sym_cmd_identifier_token10] = ACTIONS(992), + [aux_sym_cmd_identifier_token11] = ACTIONS(992), + [aux_sym_cmd_identifier_token12] = ACTIONS(990), + [aux_sym_cmd_identifier_token13] = ACTIONS(990), + [aux_sym_cmd_identifier_token14] = ACTIONS(990), + [aux_sym_cmd_identifier_token15] = ACTIONS(990), + [aux_sym_cmd_identifier_token16] = ACTIONS(992), + [aux_sym_cmd_identifier_token17] = ACTIONS(992), + [aux_sym_cmd_identifier_token18] = ACTIONS(992), + [aux_sym_cmd_identifier_token19] = ACTIONS(992), + [aux_sym_cmd_identifier_token20] = ACTIONS(992), + [aux_sym_cmd_identifier_token21] = ACTIONS(992), + [aux_sym_cmd_identifier_token22] = ACTIONS(992), + [aux_sym_cmd_identifier_token23] = ACTIONS(992), + [aux_sym_cmd_identifier_token24] = ACTIONS(992), + [aux_sym_cmd_identifier_token25] = ACTIONS(992), + [aux_sym_cmd_identifier_token26] = ACTIONS(992), + [aux_sym_cmd_identifier_token27] = ACTIONS(992), + [aux_sym_cmd_identifier_token28] = ACTIONS(992), + [aux_sym_cmd_identifier_token29] = ACTIONS(992), + [aux_sym_cmd_identifier_token30] = ACTIONS(992), + [aux_sym_cmd_identifier_token31] = ACTIONS(992), + [aux_sym_cmd_identifier_token32] = ACTIONS(992), + [aux_sym_cmd_identifier_token33] = ACTIONS(992), + [aux_sym_cmd_identifier_token34] = ACTIONS(990), + [aux_sym_cmd_identifier_token35] = ACTIONS(992), + [aux_sym_cmd_identifier_token36] = ACTIONS(992), + [aux_sym_cmd_identifier_token37] = ACTIONS(992), + [aux_sym_cmd_identifier_token38] = ACTIONS(990), + [aux_sym_cmd_identifier_token39] = ACTIONS(992), + [aux_sym_cmd_identifier_token40] = ACTIONS(992), + [anon_sym_def] = ACTIONS(990), + [anon_sym_export_DASHenv] = ACTIONS(990), + [anon_sym_extern] = ACTIONS(990), + [anon_sym_module] = ACTIONS(990), + [anon_sym_use] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(992), + [anon_sym_error] = ACTIONS(990), + [anon_sym_DASH2] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_continue] = ACTIONS(990), + [anon_sym_for] = ACTIONS(990), + [anon_sym_in2] = ACTIONS(990), + [anon_sym_loop] = ACTIONS(990), + [anon_sym_make] = ACTIONS(990), + [anon_sym_while] = ACTIONS(990), + [anon_sym_do] = ACTIONS(990), + [anon_sym_if] = ACTIONS(990), + [anon_sym_else] = ACTIONS(990), + [anon_sym_match] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_try] = ACTIONS(990), + [anon_sym_catch] = ACTIONS(990), + [anon_sym_return] = ACTIONS(990), + [anon_sym_source] = ACTIONS(990), + [anon_sym_source_DASHenv] = ACTIONS(990), + [anon_sym_register] = ACTIONS(990), + [anon_sym_hide] = ACTIONS(990), + [anon_sym_hide_DASHenv] = ACTIONS(990), + [anon_sym_overlay] = ACTIONS(990), + [anon_sym_as] = ACTIONS(990), + [anon_sym_PLUS2] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = ACTIONS(992), + [aux_sym__val_number_decimal_token4] = ACTIONS(992), + [aux_sym__val_number_token1] = ACTIONS(992), + [aux_sym__val_number_token2] = ACTIONS(992), + [aux_sym__val_number_token3] = ACTIONS(992), + [aux_sym__val_number_token4] = ACTIONS(990), + [aux_sym__val_number_token5] = ACTIONS(990), + [aux_sym__val_number_token6] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(992), }, - [765] = { - [sym_comment] = STATE(765), + [759] = { + [sym_comment] = STATE(759), [anon_sym_export] = ACTIONS(994), [anon_sym_alias] = ACTIONS(994), [anon_sym_let] = ACTIONS(994), @@ -156424,107 +156149,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(996), }, - [766] = { - [sym_comment] = STATE(766), - [anon_sym_export] = ACTIONS(2379), - [anon_sym_alias] = ACTIONS(2379), - [anon_sym_let] = ACTIONS(2379), - [anon_sym_let_DASHenv] = ACTIONS(2379), - [anon_sym_mut] = ACTIONS(2379), - [anon_sym_const] = ACTIONS(2379), - [aux_sym_cmd_identifier_token1] = ACTIONS(2379), - [aux_sym_cmd_identifier_token2] = ACTIONS(2381), - [aux_sym_cmd_identifier_token3] = ACTIONS(2381), - [aux_sym_cmd_identifier_token4] = ACTIONS(2381), - [aux_sym_cmd_identifier_token5] = ACTIONS(2381), - [aux_sym_cmd_identifier_token6] = ACTIONS(2381), - [aux_sym_cmd_identifier_token7] = ACTIONS(2381), - [aux_sym_cmd_identifier_token8] = ACTIONS(2379), - [aux_sym_cmd_identifier_token9] = ACTIONS(2379), - [aux_sym_cmd_identifier_token10] = ACTIONS(2381), - [aux_sym_cmd_identifier_token11] = ACTIONS(2381), - [aux_sym_cmd_identifier_token12] = ACTIONS(2379), - [aux_sym_cmd_identifier_token13] = ACTIONS(2379), - [aux_sym_cmd_identifier_token14] = ACTIONS(2379), - [aux_sym_cmd_identifier_token15] = ACTIONS(2379), - [aux_sym_cmd_identifier_token16] = ACTIONS(2381), - [aux_sym_cmd_identifier_token17] = ACTIONS(2381), - [aux_sym_cmd_identifier_token18] = ACTIONS(2381), - [aux_sym_cmd_identifier_token19] = ACTIONS(2381), - [aux_sym_cmd_identifier_token20] = ACTIONS(2381), - [aux_sym_cmd_identifier_token21] = ACTIONS(2381), - [aux_sym_cmd_identifier_token22] = ACTIONS(2381), - [aux_sym_cmd_identifier_token23] = ACTIONS(2381), - [aux_sym_cmd_identifier_token24] = ACTIONS(2381), - [aux_sym_cmd_identifier_token25] = ACTIONS(2381), - [aux_sym_cmd_identifier_token26] = ACTIONS(2381), - [aux_sym_cmd_identifier_token27] = ACTIONS(2381), - [aux_sym_cmd_identifier_token28] = ACTIONS(2381), - [aux_sym_cmd_identifier_token29] = ACTIONS(2381), - [aux_sym_cmd_identifier_token30] = ACTIONS(2381), - [aux_sym_cmd_identifier_token31] = ACTIONS(2381), - [aux_sym_cmd_identifier_token32] = ACTIONS(2381), - [aux_sym_cmd_identifier_token33] = ACTIONS(2381), - [aux_sym_cmd_identifier_token34] = ACTIONS(2379), - [aux_sym_cmd_identifier_token35] = ACTIONS(2381), - [aux_sym_cmd_identifier_token36] = ACTIONS(2381), - [aux_sym_cmd_identifier_token37] = ACTIONS(2381), - [aux_sym_cmd_identifier_token38] = ACTIONS(2379), - [aux_sym_cmd_identifier_token39] = ACTIONS(2381), - [aux_sym_cmd_identifier_token40] = ACTIONS(2381), - [anon_sym_def] = ACTIONS(2379), - [anon_sym_export_DASHenv] = ACTIONS(2379), - [anon_sym_extern] = ACTIONS(2379), - [anon_sym_module] = ACTIONS(2379), - [anon_sym_use] = ACTIONS(2379), - [anon_sym_LPAREN] = ACTIONS(2381), - [anon_sym_DOLLAR] = ACTIONS(2381), - [anon_sym_error] = ACTIONS(2379), - [anon_sym_DASH2] = ACTIONS(2379), - [anon_sym_break] = ACTIONS(2379), - [anon_sym_continue] = ACTIONS(2379), - [anon_sym_for] = ACTIONS(2379), - [anon_sym_in2] = ACTIONS(2379), - [anon_sym_loop] = ACTIONS(2379), - [anon_sym_make] = ACTIONS(2379), - [anon_sym_while] = ACTIONS(2379), - [anon_sym_do] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2379), - [anon_sym_else] = ACTIONS(2379), - [anon_sym_match] = ACTIONS(2379), - [anon_sym_RBRACE] = ACTIONS(2381), - [anon_sym_try] = ACTIONS(2379), - [anon_sym_catch] = ACTIONS(2379), - [anon_sym_return] = ACTIONS(2379), - [anon_sym_source] = ACTIONS(2379), - [anon_sym_source_DASHenv] = ACTIONS(2379), - [anon_sym_register] = ACTIONS(2379), - [anon_sym_hide] = ACTIONS(2379), - [anon_sym_hide_DASHenv] = ACTIONS(2379), - [anon_sym_overlay] = ACTIONS(2379), - [anon_sym_as] = ACTIONS(2379), - [anon_sym_PLUS2] = ACTIONS(2379), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2381), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2381), - [aux_sym__val_number_decimal_token1] = ACTIONS(2379), - [aux_sym__val_number_decimal_token2] = ACTIONS(2381), - [aux_sym__val_number_decimal_token3] = ACTIONS(2381), - [aux_sym__val_number_decimal_token4] = ACTIONS(2381), - [aux_sym__val_number_token1] = ACTIONS(2381), - [aux_sym__val_number_token2] = ACTIONS(2381), - [aux_sym__val_number_token3] = ACTIONS(2381), - [aux_sym__val_number_token4] = ACTIONS(2379), - [aux_sym__val_number_token5] = ACTIONS(2379), - [aux_sym__val_number_token6] = ACTIONS(2379), - [anon_sym_DQUOTE] = ACTIONS(2381), - [sym__str_single_quotes] = ACTIONS(2381), - [sym__str_back_ticks] = ACTIONS(2381), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2381), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2381), - }, - [767] = { - [sym_comment] = STATE(767), + [760] = { + [sym_comment] = STATE(760), [anon_sym_export] = ACTIONS(998), [anon_sym_alias] = ACTIONS(998), [anon_sym_let] = ACTIONS(998), @@ -156622,8 +156248,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1000), }, - [768] = { - [sym_comment] = STATE(768), + [761] = { + [sym_comment] = STATE(761), [anon_sym_export] = ACTIONS(1002), [anon_sym_alias] = ACTIONS(1002), [anon_sym_let] = ACTIONS(1002), @@ -156721,107 +156347,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1004), }, - [769] = { - [sym_comment] = STATE(769), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [aux_sym_cmd_identifier_token1] = ACTIONS(990), - [aux_sym_cmd_identifier_token2] = ACTIONS(992), - [aux_sym_cmd_identifier_token3] = ACTIONS(992), - [aux_sym_cmd_identifier_token4] = ACTIONS(992), - [aux_sym_cmd_identifier_token5] = ACTIONS(992), - [aux_sym_cmd_identifier_token6] = ACTIONS(992), - [aux_sym_cmd_identifier_token7] = ACTIONS(992), - [aux_sym_cmd_identifier_token8] = ACTIONS(990), - [aux_sym_cmd_identifier_token9] = ACTIONS(990), - [aux_sym_cmd_identifier_token10] = ACTIONS(992), - [aux_sym_cmd_identifier_token11] = ACTIONS(992), - [aux_sym_cmd_identifier_token12] = ACTIONS(990), - [aux_sym_cmd_identifier_token13] = ACTIONS(990), - [aux_sym_cmd_identifier_token14] = ACTIONS(990), - [aux_sym_cmd_identifier_token15] = ACTIONS(990), - [aux_sym_cmd_identifier_token16] = ACTIONS(992), - [aux_sym_cmd_identifier_token17] = ACTIONS(992), - [aux_sym_cmd_identifier_token18] = ACTIONS(992), - [aux_sym_cmd_identifier_token19] = ACTIONS(992), - [aux_sym_cmd_identifier_token20] = ACTIONS(992), - [aux_sym_cmd_identifier_token21] = ACTIONS(992), - [aux_sym_cmd_identifier_token22] = ACTIONS(992), - [aux_sym_cmd_identifier_token23] = ACTIONS(992), - [aux_sym_cmd_identifier_token24] = ACTIONS(992), - [aux_sym_cmd_identifier_token25] = ACTIONS(992), - [aux_sym_cmd_identifier_token26] = ACTIONS(992), - [aux_sym_cmd_identifier_token27] = ACTIONS(992), - [aux_sym_cmd_identifier_token28] = ACTIONS(992), - [aux_sym_cmd_identifier_token29] = ACTIONS(992), - [aux_sym_cmd_identifier_token30] = ACTIONS(992), - [aux_sym_cmd_identifier_token31] = ACTIONS(992), - [aux_sym_cmd_identifier_token32] = ACTIONS(992), - [aux_sym_cmd_identifier_token33] = ACTIONS(992), - [aux_sym_cmd_identifier_token34] = ACTIONS(990), - [aux_sym_cmd_identifier_token35] = ACTIONS(992), - [aux_sym_cmd_identifier_token36] = ACTIONS(992), - [aux_sym_cmd_identifier_token37] = ACTIONS(992), - [aux_sym_cmd_identifier_token38] = ACTIONS(990), - [aux_sym_cmd_identifier_token39] = ACTIONS(992), - [aux_sym_cmd_identifier_token40] = ACTIONS(992), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_error] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in2] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_make] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_try] = ACTIONS(990), - [anon_sym_catch] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_PLUS2] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(992), - [aux_sym__val_number_decimal_token3] = ACTIONS(992), - [aux_sym__val_number_decimal_token4] = ACTIONS(992), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(992), + [762] = { + [sym_comment] = STATE(762), + [anon_sym_export] = ACTIONS(2312), + [anon_sym_alias] = ACTIONS(2312), + [anon_sym_let] = ACTIONS(2312), + [anon_sym_let_DASHenv] = ACTIONS(2312), + [anon_sym_mut] = ACTIONS(2312), + [anon_sym_const] = ACTIONS(2312), + [aux_sym_cmd_identifier_token1] = ACTIONS(2312), + [aux_sym_cmd_identifier_token2] = ACTIONS(2316), + [aux_sym_cmd_identifier_token3] = ACTIONS(2316), + [aux_sym_cmd_identifier_token4] = ACTIONS(2316), + [aux_sym_cmd_identifier_token5] = ACTIONS(2316), + [aux_sym_cmd_identifier_token6] = ACTIONS(2316), + [aux_sym_cmd_identifier_token7] = ACTIONS(2316), + [aux_sym_cmd_identifier_token8] = ACTIONS(2312), + [aux_sym_cmd_identifier_token9] = ACTIONS(2312), + [aux_sym_cmd_identifier_token10] = ACTIONS(2316), + [aux_sym_cmd_identifier_token11] = ACTIONS(2316), + [aux_sym_cmd_identifier_token12] = ACTIONS(2312), + [aux_sym_cmd_identifier_token13] = ACTIONS(2312), + [aux_sym_cmd_identifier_token14] = ACTIONS(2312), + [aux_sym_cmd_identifier_token15] = ACTIONS(2312), + [aux_sym_cmd_identifier_token16] = ACTIONS(2316), + [aux_sym_cmd_identifier_token17] = ACTIONS(2316), + [aux_sym_cmd_identifier_token18] = ACTIONS(2316), + [aux_sym_cmd_identifier_token19] = ACTIONS(2316), + [aux_sym_cmd_identifier_token20] = ACTIONS(2316), + [aux_sym_cmd_identifier_token21] = ACTIONS(2316), + [aux_sym_cmd_identifier_token22] = ACTIONS(2316), + [aux_sym_cmd_identifier_token23] = ACTIONS(2316), + [aux_sym_cmd_identifier_token24] = ACTIONS(2316), + [aux_sym_cmd_identifier_token25] = ACTIONS(2316), + [aux_sym_cmd_identifier_token26] = ACTIONS(2316), + [aux_sym_cmd_identifier_token27] = ACTIONS(2316), + [aux_sym_cmd_identifier_token28] = ACTIONS(2316), + [aux_sym_cmd_identifier_token29] = ACTIONS(2316), + [aux_sym_cmd_identifier_token30] = ACTIONS(2316), + [aux_sym_cmd_identifier_token31] = ACTIONS(2316), + [aux_sym_cmd_identifier_token32] = ACTIONS(2316), + [aux_sym_cmd_identifier_token33] = ACTIONS(2316), + [aux_sym_cmd_identifier_token34] = ACTIONS(2312), + [aux_sym_cmd_identifier_token35] = ACTIONS(2316), + [aux_sym_cmd_identifier_token36] = ACTIONS(2316), + [aux_sym_cmd_identifier_token37] = ACTIONS(2316), + [aux_sym_cmd_identifier_token38] = ACTIONS(2312), + [aux_sym_cmd_identifier_token39] = ACTIONS(2316), + [aux_sym_cmd_identifier_token40] = ACTIONS(2316), + [anon_sym_def] = ACTIONS(2312), + [anon_sym_export_DASHenv] = ACTIONS(2312), + [anon_sym_extern] = ACTIONS(2312), + [anon_sym_module] = ACTIONS(2312), + [anon_sym_use] = ACTIONS(2312), + [anon_sym_LPAREN] = ACTIONS(2316), + [anon_sym_DOLLAR] = ACTIONS(2316), + [anon_sym_error] = ACTIONS(2312), + [anon_sym_DASH2] = ACTIONS(2312), + [anon_sym_break] = ACTIONS(2312), + [anon_sym_continue] = ACTIONS(2312), + [anon_sym_for] = ACTIONS(2312), + [anon_sym_in2] = ACTIONS(2312), + [anon_sym_loop] = ACTIONS(2312), + [anon_sym_make] = ACTIONS(2312), + [anon_sym_while] = ACTIONS(2312), + [anon_sym_do] = ACTIONS(2312), + [anon_sym_if] = ACTIONS(2312), + [anon_sym_else] = ACTIONS(2312), + [anon_sym_match] = ACTIONS(2312), + [anon_sym_RBRACE] = ACTIONS(2316), + [anon_sym_try] = ACTIONS(2312), + [anon_sym_catch] = ACTIONS(2312), + [anon_sym_return] = ACTIONS(2312), + [anon_sym_source] = ACTIONS(2312), + [anon_sym_source_DASHenv] = ACTIONS(2312), + [anon_sym_register] = ACTIONS(2312), + [anon_sym_hide] = ACTIONS(2312), + [anon_sym_hide_DASHenv] = ACTIONS(2312), + [anon_sym_overlay] = ACTIONS(2312), + [anon_sym_as] = ACTIONS(2312), + [anon_sym_PLUS2] = ACTIONS(2312), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2316), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2316), + [aux_sym__val_number_decimal_token1] = ACTIONS(2312), + [aux_sym__val_number_decimal_token2] = ACTIONS(2316), + [aux_sym__val_number_decimal_token3] = ACTIONS(2316), + [aux_sym__val_number_decimal_token4] = ACTIONS(2316), + [aux_sym__val_number_token1] = ACTIONS(2316), + [aux_sym__val_number_token2] = ACTIONS(2316), + [aux_sym__val_number_token3] = ACTIONS(2316), + [aux_sym__val_number_token4] = ACTIONS(2312), + [aux_sym__val_number_token5] = ACTIONS(2312), + [aux_sym__val_number_token6] = ACTIONS(2312), + [anon_sym_DQUOTE] = ACTIONS(2316), + [sym__str_single_quotes] = ACTIONS(2316), + [sym__str_back_ticks] = ACTIONS(2316), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2316), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2316), + }, + [763] = { + [sym_comment] = STATE(763), + [anon_sym_export] = ACTIONS(1765), + [anon_sym_alias] = ACTIONS(1765), + [anon_sym_let] = ACTIONS(1765), + [anon_sym_let_DASHenv] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [aux_sym_cmd_identifier_token1] = ACTIONS(1765), + [aux_sym_cmd_identifier_token2] = ACTIONS(1767), + [aux_sym_cmd_identifier_token3] = ACTIONS(1767), + [aux_sym_cmd_identifier_token4] = ACTIONS(1767), + [aux_sym_cmd_identifier_token5] = ACTIONS(1767), + [aux_sym_cmd_identifier_token6] = ACTIONS(1767), + [aux_sym_cmd_identifier_token7] = ACTIONS(1767), + [aux_sym_cmd_identifier_token8] = ACTIONS(1765), + [aux_sym_cmd_identifier_token9] = ACTIONS(1765), + [aux_sym_cmd_identifier_token10] = ACTIONS(1767), + [aux_sym_cmd_identifier_token11] = ACTIONS(1767), + [aux_sym_cmd_identifier_token12] = ACTIONS(1765), + [aux_sym_cmd_identifier_token13] = ACTIONS(1765), + [aux_sym_cmd_identifier_token14] = ACTIONS(1765), + [aux_sym_cmd_identifier_token15] = ACTIONS(1765), + [aux_sym_cmd_identifier_token16] = ACTIONS(1767), + [aux_sym_cmd_identifier_token17] = ACTIONS(1767), + [aux_sym_cmd_identifier_token18] = ACTIONS(1767), + [aux_sym_cmd_identifier_token19] = ACTIONS(1767), + [aux_sym_cmd_identifier_token20] = ACTIONS(1767), + [aux_sym_cmd_identifier_token21] = ACTIONS(1767), + [aux_sym_cmd_identifier_token22] = ACTIONS(1767), + [aux_sym_cmd_identifier_token23] = ACTIONS(1767), + [aux_sym_cmd_identifier_token24] = ACTIONS(1767), + [aux_sym_cmd_identifier_token25] = ACTIONS(1767), + [aux_sym_cmd_identifier_token26] = ACTIONS(1767), + [aux_sym_cmd_identifier_token27] = ACTIONS(1767), + [aux_sym_cmd_identifier_token28] = ACTIONS(1767), + [aux_sym_cmd_identifier_token29] = ACTIONS(1767), + [aux_sym_cmd_identifier_token30] = ACTIONS(1767), + [aux_sym_cmd_identifier_token31] = ACTIONS(1767), + [aux_sym_cmd_identifier_token32] = ACTIONS(1767), + [aux_sym_cmd_identifier_token33] = ACTIONS(1767), + [aux_sym_cmd_identifier_token34] = ACTIONS(1765), + [aux_sym_cmd_identifier_token35] = ACTIONS(1767), + [aux_sym_cmd_identifier_token36] = ACTIONS(1767), + [aux_sym_cmd_identifier_token37] = ACTIONS(1767), + [aux_sym_cmd_identifier_token38] = ACTIONS(1765), + [aux_sym_cmd_identifier_token39] = ACTIONS(1767), + [aux_sym_cmd_identifier_token40] = ACTIONS(1767), + [anon_sym_def] = ACTIONS(1765), + [anon_sym_export_DASHenv] = ACTIONS(1765), + [anon_sym_extern] = ACTIONS(1765), + [anon_sym_module] = ACTIONS(1765), + [anon_sym_use] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1767), + [anon_sym_error] = ACTIONS(1765), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_in2] = ACTIONS(1765), + [anon_sym_loop] = ACTIONS(1765), + [anon_sym_make] = ACTIONS(1765), + [anon_sym_while] = ACTIONS(1765), + [anon_sym_do] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_else] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_try] = ACTIONS(1765), + [anon_sym_catch] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_source] = ACTIONS(1765), + [anon_sym_source_DASHenv] = ACTIONS(1765), + [anon_sym_register] = ACTIONS(1765), + [anon_sym_hide] = ACTIONS(1765), + [anon_sym_hide_DASHenv] = ACTIONS(1765), + [anon_sym_overlay] = ACTIONS(1765), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_PLUS2] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1765), + [aux_sym__val_number_token5] = ACTIONS(1765), + [aux_sym__val_number_token6] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(992), + [sym_raw_string_begin] = ACTIONS(1767), }, - [770] = { - [sym_comment] = STATE(770), + [764] = { + [sym_comment] = STATE(764), [anon_sym_export] = ACTIONS(1739), [anon_sym_alias] = ACTIONS(1739), [anon_sym_let] = ACTIONS(1739), @@ -156919,10 +156644,604 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1741), }, + [765] = { + [sym_comment] = STATE(765), + [anon_sym_export] = ACTIONS(1785), + [anon_sym_alias] = ACTIONS(1785), + [anon_sym_let] = ACTIONS(1785), + [anon_sym_let_DASHenv] = ACTIONS(1785), + [anon_sym_mut] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(1785), + [aux_sym_cmd_identifier_token1] = ACTIONS(1785), + [aux_sym_cmd_identifier_token2] = ACTIONS(1787), + [aux_sym_cmd_identifier_token3] = ACTIONS(1787), + [aux_sym_cmd_identifier_token4] = ACTIONS(1787), + [aux_sym_cmd_identifier_token5] = ACTIONS(1787), + [aux_sym_cmd_identifier_token6] = ACTIONS(1787), + [aux_sym_cmd_identifier_token7] = ACTIONS(1787), + [aux_sym_cmd_identifier_token8] = ACTIONS(1785), + [aux_sym_cmd_identifier_token9] = ACTIONS(1785), + [aux_sym_cmd_identifier_token10] = ACTIONS(1787), + [aux_sym_cmd_identifier_token11] = ACTIONS(1787), + [aux_sym_cmd_identifier_token12] = ACTIONS(1785), + [aux_sym_cmd_identifier_token13] = ACTIONS(1785), + [aux_sym_cmd_identifier_token14] = ACTIONS(1785), + [aux_sym_cmd_identifier_token15] = ACTIONS(1785), + [aux_sym_cmd_identifier_token16] = ACTIONS(1787), + [aux_sym_cmd_identifier_token17] = ACTIONS(1787), + [aux_sym_cmd_identifier_token18] = ACTIONS(1787), + [aux_sym_cmd_identifier_token19] = ACTIONS(1787), + [aux_sym_cmd_identifier_token20] = ACTIONS(1787), + [aux_sym_cmd_identifier_token21] = ACTIONS(1787), + [aux_sym_cmd_identifier_token22] = ACTIONS(1787), + [aux_sym_cmd_identifier_token23] = ACTIONS(1787), + [aux_sym_cmd_identifier_token24] = ACTIONS(1787), + [aux_sym_cmd_identifier_token25] = ACTIONS(1787), + [aux_sym_cmd_identifier_token26] = ACTIONS(1787), + [aux_sym_cmd_identifier_token27] = ACTIONS(1787), + [aux_sym_cmd_identifier_token28] = ACTIONS(1787), + [aux_sym_cmd_identifier_token29] = ACTIONS(1787), + [aux_sym_cmd_identifier_token30] = ACTIONS(1787), + [aux_sym_cmd_identifier_token31] = ACTIONS(1787), + [aux_sym_cmd_identifier_token32] = ACTIONS(1787), + [aux_sym_cmd_identifier_token33] = ACTIONS(1787), + [aux_sym_cmd_identifier_token34] = ACTIONS(1785), + [aux_sym_cmd_identifier_token35] = ACTIONS(1787), + [aux_sym_cmd_identifier_token36] = ACTIONS(1787), + [aux_sym_cmd_identifier_token37] = ACTIONS(1787), + [aux_sym_cmd_identifier_token38] = ACTIONS(1785), + [aux_sym_cmd_identifier_token39] = ACTIONS(1787), + [aux_sym_cmd_identifier_token40] = ACTIONS(1787), + [anon_sym_def] = ACTIONS(1785), + [anon_sym_export_DASHenv] = ACTIONS(1785), + [anon_sym_extern] = ACTIONS(1785), + [anon_sym_module] = ACTIONS(1785), + [anon_sym_use] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_DOLLAR] = ACTIONS(1787), + [anon_sym_error] = ACTIONS(1785), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_break] = ACTIONS(1785), + [anon_sym_continue] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1785), + [anon_sym_in2] = ACTIONS(1785), + [anon_sym_loop] = ACTIONS(1785), + [anon_sym_make] = ACTIONS(1785), + [anon_sym_while] = ACTIONS(1785), + [anon_sym_do] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1785), + [anon_sym_else] = ACTIONS(1785), + [anon_sym_match] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1787), + [anon_sym_try] = ACTIONS(1785), + [anon_sym_catch] = ACTIONS(1785), + [anon_sym_return] = ACTIONS(1785), + [anon_sym_source] = ACTIONS(1785), + [anon_sym_source_DASHenv] = ACTIONS(1785), + [anon_sym_register] = ACTIONS(1785), + [anon_sym_hide] = ACTIONS(1785), + [anon_sym_hide_DASHenv] = ACTIONS(1785), + [anon_sym_overlay] = ACTIONS(1785), + [anon_sym_as] = ACTIONS(1785), + [anon_sym_PLUS2] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1787), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1787), + [aux_sym__val_number_decimal_token1] = ACTIONS(1785), + [aux_sym__val_number_decimal_token2] = ACTIONS(1787), + [aux_sym__val_number_decimal_token3] = ACTIONS(1787), + [aux_sym__val_number_decimal_token4] = ACTIONS(1787), + [aux_sym__val_number_token1] = ACTIONS(1787), + [aux_sym__val_number_token2] = ACTIONS(1787), + [aux_sym__val_number_token3] = ACTIONS(1787), + [aux_sym__val_number_token4] = ACTIONS(1785), + [aux_sym__val_number_token5] = ACTIONS(1785), + [aux_sym__val_number_token6] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1787), + [sym__str_single_quotes] = ACTIONS(1787), + [sym__str_back_ticks] = ACTIONS(1787), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1787), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1787), + }, + [766] = { + [sym_comment] = STATE(766), + [anon_sym_export] = ACTIONS(1841), + [anon_sym_alias] = ACTIONS(1841), + [anon_sym_let] = ACTIONS(1841), + [anon_sym_let_DASHenv] = ACTIONS(1841), + [anon_sym_mut] = ACTIONS(1841), + [anon_sym_const] = ACTIONS(1841), + [aux_sym_cmd_identifier_token1] = ACTIONS(1841), + [aux_sym_cmd_identifier_token2] = ACTIONS(1843), + [aux_sym_cmd_identifier_token3] = ACTIONS(1843), + [aux_sym_cmd_identifier_token4] = ACTIONS(1843), + [aux_sym_cmd_identifier_token5] = ACTIONS(1843), + [aux_sym_cmd_identifier_token6] = ACTIONS(1843), + [aux_sym_cmd_identifier_token7] = ACTIONS(1843), + [aux_sym_cmd_identifier_token8] = ACTIONS(1841), + [aux_sym_cmd_identifier_token9] = ACTIONS(1841), + [aux_sym_cmd_identifier_token10] = ACTIONS(1843), + [aux_sym_cmd_identifier_token11] = ACTIONS(1843), + [aux_sym_cmd_identifier_token12] = ACTIONS(1841), + [aux_sym_cmd_identifier_token13] = ACTIONS(1841), + [aux_sym_cmd_identifier_token14] = ACTIONS(1841), + [aux_sym_cmd_identifier_token15] = ACTIONS(1841), + [aux_sym_cmd_identifier_token16] = ACTIONS(1843), + [aux_sym_cmd_identifier_token17] = ACTIONS(1843), + [aux_sym_cmd_identifier_token18] = ACTIONS(1843), + [aux_sym_cmd_identifier_token19] = ACTIONS(1843), + [aux_sym_cmd_identifier_token20] = ACTIONS(1843), + [aux_sym_cmd_identifier_token21] = ACTIONS(1843), + [aux_sym_cmd_identifier_token22] = ACTIONS(1843), + [aux_sym_cmd_identifier_token23] = ACTIONS(1843), + [aux_sym_cmd_identifier_token24] = ACTIONS(1843), + [aux_sym_cmd_identifier_token25] = ACTIONS(1843), + [aux_sym_cmd_identifier_token26] = ACTIONS(1843), + [aux_sym_cmd_identifier_token27] = ACTIONS(1843), + [aux_sym_cmd_identifier_token28] = ACTIONS(1843), + [aux_sym_cmd_identifier_token29] = ACTIONS(1843), + [aux_sym_cmd_identifier_token30] = ACTIONS(1843), + [aux_sym_cmd_identifier_token31] = ACTIONS(1843), + [aux_sym_cmd_identifier_token32] = ACTIONS(1843), + [aux_sym_cmd_identifier_token33] = ACTIONS(1843), + [aux_sym_cmd_identifier_token34] = ACTIONS(1841), + [aux_sym_cmd_identifier_token35] = ACTIONS(1843), + [aux_sym_cmd_identifier_token36] = ACTIONS(1843), + [aux_sym_cmd_identifier_token37] = ACTIONS(1843), + [aux_sym_cmd_identifier_token38] = ACTIONS(1841), + [aux_sym_cmd_identifier_token39] = ACTIONS(1843), + [aux_sym_cmd_identifier_token40] = ACTIONS(1843), + [anon_sym_def] = ACTIONS(1841), + [anon_sym_export_DASHenv] = ACTIONS(1841), + [anon_sym_extern] = ACTIONS(1841), + [anon_sym_module] = ACTIONS(1841), + [anon_sym_use] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1843), + [anon_sym_DOLLAR] = ACTIONS(1843), + [anon_sym_error] = ACTIONS(1841), + [anon_sym_DASH2] = ACTIONS(1841), + [anon_sym_break] = ACTIONS(1841), + [anon_sym_continue] = ACTIONS(1841), + [anon_sym_for] = ACTIONS(1841), + [anon_sym_in2] = ACTIONS(1841), + [anon_sym_loop] = ACTIONS(1841), + [anon_sym_make] = ACTIONS(1841), + [anon_sym_while] = ACTIONS(1841), + [anon_sym_do] = ACTIONS(1841), + [anon_sym_if] = ACTIONS(1841), + [anon_sym_else] = ACTIONS(1841), + [anon_sym_match] = ACTIONS(1841), + [anon_sym_RBRACE] = ACTIONS(1843), + [anon_sym_try] = ACTIONS(1841), + [anon_sym_catch] = ACTIONS(1841), + [anon_sym_return] = ACTIONS(1841), + [anon_sym_source] = ACTIONS(1841), + [anon_sym_source_DASHenv] = ACTIONS(1841), + [anon_sym_register] = ACTIONS(1841), + [anon_sym_hide] = ACTIONS(1841), + [anon_sym_hide_DASHenv] = ACTIONS(1841), + [anon_sym_overlay] = ACTIONS(1841), + [anon_sym_as] = ACTIONS(1841), + [anon_sym_PLUS2] = ACTIONS(1841), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1843), + [aux_sym__val_number_decimal_token1] = ACTIONS(1841), + [aux_sym__val_number_decimal_token2] = ACTIONS(1843), + [aux_sym__val_number_decimal_token3] = ACTIONS(1843), + [aux_sym__val_number_decimal_token4] = ACTIONS(1843), + [aux_sym__val_number_token1] = ACTIONS(1843), + [aux_sym__val_number_token2] = ACTIONS(1843), + [aux_sym__val_number_token3] = ACTIONS(1843), + [aux_sym__val_number_token4] = ACTIONS(1841), + [aux_sym__val_number_token5] = ACTIONS(1841), + [aux_sym__val_number_token6] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1843), + [sym__str_single_quotes] = ACTIONS(1843), + [sym__str_back_ticks] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1843), + }, + [767] = { + [sym_comment] = STATE(767), + [anon_sym_export] = ACTIONS(2518), + [anon_sym_alias] = ACTIONS(2518), + [anon_sym_let] = ACTIONS(2518), + [anon_sym_let_DASHenv] = ACTIONS(2518), + [anon_sym_mut] = ACTIONS(2518), + [anon_sym_const] = ACTIONS(2518), + [aux_sym_cmd_identifier_token1] = ACTIONS(2518), + [aux_sym_cmd_identifier_token2] = ACTIONS(2520), + [aux_sym_cmd_identifier_token3] = ACTIONS(2520), + [aux_sym_cmd_identifier_token4] = ACTIONS(2520), + [aux_sym_cmd_identifier_token5] = ACTIONS(2520), + [aux_sym_cmd_identifier_token6] = ACTIONS(2520), + [aux_sym_cmd_identifier_token7] = ACTIONS(2520), + [aux_sym_cmd_identifier_token8] = ACTIONS(2518), + [aux_sym_cmd_identifier_token9] = ACTIONS(2518), + [aux_sym_cmd_identifier_token10] = ACTIONS(2520), + [aux_sym_cmd_identifier_token11] = ACTIONS(2520), + [aux_sym_cmd_identifier_token12] = ACTIONS(2518), + [aux_sym_cmd_identifier_token13] = ACTIONS(2518), + [aux_sym_cmd_identifier_token14] = ACTIONS(2518), + [aux_sym_cmd_identifier_token15] = ACTIONS(2518), + [aux_sym_cmd_identifier_token16] = ACTIONS(2520), + [aux_sym_cmd_identifier_token17] = ACTIONS(2520), + [aux_sym_cmd_identifier_token18] = ACTIONS(2520), + [aux_sym_cmd_identifier_token19] = ACTIONS(2520), + [aux_sym_cmd_identifier_token20] = ACTIONS(2520), + [aux_sym_cmd_identifier_token21] = ACTIONS(2520), + [aux_sym_cmd_identifier_token22] = ACTIONS(2520), + [aux_sym_cmd_identifier_token23] = ACTIONS(2520), + [aux_sym_cmd_identifier_token24] = ACTIONS(2520), + [aux_sym_cmd_identifier_token25] = ACTIONS(2520), + [aux_sym_cmd_identifier_token26] = ACTIONS(2520), + [aux_sym_cmd_identifier_token27] = ACTIONS(2520), + [aux_sym_cmd_identifier_token28] = ACTIONS(2520), + [aux_sym_cmd_identifier_token29] = ACTIONS(2520), + [aux_sym_cmd_identifier_token30] = ACTIONS(2520), + [aux_sym_cmd_identifier_token31] = ACTIONS(2520), + [aux_sym_cmd_identifier_token32] = ACTIONS(2520), + [aux_sym_cmd_identifier_token33] = ACTIONS(2520), + [aux_sym_cmd_identifier_token34] = ACTIONS(2518), + [aux_sym_cmd_identifier_token35] = ACTIONS(2520), + [aux_sym_cmd_identifier_token36] = ACTIONS(2520), + [aux_sym_cmd_identifier_token37] = ACTIONS(2520), + [aux_sym_cmd_identifier_token38] = ACTIONS(2518), + [aux_sym_cmd_identifier_token39] = ACTIONS(2520), + [aux_sym_cmd_identifier_token40] = ACTIONS(2520), + [anon_sym_def] = ACTIONS(2518), + [anon_sym_export_DASHenv] = ACTIONS(2518), + [anon_sym_extern] = ACTIONS(2518), + [anon_sym_module] = ACTIONS(2518), + [anon_sym_use] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2520), + [anon_sym_DOLLAR] = ACTIONS(2520), + [anon_sym_error] = ACTIONS(2518), + [anon_sym_DASH2] = ACTIONS(2518), + [anon_sym_break] = ACTIONS(2518), + [anon_sym_continue] = ACTIONS(2518), + [anon_sym_for] = ACTIONS(2518), + [anon_sym_in2] = ACTIONS(2518), + [anon_sym_loop] = ACTIONS(2518), + [anon_sym_make] = ACTIONS(2518), + [anon_sym_while] = ACTIONS(2518), + [anon_sym_do] = ACTIONS(2518), + [anon_sym_if] = ACTIONS(2518), + [anon_sym_else] = ACTIONS(2518), + [anon_sym_match] = ACTIONS(2518), + [anon_sym_RBRACE] = ACTIONS(2520), + [anon_sym_try] = ACTIONS(2518), + [anon_sym_catch] = ACTIONS(2518), + [anon_sym_return] = ACTIONS(2518), + [anon_sym_source] = ACTIONS(2518), + [anon_sym_source_DASHenv] = ACTIONS(2518), + [anon_sym_register] = ACTIONS(2518), + [anon_sym_hide] = ACTIONS(2518), + [anon_sym_hide_DASHenv] = ACTIONS(2518), + [anon_sym_overlay] = ACTIONS(2518), + [anon_sym_as] = ACTIONS(2518), + [anon_sym_PLUS2] = ACTIONS(2518), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2520), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2520), + [aux_sym__val_number_decimal_token1] = ACTIONS(2518), + [aux_sym__val_number_decimal_token2] = ACTIONS(2520), + [aux_sym__val_number_decimal_token3] = ACTIONS(2520), + [aux_sym__val_number_decimal_token4] = ACTIONS(2520), + [aux_sym__val_number_token1] = ACTIONS(2520), + [aux_sym__val_number_token2] = ACTIONS(2520), + [aux_sym__val_number_token3] = ACTIONS(2520), + [aux_sym__val_number_token4] = ACTIONS(2518), + [aux_sym__val_number_token5] = ACTIONS(2518), + [aux_sym__val_number_token6] = ACTIONS(2518), + [anon_sym_DQUOTE] = ACTIONS(2520), + [sym__str_single_quotes] = ACTIONS(2520), + [sym__str_back_ticks] = ACTIONS(2520), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2520), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2520), + }, + [768] = { + [sym_comment] = STATE(768), + [anon_sym_export] = ACTIONS(2502), + [anon_sym_alias] = ACTIONS(2502), + [anon_sym_let] = ACTIONS(2502), + [anon_sym_let_DASHenv] = ACTIONS(2502), + [anon_sym_mut] = ACTIONS(2502), + [anon_sym_const] = ACTIONS(2502), + [aux_sym_cmd_identifier_token1] = ACTIONS(2502), + [aux_sym_cmd_identifier_token2] = ACTIONS(2504), + [aux_sym_cmd_identifier_token3] = ACTIONS(2504), + [aux_sym_cmd_identifier_token4] = ACTIONS(2504), + [aux_sym_cmd_identifier_token5] = ACTIONS(2504), + [aux_sym_cmd_identifier_token6] = ACTIONS(2504), + [aux_sym_cmd_identifier_token7] = ACTIONS(2504), + [aux_sym_cmd_identifier_token8] = ACTIONS(2502), + [aux_sym_cmd_identifier_token9] = ACTIONS(2502), + [aux_sym_cmd_identifier_token10] = ACTIONS(2504), + [aux_sym_cmd_identifier_token11] = ACTIONS(2504), + [aux_sym_cmd_identifier_token12] = ACTIONS(2502), + [aux_sym_cmd_identifier_token13] = ACTIONS(2502), + [aux_sym_cmd_identifier_token14] = ACTIONS(2502), + [aux_sym_cmd_identifier_token15] = ACTIONS(2502), + [aux_sym_cmd_identifier_token16] = ACTIONS(2504), + [aux_sym_cmd_identifier_token17] = ACTIONS(2504), + [aux_sym_cmd_identifier_token18] = ACTIONS(2504), + [aux_sym_cmd_identifier_token19] = ACTIONS(2504), + [aux_sym_cmd_identifier_token20] = ACTIONS(2504), + [aux_sym_cmd_identifier_token21] = ACTIONS(2504), + [aux_sym_cmd_identifier_token22] = ACTIONS(2504), + [aux_sym_cmd_identifier_token23] = ACTIONS(2504), + [aux_sym_cmd_identifier_token24] = ACTIONS(2504), + [aux_sym_cmd_identifier_token25] = ACTIONS(2504), + [aux_sym_cmd_identifier_token26] = ACTIONS(2504), + [aux_sym_cmd_identifier_token27] = ACTIONS(2504), + [aux_sym_cmd_identifier_token28] = ACTIONS(2504), + [aux_sym_cmd_identifier_token29] = ACTIONS(2504), + [aux_sym_cmd_identifier_token30] = ACTIONS(2504), + [aux_sym_cmd_identifier_token31] = ACTIONS(2504), + [aux_sym_cmd_identifier_token32] = ACTIONS(2504), + [aux_sym_cmd_identifier_token33] = ACTIONS(2504), + [aux_sym_cmd_identifier_token34] = ACTIONS(2502), + [aux_sym_cmd_identifier_token35] = ACTIONS(2504), + [aux_sym_cmd_identifier_token36] = ACTIONS(2504), + [aux_sym_cmd_identifier_token37] = ACTIONS(2504), + [aux_sym_cmd_identifier_token38] = ACTIONS(2502), + [aux_sym_cmd_identifier_token39] = ACTIONS(2504), + [aux_sym_cmd_identifier_token40] = ACTIONS(2504), + [anon_sym_def] = ACTIONS(2502), + [anon_sym_export_DASHenv] = ACTIONS(2502), + [anon_sym_extern] = ACTIONS(2502), + [anon_sym_module] = ACTIONS(2502), + [anon_sym_use] = ACTIONS(2502), + [anon_sym_LPAREN] = ACTIONS(2504), + [anon_sym_DOLLAR] = ACTIONS(2504), + [anon_sym_error] = ACTIONS(2502), + [anon_sym_DASH2] = ACTIONS(2502), + [anon_sym_break] = ACTIONS(2502), + [anon_sym_continue] = ACTIONS(2502), + [anon_sym_for] = ACTIONS(2502), + [anon_sym_in2] = ACTIONS(2502), + [anon_sym_loop] = ACTIONS(2502), + [anon_sym_make] = ACTIONS(2502), + [anon_sym_while] = ACTIONS(2502), + [anon_sym_do] = ACTIONS(2502), + [anon_sym_if] = ACTIONS(2502), + [anon_sym_else] = ACTIONS(2502), + [anon_sym_match] = ACTIONS(2502), + [anon_sym_RBRACE] = ACTIONS(2504), + [anon_sym_try] = ACTIONS(2502), + [anon_sym_catch] = ACTIONS(2502), + [anon_sym_return] = ACTIONS(2502), + [anon_sym_source] = ACTIONS(2502), + [anon_sym_source_DASHenv] = ACTIONS(2502), + [anon_sym_register] = ACTIONS(2502), + [anon_sym_hide] = ACTIONS(2502), + [anon_sym_hide_DASHenv] = ACTIONS(2502), + [anon_sym_overlay] = ACTIONS(2502), + [anon_sym_as] = ACTIONS(2502), + [anon_sym_PLUS2] = ACTIONS(2502), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2504), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2504), + [aux_sym__val_number_decimal_token1] = ACTIONS(2502), + [aux_sym__val_number_decimal_token2] = ACTIONS(2504), + [aux_sym__val_number_decimal_token3] = ACTIONS(2504), + [aux_sym__val_number_decimal_token4] = ACTIONS(2504), + [aux_sym__val_number_token1] = ACTIONS(2504), + [aux_sym__val_number_token2] = ACTIONS(2504), + [aux_sym__val_number_token3] = ACTIONS(2504), + [aux_sym__val_number_token4] = ACTIONS(2502), + [aux_sym__val_number_token5] = ACTIONS(2502), + [aux_sym__val_number_token6] = ACTIONS(2502), + [anon_sym_DQUOTE] = ACTIONS(2504), + [sym__str_single_quotes] = ACTIONS(2504), + [sym__str_back_ticks] = ACTIONS(2504), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2504), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2504), + }, + [769] = { + [sym_comment] = STATE(769), + [anon_sym_export] = ACTIONS(2506), + [anon_sym_alias] = ACTIONS(2506), + [anon_sym_let] = ACTIONS(2506), + [anon_sym_let_DASHenv] = ACTIONS(2506), + [anon_sym_mut] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(2506), + [aux_sym_cmd_identifier_token1] = ACTIONS(2506), + [aux_sym_cmd_identifier_token2] = ACTIONS(2508), + [aux_sym_cmd_identifier_token3] = ACTIONS(2508), + [aux_sym_cmd_identifier_token4] = ACTIONS(2508), + [aux_sym_cmd_identifier_token5] = ACTIONS(2508), + [aux_sym_cmd_identifier_token6] = ACTIONS(2508), + [aux_sym_cmd_identifier_token7] = ACTIONS(2508), + [aux_sym_cmd_identifier_token8] = ACTIONS(2506), + [aux_sym_cmd_identifier_token9] = ACTIONS(2506), + [aux_sym_cmd_identifier_token10] = ACTIONS(2508), + [aux_sym_cmd_identifier_token11] = ACTIONS(2508), + [aux_sym_cmd_identifier_token12] = ACTIONS(2506), + [aux_sym_cmd_identifier_token13] = ACTIONS(2506), + [aux_sym_cmd_identifier_token14] = ACTIONS(2506), + [aux_sym_cmd_identifier_token15] = ACTIONS(2506), + [aux_sym_cmd_identifier_token16] = ACTIONS(2508), + [aux_sym_cmd_identifier_token17] = ACTIONS(2508), + [aux_sym_cmd_identifier_token18] = ACTIONS(2508), + [aux_sym_cmd_identifier_token19] = ACTIONS(2508), + [aux_sym_cmd_identifier_token20] = ACTIONS(2508), + [aux_sym_cmd_identifier_token21] = ACTIONS(2508), + [aux_sym_cmd_identifier_token22] = ACTIONS(2508), + [aux_sym_cmd_identifier_token23] = ACTIONS(2508), + [aux_sym_cmd_identifier_token24] = ACTIONS(2508), + [aux_sym_cmd_identifier_token25] = ACTIONS(2508), + [aux_sym_cmd_identifier_token26] = ACTIONS(2508), + [aux_sym_cmd_identifier_token27] = ACTIONS(2508), + [aux_sym_cmd_identifier_token28] = ACTIONS(2508), + [aux_sym_cmd_identifier_token29] = ACTIONS(2508), + [aux_sym_cmd_identifier_token30] = ACTIONS(2508), + [aux_sym_cmd_identifier_token31] = ACTIONS(2508), + [aux_sym_cmd_identifier_token32] = ACTIONS(2508), + [aux_sym_cmd_identifier_token33] = ACTIONS(2508), + [aux_sym_cmd_identifier_token34] = ACTIONS(2506), + [aux_sym_cmd_identifier_token35] = ACTIONS(2508), + [aux_sym_cmd_identifier_token36] = ACTIONS(2508), + [aux_sym_cmd_identifier_token37] = ACTIONS(2508), + [aux_sym_cmd_identifier_token38] = ACTIONS(2506), + [aux_sym_cmd_identifier_token39] = ACTIONS(2508), + [aux_sym_cmd_identifier_token40] = ACTIONS(2508), + [anon_sym_def] = ACTIONS(2506), + [anon_sym_export_DASHenv] = ACTIONS(2506), + [anon_sym_extern] = ACTIONS(2506), + [anon_sym_module] = ACTIONS(2506), + [anon_sym_use] = ACTIONS(2506), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_DOLLAR] = ACTIONS(2508), + [anon_sym_error] = ACTIONS(2506), + [anon_sym_DASH2] = ACTIONS(2506), + [anon_sym_break] = ACTIONS(2506), + [anon_sym_continue] = ACTIONS(2506), + [anon_sym_for] = ACTIONS(2506), + [anon_sym_in2] = ACTIONS(2506), + [anon_sym_loop] = ACTIONS(2506), + [anon_sym_make] = ACTIONS(2506), + [anon_sym_while] = ACTIONS(2506), + [anon_sym_do] = ACTIONS(2506), + [anon_sym_if] = ACTIONS(2506), + [anon_sym_else] = ACTIONS(2506), + [anon_sym_match] = ACTIONS(2506), + [anon_sym_RBRACE] = ACTIONS(2508), + [anon_sym_try] = ACTIONS(2506), + [anon_sym_catch] = ACTIONS(2506), + [anon_sym_return] = ACTIONS(2506), + [anon_sym_source] = ACTIONS(2506), + [anon_sym_source_DASHenv] = ACTIONS(2506), + [anon_sym_register] = ACTIONS(2506), + [anon_sym_hide] = ACTIONS(2506), + [anon_sym_hide_DASHenv] = ACTIONS(2506), + [anon_sym_overlay] = ACTIONS(2506), + [anon_sym_as] = ACTIONS(2506), + [anon_sym_PLUS2] = ACTIONS(2506), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2508), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2508), + [aux_sym__val_number_decimal_token1] = ACTIONS(2506), + [aux_sym__val_number_decimal_token2] = ACTIONS(2508), + [aux_sym__val_number_decimal_token3] = ACTIONS(2508), + [aux_sym__val_number_decimal_token4] = ACTIONS(2508), + [aux_sym__val_number_token1] = ACTIONS(2508), + [aux_sym__val_number_token2] = ACTIONS(2508), + [aux_sym__val_number_token3] = ACTIONS(2508), + [aux_sym__val_number_token4] = ACTIONS(2506), + [aux_sym__val_number_token5] = ACTIONS(2506), + [aux_sym__val_number_token6] = ACTIONS(2506), + [anon_sym_DQUOTE] = ACTIONS(2508), + [sym__str_single_quotes] = ACTIONS(2508), + [sym__str_back_ticks] = ACTIONS(2508), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2508), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2508), + }, + [770] = { + [sym_comment] = STATE(770), + [anon_sym_export] = ACTIONS(2478), + [anon_sym_alias] = ACTIONS(2478), + [anon_sym_let] = ACTIONS(2478), + [anon_sym_let_DASHenv] = ACTIONS(2478), + [anon_sym_mut] = ACTIONS(2478), + [anon_sym_const] = ACTIONS(2478), + [aux_sym_cmd_identifier_token1] = ACTIONS(2478), + [aux_sym_cmd_identifier_token2] = ACTIONS(2480), + [aux_sym_cmd_identifier_token3] = ACTIONS(2480), + [aux_sym_cmd_identifier_token4] = ACTIONS(2480), + [aux_sym_cmd_identifier_token5] = ACTIONS(2480), + [aux_sym_cmd_identifier_token6] = ACTIONS(2480), + [aux_sym_cmd_identifier_token7] = ACTIONS(2480), + [aux_sym_cmd_identifier_token8] = ACTIONS(2478), + [aux_sym_cmd_identifier_token9] = ACTIONS(2478), + [aux_sym_cmd_identifier_token10] = ACTIONS(2480), + [aux_sym_cmd_identifier_token11] = ACTIONS(2480), + [aux_sym_cmd_identifier_token12] = ACTIONS(2478), + [aux_sym_cmd_identifier_token13] = ACTIONS(2478), + [aux_sym_cmd_identifier_token14] = ACTIONS(2478), + [aux_sym_cmd_identifier_token15] = ACTIONS(2478), + [aux_sym_cmd_identifier_token16] = ACTIONS(2480), + [aux_sym_cmd_identifier_token17] = ACTIONS(2480), + [aux_sym_cmd_identifier_token18] = ACTIONS(2480), + [aux_sym_cmd_identifier_token19] = ACTIONS(2480), + [aux_sym_cmd_identifier_token20] = ACTIONS(2480), + [aux_sym_cmd_identifier_token21] = ACTIONS(2480), + [aux_sym_cmd_identifier_token22] = ACTIONS(2480), + [aux_sym_cmd_identifier_token23] = ACTIONS(2480), + [aux_sym_cmd_identifier_token24] = ACTIONS(2480), + [aux_sym_cmd_identifier_token25] = ACTIONS(2480), + [aux_sym_cmd_identifier_token26] = ACTIONS(2480), + [aux_sym_cmd_identifier_token27] = ACTIONS(2480), + [aux_sym_cmd_identifier_token28] = ACTIONS(2480), + [aux_sym_cmd_identifier_token29] = ACTIONS(2480), + [aux_sym_cmd_identifier_token30] = ACTIONS(2480), + [aux_sym_cmd_identifier_token31] = ACTIONS(2480), + [aux_sym_cmd_identifier_token32] = ACTIONS(2480), + [aux_sym_cmd_identifier_token33] = ACTIONS(2480), + [aux_sym_cmd_identifier_token34] = ACTIONS(2478), + [aux_sym_cmd_identifier_token35] = ACTIONS(2480), + [aux_sym_cmd_identifier_token36] = ACTIONS(2480), + [aux_sym_cmd_identifier_token37] = ACTIONS(2480), + [aux_sym_cmd_identifier_token38] = ACTIONS(2478), + [aux_sym_cmd_identifier_token39] = ACTIONS(2480), + [aux_sym_cmd_identifier_token40] = ACTIONS(2480), + [anon_sym_def] = ACTIONS(2478), + [anon_sym_export_DASHenv] = ACTIONS(2478), + [anon_sym_extern] = ACTIONS(2478), + [anon_sym_module] = ACTIONS(2478), + [anon_sym_use] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2480), + [anon_sym_DOLLAR] = ACTIONS(2480), + [anon_sym_error] = ACTIONS(2478), + [anon_sym_DASH2] = ACTIONS(2478), + [anon_sym_break] = ACTIONS(2478), + [anon_sym_continue] = ACTIONS(2478), + [anon_sym_for] = ACTIONS(2478), + [anon_sym_in2] = ACTIONS(2478), + [anon_sym_loop] = ACTIONS(2478), + [anon_sym_make] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2478), + [anon_sym_do] = ACTIONS(2478), + [anon_sym_if] = ACTIONS(2478), + [anon_sym_else] = ACTIONS(2478), + [anon_sym_match] = ACTIONS(2478), + [anon_sym_RBRACE] = ACTIONS(2480), + [anon_sym_try] = ACTIONS(2478), + [anon_sym_catch] = ACTIONS(2478), + [anon_sym_return] = ACTIONS(2478), + [anon_sym_source] = ACTIONS(2478), + [anon_sym_source_DASHenv] = ACTIONS(2478), + [anon_sym_register] = ACTIONS(2478), + [anon_sym_hide] = ACTIONS(2478), + [anon_sym_hide_DASHenv] = ACTIONS(2478), + [anon_sym_overlay] = ACTIONS(2478), + [anon_sym_as] = ACTIONS(2478), + [anon_sym_PLUS2] = ACTIONS(2478), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2480), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2480), + [aux_sym__val_number_decimal_token1] = ACTIONS(2478), + [aux_sym__val_number_decimal_token2] = ACTIONS(2480), + [aux_sym__val_number_decimal_token3] = ACTIONS(2480), + [aux_sym__val_number_decimal_token4] = ACTIONS(2480), + [aux_sym__val_number_token1] = ACTIONS(2480), + [aux_sym__val_number_token2] = ACTIONS(2480), + [aux_sym__val_number_token3] = ACTIONS(2480), + [aux_sym__val_number_token4] = ACTIONS(2478), + [aux_sym__val_number_token5] = ACTIONS(2478), + [aux_sym__val_number_token6] = ACTIONS(2478), + [anon_sym_DQUOTE] = ACTIONS(2480), + [sym__str_single_quotes] = ACTIONS(2480), + [sym__str_back_ticks] = ACTIONS(2480), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2480), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2480), + }, [771] = { - [aux_sym__pipe_separator] = STATE(771), + [aux_sym__pipe_separator] = STATE(775), [sym_comment] = STATE(771), - [aux_sym_shebang_repeat1] = STATE(5172), + [aux_sym_shebang_repeat1] = STATE(779), [aux_sym_cmd_identifier_token1] = ACTIONS(2522), [aux_sym_cmd_identifier_token2] = ACTIONS(2524), [aux_sym_cmd_identifier_token3] = ACTIONS(2524), @@ -156964,15 +157283,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token39] = ACTIONS(2524), [aux_sym_cmd_identifier_token40] = ACTIONS(2524), [sym__newline] = ACTIONS(2526), - [anon_sym_PIPE] = ACTIONS(2529), - [anon_sym_err_GT_PIPE] = ACTIONS(2529), - [anon_sym_out_GT_PIPE] = ACTIONS(2529), - [anon_sym_e_GT_PIPE] = ACTIONS(2529), - [anon_sym_o_GT_PIPE] = ACTIONS(2529), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2529), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2529), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2529), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2529), + [anon_sym_PIPE] = ACTIONS(2528), + [anon_sym_err_GT_PIPE] = ACTIONS(2528), + [anon_sym_out_GT_PIPE] = ACTIONS(2528), + [anon_sym_e_GT_PIPE] = ACTIONS(2528), + [anon_sym_o_GT_PIPE] = ACTIONS(2528), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2528), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2528), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2528), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2528), [anon_sym_LBRACK] = ACTIONS(2524), [anon_sym_LPAREN] = ACTIONS(2524), [anon_sym_DOLLAR] = ACTIONS(2522), @@ -157018,400 +157337,497 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(2524), }, [772] = { - [aux_sym__pipe_separator] = STATE(771), + [sym__match_pattern_expression] = STATE(3167), + [sym__match_pattern_value] = STATE(3159), + [sym__match_pattern_list] = STATE(3160), + [sym__match_pattern_rest] = STATE(8142), + [sym__match_pattern_record] = STATE(3161), + [sym_expr_parenthesized] = STATE(2822), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(3054), + [sym__val_range] = STATE(7741), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(3055), + [sym_val_bool] = STATE(2877), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(2823), + [sym_val_number] = STATE(3055), + [sym__val_number_decimal] = STATE(2521), + [sym__val_number] = STATE(3020), + [sym_val_duration] = STATE(3055), + [sym_val_filesize] = STATE(3055), + [sym_val_binary] = STATE(3055), + [sym_val_string] = STATE(3055), + [sym__raw_str] = STATE(3067), + [sym__str_double_quotes] = STATE(3067), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7375), + [sym__spread_list] = STATE(7653), + [sym_list_body] = STATE(7747), + [sym_val_entry] = STATE(7361), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(3055), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(2881), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7165), [sym_comment] = STATE(772), - [aux_sym_shebang_repeat1] = STATE(5172), - [aux_sym_cmd_identifier_token1] = ACTIONS(2532), - [aux_sym_cmd_identifier_token2] = ACTIONS(2534), - [aux_sym_cmd_identifier_token3] = ACTIONS(2534), - [aux_sym_cmd_identifier_token4] = ACTIONS(2534), - [aux_sym_cmd_identifier_token5] = ACTIONS(2534), - [aux_sym_cmd_identifier_token6] = ACTIONS(2534), - [aux_sym_cmd_identifier_token7] = ACTIONS(2534), - [aux_sym_cmd_identifier_token8] = ACTIONS(2534), - [aux_sym_cmd_identifier_token9] = ACTIONS(2532), - [aux_sym_cmd_identifier_token10] = ACTIONS(2534), - [aux_sym_cmd_identifier_token11] = ACTIONS(2534), - [aux_sym_cmd_identifier_token12] = ACTIONS(2534), - [aux_sym_cmd_identifier_token13] = ACTIONS(2532), - [aux_sym_cmd_identifier_token14] = ACTIONS(2534), - [aux_sym_cmd_identifier_token15] = ACTIONS(2532), - [aux_sym_cmd_identifier_token16] = ACTIONS(2534), - [aux_sym_cmd_identifier_token17] = ACTIONS(2534), - [aux_sym_cmd_identifier_token18] = ACTIONS(2534), - [aux_sym_cmd_identifier_token19] = ACTIONS(2534), - [aux_sym_cmd_identifier_token20] = ACTIONS(2534), - [aux_sym_cmd_identifier_token21] = ACTIONS(2534), - [aux_sym_cmd_identifier_token22] = ACTIONS(2534), - [aux_sym_cmd_identifier_token23] = ACTIONS(2534), - [aux_sym_cmd_identifier_token24] = ACTIONS(2534), - [aux_sym_cmd_identifier_token25] = ACTIONS(2534), - [aux_sym_cmd_identifier_token26] = ACTIONS(2534), - [aux_sym_cmd_identifier_token27] = ACTIONS(2534), - [aux_sym_cmd_identifier_token28] = ACTIONS(2534), - [aux_sym_cmd_identifier_token29] = ACTIONS(2534), - [aux_sym_cmd_identifier_token30] = ACTIONS(2534), - [aux_sym_cmd_identifier_token31] = ACTIONS(2534), - [aux_sym_cmd_identifier_token32] = ACTIONS(2534), - [aux_sym_cmd_identifier_token33] = ACTIONS(2534), - [aux_sym_cmd_identifier_token34] = ACTIONS(2532), - [aux_sym_cmd_identifier_token35] = ACTIONS(2534), - [aux_sym_cmd_identifier_token36] = ACTIONS(2534), - [aux_sym_cmd_identifier_token37] = ACTIONS(2534), - [aux_sym_cmd_identifier_token38] = ACTIONS(2532), - [aux_sym_cmd_identifier_token39] = ACTIONS(2534), - [aux_sym_cmd_identifier_token40] = ACTIONS(2534), - [sym__newline] = ACTIONS(2536), - [anon_sym_PIPE] = ACTIONS(2538), - [anon_sym_err_GT_PIPE] = ACTIONS(2538), - [anon_sym_out_GT_PIPE] = ACTIONS(2538), - [anon_sym_e_GT_PIPE] = ACTIONS(2538), - [anon_sym_o_GT_PIPE] = ACTIONS(2538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2538), - [anon_sym_LBRACK] = ACTIONS(2534), - [anon_sym_LPAREN] = ACTIONS(2534), - [anon_sym_DOLLAR] = ACTIONS(2532), - [anon_sym_DASH2] = ACTIONS(2532), - [anon_sym_break] = ACTIONS(2532), - [anon_sym_continue] = ACTIONS(2532), - [anon_sym_do] = ACTIONS(2532), - [anon_sym_if] = ACTIONS(2532), - [anon_sym_match] = ACTIONS(2532), - [anon_sym_LBRACE] = ACTIONS(2534), - [anon_sym_DOT_DOT] = ACTIONS(2532), - [anon_sym_try] = ACTIONS(2532), - [anon_sym_return] = ACTIONS(2532), - [anon_sym_where] = ACTIONS(2534), - [aux_sym_expr_unary_token1] = ACTIONS(2534), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2534), - [anon_sym_DOT_DOT_LT] = ACTIONS(2534), - [anon_sym_null] = ACTIONS(2532), - [anon_sym_true] = ACTIONS(2532), - [anon_sym_false] = ACTIONS(2532), - [aux_sym__val_number_decimal_token1] = ACTIONS(2532), - [aux_sym__val_number_decimal_token2] = ACTIONS(2534), - [aux_sym__val_number_decimal_token3] = ACTIONS(2534), - [aux_sym__val_number_decimal_token4] = ACTIONS(2534), - [aux_sym__val_number_token1] = ACTIONS(2534), - [aux_sym__val_number_token2] = ACTIONS(2534), - [aux_sym__val_number_token3] = ACTIONS(2534), - [aux_sym__val_number_token4] = ACTIONS(2532), - [aux_sym__val_number_token5] = ACTIONS(2532), - [aux_sym__val_number_token6] = ACTIONS(2532), - [anon_sym_0b] = ACTIONS(2532), - [anon_sym_0o] = ACTIONS(2532), - [anon_sym_0x] = ACTIONS(2532), - [sym_val_date] = ACTIONS(2534), - [anon_sym_DQUOTE] = ACTIONS(2534), - [sym__str_single_quotes] = ACTIONS(2534), - [sym__str_back_ticks] = ACTIONS(2534), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2534), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2534), - [aux_sym_env_var_token1] = ACTIONS(2532), - [anon_sym_CARET] = ACTIONS(2534), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2534), + [aux_sym_shebang_repeat1] = STATE(897), + [aux_sym_parameter_repeat2] = STATE(6813), + [aux_sym__match_pattern_list_repeat1] = STATE(1286), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(2530), + [anon_sym_LBRACK] = ACTIONS(2532), + [anon_sym_RBRACK] = ACTIONS(2534), + [anon_sym_LPAREN] = ACTIONS(2536), + [anon_sym_COMMA] = ACTIONS(2538), + [anon_sym_DOLLAR] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2542), + [anon_sym_DOT_DOT] = ACTIONS(2544), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2546), + [anon_sym_DOT_DOT_LT] = ACTIONS(2546), + [anon_sym_null] = ACTIONS(2548), + [anon_sym_true] = ACTIONS(2550), + [anon_sym_false] = ACTIONS(2550), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(2552), + [aux_sym__val_number_decimal_token2] = ACTIONS(2554), + [aux_sym__val_number_decimal_token3] = ACTIONS(2556), + [aux_sym__val_number_decimal_token4] = ACTIONS(2558), + [aux_sym__val_number_token1] = ACTIONS(2560), + [aux_sym__val_number_token2] = ACTIONS(2560), + [aux_sym__val_number_token3] = ACTIONS(2560), + [aux_sym__val_number_token4] = ACTIONS(2562), + [aux_sym__val_number_token5] = ACTIONS(2562), + [aux_sym__val_number_token6] = ACTIONS(2562), + [anon_sym_0b] = ACTIONS(2564), + [anon_sym_0o] = ACTIONS(2566), + [anon_sym_0x] = ACTIONS(2566), + [sym_val_date] = ACTIONS(2568), + [anon_sym_DQUOTE] = ACTIONS(2570), + [sym__str_single_quotes] = ACTIONS(2572), + [sym__str_back_ticks] = ACTIONS(2572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2584), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2586), }, [773] = { - [sym__match_pattern_expression] = STATE(3107), - [sym__match_pattern_value] = STATE(3147), - [sym__match_pattern_list] = STATE(3109), - [sym__match_pattern_rest] = STATE(7807), - [sym__match_pattern_record] = STATE(3111), + [sym__match_pattern_expression] = STATE(3167), + [sym__match_pattern_value] = STATE(3159), + [sym__match_pattern_list] = STATE(3160), + [sym__match_pattern_rest] = STATE(8142), + [sym__match_pattern_record] = STATE(3161), [sym_expr_parenthesized] = STATE(2822), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(3063), - [sym__val_range] = STATE(7756), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(3071), - [sym_val_bool] = STATE(2853), - [sym__spread_variable] = STATE(7497), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(3054), + [sym__val_range] = STATE(7741), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(3055), + [sym_val_bool] = STATE(2877), + [sym__spread_variable] = STATE(7565), [sym_val_variable] = STATE(2823), - [sym_val_number] = STATE(3071), - [sym__val_number_decimal] = STATE(2514), - [sym__val_number] = STATE(3004), - [sym_val_duration] = STATE(3071), - [sym_val_filesize] = STATE(3071), - [sym_val_binary] = STATE(3071), - [sym_val_string] = STATE(3071), - [sym__raw_str] = STATE(3073), - [sym__str_double_quotes] = STATE(3073), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7273), - [sym__spread_list] = STATE(7416), - [sym_list_body] = STATE(7890), - [sym_val_entry] = STATE(6851), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(3071), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(2856), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(7053), + [sym_val_number] = STATE(3055), + [sym__val_number_decimal] = STATE(2521), + [sym__val_number] = STATE(3020), + [sym_val_duration] = STATE(3055), + [sym_val_filesize] = STATE(3055), + [sym_val_binary] = STATE(3055), + [sym_val_string] = STATE(3055), + [sym__raw_str] = STATE(3067), + [sym__str_double_quotes] = STATE(3067), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7398), + [sym__spread_list] = STATE(7653), + [sym_list_body] = STATE(7971), + [sym_val_entry] = STATE(7361), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(3055), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(2881), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7165), [sym_comment] = STATE(773), - [aux_sym_shebang_repeat1] = STATE(902), - [aux_sym_parameter_repeat2] = STATE(6505), - [aux_sym__match_pattern_list_repeat1] = STATE(1272), - [aux_sym_list_body_repeat1] = STATE(907), - [sym__newline] = ACTIONS(2540), - [anon_sym_LBRACK] = ACTIONS(2542), - [anon_sym_RBRACK] = ACTIONS(2544), - [anon_sym_LPAREN] = ACTIONS(2546), - [anon_sym_COMMA] = ACTIONS(2548), - [anon_sym_DOLLAR] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2552), - [anon_sym_DOT_DOT] = ACTIONS(2554), + [aux_sym_shebang_repeat1] = STATE(900), + [aux_sym_parameter_repeat2] = STATE(6813), + [aux_sym__match_pattern_list_repeat1] = STATE(1286), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(2530), + [anon_sym_LBRACK] = ACTIONS(2532), + [anon_sym_RBRACK] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2536), + [anon_sym_COMMA] = ACTIONS(2538), + [anon_sym_DOLLAR] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2542), + [anon_sym_DOT_DOT] = ACTIONS(2544), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2556), - [anon_sym_DOT_DOT_LT] = ACTIONS(2556), - [anon_sym_null] = ACTIONS(2558), - [anon_sym_true] = ACTIONS(2560), - [anon_sym_false] = ACTIONS(2560), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2546), + [anon_sym_DOT_DOT_LT] = ACTIONS(2546), + [anon_sym_null] = ACTIONS(2548), + [anon_sym_true] = ACTIONS(2550), + [anon_sym_false] = ACTIONS(2550), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(2562), - [aux_sym__val_number_decimal_token2] = ACTIONS(2564), - [aux_sym__val_number_decimal_token3] = ACTIONS(2566), - [aux_sym__val_number_decimal_token4] = ACTIONS(2568), - [aux_sym__val_number_token1] = ACTIONS(2570), - [aux_sym__val_number_token2] = ACTIONS(2570), - [aux_sym__val_number_token3] = ACTIONS(2570), - [aux_sym__val_number_token4] = ACTIONS(2572), - [aux_sym__val_number_token5] = ACTIONS(2572), - [aux_sym__val_number_token6] = ACTIONS(2572), - [anon_sym_0b] = ACTIONS(2574), - [anon_sym_0o] = ACTIONS(2576), - [anon_sym_0x] = ACTIONS(2576), - [sym_val_date] = ACTIONS(2578), - [anon_sym_DQUOTE] = ACTIONS(2580), - [sym__str_single_quotes] = ACTIONS(2582), - [sym__str_back_ticks] = ACTIONS(2582), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2594), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2596), + [aux_sym__val_number_decimal_token1] = ACTIONS(2552), + [aux_sym__val_number_decimal_token2] = ACTIONS(2554), + [aux_sym__val_number_decimal_token3] = ACTIONS(2556), + [aux_sym__val_number_decimal_token4] = ACTIONS(2558), + [aux_sym__val_number_token1] = ACTIONS(2560), + [aux_sym__val_number_token2] = ACTIONS(2560), + [aux_sym__val_number_token3] = ACTIONS(2560), + [aux_sym__val_number_token4] = ACTIONS(2562), + [aux_sym__val_number_token5] = ACTIONS(2562), + [aux_sym__val_number_token6] = ACTIONS(2562), + [anon_sym_0b] = ACTIONS(2564), + [anon_sym_0o] = ACTIONS(2566), + [anon_sym_0x] = ACTIONS(2566), + [sym_val_date] = ACTIONS(2568), + [anon_sym_DQUOTE] = ACTIONS(2570), + [sym__str_single_quotes] = ACTIONS(2572), + [sym__str_back_ticks] = ACTIONS(2572), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2584), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2586), }, [774] = { - [aux_sym__pipe_separator] = STATE(771), + [aux_sym__pipe_separator] = STATE(775), [sym_comment] = STATE(774), - [aux_sym_shebang_repeat1] = STATE(777), - [aux_sym_cmd_identifier_token1] = ACTIONS(2598), - [aux_sym_cmd_identifier_token2] = ACTIONS(2600), - [aux_sym_cmd_identifier_token3] = ACTIONS(2600), - [aux_sym_cmd_identifier_token4] = ACTIONS(2600), - [aux_sym_cmd_identifier_token5] = ACTIONS(2600), - [aux_sym_cmd_identifier_token6] = ACTIONS(2600), - [aux_sym_cmd_identifier_token7] = ACTIONS(2600), - [aux_sym_cmd_identifier_token8] = ACTIONS(2600), - [aux_sym_cmd_identifier_token9] = ACTIONS(2598), - [aux_sym_cmd_identifier_token10] = ACTIONS(2600), - [aux_sym_cmd_identifier_token11] = ACTIONS(2600), - [aux_sym_cmd_identifier_token12] = ACTIONS(2600), - [aux_sym_cmd_identifier_token13] = ACTIONS(2598), - [aux_sym_cmd_identifier_token14] = ACTIONS(2600), - [aux_sym_cmd_identifier_token15] = ACTIONS(2598), - [aux_sym_cmd_identifier_token16] = ACTIONS(2600), - [aux_sym_cmd_identifier_token17] = ACTIONS(2600), - [aux_sym_cmd_identifier_token18] = ACTIONS(2600), - [aux_sym_cmd_identifier_token19] = ACTIONS(2600), - [aux_sym_cmd_identifier_token20] = ACTIONS(2600), - [aux_sym_cmd_identifier_token21] = ACTIONS(2600), - [aux_sym_cmd_identifier_token22] = ACTIONS(2600), - [aux_sym_cmd_identifier_token23] = ACTIONS(2600), - [aux_sym_cmd_identifier_token24] = ACTIONS(2600), - [aux_sym_cmd_identifier_token25] = ACTIONS(2600), - [aux_sym_cmd_identifier_token26] = ACTIONS(2600), - [aux_sym_cmd_identifier_token27] = ACTIONS(2600), - [aux_sym_cmd_identifier_token28] = ACTIONS(2600), - [aux_sym_cmd_identifier_token29] = ACTIONS(2600), - [aux_sym_cmd_identifier_token30] = ACTIONS(2600), - [aux_sym_cmd_identifier_token31] = ACTIONS(2600), - [aux_sym_cmd_identifier_token32] = ACTIONS(2600), - [aux_sym_cmd_identifier_token33] = ACTIONS(2600), - [aux_sym_cmd_identifier_token34] = ACTIONS(2598), - [aux_sym_cmd_identifier_token35] = ACTIONS(2600), - [aux_sym_cmd_identifier_token36] = ACTIONS(2600), - [aux_sym_cmd_identifier_token37] = ACTIONS(2600), - [aux_sym_cmd_identifier_token38] = ACTIONS(2598), - [aux_sym_cmd_identifier_token39] = ACTIONS(2600), - [aux_sym_cmd_identifier_token40] = ACTIONS(2600), - [sym__newline] = ACTIONS(2602), - [anon_sym_PIPE] = ACTIONS(2538), - [anon_sym_err_GT_PIPE] = ACTIONS(2538), - [anon_sym_out_GT_PIPE] = ACTIONS(2538), - [anon_sym_e_GT_PIPE] = ACTIONS(2538), - [anon_sym_o_GT_PIPE] = ACTIONS(2538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2538), - [anon_sym_LBRACK] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2600), - [anon_sym_DOLLAR] = ACTIONS(2598), - [anon_sym_DASH2] = ACTIONS(2598), - [anon_sym_break] = ACTIONS(2598), - [anon_sym_continue] = ACTIONS(2598), - [anon_sym_do] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2598), - [anon_sym_match] = ACTIONS(2598), - [anon_sym_LBRACE] = ACTIONS(2600), - [anon_sym_DOT_DOT] = ACTIONS(2598), - [anon_sym_try] = ACTIONS(2598), - [anon_sym_return] = ACTIONS(2598), - [anon_sym_where] = ACTIONS(2600), - [aux_sym_expr_unary_token1] = ACTIONS(2600), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2600), - [anon_sym_DOT_DOT_LT] = ACTIONS(2600), - [anon_sym_null] = ACTIONS(2598), - [anon_sym_true] = ACTIONS(2598), - [anon_sym_false] = ACTIONS(2598), - [aux_sym__val_number_decimal_token1] = ACTIONS(2598), - [aux_sym__val_number_decimal_token2] = ACTIONS(2600), - [aux_sym__val_number_decimal_token3] = ACTIONS(2600), - [aux_sym__val_number_decimal_token4] = ACTIONS(2600), - [aux_sym__val_number_token1] = ACTIONS(2600), - [aux_sym__val_number_token2] = ACTIONS(2600), - [aux_sym__val_number_token3] = ACTIONS(2600), - [aux_sym__val_number_token4] = ACTIONS(2598), - [aux_sym__val_number_token5] = ACTIONS(2598), - [aux_sym__val_number_token6] = ACTIONS(2598), - [anon_sym_0b] = ACTIONS(2598), - [anon_sym_0o] = ACTIONS(2598), - [anon_sym_0x] = ACTIONS(2598), - [sym_val_date] = ACTIONS(2600), - [anon_sym_DQUOTE] = ACTIONS(2600), - [sym__str_single_quotes] = ACTIONS(2600), - [sym__str_back_ticks] = ACTIONS(2600), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2600), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2600), - [aux_sym_env_var_token1] = ACTIONS(2598), - [anon_sym_CARET] = ACTIONS(2600), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2600), + [aux_sym_shebang_repeat1] = STATE(5246), + [aux_sym_cmd_identifier_token1] = ACTIONS(2590), + [aux_sym_cmd_identifier_token2] = ACTIONS(2592), + [aux_sym_cmd_identifier_token3] = ACTIONS(2592), + [aux_sym_cmd_identifier_token4] = ACTIONS(2592), + [aux_sym_cmd_identifier_token5] = ACTIONS(2592), + [aux_sym_cmd_identifier_token6] = ACTIONS(2592), + [aux_sym_cmd_identifier_token7] = ACTIONS(2592), + [aux_sym_cmd_identifier_token8] = ACTIONS(2592), + [aux_sym_cmd_identifier_token9] = ACTIONS(2590), + [aux_sym_cmd_identifier_token10] = ACTIONS(2592), + [aux_sym_cmd_identifier_token11] = ACTIONS(2592), + [aux_sym_cmd_identifier_token12] = ACTIONS(2592), + [aux_sym_cmd_identifier_token13] = ACTIONS(2590), + [aux_sym_cmd_identifier_token14] = ACTIONS(2592), + [aux_sym_cmd_identifier_token15] = ACTIONS(2590), + [aux_sym_cmd_identifier_token16] = ACTIONS(2592), + [aux_sym_cmd_identifier_token17] = ACTIONS(2592), + [aux_sym_cmd_identifier_token18] = ACTIONS(2592), + [aux_sym_cmd_identifier_token19] = ACTIONS(2592), + [aux_sym_cmd_identifier_token20] = ACTIONS(2592), + [aux_sym_cmd_identifier_token21] = ACTIONS(2592), + [aux_sym_cmd_identifier_token22] = ACTIONS(2592), + [aux_sym_cmd_identifier_token23] = ACTIONS(2592), + [aux_sym_cmd_identifier_token24] = ACTIONS(2592), + [aux_sym_cmd_identifier_token25] = ACTIONS(2592), + [aux_sym_cmd_identifier_token26] = ACTIONS(2592), + [aux_sym_cmd_identifier_token27] = ACTIONS(2592), + [aux_sym_cmd_identifier_token28] = ACTIONS(2592), + [aux_sym_cmd_identifier_token29] = ACTIONS(2592), + [aux_sym_cmd_identifier_token30] = ACTIONS(2592), + [aux_sym_cmd_identifier_token31] = ACTIONS(2592), + [aux_sym_cmd_identifier_token32] = ACTIONS(2592), + [aux_sym_cmd_identifier_token33] = ACTIONS(2592), + [aux_sym_cmd_identifier_token34] = ACTIONS(2590), + [aux_sym_cmd_identifier_token35] = ACTIONS(2592), + [aux_sym_cmd_identifier_token36] = ACTIONS(2592), + [aux_sym_cmd_identifier_token37] = ACTIONS(2592), + [aux_sym_cmd_identifier_token38] = ACTIONS(2590), + [aux_sym_cmd_identifier_token39] = ACTIONS(2592), + [aux_sym_cmd_identifier_token40] = ACTIONS(2592), + [sym__newline] = ACTIONS(2594), + [anon_sym_PIPE] = ACTIONS(2528), + [anon_sym_err_GT_PIPE] = ACTIONS(2528), + [anon_sym_out_GT_PIPE] = ACTIONS(2528), + [anon_sym_e_GT_PIPE] = ACTIONS(2528), + [anon_sym_o_GT_PIPE] = ACTIONS(2528), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2528), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2528), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2528), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2528), + [anon_sym_LBRACK] = ACTIONS(2592), + [anon_sym_LPAREN] = ACTIONS(2592), + [anon_sym_DOLLAR] = ACTIONS(2590), + [anon_sym_DASH2] = ACTIONS(2590), + [anon_sym_break] = ACTIONS(2590), + [anon_sym_continue] = ACTIONS(2590), + [anon_sym_do] = ACTIONS(2590), + [anon_sym_if] = ACTIONS(2590), + [anon_sym_match] = ACTIONS(2590), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_DOT_DOT] = ACTIONS(2590), + [anon_sym_try] = ACTIONS(2590), + [anon_sym_return] = ACTIONS(2590), + [anon_sym_where] = ACTIONS(2592), + [aux_sym_expr_unary_token1] = ACTIONS(2592), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2592), + [anon_sym_DOT_DOT_LT] = ACTIONS(2592), + [anon_sym_null] = ACTIONS(2590), + [anon_sym_true] = ACTIONS(2590), + [anon_sym_false] = ACTIONS(2590), + [aux_sym__val_number_decimal_token1] = ACTIONS(2590), + [aux_sym__val_number_decimal_token2] = ACTIONS(2592), + [aux_sym__val_number_decimal_token3] = ACTIONS(2592), + [aux_sym__val_number_decimal_token4] = ACTIONS(2592), + [aux_sym__val_number_token1] = ACTIONS(2592), + [aux_sym__val_number_token2] = ACTIONS(2592), + [aux_sym__val_number_token3] = ACTIONS(2592), + [aux_sym__val_number_token4] = ACTIONS(2590), + [aux_sym__val_number_token5] = ACTIONS(2590), + [aux_sym__val_number_token6] = ACTIONS(2590), + [anon_sym_0b] = ACTIONS(2590), + [anon_sym_0o] = ACTIONS(2590), + [anon_sym_0x] = ACTIONS(2590), + [sym_val_date] = ACTIONS(2592), + [anon_sym_DQUOTE] = ACTIONS(2592), + [sym__str_single_quotes] = ACTIONS(2592), + [sym__str_back_ticks] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2592), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [aux_sym_env_var_token1] = ACTIONS(2590), + [anon_sym_CARET] = ACTIONS(2592), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2592), }, [775] = { - [sym__match_pattern_expression] = STATE(3107), - [sym__match_pattern_value] = STATE(3147), - [sym__match_pattern_list] = STATE(3109), - [sym__match_pattern_rest] = STATE(7807), - [sym__match_pattern_record] = STATE(3111), - [sym_expr_parenthesized] = STATE(2822), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(3063), - [sym__val_range] = STATE(7756), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(3071), - [sym_val_bool] = STATE(2853), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(2823), - [sym_val_number] = STATE(3071), - [sym__val_number_decimal] = STATE(2514), - [sym__val_number] = STATE(3004), - [sym_val_duration] = STATE(3071), - [sym_val_filesize] = STATE(3071), - [sym_val_binary] = STATE(3071), - [sym_val_string] = STATE(3071), - [sym__raw_str] = STATE(3073), - [sym__str_double_quotes] = STATE(3073), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7250), - [sym__spread_list] = STATE(7416), - [sym_list_body] = STATE(7633), - [sym_val_entry] = STATE(6851), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(3071), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(2856), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(7053), + [aux_sym__pipe_separator] = STATE(775), [sym_comment] = STATE(775), - [aux_sym_shebang_repeat1] = STATE(899), - [aux_sym_parameter_repeat2] = STATE(6505), - [aux_sym__match_pattern_list_repeat1] = STATE(1272), - [aux_sym_list_body_repeat1] = STATE(907), - [sym__newline] = ACTIONS(2540), - [anon_sym_LBRACK] = ACTIONS(2542), - [anon_sym_RBRACK] = ACTIONS(2604), - [anon_sym_LPAREN] = ACTIONS(2546), - [anon_sym_COMMA] = ACTIONS(2548), - [anon_sym_DOLLAR] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2552), - [anon_sym_DOT_DOT] = ACTIONS(2554), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2556), - [anon_sym_DOT_DOT_LT] = ACTIONS(2556), - [anon_sym_null] = ACTIONS(2558), - [anon_sym_true] = ACTIONS(2560), - [anon_sym_false] = ACTIONS(2560), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(2562), - [aux_sym__val_number_decimal_token2] = ACTIONS(2564), - [aux_sym__val_number_decimal_token3] = ACTIONS(2566), - [aux_sym__val_number_decimal_token4] = ACTIONS(2568), - [aux_sym__val_number_token1] = ACTIONS(2570), - [aux_sym__val_number_token2] = ACTIONS(2570), - [aux_sym__val_number_token3] = ACTIONS(2570), - [aux_sym__val_number_token4] = ACTIONS(2572), - [aux_sym__val_number_token5] = ACTIONS(2572), - [aux_sym__val_number_token6] = ACTIONS(2572), - [anon_sym_0b] = ACTIONS(2574), - [anon_sym_0o] = ACTIONS(2576), - [anon_sym_0x] = ACTIONS(2576), - [sym_val_date] = ACTIONS(2578), - [anon_sym_DQUOTE] = ACTIONS(2580), - [sym__str_single_quotes] = ACTIONS(2582), - [sym__str_back_ticks] = ACTIONS(2582), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2594), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2596), + [aux_sym_shebang_repeat1] = STATE(5246), + [aux_sym_cmd_identifier_token1] = ACTIONS(2596), + [aux_sym_cmd_identifier_token2] = ACTIONS(2598), + [aux_sym_cmd_identifier_token3] = ACTIONS(2598), + [aux_sym_cmd_identifier_token4] = ACTIONS(2598), + [aux_sym_cmd_identifier_token5] = ACTIONS(2598), + [aux_sym_cmd_identifier_token6] = ACTIONS(2598), + [aux_sym_cmd_identifier_token7] = ACTIONS(2598), + [aux_sym_cmd_identifier_token8] = ACTIONS(2598), + [aux_sym_cmd_identifier_token9] = ACTIONS(2596), + [aux_sym_cmd_identifier_token10] = ACTIONS(2598), + [aux_sym_cmd_identifier_token11] = ACTIONS(2598), + [aux_sym_cmd_identifier_token12] = ACTIONS(2598), + [aux_sym_cmd_identifier_token13] = ACTIONS(2596), + [aux_sym_cmd_identifier_token14] = ACTIONS(2598), + [aux_sym_cmd_identifier_token15] = ACTIONS(2596), + [aux_sym_cmd_identifier_token16] = ACTIONS(2598), + [aux_sym_cmd_identifier_token17] = ACTIONS(2598), + [aux_sym_cmd_identifier_token18] = ACTIONS(2598), + [aux_sym_cmd_identifier_token19] = ACTIONS(2598), + [aux_sym_cmd_identifier_token20] = ACTIONS(2598), + [aux_sym_cmd_identifier_token21] = ACTIONS(2598), + [aux_sym_cmd_identifier_token22] = ACTIONS(2598), + [aux_sym_cmd_identifier_token23] = ACTIONS(2598), + [aux_sym_cmd_identifier_token24] = ACTIONS(2598), + [aux_sym_cmd_identifier_token25] = ACTIONS(2598), + [aux_sym_cmd_identifier_token26] = ACTIONS(2598), + [aux_sym_cmd_identifier_token27] = ACTIONS(2598), + [aux_sym_cmd_identifier_token28] = ACTIONS(2598), + [aux_sym_cmd_identifier_token29] = ACTIONS(2598), + [aux_sym_cmd_identifier_token30] = ACTIONS(2598), + [aux_sym_cmd_identifier_token31] = ACTIONS(2598), + [aux_sym_cmd_identifier_token32] = ACTIONS(2598), + [aux_sym_cmd_identifier_token33] = ACTIONS(2598), + [aux_sym_cmd_identifier_token34] = ACTIONS(2596), + [aux_sym_cmd_identifier_token35] = ACTIONS(2598), + [aux_sym_cmd_identifier_token36] = ACTIONS(2598), + [aux_sym_cmd_identifier_token37] = ACTIONS(2598), + [aux_sym_cmd_identifier_token38] = ACTIONS(2596), + [aux_sym_cmd_identifier_token39] = ACTIONS(2598), + [aux_sym_cmd_identifier_token40] = ACTIONS(2598), + [sym__newline] = ACTIONS(2600), + [anon_sym_PIPE] = ACTIONS(2603), + [anon_sym_err_GT_PIPE] = ACTIONS(2603), + [anon_sym_out_GT_PIPE] = ACTIONS(2603), + [anon_sym_e_GT_PIPE] = ACTIONS(2603), + [anon_sym_o_GT_PIPE] = ACTIONS(2603), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2603), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2603), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2603), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2598), + [anon_sym_LPAREN] = ACTIONS(2598), + [anon_sym_DOLLAR] = ACTIONS(2596), + [anon_sym_DASH2] = ACTIONS(2596), + [anon_sym_break] = ACTIONS(2596), + [anon_sym_continue] = ACTIONS(2596), + [anon_sym_do] = ACTIONS(2596), + [anon_sym_if] = ACTIONS(2596), + [anon_sym_match] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2598), + [anon_sym_DOT_DOT] = ACTIONS(2596), + [anon_sym_try] = ACTIONS(2596), + [anon_sym_return] = ACTIONS(2596), + [anon_sym_where] = ACTIONS(2598), + [aux_sym_expr_unary_token1] = ACTIONS(2598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2598), + [anon_sym_DOT_DOT_LT] = ACTIONS(2598), + [anon_sym_null] = ACTIONS(2596), + [anon_sym_true] = ACTIONS(2596), + [anon_sym_false] = ACTIONS(2596), + [aux_sym__val_number_decimal_token1] = ACTIONS(2596), + [aux_sym__val_number_decimal_token2] = ACTIONS(2598), + [aux_sym__val_number_decimal_token3] = ACTIONS(2598), + [aux_sym__val_number_decimal_token4] = ACTIONS(2598), + [aux_sym__val_number_token1] = ACTIONS(2598), + [aux_sym__val_number_token2] = ACTIONS(2598), + [aux_sym__val_number_token3] = ACTIONS(2598), + [aux_sym__val_number_token4] = ACTIONS(2596), + [aux_sym__val_number_token5] = ACTIONS(2596), + [aux_sym__val_number_token6] = ACTIONS(2596), + [anon_sym_0b] = ACTIONS(2596), + [anon_sym_0o] = ACTIONS(2596), + [anon_sym_0x] = ACTIONS(2596), + [sym_val_date] = ACTIONS(2598), + [anon_sym_DQUOTE] = ACTIONS(2598), + [sym__str_single_quotes] = ACTIONS(2598), + [sym__str_back_ticks] = ACTIONS(2598), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2598), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2598), + [aux_sym_env_var_token1] = ACTIONS(2596), + [anon_sym_CARET] = ACTIONS(2598), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2598), }, [776] = { [sym_comment] = STATE(776), - [aux_sym_shebang_repeat1] = STATE(776), + [anon_sym_STAR_STAR] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_mod] = ACTIONS(1587), + [anon_sym_SLASH_SLASH] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_bit_DASHshl] = ACTIONS(1587), + [anon_sym_bit_DASHshr] = ACTIONS(1587), + [anon_sym_EQ_TILDE] = ACTIONS(1587), + [anon_sym_BANG_TILDE] = ACTIONS(1587), + [anon_sym_bit_DASHand] = ACTIONS(1587), + [anon_sym_bit_DASHxor] = ACTIONS(1587), + [anon_sym_bit_DASHor] = ACTIONS(1587), + [anon_sym_and] = ACTIONS(1587), + [anon_sym_xor] = ACTIONS(1587), + [anon_sym_or] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(1587), + [anon_sym_not_DASHin] = ACTIONS(1587), + [anon_sym_starts_DASHwith] = ACTIONS(1587), + [anon_sym_ends_DASHwith] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(1587), + [anon_sym_BANG_EQ] = ACTIONS(1587), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_LT_EQ] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1587), + [aux_sym_cmd_identifier_token41] = ACTIONS(1585), + [sym__newline] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_err_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_GT_PIPE] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), + [anon_sym_GT2] = ACTIONS(1585), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_in2] = ACTIONS(1585), + [anon_sym_RBRACE] = ACTIONS(1585), + [anon_sym_STAR2] = ACTIONS(1585), + [anon_sym_and2] = ACTIONS(1585), + [anon_sym_xor2] = ACTIONS(1585), + [anon_sym_or2] = ACTIONS(1585), + [anon_sym_not_DASHin2] = ACTIONS(1585), + [anon_sym_starts_DASHwith2] = ACTIONS(1585), + [anon_sym_ends_DASHwith2] = ACTIONS(1585), + [anon_sym_EQ_EQ2] = ACTIONS(1585), + [anon_sym_BANG_EQ2] = ACTIONS(1585), + [anon_sym_LT2] = ACTIONS(1585), + [anon_sym_LT_EQ2] = ACTIONS(1585), + [anon_sym_GT_EQ2] = ACTIONS(1585), + [anon_sym_EQ_TILDE2] = ACTIONS(1585), + [anon_sym_BANG_TILDE2] = ACTIONS(1585), + [anon_sym_STAR_STAR2] = ACTIONS(1585), + [anon_sym_PLUS_PLUS2] = ACTIONS(1585), + [anon_sym_SLASH2] = ACTIONS(1585), + [anon_sym_mod2] = ACTIONS(1585), + [anon_sym_SLASH_SLASH2] = ACTIONS(1585), + [anon_sym_PLUS2] = ACTIONS(1585), + [anon_sym_bit_DASHshl2] = ACTIONS(1585), + [anon_sym_bit_DASHshr2] = ACTIONS(1585), + [anon_sym_bit_DASHand2] = ACTIONS(1585), + [anon_sym_bit_DASHxor2] = ACTIONS(1585), + [anon_sym_bit_DASHor2] = ACTIONS(1585), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [aux_sym__immediate_decimal_token1] = ACTIONS(2606), + [aux_sym__immediate_decimal_token2] = ACTIONS(2608), + [sym_filesize_unit] = ACTIONS(1585), + [sym_duration_unit] = ACTIONS(1587), + [aux_sym_record_entry_token1] = ACTIONS(1585), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1585), + [anon_sym_out_GT_GT] = ACTIONS(1585), + [anon_sym_e_GT_GT] = ACTIONS(1585), + [anon_sym_o_GT_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(3), + }, + [777] = { + [sym_comment] = STATE(777), + [aux_sym_shebang_repeat1] = STATE(777), [aux_sym_cmd_identifier_token1] = ACTIONS(1294), [aux_sym_cmd_identifier_token2] = ACTIONS(1296), [aux_sym_cmd_identifier_token3] = ACTIONS(1296), @@ -157452,7 +157868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(1294), [aux_sym_cmd_identifier_token39] = ACTIONS(1296), [aux_sym_cmd_identifier_token40] = ACTIONS(1296), - [sym__newline] = ACTIONS(2606), + [sym__newline] = ACTIONS(2610), [anon_sym_PIPE] = ACTIONS(1296), [anon_sym_err_GT_PIPE] = ACTIONS(1296), [anon_sym_out_GT_PIPE] = ACTIONS(1296), @@ -157506,1845 +157922,586 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1296), }, - [777] = { - [sym_comment] = STATE(777), - [aux_sym_shebang_repeat1] = STATE(776), - [aux_sym_cmd_identifier_token1] = ACTIONS(2609), - [aux_sym_cmd_identifier_token2] = ACTIONS(2611), - [aux_sym_cmd_identifier_token3] = ACTIONS(2611), - [aux_sym_cmd_identifier_token4] = ACTIONS(2611), - [aux_sym_cmd_identifier_token5] = ACTIONS(2611), - [aux_sym_cmd_identifier_token6] = ACTIONS(2611), - [aux_sym_cmd_identifier_token7] = ACTIONS(2611), - [aux_sym_cmd_identifier_token8] = ACTIONS(2611), - [aux_sym_cmd_identifier_token9] = ACTIONS(2609), - [aux_sym_cmd_identifier_token10] = ACTIONS(2611), - [aux_sym_cmd_identifier_token11] = ACTIONS(2611), - [aux_sym_cmd_identifier_token12] = ACTIONS(2611), - [aux_sym_cmd_identifier_token13] = ACTIONS(2609), - [aux_sym_cmd_identifier_token14] = ACTIONS(2611), - [aux_sym_cmd_identifier_token15] = ACTIONS(2609), - [aux_sym_cmd_identifier_token16] = ACTIONS(2611), - [aux_sym_cmd_identifier_token17] = ACTIONS(2611), - [aux_sym_cmd_identifier_token18] = ACTIONS(2611), - [aux_sym_cmd_identifier_token19] = ACTIONS(2611), - [aux_sym_cmd_identifier_token20] = ACTIONS(2611), - [aux_sym_cmd_identifier_token21] = ACTIONS(2611), - [aux_sym_cmd_identifier_token22] = ACTIONS(2611), - [aux_sym_cmd_identifier_token23] = ACTIONS(2611), - [aux_sym_cmd_identifier_token24] = ACTIONS(2611), - [aux_sym_cmd_identifier_token25] = ACTIONS(2611), - [aux_sym_cmd_identifier_token26] = ACTIONS(2611), - [aux_sym_cmd_identifier_token27] = ACTIONS(2611), - [aux_sym_cmd_identifier_token28] = ACTIONS(2611), - [aux_sym_cmd_identifier_token29] = ACTIONS(2611), - [aux_sym_cmd_identifier_token30] = ACTIONS(2611), - [aux_sym_cmd_identifier_token31] = ACTIONS(2611), - [aux_sym_cmd_identifier_token32] = ACTIONS(2611), - [aux_sym_cmd_identifier_token33] = ACTIONS(2611), - [aux_sym_cmd_identifier_token34] = ACTIONS(2609), - [aux_sym_cmd_identifier_token35] = ACTIONS(2611), - [aux_sym_cmd_identifier_token36] = ACTIONS(2611), - [aux_sym_cmd_identifier_token37] = ACTIONS(2611), - [aux_sym_cmd_identifier_token38] = ACTIONS(2609), - [aux_sym_cmd_identifier_token39] = ACTIONS(2611), - [aux_sym_cmd_identifier_token40] = ACTIONS(2611), - [sym__newline] = ACTIONS(2602), - [anon_sym_PIPE] = ACTIONS(2613), - [anon_sym_err_GT_PIPE] = ACTIONS(2613), - [anon_sym_out_GT_PIPE] = ACTIONS(2613), - [anon_sym_e_GT_PIPE] = ACTIONS(2613), - [anon_sym_o_GT_PIPE] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2611), - [anon_sym_LPAREN] = ACTIONS(2611), - [anon_sym_DOLLAR] = ACTIONS(2609), - [anon_sym_DASH2] = ACTIONS(2609), - [anon_sym_break] = ACTIONS(2609), - [anon_sym_continue] = ACTIONS(2609), - [anon_sym_do] = ACTIONS(2609), - [anon_sym_if] = ACTIONS(2609), - [anon_sym_match] = ACTIONS(2609), - [anon_sym_LBRACE] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(2609), - [anon_sym_try] = ACTIONS(2609), - [anon_sym_return] = ACTIONS(2609), - [anon_sym_where] = ACTIONS(2611), - [aux_sym_expr_unary_token1] = ACTIONS(2611), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2611), - [anon_sym_DOT_DOT_LT] = ACTIONS(2611), - [anon_sym_null] = ACTIONS(2609), - [anon_sym_true] = ACTIONS(2609), - [anon_sym_false] = ACTIONS(2609), - [aux_sym__val_number_decimal_token1] = ACTIONS(2609), - [aux_sym__val_number_decimal_token2] = ACTIONS(2611), - [aux_sym__val_number_decimal_token3] = ACTIONS(2611), - [aux_sym__val_number_decimal_token4] = ACTIONS(2611), - [aux_sym__val_number_token1] = ACTIONS(2611), - [aux_sym__val_number_token2] = ACTIONS(2611), - [aux_sym__val_number_token3] = ACTIONS(2611), - [aux_sym__val_number_token4] = ACTIONS(2609), - [aux_sym__val_number_token5] = ACTIONS(2609), - [aux_sym__val_number_token6] = ACTIONS(2609), - [anon_sym_0b] = ACTIONS(2609), - [anon_sym_0o] = ACTIONS(2609), - [anon_sym_0x] = ACTIONS(2609), - [sym_val_date] = ACTIONS(2611), - [anon_sym_DQUOTE] = ACTIONS(2611), - [sym__str_single_quotes] = ACTIONS(2611), - [sym__str_back_ticks] = ACTIONS(2611), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2611), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2611), - [aux_sym_env_var_token1] = ACTIONS(2609), - [anon_sym_CARET] = ACTIONS(2611), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2611), - }, [778] = { - [sym_expr_parenthesized] = STATE(1518), - [sym_val_range] = STATE(1800), - [sym__val_range] = STATE(7565), - [sym__val_range_with_end] = STATE(7371), - [sym__value] = STATE(1800), - [sym_val_nothing] = STATE(1738), - [sym_val_bool] = STATE(1587), - [sym_val_variable] = STATE(1536), - [sym_val_number] = STATE(1738), - [sym__val_number_decimal] = STATE(1289), - [sym__val_number] = STATE(1765), - [sym_val_duration] = STATE(1738), - [sym_val_filesize] = STATE(1738), - [sym_val_binary] = STATE(1738), - [sym_val_string] = STATE(1738), - [sym__raw_str] = STATE(1783), - [sym__str_double_quotes] = STATE(1783), - [sym_val_interpolated] = STATE(1738), - [sym__inter_single_quotes] = STATE(1768), - [sym__inter_double_quotes] = STATE(1769), - [sym_val_list] = STATE(1738), - [sym_val_record] = STATE(1738), - [sym_val_table] = STATE(1738), - [sym_val_closure] = STATE(1738), - [sym__flag] = STATE(1800), - [sym_short_flag] = STATE(1831), - [sym_long_flag] = STATE(1831), - [sym_unquoted] = STATE(1589), - [sym__unquoted_with_expr] = STATE(1801), - [sym__unquoted_anonymous_prefix] = STATE(7309), [sym_comment] = STATE(778), - [aux_sym_ctrl_do_repeat2] = STATE(779), - [sym__newline] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2615), - [anon_sym_PIPE] = ACTIONS(2615), - [anon_sym_err_GT_PIPE] = ACTIONS(2615), - [anon_sym_out_GT_PIPE] = ACTIONS(2615), - [anon_sym_e_GT_PIPE] = ACTIONS(2615), - [anon_sym_o_GT_PIPE] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2615), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_LPAREN] = ACTIONS(2619), - [anon_sym_RPAREN] = ACTIONS(2615), - [anon_sym_DOLLAR] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(2623), - [anon_sym_DASH2] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2627), - [anon_sym_RBRACE] = ACTIONS(2615), - [anon_sym_DOT_DOT] = ACTIONS(2629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2631), - [anon_sym_DOT_DOT_LT] = ACTIONS(2631), - [anon_sym_null] = ACTIONS(2633), - [anon_sym_true] = ACTIONS(2635), - [anon_sym_false] = ACTIONS(2635), - [aux_sym__val_number_decimal_token1] = ACTIONS(2637), - [aux_sym__val_number_decimal_token2] = ACTIONS(2639), - [aux_sym__val_number_decimal_token3] = ACTIONS(2641), - [aux_sym__val_number_decimal_token4] = ACTIONS(2643), - [aux_sym__val_number_token1] = ACTIONS(2645), - [aux_sym__val_number_token2] = ACTIONS(2645), - [aux_sym__val_number_token3] = ACTIONS(2645), - [aux_sym__val_number_token4] = ACTIONS(2647), - [aux_sym__val_number_token5] = ACTIONS(2647), - [aux_sym__val_number_token6] = ACTIONS(2647), - [anon_sym_0b] = ACTIONS(2649), - [anon_sym_0o] = ACTIONS(2651), - [anon_sym_0x] = ACTIONS(2651), - [sym_val_date] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2655), - [sym__str_single_quotes] = ACTIONS(2657), - [sym__str_back_ticks] = ACTIONS(2657), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2659), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2661), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(2667), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2669), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_bit_DASHshl] = ACTIONS(1575), + [anon_sym_bit_DASHshr] = ACTIONS(1575), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_BANG_TILDE] = ACTIONS(1575), + [anon_sym_bit_DASHand] = ACTIONS(1575), + [anon_sym_bit_DASHxor] = ACTIONS(1575), + [anon_sym_bit_DASHor] = ACTIONS(1575), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_not_DASHin] = ACTIONS(1575), + [anon_sym_starts_DASHwith] = ACTIONS(1575), + [anon_sym_ends_DASHwith] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1575), + [aux_sym_cmd_identifier_token41] = ACTIONS(1573), + [sym__newline] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_err_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_GT_PIPE] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_RBRACE] = ACTIONS(1573), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1573), + [anon_sym_xor2] = ACTIONS(1573), + [anon_sym_or2] = ACTIONS(1573), + [anon_sym_not_DASHin2] = ACTIONS(1573), + [anon_sym_starts_DASHwith2] = ACTIONS(1573), + [anon_sym_ends_DASHwith2] = ACTIONS(1573), + [anon_sym_EQ_EQ2] = ACTIONS(1573), + [anon_sym_BANG_EQ2] = ACTIONS(1573), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1573), + [anon_sym_GT_EQ2] = ACTIONS(1573), + [anon_sym_EQ_TILDE2] = ACTIONS(1573), + [anon_sym_BANG_TILDE2] = ACTIONS(1573), + [anon_sym_STAR_STAR2] = ACTIONS(1573), + [anon_sym_PLUS_PLUS2] = ACTIONS(1573), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1573), + [anon_sym_SLASH_SLASH2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1573), + [anon_sym_bit_DASHshr2] = ACTIONS(1573), + [anon_sym_bit_DASHand2] = ACTIONS(1573), + [anon_sym_bit_DASHxor2] = ACTIONS(1573), + [anon_sym_bit_DASHor2] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT] = ACTIONS(2613), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(2615), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [aux_sym_record_entry_token1] = ACTIONS(1573), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1573), + [anon_sym_out_GT_GT] = ACTIONS(1573), + [anon_sym_e_GT_GT] = ACTIONS(1573), + [anon_sym_o_GT_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), + [anon_sym_POUND] = ACTIONS(3), }, [779] = { - [sym_expr_parenthesized] = STATE(1518), - [sym_val_range] = STATE(1800), - [sym__val_range] = STATE(7565), - [sym__val_range_with_end] = STATE(7371), - [sym__value] = STATE(1800), - [sym_val_nothing] = STATE(1738), - [sym_val_bool] = STATE(1587), - [sym_val_variable] = STATE(1536), - [sym_val_number] = STATE(1738), - [sym__val_number_decimal] = STATE(1289), - [sym__val_number] = STATE(1765), - [sym_val_duration] = STATE(1738), - [sym_val_filesize] = STATE(1738), - [sym_val_binary] = STATE(1738), - [sym_val_string] = STATE(1738), - [sym__raw_str] = STATE(1783), - [sym__str_double_quotes] = STATE(1783), - [sym_val_interpolated] = STATE(1738), - [sym__inter_single_quotes] = STATE(1768), - [sym__inter_double_quotes] = STATE(1769), - [sym_val_list] = STATE(1738), - [sym_val_record] = STATE(1738), - [sym_val_table] = STATE(1738), - [sym_val_closure] = STATE(1738), - [sym__flag] = STATE(1800), - [sym_short_flag] = STATE(1831), - [sym_long_flag] = STATE(1831), - [sym_unquoted] = STATE(1589), - [sym__unquoted_with_expr] = STATE(1801), - [sym__unquoted_anonymous_prefix] = STATE(7309), [sym_comment] = STATE(779), - [aux_sym_ctrl_do_repeat2] = STATE(784), - [sym__newline] = ACTIONS(2671), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_PIPE] = ACTIONS(2671), - [anon_sym_err_GT_PIPE] = ACTIONS(2671), - [anon_sym_out_GT_PIPE] = ACTIONS(2671), - [anon_sym_e_GT_PIPE] = ACTIONS(2671), - [anon_sym_o_GT_PIPE] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2671), - [anon_sym_LBRACK] = ACTIONS(2617), + [aux_sym_shebang_repeat1] = STATE(777), + [aux_sym_cmd_identifier_token1] = ACTIONS(2617), + [aux_sym_cmd_identifier_token2] = ACTIONS(2619), + [aux_sym_cmd_identifier_token3] = ACTIONS(2619), + [aux_sym_cmd_identifier_token4] = ACTIONS(2619), + [aux_sym_cmd_identifier_token5] = ACTIONS(2619), + [aux_sym_cmd_identifier_token6] = ACTIONS(2619), + [aux_sym_cmd_identifier_token7] = ACTIONS(2619), + [aux_sym_cmd_identifier_token8] = ACTIONS(2619), + [aux_sym_cmd_identifier_token9] = ACTIONS(2617), + [aux_sym_cmd_identifier_token10] = ACTIONS(2619), + [aux_sym_cmd_identifier_token11] = ACTIONS(2619), + [aux_sym_cmd_identifier_token12] = ACTIONS(2619), + [aux_sym_cmd_identifier_token13] = ACTIONS(2617), + [aux_sym_cmd_identifier_token14] = ACTIONS(2619), + [aux_sym_cmd_identifier_token15] = ACTIONS(2617), + [aux_sym_cmd_identifier_token16] = ACTIONS(2619), + [aux_sym_cmd_identifier_token17] = ACTIONS(2619), + [aux_sym_cmd_identifier_token18] = ACTIONS(2619), + [aux_sym_cmd_identifier_token19] = ACTIONS(2619), + [aux_sym_cmd_identifier_token20] = ACTIONS(2619), + [aux_sym_cmd_identifier_token21] = ACTIONS(2619), + [aux_sym_cmd_identifier_token22] = ACTIONS(2619), + [aux_sym_cmd_identifier_token23] = ACTIONS(2619), + [aux_sym_cmd_identifier_token24] = ACTIONS(2619), + [aux_sym_cmd_identifier_token25] = ACTIONS(2619), + [aux_sym_cmd_identifier_token26] = ACTIONS(2619), + [aux_sym_cmd_identifier_token27] = ACTIONS(2619), + [aux_sym_cmd_identifier_token28] = ACTIONS(2619), + [aux_sym_cmd_identifier_token29] = ACTIONS(2619), + [aux_sym_cmd_identifier_token30] = ACTIONS(2619), + [aux_sym_cmd_identifier_token31] = ACTIONS(2619), + [aux_sym_cmd_identifier_token32] = ACTIONS(2619), + [aux_sym_cmd_identifier_token33] = ACTIONS(2619), + [aux_sym_cmd_identifier_token34] = ACTIONS(2617), + [aux_sym_cmd_identifier_token35] = ACTIONS(2619), + [aux_sym_cmd_identifier_token36] = ACTIONS(2619), + [aux_sym_cmd_identifier_token37] = ACTIONS(2619), + [aux_sym_cmd_identifier_token38] = ACTIONS(2617), + [aux_sym_cmd_identifier_token39] = ACTIONS(2619), + [aux_sym_cmd_identifier_token40] = ACTIONS(2619), + [sym__newline] = ACTIONS(2526), + [anon_sym_PIPE] = ACTIONS(2621), + [anon_sym_err_GT_PIPE] = ACTIONS(2621), + [anon_sym_out_GT_PIPE] = ACTIONS(2621), + [anon_sym_e_GT_PIPE] = ACTIONS(2621), + [anon_sym_o_GT_PIPE] = ACTIONS(2621), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2621), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2621), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2621), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2621), + [anon_sym_LBRACK] = ACTIONS(2619), [anon_sym_LPAREN] = ACTIONS(2619), - [anon_sym_RPAREN] = ACTIONS(2671), - [anon_sym_DOLLAR] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(2623), - [anon_sym_DASH2] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2627), - [anon_sym_RBRACE] = ACTIONS(2671), - [anon_sym_DOT_DOT] = ACTIONS(2629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2631), - [anon_sym_DOT_DOT_LT] = ACTIONS(2631), - [anon_sym_null] = ACTIONS(2633), - [anon_sym_true] = ACTIONS(2635), - [anon_sym_false] = ACTIONS(2635), - [aux_sym__val_number_decimal_token1] = ACTIONS(2637), - [aux_sym__val_number_decimal_token2] = ACTIONS(2639), - [aux_sym__val_number_decimal_token3] = ACTIONS(2641), - [aux_sym__val_number_decimal_token4] = ACTIONS(2643), - [aux_sym__val_number_token1] = ACTIONS(2645), - [aux_sym__val_number_token2] = ACTIONS(2645), - [aux_sym__val_number_token3] = ACTIONS(2645), - [aux_sym__val_number_token4] = ACTIONS(2647), - [aux_sym__val_number_token5] = ACTIONS(2647), - [aux_sym__val_number_token6] = ACTIONS(2647), - [anon_sym_0b] = ACTIONS(2649), - [anon_sym_0o] = ACTIONS(2651), - [anon_sym_0x] = ACTIONS(2651), - [sym_val_date] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2655), - [sym__str_single_quotes] = ACTIONS(2657), - [sym__str_back_ticks] = ACTIONS(2657), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2659), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2661), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(2667), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2669), + [anon_sym_DOLLAR] = ACTIONS(2617), + [anon_sym_DASH2] = ACTIONS(2617), + [anon_sym_break] = ACTIONS(2617), + [anon_sym_continue] = ACTIONS(2617), + [anon_sym_do] = ACTIONS(2617), + [anon_sym_if] = ACTIONS(2617), + [anon_sym_match] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_try] = ACTIONS(2617), + [anon_sym_return] = ACTIONS(2617), + [anon_sym_where] = ACTIONS(2619), + [aux_sym_expr_unary_token1] = ACTIONS(2619), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2619), + [anon_sym_DOT_DOT_LT] = ACTIONS(2619), + [anon_sym_null] = ACTIONS(2617), + [anon_sym_true] = ACTIONS(2617), + [anon_sym_false] = ACTIONS(2617), + [aux_sym__val_number_decimal_token1] = ACTIONS(2617), + [aux_sym__val_number_decimal_token2] = ACTIONS(2619), + [aux_sym__val_number_decimal_token3] = ACTIONS(2619), + [aux_sym__val_number_decimal_token4] = ACTIONS(2619), + [aux_sym__val_number_token1] = ACTIONS(2619), + [aux_sym__val_number_token2] = ACTIONS(2619), + [aux_sym__val_number_token3] = ACTIONS(2619), + [aux_sym__val_number_token4] = ACTIONS(2617), + [aux_sym__val_number_token5] = ACTIONS(2617), + [aux_sym__val_number_token6] = ACTIONS(2617), + [anon_sym_0b] = ACTIONS(2617), + [anon_sym_0o] = ACTIONS(2617), + [anon_sym_0x] = ACTIONS(2617), + [sym_val_date] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2619), + [sym__str_single_quotes] = ACTIONS(2619), + [sym__str_back_ticks] = ACTIONS(2619), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2619), + [aux_sym_env_var_token1] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(2619), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2619), }, [780] = { - [sym_expr_parenthesized] = STATE(1518), - [sym_val_range] = STATE(1800), - [sym__val_range] = STATE(7565), - [sym__val_range_with_end] = STATE(7371), - [sym__value] = STATE(1800), - [sym_val_nothing] = STATE(1738), - [sym_val_bool] = STATE(1587), - [sym_val_variable] = STATE(1536), - [sym_val_number] = STATE(1738), - [sym__val_number_decimal] = STATE(1289), - [sym__val_number] = STATE(1765), - [sym_val_duration] = STATE(1738), - [sym_val_filesize] = STATE(1738), - [sym_val_binary] = STATE(1738), - [sym_val_string] = STATE(1738), - [sym__raw_str] = STATE(1783), - [sym__str_double_quotes] = STATE(1783), - [sym_val_interpolated] = STATE(1738), - [sym__inter_single_quotes] = STATE(1768), - [sym__inter_double_quotes] = STATE(1769), - [sym_val_list] = STATE(1738), - [sym_val_record] = STATE(1738), - [sym_val_table] = STATE(1738), - [sym_val_closure] = STATE(1738), - [sym__flag] = STATE(1800), - [sym_short_flag] = STATE(1831), - [sym_long_flag] = STATE(1831), - [sym_unquoted] = STATE(1589), - [sym__unquoted_with_expr] = STATE(1801), - [sym__unquoted_anonymous_prefix] = STATE(7309), + [sym_expr_parenthesized] = STATE(1561), + [sym_val_range] = STATE(1826), + [sym__val_range] = STATE(7964), + [sym__val_range_with_end] = STATE(7619), + [sym__value] = STATE(1826), + [sym_val_nothing] = STATE(1829), + [sym_val_bool] = STATE(1634), + [sym_val_variable] = STATE(1515), + [sym_val_number] = STATE(1829), + [sym__val_number_decimal] = STATE(1333), + [sym__val_number] = STATE(1779), + [sym_val_duration] = STATE(1829), + [sym_val_filesize] = STATE(1829), + [sym_val_binary] = STATE(1829), + [sym_val_string] = STATE(1829), + [sym__raw_str] = STATE(1791), + [sym__str_double_quotes] = STATE(1791), + [sym_val_interpolated] = STATE(1829), + [sym__inter_single_quotes] = STATE(1798), + [sym__inter_double_quotes] = STATE(1799), + [sym_val_list] = STATE(1829), + [sym_val_record] = STATE(1829), + [sym_val_table] = STATE(1829), + [sym_val_closure] = STATE(1829), + [sym_short_flag] = STATE(1826), + [sym_long_flag] = STATE(1826), + [sym_unquoted] = STATE(1638), + [sym__unquoted_with_expr] = STATE(1828), + [sym__unquoted_anonymous_prefix] = STATE(6843), [sym_comment] = STATE(780), - [aux_sym_ctrl_do_repeat2] = STATE(788), - [sym__newline] = ACTIONS(2671), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_PIPE] = ACTIONS(2671), - [anon_sym_err_GT_PIPE] = ACTIONS(2671), - [anon_sym_out_GT_PIPE] = ACTIONS(2671), - [anon_sym_e_GT_PIPE] = ACTIONS(2671), - [anon_sym_o_GT_PIPE] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2671), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_LPAREN] = ACTIONS(2619), - [anon_sym_RPAREN] = ACTIONS(2671), - [anon_sym_DOLLAR] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(2623), - [anon_sym_DASH2] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2627), - [anon_sym_RBRACE] = ACTIONS(2671), - [anon_sym_DOT_DOT] = ACTIONS(2629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2631), - [anon_sym_DOT_DOT_LT] = ACTIONS(2631), - [anon_sym_null] = ACTIONS(2633), - [anon_sym_true] = ACTIONS(2635), - [anon_sym_false] = ACTIONS(2635), - [aux_sym__val_number_decimal_token1] = ACTIONS(2637), - [aux_sym__val_number_decimal_token2] = ACTIONS(2639), - [aux_sym__val_number_decimal_token3] = ACTIONS(2641), - [aux_sym__val_number_decimal_token4] = ACTIONS(2643), - [aux_sym__val_number_token1] = ACTIONS(2645), - [aux_sym__val_number_token2] = ACTIONS(2645), - [aux_sym__val_number_token3] = ACTIONS(2645), - [aux_sym__val_number_token4] = ACTIONS(2647), - [aux_sym__val_number_token5] = ACTIONS(2647), - [aux_sym__val_number_token6] = ACTIONS(2647), - [anon_sym_0b] = ACTIONS(2649), - [anon_sym_0o] = ACTIONS(2651), - [anon_sym_0x] = ACTIONS(2651), - [sym_val_date] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2655), - [sym__str_single_quotes] = ACTIONS(2657), - [sym__str_back_ticks] = ACTIONS(2657), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2659), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2661), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(2667), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2669), + [aux_sym_ctrl_do_repeat2] = STATE(785), + [sym__newline] = ACTIONS(2623), + [anon_sym_SEMI] = ACTIONS(2623), + [anon_sym_PIPE] = ACTIONS(2623), + [anon_sym_err_GT_PIPE] = ACTIONS(2623), + [anon_sym_out_GT_PIPE] = ACTIONS(2623), + [anon_sym_e_GT_PIPE] = ACTIONS(2623), + [anon_sym_o_GT_PIPE] = ACTIONS(2623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_RPAREN] = ACTIONS(2623), + [anon_sym_DOLLAR] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_DASH2] = ACTIONS(2633), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_RBRACE] = ACTIONS(2623), + [anon_sym_DOT_DOT] = ACTIONS(2637), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2639), + [anon_sym_DOT_DOT_LT] = ACTIONS(2639), + [anon_sym_null] = ACTIONS(2641), + [anon_sym_true] = ACTIONS(2643), + [anon_sym_false] = ACTIONS(2643), + [aux_sym__val_number_decimal_token1] = ACTIONS(2645), + [aux_sym__val_number_decimal_token2] = ACTIONS(2647), + [aux_sym__val_number_decimal_token3] = ACTIONS(2649), + [aux_sym__val_number_decimal_token4] = ACTIONS(2651), + [aux_sym__val_number_token1] = ACTIONS(2653), + [aux_sym__val_number_token2] = ACTIONS(2653), + [aux_sym__val_number_token3] = ACTIONS(2653), + [aux_sym__val_number_token4] = ACTIONS(2655), + [aux_sym__val_number_token5] = ACTIONS(2655), + [aux_sym__val_number_token6] = ACTIONS(2655), + [anon_sym_0b] = ACTIONS(2657), + [anon_sym_0o] = ACTIONS(2659), + [anon_sym_0x] = ACTIONS(2659), + [sym_val_date] = ACTIONS(2661), + [anon_sym_DQUOTE] = ACTIONS(2663), + [sym__str_single_quotes] = ACTIONS(2665), + [sym__str_back_ticks] = ACTIONS(2665), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2667), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2669), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(2675), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2677), }, [781] = { - [sym_expr_parenthesized] = STATE(1601), - [sym_val_range] = STATE(1949), - [sym__val_range] = STATE(7565), - [sym__val_range_with_end] = STATE(7371), - [sym__value] = STATE(1949), - [sym_val_nothing] = STATE(1738), - [sym_val_bool] = STATE(1587), - [sym_val_variable] = STATE(1536), - [sym_val_number] = STATE(1738), - [sym__val_number_decimal] = STATE(1289), - [sym__val_number] = STATE(1765), - [sym_val_duration] = STATE(1738), - [sym_val_filesize] = STATE(1738), - [sym_val_binary] = STATE(1738), - [sym_val_string] = STATE(1738), - [sym__raw_str] = STATE(1783), - [sym__str_double_quotes] = STATE(1783), - [sym_val_interpolated] = STATE(1738), - [sym__inter_single_quotes] = STATE(1768), - [sym__inter_double_quotes] = STATE(1769), - [sym_val_list] = STATE(1738), - [sym_val_record] = STATE(1738), - [sym_val_table] = STATE(1738), - [sym_val_closure] = STATE(1738), - [sym__flag] = STATE(1949), - [sym_short_flag] = STATE(1831), - [sym_long_flag] = STATE(1831), - [sym_unquoted] = STATE(1720), - [sym__unquoted_with_expr] = STATE(1950), - [sym__unquoted_anonymous_prefix] = STATE(7309), + [sym_expr_parenthesized] = STATE(1561), + [sym_val_range] = STATE(1826), + [sym__val_range] = STATE(7964), + [sym__val_range_with_end] = STATE(7619), + [sym__value] = STATE(1826), + [sym_val_nothing] = STATE(1829), + [sym_val_bool] = STATE(1634), + [sym_val_variable] = STATE(1515), + [sym_val_number] = STATE(1829), + [sym__val_number_decimal] = STATE(1333), + [sym__val_number] = STATE(1779), + [sym_val_duration] = STATE(1829), + [sym_val_filesize] = STATE(1829), + [sym_val_binary] = STATE(1829), + [sym_val_string] = STATE(1829), + [sym__raw_str] = STATE(1791), + [sym__str_double_quotes] = STATE(1791), + [sym_val_interpolated] = STATE(1829), + [sym__inter_single_quotes] = STATE(1798), + [sym__inter_double_quotes] = STATE(1799), + [sym_val_list] = STATE(1829), + [sym_val_record] = STATE(1829), + [sym_val_table] = STATE(1829), + [sym_val_closure] = STATE(1829), + [sym_short_flag] = STATE(1826), + [sym_long_flag] = STATE(1826), + [sym_unquoted] = STATE(1638), + [sym__unquoted_with_expr] = STATE(1828), + [sym__unquoted_anonymous_prefix] = STATE(6843), [sym_comment] = STATE(781), - [aux_sym_shebang_repeat1] = STATE(967), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(785), - [sym__newline] = ACTIONS(2673), - [anon_sym_SEMI] = ACTIONS(2673), - [anon_sym_PIPE] = ACTIONS(2673), - [anon_sym_err_GT_PIPE] = ACTIONS(2673), - [anon_sym_out_GT_PIPE] = ACTIONS(2673), - [anon_sym_e_GT_PIPE] = ACTIONS(2673), - [anon_sym_o_GT_PIPE] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_LPAREN] = ACTIONS(2619), - [anon_sym_RPAREN] = ACTIONS(2673), - [anon_sym_DOLLAR] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(2623), - [anon_sym_DASH2] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2627), - [anon_sym_DOT_DOT] = ACTIONS(2629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2631), - [anon_sym_DOT_DOT_LT] = ACTIONS(2631), - [anon_sym_null] = ACTIONS(2633), - [anon_sym_true] = ACTIONS(2635), - [anon_sym_false] = ACTIONS(2635), - [aux_sym__val_number_decimal_token1] = ACTIONS(2637), - [aux_sym__val_number_decimal_token2] = ACTIONS(2639), - [aux_sym__val_number_decimal_token3] = ACTIONS(2641), - [aux_sym__val_number_decimal_token4] = ACTIONS(2643), - [aux_sym__val_number_token1] = ACTIONS(2645), - [aux_sym__val_number_token2] = ACTIONS(2645), - [aux_sym__val_number_token3] = ACTIONS(2645), - [aux_sym__val_number_token4] = ACTIONS(2647), - [aux_sym__val_number_token5] = ACTIONS(2647), - [aux_sym__val_number_token6] = ACTIONS(2647), - [anon_sym_0b] = ACTIONS(2649), - [anon_sym_0o] = ACTIONS(2651), - [anon_sym_0x] = ACTIONS(2651), - [sym_val_date] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2655), - [sym__str_single_quotes] = ACTIONS(2657), - [sym__str_back_ticks] = ACTIONS(2657), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2659), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2661), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(2667), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2669), + [aux_sym_ctrl_do_repeat2] = STATE(794), + [sym__newline] = ACTIONS(2623), + [anon_sym_SEMI] = ACTIONS(2623), + [anon_sym_PIPE] = ACTIONS(2623), + [anon_sym_err_GT_PIPE] = ACTIONS(2623), + [anon_sym_out_GT_PIPE] = ACTIONS(2623), + [anon_sym_e_GT_PIPE] = ACTIONS(2623), + [anon_sym_o_GT_PIPE] = ACTIONS(2623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_RPAREN] = ACTIONS(2623), + [anon_sym_DOLLAR] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_DASH2] = ACTIONS(2633), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_RBRACE] = ACTIONS(2623), + [anon_sym_DOT_DOT] = ACTIONS(2637), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2639), + [anon_sym_DOT_DOT_LT] = ACTIONS(2639), + [anon_sym_null] = ACTIONS(2641), + [anon_sym_true] = ACTIONS(2643), + [anon_sym_false] = ACTIONS(2643), + [aux_sym__val_number_decimal_token1] = ACTIONS(2645), + [aux_sym__val_number_decimal_token2] = ACTIONS(2647), + [aux_sym__val_number_decimal_token3] = ACTIONS(2649), + [aux_sym__val_number_decimal_token4] = ACTIONS(2651), + [aux_sym__val_number_token1] = ACTIONS(2653), + [aux_sym__val_number_token2] = ACTIONS(2653), + [aux_sym__val_number_token3] = ACTIONS(2653), + [aux_sym__val_number_token4] = ACTIONS(2655), + [aux_sym__val_number_token5] = ACTIONS(2655), + [aux_sym__val_number_token6] = ACTIONS(2655), + [anon_sym_0b] = ACTIONS(2657), + [anon_sym_0o] = ACTIONS(2659), + [anon_sym_0x] = ACTIONS(2659), + [sym_val_date] = ACTIONS(2661), + [anon_sym_DQUOTE] = ACTIONS(2663), + [sym__str_single_quotes] = ACTIONS(2665), + [sym__str_back_ticks] = ACTIONS(2665), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2667), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2669), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(2675), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2677), }, [782] = { - [sym_expr_parenthesized] = STATE(1601), - [sym_val_range] = STATE(1949), - [sym__val_range] = STATE(7565), - [sym__val_range_with_end] = STATE(7371), - [sym__value] = STATE(1949), - [sym_val_nothing] = STATE(1738), - [sym_val_bool] = STATE(1587), - [sym_val_variable] = STATE(1536), - [sym_val_number] = STATE(1738), - [sym__val_number_decimal] = STATE(1289), - [sym__val_number] = STATE(1765), - [sym_val_duration] = STATE(1738), - [sym_val_filesize] = STATE(1738), - [sym_val_binary] = STATE(1738), - [sym_val_string] = STATE(1738), - [sym__raw_str] = STATE(1783), - [sym__str_double_quotes] = STATE(1783), - [sym_val_interpolated] = STATE(1738), - [sym__inter_single_quotes] = STATE(1768), - [sym__inter_double_quotes] = STATE(1769), - [sym_val_list] = STATE(1738), - [sym_val_record] = STATE(1738), - [sym_val_table] = STATE(1738), - [sym_val_closure] = STATE(1738), - [sym__flag] = STATE(1949), - [sym_short_flag] = STATE(1831), - [sym_long_flag] = STATE(1831), - [sym_unquoted] = STATE(1720), - [sym__unquoted_with_expr] = STATE(1950), - [sym__unquoted_anonymous_prefix] = STATE(7309), [sym_comment] = STATE(782), - [aux_sym_shebang_repeat1] = STATE(967), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(783), - [sym__newline] = ACTIONS(2675), - [anon_sym_SEMI] = ACTIONS(2675), - [anon_sym_PIPE] = ACTIONS(2675), - [anon_sym_err_GT_PIPE] = ACTIONS(2675), - [anon_sym_out_GT_PIPE] = ACTIONS(2675), - [anon_sym_e_GT_PIPE] = ACTIONS(2675), - [anon_sym_o_GT_PIPE] = ACTIONS(2675), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2675), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2675), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2675), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2675), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_LPAREN] = ACTIONS(2619), - [anon_sym_RPAREN] = ACTIONS(2675), - [anon_sym_DOLLAR] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(2623), - [anon_sym_DASH2] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2627), - [anon_sym_DOT_DOT] = ACTIONS(2629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2631), - [anon_sym_DOT_DOT_LT] = ACTIONS(2631), - [anon_sym_null] = ACTIONS(2633), - [anon_sym_true] = ACTIONS(2635), - [anon_sym_false] = ACTIONS(2635), - [aux_sym__val_number_decimal_token1] = ACTIONS(2637), - [aux_sym__val_number_decimal_token2] = ACTIONS(2639), - [aux_sym__val_number_decimal_token3] = ACTIONS(2641), - [aux_sym__val_number_decimal_token4] = ACTIONS(2643), - [aux_sym__val_number_token1] = ACTIONS(2645), - [aux_sym__val_number_token2] = ACTIONS(2645), - [aux_sym__val_number_token3] = ACTIONS(2645), - [aux_sym__val_number_token4] = ACTIONS(2647), - [aux_sym__val_number_token5] = ACTIONS(2647), - [aux_sym__val_number_token6] = ACTIONS(2647), - [anon_sym_0b] = ACTIONS(2649), - [anon_sym_0o] = ACTIONS(2651), - [anon_sym_0x] = ACTIONS(2651), - [sym_val_date] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2655), - [sym__str_single_quotes] = ACTIONS(2657), - [sym__str_back_ticks] = ACTIONS(2657), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2659), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2661), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(2667), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2669), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_bit_DASHshl] = ACTIONS(1575), + [anon_sym_bit_DASHshr] = ACTIONS(1575), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_BANG_TILDE] = ACTIONS(1575), + [anon_sym_bit_DASHand] = ACTIONS(1575), + [anon_sym_bit_DASHxor] = ACTIONS(1575), + [anon_sym_bit_DASHor] = ACTIONS(1575), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_not_DASHin] = ACTIONS(1575), + [anon_sym_starts_DASHwith] = ACTIONS(1575), + [anon_sym_ends_DASHwith] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1575), + [aux_sym_cmd_identifier_token41] = ACTIONS(1573), + [sym__newline] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_err_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_GT_PIPE] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_RBRACE] = ACTIONS(1573), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1573), + [anon_sym_xor2] = ACTIONS(1573), + [anon_sym_or2] = ACTIONS(1573), + [anon_sym_not_DASHin2] = ACTIONS(1573), + [anon_sym_starts_DASHwith2] = ACTIONS(1573), + [anon_sym_ends_DASHwith2] = ACTIONS(1573), + [anon_sym_EQ_EQ2] = ACTIONS(1573), + [anon_sym_BANG_EQ2] = ACTIONS(1573), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1573), + [anon_sym_GT_EQ2] = ACTIONS(1573), + [anon_sym_EQ_TILDE2] = ACTIONS(1573), + [anon_sym_BANG_TILDE2] = ACTIONS(1573), + [anon_sym_STAR_STAR2] = ACTIONS(1573), + [anon_sym_PLUS_PLUS2] = ACTIONS(1573), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1573), + [anon_sym_SLASH_SLASH2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1573), + [anon_sym_bit_DASHshr2] = ACTIONS(1573), + [anon_sym_bit_DASHand2] = ACTIONS(1573), + [anon_sym_bit_DASHxor2] = ACTIONS(1573), + [anon_sym_bit_DASHor2] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT] = ACTIONS(2679), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(2681), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1573), + [anon_sym_out_GT_GT] = ACTIONS(1573), + [anon_sym_e_GT_GT] = ACTIONS(1573), + [anon_sym_o_GT_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), + [anon_sym_POUND] = ACTIONS(3), }, [783] = { - [sym_expr_parenthesized] = STATE(1601), - [sym_val_range] = STATE(1949), - [sym__val_range] = STATE(7565), - [sym__val_range_with_end] = STATE(7371), - [sym__value] = STATE(1949), - [sym_val_nothing] = STATE(1738), - [sym_val_bool] = STATE(1587), - [sym_val_variable] = STATE(1536), - [sym_val_number] = STATE(1738), - [sym__val_number_decimal] = STATE(1289), - [sym__val_number] = STATE(1765), - [sym_val_duration] = STATE(1738), - [sym_val_filesize] = STATE(1738), - [sym_val_binary] = STATE(1738), - [sym_val_string] = STATE(1738), - [sym__raw_str] = STATE(1783), - [sym__str_double_quotes] = STATE(1783), - [sym_val_interpolated] = STATE(1738), - [sym__inter_single_quotes] = STATE(1768), - [sym__inter_double_quotes] = STATE(1769), - [sym_val_list] = STATE(1738), - [sym_val_record] = STATE(1738), - [sym_val_table] = STATE(1738), - [sym_val_closure] = STATE(1738), - [sym__flag] = STATE(1949), - [sym_short_flag] = STATE(1831), - [sym_long_flag] = STATE(1831), - [sym_unquoted] = STATE(1720), - [sym__unquoted_with_expr] = STATE(1950), - [sym__unquoted_anonymous_prefix] = STATE(7309), [sym_comment] = STATE(783), - [aux_sym_shebang_repeat1] = STATE(967), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(786), - [sym__newline] = ACTIONS(2677), - [anon_sym_SEMI] = ACTIONS(2673), - [anon_sym_PIPE] = ACTIONS(2673), - [anon_sym_err_GT_PIPE] = ACTIONS(2673), - [anon_sym_out_GT_PIPE] = ACTIONS(2673), - [anon_sym_e_GT_PIPE] = ACTIONS(2673), - [anon_sym_o_GT_PIPE] = ACTIONS(2673), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2673), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2673), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2673), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_LPAREN] = ACTIONS(2619), - [anon_sym_RPAREN] = ACTIONS(2673), - [anon_sym_DOLLAR] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(2623), - [anon_sym_DASH2] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2627), - [anon_sym_DOT_DOT] = ACTIONS(2629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2631), - [anon_sym_DOT_DOT_LT] = ACTIONS(2631), - [anon_sym_null] = ACTIONS(2633), - [anon_sym_true] = ACTIONS(2635), - [anon_sym_false] = ACTIONS(2635), - [aux_sym__val_number_decimal_token1] = ACTIONS(2637), - [aux_sym__val_number_decimal_token2] = ACTIONS(2639), - [aux_sym__val_number_decimal_token3] = ACTIONS(2641), - [aux_sym__val_number_decimal_token4] = ACTIONS(2643), - [aux_sym__val_number_token1] = ACTIONS(2645), - [aux_sym__val_number_token2] = ACTIONS(2645), - [aux_sym__val_number_token3] = ACTIONS(2645), - [aux_sym__val_number_token4] = ACTIONS(2647), - [aux_sym__val_number_token5] = ACTIONS(2647), - [aux_sym__val_number_token6] = ACTIONS(2647), - [anon_sym_0b] = ACTIONS(2649), - [anon_sym_0o] = ACTIONS(2651), - [anon_sym_0x] = ACTIONS(2651), - [sym_val_date] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2655), - [sym__str_single_quotes] = ACTIONS(2657), - [sym__str_back_ticks] = ACTIONS(2657), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2659), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2661), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(2667), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2669), + [anon_sym_STAR_STAR] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_mod] = ACTIONS(1587), + [anon_sym_SLASH_SLASH] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_bit_DASHshl] = ACTIONS(1587), + [anon_sym_bit_DASHshr] = ACTIONS(1587), + [anon_sym_EQ_TILDE] = ACTIONS(1587), + [anon_sym_BANG_TILDE] = ACTIONS(1587), + [anon_sym_bit_DASHand] = ACTIONS(1587), + [anon_sym_bit_DASHxor] = ACTIONS(1587), + [anon_sym_bit_DASHor] = ACTIONS(1587), + [anon_sym_and] = ACTIONS(1587), + [anon_sym_xor] = ACTIONS(1587), + [anon_sym_or] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(1587), + [anon_sym_not_DASHin] = ACTIONS(1587), + [anon_sym_starts_DASHwith] = ACTIONS(1587), + [anon_sym_ends_DASHwith] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(1587), + [anon_sym_BANG_EQ] = ACTIONS(1587), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_LT_EQ] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1587), + [aux_sym_cmd_identifier_token41] = ACTIONS(1585), + [sym__newline] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_err_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_GT_PIPE] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), + [anon_sym_GT2] = ACTIONS(1585), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_in2] = ACTIONS(1585), + [anon_sym_RBRACE] = ACTIONS(1585), + [anon_sym_STAR2] = ACTIONS(1585), + [anon_sym_and2] = ACTIONS(1585), + [anon_sym_xor2] = ACTIONS(1585), + [anon_sym_or2] = ACTIONS(1585), + [anon_sym_not_DASHin2] = ACTIONS(1585), + [anon_sym_starts_DASHwith2] = ACTIONS(1585), + [anon_sym_ends_DASHwith2] = ACTIONS(1585), + [anon_sym_EQ_EQ2] = ACTIONS(1585), + [anon_sym_BANG_EQ2] = ACTIONS(1585), + [anon_sym_LT2] = ACTIONS(1585), + [anon_sym_LT_EQ2] = ACTIONS(1585), + [anon_sym_GT_EQ2] = ACTIONS(1585), + [anon_sym_EQ_TILDE2] = ACTIONS(1585), + [anon_sym_BANG_TILDE2] = ACTIONS(1585), + [anon_sym_STAR_STAR2] = ACTIONS(1585), + [anon_sym_PLUS_PLUS2] = ACTIONS(1585), + [anon_sym_SLASH2] = ACTIONS(1585), + [anon_sym_mod2] = ACTIONS(1585), + [anon_sym_SLASH_SLASH2] = ACTIONS(1585), + [anon_sym_PLUS2] = ACTIONS(1585), + [anon_sym_bit_DASHshl2] = ACTIONS(1585), + [anon_sym_bit_DASHshr2] = ACTIONS(1585), + [anon_sym_bit_DASHand2] = ACTIONS(1585), + [anon_sym_bit_DASHxor2] = ACTIONS(1585), + [anon_sym_bit_DASHor2] = ACTIONS(1585), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [aux_sym__immediate_decimal_token1] = ACTIONS(2683), + [aux_sym__immediate_decimal_token2] = ACTIONS(2685), + [sym_filesize_unit] = ACTIONS(1585), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1585), + [anon_sym_out_GT_GT] = ACTIONS(1585), + [anon_sym_e_GT_GT] = ACTIONS(1585), + [anon_sym_o_GT_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(3), }, [784] = { - [sym_expr_parenthesized] = STATE(1518), - [sym_val_range] = STATE(1800), - [sym__val_range] = STATE(7565), - [sym__val_range_with_end] = STATE(7371), - [sym__value] = STATE(1800), - [sym_val_nothing] = STATE(1738), - [sym_val_bool] = STATE(1587), - [sym_val_variable] = STATE(1536), - [sym_val_number] = STATE(1738), - [sym__val_number_decimal] = STATE(1289), - [sym__val_number] = STATE(1765), - [sym_val_duration] = STATE(1738), - [sym_val_filesize] = STATE(1738), - [sym_val_binary] = STATE(1738), - [sym_val_string] = STATE(1738), - [sym__raw_str] = STATE(1783), - [sym__str_double_quotes] = STATE(1783), - [sym_val_interpolated] = STATE(1738), - [sym__inter_single_quotes] = STATE(1768), - [sym__inter_double_quotes] = STATE(1769), - [sym_val_list] = STATE(1738), - [sym_val_record] = STATE(1738), - [sym_val_table] = STATE(1738), - [sym_val_closure] = STATE(1738), - [sym__flag] = STATE(1800), - [sym_short_flag] = STATE(1831), - [sym_long_flag] = STATE(1831), - [sym_unquoted] = STATE(1589), - [sym__unquoted_with_expr] = STATE(1801), - [sym__unquoted_anonymous_prefix] = STATE(7309), [sym_comment] = STATE(784), - [aux_sym_ctrl_do_repeat2] = STATE(784), - [sym__newline] = ACTIONS(2679), - [anon_sym_SEMI] = ACTIONS(2679), - [anon_sym_PIPE] = ACTIONS(2679), - [anon_sym_err_GT_PIPE] = ACTIONS(2679), - [anon_sym_out_GT_PIPE] = ACTIONS(2679), - [anon_sym_e_GT_PIPE] = ACTIONS(2679), - [anon_sym_o_GT_PIPE] = ACTIONS(2679), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2679), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2679), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2679), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2679), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2679), - [anon_sym_DOLLAR] = ACTIONS(2687), - [anon_sym_DASH_DASH] = ACTIONS(2690), - [anon_sym_DASH2] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_RBRACE] = ACTIONS(2679), - [anon_sym_DOT_DOT] = ACTIONS(2699), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), - [anon_sym_DOT_DOT_LT] = ACTIONS(2702), - [anon_sym_null] = ACTIONS(2705), - [anon_sym_true] = ACTIONS(2708), - [anon_sym_false] = ACTIONS(2708), - [aux_sym__val_number_decimal_token1] = ACTIONS(2711), - [aux_sym__val_number_decimal_token2] = ACTIONS(2714), - [aux_sym__val_number_decimal_token3] = ACTIONS(2717), - [aux_sym__val_number_decimal_token4] = ACTIONS(2720), - [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(2726), - [aux_sym__val_number_token5] = ACTIONS(2726), - [aux_sym__val_number_token6] = ACTIONS(2726), - [anon_sym_0b] = ACTIONS(2729), - [anon_sym_0o] = ACTIONS(2732), - [anon_sym_0x] = ACTIONS(2732), - [sym_val_date] = ACTIONS(2735), - [anon_sym_DQUOTE] = ACTIONS(2738), - [sym__str_single_quotes] = ACTIONS(2741), - [sym__str_back_ticks] = ACTIONS(2741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2744), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2747), - [anon_sym_err_GT] = ACTIONS(2750), - [anon_sym_out_GT] = ACTIONS(2750), - [anon_sym_e_GT] = ACTIONS(2750), - [anon_sym_o_GT] = ACTIONS(2750), - [anon_sym_err_PLUSout_GT] = ACTIONS(2750), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2750), - [anon_sym_o_PLUSe_GT] = ACTIONS(2750), - [anon_sym_e_PLUSo_GT] = ACTIONS(2750), - [anon_sym_err_GT_GT] = ACTIONS(2753), - [anon_sym_out_GT_GT] = ACTIONS(2753), - [anon_sym_e_GT_GT] = ACTIONS(2753), - [anon_sym_o_GT_GT] = ACTIONS(2753), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2753), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2753), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2753), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2753), - [aux_sym_unquoted_token1] = ACTIONS(2756), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2759), - }, - [785] = { - [sym_expr_parenthesized] = STATE(1601), - [sym_val_range] = STATE(1949), - [sym__val_range] = STATE(7565), - [sym__val_range_with_end] = STATE(7371), - [sym__value] = STATE(1949), - [sym_val_nothing] = STATE(1738), - [sym_val_bool] = STATE(1587), - [sym_val_variable] = STATE(1536), - [sym_val_number] = STATE(1738), - [sym__val_number_decimal] = STATE(1289), - [sym__val_number] = STATE(1765), - [sym_val_duration] = STATE(1738), - [sym_val_filesize] = STATE(1738), - [sym_val_binary] = STATE(1738), - [sym_val_string] = STATE(1738), - [sym__raw_str] = STATE(1783), - [sym__str_double_quotes] = STATE(1783), - [sym_val_interpolated] = STATE(1738), - [sym__inter_single_quotes] = STATE(1768), - [sym__inter_double_quotes] = STATE(1769), - [sym_val_list] = STATE(1738), - [sym_val_record] = STATE(1738), - [sym_val_table] = STATE(1738), - [sym_val_closure] = STATE(1738), - [sym__flag] = STATE(1949), - [sym_short_flag] = STATE(1831), - [sym_long_flag] = STATE(1831), - [sym_unquoted] = STATE(1720), - [sym__unquoted_with_expr] = STATE(1950), - [sym__unquoted_anonymous_prefix] = STATE(7309), - [sym_comment] = STATE(785), - [aux_sym_shebang_repeat1] = STATE(967), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(786), - [sym__newline] = ACTIONS(2677), - [anon_sym_SEMI] = ACTIONS(2762), - [anon_sym_PIPE] = ACTIONS(2762), - [anon_sym_err_GT_PIPE] = ACTIONS(2762), - [anon_sym_out_GT_PIPE] = ACTIONS(2762), - [anon_sym_e_GT_PIPE] = ACTIONS(2762), - [anon_sym_o_GT_PIPE] = ACTIONS(2762), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2762), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2762), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2762), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2762), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_LPAREN] = ACTIONS(2619), - [anon_sym_RPAREN] = ACTIONS(2762), - [anon_sym_DOLLAR] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(2623), - [anon_sym_DASH2] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2627), - [anon_sym_DOT_DOT] = ACTIONS(2629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2631), - [anon_sym_DOT_DOT_LT] = ACTIONS(2631), - [anon_sym_null] = ACTIONS(2633), - [anon_sym_true] = ACTIONS(2635), - [anon_sym_false] = ACTIONS(2635), - [aux_sym__val_number_decimal_token1] = ACTIONS(2637), - [aux_sym__val_number_decimal_token2] = ACTIONS(2639), - [aux_sym__val_number_decimal_token3] = ACTIONS(2641), - [aux_sym__val_number_decimal_token4] = ACTIONS(2643), - [aux_sym__val_number_token1] = ACTIONS(2645), - [aux_sym__val_number_token2] = ACTIONS(2645), - [aux_sym__val_number_token3] = ACTIONS(2645), - [aux_sym__val_number_token4] = ACTIONS(2647), - [aux_sym__val_number_token5] = ACTIONS(2647), - [aux_sym__val_number_token6] = ACTIONS(2647), - [anon_sym_0b] = ACTIONS(2649), - [anon_sym_0o] = ACTIONS(2651), - [anon_sym_0x] = ACTIONS(2651), - [sym_val_date] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2655), - [sym__str_single_quotes] = ACTIONS(2657), - [sym__str_back_ticks] = ACTIONS(2657), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2659), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2661), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(2667), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2669), - }, - [786] = { - [sym_expr_parenthesized] = STATE(1601), - [sym_val_range] = STATE(1949), - [sym__val_range] = STATE(7565), - [sym__val_range_with_end] = STATE(7371), - [sym__value] = STATE(1949), - [sym_val_nothing] = STATE(1738), - [sym_val_bool] = STATE(1587), - [sym_val_variable] = STATE(1536), - [sym_val_number] = STATE(1738), - [sym__val_number_decimal] = STATE(1289), - [sym__val_number] = STATE(1765), - [sym_val_duration] = STATE(1738), - [sym_val_filesize] = STATE(1738), - [sym_val_binary] = STATE(1738), - [sym_val_string] = STATE(1738), - [sym__raw_str] = STATE(1783), - [sym__str_double_quotes] = STATE(1783), - [sym_val_interpolated] = STATE(1738), - [sym__inter_single_quotes] = STATE(1768), - [sym__inter_double_quotes] = STATE(1769), - [sym_val_list] = STATE(1738), - [sym_val_record] = STATE(1738), - [sym_val_table] = STATE(1738), - [sym_val_closure] = STATE(1738), - [sym__flag] = STATE(1949), - [sym_short_flag] = STATE(1831), - [sym_long_flag] = STATE(1831), - [sym_unquoted] = STATE(1720), - [sym__unquoted_with_expr] = STATE(1950), - [sym__unquoted_anonymous_prefix] = STATE(7309), - [sym_comment] = STATE(786), - [aux_sym_shebang_repeat1] = STATE(967), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(786), - [sym__newline] = ACTIONS(2764), - [anon_sym_SEMI] = ACTIONS(2767), - [anon_sym_PIPE] = ACTIONS(2767), - [anon_sym_err_GT_PIPE] = ACTIONS(2767), - [anon_sym_out_GT_PIPE] = ACTIONS(2767), - [anon_sym_e_GT_PIPE] = ACTIONS(2767), - [anon_sym_o_GT_PIPE] = ACTIONS(2767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2767), - [anon_sym_LBRACK] = ACTIONS(2769), - [anon_sym_LPAREN] = ACTIONS(2772), - [anon_sym_RPAREN] = ACTIONS(2767), - [anon_sym_DOLLAR] = ACTIONS(2775), - [anon_sym_DASH_DASH] = ACTIONS(2778), - [anon_sym_DASH2] = ACTIONS(2781), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_DOT_DOT] = ACTIONS(2787), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2790), - [anon_sym_DOT_DOT_LT] = ACTIONS(2790), - [anon_sym_null] = ACTIONS(2793), - [anon_sym_true] = ACTIONS(2796), - [anon_sym_false] = ACTIONS(2796), - [aux_sym__val_number_decimal_token1] = ACTIONS(2799), - [aux_sym__val_number_decimal_token2] = ACTIONS(2802), - [aux_sym__val_number_decimal_token3] = ACTIONS(2805), - [aux_sym__val_number_decimal_token4] = ACTIONS(2808), - [aux_sym__val_number_token1] = ACTIONS(2811), - [aux_sym__val_number_token2] = ACTIONS(2811), - [aux_sym__val_number_token3] = ACTIONS(2811), - [aux_sym__val_number_token4] = ACTIONS(2814), - [aux_sym__val_number_token5] = ACTIONS(2814), - [aux_sym__val_number_token6] = ACTIONS(2814), - [anon_sym_0b] = ACTIONS(2817), - [anon_sym_0o] = ACTIONS(2820), - [anon_sym_0x] = ACTIONS(2820), - [sym_val_date] = ACTIONS(2823), - [anon_sym_DQUOTE] = ACTIONS(2826), - [sym__str_single_quotes] = ACTIONS(2829), - [sym__str_back_ticks] = ACTIONS(2829), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2832), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2835), - [anon_sym_err_GT] = ACTIONS(2838), - [anon_sym_out_GT] = ACTIONS(2838), - [anon_sym_e_GT] = ACTIONS(2838), - [anon_sym_o_GT] = ACTIONS(2838), - [anon_sym_err_PLUSout_GT] = ACTIONS(2838), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2838), - [anon_sym_o_PLUSe_GT] = ACTIONS(2838), - [anon_sym_e_PLUSo_GT] = ACTIONS(2838), - [anon_sym_err_GT_GT] = ACTIONS(2841), - [anon_sym_out_GT_GT] = ACTIONS(2841), - [anon_sym_e_GT_GT] = ACTIONS(2841), - [anon_sym_o_GT_GT] = ACTIONS(2841), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2841), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2841), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2841), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2841), - [aux_sym_unquoted_token1] = ACTIONS(2844), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2847), - }, - [787] = { - [sym_comment] = STATE(787), - [anon_sym_STAR_STAR] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_SLASH] = ACTIONS(1621), - [anon_sym_mod] = ACTIONS(1623), - [anon_sym_SLASH_SLASH] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_bit_DASHshl] = ACTIONS(1623), - [anon_sym_bit_DASHshr] = ACTIONS(1623), - [anon_sym_EQ_TILDE] = ACTIONS(1623), - [anon_sym_BANG_TILDE] = ACTIONS(1623), - [anon_sym_bit_DASHand] = ACTIONS(1623), - [anon_sym_bit_DASHxor] = ACTIONS(1623), - [anon_sym_bit_DASHor] = ACTIONS(1623), - [anon_sym_and] = ACTIONS(1623), - [anon_sym_xor] = ACTIONS(1623), - [anon_sym_or] = ACTIONS(1623), - [anon_sym_in] = ACTIONS(1623), - [anon_sym_not_DASHin] = ACTIONS(1623), - [anon_sym_starts_DASHwith] = ACTIONS(1623), - [anon_sym_ends_DASHwith] = ACTIONS(1623), - [anon_sym_EQ_EQ] = ACTIONS(1623), - [anon_sym_BANG_EQ] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1621), - [anon_sym_LT_EQ] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1621), - [anon_sym_GT_EQ] = ACTIONS(1623), - [aux_sym_cmd_identifier_token41] = ACTIONS(1621), - [sym__newline] = ACTIONS(1621), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_PIPE] = ACTIONS(1621), - [anon_sym_err_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_GT_PIPE] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), - [anon_sym_GT2] = ACTIONS(1621), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_in2] = ACTIONS(1621), - [anon_sym_RBRACE] = ACTIONS(1621), - [anon_sym_STAR2] = ACTIONS(1621), - [anon_sym_and2] = ACTIONS(1621), - [anon_sym_xor2] = ACTIONS(1621), - [anon_sym_or2] = ACTIONS(1621), - [anon_sym_not_DASHin2] = ACTIONS(1621), - [anon_sym_starts_DASHwith2] = ACTIONS(1621), - [anon_sym_ends_DASHwith2] = ACTIONS(1621), - [anon_sym_EQ_EQ2] = ACTIONS(1621), - [anon_sym_BANG_EQ2] = ACTIONS(1621), - [anon_sym_LT2] = ACTIONS(1621), - [anon_sym_LT_EQ2] = ACTIONS(1621), - [anon_sym_GT_EQ2] = ACTIONS(1621), - [anon_sym_EQ_TILDE2] = ACTIONS(1621), - [anon_sym_BANG_TILDE2] = ACTIONS(1621), - [anon_sym_STAR_STAR2] = ACTIONS(1621), - [anon_sym_PLUS_PLUS2] = ACTIONS(1621), - [anon_sym_SLASH2] = ACTIONS(1621), - [anon_sym_mod2] = ACTIONS(1621), - [anon_sym_SLASH_SLASH2] = ACTIONS(1621), - [anon_sym_PLUS2] = ACTIONS(1621), - [anon_sym_bit_DASHshl2] = ACTIONS(1621), - [anon_sym_bit_DASHshr2] = ACTIONS(1621), - [anon_sym_bit_DASHand2] = ACTIONS(1621), - [anon_sym_bit_DASHxor2] = ACTIONS(1621), - [anon_sym_bit_DASHor2] = ACTIONS(1621), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [aux_sym__immediate_decimal_token1] = ACTIONS(2850), - [aux_sym__immediate_decimal_token2] = ACTIONS(2852), - [sym_filesize_unit] = ACTIONS(1621), - [sym_duration_unit] = ACTIONS(1623), - [aux_sym_record_entry_token1] = ACTIONS(1621), - [anon_sym_err_GT] = ACTIONS(1621), - [anon_sym_out_GT] = ACTIONS(1621), - [anon_sym_e_GT] = ACTIONS(1621), - [anon_sym_o_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT] = ACTIONS(1621), - [anon_sym_err_GT_GT] = ACTIONS(1621), - [anon_sym_out_GT_GT] = ACTIONS(1621), - [anon_sym_e_GT_GT] = ACTIONS(1621), - [anon_sym_o_GT_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1621), - [anon_sym_POUND] = ACTIONS(3), - }, - [788] = { - [sym_expr_parenthesized] = STATE(1518), - [sym_val_range] = STATE(1800), - [sym__val_range] = STATE(7565), - [sym__val_range_with_end] = STATE(7371), - [sym__value] = STATE(1800), - [sym_val_nothing] = STATE(1738), - [sym_val_bool] = STATE(1587), - [sym_val_variable] = STATE(1536), - [sym_val_number] = STATE(1738), - [sym__val_number_decimal] = STATE(1289), - [sym__val_number] = STATE(1765), - [sym_val_duration] = STATE(1738), - [sym_val_filesize] = STATE(1738), - [sym_val_binary] = STATE(1738), - [sym_val_string] = STATE(1738), - [sym__raw_str] = STATE(1783), - [sym__str_double_quotes] = STATE(1783), - [sym_val_interpolated] = STATE(1738), - [sym__inter_single_quotes] = STATE(1768), - [sym__inter_double_quotes] = STATE(1769), - [sym_val_list] = STATE(1738), - [sym_val_record] = STATE(1738), - [sym_val_table] = STATE(1738), - [sym_val_closure] = STATE(1738), - [sym__flag] = STATE(1800), - [sym_short_flag] = STATE(1831), - [sym_long_flag] = STATE(1831), - [sym_unquoted] = STATE(1589), - [sym__unquoted_with_expr] = STATE(1801), - [sym__unquoted_anonymous_prefix] = STATE(7309), - [sym_comment] = STATE(788), - [aux_sym_ctrl_do_repeat2] = STATE(784), - [sym__newline] = ACTIONS(2854), - [anon_sym_SEMI] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2854), - [anon_sym_err_GT_PIPE] = ACTIONS(2854), - [anon_sym_out_GT_PIPE] = ACTIONS(2854), - [anon_sym_e_GT_PIPE] = ACTIONS(2854), - [anon_sym_o_GT_PIPE] = ACTIONS(2854), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2854), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2854), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2854), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2854), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_LPAREN] = ACTIONS(2619), - [anon_sym_RPAREN] = ACTIONS(2854), - [anon_sym_DOLLAR] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(2623), - [anon_sym_DASH2] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2627), - [anon_sym_RBRACE] = ACTIONS(2854), - [anon_sym_DOT_DOT] = ACTIONS(2629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2631), - [anon_sym_DOT_DOT_LT] = ACTIONS(2631), - [anon_sym_null] = ACTIONS(2633), - [anon_sym_true] = ACTIONS(2635), - [anon_sym_false] = ACTIONS(2635), - [aux_sym__val_number_decimal_token1] = ACTIONS(2637), - [aux_sym__val_number_decimal_token2] = ACTIONS(2639), - [aux_sym__val_number_decimal_token3] = ACTIONS(2641), - [aux_sym__val_number_decimal_token4] = ACTIONS(2643), - [aux_sym__val_number_token1] = ACTIONS(2645), - [aux_sym__val_number_token2] = ACTIONS(2645), - [aux_sym__val_number_token3] = ACTIONS(2645), - [aux_sym__val_number_token4] = ACTIONS(2647), - [aux_sym__val_number_token5] = ACTIONS(2647), - [aux_sym__val_number_token6] = ACTIONS(2647), - [anon_sym_0b] = ACTIONS(2649), - [anon_sym_0o] = ACTIONS(2651), - [anon_sym_0x] = ACTIONS(2651), - [sym_val_date] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2655), - [sym__str_single_quotes] = ACTIONS(2657), - [sym__str_back_ticks] = ACTIONS(2657), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2659), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2661), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(2667), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2669), - }, - [789] = { - [sym_comment] = STATE(789), - [anon_sym_STAR_STAR] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_SLASH_SLASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_bit_DASHshl] = ACTIONS(1609), - [anon_sym_bit_DASHshr] = ACTIONS(1609), - [anon_sym_EQ_TILDE] = ACTIONS(1609), - [anon_sym_BANG_TILDE] = ACTIONS(1609), - [anon_sym_bit_DASHand] = ACTIONS(1609), - [anon_sym_bit_DASHxor] = ACTIONS(1609), - [anon_sym_bit_DASHor] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(1609), - [anon_sym_not_DASHin] = ACTIONS(1609), - [anon_sym_starts_DASHwith] = ACTIONS(1609), - [anon_sym_ends_DASHwith] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1609), - [anon_sym_BANG_EQ] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1609), - [aux_sym_cmd_identifier_token41] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_RBRACE] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT] = ACTIONS(2856), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(2858), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), - [aux_sym_record_entry_token1] = ACTIONS(1607), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1607), - [anon_sym_out_GT_GT] = ACTIONS(1607), - [anon_sym_e_GT_GT] = ACTIONS(1607), - [anon_sym_o_GT_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), - [anon_sym_POUND] = ACTIONS(3), - }, - [790] = { - [sym_expr_parenthesized] = STATE(1625), - [sym_val_range] = STATE(1853), - [sym__val_range] = STATE(7587), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(1853), - [sym_val_nothing] = STATE(1890), - [sym_val_bool] = STATE(1685), - [sym_val_variable] = STATE(1583), - [sym_val_number] = STATE(1890), - [sym__val_number_decimal] = STATE(1375), - [sym__val_number] = STATE(1944), - [sym_val_duration] = STATE(1890), - [sym_val_filesize] = STATE(1890), - [sym_val_binary] = STATE(1890), - [sym_val_string] = STATE(1890), - [sym__raw_str] = STATE(1873), - [sym__str_double_quotes] = STATE(1873), - [sym_val_interpolated] = STATE(1890), - [sym__inter_single_quotes] = STATE(1966), - [sym__inter_double_quotes] = STATE(1967), - [sym_val_list] = STATE(1890), - [sym_val_record] = STATE(1890), - [sym_val_table] = STATE(1890), - [sym_val_closure] = STATE(1890), - [sym__flag] = STATE(1853), - [sym_short_flag] = STATE(1876), - [sym_long_flag] = STATE(1876), - [sym_unquoted] = STATE(1727), - [sym__unquoted_with_expr] = STATE(1975), - [sym__unquoted_anonymous_prefix] = STATE(6997), - [sym_comment] = STATE(790), - [aux_sym_ctrl_do_repeat2] = STATE(800), - [ts_builtin_sym_end] = ACTIONS(2615), - [sym__newline] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2615), - [anon_sym_PIPE] = ACTIONS(2615), - [anon_sym_err_GT_PIPE] = ACTIONS(2615), - [anon_sym_out_GT_PIPE] = ACTIONS(2615), - [anon_sym_e_GT_PIPE] = ACTIONS(2615), - [anon_sym_o_GT_PIPE] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2615), - [anon_sym_LBRACK] = ACTIONS(2860), - [anon_sym_LPAREN] = ACTIONS(2862), - [anon_sym_DOLLAR] = ACTIONS(2864), - [anon_sym_DASH_DASH] = ACTIONS(2866), - [anon_sym_DASH2] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_DOT_DOT] = ACTIONS(2872), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2874), - [anon_sym_DOT_DOT_LT] = ACTIONS(2874), - [anon_sym_null] = ACTIONS(2876), - [anon_sym_true] = ACTIONS(2878), - [anon_sym_false] = ACTIONS(2878), - [aux_sym__val_number_decimal_token1] = ACTIONS(2880), - [aux_sym__val_number_decimal_token2] = ACTIONS(2882), - [aux_sym__val_number_decimal_token3] = ACTIONS(2884), - [aux_sym__val_number_decimal_token4] = ACTIONS(2886), - [aux_sym__val_number_token1] = ACTIONS(2888), - [aux_sym__val_number_token2] = ACTIONS(2888), - [aux_sym__val_number_token3] = ACTIONS(2888), - [aux_sym__val_number_token4] = ACTIONS(2890), - [aux_sym__val_number_token5] = ACTIONS(2890), - [aux_sym__val_number_token6] = ACTIONS(2890), - [anon_sym_0b] = ACTIONS(2892), - [anon_sym_0o] = ACTIONS(2894), - [anon_sym_0x] = ACTIONS(2894), - [sym_val_date] = ACTIONS(2896), - [anon_sym_DQUOTE] = ACTIONS(2898), - [sym__str_single_quotes] = ACTIONS(2900), - [sym__str_back_ticks] = ACTIONS(2900), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(2906), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2908), - }, - [791] = { - [sym_expr_parenthesized] = STATE(1625), - [sym_val_range] = STATE(1853), - [sym__val_range] = STATE(7587), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(1853), - [sym_val_nothing] = STATE(1890), - [sym_val_bool] = STATE(1685), - [sym_val_variable] = STATE(1583), - [sym_val_number] = STATE(1890), - [sym__val_number_decimal] = STATE(1375), - [sym__val_number] = STATE(1944), - [sym_val_duration] = STATE(1890), - [sym_val_filesize] = STATE(1890), - [sym_val_binary] = STATE(1890), - [sym_val_string] = STATE(1890), - [sym__raw_str] = STATE(1873), - [sym__str_double_quotes] = STATE(1873), - [sym_val_interpolated] = STATE(1890), - [sym__inter_single_quotes] = STATE(1966), - [sym__inter_double_quotes] = STATE(1967), - [sym_val_list] = STATE(1890), - [sym_val_record] = STATE(1890), - [sym_val_table] = STATE(1890), - [sym_val_closure] = STATE(1890), - [sym__flag] = STATE(1853), - [sym_short_flag] = STATE(1876), - [sym_long_flag] = STATE(1876), - [sym_unquoted] = STATE(1727), - [sym__unquoted_with_expr] = STATE(1975), - [sym__unquoted_anonymous_prefix] = STATE(6997), - [sym_comment] = STATE(791), - [aux_sym_ctrl_do_repeat2] = STATE(793), - [ts_builtin_sym_end] = ACTIONS(2671), - [sym__newline] = ACTIONS(2671), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_PIPE] = ACTIONS(2671), - [anon_sym_err_GT_PIPE] = ACTIONS(2671), - [anon_sym_out_GT_PIPE] = ACTIONS(2671), - [anon_sym_e_GT_PIPE] = ACTIONS(2671), - [anon_sym_o_GT_PIPE] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2671), - [anon_sym_LBRACK] = ACTIONS(2860), - [anon_sym_LPAREN] = ACTIONS(2862), - [anon_sym_DOLLAR] = ACTIONS(2864), - [anon_sym_DASH_DASH] = ACTIONS(2866), - [anon_sym_DASH2] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_DOT_DOT] = ACTIONS(2872), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2874), - [anon_sym_DOT_DOT_LT] = ACTIONS(2874), - [anon_sym_null] = ACTIONS(2876), - [anon_sym_true] = ACTIONS(2878), - [anon_sym_false] = ACTIONS(2878), - [aux_sym__val_number_decimal_token1] = ACTIONS(2880), - [aux_sym__val_number_decimal_token2] = ACTIONS(2882), - [aux_sym__val_number_decimal_token3] = ACTIONS(2884), - [aux_sym__val_number_decimal_token4] = ACTIONS(2886), - [aux_sym__val_number_token1] = ACTIONS(2888), - [aux_sym__val_number_token2] = ACTIONS(2888), - [aux_sym__val_number_token3] = ACTIONS(2888), - [aux_sym__val_number_token4] = ACTIONS(2890), - [aux_sym__val_number_token5] = ACTIONS(2890), - [aux_sym__val_number_token6] = ACTIONS(2890), - [anon_sym_0b] = ACTIONS(2892), - [anon_sym_0o] = ACTIONS(2894), - [anon_sym_0x] = ACTIONS(2894), - [sym_val_date] = ACTIONS(2896), - [anon_sym_DQUOTE] = ACTIONS(2898), - [sym__str_single_quotes] = ACTIONS(2900), - [sym__str_back_ticks] = ACTIONS(2900), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(2906), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2908), - }, - [792] = { - [sym_comment] = STATE(792), - [anon_sym_STAR_STAR] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_SLASH_SLASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_bit_DASHshl] = ACTIONS(1609), - [anon_sym_bit_DASHshr] = ACTIONS(1609), - [anon_sym_EQ_TILDE] = ACTIONS(1609), - [anon_sym_BANG_TILDE] = ACTIONS(1609), - [anon_sym_bit_DASHand] = ACTIONS(1609), - [anon_sym_bit_DASHxor] = ACTIONS(1609), - [anon_sym_bit_DASHor] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(1609), - [anon_sym_not_DASHin] = ACTIONS(1609), - [anon_sym_starts_DASHwith] = ACTIONS(1609), - [anon_sym_ends_DASHwith] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1609), - [anon_sym_BANG_EQ] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1609), - [aux_sym_cmd_identifier_token41] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_RBRACE] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT] = ACTIONS(2910), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(2912), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1607), - [anon_sym_out_GT_GT] = ACTIONS(1607), - [anon_sym_e_GT_GT] = ACTIONS(1607), - [anon_sym_o_GT_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), - [anon_sym_POUND] = ACTIONS(3), - }, - [793] = { - [sym_expr_parenthesized] = STATE(1625), - [sym_val_range] = STATE(1853), - [sym__val_range] = STATE(7587), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(1853), - [sym_val_nothing] = STATE(1890), - [sym_val_bool] = STATE(1685), - [sym_val_variable] = STATE(1583), - [sym_val_number] = STATE(1890), - [sym__val_number_decimal] = STATE(1375), - [sym__val_number] = STATE(1944), - [sym_val_duration] = STATE(1890), - [sym_val_filesize] = STATE(1890), - [sym_val_binary] = STATE(1890), - [sym_val_string] = STATE(1890), - [sym__raw_str] = STATE(1873), - [sym__str_double_quotes] = STATE(1873), - [sym_val_interpolated] = STATE(1890), - [sym__inter_single_quotes] = STATE(1966), - [sym__inter_double_quotes] = STATE(1967), - [sym_val_list] = STATE(1890), - [sym_val_record] = STATE(1890), - [sym_val_table] = STATE(1890), - [sym_val_closure] = STATE(1890), - [sym__flag] = STATE(1853), - [sym_short_flag] = STATE(1876), - [sym_long_flag] = STATE(1876), - [sym_unquoted] = STATE(1727), - [sym__unquoted_with_expr] = STATE(1975), - [sym__unquoted_anonymous_prefix] = STATE(6997), - [sym_comment] = STATE(793), - [aux_sym_ctrl_do_repeat2] = STATE(806), - [ts_builtin_sym_end] = ACTIONS(2854), - [sym__newline] = ACTIONS(2854), - [anon_sym_SEMI] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2854), - [anon_sym_err_GT_PIPE] = ACTIONS(2854), - [anon_sym_out_GT_PIPE] = ACTIONS(2854), - [anon_sym_e_GT_PIPE] = ACTIONS(2854), - [anon_sym_o_GT_PIPE] = ACTIONS(2854), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2854), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2854), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2854), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2854), - [anon_sym_LBRACK] = ACTIONS(2860), - [anon_sym_LPAREN] = ACTIONS(2862), - [anon_sym_DOLLAR] = ACTIONS(2864), - [anon_sym_DASH_DASH] = ACTIONS(2866), - [anon_sym_DASH2] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_DOT_DOT] = ACTIONS(2872), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2874), - [anon_sym_DOT_DOT_LT] = ACTIONS(2874), - [anon_sym_null] = ACTIONS(2876), - [anon_sym_true] = ACTIONS(2878), - [anon_sym_false] = ACTIONS(2878), - [aux_sym__val_number_decimal_token1] = ACTIONS(2880), - [aux_sym__val_number_decimal_token2] = ACTIONS(2882), - [aux_sym__val_number_decimal_token3] = ACTIONS(2884), - [aux_sym__val_number_decimal_token4] = ACTIONS(2886), - [aux_sym__val_number_token1] = ACTIONS(2888), - [aux_sym__val_number_token2] = ACTIONS(2888), - [aux_sym__val_number_token3] = ACTIONS(2888), - [aux_sym__val_number_token4] = ACTIONS(2890), - [aux_sym__val_number_token5] = ACTIONS(2890), - [aux_sym__val_number_token6] = ACTIONS(2890), - [anon_sym_0b] = ACTIONS(2892), - [anon_sym_0o] = ACTIONS(2894), - [anon_sym_0x] = ACTIONS(2894), - [sym_val_date] = ACTIONS(2896), - [anon_sym_DQUOTE] = ACTIONS(2898), - [sym__str_single_quotes] = ACTIONS(2900), - [sym__str_back_ticks] = ACTIONS(2900), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(2906), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2908), - }, - [794] = { - [sym_comment] = STATE(794), - [aux_sym_cmd_identifier_token1] = ACTIONS(2914), - [aux_sym_cmd_identifier_token2] = ACTIONS(2916), - [aux_sym_cmd_identifier_token3] = ACTIONS(2916), - [aux_sym_cmd_identifier_token4] = ACTIONS(2916), - [aux_sym_cmd_identifier_token5] = ACTIONS(2916), - [aux_sym_cmd_identifier_token6] = ACTIONS(2916), - [aux_sym_cmd_identifier_token7] = ACTIONS(2916), - [aux_sym_cmd_identifier_token8] = ACTIONS(2916), - [aux_sym_cmd_identifier_token9] = ACTIONS(2914), - [aux_sym_cmd_identifier_token10] = ACTIONS(2916), - [aux_sym_cmd_identifier_token11] = ACTIONS(2916), - [aux_sym_cmd_identifier_token12] = ACTIONS(2916), - [aux_sym_cmd_identifier_token13] = ACTIONS(2914), - [aux_sym_cmd_identifier_token14] = ACTIONS(2916), - [aux_sym_cmd_identifier_token15] = ACTIONS(2914), - [aux_sym_cmd_identifier_token16] = ACTIONS(2916), - [aux_sym_cmd_identifier_token17] = ACTIONS(2916), - [aux_sym_cmd_identifier_token18] = ACTIONS(2916), - [aux_sym_cmd_identifier_token19] = ACTIONS(2916), - [aux_sym_cmd_identifier_token20] = ACTIONS(2916), - [aux_sym_cmd_identifier_token21] = ACTIONS(2916), - [aux_sym_cmd_identifier_token22] = ACTIONS(2916), - [aux_sym_cmd_identifier_token23] = ACTIONS(2916), - [aux_sym_cmd_identifier_token24] = ACTIONS(2916), - [aux_sym_cmd_identifier_token25] = ACTIONS(2916), - [aux_sym_cmd_identifier_token26] = ACTIONS(2916), - [aux_sym_cmd_identifier_token27] = ACTIONS(2916), - [aux_sym_cmd_identifier_token28] = ACTIONS(2916), - [aux_sym_cmd_identifier_token29] = ACTIONS(2916), - [aux_sym_cmd_identifier_token30] = ACTIONS(2916), - [aux_sym_cmd_identifier_token31] = ACTIONS(2916), - [aux_sym_cmd_identifier_token32] = ACTIONS(2916), - [aux_sym_cmd_identifier_token33] = ACTIONS(2916), - [aux_sym_cmd_identifier_token34] = ACTIONS(2914), - [aux_sym_cmd_identifier_token35] = ACTIONS(2916), - [aux_sym_cmd_identifier_token36] = ACTIONS(2916), - [aux_sym_cmd_identifier_token37] = ACTIONS(2916), - [aux_sym_cmd_identifier_token38] = ACTIONS(2914), - [aux_sym_cmd_identifier_token39] = ACTIONS(2916), - [aux_sym_cmd_identifier_token40] = ACTIONS(2916), - [sym__newline] = ACTIONS(2916), - [anon_sym_PIPE] = ACTIONS(2916), - [anon_sym_err_GT_PIPE] = ACTIONS(2916), - [anon_sym_out_GT_PIPE] = ACTIONS(2916), - [anon_sym_e_GT_PIPE] = ACTIONS(2916), - [anon_sym_o_GT_PIPE] = ACTIONS(2916), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2916), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2916), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2916), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2916), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_DOLLAR] = ACTIONS(2914), - [anon_sym_DASH2] = ACTIONS(2914), - [anon_sym_break] = ACTIONS(2914), - [anon_sym_continue] = ACTIONS(2914), - [anon_sym_do] = ACTIONS(2914), - [anon_sym_if] = ACTIONS(2914), - [anon_sym_match] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_DOT_DOT] = ACTIONS(2914), - [anon_sym_try] = ACTIONS(2914), - [anon_sym_return] = ACTIONS(2914), - [anon_sym_where] = ACTIONS(2916), - [aux_sym_expr_unary_token1] = ACTIONS(2916), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2916), - [anon_sym_DOT_DOT_LT] = ACTIONS(2916), - [anon_sym_null] = ACTIONS(2914), - [anon_sym_true] = ACTIONS(2914), - [anon_sym_false] = ACTIONS(2914), - [aux_sym__val_number_decimal_token1] = ACTIONS(2914), - [aux_sym__val_number_decimal_token2] = ACTIONS(2916), - [aux_sym__val_number_decimal_token3] = ACTIONS(2916), - [aux_sym__val_number_decimal_token4] = ACTIONS(2916), - [aux_sym__val_number_token1] = ACTIONS(2916), - [aux_sym__val_number_token2] = ACTIONS(2916), - [aux_sym__val_number_token3] = ACTIONS(2916), - [aux_sym__val_number_token4] = ACTIONS(2914), - [aux_sym__val_number_token5] = ACTIONS(2914), - [aux_sym__val_number_token6] = ACTIONS(2914), - [anon_sym_0b] = ACTIONS(2914), - [anon_sym_0o] = ACTIONS(2914), - [anon_sym_0x] = ACTIONS(2914), - [sym_val_date] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [sym__str_single_quotes] = ACTIONS(2916), - [sym__str_back_ticks] = ACTIONS(2916), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2916), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2916), - [aux_sym_env_var_token1] = ACTIONS(2914), - [anon_sym_CARET] = ACTIONS(2916), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2916), - }, - [795] = { - [sym_comment] = STATE(795), - [aux_sym_cmd_identifier_token1] = ACTIONS(2522), - [aux_sym_cmd_identifier_token2] = ACTIONS(2524), - [aux_sym_cmd_identifier_token3] = ACTIONS(2524), - [aux_sym_cmd_identifier_token4] = ACTIONS(2524), - [aux_sym_cmd_identifier_token5] = ACTIONS(2524), - [aux_sym_cmd_identifier_token6] = ACTIONS(2524), - [aux_sym_cmd_identifier_token7] = ACTIONS(2524), - [aux_sym_cmd_identifier_token8] = ACTIONS(2524), - [aux_sym_cmd_identifier_token9] = ACTIONS(2522), - [aux_sym_cmd_identifier_token10] = ACTIONS(2524), - [aux_sym_cmd_identifier_token11] = ACTIONS(2524), - [aux_sym_cmd_identifier_token12] = ACTIONS(2524), - [aux_sym_cmd_identifier_token13] = ACTIONS(2522), - [aux_sym_cmd_identifier_token14] = ACTIONS(2524), - [aux_sym_cmd_identifier_token15] = ACTIONS(2522), - [aux_sym_cmd_identifier_token16] = ACTIONS(2524), - [aux_sym_cmd_identifier_token17] = ACTIONS(2524), - [aux_sym_cmd_identifier_token18] = ACTIONS(2524), - [aux_sym_cmd_identifier_token19] = ACTIONS(2524), - [aux_sym_cmd_identifier_token20] = ACTIONS(2524), - [aux_sym_cmd_identifier_token21] = ACTIONS(2524), - [aux_sym_cmd_identifier_token22] = ACTIONS(2524), - [aux_sym_cmd_identifier_token23] = ACTIONS(2524), - [aux_sym_cmd_identifier_token24] = ACTIONS(2524), - [aux_sym_cmd_identifier_token25] = ACTIONS(2524), - [aux_sym_cmd_identifier_token26] = ACTIONS(2524), - [aux_sym_cmd_identifier_token27] = ACTIONS(2524), - [aux_sym_cmd_identifier_token28] = ACTIONS(2524), - [aux_sym_cmd_identifier_token29] = ACTIONS(2524), - [aux_sym_cmd_identifier_token30] = ACTIONS(2524), - [aux_sym_cmd_identifier_token31] = ACTIONS(2524), - [aux_sym_cmd_identifier_token32] = ACTIONS(2524), - [aux_sym_cmd_identifier_token33] = ACTIONS(2524), - [aux_sym_cmd_identifier_token34] = ACTIONS(2522), - [aux_sym_cmd_identifier_token35] = ACTIONS(2524), - [aux_sym_cmd_identifier_token36] = ACTIONS(2524), - [aux_sym_cmd_identifier_token37] = ACTIONS(2524), - [aux_sym_cmd_identifier_token38] = ACTIONS(2522), - [aux_sym_cmd_identifier_token39] = ACTIONS(2524), - [aux_sym_cmd_identifier_token40] = ACTIONS(2524), - [sym__newline] = ACTIONS(2524), - [anon_sym_PIPE] = ACTIONS(2524), - [anon_sym_err_GT_PIPE] = ACTIONS(2524), - [anon_sym_out_GT_PIPE] = ACTIONS(2524), - [anon_sym_e_GT_PIPE] = ACTIONS(2524), - [anon_sym_o_GT_PIPE] = ACTIONS(2524), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2524), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2524), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2524), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2524), - [anon_sym_LBRACK] = ACTIONS(2524), - [anon_sym_LPAREN] = ACTIONS(2524), - [anon_sym_DOLLAR] = ACTIONS(2522), - [anon_sym_DASH2] = ACTIONS(2522), - [anon_sym_break] = ACTIONS(2522), - [anon_sym_continue] = ACTIONS(2522), - [anon_sym_do] = ACTIONS(2522), - [anon_sym_if] = ACTIONS(2522), - [anon_sym_match] = ACTIONS(2522), - [anon_sym_LBRACE] = ACTIONS(2524), - [anon_sym_DOT_DOT] = ACTIONS(2522), - [anon_sym_try] = ACTIONS(2522), - [anon_sym_return] = ACTIONS(2522), - [anon_sym_where] = ACTIONS(2524), - [aux_sym_expr_unary_token1] = ACTIONS(2524), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2524), - [anon_sym_DOT_DOT_LT] = ACTIONS(2524), - [anon_sym_null] = ACTIONS(2522), - [anon_sym_true] = ACTIONS(2522), - [anon_sym_false] = ACTIONS(2522), - [aux_sym__val_number_decimal_token1] = ACTIONS(2522), - [aux_sym__val_number_decimal_token2] = ACTIONS(2524), - [aux_sym__val_number_decimal_token3] = ACTIONS(2524), - [aux_sym__val_number_decimal_token4] = ACTIONS(2524), - [aux_sym__val_number_token1] = ACTIONS(2524), - [aux_sym__val_number_token2] = ACTIONS(2524), - [aux_sym__val_number_token3] = ACTIONS(2524), - [aux_sym__val_number_token4] = ACTIONS(2522), - [aux_sym__val_number_token5] = ACTIONS(2522), - [aux_sym__val_number_token6] = ACTIONS(2522), - [anon_sym_0b] = ACTIONS(2522), - [anon_sym_0o] = ACTIONS(2522), - [anon_sym_0x] = ACTIONS(2522), - [sym_val_date] = ACTIONS(2524), - [anon_sym_DQUOTE] = ACTIONS(2524), - [sym__str_single_quotes] = ACTIONS(2524), - [sym__str_back_ticks] = ACTIONS(2524), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2524), - [aux_sym_env_var_token1] = ACTIONS(2522), - [anon_sym_CARET] = ACTIONS(2524), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2524), - }, - [796] = { - [sym_comment] = STATE(796), [aux_sym_cmd_identifier_token1] = ACTIONS(1290), [aux_sym_cmd_identifier_token2] = ACTIONS(1288), [aux_sym_cmd_identifier_token3] = ACTIONS(1288), @@ -159439,432 +158596,336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1288), }, - [797] = { - [sym_comment] = STATE(797), - [ts_builtin_sym_end] = ACTIONS(1609), - [anon_sym_STAR_STAR] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_SLASH_SLASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_bit_DASHshl] = ACTIONS(1609), - [anon_sym_bit_DASHshr] = ACTIONS(1609), - [anon_sym_EQ_TILDE] = ACTIONS(1609), - [anon_sym_BANG_TILDE] = ACTIONS(1609), - [anon_sym_bit_DASHand] = ACTIONS(1609), - [anon_sym_bit_DASHxor] = ACTIONS(1609), - [anon_sym_bit_DASHor] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(1609), - [anon_sym_not_DASHin] = ACTIONS(1609), - [anon_sym_starts_DASHwith] = ACTIONS(1609), - [anon_sym_ends_DASHwith] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1609), - [anon_sym_BANG_EQ] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1609), - [aux_sym_cmd_identifier_token41] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT] = ACTIONS(2918), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(2920), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1607), - [anon_sym_out_GT_GT] = ACTIONS(1607), - [anon_sym_e_GT_GT] = ACTIONS(1607), - [anon_sym_o_GT_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), - [anon_sym_POUND] = ACTIONS(3), + [785] = { + [sym_expr_parenthesized] = STATE(1561), + [sym_val_range] = STATE(1826), + [sym__val_range] = STATE(7964), + [sym__val_range_with_end] = STATE(7619), + [sym__value] = STATE(1826), + [sym_val_nothing] = STATE(1829), + [sym_val_bool] = STATE(1634), + [sym_val_variable] = STATE(1515), + [sym_val_number] = STATE(1829), + [sym__val_number_decimal] = STATE(1333), + [sym__val_number] = STATE(1779), + [sym_val_duration] = STATE(1829), + [sym_val_filesize] = STATE(1829), + [sym_val_binary] = STATE(1829), + [sym_val_string] = STATE(1829), + [sym__raw_str] = STATE(1791), + [sym__str_double_quotes] = STATE(1791), + [sym_val_interpolated] = STATE(1829), + [sym__inter_single_quotes] = STATE(1798), + [sym__inter_double_quotes] = STATE(1799), + [sym_val_list] = STATE(1829), + [sym_val_record] = STATE(1829), + [sym_val_table] = STATE(1829), + [sym_val_closure] = STATE(1829), + [sym_short_flag] = STATE(1826), + [sym_long_flag] = STATE(1826), + [sym_unquoted] = STATE(1638), + [sym__unquoted_with_expr] = STATE(1828), + [sym__unquoted_anonymous_prefix] = STATE(6843), + [sym_comment] = STATE(785), + [aux_sym_ctrl_do_repeat2] = STATE(794), + [sym__newline] = ACTIONS(2687), + [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_PIPE] = ACTIONS(2687), + [anon_sym_err_GT_PIPE] = ACTIONS(2687), + [anon_sym_out_GT_PIPE] = ACTIONS(2687), + [anon_sym_e_GT_PIPE] = ACTIONS(2687), + [anon_sym_o_GT_PIPE] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_RPAREN] = ACTIONS(2687), + [anon_sym_DOLLAR] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_DASH2] = ACTIONS(2633), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_RBRACE] = ACTIONS(2687), + [anon_sym_DOT_DOT] = ACTIONS(2637), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2639), + [anon_sym_DOT_DOT_LT] = ACTIONS(2639), + [anon_sym_null] = ACTIONS(2641), + [anon_sym_true] = ACTIONS(2643), + [anon_sym_false] = ACTIONS(2643), + [aux_sym__val_number_decimal_token1] = ACTIONS(2645), + [aux_sym__val_number_decimal_token2] = ACTIONS(2647), + [aux_sym__val_number_decimal_token3] = ACTIONS(2649), + [aux_sym__val_number_decimal_token4] = ACTIONS(2651), + [aux_sym__val_number_token1] = ACTIONS(2653), + [aux_sym__val_number_token2] = ACTIONS(2653), + [aux_sym__val_number_token3] = ACTIONS(2653), + [aux_sym__val_number_token4] = ACTIONS(2655), + [aux_sym__val_number_token5] = ACTIONS(2655), + [aux_sym__val_number_token6] = ACTIONS(2655), + [anon_sym_0b] = ACTIONS(2657), + [anon_sym_0o] = ACTIONS(2659), + [anon_sym_0x] = ACTIONS(2659), + [sym_val_date] = ACTIONS(2661), + [anon_sym_DQUOTE] = ACTIONS(2663), + [sym__str_single_quotes] = ACTIONS(2665), + [sym__str_back_ticks] = ACTIONS(2665), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2667), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2669), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(2675), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2677), }, - [798] = { - [sym_comment] = STATE(798), - [anon_sym_STAR_STAR] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_SLASH_SLASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_bit_DASHshl] = ACTIONS(1609), - [anon_sym_bit_DASHshr] = ACTIONS(1609), - [anon_sym_EQ_TILDE] = ACTIONS(1609), - [anon_sym_BANG_TILDE] = ACTIONS(1609), - [anon_sym_bit_DASHand] = ACTIONS(1609), - [anon_sym_bit_DASHxor] = ACTIONS(1609), - [anon_sym_bit_DASHor] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(1609), - [anon_sym_not_DASHin] = ACTIONS(1609), - [anon_sym_starts_DASHwith] = ACTIONS(1609), - [anon_sym_ends_DASHwith] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1609), - [anon_sym_BANG_EQ] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1609), - [aux_sym_cmd_identifier_token41] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_RBRACE] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(2858), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), - [aux_sym_record_entry_token1] = ACTIONS(1607), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1607), - [anon_sym_out_GT_GT] = ACTIONS(1607), - [anon_sym_e_GT_GT] = ACTIONS(1607), - [anon_sym_o_GT_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [786] = { + [sym_comment] = STATE(786), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_bit_DASHshl] = ACTIONS(1575), + [anon_sym_bit_DASHshr] = ACTIONS(1575), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_BANG_TILDE] = ACTIONS(1575), + [anon_sym_bit_DASHand] = ACTIONS(1575), + [anon_sym_bit_DASHxor] = ACTIONS(1575), + [anon_sym_bit_DASHor] = ACTIONS(1575), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_not_DASHin] = ACTIONS(1575), + [anon_sym_starts_DASHwith] = ACTIONS(1575), + [anon_sym_ends_DASHwith] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1575), + [aux_sym_cmd_identifier_token41] = ACTIONS(1573), + [sym__newline] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_err_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_GT_PIPE] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), + [anon_sym_RPAREN] = ACTIONS(1573), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1573), + [anon_sym_xor2] = ACTIONS(1573), + [anon_sym_or2] = ACTIONS(1573), + [anon_sym_not_DASHin2] = ACTIONS(1573), + [anon_sym_starts_DASHwith2] = ACTIONS(1573), + [anon_sym_ends_DASHwith2] = ACTIONS(1573), + [anon_sym_EQ_EQ2] = ACTIONS(1573), + [anon_sym_BANG_EQ2] = ACTIONS(1573), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1573), + [anon_sym_GT_EQ2] = ACTIONS(1573), + [anon_sym_EQ_TILDE2] = ACTIONS(1573), + [anon_sym_BANG_TILDE2] = ACTIONS(1573), + [anon_sym_STAR_STAR2] = ACTIONS(1573), + [anon_sym_PLUS_PLUS2] = ACTIONS(1573), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1573), + [anon_sym_SLASH_SLASH2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1573), + [anon_sym_bit_DASHshr2] = ACTIONS(1573), + [anon_sym_bit_DASHand2] = ACTIONS(1573), + [anon_sym_bit_DASHxor2] = ACTIONS(1573), + [anon_sym_bit_DASHor2] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT] = ACTIONS(2689), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(2691), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1573), + [anon_sym_out_GT_GT] = ACTIONS(1573), + [anon_sym_e_GT_GT] = ACTIONS(1573), + [anon_sym_o_GT_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), [anon_sym_POUND] = ACTIONS(3), }, - [799] = { - [sym_comment] = STATE(799), - [anon_sym_STAR_STAR] = ACTIONS(1675), - [anon_sym_PLUS_PLUS] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1673), - [anon_sym_mod] = ACTIONS(1675), - [anon_sym_SLASH_SLASH] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_bit_DASHshl] = ACTIONS(1675), - [anon_sym_bit_DASHshr] = ACTIONS(1675), - [anon_sym_EQ_TILDE] = ACTIONS(1675), - [anon_sym_BANG_TILDE] = ACTIONS(1675), - [anon_sym_bit_DASHand] = ACTIONS(1675), - [anon_sym_bit_DASHxor] = ACTIONS(1675), - [anon_sym_bit_DASHor] = ACTIONS(1675), - [anon_sym_and] = ACTIONS(1675), - [anon_sym_xor] = ACTIONS(1675), - [anon_sym_or] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [anon_sym_not_DASHin] = ACTIONS(1675), - [anon_sym_starts_DASHwith] = ACTIONS(1675), - [anon_sym_ends_DASHwith] = ACTIONS(1675), - [anon_sym_EQ_EQ] = ACTIONS(1675), - [anon_sym_BANG_EQ] = ACTIONS(1675), - [anon_sym_LT] = ACTIONS(1673), - [anon_sym_LT_EQ] = ACTIONS(1675), - [anon_sym_GT] = ACTIONS(1673), - [anon_sym_GT_EQ] = ACTIONS(1675), - [aux_sym_cmd_identifier_token41] = ACTIONS(1673), - [sym__newline] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1673), - [anon_sym_err_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_GT_PIPE] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_in2] = ACTIONS(1673), - [anon_sym_RBRACE] = ACTIONS(1673), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1673), - [anon_sym_xor2] = ACTIONS(1673), - [anon_sym_or2] = ACTIONS(1673), - [anon_sym_not_DASHin2] = ACTIONS(1673), - [anon_sym_starts_DASHwith2] = ACTIONS(1673), - [anon_sym_ends_DASHwith2] = ACTIONS(1673), - [anon_sym_EQ_EQ2] = ACTIONS(1673), - [anon_sym_BANG_EQ2] = ACTIONS(1673), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1673), - [anon_sym_GT_EQ2] = ACTIONS(1673), - [anon_sym_EQ_TILDE2] = ACTIONS(1673), - [anon_sym_BANG_TILDE2] = ACTIONS(1673), - [anon_sym_STAR_STAR2] = ACTIONS(1673), - [anon_sym_PLUS_PLUS2] = ACTIONS(1673), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1673), - [anon_sym_SLASH_SLASH2] = ACTIONS(1673), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1673), - [anon_sym_bit_DASHshr2] = ACTIONS(1673), - [anon_sym_bit_DASHand2] = ACTIONS(1673), - [anon_sym_bit_DASHxor2] = ACTIONS(1673), - [anon_sym_bit_DASHor2] = ACTIONS(1673), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [aux_sym__immediate_decimal_token2] = ACTIONS(2922), - [sym_filesize_unit] = ACTIONS(1673), - [sym_duration_unit] = ACTIONS(1675), - [aux_sym_record_entry_token1] = ACTIONS(1673), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1673), - [anon_sym_out_GT_GT] = ACTIONS(1673), - [anon_sym_e_GT_GT] = ACTIONS(1673), - [anon_sym_o_GT_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), + [787] = { + [sym_comment] = STATE(787), + [anon_sym_STAR_STAR] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_mod] = ACTIONS(1587), + [anon_sym_SLASH_SLASH] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_bit_DASHshl] = ACTIONS(1587), + [anon_sym_bit_DASHshr] = ACTIONS(1587), + [anon_sym_EQ_TILDE] = ACTIONS(1587), + [anon_sym_BANG_TILDE] = ACTIONS(1587), + [anon_sym_bit_DASHand] = ACTIONS(1587), + [anon_sym_bit_DASHxor] = ACTIONS(1587), + [anon_sym_bit_DASHor] = ACTIONS(1587), + [anon_sym_and] = ACTIONS(1587), + [anon_sym_xor] = ACTIONS(1587), + [anon_sym_or] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(1587), + [anon_sym_not_DASHin] = ACTIONS(1587), + [anon_sym_starts_DASHwith] = ACTIONS(1587), + [anon_sym_ends_DASHwith] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(1587), + [anon_sym_BANG_EQ] = ACTIONS(1587), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_LT_EQ] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1587), + [aux_sym_cmd_identifier_token41] = ACTIONS(1585), + [sym__newline] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_err_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_GT_PIPE] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(1585), + [anon_sym_GT2] = ACTIONS(1585), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_in2] = ACTIONS(1585), + [anon_sym_STAR2] = ACTIONS(1585), + [anon_sym_and2] = ACTIONS(1585), + [anon_sym_xor2] = ACTIONS(1585), + [anon_sym_or2] = ACTIONS(1585), + [anon_sym_not_DASHin2] = ACTIONS(1585), + [anon_sym_starts_DASHwith2] = ACTIONS(1585), + [anon_sym_ends_DASHwith2] = ACTIONS(1585), + [anon_sym_EQ_EQ2] = ACTIONS(1585), + [anon_sym_BANG_EQ2] = ACTIONS(1585), + [anon_sym_LT2] = ACTIONS(1585), + [anon_sym_LT_EQ2] = ACTIONS(1585), + [anon_sym_GT_EQ2] = ACTIONS(1585), + [anon_sym_EQ_TILDE2] = ACTIONS(1585), + [anon_sym_BANG_TILDE2] = ACTIONS(1585), + [anon_sym_STAR_STAR2] = ACTIONS(1585), + [anon_sym_PLUS_PLUS2] = ACTIONS(1585), + [anon_sym_SLASH2] = ACTIONS(1585), + [anon_sym_mod2] = ACTIONS(1585), + [anon_sym_SLASH_SLASH2] = ACTIONS(1585), + [anon_sym_PLUS2] = ACTIONS(1585), + [anon_sym_bit_DASHshl2] = ACTIONS(1585), + [anon_sym_bit_DASHshr2] = ACTIONS(1585), + [anon_sym_bit_DASHand2] = ACTIONS(1585), + [anon_sym_bit_DASHxor2] = ACTIONS(1585), + [anon_sym_bit_DASHor2] = ACTIONS(1585), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [aux_sym__immediate_decimal_token1] = ACTIONS(2693), + [aux_sym__immediate_decimal_token2] = ACTIONS(2695), + [sym_filesize_unit] = ACTIONS(1585), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1585), + [anon_sym_out_GT_GT] = ACTIONS(1585), + [anon_sym_e_GT_GT] = ACTIONS(1585), + [anon_sym_o_GT_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1585), [anon_sym_POUND] = ACTIONS(3), }, - [800] = { - [sym_expr_parenthesized] = STATE(1625), - [sym_val_range] = STATE(1853), - [sym__val_range] = STATE(7587), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(1853), - [sym_val_nothing] = STATE(1890), - [sym_val_bool] = STATE(1685), - [sym_val_variable] = STATE(1583), - [sym_val_number] = STATE(1890), - [sym__val_number_decimal] = STATE(1375), - [sym__val_number] = STATE(1944), - [sym_val_duration] = STATE(1890), - [sym_val_filesize] = STATE(1890), - [sym_val_binary] = STATE(1890), - [sym_val_string] = STATE(1890), - [sym__raw_str] = STATE(1873), - [sym__str_double_quotes] = STATE(1873), - [sym_val_interpolated] = STATE(1890), - [sym__inter_single_quotes] = STATE(1966), - [sym__inter_double_quotes] = STATE(1967), - [sym_val_list] = STATE(1890), - [sym_val_record] = STATE(1890), - [sym_val_table] = STATE(1890), - [sym_val_closure] = STATE(1890), - [sym__flag] = STATE(1853), - [sym_short_flag] = STATE(1876), - [sym_long_flag] = STATE(1876), - [sym_unquoted] = STATE(1727), - [sym__unquoted_with_expr] = STATE(1975), - [sym__unquoted_anonymous_prefix] = STATE(6997), - [sym_comment] = STATE(800), - [aux_sym_ctrl_do_repeat2] = STATE(806), - [ts_builtin_sym_end] = ACTIONS(2671), - [sym__newline] = ACTIONS(2671), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_PIPE] = ACTIONS(2671), - [anon_sym_err_GT_PIPE] = ACTIONS(2671), - [anon_sym_out_GT_PIPE] = ACTIONS(2671), - [anon_sym_e_GT_PIPE] = ACTIONS(2671), - [anon_sym_o_GT_PIPE] = ACTIONS(2671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2671), - [anon_sym_LBRACK] = ACTIONS(2860), - [anon_sym_LPAREN] = ACTIONS(2862), - [anon_sym_DOLLAR] = ACTIONS(2864), - [anon_sym_DASH_DASH] = ACTIONS(2866), - [anon_sym_DASH2] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_DOT_DOT] = ACTIONS(2872), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2874), - [anon_sym_DOT_DOT_LT] = ACTIONS(2874), - [anon_sym_null] = ACTIONS(2876), - [anon_sym_true] = ACTIONS(2878), - [anon_sym_false] = ACTIONS(2878), - [aux_sym__val_number_decimal_token1] = ACTIONS(2880), - [aux_sym__val_number_decimal_token2] = ACTIONS(2882), - [aux_sym__val_number_decimal_token3] = ACTIONS(2884), - [aux_sym__val_number_decimal_token4] = ACTIONS(2886), - [aux_sym__val_number_token1] = ACTIONS(2888), - [aux_sym__val_number_token2] = ACTIONS(2888), - [aux_sym__val_number_token3] = ACTIONS(2888), - [aux_sym__val_number_token4] = ACTIONS(2890), - [aux_sym__val_number_token5] = ACTIONS(2890), - [aux_sym__val_number_token6] = ACTIONS(2890), - [anon_sym_0b] = ACTIONS(2892), - [anon_sym_0o] = ACTIONS(2894), - [anon_sym_0x] = ACTIONS(2894), - [sym_val_date] = ACTIONS(2896), - [anon_sym_DQUOTE] = ACTIONS(2898), - [sym__str_single_quotes] = ACTIONS(2900), - [sym__str_back_ticks] = ACTIONS(2900), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(2906), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2908), - }, - [801] = { - [sym_comment] = STATE(801), - [aux_sym_cmd_identifier_token1] = ACTIONS(2924), - [aux_sym_cmd_identifier_token2] = ACTIONS(2926), - [aux_sym_cmd_identifier_token3] = ACTIONS(2926), - [aux_sym_cmd_identifier_token4] = ACTIONS(2926), - [aux_sym_cmd_identifier_token5] = ACTIONS(2926), - [aux_sym_cmd_identifier_token6] = ACTIONS(2926), - [aux_sym_cmd_identifier_token7] = ACTIONS(2926), - [aux_sym_cmd_identifier_token8] = ACTIONS(2926), - [aux_sym_cmd_identifier_token9] = ACTIONS(2924), - [aux_sym_cmd_identifier_token10] = ACTIONS(2926), - [aux_sym_cmd_identifier_token11] = ACTIONS(2926), - [aux_sym_cmd_identifier_token12] = ACTIONS(2926), - [aux_sym_cmd_identifier_token13] = ACTIONS(2924), - [aux_sym_cmd_identifier_token14] = ACTIONS(2926), - [aux_sym_cmd_identifier_token15] = ACTIONS(2924), - [aux_sym_cmd_identifier_token16] = ACTIONS(2926), - [aux_sym_cmd_identifier_token17] = ACTIONS(2926), - [aux_sym_cmd_identifier_token18] = ACTIONS(2926), - [aux_sym_cmd_identifier_token19] = ACTIONS(2926), - [aux_sym_cmd_identifier_token20] = ACTIONS(2926), - [aux_sym_cmd_identifier_token21] = ACTIONS(2926), - [aux_sym_cmd_identifier_token22] = ACTIONS(2926), - [aux_sym_cmd_identifier_token23] = ACTIONS(2926), - [aux_sym_cmd_identifier_token24] = ACTIONS(2926), - [aux_sym_cmd_identifier_token25] = ACTIONS(2926), - [aux_sym_cmd_identifier_token26] = ACTIONS(2926), - [aux_sym_cmd_identifier_token27] = ACTIONS(2926), - [aux_sym_cmd_identifier_token28] = ACTIONS(2926), - [aux_sym_cmd_identifier_token29] = ACTIONS(2926), - [aux_sym_cmd_identifier_token30] = ACTIONS(2926), - [aux_sym_cmd_identifier_token31] = ACTIONS(2926), - [aux_sym_cmd_identifier_token32] = ACTIONS(2926), - [aux_sym_cmd_identifier_token33] = ACTIONS(2926), - [aux_sym_cmd_identifier_token34] = ACTIONS(2924), - [aux_sym_cmd_identifier_token35] = ACTIONS(2926), - [aux_sym_cmd_identifier_token36] = ACTIONS(2926), - [aux_sym_cmd_identifier_token37] = ACTIONS(2926), - [aux_sym_cmd_identifier_token38] = ACTIONS(2924), - [aux_sym_cmd_identifier_token39] = ACTIONS(2926), - [aux_sym_cmd_identifier_token40] = ACTIONS(2926), + [788] = { + [sym_comment] = STATE(788), + [aux_sym_cmd_identifier_token1] = ACTIONS(2697), + [aux_sym_cmd_identifier_token2] = ACTIONS(2699), + [aux_sym_cmd_identifier_token3] = ACTIONS(2699), + [aux_sym_cmd_identifier_token4] = ACTIONS(2699), + [aux_sym_cmd_identifier_token5] = ACTIONS(2699), + [aux_sym_cmd_identifier_token6] = ACTIONS(2699), + [aux_sym_cmd_identifier_token7] = ACTIONS(2699), + [aux_sym_cmd_identifier_token8] = ACTIONS(2699), + [aux_sym_cmd_identifier_token9] = ACTIONS(2697), + [aux_sym_cmd_identifier_token10] = ACTIONS(2699), + [aux_sym_cmd_identifier_token11] = ACTIONS(2699), + [aux_sym_cmd_identifier_token12] = ACTIONS(2699), + [aux_sym_cmd_identifier_token13] = ACTIONS(2697), + [aux_sym_cmd_identifier_token14] = ACTIONS(2699), + [aux_sym_cmd_identifier_token15] = ACTIONS(2697), + [aux_sym_cmd_identifier_token16] = ACTIONS(2699), + [aux_sym_cmd_identifier_token17] = ACTIONS(2699), + [aux_sym_cmd_identifier_token18] = ACTIONS(2699), + [aux_sym_cmd_identifier_token19] = ACTIONS(2699), + [aux_sym_cmd_identifier_token20] = ACTIONS(2699), + [aux_sym_cmd_identifier_token21] = ACTIONS(2699), + [aux_sym_cmd_identifier_token22] = ACTIONS(2699), + [aux_sym_cmd_identifier_token23] = ACTIONS(2699), + [aux_sym_cmd_identifier_token24] = ACTIONS(2699), + [aux_sym_cmd_identifier_token25] = ACTIONS(2699), + [aux_sym_cmd_identifier_token26] = ACTIONS(2699), + [aux_sym_cmd_identifier_token27] = ACTIONS(2699), + [aux_sym_cmd_identifier_token28] = ACTIONS(2699), + [aux_sym_cmd_identifier_token29] = ACTIONS(2699), + [aux_sym_cmd_identifier_token30] = ACTIONS(2699), + [aux_sym_cmd_identifier_token31] = ACTIONS(2699), + [aux_sym_cmd_identifier_token32] = ACTIONS(2699), + [aux_sym_cmd_identifier_token33] = ACTIONS(2699), + [aux_sym_cmd_identifier_token34] = ACTIONS(2697), + [aux_sym_cmd_identifier_token35] = ACTIONS(2699), + [aux_sym_cmd_identifier_token36] = ACTIONS(2699), + [aux_sym_cmd_identifier_token37] = ACTIONS(2699), + [aux_sym_cmd_identifier_token38] = ACTIONS(2697), + [aux_sym_cmd_identifier_token39] = ACTIONS(2699), + [aux_sym_cmd_identifier_token40] = ACTIONS(2699), [sym__newline] = ACTIONS(1288), [anon_sym_PIPE] = ACTIONS(1288), [anon_sym_err_GT_PIPE] = ACTIONS(1288), @@ -159875,2332 +158936,3199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1288), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1288), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1288), - [anon_sym_LBRACK] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2924), - [anon_sym_DASH2] = ACTIONS(2924), - [anon_sym_break] = ACTIONS(2924), - [anon_sym_continue] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_LBRACE] = ACTIONS(2926), - [anon_sym_DOT_DOT] = ACTIONS(2924), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_where] = ACTIONS(2926), - [aux_sym_expr_unary_token1] = ACTIONS(2926), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2926), - [anon_sym_DOT_DOT_LT] = ACTIONS(2926), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_true] = ACTIONS(2924), - [anon_sym_false] = ACTIONS(2924), - [aux_sym__val_number_decimal_token1] = ACTIONS(2924), - [aux_sym__val_number_decimal_token2] = ACTIONS(2926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2926), - [aux_sym__val_number_decimal_token4] = ACTIONS(2926), - [aux_sym__val_number_token1] = ACTIONS(2926), - [aux_sym__val_number_token2] = ACTIONS(2926), - [aux_sym__val_number_token3] = ACTIONS(2926), - [aux_sym__val_number_token4] = ACTIONS(2924), - [aux_sym__val_number_token5] = ACTIONS(2924), - [aux_sym__val_number_token6] = ACTIONS(2924), - [anon_sym_0b] = ACTIONS(2924), - [anon_sym_0o] = ACTIONS(2924), - [anon_sym_0x] = ACTIONS(2924), - [sym_val_date] = ACTIONS(2926), - [anon_sym_DQUOTE] = ACTIONS(2926), - [sym__str_single_quotes] = ACTIONS(2926), - [sym__str_back_ticks] = ACTIONS(2926), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2926), - [aux_sym_env_var_token1] = ACTIONS(2924), - [anon_sym_CARET] = ACTIONS(2926), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2926), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_DOLLAR] = ACTIONS(2697), + [anon_sym_DASH2] = ACTIONS(2697), + [anon_sym_break] = ACTIONS(2697), + [anon_sym_continue] = ACTIONS(2697), + [anon_sym_do] = ACTIONS(2697), + [anon_sym_if] = ACTIONS(2697), + [anon_sym_match] = ACTIONS(2697), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_DOT_DOT] = ACTIONS(2697), + [anon_sym_try] = ACTIONS(2697), + [anon_sym_return] = ACTIONS(2697), + [anon_sym_where] = ACTIONS(2699), + [aux_sym_expr_unary_token1] = ACTIONS(2699), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2699), + [anon_sym_DOT_DOT_LT] = ACTIONS(2699), + [anon_sym_null] = ACTIONS(2697), + [anon_sym_true] = ACTIONS(2697), + [anon_sym_false] = ACTIONS(2697), + [aux_sym__val_number_decimal_token1] = ACTIONS(2697), + [aux_sym__val_number_decimal_token2] = ACTIONS(2699), + [aux_sym__val_number_decimal_token3] = ACTIONS(2699), + [aux_sym__val_number_decimal_token4] = ACTIONS(2699), + [aux_sym__val_number_token1] = ACTIONS(2699), + [aux_sym__val_number_token2] = ACTIONS(2699), + [aux_sym__val_number_token3] = ACTIONS(2699), + [aux_sym__val_number_token4] = ACTIONS(2697), + [aux_sym__val_number_token5] = ACTIONS(2697), + [aux_sym__val_number_token6] = ACTIONS(2697), + [anon_sym_0b] = ACTIONS(2697), + [anon_sym_0o] = ACTIONS(2697), + [anon_sym_0x] = ACTIONS(2697), + [sym_val_date] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [sym__str_single_quotes] = ACTIONS(2699), + [sym__str_back_ticks] = ACTIONS(2699), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2699), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2699), + [aux_sym_env_var_token1] = ACTIONS(2697), + [anon_sym_CARET] = ACTIONS(2699), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2699), + }, + [789] = { + [sym_comment] = STATE(789), + [ts_builtin_sym_end] = ACTIONS(1587), + [anon_sym_STAR_STAR] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_mod] = ACTIONS(1587), + [anon_sym_SLASH_SLASH] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_bit_DASHshl] = ACTIONS(1587), + [anon_sym_bit_DASHshr] = ACTIONS(1587), + [anon_sym_EQ_TILDE] = ACTIONS(1587), + [anon_sym_BANG_TILDE] = ACTIONS(1587), + [anon_sym_bit_DASHand] = ACTIONS(1587), + [anon_sym_bit_DASHxor] = ACTIONS(1587), + [anon_sym_bit_DASHor] = ACTIONS(1587), + [anon_sym_and] = ACTIONS(1587), + [anon_sym_xor] = ACTIONS(1587), + [anon_sym_or] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(1587), + [anon_sym_not_DASHin] = ACTIONS(1587), + [anon_sym_starts_DASHwith] = ACTIONS(1587), + [anon_sym_ends_DASHwith] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(1587), + [anon_sym_BANG_EQ] = ACTIONS(1587), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_LT_EQ] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1587), + [aux_sym_cmd_identifier_token41] = ACTIONS(1585), + [sym__newline] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_err_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_GT_PIPE] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), + [anon_sym_GT2] = ACTIONS(1585), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_in2] = ACTIONS(1585), + [anon_sym_STAR2] = ACTIONS(1585), + [anon_sym_and2] = ACTIONS(1585), + [anon_sym_xor2] = ACTIONS(1585), + [anon_sym_or2] = ACTIONS(1585), + [anon_sym_not_DASHin2] = ACTIONS(1585), + [anon_sym_starts_DASHwith2] = ACTIONS(1585), + [anon_sym_ends_DASHwith2] = ACTIONS(1585), + [anon_sym_EQ_EQ2] = ACTIONS(1585), + [anon_sym_BANG_EQ2] = ACTIONS(1585), + [anon_sym_LT2] = ACTIONS(1585), + [anon_sym_LT_EQ2] = ACTIONS(1585), + [anon_sym_GT_EQ2] = ACTIONS(1585), + [anon_sym_EQ_TILDE2] = ACTIONS(1585), + [anon_sym_BANG_TILDE2] = ACTIONS(1585), + [anon_sym_STAR_STAR2] = ACTIONS(1585), + [anon_sym_PLUS_PLUS2] = ACTIONS(1585), + [anon_sym_SLASH2] = ACTIONS(1585), + [anon_sym_mod2] = ACTIONS(1585), + [anon_sym_SLASH_SLASH2] = ACTIONS(1585), + [anon_sym_PLUS2] = ACTIONS(1585), + [anon_sym_bit_DASHshl2] = ACTIONS(1585), + [anon_sym_bit_DASHshr2] = ACTIONS(1585), + [anon_sym_bit_DASHand2] = ACTIONS(1585), + [anon_sym_bit_DASHxor2] = ACTIONS(1585), + [anon_sym_bit_DASHor2] = ACTIONS(1585), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [aux_sym__immediate_decimal_token1] = ACTIONS(2701), + [aux_sym__immediate_decimal_token2] = ACTIONS(2703), + [sym_filesize_unit] = ACTIONS(1585), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1585), + [anon_sym_out_GT_GT] = ACTIONS(1585), + [anon_sym_e_GT_GT] = ACTIONS(1585), + [anon_sym_o_GT_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(3), + }, + [790] = { + [sym_expr_parenthesized] = STATE(1575), + [sym_val_range] = STATE(1855), + [sym__val_range] = STATE(7964), + [sym__val_range_with_end] = STATE(7619), + [sym__value] = STATE(1855), + [sym_val_nothing] = STATE(1829), + [sym_val_bool] = STATE(1634), + [sym_val_variable] = STATE(1515), + [sym_val_number] = STATE(1829), + [sym__val_number_decimal] = STATE(1333), + [sym__val_number] = STATE(1779), + [sym_val_duration] = STATE(1829), + [sym_val_filesize] = STATE(1829), + [sym_val_binary] = STATE(1829), + [sym_val_string] = STATE(1829), + [sym__raw_str] = STATE(1791), + [sym__str_double_quotes] = STATE(1791), + [sym_val_interpolated] = STATE(1829), + [sym__inter_single_quotes] = STATE(1798), + [sym__inter_double_quotes] = STATE(1799), + [sym_val_list] = STATE(1829), + [sym_val_record] = STATE(1829), + [sym_val_table] = STATE(1829), + [sym_val_closure] = STATE(1829), + [sym_short_flag] = STATE(1855), + [sym_long_flag] = STATE(1855), + [sym_unquoted] = STATE(1665), + [sym__unquoted_with_expr] = STATE(1890), + [sym__unquoted_anonymous_prefix] = STATE(6843), + [sym_comment] = STATE(790), + [aux_sym_shebang_repeat1] = STATE(1065), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(798), + [sym__newline] = ACTIONS(2705), + [anon_sym_SEMI] = ACTIONS(2705), + [anon_sym_PIPE] = ACTIONS(2705), + [anon_sym_err_GT_PIPE] = ACTIONS(2705), + [anon_sym_out_GT_PIPE] = ACTIONS(2705), + [anon_sym_e_GT_PIPE] = ACTIONS(2705), + [anon_sym_o_GT_PIPE] = ACTIONS(2705), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2705), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2705), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2705), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2705), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_RPAREN] = ACTIONS(2705), + [anon_sym_DOLLAR] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_DASH2] = ACTIONS(2633), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_DOT_DOT] = ACTIONS(2637), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2639), + [anon_sym_DOT_DOT_LT] = ACTIONS(2639), + [anon_sym_null] = ACTIONS(2641), + [anon_sym_true] = ACTIONS(2643), + [anon_sym_false] = ACTIONS(2643), + [aux_sym__val_number_decimal_token1] = ACTIONS(2645), + [aux_sym__val_number_decimal_token2] = ACTIONS(2647), + [aux_sym__val_number_decimal_token3] = ACTIONS(2649), + [aux_sym__val_number_decimal_token4] = ACTIONS(2651), + [aux_sym__val_number_token1] = ACTIONS(2653), + [aux_sym__val_number_token2] = ACTIONS(2653), + [aux_sym__val_number_token3] = ACTIONS(2653), + [aux_sym__val_number_token4] = ACTIONS(2655), + [aux_sym__val_number_token5] = ACTIONS(2655), + [aux_sym__val_number_token6] = ACTIONS(2655), + [anon_sym_0b] = ACTIONS(2657), + [anon_sym_0o] = ACTIONS(2659), + [anon_sym_0x] = ACTIONS(2659), + [sym_val_date] = ACTIONS(2661), + [anon_sym_DQUOTE] = ACTIONS(2663), + [sym__str_single_quotes] = ACTIONS(2665), + [sym__str_back_ticks] = ACTIONS(2665), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2667), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2669), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(2675), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2677), + }, + [791] = { + [sym_expr_parenthesized] = STATE(1575), + [sym_val_range] = STATE(1855), + [sym__val_range] = STATE(7964), + [sym__val_range_with_end] = STATE(7619), + [sym__value] = STATE(1855), + [sym_val_nothing] = STATE(1829), + [sym_val_bool] = STATE(1634), + [sym_val_variable] = STATE(1515), + [sym_val_number] = STATE(1829), + [sym__val_number_decimal] = STATE(1333), + [sym__val_number] = STATE(1779), + [sym_val_duration] = STATE(1829), + [sym_val_filesize] = STATE(1829), + [sym_val_binary] = STATE(1829), + [sym_val_string] = STATE(1829), + [sym__raw_str] = STATE(1791), + [sym__str_double_quotes] = STATE(1791), + [sym_val_interpolated] = STATE(1829), + [sym__inter_single_quotes] = STATE(1798), + [sym__inter_double_quotes] = STATE(1799), + [sym_val_list] = STATE(1829), + [sym_val_record] = STATE(1829), + [sym_val_table] = STATE(1829), + [sym_val_closure] = STATE(1829), + [sym_short_flag] = STATE(1855), + [sym_long_flag] = STATE(1855), + [sym_unquoted] = STATE(1665), + [sym__unquoted_with_expr] = STATE(1890), + [sym__unquoted_anonymous_prefix] = STATE(6843), + [sym_comment] = STATE(791), + [aux_sym_shebang_repeat1] = STATE(1065), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(799), + [sym__newline] = ACTIONS(2707), + [anon_sym_SEMI] = ACTIONS(2705), + [anon_sym_PIPE] = ACTIONS(2705), + [anon_sym_err_GT_PIPE] = ACTIONS(2705), + [anon_sym_out_GT_PIPE] = ACTIONS(2705), + [anon_sym_e_GT_PIPE] = ACTIONS(2705), + [anon_sym_o_GT_PIPE] = ACTIONS(2705), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2705), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2705), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2705), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2705), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_RPAREN] = ACTIONS(2705), + [anon_sym_DOLLAR] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_DASH2] = ACTIONS(2633), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_DOT_DOT] = ACTIONS(2637), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2639), + [anon_sym_DOT_DOT_LT] = ACTIONS(2639), + [anon_sym_null] = ACTIONS(2641), + [anon_sym_true] = ACTIONS(2643), + [anon_sym_false] = ACTIONS(2643), + [aux_sym__val_number_decimal_token1] = ACTIONS(2645), + [aux_sym__val_number_decimal_token2] = ACTIONS(2647), + [aux_sym__val_number_decimal_token3] = ACTIONS(2649), + [aux_sym__val_number_decimal_token4] = ACTIONS(2651), + [aux_sym__val_number_token1] = ACTIONS(2653), + [aux_sym__val_number_token2] = ACTIONS(2653), + [aux_sym__val_number_token3] = ACTIONS(2653), + [aux_sym__val_number_token4] = ACTIONS(2655), + [aux_sym__val_number_token5] = ACTIONS(2655), + [aux_sym__val_number_token6] = ACTIONS(2655), + [anon_sym_0b] = ACTIONS(2657), + [anon_sym_0o] = ACTIONS(2659), + [anon_sym_0x] = ACTIONS(2659), + [sym_val_date] = ACTIONS(2661), + [anon_sym_DQUOTE] = ACTIONS(2663), + [sym__str_single_quotes] = ACTIONS(2665), + [sym__str_back_ticks] = ACTIONS(2665), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2667), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2669), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(2675), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2677), + }, + [792] = { + [sym_expr_parenthesized] = STATE(1575), + [sym_val_range] = STATE(1855), + [sym__val_range] = STATE(7964), + [sym__val_range_with_end] = STATE(7619), + [sym__value] = STATE(1855), + [sym_val_nothing] = STATE(1829), + [sym_val_bool] = STATE(1634), + [sym_val_variable] = STATE(1515), + [sym_val_number] = STATE(1829), + [sym__val_number_decimal] = STATE(1333), + [sym__val_number] = STATE(1779), + [sym_val_duration] = STATE(1829), + [sym_val_filesize] = STATE(1829), + [sym_val_binary] = STATE(1829), + [sym_val_string] = STATE(1829), + [sym__raw_str] = STATE(1791), + [sym__str_double_quotes] = STATE(1791), + [sym_val_interpolated] = STATE(1829), + [sym__inter_single_quotes] = STATE(1798), + [sym__inter_double_quotes] = STATE(1799), + [sym_val_list] = STATE(1829), + [sym_val_record] = STATE(1829), + [sym_val_table] = STATE(1829), + [sym_val_closure] = STATE(1829), + [sym_short_flag] = STATE(1855), + [sym_long_flag] = STATE(1855), + [sym_unquoted] = STATE(1665), + [sym__unquoted_with_expr] = STATE(1890), + [sym__unquoted_anonymous_prefix] = STATE(6843), + [sym_comment] = STATE(792), + [aux_sym_shebang_repeat1] = STATE(1065), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(791), + [sym__newline] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2709), + [anon_sym_PIPE] = ACTIONS(2709), + [anon_sym_err_GT_PIPE] = ACTIONS(2709), + [anon_sym_out_GT_PIPE] = ACTIONS(2709), + [anon_sym_e_GT_PIPE] = ACTIONS(2709), + [anon_sym_o_GT_PIPE] = ACTIONS(2709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2709), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_RPAREN] = ACTIONS(2709), + [anon_sym_DOLLAR] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_DASH2] = ACTIONS(2633), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_DOT_DOT] = ACTIONS(2637), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2639), + [anon_sym_DOT_DOT_LT] = ACTIONS(2639), + [anon_sym_null] = ACTIONS(2641), + [anon_sym_true] = ACTIONS(2643), + [anon_sym_false] = ACTIONS(2643), + [aux_sym__val_number_decimal_token1] = ACTIONS(2645), + [aux_sym__val_number_decimal_token2] = ACTIONS(2647), + [aux_sym__val_number_decimal_token3] = ACTIONS(2649), + [aux_sym__val_number_decimal_token4] = ACTIONS(2651), + [aux_sym__val_number_token1] = ACTIONS(2653), + [aux_sym__val_number_token2] = ACTIONS(2653), + [aux_sym__val_number_token3] = ACTIONS(2653), + [aux_sym__val_number_token4] = ACTIONS(2655), + [aux_sym__val_number_token5] = ACTIONS(2655), + [aux_sym__val_number_token6] = ACTIONS(2655), + [anon_sym_0b] = ACTIONS(2657), + [anon_sym_0o] = ACTIONS(2659), + [anon_sym_0x] = ACTIONS(2659), + [sym_val_date] = ACTIONS(2661), + [anon_sym_DQUOTE] = ACTIONS(2663), + [sym__str_single_quotes] = ACTIONS(2665), + [sym__str_back_ticks] = ACTIONS(2665), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2667), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2669), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(2675), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2677), + }, + [793] = { + [sym_comment] = STATE(793), + [aux_sym_cmd_identifier_token1] = ACTIONS(2596), + [aux_sym_cmd_identifier_token2] = ACTIONS(2598), + [aux_sym_cmd_identifier_token3] = ACTIONS(2598), + [aux_sym_cmd_identifier_token4] = ACTIONS(2598), + [aux_sym_cmd_identifier_token5] = ACTIONS(2598), + [aux_sym_cmd_identifier_token6] = ACTIONS(2598), + [aux_sym_cmd_identifier_token7] = ACTIONS(2598), + [aux_sym_cmd_identifier_token8] = ACTIONS(2598), + [aux_sym_cmd_identifier_token9] = ACTIONS(2596), + [aux_sym_cmd_identifier_token10] = ACTIONS(2598), + [aux_sym_cmd_identifier_token11] = ACTIONS(2598), + [aux_sym_cmd_identifier_token12] = ACTIONS(2598), + [aux_sym_cmd_identifier_token13] = ACTIONS(2596), + [aux_sym_cmd_identifier_token14] = ACTIONS(2598), + [aux_sym_cmd_identifier_token15] = ACTIONS(2596), + [aux_sym_cmd_identifier_token16] = ACTIONS(2598), + [aux_sym_cmd_identifier_token17] = ACTIONS(2598), + [aux_sym_cmd_identifier_token18] = ACTIONS(2598), + [aux_sym_cmd_identifier_token19] = ACTIONS(2598), + [aux_sym_cmd_identifier_token20] = ACTIONS(2598), + [aux_sym_cmd_identifier_token21] = ACTIONS(2598), + [aux_sym_cmd_identifier_token22] = ACTIONS(2598), + [aux_sym_cmd_identifier_token23] = ACTIONS(2598), + [aux_sym_cmd_identifier_token24] = ACTIONS(2598), + [aux_sym_cmd_identifier_token25] = ACTIONS(2598), + [aux_sym_cmd_identifier_token26] = ACTIONS(2598), + [aux_sym_cmd_identifier_token27] = ACTIONS(2598), + [aux_sym_cmd_identifier_token28] = ACTIONS(2598), + [aux_sym_cmd_identifier_token29] = ACTIONS(2598), + [aux_sym_cmd_identifier_token30] = ACTIONS(2598), + [aux_sym_cmd_identifier_token31] = ACTIONS(2598), + [aux_sym_cmd_identifier_token32] = ACTIONS(2598), + [aux_sym_cmd_identifier_token33] = ACTIONS(2598), + [aux_sym_cmd_identifier_token34] = ACTIONS(2596), + [aux_sym_cmd_identifier_token35] = ACTIONS(2598), + [aux_sym_cmd_identifier_token36] = ACTIONS(2598), + [aux_sym_cmd_identifier_token37] = ACTIONS(2598), + [aux_sym_cmd_identifier_token38] = ACTIONS(2596), + [aux_sym_cmd_identifier_token39] = ACTIONS(2598), + [aux_sym_cmd_identifier_token40] = ACTIONS(2598), + [sym__newline] = ACTIONS(2598), + [anon_sym_PIPE] = ACTIONS(2598), + [anon_sym_err_GT_PIPE] = ACTIONS(2598), + [anon_sym_out_GT_PIPE] = ACTIONS(2598), + [anon_sym_e_GT_PIPE] = ACTIONS(2598), + [anon_sym_o_GT_PIPE] = ACTIONS(2598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(2598), + [anon_sym_LPAREN] = ACTIONS(2598), + [anon_sym_DOLLAR] = ACTIONS(2596), + [anon_sym_DASH2] = ACTIONS(2596), + [anon_sym_break] = ACTIONS(2596), + [anon_sym_continue] = ACTIONS(2596), + [anon_sym_do] = ACTIONS(2596), + [anon_sym_if] = ACTIONS(2596), + [anon_sym_match] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2598), + [anon_sym_DOT_DOT] = ACTIONS(2596), + [anon_sym_try] = ACTIONS(2596), + [anon_sym_return] = ACTIONS(2596), + [anon_sym_where] = ACTIONS(2598), + [aux_sym_expr_unary_token1] = ACTIONS(2598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2598), + [anon_sym_DOT_DOT_LT] = ACTIONS(2598), + [anon_sym_null] = ACTIONS(2596), + [anon_sym_true] = ACTIONS(2596), + [anon_sym_false] = ACTIONS(2596), + [aux_sym__val_number_decimal_token1] = ACTIONS(2596), + [aux_sym__val_number_decimal_token2] = ACTIONS(2598), + [aux_sym__val_number_decimal_token3] = ACTIONS(2598), + [aux_sym__val_number_decimal_token4] = ACTIONS(2598), + [aux_sym__val_number_token1] = ACTIONS(2598), + [aux_sym__val_number_token2] = ACTIONS(2598), + [aux_sym__val_number_token3] = ACTIONS(2598), + [aux_sym__val_number_token4] = ACTIONS(2596), + [aux_sym__val_number_token5] = ACTIONS(2596), + [aux_sym__val_number_token6] = ACTIONS(2596), + [anon_sym_0b] = ACTIONS(2596), + [anon_sym_0o] = ACTIONS(2596), + [anon_sym_0x] = ACTIONS(2596), + [sym_val_date] = ACTIONS(2598), + [anon_sym_DQUOTE] = ACTIONS(2598), + [sym__str_single_quotes] = ACTIONS(2598), + [sym__str_back_ticks] = ACTIONS(2598), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2598), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2598), + [aux_sym_env_var_token1] = ACTIONS(2596), + [anon_sym_CARET] = ACTIONS(2598), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2598), + }, + [794] = { + [sym_expr_parenthesized] = STATE(1561), + [sym_val_range] = STATE(1826), + [sym__val_range] = STATE(7964), + [sym__val_range_with_end] = STATE(7619), + [sym__value] = STATE(1826), + [sym_val_nothing] = STATE(1829), + [sym_val_bool] = STATE(1634), + [sym_val_variable] = STATE(1515), + [sym_val_number] = STATE(1829), + [sym__val_number_decimal] = STATE(1333), + [sym__val_number] = STATE(1779), + [sym_val_duration] = STATE(1829), + [sym_val_filesize] = STATE(1829), + [sym_val_binary] = STATE(1829), + [sym_val_string] = STATE(1829), + [sym__raw_str] = STATE(1791), + [sym__str_double_quotes] = STATE(1791), + [sym_val_interpolated] = STATE(1829), + [sym__inter_single_quotes] = STATE(1798), + [sym__inter_double_quotes] = STATE(1799), + [sym_val_list] = STATE(1829), + [sym_val_record] = STATE(1829), + [sym_val_table] = STATE(1829), + [sym_val_closure] = STATE(1829), + [sym_short_flag] = STATE(1826), + [sym_long_flag] = STATE(1826), + [sym_unquoted] = STATE(1638), + [sym__unquoted_with_expr] = STATE(1828), + [sym__unquoted_anonymous_prefix] = STATE(6843), + [sym_comment] = STATE(794), + [aux_sym_ctrl_do_repeat2] = STATE(794), + [sym__newline] = ACTIONS(2711), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_PIPE] = ACTIONS(2711), + [anon_sym_err_GT_PIPE] = ACTIONS(2711), + [anon_sym_out_GT_PIPE] = ACTIONS(2711), + [anon_sym_e_GT_PIPE] = ACTIONS(2711), + [anon_sym_o_GT_PIPE] = ACTIONS(2711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_LPAREN] = ACTIONS(2716), + [anon_sym_RPAREN] = ACTIONS(2711), + [anon_sym_DOLLAR] = ACTIONS(2719), + [anon_sym_DASH_DASH] = ACTIONS(2722), + [anon_sym_DASH2] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_RBRACE] = ACTIONS(2711), + [anon_sym_DOT_DOT] = ACTIONS(2731), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2734), + [anon_sym_DOT_DOT_LT] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2737), + [anon_sym_true] = ACTIONS(2740), + [anon_sym_false] = ACTIONS(2740), + [aux_sym__val_number_decimal_token1] = ACTIONS(2743), + [aux_sym__val_number_decimal_token2] = ACTIONS(2746), + [aux_sym__val_number_decimal_token3] = ACTIONS(2749), + [aux_sym__val_number_decimal_token4] = ACTIONS(2752), + [aux_sym__val_number_token1] = ACTIONS(2755), + [aux_sym__val_number_token2] = ACTIONS(2755), + [aux_sym__val_number_token3] = ACTIONS(2755), + [aux_sym__val_number_token4] = ACTIONS(2758), + [aux_sym__val_number_token5] = ACTIONS(2758), + [aux_sym__val_number_token6] = ACTIONS(2758), + [anon_sym_0b] = ACTIONS(2761), + [anon_sym_0o] = ACTIONS(2764), + [anon_sym_0x] = ACTIONS(2764), + [sym_val_date] = ACTIONS(2767), + [anon_sym_DQUOTE] = ACTIONS(2770), + [sym__str_single_quotes] = ACTIONS(2773), + [sym__str_back_ticks] = ACTIONS(2773), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2776), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2779), + [anon_sym_err_GT] = ACTIONS(2782), + [anon_sym_out_GT] = ACTIONS(2782), + [anon_sym_e_GT] = ACTIONS(2782), + [anon_sym_o_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT] = ACTIONS(2782), + [anon_sym_err_GT_GT] = ACTIONS(2785), + [anon_sym_out_GT_GT] = ACTIONS(2785), + [anon_sym_e_GT_GT] = ACTIONS(2785), + [anon_sym_o_GT_GT] = ACTIONS(2785), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2785), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2785), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2785), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2785), + [aux_sym_unquoted_token1] = ACTIONS(2788), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2791), + }, + [795] = { + [sym_comment] = STATE(795), + [ts_builtin_sym_end] = ACTIONS(1575), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_bit_DASHshl] = ACTIONS(1575), + [anon_sym_bit_DASHshr] = ACTIONS(1575), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_BANG_TILDE] = ACTIONS(1575), + [anon_sym_bit_DASHand] = ACTIONS(1575), + [anon_sym_bit_DASHxor] = ACTIONS(1575), + [anon_sym_bit_DASHor] = ACTIONS(1575), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_not_DASHin] = ACTIONS(1575), + [anon_sym_starts_DASHwith] = ACTIONS(1575), + [anon_sym_ends_DASHwith] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1575), + [aux_sym_cmd_identifier_token41] = ACTIONS(1573), + [sym__newline] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_err_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_GT_PIPE] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1573), + [anon_sym_xor2] = ACTIONS(1573), + [anon_sym_or2] = ACTIONS(1573), + [anon_sym_not_DASHin2] = ACTIONS(1573), + [anon_sym_starts_DASHwith2] = ACTIONS(1573), + [anon_sym_ends_DASHwith2] = ACTIONS(1573), + [anon_sym_EQ_EQ2] = ACTIONS(1573), + [anon_sym_BANG_EQ2] = ACTIONS(1573), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1573), + [anon_sym_GT_EQ2] = ACTIONS(1573), + [anon_sym_EQ_TILDE2] = ACTIONS(1573), + [anon_sym_BANG_TILDE2] = ACTIONS(1573), + [anon_sym_STAR_STAR2] = ACTIONS(1573), + [anon_sym_PLUS_PLUS2] = ACTIONS(1573), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1573), + [anon_sym_SLASH_SLASH2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1573), + [anon_sym_bit_DASHshr2] = ACTIONS(1573), + [anon_sym_bit_DASHand2] = ACTIONS(1573), + [anon_sym_bit_DASHxor2] = ACTIONS(1573), + [anon_sym_bit_DASHor2] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT] = ACTIONS(2794), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(2796), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1573), + [anon_sym_out_GT_GT] = ACTIONS(1573), + [anon_sym_e_GT_GT] = ACTIONS(1573), + [anon_sym_o_GT_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), + [anon_sym_POUND] = ACTIONS(3), + }, + [796] = { + [sym_comment] = STATE(796), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_bit_DASHshl] = ACTIONS(1575), + [anon_sym_bit_DASHshr] = ACTIONS(1575), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_BANG_TILDE] = ACTIONS(1575), + [anon_sym_bit_DASHand] = ACTIONS(1575), + [anon_sym_bit_DASHxor] = ACTIONS(1575), + [anon_sym_bit_DASHor] = ACTIONS(1575), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_not_DASHin] = ACTIONS(1575), + [anon_sym_starts_DASHwith] = ACTIONS(1575), + [anon_sym_ends_DASHwith] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1575), + [aux_sym_cmd_identifier_token41] = ACTIONS(1573), + [sym__newline] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_err_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_GT_PIPE] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_RBRACE] = ACTIONS(1573), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1573), + [anon_sym_xor2] = ACTIONS(1573), + [anon_sym_or2] = ACTIONS(1573), + [anon_sym_not_DASHin2] = ACTIONS(1573), + [anon_sym_starts_DASHwith2] = ACTIONS(1573), + [anon_sym_ends_DASHwith2] = ACTIONS(1573), + [anon_sym_EQ_EQ2] = ACTIONS(1573), + [anon_sym_BANG_EQ2] = ACTIONS(1573), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1573), + [anon_sym_GT_EQ2] = ACTIONS(1573), + [anon_sym_EQ_TILDE2] = ACTIONS(1573), + [anon_sym_BANG_TILDE2] = ACTIONS(1573), + [anon_sym_STAR_STAR2] = ACTIONS(1573), + [anon_sym_PLUS_PLUS2] = ACTIONS(1573), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1573), + [anon_sym_SLASH_SLASH2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1573), + [anon_sym_bit_DASHshr2] = ACTIONS(1573), + [anon_sym_bit_DASHand2] = ACTIONS(1573), + [anon_sym_bit_DASHxor2] = ACTIONS(1573), + [anon_sym_bit_DASHor2] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(2615), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [aux_sym_record_entry_token1] = ACTIONS(1573), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1573), + [anon_sym_out_GT_GT] = ACTIONS(1573), + [anon_sym_e_GT_GT] = ACTIONS(1573), + [anon_sym_o_GT_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), + [anon_sym_POUND] = ACTIONS(3), + }, + [797] = { + [sym_comment] = STATE(797), + [aux_sym_cmd_identifier_token1] = ACTIONS(2798), + [aux_sym_cmd_identifier_token2] = ACTIONS(2800), + [aux_sym_cmd_identifier_token3] = ACTIONS(2800), + [aux_sym_cmd_identifier_token4] = ACTIONS(2800), + [aux_sym_cmd_identifier_token5] = ACTIONS(2800), + [aux_sym_cmd_identifier_token6] = ACTIONS(2800), + [aux_sym_cmd_identifier_token7] = ACTIONS(2800), + [aux_sym_cmd_identifier_token8] = ACTIONS(2800), + [aux_sym_cmd_identifier_token9] = ACTIONS(2798), + [aux_sym_cmd_identifier_token10] = ACTIONS(2800), + [aux_sym_cmd_identifier_token11] = ACTIONS(2800), + [aux_sym_cmd_identifier_token12] = ACTIONS(2800), + [aux_sym_cmd_identifier_token13] = ACTIONS(2798), + [aux_sym_cmd_identifier_token14] = ACTIONS(2800), + [aux_sym_cmd_identifier_token15] = ACTIONS(2798), + [aux_sym_cmd_identifier_token16] = ACTIONS(2800), + [aux_sym_cmd_identifier_token17] = ACTIONS(2800), + [aux_sym_cmd_identifier_token18] = ACTIONS(2800), + [aux_sym_cmd_identifier_token19] = ACTIONS(2800), + [aux_sym_cmd_identifier_token20] = ACTIONS(2800), + [aux_sym_cmd_identifier_token21] = ACTIONS(2800), + [aux_sym_cmd_identifier_token22] = ACTIONS(2800), + [aux_sym_cmd_identifier_token23] = ACTIONS(2800), + [aux_sym_cmd_identifier_token24] = ACTIONS(2800), + [aux_sym_cmd_identifier_token25] = ACTIONS(2800), + [aux_sym_cmd_identifier_token26] = ACTIONS(2800), + [aux_sym_cmd_identifier_token27] = ACTIONS(2800), + [aux_sym_cmd_identifier_token28] = ACTIONS(2800), + [aux_sym_cmd_identifier_token29] = ACTIONS(2800), + [aux_sym_cmd_identifier_token30] = ACTIONS(2800), + [aux_sym_cmd_identifier_token31] = ACTIONS(2800), + [aux_sym_cmd_identifier_token32] = ACTIONS(2800), + [aux_sym_cmd_identifier_token33] = ACTIONS(2800), + [aux_sym_cmd_identifier_token34] = ACTIONS(2798), + [aux_sym_cmd_identifier_token35] = ACTIONS(2800), + [aux_sym_cmd_identifier_token36] = ACTIONS(2800), + [aux_sym_cmd_identifier_token37] = ACTIONS(2800), + [aux_sym_cmd_identifier_token38] = ACTIONS(2798), + [aux_sym_cmd_identifier_token39] = ACTIONS(2800), + [aux_sym_cmd_identifier_token40] = ACTIONS(2800), + [sym__newline] = ACTIONS(2800), + [anon_sym_PIPE] = ACTIONS(2800), + [anon_sym_err_GT_PIPE] = ACTIONS(2800), + [anon_sym_out_GT_PIPE] = ACTIONS(2800), + [anon_sym_e_GT_PIPE] = ACTIONS(2800), + [anon_sym_o_GT_PIPE] = ACTIONS(2800), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2800), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2800), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2800), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2800), + [anon_sym_LBRACK] = ACTIONS(2800), + [anon_sym_LPAREN] = ACTIONS(2800), + [anon_sym_DOLLAR] = ACTIONS(2798), + [anon_sym_DASH2] = ACTIONS(2798), + [anon_sym_break] = ACTIONS(2798), + [anon_sym_continue] = ACTIONS(2798), + [anon_sym_do] = ACTIONS(2798), + [anon_sym_if] = ACTIONS(2798), + [anon_sym_match] = ACTIONS(2798), + [anon_sym_LBRACE] = ACTIONS(2800), + [anon_sym_DOT_DOT] = ACTIONS(2798), + [anon_sym_try] = ACTIONS(2798), + [anon_sym_return] = ACTIONS(2798), + [anon_sym_where] = ACTIONS(2800), + [aux_sym_expr_unary_token1] = ACTIONS(2800), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2800), + [anon_sym_DOT_DOT_LT] = ACTIONS(2800), + [anon_sym_null] = ACTIONS(2798), + [anon_sym_true] = ACTIONS(2798), + [anon_sym_false] = ACTIONS(2798), + [aux_sym__val_number_decimal_token1] = ACTIONS(2798), + [aux_sym__val_number_decimal_token2] = ACTIONS(2800), + [aux_sym__val_number_decimal_token3] = ACTIONS(2800), + [aux_sym__val_number_decimal_token4] = ACTIONS(2800), + [aux_sym__val_number_token1] = ACTIONS(2800), + [aux_sym__val_number_token2] = ACTIONS(2800), + [aux_sym__val_number_token3] = ACTIONS(2800), + [aux_sym__val_number_token4] = ACTIONS(2798), + [aux_sym__val_number_token5] = ACTIONS(2798), + [aux_sym__val_number_token6] = ACTIONS(2798), + [anon_sym_0b] = ACTIONS(2798), + [anon_sym_0o] = ACTIONS(2798), + [anon_sym_0x] = ACTIONS(2798), + [sym_val_date] = ACTIONS(2800), + [anon_sym_DQUOTE] = ACTIONS(2800), + [sym__str_single_quotes] = ACTIONS(2800), + [sym__str_back_ticks] = ACTIONS(2800), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2800), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2800), + [aux_sym_env_var_token1] = ACTIONS(2798), + [anon_sym_CARET] = ACTIONS(2800), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2800), + }, + [798] = { + [sym_expr_parenthesized] = STATE(1575), + [sym_val_range] = STATE(1855), + [sym__val_range] = STATE(7964), + [sym__val_range_with_end] = STATE(7619), + [sym__value] = STATE(1855), + [sym_val_nothing] = STATE(1829), + [sym_val_bool] = STATE(1634), + [sym_val_variable] = STATE(1515), + [sym_val_number] = STATE(1829), + [sym__val_number_decimal] = STATE(1333), + [sym__val_number] = STATE(1779), + [sym_val_duration] = STATE(1829), + [sym_val_filesize] = STATE(1829), + [sym_val_binary] = STATE(1829), + [sym_val_string] = STATE(1829), + [sym__raw_str] = STATE(1791), + [sym__str_double_quotes] = STATE(1791), + [sym_val_interpolated] = STATE(1829), + [sym__inter_single_quotes] = STATE(1798), + [sym__inter_double_quotes] = STATE(1799), + [sym_val_list] = STATE(1829), + [sym_val_record] = STATE(1829), + [sym_val_table] = STATE(1829), + [sym_val_closure] = STATE(1829), + [sym_short_flag] = STATE(1855), + [sym_long_flag] = STATE(1855), + [sym_unquoted] = STATE(1665), + [sym__unquoted_with_expr] = STATE(1890), + [sym__unquoted_anonymous_prefix] = STATE(6843), + [sym_comment] = STATE(798), + [aux_sym_shebang_repeat1] = STATE(1065), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(799), + [sym__newline] = ACTIONS(2707), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym_PIPE] = ACTIONS(2802), + [anon_sym_err_GT_PIPE] = ACTIONS(2802), + [anon_sym_out_GT_PIPE] = ACTIONS(2802), + [anon_sym_e_GT_PIPE] = ACTIONS(2802), + [anon_sym_o_GT_PIPE] = ACTIONS(2802), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2802), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2802), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2802), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2802), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_RPAREN] = ACTIONS(2802), + [anon_sym_DOLLAR] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_DASH2] = ACTIONS(2633), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_DOT_DOT] = ACTIONS(2637), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2639), + [anon_sym_DOT_DOT_LT] = ACTIONS(2639), + [anon_sym_null] = ACTIONS(2641), + [anon_sym_true] = ACTIONS(2643), + [anon_sym_false] = ACTIONS(2643), + [aux_sym__val_number_decimal_token1] = ACTIONS(2645), + [aux_sym__val_number_decimal_token2] = ACTIONS(2647), + [aux_sym__val_number_decimal_token3] = ACTIONS(2649), + [aux_sym__val_number_decimal_token4] = ACTIONS(2651), + [aux_sym__val_number_token1] = ACTIONS(2653), + [aux_sym__val_number_token2] = ACTIONS(2653), + [aux_sym__val_number_token3] = ACTIONS(2653), + [aux_sym__val_number_token4] = ACTIONS(2655), + [aux_sym__val_number_token5] = ACTIONS(2655), + [aux_sym__val_number_token6] = ACTIONS(2655), + [anon_sym_0b] = ACTIONS(2657), + [anon_sym_0o] = ACTIONS(2659), + [anon_sym_0x] = ACTIONS(2659), + [sym_val_date] = ACTIONS(2661), + [anon_sym_DQUOTE] = ACTIONS(2663), + [sym__str_single_quotes] = ACTIONS(2665), + [sym__str_back_ticks] = ACTIONS(2665), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2667), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2669), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(2675), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2677), + }, + [799] = { + [sym_expr_parenthesized] = STATE(1575), + [sym_val_range] = STATE(1855), + [sym__val_range] = STATE(7964), + [sym__val_range_with_end] = STATE(7619), + [sym__value] = STATE(1855), + [sym_val_nothing] = STATE(1829), + [sym_val_bool] = STATE(1634), + [sym_val_variable] = STATE(1515), + [sym_val_number] = STATE(1829), + [sym__val_number_decimal] = STATE(1333), + [sym__val_number] = STATE(1779), + [sym_val_duration] = STATE(1829), + [sym_val_filesize] = STATE(1829), + [sym_val_binary] = STATE(1829), + [sym_val_string] = STATE(1829), + [sym__raw_str] = STATE(1791), + [sym__str_double_quotes] = STATE(1791), + [sym_val_interpolated] = STATE(1829), + [sym__inter_single_quotes] = STATE(1798), + [sym__inter_double_quotes] = STATE(1799), + [sym_val_list] = STATE(1829), + [sym_val_record] = STATE(1829), + [sym_val_table] = STATE(1829), + [sym_val_closure] = STATE(1829), + [sym_short_flag] = STATE(1855), + [sym_long_flag] = STATE(1855), + [sym_unquoted] = STATE(1665), + [sym__unquoted_with_expr] = STATE(1890), + [sym__unquoted_anonymous_prefix] = STATE(6843), + [sym_comment] = STATE(799), + [aux_sym_shebang_repeat1] = STATE(1065), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(799), + [sym__newline] = ACTIONS(2804), + [anon_sym_SEMI] = ACTIONS(2807), + [anon_sym_PIPE] = ACTIONS(2807), + [anon_sym_err_GT_PIPE] = ACTIONS(2807), + [anon_sym_out_GT_PIPE] = ACTIONS(2807), + [anon_sym_e_GT_PIPE] = ACTIONS(2807), + [anon_sym_o_GT_PIPE] = ACTIONS(2807), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2807), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2807), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2807), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2809), + [anon_sym_LPAREN] = ACTIONS(2812), + [anon_sym_RPAREN] = ACTIONS(2807), + [anon_sym_DOLLAR] = ACTIONS(2815), + [anon_sym_DASH_DASH] = ACTIONS(2818), + [anon_sym_DASH2] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(2824), + [anon_sym_DOT_DOT] = ACTIONS(2827), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2830), + [anon_sym_DOT_DOT_LT] = ACTIONS(2830), + [anon_sym_null] = ACTIONS(2833), + [anon_sym_true] = ACTIONS(2836), + [anon_sym_false] = ACTIONS(2836), + [aux_sym__val_number_decimal_token1] = ACTIONS(2839), + [aux_sym__val_number_decimal_token2] = ACTIONS(2842), + [aux_sym__val_number_decimal_token3] = ACTIONS(2845), + [aux_sym__val_number_decimal_token4] = ACTIONS(2848), + [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(2854), + [aux_sym__val_number_token5] = ACTIONS(2854), + [aux_sym__val_number_token6] = ACTIONS(2854), + [anon_sym_0b] = ACTIONS(2857), + [anon_sym_0o] = ACTIONS(2860), + [anon_sym_0x] = ACTIONS(2860), + [sym_val_date] = ACTIONS(2863), + [anon_sym_DQUOTE] = ACTIONS(2866), + [sym__str_single_quotes] = ACTIONS(2869), + [sym__str_back_ticks] = ACTIONS(2869), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2872), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2875), + [anon_sym_err_GT] = ACTIONS(2878), + [anon_sym_out_GT] = ACTIONS(2878), + [anon_sym_e_GT] = ACTIONS(2878), + [anon_sym_o_GT] = ACTIONS(2878), + [anon_sym_err_PLUSout_GT] = ACTIONS(2878), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2878), + [anon_sym_o_PLUSe_GT] = ACTIONS(2878), + [anon_sym_e_PLUSo_GT] = ACTIONS(2878), + [anon_sym_err_GT_GT] = ACTIONS(2881), + [anon_sym_out_GT_GT] = ACTIONS(2881), + [anon_sym_e_GT_GT] = ACTIONS(2881), + [anon_sym_o_GT_GT] = ACTIONS(2881), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2881), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2881), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2881), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2881), + [aux_sym_unquoted_token1] = ACTIONS(2884), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2887), + }, + [800] = { + [sym_expr_parenthesized] = STATE(1561), + [sym_val_range] = STATE(1826), + [sym__val_range] = STATE(7964), + [sym__val_range_with_end] = STATE(7619), + [sym__value] = STATE(1826), + [sym_val_nothing] = STATE(1829), + [sym_val_bool] = STATE(1634), + [sym_val_variable] = STATE(1515), + [sym_val_number] = STATE(1829), + [sym__val_number_decimal] = STATE(1333), + [sym__val_number] = STATE(1779), + [sym_val_duration] = STATE(1829), + [sym_val_filesize] = STATE(1829), + [sym_val_binary] = STATE(1829), + [sym_val_string] = STATE(1829), + [sym__raw_str] = STATE(1791), + [sym__str_double_quotes] = STATE(1791), + [sym_val_interpolated] = STATE(1829), + [sym__inter_single_quotes] = STATE(1798), + [sym__inter_double_quotes] = STATE(1799), + [sym_val_list] = STATE(1829), + [sym_val_record] = STATE(1829), + [sym_val_table] = STATE(1829), + [sym_val_closure] = STATE(1829), + [sym_short_flag] = STATE(1826), + [sym_long_flag] = STATE(1826), + [sym_unquoted] = STATE(1638), + [sym__unquoted_with_expr] = STATE(1828), + [sym__unquoted_anonymous_prefix] = STATE(6843), + [sym_comment] = STATE(800), + [aux_sym_ctrl_do_repeat2] = STATE(781), + [sym__newline] = ACTIONS(2890), + [anon_sym_SEMI] = ACTIONS(2890), + [anon_sym_PIPE] = ACTIONS(2890), + [anon_sym_err_GT_PIPE] = ACTIONS(2890), + [anon_sym_out_GT_PIPE] = ACTIONS(2890), + [anon_sym_e_GT_PIPE] = ACTIONS(2890), + [anon_sym_o_GT_PIPE] = ACTIONS(2890), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2890), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2890), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2890), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2890), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_RPAREN] = ACTIONS(2890), + [anon_sym_DOLLAR] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_DASH2] = ACTIONS(2633), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_RBRACE] = ACTIONS(2890), + [anon_sym_DOT_DOT] = ACTIONS(2637), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2639), + [anon_sym_DOT_DOT_LT] = ACTIONS(2639), + [anon_sym_null] = ACTIONS(2641), + [anon_sym_true] = ACTIONS(2643), + [anon_sym_false] = ACTIONS(2643), + [aux_sym__val_number_decimal_token1] = ACTIONS(2645), + [aux_sym__val_number_decimal_token2] = ACTIONS(2647), + [aux_sym__val_number_decimal_token3] = ACTIONS(2649), + [aux_sym__val_number_decimal_token4] = ACTIONS(2651), + [aux_sym__val_number_token1] = ACTIONS(2653), + [aux_sym__val_number_token2] = ACTIONS(2653), + [aux_sym__val_number_token3] = ACTIONS(2653), + [aux_sym__val_number_token4] = ACTIONS(2655), + [aux_sym__val_number_token5] = ACTIONS(2655), + [aux_sym__val_number_token6] = ACTIONS(2655), + [anon_sym_0b] = ACTIONS(2657), + [anon_sym_0o] = ACTIONS(2659), + [anon_sym_0x] = ACTIONS(2659), + [sym_val_date] = ACTIONS(2661), + [anon_sym_DQUOTE] = ACTIONS(2663), + [sym__str_single_quotes] = ACTIONS(2665), + [sym__str_back_ticks] = ACTIONS(2665), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2667), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2669), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(2675), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2677), + }, + [801] = { + [sym_comment] = STATE(801), + [anon_sym_STAR_STAR] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1681), + [anon_sym_SLASH] = ACTIONS(1681), + [anon_sym_mod] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_bit_DASHshl] = ACTIONS(1683), + [anon_sym_bit_DASHshr] = ACTIONS(1683), + [anon_sym_EQ_TILDE] = ACTIONS(1683), + [anon_sym_BANG_TILDE] = ACTIONS(1683), + [anon_sym_bit_DASHand] = ACTIONS(1683), + [anon_sym_bit_DASHxor] = ACTIONS(1683), + [anon_sym_bit_DASHor] = ACTIONS(1683), + [anon_sym_and] = ACTIONS(1683), + [anon_sym_xor] = ACTIONS(1683), + [anon_sym_or] = ACTIONS(1683), + [anon_sym_in] = ACTIONS(1683), + [anon_sym_not_DASHin] = ACTIONS(1683), + [anon_sym_starts_DASHwith] = ACTIONS(1683), + [anon_sym_ends_DASHwith] = ACTIONS(1683), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(1683), + [aux_sym_cmd_identifier_token41] = ACTIONS(1681), + [sym__newline] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_err_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_GT_PIPE] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), + [anon_sym_GT2] = ACTIONS(1681), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_in2] = ACTIONS(1681), + [anon_sym_RBRACE] = ACTIONS(1681), + [anon_sym_STAR2] = ACTIONS(1681), + [anon_sym_and2] = ACTIONS(1681), + [anon_sym_xor2] = ACTIONS(1681), + [anon_sym_or2] = ACTIONS(1681), + [anon_sym_not_DASHin2] = ACTIONS(1681), + [anon_sym_starts_DASHwith2] = ACTIONS(1681), + [anon_sym_ends_DASHwith2] = ACTIONS(1681), + [anon_sym_EQ_EQ2] = ACTIONS(1681), + [anon_sym_BANG_EQ2] = ACTIONS(1681), + [anon_sym_LT2] = ACTIONS(1681), + [anon_sym_LT_EQ2] = ACTIONS(1681), + [anon_sym_GT_EQ2] = ACTIONS(1681), + [anon_sym_EQ_TILDE2] = ACTIONS(1681), + [anon_sym_BANG_TILDE2] = ACTIONS(1681), + [anon_sym_STAR_STAR2] = ACTIONS(1681), + [anon_sym_PLUS_PLUS2] = ACTIONS(1681), + [anon_sym_SLASH2] = ACTIONS(1681), + [anon_sym_mod2] = ACTIONS(1681), + [anon_sym_SLASH_SLASH2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1681), + [anon_sym_bit_DASHshl2] = ACTIONS(1681), + [anon_sym_bit_DASHshr2] = ACTIONS(1681), + [anon_sym_bit_DASHand2] = ACTIONS(1681), + [anon_sym_bit_DASHxor2] = ACTIONS(1681), + [anon_sym_bit_DASHor2] = ACTIONS(1681), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [aux_sym__immediate_decimal_token2] = ACTIONS(2892), + [sym_filesize_unit] = ACTIONS(1681), + [sym_duration_unit] = ACTIONS(1683), + [aux_sym_record_entry_token1] = ACTIONS(1681), + [anon_sym_err_GT] = ACTIONS(1681), + [anon_sym_out_GT] = ACTIONS(1681), + [anon_sym_e_GT] = ACTIONS(1681), + [anon_sym_o_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT] = ACTIONS(1681), + [anon_sym_err_GT_GT] = ACTIONS(1681), + [anon_sym_out_GT_GT] = ACTIONS(1681), + [anon_sym_e_GT_GT] = ACTIONS(1681), + [anon_sym_o_GT_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), + [anon_sym_POUND] = ACTIONS(3), }, [802] = { [sym_comment] = STATE(802), - [anon_sym_STAR_STAR] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_SLASH] = ACTIONS(1621), - [anon_sym_mod] = ACTIONS(1623), - [anon_sym_SLASH_SLASH] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_bit_DASHshl] = ACTIONS(1623), - [anon_sym_bit_DASHshr] = ACTIONS(1623), - [anon_sym_EQ_TILDE] = ACTIONS(1623), - [anon_sym_BANG_TILDE] = ACTIONS(1623), - [anon_sym_bit_DASHand] = ACTIONS(1623), - [anon_sym_bit_DASHxor] = ACTIONS(1623), - [anon_sym_bit_DASHor] = ACTIONS(1623), - [anon_sym_and] = ACTIONS(1623), - [anon_sym_xor] = ACTIONS(1623), - [anon_sym_or] = ACTIONS(1623), - [anon_sym_in] = ACTIONS(1623), - [anon_sym_not_DASHin] = ACTIONS(1623), - [anon_sym_starts_DASHwith] = ACTIONS(1623), - [anon_sym_ends_DASHwith] = ACTIONS(1623), - [anon_sym_EQ_EQ] = ACTIONS(1623), - [anon_sym_BANG_EQ] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1621), - [anon_sym_LT_EQ] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1621), - [anon_sym_GT_EQ] = ACTIONS(1623), - [aux_sym_cmd_identifier_token41] = ACTIONS(1621), - [sym__newline] = ACTIONS(1621), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_PIPE] = ACTIONS(1621), - [anon_sym_err_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_GT_PIPE] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), - [anon_sym_GT2] = ACTIONS(1621), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_in2] = ACTIONS(1621), - [anon_sym_RBRACE] = ACTIONS(1621), - [anon_sym_STAR2] = ACTIONS(1621), - [anon_sym_and2] = ACTIONS(1621), - [anon_sym_xor2] = ACTIONS(1621), - [anon_sym_or2] = ACTIONS(1621), - [anon_sym_not_DASHin2] = ACTIONS(1621), - [anon_sym_starts_DASHwith2] = ACTIONS(1621), - [anon_sym_ends_DASHwith2] = ACTIONS(1621), - [anon_sym_EQ_EQ2] = ACTIONS(1621), - [anon_sym_BANG_EQ2] = ACTIONS(1621), - [anon_sym_LT2] = ACTIONS(1621), - [anon_sym_LT_EQ2] = ACTIONS(1621), - [anon_sym_GT_EQ2] = ACTIONS(1621), - [anon_sym_EQ_TILDE2] = ACTIONS(1621), - [anon_sym_BANG_TILDE2] = ACTIONS(1621), - [anon_sym_STAR_STAR2] = ACTIONS(1621), - [anon_sym_PLUS_PLUS2] = ACTIONS(1621), - [anon_sym_SLASH2] = ACTIONS(1621), - [anon_sym_mod2] = ACTIONS(1621), - [anon_sym_SLASH_SLASH2] = ACTIONS(1621), - [anon_sym_PLUS2] = ACTIONS(1621), - [anon_sym_bit_DASHshl2] = ACTIONS(1621), - [anon_sym_bit_DASHshr2] = ACTIONS(1621), - [anon_sym_bit_DASHand2] = ACTIONS(1621), - [anon_sym_bit_DASHxor2] = ACTIONS(1621), - [anon_sym_bit_DASHor2] = ACTIONS(1621), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [aux_sym__immediate_decimal_token1] = ACTIONS(2928), - [aux_sym__immediate_decimal_token2] = ACTIONS(2930), - [sym_filesize_unit] = ACTIONS(1621), - [sym_duration_unit] = ACTIONS(1623), - [anon_sym_err_GT] = ACTIONS(1621), - [anon_sym_out_GT] = ACTIONS(1621), - [anon_sym_e_GT] = ACTIONS(1621), - [anon_sym_o_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT] = ACTIONS(1621), - [anon_sym_err_GT_GT] = ACTIONS(1621), - [anon_sym_out_GT_GT] = ACTIONS(1621), - [anon_sym_e_GT_GT] = ACTIONS(1621), - [anon_sym_o_GT_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1621), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_bit_DASHshl] = ACTIONS(1575), + [anon_sym_bit_DASHshr] = ACTIONS(1575), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_BANG_TILDE] = ACTIONS(1575), + [anon_sym_bit_DASHand] = ACTIONS(1575), + [anon_sym_bit_DASHxor] = ACTIONS(1575), + [anon_sym_bit_DASHor] = ACTIONS(1575), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_not_DASHin] = ACTIONS(1575), + [anon_sym_starts_DASHwith] = ACTIONS(1575), + [anon_sym_ends_DASHwith] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1575), + [aux_sym_cmd_identifier_token41] = ACTIONS(1573), + [sym__newline] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_err_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_GT_PIPE] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_RBRACE] = ACTIONS(1573), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1573), + [anon_sym_xor2] = ACTIONS(1573), + [anon_sym_or2] = ACTIONS(1573), + [anon_sym_not_DASHin2] = ACTIONS(1573), + [anon_sym_starts_DASHwith2] = ACTIONS(1573), + [anon_sym_ends_DASHwith2] = ACTIONS(1573), + [anon_sym_EQ_EQ2] = ACTIONS(1573), + [anon_sym_BANG_EQ2] = ACTIONS(1573), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1573), + [anon_sym_GT_EQ2] = ACTIONS(1573), + [anon_sym_EQ_TILDE2] = ACTIONS(1573), + [anon_sym_BANG_TILDE2] = ACTIONS(1573), + [anon_sym_STAR_STAR2] = ACTIONS(1573), + [anon_sym_PLUS_PLUS2] = ACTIONS(1573), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1573), + [anon_sym_SLASH_SLASH2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1573), + [anon_sym_bit_DASHshr2] = ACTIONS(1573), + [anon_sym_bit_DASHand2] = ACTIONS(1573), + [anon_sym_bit_DASHxor2] = ACTIONS(1573), + [anon_sym_bit_DASHor2] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [aux_sym_record_entry_token1] = ACTIONS(1573), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1573), + [anon_sym_out_GT_GT] = ACTIONS(1573), + [anon_sym_e_GT_GT] = ACTIONS(1573), + [anon_sym_o_GT_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), [anon_sym_POUND] = ACTIONS(3), }, [803] = { [sym_comment] = STATE(803), - [anon_sym_STAR_STAR] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_SLASH_SLASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_bit_DASHshl] = ACTIONS(1609), - [anon_sym_bit_DASHshr] = ACTIONS(1609), - [anon_sym_EQ_TILDE] = ACTIONS(1609), - [anon_sym_BANG_TILDE] = ACTIONS(1609), - [anon_sym_bit_DASHand] = ACTIONS(1609), - [anon_sym_bit_DASHxor] = ACTIONS(1609), - [anon_sym_bit_DASHor] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(1609), - [anon_sym_not_DASHin] = ACTIONS(1609), - [anon_sym_starts_DASHwith] = ACTIONS(1609), - [anon_sym_ends_DASHwith] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1609), - [anon_sym_BANG_EQ] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1609), - [aux_sym_cmd_identifier_token41] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_RPAREN] = ACTIONS(1607), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT] = ACTIONS(2932), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(2934), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1607), - [anon_sym_out_GT_GT] = ACTIONS(1607), - [anon_sym_e_GT_GT] = ACTIONS(1607), - [anon_sym_o_GT_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [anon_sym_STAR_STAR] = ACTIONS(2894), + [anon_sym_PLUS_PLUS] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_SLASH] = ACTIONS(2896), + [anon_sym_mod] = ACTIONS(2894), + [anon_sym_SLASH_SLASH] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2896), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_bit_DASHshl] = ACTIONS(2894), + [anon_sym_bit_DASHshr] = ACTIONS(2894), + [anon_sym_EQ_TILDE] = ACTIONS(2894), + [anon_sym_BANG_TILDE] = ACTIONS(2894), + [anon_sym_bit_DASHand] = ACTIONS(2894), + [anon_sym_bit_DASHxor] = ACTIONS(2894), + [anon_sym_bit_DASHor] = ACTIONS(2894), + [anon_sym_and] = ACTIONS(2894), + [anon_sym_xor] = ACTIONS(2894), + [anon_sym_or] = ACTIONS(2894), + [anon_sym_in] = ACTIONS(2894), + [anon_sym_not_DASHin] = ACTIONS(2894), + [anon_sym_starts_DASHwith] = ACTIONS(2894), + [anon_sym_ends_DASHwith] = ACTIONS(2894), + [anon_sym_EQ_EQ] = ACTIONS(2894), + [anon_sym_BANG_EQ] = ACTIONS(2894), + [anon_sym_LT] = ACTIONS(2896), + [anon_sym_LT_EQ] = ACTIONS(2894), + [anon_sym_GT] = ACTIONS(2896), + [anon_sym_GT_EQ] = ACTIONS(2894), + [aux_sym_cmd_identifier_token41] = ACTIONS(2898), + [sym__newline] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_err_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_GT_PIPE] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), + [anon_sym_GT2] = ACTIONS(1707), + [anon_sym_DASH2] = ACTIONS(1707), + [anon_sym_in2] = ACTIONS(1707), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_STAR2] = ACTIONS(1707), + [anon_sym_and2] = ACTIONS(1707), + [anon_sym_xor2] = ACTIONS(1707), + [anon_sym_or2] = ACTIONS(1707), + [anon_sym_not_DASHin2] = ACTIONS(1707), + [anon_sym_starts_DASHwith2] = ACTIONS(1707), + [anon_sym_ends_DASHwith2] = ACTIONS(1707), + [anon_sym_EQ_EQ2] = ACTIONS(1707), + [anon_sym_BANG_EQ2] = ACTIONS(1707), + [anon_sym_LT2] = ACTIONS(1707), + [anon_sym_LT_EQ2] = ACTIONS(1707), + [anon_sym_GT_EQ2] = ACTIONS(1707), + [anon_sym_EQ_TILDE2] = ACTIONS(1707), + [anon_sym_BANG_TILDE2] = ACTIONS(1707), + [anon_sym_STAR_STAR2] = ACTIONS(1707), + [anon_sym_PLUS_PLUS2] = ACTIONS(1707), + [anon_sym_SLASH2] = ACTIONS(1707), + [anon_sym_mod2] = ACTIONS(1707), + [anon_sym_SLASH_SLASH2] = ACTIONS(1707), + [anon_sym_PLUS2] = ACTIONS(1707), + [anon_sym_bit_DASHshl2] = ACTIONS(1707), + [anon_sym_bit_DASHshr2] = ACTIONS(1707), + [anon_sym_bit_DASHand2] = ACTIONS(1707), + [anon_sym_bit_DASHxor2] = ACTIONS(1707), + [anon_sym_bit_DASHor2] = ACTIONS(1707), + [anon_sym_DOT_DOT2] = ACTIONS(2900), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2902), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2902), + [sym_filesize_unit] = ACTIONS(2904), + [sym_duration_unit] = ACTIONS(2906), + [aux_sym_record_entry_token1] = ACTIONS(1707), + [anon_sym_err_GT] = ACTIONS(1707), + [anon_sym_out_GT] = ACTIONS(1707), + [anon_sym_e_GT] = ACTIONS(1707), + [anon_sym_o_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT] = ACTIONS(1707), + [anon_sym_err_GT_GT] = ACTIONS(1707), + [anon_sym_out_GT_GT] = ACTIONS(1707), + [anon_sym_e_GT_GT] = ACTIONS(1707), + [anon_sym_o_GT_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), [anon_sym_POUND] = ACTIONS(3), }, [804] = { [sym_comment] = STATE(804), - [anon_sym_STAR_STAR] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_SLASH] = ACTIONS(1621), - [anon_sym_mod] = ACTIONS(1623), - [anon_sym_SLASH_SLASH] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_bit_DASHshl] = ACTIONS(1623), - [anon_sym_bit_DASHshr] = ACTIONS(1623), - [anon_sym_EQ_TILDE] = ACTIONS(1623), - [anon_sym_BANG_TILDE] = ACTIONS(1623), - [anon_sym_bit_DASHand] = ACTIONS(1623), - [anon_sym_bit_DASHxor] = ACTIONS(1623), - [anon_sym_bit_DASHor] = ACTIONS(1623), - [anon_sym_and] = ACTIONS(1623), - [anon_sym_xor] = ACTIONS(1623), - [anon_sym_or] = ACTIONS(1623), - [anon_sym_in] = ACTIONS(1623), - [anon_sym_not_DASHin] = ACTIONS(1623), - [anon_sym_starts_DASHwith] = ACTIONS(1623), - [anon_sym_ends_DASHwith] = ACTIONS(1623), - [anon_sym_EQ_EQ] = ACTIONS(1623), - [anon_sym_BANG_EQ] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1621), - [anon_sym_LT_EQ] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1621), - [anon_sym_GT_EQ] = ACTIONS(1623), - [aux_sym_cmd_identifier_token41] = ACTIONS(1621), - [sym__newline] = ACTIONS(1621), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_PIPE] = ACTIONS(1621), - [anon_sym_err_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_GT_PIPE] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), - [anon_sym_RPAREN] = ACTIONS(1621), - [anon_sym_GT2] = ACTIONS(1621), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_in2] = ACTIONS(1621), - [anon_sym_STAR2] = ACTIONS(1621), - [anon_sym_and2] = ACTIONS(1621), - [anon_sym_xor2] = ACTIONS(1621), - [anon_sym_or2] = ACTIONS(1621), - [anon_sym_not_DASHin2] = ACTIONS(1621), - [anon_sym_starts_DASHwith2] = ACTIONS(1621), - [anon_sym_ends_DASHwith2] = ACTIONS(1621), - [anon_sym_EQ_EQ2] = ACTIONS(1621), - [anon_sym_BANG_EQ2] = ACTIONS(1621), - [anon_sym_LT2] = ACTIONS(1621), - [anon_sym_LT_EQ2] = ACTIONS(1621), - [anon_sym_GT_EQ2] = ACTIONS(1621), - [anon_sym_EQ_TILDE2] = ACTIONS(1621), - [anon_sym_BANG_TILDE2] = ACTIONS(1621), - [anon_sym_STAR_STAR2] = ACTIONS(1621), - [anon_sym_PLUS_PLUS2] = ACTIONS(1621), - [anon_sym_SLASH2] = ACTIONS(1621), - [anon_sym_mod2] = ACTIONS(1621), - [anon_sym_SLASH_SLASH2] = ACTIONS(1621), - [anon_sym_PLUS2] = ACTIONS(1621), - [anon_sym_bit_DASHshl2] = ACTIONS(1621), - [anon_sym_bit_DASHshr2] = ACTIONS(1621), - [anon_sym_bit_DASHand2] = ACTIONS(1621), - [anon_sym_bit_DASHxor2] = ACTIONS(1621), - [anon_sym_bit_DASHor2] = ACTIONS(1621), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [aux_sym__immediate_decimal_token1] = ACTIONS(2936), - [aux_sym__immediate_decimal_token2] = ACTIONS(2938), - [sym_filesize_unit] = ACTIONS(1621), - [sym_duration_unit] = ACTIONS(1623), - [anon_sym_err_GT] = ACTIONS(1621), - [anon_sym_out_GT] = ACTIONS(1621), - [anon_sym_e_GT] = ACTIONS(1621), - [anon_sym_o_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT] = ACTIONS(1621), - [anon_sym_err_GT_GT] = ACTIONS(1621), - [anon_sym_out_GT_GT] = ACTIONS(1621), - [anon_sym_e_GT_GT] = ACTIONS(1621), - [anon_sym_o_GT_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1621), + [anon_sym_STAR_STAR] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1761), + [anon_sym_mod] = ACTIONS(1763), + [anon_sym_SLASH_SLASH] = ACTIONS(1763), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_bit_DASHshl] = ACTIONS(1763), + [anon_sym_bit_DASHshr] = ACTIONS(1763), + [anon_sym_EQ_TILDE] = ACTIONS(1763), + [anon_sym_BANG_TILDE] = ACTIONS(1763), + [anon_sym_bit_DASHand] = ACTIONS(1763), + [anon_sym_bit_DASHxor] = ACTIONS(1763), + [anon_sym_bit_DASHor] = ACTIONS(1763), + [anon_sym_and] = ACTIONS(1763), + [anon_sym_xor] = ACTIONS(1763), + [anon_sym_or] = ACTIONS(1763), + [anon_sym_in] = ACTIONS(1763), + [anon_sym_not_DASHin] = ACTIONS(1763), + [anon_sym_starts_DASHwith] = ACTIONS(1763), + [anon_sym_ends_DASHwith] = ACTIONS(1763), + [anon_sym_EQ_EQ] = ACTIONS(1763), + [anon_sym_BANG_EQ] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1761), + [anon_sym_LT_EQ] = ACTIONS(1763), + [anon_sym_GT] = ACTIONS(1761), + [anon_sym_GT_EQ] = ACTIONS(1763), + [aux_sym_cmd_identifier_token41] = ACTIONS(1761), + [sym__newline] = ACTIONS(1761), + [anon_sym_SEMI] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1761), + [anon_sym_err_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_GT_PIPE] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), + [anon_sym_GT2] = ACTIONS(1761), + [anon_sym_DASH2] = ACTIONS(1761), + [anon_sym_in2] = ACTIONS(1761), + [anon_sym_RBRACE] = ACTIONS(1761), + [anon_sym_STAR2] = ACTIONS(1761), + [anon_sym_and2] = ACTIONS(1761), + [anon_sym_xor2] = ACTIONS(1761), + [anon_sym_or2] = ACTIONS(1761), + [anon_sym_not_DASHin2] = ACTIONS(1761), + [anon_sym_starts_DASHwith2] = ACTIONS(1761), + [anon_sym_ends_DASHwith2] = ACTIONS(1761), + [anon_sym_EQ_EQ2] = ACTIONS(1761), + [anon_sym_BANG_EQ2] = ACTIONS(1761), + [anon_sym_LT2] = ACTIONS(1761), + [anon_sym_LT_EQ2] = ACTIONS(1761), + [anon_sym_GT_EQ2] = ACTIONS(1761), + [anon_sym_EQ_TILDE2] = ACTIONS(1761), + [anon_sym_BANG_TILDE2] = ACTIONS(1761), + [anon_sym_STAR_STAR2] = ACTIONS(1761), + [anon_sym_PLUS_PLUS2] = ACTIONS(1761), + [anon_sym_SLASH2] = ACTIONS(1761), + [anon_sym_mod2] = ACTIONS(1761), + [anon_sym_SLASH_SLASH2] = ACTIONS(1761), + [anon_sym_PLUS2] = ACTIONS(1761), + [anon_sym_bit_DASHshl2] = ACTIONS(1761), + [anon_sym_bit_DASHshr2] = ACTIONS(1761), + [anon_sym_bit_DASHand2] = ACTIONS(1761), + [anon_sym_bit_DASHxor2] = ACTIONS(1761), + [anon_sym_bit_DASHor2] = ACTIONS(1761), + [anon_sym_DOT_DOT2] = ACTIONS(1761), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), + [sym_filesize_unit] = ACTIONS(1761), + [sym_duration_unit] = ACTIONS(1763), + [aux_sym_record_entry_token1] = ACTIONS(1761), + [anon_sym_err_GT] = ACTIONS(1761), + [anon_sym_out_GT] = ACTIONS(1761), + [anon_sym_e_GT] = ACTIONS(1761), + [anon_sym_o_GT] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT] = ACTIONS(1761), + [anon_sym_err_GT_GT] = ACTIONS(1761), + [anon_sym_out_GT_GT] = ACTIONS(1761), + [anon_sym_e_GT_GT] = ACTIONS(1761), + [anon_sym_o_GT_GT] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1761), [anon_sym_POUND] = ACTIONS(3), }, [805] = { [sym_comment] = STATE(805), - [ts_builtin_sym_end] = ACTIONS(1623), - [anon_sym_STAR_STAR] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_SLASH] = ACTIONS(1621), - [anon_sym_mod] = ACTIONS(1623), - [anon_sym_SLASH_SLASH] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_bit_DASHshl] = ACTIONS(1623), - [anon_sym_bit_DASHshr] = ACTIONS(1623), - [anon_sym_EQ_TILDE] = ACTIONS(1623), - [anon_sym_BANG_TILDE] = ACTIONS(1623), - [anon_sym_bit_DASHand] = ACTIONS(1623), - [anon_sym_bit_DASHxor] = ACTIONS(1623), - [anon_sym_bit_DASHor] = ACTIONS(1623), - [anon_sym_and] = ACTIONS(1623), - [anon_sym_xor] = ACTIONS(1623), - [anon_sym_or] = ACTIONS(1623), - [anon_sym_in] = ACTIONS(1623), - [anon_sym_not_DASHin] = ACTIONS(1623), - [anon_sym_starts_DASHwith] = ACTIONS(1623), - [anon_sym_ends_DASHwith] = ACTIONS(1623), - [anon_sym_EQ_EQ] = ACTIONS(1623), - [anon_sym_BANG_EQ] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1621), - [anon_sym_LT_EQ] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1621), - [anon_sym_GT_EQ] = ACTIONS(1623), - [aux_sym_cmd_identifier_token41] = ACTIONS(1621), - [sym__newline] = ACTIONS(1621), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_PIPE] = ACTIONS(1621), - [anon_sym_err_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_GT_PIPE] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), - [anon_sym_GT2] = ACTIONS(1621), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_in2] = ACTIONS(1621), - [anon_sym_STAR2] = ACTIONS(1621), - [anon_sym_and2] = ACTIONS(1621), - [anon_sym_xor2] = ACTIONS(1621), - [anon_sym_or2] = ACTIONS(1621), - [anon_sym_not_DASHin2] = ACTIONS(1621), - [anon_sym_starts_DASHwith2] = ACTIONS(1621), - [anon_sym_ends_DASHwith2] = ACTIONS(1621), - [anon_sym_EQ_EQ2] = ACTIONS(1621), - [anon_sym_BANG_EQ2] = ACTIONS(1621), - [anon_sym_LT2] = ACTIONS(1621), - [anon_sym_LT_EQ2] = ACTIONS(1621), - [anon_sym_GT_EQ2] = ACTIONS(1621), - [anon_sym_EQ_TILDE2] = ACTIONS(1621), - [anon_sym_BANG_TILDE2] = ACTIONS(1621), - [anon_sym_STAR_STAR2] = ACTIONS(1621), - [anon_sym_PLUS_PLUS2] = ACTIONS(1621), - [anon_sym_SLASH2] = ACTIONS(1621), - [anon_sym_mod2] = ACTIONS(1621), - [anon_sym_SLASH_SLASH2] = ACTIONS(1621), - [anon_sym_PLUS2] = ACTIONS(1621), - [anon_sym_bit_DASHshl2] = ACTIONS(1621), - [anon_sym_bit_DASHshr2] = ACTIONS(1621), - [anon_sym_bit_DASHand2] = ACTIONS(1621), - [anon_sym_bit_DASHxor2] = ACTIONS(1621), - [anon_sym_bit_DASHor2] = ACTIONS(1621), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [aux_sym__immediate_decimal_token1] = ACTIONS(2940), - [aux_sym__immediate_decimal_token2] = ACTIONS(2942), - [sym_filesize_unit] = ACTIONS(1621), - [sym_duration_unit] = ACTIONS(1623), - [anon_sym_err_GT] = ACTIONS(1621), - [anon_sym_out_GT] = ACTIONS(1621), - [anon_sym_e_GT] = ACTIONS(1621), - [anon_sym_o_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT] = ACTIONS(1621), - [anon_sym_err_GT_GT] = ACTIONS(1621), - [anon_sym_out_GT_GT] = ACTIONS(1621), - [anon_sym_e_GT_GT] = ACTIONS(1621), - [anon_sym_o_GT_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1621), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_bit_DASHshl] = ACTIONS(1575), + [anon_sym_bit_DASHshr] = ACTIONS(1575), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_BANG_TILDE] = ACTIONS(1575), + [anon_sym_bit_DASHand] = ACTIONS(1575), + [anon_sym_bit_DASHxor] = ACTIONS(1575), + [anon_sym_bit_DASHor] = ACTIONS(1575), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_not_DASHin] = ACTIONS(1575), + [anon_sym_starts_DASHwith] = ACTIONS(1575), + [anon_sym_ends_DASHwith] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1575), + [aux_sym_cmd_identifier_token41] = ACTIONS(1573), + [sym__newline] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_err_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_GT_PIPE] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), + [anon_sym_RPAREN] = ACTIONS(1573), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1573), + [anon_sym_xor2] = ACTIONS(1573), + [anon_sym_or2] = ACTIONS(1573), + [anon_sym_not_DASHin2] = ACTIONS(1573), + [anon_sym_starts_DASHwith2] = ACTIONS(1573), + [anon_sym_ends_DASHwith2] = ACTIONS(1573), + [anon_sym_EQ_EQ2] = ACTIONS(1573), + [anon_sym_BANG_EQ2] = ACTIONS(1573), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1573), + [anon_sym_GT_EQ2] = ACTIONS(1573), + [anon_sym_EQ_TILDE2] = ACTIONS(1573), + [anon_sym_BANG_TILDE2] = ACTIONS(1573), + [anon_sym_STAR_STAR2] = ACTIONS(1573), + [anon_sym_PLUS_PLUS2] = ACTIONS(1573), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1573), + [anon_sym_SLASH_SLASH2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1573), + [anon_sym_bit_DASHshr2] = ACTIONS(1573), + [anon_sym_bit_DASHand2] = ACTIONS(1573), + [anon_sym_bit_DASHxor2] = ACTIONS(1573), + [anon_sym_bit_DASHor2] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(2691), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1573), + [anon_sym_out_GT_GT] = ACTIONS(1573), + [anon_sym_e_GT_GT] = ACTIONS(1573), + [anon_sym_o_GT_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), [anon_sym_POUND] = ACTIONS(3), }, [806] = { - [sym_expr_parenthesized] = STATE(1625), - [sym_val_range] = STATE(1853), - [sym__val_range] = STATE(7587), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(1853), - [sym_val_nothing] = STATE(1890), - [sym_val_bool] = STATE(1685), - [sym_val_variable] = STATE(1583), - [sym_val_number] = STATE(1890), - [sym__val_number_decimal] = STATE(1375), - [sym__val_number] = STATE(1944), - [sym_val_duration] = STATE(1890), - [sym_val_filesize] = STATE(1890), - [sym_val_binary] = STATE(1890), - [sym_val_string] = STATE(1890), - [sym__raw_str] = STATE(1873), - [sym__str_double_quotes] = STATE(1873), - [sym_val_interpolated] = STATE(1890), - [sym__inter_single_quotes] = STATE(1966), - [sym__inter_double_quotes] = STATE(1967), - [sym_val_list] = STATE(1890), - [sym_val_record] = STATE(1890), - [sym_val_table] = STATE(1890), - [sym_val_closure] = STATE(1890), - [sym__flag] = STATE(1853), - [sym_short_flag] = STATE(1876), - [sym_long_flag] = STATE(1876), - [sym_unquoted] = STATE(1727), - [sym__unquoted_with_expr] = STATE(1975), - [sym__unquoted_anonymous_prefix] = STATE(6997), [sym_comment] = STATE(806), - [aux_sym_ctrl_do_repeat2] = STATE(806), - [ts_builtin_sym_end] = ACTIONS(2679), - [sym__newline] = ACTIONS(2679), - [anon_sym_SEMI] = ACTIONS(2679), - [anon_sym_PIPE] = ACTIONS(2679), - [anon_sym_err_GT_PIPE] = ACTIONS(2679), - [anon_sym_out_GT_PIPE] = ACTIONS(2679), - [anon_sym_e_GT_PIPE] = ACTIONS(2679), - [anon_sym_o_GT_PIPE] = ACTIONS(2679), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2679), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2679), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2679), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2679), - [anon_sym_LBRACK] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2947), - [anon_sym_DOLLAR] = ACTIONS(2950), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [anon_sym_DASH2] = ACTIONS(2956), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_DOT_DOT] = ACTIONS(2962), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2965), - [anon_sym_DOT_DOT_LT] = ACTIONS(2965), - [anon_sym_null] = ACTIONS(2968), - [anon_sym_true] = ACTIONS(2971), - [anon_sym_false] = ACTIONS(2971), - [aux_sym__val_number_decimal_token1] = ACTIONS(2974), - [aux_sym__val_number_decimal_token2] = ACTIONS(2977), - [aux_sym__val_number_decimal_token3] = ACTIONS(2980), - [aux_sym__val_number_decimal_token4] = ACTIONS(2983), - [aux_sym__val_number_token1] = ACTIONS(2986), - [aux_sym__val_number_token2] = ACTIONS(2986), - [aux_sym__val_number_token3] = ACTIONS(2986), - [aux_sym__val_number_token4] = ACTIONS(2989), - [aux_sym__val_number_token5] = ACTIONS(2989), - [aux_sym__val_number_token6] = ACTIONS(2989), - [anon_sym_0b] = ACTIONS(2992), - [anon_sym_0o] = ACTIONS(2995), - [anon_sym_0x] = ACTIONS(2995), - [sym_val_date] = ACTIONS(2998), - [anon_sym_DQUOTE] = ACTIONS(3001), - [sym__str_single_quotes] = ACTIONS(3004), - [sym__str_back_ticks] = ACTIONS(3004), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3007), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3010), - [anon_sym_err_GT] = ACTIONS(2750), - [anon_sym_out_GT] = ACTIONS(2750), - [anon_sym_e_GT] = ACTIONS(2750), - [anon_sym_o_GT] = ACTIONS(2750), - [anon_sym_err_PLUSout_GT] = ACTIONS(2750), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2750), - [anon_sym_o_PLUSe_GT] = ACTIONS(2750), - [anon_sym_e_PLUSo_GT] = ACTIONS(2750), - [anon_sym_err_GT_GT] = ACTIONS(2753), - [anon_sym_out_GT_GT] = ACTIONS(2753), - [anon_sym_e_GT_GT] = ACTIONS(2753), - [anon_sym_o_GT_GT] = ACTIONS(2753), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2753), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2753), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2753), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2753), - [aux_sym_unquoted_token1] = ACTIONS(3013), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3016), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_bit_DASHshl] = ACTIONS(1575), + [anon_sym_bit_DASHshr] = ACTIONS(1575), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_BANG_TILDE] = ACTIONS(1575), + [anon_sym_bit_DASHand] = ACTIONS(1575), + [anon_sym_bit_DASHxor] = ACTIONS(1575), + [anon_sym_bit_DASHor] = ACTIONS(1575), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_not_DASHin] = ACTIONS(1575), + [anon_sym_starts_DASHwith] = ACTIONS(1575), + [anon_sym_ends_DASHwith] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1575), + [aux_sym_cmd_identifier_token41] = ACTIONS(1573), + [sym__newline] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_err_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_GT_PIPE] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1573), + [anon_sym_xor2] = ACTIONS(1573), + [anon_sym_or2] = ACTIONS(1573), + [anon_sym_not_DASHin2] = ACTIONS(1573), + [anon_sym_starts_DASHwith2] = ACTIONS(1573), + [anon_sym_ends_DASHwith2] = ACTIONS(1573), + [anon_sym_EQ_EQ2] = ACTIONS(1573), + [anon_sym_BANG_EQ2] = ACTIONS(1573), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1573), + [anon_sym_GT_EQ2] = ACTIONS(1573), + [anon_sym_EQ_TILDE2] = ACTIONS(1573), + [anon_sym_BANG_TILDE2] = ACTIONS(1573), + [anon_sym_STAR_STAR2] = ACTIONS(1573), + [anon_sym_PLUS_PLUS2] = ACTIONS(1573), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1573), + [anon_sym_SLASH_SLASH2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1573), + [anon_sym_bit_DASHshr2] = ACTIONS(1573), + [anon_sym_bit_DASHand2] = ACTIONS(1573), + [anon_sym_bit_DASHxor2] = ACTIONS(1573), + [anon_sym_bit_DASHor2] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT] = ACTIONS(2908), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(2910), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1573), + [anon_sym_out_GT_GT] = ACTIONS(1573), + [anon_sym_e_GT_GT] = ACTIONS(1573), + [anon_sym_o_GT_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), + [anon_sym_POUND] = ACTIONS(3), }, [807] = { [sym_comment] = STATE(807), - [ts_builtin_sym_end] = ACTIONS(1675), - [anon_sym_STAR_STAR] = ACTIONS(1675), - [anon_sym_PLUS_PLUS] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1673), - [anon_sym_mod] = ACTIONS(1675), - [anon_sym_SLASH_SLASH] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_bit_DASHshl] = ACTIONS(1675), - [anon_sym_bit_DASHshr] = ACTIONS(1675), - [anon_sym_EQ_TILDE] = ACTIONS(1675), - [anon_sym_BANG_TILDE] = ACTIONS(1675), - [anon_sym_bit_DASHand] = ACTIONS(1675), - [anon_sym_bit_DASHxor] = ACTIONS(1675), - [anon_sym_bit_DASHor] = ACTIONS(1675), - [anon_sym_and] = ACTIONS(1675), - [anon_sym_xor] = ACTIONS(1675), - [anon_sym_or] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [anon_sym_not_DASHin] = ACTIONS(1675), - [anon_sym_starts_DASHwith] = ACTIONS(1675), - [anon_sym_ends_DASHwith] = ACTIONS(1675), - [anon_sym_EQ_EQ] = ACTIONS(1675), - [anon_sym_BANG_EQ] = ACTIONS(1675), - [anon_sym_LT] = ACTIONS(1673), - [anon_sym_LT_EQ] = ACTIONS(1675), - [anon_sym_GT] = ACTIONS(1673), - [anon_sym_GT_EQ] = ACTIONS(1675), - [aux_sym_cmd_identifier_token41] = ACTIONS(1673), - [sym__newline] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1673), - [anon_sym_err_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_GT_PIPE] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_in2] = ACTIONS(1673), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1673), - [anon_sym_xor2] = ACTIONS(1673), - [anon_sym_or2] = ACTIONS(1673), - [anon_sym_not_DASHin2] = ACTIONS(1673), - [anon_sym_starts_DASHwith2] = ACTIONS(1673), - [anon_sym_ends_DASHwith2] = ACTIONS(1673), - [anon_sym_EQ_EQ2] = ACTIONS(1673), - [anon_sym_BANG_EQ2] = ACTIONS(1673), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1673), - [anon_sym_GT_EQ2] = ACTIONS(1673), - [anon_sym_EQ_TILDE2] = ACTIONS(1673), - [anon_sym_BANG_TILDE2] = ACTIONS(1673), - [anon_sym_STAR_STAR2] = ACTIONS(1673), - [anon_sym_PLUS_PLUS2] = ACTIONS(1673), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1673), - [anon_sym_SLASH_SLASH2] = ACTIONS(1673), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1673), - [anon_sym_bit_DASHshr2] = ACTIONS(1673), - [anon_sym_bit_DASHand2] = ACTIONS(1673), - [anon_sym_bit_DASHxor2] = ACTIONS(1673), - [anon_sym_bit_DASHor2] = ACTIONS(1673), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [aux_sym__immediate_decimal_token2] = ACTIONS(3019), - [sym_filesize_unit] = ACTIONS(1673), - [sym_duration_unit] = ACTIONS(1675), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1673), - [anon_sym_out_GT_GT] = ACTIONS(1673), - [anon_sym_e_GT_GT] = ACTIONS(1673), - [anon_sym_o_GT_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), + [anon_sym_STAR_STAR] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1681), + [anon_sym_SLASH] = ACTIONS(1681), + [anon_sym_mod] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_bit_DASHshl] = ACTIONS(1683), + [anon_sym_bit_DASHshr] = ACTIONS(1683), + [anon_sym_EQ_TILDE] = ACTIONS(1683), + [anon_sym_BANG_TILDE] = ACTIONS(1683), + [anon_sym_bit_DASHand] = ACTIONS(1683), + [anon_sym_bit_DASHxor] = ACTIONS(1683), + [anon_sym_bit_DASHor] = ACTIONS(1683), + [anon_sym_and] = ACTIONS(1683), + [anon_sym_xor] = ACTIONS(1683), + [anon_sym_or] = ACTIONS(1683), + [anon_sym_in] = ACTIONS(1683), + [anon_sym_not_DASHin] = ACTIONS(1683), + [anon_sym_starts_DASHwith] = ACTIONS(1683), + [anon_sym_ends_DASHwith] = ACTIONS(1683), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(1683), + [aux_sym_cmd_identifier_token41] = ACTIONS(1681), + [sym__newline] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_err_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_GT_PIPE] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), + [anon_sym_RPAREN] = ACTIONS(1681), + [anon_sym_GT2] = ACTIONS(1681), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_in2] = ACTIONS(1681), + [anon_sym_STAR2] = ACTIONS(1681), + [anon_sym_and2] = ACTIONS(1681), + [anon_sym_xor2] = ACTIONS(1681), + [anon_sym_or2] = ACTIONS(1681), + [anon_sym_not_DASHin2] = ACTIONS(1681), + [anon_sym_starts_DASHwith2] = ACTIONS(1681), + [anon_sym_ends_DASHwith2] = ACTIONS(1681), + [anon_sym_EQ_EQ2] = ACTIONS(1681), + [anon_sym_BANG_EQ2] = ACTIONS(1681), + [anon_sym_LT2] = ACTIONS(1681), + [anon_sym_LT_EQ2] = ACTIONS(1681), + [anon_sym_GT_EQ2] = ACTIONS(1681), + [anon_sym_EQ_TILDE2] = ACTIONS(1681), + [anon_sym_BANG_TILDE2] = ACTIONS(1681), + [anon_sym_STAR_STAR2] = ACTIONS(1681), + [anon_sym_PLUS_PLUS2] = ACTIONS(1681), + [anon_sym_SLASH2] = ACTIONS(1681), + [anon_sym_mod2] = ACTIONS(1681), + [anon_sym_SLASH_SLASH2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1681), + [anon_sym_bit_DASHshl2] = ACTIONS(1681), + [anon_sym_bit_DASHshr2] = ACTIONS(1681), + [anon_sym_bit_DASHand2] = ACTIONS(1681), + [anon_sym_bit_DASHxor2] = ACTIONS(1681), + [anon_sym_bit_DASHor2] = ACTIONS(1681), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [aux_sym__immediate_decimal_token2] = ACTIONS(2912), + [sym_filesize_unit] = ACTIONS(1681), + [sym_duration_unit] = ACTIONS(1683), + [anon_sym_err_GT] = ACTIONS(1681), + [anon_sym_out_GT] = ACTIONS(1681), + [anon_sym_e_GT] = ACTIONS(1681), + [anon_sym_o_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT] = ACTIONS(1681), + [anon_sym_err_GT_GT] = ACTIONS(1681), + [anon_sym_out_GT_GT] = ACTIONS(1681), + [anon_sym_e_GT_GT] = ACTIONS(1681), + [anon_sym_o_GT_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), [anon_sym_POUND] = ACTIONS(3), }, [808] = { [sym_comment] = STATE(808), - [anon_sym_STAR_STAR] = ACTIONS(1675), - [anon_sym_PLUS_PLUS] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1673), - [anon_sym_mod] = ACTIONS(1675), - [anon_sym_SLASH_SLASH] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_bit_DASHshl] = ACTIONS(1675), - [anon_sym_bit_DASHshr] = ACTIONS(1675), - [anon_sym_EQ_TILDE] = ACTIONS(1675), - [anon_sym_BANG_TILDE] = ACTIONS(1675), - [anon_sym_bit_DASHand] = ACTIONS(1675), - [anon_sym_bit_DASHxor] = ACTIONS(1675), - [anon_sym_bit_DASHor] = ACTIONS(1675), - [anon_sym_and] = ACTIONS(1675), - [anon_sym_xor] = ACTIONS(1675), - [anon_sym_or] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [anon_sym_not_DASHin] = ACTIONS(1675), - [anon_sym_starts_DASHwith] = ACTIONS(1675), - [anon_sym_ends_DASHwith] = ACTIONS(1675), - [anon_sym_EQ_EQ] = ACTIONS(1675), - [anon_sym_BANG_EQ] = ACTIONS(1675), - [anon_sym_LT] = ACTIONS(1673), - [anon_sym_LT_EQ] = ACTIONS(1675), - [anon_sym_GT] = ACTIONS(1673), - [anon_sym_GT_EQ] = ACTIONS(1675), - [aux_sym_cmd_identifier_token41] = ACTIONS(1673), - [sym__newline] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1673), - [anon_sym_err_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_GT_PIPE] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_in2] = ACTIONS(1673), - [anon_sym_RBRACE] = ACTIONS(1673), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1673), - [anon_sym_xor2] = ACTIONS(1673), - [anon_sym_or2] = ACTIONS(1673), - [anon_sym_not_DASHin2] = ACTIONS(1673), - [anon_sym_starts_DASHwith2] = ACTIONS(1673), - [anon_sym_ends_DASHwith2] = ACTIONS(1673), - [anon_sym_EQ_EQ2] = ACTIONS(1673), - [anon_sym_BANG_EQ2] = ACTIONS(1673), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1673), - [anon_sym_GT_EQ2] = ACTIONS(1673), - [anon_sym_EQ_TILDE2] = ACTIONS(1673), - [anon_sym_BANG_TILDE2] = ACTIONS(1673), - [anon_sym_STAR_STAR2] = ACTIONS(1673), - [anon_sym_PLUS_PLUS2] = ACTIONS(1673), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1673), - [anon_sym_SLASH_SLASH2] = ACTIONS(1673), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1673), - [anon_sym_bit_DASHshr2] = ACTIONS(1673), - [anon_sym_bit_DASHand2] = ACTIONS(1673), - [anon_sym_bit_DASHxor2] = ACTIONS(1673), - [anon_sym_bit_DASHor2] = ACTIONS(1673), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [aux_sym__immediate_decimal_token2] = ACTIONS(3021), - [sym_filesize_unit] = ACTIONS(1673), - [sym_duration_unit] = ACTIONS(1675), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1673), - [anon_sym_out_GT_GT] = ACTIONS(1673), - [anon_sym_e_GT_GT] = ACTIONS(1673), - [anon_sym_o_GT_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), + [anon_sym_STAR_STAR] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_mod] = ACTIONS(1587), + [anon_sym_SLASH_SLASH] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_bit_DASHshl] = ACTIONS(1587), + [anon_sym_bit_DASHshr] = ACTIONS(1587), + [anon_sym_EQ_TILDE] = ACTIONS(1587), + [anon_sym_BANG_TILDE] = ACTIONS(1587), + [anon_sym_bit_DASHand] = ACTIONS(1587), + [anon_sym_bit_DASHxor] = ACTIONS(1587), + [anon_sym_bit_DASHor] = ACTIONS(1587), + [anon_sym_and] = ACTIONS(1587), + [anon_sym_xor] = ACTIONS(1587), + [anon_sym_or] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(1587), + [anon_sym_not_DASHin] = ACTIONS(1587), + [anon_sym_starts_DASHwith] = ACTIONS(1587), + [anon_sym_ends_DASHwith] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(1587), + [anon_sym_BANG_EQ] = ACTIONS(1587), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_LT_EQ] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1587), + [aux_sym_cmd_identifier_token41] = ACTIONS(1585), + [sym__newline] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_err_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_GT_PIPE] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), + [anon_sym_GT2] = ACTIONS(1585), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_in2] = ACTIONS(1585), + [anon_sym_STAR2] = ACTIONS(1585), + [anon_sym_and2] = ACTIONS(1585), + [anon_sym_xor2] = ACTIONS(1585), + [anon_sym_or2] = ACTIONS(1585), + [anon_sym_not_DASHin2] = ACTIONS(1585), + [anon_sym_starts_DASHwith2] = ACTIONS(1585), + [anon_sym_ends_DASHwith2] = ACTIONS(1585), + [anon_sym_EQ_EQ2] = ACTIONS(1585), + [anon_sym_BANG_EQ2] = ACTIONS(1585), + [anon_sym_LT2] = ACTIONS(1585), + [anon_sym_LT_EQ2] = ACTIONS(1585), + [anon_sym_GT_EQ2] = ACTIONS(1585), + [anon_sym_EQ_TILDE2] = ACTIONS(1585), + [anon_sym_BANG_TILDE2] = ACTIONS(1585), + [anon_sym_STAR_STAR2] = ACTIONS(1585), + [anon_sym_PLUS_PLUS2] = ACTIONS(1585), + [anon_sym_SLASH2] = ACTIONS(1585), + [anon_sym_mod2] = ACTIONS(1585), + [anon_sym_SLASH_SLASH2] = ACTIONS(1585), + [anon_sym_PLUS2] = ACTIONS(1585), + [anon_sym_bit_DASHshl2] = ACTIONS(1585), + [anon_sym_bit_DASHshr2] = ACTIONS(1585), + [anon_sym_bit_DASHand2] = ACTIONS(1585), + [anon_sym_bit_DASHxor2] = ACTIONS(1585), + [anon_sym_bit_DASHor2] = ACTIONS(1585), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [aux_sym__immediate_decimal_token1] = ACTIONS(2914), + [aux_sym__immediate_decimal_token2] = ACTIONS(2916), + [sym_filesize_unit] = ACTIONS(1585), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1585), + [anon_sym_out_GT_GT] = ACTIONS(1585), + [anon_sym_e_GT_GT] = ACTIONS(1585), + [anon_sym_o_GT_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1585), [anon_sym_POUND] = ACTIONS(3), }, [809] = { + [sym_expr_parenthesized] = STATE(1579), + [sym_val_range] = STATE(1899), + [sym__val_range] = STATE(7884), + [sym__val_range_with_end] = STATE(7572), + [sym__value] = STATE(1899), + [sym_val_nothing] = STATE(1876), + [sym_val_bool] = STATE(1715), + [sym_val_variable] = STATE(1577), + [sym_val_number] = STATE(1876), + [sym__val_number_decimal] = STATE(1344), + [sym__val_number] = STATE(1949), + [sym_val_duration] = STATE(1876), + [sym_val_filesize] = STATE(1876), + [sym_val_binary] = STATE(1876), + [sym_val_string] = STATE(1876), + [sym__raw_str] = STATE(1965), + [sym__str_double_quotes] = STATE(1965), + [sym_val_interpolated] = STATE(1876), + [sym__inter_single_quotes] = STATE(1935), + [sym__inter_double_quotes] = STATE(1936), + [sym_val_list] = STATE(1876), + [sym_val_record] = STATE(1876), + [sym_val_table] = STATE(1876), + [sym_val_closure] = STATE(1876), + [sym_short_flag] = STATE(1899), + [sym_long_flag] = STATE(1899), + [sym_unquoted] = STATE(1687), + [sym__unquoted_with_expr] = STATE(1913), + [sym__unquoted_anonymous_prefix] = STATE(7378), [sym_comment] = STATE(809), - [anon_sym_STAR_STAR] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_SLASH] = ACTIONS(1621), - [anon_sym_mod] = ACTIONS(1623), - [anon_sym_SLASH_SLASH] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_bit_DASHshl] = ACTIONS(1623), - [anon_sym_bit_DASHshr] = ACTIONS(1623), - [anon_sym_EQ_TILDE] = ACTIONS(1623), - [anon_sym_BANG_TILDE] = ACTIONS(1623), - [anon_sym_bit_DASHand] = ACTIONS(1623), - [anon_sym_bit_DASHxor] = ACTIONS(1623), - [anon_sym_bit_DASHor] = ACTIONS(1623), - [anon_sym_and] = ACTIONS(1623), - [anon_sym_xor] = ACTIONS(1623), - [anon_sym_or] = ACTIONS(1623), - [anon_sym_in] = ACTIONS(1623), - [anon_sym_not_DASHin] = ACTIONS(1623), - [anon_sym_starts_DASHwith] = ACTIONS(1623), - [anon_sym_ends_DASHwith] = ACTIONS(1623), - [anon_sym_EQ_EQ] = ACTIONS(1623), - [anon_sym_BANG_EQ] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1621), - [anon_sym_LT_EQ] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1621), - [anon_sym_GT_EQ] = ACTIONS(1623), - [aux_sym_cmd_identifier_token41] = ACTIONS(1621), - [sym__newline] = ACTIONS(1621), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_PIPE] = ACTIONS(1621), - [anon_sym_err_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_GT_PIPE] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), - [anon_sym_GT2] = ACTIONS(1621), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_in2] = ACTIONS(1621), - [anon_sym_STAR2] = ACTIONS(1621), - [anon_sym_and2] = ACTIONS(1621), - [anon_sym_xor2] = ACTIONS(1621), - [anon_sym_or2] = ACTIONS(1621), - [anon_sym_not_DASHin2] = ACTIONS(1621), - [anon_sym_starts_DASHwith2] = ACTIONS(1621), - [anon_sym_ends_DASHwith2] = ACTIONS(1621), - [anon_sym_EQ_EQ2] = ACTIONS(1621), - [anon_sym_BANG_EQ2] = ACTIONS(1621), - [anon_sym_LT2] = ACTIONS(1621), - [anon_sym_LT_EQ2] = ACTIONS(1621), - [anon_sym_GT_EQ2] = ACTIONS(1621), - [anon_sym_EQ_TILDE2] = ACTIONS(1621), - [anon_sym_BANG_TILDE2] = ACTIONS(1621), - [anon_sym_STAR_STAR2] = ACTIONS(1621), - [anon_sym_PLUS_PLUS2] = ACTIONS(1621), - [anon_sym_SLASH2] = ACTIONS(1621), - [anon_sym_mod2] = ACTIONS(1621), - [anon_sym_SLASH_SLASH2] = ACTIONS(1621), - [anon_sym_PLUS2] = ACTIONS(1621), - [anon_sym_bit_DASHshl2] = ACTIONS(1621), - [anon_sym_bit_DASHshr2] = ACTIONS(1621), - [anon_sym_bit_DASHand2] = ACTIONS(1621), - [anon_sym_bit_DASHxor2] = ACTIONS(1621), - [anon_sym_bit_DASHor2] = ACTIONS(1621), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [aux_sym__immediate_decimal_token1] = ACTIONS(3023), - [aux_sym__immediate_decimal_token2] = ACTIONS(3025), - [sym_filesize_unit] = ACTIONS(1621), - [sym_duration_unit] = ACTIONS(1623), - [anon_sym_err_GT] = ACTIONS(1621), - [anon_sym_out_GT] = ACTIONS(1621), - [anon_sym_e_GT] = ACTIONS(1621), - [anon_sym_o_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT] = ACTIONS(1621), - [anon_sym_err_GT_GT] = ACTIONS(1621), - [anon_sym_out_GT_GT] = ACTIONS(1621), - [anon_sym_e_GT_GT] = ACTIONS(1621), - [anon_sym_o_GT_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1621), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(809), + [ts_builtin_sym_end] = ACTIONS(2711), + [sym__newline] = ACTIONS(2711), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_PIPE] = ACTIONS(2711), + [anon_sym_err_GT_PIPE] = ACTIONS(2711), + [anon_sym_out_GT_PIPE] = ACTIONS(2711), + [anon_sym_e_GT_PIPE] = ACTIONS(2711), + [anon_sym_o_GT_PIPE] = ACTIONS(2711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2918), + [anon_sym_LPAREN] = ACTIONS(2921), + [anon_sym_DOLLAR] = ACTIONS(2924), + [anon_sym_DASH_DASH] = ACTIONS(2927), + [anon_sym_DASH2] = ACTIONS(2930), + [anon_sym_LBRACE] = ACTIONS(2933), + [anon_sym_DOT_DOT] = ACTIONS(2936), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2939), + [anon_sym_DOT_DOT_LT] = ACTIONS(2939), + [anon_sym_null] = ACTIONS(2942), + [anon_sym_true] = ACTIONS(2945), + [anon_sym_false] = ACTIONS(2945), + [aux_sym__val_number_decimal_token1] = ACTIONS(2948), + [aux_sym__val_number_decimal_token2] = ACTIONS(2951), + [aux_sym__val_number_decimal_token3] = ACTIONS(2954), + [aux_sym__val_number_decimal_token4] = ACTIONS(2957), + [aux_sym__val_number_token1] = ACTIONS(2960), + [aux_sym__val_number_token2] = ACTIONS(2960), + [aux_sym__val_number_token3] = ACTIONS(2960), + [aux_sym__val_number_token4] = ACTIONS(2963), + [aux_sym__val_number_token5] = ACTIONS(2963), + [aux_sym__val_number_token6] = ACTIONS(2963), + [anon_sym_0b] = ACTIONS(2966), + [anon_sym_0o] = ACTIONS(2969), + [anon_sym_0x] = ACTIONS(2969), + [sym_val_date] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(2975), + [sym__str_single_quotes] = ACTIONS(2978), + [sym__str_back_ticks] = ACTIONS(2978), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2984), + [anon_sym_err_GT] = ACTIONS(2782), + [anon_sym_out_GT] = ACTIONS(2782), + [anon_sym_e_GT] = ACTIONS(2782), + [anon_sym_o_GT] = ACTIONS(2782), + [anon_sym_err_PLUSout_GT] = ACTIONS(2782), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), + [anon_sym_o_PLUSe_GT] = ACTIONS(2782), + [anon_sym_e_PLUSo_GT] = ACTIONS(2782), + [anon_sym_err_GT_GT] = ACTIONS(2785), + [anon_sym_out_GT_GT] = ACTIONS(2785), + [anon_sym_e_GT_GT] = ACTIONS(2785), + [anon_sym_o_GT_GT] = ACTIONS(2785), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2785), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2785), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2785), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2785), + [aux_sym_unquoted_token1] = ACTIONS(2987), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2990), }, [810] = { + [sym_expr_parenthesized] = STATE(1579), + [sym_val_range] = STATE(1899), + [sym__val_range] = STATE(7884), + [sym__val_range_with_end] = STATE(7572), + [sym__value] = STATE(1899), + [sym_val_nothing] = STATE(1876), + [sym_val_bool] = STATE(1715), + [sym_val_variable] = STATE(1577), + [sym_val_number] = STATE(1876), + [sym__val_number_decimal] = STATE(1344), + [sym__val_number] = STATE(1949), + [sym_val_duration] = STATE(1876), + [sym_val_filesize] = STATE(1876), + [sym_val_binary] = STATE(1876), + [sym_val_string] = STATE(1876), + [sym__raw_str] = STATE(1965), + [sym__str_double_quotes] = STATE(1965), + [sym_val_interpolated] = STATE(1876), + [sym__inter_single_quotes] = STATE(1935), + [sym__inter_double_quotes] = STATE(1936), + [sym_val_list] = STATE(1876), + [sym_val_record] = STATE(1876), + [sym_val_table] = STATE(1876), + [sym_val_closure] = STATE(1876), + [sym_short_flag] = STATE(1899), + [sym_long_flag] = STATE(1899), + [sym_unquoted] = STATE(1687), + [sym__unquoted_with_expr] = STATE(1913), + [sym__unquoted_anonymous_prefix] = STATE(7378), [sym_comment] = STATE(810), - [anon_sym_STAR_STAR] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_SLASH] = ACTIONS(1621), - [anon_sym_mod] = ACTIONS(1623), - [anon_sym_SLASH_SLASH] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_bit_DASHshl] = ACTIONS(1623), - [anon_sym_bit_DASHshr] = ACTIONS(1623), - [anon_sym_EQ_TILDE] = ACTIONS(1623), - [anon_sym_BANG_TILDE] = ACTIONS(1623), - [anon_sym_bit_DASHand] = ACTIONS(1623), - [anon_sym_bit_DASHxor] = ACTIONS(1623), - [anon_sym_bit_DASHor] = ACTIONS(1623), - [anon_sym_and] = ACTIONS(1623), - [anon_sym_xor] = ACTIONS(1623), - [anon_sym_or] = ACTIONS(1623), - [anon_sym_in] = ACTIONS(1623), - [anon_sym_not_DASHin] = ACTIONS(1623), - [anon_sym_starts_DASHwith] = ACTIONS(1623), - [anon_sym_ends_DASHwith] = ACTIONS(1623), - [anon_sym_EQ_EQ] = ACTIONS(1623), - [anon_sym_BANG_EQ] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1621), - [anon_sym_LT_EQ] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1621), - [anon_sym_GT_EQ] = ACTIONS(1623), - [aux_sym_cmd_identifier_token41] = ACTIONS(1621), - [sym__newline] = ACTIONS(1621), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_PIPE] = ACTIONS(1621), - [anon_sym_err_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_GT_PIPE] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), - [anon_sym_GT2] = ACTIONS(1621), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_in2] = ACTIONS(1621), - [anon_sym_RBRACE] = ACTIONS(1621), - [anon_sym_STAR2] = ACTIONS(1621), - [anon_sym_and2] = ACTIONS(1621), - [anon_sym_xor2] = ACTIONS(1621), - [anon_sym_or2] = ACTIONS(1621), - [anon_sym_not_DASHin2] = ACTIONS(1621), - [anon_sym_starts_DASHwith2] = ACTIONS(1621), - [anon_sym_ends_DASHwith2] = ACTIONS(1621), - [anon_sym_EQ_EQ2] = ACTIONS(1621), - [anon_sym_BANG_EQ2] = ACTIONS(1621), - [anon_sym_LT2] = ACTIONS(1621), - [anon_sym_LT_EQ2] = ACTIONS(1621), - [anon_sym_GT_EQ2] = ACTIONS(1621), - [anon_sym_EQ_TILDE2] = ACTIONS(1621), - [anon_sym_BANG_TILDE2] = ACTIONS(1621), - [anon_sym_STAR_STAR2] = ACTIONS(1621), - [anon_sym_PLUS_PLUS2] = ACTIONS(1621), - [anon_sym_SLASH2] = ACTIONS(1621), - [anon_sym_mod2] = ACTIONS(1621), - [anon_sym_SLASH_SLASH2] = ACTIONS(1621), - [anon_sym_PLUS2] = ACTIONS(1621), - [anon_sym_bit_DASHshl2] = ACTIONS(1621), - [anon_sym_bit_DASHshr2] = ACTIONS(1621), - [anon_sym_bit_DASHand2] = ACTIONS(1621), - [anon_sym_bit_DASHxor2] = ACTIONS(1621), - [anon_sym_bit_DASHor2] = ACTIONS(1621), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [sym_filesize_unit] = ACTIONS(1621), - [sym_duration_unit] = ACTIONS(1623), - [aux_sym_record_entry_token1] = ACTIONS(1621), - [anon_sym_err_GT] = ACTIONS(1621), - [anon_sym_out_GT] = ACTIONS(1621), - [anon_sym_e_GT] = ACTIONS(1621), - [anon_sym_o_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT] = ACTIONS(1621), - [anon_sym_err_GT_GT] = ACTIONS(1621), - [anon_sym_out_GT_GT] = ACTIONS(1621), - [anon_sym_e_GT_GT] = ACTIONS(1621), - [anon_sym_o_GT_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1621), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(809), + [ts_builtin_sym_end] = ACTIONS(2687), + [sym__newline] = ACTIONS(2687), + [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_PIPE] = ACTIONS(2687), + [anon_sym_err_GT_PIPE] = ACTIONS(2687), + [anon_sym_out_GT_PIPE] = ACTIONS(2687), + [anon_sym_e_GT_PIPE] = ACTIONS(2687), + [anon_sym_o_GT_PIPE] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DASH_DASH] = ACTIONS(2999), + [anon_sym_DASH2] = ACTIONS(3001), + [anon_sym_LBRACE] = ACTIONS(3003), + [anon_sym_DOT_DOT] = ACTIONS(3005), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3007), + [anon_sym_DOT_DOT_LT] = ACTIONS(3007), + [anon_sym_null] = ACTIONS(3009), + [anon_sym_true] = ACTIONS(3011), + [anon_sym_false] = ACTIONS(3011), + [aux_sym__val_number_decimal_token1] = ACTIONS(3013), + [aux_sym__val_number_decimal_token2] = ACTIONS(3015), + [aux_sym__val_number_decimal_token3] = ACTIONS(3017), + [aux_sym__val_number_decimal_token4] = ACTIONS(3019), + [aux_sym__val_number_token1] = ACTIONS(3021), + [aux_sym__val_number_token2] = ACTIONS(3021), + [aux_sym__val_number_token3] = ACTIONS(3021), + [aux_sym__val_number_token4] = ACTIONS(3023), + [aux_sym__val_number_token5] = ACTIONS(3023), + [aux_sym__val_number_token6] = ACTIONS(3023), + [anon_sym_0b] = ACTIONS(3025), + [anon_sym_0o] = ACTIONS(3027), + [anon_sym_0x] = ACTIONS(3027), + [sym_val_date] = ACTIONS(3029), + [anon_sym_DQUOTE] = ACTIONS(3031), + [sym__str_single_quotes] = ACTIONS(3033), + [sym__str_back_ticks] = ACTIONS(3033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3035), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3039), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3041), }, [811] = { [sym_comment] = STATE(811), - [ts_builtin_sym_end] = ACTIONS(1609), - [anon_sym_STAR_STAR] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_SLASH_SLASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_bit_DASHshl] = ACTIONS(1609), - [anon_sym_bit_DASHshr] = ACTIONS(1609), - [anon_sym_EQ_TILDE] = ACTIONS(1609), - [anon_sym_BANG_TILDE] = ACTIONS(1609), - [anon_sym_bit_DASHand] = ACTIONS(1609), - [anon_sym_bit_DASHxor] = ACTIONS(1609), - [anon_sym_bit_DASHor] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(1609), - [anon_sym_not_DASHin] = ACTIONS(1609), - [anon_sym_starts_DASHwith] = ACTIONS(1609), - [anon_sym_ends_DASHwith] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1609), - [anon_sym_BANG_EQ] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1609), - [aux_sym_cmd_identifier_token41] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(2920), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1607), - [anon_sym_out_GT_GT] = ACTIONS(1607), - [anon_sym_e_GT_GT] = ACTIONS(1607), - [anon_sym_o_GT_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_bit_DASHshl] = ACTIONS(1575), + [anon_sym_bit_DASHshr] = ACTIONS(1575), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_BANG_TILDE] = ACTIONS(1575), + [anon_sym_bit_DASHand] = ACTIONS(1575), + [anon_sym_bit_DASHxor] = ACTIONS(1575), + [anon_sym_bit_DASHor] = ACTIONS(1575), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_not_DASHin] = ACTIONS(1575), + [anon_sym_starts_DASHwith] = ACTIONS(1575), + [anon_sym_ends_DASHwith] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1575), + [aux_sym_cmd_identifier_token41] = ACTIONS(1573), + [sym__newline] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_err_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_GT_PIPE] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_RBRACE] = ACTIONS(1573), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1573), + [anon_sym_xor2] = ACTIONS(1573), + [anon_sym_or2] = ACTIONS(1573), + [anon_sym_not_DASHin2] = ACTIONS(1573), + [anon_sym_starts_DASHwith2] = ACTIONS(1573), + [anon_sym_ends_DASHwith2] = ACTIONS(1573), + [anon_sym_EQ_EQ2] = ACTIONS(1573), + [anon_sym_BANG_EQ2] = ACTIONS(1573), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1573), + [anon_sym_GT_EQ2] = ACTIONS(1573), + [anon_sym_EQ_TILDE2] = ACTIONS(1573), + [anon_sym_BANG_TILDE2] = ACTIONS(1573), + [anon_sym_STAR_STAR2] = ACTIONS(1573), + [anon_sym_PLUS_PLUS2] = ACTIONS(1573), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1573), + [anon_sym_SLASH_SLASH2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1573), + [anon_sym_bit_DASHshr2] = ACTIONS(1573), + [anon_sym_bit_DASHand2] = ACTIONS(1573), + [anon_sym_bit_DASHxor2] = ACTIONS(1573), + [anon_sym_bit_DASHor2] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(2681), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1573), + [anon_sym_out_GT_GT] = ACTIONS(1573), + [anon_sym_e_GT_GT] = ACTIONS(1573), + [anon_sym_o_GT_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), [anon_sym_POUND] = ACTIONS(3), }, [812] = { + [sym_expr_parenthesized] = STATE(1579), + [sym_val_range] = STATE(1899), + [sym__val_range] = STATE(7884), + [sym__val_range_with_end] = STATE(7572), + [sym__value] = STATE(1899), + [sym_val_nothing] = STATE(1876), + [sym_val_bool] = STATE(1715), + [sym_val_variable] = STATE(1577), + [sym_val_number] = STATE(1876), + [sym__val_number_decimal] = STATE(1344), + [sym__val_number] = STATE(1949), + [sym_val_duration] = STATE(1876), + [sym_val_filesize] = STATE(1876), + [sym_val_binary] = STATE(1876), + [sym_val_string] = STATE(1876), + [sym__raw_str] = STATE(1965), + [sym__str_double_quotes] = STATE(1965), + [sym_val_interpolated] = STATE(1876), + [sym__inter_single_quotes] = STATE(1935), + [sym__inter_double_quotes] = STATE(1936), + [sym_val_list] = STATE(1876), + [sym_val_record] = STATE(1876), + [sym_val_table] = STATE(1876), + [sym_val_closure] = STATE(1876), + [sym_short_flag] = STATE(1899), + [sym_long_flag] = STATE(1899), + [sym_unquoted] = STATE(1687), + [sym__unquoted_with_expr] = STATE(1913), + [sym__unquoted_anonymous_prefix] = STATE(7378), [sym_comment] = STATE(812), - [anon_sym_STAR_STAR] = ACTIONS(1675), - [anon_sym_PLUS_PLUS] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1673), - [anon_sym_mod] = ACTIONS(1675), - [anon_sym_SLASH_SLASH] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_bit_DASHshl] = ACTIONS(1675), - [anon_sym_bit_DASHshr] = ACTIONS(1675), - [anon_sym_EQ_TILDE] = ACTIONS(1675), - [anon_sym_BANG_TILDE] = ACTIONS(1675), - [anon_sym_bit_DASHand] = ACTIONS(1675), - [anon_sym_bit_DASHxor] = ACTIONS(1675), - [anon_sym_bit_DASHor] = ACTIONS(1675), - [anon_sym_and] = ACTIONS(1675), - [anon_sym_xor] = ACTIONS(1675), - [anon_sym_or] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [anon_sym_not_DASHin] = ACTIONS(1675), - [anon_sym_starts_DASHwith] = ACTIONS(1675), - [anon_sym_ends_DASHwith] = ACTIONS(1675), - [anon_sym_EQ_EQ] = ACTIONS(1675), - [anon_sym_BANG_EQ] = ACTIONS(1675), - [anon_sym_LT] = ACTIONS(1673), - [anon_sym_LT_EQ] = ACTIONS(1675), - [anon_sym_GT] = ACTIONS(1673), - [anon_sym_GT_EQ] = ACTIONS(1675), - [aux_sym_cmd_identifier_token41] = ACTIONS(1673), - [sym__newline] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1673), - [anon_sym_err_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_GT_PIPE] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_in2] = ACTIONS(1673), - [anon_sym_RBRACE] = ACTIONS(1673), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1673), - [anon_sym_xor2] = ACTIONS(1673), - [anon_sym_or2] = ACTIONS(1673), - [anon_sym_not_DASHin2] = ACTIONS(1673), - [anon_sym_starts_DASHwith2] = ACTIONS(1673), - [anon_sym_ends_DASHwith2] = ACTIONS(1673), - [anon_sym_EQ_EQ2] = ACTIONS(1673), - [anon_sym_BANG_EQ2] = ACTIONS(1673), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1673), - [anon_sym_GT_EQ2] = ACTIONS(1673), - [anon_sym_EQ_TILDE2] = ACTIONS(1673), - [anon_sym_BANG_TILDE2] = ACTIONS(1673), - [anon_sym_STAR_STAR2] = ACTIONS(1673), - [anon_sym_PLUS_PLUS2] = ACTIONS(1673), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1673), - [anon_sym_SLASH_SLASH2] = ACTIONS(1673), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1673), - [anon_sym_bit_DASHshr2] = ACTIONS(1673), - [anon_sym_bit_DASHand2] = ACTIONS(1673), - [anon_sym_bit_DASHxor2] = ACTIONS(1673), - [anon_sym_bit_DASHor2] = ACTIONS(1673), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [sym_filesize_unit] = ACTIONS(1673), - [sym_duration_unit] = ACTIONS(1675), - [aux_sym_record_entry_token1] = ACTIONS(1673), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1673), - [anon_sym_out_GT_GT] = ACTIONS(1673), - [anon_sym_e_GT_GT] = ACTIONS(1673), - [anon_sym_o_GT_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(809), + [ts_builtin_sym_end] = ACTIONS(2623), + [sym__newline] = ACTIONS(2623), + [anon_sym_SEMI] = ACTIONS(2623), + [anon_sym_PIPE] = ACTIONS(2623), + [anon_sym_err_GT_PIPE] = ACTIONS(2623), + [anon_sym_out_GT_PIPE] = ACTIONS(2623), + [anon_sym_e_GT_PIPE] = ACTIONS(2623), + [anon_sym_o_GT_PIPE] = ACTIONS(2623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DASH_DASH] = ACTIONS(2999), + [anon_sym_DASH2] = ACTIONS(3001), + [anon_sym_LBRACE] = ACTIONS(3003), + [anon_sym_DOT_DOT] = ACTIONS(3005), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3007), + [anon_sym_DOT_DOT_LT] = ACTIONS(3007), + [anon_sym_null] = ACTIONS(3009), + [anon_sym_true] = ACTIONS(3011), + [anon_sym_false] = ACTIONS(3011), + [aux_sym__val_number_decimal_token1] = ACTIONS(3013), + [aux_sym__val_number_decimal_token2] = ACTIONS(3015), + [aux_sym__val_number_decimal_token3] = ACTIONS(3017), + [aux_sym__val_number_decimal_token4] = ACTIONS(3019), + [aux_sym__val_number_token1] = ACTIONS(3021), + [aux_sym__val_number_token2] = ACTIONS(3021), + [aux_sym__val_number_token3] = ACTIONS(3021), + [aux_sym__val_number_token4] = ACTIONS(3023), + [aux_sym__val_number_token5] = ACTIONS(3023), + [aux_sym__val_number_token6] = ACTIONS(3023), + [anon_sym_0b] = ACTIONS(3025), + [anon_sym_0o] = ACTIONS(3027), + [anon_sym_0x] = ACTIONS(3027), + [sym_val_date] = ACTIONS(3029), + [anon_sym_DQUOTE] = ACTIONS(3031), + [sym__str_single_quotes] = ACTIONS(3033), + [sym__str_back_ticks] = ACTIONS(3033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3035), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3039), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3041), }, [813] = { + [sym_expr_parenthesized] = STATE(1579), + [sym_val_range] = STATE(1899), + [sym__val_range] = STATE(7884), + [sym__val_range_with_end] = STATE(7572), + [sym__value] = STATE(1899), + [sym_val_nothing] = STATE(1876), + [sym_val_bool] = STATE(1715), + [sym_val_variable] = STATE(1577), + [sym_val_number] = STATE(1876), + [sym__val_number_decimal] = STATE(1344), + [sym__val_number] = STATE(1949), + [sym_val_duration] = STATE(1876), + [sym_val_filesize] = STATE(1876), + [sym_val_binary] = STATE(1876), + [sym_val_string] = STATE(1876), + [sym__raw_str] = STATE(1965), + [sym__str_double_quotes] = STATE(1965), + [sym_val_interpolated] = STATE(1876), + [sym__inter_single_quotes] = STATE(1935), + [sym__inter_double_quotes] = STATE(1936), + [sym_val_list] = STATE(1876), + [sym_val_record] = STATE(1876), + [sym_val_table] = STATE(1876), + [sym_val_closure] = STATE(1876), + [sym_short_flag] = STATE(1899), + [sym_long_flag] = STATE(1899), + [sym_unquoted] = STATE(1687), + [sym__unquoted_with_expr] = STATE(1913), + [sym__unquoted_anonymous_prefix] = STATE(7378), [sym_comment] = STATE(813), - [anon_sym_STAR_STAR] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_SLASH_SLASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_bit_DASHshl] = ACTIONS(1609), - [anon_sym_bit_DASHshr] = ACTIONS(1609), - [anon_sym_EQ_TILDE] = ACTIONS(1609), - [anon_sym_BANG_TILDE] = ACTIONS(1609), - [anon_sym_bit_DASHand] = ACTIONS(1609), - [anon_sym_bit_DASHxor] = ACTIONS(1609), - [anon_sym_bit_DASHor] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(1609), - [anon_sym_not_DASHin] = ACTIONS(1609), - [anon_sym_starts_DASHwith] = ACTIONS(1609), - [anon_sym_ends_DASHwith] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1609), - [anon_sym_BANG_EQ] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1609), - [aux_sym_cmd_identifier_token41] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT] = ACTIONS(3027), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(3029), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1607), - [anon_sym_out_GT_GT] = ACTIONS(1607), - [anon_sym_e_GT_GT] = ACTIONS(1607), - [anon_sym_o_GT_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(810), + [ts_builtin_sym_end] = ACTIONS(2623), + [sym__newline] = ACTIONS(2623), + [anon_sym_SEMI] = ACTIONS(2623), + [anon_sym_PIPE] = ACTIONS(2623), + [anon_sym_err_GT_PIPE] = ACTIONS(2623), + [anon_sym_out_GT_PIPE] = ACTIONS(2623), + [anon_sym_e_GT_PIPE] = ACTIONS(2623), + [anon_sym_o_GT_PIPE] = ACTIONS(2623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DASH_DASH] = ACTIONS(2999), + [anon_sym_DASH2] = ACTIONS(3001), + [anon_sym_LBRACE] = ACTIONS(3003), + [anon_sym_DOT_DOT] = ACTIONS(3005), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3007), + [anon_sym_DOT_DOT_LT] = ACTIONS(3007), + [anon_sym_null] = ACTIONS(3009), + [anon_sym_true] = ACTIONS(3011), + [anon_sym_false] = ACTIONS(3011), + [aux_sym__val_number_decimal_token1] = ACTIONS(3013), + [aux_sym__val_number_decimal_token2] = ACTIONS(3015), + [aux_sym__val_number_decimal_token3] = ACTIONS(3017), + [aux_sym__val_number_decimal_token4] = ACTIONS(3019), + [aux_sym__val_number_token1] = ACTIONS(3021), + [aux_sym__val_number_token2] = ACTIONS(3021), + [aux_sym__val_number_token3] = ACTIONS(3021), + [aux_sym__val_number_token4] = ACTIONS(3023), + [aux_sym__val_number_token5] = ACTIONS(3023), + [aux_sym__val_number_token6] = ACTIONS(3023), + [anon_sym_0b] = ACTIONS(3025), + [anon_sym_0o] = ACTIONS(3027), + [anon_sym_0x] = ACTIONS(3027), + [sym_val_date] = ACTIONS(3029), + [anon_sym_DQUOTE] = ACTIONS(3031), + [sym__str_single_quotes] = ACTIONS(3033), + [sym__str_back_ticks] = ACTIONS(3033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3035), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3039), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3041), }, [814] = { [sym_comment] = STATE(814), - [anon_sym_STAR_STAR] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1763), - [anon_sym_SLASH] = ACTIONS(1763), - [anon_sym_mod] = ACTIONS(1765), - [anon_sym_SLASH_SLASH] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_bit_DASHshl] = ACTIONS(1765), - [anon_sym_bit_DASHshr] = ACTIONS(1765), - [anon_sym_EQ_TILDE] = ACTIONS(1765), - [anon_sym_BANG_TILDE] = ACTIONS(1765), - [anon_sym_bit_DASHand] = ACTIONS(1765), - [anon_sym_bit_DASHxor] = ACTIONS(1765), - [anon_sym_bit_DASHor] = ACTIONS(1765), - [anon_sym_and] = ACTIONS(1765), - [anon_sym_xor] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), - [anon_sym_in] = ACTIONS(1765), - [anon_sym_not_DASHin] = ACTIONS(1765), - [anon_sym_starts_DASHwith] = ACTIONS(1765), - [anon_sym_ends_DASHwith] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1765), - [anon_sym_BANG_EQ] = ACTIONS(1765), - [anon_sym_LT] = ACTIONS(1763), - [anon_sym_LT_EQ] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1765), - [aux_sym_cmd_identifier_token41] = ACTIONS(1763), - [sym__newline] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_err_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_GT_PIPE] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), - [anon_sym_GT2] = ACTIONS(1763), - [anon_sym_DASH2] = ACTIONS(1763), - [anon_sym_in2] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_STAR2] = ACTIONS(1763), - [anon_sym_and2] = ACTIONS(1763), - [anon_sym_xor2] = ACTIONS(1763), - [anon_sym_or2] = ACTIONS(1763), - [anon_sym_not_DASHin2] = ACTIONS(1763), - [anon_sym_starts_DASHwith2] = ACTIONS(1763), - [anon_sym_ends_DASHwith2] = ACTIONS(1763), - [anon_sym_EQ_EQ2] = ACTIONS(1763), - [anon_sym_BANG_EQ2] = ACTIONS(1763), - [anon_sym_LT2] = ACTIONS(1763), - [anon_sym_LT_EQ2] = ACTIONS(1763), - [anon_sym_GT_EQ2] = ACTIONS(1763), - [anon_sym_EQ_TILDE2] = ACTIONS(1763), - [anon_sym_BANG_TILDE2] = ACTIONS(1763), - [anon_sym_STAR_STAR2] = ACTIONS(1763), - [anon_sym_PLUS_PLUS2] = ACTIONS(1763), - [anon_sym_SLASH2] = ACTIONS(1763), - [anon_sym_mod2] = ACTIONS(1763), - [anon_sym_SLASH_SLASH2] = ACTIONS(1763), - [anon_sym_PLUS2] = ACTIONS(1763), - [anon_sym_bit_DASHshl2] = ACTIONS(1763), - [anon_sym_bit_DASHshr2] = ACTIONS(1763), - [anon_sym_bit_DASHand2] = ACTIONS(1763), - [anon_sym_bit_DASHxor2] = ACTIONS(1763), - [anon_sym_bit_DASHor2] = ACTIONS(1763), - [anon_sym_DOT_DOT2] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), - [sym_filesize_unit] = ACTIONS(1763), - [sym_duration_unit] = ACTIONS(1765), - [aux_sym_record_entry_token1] = ACTIONS(1763), - [anon_sym_err_GT] = ACTIONS(1763), - [anon_sym_out_GT] = ACTIONS(1763), - [anon_sym_e_GT] = ACTIONS(1763), - [anon_sym_o_GT] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT] = ACTIONS(1763), - [anon_sym_err_GT_GT] = ACTIONS(1763), - [anon_sym_out_GT_GT] = ACTIONS(1763), - [anon_sym_e_GT_GT] = ACTIONS(1763), - [anon_sym_o_GT_GT] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1763), + [anon_sym_STAR_STAR] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_mod] = ACTIONS(1587), + [anon_sym_SLASH_SLASH] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_bit_DASHshl] = ACTIONS(1587), + [anon_sym_bit_DASHshr] = ACTIONS(1587), + [anon_sym_EQ_TILDE] = ACTIONS(1587), + [anon_sym_BANG_TILDE] = ACTIONS(1587), + [anon_sym_bit_DASHand] = ACTIONS(1587), + [anon_sym_bit_DASHxor] = ACTIONS(1587), + [anon_sym_bit_DASHor] = ACTIONS(1587), + [anon_sym_and] = ACTIONS(1587), + [anon_sym_xor] = ACTIONS(1587), + [anon_sym_or] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(1587), + [anon_sym_not_DASHin] = ACTIONS(1587), + [anon_sym_starts_DASHwith] = ACTIONS(1587), + [anon_sym_ends_DASHwith] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(1587), + [anon_sym_BANG_EQ] = ACTIONS(1587), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_LT_EQ] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1587), + [aux_sym_cmd_identifier_token41] = ACTIONS(1585), + [sym__newline] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_err_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_GT_PIPE] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), + [anon_sym_GT2] = ACTIONS(1585), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_in2] = ACTIONS(1585), + [anon_sym_RBRACE] = ACTIONS(1585), + [anon_sym_STAR2] = ACTIONS(1585), + [anon_sym_and2] = ACTIONS(1585), + [anon_sym_xor2] = ACTIONS(1585), + [anon_sym_or2] = ACTIONS(1585), + [anon_sym_not_DASHin2] = ACTIONS(1585), + [anon_sym_starts_DASHwith2] = ACTIONS(1585), + [anon_sym_ends_DASHwith2] = ACTIONS(1585), + [anon_sym_EQ_EQ2] = ACTIONS(1585), + [anon_sym_BANG_EQ2] = ACTIONS(1585), + [anon_sym_LT2] = ACTIONS(1585), + [anon_sym_LT_EQ2] = ACTIONS(1585), + [anon_sym_GT_EQ2] = ACTIONS(1585), + [anon_sym_EQ_TILDE2] = ACTIONS(1585), + [anon_sym_BANG_TILDE2] = ACTIONS(1585), + [anon_sym_STAR_STAR2] = ACTIONS(1585), + [anon_sym_PLUS_PLUS2] = ACTIONS(1585), + [anon_sym_SLASH2] = ACTIONS(1585), + [anon_sym_mod2] = ACTIONS(1585), + [anon_sym_SLASH_SLASH2] = ACTIONS(1585), + [anon_sym_PLUS2] = ACTIONS(1585), + [anon_sym_bit_DASHshl2] = ACTIONS(1585), + [anon_sym_bit_DASHshr2] = ACTIONS(1585), + [anon_sym_bit_DASHand2] = ACTIONS(1585), + [anon_sym_bit_DASHxor2] = ACTIONS(1585), + [anon_sym_bit_DASHor2] = ACTIONS(1585), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [sym_filesize_unit] = ACTIONS(1585), + [sym_duration_unit] = ACTIONS(1587), + [aux_sym_record_entry_token1] = ACTIONS(1585), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1585), + [anon_sym_out_GT_GT] = ACTIONS(1585), + [anon_sym_e_GT_GT] = ACTIONS(1585), + [anon_sym_o_GT_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1585), [anon_sym_POUND] = ACTIONS(3), }, [815] = { [sym_comment] = STATE(815), - [anon_sym_STAR_STAR] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_SLASH_SLASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_bit_DASHshl] = ACTIONS(1609), - [anon_sym_bit_DASHshr] = ACTIONS(1609), - [anon_sym_EQ_TILDE] = ACTIONS(1609), - [anon_sym_BANG_TILDE] = ACTIONS(1609), - [anon_sym_bit_DASHand] = ACTIONS(1609), - [anon_sym_bit_DASHxor] = ACTIONS(1609), - [anon_sym_bit_DASHor] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(1609), - [anon_sym_not_DASHin] = ACTIONS(1609), - [anon_sym_starts_DASHwith] = ACTIONS(1609), - [anon_sym_ends_DASHwith] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1609), - [anon_sym_BANG_EQ] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1609), - [aux_sym_cmd_identifier_token41] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_RBRACE] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), - [aux_sym_record_entry_token1] = ACTIONS(1607), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1607), - [anon_sym_out_GT_GT] = ACTIONS(1607), - [anon_sym_e_GT_GT] = ACTIONS(1607), - [anon_sym_o_GT_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [anon_sym_STAR_STAR] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1681), + [anon_sym_SLASH] = ACTIONS(1681), + [anon_sym_mod] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_bit_DASHshl] = ACTIONS(1683), + [anon_sym_bit_DASHshr] = ACTIONS(1683), + [anon_sym_EQ_TILDE] = ACTIONS(1683), + [anon_sym_BANG_TILDE] = ACTIONS(1683), + [anon_sym_bit_DASHand] = ACTIONS(1683), + [anon_sym_bit_DASHxor] = ACTIONS(1683), + [anon_sym_bit_DASHor] = ACTIONS(1683), + [anon_sym_and] = ACTIONS(1683), + [anon_sym_xor] = ACTIONS(1683), + [anon_sym_or] = ACTIONS(1683), + [anon_sym_in] = ACTIONS(1683), + [anon_sym_not_DASHin] = ACTIONS(1683), + [anon_sym_starts_DASHwith] = ACTIONS(1683), + [anon_sym_ends_DASHwith] = ACTIONS(1683), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(1683), + [aux_sym_cmd_identifier_token41] = ACTIONS(1681), + [sym__newline] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_err_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_GT_PIPE] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), + [anon_sym_GT2] = ACTIONS(1681), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_in2] = ACTIONS(1681), + [anon_sym_RBRACE] = ACTIONS(1681), + [anon_sym_STAR2] = ACTIONS(1681), + [anon_sym_and2] = ACTIONS(1681), + [anon_sym_xor2] = ACTIONS(1681), + [anon_sym_or2] = ACTIONS(1681), + [anon_sym_not_DASHin2] = ACTIONS(1681), + [anon_sym_starts_DASHwith2] = ACTIONS(1681), + [anon_sym_ends_DASHwith2] = ACTIONS(1681), + [anon_sym_EQ_EQ2] = ACTIONS(1681), + [anon_sym_BANG_EQ2] = ACTIONS(1681), + [anon_sym_LT2] = ACTIONS(1681), + [anon_sym_LT_EQ2] = ACTIONS(1681), + [anon_sym_GT_EQ2] = ACTIONS(1681), + [anon_sym_EQ_TILDE2] = ACTIONS(1681), + [anon_sym_BANG_TILDE2] = ACTIONS(1681), + [anon_sym_STAR_STAR2] = ACTIONS(1681), + [anon_sym_PLUS_PLUS2] = ACTIONS(1681), + [anon_sym_SLASH2] = ACTIONS(1681), + [anon_sym_mod2] = ACTIONS(1681), + [anon_sym_SLASH_SLASH2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1681), + [anon_sym_bit_DASHshl2] = ACTIONS(1681), + [anon_sym_bit_DASHshr2] = ACTIONS(1681), + [anon_sym_bit_DASHand2] = ACTIONS(1681), + [anon_sym_bit_DASHxor2] = ACTIONS(1681), + [anon_sym_bit_DASHor2] = ACTIONS(1681), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [aux_sym__immediate_decimal_token2] = ACTIONS(3043), + [sym_filesize_unit] = ACTIONS(1681), + [sym_duration_unit] = ACTIONS(1683), + [anon_sym_err_GT] = ACTIONS(1681), + [anon_sym_out_GT] = ACTIONS(1681), + [anon_sym_e_GT] = ACTIONS(1681), + [anon_sym_o_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT] = ACTIONS(1681), + [anon_sym_err_GT_GT] = ACTIONS(1681), + [anon_sym_out_GT_GT] = ACTIONS(1681), + [anon_sym_e_GT_GT] = ACTIONS(1681), + [anon_sym_o_GT_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), [anon_sym_POUND] = ACTIONS(3), }, [816] = { + [sym_expr_parenthesized] = STATE(1579), + [sym_val_range] = STATE(1899), + [sym__val_range] = STATE(7884), + [sym__val_range_with_end] = STATE(7572), + [sym__value] = STATE(1899), + [sym_val_nothing] = STATE(1876), + [sym_val_bool] = STATE(1715), + [sym_val_variable] = STATE(1577), + [sym_val_number] = STATE(1876), + [sym__val_number_decimal] = STATE(1344), + [sym__val_number] = STATE(1949), + [sym_val_duration] = STATE(1876), + [sym_val_filesize] = STATE(1876), + [sym_val_binary] = STATE(1876), + [sym_val_string] = STATE(1876), + [sym__raw_str] = STATE(1965), + [sym__str_double_quotes] = STATE(1965), + [sym_val_interpolated] = STATE(1876), + [sym__inter_single_quotes] = STATE(1935), + [sym__inter_double_quotes] = STATE(1936), + [sym_val_list] = STATE(1876), + [sym_val_record] = STATE(1876), + [sym_val_table] = STATE(1876), + [sym_val_closure] = STATE(1876), + [sym_short_flag] = STATE(1899), + [sym_long_flag] = STATE(1899), + [sym_unquoted] = STATE(1687), + [sym__unquoted_with_expr] = STATE(1913), + [sym__unquoted_anonymous_prefix] = STATE(7378), [sym_comment] = STATE(816), - [anon_sym_STAR_STAR] = ACTIONS(3031), - [anon_sym_PLUS_PLUS] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_SLASH] = ACTIONS(3033), - [anon_sym_mod] = ACTIONS(3031), - [anon_sym_SLASH_SLASH] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3031), - [anon_sym_bit_DASHshl] = ACTIONS(3031), - [anon_sym_bit_DASHshr] = ACTIONS(3031), - [anon_sym_EQ_TILDE] = ACTIONS(3031), - [anon_sym_BANG_TILDE] = ACTIONS(3031), - [anon_sym_bit_DASHand] = ACTIONS(3031), - [anon_sym_bit_DASHxor] = ACTIONS(3031), - [anon_sym_bit_DASHor] = ACTIONS(3031), - [anon_sym_and] = ACTIONS(3031), - [anon_sym_xor] = ACTIONS(3031), - [anon_sym_or] = ACTIONS(3031), - [anon_sym_in] = ACTIONS(3031), - [anon_sym_not_DASHin] = ACTIONS(3031), - [anon_sym_starts_DASHwith] = ACTIONS(3031), - [anon_sym_ends_DASHwith] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3031), - [anon_sym_BANG_EQ] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT] = ACTIONS(3033), - [anon_sym_GT_EQ] = ACTIONS(3031), - [aux_sym_cmd_identifier_token41] = ACTIONS(3035), - [sym__newline] = ACTIONS(1709), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_PIPE] = ACTIONS(1709), - [anon_sym_err_GT_PIPE] = ACTIONS(1709), - [anon_sym_out_GT_PIPE] = ACTIONS(1709), - [anon_sym_e_GT_PIPE] = ACTIONS(1709), - [anon_sym_o_GT_PIPE] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), - [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_GT2] = ACTIONS(1709), - [anon_sym_DASH2] = ACTIONS(1709), - [anon_sym_in2] = ACTIONS(1709), - [anon_sym_RBRACE] = ACTIONS(1709), - [anon_sym_STAR2] = ACTIONS(1709), - [anon_sym_and2] = ACTIONS(1709), - [anon_sym_xor2] = ACTIONS(1709), - [anon_sym_or2] = ACTIONS(1709), - [anon_sym_not_DASHin2] = ACTIONS(1709), - [anon_sym_starts_DASHwith2] = ACTIONS(1709), - [anon_sym_ends_DASHwith2] = ACTIONS(1709), - [anon_sym_EQ_EQ2] = ACTIONS(1709), - [anon_sym_BANG_EQ2] = ACTIONS(1709), - [anon_sym_LT2] = ACTIONS(1709), - [anon_sym_LT_EQ2] = ACTIONS(1709), - [anon_sym_GT_EQ2] = ACTIONS(1709), - [anon_sym_EQ_TILDE2] = ACTIONS(1709), - [anon_sym_BANG_TILDE2] = ACTIONS(1709), - [anon_sym_STAR_STAR2] = ACTIONS(1709), - [anon_sym_PLUS_PLUS2] = ACTIONS(1709), - [anon_sym_SLASH2] = ACTIONS(1709), - [anon_sym_mod2] = ACTIONS(1709), - [anon_sym_SLASH_SLASH2] = ACTIONS(1709), - [anon_sym_PLUS2] = ACTIONS(1709), - [anon_sym_bit_DASHshl2] = ACTIONS(1709), - [anon_sym_bit_DASHshr2] = ACTIONS(1709), - [anon_sym_bit_DASHand2] = ACTIONS(1709), - [anon_sym_bit_DASHxor2] = ACTIONS(1709), - [anon_sym_bit_DASHor2] = ACTIONS(1709), - [anon_sym_DOT_DOT2] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3039), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3039), - [sym_filesize_unit] = ACTIONS(3041), - [sym_duration_unit] = ACTIONS(3043), - [aux_sym_record_entry_token1] = ACTIONS(1709), - [anon_sym_err_GT] = ACTIONS(1709), - [anon_sym_out_GT] = ACTIONS(1709), - [anon_sym_e_GT] = ACTIONS(1709), - [anon_sym_o_GT] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT] = ACTIONS(1709), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), - [anon_sym_o_PLUSe_GT] = ACTIONS(1709), - [anon_sym_e_PLUSo_GT] = ACTIONS(1709), - [anon_sym_err_GT_GT] = ACTIONS(1709), - [anon_sym_out_GT_GT] = ACTIONS(1709), - [anon_sym_e_GT_GT] = ACTIONS(1709), - [anon_sym_o_GT_GT] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1709), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1709), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1709), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1709), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(812), + [ts_builtin_sym_end] = ACTIONS(2890), + [sym__newline] = ACTIONS(2890), + [anon_sym_SEMI] = ACTIONS(2890), + [anon_sym_PIPE] = ACTIONS(2890), + [anon_sym_err_GT_PIPE] = ACTIONS(2890), + [anon_sym_out_GT_PIPE] = ACTIONS(2890), + [anon_sym_e_GT_PIPE] = ACTIONS(2890), + [anon_sym_o_GT_PIPE] = ACTIONS(2890), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2890), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2890), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2890), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2890), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DASH_DASH] = ACTIONS(2999), + [anon_sym_DASH2] = ACTIONS(3001), + [anon_sym_LBRACE] = ACTIONS(3003), + [anon_sym_DOT_DOT] = ACTIONS(3005), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3007), + [anon_sym_DOT_DOT_LT] = ACTIONS(3007), + [anon_sym_null] = ACTIONS(3009), + [anon_sym_true] = ACTIONS(3011), + [anon_sym_false] = ACTIONS(3011), + [aux_sym__val_number_decimal_token1] = ACTIONS(3013), + [aux_sym__val_number_decimal_token2] = ACTIONS(3015), + [aux_sym__val_number_decimal_token3] = ACTIONS(3017), + [aux_sym__val_number_decimal_token4] = ACTIONS(3019), + [aux_sym__val_number_token1] = ACTIONS(3021), + [aux_sym__val_number_token2] = ACTIONS(3021), + [aux_sym__val_number_token3] = ACTIONS(3021), + [aux_sym__val_number_token4] = ACTIONS(3023), + [aux_sym__val_number_token5] = ACTIONS(3023), + [aux_sym__val_number_token6] = ACTIONS(3023), + [anon_sym_0b] = ACTIONS(3025), + [anon_sym_0o] = ACTIONS(3027), + [anon_sym_0x] = ACTIONS(3027), + [sym_val_date] = ACTIONS(3029), + [anon_sym_DQUOTE] = ACTIONS(3031), + [sym__str_single_quotes] = ACTIONS(3033), + [sym__str_back_ticks] = ACTIONS(3033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3035), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3039), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3041), }, [817] = { [sym_comment] = STATE(817), - [anon_sym_STAR_STAR] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_SLASH_SLASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_bit_DASHshl] = ACTIONS(1609), - [anon_sym_bit_DASHshr] = ACTIONS(1609), - [anon_sym_EQ_TILDE] = ACTIONS(1609), - [anon_sym_BANG_TILDE] = ACTIONS(1609), - [anon_sym_bit_DASHand] = ACTIONS(1609), - [anon_sym_bit_DASHxor] = ACTIONS(1609), - [anon_sym_bit_DASHor] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(1609), - [anon_sym_not_DASHin] = ACTIONS(1609), - [anon_sym_starts_DASHwith] = ACTIONS(1609), - [anon_sym_ends_DASHwith] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1609), - [anon_sym_BANG_EQ] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1609), - [aux_sym_cmd_identifier_token41] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_RBRACE] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(2912), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1607), - [anon_sym_out_GT_GT] = ACTIONS(1607), - [anon_sym_e_GT_GT] = ACTIONS(1607), - [anon_sym_o_GT_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [ts_builtin_sym_end] = ACTIONS(1575), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_bit_DASHshl] = ACTIONS(1575), + [anon_sym_bit_DASHshr] = ACTIONS(1575), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_BANG_TILDE] = ACTIONS(1575), + [anon_sym_bit_DASHand] = ACTIONS(1575), + [anon_sym_bit_DASHxor] = ACTIONS(1575), + [anon_sym_bit_DASHor] = ACTIONS(1575), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_not_DASHin] = ACTIONS(1575), + [anon_sym_starts_DASHwith] = ACTIONS(1575), + [anon_sym_ends_DASHwith] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1575), + [aux_sym_cmd_identifier_token41] = ACTIONS(1573), + [sym__newline] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_err_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_GT_PIPE] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1573), + [anon_sym_xor2] = ACTIONS(1573), + [anon_sym_or2] = ACTIONS(1573), + [anon_sym_not_DASHin2] = ACTIONS(1573), + [anon_sym_starts_DASHwith2] = ACTIONS(1573), + [anon_sym_ends_DASHwith2] = ACTIONS(1573), + [anon_sym_EQ_EQ2] = ACTIONS(1573), + [anon_sym_BANG_EQ2] = ACTIONS(1573), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1573), + [anon_sym_GT_EQ2] = ACTIONS(1573), + [anon_sym_EQ_TILDE2] = ACTIONS(1573), + [anon_sym_BANG_TILDE2] = ACTIONS(1573), + [anon_sym_STAR_STAR2] = ACTIONS(1573), + [anon_sym_PLUS_PLUS2] = ACTIONS(1573), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1573), + [anon_sym_SLASH_SLASH2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1573), + [anon_sym_bit_DASHshr2] = ACTIONS(1573), + [anon_sym_bit_DASHand2] = ACTIONS(1573), + [anon_sym_bit_DASHxor2] = ACTIONS(1573), + [anon_sym_bit_DASHor2] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(2796), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1573), + [anon_sym_out_GT_GT] = ACTIONS(1573), + [anon_sym_e_GT_GT] = ACTIONS(1573), + [anon_sym_o_GT_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), [anon_sym_POUND] = ACTIONS(3), }, [818] = { [sym_comment] = STATE(818), - [anon_sym_STAR_STAR] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_SLASH_SLASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_bit_DASHshl] = ACTIONS(1609), - [anon_sym_bit_DASHshr] = ACTIONS(1609), - [anon_sym_EQ_TILDE] = ACTIONS(1609), - [anon_sym_BANG_TILDE] = ACTIONS(1609), - [anon_sym_bit_DASHand] = ACTIONS(1609), - [anon_sym_bit_DASHxor] = ACTIONS(1609), - [anon_sym_bit_DASHor] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(1609), - [anon_sym_not_DASHin] = ACTIONS(1609), - [anon_sym_starts_DASHwith] = ACTIONS(1609), - [anon_sym_ends_DASHwith] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1609), - [anon_sym_BANG_EQ] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1609), - [aux_sym_cmd_identifier_token41] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_RPAREN] = ACTIONS(1607), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(2934), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1607), - [anon_sym_out_GT_GT] = ACTIONS(1607), - [anon_sym_e_GT_GT] = ACTIONS(1607), - [anon_sym_o_GT_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [anon_sym_STAR_STAR] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1681), + [anon_sym_SLASH] = ACTIONS(1681), + [anon_sym_mod] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_bit_DASHshl] = ACTIONS(1683), + [anon_sym_bit_DASHshr] = ACTIONS(1683), + [anon_sym_EQ_TILDE] = ACTIONS(1683), + [anon_sym_BANG_TILDE] = ACTIONS(1683), + [anon_sym_bit_DASHand] = ACTIONS(1683), + [anon_sym_bit_DASHxor] = ACTIONS(1683), + [anon_sym_bit_DASHor] = ACTIONS(1683), + [anon_sym_and] = ACTIONS(1683), + [anon_sym_xor] = ACTIONS(1683), + [anon_sym_or] = ACTIONS(1683), + [anon_sym_in] = ACTIONS(1683), + [anon_sym_not_DASHin] = ACTIONS(1683), + [anon_sym_starts_DASHwith] = ACTIONS(1683), + [anon_sym_ends_DASHwith] = ACTIONS(1683), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(1683), + [aux_sym_cmd_identifier_token41] = ACTIONS(1681), + [sym__newline] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_err_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_GT_PIPE] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), + [anon_sym_GT2] = ACTIONS(1681), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_in2] = ACTIONS(1681), + [anon_sym_RBRACE] = ACTIONS(1681), + [anon_sym_STAR2] = ACTIONS(1681), + [anon_sym_and2] = ACTIONS(1681), + [anon_sym_xor2] = ACTIONS(1681), + [anon_sym_or2] = ACTIONS(1681), + [anon_sym_not_DASHin2] = ACTIONS(1681), + [anon_sym_starts_DASHwith2] = ACTIONS(1681), + [anon_sym_ends_DASHwith2] = ACTIONS(1681), + [anon_sym_EQ_EQ2] = ACTIONS(1681), + [anon_sym_BANG_EQ2] = ACTIONS(1681), + [anon_sym_LT2] = ACTIONS(1681), + [anon_sym_LT_EQ2] = ACTIONS(1681), + [anon_sym_GT_EQ2] = ACTIONS(1681), + [anon_sym_EQ_TILDE2] = ACTIONS(1681), + [anon_sym_BANG_TILDE2] = ACTIONS(1681), + [anon_sym_STAR_STAR2] = ACTIONS(1681), + [anon_sym_PLUS_PLUS2] = ACTIONS(1681), + [anon_sym_SLASH2] = ACTIONS(1681), + [anon_sym_mod2] = ACTIONS(1681), + [anon_sym_SLASH_SLASH2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1681), + [anon_sym_bit_DASHshl2] = ACTIONS(1681), + [anon_sym_bit_DASHshr2] = ACTIONS(1681), + [anon_sym_bit_DASHand2] = ACTIONS(1681), + [anon_sym_bit_DASHxor2] = ACTIONS(1681), + [anon_sym_bit_DASHor2] = ACTIONS(1681), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [sym_filesize_unit] = ACTIONS(1681), + [sym_duration_unit] = ACTIONS(1683), + [aux_sym_record_entry_token1] = ACTIONS(1681), + [anon_sym_err_GT] = ACTIONS(1681), + [anon_sym_out_GT] = ACTIONS(1681), + [anon_sym_e_GT] = ACTIONS(1681), + [anon_sym_o_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT] = ACTIONS(1681), + [anon_sym_err_GT_GT] = ACTIONS(1681), + [anon_sym_out_GT_GT] = ACTIONS(1681), + [anon_sym_e_GT_GT] = ACTIONS(1681), + [anon_sym_o_GT_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), [anon_sym_POUND] = ACTIONS(3), }, [819] = { [sym_comment] = STATE(819), - [anon_sym_STAR_STAR] = ACTIONS(1675), - [anon_sym_PLUS_PLUS] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1673), - [anon_sym_mod] = ACTIONS(1675), - [anon_sym_SLASH_SLASH] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_bit_DASHshl] = ACTIONS(1675), - [anon_sym_bit_DASHshr] = ACTIONS(1675), - [anon_sym_EQ_TILDE] = ACTIONS(1675), - [anon_sym_BANG_TILDE] = ACTIONS(1675), - [anon_sym_bit_DASHand] = ACTIONS(1675), - [anon_sym_bit_DASHxor] = ACTIONS(1675), - [anon_sym_bit_DASHor] = ACTIONS(1675), - [anon_sym_and] = ACTIONS(1675), - [anon_sym_xor] = ACTIONS(1675), - [anon_sym_or] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [anon_sym_not_DASHin] = ACTIONS(1675), - [anon_sym_starts_DASHwith] = ACTIONS(1675), - [anon_sym_ends_DASHwith] = ACTIONS(1675), - [anon_sym_EQ_EQ] = ACTIONS(1675), - [anon_sym_BANG_EQ] = ACTIONS(1675), - [anon_sym_LT] = ACTIONS(1673), - [anon_sym_LT_EQ] = ACTIONS(1675), - [anon_sym_GT] = ACTIONS(1673), - [anon_sym_GT_EQ] = ACTIONS(1675), - [aux_sym_cmd_identifier_token41] = ACTIONS(1673), - [sym__newline] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1673), - [anon_sym_err_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_GT_PIPE] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), - [anon_sym_RPAREN] = ACTIONS(1673), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_in2] = ACTIONS(1673), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1673), - [anon_sym_xor2] = ACTIONS(1673), - [anon_sym_or2] = ACTIONS(1673), - [anon_sym_not_DASHin2] = ACTIONS(1673), - [anon_sym_starts_DASHwith2] = ACTIONS(1673), - [anon_sym_ends_DASHwith2] = ACTIONS(1673), - [anon_sym_EQ_EQ2] = ACTIONS(1673), - [anon_sym_BANG_EQ2] = ACTIONS(1673), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1673), - [anon_sym_GT_EQ2] = ACTIONS(1673), - [anon_sym_EQ_TILDE2] = ACTIONS(1673), - [anon_sym_BANG_TILDE2] = ACTIONS(1673), - [anon_sym_STAR_STAR2] = ACTIONS(1673), - [anon_sym_PLUS_PLUS2] = ACTIONS(1673), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1673), - [anon_sym_SLASH_SLASH2] = ACTIONS(1673), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1673), - [anon_sym_bit_DASHshr2] = ACTIONS(1673), - [anon_sym_bit_DASHand2] = ACTIONS(1673), - [anon_sym_bit_DASHxor2] = ACTIONS(1673), - [anon_sym_bit_DASHor2] = ACTIONS(1673), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [ts_builtin_sym_end] = ACTIONS(1683), + [anon_sym_STAR_STAR] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1681), + [anon_sym_SLASH] = ACTIONS(1681), + [anon_sym_mod] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_bit_DASHshl] = ACTIONS(1683), + [anon_sym_bit_DASHshr] = ACTIONS(1683), + [anon_sym_EQ_TILDE] = ACTIONS(1683), + [anon_sym_BANG_TILDE] = ACTIONS(1683), + [anon_sym_bit_DASHand] = ACTIONS(1683), + [anon_sym_bit_DASHxor] = ACTIONS(1683), + [anon_sym_bit_DASHor] = ACTIONS(1683), + [anon_sym_and] = ACTIONS(1683), + [anon_sym_xor] = ACTIONS(1683), + [anon_sym_or] = ACTIONS(1683), + [anon_sym_in] = ACTIONS(1683), + [anon_sym_not_DASHin] = ACTIONS(1683), + [anon_sym_starts_DASHwith] = ACTIONS(1683), + [anon_sym_ends_DASHwith] = ACTIONS(1683), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(1683), + [aux_sym_cmd_identifier_token41] = ACTIONS(1681), + [sym__newline] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_err_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_GT_PIPE] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), + [anon_sym_GT2] = ACTIONS(1681), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_in2] = ACTIONS(1681), + [anon_sym_STAR2] = ACTIONS(1681), + [anon_sym_and2] = ACTIONS(1681), + [anon_sym_xor2] = ACTIONS(1681), + [anon_sym_or2] = ACTIONS(1681), + [anon_sym_not_DASHin2] = ACTIONS(1681), + [anon_sym_starts_DASHwith2] = ACTIONS(1681), + [anon_sym_ends_DASHwith2] = ACTIONS(1681), + [anon_sym_EQ_EQ2] = ACTIONS(1681), + [anon_sym_BANG_EQ2] = ACTIONS(1681), + [anon_sym_LT2] = ACTIONS(1681), + [anon_sym_LT_EQ2] = ACTIONS(1681), + [anon_sym_GT_EQ2] = ACTIONS(1681), + [anon_sym_EQ_TILDE2] = ACTIONS(1681), + [anon_sym_BANG_TILDE2] = ACTIONS(1681), + [anon_sym_STAR_STAR2] = ACTIONS(1681), + [anon_sym_PLUS_PLUS2] = ACTIONS(1681), + [anon_sym_SLASH2] = ACTIONS(1681), + [anon_sym_mod2] = ACTIONS(1681), + [anon_sym_SLASH_SLASH2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1681), + [anon_sym_bit_DASHshl2] = ACTIONS(1681), + [anon_sym_bit_DASHshr2] = ACTIONS(1681), + [anon_sym_bit_DASHand2] = ACTIONS(1681), + [anon_sym_bit_DASHxor2] = ACTIONS(1681), + [anon_sym_bit_DASHor2] = ACTIONS(1681), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), [aux_sym__immediate_decimal_token2] = ACTIONS(3045), - [sym_filesize_unit] = ACTIONS(1673), - [sym_duration_unit] = ACTIONS(1675), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1673), - [anon_sym_out_GT_GT] = ACTIONS(1673), - [anon_sym_e_GT_GT] = ACTIONS(1673), - [anon_sym_o_GT_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), + [sym_filesize_unit] = ACTIONS(1681), + [sym_duration_unit] = ACTIONS(1683), + [anon_sym_err_GT] = ACTIONS(1681), + [anon_sym_out_GT] = ACTIONS(1681), + [anon_sym_e_GT] = ACTIONS(1681), + [anon_sym_o_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT] = ACTIONS(1681), + [anon_sym_err_GT_GT] = ACTIONS(1681), + [anon_sym_out_GT_GT] = ACTIONS(1681), + [anon_sym_e_GT_GT] = ACTIONS(1681), + [anon_sym_o_GT_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), [anon_sym_POUND] = ACTIONS(3), }, [820] = { [sym_comment] = STATE(820), - [anon_sym_STAR_STAR] = ACTIONS(1675), - [anon_sym_PLUS_PLUS] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1673), - [anon_sym_mod] = ACTIONS(1675), - [anon_sym_SLASH_SLASH] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_bit_DASHshl] = ACTIONS(1675), - [anon_sym_bit_DASHshr] = ACTIONS(1675), - [anon_sym_EQ_TILDE] = ACTIONS(1675), - [anon_sym_BANG_TILDE] = ACTIONS(1675), - [anon_sym_bit_DASHand] = ACTIONS(1675), - [anon_sym_bit_DASHxor] = ACTIONS(1675), - [anon_sym_bit_DASHor] = ACTIONS(1675), - [anon_sym_and] = ACTIONS(1675), - [anon_sym_xor] = ACTIONS(1675), - [anon_sym_or] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [anon_sym_not_DASHin] = ACTIONS(1675), - [anon_sym_starts_DASHwith] = ACTIONS(1675), - [anon_sym_ends_DASHwith] = ACTIONS(1675), - [anon_sym_EQ_EQ] = ACTIONS(1675), - [anon_sym_BANG_EQ] = ACTIONS(1675), - [anon_sym_LT] = ACTIONS(1673), - [anon_sym_LT_EQ] = ACTIONS(1675), - [anon_sym_GT] = ACTIONS(1673), - [anon_sym_GT_EQ] = ACTIONS(1675), - [aux_sym_cmd_identifier_token41] = ACTIONS(1673), - [sym__newline] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1673), - [anon_sym_err_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_GT_PIPE] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_in2] = ACTIONS(1673), - [anon_sym_RBRACE] = ACTIONS(1673), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1673), - [anon_sym_xor2] = ACTIONS(1673), - [anon_sym_or2] = ACTIONS(1673), - [anon_sym_not_DASHin2] = ACTIONS(1673), - [anon_sym_starts_DASHwith2] = ACTIONS(1673), - [anon_sym_ends_DASHwith2] = ACTIONS(1673), - [anon_sym_EQ_EQ2] = ACTIONS(1673), - [anon_sym_BANG_EQ2] = ACTIONS(1673), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1673), - [anon_sym_GT_EQ2] = ACTIONS(1673), - [anon_sym_EQ_TILDE2] = ACTIONS(1673), - [anon_sym_BANG_TILDE2] = ACTIONS(1673), - [anon_sym_STAR_STAR2] = ACTIONS(1673), - [anon_sym_PLUS_PLUS2] = ACTIONS(1673), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1673), - [anon_sym_SLASH_SLASH2] = ACTIONS(1673), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1673), - [anon_sym_bit_DASHshr2] = ACTIONS(1673), - [anon_sym_bit_DASHand2] = ACTIONS(1673), - [anon_sym_bit_DASHxor2] = ACTIONS(1673), - [anon_sym_bit_DASHor2] = ACTIONS(1673), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [sym_filesize_unit] = ACTIONS(1673), - [sym_duration_unit] = ACTIONS(1675), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1673), - [anon_sym_out_GT_GT] = ACTIONS(1673), - [anon_sym_e_GT_GT] = ACTIONS(1673), - [anon_sym_o_GT_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), + [anon_sym_STAR_STAR] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1681), + [anon_sym_SLASH] = ACTIONS(1681), + [anon_sym_mod] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_bit_DASHshl] = ACTIONS(1683), + [anon_sym_bit_DASHshr] = ACTIONS(1683), + [anon_sym_EQ_TILDE] = ACTIONS(1683), + [anon_sym_BANG_TILDE] = ACTIONS(1683), + [anon_sym_bit_DASHand] = ACTIONS(1683), + [anon_sym_bit_DASHxor] = ACTIONS(1683), + [anon_sym_bit_DASHor] = ACTIONS(1683), + [anon_sym_and] = ACTIONS(1683), + [anon_sym_xor] = ACTIONS(1683), + [anon_sym_or] = ACTIONS(1683), + [anon_sym_in] = ACTIONS(1683), + [anon_sym_not_DASHin] = ACTIONS(1683), + [anon_sym_starts_DASHwith] = ACTIONS(1683), + [anon_sym_ends_DASHwith] = ACTIONS(1683), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(1683), + [aux_sym_cmd_identifier_token41] = ACTIONS(1681), + [sym__newline] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_err_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_GT_PIPE] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), + [anon_sym_RPAREN] = ACTIONS(1681), + [anon_sym_GT2] = ACTIONS(1681), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_in2] = ACTIONS(1681), + [anon_sym_STAR2] = ACTIONS(1681), + [anon_sym_and2] = ACTIONS(1681), + [anon_sym_xor2] = ACTIONS(1681), + [anon_sym_or2] = ACTIONS(1681), + [anon_sym_not_DASHin2] = ACTIONS(1681), + [anon_sym_starts_DASHwith2] = ACTIONS(1681), + [anon_sym_ends_DASHwith2] = ACTIONS(1681), + [anon_sym_EQ_EQ2] = ACTIONS(1681), + [anon_sym_BANG_EQ2] = ACTIONS(1681), + [anon_sym_LT2] = ACTIONS(1681), + [anon_sym_LT_EQ2] = ACTIONS(1681), + [anon_sym_GT_EQ2] = ACTIONS(1681), + [anon_sym_EQ_TILDE2] = ACTIONS(1681), + [anon_sym_BANG_TILDE2] = ACTIONS(1681), + [anon_sym_STAR_STAR2] = ACTIONS(1681), + [anon_sym_PLUS_PLUS2] = ACTIONS(1681), + [anon_sym_SLASH2] = ACTIONS(1681), + [anon_sym_mod2] = ACTIONS(1681), + [anon_sym_SLASH_SLASH2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1681), + [anon_sym_bit_DASHshl2] = ACTIONS(1681), + [anon_sym_bit_DASHshr2] = ACTIONS(1681), + [anon_sym_bit_DASHand2] = ACTIONS(1681), + [anon_sym_bit_DASHxor2] = ACTIONS(1681), + [anon_sym_bit_DASHor2] = ACTIONS(1681), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [sym_filesize_unit] = ACTIONS(1681), + [sym_duration_unit] = ACTIONS(1683), + [anon_sym_err_GT] = ACTIONS(1681), + [anon_sym_out_GT] = ACTIONS(1681), + [anon_sym_e_GT] = ACTIONS(1681), + [anon_sym_o_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT] = ACTIONS(1681), + [anon_sym_err_GT_GT] = ACTIONS(1681), + [anon_sym_out_GT_GT] = ACTIONS(1681), + [anon_sym_e_GT_GT] = ACTIONS(1681), + [anon_sym_o_GT_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), [anon_sym_POUND] = ACTIONS(3), }, [821] = { [sym_comment] = STATE(821), - [anon_sym_STAR_STAR] = ACTIONS(1675), - [anon_sym_PLUS_PLUS] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1673), - [anon_sym_mod] = ACTIONS(1675), - [anon_sym_SLASH_SLASH] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_bit_DASHshl] = ACTIONS(1675), - [anon_sym_bit_DASHshr] = ACTIONS(1675), - [anon_sym_EQ_TILDE] = ACTIONS(1675), - [anon_sym_BANG_TILDE] = ACTIONS(1675), - [anon_sym_bit_DASHand] = ACTIONS(1675), - [anon_sym_bit_DASHxor] = ACTIONS(1675), - [anon_sym_bit_DASHor] = ACTIONS(1675), - [anon_sym_and] = ACTIONS(1675), - [anon_sym_xor] = ACTIONS(1675), - [anon_sym_or] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [anon_sym_not_DASHin] = ACTIONS(1675), - [anon_sym_starts_DASHwith] = ACTIONS(1675), - [anon_sym_ends_DASHwith] = ACTIONS(1675), - [anon_sym_EQ_EQ] = ACTIONS(1675), - [anon_sym_BANG_EQ] = ACTIONS(1675), - [anon_sym_LT] = ACTIONS(1673), - [anon_sym_LT_EQ] = ACTIONS(1675), - [anon_sym_GT] = ACTIONS(1673), - [anon_sym_GT_EQ] = ACTIONS(1675), - [aux_sym_cmd_identifier_token41] = ACTIONS(1673), - [sym__newline] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1673), - [anon_sym_err_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_GT_PIPE] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_in2] = ACTIONS(1673), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1673), - [anon_sym_xor2] = ACTIONS(1673), - [anon_sym_or2] = ACTIONS(1673), - [anon_sym_not_DASHin2] = ACTIONS(1673), - [anon_sym_starts_DASHwith2] = ACTIONS(1673), - [anon_sym_ends_DASHwith2] = ACTIONS(1673), - [anon_sym_EQ_EQ2] = ACTIONS(1673), - [anon_sym_BANG_EQ2] = ACTIONS(1673), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1673), - [anon_sym_GT_EQ2] = ACTIONS(1673), - [anon_sym_EQ_TILDE2] = ACTIONS(1673), - [anon_sym_BANG_TILDE2] = ACTIONS(1673), - [anon_sym_STAR_STAR2] = ACTIONS(1673), - [anon_sym_PLUS_PLUS2] = ACTIONS(1673), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1673), - [anon_sym_SLASH_SLASH2] = ACTIONS(1673), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1673), - [anon_sym_bit_DASHshr2] = ACTIONS(1673), - [anon_sym_bit_DASHand2] = ACTIONS(1673), - [anon_sym_bit_DASHxor2] = ACTIONS(1673), - [anon_sym_bit_DASHor2] = ACTIONS(1673), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [anon_sym_STAR_STAR] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1681), + [anon_sym_SLASH] = ACTIONS(1681), + [anon_sym_mod] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_bit_DASHshl] = ACTIONS(1683), + [anon_sym_bit_DASHshr] = ACTIONS(1683), + [anon_sym_EQ_TILDE] = ACTIONS(1683), + [anon_sym_BANG_TILDE] = ACTIONS(1683), + [anon_sym_bit_DASHand] = ACTIONS(1683), + [anon_sym_bit_DASHxor] = ACTIONS(1683), + [anon_sym_bit_DASHor] = ACTIONS(1683), + [anon_sym_and] = ACTIONS(1683), + [anon_sym_xor] = ACTIONS(1683), + [anon_sym_or] = ACTIONS(1683), + [anon_sym_in] = ACTIONS(1683), + [anon_sym_not_DASHin] = ACTIONS(1683), + [anon_sym_starts_DASHwith] = ACTIONS(1683), + [anon_sym_ends_DASHwith] = ACTIONS(1683), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(1683), + [aux_sym_cmd_identifier_token41] = ACTIONS(1681), + [sym__newline] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_err_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_GT_PIPE] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), + [anon_sym_GT2] = ACTIONS(1681), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_in2] = ACTIONS(1681), + [anon_sym_STAR2] = ACTIONS(1681), + [anon_sym_and2] = ACTIONS(1681), + [anon_sym_xor2] = ACTIONS(1681), + [anon_sym_or2] = ACTIONS(1681), + [anon_sym_not_DASHin2] = ACTIONS(1681), + [anon_sym_starts_DASHwith2] = ACTIONS(1681), + [anon_sym_ends_DASHwith2] = ACTIONS(1681), + [anon_sym_EQ_EQ2] = ACTIONS(1681), + [anon_sym_BANG_EQ2] = ACTIONS(1681), + [anon_sym_LT2] = ACTIONS(1681), + [anon_sym_LT_EQ2] = ACTIONS(1681), + [anon_sym_GT_EQ2] = ACTIONS(1681), + [anon_sym_EQ_TILDE2] = ACTIONS(1681), + [anon_sym_BANG_TILDE2] = ACTIONS(1681), + [anon_sym_STAR_STAR2] = ACTIONS(1681), + [anon_sym_PLUS_PLUS2] = ACTIONS(1681), + [anon_sym_SLASH2] = ACTIONS(1681), + [anon_sym_mod2] = ACTIONS(1681), + [anon_sym_SLASH_SLASH2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1681), + [anon_sym_bit_DASHshl2] = ACTIONS(1681), + [anon_sym_bit_DASHshr2] = ACTIONS(1681), + [anon_sym_bit_DASHand2] = ACTIONS(1681), + [anon_sym_bit_DASHxor2] = ACTIONS(1681), + [anon_sym_bit_DASHor2] = ACTIONS(1681), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), [aux_sym__immediate_decimal_token2] = ACTIONS(3047), - [sym_filesize_unit] = ACTIONS(1673), - [sym_duration_unit] = ACTIONS(1675), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1673), - [anon_sym_out_GT_GT] = ACTIONS(1673), - [anon_sym_e_GT_GT] = ACTIONS(1673), - [anon_sym_o_GT_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), + [sym_filesize_unit] = ACTIONS(1681), + [sym_duration_unit] = ACTIONS(1683), + [anon_sym_err_GT] = ACTIONS(1681), + [anon_sym_out_GT] = ACTIONS(1681), + [anon_sym_e_GT] = ACTIONS(1681), + [anon_sym_o_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT] = ACTIONS(1681), + [anon_sym_err_GT_GT] = ACTIONS(1681), + [anon_sym_out_GT_GT] = ACTIONS(1681), + [anon_sym_e_GT_GT] = ACTIONS(1681), + [anon_sym_o_GT_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), [anon_sym_POUND] = ACTIONS(3), }, [822] = { [sym_comment] = STATE(822), - [ts_builtin_sym_end] = ACTIONS(1765), - [anon_sym_STAR_STAR] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1763), - [anon_sym_SLASH] = ACTIONS(1763), - [anon_sym_mod] = ACTIONS(1765), - [anon_sym_SLASH_SLASH] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_bit_DASHshl] = ACTIONS(1765), - [anon_sym_bit_DASHshr] = ACTIONS(1765), - [anon_sym_EQ_TILDE] = ACTIONS(1765), - [anon_sym_BANG_TILDE] = ACTIONS(1765), - [anon_sym_bit_DASHand] = ACTIONS(1765), - [anon_sym_bit_DASHxor] = ACTIONS(1765), - [anon_sym_bit_DASHor] = ACTIONS(1765), - [anon_sym_and] = ACTIONS(1765), - [anon_sym_xor] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), - [anon_sym_in] = ACTIONS(1765), - [anon_sym_not_DASHin] = ACTIONS(1765), - [anon_sym_starts_DASHwith] = ACTIONS(1765), - [anon_sym_ends_DASHwith] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1765), - [anon_sym_BANG_EQ] = ACTIONS(1765), - [anon_sym_LT] = ACTIONS(1763), - [anon_sym_LT_EQ] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1765), - [aux_sym_cmd_identifier_token41] = ACTIONS(1763), - [sym__newline] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_err_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_GT_PIPE] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), - [anon_sym_GT2] = ACTIONS(1763), - [anon_sym_DASH2] = ACTIONS(1763), - [anon_sym_in2] = ACTIONS(1763), - [anon_sym_STAR2] = ACTIONS(1763), - [anon_sym_and2] = ACTIONS(1763), - [anon_sym_xor2] = ACTIONS(1763), - [anon_sym_or2] = ACTIONS(1763), - [anon_sym_not_DASHin2] = ACTIONS(1763), - [anon_sym_starts_DASHwith2] = ACTIONS(1763), - [anon_sym_ends_DASHwith2] = ACTIONS(1763), - [anon_sym_EQ_EQ2] = ACTIONS(1763), - [anon_sym_BANG_EQ2] = ACTIONS(1763), - [anon_sym_LT2] = ACTIONS(1763), - [anon_sym_LT_EQ2] = ACTIONS(1763), - [anon_sym_GT_EQ2] = ACTIONS(1763), - [anon_sym_EQ_TILDE2] = ACTIONS(1763), - [anon_sym_BANG_TILDE2] = ACTIONS(1763), - [anon_sym_STAR_STAR2] = ACTIONS(1763), - [anon_sym_PLUS_PLUS2] = ACTIONS(1763), - [anon_sym_SLASH2] = ACTIONS(1763), - [anon_sym_mod2] = ACTIONS(1763), - [anon_sym_SLASH_SLASH2] = ACTIONS(1763), - [anon_sym_PLUS2] = ACTIONS(1763), - [anon_sym_bit_DASHshl2] = ACTIONS(1763), - [anon_sym_bit_DASHshr2] = ACTIONS(1763), - [anon_sym_bit_DASHand2] = ACTIONS(1763), - [anon_sym_bit_DASHxor2] = ACTIONS(1763), - [anon_sym_bit_DASHor2] = ACTIONS(1763), - [anon_sym_DOT_DOT2] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), - [sym_filesize_unit] = ACTIONS(1763), - [sym_duration_unit] = ACTIONS(1765), - [anon_sym_err_GT] = ACTIONS(1763), - [anon_sym_out_GT] = ACTIONS(1763), - [anon_sym_e_GT] = ACTIONS(1763), - [anon_sym_o_GT] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT] = ACTIONS(1763), - [anon_sym_err_GT_GT] = ACTIONS(1763), - [anon_sym_out_GT_GT] = ACTIONS(1763), - [anon_sym_e_GT_GT] = ACTIONS(1763), - [anon_sym_o_GT_GT] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1763), - [anon_sym_POUND] = ACTIONS(3), - }, - [823] = { - [sym_comment] = STATE(823), - [anon_sym_STAR_STAR] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1763), - [anon_sym_SLASH] = ACTIONS(1763), - [anon_sym_mod] = ACTIONS(1765), - [anon_sym_SLASH_SLASH] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_bit_DASHshl] = ACTIONS(1765), - [anon_sym_bit_DASHshr] = ACTIONS(1765), - [anon_sym_EQ_TILDE] = ACTIONS(1765), - [anon_sym_BANG_TILDE] = ACTIONS(1765), - [anon_sym_bit_DASHand] = ACTIONS(1765), - [anon_sym_bit_DASHxor] = ACTIONS(1765), - [anon_sym_bit_DASHor] = ACTIONS(1765), - [anon_sym_and] = ACTIONS(1765), - [anon_sym_xor] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), - [anon_sym_in] = ACTIONS(1765), - [anon_sym_not_DASHin] = ACTIONS(1765), - [anon_sym_starts_DASHwith] = ACTIONS(1765), - [anon_sym_ends_DASHwith] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1765), - [anon_sym_BANG_EQ] = ACTIONS(1765), - [anon_sym_LT] = ACTIONS(1763), - [anon_sym_LT_EQ] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1765), - [aux_sym_cmd_identifier_token41] = ACTIONS(1763), - [sym__newline] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_err_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_GT_PIPE] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), - [anon_sym_GT2] = ACTIONS(1763), - [anon_sym_DASH2] = ACTIONS(1763), - [anon_sym_in2] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_STAR2] = ACTIONS(1763), - [anon_sym_and2] = ACTIONS(1763), - [anon_sym_xor2] = ACTIONS(1763), - [anon_sym_or2] = ACTIONS(1763), - [anon_sym_not_DASHin2] = ACTIONS(1763), - [anon_sym_starts_DASHwith2] = ACTIONS(1763), - [anon_sym_ends_DASHwith2] = ACTIONS(1763), - [anon_sym_EQ_EQ2] = ACTIONS(1763), - [anon_sym_BANG_EQ2] = ACTIONS(1763), - [anon_sym_LT2] = ACTIONS(1763), - [anon_sym_LT_EQ2] = ACTIONS(1763), - [anon_sym_GT_EQ2] = ACTIONS(1763), - [anon_sym_EQ_TILDE2] = ACTIONS(1763), - [anon_sym_BANG_TILDE2] = ACTIONS(1763), - [anon_sym_STAR_STAR2] = ACTIONS(1763), - [anon_sym_PLUS_PLUS2] = ACTIONS(1763), - [anon_sym_SLASH2] = ACTIONS(1763), - [anon_sym_mod2] = ACTIONS(1763), - [anon_sym_SLASH_SLASH2] = ACTIONS(1763), - [anon_sym_PLUS2] = ACTIONS(1763), - [anon_sym_bit_DASHshl2] = ACTIONS(1763), - [anon_sym_bit_DASHshr2] = ACTIONS(1763), - [anon_sym_bit_DASHand2] = ACTIONS(1763), - [anon_sym_bit_DASHxor2] = ACTIONS(1763), - [anon_sym_bit_DASHor2] = ACTIONS(1763), - [anon_sym_DOT_DOT2] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), - [sym_filesize_unit] = ACTIONS(1763), - [sym_duration_unit] = ACTIONS(1765), - [anon_sym_err_GT] = ACTIONS(1763), - [anon_sym_out_GT] = ACTIONS(1763), - [anon_sym_e_GT] = ACTIONS(1763), - [anon_sym_o_GT] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT] = ACTIONS(1763), - [anon_sym_err_GT_GT] = ACTIONS(1763), - [anon_sym_out_GT_GT] = ACTIONS(1763), - [anon_sym_e_GT_GT] = ACTIONS(1763), - [anon_sym_o_GT_GT] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1763), - [anon_sym_POUND] = ACTIONS(3), - }, - [824] = { - [sym_comment] = STATE(824), - [ts_builtin_sym_end] = ACTIONS(1675), - [anon_sym_STAR_STAR] = ACTIONS(1675), - [anon_sym_PLUS_PLUS] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1673), - [anon_sym_mod] = ACTIONS(1675), - [anon_sym_SLASH_SLASH] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_bit_DASHshl] = ACTIONS(1675), - [anon_sym_bit_DASHshr] = ACTIONS(1675), - [anon_sym_EQ_TILDE] = ACTIONS(1675), - [anon_sym_BANG_TILDE] = ACTIONS(1675), - [anon_sym_bit_DASHand] = ACTIONS(1675), - [anon_sym_bit_DASHxor] = ACTIONS(1675), - [anon_sym_bit_DASHor] = ACTIONS(1675), - [anon_sym_and] = ACTIONS(1675), - [anon_sym_xor] = ACTIONS(1675), - [anon_sym_or] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [anon_sym_not_DASHin] = ACTIONS(1675), - [anon_sym_starts_DASHwith] = ACTIONS(1675), - [anon_sym_ends_DASHwith] = ACTIONS(1675), - [anon_sym_EQ_EQ] = ACTIONS(1675), - [anon_sym_BANG_EQ] = ACTIONS(1675), - [anon_sym_LT] = ACTIONS(1673), - [anon_sym_LT_EQ] = ACTIONS(1675), - [anon_sym_GT] = ACTIONS(1673), - [anon_sym_GT_EQ] = ACTIONS(1675), - [aux_sym_cmd_identifier_token41] = ACTIONS(1673), - [sym__newline] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1673), - [anon_sym_err_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_GT_PIPE] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_in2] = ACTIONS(1673), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1673), - [anon_sym_xor2] = ACTIONS(1673), - [anon_sym_or2] = ACTIONS(1673), - [anon_sym_not_DASHin2] = ACTIONS(1673), - [anon_sym_starts_DASHwith2] = ACTIONS(1673), - [anon_sym_ends_DASHwith2] = ACTIONS(1673), - [anon_sym_EQ_EQ2] = ACTIONS(1673), - [anon_sym_BANG_EQ2] = ACTIONS(1673), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1673), - [anon_sym_GT_EQ2] = ACTIONS(1673), - [anon_sym_EQ_TILDE2] = ACTIONS(1673), - [anon_sym_BANG_TILDE2] = ACTIONS(1673), - [anon_sym_STAR_STAR2] = ACTIONS(1673), - [anon_sym_PLUS_PLUS2] = ACTIONS(1673), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1673), - [anon_sym_SLASH_SLASH2] = ACTIONS(1673), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1673), - [anon_sym_bit_DASHshr2] = ACTIONS(1673), - [anon_sym_bit_DASHand2] = ACTIONS(1673), - [anon_sym_bit_DASHxor2] = ACTIONS(1673), - [anon_sym_bit_DASHor2] = ACTIONS(1673), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [sym_filesize_unit] = ACTIONS(1673), - [sym_duration_unit] = ACTIONS(1675), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1673), - [anon_sym_out_GT_GT] = ACTIONS(1673), - [anon_sym_e_GT_GT] = ACTIONS(1673), - [anon_sym_o_GT_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), - [anon_sym_POUND] = ACTIONS(3), - }, - [825] = { - [sym_comment] = STATE(825), - [anon_sym_STAR_STAR] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_SLASH] = ACTIONS(1621), - [anon_sym_mod] = ACTIONS(1623), - [anon_sym_SLASH_SLASH] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_bit_DASHshl] = ACTIONS(1623), - [anon_sym_bit_DASHshr] = ACTIONS(1623), - [anon_sym_EQ_TILDE] = ACTIONS(1623), - [anon_sym_BANG_TILDE] = ACTIONS(1623), - [anon_sym_bit_DASHand] = ACTIONS(1623), - [anon_sym_bit_DASHxor] = ACTIONS(1623), - [anon_sym_bit_DASHor] = ACTIONS(1623), - [anon_sym_and] = ACTIONS(1623), - [anon_sym_xor] = ACTIONS(1623), - [anon_sym_or] = ACTIONS(1623), - [anon_sym_in] = ACTIONS(1623), - [anon_sym_not_DASHin] = ACTIONS(1623), - [anon_sym_starts_DASHwith] = ACTIONS(1623), - [anon_sym_ends_DASHwith] = ACTIONS(1623), - [anon_sym_EQ_EQ] = ACTIONS(1623), - [anon_sym_BANG_EQ] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1621), - [anon_sym_LT_EQ] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1621), - [anon_sym_GT_EQ] = ACTIONS(1623), - [aux_sym_cmd_identifier_token41] = ACTIONS(1621), - [sym__newline] = ACTIONS(1621), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_PIPE] = ACTIONS(1621), - [anon_sym_err_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_GT_PIPE] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), - [anon_sym_GT2] = ACTIONS(1621), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_in2] = ACTIONS(1621), - [anon_sym_RBRACE] = ACTIONS(1621), - [anon_sym_STAR2] = ACTIONS(1621), - [anon_sym_and2] = ACTIONS(1621), - [anon_sym_xor2] = ACTIONS(1621), - [anon_sym_or2] = ACTIONS(1621), - [anon_sym_not_DASHin2] = ACTIONS(1621), - [anon_sym_starts_DASHwith2] = ACTIONS(1621), - [anon_sym_ends_DASHwith2] = ACTIONS(1621), - [anon_sym_EQ_EQ2] = ACTIONS(1621), - [anon_sym_BANG_EQ2] = ACTIONS(1621), - [anon_sym_LT2] = ACTIONS(1621), - [anon_sym_LT_EQ2] = ACTIONS(1621), - [anon_sym_GT_EQ2] = ACTIONS(1621), - [anon_sym_EQ_TILDE2] = ACTIONS(1621), - [anon_sym_BANG_TILDE2] = ACTIONS(1621), - [anon_sym_STAR_STAR2] = ACTIONS(1621), - [anon_sym_PLUS_PLUS2] = ACTIONS(1621), - [anon_sym_SLASH2] = ACTIONS(1621), - [anon_sym_mod2] = ACTIONS(1621), - [anon_sym_SLASH_SLASH2] = ACTIONS(1621), - [anon_sym_PLUS2] = ACTIONS(1621), - [anon_sym_bit_DASHshl2] = ACTIONS(1621), - [anon_sym_bit_DASHshr2] = ACTIONS(1621), - [anon_sym_bit_DASHand2] = ACTIONS(1621), - [anon_sym_bit_DASHxor2] = ACTIONS(1621), - [anon_sym_bit_DASHor2] = ACTIONS(1621), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [sym_filesize_unit] = ACTIONS(1621), - [sym_duration_unit] = ACTIONS(1623), - [anon_sym_err_GT] = ACTIONS(1621), - [anon_sym_out_GT] = ACTIONS(1621), - [anon_sym_e_GT] = ACTIONS(1621), - [anon_sym_o_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT] = ACTIONS(1621), - [anon_sym_err_GT_GT] = ACTIONS(1621), - [anon_sym_out_GT_GT] = ACTIONS(1621), - [anon_sym_e_GT_GT] = ACTIONS(1621), - [anon_sym_o_GT_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1621), - [anon_sym_POUND] = ACTIONS(3), - }, - [826] = { - [sym_comment] = STATE(826), - [ts_builtin_sym_end] = ACTIONS(1721), + [ts_builtin_sym_end] = ACTIONS(1719), [anon_sym_STAR_STAR] = ACTIONS(3049), [anon_sym_PLUS_PLUS] = ACTIONS(3049), [anon_sym_STAR] = ACTIONS(3051), @@ -162230,1889 +162158,2265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(3051), [anon_sym_GT_EQ] = ACTIONS(3049), [aux_sym_cmd_identifier_token41] = ACTIONS(3053), - [sym__newline] = ACTIONS(1709), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_PIPE] = ACTIONS(1709), - [anon_sym_err_GT_PIPE] = ACTIONS(1709), - [anon_sym_out_GT_PIPE] = ACTIONS(1709), - [anon_sym_e_GT_PIPE] = ACTIONS(1709), - [anon_sym_o_GT_PIPE] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), - [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_GT2] = ACTIONS(1709), - [anon_sym_DASH2] = ACTIONS(1709), - [anon_sym_in2] = ACTIONS(1709), - [anon_sym_STAR2] = ACTIONS(1709), - [anon_sym_and2] = ACTIONS(1709), - [anon_sym_xor2] = ACTIONS(1709), - [anon_sym_or2] = ACTIONS(1709), - [anon_sym_not_DASHin2] = ACTIONS(1709), - [anon_sym_starts_DASHwith2] = ACTIONS(1709), - [anon_sym_ends_DASHwith2] = ACTIONS(1709), - [anon_sym_EQ_EQ2] = ACTIONS(1709), - [anon_sym_BANG_EQ2] = ACTIONS(1709), - [anon_sym_LT2] = ACTIONS(1709), - [anon_sym_LT_EQ2] = ACTIONS(1709), - [anon_sym_GT_EQ2] = ACTIONS(1709), - [anon_sym_EQ_TILDE2] = ACTIONS(1709), - [anon_sym_BANG_TILDE2] = ACTIONS(1709), - [anon_sym_STAR_STAR2] = ACTIONS(1709), - [anon_sym_PLUS_PLUS2] = ACTIONS(1709), - [anon_sym_SLASH2] = ACTIONS(1709), - [anon_sym_mod2] = ACTIONS(1709), - [anon_sym_SLASH_SLASH2] = ACTIONS(1709), - [anon_sym_PLUS2] = ACTIONS(1709), - [anon_sym_bit_DASHshl2] = ACTIONS(1709), - [anon_sym_bit_DASHshr2] = ACTIONS(1709), - [anon_sym_bit_DASHand2] = ACTIONS(1709), - [anon_sym_bit_DASHxor2] = ACTIONS(1709), - [anon_sym_bit_DASHor2] = ACTIONS(1709), + [sym__newline] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_err_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_GT_PIPE] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), + [anon_sym_GT2] = ACTIONS(1707), + [anon_sym_DASH2] = ACTIONS(1707), + [anon_sym_in2] = ACTIONS(1707), + [anon_sym_STAR2] = ACTIONS(1707), + [anon_sym_and2] = ACTIONS(1707), + [anon_sym_xor2] = ACTIONS(1707), + [anon_sym_or2] = ACTIONS(1707), + [anon_sym_not_DASHin2] = ACTIONS(1707), + [anon_sym_starts_DASHwith2] = ACTIONS(1707), + [anon_sym_ends_DASHwith2] = ACTIONS(1707), + [anon_sym_EQ_EQ2] = ACTIONS(1707), + [anon_sym_BANG_EQ2] = ACTIONS(1707), + [anon_sym_LT2] = ACTIONS(1707), + [anon_sym_LT_EQ2] = ACTIONS(1707), + [anon_sym_GT_EQ2] = ACTIONS(1707), + [anon_sym_EQ_TILDE2] = ACTIONS(1707), + [anon_sym_BANG_TILDE2] = ACTIONS(1707), + [anon_sym_STAR_STAR2] = ACTIONS(1707), + [anon_sym_PLUS_PLUS2] = ACTIONS(1707), + [anon_sym_SLASH2] = ACTIONS(1707), + [anon_sym_mod2] = ACTIONS(1707), + [anon_sym_SLASH_SLASH2] = ACTIONS(1707), + [anon_sym_PLUS2] = ACTIONS(1707), + [anon_sym_bit_DASHshl2] = ACTIONS(1707), + [anon_sym_bit_DASHshr2] = ACTIONS(1707), + [anon_sym_bit_DASHand2] = ACTIONS(1707), + [anon_sym_bit_DASHxor2] = ACTIONS(1707), + [anon_sym_bit_DASHor2] = ACTIONS(1707), [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(1709), - [anon_sym_out_GT] = ACTIONS(1709), - [anon_sym_e_GT] = ACTIONS(1709), - [anon_sym_o_GT] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT] = ACTIONS(1709), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), - [anon_sym_o_PLUSe_GT] = ACTIONS(1709), - [anon_sym_e_PLUSo_GT] = ACTIONS(1709), - [anon_sym_err_GT_GT] = ACTIONS(1709), - [anon_sym_out_GT_GT] = ACTIONS(1709), - [anon_sym_e_GT_GT] = ACTIONS(1709), - [anon_sym_o_GT_GT] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1709), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1709), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1709), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1709), + [anon_sym_err_GT] = ACTIONS(1707), + [anon_sym_out_GT] = ACTIONS(1707), + [anon_sym_e_GT] = ACTIONS(1707), + [anon_sym_o_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT] = ACTIONS(1707), + [anon_sym_err_GT_GT] = ACTIONS(1707), + [anon_sym_out_GT_GT] = ACTIONS(1707), + [anon_sym_e_GT_GT] = ACTIONS(1707), + [anon_sym_o_GT_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), + [anon_sym_POUND] = ACTIONS(3), + }, + [823] = { + [sym_comment] = STATE(823), + [anon_sym_STAR_STAR] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1761), + [anon_sym_mod] = ACTIONS(1763), + [anon_sym_SLASH_SLASH] = ACTIONS(1763), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_bit_DASHshl] = ACTIONS(1763), + [anon_sym_bit_DASHshr] = ACTIONS(1763), + [anon_sym_EQ_TILDE] = ACTIONS(1763), + [anon_sym_BANG_TILDE] = ACTIONS(1763), + [anon_sym_bit_DASHand] = ACTIONS(1763), + [anon_sym_bit_DASHxor] = ACTIONS(1763), + [anon_sym_bit_DASHor] = ACTIONS(1763), + [anon_sym_and] = ACTIONS(1763), + [anon_sym_xor] = ACTIONS(1763), + [anon_sym_or] = ACTIONS(1763), + [anon_sym_in] = ACTIONS(1763), + [anon_sym_not_DASHin] = ACTIONS(1763), + [anon_sym_starts_DASHwith] = ACTIONS(1763), + [anon_sym_ends_DASHwith] = ACTIONS(1763), + [anon_sym_EQ_EQ] = ACTIONS(1763), + [anon_sym_BANG_EQ] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1761), + [anon_sym_LT_EQ] = ACTIONS(1763), + [anon_sym_GT] = ACTIONS(1761), + [anon_sym_GT_EQ] = ACTIONS(1763), + [aux_sym_cmd_identifier_token41] = ACTIONS(1761), + [sym__newline] = ACTIONS(1761), + [anon_sym_SEMI] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1761), + [anon_sym_err_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_GT_PIPE] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), + [anon_sym_RPAREN] = ACTIONS(1761), + [anon_sym_GT2] = ACTIONS(1761), + [anon_sym_DASH2] = ACTIONS(1761), + [anon_sym_in2] = ACTIONS(1761), + [anon_sym_STAR2] = ACTIONS(1761), + [anon_sym_and2] = ACTIONS(1761), + [anon_sym_xor2] = ACTIONS(1761), + [anon_sym_or2] = ACTIONS(1761), + [anon_sym_not_DASHin2] = ACTIONS(1761), + [anon_sym_starts_DASHwith2] = ACTIONS(1761), + [anon_sym_ends_DASHwith2] = ACTIONS(1761), + [anon_sym_EQ_EQ2] = ACTIONS(1761), + [anon_sym_BANG_EQ2] = ACTIONS(1761), + [anon_sym_LT2] = ACTIONS(1761), + [anon_sym_LT_EQ2] = ACTIONS(1761), + [anon_sym_GT_EQ2] = ACTIONS(1761), + [anon_sym_EQ_TILDE2] = ACTIONS(1761), + [anon_sym_BANG_TILDE2] = ACTIONS(1761), + [anon_sym_STAR_STAR2] = ACTIONS(1761), + [anon_sym_PLUS_PLUS2] = ACTIONS(1761), + [anon_sym_SLASH2] = ACTIONS(1761), + [anon_sym_mod2] = ACTIONS(1761), + [anon_sym_SLASH_SLASH2] = ACTIONS(1761), + [anon_sym_PLUS2] = ACTIONS(1761), + [anon_sym_bit_DASHshl2] = ACTIONS(1761), + [anon_sym_bit_DASHshr2] = ACTIONS(1761), + [anon_sym_bit_DASHand2] = ACTIONS(1761), + [anon_sym_bit_DASHxor2] = ACTIONS(1761), + [anon_sym_bit_DASHor2] = ACTIONS(1761), + [anon_sym_DOT_DOT2] = ACTIONS(1761), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), + [sym_filesize_unit] = ACTIONS(1761), + [sym_duration_unit] = ACTIONS(1763), + [anon_sym_err_GT] = ACTIONS(1761), + [anon_sym_out_GT] = ACTIONS(1761), + [anon_sym_e_GT] = ACTIONS(1761), + [anon_sym_o_GT] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT] = ACTIONS(1761), + [anon_sym_err_GT_GT] = ACTIONS(1761), + [anon_sym_out_GT_GT] = ACTIONS(1761), + [anon_sym_e_GT_GT] = ACTIONS(1761), + [anon_sym_o_GT_GT] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1761), + [anon_sym_POUND] = ACTIONS(3), + }, + [824] = { + [sym_comment] = STATE(824), + [anon_sym_STAR_STAR] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_mod] = ACTIONS(1587), + [anon_sym_SLASH_SLASH] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_bit_DASHshl] = ACTIONS(1587), + [anon_sym_bit_DASHshr] = ACTIONS(1587), + [anon_sym_EQ_TILDE] = ACTIONS(1587), + [anon_sym_BANG_TILDE] = ACTIONS(1587), + [anon_sym_bit_DASHand] = ACTIONS(1587), + [anon_sym_bit_DASHxor] = ACTIONS(1587), + [anon_sym_bit_DASHor] = ACTIONS(1587), + [anon_sym_and] = ACTIONS(1587), + [anon_sym_xor] = ACTIONS(1587), + [anon_sym_or] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(1587), + [anon_sym_not_DASHin] = ACTIONS(1587), + [anon_sym_starts_DASHwith] = ACTIONS(1587), + [anon_sym_ends_DASHwith] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(1587), + [anon_sym_BANG_EQ] = ACTIONS(1587), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_LT_EQ] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1587), + [aux_sym_cmd_identifier_token41] = ACTIONS(1585), + [sym__newline] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_err_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_GT_PIPE] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(1585), + [anon_sym_GT2] = ACTIONS(1585), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_in2] = ACTIONS(1585), + [anon_sym_STAR2] = ACTIONS(1585), + [anon_sym_and2] = ACTIONS(1585), + [anon_sym_xor2] = ACTIONS(1585), + [anon_sym_or2] = ACTIONS(1585), + [anon_sym_not_DASHin2] = ACTIONS(1585), + [anon_sym_starts_DASHwith2] = ACTIONS(1585), + [anon_sym_ends_DASHwith2] = ACTIONS(1585), + [anon_sym_EQ_EQ2] = ACTIONS(1585), + [anon_sym_BANG_EQ2] = ACTIONS(1585), + [anon_sym_LT2] = ACTIONS(1585), + [anon_sym_LT_EQ2] = ACTIONS(1585), + [anon_sym_GT_EQ2] = ACTIONS(1585), + [anon_sym_EQ_TILDE2] = ACTIONS(1585), + [anon_sym_BANG_TILDE2] = ACTIONS(1585), + [anon_sym_STAR_STAR2] = ACTIONS(1585), + [anon_sym_PLUS_PLUS2] = ACTIONS(1585), + [anon_sym_SLASH2] = ACTIONS(1585), + [anon_sym_mod2] = ACTIONS(1585), + [anon_sym_SLASH_SLASH2] = ACTIONS(1585), + [anon_sym_PLUS2] = ACTIONS(1585), + [anon_sym_bit_DASHshl2] = ACTIONS(1585), + [anon_sym_bit_DASHshr2] = ACTIONS(1585), + [anon_sym_bit_DASHand2] = ACTIONS(1585), + [anon_sym_bit_DASHxor2] = ACTIONS(1585), + [anon_sym_bit_DASHor2] = ACTIONS(1585), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [sym_filesize_unit] = ACTIONS(1585), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1585), + [anon_sym_out_GT_GT] = ACTIONS(1585), + [anon_sym_e_GT_GT] = ACTIONS(1585), + [anon_sym_o_GT_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(3), + }, + [825] = { + [sym_comment] = STATE(825), + [ts_builtin_sym_end] = ACTIONS(1683), + [anon_sym_STAR_STAR] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1681), + [anon_sym_SLASH] = ACTIONS(1681), + [anon_sym_mod] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_bit_DASHshl] = ACTIONS(1683), + [anon_sym_bit_DASHshr] = ACTIONS(1683), + [anon_sym_EQ_TILDE] = ACTIONS(1683), + [anon_sym_BANG_TILDE] = ACTIONS(1683), + [anon_sym_bit_DASHand] = ACTIONS(1683), + [anon_sym_bit_DASHxor] = ACTIONS(1683), + [anon_sym_bit_DASHor] = ACTIONS(1683), + [anon_sym_and] = ACTIONS(1683), + [anon_sym_xor] = ACTIONS(1683), + [anon_sym_or] = ACTIONS(1683), + [anon_sym_in] = ACTIONS(1683), + [anon_sym_not_DASHin] = ACTIONS(1683), + [anon_sym_starts_DASHwith] = ACTIONS(1683), + [anon_sym_ends_DASHwith] = ACTIONS(1683), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(1683), + [aux_sym_cmd_identifier_token41] = ACTIONS(1681), + [sym__newline] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_err_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_GT_PIPE] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), + [anon_sym_GT2] = ACTIONS(1681), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_in2] = ACTIONS(1681), + [anon_sym_STAR2] = ACTIONS(1681), + [anon_sym_and2] = ACTIONS(1681), + [anon_sym_xor2] = ACTIONS(1681), + [anon_sym_or2] = ACTIONS(1681), + [anon_sym_not_DASHin2] = ACTIONS(1681), + [anon_sym_starts_DASHwith2] = ACTIONS(1681), + [anon_sym_ends_DASHwith2] = ACTIONS(1681), + [anon_sym_EQ_EQ2] = ACTIONS(1681), + [anon_sym_BANG_EQ2] = ACTIONS(1681), + [anon_sym_LT2] = ACTIONS(1681), + [anon_sym_LT_EQ2] = ACTIONS(1681), + [anon_sym_GT_EQ2] = ACTIONS(1681), + [anon_sym_EQ_TILDE2] = ACTIONS(1681), + [anon_sym_BANG_TILDE2] = ACTIONS(1681), + [anon_sym_STAR_STAR2] = ACTIONS(1681), + [anon_sym_PLUS_PLUS2] = ACTIONS(1681), + [anon_sym_SLASH2] = ACTIONS(1681), + [anon_sym_mod2] = ACTIONS(1681), + [anon_sym_SLASH_SLASH2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1681), + [anon_sym_bit_DASHshl2] = ACTIONS(1681), + [anon_sym_bit_DASHshr2] = ACTIONS(1681), + [anon_sym_bit_DASHand2] = ACTIONS(1681), + [anon_sym_bit_DASHxor2] = ACTIONS(1681), + [anon_sym_bit_DASHor2] = ACTIONS(1681), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [sym_filesize_unit] = ACTIONS(1681), + [sym_duration_unit] = ACTIONS(1683), + [anon_sym_err_GT] = ACTIONS(1681), + [anon_sym_out_GT] = ACTIONS(1681), + [anon_sym_e_GT] = ACTIONS(1681), + [anon_sym_o_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT] = ACTIONS(1681), + [anon_sym_err_GT_GT] = ACTIONS(1681), + [anon_sym_out_GT_GT] = ACTIONS(1681), + [anon_sym_e_GT_GT] = ACTIONS(1681), + [anon_sym_o_GT_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), + [anon_sym_POUND] = ACTIONS(3), + }, + [826] = { + [sym_comment] = STATE(826), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_bit_DASHshl] = ACTIONS(1575), + [anon_sym_bit_DASHshr] = ACTIONS(1575), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_BANG_TILDE] = ACTIONS(1575), + [anon_sym_bit_DASHand] = ACTIONS(1575), + [anon_sym_bit_DASHxor] = ACTIONS(1575), + [anon_sym_bit_DASHor] = ACTIONS(1575), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_not_DASHin] = ACTIONS(1575), + [anon_sym_starts_DASHwith] = ACTIONS(1575), + [anon_sym_ends_DASHwith] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1575), + [aux_sym_cmd_identifier_token41] = ACTIONS(1573), + [sym__newline] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_err_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_GT_PIPE] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), + [anon_sym_RPAREN] = ACTIONS(1573), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1573), + [anon_sym_xor2] = ACTIONS(1573), + [anon_sym_or2] = ACTIONS(1573), + [anon_sym_not_DASHin2] = ACTIONS(1573), + [anon_sym_starts_DASHwith2] = ACTIONS(1573), + [anon_sym_ends_DASHwith2] = ACTIONS(1573), + [anon_sym_EQ_EQ2] = ACTIONS(1573), + [anon_sym_BANG_EQ2] = ACTIONS(1573), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1573), + [anon_sym_GT_EQ2] = ACTIONS(1573), + [anon_sym_EQ_TILDE2] = ACTIONS(1573), + [anon_sym_BANG_TILDE2] = ACTIONS(1573), + [anon_sym_STAR_STAR2] = ACTIONS(1573), + [anon_sym_PLUS_PLUS2] = ACTIONS(1573), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1573), + [anon_sym_SLASH_SLASH2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1573), + [anon_sym_bit_DASHshr2] = ACTIONS(1573), + [anon_sym_bit_DASHand2] = ACTIONS(1573), + [anon_sym_bit_DASHxor2] = ACTIONS(1573), + [anon_sym_bit_DASHor2] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1573), + [anon_sym_out_GT_GT] = ACTIONS(1573), + [anon_sym_e_GT_GT] = ACTIONS(1573), + [anon_sym_o_GT_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), [anon_sym_POUND] = ACTIONS(3), }, [827] = { [sym_comment] = STATE(827), - [anon_sym_STAR_STAR] = ACTIONS(3063), - [anon_sym_PLUS_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_SLASH] = ACTIONS(3065), - [anon_sym_mod] = ACTIONS(3063), - [anon_sym_SLASH_SLASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_bit_DASHshl] = ACTIONS(3063), - [anon_sym_bit_DASHshr] = ACTIONS(3063), - [anon_sym_EQ_TILDE] = ACTIONS(3063), - [anon_sym_BANG_TILDE] = ACTIONS(3063), - [anon_sym_bit_DASHand] = ACTIONS(3063), - [anon_sym_bit_DASHxor] = ACTIONS(3063), - [anon_sym_bit_DASHor] = ACTIONS(3063), - [anon_sym_and] = ACTIONS(3063), - [anon_sym_xor] = ACTIONS(3063), - [anon_sym_or] = ACTIONS(3063), - [anon_sym_in] = ACTIONS(3063), - [anon_sym_not_DASHin] = ACTIONS(3063), - [anon_sym_starts_DASHwith] = ACTIONS(3063), - [anon_sym_ends_DASHwith] = ACTIONS(3063), - [anon_sym_EQ_EQ] = ACTIONS(3063), - [anon_sym_BANG_EQ] = ACTIONS(3063), - [anon_sym_LT] = ACTIONS(3065), - [anon_sym_LT_EQ] = ACTIONS(3063), - [anon_sym_GT] = ACTIONS(3065), - [anon_sym_GT_EQ] = ACTIONS(3063), - [aux_sym_cmd_identifier_token41] = ACTIONS(3067), - [sym__newline] = ACTIONS(1709), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_PIPE] = ACTIONS(1709), - [anon_sym_err_GT_PIPE] = ACTIONS(1709), - [anon_sym_out_GT_PIPE] = ACTIONS(1709), - [anon_sym_e_GT_PIPE] = ACTIONS(1709), - [anon_sym_o_GT_PIPE] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), - [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_GT2] = ACTIONS(1709), - [anon_sym_DASH2] = ACTIONS(1709), - [anon_sym_in2] = ACTIONS(1709), - [anon_sym_RBRACE] = ACTIONS(1709), - [anon_sym_STAR2] = ACTIONS(1709), - [anon_sym_and2] = ACTIONS(1709), - [anon_sym_xor2] = ACTIONS(1709), - [anon_sym_or2] = ACTIONS(1709), - [anon_sym_not_DASHin2] = ACTIONS(1709), - [anon_sym_starts_DASHwith2] = ACTIONS(1709), - [anon_sym_ends_DASHwith2] = ACTIONS(1709), - [anon_sym_EQ_EQ2] = ACTIONS(1709), - [anon_sym_BANG_EQ2] = ACTIONS(1709), - [anon_sym_LT2] = ACTIONS(1709), - [anon_sym_LT_EQ2] = ACTIONS(1709), - [anon_sym_GT_EQ2] = ACTIONS(1709), - [anon_sym_EQ_TILDE2] = ACTIONS(1709), - [anon_sym_BANG_TILDE2] = ACTIONS(1709), - [anon_sym_STAR_STAR2] = ACTIONS(1709), - [anon_sym_PLUS_PLUS2] = ACTIONS(1709), - [anon_sym_SLASH2] = ACTIONS(1709), - [anon_sym_mod2] = ACTIONS(1709), - [anon_sym_SLASH_SLASH2] = ACTIONS(1709), - [anon_sym_PLUS2] = ACTIONS(1709), - [anon_sym_bit_DASHshl2] = ACTIONS(1709), - [anon_sym_bit_DASHshr2] = ACTIONS(1709), - [anon_sym_bit_DASHand2] = ACTIONS(1709), - [anon_sym_bit_DASHxor2] = ACTIONS(1709), - [anon_sym_bit_DASHor2] = ACTIONS(1709), - [anon_sym_DOT_DOT2] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3039), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3039), - [sym_filesize_unit] = ACTIONS(3069), - [sym_duration_unit] = ACTIONS(3071), - [anon_sym_err_GT] = ACTIONS(1709), - [anon_sym_out_GT] = ACTIONS(1709), - [anon_sym_e_GT] = ACTIONS(1709), - [anon_sym_o_GT] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT] = ACTIONS(1709), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), - [anon_sym_o_PLUSe_GT] = ACTIONS(1709), - [anon_sym_e_PLUSo_GT] = ACTIONS(1709), - [anon_sym_err_GT_GT] = ACTIONS(1709), - [anon_sym_out_GT_GT] = ACTIONS(1709), - [anon_sym_e_GT_GT] = ACTIONS(1709), - [anon_sym_o_GT_GT] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1709), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1709), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1709), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1709), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_bit_DASHshl] = ACTIONS(1575), + [anon_sym_bit_DASHshr] = ACTIONS(1575), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_BANG_TILDE] = ACTIONS(1575), + [anon_sym_bit_DASHand] = ACTIONS(1575), + [anon_sym_bit_DASHxor] = ACTIONS(1575), + [anon_sym_bit_DASHor] = ACTIONS(1575), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_not_DASHin] = ACTIONS(1575), + [anon_sym_starts_DASHwith] = ACTIONS(1575), + [anon_sym_ends_DASHwith] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1575), + [aux_sym_cmd_identifier_token41] = ACTIONS(1573), + [sym__newline] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_err_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_GT_PIPE] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1573), + [anon_sym_xor2] = ACTIONS(1573), + [anon_sym_or2] = ACTIONS(1573), + [anon_sym_not_DASHin2] = ACTIONS(1573), + [anon_sym_starts_DASHwith2] = ACTIONS(1573), + [anon_sym_ends_DASHwith2] = ACTIONS(1573), + [anon_sym_EQ_EQ2] = ACTIONS(1573), + [anon_sym_BANG_EQ2] = ACTIONS(1573), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1573), + [anon_sym_GT_EQ2] = ACTIONS(1573), + [anon_sym_EQ_TILDE2] = ACTIONS(1573), + [anon_sym_BANG_TILDE2] = ACTIONS(1573), + [anon_sym_STAR_STAR2] = ACTIONS(1573), + [anon_sym_PLUS_PLUS2] = ACTIONS(1573), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1573), + [anon_sym_SLASH_SLASH2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1573), + [anon_sym_bit_DASHshr2] = ACTIONS(1573), + [anon_sym_bit_DASHand2] = ACTIONS(1573), + [anon_sym_bit_DASHxor2] = ACTIONS(1573), + [anon_sym_bit_DASHor2] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(2910), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1573), + [anon_sym_out_GT_GT] = ACTIONS(1573), + [anon_sym_e_GT_GT] = ACTIONS(1573), + [anon_sym_o_GT_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), [anon_sym_POUND] = ACTIONS(3), }, [828] = { [sym_comment] = STATE(828), - [anon_sym_STAR_STAR] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_SLASH_SLASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_bit_DASHshl] = ACTIONS(1609), - [anon_sym_bit_DASHshr] = ACTIONS(1609), - [anon_sym_EQ_TILDE] = ACTIONS(1609), - [anon_sym_BANG_TILDE] = ACTIONS(1609), - [anon_sym_bit_DASHand] = ACTIONS(1609), - [anon_sym_bit_DASHxor] = ACTIONS(1609), - [anon_sym_bit_DASHor] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(1609), - [anon_sym_not_DASHin] = ACTIONS(1609), - [anon_sym_starts_DASHwith] = ACTIONS(1609), - [anon_sym_ends_DASHwith] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1609), - [anon_sym_BANG_EQ] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1609), - [aux_sym_cmd_identifier_token41] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(3029), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1607), - [anon_sym_out_GT_GT] = ACTIONS(1607), - [anon_sym_e_GT_GT] = ACTIONS(1607), - [anon_sym_o_GT_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [anon_sym_STAR_STAR] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_mod] = ACTIONS(1587), + [anon_sym_SLASH_SLASH] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_bit_DASHshl] = ACTIONS(1587), + [anon_sym_bit_DASHshr] = ACTIONS(1587), + [anon_sym_EQ_TILDE] = ACTIONS(1587), + [anon_sym_BANG_TILDE] = ACTIONS(1587), + [anon_sym_bit_DASHand] = ACTIONS(1587), + [anon_sym_bit_DASHxor] = ACTIONS(1587), + [anon_sym_bit_DASHor] = ACTIONS(1587), + [anon_sym_and] = ACTIONS(1587), + [anon_sym_xor] = ACTIONS(1587), + [anon_sym_or] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(1587), + [anon_sym_not_DASHin] = ACTIONS(1587), + [anon_sym_starts_DASHwith] = ACTIONS(1587), + [anon_sym_ends_DASHwith] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(1587), + [anon_sym_BANG_EQ] = ACTIONS(1587), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_LT_EQ] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1587), + [aux_sym_cmd_identifier_token41] = ACTIONS(1585), + [sym__newline] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_err_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_GT_PIPE] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), + [anon_sym_GT2] = ACTIONS(1585), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_in2] = ACTIONS(1585), + [anon_sym_RBRACE] = ACTIONS(1585), + [anon_sym_STAR2] = ACTIONS(1585), + [anon_sym_and2] = ACTIONS(1585), + [anon_sym_xor2] = ACTIONS(1585), + [anon_sym_or2] = ACTIONS(1585), + [anon_sym_not_DASHin2] = ACTIONS(1585), + [anon_sym_starts_DASHwith2] = ACTIONS(1585), + [anon_sym_ends_DASHwith2] = ACTIONS(1585), + [anon_sym_EQ_EQ2] = ACTIONS(1585), + [anon_sym_BANG_EQ2] = ACTIONS(1585), + [anon_sym_LT2] = ACTIONS(1585), + [anon_sym_LT_EQ2] = ACTIONS(1585), + [anon_sym_GT_EQ2] = ACTIONS(1585), + [anon_sym_EQ_TILDE2] = ACTIONS(1585), + [anon_sym_BANG_TILDE2] = ACTIONS(1585), + [anon_sym_STAR_STAR2] = ACTIONS(1585), + [anon_sym_PLUS_PLUS2] = ACTIONS(1585), + [anon_sym_SLASH2] = ACTIONS(1585), + [anon_sym_mod2] = ACTIONS(1585), + [anon_sym_SLASH_SLASH2] = ACTIONS(1585), + [anon_sym_PLUS2] = ACTIONS(1585), + [anon_sym_bit_DASHshl2] = ACTIONS(1585), + [anon_sym_bit_DASHshr2] = ACTIONS(1585), + [anon_sym_bit_DASHand2] = ACTIONS(1585), + [anon_sym_bit_DASHxor2] = ACTIONS(1585), + [anon_sym_bit_DASHor2] = ACTIONS(1585), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [sym_filesize_unit] = ACTIONS(1585), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1585), + [anon_sym_out_GT_GT] = ACTIONS(1585), + [anon_sym_e_GT_GT] = ACTIONS(1585), + [anon_sym_o_GT_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1585), [anon_sym_POUND] = ACTIONS(3), }, [829] = { [sym_comment] = STATE(829), - [anon_sym_STAR_STAR] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_SLASH] = ACTIONS(1621), - [anon_sym_mod] = ACTIONS(1623), - [anon_sym_SLASH_SLASH] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_bit_DASHshl] = ACTIONS(1623), - [anon_sym_bit_DASHshr] = ACTIONS(1623), - [anon_sym_EQ_TILDE] = ACTIONS(1623), - [anon_sym_BANG_TILDE] = ACTIONS(1623), - [anon_sym_bit_DASHand] = ACTIONS(1623), - [anon_sym_bit_DASHxor] = ACTIONS(1623), - [anon_sym_bit_DASHor] = ACTIONS(1623), - [anon_sym_and] = ACTIONS(1623), - [anon_sym_xor] = ACTIONS(1623), - [anon_sym_or] = ACTIONS(1623), - [anon_sym_in] = ACTIONS(1623), - [anon_sym_not_DASHin] = ACTIONS(1623), - [anon_sym_starts_DASHwith] = ACTIONS(1623), - [anon_sym_ends_DASHwith] = ACTIONS(1623), - [anon_sym_EQ_EQ] = ACTIONS(1623), - [anon_sym_BANG_EQ] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1621), - [anon_sym_LT_EQ] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1621), - [anon_sym_GT_EQ] = ACTIONS(1623), - [aux_sym_cmd_identifier_token41] = ACTIONS(1621), - [sym__newline] = ACTIONS(1621), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_PIPE] = ACTIONS(1621), - [anon_sym_err_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_GT_PIPE] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), - [anon_sym_RPAREN] = ACTIONS(1621), - [anon_sym_GT2] = ACTIONS(1621), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_in2] = ACTIONS(1621), - [anon_sym_STAR2] = ACTIONS(1621), - [anon_sym_and2] = ACTIONS(1621), - [anon_sym_xor2] = ACTIONS(1621), - [anon_sym_or2] = ACTIONS(1621), - [anon_sym_not_DASHin2] = ACTIONS(1621), - [anon_sym_starts_DASHwith2] = ACTIONS(1621), - [anon_sym_ends_DASHwith2] = ACTIONS(1621), - [anon_sym_EQ_EQ2] = ACTIONS(1621), - [anon_sym_BANG_EQ2] = ACTIONS(1621), - [anon_sym_LT2] = ACTIONS(1621), - [anon_sym_LT_EQ2] = ACTIONS(1621), - [anon_sym_GT_EQ2] = ACTIONS(1621), - [anon_sym_EQ_TILDE2] = ACTIONS(1621), - [anon_sym_BANG_TILDE2] = ACTIONS(1621), - [anon_sym_STAR_STAR2] = ACTIONS(1621), - [anon_sym_PLUS_PLUS2] = ACTIONS(1621), - [anon_sym_SLASH2] = ACTIONS(1621), - [anon_sym_mod2] = ACTIONS(1621), - [anon_sym_SLASH_SLASH2] = ACTIONS(1621), - [anon_sym_PLUS2] = ACTIONS(1621), - [anon_sym_bit_DASHshl2] = ACTIONS(1621), - [anon_sym_bit_DASHshr2] = ACTIONS(1621), - [anon_sym_bit_DASHand2] = ACTIONS(1621), - [anon_sym_bit_DASHxor2] = ACTIONS(1621), - [anon_sym_bit_DASHor2] = ACTIONS(1621), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [sym_filesize_unit] = ACTIONS(1621), - [sym_duration_unit] = ACTIONS(1623), - [anon_sym_err_GT] = ACTIONS(1621), - [anon_sym_out_GT] = ACTIONS(1621), - [anon_sym_e_GT] = ACTIONS(1621), - [anon_sym_o_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT] = ACTIONS(1621), - [anon_sym_err_GT_GT] = ACTIONS(1621), - [anon_sym_out_GT_GT] = ACTIONS(1621), - [anon_sym_e_GT_GT] = ACTIONS(1621), - [anon_sym_o_GT_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1621), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_bit_DASHshl] = ACTIONS(1575), + [anon_sym_bit_DASHshr] = ACTIONS(1575), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_BANG_TILDE] = ACTIONS(1575), + [anon_sym_bit_DASHand] = ACTIONS(1575), + [anon_sym_bit_DASHxor] = ACTIONS(1575), + [anon_sym_bit_DASHor] = ACTIONS(1575), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_not_DASHin] = ACTIONS(1575), + [anon_sym_starts_DASHwith] = ACTIONS(1575), + [anon_sym_ends_DASHwith] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1575), + [aux_sym_cmd_identifier_token41] = ACTIONS(1573), + [sym__newline] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_err_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_GT_PIPE] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1573), + [anon_sym_xor2] = ACTIONS(1573), + [anon_sym_or2] = ACTIONS(1573), + [anon_sym_not_DASHin2] = ACTIONS(1573), + [anon_sym_starts_DASHwith2] = ACTIONS(1573), + [anon_sym_ends_DASHwith2] = ACTIONS(1573), + [anon_sym_EQ_EQ2] = ACTIONS(1573), + [anon_sym_BANG_EQ2] = ACTIONS(1573), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1573), + [anon_sym_GT_EQ2] = ACTIONS(1573), + [anon_sym_EQ_TILDE2] = ACTIONS(1573), + [anon_sym_BANG_TILDE2] = ACTIONS(1573), + [anon_sym_STAR_STAR2] = ACTIONS(1573), + [anon_sym_PLUS_PLUS2] = ACTIONS(1573), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1573), + [anon_sym_SLASH_SLASH2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1573), + [anon_sym_bit_DASHshr2] = ACTIONS(1573), + [anon_sym_bit_DASHand2] = ACTIONS(1573), + [anon_sym_bit_DASHxor2] = ACTIONS(1573), + [anon_sym_bit_DASHor2] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT] = ACTIONS(3063), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(3065), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1573), + [anon_sym_out_GT_GT] = ACTIONS(1573), + [anon_sym_e_GT_GT] = ACTIONS(1573), + [anon_sym_o_GT_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), [anon_sym_POUND] = ACTIONS(3), }, [830] = { [sym_comment] = STATE(830), - [anon_sym_STAR_STAR] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_SLASH] = ACTIONS(1621), - [anon_sym_mod] = ACTIONS(1623), - [anon_sym_SLASH_SLASH] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_bit_DASHshl] = ACTIONS(1623), - [anon_sym_bit_DASHshr] = ACTIONS(1623), - [anon_sym_EQ_TILDE] = ACTIONS(1623), - [anon_sym_BANG_TILDE] = ACTIONS(1623), - [anon_sym_bit_DASHand] = ACTIONS(1623), - [anon_sym_bit_DASHxor] = ACTIONS(1623), - [anon_sym_bit_DASHor] = ACTIONS(1623), - [anon_sym_and] = ACTIONS(1623), - [anon_sym_xor] = ACTIONS(1623), - [anon_sym_or] = ACTIONS(1623), - [anon_sym_in] = ACTIONS(1623), - [anon_sym_not_DASHin] = ACTIONS(1623), - [anon_sym_starts_DASHwith] = ACTIONS(1623), - [anon_sym_ends_DASHwith] = ACTIONS(1623), - [anon_sym_EQ_EQ] = ACTIONS(1623), - [anon_sym_BANG_EQ] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1621), - [anon_sym_LT_EQ] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1621), - [anon_sym_GT_EQ] = ACTIONS(1623), - [aux_sym_cmd_identifier_token41] = ACTIONS(1621), - [sym__newline] = ACTIONS(1621), - [anon_sym_PIPE] = ACTIONS(1621), - [anon_sym_err_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_GT_PIPE] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), - [anon_sym_GT2] = ACTIONS(1621), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_in2] = ACTIONS(1621), - [anon_sym_STAR2] = ACTIONS(1621), - [anon_sym_and2] = ACTIONS(1621), - [anon_sym_xor2] = ACTIONS(1621), - [anon_sym_or2] = ACTIONS(1621), - [anon_sym_not_DASHin2] = ACTIONS(1621), - [anon_sym_starts_DASHwith2] = ACTIONS(1621), - [anon_sym_ends_DASHwith2] = ACTIONS(1621), - [anon_sym_EQ_EQ2] = ACTIONS(1621), - [anon_sym_BANG_EQ2] = ACTIONS(1621), - [anon_sym_LT2] = ACTIONS(1621), - [anon_sym_LT_EQ2] = ACTIONS(1621), - [anon_sym_GT_EQ2] = ACTIONS(1621), - [anon_sym_EQ_TILDE2] = ACTIONS(1621), - [anon_sym_BANG_TILDE2] = ACTIONS(1621), - [anon_sym_STAR_STAR2] = ACTIONS(1621), - [anon_sym_PLUS_PLUS2] = ACTIONS(1621), - [anon_sym_SLASH2] = ACTIONS(1621), - [anon_sym_mod2] = ACTIONS(1621), - [anon_sym_SLASH_SLASH2] = ACTIONS(1621), - [anon_sym_PLUS2] = ACTIONS(1621), - [anon_sym_bit_DASHshl2] = ACTIONS(1621), - [anon_sym_bit_DASHshr2] = ACTIONS(1621), - [anon_sym_bit_DASHand2] = ACTIONS(1621), - [anon_sym_bit_DASHxor2] = ACTIONS(1621), - [anon_sym_bit_DASHor2] = ACTIONS(1621), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [aux_sym__immediate_decimal_token1] = ACTIONS(3073), - [aux_sym__immediate_decimal_token2] = ACTIONS(3075), - [sym_filesize_unit] = ACTIONS(1621), - [sym_duration_unit] = ACTIONS(1623), - [anon_sym_err_GT] = ACTIONS(1621), - [anon_sym_out_GT] = ACTIONS(1621), - [anon_sym_e_GT] = ACTIONS(1621), - [anon_sym_o_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT] = ACTIONS(1621), - [anon_sym_err_GT_GT] = ACTIONS(1621), - [anon_sym_out_GT_GT] = ACTIONS(1621), - [anon_sym_e_GT_GT] = ACTIONS(1621), - [anon_sym_o_GT_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1621), + [ts_builtin_sym_end] = ACTIONS(1575), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_bit_DASHshl] = ACTIONS(1575), + [anon_sym_bit_DASHshr] = ACTIONS(1575), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_BANG_TILDE] = ACTIONS(1575), + [anon_sym_bit_DASHand] = ACTIONS(1575), + [anon_sym_bit_DASHxor] = ACTIONS(1575), + [anon_sym_bit_DASHor] = ACTIONS(1575), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_not_DASHin] = ACTIONS(1575), + [anon_sym_starts_DASHwith] = ACTIONS(1575), + [anon_sym_ends_DASHwith] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1575), + [aux_sym_cmd_identifier_token41] = ACTIONS(1573), + [sym__newline] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_err_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_GT_PIPE] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1573), + [anon_sym_xor2] = ACTIONS(1573), + [anon_sym_or2] = ACTIONS(1573), + [anon_sym_not_DASHin2] = ACTIONS(1573), + [anon_sym_starts_DASHwith2] = ACTIONS(1573), + [anon_sym_ends_DASHwith2] = ACTIONS(1573), + [anon_sym_EQ_EQ2] = ACTIONS(1573), + [anon_sym_BANG_EQ2] = ACTIONS(1573), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1573), + [anon_sym_GT_EQ2] = ACTIONS(1573), + [anon_sym_EQ_TILDE2] = ACTIONS(1573), + [anon_sym_BANG_TILDE2] = ACTIONS(1573), + [anon_sym_STAR_STAR2] = ACTIONS(1573), + [anon_sym_PLUS_PLUS2] = ACTIONS(1573), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1573), + [anon_sym_SLASH_SLASH2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1573), + [anon_sym_bit_DASHshr2] = ACTIONS(1573), + [anon_sym_bit_DASHand2] = ACTIONS(1573), + [anon_sym_bit_DASHxor2] = ACTIONS(1573), + [anon_sym_bit_DASHor2] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1573), + [anon_sym_out_GT_GT] = ACTIONS(1573), + [anon_sym_e_GT_GT] = ACTIONS(1573), + [anon_sym_o_GT_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), [anon_sym_POUND] = ACTIONS(3), }, [831] = { [sym_comment] = STATE(831), - [anon_sym_STAR_STAR] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_SLASH_SLASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_bit_DASHshl] = ACTIONS(1609), - [anon_sym_bit_DASHshr] = ACTIONS(1609), - [anon_sym_EQ_TILDE] = ACTIONS(1609), - [anon_sym_BANG_TILDE] = ACTIONS(1609), - [anon_sym_bit_DASHand] = ACTIONS(1609), - [anon_sym_bit_DASHxor] = ACTIONS(1609), - [anon_sym_bit_DASHor] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(1609), - [anon_sym_not_DASHin] = ACTIONS(1609), - [anon_sym_starts_DASHwith] = ACTIONS(1609), - [anon_sym_ends_DASHwith] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1609), - [anon_sym_BANG_EQ] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1609), - [aux_sym_cmd_identifier_token41] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT] = ACTIONS(3077), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(3079), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1607), - [anon_sym_out_GT_GT] = ACTIONS(1607), - [anon_sym_e_GT_GT] = ACTIONS(1607), - [anon_sym_o_GT_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [anon_sym_STAR_STAR] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_mod] = ACTIONS(1587), + [anon_sym_SLASH_SLASH] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_bit_DASHshl] = ACTIONS(1587), + [anon_sym_bit_DASHshr] = ACTIONS(1587), + [anon_sym_EQ_TILDE] = ACTIONS(1587), + [anon_sym_BANG_TILDE] = ACTIONS(1587), + [anon_sym_bit_DASHand] = ACTIONS(1587), + [anon_sym_bit_DASHxor] = ACTIONS(1587), + [anon_sym_bit_DASHor] = ACTIONS(1587), + [anon_sym_and] = ACTIONS(1587), + [anon_sym_xor] = ACTIONS(1587), + [anon_sym_or] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(1587), + [anon_sym_not_DASHin] = ACTIONS(1587), + [anon_sym_starts_DASHwith] = ACTIONS(1587), + [anon_sym_ends_DASHwith] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(1587), + [anon_sym_BANG_EQ] = ACTIONS(1587), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_LT_EQ] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1587), + [aux_sym_cmd_identifier_token41] = ACTIONS(1585), + [sym__newline] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_err_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_GT_PIPE] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), + [anon_sym_GT2] = ACTIONS(1585), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_in2] = ACTIONS(1585), + [anon_sym_STAR2] = ACTIONS(1585), + [anon_sym_and2] = ACTIONS(1585), + [anon_sym_xor2] = ACTIONS(1585), + [anon_sym_or2] = ACTIONS(1585), + [anon_sym_not_DASHin2] = ACTIONS(1585), + [anon_sym_starts_DASHwith2] = ACTIONS(1585), + [anon_sym_ends_DASHwith2] = ACTIONS(1585), + [anon_sym_EQ_EQ2] = ACTIONS(1585), + [anon_sym_BANG_EQ2] = ACTIONS(1585), + [anon_sym_LT2] = ACTIONS(1585), + [anon_sym_LT_EQ2] = ACTIONS(1585), + [anon_sym_GT_EQ2] = ACTIONS(1585), + [anon_sym_EQ_TILDE2] = ACTIONS(1585), + [anon_sym_BANG_TILDE2] = ACTIONS(1585), + [anon_sym_STAR_STAR2] = ACTIONS(1585), + [anon_sym_PLUS_PLUS2] = ACTIONS(1585), + [anon_sym_SLASH2] = ACTIONS(1585), + [anon_sym_mod2] = ACTIONS(1585), + [anon_sym_SLASH_SLASH2] = ACTIONS(1585), + [anon_sym_PLUS2] = ACTIONS(1585), + [anon_sym_bit_DASHshl2] = ACTIONS(1585), + [anon_sym_bit_DASHshr2] = ACTIONS(1585), + [anon_sym_bit_DASHand2] = ACTIONS(1585), + [anon_sym_bit_DASHxor2] = ACTIONS(1585), + [anon_sym_bit_DASHor2] = ACTIONS(1585), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [aux_sym__immediate_decimal_token1] = ACTIONS(3067), + [aux_sym__immediate_decimal_token2] = ACTIONS(3069), + [sym_filesize_unit] = ACTIONS(1585), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1585), + [anon_sym_out_GT_GT] = ACTIONS(1585), + [anon_sym_e_GT_GT] = ACTIONS(1585), + [anon_sym_o_GT_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1585), [anon_sym_POUND] = ACTIONS(3), }, [832] = { [sym_comment] = STATE(832), - [anon_sym_STAR_STAR] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_SLASH_SLASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_bit_DASHshl] = ACTIONS(1609), - [anon_sym_bit_DASHshr] = ACTIONS(1609), - [anon_sym_EQ_TILDE] = ACTIONS(1609), - [anon_sym_BANG_TILDE] = ACTIONS(1609), - [anon_sym_bit_DASHand] = ACTIONS(1609), - [anon_sym_bit_DASHxor] = ACTIONS(1609), - [anon_sym_bit_DASHor] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(1609), - [anon_sym_not_DASHin] = ACTIONS(1609), - [anon_sym_starts_DASHwith] = ACTIONS(1609), - [anon_sym_ends_DASHwith] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1609), - [anon_sym_BANG_EQ] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1609), - [aux_sym_cmd_identifier_token41] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_RPAREN] = ACTIONS(1607), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1607), - [anon_sym_out_GT_GT] = ACTIONS(1607), - [anon_sym_e_GT_GT] = ACTIONS(1607), - [anon_sym_o_GT_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [ts_builtin_sym_end] = ACTIONS(1763), + [anon_sym_STAR_STAR] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1761), + [anon_sym_mod] = ACTIONS(1763), + [anon_sym_SLASH_SLASH] = ACTIONS(1763), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_bit_DASHshl] = ACTIONS(1763), + [anon_sym_bit_DASHshr] = ACTIONS(1763), + [anon_sym_EQ_TILDE] = ACTIONS(1763), + [anon_sym_BANG_TILDE] = ACTIONS(1763), + [anon_sym_bit_DASHand] = ACTIONS(1763), + [anon_sym_bit_DASHxor] = ACTIONS(1763), + [anon_sym_bit_DASHor] = ACTIONS(1763), + [anon_sym_and] = ACTIONS(1763), + [anon_sym_xor] = ACTIONS(1763), + [anon_sym_or] = ACTIONS(1763), + [anon_sym_in] = ACTIONS(1763), + [anon_sym_not_DASHin] = ACTIONS(1763), + [anon_sym_starts_DASHwith] = ACTIONS(1763), + [anon_sym_ends_DASHwith] = ACTIONS(1763), + [anon_sym_EQ_EQ] = ACTIONS(1763), + [anon_sym_BANG_EQ] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1761), + [anon_sym_LT_EQ] = ACTIONS(1763), + [anon_sym_GT] = ACTIONS(1761), + [anon_sym_GT_EQ] = ACTIONS(1763), + [aux_sym_cmd_identifier_token41] = ACTIONS(1761), + [sym__newline] = ACTIONS(1761), + [anon_sym_SEMI] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1761), + [anon_sym_err_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_GT_PIPE] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), + [anon_sym_GT2] = ACTIONS(1761), + [anon_sym_DASH2] = ACTIONS(1761), + [anon_sym_in2] = ACTIONS(1761), + [anon_sym_STAR2] = ACTIONS(1761), + [anon_sym_and2] = ACTIONS(1761), + [anon_sym_xor2] = ACTIONS(1761), + [anon_sym_or2] = ACTIONS(1761), + [anon_sym_not_DASHin2] = ACTIONS(1761), + [anon_sym_starts_DASHwith2] = ACTIONS(1761), + [anon_sym_ends_DASHwith2] = ACTIONS(1761), + [anon_sym_EQ_EQ2] = ACTIONS(1761), + [anon_sym_BANG_EQ2] = ACTIONS(1761), + [anon_sym_LT2] = ACTIONS(1761), + [anon_sym_LT_EQ2] = ACTIONS(1761), + [anon_sym_GT_EQ2] = ACTIONS(1761), + [anon_sym_EQ_TILDE2] = ACTIONS(1761), + [anon_sym_BANG_TILDE2] = ACTIONS(1761), + [anon_sym_STAR_STAR2] = ACTIONS(1761), + [anon_sym_PLUS_PLUS2] = ACTIONS(1761), + [anon_sym_SLASH2] = ACTIONS(1761), + [anon_sym_mod2] = ACTIONS(1761), + [anon_sym_SLASH_SLASH2] = ACTIONS(1761), + [anon_sym_PLUS2] = ACTIONS(1761), + [anon_sym_bit_DASHshl2] = ACTIONS(1761), + [anon_sym_bit_DASHshr2] = ACTIONS(1761), + [anon_sym_bit_DASHand2] = ACTIONS(1761), + [anon_sym_bit_DASHxor2] = ACTIONS(1761), + [anon_sym_bit_DASHor2] = ACTIONS(1761), + [anon_sym_DOT_DOT2] = ACTIONS(1761), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), + [sym_filesize_unit] = ACTIONS(1761), + [sym_duration_unit] = ACTIONS(1763), + [anon_sym_err_GT] = ACTIONS(1761), + [anon_sym_out_GT] = ACTIONS(1761), + [anon_sym_e_GT] = ACTIONS(1761), + [anon_sym_o_GT] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT] = ACTIONS(1761), + [anon_sym_err_GT_GT] = ACTIONS(1761), + [anon_sym_out_GT_GT] = ACTIONS(1761), + [anon_sym_e_GT_GT] = ACTIONS(1761), + [anon_sym_o_GT_GT] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1761), [anon_sym_POUND] = ACTIONS(3), }, [833] = { [sym_comment] = STATE(833), - [anon_sym_STAR_STAR] = ACTIONS(1675), - [anon_sym_PLUS_PLUS] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1673), - [anon_sym_mod] = ACTIONS(1675), - [anon_sym_SLASH_SLASH] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_bit_DASHshl] = ACTIONS(1675), - [anon_sym_bit_DASHshr] = ACTIONS(1675), - [anon_sym_EQ_TILDE] = ACTIONS(1675), - [anon_sym_BANG_TILDE] = ACTIONS(1675), - [anon_sym_bit_DASHand] = ACTIONS(1675), - [anon_sym_bit_DASHxor] = ACTIONS(1675), - [anon_sym_bit_DASHor] = ACTIONS(1675), - [anon_sym_and] = ACTIONS(1675), - [anon_sym_xor] = ACTIONS(1675), - [anon_sym_or] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [anon_sym_not_DASHin] = ACTIONS(1675), - [anon_sym_starts_DASHwith] = ACTIONS(1675), - [anon_sym_ends_DASHwith] = ACTIONS(1675), - [anon_sym_EQ_EQ] = ACTIONS(1675), - [anon_sym_BANG_EQ] = ACTIONS(1675), - [anon_sym_LT] = ACTIONS(1673), - [anon_sym_LT_EQ] = ACTIONS(1675), - [anon_sym_GT] = ACTIONS(1673), - [anon_sym_GT_EQ] = ACTIONS(1675), - [aux_sym_cmd_identifier_token41] = ACTIONS(1673), - [sym__newline] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1673), - [anon_sym_err_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_GT_PIPE] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), - [anon_sym_RPAREN] = ACTIONS(1673), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_in2] = ACTIONS(1673), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1673), - [anon_sym_xor2] = ACTIONS(1673), - [anon_sym_or2] = ACTIONS(1673), - [anon_sym_not_DASHin2] = ACTIONS(1673), - [anon_sym_starts_DASHwith2] = ACTIONS(1673), - [anon_sym_ends_DASHwith2] = ACTIONS(1673), - [anon_sym_EQ_EQ2] = ACTIONS(1673), - [anon_sym_BANG_EQ2] = ACTIONS(1673), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1673), - [anon_sym_GT_EQ2] = ACTIONS(1673), - [anon_sym_EQ_TILDE2] = ACTIONS(1673), - [anon_sym_BANG_TILDE2] = ACTIONS(1673), - [anon_sym_STAR_STAR2] = ACTIONS(1673), - [anon_sym_PLUS_PLUS2] = ACTIONS(1673), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1673), - [anon_sym_SLASH_SLASH2] = ACTIONS(1673), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1673), - [anon_sym_bit_DASHshr2] = ACTIONS(1673), - [anon_sym_bit_DASHand2] = ACTIONS(1673), - [anon_sym_bit_DASHxor2] = ACTIONS(1673), - [anon_sym_bit_DASHor2] = ACTIONS(1673), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [sym_filesize_unit] = ACTIONS(1673), - [sym_duration_unit] = ACTIONS(1675), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1673), - [anon_sym_out_GT_GT] = ACTIONS(1673), - [anon_sym_e_GT_GT] = ACTIONS(1673), - [anon_sym_o_GT_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), + [anon_sym_STAR_STAR] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1681), + [anon_sym_SLASH] = ACTIONS(1681), + [anon_sym_mod] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_bit_DASHshl] = ACTIONS(1683), + [anon_sym_bit_DASHshr] = ACTIONS(1683), + [anon_sym_EQ_TILDE] = ACTIONS(1683), + [anon_sym_BANG_TILDE] = ACTIONS(1683), + [anon_sym_bit_DASHand] = ACTIONS(1683), + [anon_sym_bit_DASHxor] = ACTIONS(1683), + [anon_sym_bit_DASHor] = ACTIONS(1683), + [anon_sym_and] = ACTIONS(1683), + [anon_sym_xor] = ACTIONS(1683), + [anon_sym_or] = ACTIONS(1683), + [anon_sym_in] = ACTIONS(1683), + [anon_sym_not_DASHin] = ACTIONS(1683), + [anon_sym_starts_DASHwith] = ACTIONS(1683), + [anon_sym_ends_DASHwith] = ACTIONS(1683), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(1683), + [aux_sym_cmd_identifier_token41] = ACTIONS(1681), + [sym__newline] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_err_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_GT_PIPE] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), + [anon_sym_GT2] = ACTIONS(1681), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_in2] = ACTIONS(1681), + [anon_sym_RBRACE] = ACTIONS(1681), + [anon_sym_STAR2] = ACTIONS(1681), + [anon_sym_and2] = ACTIONS(1681), + [anon_sym_xor2] = ACTIONS(1681), + [anon_sym_or2] = ACTIONS(1681), + [anon_sym_not_DASHin2] = ACTIONS(1681), + [anon_sym_starts_DASHwith2] = ACTIONS(1681), + [anon_sym_ends_DASHwith2] = ACTIONS(1681), + [anon_sym_EQ_EQ2] = ACTIONS(1681), + [anon_sym_BANG_EQ2] = ACTIONS(1681), + [anon_sym_LT2] = ACTIONS(1681), + [anon_sym_LT_EQ2] = ACTIONS(1681), + [anon_sym_GT_EQ2] = ACTIONS(1681), + [anon_sym_EQ_TILDE2] = ACTIONS(1681), + [anon_sym_BANG_TILDE2] = ACTIONS(1681), + [anon_sym_STAR_STAR2] = ACTIONS(1681), + [anon_sym_PLUS_PLUS2] = ACTIONS(1681), + [anon_sym_SLASH2] = ACTIONS(1681), + [anon_sym_mod2] = ACTIONS(1681), + [anon_sym_SLASH_SLASH2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1681), + [anon_sym_bit_DASHshl2] = ACTIONS(1681), + [anon_sym_bit_DASHshr2] = ACTIONS(1681), + [anon_sym_bit_DASHand2] = ACTIONS(1681), + [anon_sym_bit_DASHxor2] = ACTIONS(1681), + [anon_sym_bit_DASHor2] = ACTIONS(1681), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [sym_filesize_unit] = ACTIONS(1681), + [sym_duration_unit] = ACTIONS(1683), + [anon_sym_err_GT] = ACTIONS(1681), + [anon_sym_out_GT] = ACTIONS(1681), + [anon_sym_e_GT] = ACTIONS(1681), + [anon_sym_o_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT] = ACTIONS(1681), + [anon_sym_err_GT_GT] = ACTIONS(1681), + [anon_sym_out_GT_GT] = ACTIONS(1681), + [anon_sym_e_GT_GT] = ACTIONS(1681), + [anon_sym_o_GT_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), [anon_sym_POUND] = ACTIONS(3), }, [834] = { [sym_comment] = STATE(834), - [ts_builtin_sym_end] = ACTIONS(1609), - [anon_sym_STAR_STAR] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_SLASH_SLASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_bit_DASHshl] = ACTIONS(1609), - [anon_sym_bit_DASHshr] = ACTIONS(1609), - [anon_sym_EQ_TILDE] = ACTIONS(1609), - [anon_sym_BANG_TILDE] = ACTIONS(1609), - [anon_sym_bit_DASHand] = ACTIONS(1609), - [anon_sym_bit_DASHxor] = ACTIONS(1609), - [anon_sym_bit_DASHor] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(1609), - [anon_sym_not_DASHin] = ACTIONS(1609), - [anon_sym_starts_DASHwith] = ACTIONS(1609), - [anon_sym_ends_DASHwith] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1609), - [anon_sym_BANG_EQ] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1609), - [aux_sym_cmd_identifier_token41] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1607), - [anon_sym_out_GT_GT] = ACTIONS(1607), - [anon_sym_e_GT_GT] = ACTIONS(1607), - [anon_sym_o_GT_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [anon_sym_STAR_STAR] = ACTIONS(3071), + [anon_sym_PLUS_PLUS] = ACTIONS(3071), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_SLASH] = ACTIONS(3073), + [anon_sym_mod] = ACTIONS(3071), + [anon_sym_SLASH_SLASH] = ACTIONS(3071), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_DASH] = ACTIONS(3071), + [anon_sym_bit_DASHshl] = ACTIONS(3071), + [anon_sym_bit_DASHshr] = ACTIONS(3071), + [anon_sym_EQ_TILDE] = ACTIONS(3071), + [anon_sym_BANG_TILDE] = ACTIONS(3071), + [anon_sym_bit_DASHand] = ACTIONS(3071), + [anon_sym_bit_DASHxor] = ACTIONS(3071), + [anon_sym_bit_DASHor] = ACTIONS(3071), + [anon_sym_and] = ACTIONS(3071), + [anon_sym_xor] = ACTIONS(3071), + [anon_sym_or] = ACTIONS(3071), + [anon_sym_in] = ACTIONS(3071), + [anon_sym_not_DASHin] = ACTIONS(3071), + [anon_sym_starts_DASHwith] = ACTIONS(3071), + [anon_sym_ends_DASHwith] = ACTIONS(3071), + [anon_sym_EQ_EQ] = ACTIONS(3071), + [anon_sym_BANG_EQ] = ACTIONS(3071), + [anon_sym_LT] = ACTIONS(3073), + [anon_sym_LT_EQ] = ACTIONS(3071), + [anon_sym_GT] = ACTIONS(3073), + [anon_sym_GT_EQ] = ACTIONS(3071), + [aux_sym_cmd_identifier_token41] = ACTIONS(3075), + [sym__newline] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_err_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_GT_PIPE] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), + [anon_sym_GT2] = ACTIONS(1707), + [anon_sym_DASH2] = ACTIONS(1707), + [anon_sym_in2] = ACTIONS(1707), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_STAR2] = ACTIONS(1707), + [anon_sym_and2] = ACTIONS(1707), + [anon_sym_xor2] = ACTIONS(1707), + [anon_sym_or2] = ACTIONS(1707), + [anon_sym_not_DASHin2] = ACTIONS(1707), + [anon_sym_starts_DASHwith2] = ACTIONS(1707), + [anon_sym_ends_DASHwith2] = ACTIONS(1707), + [anon_sym_EQ_EQ2] = ACTIONS(1707), + [anon_sym_BANG_EQ2] = ACTIONS(1707), + [anon_sym_LT2] = ACTIONS(1707), + [anon_sym_LT_EQ2] = ACTIONS(1707), + [anon_sym_GT_EQ2] = ACTIONS(1707), + [anon_sym_EQ_TILDE2] = ACTIONS(1707), + [anon_sym_BANG_TILDE2] = ACTIONS(1707), + [anon_sym_STAR_STAR2] = ACTIONS(1707), + [anon_sym_PLUS_PLUS2] = ACTIONS(1707), + [anon_sym_SLASH2] = ACTIONS(1707), + [anon_sym_mod2] = ACTIONS(1707), + [anon_sym_SLASH_SLASH2] = ACTIONS(1707), + [anon_sym_PLUS2] = ACTIONS(1707), + [anon_sym_bit_DASHshl2] = ACTIONS(1707), + [anon_sym_bit_DASHshr2] = ACTIONS(1707), + [anon_sym_bit_DASHand2] = ACTIONS(1707), + [anon_sym_bit_DASHxor2] = ACTIONS(1707), + [anon_sym_bit_DASHor2] = ACTIONS(1707), + [anon_sym_DOT_DOT2] = ACTIONS(2900), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2902), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2902), + [sym_filesize_unit] = ACTIONS(3077), + [sym_duration_unit] = ACTIONS(3079), + [anon_sym_err_GT] = ACTIONS(1707), + [anon_sym_out_GT] = ACTIONS(1707), + [anon_sym_e_GT] = ACTIONS(1707), + [anon_sym_o_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT] = ACTIONS(1707), + [anon_sym_err_GT_GT] = ACTIONS(1707), + [anon_sym_out_GT_GT] = ACTIONS(1707), + [anon_sym_e_GT_GT] = ACTIONS(1707), + [anon_sym_o_GT_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), [anon_sym_POUND] = ACTIONS(3), }, [835] = { [sym_comment] = STATE(835), - [anon_sym_STAR_STAR] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_SLASH_SLASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_bit_DASHshl] = ACTIONS(1609), - [anon_sym_bit_DASHshr] = ACTIONS(1609), - [anon_sym_EQ_TILDE] = ACTIONS(1609), - [anon_sym_BANG_TILDE] = ACTIONS(1609), - [anon_sym_bit_DASHand] = ACTIONS(1609), - [anon_sym_bit_DASHxor] = ACTIONS(1609), - [anon_sym_bit_DASHor] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(1609), - [anon_sym_not_DASHin] = ACTIONS(1609), - [anon_sym_starts_DASHwith] = ACTIONS(1609), - [anon_sym_ends_DASHwith] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1609), - [anon_sym_BANG_EQ] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1609), - [aux_sym_cmd_identifier_token41] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_RBRACE] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1607), - [anon_sym_out_GT_GT] = ACTIONS(1607), - [anon_sym_e_GT_GT] = ACTIONS(1607), - [anon_sym_o_GT_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_bit_DASHshl] = ACTIONS(1575), + [anon_sym_bit_DASHshr] = ACTIONS(1575), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_BANG_TILDE] = ACTIONS(1575), + [anon_sym_bit_DASHand] = ACTIONS(1575), + [anon_sym_bit_DASHxor] = ACTIONS(1575), + [anon_sym_bit_DASHor] = ACTIONS(1575), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_not_DASHin] = ACTIONS(1575), + [anon_sym_starts_DASHwith] = ACTIONS(1575), + [anon_sym_ends_DASHwith] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1575), + [aux_sym_cmd_identifier_token41] = ACTIONS(1573), + [sym__newline] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_err_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_GT_PIPE] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_RBRACE] = ACTIONS(1573), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1573), + [anon_sym_xor2] = ACTIONS(1573), + [anon_sym_or2] = ACTIONS(1573), + [anon_sym_not_DASHin2] = ACTIONS(1573), + [anon_sym_starts_DASHwith2] = ACTIONS(1573), + [anon_sym_ends_DASHwith2] = ACTIONS(1573), + [anon_sym_EQ_EQ2] = ACTIONS(1573), + [anon_sym_BANG_EQ2] = ACTIONS(1573), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1573), + [anon_sym_GT_EQ2] = ACTIONS(1573), + [anon_sym_EQ_TILDE2] = ACTIONS(1573), + [anon_sym_BANG_TILDE2] = ACTIONS(1573), + [anon_sym_STAR_STAR2] = ACTIONS(1573), + [anon_sym_PLUS_PLUS2] = ACTIONS(1573), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1573), + [anon_sym_SLASH_SLASH2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1573), + [anon_sym_bit_DASHshr2] = ACTIONS(1573), + [anon_sym_bit_DASHand2] = ACTIONS(1573), + [anon_sym_bit_DASHxor2] = ACTIONS(1573), + [anon_sym_bit_DASHor2] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1573), + [anon_sym_out_GT_GT] = ACTIONS(1573), + [anon_sym_e_GT_GT] = ACTIONS(1573), + [anon_sym_o_GT_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), [anon_sym_POUND] = ACTIONS(3), }, [836] = { [sym_comment] = STATE(836), - [anon_sym_STAR_STAR] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1763), - [anon_sym_SLASH] = ACTIONS(1763), - [anon_sym_mod] = ACTIONS(1765), - [anon_sym_SLASH_SLASH] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_bit_DASHshl] = ACTIONS(1765), - [anon_sym_bit_DASHshr] = ACTIONS(1765), - [anon_sym_EQ_TILDE] = ACTIONS(1765), - [anon_sym_BANG_TILDE] = ACTIONS(1765), - [anon_sym_bit_DASHand] = ACTIONS(1765), - [anon_sym_bit_DASHxor] = ACTIONS(1765), - [anon_sym_bit_DASHor] = ACTIONS(1765), - [anon_sym_and] = ACTIONS(1765), - [anon_sym_xor] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), - [anon_sym_in] = ACTIONS(1765), - [anon_sym_not_DASHin] = ACTIONS(1765), - [anon_sym_starts_DASHwith] = ACTIONS(1765), - [anon_sym_ends_DASHwith] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1765), - [anon_sym_BANG_EQ] = ACTIONS(1765), - [anon_sym_LT] = ACTIONS(1763), - [anon_sym_LT_EQ] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1765), - [aux_sym_cmd_identifier_token41] = ACTIONS(1763), - [sym__newline] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_err_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_GT_PIPE] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), - [anon_sym_RPAREN] = ACTIONS(1763), - [anon_sym_GT2] = ACTIONS(1763), - [anon_sym_DASH2] = ACTIONS(1763), - [anon_sym_in2] = ACTIONS(1763), - [anon_sym_STAR2] = ACTIONS(1763), - [anon_sym_and2] = ACTIONS(1763), - [anon_sym_xor2] = ACTIONS(1763), - [anon_sym_or2] = ACTIONS(1763), - [anon_sym_not_DASHin2] = ACTIONS(1763), - [anon_sym_starts_DASHwith2] = ACTIONS(1763), - [anon_sym_ends_DASHwith2] = ACTIONS(1763), - [anon_sym_EQ_EQ2] = ACTIONS(1763), - [anon_sym_BANG_EQ2] = ACTIONS(1763), - [anon_sym_LT2] = ACTIONS(1763), - [anon_sym_LT_EQ2] = ACTIONS(1763), - [anon_sym_GT_EQ2] = ACTIONS(1763), - [anon_sym_EQ_TILDE2] = ACTIONS(1763), - [anon_sym_BANG_TILDE2] = ACTIONS(1763), - [anon_sym_STAR_STAR2] = ACTIONS(1763), - [anon_sym_PLUS_PLUS2] = ACTIONS(1763), - [anon_sym_SLASH2] = ACTIONS(1763), - [anon_sym_mod2] = ACTIONS(1763), - [anon_sym_SLASH_SLASH2] = ACTIONS(1763), - [anon_sym_PLUS2] = ACTIONS(1763), - [anon_sym_bit_DASHshl2] = ACTIONS(1763), - [anon_sym_bit_DASHshr2] = ACTIONS(1763), - [anon_sym_bit_DASHand2] = ACTIONS(1763), - [anon_sym_bit_DASHxor2] = ACTIONS(1763), - [anon_sym_bit_DASHor2] = ACTIONS(1763), - [anon_sym_DOT_DOT2] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), - [sym_filesize_unit] = ACTIONS(1763), - [sym_duration_unit] = ACTIONS(1765), - [anon_sym_err_GT] = ACTIONS(1763), - [anon_sym_out_GT] = ACTIONS(1763), - [anon_sym_e_GT] = ACTIONS(1763), - [anon_sym_o_GT] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT] = ACTIONS(1763), - [anon_sym_err_GT_GT] = ACTIONS(1763), - [anon_sym_out_GT_GT] = ACTIONS(1763), - [anon_sym_e_GT_GT] = ACTIONS(1763), - [anon_sym_o_GT_GT] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1763), + [ts_builtin_sym_end] = ACTIONS(1587), + [anon_sym_STAR_STAR] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_mod] = ACTIONS(1587), + [anon_sym_SLASH_SLASH] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_bit_DASHshl] = ACTIONS(1587), + [anon_sym_bit_DASHshr] = ACTIONS(1587), + [anon_sym_EQ_TILDE] = ACTIONS(1587), + [anon_sym_BANG_TILDE] = ACTIONS(1587), + [anon_sym_bit_DASHand] = ACTIONS(1587), + [anon_sym_bit_DASHxor] = ACTIONS(1587), + [anon_sym_bit_DASHor] = ACTIONS(1587), + [anon_sym_and] = ACTIONS(1587), + [anon_sym_xor] = ACTIONS(1587), + [anon_sym_or] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(1587), + [anon_sym_not_DASHin] = ACTIONS(1587), + [anon_sym_starts_DASHwith] = ACTIONS(1587), + [anon_sym_ends_DASHwith] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(1587), + [anon_sym_BANG_EQ] = ACTIONS(1587), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_LT_EQ] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1587), + [aux_sym_cmd_identifier_token41] = ACTIONS(1585), + [sym__newline] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_err_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_GT_PIPE] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), + [anon_sym_GT2] = ACTIONS(1585), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_in2] = ACTIONS(1585), + [anon_sym_STAR2] = ACTIONS(1585), + [anon_sym_and2] = ACTIONS(1585), + [anon_sym_xor2] = ACTIONS(1585), + [anon_sym_or2] = ACTIONS(1585), + [anon_sym_not_DASHin2] = ACTIONS(1585), + [anon_sym_starts_DASHwith2] = ACTIONS(1585), + [anon_sym_ends_DASHwith2] = ACTIONS(1585), + [anon_sym_EQ_EQ2] = ACTIONS(1585), + [anon_sym_BANG_EQ2] = ACTIONS(1585), + [anon_sym_LT2] = ACTIONS(1585), + [anon_sym_LT_EQ2] = ACTIONS(1585), + [anon_sym_GT_EQ2] = ACTIONS(1585), + [anon_sym_EQ_TILDE2] = ACTIONS(1585), + [anon_sym_BANG_TILDE2] = ACTIONS(1585), + [anon_sym_STAR_STAR2] = ACTIONS(1585), + [anon_sym_PLUS_PLUS2] = ACTIONS(1585), + [anon_sym_SLASH2] = ACTIONS(1585), + [anon_sym_mod2] = ACTIONS(1585), + [anon_sym_SLASH_SLASH2] = ACTIONS(1585), + [anon_sym_PLUS2] = ACTIONS(1585), + [anon_sym_bit_DASHshl2] = ACTIONS(1585), + [anon_sym_bit_DASHshr2] = ACTIONS(1585), + [anon_sym_bit_DASHand2] = ACTIONS(1585), + [anon_sym_bit_DASHxor2] = ACTIONS(1585), + [anon_sym_bit_DASHor2] = ACTIONS(1585), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [sym_filesize_unit] = ACTIONS(1585), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1585), + [anon_sym_out_GT_GT] = ACTIONS(1585), + [anon_sym_e_GT_GT] = ACTIONS(1585), + [anon_sym_o_GT_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1585), [anon_sym_POUND] = ACTIONS(3), }, [837] = { [sym_comment] = STATE(837), - [ts_builtin_sym_end] = ACTIONS(1623), - [anon_sym_STAR_STAR] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_SLASH] = ACTIONS(1621), - [anon_sym_mod] = ACTIONS(1623), - [anon_sym_SLASH_SLASH] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_bit_DASHshl] = ACTIONS(1623), - [anon_sym_bit_DASHshr] = ACTIONS(1623), - [anon_sym_EQ_TILDE] = ACTIONS(1623), - [anon_sym_BANG_TILDE] = ACTIONS(1623), - [anon_sym_bit_DASHand] = ACTIONS(1623), - [anon_sym_bit_DASHxor] = ACTIONS(1623), - [anon_sym_bit_DASHor] = ACTIONS(1623), - [anon_sym_and] = ACTIONS(1623), - [anon_sym_xor] = ACTIONS(1623), - [anon_sym_or] = ACTIONS(1623), - [anon_sym_in] = ACTIONS(1623), - [anon_sym_not_DASHin] = ACTIONS(1623), - [anon_sym_starts_DASHwith] = ACTIONS(1623), - [anon_sym_ends_DASHwith] = ACTIONS(1623), - [anon_sym_EQ_EQ] = ACTIONS(1623), - [anon_sym_BANG_EQ] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1621), - [anon_sym_LT_EQ] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1621), - [anon_sym_GT_EQ] = ACTIONS(1623), - [aux_sym_cmd_identifier_token41] = ACTIONS(1621), - [sym__newline] = ACTIONS(1621), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_PIPE] = ACTIONS(1621), - [anon_sym_err_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_GT_PIPE] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), - [anon_sym_GT2] = ACTIONS(1621), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_in2] = ACTIONS(1621), - [anon_sym_STAR2] = ACTIONS(1621), - [anon_sym_and2] = ACTIONS(1621), - [anon_sym_xor2] = ACTIONS(1621), - [anon_sym_or2] = ACTIONS(1621), - [anon_sym_not_DASHin2] = ACTIONS(1621), - [anon_sym_starts_DASHwith2] = ACTIONS(1621), - [anon_sym_ends_DASHwith2] = ACTIONS(1621), - [anon_sym_EQ_EQ2] = ACTIONS(1621), - [anon_sym_BANG_EQ2] = ACTIONS(1621), - [anon_sym_LT2] = ACTIONS(1621), - [anon_sym_LT_EQ2] = ACTIONS(1621), - [anon_sym_GT_EQ2] = ACTIONS(1621), - [anon_sym_EQ_TILDE2] = ACTIONS(1621), - [anon_sym_BANG_TILDE2] = ACTIONS(1621), - [anon_sym_STAR_STAR2] = ACTIONS(1621), - [anon_sym_PLUS_PLUS2] = ACTIONS(1621), - [anon_sym_SLASH2] = ACTIONS(1621), - [anon_sym_mod2] = ACTIONS(1621), - [anon_sym_SLASH_SLASH2] = ACTIONS(1621), - [anon_sym_PLUS2] = ACTIONS(1621), - [anon_sym_bit_DASHshl2] = ACTIONS(1621), - [anon_sym_bit_DASHshr2] = ACTIONS(1621), - [anon_sym_bit_DASHand2] = ACTIONS(1621), - [anon_sym_bit_DASHxor2] = ACTIONS(1621), - [anon_sym_bit_DASHor2] = ACTIONS(1621), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [sym_filesize_unit] = ACTIONS(1621), - [sym_duration_unit] = ACTIONS(1623), - [anon_sym_err_GT] = ACTIONS(1621), - [anon_sym_out_GT] = ACTIONS(1621), - [anon_sym_e_GT] = ACTIONS(1621), - [anon_sym_o_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT] = ACTIONS(1621), - [anon_sym_err_GT_GT] = ACTIONS(1621), - [anon_sym_out_GT_GT] = ACTIONS(1621), - [anon_sym_e_GT_GT] = ACTIONS(1621), - [anon_sym_o_GT_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1621), + [anon_sym_STAR_STAR] = ACTIONS(3071), + [anon_sym_PLUS_PLUS] = ACTIONS(3071), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_SLASH] = ACTIONS(3073), + [anon_sym_mod] = ACTIONS(3071), + [anon_sym_SLASH_SLASH] = ACTIONS(3071), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_DASH] = ACTIONS(3071), + [anon_sym_bit_DASHshl] = ACTIONS(3071), + [anon_sym_bit_DASHshr] = ACTIONS(3071), + [anon_sym_EQ_TILDE] = ACTIONS(3071), + [anon_sym_BANG_TILDE] = ACTIONS(3071), + [anon_sym_bit_DASHand] = ACTIONS(3071), + [anon_sym_bit_DASHxor] = ACTIONS(3071), + [anon_sym_bit_DASHor] = ACTIONS(3071), + [anon_sym_and] = ACTIONS(3071), + [anon_sym_xor] = ACTIONS(3071), + [anon_sym_or] = ACTIONS(3071), + [anon_sym_in] = ACTIONS(3071), + [anon_sym_not_DASHin] = ACTIONS(3071), + [anon_sym_starts_DASHwith] = ACTIONS(3071), + [anon_sym_ends_DASHwith] = ACTIONS(3071), + [anon_sym_EQ_EQ] = ACTIONS(3071), + [anon_sym_BANG_EQ] = ACTIONS(3071), + [anon_sym_LT] = ACTIONS(3073), + [anon_sym_LT_EQ] = ACTIONS(3071), + [anon_sym_GT] = ACTIONS(3073), + [anon_sym_GT_EQ] = ACTIONS(3071), + [aux_sym_cmd_identifier_token41] = ACTIONS(3075), + [sym__newline] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_err_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_GT_PIPE] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), + [anon_sym_RPAREN] = ACTIONS(1707), + [anon_sym_GT2] = ACTIONS(1707), + [anon_sym_DASH2] = ACTIONS(1707), + [anon_sym_in2] = ACTIONS(1707), + [anon_sym_STAR2] = ACTIONS(1707), + [anon_sym_and2] = ACTIONS(1707), + [anon_sym_xor2] = ACTIONS(1707), + [anon_sym_or2] = ACTIONS(1707), + [anon_sym_not_DASHin2] = ACTIONS(1707), + [anon_sym_starts_DASHwith2] = ACTIONS(1707), + [anon_sym_ends_DASHwith2] = ACTIONS(1707), + [anon_sym_EQ_EQ2] = ACTIONS(1707), + [anon_sym_BANG_EQ2] = ACTIONS(1707), + [anon_sym_LT2] = ACTIONS(1707), + [anon_sym_LT_EQ2] = ACTIONS(1707), + [anon_sym_GT_EQ2] = ACTIONS(1707), + [anon_sym_EQ_TILDE2] = ACTIONS(1707), + [anon_sym_BANG_TILDE2] = ACTIONS(1707), + [anon_sym_STAR_STAR2] = ACTIONS(1707), + [anon_sym_PLUS_PLUS2] = ACTIONS(1707), + [anon_sym_SLASH2] = ACTIONS(1707), + [anon_sym_mod2] = ACTIONS(1707), + [anon_sym_SLASH_SLASH2] = ACTIONS(1707), + [anon_sym_PLUS2] = ACTIONS(1707), + [anon_sym_bit_DASHshl2] = ACTIONS(1707), + [anon_sym_bit_DASHshr2] = ACTIONS(1707), + [anon_sym_bit_DASHand2] = ACTIONS(1707), + [anon_sym_bit_DASHxor2] = ACTIONS(1707), + [anon_sym_bit_DASHor2] = ACTIONS(1707), + [anon_sym_DOT_DOT2] = ACTIONS(2900), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2902), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2902), + [sym_filesize_unit] = ACTIONS(3081), + [sym_duration_unit] = ACTIONS(3083), + [anon_sym_err_GT] = ACTIONS(1707), + [anon_sym_out_GT] = ACTIONS(1707), + [anon_sym_e_GT] = ACTIONS(1707), + [anon_sym_o_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT] = ACTIONS(1707), + [anon_sym_err_GT_GT] = ACTIONS(1707), + [anon_sym_out_GT_GT] = ACTIONS(1707), + [anon_sym_e_GT_GT] = ACTIONS(1707), + [anon_sym_o_GT_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), [anon_sym_POUND] = ACTIONS(3), }, [838] = { [sym_comment] = STATE(838), - [anon_sym_STAR_STAR] = ACTIONS(3063), - [anon_sym_PLUS_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_SLASH] = ACTIONS(3065), - [anon_sym_mod] = ACTIONS(3063), - [anon_sym_SLASH_SLASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_bit_DASHshl] = ACTIONS(3063), - [anon_sym_bit_DASHshr] = ACTIONS(3063), - [anon_sym_EQ_TILDE] = ACTIONS(3063), - [anon_sym_BANG_TILDE] = ACTIONS(3063), - [anon_sym_bit_DASHand] = ACTIONS(3063), - [anon_sym_bit_DASHxor] = ACTIONS(3063), - [anon_sym_bit_DASHor] = ACTIONS(3063), - [anon_sym_and] = ACTIONS(3063), - [anon_sym_xor] = ACTIONS(3063), - [anon_sym_or] = ACTIONS(3063), - [anon_sym_in] = ACTIONS(3063), - [anon_sym_not_DASHin] = ACTIONS(3063), - [anon_sym_starts_DASHwith] = ACTIONS(3063), - [anon_sym_ends_DASHwith] = ACTIONS(3063), - [anon_sym_EQ_EQ] = ACTIONS(3063), - [anon_sym_BANG_EQ] = ACTIONS(3063), - [anon_sym_LT] = ACTIONS(3065), - [anon_sym_LT_EQ] = ACTIONS(3063), - [anon_sym_GT] = ACTIONS(3065), - [anon_sym_GT_EQ] = ACTIONS(3063), - [aux_sym_cmd_identifier_token41] = ACTIONS(3067), - [sym__newline] = ACTIONS(1709), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_PIPE] = ACTIONS(1709), - [anon_sym_err_GT_PIPE] = ACTIONS(1709), - [anon_sym_out_GT_PIPE] = ACTIONS(1709), - [anon_sym_e_GT_PIPE] = ACTIONS(1709), - [anon_sym_o_GT_PIPE] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), - [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_RPAREN] = ACTIONS(1709), - [anon_sym_GT2] = ACTIONS(1709), - [anon_sym_DASH2] = ACTIONS(1709), - [anon_sym_in2] = ACTIONS(1709), - [anon_sym_STAR2] = ACTIONS(1709), - [anon_sym_and2] = ACTIONS(1709), - [anon_sym_xor2] = ACTIONS(1709), - [anon_sym_or2] = ACTIONS(1709), - [anon_sym_not_DASHin2] = ACTIONS(1709), - [anon_sym_starts_DASHwith2] = ACTIONS(1709), - [anon_sym_ends_DASHwith2] = ACTIONS(1709), - [anon_sym_EQ_EQ2] = ACTIONS(1709), - [anon_sym_BANG_EQ2] = ACTIONS(1709), - [anon_sym_LT2] = ACTIONS(1709), - [anon_sym_LT_EQ2] = ACTIONS(1709), - [anon_sym_GT_EQ2] = ACTIONS(1709), - [anon_sym_EQ_TILDE2] = ACTIONS(1709), - [anon_sym_BANG_TILDE2] = ACTIONS(1709), - [anon_sym_STAR_STAR2] = ACTIONS(1709), - [anon_sym_PLUS_PLUS2] = ACTIONS(1709), - [anon_sym_SLASH2] = ACTIONS(1709), - [anon_sym_mod2] = ACTIONS(1709), - [anon_sym_SLASH_SLASH2] = ACTIONS(1709), - [anon_sym_PLUS2] = ACTIONS(1709), - [anon_sym_bit_DASHshl2] = ACTIONS(1709), - [anon_sym_bit_DASHshr2] = ACTIONS(1709), - [anon_sym_bit_DASHand2] = ACTIONS(1709), - [anon_sym_bit_DASHxor2] = ACTIONS(1709), - [anon_sym_bit_DASHor2] = ACTIONS(1709), - [anon_sym_DOT_DOT2] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3039), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3039), - [sym_filesize_unit] = ACTIONS(3081), - [sym_duration_unit] = ACTIONS(3083), - [anon_sym_err_GT] = ACTIONS(1709), - [anon_sym_out_GT] = ACTIONS(1709), - [anon_sym_e_GT] = ACTIONS(1709), - [anon_sym_o_GT] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT] = ACTIONS(1709), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), - [anon_sym_o_PLUSe_GT] = ACTIONS(1709), - [anon_sym_e_PLUSo_GT] = ACTIONS(1709), - [anon_sym_err_GT_GT] = ACTIONS(1709), - [anon_sym_out_GT_GT] = ACTIONS(1709), - [anon_sym_e_GT_GT] = ACTIONS(1709), - [anon_sym_o_GT_GT] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1709), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1709), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1709), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1709), + [anon_sym_STAR_STAR] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1761), + [anon_sym_mod] = ACTIONS(1763), + [anon_sym_SLASH_SLASH] = ACTIONS(1763), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_bit_DASHshl] = ACTIONS(1763), + [anon_sym_bit_DASHshr] = ACTIONS(1763), + [anon_sym_EQ_TILDE] = ACTIONS(1763), + [anon_sym_BANG_TILDE] = ACTIONS(1763), + [anon_sym_bit_DASHand] = ACTIONS(1763), + [anon_sym_bit_DASHxor] = ACTIONS(1763), + [anon_sym_bit_DASHor] = ACTIONS(1763), + [anon_sym_and] = ACTIONS(1763), + [anon_sym_xor] = ACTIONS(1763), + [anon_sym_or] = ACTIONS(1763), + [anon_sym_in] = ACTIONS(1763), + [anon_sym_not_DASHin] = ACTIONS(1763), + [anon_sym_starts_DASHwith] = ACTIONS(1763), + [anon_sym_ends_DASHwith] = ACTIONS(1763), + [anon_sym_EQ_EQ] = ACTIONS(1763), + [anon_sym_BANG_EQ] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1761), + [anon_sym_LT_EQ] = ACTIONS(1763), + [anon_sym_GT] = ACTIONS(1761), + [anon_sym_GT_EQ] = ACTIONS(1763), + [aux_sym_cmd_identifier_token41] = ACTIONS(1761), + [sym__newline] = ACTIONS(1761), + [anon_sym_SEMI] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1761), + [anon_sym_err_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_GT_PIPE] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), + [anon_sym_GT2] = ACTIONS(1761), + [anon_sym_DASH2] = ACTIONS(1761), + [anon_sym_in2] = ACTIONS(1761), + [anon_sym_RBRACE] = ACTIONS(1761), + [anon_sym_STAR2] = ACTIONS(1761), + [anon_sym_and2] = ACTIONS(1761), + [anon_sym_xor2] = ACTIONS(1761), + [anon_sym_or2] = ACTIONS(1761), + [anon_sym_not_DASHin2] = ACTIONS(1761), + [anon_sym_starts_DASHwith2] = ACTIONS(1761), + [anon_sym_ends_DASHwith2] = ACTIONS(1761), + [anon_sym_EQ_EQ2] = ACTIONS(1761), + [anon_sym_BANG_EQ2] = ACTIONS(1761), + [anon_sym_LT2] = ACTIONS(1761), + [anon_sym_LT_EQ2] = ACTIONS(1761), + [anon_sym_GT_EQ2] = ACTIONS(1761), + [anon_sym_EQ_TILDE2] = ACTIONS(1761), + [anon_sym_BANG_TILDE2] = ACTIONS(1761), + [anon_sym_STAR_STAR2] = ACTIONS(1761), + [anon_sym_PLUS_PLUS2] = ACTIONS(1761), + [anon_sym_SLASH2] = ACTIONS(1761), + [anon_sym_mod2] = ACTIONS(1761), + [anon_sym_SLASH_SLASH2] = ACTIONS(1761), + [anon_sym_PLUS2] = ACTIONS(1761), + [anon_sym_bit_DASHshl2] = ACTIONS(1761), + [anon_sym_bit_DASHshr2] = ACTIONS(1761), + [anon_sym_bit_DASHand2] = ACTIONS(1761), + [anon_sym_bit_DASHxor2] = ACTIONS(1761), + [anon_sym_bit_DASHor2] = ACTIONS(1761), + [anon_sym_DOT_DOT2] = ACTIONS(1761), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), + [sym_filesize_unit] = ACTIONS(1761), + [sym_duration_unit] = ACTIONS(1763), + [anon_sym_err_GT] = ACTIONS(1761), + [anon_sym_out_GT] = ACTIONS(1761), + [anon_sym_e_GT] = ACTIONS(1761), + [anon_sym_o_GT] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT] = ACTIONS(1761), + [anon_sym_err_GT_GT] = ACTIONS(1761), + [anon_sym_out_GT_GT] = ACTIONS(1761), + [anon_sym_e_GT_GT] = ACTIONS(1761), + [anon_sym_o_GT_GT] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1761), [anon_sym_POUND] = ACTIONS(3), }, [839] = { [sym_comment] = STATE(839), - [anon_sym_STAR_STAR] = ACTIONS(1675), - [anon_sym_PLUS_PLUS] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1673), - [anon_sym_mod] = ACTIONS(1675), - [anon_sym_SLASH_SLASH] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_bit_DASHshl] = ACTIONS(1675), - [anon_sym_bit_DASHshr] = ACTIONS(1675), - [anon_sym_EQ_TILDE] = ACTIONS(1675), - [anon_sym_BANG_TILDE] = ACTIONS(1675), - [anon_sym_bit_DASHand] = ACTIONS(1675), - [anon_sym_bit_DASHxor] = ACTIONS(1675), - [anon_sym_bit_DASHor] = ACTIONS(1675), - [anon_sym_and] = ACTIONS(1675), - [anon_sym_xor] = ACTIONS(1675), - [anon_sym_or] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [anon_sym_not_DASHin] = ACTIONS(1675), - [anon_sym_starts_DASHwith] = ACTIONS(1675), - [anon_sym_ends_DASHwith] = ACTIONS(1675), - [anon_sym_EQ_EQ] = ACTIONS(1675), - [anon_sym_BANG_EQ] = ACTIONS(1675), - [anon_sym_LT] = ACTIONS(1673), - [anon_sym_LT_EQ] = ACTIONS(1675), - [anon_sym_GT] = ACTIONS(1673), - [anon_sym_GT_EQ] = ACTIONS(1675), - [aux_sym_cmd_identifier_token41] = ACTIONS(1673), - [sym__newline] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1673), - [anon_sym_err_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_GT_PIPE] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_in2] = ACTIONS(1673), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1673), - [anon_sym_xor2] = ACTIONS(1673), - [anon_sym_or2] = ACTIONS(1673), - [anon_sym_not_DASHin2] = ACTIONS(1673), - [anon_sym_starts_DASHwith2] = ACTIONS(1673), - [anon_sym_ends_DASHwith2] = ACTIONS(1673), - [anon_sym_EQ_EQ2] = ACTIONS(1673), - [anon_sym_BANG_EQ2] = ACTIONS(1673), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1673), - [anon_sym_GT_EQ2] = ACTIONS(1673), - [anon_sym_EQ_TILDE2] = ACTIONS(1673), - [anon_sym_BANG_TILDE2] = ACTIONS(1673), - [anon_sym_STAR_STAR2] = ACTIONS(1673), - [anon_sym_PLUS_PLUS2] = ACTIONS(1673), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1673), - [anon_sym_SLASH_SLASH2] = ACTIONS(1673), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1673), - [anon_sym_bit_DASHshr2] = ACTIONS(1673), - [anon_sym_bit_DASHand2] = ACTIONS(1673), - [anon_sym_bit_DASHxor2] = ACTIONS(1673), - [anon_sym_bit_DASHor2] = ACTIONS(1673), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [sym_filesize_unit] = ACTIONS(1673), - [sym_duration_unit] = ACTIONS(1675), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1673), - [anon_sym_out_GT_GT] = ACTIONS(1673), - [anon_sym_e_GT_GT] = ACTIONS(1673), - [anon_sym_o_GT_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), + [anon_sym_STAR_STAR] = ACTIONS(3071), + [anon_sym_PLUS_PLUS] = ACTIONS(3071), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_SLASH] = ACTIONS(3073), + [anon_sym_mod] = ACTIONS(3071), + [anon_sym_SLASH_SLASH] = ACTIONS(3071), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_DASH] = ACTIONS(3071), + [anon_sym_bit_DASHshl] = ACTIONS(3071), + [anon_sym_bit_DASHshr] = ACTIONS(3071), + [anon_sym_EQ_TILDE] = ACTIONS(3071), + [anon_sym_BANG_TILDE] = ACTIONS(3071), + [anon_sym_bit_DASHand] = ACTIONS(3071), + [anon_sym_bit_DASHxor] = ACTIONS(3071), + [anon_sym_bit_DASHor] = ACTIONS(3071), + [anon_sym_and] = ACTIONS(3071), + [anon_sym_xor] = ACTIONS(3071), + [anon_sym_or] = ACTIONS(3071), + [anon_sym_in] = ACTIONS(3071), + [anon_sym_not_DASHin] = ACTIONS(3071), + [anon_sym_starts_DASHwith] = ACTIONS(3071), + [anon_sym_ends_DASHwith] = ACTIONS(3071), + [anon_sym_EQ_EQ] = ACTIONS(3071), + [anon_sym_BANG_EQ] = ACTIONS(3071), + [anon_sym_LT] = ACTIONS(3073), + [anon_sym_LT_EQ] = ACTIONS(3071), + [anon_sym_GT] = ACTIONS(3073), + [anon_sym_GT_EQ] = ACTIONS(3071), + [aux_sym_cmd_identifier_token41] = ACTIONS(3075), + [sym__newline] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_err_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_GT_PIPE] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), + [anon_sym_GT2] = ACTIONS(1707), + [anon_sym_DASH2] = ACTIONS(1707), + [anon_sym_in2] = ACTIONS(1707), + [anon_sym_STAR2] = ACTIONS(1707), + [anon_sym_and2] = ACTIONS(1707), + [anon_sym_xor2] = ACTIONS(1707), + [anon_sym_or2] = ACTIONS(1707), + [anon_sym_not_DASHin2] = ACTIONS(1707), + [anon_sym_starts_DASHwith2] = ACTIONS(1707), + [anon_sym_ends_DASHwith2] = ACTIONS(1707), + [anon_sym_EQ_EQ2] = ACTIONS(1707), + [anon_sym_BANG_EQ2] = ACTIONS(1707), + [anon_sym_LT2] = ACTIONS(1707), + [anon_sym_LT_EQ2] = ACTIONS(1707), + [anon_sym_GT_EQ2] = ACTIONS(1707), + [anon_sym_EQ_TILDE2] = ACTIONS(1707), + [anon_sym_BANG_TILDE2] = ACTIONS(1707), + [anon_sym_STAR_STAR2] = ACTIONS(1707), + [anon_sym_PLUS_PLUS2] = ACTIONS(1707), + [anon_sym_SLASH2] = ACTIONS(1707), + [anon_sym_mod2] = ACTIONS(1707), + [anon_sym_SLASH_SLASH2] = ACTIONS(1707), + [anon_sym_PLUS2] = ACTIONS(1707), + [anon_sym_bit_DASHshl2] = ACTIONS(1707), + [anon_sym_bit_DASHshr2] = ACTIONS(1707), + [anon_sym_bit_DASHand2] = ACTIONS(1707), + [anon_sym_bit_DASHxor2] = ACTIONS(1707), + [anon_sym_bit_DASHor2] = ACTIONS(1707), + [anon_sym_DOT_DOT2] = ACTIONS(2900), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2902), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2902), + [sym_filesize_unit] = ACTIONS(3085), + [sym_duration_unit] = ACTIONS(3087), + [anon_sym_err_GT] = ACTIONS(1707), + [anon_sym_out_GT] = ACTIONS(1707), + [anon_sym_e_GT] = ACTIONS(1707), + [anon_sym_o_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT] = ACTIONS(1707), + [anon_sym_err_GT_GT] = ACTIONS(1707), + [anon_sym_out_GT_GT] = ACTIONS(1707), + [anon_sym_e_GT_GT] = ACTIONS(1707), + [anon_sym_o_GT_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), [anon_sym_POUND] = ACTIONS(3), }, [840] = { [sym_comment] = STATE(840), - [anon_sym_STAR_STAR] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_SLASH_SLASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_bit_DASHshl] = ACTIONS(1609), - [anon_sym_bit_DASHshr] = ACTIONS(1609), - [anon_sym_EQ_TILDE] = ACTIONS(1609), - [anon_sym_BANG_TILDE] = ACTIONS(1609), - [anon_sym_bit_DASHand] = ACTIONS(1609), - [anon_sym_bit_DASHxor] = ACTIONS(1609), - [anon_sym_bit_DASHor] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(1609), - [anon_sym_not_DASHin] = ACTIONS(1609), - [anon_sym_starts_DASHwith] = ACTIONS(1609), - [anon_sym_ends_DASHwith] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1609), - [anon_sym_BANG_EQ] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1609), - [aux_sym_cmd_identifier_token41] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(3079), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1607), - [anon_sym_out_GT_GT] = ACTIONS(1607), - [anon_sym_e_GT_GT] = ACTIONS(1607), - [anon_sym_o_GT_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_bit_DASHshl] = ACTIONS(1575), + [anon_sym_bit_DASHshr] = ACTIONS(1575), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_BANG_TILDE] = ACTIONS(1575), + [anon_sym_bit_DASHand] = ACTIONS(1575), + [anon_sym_bit_DASHxor] = ACTIONS(1575), + [anon_sym_bit_DASHor] = ACTIONS(1575), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_not_DASHin] = ACTIONS(1575), + [anon_sym_starts_DASHwith] = ACTIONS(1575), + [anon_sym_ends_DASHwith] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1575), + [aux_sym_cmd_identifier_token41] = ACTIONS(1573), + [sym__newline] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_err_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_GT_PIPE] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1573), + [anon_sym_xor2] = ACTIONS(1573), + [anon_sym_or2] = ACTIONS(1573), + [anon_sym_not_DASHin2] = ACTIONS(1573), + [anon_sym_starts_DASHwith2] = ACTIONS(1573), + [anon_sym_ends_DASHwith2] = ACTIONS(1573), + [anon_sym_EQ_EQ2] = ACTIONS(1573), + [anon_sym_BANG_EQ2] = ACTIONS(1573), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1573), + [anon_sym_GT_EQ2] = ACTIONS(1573), + [anon_sym_EQ_TILDE2] = ACTIONS(1573), + [anon_sym_BANG_TILDE2] = ACTIONS(1573), + [anon_sym_STAR_STAR2] = ACTIONS(1573), + [anon_sym_PLUS_PLUS2] = ACTIONS(1573), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1573), + [anon_sym_SLASH_SLASH2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1573), + [anon_sym_bit_DASHshr2] = ACTIONS(1573), + [anon_sym_bit_DASHand2] = ACTIONS(1573), + [anon_sym_bit_DASHxor2] = ACTIONS(1573), + [anon_sym_bit_DASHor2] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1573), + [anon_sym_out_GT_GT] = ACTIONS(1573), + [anon_sym_e_GT_GT] = ACTIONS(1573), + [anon_sym_o_GT_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), [anon_sym_POUND] = ACTIONS(3), }, [841] = { [sym_comment] = STATE(841), - [anon_sym_STAR_STAR] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_SLASH_SLASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_bit_DASHshl] = ACTIONS(1609), - [anon_sym_bit_DASHshr] = ACTIONS(1609), - [anon_sym_EQ_TILDE] = ACTIONS(1609), - [anon_sym_BANG_TILDE] = ACTIONS(1609), - [anon_sym_bit_DASHand] = ACTIONS(1609), - [anon_sym_bit_DASHxor] = ACTIONS(1609), - [anon_sym_bit_DASHor] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(1609), - [anon_sym_not_DASHin] = ACTIONS(1609), - [anon_sym_starts_DASHwith] = ACTIONS(1609), - [anon_sym_ends_DASHwith] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1609), - [anon_sym_BANG_EQ] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1609), - [aux_sym_cmd_identifier_token41] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1607), - [anon_sym_out_GT_GT] = ACTIONS(1607), - [anon_sym_e_GT_GT] = ACTIONS(1607), - [anon_sym_o_GT_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [anon_sym_STAR_STAR] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1681), + [anon_sym_SLASH] = ACTIONS(1681), + [anon_sym_mod] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_bit_DASHshl] = ACTIONS(1683), + [anon_sym_bit_DASHshr] = ACTIONS(1683), + [anon_sym_EQ_TILDE] = ACTIONS(1683), + [anon_sym_BANG_TILDE] = ACTIONS(1683), + [anon_sym_bit_DASHand] = ACTIONS(1683), + [anon_sym_bit_DASHxor] = ACTIONS(1683), + [anon_sym_bit_DASHor] = ACTIONS(1683), + [anon_sym_and] = ACTIONS(1683), + [anon_sym_xor] = ACTIONS(1683), + [anon_sym_or] = ACTIONS(1683), + [anon_sym_in] = ACTIONS(1683), + [anon_sym_not_DASHin] = ACTIONS(1683), + [anon_sym_starts_DASHwith] = ACTIONS(1683), + [anon_sym_ends_DASHwith] = ACTIONS(1683), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(1683), + [aux_sym_cmd_identifier_token41] = ACTIONS(1681), + [sym__newline] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_err_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_GT_PIPE] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), + [anon_sym_GT2] = ACTIONS(1681), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_in2] = ACTIONS(1681), + [anon_sym_STAR2] = ACTIONS(1681), + [anon_sym_and2] = ACTIONS(1681), + [anon_sym_xor2] = ACTIONS(1681), + [anon_sym_or2] = ACTIONS(1681), + [anon_sym_not_DASHin2] = ACTIONS(1681), + [anon_sym_starts_DASHwith2] = ACTIONS(1681), + [anon_sym_ends_DASHwith2] = ACTIONS(1681), + [anon_sym_EQ_EQ2] = ACTIONS(1681), + [anon_sym_BANG_EQ2] = ACTIONS(1681), + [anon_sym_LT2] = ACTIONS(1681), + [anon_sym_LT_EQ2] = ACTIONS(1681), + [anon_sym_GT_EQ2] = ACTIONS(1681), + [anon_sym_EQ_TILDE2] = ACTIONS(1681), + [anon_sym_BANG_TILDE2] = ACTIONS(1681), + [anon_sym_STAR_STAR2] = ACTIONS(1681), + [anon_sym_PLUS_PLUS2] = ACTIONS(1681), + [anon_sym_SLASH2] = ACTIONS(1681), + [anon_sym_mod2] = ACTIONS(1681), + [anon_sym_SLASH_SLASH2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1681), + [anon_sym_bit_DASHshl2] = ACTIONS(1681), + [anon_sym_bit_DASHshr2] = ACTIONS(1681), + [anon_sym_bit_DASHand2] = ACTIONS(1681), + [anon_sym_bit_DASHxor2] = ACTIONS(1681), + [anon_sym_bit_DASHor2] = ACTIONS(1681), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [sym_filesize_unit] = ACTIONS(1681), + [sym_duration_unit] = ACTIONS(1683), + [anon_sym_err_GT] = ACTIONS(1681), + [anon_sym_out_GT] = ACTIONS(1681), + [anon_sym_e_GT] = ACTIONS(1681), + [anon_sym_o_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT] = ACTIONS(1681), + [anon_sym_err_GT_GT] = ACTIONS(1681), + [anon_sym_out_GT_GT] = ACTIONS(1681), + [anon_sym_e_GT_GT] = ACTIONS(1681), + [anon_sym_o_GT_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), [anon_sym_POUND] = ACTIONS(3), }, [842] = { [sym_comment] = STATE(842), - [anon_sym_STAR_STAR] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1763), - [anon_sym_SLASH] = ACTIONS(1763), - [anon_sym_mod] = ACTIONS(1765), - [anon_sym_SLASH_SLASH] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_bit_DASHshl] = ACTIONS(1765), - [anon_sym_bit_DASHshr] = ACTIONS(1765), - [anon_sym_EQ_TILDE] = ACTIONS(1765), - [anon_sym_BANG_TILDE] = ACTIONS(1765), - [anon_sym_bit_DASHand] = ACTIONS(1765), - [anon_sym_bit_DASHxor] = ACTIONS(1765), - [anon_sym_bit_DASHor] = ACTIONS(1765), - [anon_sym_and] = ACTIONS(1765), - [anon_sym_xor] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), - [anon_sym_in] = ACTIONS(1765), - [anon_sym_not_DASHin] = ACTIONS(1765), - [anon_sym_starts_DASHwith] = ACTIONS(1765), - [anon_sym_ends_DASHwith] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1765), - [anon_sym_BANG_EQ] = ACTIONS(1765), - [anon_sym_LT] = ACTIONS(1763), - [anon_sym_LT_EQ] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1765), - [aux_sym_cmd_identifier_token41] = ACTIONS(1763), - [sym__newline] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_err_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_GT_PIPE] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), - [anon_sym_GT2] = ACTIONS(1763), - [anon_sym_DASH2] = ACTIONS(1763), - [anon_sym_in2] = ACTIONS(1763), - [anon_sym_STAR2] = ACTIONS(1763), - [anon_sym_and2] = ACTIONS(1763), - [anon_sym_xor2] = ACTIONS(1763), - [anon_sym_or2] = ACTIONS(1763), - [anon_sym_not_DASHin2] = ACTIONS(1763), - [anon_sym_starts_DASHwith2] = ACTIONS(1763), - [anon_sym_ends_DASHwith2] = ACTIONS(1763), - [anon_sym_EQ_EQ2] = ACTIONS(1763), - [anon_sym_BANG_EQ2] = ACTIONS(1763), - [anon_sym_LT2] = ACTIONS(1763), - [anon_sym_LT_EQ2] = ACTIONS(1763), - [anon_sym_GT_EQ2] = ACTIONS(1763), - [anon_sym_EQ_TILDE2] = ACTIONS(1763), - [anon_sym_BANG_TILDE2] = ACTIONS(1763), - [anon_sym_STAR_STAR2] = ACTIONS(1763), - [anon_sym_PLUS_PLUS2] = ACTIONS(1763), - [anon_sym_SLASH2] = ACTIONS(1763), - [anon_sym_mod2] = ACTIONS(1763), - [anon_sym_SLASH_SLASH2] = ACTIONS(1763), - [anon_sym_PLUS2] = ACTIONS(1763), - [anon_sym_bit_DASHshl2] = ACTIONS(1763), - [anon_sym_bit_DASHshr2] = ACTIONS(1763), - [anon_sym_bit_DASHand2] = ACTIONS(1763), - [anon_sym_bit_DASHxor2] = ACTIONS(1763), - [anon_sym_bit_DASHor2] = ACTIONS(1763), - [anon_sym_DOT_DOT2] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), - [sym_filesize_unit] = ACTIONS(1763), - [sym_duration_unit] = ACTIONS(1765), - [anon_sym_err_GT] = ACTIONS(1763), - [anon_sym_out_GT] = ACTIONS(1763), - [anon_sym_e_GT] = ACTIONS(1763), - [anon_sym_o_GT] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT] = ACTIONS(1763), - [anon_sym_err_GT_GT] = ACTIONS(1763), - [anon_sym_out_GT_GT] = ACTIONS(1763), - [anon_sym_e_GT_GT] = ACTIONS(1763), - [anon_sym_o_GT_GT] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1763), + [anon_sym_STAR_STAR] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1761), + [anon_sym_mod] = ACTIONS(1763), + [anon_sym_SLASH_SLASH] = ACTIONS(1763), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_bit_DASHshl] = ACTIONS(1763), + [anon_sym_bit_DASHshr] = ACTIONS(1763), + [anon_sym_EQ_TILDE] = ACTIONS(1763), + [anon_sym_BANG_TILDE] = ACTIONS(1763), + [anon_sym_bit_DASHand] = ACTIONS(1763), + [anon_sym_bit_DASHxor] = ACTIONS(1763), + [anon_sym_bit_DASHor] = ACTIONS(1763), + [anon_sym_and] = ACTIONS(1763), + [anon_sym_xor] = ACTIONS(1763), + [anon_sym_or] = ACTIONS(1763), + [anon_sym_in] = ACTIONS(1763), + [anon_sym_not_DASHin] = ACTIONS(1763), + [anon_sym_starts_DASHwith] = ACTIONS(1763), + [anon_sym_ends_DASHwith] = ACTIONS(1763), + [anon_sym_EQ_EQ] = ACTIONS(1763), + [anon_sym_BANG_EQ] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1761), + [anon_sym_LT_EQ] = ACTIONS(1763), + [anon_sym_GT] = ACTIONS(1761), + [anon_sym_GT_EQ] = ACTIONS(1763), + [aux_sym_cmd_identifier_token41] = ACTIONS(1761), + [sym__newline] = ACTIONS(1761), + [anon_sym_SEMI] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1761), + [anon_sym_err_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_GT_PIPE] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), + [anon_sym_GT2] = ACTIONS(1761), + [anon_sym_DASH2] = ACTIONS(1761), + [anon_sym_in2] = ACTIONS(1761), + [anon_sym_STAR2] = ACTIONS(1761), + [anon_sym_and2] = ACTIONS(1761), + [anon_sym_xor2] = ACTIONS(1761), + [anon_sym_or2] = ACTIONS(1761), + [anon_sym_not_DASHin2] = ACTIONS(1761), + [anon_sym_starts_DASHwith2] = ACTIONS(1761), + [anon_sym_ends_DASHwith2] = ACTIONS(1761), + [anon_sym_EQ_EQ2] = ACTIONS(1761), + [anon_sym_BANG_EQ2] = ACTIONS(1761), + [anon_sym_LT2] = ACTIONS(1761), + [anon_sym_LT_EQ2] = ACTIONS(1761), + [anon_sym_GT_EQ2] = ACTIONS(1761), + [anon_sym_EQ_TILDE2] = ACTIONS(1761), + [anon_sym_BANG_TILDE2] = ACTIONS(1761), + [anon_sym_STAR_STAR2] = ACTIONS(1761), + [anon_sym_PLUS_PLUS2] = ACTIONS(1761), + [anon_sym_SLASH2] = ACTIONS(1761), + [anon_sym_mod2] = ACTIONS(1761), + [anon_sym_SLASH_SLASH2] = ACTIONS(1761), + [anon_sym_PLUS2] = ACTIONS(1761), + [anon_sym_bit_DASHshl2] = ACTIONS(1761), + [anon_sym_bit_DASHshr2] = ACTIONS(1761), + [anon_sym_bit_DASHand2] = ACTIONS(1761), + [anon_sym_bit_DASHxor2] = ACTIONS(1761), + [anon_sym_bit_DASHor2] = ACTIONS(1761), + [anon_sym_DOT_DOT2] = ACTIONS(1761), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), + [sym_filesize_unit] = ACTIONS(1761), + [sym_duration_unit] = ACTIONS(1763), + [anon_sym_err_GT] = ACTIONS(1761), + [anon_sym_out_GT] = ACTIONS(1761), + [anon_sym_e_GT] = ACTIONS(1761), + [anon_sym_o_GT] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT] = ACTIONS(1761), + [anon_sym_err_GT_GT] = ACTIONS(1761), + [anon_sym_out_GT_GT] = ACTIONS(1761), + [anon_sym_e_GT_GT] = ACTIONS(1761), + [anon_sym_o_GT_GT] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1761), [anon_sym_POUND] = ACTIONS(3), }, [843] = { [sym_comment] = STATE(843), - [anon_sym_STAR_STAR] = ACTIONS(1675), - [anon_sym_PLUS_PLUS] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1673), - [anon_sym_mod] = ACTIONS(1675), - [anon_sym_SLASH_SLASH] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_bit_DASHshl] = ACTIONS(1675), - [anon_sym_bit_DASHshr] = ACTIONS(1675), - [anon_sym_EQ_TILDE] = ACTIONS(1675), - [anon_sym_BANG_TILDE] = ACTIONS(1675), - [anon_sym_bit_DASHand] = ACTIONS(1675), - [anon_sym_bit_DASHxor] = ACTIONS(1675), - [anon_sym_bit_DASHor] = ACTIONS(1675), - [anon_sym_and] = ACTIONS(1675), - [anon_sym_xor] = ACTIONS(1675), - [anon_sym_or] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [anon_sym_not_DASHin] = ACTIONS(1675), - [anon_sym_starts_DASHwith] = ACTIONS(1675), - [anon_sym_ends_DASHwith] = ACTIONS(1675), - [anon_sym_EQ_EQ] = ACTIONS(1675), - [anon_sym_BANG_EQ] = ACTIONS(1675), - [anon_sym_LT] = ACTIONS(1673), - [anon_sym_LT_EQ] = ACTIONS(1675), - [anon_sym_GT] = ACTIONS(1673), - [anon_sym_GT_EQ] = ACTIONS(1675), - [aux_sym_cmd_identifier_token41] = ACTIONS(1673), - [sym__newline] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1673), - [anon_sym_err_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_GT_PIPE] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_in2] = ACTIONS(1673), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1673), - [anon_sym_xor2] = ACTIONS(1673), - [anon_sym_or2] = ACTIONS(1673), - [anon_sym_not_DASHin2] = ACTIONS(1673), - [anon_sym_starts_DASHwith2] = ACTIONS(1673), - [anon_sym_ends_DASHwith2] = ACTIONS(1673), - [anon_sym_EQ_EQ2] = ACTIONS(1673), - [anon_sym_BANG_EQ2] = ACTIONS(1673), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1673), - [anon_sym_GT_EQ2] = ACTIONS(1673), - [anon_sym_EQ_TILDE2] = ACTIONS(1673), - [anon_sym_BANG_TILDE2] = ACTIONS(1673), - [anon_sym_STAR_STAR2] = ACTIONS(1673), - [anon_sym_PLUS_PLUS2] = ACTIONS(1673), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1673), - [anon_sym_SLASH_SLASH2] = ACTIONS(1673), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1673), - [anon_sym_bit_DASHshr2] = ACTIONS(1673), - [anon_sym_bit_DASHand2] = ACTIONS(1673), - [anon_sym_bit_DASHxor2] = ACTIONS(1673), - [anon_sym_bit_DASHor2] = ACTIONS(1673), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [aux_sym__immediate_decimal_token2] = ACTIONS(3085), - [sym_filesize_unit] = ACTIONS(1673), - [sym_duration_unit] = ACTIONS(1675), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1673), - [anon_sym_out_GT_GT] = ACTIONS(1673), - [anon_sym_e_GT_GT] = ACTIONS(1673), - [anon_sym_o_GT_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), + [anon_sym_STAR_STAR] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1681), + [anon_sym_SLASH] = ACTIONS(1681), + [anon_sym_mod] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_bit_DASHshl] = ACTIONS(1683), + [anon_sym_bit_DASHshr] = ACTIONS(1683), + [anon_sym_EQ_TILDE] = ACTIONS(1683), + [anon_sym_BANG_TILDE] = ACTIONS(1683), + [anon_sym_bit_DASHand] = ACTIONS(1683), + [anon_sym_bit_DASHxor] = ACTIONS(1683), + [anon_sym_bit_DASHor] = ACTIONS(1683), + [anon_sym_and] = ACTIONS(1683), + [anon_sym_xor] = ACTIONS(1683), + [anon_sym_or] = ACTIONS(1683), + [anon_sym_in] = ACTIONS(1683), + [anon_sym_not_DASHin] = ACTIONS(1683), + [anon_sym_starts_DASHwith] = ACTIONS(1683), + [anon_sym_ends_DASHwith] = ACTIONS(1683), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(1683), + [aux_sym_cmd_identifier_token41] = ACTIONS(1681), + [sym__newline] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_err_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_GT_PIPE] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), + [anon_sym_GT2] = ACTIONS(1681), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_in2] = ACTIONS(1681), + [anon_sym_STAR2] = ACTIONS(1681), + [anon_sym_and2] = ACTIONS(1681), + [anon_sym_xor2] = ACTIONS(1681), + [anon_sym_or2] = ACTIONS(1681), + [anon_sym_not_DASHin2] = ACTIONS(1681), + [anon_sym_starts_DASHwith2] = ACTIONS(1681), + [anon_sym_ends_DASHwith2] = ACTIONS(1681), + [anon_sym_EQ_EQ2] = ACTIONS(1681), + [anon_sym_BANG_EQ2] = ACTIONS(1681), + [anon_sym_LT2] = ACTIONS(1681), + [anon_sym_LT_EQ2] = ACTIONS(1681), + [anon_sym_GT_EQ2] = ACTIONS(1681), + [anon_sym_EQ_TILDE2] = ACTIONS(1681), + [anon_sym_BANG_TILDE2] = ACTIONS(1681), + [anon_sym_STAR_STAR2] = ACTIONS(1681), + [anon_sym_PLUS_PLUS2] = ACTIONS(1681), + [anon_sym_SLASH2] = ACTIONS(1681), + [anon_sym_mod2] = ACTIONS(1681), + [anon_sym_SLASH_SLASH2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1681), + [anon_sym_bit_DASHshl2] = ACTIONS(1681), + [anon_sym_bit_DASHshr2] = ACTIONS(1681), + [anon_sym_bit_DASHand2] = ACTIONS(1681), + [anon_sym_bit_DASHxor2] = ACTIONS(1681), + [anon_sym_bit_DASHor2] = ACTIONS(1681), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [aux_sym__immediate_decimal_token2] = ACTIONS(3089), + [sym_filesize_unit] = ACTIONS(1681), + [sym_duration_unit] = ACTIONS(1683), + [anon_sym_err_GT] = ACTIONS(1681), + [anon_sym_out_GT] = ACTIONS(1681), + [anon_sym_e_GT] = ACTIONS(1681), + [anon_sym_o_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT] = ACTIONS(1681), + [anon_sym_err_GT_GT] = ACTIONS(1681), + [anon_sym_out_GT_GT] = ACTIONS(1681), + [anon_sym_e_GT_GT] = ACTIONS(1681), + [anon_sym_o_GT_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), [anon_sym_POUND] = ACTIONS(3), }, [844] = { [sym_comment] = STATE(844), - [anon_sym_STAR_STAR] = ACTIONS(3063), - [anon_sym_PLUS_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_SLASH] = ACTIONS(3065), - [anon_sym_mod] = ACTIONS(3063), - [anon_sym_SLASH_SLASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_bit_DASHshl] = ACTIONS(3063), - [anon_sym_bit_DASHshr] = ACTIONS(3063), - [anon_sym_EQ_TILDE] = ACTIONS(3063), - [anon_sym_BANG_TILDE] = ACTIONS(3063), - [anon_sym_bit_DASHand] = ACTIONS(3063), - [anon_sym_bit_DASHxor] = ACTIONS(3063), - [anon_sym_bit_DASHor] = ACTIONS(3063), - [anon_sym_and] = ACTIONS(3063), - [anon_sym_xor] = ACTIONS(3063), - [anon_sym_or] = ACTIONS(3063), - [anon_sym_in] = ACTIONS(3063), - [anon_sym_not_DASHin] = ACTIONS(3063), - [anon_sym_starts_DASHwith] = ACTIONS(3063), - [anon_sym_ends_DASHwith] = ACTIONS(3063), - [anon_sym_EQ_EQ] = ACTIONS(3063), - [anon_sym_BANG_EQ] = ACTIONS(3063), - [anon_sym_LT] = ACTIONS(3065), - [anon_sym_LT_EQ] = ACTIONS(3063), - [anon_sym_GT] = ACTIONS(3065), - [anon_sym_GT_EQ] = ACTIONS(3063), - [aux_sym_cmd_identifier_token41] = ACTIONS(3067), - [sym__newline] = ACTIONS(1709), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_PIPE] = ACTIONS(1709), - [anon_sym_err_GT_PIPE] = ACTIONS(1709), - [anon_sym_out_GT_PIPE] = ACTIONS(1709), - [anon_sym_e_GT_PIPE] = ACTIONS(1709), - [anon_sym_o_GT_PIPE] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), - [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_GT2] = ACTIONS(1709), - [anon_sym_DASH2] = ACTIONS(1709), - [anon_sym_in2] = ACTIONS(1709), - [anon_sym_STAR2] = ACTIONS(1709), - [anon_sym_and2] = ACTIONS(1709), - [anon_sym_xor2] = ACTIONS(1709), - [anon_sym_or2] = ACTIONS(1709), - [anon_sym_not_DASHin2] = ACTIONS(1709), - [anon_sym_starts_DASHwith2] = ACTIONS(1709), - [anon_sym_ends_DASHwith2] = ACTIONS(1709), - [anon_sym_EQ_EQ2] = ACTIONS(1709), - [anon_sym_BANG_EQ2] = ACTIONS(1709), - [anon_sym_LT2] = ACTIONS(1709), - [anon_sym_LT_EQ2] = ACTIONS(1709), - [anon_sym_GT_EQ2] = ACTIONS(1709), - [anon_sym_EQ_TILDE2] = ACTIONS(1709), - [anon_sym_BANG_TILDE2] = ACTIONS(1709), - [anon_sym_STAR_STAR2] = ACTIONS(1709), - [anon_sym_PLUS_PLUS2] = ACTIONS(1709), - [anon_sym_SLASH2] = ACTIONS(1709), - [anon_sym_mod2] = ACTIONS(1709), - [anon_sym_SLASH_SLASH2] = ACTIONS(1709), - [anon_sym_PLUS2] = ACTIONS(1709), - [anon_sym_bit_DASHshl2] = ACTIONS(1709), - [anon_sym_bit_DASHshr2] = ACTIONS(1709), - [anon_sym_bit_DASHand2] = ACTIONS(1709), - [anon_sym_bit_DASHxor2] = ACTIONS(1709), - [anon_sym_bit_DASHor2] = ACTIONS(1709), - [anon_sym_DOT_DOT2] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3039), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3039), - [sym_filesize_unit] = ACTIONS(3087), - [sym_duration_unit] = ACTIONS(3089), - [anon_sym_err_GT] = ACTIONS(1709), - [anon_sym_out_GT] = ACTIONS(1709), - [anon_sym_e_GT] = ACTIONS(1709), - [anon_sym_o_GT] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT] = ACTIONS(1709), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), - [anon_sym_o_PLUSe_GT] = ACTIONS(1709), - [anon_sym_e_PLUSo_GT] = ACTIONS(1709), - [anon_sym_err_GT_GT] = ACTIONS(1709), - [anon_sym_out_GT_GT] = ACTIONS(1709), - [anon_sym_e_GT_GT] = ACTIONS(1709), - [anon_sym_o_GT_GT] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1709), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1709), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1709), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1709), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_bit_DASHshl] = ACTIONS(1575), + [anon_sym_bit_DASHshr] = ACTIONS(1575), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_BANG_TILDE] = ACTIONS(1575), + [anon_sym_bit_DASHand] = ACTIONS(1575), + [anon_sym_bit_DASHxor] = ACTIONS(1575), + [anon_sym_bit_DASHor] = ACTIONS(1575), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_not_DASHin] = ACTIONS(1575), + [anon_sym_starts_DASHwith] = ACTIONS(1575), + [anon_sym_ends_DASHwith] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1575), + [aux_sym_cmd_identifier_token41] = ACTIONS(1573), + [sym__newline] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_err_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_GT_PIPE] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1573), + [anon_sym_xor2] = ACTIONS(1573), + [anon_sym_or2] = ACTIONS(1573), + [anon_sym_not_DASHin2] = ACTIONS(1573), + [anon_sym_starts_DASHwith2] = ACTIONS(1573), + [anon_sym_ends_DASHwith2] = ACTIONS(1573), + [anon_sym_EQ_EQ2] = ACTIONS(1573), + [anon_sym_BANG_EQ2] = ACTIONS(1573), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1573), + [anon_sym_GT_EQ2] = ACTIONS(1573), + [anon_sym_EQ_TILDE2] = ACTIONS(1573), + [anon_sym_BANG_TILDE2] = ACTIONS(1573), + [anon_sym_STAR_STAR2] = ACTIONS(1573), + [anon_sym_PLUS_PLUS2] = ACTIONS(1573), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1573), + [anon_sym_SLASH_SLASH2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1573), + [anon_sym_bit_DASHshr2] = ACTIONS(1573), + [anon_sym_bit_DASHand2] = ACTIONS(1573), + [anon_sym_bit_DASHxor2] = ACTIONS(1573), + [anon_sym_bit_DASHor2] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(3065), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1573), + [anon_sym_out_GT_GT] = ACTIONS(1573), + [anon_sym_e_GT_GT] = ACTIONS(1573), + [anon_sym_o_GT_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), [anon_sym_POUND] = ACTIONS(3), }, [845] = { [sym_comment] = STATE(845), - [anon_sym_STAR_STAR] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_SLASH] = ACTIONS(1621), - [anon_sym_mod] = ACTIONS(1623), - [anon_sym_SLASH_SLASH] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_bit_DASHshl] = ACTIONS(1623), - [anon_sym_bit_DASHshr] = ACTIONS(1623), - [anon_sym_EQ_TILDE] = ACTIONS(1623), - [anon_sym_BANG_TILDE] = ACTIONS(1623), - [anon_sym_bit_DASHand] = ACTIONS(1623), - [anon_sym_bit_DASHxor] = ACTIONS(1623), - [anon_sym_bit_DASHor] = ACTIONS(1623), - [anon_sym_and] = ACTIONS(1623), - [anon_sym_xor] = ACTIONS(1623), - [anon_sym_or] = ACTIONS(1623), - [anon_sym_in] = ACTIONS(1623), - [anon_sym_not_DASHin] = ACTIONS(1623), - [anon_sym_starts_DASHwith] = ACTIONS(1623), - [anon_sym_ends_DASHwith] = ACTIONS(1623), - [anon_sym_EQ_EQ] = ACTIONS(1623), - [anon_sym_BANG_EQ] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1621), - [anon_sym_LT_EQ] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1621), - [anon_sym_GT_EQ] = ACTIONS(1623), - [aux_sym_cmd_identifier_token41] = ACTIONS(1621), - [sym__newline] = ACTIONS(1621), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_PIPE] = ACTIONS(1621), - [anon_sym_err_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_GT_PIPE] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), - [anon_sym_GT2] = ACTIONS(1621), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_in2] = ACTIONS(1621), - [anon_sym_STAR2] = ACTIONS(1621), - [anon_sym_and2] = ACTIONS(1621), - [anon_sym_xor2] = ACTIONS(1621), - [anon_sym_or2] = ACTIONS(1621), - [anon_sym_not_DASHin2] = ACTIONS(1621), - [anon_sym_starts_DASHwith2] = ACTIONS(1621), - [anon_sym_ends_DASHwith2] = ACTIONS(1621), - [anon_sym_EQ_EQ2] = ACTIONS(1621), - [anon_sym_BANG_EQ2] = ACTIONS(1621), - [anon_sym_LT2] = ACTIONS(1621), - [anon_sym_LT_EQ2] = ACTIONS(1621), - [anon_sym_GT_EQ2] = ACTIONS(1621), - [anon_sym_EQ_TILDE2] = ACTIONS(1621), - [anon_sym_BANG_TILDE2] = ACTIONS(1621), - [anon_sym_STAR_STAR2] = ACTIONS(1621), - [anon_sym_PLUS_PLUS2] = ACTIONS(1621), - [anon_sym_SLASH2] = ACTIONS(1621), - [anon_sym_mod2] = ACTIONS(1621), - [anon_sym_SLASH_SLASH2] = ACTIONS(1621), - [anon_sym_PLUS2] = ACTIONS(1621), - [anon_sym_bit_DASHshl2] = ACTIONS(1621), - [anon_sym_bit_DASHshr2] = ACTIONS(1621), - [anon_sym_bit_DASHand2] = ACTIONS(1621), - [anon_sym_bit_DASHxor2] = ACTIONS(1621), - [anon_sym_bit_DASHor2] = ACTIONS(1621), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [sym_filesize_unit] = ACTIONS(1621), - [sym_duration_unit] = ACTIONS(1623), - [anon_sym_err_GT] = ACTIONS(1621), - [anon_sym_out_GT] = ACTIONS(1621), - [anon_sym_e_GT] = ACTIONS(1621), - [anon_sym_o_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT] = ACTIONS(1621), - [anon_sym_err_GT_GT] = ACTIONS(1621), - [anon_sym_out_GT_GT] = ACTIONS(1621), - [anon_sym_e_GT_GT] = ACTIONS(1621), - [anon_sym_o_GT_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1621), + [anon_sym_STAR_STAR] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_mod] = ACTIONS(1587), + [anon_sym_SLASH_SLASH] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_bit_DASHshl] = ACTIONS(1587), + [anon_sym_bit_DASHshr] = ACTIONS(1587), + [anon_sym_EQ_TILDE] = ACTIONS(1587), + [anon_sym_BANG_TILDE] = ACTIONS(1587), + [anon_sym_bit_DASHand] = ACTIONS(1587), + [anon_sym_bit_DASHxor] = ACTIONS(1587), + [anon_sym_bit_DASHor] = ACTIONS(1587), + [anon_sym_and] = ACTIONS(1587), + [anon_sym_xor] = ACTIONS(1587), + [anon_sym_or] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(1587), + [anon_sym_not_DASHin] = ACTIONS(1587), + [anon_sym_starts_DASHwith] = ACTIONS(1587), + [anon_sym_ends_DASHwith] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(1587), + [anon_sym_BANG_EQ] = ACTIONS(1587), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_LT_EQ] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1587), + [aux_sym_cmd_identifier_token41] = ACTIONS(1585), + [sym__newline] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_err_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_GT_PIPE] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), + [anon_sym_GT2] = ACTIONS(1585), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_in2] = ACTIONS(1585), + [anon_sym_STAR2] = ACTIONS(1585), + [anon_sym_and2] = ACTIONS(1585), + [anon_sym_xor2] = ACTIONS(1585), + [anon_sym_or2] = ACTIONS(1585), + [anon_sym_not_DASHin2] = ACTIONS(1585), + [anon_sym_starts_DASHwith2] = ACTIONS(1585), + [anon_sym_ends_DASHwith2] = ACTIONS(1585), + [anon_sym_EQ_EQ2] = ACTIONS(1585), + [anon_sym_BANG_EQ2] = ACTIONS(1585), + [anon_sym_LT2] = ACTIONS(1585), + [anon_sym_LT_EQ2] = ACTIONS(1585), + [anon_sym_GT_EQ2] = ACTIONS(1585), + [anon_sym_EQ_TILDE2] = ACTIONS(1585), + [anon_sym_BANG_TILDE2] = ACTIONS(1585), + [anon_sym_STAR_STAR2] = ACTIONS(1585), + [anon_sym_PLUS_PLUS2] = ACTIONS(1585), + [anon_sym_SLASH2] = ACTIONS(1585), + [anon_sym_mod2] = ACTIONS(1585), + [anon_sym_SLASH_SLASH2] = ACTIONS(1585), + [anon_sym_PLUS2] = ACTIONS(1585), + [anon_sym_bit_DASHshl2] = ACTIONS(1585), + [anon_sym_bit_DASHshr2] = ACTIONS(1585), + [anon_sym_bit_DASHand2] = ACTIONS(1585), + [anon_sym_bit_DASHxor2] = ACTIONS(1585), + [anon_sym_bit_DASHor2] = ACTIONS(1585), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [sym_filesize_unit] = ACTIONS(1585), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1585), + [anon_sym_out_GT_GT] = ACTIONS(1585), + [anon_sym_e_GT_GT] = ACTIONS(1585), + [anon_sym_o_GT_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1585), [anon_sym_POUND] = ACTIONS(3), }, [846] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7294), - [sym__spread_list] = STATE(7416), - [sym_list_body] = STATE(7619), - [sym_val_entry] = STATE(6851), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7404), + [sym__spread_list] = STATE(7653), + [sym_list_body] = STATE(7979), + [sym_val_entry] = STATE(7361), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(846), - [aux_sym_shebang_repeat1] = STATE(885), - [aux_sym_parameter_repeat2] = STATE(6505), - [aux_sym_list_body_repeat1] = STATE(907), - [sym__newline] = ACTIONS(2540), + [aux_sym_shebang_repeat1] = STATE(901), + [aux_sym_parameter_repeat2] = STATE(6813), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(2530), [anon_sym_LBRACK] = ACTIONS(3091), [anon_sym_RBRACK] = ACTIONS(3093), [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_COMMA] = ACTIONS(2538), [anon_sym_DOLLAR] = ACTIONS(3097), [anon_sym_LBRACE] = ACTIONS(3099), [anon_sym_DOT_DOT] = ACTIONS(3101), @@ -164140,163 +164444,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [847] = { [sym_comment] = STATE(847), - [anon_sym_STAR_STAR] = ACTIONS(3063), - [anon_sym_PLUS_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_SLASH] = ACTIONS(3065), - [anon_sym_mod] = ACTIONS(3063), - [anon_sym_SLASH_SLASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_bit_DASHshl] = ACTIONS(3063), - [anon_sym_bit_DASHshr] = ACTIONS(3063), - [anon_sym_EQ_TILDE] = ACTIONS(3063), - [anon_sym_BANG_TILDE] = ACTIONS(3063), - [anon_sym_bit_DASHand] = ACTIONS(3063), - [anon_sym_bit_DASHxor] = ACTIONS(3063), - [anon_sym_bit_DASHor] = ACTIONS(3063), - [anon_sym_and] = ACTIONS(3063), - [anon_sym_xor] = ACTIONS(3063), - [anon_sym_or] = ACTIONS(3063), - [anon_sym_in] = ACTIONS(3063), - [anon_sym_not_DASHin] = ACTIONS(3063), - [anon_sym_starts_DASHwith] = ACTIONS(3063), - [anon_sym_ends_DASHwith] = ACTIONS(3063), - [anon_sym_EQ_EQ] = ACTIONS(3063), - [anon_sym_BANG_EQ] = ACTIONS(3063), - [anon_sym_LT] = ACTIONS(3065), - [anon_sym_LT_EQ] = ACTIONS(3063), - [anon_sym_GT] = ACTIONS(3065), - [anon_sym_GT_EQ] = ACTIONS(3063), - [aux_sym_cmd_identifier_token41] = ACTIONS(3067), - [sym__newline] = ACTIONS(1709), - [anon_sym_PIPE] = ACTIONS(1709), - [anon_sym_err_GT_PIPE] = ACTIONS(1709), - [anon_sym_out_GT_PIPE] = ACTIONS(1709), - [anon_sym_e_GT_PIPE] = ACTIONS(1709), - [anon_sym_o_GT_PIPE] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), - [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_GT2] = ACTIONS(1709), - [anon_sym_DASH2] = ACTIONS(1709), - [anon_sym_in2] = ACTIONS(1709), - [anon_sym_STAR2] = ACTIONS(1709), - [anon_sym_and2] = ACTIONS(1709), - [anon_sym_xor2] = ACTIONS(1709), - [anon_sym_or2] = ACTIONS(1709), - [anon_sym_not_DASHin2] = ACTIONS(1709), - [anon_sym_starts_DASHwith2] = ACTIONS(1709), - [anon_sym_ends_DASHwith2] = ACTIONS(1709), - [anon_sym_EQ_EQ2] = ACTIONS(1709), - [anon_sym_BANG_EQ2] = ACTIONS(1709), - [anon_sym_LT2] = ACTIONS(1709), - [anon_sym_LT_EQ2] = ACTIONS(1709), - [anon_sym_GT_EQ2] = ACTIONS(1709), - [anon_sym_EQ_TILDE2] = ACTIONS(1709), - [anon_sym_BANG_TILDE2] = ACTIONS(1709), - [anon_sym_STAR_STAR2] = ACTIONS(1709), - [anon_sym_PLUS_PLUS2] = ACTIONS(1709), - [anon_sym_SLASH2] = ACTIONS(1709), - [anon_sym_mod2] = ACTIONS(1709), - [anon_sym_SLASH_SLASH2] = ACTIONS(1709), - [anon_sym_PLUS2] = ACTIONS(1709), - [anon_sym_bit_DASHshl2] = ACTIONS(1709), - [anon_sym_bit_DASHshr2] = ACTIONS(1709), - [anon_sym_bit_DASHand2] = ACTIONS(1709), - [anon_sym_bit_DASHxor2] = ACTIONS(1709), - [anon_sym_bit_DASHor2] = ACTIONS(1709), - [anon_sym_DOT_DOT2] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3039), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3039), - [sym_filesize_unit] = ACTIONS(3135), - [sym_duration_unit] = ACTIONS(3137), - [anon_sym_err_GT] = ACTIONS(1709), - [anon_sym_out_GT] = ACTIONS(1709), - [anon_sym_e_GT] = ACTIONS(1709), - [anon_sym_o_GT] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT] = ACTIONS(1709), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), - [anon_sym_o_PLUSe_GT] = ACTIONS(1709), - [anon_sym_e_PLUSo_GT] = ACTIONS(1709), - [anon_sym_err_GT_GT] = ACTIONS(1709), - [anon_sym_out_GT_GT] = ACTIONS(1709), - [anon_sym_e_GT_GT] = ACTIONS(1709), - [anon_sym_o_GT_GT] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1709), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1709), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1709), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1709), + [anon_sym_STAR_STAR] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_mod] = ACTIONS(1587), + [anon_sym_SLASH_SLASH] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_bit_DASHshl] = ACTIONS(1587), + [anon_sym_bit_DASHshr] = ACTIONS(1587), + [anon_sym_EQ_TILDE] = ACTIONS(1587), + [anon_sym_BANG_TILDE] = ACTIONS(1587), + [anon_sym_bit_DASHand] = ACTIONS(1587), + [anon_sym_bit_DASHxor] = ACTIONS(1587), + [anon_sym_bit_DASHor] = ACTIONS(1587), + [anon_sym_and] = ACTIONS(1587), + [anon_sym_xor] = ACTIONS(1587), + [anon_sym_or] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(1587), + [anon_sym_not_DASHin] = ACTIONS(1587), + [anon_sym_starts_DASHwith] = ACTIONS(1587), + [anon_sym_ends_DASHwith] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(1587), + [anon_sym_BANG_EQ] = ACTIONS(1587), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_LT_EQ] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1587), + [aux_sym_cmd_identifier_token41] = ACTIONS(1585), + [sym__newline] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_err_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_GT_PIPE] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), + [anon_sym_GT2] = ACTIONS(1585), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_in2] = ACTIONS(1585), + [anon_sym_STAR2] = ACTIONS(1585), + [anon_sym_and2] = ACTIONS(1585), + [anon_sym_xor2] = ACTIONS(1585), + [anon_sym_or2] = ACTIONS(1585), + [anon_sym_not_DASHin2] = ACTIONS(1585), + [anon_sym_starts_DASHwith2] = ACTIONS(1585), + [anon_sym_ends_DASHwith2] = ACTIONS(1585), + [anon_sym_EQ_EQ2] = ACTIONS(1585), + [anon_sym_BANG_EQ2] = ACTIONS(1585), + [anon_sym_LT2] = ACTIONS(1585), + [anon_sym_LT_EQ2] = ACTIONS(1585), + [anon_sym_GT_EQ2] = ACTIONS(1585), + [anon_sym_EQ_TILDE2] = ACTIONS(1585), + [anon_sym_BANG_TILDE2] = ACTIONS(1585), + [anon_sym_STAR_STAR2] = ACTIONS(1585), + [anon_sym_PLUS_PLUS2] = ACTIONS(1585), + [anon_sym_SLASH2] = ACTIONS(1585), + [anon_sym_mod2] = ACTIONS(1585), + [anon_sym_SLASH_SLASH2] = ACTIONS(1585), + [anon_sym_PLUS2] = ACTIONS(1585), + [anon_sym_bit_DASHshl2] = ACTIONS(1585), + [anon_sym_bit_DASHshr2] = ACTIONS(1585), + [anon_sym_bit_DASHand2] = ACTIONS(1585), + [anon_sym_bit_DASHxor2] = ACTIONS(1585), + [anon_sym_bit_DASHor2] = ACTIONS(1585), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [sym_filesize_unit] = ACTIONS(1585), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1585), + [anon_sym_out_GT_GT] = ACTIONS(1585), + [anon_sym_e_GT_GT] = ACTIONS(1585), + [anon_sym_o_GT_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1585), [anon_sym_POUND] = ACTIONS(3), }, [848] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7090), - [sym__spread_list] = STATE(7416), - [sym_list_body] = STATE(7890), - [sym_val_entry] = STATE(6851), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7275), + [sym__spread_list] = STATE(7653), + [sym_list_body] = STATE(8001), + [sym_val_entry] = STATE(7361), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(848), - [aux_sym_shebang_repeat1] = STATE(888), - [aux_sym_parameter_repeat2] = STATE(6505), - [aux_sym_list_body_repeat1] = STATE(907), - [sym__newline] = ACTIONS(2540), + [aux_sym_shebang_repeat1] = STATE(884), + [aux_sym_parameter_repeat2] = STATE(6813), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(2530), [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_RBRACK] = ACTIONS(3139), + [anon_sym_RBRACK] = ACTIONS(3135), [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_COMMA] = ACTIONS(2538), [anon_sym_DOLLAR] = ACTIONS(3097), [anon_sym_LBRACE] = ACTIONS(3099), [anon_sym_DOT_DOT] = ACTIONS(3101), @@ -164324,71 +164628,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [849] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7097), - [sym__spread_list] = STATE(7416), - [sym_list_body] = STATE(7967), - [sym_val_entry] = STATE(6851), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7142), + [sym__spread_list] = STATE(7653), + [sym_list_body] = STATE(7984), + [sym_val_entry] = STATE(7361), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(849), - [aux_sym_shebang_repeat1] = STATE(886), - [aux_sym_parameter_repeat2] = STATE(6505), - [aux_sym_list_body_repeat1] = STATE(907), - [sym__newline] = ACTIONS(2540), - [anon_sym_LBRACK] = ACTIONS(3141), - [anon_sym_RBRACK] = ACTIONS(3143), + [aux_sym_shebang_repeat1] = STATE(889), + [aux_sym_parameter_repeat2] = STATE(6813), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(2530), + [anon_sym_LBRACK] = ACTIONS(3137), + [anon_sym_RBRACK] = ACTIONS(3139), [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_COMMA] = ACTIONS(2538), [anon_sym_DOLLAR] = ACTIONS(3097), [anon_sym_LBRACE] = ACTIONS(3099), [anon_sym_DOT_DOT] = ACTIONS(3101), @@ -164416,163 +164720,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [850] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7097), - [sym__spread_list] = STATE(7416), - [sym_list_body] = STATE(7633), - [sym_val_entry] = STATE(6851), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), [sym_comment] = STATE(850), - [aux_sym_shebang_repeat1] = STATE(886), - [aux_sym_parameter_repeat2] = STATE(6505), - [aux_sym_list_body_repeat1] = STATE(907), - [sym__newline] = ACTIONS(2540), - [anon_sym_LBRACK] = ACTIONS(3141), - [anon_sym_RBRACK] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2548), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_bit_DASHshl] = ACTIONS(1575), + [anon_sym_bit_DASHshr] = ACTIONS(1575), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_BANG_TILDE] = ACTIONS(1575), + [anon_sym_bit_DASHand] = ACTIONS(1575), + [anon_sym_bit_DASHxor] = ACTIONS(1575), + [anon_sym_bit_DASHor] = ACTIONS(1575), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_not_DASHin] = ACTIONS(1575), + [anon_sym_starts_DASHwith] = ACTIONS(1575), + [anon_sym_ends_DASHwith] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1575), + [aux_sym_cmd_identifier_token41] = ACTIONS(1573), + [sym__newline] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_err_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_GT_PIPE] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1573), + [anon_sym_xor2] = ACTIONS(1573), + [anon_sym_or2] = ACTIONS(1573), + [anon_sym_not_DASHin2] = ACTIONS(1573), + [anon_sym_starts_DASHwith2] = ACTIONS(1573), + [anon_sym_ends_DASHwith2] = ACTIONS(1573), + [anon_sym_EQ_EQ2] = ACTIONS(1573), + [anon_sym_BANG_EQ2] = ACTIONS(1573), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1573), + [anon_sym_GT_EQ2] = ACTIONS(1573), + [anon_sym_EQ_TILDE2] = ACTIONS(1573), + [anon_sym_BANG_TILDE2] = ACTIONS(1573), + [anon_sym_STAR_STAR2] = ACTIONS(1573), + [anon_sym_PLUS_PLUS2] = ACTIONS(1573), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1573), + [anon_sym_SLASH_SLASH2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1573), + [anon_sym_bit_DASHshr2] = ACTIONS(1573), + [anon_sym_bit_DASHand2] = ACTIONS(1573), + [anon_sym_bit_DASHxor2] = ACTIONS(1573), + [anon_sym_bit_DASHor2] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1573), + [anon_sym_out_GT_GT] = ACTIONS(1573), + [anon_sym_e_GT_GT] = ACTIONS(1573), + [anon_sym_o_GT_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1573), + [anon_sym_POUND] = ACTIONS(3), }, [851] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(6836), - [sym__spread_list] = STATE(7416), - [sym_list_body] = STATE(7690), - [sym_val_entry] = STATE(6851), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7301), + [sym__spread_list] = STATE(7653), + [sym_list_body] = STATE(7742), + [sym_val_entry] = STATE(7361), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(851), - [aux_sym_shebang_repeat1] = STATE(890), - [aux_sym_parameter_repeat2] = STATE(6505), - [aux_sym_list_body_repeat1] = STATE(907), - [sym__newline] = ACTIONS(2540), + [aux_sym_shebang_repeat1] = STATE(887), + [aux_sym_parameter_repeat2] = STATE(6813), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(2530), [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_RBRACK] = ACTIONS(3147), + [anon_sym_RBRACK] = ACTIONS(3141), [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_COMMA] = ACTIONS(2538), [anon_sym_DOLLAR] = ACTIONS(3097), [anon_sym_LBRACE] = ACTIONS(3099), [anon_sym_DOT_DOT] = ACTIONS(3101), @@ -164600,71 +164904,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [852] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7097), - [sym__spread_list] = STATE(7416), - [sym_list_body] = STATE(7596), - [sym_val_entry] = STATE(6851), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7207), + [sym__spread_list] = STATE(7653), + [sym_list_body] = STATE(7912), + [sym_val_entry] = STATE(7361), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(852), - [aux_sym_shebang_repeat1] = STATE(886), - [aux_sym_parameter_repeat2] = STATE(6505), - [aux_sym_list_body_repeat1] = STATE(907), - [sym__newline] = ACTIONS(2540), - [anon_sym_LBRACK] = ACTIONS(3141), - [anon_sym_RBRACK] = ACTIONS(3149), + [aux_sym_shebang_repeat1] = STATE(885), + [aux_sym_parameter_repeat2] = STATE(6813), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(2530), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_RBRACK] = ACTIONS(3143), [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_COMMA] = ACTIONS(2538), [anon_sym_DOLLAR] = ACTIONS(3097), [anon_sym_LBRACE] = ACTIONS(3099), [anon_sym_DOT_DOT] = ACTIONS(3101), @@ -164692,71 +164996,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [853] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7152), - [sym__spread_list] = STATE(7416), - [sym_list_body] = STATE(7744), - [sym_val_entry] = STATE(6851), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7312), + [sym__spread_list] = STATE(7653), + [sym_list_body] = STATE(7946), + [sym_val_entry] = STATE(7361), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(853), - [aux_sym_shebang_repeat1] = STATE(883), - [aux_sym_parameter_repeat2] = STATE(6505), - [aux_sym_list_body_repeat1] = STATE(907), - [sym__newline] = ACTIONS(2540), + [aux_sym_shebang_repeat1] = STATE(890), + [aux_sym_parameter_repeat2] = STATE(6813), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(2530), [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_RBRACK] = ACTIONS(3151), + [anon_sym_RBRACK] = ACTIONS(3145), [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_COMMA] = ACTIONS(2538), [anon_sym_DOLLAR] = ACTIONS(3097), [anon_sym_LBRACE] = ACTIONS(3099), [anon_sym_DOT_DOT] = ACTIONS(3101), @@ -164784,71 +165088,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [854] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7097), - [sym__spread_list] = STATE(7416), - [sym_list_body] = STATE(7877), - [sym_val_entry] = STATE(6851), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7321), + [sym__spread_list] = STATE(7653), + [sym_list_body] = STATE(7789), + [sym_val_entry] = STATE(7361), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(854), - [aux_sym_shebang_repeat1] = STATE(886), - [aux_sym_parameter_repeat2] = STATE(6505), - [aux_sym_list_body_repeat1] = STATE(907), - [sym__newline] = ACTIONS(2540), - [anon_sym_LBRACK] = ACTIONS(3141), - [anon_sym_RBRACK] = ACTIONS(3153), + [aux_sym_shebang_repeat1] = STATE(891), + [aux_sym_parameter_repeat2] = STATE(6813), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(2530), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_RBRACK] = ACTIONS(3147), [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_COMMA] = ACTIONS(2538), [anon_sym_DOLLAR] = ACTIONS(3097), [anon_sym_LBRACE] = ACTIONS(3099), [anon_sym_DOT_DOT] = ACTIONS(3101), @@ -164876,71 +165180,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [855] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7097), - [sym__spread_list] = STATE(7416), - [sym_list_body] = STATE(7709), - [sym_val_entry] = STATE(6851), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7327), + [sym__spread_list] = STATE(7653), + [sym_list_body] = STATE(8107), + [sym_val_entry] = STATE(7361), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(855), - [aux_sym_shebang_repeat1] = STATE(886), - [aux_sym_parameter_repeat2] = STATE(6505), - [aux_sym_list_body_repeat1] = STATE(907), - [sym__newline] = ACTIONS(2540), - [anon_sym_LBRACK] = ACTIONS(3141), - [anon_sym_RBRACK] = ACTIONS(3155), + [aux_sym_shebang_repeat1] = STATE(892), + [aux_sym_parameter_repeat2] = STATE(6813), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(2530), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_RBRACK] = ACTIONS(3149), [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_COMMA] = ACTIONS(2538), [anon_sym_DOLLAR] = ACTIONS(3097), [anon_sym_LBRACE] = ACTIONS(3099), [anon_sym_DOT_DOT] = ACTIONS(3101), @@ -164968,71 +165272,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [856] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7090), - [sym__spread_list] = STATE(7416), - [sym_list_body] = STATE(7596), - [sym_val_entry] = STATE(6851), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7335), + [sym__spread_list] = STATE(7653), + [sym_list_body] = STATE(7761), + [sym_val_entry] = STATE(7361), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(856), - [aux_sym_shebang_repeat1] = STATE(888), - [aux_sym_parameter_repeat2] = STATE(6505), - [aux_sym_list_body_repeat1] = STATE(907), - [sym__newline] = ACTIONS(2540), + [aux_sym_shebang_repeat1] = STATE(893), + [aux_sym_parameter_repeat2] = STATE(6813), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(2530), [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_RBRACK] = ACTIONS(3149), + [anon_sym_RBRACK] = ACTIONS(3151), [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_COMMA] = ACTIONS(2538), [anon_sym_DOLLAR] = ACTIONS(3097), [anon_sym_LBRACE] = ACTIONS(3099), [anon_sym_DOT_DOT] = ACTIONS(3101), @@ -165060,71 +165364,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [857] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7194), - [sym__spread_list] = STATE(7416), - [sym_list_body] = STATE(7824), - [sym_val_entry] = STATE(6851), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), [sym_comment] = STATE(857), - [aux_sym_shebang_repeat1] = STATE(892), - [aux_sym_parameter_repeat2] = STATE(6505), - [aux_sym_list_body_repeat1] = STATE(907), - [sym__newline] = ACTIONS(2540), - [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_STAR_STAR] = ACTIONS(3071), + [anon_sym_PLUS_PLUS] = ACTIONS(3071), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_SLASH] = ACTIONS(3073), + [anon_sym_mod] = ACTIONS(3071), + [anon_sym_SLASH_SLASH] = ACTIONS(3071), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_DASH] = ACTIONS(3071), + [anon_sym_bit_DASHshl] = ACTIONS(3071), + [anon_sym_bit_DASHshr] = ACTIONS(3071), + [anon_sym_EQ_TILDE] = ACTIONS(3071), + [anon_sym_BANG_TILDE] = ACTIONS(3071), + [anon_sym_bit_DASHand] = ACTIONS(3071), + [anon_sym_bit_DASHxor] = ACTIONS(3071), + [anon_sym_bit_DASHor] = ACTIONS(3071), + [anon_sym_and] = ACTIONS(3071), + [anon_sym_xor] = ACTIONS(3071), + [anon_sym_or] = ACTIONS(3071), + [anon_sym_in] = ACTIONS(3071), + [anon_sym_not_DASHin] = ACTIONS(3071), + [anon_sym_starts_DASHwith] = ACTIONS(3071), + [anon_sym_ends_DASHwith] = ACTIONS(3071), + [anon_sym_EQ_EQ] = ACTIONS(3071), + [anon_sym_BANG_EQ] = ACTIONS(3071), + [anon_sym_LT] = ACTIONS(3073), + [anon_sym_LT_EQ] = ACTIONS(3071), + [anon_sym_GT] = ACTIONS(3073), + [anon_sym_GT_EQ] = ACTIONS(3071), + [aux_sym_cmd_identifier_token41] = ACTIONS(3075), + [sym__newline] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_err_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_GT_PIPE] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), + [anon_sym_GT2] = ACTIONS(1707), + [anon_sym_DASH2] = ACTIONS(1707), + [anon_sym_in2] = ACTIONS(1707), + [anon_sym_STAR2] = ACTIONS(1707), + [anon_sym_and2] = ACTIONS(1707), + [anon_sym_xor2] = ACTIONS(1707), + [anon_sym_or2] = ACTIONS(1707), + [anon_sym_not_DASHin2] = ACTIONS(1707), + [anon_sym_starts_DASHwith2] = ACTIONS(1707), + [anon_sym_ends_DASHwith2] = ACTIONS(1707), + [anon_sym_EQ_EQ2] = ACTIONS(1707), + [anon_sym_BANG_EQ2] = ACTIONS(1707), + [anon_sym_LT2] = ACTIONS(1707), + [anon_sym_LT_EQ2] = ACTIONS(1707), + [anon_sym_GT_EQ2] = ACTIONS(1707), + [anon_sym_EQ_TILDE2] = ACTIONS(1707), + [anon_sym_BANG_TILDE2] = ACTIONS(1707), + [anon_sym_STAR_STAR2] = ACTIONS(1707), + [anon_sym_PLUS_PLUS2] = ACTIONS(1707), + [anon_sym_SLASH2] = ACTIONS(1707), + [anon_sym_mod2] = ACTIONS(1707), + [anon_sym_SLASH_SLASH2] = ACTIONS(1707), + [anon_sym_PLUS2] = ACTIONS(1707), + [anon_sym_bit_DASHshl2] = ACTIONS(1707), + [anon_sym_bit_DASHshr2] = ACTIONS(1707), + [anon_sym_bit_DASHand2] = ACTIONS(1707), + [anon_sym_bit_DASHxor2] = ACTIONS(1707), + [anon_sym_bit_DASHor2] = ACTIONS(1707), + [anon_sym_DOT_DOT2] = ACTIONS(2900), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2902), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2902), + [sym_filesize_unit] = ACTIONS(3153), + [sym_duration_unit] = ACTIONS(3155), + [anon_sym_err_GT] = ACTIONS(1707), + [anon_sym_out_GT] = ACTIONS(1707), + [anon_sym_e_GT] = ACTIONS(1707), + [anon_sym_o_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT] = ACTIONS(1707), + [anon_sym_err_GT_GT] = ACTIONS(1707), + [anon_sym_out_GT_GT] = ACTIONS(1707), + [anon_sym_e_GT_GT] = ACTIONS(1707), + [anon_sym_o_GT_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), + [anon_sym_POUND] = ACTIONS(3), + }, + [858] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7142), + [sym__spread_list] = STATE(7653), + [sym_list_body] = STATE(7862), + [sym_val_entry] = STATE(7361), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), + [sym_comment] = STATE(858), + [aux_sym_shebang_repeat1] = STATE(889), + [aux_sym_parameter_repeat2] = STATE(6813), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(2530), + [anon_sym_LBRACK] = ACTIONS(3137), [anon_sym_RBRACK] = ACTIONS(3157), [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_COMMA] = ACTIONS(2538), [anon_sym_DOLLAR] = ACTIONS(3097), [anon_sym_LBRACE] = ACTIONS(3099), [anon_sym_DOT_DOT] = ACTIONS(3101), @@ -165152,71 +165548,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, - [858] = { + [859] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7202), - [sym__spread_list] = STATE(7416), - [sym_list_body] = STATE(7579), - [sym_val_entry] = STATE(6851), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), - [sym_comment] = STATE(858), - [aux_sym_shebang_repeat1] = STATE(893), - [aux_sym_parameter_repeat2] = STATE(6505), - [aux_sym_list_body_repeat1] = STATE(907), - [sym__newline] = ACTIONS(2540), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7345), + [sym__spread_list] = STATE(7653), + [sym_list_body] = STATE(7712), + [sym_val_entry] = STATE(7361), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), + [sym_comment] = STATE(859), + [aux_sym_shebang_repeat1] = STATE(894), + [aux_sym_parameter_repeat2] = STATE(6813), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(2530), [anon_sym_LBRACK] = ACTIONS(3091), [anon_sym_RBRACK] = ACTIONS(3159), [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_COMMA] = ACTIONS(2538), [anon_sym_DOLLAR] = ACTIONS(3097), [anon_sym_LBRACE] = ACTIONS(3099), [anon_sym_DOT_DOT] = ACTIONS(3101), @@ -165244,71 +165640,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, - [859] = { + [860] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7212), - [sym__spread_list] = STATE(7416), - [sym_list_body] = STATE(7668), - [sym_val_entry] = STATE(6851), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), - [sym_comment] = STATE(859), - [aux_sym_shebang_repeat1] = STATE(894), - [aux_sym_parameter_repeat2] = STATE(6505), - [aux_sym_list_body_repeat1] = STATE(907), - [sym__newline] = ACTIONS(2540), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7355), + [sym__spread_list] = STATE(7653), + [sym_list_body] = STATE(7826), + [sym_val_entry] = STATE(7361), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), + [sym_comment] = STATE(860), + [aux_sym_shebang_repeat1] = STATE(895), + [aux_sym_parameter_repeat2] = STATE(6813), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(2530), [anon_sym_LBRACK] = ACTIONS(3091), [anon_sym_RBRACK] = ACTIONS(3161), [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_COMMA] = ACTIONS(2538), [anon_sym_DOLLAR] = ACTIONS(3097), [anon_sym_LBRACE] = ACTIONS(3099), [anon_sym_DOT_DOT] = ACTIONS(3101), @@ -165336,71 +165732,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, - [860] = { + [861] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7220), - [sym__spread_list] = STATE(7416), - [sym_list_body] = STATE(7678), - [sym_val_entry] = STATE(6851), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), - [sym_comment] = STATE(860), - [aux_sym_shebang_repeat1] = STATE(895), - [aux_sym_parameter_repeat2] = STATE(6505), - [aux_sym_list_body_repeat1] = STATE(907), - [sym__newline] = ACTIONS(2540), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7364), + [sym__spread_list] = STATE(7653), + [sym_list_body] = STATE(7920), + [sym_val_entry] = STATE(7361), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), + [sym_comment] = STATE(861), + [aux_sym_shebang_repeat1] = STATE(896), + [aux_sym_parameter_repeat2] = STATE(6813), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(2530), [anon_sym_LBRACK] = ACTIONS(3091), [anon_sym_RBRACK] = ACTIONS(3163), [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_COMMA] = ACTIONS(2538), [anon_sym_DOLLAR] = ACTIONS(3097), [anon_sym_LBRACE] = ACTIONS(3099), [anon_sym_DOT_DOT] = ACTIONS(3101), @@ -165428,163 +165824,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, - [861] = { - [sym_comment] = STATE(861), - [anon_sym_STAR_STAR] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_SLASH_SLASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_bit_DASHshl] = ACTIONS(1609), - [anon_sym_bit_DASHshr] = ACTIONS(1609), - [anon_sym_EQ_TILDE] = ACTIONS(1609), - [anon_sym_BANG_TILDE] = ACTIONS(1609), - [anon_sym_bit_DASHand] = ACTIONS(1609), - [anon_sym_bit_DASHxor] = ACTIONS(1609), - [anon_sym_bit_DASHor] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(1609), - [anon_sym_not_DASHin] = ACTIONS(1609), - [anon_sym_starts_DASHwith] = ACTIONS(1609), - [anon_sym_ends_DASHwith] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1609), - [anon_sym_BANG_EQ] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1609), - [aux_sym_cmd_identifier_token41] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1607), - [anon_sym_out_GT_GT] = ACTIONS(1607), - [anon_sym_e_GT_GT] = ACTIONS(1607), - [anon_sym_o_GT_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), - [anon_sym_POUND] = ACTIONS(3), - }, [862] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7228), - [sym__spread_list] = STATE(7416), - [sym_list_body] = STATE(7567), - [sym_val_entry] = STATE(6851), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7384), + [sym__spread_list] = STATE(7653), + [sym_list_body] = STATE(7843), + [sym_val_entry] = STATE(7361), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(862), - [aux_sym_shebang_repeat1] = STATE(896), - [aux_sym_parameter_repeat2] = STATE(6505), - [aux_sym_list_body_repeat1] = STATE(907), - [sym__newline] = ACTIONS(2540), + [aux_sym_shebang_repeat1] = STATE(898), + [aux_sym_parameter_repeat2] = STATE(6813), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(2530), [anon_sym_LBRACK] = ACTIONS(3091), [anon_sym_RBRACK] = ACTIONS(3165), [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_COMMA] = ACTIONS(2538), [anon_sym_DOLLAR] = ACTIONS(3097), [anon_sym_LBRACE] = ACTIONS(3099), [anon_sym_DOT_DOT] = ACTIONS(3101), @@ -165612,71 +165916,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [863] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7235), - [sym__spread_list] = STATE(7416), - [sym_list_body] = STATE(7754), - [sym_val_entry] = STATE(6851), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7391), + [sym__spread_list] = STATE(7653), + [sym_list_body] = STATE(7933), + [sym_val_entry] = STATE(7361), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(863), - [aux_sym_shebang_repeat1] = STATE(897), - [aux_sym_parameter_repeat2] = STATE(6505), - [aux_sym_list_body_repeat1] = STATE(907), - [sym__newline] = ACTIONS(2540), + [aux_sym_shebang_repeat1] = STATE(899), + [aux_sym_parameter_repeat2] = STATE(6813), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(2530), [anon_sym_LBRACK] = ACTIONS(3091), [anon_sym_RBRACK] = ACTIONS(3167), [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_COMMA] = ACTIONS(2538), [anon_sym_DOLLAR] = ACTIONS(3097), [anon_sym_LBRACE] = ACTIONS(3099), [anon_sym_DOT_DOT] = ACTIONS(3101), @@ -165704,163 +166008,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [864] = { [sym_comment] = STATE(864), - [anon_sym_STAR_STAR] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_SLASH] = ACTIONS(1621), - [anon_sym_mod] = ACTIONS(1623), - [anon_sym_SLASH_SLASH] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_bit_DASHshl] = ACTIONS(1623), - [anon_sym_bit_DASHshr] = ACTIONS(1623), - [anon_sym_EQ_TILDE] = ACTIONS(1623), - [anon_sym_BANG_TILDE] = ACTIONS(1623), - [anon_sym_bit_DASHand] = ACTIONS(1623), - [anon_sym_bit_DASHxor] = ACTIONS(1623), - [anon_sym_bit_DASHor] = ACTIONS(1623), - [anon_sym_and] = ACTIONS(1623), - [anon_sym_xor] = ACTIONS(1623), - [anon_sym_or] = ACTIONS(1623), - [anon_sym_in] = ACTIONS(1623), - [anon_sym_not_DASHin] = ACTIONS(1623), - [anon_sym_starts_DASHwith] = ACTIONS(1623), - [anon_sym_ends_DASHwith] = ACTIONS(1623), - [anon_sym_EQ_EQ] = ACTIONS(1623), - [anon_sym_BANG_EQ] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1621), - [anon_sym_LT_EQ] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1621), - [anon_sym_GT_EQ] = ACTIONS(1623), - [aux_sym_cmd_identifier_token41] = ACTIONS(1621), - [sym__newline] = ACTIONS(1621), - [anon_sym_PIPE] = ACTIONS(1621), - [anon_sym_err_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_GT_PIPE] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), - [anon_sym_GT2] = ACTIONS(1621), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_in2] = ACTIONS(1621), - [anon_sym_STAR2] = ACTIONS(1621), - [anon_sym_and2] = ACTIONS(1621), - [anon_sym_xor2] = ACTIONS(1621), - [anon_sym_or2] = ACTIONS(1621), - [anon_sym_not_DASHin2] = ACTIONS(1621), - [anon_sym_starts_DASHwith2] = ACTIONS(1621), - [anon_sym_ends_DASHwith2] = ACTIONS(1621), - [anon_sym_EQ_EQ2] = ACTIONS(1621), - [anon_sym_BANG_EQ2] = ACTIONS(1621), - [anon_sym_LT2] = ACTIONS(1621), - [anon_sym_LT_EQ2] = ACTIONS(1621), - [anon_sym_GT_EQ2] = ACTIONS(1621), - [anon_sym_EQ_TILDE2] = ACTIONS(1621), - [anon_sym_BANG_TILDE2] = ACTIONS(1621), - [anon_sym_STAR_STAR2] = ACTIONS(1621), - [anon_sym_PLUS_PLUS2] = ACTIONS(1621), - [anon_sym_SLASH2] = ACTIONS(1621), - [anon_sym_mod2] = ACTIONS(1621), - [anon_sym_SLASH_SLASH2] = ACTIONS(1621), - [anon_sym_PLUS2] = ACTIONS(1621), - [anon_sym_bit_DASHshl2] = ACTIONS(1621), - [anon_sym_bit_DASHshr2] = ACTIONS(1621), - [anon_sym_bit_DASHand2] = ACTIONS(1621), - [anon_sym_bit_DASHxor2] = ACTIONS(1621), - [anon_sym_bit_DASHor2] = ACTIONS(1621), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [sym_filesize_unit] = ACTIONS(1621), - [sym_duration_unit] = ACTIONS(1623), - [anon_sym_err_GT] = ACTIONS(1621), - [anon_sym_out_GT] = ACTIONS(1621), - [anon_sym_e_GT] = ACTIONS(1621), - [anon_sym_o_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT] = ACTIONS(1621), - [anon_sym_err_GT_GT] = ACTIONS(1621), - [anon_sym_out_GT_GT] = ACTIONS(1621), - [anon_sym_e_GT_GT] = ACTIONS(1621), - [anon_sym_o_GT_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1621), + [anon_sym_STAR_STAR] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1761), + [anon_sym_mod] = ACTIONS(1763), + [anon_sym_SLASH_SLASH] = ACTIONS(1763), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_bit_DASHshl] = ACTIONS(1763), + [anon_sym_bit_DASHshr] = ACTIONS(1763), + [anon_sym_EQ_TILDE] = ACTIONS(1763), + [anon_sym_BANG_TILDE] = ACTIONS(1763), + [anon_sym_bit_DASHand] = ACTIONS(1763), + [anon_sym_bit_DASHxor] = ACTIONS(1763), + [anon_sym_bit_DASHor] = ACTIONS(1763), + [anon_sym_and] = ACTIONS(1763), + [anon_sym_xor] = ACTIONS(1763), + [anon_sym_or] = ACTIONS(1763), + [anon_sym_in] = ACTIONS(1763), + [anon_sym_not_DASHin] = ACTIONS(1763), + [anon_sym_starts_DASHwith] = ACTIONS(1763), + [anon_sym_ends_DASHwith] = ACTIONS(1763), + [anon_sym_EQ_EQ] = ACTIONS(1763), + [anon_sym_BANG_EQ] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1761), + [anon_sym_LT_EQ] = ACTIONS(1763), + [anon_sym_GT] = ACTIONS(1761), + [anon_sym_GT_EQ] = ACTIONS(1763), + [aux_sym_cmd_identifier_token41] = ACTIONS(1761), + [sym__newline] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1761), + [anon_sym_err_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_GT_PIPE] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), + [anon_sym_GT2] = ACTIONS(1761), + [anon_sym_DASH2] = ACTIONS(1761), + [anon_sym_in2] = ACTIONS(1761), + [anon_sym_STAR2] = ACTIONS(1761), + [anon_sym_and2] = ACTIONS(1761), + [anon_sym_xor2] = ACTIONS(1761), + [anon_sym_or2] = ACTIONS(1761), + [anon_sym_not_DASHin2] = ACTIONS(1761), + [anon_sym_starts_DASHwith2] = ACTIONS(1761), + [anon_sym_ends_DASHwith2] = ACTIONS(1761), + [anon_sym_EQ_EQ2] = ACTIONS(1761), + [anon_sym_BANG_EQ2] = ACTIONS(1761), + [anon_sym_LT2] = ACTIONS(1761), + [anon_sym_LT_EQ2] = ACTIONS(1761), + [anon_sym_GT_EQ2] = ACTIONS(1761), + [anon_sym_EQ_TILDE2] = ACTIONS(1761), + [anon_sym_BANG_TILDE2] = ACTIONS(1761), + [anon_sym_STAR_STAR2] = ACTIONS(1761), + [anon_sym_PLUS_PLUS2] = ACTIONS(1761), + [anon_sym_SLASH2] = ACTIONS(1761), + [anon_sym_mod2] = ACTIONS(1761), + [anon_sym_SLASH_SLASH2] = ACTIONS(1761), + [anon_sym_PLUS2] = ACTIONS(1761), + [anon_sym_bit_DASHshl2] = ACTIONS(1761), + [anon_sym_bit_DASHshr2] = ACTIONS(1761), + [anon_sym_bit_DASHand2] = ACTIONS(1761), + [anon_sym_bit_DASHxor2] = ACTIONS(1761), + [anon_sym_bit_DASHor2] = ACTIONS(1761), + [anon_sym_DOT_DOT2] = ACTIONS(1761), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), + [sym_filesize_unit] = ACTIONS(1761), + [sym_duration_unit] = ACTIONS(1763), + [anon_sym_err_GT] = ACTIONS(1761), + [anon_sym_out_GT] = ACTIONS(1761), + [anon_sym_e_GT] = ACTIONS(1761), + [anon_sym_o_GT] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT] = ACTIONS(1761), + [anon_sym_err_GT_GT] = ACTIONS(1761), + [anon_sym_out_GT_GT] = ACTIONS(1761), + [anon_sym_e_GT_GT] = ACTIONS(1761), + [anon_sym_o_GT_GT] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1761), [anon_sym_POUND] = ACTIONS(3), }, [865] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7243), - [sym__spread_list] = STATE(7416), - [sym_list_body] = STATE(7976), - [sym_val_entry] = STATE(6851), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7296), + [sym__spread_list] = STATE(7653), + [sym_list_body] = STATE(7859), + [sym_val_entry] = STATE(7361), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(865), - [aux_sym_shebang_repeat1] = STATE(898), - [aux_sym_parameter_repeat2] = STATE(6505), - [aux_sym_list_body_repeat1] = STATE(907), - [sym__newline] = ACTIONS(2540), + [aux_sym_shebang_repeat1] = STATE(886), + [aux_sym_parameter_repeat2] = STATE(6813), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(2530), [anon_sym_LBRACK] = ACTIONS(3091), [anon_sym_RBRACK] = ACTIONS(3169), [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_COMMA] = ACTIONS(2538), [anon_sym_DOLLAR] = ACTIONS(3097), [anon_sym_LBRACE] = ACTIONS(3099), [anon_sym_DOT_DOT] = ACTIONS(3101), @@ -165888,71 +166192,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [866] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7256), - [sym__spread_list] = STATE(7416), - [sym_list_body] = STATE(7730), - [sym_val_entry] = STATE(6851), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7410), + [sym__spread_list] = STATE(7653), + [sym_list_body] = STATE(8038), + [sym_val_entry] = STATE(7361), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(866), - [aux_sym_shebang_repeat1] = STATE(900), - [aux_sym_parameter_repeat2] = STATE(6505), - [aux_sym_list_body_repeat1] = STATE(907), - [sym__newline] = ACTIONS(2540), + [aux_sym_shebang_repeat1] = STATE(902), + [aux_sym_parameter_repeat2] = STATE(6813), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(2530), [anon_sym_LBRACK] = ACTIONS(3091), [anon_sym_RBRACK] = ACTIONS(3171), [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_COMMA] = ACTIONS(2538), [anon_sym_DOLLAR] = ACTIONS(3097), [anon_sym_LBRACE] = ACTIONS(3099), [anon_sym_DOT_DOT] = ACTIONS(3101), @@ -165980,71 +166284,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [867] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7264), - [sym__spread_list] = STATE(7416), - [sym_list_body] = STATE(7867), - [sym_val_entry] = STATE(6851), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7416), + [sym__spread_list] = STATE(7653), + [sym_list_body] = STATE(8117), + [sym_val_entry] = STATE(7361), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(867), - [aux_sym_shebang_repeat1] = STATE(901), - [aux_sym_parameter_repeat2] = STATE(6505), - [aux_sym_list_body_repeat1] = STATE(907), - [sym__newline] = ACTIONS(2540), + [aux_sym_shebang_repeat1] = STATE(903), + [aux_sym_parameter_repeat2] = STATE(6813), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(2530), [anon_sym_LBRACK] = ACTIONS(3091), [anon_sym_RBRACK] = ACTIONS(3173), [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_COMMA] = ACTIONS(2538), [anon_sym_DOLLAR] = ACTIONS(3097), [anon_sym_LBRACE] = ACTIONS(3099), [anon_sym_DOT_DOT] = ACTIONS(3101), @@ -166072,71 +166376,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [868] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7279), - [sym__spread_list] = STATE(7416), - [sym_list_body] = STATE(7979), - [sym_val_entry] = STATE(6851), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7422), + [sym__spread_list] = STATE(7653), + [sym_list_body] = STATE(7892), + [sym_val_entry] = STATE(7361), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(868), - [aux_sym_shebang_repeat1] = STATE(903), - [aux_sym_parameter_repeat2] = STATE(6505), - [aux_sym_list_body_repeat1] = STATE(907), - [sym__newline] = ACTIONS(2540), + [aux_sym_shebang_repeat1] = STATE(883), + [aux_sym_parameter_repeat2] = STATE(6813), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(2530), [anon_sym_LBRACK] = ACTIONS(3091), [anon_sym_RBRACK] = ACTIONS(3175), [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_COMMA] = ACTIONS(2538), [anon_sym_DOLLAR] = ACTIONS(3097), [anon_sym_LBRACE] = ACTIONS(3099), [anon_sym_DOT_DOT] = ACTIONS(3101), @@ -166164,163 +166468,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [869] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7142), + [sym__spread_list] = STATE(7653), + [sym_list_body] = STATE(7912), + [sym_val_entry] = STATE(7361), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(869), - [anon_sym_STAR_STAR] = ACTIONS(1675), - [anon_sym_PLUS_PLUS] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1673), - [anon_sym_mod] = ACTIONS(1675), - [anon_sym_SLASH_SLASH] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_bit_DASHshl] = ACTIONS(1675), - [anon_sym_bit_DASHshr] = ACTIONS(1675), - [anon_sym_EQ_TILDE] = ACTIONS(1675), - [anon_sym_BANG_TILDE] = ACTIONS(1675), - [anon_sym_bit_DASHand] = ACTIONS(1675), - [anon_sym_bit_DASHxor] = ACTIONS(1675), - [anon_sym_bit_DASHor] = ACTIONS(1675), - [anon_sym_and] = ACTIONS(1675), - [anon_sym_xor] = ACTIONS(1675), - [anon_sym_or] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [anon_sym_not_DASHin] = ACTIONS(1675), - [anon_sym_starts_DASHwith] = ACTIONS(1675), - [anon_sym_ends_DASHwith] = ACTIONS(1675), - [anon_sym_EQ_EQ] = ACTIONS(1675), - [anon_sym_BANG_EQ] = ACTIONS(1675), - [anon_sym_LT] = ACTIONS(1673), - [anon_sym_LT_EQ] = ACTIONS(1675), - [anon_sym_GT] = ACTIONS(1673), - [anon_sym_GT_EQ] = ACTIONS(1675), - [aux_sym_cmd_identifier_token41] = ACTIONS(1673), - [sym__newline] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1673), - [anon_sym_err_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_GT_PIPE] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_in2] = ACTIONS(1673), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1673), - [anon_sym_xor2] = ACTIONS(1673), - [anon_sym_or2] = ACTIONS(1673), - [anon_sym_not_DASHin2] = ACTIONS(1673), - [anon_sym_starts_DASHwith2] = ACTIONS(1673), - [anon_sym_ends_DASHwith2] = ACTIONS(1673), - [anon_sym_EQ_EQ2] = ACTIONS(1673), - [anon_sym_BANG_EQ2] = ACTIONS(1673), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1673), - [anon_sym_GT_EQ2] = ACTIONS(1673), - [anon_sym_EQ_TILDE2] = ACTIONS(1673), - [anon_sym_BANG_TILDE2] = ACTIONS(1673), - [anon_sym_STAR_STAR2] = ACTIONS(1673), - [anon_sym_PLUS_PLUS2] = ACTIONS(1673), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1673), - [anon_sym_SLASH_SLASH2] = ACTIONS(1673), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1673), - [anon_sym_bit_DASHshr2] = ACTIONS(1673), - [anon_sym_bit_DASHand2] = ACTIONS(1673), - [anon_sym_bit_DASHxor2] = ACTIONS(1673), - [anon_sym_bit_DASHor2] = ACTIONS(1673), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [sym_filesize_unit] = ACTIONS(1673), - [sym_duration_unit] = ACTIONS(1675), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1673), - [anon_sym_out_GT_GT] = ACTIONS(1673), - [anon_sym_e_GT_GT] = ACTIONS(1673), - [anon_sym_o_GT_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(889), + [aux_sym_parameter_repeat2] = STATE(6813), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(2530), + [anon_sym_LBRACK] = ACTIONS(3137), + [anon_sym_RBRACK] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(2538), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, [870] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7286), - [sym__spread_list] = STATE(7416), - [sym_list_body] = STATE(7574), - [sym_val_entry] = STATE(6851), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), [sym_comment] = STATE(870), - [aux_sym_shebang_repeat1] = STATE(891), - [aux_sym_parameter_repeat2] = STATE(6505), - [aux_sym_list_body_repeat1] = STATE(907), - [sym__newline] = ACTIONS(2540), + [anon_sym_STAR_STAR] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1681), + [anon_sym_SLASH] = ACTIONS(1681), + [anon_sym_mod] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_bit_DASHshl] = ACTIONS(1683), + [anon_sym_bit_DASHshr] = ACTIONS(1683), + [anon_sym_EQ_TILDE] = ACTIONS(1683), + [anon_sym_BANG_TILDE] = ACTIONS(1683), + [anon_sym_bit_DASHand] = ACTIONS(1683), + [anon_sym_bit_DASHxor] = ACTIONS(1683), + [anon_sym_bit_DASHor] = ACTIONS(1683), + [anon_sym_and] = ACTIONS(1683), + [anon_sym_xor] = ACTIONS(1683), + [anon_sym_or] = ACTIONS(1683), + [anon_sym_in] = ACTIONS(1683), + [anon_sym_not_DASHin] = ACTIONS(1683), + [anon_sym_starts_DASHwith] = ACTIONS(1683), + [anon_sym_ends_DASHwith] = ACTIONS(1683), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(1683), + [aux_sym_cmd_identifier_token41] = ACTIONS(1681), + [sym__newline] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_err_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_GT_PIPE] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), + [anon_sym_GT2] = ACTIONS(1681), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_in2] = ACTIONS(1681), + [anon_sym_STAR2] = ACTIONS(1681), + [anon_sym_and2] = ACTIONS(1681), + [anon_sym_xor2] = ACTIONS(1681), + [anon_sym_or2] = ACTIONS(1681), + [anon_sym_not_DASHin2] = ACTIONS(1681), + [anon_sym_starts_DASHwith2] = ACTIONS(1681), + [anon_sym_ends_DASHwith2] = ACTIONS(1681), + [anon_sym_EQ_EQ2] = ACTIONS(1681), + [anon_sym_BANG_EQ2] = ACTIONS(1681), + [anon_sym_LT2] = ACTIONS(1681), + [anon_sym_LT_EQ2] = ACTIONS(1681), + [anon_sym_GT_EQ2] = ACTIONS(1681), + [anon_sym_EQ_TILDE2] = ACTIONS(1681), + [anon_sym_BANG_TILDE2] = ACTIONS(1681), + [anon_sym_STAR_STAR2] = ACTIONS(1681), + [anon_sym_PLUS_PLUS2] = ACTIONS(1681), + [anon_sym_SLASH2] = ACTIONS(1681), + [anon_sym_mod2] = ACTIONS(1681), + [anon_sym_SLASH_SLASH2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1681), + [anon_sym_bit_DASHshl2] = ACTIONS(1681), + [anon_sym_bit_DASHshr2] = ACTIONS(1681), + [anon_sym_bit_DASHand2] = ACTIONS(1681), + [anon_sym_bit_DASHxor2] = ACTIONS(1681), + [anon_sym_bit_DASHor2] = ACTIONS(1681), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [sym_filesize_unit] = ACTIONS(1681), + [sym_duration_unit] = ACTIONS(1683), + [anon_sym_err_GT] = ACTIONS(1681), + [anon_sym_out_GT] = ACTIONS(1681), + [anon_sym_e_GT] = ACTIONS(1681), + [anon_sym_o_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT] = ACTIONS(1681), + [anon_sym_err_GT_GT] = ACTIONS(1681), + [anon_sym_out_GT_GT] = ACTIONS(1681), + [anon_sym_e_GT_GT] = ACTIONS(1681), + [anon_sym_o_GT_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1681), + [anon_sym_POUND] = ACTIONS(3), + }, + [871] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7207), + [sym__spread_list] = STATE(7653), + [sym_list_body] = STATE(7971), + [sym_val_entry] = STATE(7361), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), + [sym_comment] = STATE(871), + [aux_sym_shebang_repeat1] = STATE(885), + [aux_sym_parameter_repeat2] = STATE(6813), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(2530), [anon_sym_LBRACK] = ACTIONS(3091), [anon_sym_RBRACK] = ACTIONS(3177), [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_COMMA] = ACTIONS(2538), [anon_sym_DOLLAR] = ACTIONS(3097), [anon_sym_LBRACE] = ACTIONS(3099), [anon_sym_DOT_DOT] = ACTIONS(3101), @@ -166348,163 +166744,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, - [871] = { - [sym_comment] = STATE(871), - [anon_sym_STAR_STAR] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1763), - [anon_sym_SLASH] = ACTIONS(1763), - [anon_sym_mod] = ACTIONS(1765), - [anon_sym_SLASH_SLASH] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_bit_DASHshl] = ACTIONS(1765), - [anon_sym_bit_DASHshr] = ACTIONS(1765), - [anon_sym_EQ_TILDE] = ACTIONS(1765), - [anon_sym_BANG_TILDE] = ACTIONS(1765), - [anon_sym_bit_DASHand] = ACTIONS(1765), - [anon_sym_bit_DASHxor] = ACTIONS(1765), - [anon_sym_bit_DASHor] = ACTIONS(1765), - [anon_sym_and] = ACTIONS(1765), - [anon_sym_xor] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), - [anon_sym_in] = ACTIONS(1765), - [anon_sym_not_DASHin] = ACTIONS(1765), - [anon_sym_starts_DASHwith] = ACTIONS(1765), - [anon_sym_ends_DASHwith] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1765), - [anon_sym_BANG_EQ] = ACTIONS(1765), - [anon_sym_LT] = ACTIONS(1763), - [anon_sym_LT_EQ] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1765), - [aux_sym_cmd_identifier_token41] = ACTIONS(1763), - [sym__newline] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_err_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_GT_PIPE] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), - [anon_sym_GT2] = ACTIONS(1763), - [anon_sym_DASH2] = ACTIONS(1763), - [anon_sym_in2] = ACTIONS(1763), - [anon_sym_STAR2] = ACTIONS(1763), - [anon_sym_and2] = ACTIONS(1763), - [anon_sym_xor2] = ACTIONS(1763), - [anon_sym_or2] = ACTIONS(1763), - [anon_sym_not_DASHin2] = ACTIONS(1763), - [anon_sym_starts_DASHwith2] = ACTIONS(1763), - [anon_sym_ends_DASHwith2] = ACTIONS(1763), - [anon_sym_EQ_EQ2] = ACTIONS(1763), - [anon_sym_BANG_EQ2] = ACTIONS(1763), - [anon_sym_LT2] = ACTIONS(1763), - [anon_sym_LT_EQ2] = ACTIONS(1763), - [anon_sym_GT_EQ2] = ACTIONS(1763), - [anon_sym_EQ_TILDE2] = ACTIONS(1763), - [anon_sym_BANG_TILDE2] = ACTIONS(1763), - [anon_sym_STAR_STAR2] = ACTIONS(1763), - [anon_sym_PLUS_PLUS2] = ACTIONS(1763), - [anon_sym_SLASH2] = ACTIONS(1763), - [anon_sym_mod2] = ACTIONS(1763), - [anon_sym_SLASH_SLASH2] = ACTIONS(1763), - [anon_sym_PLUS2] = ACTIONS(1763), - [anon_sym_bit_DASHshl2] = ACTIONS(1763), - [anon_sym_bit_DASHshr2] = ACTIONS(1763), - [anon_sym_bit_DASHand2] = ACTIONS(1763), - [anon_sym_bit_DASHxor2] = ACTIONS(1763), - [anon_sym_bit_DASHor2] = ACTIONS(1763), - [anon_sym_DOT_DOT2] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), - [sym_filesize_unit] = ACTIONS(1763), - [sym_duration_unit] = ACTIONS(1765), - [anon_sym_err_GT] = ACTIONS(1763), - [anon_sym_out_GT] = ACTIONS(1763), - [anon_sym_e_GT] = ACTIONS(1763), - [anon_sym_o_GT] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT] = ACTIONS(1763), - [anon_sym_err_GT_GT] = ACTIONS(1763), - [anon_sym_out_GT_GT] = ACTIONS(1763), - [anon_sym_e_GT_GT] = ACTIONS(1763), - [anon_sym_o_GT_GT] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1763), - [anon_sym_POUND] = ACTIONS(3), - }, [872] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7302), - [sym__spread_list] = STATE(7416), - [sym_list_body] = STATE(7664), - [sym_val_entry] = STATE(6851), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7142), + [sym__spread_list] = STATE(7653), + [sym_list_body] = STATE(8106), + [sym_val_entry] = STATE(7361), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(872), - [aux_sym_shebang_repeat1] = STATE(887), - [aux_sym_parameter_repeat2] = STATE(6505), - [aux_sym_list_body_repeat1] = STATE(907), - [sym__newline] = ACTIONS(2540), - [anon_sym_LBRACK] = ACTIONS(3091), + [aux_sym_shebang_repeat1] = STATE(889), + [aux_sym_parameter_repeat2] = STATE(6813), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(2530), + [anon_sym_LBRACK] = ACTIONS(3137), [anon_sym_RBRACK] = ACTIONS(3179), [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_COMMA] = ACTIONS(2538), [anon_sym_DOLLAR] = ACTIONS(3097), [anon_sym_LBRACE] = ACTIONS(3099), [anon_sym_DOT_DOT] = ACTIONS(3101), @@ -166532,71 +166836,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [873] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7183), - [sym__spread_list] = STATE(7416), - [sym_list_body] = STATE(7758), - [sym_val_entry] = STATE(6851), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7142), + [sym__spread_list] = STATE(7653), + [sym_list_body] = STATE(7747), + [sym_val_entry] = STATE(7361), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(873), - [aux_sym_shebang_repeat1] = STATE(882), - [aux_sym_parameter_repeat2] = STATE(6505), - [aux_sym_list_body_repeat1] = STATE(907), - [sym__newline] = ACTIONS(2540), - [anon_sym_LBRACK] = ACTIONS(3091), + [aux_sym_shebang_repeat1] = STATE(889), + [aux_sym_parameter_repeat2] = STATE(6813), + [aux_sym_list_body_repeat1] = STATE(908), + [sym__newline] = ACTIONS(2530), + [anon_sym_LBRACK] = ACTIONS(3137), [anon_sym_RBRACK] = ACTIONS(3181), [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_COMMA] = ACTIONS(2538), [anon_sym_DOLLAR] = ACTIONS(3097), [anon_sym_LBRACE] = ACTIONS(3099), [anon_sym_DOT_DOT] = ACTIONS(3101), @@ -166624,31 +166928,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [874] = { [sym_comment] = STATE(874), + [ts_builtin_sym_end] = ACTIONS(2250), [anon_sym_STAR_STAR] = ACTIONS(3183), [anon_sym_PLUS_PLUS] = ACTIONS(3183), [anon_sym_STAR] = ACTIONS(3185), @@ -166678,244 +166983,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(3185), [anon_sym_GT_EQ] = ACTIONS(3183), [aux_sym_cmd_identifier_token41] = ACTIONS(3187), - [sym__newline] = ACTIONS(2214), - [anon_sym_SEMI] = ACTIONS(2214), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_err_GT_PIPE] = ACTIONS(2214), - [anon_sym_out_GT_PIPE] = ACTIONS(2214), - [anon_sym_e_GT_PIPE] = ACTIONS(2214), - [anon_sym_o_GT_PIPE] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2214), - [anon_sym_RPAREN] = ACTIONS(2214), - [anon_sym_GT2] = ACTIONS(2214), - [anon_sym_DASH2] = ACTIONS(2214), - [anon_sym_in2] = ACTIONS(2214), - [anon_sym_STAR2] = ACTIONS(2214), - [anon_sym_and2] = ACTIONS(2214), - [anon_sym_xor2] = ACTIONS(2214), - [anon_sym_or2] = ACTIONS(2214), - [anon_sym_not_DASHin2] = ACTIONS(2214), - [anon_sym_starts_DASHwith2] = ACTIONS(2214), - [anon_sym_ends_DASHwith2] = ACTIONS(2214), - [anon_sym_EQ_EQ2] = ACTIONS(2214), - [anon_sym_BANG_EQ2] = ACTIONS(2214), - [anon_sym_LT2] = ACTIONS(2214), - [anon_sym_LT_EQ2] = ACTIONS(2214), - [anon_sym_GT_EQ2] = ACTIONS(2214), - [anon_sym_EQ_TILDE2] = ACTIONS(2214), - [anon_sym_BANG_TILDE2] = ACTIONS(2214), - [anon_sym_STAR_STAR2] = ACTIONS(2214), - [anon_sym_PLUS_PLUS2] = ACTIONS(2214), - [anon_sym_SLASH2] = ACTIONS(2214), - [anon_sym_mod2] = ACTIONS(2214), - [anon_sym_SLASH_SLASH2] = ACTIONS(2214), - [anon_sym_PLUS2] = ACTIONS(2214), - [anon_sym_bit_DASHshl2] = ACTIONS(2214), - [anon_sym_bit_DASHshr2] = ACTIONS(2214), - [anon_sym_bit_DASHand2] = ACTIONS(2214), - [anon_sym_bit_DASHxor2] = ACTIONS(2214), - [anon_sym_bit_DASHor2] = ACTIONS(2214), - [anon_sym_err_GT] = ACTIONS(2214), - [anon_sym_out_GT] = ACTIONS(2214), - [anon_sym_e_GT] = ACTIONS(2214), - [anon_sym_o_GT] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT] = ACTIONS(2214), - [anon_sym_err_GT_GT] = ACTIONS(2214), - [anon_sym_out_GT_GT] = ACTIONS(2214), - [anon_sym_e_GT_GT] = ACTIONS(2214), - [anon_sym_o_GT_GT] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2214), + [sym__newline] = ACTIONS(2246), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2246), + [anon_sym_err_GT_PIPE] = ACTIONS(2246), + [anon_sym_out_GT_PIPE] = ACTIONS(2246), + [anon_sym_e_GT_PIPE] = ACTIONS(2246), + [anon_sym_o_GT_PIPE] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2246), + [anon_sym_GT2] = ACTIONS(2246), + [anon_sym_DASH2] = ACTIONS(2246), + [anon_sym_in2] = ACTIONS(2246), + [anon_sym_STAR2] = ACTIONS(2246), + [anon_sym_and2] = ACTIONS(2246), + [anon_sym_xor2] = ACTIONS(2246), + [anon_sym_or2] = ACTIONS(2246), + [anon_sym_not_DASHin2] = ACTIONS(2246), + [anon_sym_starts_DASHwith2] = ACTIONS(2246), + [anon_sym_ends_DASHwith2] = ACTIONS(2246), + [anon_sym_EQ_EQ2] = ACTIONS(2246), + [anon_sym_BANG_EQ2] = ACTIONS(2246), + [anon_sym_LT2] = ACTIONS(2246), + [anon_sym_LT_EQ2] = ACTIONS(2246), + [anon_sym_GT_EQ2] = ACTIONS(2246), + [anon_sym_EQ_TILDE2] = ACTIONS(2246), + [anon_sym_BANG_TILDE2] = ACTIONS(2246), + [anon_sym_STAR_STAR2] = ACTIONS(2246), + [anon_sym_PLUS_PLUS2] = ACTIONS(2246), + [anon_sym_SLASH2] = ACTIONS(2246), + [anon_sym_mod2] = ACTIONS(2246), + [anon_sym_SLASH_SLASH2] = ACTIONS(2246), + [anon_sym_PLUS2] = ACTIONS(2246), + [anon_sym_bit_DASHshl2] = ACTIONS(2246), + [anon_sym_bit_DASHshr2] = ACTIONS(2246), + [anon_sym_bit_DASHand2] = ACTIONS(2246), + [anon_sym_bit_DASHxor2] = ACTIONS(2246), + [anon_sym_bit_DASHor2] = ACTIONS(2246), + [anon_sym_err_GT] = ACTIONS(2246), + [anon_sym_out_GT] = ACTIONS(2246), + [anon_sym_e_GT] = ACTIONS(2246), + [anon_sym_o_GT] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT] = ACTIONS(2246), + [anon_sym_err_GT_GT] = ACTIONS(2246), + [anon_sym_out_GT_GT] = ACTIONS(2246), + [anon_sym_e_GT_GT] = ACTIONS(2246), + [anon_sym_o_GT_GT] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2246), [anon_sym_POUND] = ACTIONS(3), }, [875] = { [sym_comment] = STATE(875), - [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(2222), - [anon_sym_SEMI] = ACTIONS(2222), - [anon_sym_PIPE] = ACTIONS(2222), - [anon_sym_err_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_GT_PIPE] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2222), - [anon_sym_RPAREN] = ACTIONS(2222), - [anon_sym_GT2] = ACTIONS(2222), - [anon_sym_DASH2] = ACTIONS(2222), - [anon_sym_in2] = ACTIONS(2222), - [anon_sym_STAR2] = ACTIONS(2222), - [anon_sym_and2] = ACTIONS(2222), - [anon_sym_xor2] = ACTIONS(2222), - [anon_sym_or2] = ACTIONS(2222), - [anon_sym_not_DASHin2] = ACTIONS(2222), - [anon_sym_starts_DASHwith2] = ACTIONS(2222), - [anon_sym_ends_DASHwith2] = ACTIONS(2222), - [anon_sym_EQ_EQ2] = ACTIONS(2222), - [anon_sym_BANG_EQ2] = ACTIONS(2222), - [anon_sym_LT2] = ACTIONS(2222), - [anon_sym_LT_EQ2] = ACTIONS(2222), - [anon_sym_GT_EQ2] = ACTIONS(2222), - [anon_sym_EQ_TILDE2] = ACTIONS(2222), - [anon_sym_BANG_TILDE2] = ACTIONS(2222), - [anon_sym_STAR_STAR2] = ACTIONS(2222), - [anon_sym_PLUS_PLUS2] = ACTIONS(2222), - [anon_sym_SLASH2] = ACTIONS(2222), - [anon_sym_mod2] = ACTIONS(2222), - [anon_sym_SLASH_SLASH2] = ACTIONS(2222), - [anon_sym_PLUS2] = ACTIONS(2222), - [anon_sym_bit_DASHshl2] = ACTIONS(2222), - [anon_sym_bit_DASHshr2] = ACTIONS(2222), - [anon_sym_bit_DASHand2] = ACTIONS(2222), - [anon_sym_bit_DASHxor2] = ACTIONS(2222), - [anon_sym_bit_DASHor2] = ACTIONS(2222), - [anon_sym_err_GT] = ACTIONS(2222), - [anon_sym_out_GT] = ACTIONS(2222), - [anon_sym_e_GT] = ACTIONS(2222), - [anon_sym_o_GT] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT] = ACTIONS(2222), - [anon_sym_err_GT_GT] = ACTIONS(2222), - [anon_sym_out_GT_GT] = ACTIONS(2222), - [anon_sym_e_GT_GT] = ACTIONS(2222), - [anon_sym_o_GT_GT] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2222), - [anon_sym_POUND] = ACTIONS(3), - }, - [876] = { - [sym_comment] = STATE(876), - [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(2214), - [anon_sym_SEMI] = ACTIONS(2214), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_err_GT_PIPE] = ACTIONS(2214), - [anon_sym_out_GT_PIPE] = ACTIONS(2214), - [anon_sym_e_GT_PIPE] = ACTIONS(2214), - [anon_sym_o_GT_PIPE] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2214), - [anon_sym_GT2] = ACTIONS(2214), - [anon_sym_DASH2] = ACTIONS(2214), - [anon_sym_in2] = ACTIONS(2214), - [anon_sym_RBRACE] = ACTIONS(2214), - [anon_sym_STAR2] = ACTIONS(2214), - [anon_sym_and2] = ACTIONS(2214), - [anon_sym_xor2] = ACTIONS(2214), - [anon_sym_or2] = ACTIONS(2214), - [anon_sym_not_DASHin2] = ACTIONS(2214), - [anon_sym_starts_DASHwith2] = ACTIONS(2214), - [anon_sym_ends_DASHwith2] = ACTIONS(2214), - [anon_sym_EQ_EQ2] = ACTIONS(2214), - [anon_sym_BANG_EQ2] = ACTIONS(2214), - [anon_sym_LT2] = ACTIONS(2214), - [anon_sym_LT_EQ2] = ACTIONS(2214), - [anon_sym_GT_EQ2] = ACTIONS(2214), - [anon_sym_EQ_TILDE2] = ACTIONS(2214), - [anon_sym_BANG_TILDE2] = ACTIONS(2214), - [anon_sym_STAR_STAR2] = ACTIONS(2214), - [anon_sym_PLUS_PLUS2] = ACTIONS(2214), - [anon_sym_SLASH2] = ACTIONS(2214), - [anon_sym_mod2] = ACTIONS(2214), - [anon_sym_SLASH_SLASH2] = ACTIONS(2214), - [anon_sym_PLUS2] = ACTIONS(2214), - [anon_sym_bit_DASHshl2] = ACTIONS(2214), - [anon_sym_bit_DASHshr2] = ACTIONS(2214), - [anon_sym_bit_DASHand2] = ACTIONS(2214), - [anon_sym_bit_DASHxor2] = ACTIONS(2214), - [anon_sym_bit_DASHor2] = ACTIONS(2214), - [anon_sym_err_GT] = ACTIONS(2214), - [anon_sym_out_GT] = ACTIONS(2214), - [anon_sym_e_GT] = ACTIONS(2214), - [anon_sym_o_GT] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT] = ACTIONS(2214), - [anon_sym_err_GT_GT] = ACTIONS(2214), - [anon_sym_out_GT_GT] = ACTIONS(2214), - [anon_sym_e_GT_GT] = ACTIONS(2214), - [anon_sym_o_GT_GT] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2214), - [anon_sym_POUND] = ACTIONS(3), - }, - [877] = { - [sym_comment] = STATE(877), [anon_sym_STAR_STAR] = ACTIONS(3189), [anon_sym_PLUS_PLUS] = ACTIONS(3189), [anon_sym_STAR] = ACTIONS(3191), @@ -166945,66 +167071,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(3191), [anon_sym_GT_EQ] = ACTIONS(3189), [aux_sym_cmd_identifier_token41] = ACTIONS(3193), - [sym__newline] = ACTIONS(2222), - [anon_sym_SEMI] = ACTIONS(2222), - [anon_sym_PIPE] = ACTIONS(2222), - [anon_sym_err_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_GT_PIPE] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2222), - [anon_sym_GT2] = ACTIONS(2222), - [anon_sym_DASH2] = ACTIONS(2222), - [anon_sym_in2] = ACTIONS(2222), - [anon_sym_RBRACE] = ACTIONS(2222), - [anon_sym_STAR2] = ACTIONS(2222), - [anon_sym_and2] = ACTIONS(2222), - [anon_sym_xor2] = ACTIONS(2222), - [anon_sym_or2] = ACTIONS(2222), - [anon_sym_not_DASHin2] = ACTIONS(2222), - [anon_sym_starts_DASHwith2] = ACTIONS(2222), - [anon_sym_ends_DASHwith2] = ACTIONS(2222), - [anon_sym_EQ_EQ2] = ACTIONS(2222), - [anon_sym_BANG_EQ2] = ACTIONS(2222), - [anon_sym_LT2] = ACTIONS(2222), - [anon_sym_LT_EQ2] = ACTIONS(2222), - [anon_sym_GT_EQ2] = ACTIONS(2222), - [anon_sym_EQ_TILDE2] = ACTIONS(2222), - [anon_sym_BANG_TILDE2] = ACTIONS(2222), - [anon_sym_STAR_STAR2] = ACTIONS(2222), - [anon_sym_PLUS_PLUS2] = ACTIONS(2222), - [anon_sym_SLASH2] = ACTIONS(2222), - [anon_sym_mod2] = ACTIONS(2222), - [anon_sym_SLASH_SLASH2] = ACTIONS(2222), - [anon_sym_PLUS2] = ACTIONS(2222), - [anon_sym_bit_DASHshl2] = ACTIONS(2222), - [anon_sym_bit_DASHshr2] = ACTIONS(2222), - [anon_sym_bit_DASHand2] = ACTIONS(2222), - [anon_sym_bit_DASHxor2] = ACTIONS(2222), - [anon_sym_bit_DASHor2] = ACTIONS(2222), - [anon_sym_err_GT] = ACTIONS(2222), - [anon_sym_out_GT] = ACTIONS(2222), - [anon_sym_e_GT] = ACTIONS(2222), - [anon_sym_o_GT] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT] = ACTIONS(2222), - [anon_sym_err_GT_GT] = ACTIONS(2222), - [anon_sym_out_GT_GT] = ACTIONS(2222), - [anon_sym_e_GT_GT] = ACTIONS(2222), - [anon_sym_o_GT_GT] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2222), + [sym__newline] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_PIPE] = ACTIONS(2254), + [anon_sym_err_GT_PIPE] = ACTIONS(2254), + [anon_sym_out_GT_PIPE] = ACTIONS(2254), + [anon_sym_e_GT_PIPE] = ACTIONS(2254), + [anon_sym_o_GT_PIPE] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), + [anon_sym_GT2] = ACTIONS(2254), + [anon_sym_DASH2] = ACTIONS(2254), + [anon_sym_in2] = ACTIONS(2254), + [anon_sym_RBRACE] = ACTIONS(2254), + [anon_sym_STAR2] = ACTIONS(2254), + [anon_sym_and2] = ACTIONS(2254), + [anon_sym_xor2] = ACTIONS(2254), + [anon_sym_or2] = ACTIONS(2254), + [anon_sym_not_DASHin2] = ACTIONS(2254), + [anon_sym_starts_DASHwith2] = ACTIONS(2254), + [anon_sym_ends_DASHwith2] = ACTIONS(2254), + [anon_sym_EQ_EQ2] = ACTIONS(2254), + [anon_sym_BANG_EQ2] = ACTIONS(2254), + [anon_sym_LT2] = ACTIONS(2254), + [anon_sym_LT_EQ2] = ACTIONS(2254), + [anon_sym_GT_EQ2] = ACTIONS(2254), + [anon_sym_EQ_TILDE2] = ACTIONS(2254), + [anon_sym_BANG_TILDE2] = ACTIONS(2254), + [anon_sym_STAR_STAR2] = ACTIONS(2254), + [anon_sym_PLUS_PLUS2] = ACTIONS(2254), + [anon_sym_SLASH2] = ACTIONS(2254), + [anon_sym_mod2] = ACTIONS(2254), + [anon_sym_SLASH_SLASH2] = ACTIONS(2254), + [anon_sym_PLUS2] = ACTIONS(2254), + [anon_sym_bit_DASHshl2] = ACTIONS(2254), + [anon_sym_bit_DASHshr2] = ACTIONS(2254), + [anon_sym_bit_DASHand2] = ACTIONS(2254), + [anon_sym_bit_DASHxor2] = ACTIONS(2254), + [anon_sym_bit_DASHor2] = ACTIONS(2254), + [anon_sym_err_GT] = ACTIONS(2254), + [anon_sym_out_GT] = ACTIONS(2254), + [anon_sym_e_GT] = ACTIONS(2254), + [anon_sym_o_GT] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT] = ACTIONS(2254), + [anon_sym_err_GT_GT] = ACTIONS(2254), + [anon_sym_out_GT_GT] = ACTIONS(2254), + [anon_sym_e_GT_GT] = ACTIONS(2254), + [anon_sym_o_GT_GT] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), [anon_sym_POUND] = ACTIONS(3), }, - [878] = { - [sym_comment] = STATE(878), + [876] = { + [sym_comment] = STATE(876), + [ts_builtin_sym_end] = ACTIONS(2256), [anon_sym_STAR_STAR] = ACTIONS(3183), [anon_sym_PLUS_PLUS] = ACTIONS(3183), [anon_sym_STAR] = ACTIONS(3185), @@ -167034,67 +167161,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(3185), [anon_sym_GT_EQ] = ACTIONS(3183), [aux_sym_cmd_identifier_token41] = ACTIONS(3187), - [sym__newline] = ACTIONS(2222), - [anon_sym_SEMI] = ACTIONS(2222), - [anon_sym_PIPE] = ACTIONS(2222), - [anon_sym_err_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_GT_PIPE] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2222), - [anon_sym_GT2] = ACTIONS(2222), - [anon_sym_DASH2] = ACTIONS(2222), - [anon_sym_in2] = ACTIONS(2222), - [anon_sym_RBRACE] = ACTIONS(2222), - [anon_sym_STAR2] = ACTIONS(2222), - [anon_sym_and2] = ACTIONS(2222), - [anon_sym_xor2] = ACTIONS(2222), - [anon_sym_or2] = ACTIONS(2222), - [anon_sym_not_DASHin2] = ACTIONS(2222), - [anon_sym_starts_DASHwith2] = ACTIONS(2222), - [anon_sym_ends_DASHwith2] = ACTIONS(2222), - [anon_sym_EQ_EQ2] = ACTIONS(2222), - [anon_sym_BANG_EQ2] = ACTIONS(2222), - [anon_sym_LT2] = ACTIONS(2222), - [anon_sym_LT_EQ2] = ACTIONS(2222), - [anon_sym_GT_EQ2] = ACTIONS(2222), - [anon_sym_EQ_TILDE2] = ACTIONS(2222), - [anon_sym_BANG_TILDE2] = ACTIONS(2222), - [anon_sym_STAR_STAR2] = ACTIONS(2222), - [anon_sym_PLUS_PLUS2] = ACTIONS(2222), - [anon_sym_SLASH2] = ACTIONS(2222), - [anon_sym_mod2] = ACTIONS(2222), - [anon_sym_SLASH_SLASH2] = ACTIONS(2222), - [anon_sym_PLUS2] = ACTIONS(2222), - [anon_sym_bit_DASHshl2] = ACTIONS(2222), - [anon_sym_bit_DASHshr2] = ACTIONS(2222), - [anon_sym_bit_DASHand2] = ACTIONS(2222), - [anon_sym_bit_DASHxor2] = ACTIONS(2222), - [anon_sym_bit_DASHor2] = ACTIONS(2222), - [anon_sym_err_GT] = ACTIONS(2222), - [anon_sym_out_GT] = ACTIONS(2222), - [anon_sym_e_GT] = ACTIONS(2222), - [anon_sym_o_GT] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT] = ACTIONS(2222), - [anon_sym_err_GT_GT] = ACTIONS(2222), - [anon_sym_out_GT_GT] = ACTIONS(2222), - [anon_sym_e_GT_GT] = ACTIONS(2222), - [anon_sym_o_GT_GT] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2222), + [sym__newline] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_PIPE] = ACTIONS(2254), + [anon_sym_err_GT_PIPE] = ACTIONS(2254), + [anon_sym_out_GT_PIPE] = ACTIONS(2254), + [anon_sym_e_GT_PIPE] = ACTIONS(2254), + [anon_sym_o_GT_PIPE] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), + [anon_sym_GT2] = ACTIONS(2254), + [anon_sym_DASH2] = ACTIONS(2254), + [anon_sym_in2] = ACTIONS(2254), + [anon_sym_STAR2] = ACTIONS(2254), + [anon_sym_and2] = ACTIONS(2254), + [anon_sym_xor2] = ACTIONS(2254), + [anon_sym_or2] = ACTIONS(2254), + [anon_sym_not_DASHin2] = ACTIONS(2254), + [anon_sym_starts_DASHwith2] = ACTIONS(2254), + [anon_sym_ends_DASHwith2] = ACTIONS(2254), + [anon_sym_EQ_EQ2] = ACTIONS(2254), + [anon_sym_BANG_EQ2] = ACTIONS(2254), + [anon_sym_LT2] = ACTIONS(2254), + [anon_sym_LT_EQ2] = ACTIONS(2254), + [anon_sym_GT_EQ2] = ACTIONS(2254), + [anon_sym_EQ_TILDE2] = ACTIONS(2254), + [anon_sym_BANG_TILDE2] = ACTIONS(2254), + [anon_sym_STAR_STAR2] = ACTIONS(2254), + [anon_sym_PLUS_PLUS2] = ACTIONS(2254), + [anon_sym_SLASH2] = ACTIONS(2254), + [anon_sym_mod2] = ACTIONS(2254), + [anon_sym_SLASH_SLASH2] = ACTIONS(2254), + [anon_sym_PLUS2] = ACTIONS(2254), + [anon_sym_bit_DASHshl2] = ACTIONS(2254), + [anon_sym_bit_DASHshr2] = ACTIONS(2254), + [anon_sym_bit_DASHand2] = ACTIONS(2254), + [anon_sym_bit_DASHxor2] = ACTIONS(2254), + [anon_sym_bit_DASHor2] = ACTIONS(2254), + [anon_sym_err_GT] = ACTIONS(2254), + [anon_sym_out_GT] = ACTIONS(2254), + [anon_sym_e_GT] = ACTIONS(2254), + [anon_sym_o_GT] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT] = ACTIONS(2254), + [anon_sym_err_GT_GT] = ACTIONS(2254), + [anon_sym_out_GT_GT] = ACTIONS(2254), + [anon_sym_e_GT_GT] = ACTIONS(2254), + [anon_sym_o_GT_GT] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), [anon_sym_POUND] = ACTIONS(3), }, - [879] = { - [sym_comment] = STATE(879), - [ts_builtin_sym_end] = ACTIONS(2218), + [877] = { + [sym_comment] = STATE(877), [anon_sym_STAR_STAR] = ACTIONS(3195), [anon_sym_PLUS_PLUS] = ACTIONS(3195), [anon_sym_STAR] = ACTIONS(3197), @@ -167124,66 +167249,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(3197), [anon_sym_GT_EQ] = ACTIONS(3195), [aux_sym_cmd_identifier_token41] = ACTIONS(3199), - [sym__newline] = ACTIONS(2214), - [anon_sym_SEMI] = ACTIONS(2214), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_err_GT_PIPE] = ACTIONS(2214), - [anon_sym_out_GT_PIPE] = ACTIONS(2214), - [anon_sym_e_GT_PIPE] = ACTIONS(2214), - [anon_sym_o_GT_PIPE] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2214), - [anon_sym_GT2] = ACTIONS(2214), - [anon_sym_DASH2] = ACTIONS(2214), - [anon_sym_in2] = ACTIONS(2214), - [anon_sym_STAR2] = ACTIONS(2214), - [anon_sym_and2] = ACTIONS(2214), - [anon_sym_xor2] = ACTIONS(2214), - [anon_sym_or2] = ACTIONS(2214), - [anon_sym_not_DASHin2] = ACTIONS(2214), - [anon_sym_starts_DASHwith2] = ACTIONS(2214), - [anon_sym_ends_DASHwith2] = ACTIONS(2214), - [anon_sym_EQ_EQ2] = ACTIONS(2214), - [anon_sym_BANG_EQ2] = ACTIONS(2214), - [anon_sym_LT2] = ACTIONS(2214), - [anon_sym_LT_EQ2] = ACTIONS(2214), - [anon_sym_GT_EQ2] = ACTIONS(2214), - [anon_sym_EQ_TILDE2] = ACTIONS(2214), - [anon_sym_BANG_TILDE2] = ACTIONS(2214), - [anon_sym_STAR_STAR2] = ACTIONS(2214), - [anon_sym_PLUS_PLUS2] = ACTIONS(2214), - [anon_sym_SLASH2] = ACTIONS(2214), - [anon_sym_mod2] = ACTIONS(2214), - [anon_sym_SLASH_SLASH2] = ACTIONS(2214), - [anon_sym_PLUS2] = ACTIONS(2214), - [anon_sym_bit_DASHshl2] = ACTIONS(2214), - [anon_sym_bit_DASHshr2] = ACTIONS(2214), - [anon_sym_bit_DASHand2] = ACTIONS(2214), - [anon_sym_bit_DASHxor2] = ACTIONS(2214), - [anon_sym_bit_DASHor2] = ACTIONS(2214), - [anon_sym_err_GT] = ACTIONS(2214), - [anon_sym_out_GT] = ACTIONS(2214), - [anon_sym_e_GT] = ACTIONS(2214), - [anon_sym_o_GT] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT] = ACTIONS(2214), - [anon_sym_err_GT_GT] = ACTIONS(2214), - [anon_sym_out_GT_GT] = ACTIONS(2214), - [anon_sym_e_GT_GT] = ACTIONS(2214), - [anon_sym_o_GT_GT] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2214), + [sym__newline] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_PIPE] = ACTIONS(2254), + [anon_sym_err_GT_PIPE] = ACTIONS(2254), + [anon_sym_out_GT_PIPE] = ACTIONS(2254), + [anon_sym_e_GT_PIPE] = ACTIONS(2254), + [anon_sym_o_GT_PIPE] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), + [anon_sym_GT2] = ACTIONS(2254), + [anon_sym_DASH2] = ACTIONS(2254), + [anon_sym_in2] = ACTIONS(2254), + [anon_sym_RBRACE] = ACTIONS(2254), + [anon_sym_STAR2] = ACTIONS(2254), + [anon_sym_and2] = ACTIONS(2254), + [anon_sym_xor2] = ACTIONS(2254), + [anon_sym_or2] = ACTIONS(2254), + [anon_sym_not_DASHin2] = ACTIONS(2254), + [anon_sym_starts_DASHwith2] = ACTIONS(2254), + [anon_sym_ends_DASHwith2] = ACTIONS(2254), + [anon_sym_EQ_EQ2] = ACTIONS(2254), + [anon_sym_BANG_EQ2] = ACTIONS(2254), + [anon_sym_LT2] = ACTIONS(2254), + [anon_sym_LT_EQ2] = ACTIONS(2254), + [anon_sym_GT_EQ2] = ACTIONS(2254), + [anon_sym_EQ_TILDE2] = ACTIONS(2254), + [anon_sym_BANG_TILDE2] = ACTIONS(2254), + [anon_sym_STAR_STAR2] = ACTIONS(2254), + [anon_sym_PLUS_PLUS2] = ACTIONS(2254), + [anon_sym_SLASH2] = ACTIONS(2254), + [anon_sym_mod2] = ACTIONS(2254), + [anon_sym_SLASH_SLASH2] = ACTIONS(2254), + [anon_sym_PLUS2] = ACTIONS(2254), + [anon_sym_bit_DASHshl2] = ACTIONS(2254), + [anon_sym_bit_DASHshr2] = ACTIONS(2254), + [anon_sym_bit_DASHand2] = ACTIONS(2254), + [anon_sym_bit_DASHxor2] = ACTIONS(2254), + [anon_sym_bit_DASHor2] = ACTIONS(2254), + [anon_sym_err_GT] = ACTIONS(2254), + [anon_sym_out_GT] = ACTIONS(2254), + [anon_sym_e_GT] = ACTIONS(2254), + [anon_sym_o_GT] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT] = ACTIONS(2254), + [anon_sym_err_GT_GT] = ACTIONS(2254), + [anon_sym_out_GT_GT] = ACTIONS(2254), + [anon_sym_e_GT_GT] = ACTIONS(2254), + [anon_sym_o_GT_GT] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), [anon_sym_POUND] = ACTIONS(3), }, - [880] = { - [sym_comment] = STATE(880), - [ts_builtin_sym_end] = ACTIONS(2224), + [878] = { + [sym_comment] = STATE(878), [anon_sym_STAR_STAR] = ACTIONS(3195), [anon_sym_PLUS_PLUS] = ACTIONS(3195), [anon_sym_STAR] = ACTIONS(3197), @@ -167213,65 +167338,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(3197), [anon_sym_GT_EQ] = ACTIONS(3195), [aux_sym_cmd_identifier_token41] = ACTIONS(3199), - [sym__newline] = ACTIONS(2222), - [anon_sym_SEMI] = ACTIONS(2222), - [anon_sym_PIPE] = ACTIONS(2222), - [anon_sym_err_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_GT_PIPE] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2222), - [anon_sym_GT2] = ACTIONS(2222), - [anon_sym_DASH2] = ACTIONS(2222), - [anon_sym_in2] = ACTIONS(2222), - [anon_sym_STAR2] = ACTIONS(2222), - [anon_sym_and2] = ACTIONS(2222), - [anon_sym_xor2] = ACTIONS(2222), - [anon_sym_or2] = ACTIONS(2222), - [anon_sym_not_DASHin2] = ACTIONS(2222), - [anon_sym_starts_DASHwith2] = ACTIONS(2222), - [anon_sym_ends_DASHwith2] = ACTIONS(2222), - [anon_sym_EQ_EQ2] = ACTIONS(2222), - [anon_sym_BANG_EQ2] = ACTIONS(2222), - [anon_sym_LT2] = ACTIONS(2222), - [anon_sym_LT_EQ2] = ACTIONS(2222), - [anon_sym_GT_EQ2] = ACTIONS(2222), - [anon_sym_EQ_TILDE2] = ACTIONS(2222), - [anon_sym_BANG_TILDE2] = ACTIONS(2222), - [anon_sym_STAR_STAR2] = ACTIONS(2222), - [anon_sym_PLUS_PLUS2] = ACTIONS(2222), - [anon_sym_SLASH2] = ACTIONS(2222), - [anon_sym_mod2] = ACTIONS(2222), - [anon_sym_SLASH_SLASH2] = ACTIONS(2222), - [anon_sym_PLUS2] = ACTIONS(2222), - [anon_sym_bit_DASHshl2] = ACTIONS(2222), - [anon_sym_bit_DASHshr2] = ACTIONS(2222), - [anon_sym_bit_DASHand2] = ACTIONS(2222), - [anon_sym_bit_DASHxor2] = ACTIONS(2222), - [anon_sym_bit_DASHor2] = ACTIONS(2222), - [anon_sym_err_GT] = ACTIONS(2222), - [anon_sym_out_GT] = ACTIONS(2222), - [anon_sym_e_GT] = ACTIONS(2222), - [anon_sym_o_GT] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT] = ACTIONS(2222), - [anon_sym_err_GT_GT] = ACTIONS(2222), - [anon_sym_out_GT_GT] = ACTIONS(2222), - [anon_sym_e_GT_GT] = ACTIONS(2222), - [anon_sym_o_GT_GT] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2222), + [sym__newline] = ACTIONS(2246), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2246), + [anon_sym_err_GT_PIPE] = ACTIONS(2246), + [anon_sym_out_GT_PIPE] = ACTIONS(2246), + [anon_sym_e_GT_PIPE] = ACTIONS(2246), + [anon_sym_o_GT_PIPE] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2246), + [anon_sym_RPAREN] = ACTIONS(2246), + [anon_sym_GT2] = ACTIONS(2246), + [anon_sym_DASH2] = ACTIONS(2246), + [anon_sym_in2] = ACTIONS(2246), + [anon_sym_STAR2] = ACTIONS(2246), + [anon_sym_and2] = ACTIONS(2246), + [anon_sym_xor2] = ACTIONS(2246), + [anon_sym_or2] = ACTIONS(2246), + [anon_sym_not_DASHin2] = ACTIONS(2246), + [anon_sym_starts_DASHwith2] = ACTIONS(2246), + [anon_sym_ends_DASHwith2] = ACTIONS(2246), + [anon_sym_EQ_EQ2] = ACTIONS(2246), + [anon_sym_BANG_EQ2] = ACTIONS(2246), + [anon_sym_LT2] = ACTIONS(2246), + [anon_sym_LT_EQ2] = ACTIONS(2246), + [anon_sym_GT_EQ2] = ACTIONS(2246), + [anon_sym_EQ_TILDE2] = ACTIONS(2246), + [anon_sym_BANG_TILDE2] = ACTIONS(2246), + [anon_sym_STAR_STAR2] = ACTIONS(2246), + [anon_sym_PLUS_PLUS2] = ACTIONS(2246), + [anon_sym_SLASH2] = ACTIONS(2246), + [anon_sym_mod2] = ACTIONS(2246), + [anon_sym_SLASH_SLASH2] = ACTIONS(2246), + [anon_sym_PLUS2] = ACTIONS(2246), + [anon_sym_bit_DASHshl2] = ACTIONS(2246), + [anon_sym_bit_DASHshr2] = ACTIONS(2246), + [anon_sym_bit_DASHand2] = ACTIONS(2246), + [anon_sym_bit_DASHxor2] = ACTIONS(2246), + [anon_sym_bit_DASHor2] = ACTIONS(2246), + [anon_sym_err_GT] = ACTIONS(2246), + [anon_sym_out_GT] = ACTIONS(2246), + [anon_sym_e_GT] = ACTIONS(2246), + [anon_sym_o_GT] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT] = ACTIONS(2246), + [anon_sym_err_GT_GT] = ACTIONS(2246), + [anon_sym_out_GT_GT] = ACTIONS(2246), + [anon_sym_e_GT_GT] = ACTIONS(2246), + [anon_sym_o_GT_GT] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2246), [anon_sym_POUND] = ACTIONS(3), }, - [881] = { - [sym_comment] = STATE(881), + [879] = { + [sym_comment] = STATE(879), + [anon_sym_STAR_STAR] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_SLASH] = ACTIONS(3197), + [anon_sym_mod] = ACTIONS(3195), + [anon_sym_SLASH_SLASH] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_bit_DASHshl] = ACTIONS(3195), + [anon_sym_bit_DASHshr] = ACTIONS(3195), + [anon_sym_EQ_TILDE] = ACTIONS(3195), + [anon_sym_BANG_TILDE] = ACTIONS(3195), + [anon_sym_bit_DASHand] = ACTIONS(3195), + [anon_sym_bit_DASHxor] = ACTIONS(3195), + [anon_sym_bit_DASHor] = ACTIONS(3195), + [anon_sym_and] = ACTIONS(3195), + [anon_sym_xor] = ACTIONS(3195), + [anon_sym_or] = ACTIONS(3195), + [anon_sym_in] = ACTIONS(3195), + [anon_sym_not_DASHin] = ACTIONS(3195), + [anon_sym_starts_DASHwith] = ACTIONS(3195), + [anon_sym_ends_DASHwith] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT] = ACTIONS(3197), + [anon_sym_GT_EQ] = ACTIONS(3195), + [aux_sym_cmd_identifier_token41] = ACTIONS(3199), + [sym__newline] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_PIPE] = ACTIONS(2254), + [anon_sym_err_GT_PIPE] = ACTIONS(2254), + [anon_sym_out_GT_PIPE] = ACTIONS(2254), + [anon_sym_e_GT_PIPE] = ACTIONS(2254), + [anon_sym_o_GT_PIPE] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), + [anon_sym_RPAREN] = ACTIONS(2254), + [anon_sym_GT2] = ACTIONS(2254), + [anon_sym_DASH2] = ACTIONS(2254), + [anon_sym_in2] = ACTIONS(2254), + [anon_sym_STAR2] = ACTIONS(2254), + [anon_sym_and2] = ACTIONS(2254), + [anon_sym_xor2] = ACTIONS(2254), + [anon_sym_or2] = ACTIONS(2254), + [anon_sym_not_DASHin2] = ACTIONS(2254), + [anon_sym_starts_DASHwith2] = ACTIONS(2254), + [anon_sym_ends_DASHwith2] = ACTIONS(2254), + [anon_sym_EQ_EQ2] = ACTIONS(2254), + [anon_sym_BANG_EQ2] = ACTIONS(2254), + [anon_sym_LT2] = ACTIONS(2254), + [anon_sym_LT_EQ2] = ACTIONS(2254), + [anon_sym_GT_EQ2] = ACTIONS(2254), + [anon_sym_EQ_TILDE2] = ACTIONS(2254), + [anon_sym_BANG_TILDE2] = ACTIONS(2254), + [anon_sym_STAR_STAR2] = ACTIONS(2254), + [anon_sym_PLUS_PLUS2] = ACTIONS(2254), + [anon_sym_SLASH2] = ACTIONS(2254), + [anon_sym_mod2] = ACTIONS(2254), + [anon_sym_SLASH_SLASH2] = ACTIONS(2254), + [anon_sym_PLUS2] = ACTIONS(2254), + [anon_sym_bit_DASHshl2] = ACTIONS(2254), + [anon_sym_bit_DASHshr2] = ACTIONS(2254), + [anon_sym_bit_DASHand2] = ACTIONS(2254), + [anon_sym_bit_DASHxor2] = ACTIONS(2254), + [anon_sym_bit_DASHor2] = ACTIONS(2254), + [anon_sym_err_GT] = ACTIONS(2254), + [anon_sym_out_GT] = ACTIONS(2254), + [anon_sym_e_GT] = ACTIONS(2254), + [anon_sym_o_GT] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT] = ACTIONS(2254), + [anon_sym_err_GT_GT] = ACTIONS(2254), + [anon_sym_out_GT_GT] = ACTIONS(2254), + [anon_sym_e_GT_GT] = ACTIONS(2254), + [anon_sym_o_GT_GT] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), + [anon_sym_POUND] = ACTIONS(3), + }, + [880] = { + [sym_comment] = STATE(880), [anon_sym_STAR_STAR] = ACTIONS(3189), [anon_sym_PLUS_PLUS] = ACTIONS(3189), [anon_sym_STAR] = ACTIONS(3191), @@ -167301,99 +167516,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(3191), [anon_sym_GT_EQ] = ACTIONS(3189), [aux_sym_cmd_identifier_token41] = ACTIONS(3193), - [sym__newline] = ACTIONS(2214), - [anon_sym_SEMI] = ACTIONS(2214), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_err_GT_PIPE] = ACTIONS(2214), - [anon_sym_out_GT_PIPE] = ACTIONS(2214), - [anon_sym_e_GT_PIPE] = ACTIONS(2214), - [anon_sym_o_GT_PIPE] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2214), - [anon_sym_GT2] = ACTIONS(2214), - [anon_sym_DASH2] = ACTIONS(2214), - [anon_sym_in2] = ACTIONS(2214), - [anon_sym_RBRACE] = ACTIONS(2214), - [anon_sym_STAR2] = ACTIONS(2214), - [anon_sym_and2] = ACTIONS(2214), - [anon_sym_xor2] = ACTIONS(2214), - [anon_sym_or2] = ACTIONS(2214), - [anon_sym_not_DASHin2] = ACTIONS(2214), - [anon_sym_starts_DASHwith2] = ACTIONS(2214), - [anon_sym_ends_DASHwith2] = ACTIONS(2214), - [anon_sym_EQ_EQ2] = ACTIONS(2214), - [anon_sym_BANG_EQ2] = ACTIONS(2214), - [anon_sym_LT2] = ACTIONS(2214), - [anon_sym_LT_EQ2] = ACTIONS(2214), - [anon_sym_GT_EQ2] = ACTIONS(2214), - [anon_sym_EQ_TILDE2] = ACTIONS(2214), - [anon_sym_BANG_TILDE2] = ACTIONS(2214), - [anon_sym_STAR_STAR2] = ACTIONS(2214), - [anon_sym_PLUS_PLUS2] = ACTIONS(2214), - [anon_sym_SLASH2] = ACTIONS(2214), - [anon_sym_mod2] = ACTIONS(2214), - [anon_sym_SLASH_SLASH2] = ACTIONS(2214), - [anon_sym_PLUS2] = ACTIONS(2214), - [anon_sym_bit_DASHshl2] = ACTIONS(2214), - [anon_sym_bit_DASHshr2] = ACTIONS(2214), - [anon_sym_bit_DASHand2] = ACTIONS(2214), - [anon_sym_bit_DASHxor2] = ACTIONS(2214), - [anon_sym_bit_DASHor2] = ACTIONS(2214), - [anon_sym_err_GT] = ACTIONS(2214), - [anon_sym_out_GT] = ACTIONS(2214), - [anon_sym_e_GT] = ACTIONS(2214), - [anon_sym_o_GT] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT] = ACTIONS(2214), - [anon_sym_err_GT_GT] = ACTIONS(2214), - [anon_sym_out_GT_GT] = ACTIONS(2214), - [anon_sym_e_GT_GT] = ACTIONS(2214), - [anon_sym_o_GT_GT] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2214), + [sym__newline] = ACTIONS(2246), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2246), + [anon_sym_err_GT_PIPE] = ACTIONS(2246), + [anon_sym_out_GT_PIPE] = ACTIONS(2246), + [anon_sym_e_GT_PIPE] = ACTIONS(2246), + [anon_sym_o_GT_PIPE] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2246), + [anon_sym_GT2] = ACTIONS(2246), + [anon_sym_DASH2] = ACTIONS(2246), + [anon_sym_in2] = ACTIONS(2246), + [anon_sym_RBRACE] = ACTIONS(2246), + [anon_sym_STAR2] = ACTIONS(2246), + [anon_sym_and2] = ACTIONS(2246), + [anon_sym_xor2] = ACTIONS(2246), + [anon_sym_or2] = ACTIONS(2246), + [anon_sym_not_DASHin2] = ACTIONS(2246), + [anon_sym_starts_DASHwith2] = ACTIONS(2246), + [anon_sym_ends_DASHwith2] = ACTIONS(2246), + [anon_sym_EQ_EQ2] = ACTIONS(2246), + [anon_sym_BANG_EQ2] = ACTIONS(2246), + [anon_sym_LT2] = ACTIONS(2246), + [anon_sym_LT_EQ2] = ACTIONS(2246), + [anon_sym_GT_EQ2] = ACTIONS(2246), + [anon_sym_EQ_TILDE2] = ACTIONS(2246), + [anon_sym_BANG_TILDE2] = ACTIONS(2246), + [anon_sym_STAR_STAR2] = ACTIONS(2246), + [anon_sym_PLUS_PLUS2] = ACTIONS(2246), + [anon_sym_SLASH2] = ACTIONS(2246), + [anon_sym_mod2] = ACTIONS(2246), + [anon_sym_SLASH_SLASH2] = ACTIONS(2246), + [anon_sym_PLUS2] = ACTIONS(2246), + [anon_sym_bit_DASHshl2] = ACTIONS(2246), + [anon_sym_bit_DASHshr2] = ACTIONS(2246), + [anon_sym_bit_DASHand2] = ACTIONS(2246), + [anon_sym_bit_DASHxor2] = ACTIONS(2246), + [anon_sym_bit_DASHor2] = ACTIONS(2246), + [anon_sym_err_GT] = ACTIONS(2246), + [anon_sym_out_GT] = ACTIONS(2246), + [anon_sym_e_GT] = ACTIONS(2246), + [anon_sym_o_GT] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT] = ACTIONS(2246), + [anon_sym_err_GT_GT] = ACTIONS(2246), + [anon_sym_out_GT_GT] = ACTIONS(2246), + [anon_sym_e_GT_GT] = ACTIONS(2246), + [anon_sym_o_GT_GT] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2246), + [anon_sym_POUND] = ACTIONS(3), + }, + [881] = { + [sym_comment] = STATE(881), + [anon_sym_STAR_STAR] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_SLASH] = ACTIONS(3197), + [anon_sym_mod] = ACTIONS(3195), + [anon_sym_SLASH_SLASH] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_bit_DASHshl] = ACTIONS(3195), + [anon_sym_bit_DASHshr] = ACTIONS(3195), + [anon_sym_EQ_TILDE] = ACTIONS(3195), + [anon_sym_BANG_TILDE] = ACTIONS(3195), + [anon_sym_bit_DASHand] = ACTIONS(3195), + [anon_sym_bit_DASHxor] = ACTIONS(3195), + [anon_sym_bit_DASHor] = ACTIONS(3195), + [anon_sym_and] = ACTIONS(3195), + [anon_sym_xor] = ACTIONS(3195), + [anon_sym_or] = ACTIONS(3195), + [anon_sym_in] = ACTIONS(3195), + [anon_sym_not_DASHin] = ACTIONS(3195), + [anon_sym_starts_DASHwith] = ACTIONS(3195), + [anon_sym_ends_DASHwith] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT] = ACTIONS(3197), + [anon_sym_GT_EQ] = ACTIONS(3195), + [aux_sym_cmd_identifier_token41] = ACTIONS(3199), + [sym__newline] = ACTIONS(2246), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2246), + [anon_sym_err_GT_PIPE] = ACTIONS(2246), + [anon_sym_out_GT_PIPE] = ACTIONS(2246), + [anon_sym_e_GT_PIPE] = ACTIONS(2246), + [anon_sym_o_GT_PIPE] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2246), + [anon_sym_GT2] = ACTIONS(2246), + [anon_sym_DASH2] = ACTIONS(2246), + [anon_sym_in2] = ACTIONS(2246), + [anon_sym_RBRACE] = ACTIONS(2246), + [anon_sym_STAR2] = ACTIONS(2246), + [anon_sym_and2] = ACTIONS(2246), + [anon_sym_xor2] = ACTIONS(2246), + [anon_sym_or2] = ACTIONS(2246), + [anon_sym_not_DASHin2] = ACTIONS(2246), + [anon_sym_starts_DASHwith2] = ACTIONS(2246), + [anon_sym_ends_DASHwith2] = ACTIONS(2246), + [anon_sym_EQ_EQ2] = ACTIONS(2246), + [anon_sym_BANG_EQ2] = ACTIONS(2246), + [anon_sym_LT2] = ACTIONS(2246), + [anon_sym_LT_EQ2] = ACTIONS(2246), + [anon_sym_GT_EQ2] = ACTIONS(2246), + [anon_sym_EQ_TILDE2] = ACTIONS(2246), + [anon_sym_BANG_TILDE2] = ACTIONS(2246), + [anon_sym_STAR_STAR2] = ACTIONS(2246), + [anon_sym_PLUS_PLUS2] = ACTIONS(2246), + [anon_sym_SLASH2] = ACTIONS(2246), + [anon_sym_mod2] = ACTIONS(2246), + [anon_sym_SLASH_SLASH2] = ACTIONS(2246), + [anon_sym_PLUS2] = ACTIONS(2246), + [anon_sym_bit_DASHshl2] = ACTIONS(2246), + [anon_sym_bit_DASHshr2] = ACTIONS(2246), + [anon_sym_bit_DASHand2] = ACTIONS(2246), + [anon_sym_bit_DASHxor2] = ACTIONS(2246), + [anon_sym_bit_DASHor2] = ACTIONS(2246), + [anon_sym_err_GT] = ACTIONS(2246), + [anon_sym_out_GT] = ACTIONS(2246), + [anon_sym_e_GT] = ACTIONS(2246), + [anon_sym_o_GT] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT] = ACTIONS(2246), + [anon_sym_err_GT_GT] = ACTIONS(2246), + [anon_sym_out_GT_GT] = ACTIONS(2246), + [anon_sym_e_GT_GT] = ACTIONS(2246), + [anon_sym_o_GT_GT] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2246), [anon_sym_POUND] = ACTIONS(3), }, [882] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7185), - [sym__spread_list] = STATE(7416), - [sym_val_entry] = STATE(6965), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), [sym_comment] = STATE(882), - [aux_sym_shebang_repeat1] = STATE(2763), - [aux_sym_list_body_repeat1] = STATE(908), + [anon_sym_STAR_STAR] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_SLASH] = ACTIONS(3197), + [anon_sym_mod] = ACTIONS(3195), + [anon_sym_SLASH_SLASH] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_bit_DASHshl] = ACTIONS(3195), + [anon_sym_bit_DASHshr] = ACTIONS(3195), + [anon_sym_EQ_TILDE] = ACTIONS(3195), + [anon_sym_BANG_TILDE] = ACTIONS(3195), + [anon_sym_bit_DASHand] = ACTIONS(3195), + [anon_sym_bit_DASHxor] = ACTIONS(3195), + [anon_sym_bit_DASHor] = ACTIONS(3195), + [anon_sym_and] = ACTIONS(3195), + [anon_sym_xor] = ACTIONS(3195), + [anon_sym_or] = ACTIONS(3195), + [anon_sym_in] = ACTIONS(3195), + [anon_sym_not_DASHin] = ACTIONS(3195), + [anon_sym_starts_DASHwith] = ACTIONS(3195), + [anon_sym_ends_DASHwith] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT] = ACTIONS(3197), + [anon_sym_GT_EQ] = ACTIONS(3195), + [aux_sym_cmd_identifier_token41] = ACTIONS(3199), + [sym__newline] = ACTIONS(2246), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2246), + [anon_sym_err_GT_PIPE] = ACTIONS(2246), + [anon_sym_out_GT_PIPE] = ACTIONS(2246), + [anon_sym_e_GT_PIPE] = ACTIONS(2246), + [anon_sym_o_GT_PIPE] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2246), + [anon_sym_GT2] = ACTIONS(2246), + [anon_sym_DASH2] = ACTIONS(2246), + [anon_sym_in2] = ACTIONS(2246), + [anon_sym_STAR2] = ACTIONS(2246), + [anon_sym_and2] = ACTIONS(2246), + [anon_sym_xor2] = ACTIONS(2246), + [anon_sym_or2] = ACTIONS(2246), + [anon_sym_not_DASHin2] = ACTIONS(2246), + [anon_sym_starts_DASHwith2] = ACTIONS(2246), + [anon_sym_ends_DASHwith2] = ACTIONS(2246), + [anon_sym_EQ_EQ2] = ACTIONS(2246), + [anon_sym_BANG_EQ2] = ACTIONS(2246), + [anon_sym_LT2] = ACTIONS(2246), + [anon_sym_LT_EQ2] = ACTIONS(2246), + [anon_sym_GT_EQ2] = ACTIONS(2246), + [anon_sym_EQ_TILDE2] = ACTIONS(2246), + [anon_sym_BANG_TILDE2] = ACTIONS(2246), + [anon_sym_STAR_STAR2] = ACTIONS(2246), + [anon_sym_PLUS_PLUS2] = ACTIONS(2246), + [anon_sym_SLASH2] = ACTIONS(2246), + [anon_sym_mod2] = ACTIONS(2246), + [anon_sym_SLASH_SLASH2] = ACTIONS(2246), + [anon_sym_PLUS2] = ACTIONS(2246), + [anon_sym_bit_DASHshl2] = ACTIONS(2246), + [anon_sym_bit_DASHshr2] = ACTIONS(2246), + [anon_sym_bit_DASHand2] = ACTIONS(2246), + [anon_sym_bit_DASHxor2] = ACTIONS(2246), + [anon_sym_bit_DASHor2] = ACTIONS(2246), + [anon_sym_err_GT] = ACTIONS(2246), + [anon_sym_out_GT] = ACTIONS(2246), + [anon_sym_e_GT] = ACTIONS(2246), + [anon_sym_o_GT] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT] = ACTIONS(2246), + [anon_sym_err_GT_GT] = ACTIONS(2246), + [anon_sym_out_GT_GT] = ACTIONS(2246), + [anon_sym_e_GT_GT] = ACTIONS(2246), + [anon_sym_o_GT_GT] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2246), + [anon_sym_POUND] = ACTIONS(3), + }, + [883] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7423), + [sym__spread_list] = STATE(7653), + [sym_val_entry] = STATE(7369), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), + [sym_comment] = STATE(883), + [aux_sym_shebang_repeat1] = STATE(2756), + [aux_sym_list_body_repeat1] = STATE(906), [sym__newline] = ACTIONS(3201), [anon_sym_LBRACK] = ACTIONS(3091), [anon_sym_LPAREN] = ACTIONS(3095), @@ -167424,64 +167816,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, - [883] = { + [884] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7154), - [sym__spread_list] = STATE(7416), - [sym_val_entry] = STATE(6965), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), - [sym_comment] = STATE(883), - [aux_sym_shebang_repeat1] = STATE(2763), - [aux_sym_list_body_repeat1] = STATE(908), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7279), + [sym__spread_list] = STATE(7653), + [sym_val_entry] = STATE(7369), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), + [sym_comment] = STATE(884), + [aux_sym_shebang_repeat1] = STATE(2756), + [aux_sym_list_body_repeat1] = STATE(906), [sym__newline] = ACTIONS(3201), [anon_sym_LBRACK] = ACTIONS(3091), [anon_sym_LPAREN] = ACTIONS(3095), @@ -167512,152 +167904,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, - [884] = { - [sym_comment] = STATE(884), - [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(2214), - [anon_sym_SEMI] = ACTIONS(2214), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_err_GT_PIPE] = ACTIONS(2214), - [anon_sym_out_GT_PIPE] = ACTIONS(2214), - [anon_sym_e_GT_PIPE] = ACTIONS(2214), - [anon_sym_o_GT_PIPE] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2214), - [anon_sym_GT2] = ACTIONS(2214), - [anon_sym_DASH2] = ACTIONS(2214), - [anon_sym_in2] = ACTIONS(2214), - [anon_sym_STAR2] = ACTIONS(2214), - [anon_sym_and2] = ACTIONS(2214), - [anon_sym_xor2] = ACTIONS(2214), - [anon_sym_or2] = ACTIONS(2214), - [anon_sym_not_DASHin2] = ACTIONS(2214), - [anon_sym_starts_DASHwith2] = ACTIONS(2214), - [anon_sym_ends_DASHwith2] = ACTIONS(2214), - [anon_sym_EQ_EQ2] = ACTIONS(2214), - [anon_sym_BANG_EQ2] = ACTIONS(2214), - [anon_sym_LT2] = ACTIONS(2214), - [anon_sym_LT_EQ2] = ACTIONS(2214), - [anon_sym_GT_EQ2] = ACTIONS(2214), - [anon_sym_EQ_TILDE2] = ACTIONS(2214), - [anon_sym_BANG_TILDE2] = ACTIONS(2214), - [anon_sym_STAR_STAR2] = ACTIONS(2214), - [anon_sym_PLUS_PLUS2] = ACTIONS(2214), - [anon_sym_SLASH2] = ACTIONS(2214), - [anon_sym_mod2] = ACTIONS(2214), - [anon_sym_SLASH_SLASH2] = ACTIONS(2214), - [anon_sym_PLUS2] = ACTIONS(2214), - [anon_sym_bit_DASHshl2] = ACTIONS(2214), - [anon_sym_bit_DASHshr2] = ACTIONS(2214), - [anon_sym_bit_DASHand2] = ACTIONS(2214), - [anon_sym_bit_DASHxor2] = ACTIONS(2214), - [anon_sym_bit_DASHor2] = ACTIONS(2214), - [anon_sym_err_GT] = ACTIONS(2214), - [anon_sym_out_GT] = ACTIONS(2214), - [anon_sym_e_GT] = ACTIONS(2214), - [anon_sym_o_GT] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT] = ACTIONS(2214), - [anon_sym_err_GT_GT] = ACTIONS(2214), - [anon_sym_out_GT_GT] = ACTIONS(2214), - [anon_sym_e_GT_GT] = ACTIONS(2214), - [anon_sym_o_GT_GT] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2214), - [anon_sym_POUND] = ACTIONS(3), - }, [885] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7295), - [sym__spread_list] = STATE(7416), - [sym_val_entry] = STATE(6965), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7226), + [sym__spread_list] = STATE(7653), + [sym_val_entry] = STATE(7369), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(885), - [aux_sym_shebang_repeat1] = STATE(2763), - [aux_sym_list_body_repeat1] = STATE(908), + [aux_sym_shebang_repeat1] = STATE(2756), + [aux_sym_list_body_repeat1] = STATE(906), [sym__newline] = ACTIONS(3201), [anon_sym_LBRACK] = ACTIONS(3091), [anon_sym_LPAREN] = ACTIONS(3095), @@ -167688,66 +167992,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [886] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7097), - [sym__spread_list] = STATE(7416), - [sym_val_entry] = STATE(6965), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7293), + [sym__spread_list] = STATE(7653), + [sym_val_entry] = STATE(7369), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(886), - [aux_sym_shebang_repeat1] = STATE(2763), - [aux_sym_list_body_repeat1] = STATE(908), + [aux_sym_shebang_repeat1] = STATE(2756), + [aux_sym_list_body_repeat1] = STATE(906), [sym__newline] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3141), + [anon_sym_LBRACK] = ACTIONS(3091), [anon_sym_LPAREN] = ACTIONS(3095), [anon_sym_DOLLAR] = ACTIONS(3097), [anon_sym_LBRACE] = ACTIONS(3099), @@ -167776,152 +168080,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [887] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), [sym_val_list] = STATE(7303), - [sym__spread_list] = STATE(7416), - [sym_val_entry] = STATE(6965), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_list] = STATE(7653), + [sym_val_entry] = STATE(7369), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(887), - [aux_sym_shebang_repeat1] = STATE(2763), - [aux_sym_list_body_repeat1] = STATE(908), - [sym__newline] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), - }, - [888] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7114), - [sym__spread_list] = STATE(7416), - [sym_val_entry] = STATE(6965), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), - [sym_comment] = STATE(888), - [aux_sym_shebang_repeat1] = STATE(2763), - [aux_sym_list_body_repeat1] = STATE(908), + [aux_sym_shebang_repeat1] = STATE(2756), + [aux_sym_list_body_repeat1] = STATE(906), [sym__newline] = ACTIONS(3201), [anon_sym_LBRACK] = ACTIONS(3091), [anon_sym_LPAREN] = ACTIONS(3095), @@ -167952,152 +168168,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, + [888] = { + [sym_comment] = STATE(888), + [anon_sym_STAR_STAR] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_SLASH] = ACTIONS(3197), + [anon_sym_mod] = ACTIONS(3195), + [anon_sym_SLASH_SLASH] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_bit_DASHshl] = ACTIONS(3195), + [anon_sym_bit_DASHshr] = ACTIONS(3195), + [anon_sym_EQ_TILDE] = ACTIONS(3195), + [anon_sym_BANG_TILDE] = ACTIONS(3195), + [anon_sym_bit_DASHand] = ACTIONS(3195), + [anon_sym_bit_DASHxor] = ACTIONS(3195), + [anon_sym_bit_DASHor] = ACTIONS(3195), + [anon_sym_and] = ACTIONS(3195), + [anon_sym_xor] = ACTIONS(3195), + [anon_sym_or] = ACTIONS(3195), + [anon_sym_in] = ACTIONS(3195), + [anon_sym_not_DASHin] = ACTIONS(3195), + [anon_sym_starts_DASHwith] = ACTIONS(3195), + [anon_sym_ends_DASHwith] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT] = ACTIONS(3197), + [anon_sym_GT_EQ] = ACTIONS(3195), + [aux_sym_cmd_identifier_token41] = ACTIONS(3199), + [sym__newline] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_PIPE] = ACTIONS(2254), + [anon_sym_err_GT_PIPE] = ACTIONS(2254), + [anon_sym_out_GT_PIPE] = ACTIONS(2254), + [anon_sym_e_GT_PIPE] = ACTIONS(2254), + [anon_sym_o_GT_PIPE] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), + [anon_sym_GT2] = ACTIONS(2254), + [anon_sym_DASH2] = ACTIONS(2254), + [anon_sym_in2] = ACTIONS(2254), + [anon_sym_STAR2] = ACTIONS(2254), + [anon_sym_and2] = ACTIONS(2254), + [anon_sym_xor2] = ACTIONS(2254), + [anon_sym_or2] = ACTIONS(2254), + [anon_sym_not_DASHin2] = ACTIONS(2254), + [anon_sym_starts_DASHwith2] = ACTIONS(2254), + [anon_sym_ends_DASHwith2] = ACTIONS(2254), + [anon_sym_EQ_EQ2] = ACTIONS(2254), + [anon_sym_BANG_EQ2] = ACTIONS(2254), + [anon_sym_LT2] = ACTIONS(2254), + [anon_sym_LT_EQ2] = ACTIONS(2254), + [anon_sym_GT_EQ2] = ACTIONS(2254), + [anon_sym_EQ_TILDE2] = ACTIONS(2254), + [anon_sym_BANG_TILDE2] = ACTIONS(2254), + [anon_sym_STAR_STAR2] = ACTIONS(2254), + [anon_sym_PLUS_PLUS2] = ACTIONS(2254), + [anon_sym_SLASH2] = ACTIONS(2254), + [anon_sym_mod2] = ACTIONS(2254), + [anon_sym_SLASH_SLASH2] = ACTIONS(2254), + [anon_sym_PLUS2] = ACTIONS(2254), + [anon_sym_bit_DASHshl2] = ACTIONS(2254), + [anon_sym_bit_DASHshr2] = ACTIONS(2254), + [anon_sym_bit_DASHand2] = ACTIONS(2254), + [anon_sym_bit_DASHxor2] = ACTIONS(2254), + [anon_sym_bit_DASHor2] = ACTIONS(2254), + [anon_sym_err_GT] = ACTIONS(2254), + [anon_sym_out_GT] = ACTIONS(2254), + [anon_sym_e_GT] = ACTIONS(2254), + [anon_sym_o_GT] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT] = ACTIONS(2254), + [anon_sym_err_GT_GT] = ACTIONS(2254), + [anon_sym_out_GT_GT] = ACTIONS(2254), + [anon_sym_e_GT_GT] = ACTIONS(2254), + [anon_sym_o_GT_GT] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), + [anon_sym_POUND] = ACTIONS(3), + }, [889] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7142), + [sym__spread_list] = STATE(7653), + [sym_val_entry] = STATE(7369), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(889), - [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(2222), - [anon_sym_SEMI] = ACTIONS(2222), - [anon_sym_PIPE] = ACTIONS(2222), - [anon_sym_err_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_GT_PIPE] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2222), - [anon_sym_GT2] = ACTIONS(2222), - [anon_sym_DASH2] = ACTIONS(2222), - [anon_sym_in2] = ACTIONS(2222), - [anon_sym_STAR2] = ACTIONS(2222), - [anon_sym_and2] = ACTIONS(2222), - [anon_sym_xor2] = ACTIONS(2222), - [anon_sym_or2] = ACTIONS(2222), - [anon_sym_not_DASHin2] = ACTIONS(2222), - [anon_sym_starts_DASHwith2] = ACTIONS(2222), - [anon_sym_ends_DASHwith2] = ACTIONS(2222), - [anon_sym_EQ_EQ2] = ACTIONS(2222), - [anon_sym_BANG_EQ2] = ACTIONS(2222), - [anon_sym_LT2] = ACTIONS(2222), - [anon_sym_LT_EQ2] = ACTIONS(2222), - [anon_sym_GT_EQ2] = ACTIONS(2222), - [anon_sym_EQ_TILDE2] = ACTIONS(2222), - [anon_sym_BANG_TILDE2] = ACTIONS(2222), - [anon_sym_STAR_STAR2] = ACTIONS(2222), - [anon_sym_PLUS_PLUS2] = ACTIONS(2222), - [anon_sym_SLASH2] = ACTIONS(2222), - [anon_sym_mod2] = ACTIONS(2222), - [anon_sym_SLASH_SLASH2] = ACTIONS(2222), - [anon_sym_PLUS2] = ACTIONS(2222), - [anon_sym_bit_DASHshl2] = ACTIONS(2222), - [anon_sym_bit_DASHshr2] = ACTIONS(2222), - [anon_sym_bit_DASHand2] = ACTIONS(2222), - [anon_sym_bit_DASHxor2] = ACTIONS(2222), - [anon_sym_bit_DASHor2] = ACTIONS(2222), - [anon_sym_err_GT] = ACTIONS(2222), - [anon_sym_out_GT] = ACTIONS(2222), - [anon_sym_e_GT] = ACTIONS(2222), - [anon_sym_o_GT] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT] = ACTIONS(2222), - [anon_sym_err_GT_GT] = ACTIONS(2222), - [anon_sym_out_GT_GT] = ACTIONS(2222), - [anon_sym_e_GT_GT] = ACTIONS(2222), - [anon_sym_o_GT_GT] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2222), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2756), + [aux_sym_list_body_repeat1] = STATE(906), + [sym__newline] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, [890] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(6958), - [sym__spread_list] = STATE(7416), - [sym_val_entry] = STATE(6965), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7314), + [sym__spread_list] = STATE(7653), + [sym_val_entry] = STATE(7369), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(890), - [aux_sym_shebang_repeat1] = STATE(2763), - [aux_sym_list_body_repeat1] = STATE(908), + [aux_sym_shebang_repeat1] = STATE(2756), + [aux_sym_list_body_repeat1] = STATE(906), [sym__newline] = ACTIONS(3201), [anon_sym_LBRACK] = ACTIONS(3091), [anon_sym_LPAREN] = ACTIONS(3095), @@ -168128,64 +168432,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [891] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7287), - [sym__spread_list] = STATE(7416), - [sym_val_entry] = STATE(6965), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7322), + [sym__spread_list] = STATE(7653), + [sym_val_entry] = STATE(7369), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(891), - [aux_sym_shebang_repeat1] = STATE(2763), - [aux_sym_list_body_repeat1] = STATE(908), + [aux_sym_shebang_repeat1] = STATE(2756), + [aux_sym_list_body_repeat1] = STATE(906), [sym__newline] = ACTIONS(3201), [anon_sym_LBRACK] = ACTIONS(3091), [anon_sym_LPAREN] = ACTIONS(3095), @@ -168216,64 +168520,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [892] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7195), - [sym__spread_list] = STATE(7416), - [sym_val_entry] = STATE(6965), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7328), + [sym__spread_list] = STATE(7653), + [sym_val_entry] = STATE(7369), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(892), - [aux_sym_shebang_repeat1] = STATE(2763), - [aux_sym_list_body_repeat1] = STATE(908), + [aux_sym_shebang_repeat1] = STATE(2756), + [aux_sym_list_body_repeat1] = STATE(906), [sym__newline] = ACTIONS(3201), [anon_sym_LBRACK] = ACTIONS(3091), [anon_sym_LPAREN] = ACTIONS(3095), @@ -168304,64 +168608,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [893] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7205), - [sym__spread_list] = STATE(7416), - [sym_val_entry] = STATE(6965), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7338), + [sym__spread_list] = STATE(7653), + [sym_val_entry] = STATE(7369), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(893), - [aux_sym_shebang_repeat1] = STATE(2763), - [aux_sym_list_body_repeat1] = STATE(908), + [aux_sym_shebang_repeat1] = STATE(2756), + [aux_sym_list_body_repeat1] = STATE(906), [sym__newline] = ACTIONS(3201), [anon_sym_LBRACK] = ACTIONS(3091), [anon_sym_LPAREN] = ACTIONS(3095), @@ -168392,64 +168696,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [894] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7214), - [sym__spread_list] = STATE(7416), - [sym_val_entry] = STATE(6965), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7348), + [sym__spread_list] = STATE(7653), + [sym_val_entry] = STATE(7369), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(894), - [aux_sym_shebang_repeat1] = STATE(2763), - [aux_sym_list_body_repeat1] = STATE(908), + [aux_sym_shebang_repeat1] = STATE(2756), + [aux_sym_list_body_repeat1] = STATE(906), [sym__newline] = ACTIONS(3201), [anon_sym_LBRACK] = ACTIONS(3091), [anon_sym_LPAREN] = ACTIONS(3095), @@ -168480,64 +168784,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [895] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7223), - [sym__spread_list] = STATE(7416), - [sym_val_entry] = STATE(6965), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7357), + [sym__spread_list] = STATE(7653), + [sym_val_entry] = STATE(7369), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(895), - [aux_sym_shebang_repeat1] = STATE(2763), - [aux_sym_list_body_repeat1] = STATE(908), + [aux_sym_shebang_repeat1] = STATE(2756), + [aux_sym_list_body_repeat1] = STATE(906), [sym__newline] = ACTIONS(3201), [anon_sym_LBRACK] = ACTIONS(3091), [anon_sym_LPAREN] = ACTIONS(3095), @@ -168568,64 +168872,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [896] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7230), - [sym__spread_list] = STATE(7416), - [sym_val_entry] = STATE(6965), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7367), + [sym__spread_list] = STATE(7653), + [sym_val_entry] = STATE(7369), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(896), - [aux_sym_shebang_repeat1] = STATE(2763), - [aux_sym_list_body_repeat1] = STATE(908), + [aux_sym_shebang_repeat1] = STATE(2756), + [aux_sym_list_body_repeat1] = STATE(906), [sym__newline] = ACTIONS(3201), [anon_sym_LBRACK] = ACTIONS(3091), [anon_sym_LPAREN] = ACTIONS(3095), @@ -168656,64 +168960,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [897] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7237), - [sym__spread_list] = STATE(7416), - [sym_val_entry] = STATE(6965), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7377), + [sym__spread_list] = STATE(7653), + [sym_val_entry] = STATE(7369), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(897), - [aux_sym_shebang_repeat1] = STATE(2763), - [aux_sym_list_body_repeat1] = STATE(908), + [aux_sym_shebang_repeat1] = STATE(2756), + [aux_sym_list_body_repeat1] = STATE(906), [sym__newline] = ACTIONS(3201), [anon_sym_LBRACK] = ACTIONS(3091), [anon_sym_LPAREN] = ACTIONS(3095), @@ -168744,64 +169048,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [898] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7245), - [sym__spread_list] = STATE(7416), - [sym_val_entry] = STATE(6965), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7385), + [sym__spread_list] = STATE(7653), + [sym_val_entry] = STATE(7369), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(898), - [aux_sym_shebang_repeat1] = STATE(2763), - [aux_sym_list_body_repeat1] = STATE(908), + [aux_sym_shebang_repeat1] = STATE(2756), + [aux_sym_list_body_repeat1] = STATE(906), [sym__newline] = ACTIONS(3201), [anon_sym_LBRACK] = ACTIONS(3091), [anon_sym_LPAREN] = ACTIONS(3095), @@ -168832,64 +169136,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [899] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7251), - [sym__spread_list] = STATE(7416), - [sym_val_entry] = STATE(6965), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7393), + [sym__spread_list] = STATE(7653), + [sym_val_entry] = STATE(7369), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(899), - [aux_sym_shebang_repeat1] = STATE(2763), - [aux_sym_list_body_repeat1] = STATE(908), + [aux_sym_shebang_repeat1] = STATE(2756), + [aux_sym_list_body_repeat1] = STATE(906), [sym__newline] = ACTIONS(3201), [anon_sym_LBRACK] = ACTIONS(3091), [anon_sym_LPAREN] = ACTIONS(3095), @@ -168920,64 +169224,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [900] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7259), - [sym__spread_list] = STATE(7416), - [sym_val_entry] = STATE(6965), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7399), + [sym__spread_list] = STATE(7653), + [sym_val_entry] = STATE(7369), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(900), - [aux_sym_shebang_repeat1] = STATE(2763), - [aux_sym_list_body_repeat1] = STATE(908), + [aux_sym_shebang_repeat1] = STATE(2756), + [aux_sym_list_body_repeat1] = STATE(906), [sym__newline] = ACTIONS(3201), [anon_sym_LBRACK] = ACTIONS(3091), [anon_sym_LPAREN] = ACTIONS(3095), @@ -169008,64 +169312,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [901] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7266), - [sym__spread_list] = STATE(7416), - [sym_val_entry] = STATE(6965), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7405), + [sym__spread_list] = STATE(7653), + [sym_val_entry] = STATE(7369), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(901), - [aux_sym_shebang_repeat1] = STATE(2763), - [aux_sym_list_body_repeat1] = STATE(908), + [aux_sym_shebang_repeat1] = STATE(2756), + [aux_sym_list_body_repeat1] = STATE(906), [sym__newline] = ACTIONS(3201), [anon_sym_LBRACK] = ACTIONS(3091), [anon_sym_LPAREN] = ACTIONS(3095), @@ -169096,64 +169400,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [902] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7274), - [sym__spread_list] = STATE(7416), - [sym_val_entry] = STATE(6965), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7411), + [sym__spread_list] = STATE(7653), + [sym_val_entry] = STATE(7369), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(902), - [aux_sym_shebang_repeat1] = STATE(2763), - [aux_sym_list_body_repeat1] = STATE(908), + [aux_sym_shebang_repeat1] = STATE(2756), + [aux_sym_list_body_repeat1] = STATE(906), [sym__newline] = ACTIONS(3201), [anon_sym_LBRACK] = ACTIONS(3091), [anon_sym_LPAREN] = ACTIONS(3095), @@ -169184,64 +169488,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [903] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7280), - [sym__spread_list] = STATE(7416), - [sym_val_entry] = STATE(6965), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7417), + [sym__spread_list] = STATE(7653), + [sym_val_entry] = STATE(7369), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(903), - [aux_sym_shebang_repeat1] = STATE(2763), - [aux_sym_list_body_repeat1] = STATE(908), + [aux_sym_shebang_repeat1] = STATE(2756), + [aux_sym_list_body_repeat1] = STATE(906), [sym__newline] = ACTIONS(3201), [anon_sym_LBRACK] = ACTIONS(3091), [anon_sym_LPAREN] = ACTIONS(3095), @@ -169272,237 +169576,323 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [904] = { [sym_comment] = STATE(904), - [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(2214), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_err_GT_PIPE] = ACTIONS(2214), - [anon_sym_out_GT_PIPE] = ACTIONS(2214), - [anon_sym_e_GT_PIPE] = ACTIONS(2214), - [anon_sym_o_GT_PIPE] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2214), - [anon_sym_GT2] = ACTIONS(2214), - [anon_sym_DASH2] = ACTIONS(2214), - [anon_sym_in2] = ACTIONS(2214), - [anon_sym_STAR2] = ACTIONS(2214), - [anon_sym_and2] = ACTIONS(2214), - [anon_sym_xor2] = ACTIONS(2214), - [anon_sym_or2] = ACTIONS(2214), - [anon_sym_not_DASHin2] = ACTIONS(2214), - [anon_sym_starts_DASHwith2] = ACTIONS(2214), - [anon_sym_ends_DASHwith2] = ACTIONS(2214), - [anon_sym_EQ_EQ2] = ACTIONS(2214), - [anon_sym_BANG_EQ2] = ACTIONS(2214), - [anon_sym_LT2] = ACTIONS(2214), - [anon_sym_LT_EQ2] = ACTIONS(2214), - [anon_sym_GT_EQ2] = ACTIONS(2214), - [anon_sym_EQ_TILDE2] = ACTIONS(2214), - [anon_sym_BANG_TILDE2] = ACTIONS(2214), - [anon_sym_STAR_STAR2] = ACTIONS(2214), - [anon_sym_PLUS_PLUS2] = ACTIONS(2214), - [anon_sym_SLASH2] = ACTIONS(2214), - [anon_sym_mod2] = ACTIONS(2214), - [anon_sym_SLASH_SLASH2] = ACTIONS(2214), - [anon_sym_PLUS2] = ACTIONS(2214), - [anon_sym_bit_DASHshl2] = ACTIONS(2214), - [anon_sym_bit_DASHshr2] = ACTIONS(2214), - [anon_sym_bit_DASHand2] = ACTIONS(2214), - [anon_sym_bit_DASHxor2] = ACTIONS(2214), - [anon_sym_bit_DASHor2] = ACTIONS(2214), - [anon_sym_err_GT] = ACTIONS(2214), - [anon_sym_out_GT] = ACTIONS(2214), - [anon_sym_e_GT] = ACTIONS(2214), - [anon_sym_o_GT] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT] = ACTIONS(2214), - [anon_sym_err_GT_GT] = ACTIONS(2214), - [anon_sym_out_GT_GT] = ACTIONS(2214), - [anon_sym_e_GT_GT] = ACTIONS(2214), - [anon_sym_o_GT_GT] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2214), + [anon_sym_STAR_STAR] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_SLASH] = ACTIONS(3197), + [anon_sym_mod] = ACTIONS(3195), + [anon_sym_SLASH_SLASH] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_bit_DASHshl] = ACTIONS(3195), + [anon_sym_bit_DASHshr] = ACTIONS(3195), + [anon_sym_EQ_TILDE] = ACTIONS(3195), + [anon_sym_BANG_TILDE] = ACTIONS(3195), + [anon_sym_bit_DASHand] = ACTIONS(3195), + [anon_sym_bit_DASHxor] = ACTIONS(3195), + [anon_sym_bit_DASHor] = ACTIONS(3195), + [anon_sym_and] = ACTIONS(3195), + [anon_sym_xor] = ACTIONS(3195), + [anon_sym_or] = ACTIONS(3195), + [anon_sym_in] = ACTIONS(3195), + [anon_sym_not_DASHin] = ACTIONS(3195), + [anon_sym_starts_DASHwith] = ACTIONS(3195), + [anon_sym_ends_DASHwith] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT] = ACTIONS(3197), + [anon_sym_GT_EQ] = ACTIONS(3195), + [aux_sym_cmd_identifier_token41] = ACTIONS(3199), + [sym__newline] = ACTIONS(2254), + [anon_sym_PIPE] = ACTIONS(2254), + [anon_sym_err_GT_PIPE] = ACTIONS(2254), + [anon_sym_out_GT_PIPE] = ACTIONS(2254), + [anon_sym_e_GT_PIPE] = ACTIONS(2254), + [anon_sym_o_GT_PIPE] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), + [anon_sym_GT2] = ACTIONS(2254), + [anon_sym_DASH2] = ACTIONS(2254), + [anon_sym_in2] = ACTIONS(2254), + [anon_sym_STAR2] = ACTIONS(2254), + [anon_sym_and2] = ACTIONS(2254), + [anon_sym_xor2] = ACTIONS(2254), + [anon_sym_or2] = ACTIONS(2254), + [anon_sym_not_DASHin2] = ACTIONS(2254), + [anon_sym_starts_DASHwith2] = ACTIONS(2254), + [anon_sym_ends_DASHwith2] = ACTIONS(2254), + [anon_sym_EQ_EQ2] = ACTIONS(2254), + [anon_sym_BANG_EQ2] = ACTIONS(2254), + [anon_sym_LT2] = ACTIONS(2254), + [anon_sym_LT_EQ2] = ACTIONS(2254), + [anon_sym_GT_EQ2] = ACTIONS(2254), + [anon_sym_EQ_TILDE2] = ACTIONS(2254), + [anon_sym_BANG_TILDE2] = ACTIONS(2254), + [anon_sym_STAR_STAR2] = ACTIONS(2254), + [anon_sym_PLUS_PLUS2] = ACTIONS(2254), + [anon_sym_SLASH2] = ACTIONS(2254), + [anon_sym_mod2] = ACTIONS(2254), + [anon_sym_SLASH_SLASH2] = ACTIONS(2254), + [anon_sym_PLUS2] = ACTIONS(2254), + [anon_sym_bit_DASHshl2] = ACTIONS(2254), + [anon_sym_bit_DASHshr2] = ACTIONS(2254), + [anon_sym_bit_DASHand2] = ACTIONS(2254), + [anon_sym_bit_DASHxor2] = ACTIONS(2254), + [anon_sym_bit_DASHor2] = ACTIONS(2254), + [anon_sym_err_GT] = ACTIONS(2254), + [anon_sym_out_GT] = ACTIONS(2254), + [anon_sym_e_GT] = ACTIONS(2254), + [anon_sym_o_GT] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT] = ACTIONS(2254), + [anon_sym_err_GT_GT] = ACTIONS(2254), + [anon_sym_out_GT_GT] = ACTIONS(2254), + [anon_sym_e_GT_GT] = ACTIONS(2254), + [anon_sym_o_GT_GT] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), [anon_sym_POUND] = ACTIONS(3), }, [905] = { [sym_comment] = STATE(905), - [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(2222), - [anon_sym_PIPE] = ACTIONS(2222), - [anon_sym_err_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_GT_PIPE] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2222), - [anon_sym_GT2] = ACTIONS(2222), - [anon_sym_DASH2] = ACTIONS(2222), - [anon_sym_in2] = ACTIONS(2222), - [anon_sym_STAR2] = ACTIONS(2222), - [anon_sym_and2] = ACTIONS(2222), - [anon_sym_xor2] = ACTIONS(2222), - [anon_sym_or2] = ACTIONS(2222), - [anon_sym_not_DASHin2] = ACTIONS(2222), - [anon_sym_starts_DASHwith2] = ACTIONS(2222), - [anon_sym_ends_DASHwith2] = ACTIONS(2222), - [anon_sym_EQ_EQ2] = ACTIONS(2222), - [anon_sym_BANG_EQ2] = ACTIONS(2222), - [anon_sym_LT2] = ACTIONS(2222), - [anon_sym_LT_EQ2] = ACTIONS(2222), - [anon_sym_GT_EQ2] = ACTIONS(2222), - [anon_sym_EQ_TILDE2] = ACTIONS(2222), - [anon_sym_BANG_TILDE2] = ACTIONS(2222), - [anon_sym_STAR_STAR2] = ACTIONS(2222), - [anon_sym_PLUS_PLUS2] = ACTIONS(2222), - [anon_sym_SLASH2] = ACTIONS(2222), - [anon_sym_mod2] = ACTIONS(2222), - [anon_sym_SLASH_SLASH2] = ACTIONS(2222), - [anon_sym_PLUS2] = ACTIONS(2222), - [anon_sym_bit_DASHshl2] = ACTIONS(2222), - [anon_sym_bit_DASHshr2] = ACTIONS(2222), - [anon_sym_bit_DASHand2] = ACTIONS(2222), - [anon_sym_bit_DASHxor2] = ACTIONS(2222), - [anon_sym_bit_DASHor2] = ACTIONS(2222), - [anon_sym_err_GT] = ACTIONS(2222), - [anon_sym_out_GT] = ACTIONS(2222), - [anon_sym_e_GT] = ACTIONS(2222), - [anon_sym_o_GT] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT] = ACTIONS(2222), - [anon_sym_err_GT_GT] = ACTIONS(2222), - [anon_sym_out_GT_GT] = ACTIONS(2222), - [anon_sym_e_GT_GT] = ACTIONS(2222), - [anon_sym_o_GT_GT] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2222), + [anon_sym_STAR_STAR] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_SLASH] = ACTIONS(3197), + [anon_sym_mod] = ACTIONS(3195), + [anon_sym_SLASH_SLASH] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_bit_DASHshl] = ACTIONS(3195), + [anon_sym_bit_DASHshr] = ACTIONS(3195), + [anon_sym_EQ_TILDE] = ACTIONS(3195), + [anon_sym_BANG_TILDE] = ACTIONS(3195), + [anon_sym_bit_DASHand] = ACTIONS(3195), + [anon_sym_bit_DASHxor] = ACTIONS(3195), + [anon_sym_bit_DASHor] = ACTIONS(3195), + [anon_sym_and] = ACTIONS(3195), + [anon_sym_xor] = ACTIONS(3195), + [anon_sym_or] = ACTIONS(3195), + [anon_sym_in] = ACTIONS(3195), + [anon_sym_not_DASHin] = ACTIONS(3195), + [anon_sym_starts_DASHwith] = ACTIONS(3195), + [anon_sym_ends_DASHwith] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT] = ACTIONS(3197), + [anon_sym_GT_EQ] = ACTIONS(3195), + [aux_sym_cmd_identifier_token41] = ACTIONS(3199), + [sym__newline] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2246), + [anon_sym_err_GT_PIPE] = ACTIONS(2246), + [anon_sym_out_GT_PIPE] = ACTIONS(2246), + [anon_sym_e_GT_PIPE] = ACTIONS(2246), + [anon_sym_o_GT_PIPE] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2246), + [anon_sym_GT2] = ACTIONS(2246), + [anon_sym_DASH2] = ACTIONS(2246), + [anon_sym_in2] = ACTIONS(2246), + [anon_sym_STAR2] = ACTIONS(2246), + [anon_sym_and2] = ACTIONS(2246), + [anon_sym_xor2] = ACTIONS(2246), + [anon_sym_or2] = ACTIONS(2246), + [anon_sym_not_DASHin2] = ACTIONS(2246), + [anon_sym_starts_DASHwith2] = ACTIONS(2246), + [anon_sym_ends_DASHwith2] = ACTIONS(2246), + [anon_sym_EQ_EQ2] = ACTIONS(2246), + [anon_sym_BANG_EQ2] = ACTIONS(2246), + [anon_sym_LT2] = ACTIONS(2246), + [anon_sym_LT_EQ2] = ACTIONS(2246), + [anon_sym_GT_EQ2] = ACTIONS(2246), + [anon_sym_EQ_TILDE2] = ACTIONS(2246), + [anon_sym_BANG_TILDE2] = ACTIONS(2246), + [anon_sym_STAR_STAR2] = ACTIONS(2246), + [anon_sym_PLUS_PLUS2] = ACTIONS(2246), + [anon_sym_SLASH2] = ACTIONS(2246), + [anon_sym_mod2] = ACTIONS(2246), + [anon_sym_SLASH_SLASH2] = ACTIONS(2246), + [anon_sym_PLUS2] = ACTIONS(2246), + [anon_sym_bit_DASHshl2] = ACTIONS(2246), + [anon_sym_bit_DASHshr2] = ACTIONS(2246), + [anon_sym_bit_DASHand2] = ACTIONS(2246), + [anon_sym_bit_DASHxor2] = ACTIONS(2246), + [anon_sym_bit_DASHor2] = ACTIONS(2246), + [anon_sym_err_GT] = ACTIONS(2246), + [anon_sym_out_GT] = ACTIONS(2246), + [anon_sym_e_GT] = ACTIONS(2246), + [anon_sym_o_GT] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT] = ACTIONS(2246), + [anon_sym_err_GT_GT] = ACTIONS(2246), + [anon_sym_out_GT_GT] = ACTIONS(2246), + [anon_sym_e_GT_GT] = ACTIONS(2246), + [anon_sym_o_GT_GT] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2246), [anon_sym_POUND] = ACTIONS(3), }, [906] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7097), - [sym__spread_list] = STATE(7416), - [sym_val_entry] = STATE(7499), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7142), + [sym__spread_list] = STATE(7653), + [sym_val_entry] = STATE(7041), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(906), - [aux_sym_list_body_repeat1] = STATE(906), + [aux_sym_list_body_repeat1] = STATE(907), + [anon_sym_LBRACK] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_LT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), + [aux_sym__val_number_decimal_token1] = ACTIONS(3109), + [aux_sym__val_number_decimal_token2] = ACTIONS(3111), + [aux_sym__val_number_decimal_token3] = ACTIONS(3113), + [aux_sym__val_number_decimal_token4] = ACTIONS(3115), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3119), + [aux_sym__val_number_token5] = ACTIONS(3119), + [aux_sym__val_number_token6] = ACTIONS(3119), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3125), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), + }, + [907] = { + [sym_expr_parenthesized] = STATE(6079), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7142), + [sym__spread_list] = STATE(7653), + [sym_val_entry] = STATE(7605), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), + [sym_comment] = STATE(907), + [aux_sym_list_body_repeat1] = STATE(907), [anon_sym_LBRACK] = ACTIONS(3203), [anon_sym_LPAREN] = ACTIONS(3206), [anon_sym_DOLLAR] = ACTIONS(3209), @@ -169555,127 +169945,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3284), }, - [907] = { - [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7097), - [sym__spread_list] = STATE(7416), - [sym_val_entry] = STATE(7026), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), - [sym_comment] = STATE(907), - [aux_sym_list_body_repeat1] = STATE(906), - [anon_sym_LBRACK] = ACTIONS(3141), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_DOT_DOT] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_null] = ACTIONS(3105), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(311), - [aux_sym__val_number_decimal_token1] = ACTIONS(3109), - [aux_sym__val_number_decimal_token2] = ACTIONS(3111), - [aux_sym__val_number_decimal_token3] = ACTIONS(3113), - [aux_sym__val_number_decimal_token4] = ACTIONS(3115), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3119), - [aux_sym__val_number_token5] = ACTIONS(3119), - [aux_sym__val_number_token6] = ACTIONS(3119), - [anon_sym_0b] = ACTIONS(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), - }, [908] = { [sym_expr_parenthesized] = STATE(6079), - [sym__spread_parenthesized] = STATE(7416), - [sym_val_range] = STATE(7419), - [sym__val_range] = STATE(7622), - [sym__val_range_with_end] = STATE(7487), - [sym__value] = STATE(7419), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6711), - [sym__spread_variable] = STATE(7497), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5300), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7097), - [sym__spread_list] = STATE(7416), - [sym_val_entry] = STATE(7149), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_list] = STATE(6366), - [sym__unquoted_in_list_with_expr] = STATE(7419), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym__spread_parenthesized] = STATE(7653), + [sym_val_range] = STATE(7705), + [sym__val_range] = STATE(7729), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(7705), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6341), + [sym__spread_variable] = STATE(7565), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5269), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7142), + [sym__spread_list] = STATE(7653), + [sym_val_entry] = STATE(7052), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_list] = STATE(6795), + [sym__unquoted_in_list_with_expr] = STATE(7705), + [sym__unquoted_anonymous_prefix] = STATE(7388), [sym_comment] = STATE(908), - [aux_sym_list_body_repeat1] = STATE(906), - [anon_sym_LBRACK] = ACTIONS(3141), + [aux_sym_list_body_repeat1] = STATE(907), + [anon_sym_LBRACK] = ACTIONS(3137), [anon_sym_LPAREN] = ACTIONS(3095), [anon_sym_DOLLAR] = ACTIONS(3097), [anon_sym_LBRACE] = ACTIONS(3099), @@ -169704,62 +170008,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), [aux_sym__unquoted_in_list_token1] = ACTIONS(3131), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, [909] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3230), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2047), - [sym__unquoted_with_expr] = STATE(2274), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3232), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2059), + [sym__unquoted_with_expr] = STATE(2259), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(909), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -169792,59 +170096,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [910] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2386), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2048), - [sym__unquoted_with_expr] = STATE(2173), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3761), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1987), + [sym__unquoted_with_expr] = STATE(2226), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(910), - [aux_sym_shebang_repeat1] = STATE(1037), + [aux_sym_shebang_repeat1] = STATE(924), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -169877,59 +170181,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [911] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2389), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2050), - [sym__unquoted_with_expr] = STATE(2174), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3762), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2056), + [sym__unquoted_with_expr] = STATE(2245), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(911), - [aux_sym_shebang_repeat1] = STATE(1039), + [aux_sym_shebang_repeat1] = STATE(925), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -169962,57 +170266,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [912] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3747), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2005), - [sym__unquoted_with_expr] = STATE(2161), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3763), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2078), + [sym__unquoted_with_expr] = STATE(2298), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(912), [aux_sym_shebang_repeat1] = STATE(926), [sym__newline] = ACTIONS(3287), @@ -170025,81 +170329,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [913] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3796), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2025), - [sym__unquoted_with_expr] = STATE(2164), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2358), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2069), + [sym__unquoted_with_expr] = STATE(2274), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(913), - [aux_sym_shebang_repeat1] = STATE(927), + [aux_sym_shebang_repeat1] = STATE(1036), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -170132,59 +170436,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [914] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3744), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2027), - [sym__unquoted_with_expr] = STATE(2166), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3768), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2002), + [sym__unquoted_with_expr] = STATE(2280), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(914), - [aux_sym_shebang_repeat1] = STATE(928), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -170195,81 +170499,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [915] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3844), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2031), - [sym__unquoted_with_expr] = STATE(2169), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3770), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2007), + [sym__unquoted_with_expr] = STATE(2188), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(915), - [aux_sym_shebang_repeat1] = STATE(929), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -170280,81 +170584,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [916] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3743), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2045), - [sym__unquoted_with_expr] = STATE(2171), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3772), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2019), + [sym__unquoted_with_expr] = STATE(2284), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(916), - [aux_sym_shebang_repeat1] = STATE(930), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -170365,81 +170669,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [917] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2048), - [sym__unquoted_with_expr] = STATE(2173), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3774), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1978), + [sym__unquoted_with_expr] = STATE(2318), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(917), - [aux_sym_shebang_repeat1] = STATE(931), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -170450,81 +170754,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [918] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3813), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2050), - [sym__unquoted_with_expr] = STATE(2174), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3776), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2033), + [sym__unquoted_with_expr] = STATE(2189), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(918), - [aux_sym_shebang_repeat1] = STATE(932), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -170535,81 +170839,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [919] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3821), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2058), - [sym__unquoted_with_expr] = STATE(2175), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3778), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2034), + [sym__unquoted_with_expr] = STATE(2200), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(919), - [aux_sym_shebang_repeat1] = STATE(933), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -170620,81 +170924,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [920] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2176), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2071), - [sym__unquoted_with_expr] = STATE(2178), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3780), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2090), + [sym__unquoted_with_expr] = STATE(2203), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(920), - [aux_sym_shebang_repeat1] = STATE(934), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -170705,81 +171009,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [921] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3841), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2076), - [sym__unquoted_with_expr] = STATE(2182), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3782), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2041), + [sym__unquoted_with_expr] = STATE(2228), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(921), - [aux_sym_shebang_repeat1] = STATE(935), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -170790,81 +171094,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [922] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3742), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2080), - [sym__unquoted_with_expr] = STATE(2187), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2239), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2054), + [sym__unquoted_with_expr] = STATE(2241), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(922), - [aux_sym_shebang_repeat1] = STATE(936), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -170875,81 +171179,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [923] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3745), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2036), - [sym__unquoted_with_expr] = STATE(2190), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3784), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2055), + [sym__unquoted_with_expr] = STATE(2247), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(923), - [aux_sym_shebang_repeat1] = STATE(937), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -170960,81 +171264,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [924] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3716), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1981), - [sym__unquoted_with_expr] = STATE(2192), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3786), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2058), + [sym__unquoted_with_expr] = STATE(2253), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(924), - [aux_sym_shebang_repeat1] = STATE(938), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -171045,81 +171349,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [925] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2397), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2058), - [sym__unquoted_with_expr] = STATE(2175), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3788), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2059), + [sym__unquoted_with_expr] = STATE(2259), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(925), - [aux_sym_shebang_repeat1] = STATE(1042), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -171152,59 +171456,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [926] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3750), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2032), - [sym__unquoted_with_expr] = STATE(2250), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3790), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2062), + [sym__unquoted_with_expr] = STATE(2262), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(926), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -171215,81 +171519,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [927] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3713), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2033), - [sym__unquoted_with_expr] = STATE(2253), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3791), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2063), + [sym__unquoted_with_expr] = STATE(2263), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(927), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(940), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -171300,81 +171604,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [928] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3764), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1976), - [sym__unquoted_with_expr] = STATE(2255), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3793), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2067), + [sym__unquoted_with_expr] = STATE(2269), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(928), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(941), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -171385,81 +171689,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [929] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3767), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2088), - [sym__unquoted_with_expr] = STATE(2257), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3795), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2069), + [sym__unquoted_with_expr] = STATE(2274), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(929), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(942), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -171470,81 +171774,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [930] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3769), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2037), - [sym__unquoted_with_expr] = STATE(2259), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3797), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2070), + [sym__unquoted_with_expr] = STATE(2276), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(930), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(943), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -171555,81 +171859,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [931] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3774), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2040), - [sym__unquoted_with_expr] = STATE(2262), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3798), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2071), + [sym__unquoted_with_expr] = STATE(2281), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(931), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(944), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -171640,81 +171944,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [932] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3777), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2042), - [sym__unquoted_with_expr] = STATE(2264), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3799), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2073), + [sym__unquoted_with_expr] = STATE(2289), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(932), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(945), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -171725,81 +172029,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [933] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3781), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2043), - [sym__unquoted_with_expr] = STATE(2267), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3801), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2075), + [sym__unquoted_with_expr] = STATE(2293), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(933), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(946), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -171810,81 +172114,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [934] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2270), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2044), - [sym__unquoted_with_expr] = STATE(2272), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3861), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2077), + [sym__unquoted_with_expr] = STATE(2296), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(934), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(947), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -171895,81 +172199,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [935] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3783), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2047), - [sym__unquoted_with_expr] = STATE(2274), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2300), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2081), + [sym__unquoted_with_expr] = STATE(2304), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(935), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(948), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -171980,81 +172284,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [936] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3786), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2049), - [sym__unquoted_with_expr] = STATE(2277), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3803), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2082), + [sym__unquoted_with_expr] = STATE(2307), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(936), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(949), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -172065,81 +172369,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [937] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3789), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2051), - [sym__unquoted_with_expr] = STATE(2281), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3804), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2084), + [sym__unquoted_with_expr] = STATE(2309), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(937), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(950), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -172150,81 +172454,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [938] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3791), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2060), - [sym__unquoted_with_expr] = STATE(2289), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3805), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2086), + [sym__unquoted_with_expr] = STATE(2311), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(938), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(951), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -172235,79 +172539,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [939] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3792), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2073), - [sym__unquoted_with_expr] = STATE(2294), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3807), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2087), + [sym__unquoted_with_expr] = STATE(2313), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(939), [aux_sym_shebang_repeat1] = STATE(952), [sym__newline] = ACTIONS(3287), @@ -172320,81 +172624,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [940] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3793), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2077), - [sym__unquoted_with_expr] = STATE(2298), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2031), + [sym__unquoted_with_expr] = STATE(2323), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(940), - [aux_sym_shebang_repeat1] = STATE(953), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -172405,81 +172709,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [941] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3794), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2078), - [sym__unquoted_with_expr] = STATE(2300), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3836), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2036), + [sym__unquoted_with_expr] = STATE(2206), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(941), - [aux_sym_shebang_repeat1] = STATE(954), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -172490,81 +172794,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [942] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3797), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2081), - [sym__unquoted_with_expr] = STATE(2301), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3839), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2088), + [sym__unquoted_with_expr] = STATE(2275), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(942), - [aux_sym_shebang_repeat1] = STATE(955), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -172575,81 +172879,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [943] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3799), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2082), - [sym__unquoted_with_expr] = STATE(2304), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3841), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1990), + [sym__unquoted_with_expr] = STATE(2266), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(943), - [aux_sym_shebang_repeat1] = STATE(956), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -172660,81 +172964,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [944] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3802), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1980), - [sym__unquoted_with_expr] = STATE(2216), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3844), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1993), + [sym__unquoted_with_expr] = STATE(2202), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(944), - [aux_sym_shebang_repeat1] = STATE(957), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -172745,81 +173049,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [945] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3804), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2002), - [sym__unquoted_with_expr] = STATE(2183), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3847), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1994), + [sym__unquoted_with_expr] = STATE(2223), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(945), - [aux_sym_shebang_repeat1] = STATE(958), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -172830,81 +173134,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [946] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3805), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2072), - [sym__unquoted_with_expr] = STATE(2292), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3852), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1995), + [sym__unquoted_with_expr] = STATE(2232), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(946), - [aux_sym_shebang_repeat1] = STATE(959), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -172915,81 +173219,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [947] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2177), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2035), - [sym__unquoted_with_expr] = STATE(2196), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3854), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1996), + [sym__unquoted_with_expr] = STATE(2236), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(947), - [aux_sym_shebang_repeat1] = STATE(960), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -173000,81 +173304,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [948] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3807), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2041), - [sym__unquoted_with_expr] = STATE(2223), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2244), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1997), + [sym__unquoted_with_expr] = STATE(2252), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(948), - [aux_sym_shebang_repeat1] = STATE(961), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -173085,81 +173389,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [949] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3810), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1986), - [sym__unquoted_with_expr] = STATE(2220), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3857), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1999), + [sym__unquoted_with_expr] = STATE(2301), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(949), - [aux_sym_shebang_repeat1] = STATE(962), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -173170,81 +173474,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [950] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3812), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2026), - [sym__unquoted_with_expr] = STATE(2163), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3860), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2005), + [sym__unquoted_with_expr] = STATE(2199), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(950), - [aux_sym_shebang_repeat1] = STATE(963), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -173255,81 +173559,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [951] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3817), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2011), - [sym__unquoted_with_expr] = STATE(2180), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3731), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2008), + [sym__unquoted_with_expr] = STATE(2322), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(951), - [aux_sym_shebang_repeat1] = STATE(964), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -173340,81 +173644,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [952] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3763), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2029), - [sym__unquoted_with_expr] = STATE(2284), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3733), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2009), + [sym__unquoted_with_expr] = STATE(2292), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(952), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -173425,81 +173729,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3329), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [953] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3829), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2084), - [sym__unquoted_with_expr] = STATE(2296), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2366), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2070), + [sym__unquoted_with_expr] = STATE(2276), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(953), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(1037), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -173532,59 +173836,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [954] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3832), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1982), - [sym__unquoted_with_expr] = STATE(2160), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2370), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2071), + [sym__unquoted_with_expr] = STATE(2281), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(954), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(1039), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -173617,59 +173921,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [955] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3720), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1985), - [sym__unquoted_with_expr] = STATE(2165), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2380), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2073), + [sym__unquoted_with_expr] = STATE(2289), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(955), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(1040), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -173702,59 +174006,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [956] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3724), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1995), - [sym__unquoted_with_expr] = STATE(2170), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2394), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2075), + [sym__unquoted_with_expr] = STATE(2293), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(956), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(1041), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -173787,59 +174091,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [957] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3735), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2028), - [sym__unquoted_with_expr] = STATE(2181), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2402), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2077), + [sym__unquoted_with_expr] = STATE(2296), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(957), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(1044), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -173872,59 +174176,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [958] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3738), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2030), - [sym__unquoted_with_expr] = STATE(2185), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3311), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2032), + [sym__unquoted_with_expr] = STATE(2186), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(958), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(971), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -173935,81 +174239,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3311), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [959] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3751), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2075), - [sym__unquoted_with_expr] = STATE(2189), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3312), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2035), + [sym__unquoted_with_expr] = STATE(2198), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(959), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(972), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -174020,81 +174324,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3311), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [960] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2194), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2079), - [sym__unquoted_with_expr] = STATE(2198), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3313), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2037), + [sym__unquoted_with_expr] = STATE(2204), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(960), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(973), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -174105,81 +174409,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3311), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [961] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3754), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2015), - [sym__unquoted_with_expr] = STATE(2207), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3314), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2039), + [sym__unquoted_with_expr] = STATE(2211), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(961), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(974), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -174190,81 +174494,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3311), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [962] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3795), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2069), - [sym__unquoted_with_expr] = STATE(2211), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3316), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2040), + [sym__unquoted_with_expr] = STATE(2217), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(962), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(975), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -174275,81 +174579,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3311), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [963] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2070), - [sym__unquoted_with_expr] = STATE(2214), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3317), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2051), + [sym__unquoted_with_expr] = STATE(2235), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(963), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(976), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -174360,81 +174664,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3311), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [964] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3811), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2010), - [sym__unquoted_with_expr] = STATE(2219), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3318), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2064), + [sym__unquoted_with_expr] = STATE(2294), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(964), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(977), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -174445,81 +174749,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3311), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [965] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2176), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2071), - [sym__unquoted_with_expr] = STATE(2178), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3320), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2085), + [sym__unquoted_with_expr] = STATE(2310), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(965), - [aux_sym_shebang_repeat1] = STATE(1043), + [aux_sym_shebang_repeat1] = STATE(978), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -174530,81 +174834,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3311), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [966] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2442), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2076), - [sym__unquoted_with_expr] = STATE(2182), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2320), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2004), + [sym__unquoted_with_expr] = STATE(2176), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(966), - [aux_sym_shebang_repeat1] = STATE(1045), + [aux_sym_shebang_repeat1] = STATE(979), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -174615,166 +174919,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3311), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [967] = { - [sym_expr_parenthesized] = STATE(1580), - [sym_val_range] = STATE(1953), - [sym__val_range] = STATE(7565), - [sym__val_range_with_end] = STATE(7371), - [sym__value] = STATE(1953), - [sym_val_nothing] = STATE(1738), - [sym_val_bool] = STATE(1587), - [sym_val_variable] = STATE(1536), - [sym_val_number] = STATE(1738), - [sym__val_number_decimal] = STATE(1289), - [sym__val_number] = STATE(1765), - [sym_val_duration] = STATE(1738), - [sym_val_filesize] = STATE(1738), - [sym_val_binary] = STATE(1738), - [sym_val_string] = STATE(1738), - [sym__raw_str] = STATE(1783), - [sym__str_double_quotes] = STATE(1783), - [sym_val_interpolated] = STATE(1738), - [sym__inter_single_quotes] = STATE(1768), - [sym__inter_double_quotes] = STATE(1769), - [sym_val_list] = STATE(1738), - [sym_val_record] = STATE(1738), - [sym_val_table] = STATE(1738), - [sym_val_closure] = STATE(1738), - [sym__flag] = STATE(1953), - [sym_short_flag] = STATE(1831), - [sym_long_flag] = STATE(1831), - [sym_unquoted] = STATE(1669), - [sym__unquoted_with_expr] = STATE(1958), - [sym__unquoted_anonymous_prefix] = STATE(7309), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3321), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2013), + [sym__unquoted_with_expr] = STATE(2222), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(967), - [aux_sym_shebang_repeat1] = STATE(2821), - [sym__newline] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_LPAREN] = ACTIONS(2619), - [anon_sym_DOLLAR] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(2623), - [anon_sym_DASH2] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2627), - [anon_sym_DOT_DOT] = ACTIONS(2629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2631), - [anon_sym_DOT_DOT_LT] = ACTIONS(2631), - [anon_sym_null] = ACTIONS(2633), - [anon_sym_true] = ACTIONS(2635), - [anon_sym_false] = ACTIONS(2635), - [aux_sym__val_number_decimal_token1] = ACTIONS(2637), - [aux_sym__val_number_decimal_token2] = ACTIONS(2639), - [aux_sym__val_number_decimal_token3] = ACTIONS(2641), - [aux_sym__val_number_decimal_token4] = ACTIONS(2643), - [aux_sym__val_number_token1] = ACTIONS(2645), - [aux_sym__val_number_token2] = ACTIONS(2645), - [aux_sym__val_number_token3] = ACTIONS(2645), - [aux_sym__val_number_token4] = ACTIONS(2647), - [aux_sym__val_number_token5] = ACTIONS(2647), - [aux_sym__val_number_token6] = ACTIONS(2647), - [anon_sym_0b] = ACTIONS(2649), - [anon_sym_0o] = ACTIONS(2651), - [anon_sym_0x] = ACTIONS(2651), - [sym_val_date] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2655), - [sym__str_single_quotes] = ACTIONS(2657), - [sym__str_back_ticks] = ACTIONS(2657), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2659), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2661), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(2667), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2669), + [aux_sym_shebang_repeat1] = STATE(980), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [968] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2322), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2080), - [sym__unquoted_with_expr] = STATE(2187), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3322), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1987), + [sym__unquoted_with_expr] = STATE(2226), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(968), - [aux_sym_shebang_repeat1] = STATE(1049), + [aux_sym_shebang_repeat1] = STATE(981), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -174785,81 +175089,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3311), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [969] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2345), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2036), - [sym__unquoted_with_expr] = STATE(2190), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3323), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2056), + [sym__unquoted_with_expr] = STATE(2245), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(969), - [aux_sym_shebang_repeat1] = STATE(1050), + [aux_sym_shebang_repeat1] = STATE(909), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -174870,81 +175174,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3311), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [970] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2311), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2029), - [sym__unquoted_with_expr] = STATE(2284), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3327), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2078), + [sym__unquoted_with_expr] = STATE(2298), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(970), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(983), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -174955,81 +175259,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3311), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [971] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2419), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2084), - [sym__unquoted_with_expr] = STATE(2296), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3212), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2002), + [sym__unquoted_with_expr] = STATE(2280), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(971), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -175040,81 +175344,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3311), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [972] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2351), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1982), - [sym__unquoted_with_expr] = STATE(2160), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3214), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2007), + [sym__unquoted_with_expr] = STATE(2188), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(972), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -175125,81 +175429,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3311), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [973] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3200), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2005), - [sym__unquoted_with_expr] = STATE(2161), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3216), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2019), + [sym__unquoted_with_expr] = STATE(2284), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(973), - [aux_sym_shebang_repeat1] = STATE(986), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -175232,59 +175536,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [974] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3201), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2025), - [sym__unquoted_with_expr] = STATE(2164), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3218), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1978), + [sym__unquoted_with_expr] = STATE(2318), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(974), - [aux_sym_shebang_repeat1] = STATE(987), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -175317,59 +175621,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [975] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3202), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2027), - [sym__unquoted_with_expr] = STATE(2166), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3220), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2033), + [sym__unquoted_with_expr] = STATE(2189), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(975), - [aux_sym_shebang_repeat1] = STATE(988), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -175402,59 +175706,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [976] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3203), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2031), - [sym__unquoted_with_expr] = STATE(2169), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3222), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2034), + [sym__unquoted_with_expr] = STATE(2200), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(976), - [aux_sym_shebang_repeat1] = STATE(989), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -175487,59 +175791,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [977] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3204), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2045), - [sym__unquoted_with_expr] = STATE(2171), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3224), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2090), + [sym__unquoted_with_expr] = STATE(2203), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(977), - [aux_sym_shebang_repeat1] = STATE(990), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -175572,59 +175876,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [978] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3205), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2048), - [sym__unquoted_with_expr] = STATE(2173), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3226), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2041), + [sym__unquoted_with_expr] = STATE(2228), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(978), - [aux_sym_shebang_repeat1] = STATE(991), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -175657,59 +175961,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [979] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3206), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2050), - [sym__unquoted_with_expr] = STATE(2174), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2239), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2054), + [sym__unquoted_with_expr] = STATE(2241), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(979), - [aux_sym_shebang_repeat1] = STATE(992), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -175742,59 +176046,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [980] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3207), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2058), - [sym__unquoted_with_expr] = STATE(2175), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3228), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2055), + [sym__unquoted_with_expr] = STATE(2247), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(980), - [aux_sym_shebang_repeat1] = STATE(1065), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -175827,59 +176131,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [981] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2176), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2071), - [sym__unquoted_with_expr] = STATE(2178), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3230), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2058), + [sym__unquoted_with_expr] = STATE(2253), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(981), - [aux_sym_shebang_repeat1] = STATE(994), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -175912,59 +176216,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [982] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3208), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2076), - [sym__unquoted_with_expr] = STATE(2182), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2449), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2040), + [sym__unquoted_with_expr] = STATE(2217), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(982), - [aux_sym_shebang_repeat1] = STATE(909), + [aux_sym_shebang_repeat1] = STATE(1026), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -175975,81 +176279,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [983] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3209), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2080), - [sym__unquoted_with_expr] = STATE(2187), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3234), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2062), + [sym__unquoted_with_expr] = STATE(2262), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(983), - [aux_sym_shebang_repeat1] = STATE(995), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -176082,59 +176386,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [984] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3210), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2036), - [sym__unquoted_with_expr] = STATE(2190), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3235), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2063), + [sym__unquoted_with_expr] = STATE(2263), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(984), - [aux_sym_shebang_repeat1] = STATE(996), + [aux_sym_shebang_repeat1] = STATE(997), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -176167,59 +176471,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [985] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3211), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1981), - [sym__unquoted_with_expr] = STATE(2192), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3236), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2067), + [sym__unquoted_with_expr] = STATE(2269), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(985), - [aux_sym_shebang_repeat1] = STATE(997), + [aux_sym_shebang_repeat1] = STATE(998), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -176252,59 +176556,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [986] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3214), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2032), - [sym__unquoted_with_expr] = STATE(2250), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3237), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2069), + [sym__unquoted_with_expr] = STATE(2274), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(986), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(999), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -176337,59 +176641,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [987] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3216), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2033), - [sym__unquoted_with_expr] = STATE(2253), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3238), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2070), + [sym__unquoted_with_expr] = STATE(2276), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(987), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(1000), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -176422,59 +176726,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [988] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3218), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1976), - [sym__unquoted_with_expr] = STATE(2255), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3239), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2071), + [sym__unquoted_with_expr] = STATE(2281), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(988), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(1001), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -176507,59 +176811,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [989] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3220), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2088), - [sym__unquoted_with_expr] = STATE(2257), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3240), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2073), + [sym__unquoted_with_expr] = STATE(2289), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(989), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(1002), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -176592,59 +176896,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [990] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3222), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2037), - [sym__unquoted_with_expr] = STATE(2259), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3241), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2075), + [sym__unquoted_with_expr] = STATE(2293), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(990), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(1003), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -176677,59 +176981,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [991] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3224), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2040), - [sym__unquoted_with_expr] = STATE(2262), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3242), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2077), + [sym__unquoted_with_expr] = STATE(2296), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(991), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(1004), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -176762,59 +177066,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [992] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3226), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2042), - [sym__unquoted_with_expr] = STATE(2264), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2300), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2081), + [sym__unquoted_with_expr] = STATE(2304), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(992), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(1005), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -176847,59 +177151,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [993] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2388), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2005), - [sym__unquoted_with_expr] = STATE(2161), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2335), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1999), + [sym__unquoted_with_expr] = STATE(2301), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(993), - [aux_sym_shebang_repeat1] = STATE(1030), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -176910,81 +177214,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [994] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2270), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2044), - [sym__unquoted_with_expr] = STATE(2272), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3244), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2084), + [sym__unquoted_with_expr] = STATE(2309), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(994), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(1007), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -177017,59 +177321,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [995] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3232), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2049), - [sym__unquoted_with_expr] = STATE(2277), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3245), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2086), + [sym__unquoted_with_expr] = STATE(2311), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(995), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(1008), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -177102,59 +177406,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [996] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3234), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2051), - [sym__unquoted_with_expr] = STATE(2281), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3246), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2087), + [sym__unquoted_with_expr] = STATE(2313), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(996), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(1009), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -177187,59 +177491,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [997] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3236), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2060), - [sym__unquoted_with_expr] = STATE(2289), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3260), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2031), + [sym__unquoted_with_expr] = STATE(2323), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(997), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -177272,59 +177576,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [998] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3237), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2073), - [sym__unquoted_with_expr] = STATE(2294), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3262), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2036), + [sym__unquoted_with_expr] = STATE(2206), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(998), - [aux_sym_shebang_repeat1] = STATE(1012), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -177357,59 +177661,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [999] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3238), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2077), - [sym__unquoted_with_expr] = STATE(2298), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3264), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2088), + [sym__unquoted_with_expr] = STATE(2275), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(999), - [aux_sym_shebang_repeat1] = STATE(1013), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -177442,59 +177746,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1000] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3239), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2078), - [sym__unquoted_with_expr] = STATE(2300), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3266), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1990), + [sym__unquoted_with_expr] = STATE(2266), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1000), - [aux_sym_shebang_repeat1] = STATE(1014), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -177527,59 +177831,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1001] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3240), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2081), - [sym__unquoted_with_expr] = STATE(2301), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3268), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1993), + [sym__unquoted_with_expr] = STATE(2202), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1001), - [aux_sym_shebang_repeat1] = STATE(1015), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -177612,59 +177916,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1002] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3241), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2082), - [sym__unquoted_with_expr] = STATE(2304), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3270), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1994), + [sym__unquoted_with_expr] = STATE(2223), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1002), - [aux_sym_shebang_repeat1] = STATE(1016), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -177697,59 +178001,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1003] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3242), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1980), - [sym__unquoted_with_expr] = STATE(2216), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3272), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1995), + [sym__unquoted_with_expr] = STATE(2232), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1003), - [aux_sym_shebang_repeat1] = STATE(1017), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -177782,59 +178086,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1004] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3243), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2002), - [sym__unquoted_with_expr] = STATE(2183), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3274), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1996), + [sym__unquoted_with_expr] = STATE(2236), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1004), - [aux_sym_shebang_repeat1] = STATE(1018), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -177867,59 +178171,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1005] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3244), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2072), - [sym__unquoted_with_expr] = STATE(2292), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2244), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1997), + [sym__unquoted_with_expr] = STATE(2252), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1005), - [aux_sym_shebang_repeat1] = STATE(1019), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -177952,59 +178256,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1006] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2177), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2035), - [sym__unquoted_with_expr] = STATE(2196), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3276), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1999), + [sym__unquoted_with_expr] = STATE(2301), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1006), - [aux_sym_shebang_repeat1] = STATE(1020), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -178037,59 +178341,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1007] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3245), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2041), - [sym__unquoted_with_expr] = STATE(2223), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3278), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2005), + [sym__unquoted_with_expr] = STATE(2199), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1007), - [aux_sym_shebang_repeat1] = STATE(1021), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -178122,59 +178426,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1008] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3246), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1986), - [sym__unquoted_with_expr] = STATE(2220), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3280), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2008), + [sym__unquoted_with_expr] = STATE(2322), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1008), - [aux_sym_shebang_repeat1] = STATE(1022), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -178207,59 +178511,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1009] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3247), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2026), - [sym__unquoted_with_expr] = STATE(2163), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3282), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2009), + [sym__unquoted_with_expr] = STATE(2292), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1009), - [aux_sym_shebang_repeat1] = STATE(1023), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -178292,59 +178596,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1010] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3248), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2011), - [sym__unquoted_with_expr] = STATE(2180), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2300), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2081), + [sym__unquoted_with_expr] = STATE(2304), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1010), - [aux_sym_shebang_repeat1] = STATE(1024), + [aux_sym_shebang_repeat1] = STATE(1045), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -178355,81 +178659,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1011] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2382), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2025), - [sym__unquoted_with_expr] = STATE(2164), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2421), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2082), + [sym__unquoted_with_expr] = STATE(2307), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1011), - [aux_sym_shebang_repeat1] = STATE(1031), + [aux_sym_shebang_repeat1] = STATE(993), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -178440,81 +178744,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1012] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3262), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2029), - [sym__unquoted_with_expr] = STATE(2284), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2428), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2084), + [sym__unquoted_with_expr] = STATE(2309), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1012), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(1015), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -178525,81 +178829,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1013] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3264), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2084), - [sym__unquoted_with_expr] = STATE(2296), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2434), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2086), + [sym__unquoted_with_expr] = STATE(2311), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1013), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(1016), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -178610,81 +178914,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1014] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3266), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1982), - [sym__unquoted_with_expr] = STATE(2160), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2441), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2087), + [sym__unquoted_with_expr] = STATE(2313), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1014), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(1023), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -178695,81 +178999,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1015] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3268), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1985), - [sym__unquoted_with_expr] = STATE(2165), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2422), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2005), + [sym__unquoted_with_expr] = STATE(2199), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1015), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -178780,81 +179084,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1016] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3270), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1995), - [sym__unquoted_with_expr] = STATE(2170), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2454), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2008), + [sym__unquoted_with_expr] = STATE(2322), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1016), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -178865,81 +179169,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1017] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3272), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2028), - [sym__unquoted_with_expr] = STATE(2181), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2386), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2090), + [sym__unquoted_with_expr] = STATE(2203), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1017), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -178950,81 +179254,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1018] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3274), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2030), - [sym__unquoted_with_expr] = STATE(2185), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2359), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2002), + [sym__unquoted_with_expr] = STATE(2280), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1018), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -179035,81 +179339,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1019] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3276), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2075), - [sym__unquoted_with_expr] = STATE(2189), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2393), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2007), + [sym__unquoted_with_expr] = STATE(2188), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1019), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -179120,81 +179424,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1020] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2194), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2079), - [sym__unquoted_with_expr] = STATE(2198), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2375), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2019), + [sym__unquoted_with_expr] = STATE(2284), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1020), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -179205,81 +179509,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1021] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3278), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2015), - [sym__unquoted_with_expr] = STATE(2207), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2408), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2041), + [sym__unquoted_with_expr] = STATE(2228), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1021), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -179290,81 +179594,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1022] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3280), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2069), - [sym__unquoted_with_expr] = STATE(2211), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2391), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1978), + [sym__unquoted_with_expr] = STATE(2318), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1022), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -179375,81 +179679,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1023] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3282), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2070), - [sym__unquoted_with_expr] = STATE(2214), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2384), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2009), + [sym__unquoted_with_expr] = STATE(2292), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1023), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -179460,81 +179764,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1024] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3284), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2010), - [sym__unquoted_with_expr] = STATE(2219), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2417), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2039), + [sym__unquoted_with_expr] = STATE(2211), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1024), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(1022), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -179545,81 +179849,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1025] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2371), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1985), - [sym__unquoted_with_expr] = STATE(2165), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2348), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2051), + [sym__unquoted_with_expr] = STATE(2235), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1025), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(1027), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -179630,81 +179934,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1026] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2354), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1995), - [sym__unquoted_with_expr] = STATE(2170), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2324), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2033), + [sym__unquoted_with_expr] = STATE(2189), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1026), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -179715,81 +180019,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1027] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2390), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2028), - [sym__unquoted_with_expr] = STATE(2181), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2424), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2034), + [sym__unquoted_with_expr] = STATE(2200), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1027), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -179800,81 +180104,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1028] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2327), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2030), - [sym__unquoted_with_expr] = STATE(2185), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2320), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2004), + [sym__unquoted_with_expr] = STATE(2176), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1028), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(1033), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -179885,81 +180189,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1029] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2347), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2075), - [sym__unquoted_with_expr] = STATE(2189), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2369), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2013), + [sym__unquoted_with_expr] = STATE(2222), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1029), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(1038), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -179970,81 +180274,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1030] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2363), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2032), - [sym__unquoted_with_expr] = STATE(2250), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2405), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1987), + [sym__unquoted_with_expr] = STATE(2226), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1030), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(1049), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -180055,81 +180359,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1031] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2365), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2033), - [sym__unquoted_with_expr] = STATE(2253), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2411), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2056), + [sym__unquoted_with_expr] = STATE(2245), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1031), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(1050), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -180140,81 +180444,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1032] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2368), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1976), - [sym__unquoted_with_expr] = STATE(2255), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2365), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2078), + [sym__unquoted_with_expr] = STATE(2298), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1032), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(1051), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -180225,81 +180529,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1033] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2194), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2079), - [sym__unquoted_with_expr] = STATE(2198), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2239), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2054), + [sym__unquoted_with_expr] = STATE(2241), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1033), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -180310,81 +180614,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1034] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2372), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2088), - [sym__unquoted_with_expr] = STATE(2257), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2412), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2031), + [sym__unquoted_with_expr] = STATE(2323), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1034), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -180395,81 +180699,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1035] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2384), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2015), - [sym__unquoted_with_expr] = STATE(2207), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2373), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2036), + [sym__unquoted_with_expr] = STATE(2206), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1035), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -180480,81 +180784,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1036] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2377), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2037), - [sym__unquoted_with_expr] = STATE(2259), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2088), + [sym__unquoted_with_expr] = STATE(2275), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1036), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -180565,81 +180869,591 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1037] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2444), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2040), - [sym__unquoted_with_expr] = STATE(2262), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2400), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1990), + [sym__unquoted_with_expr] = STATE(2266), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1037), - [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_shebang_repeat1] = STATE(2814), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [1038] = { + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2416), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2055), + [sym__unquoted_with_expr] = STATE(2247), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1038), + [aux_sym_shebang_repeat1] = STATE(2814), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [1039] = { + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2382), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1993), + [sym__unquoted_with_expr] = STATE(2202), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1039), + [aux_sym_shebang_repeat1] = STATE(2814), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [1040] = { + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2344), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1994), + [sym__unquoted_with_expr] = STATE(2223), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1040), + [aux_sym_shebang_repeat1] = STATE(2814), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [1041] = { + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2371), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1995), + [sym__unquoted_with_expr] = STATE(2232), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1041), + [aux_sym_shebang_repeat1] = STATE(2814), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [1042] = { + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2343), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2032), + [sym__unquoted_with_expr] = STATE(2186), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1042), + [aux_sym_shebang_repeat1] = STATE(1018), + [sym__newline] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [1043] = { + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2406), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2035), + [sym__unquoted_with_expr] = STATE(2198), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1043), + [aux_sym_shebang_repeat1] = STATE(1019), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -180650,81 +181464,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1038] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2402), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2069), - [sym__unquoted_with_expr] = STATE(2211), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1038), - [aux_sym_shebang_repeat1] = STATE(2785), + [1044] = { + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2392), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1996), + [sym__unquoted_with_expr] = STATE(2236), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1044), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -180735,81 +181549,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1039] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2383), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2042), - [sym__unquoted_with_expr] = STATE(2264), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1039), - [aux_sym_shebang_repeat1] = STATE(2785), + [1045] = { + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2244), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1997), + [sym__unquoted_with_expr] = STATE(2252), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1045), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -180820,81 +181634,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1040] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2409), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2070), - [sym__unquoted_with_expr] = STATE(2214), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1040), - [aux_sym_shebang_repeat1] = STATE(2785), + [1046] = { + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2389), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2037), + [sym__unquoted_with_expr] = STATE(2204), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1046), + [aux_sym_shebang_repeat1] = STATE(1020), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -180905,81 +181719,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1041] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2408), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2027), - [sym__unquoted_with_expr] = STATE(2166), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1041), - [aux_sym_shebang_repeat1] = STATE(1032), + [1047] = { + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2456), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2064), + [sym__unquoted_with_expr] = STATE(2294), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1047), + [aux_sym_shebang_repeat1] = STATE(1017), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -180990,81 +181804,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1042] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2387), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2043), - [sym__unquoted_with_expr] = STATE(2267), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1042), - [aux_sym_shebang_repeat1] = STATE(2785), + [1048] = { + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2407), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2085), + [sym__unquoted_with_expr] = STATE(2310), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1048), + [aux_sym_shebang_repeat1] = STATE(1021), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -181075,81 +181889,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1043] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2270), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2044), - [sym__unquoted_with_expr] = STATE(2272), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1043), - [aux_sym_shebang_repeat1] = STATE(2785), + [1049] = { + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2445), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2058), + [sym__unquoted_with_expr] = STATE(2253), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1049), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -181160,81 +181974,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1044] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2425), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2010), - [sym__unquoted_with_expr] = STATE(2219), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1044), - [aux_sym_shebang_repeat1] = STATE(2785), + [1050] = { + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2326), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2059), + [sym__unquoted_with_expr] = STATE(2259), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1050), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -181245,81 +182059,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1045] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2394), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2047), - [sym__unquoted_with_expr] = STATE(2274), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1045), - [aux_sym_shebang_repeat1] = STATE(2785), + [1051] = { + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2334), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2062), + [sym__unquoted_with_expr] = STATE(2262), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1051), + [aux_sym_shebang_repeat1] = STATE(2814), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -181330,80 +182144,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1046] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2343), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2031), - [sym__unquoted_with_expr] = STATE(2169), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1046), + [1052] = { + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2339), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2063), + [sym__unquoted_with_expr] = STATE(2263), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1052), [aux_sym_shebang_repeat1] = STATE(1034), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), @@ -181415,81 +182229,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1047] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2374), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2045), - [sym__unquoted_with_expr] = STATE(2171), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1047), - [aux_sym_shebang_repeat1] = STATE(1036), + [1053] = { + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2351), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2067), + [sym__unquoted_with_expr] = STATE(2269), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1053), + [aux_sym_shebang_repeat1] = STATE(1035), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -181500,81 +182314,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1048] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2353), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1981), - [sym__unquoted_with_expr] = STATE(2192), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1048), - [aux_sym_shebang_repeat1] = STATE(1051), + [1054] = { + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3809), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2032), + [sym__unquoted_with_expr] = STATE(2186), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1054), + [aux_sym_shebang_repeat1] = STATE(914), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -181607,59 +182421,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1049] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2398), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2049), - [sym__unquoted_with_expr] = STATE(2277), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1049), - [aux_sym_shebang_repeat1] = STATE(2785), + [1055] = { + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3808), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2035), + [sym__unquoted_with_expr] = STATE(2198), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1055), + [aux_sym_shebang_repeat1] = STATE(915), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -181692,59 +182506,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1050] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2403), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2051), - [sym__unquoted_with_expr] = STATE(2281), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1050), - [aux_sym_shebang_repeat1] = STATE(2785), + [1056] = { + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3746), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2037), + [sym__unquoted_with_expr] = STATE(2204), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1056), + [aux_sym_shebang_repeat1] = STATE(916), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -181777,59 +182591,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1051] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2407), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2060), - [sym__unquoted_with_expr] = STATE(2289), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1051), - [aux_sym_shebang_repeat1] = STATE(2785), + [1057] = { + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3748), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2039), + [sym__unquoted_with_expr] = STATE(2211), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1057), + [aux_sym_shebang_repeat1] = STATE(917), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -181862,59 +182676,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1052] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2424), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2073), - [sym__unquoted_with_expr] = STATE(2294), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1052), - [aux_sym_shebang_repeat1] = STATE(970), + [1058] = { + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3749), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2040), + [sym__unquoted_with_expr] = STATE(2217), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1058), + [aux_sym_shebang_repeat1] = STATE(918), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -181947,59 +182761,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1053] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2430), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2077), - [sym__unquoted_with_expr] = STATE(2298), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1053), - [aux_sym_shebang_repeat1] = STATE(971), + [1059] = { + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3755), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2051), + [sym__unquoted_with_expr] = STATE(2235), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1059), + [aux_sym_shebang_repeat1] = STATE(919), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -182032,59 +182846,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1054] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2432), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2078), - [sym__unquoted_with_expr] = STATE(2300), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1054), - [aux_sym_shebang_repeat1] = STATE(972), + [1060] = { + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3757), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2064), + [sym__unquoted_with_expr] = STATE(2294), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1060), + [aux_sym_shebang_repeat1] = STATE(920), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -182117,59 +182931,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1055] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2436), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2081), - [sym__unquoted_with_expr] = STATE(2301), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1055), - [aux_sym_shebang_repeat1] = STATE(1025), + [1061] = { + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3758), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2085), + [sym__unquoted_with_expr] = STATE(2310), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1061), + [aux_sym_shebang_repeat1] = STATE(921), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -182202,59 +183016,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1056] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2443), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2082), - [sym__unquoted_with_expr] = STATE(2304), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1056), - [aux_sym_shebang_repeat1] = STATE(1026), + [1062] = { + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(2320), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2004), + [sym__unquoted_with_expr] = STATE(2176), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1062), + [aux_sym_shebang_repeat1] = STATE(922), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -182287,59 +183101,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1057] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2350), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1980), - [sym__unquoted_with_expr] = STATE(2216), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1057), - [aux_sym_shebang_repeat1] = STATE(1027), + [1063] = { + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3760), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2013), + [sym__unquoted_with_expr] = STATE(2222), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1063), + [aux_sym_shebang_repeat1] = STATE(923), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -182372,59 +183186,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1058] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2309), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2002), - [sym__unquoted_with_expr] = STATE(2183), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1058), - [aux_sym_shebang_repeat1] = STATE(1028), + [1064] = { + [sym_expr_unary] = STATE(2337), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary_parenthesized] = STATE(2337), + [sym__expr_binary_expression_parenthesized] = STATE(3243), + [sym_expr_parenthesized] = STATE(2337), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2337), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(2082), + [sym__unquoted_with_expr] = STATE(2307), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1064), + [aux_sym_shebang_repeat1] = STATE(1006), [sym__newline] = ACTIONS(3287), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), @@ -182435,507 +183249,2573 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3311), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1059] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2355), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2072), - [sym__unquoted_with_expr] = STATE(2292), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1059), - [aux_sym_shebang_repeat1] = STATE(1029), - [sym__newline] = ACTIONS(3287), + [1065] = { + [sym_expr_parenthesized] = STATE(1646), + [sym_val_range] = STATE(1868), + [sym__val_range] = STATE(7964), + [sym__val_range_with_end] = STATE(7619), + [sym__value] = STATE(1868), + [sym_val_nothing] = STATE(1829), + [sym_val_bool] = STATE(1634), + [sym_val_variable] = STATE(1515), + [sym_val_number] = STATE(1829), + [sym__val_number_decimal] = STATE(1333), + [sym__val_number] = STATE(1779), + [sym_val_duration] = STATE(1829), + [sym_val_filesize] = STATE(1829), + [sym_val_binary] = STATE(1829), + [sym_val_string] = STATE(1829), + [sym__raw_str] = STATE(1791), + [sym__str_double_quotes] = STATE(1791), + [sym_val_interpolated] = STATE(1829), + [sym__inter_single_quotes] = STATE(1798), + [sym__inter_double_quotes] = STATE(1799), + [sym_val_list] = STATE(1829), + [sym_val_record] = STATE(1829), + [sym_val_table] = STATE(1829), + [sym_val_closure] = STATE(1829), + [sym_short_flag] = STATE(1868), + [sym_long_flag] = STATE(1868), + [sym_unquoted] = STATE(1661), + [sym__unquoted_with_expr] = STATE(1871), + [sym__unquoted_anonymous_prefix] = STATE(6843), + [sym_comment] = STATE(1065), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_DOLLAR] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_DASH2] = ACTIONS(2633), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_DOT_DOT] = ACTIONS(2637), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2639), + [anon_sym_DOT_DOT_LT] = ACTIONS(2639), + [anon_sym_null] = ACTIONS(2641), + [anon_sym_true] = ACTIONS(2643), + [anon_sym_false] = ACTIONS(2643), + [aux_sym__val_number_decimal_token1] = ACTIONS(2645), + [aux_sym__val_number_decimal_token2] = ACTIONS(2647), + [aux_sym__val_number_decimal_token3] = ACTIONS(2649), + [aux_sym__val_number_decimal_token4] = ACTIONS(2651), + [aux_sym__val_number_token1] = ACTIONS(2653), + [aux_sym__val_number_token2] = ACTIONS(2653), + [aux_sym__val_number_token3] = ACTIONS(2653), + [aux_sym__val_number_token4] = ACTIONS(2655), + [aux_sym__val_number_token5] = ACTIONS(2655), + [aux_sym__val_number_token6] = ACTIONS(2655), + [anon_sym_0b] = ACTIONS(2657), + [anon_sym_0o] = ACTIONS(2659), + [anon_sym_0x] = ACTIONS(2659), + [sym_val_date] = ACTIONS(2661), + [anon_sym_DQUOTE] = ACTIONS(2663), + [sym__str_single_quotes] = ACTIONS(2665), + [sym__str_back_ticks] = ACTIONS(2665), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2667), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2669), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(2675), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2677), + }, + [1066] = { + [sym_ctrl_do] = STATE(4895), + [sym_ctrl_if] = STATE(4895), + [sym_ctrl_match] = STATE(4895), + [sym_ctrl_try] = STATE(4895), + [sym__expression] = STATE(4895), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3981), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3169), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_comment] = STATE(1066), + [sym__newline] = ACTIONS(3347), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_err_GT_PIPE] = ACTIONS(3349), + [anon_sym_out_GT_PIPE] = ACTIONS(3349), + [anon_sym_e_GT_PIPE] = ACTIONS(3349), + [anon_sym_o_GT_PIPE] = ACTIONS(3349), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3349), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3349), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3349), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3349), [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3353), + [anon_sym_match] = ACTIONS(3355), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), + [anon_sym_RBRACE] = ACTIONS(3349), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(3357), [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(3359), + [anon_sym_true] = ACTIONS(3361), + [anon_sym_false] = ACTIONS(3361), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(427), + [aux_sym__val_number_token5] = ACTIONS(427), + [aux_sym__val_number_token6] = ACTIONS(427), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(233), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3313), + [aux_sym_record_entry_token1] = ACTIONS(3363), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1060] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2177), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2035), - [sym__unquoted_with_expr] = STATE(2196), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1060), - [aux_sym_shebang_repeat1] = STATE(1033), - [sym__newline] = ACTIONS(3287), + [1067] = { + [sym_ctrl_do] = STATE(4895), + [sym_ctrl_if] = STATE(4895), + [sym_ctrl_match] = STATE(4895), + [sym_ctrl_try] = STATE(4895), + [sym__expression] = STATE(4895), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3981), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3169), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_comment] = STATE(1067), + [sym__newline] = ACTIONS(3347), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_err_GT_PIPE] = ACTIONS(3349), + [anon_sym_out_GT_PIPE] = ACTIONS(3349), + [anon_sym_e_GT_PIPE] = ACTIONS(3349), + [anon_sym_o_GT_PIPE] = ACTIONS(3349), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3349), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3349), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3349), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3349), [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3353), + [anon_sym_match] = ACTIONS(3355), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), + [anon_sym_RBRACE] = ACTIONS(3349), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(3357), [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(3359), + [anon_sym_true] = ACTIONS(3361), + [anon_sym_false] = ACTIONS(3361), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(427), + [aux_sym__val_number_token5] = ACTIONS(427), + [aux_sym__val_number_token6] = ACTIONS(427), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(233), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3313), + [aux_sym_record_entry_token1] = ACTIONS(3365), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [1068] = { + [sym_expr_unary] = STATE(2489), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2489), + [sym__expr_binary_expression] = STATE(3367), + [sym_expr_parenthesized] = STATE(2489), + [sym__val_range] = STATE(8160), + [sym__val_range_with_end] = STATE(7583), + [sym__value] = STATE(2489), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(3204), + [sym_val_variable] = STATE(2481), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(3042), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_unquoted] = STATE(2305), + [sym__unquoted_with_expr] = STATE(2504), + [sym__unquoted_anonymous_prefix] = STATE(7358), + [sym_comment] = STATE(1068), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3375), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [aux_sym__val_number_decimal_token1] = ACTIONS(3379), + [aux_sym__val_number_decimal_token2] = ACTIONS(3381), + [aux_sym__val_number_decimal_token3] = ACTIONS(3383), + [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [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(3387), + [aux_sym__val_number_token5] = ACTIONS(3387), + [aux_sym__val_number_token6] = ACTIONS(3387), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), + }, + [1069] = { + [sym_expr_unary] = STATE(3875), + [sym__expr_unary_minus] = STATE(3908), + [sym_expr_binary] = STATE(3875), + [sym__expr_binary_expression] = STATE(3883), + [sym_expr_parenthesized] = STATE(3875), + [sym__val_range] = STATE(7745), + [sym__val_range_with_end] = STATE(7624), + [sym__value] = STATE(3875), + [sym_val_nothing] = STATE(3510), + [sym_val_bool] = STATE(3651), + [sym_val_variable] = STATE(3510), + [sym_val_number] = STATE(3510), + [sym__val_number_decimal] = STATE(3403), + [sym__val_number] = STATE(3521), + [sym_val_duration] = STATE(3510), + [sym_val_filesize] = STATE(3510), + [sym_val_binary] = STATE(3510), + [sym_val_string] = STATE(3510), + [sym__raw_str] = STATE(3562), + [sym__str_double_quotes] = STATE(3562), + [sym_val_interpolated] = STATE(3510), + [sym__inter_single_quotes] = STATE(3540), + [sym__inter_double_quotes] = STATE(3518), + [sym_val_list] = STATE(3510), + [sym_val_record] = STATE(3510), + [sym_val_table] = STATE(3510), + [sym_val_closure] = STATE(3510), + [sym_unquoted] = STATE(3676), + [sym__unquoted_with_expr] = STATE(3885), + [sym__unquoted_anonymous_prefix] = STATE(6869), + [sym_comment] = STATE(1069), + [anon_sym_LBRACK] = ACTIONS(3393), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_DOLLAR] = ACTIONS(3397), + [anon_sym_DASH2] = ACTIONS(3399), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_DOT_DOT] = ACTIONS(3403), + [aux_sym_expr_unary_token1] = ACTIONS(3405), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), + [anon_sym_DOT_DOT_LT] = ACTIONS(3407), + [anon_sym_null] = ACTIONS(3409), + [anon_sym_true] = ACTIONS(3411), + [anon_sym_false] = ACTIONS(3411), + [aux_sym__val_number_decimal_token1] = ACTIONS(3413), + [aux_sym__val_number_decimal_token2] = ACTIONS(3415), + [aux_sym__val_number_decimal_token3] = ACTIONS(3417), + [aux_sym__val_number_decimal_token4] = ACTIONS(3419), + [aux_sym__val_number_token1] = ACTIONS(3421), + [aux_sym__val_number_token2] = ACTIONS(3421), + [aux_sym__val_number_token3] = ACTIONS(3421), + [aux_sym__val_number_token4] = ACTIONS(3423), + [aux_sym__val_number_token5] = ACTIONS(3423), + [aux_sym__val_number_token6] = ACTIONS(3423), + [anon_sym_0b] = ACTIONS(3425), + [anon_sym_0o] = ACTIONS(3427), + [anon_sym_0x] = ACTIONS(3427), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3431), + [sym__str_single_quotes] = ACTIONS(3433), + [sym__str_back_ticks] = ACTIONS(3433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3439), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3441), + }, + [1070] = { + [sym_expr_unary] = STATE(2489), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2489), + [sym__expr_binary_expression] = STATE(2494), + [sym_expr_parenthesized] = STATE(2489), + [sym__val_range] = STATE(8160), + [sym__val_range_with_end] = STATE(7583), + [sym__value] = STATE(2489), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(2227), + [sym_val_variable] = STATE(2481), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(1625), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_unquoted] = STATE(2306), + [sym__unquoted_with_expr] = STATE(2495), + [sym__unquoted_anonymous_prefix] = STATE(7358), + [sym_comment] = STATE(1070), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3443), + [anon_sym_true] = ACTIONS(3445), + [anon_sym_false] = ACTIONS(3445), + [aux_sym__val_number_decimal_token1] = ACTIONS(3447), + [aux_sym__val_number_decimal_token2] = ACTIONS(3449), + [aux_sym__val_number_decimal_token3] = ACTIONS(3451), + [aux_sym__val_number_decimal_token4] = ACTIONS(3453), + [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(3455), + [aux_sym__val_number_token5] = ACTIONS(3455), + [aux_sym__val_number_token6] = ACTIONS(3455), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3457), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), + }, + [1071] = { + [sym_expr_unary] = STATE(2489), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2489), + [sym__expr_binary_expression] = STATE(2496), + [sym_expr_parenthesized] = STATE(2489), + [sym__val_range] = STATE(8160), + [sym__val_range_with_end] = STATE(7583), + [sym__value] = STATE(2489), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(2227), + [sym_val_variable] = STATE(2481), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(1625), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_unquoted] = STATE(2268), + [sym__unquoted_with_expr] = STATE(2498), + [sym__unquoted_anonymous_prefix] = STATE(7358), + [sym_comment] = STATE(1071), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3443), + [anon_sym_true] = ACTIONS(3445), + [anon_sym_false] = ACTIONS(3445), + [aux_sym__val_number_decimal_token1] = ACTIONS(3447), + [aux_sym__val_number_decimal_token2] = ACTIONS(3449), + [aux_sym__val_number_decimal_token3] = ACTIONS(3451), + [aux_sym__val_number_decimal_token4] = ACTIONS(3453), + [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(3455), + [aux_sym__val_number_token5] = ACTIONS(3455), + [aux_sym__val_number_token6] = ACTIONS(3455), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3457), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), + }, + [1072] = { + [sym_expr_unary] = STATE(2489), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2489), + [sym__expr_binary_expression] = STATE(2499), + [sym_expr_parenthesized] = STATE(2489), + [sym__val_range] = STATE(8160), + [sym__val_range_with_end] = STATE(7583), + [sym__value] = STATE(2489), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(2227), + [sym_val_variable] = STATE(2481), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(1625), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_unquoted] = STATE(2230), + [sym__unquoted_with_expr] = STATE(2500), + [sym__unquoted_anonymous_prefix] = STATE(7358), + [sym_comment] = STATE(1072), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3443), + [anon_sym_true] = ACTIONS(3445), + [anon_sym_false] = ACTIONS(3445), + [aux_sym__val_number_decimal_token1] = ACTIONS(3447), + [aux_sym__val_number_decimal_token2] = ACTIONS(3449), + [aux_sym__val_number_decimal_token3] = ACTIONS(3451), + [aux_sym__val_number_decimal_token4] = ACTIONS(3453), + [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(3455), + [aux_sym__val_number_token5] = ACTIONS(3455), + [aux_sym__val_number_token6] = ACTIONS(3455), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3457), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), + }, + [1073] = { + [sym_expr_unary] = STATE(2489), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2489), + [sym__expr_binary_expression] = STATE(2501), + [sym_expr_parenthesized] = STATE(2489), + [sym__val_range] = STATE(8160), + [sym__val_range_with_end] = STATE(7583), + [sym__value] = STATE(2489), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(2227), + [sym_val_variable] = STATE(2481), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(1625), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_unquoted] = STATE(2283), + [sym__unquoted_with_expr] = STATE(2502), + [sym__unquoted_anonymous_prefix] = STATE(7358), + [sym_comment] = STATE(1073), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3443), + [anon_sym_true] = ACTIONS(3445), + [anon_sym_false] = ACTIONS(3445), + [aux_sym__val_number_decimal_token1] = ACTIONS(3447), + [aux_sym__val_number_decimal_token2] = ACTIONS(3449), + [aux_sym__val_number_decimal_token3] = ACTIONS(3451), + [aux_sym__val_number_decimal_token4] = ACTIONS(3453), + [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(3455), + [aux_sym__val_number_token5] = ACTIONS(3455), + [aux_sym__val_number_token6] = ACTIONS(3455), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3457), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), + }, + [1074] = { + [sym_expr_unary] = STATE(2489), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2489), + [sym__expr_binary_expression] = STATE(3360), + [sym_expr_parenthesized] = STATE(2489), + [sym__val_range] = STATE(8160), + [sym__val_range_with_end] = STATE(7583), + [sym__value] = STATE(2489), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(3204), + [sym_val_variable] = STATE(2481), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(3042), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_unquoted] = STATE(2256), + [sym__unquoted_with_expr] = STATE(2491), + [sym__unquoted_anonymous_prefix] = STATE(7358), + [sym_comment] = STATE(1074), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3375), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [aux_sym__val_number_decimal_token1] = ACTIONS(3379), + [aux_sym__val_number_decimal_token2] = ACTIONS(3381), + [aux_sym__val_number_decimal_token3] = ACTIONS(3383), + [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [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(3387), + [aux_sym__val_number_token5] = ACTIONS(3387), + [aux_sym__val_number_token6] = ACTIONS(3387), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), + }, + [1075] = { + [sym_expr_unary] = STATE(2489), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2489), + [sym__expr_binary_expression] = STATE(3365), + [sym_expr_parenthesized] = STATE(2489), + [sym__val_range] = STATE(8160), + [sym__val_range_with_end] = STATE(7583), + [sym__value] = STATE(2489), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(3204), + [sym_val_variable] = STATE(2481), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(3042), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_unquoted] = STATE(2277), + [sym__unquoted_with_expr] = STATE(2493), + [sym__unquoted_anonymous_prefix] = STATE(7358), + [sym_comment] = STATE(1075), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3375), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [aux_sym__val_number_decimal_token1] = ACTIONS(3379), + [aux_sym__val_number_decimal_token2] = ACTIONS(3381), + [aux_sym__val_number_decimal_token3] = ACTIONS(3383), + [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [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(3387), + [aux_sym__val_number_token5] = ACTIONS(3387), + [aux_sym__val_number_token6] = ACTIONS(3387), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), + }, + [1076] = { + [sym_expr_unary] = STATE(2489), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2489), + [sym__expr_binary_expression] = STATE(3378), + [sym_expr_parenthesized] = STATE(2489), + [sym__val_range] = STATE(8160), + [sym__val_range_with_end] = STATE(7583), + [sym__value] = STATE(2489), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(3204), + [sym_val_variable] = STATE(2481), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(3042), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_unquoted] = STATE(2306), + [sym__unquoted_with_expr] = STATE(2495), + [sym__unquoted_anonymous_prefix] = STATE(7358), + [sym_comment] = STATE(1076), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3375), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [aux_sym__val_number_decimal_token1] = ACTIONS(3379), + [aux_sym__val_number_decimal_token2] = ACTIONS(3381), + [aux_sym__val_number_decimal_token3] = ACTIONS(3383), + [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [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(3387), + [aux_sym__val_number_token5] = ACTIONS(3387), + [aux_sym__val_number_token6] = ACTIONS(3387), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), + }, + [1077] = { + [sym_expr_unary] = STATE(2489), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2489), + [sym__expr_binary_expression] = STATE(3340), + [sym_expr_parenthesized] = STATE(2489), + [sym__val_range] = STATE(8160), + [sym__val_range_with_end] = STATE(7583), + [sym__value] = STATE(2489), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(3204), + [sym_val_variable] = STATE(2481), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(3042), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_unquoted] = STATE(2268), + [sym__unquoted_with_expr] = STATE(2498), + [sym__unquoted_anonymous_prefix] = STATE(7358), + [sym_comment] = STATE(1077), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3375), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [aux_sym__val_number_decimal_token1] = ACTIONS(3379), + [aux_sym__val_number_decimal_token2] = ACTIONS(3381), + [aux_sym__val_number_decimal_token3] = ACTIONS(3383), + [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [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(3387), + [aux_sym__val_number_token5] = ACTIONS(3387), + [aux_sym__val_number_token6] = ACTIONS(3387), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), + }, + [1078] = { + [sym_expr_unary] = STATE(2489), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2489), + [sym__expr_binary_expression] = STATE(3346), + [sym_expr_parenthesized] = STATE(2489), + [sym__val_range] = STATE(8160), + [sym__val_range_with_end] = STATE(7583), + [sym__value] = STATE(2489), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(3204), + [sym_val_variable] = STATE(2481), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(3042), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_unquoted] = STATE(2230), + [sym__unquoted_with_expr] = STATE(2500), + [sym__unquoted_anonymous_prefix] = STATE(7358), + [sym_comment] = STATE(1078), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3375), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [aux_sym__val_number_decimal_token1] = ACTIONS(3379), + [aux_sym__val_number_decimal_token2] = ACTIONS(3381), + [aux_sym__val_number_decimal_token3] = ACTIONS(3383), + [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [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(3387), + [aux_sym__val_number_token5] = ACTIONS(3387), + [aux_sym__val_number_token6] = ACTIONS(3387), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), + }, + [1079] = { + [sym_expr_unary] = STATE(2489), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2489), + [sym__expr_binary_expression] = STATE(3363), + [sym_expr_parenthesized] = STATE(2489), + [sym__val_range] = STATE(8160), + [sym__val_range_with_end] = STATE(7583), + [sym__value] = STATE(2489), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(3204), + [sym_val_variable] = STATE(2481), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(3042), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_unquoted] = STATE(2283), + [sym__unquoted_with_expr] = STATE(2502), + [sym__unquoted_anonymous_prefix] = STATE(7358), + [sym_comment] = STATE(1079), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3375), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [aux_sym__val_number_decimal_token1] = ACTIONS(3379), + [aux_sym__val_number_decimal_token2] = ACTIONS(3381), + [aux_sym__val_number_decimal_token3] = ACTIONS(3383), + [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [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(3387), + [aux_sym__val_number_token5] = ACTIONS(3387), + [aux_sym__val_number_token6] = ACTIONS(3387), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), + }, + [1080] = { + [sym_expr_unary] = STATE(2489), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2489), + [sym__expr_binary_expression] = STATE(3356), + [sym_expr_parenthesized] = STATE(2489), + [sym__val_range] = STATE(8160), + [sym__val_range_with_end] = STATE(7583), + [sym__value] = STATE(2489), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(3204), + [sym_val_variable] = STATE(2481), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(3042), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_unquoted] = STATE(2308), + [sym__unquoted_with_expr] = STATE(2506), + [sym__unquoted_anonymous_prefix] = STATE(7358), + [sym_comment] = STATE(1080), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3375), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [aux_sym__val_number_decimal_token1] = ACTIONS(3379), + [aux_sym__val_number_decimal_token2] = ACTIONS(3381), + [aux_sym__val_number_decimal_token3] = ACTIONS(3383), + [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [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(3387), + [aux_sym__val_number_token5] = ACTIONS(3387), + [aux_sym__val_number_token6] = ACTIONS(3387), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), + }, + [1081] = { + [sym_expr_unary] = STATE(2489), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2489), + [sym__expr_binary_expression] = STATE(2507), + [sym_expr_parenthesized] = STATE(2489), + [sym__val_range] = STATE(8160), + [sym__val_range_with_end] = STATE(7583), + [sym__value] = STATE(2489), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(3204), + [sym_val_variable] = STATE(2481), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(3042), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_unquoted] = STATE(2181), + [sym__unquoted_with_expr] = STATE(2508), + [sym__unquoted_anonymous_prefix] = STATE(7358), + [sym_comment] = STATE(1081), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3375), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [aux_sym__val_number_decimal_token1] = ACTIONS(3379), + [aux_sym__val_number_decimal_token2] = ACTIONS(3381), + [aux_sym__val_number_decimal_token3] = ACTIONS(3383), + [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [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(3387), + [aux_sym__val_number_token5] = ACTIONS(3387), + [aux_sym__val_number_token6] = ACTIONS(3387), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), + }, + [1082] = { + [sym_expr_unary] = STATE(2489), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2489), + [sym__expr_binary_expression] = STATE(3341), + [sym_expr_parenthesized] = STATE(2489), + [sym__val_range] = STATE(8160), + [sym__val_range_with_end] = STATE(7583), + [sym__value] = STATE(2489), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(3204), + [sym_val_variable] = STATE(2481), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(3042), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_unquoted] = STATE(2183), + [sym__unquoted_with_expr] = STATE(2510), + [sym__unquoted_anonymous_prefix] = STATE(7358), + [sym_comment] = STATE(1082), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3375), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [aux_sym__val_number_decimal_token1] = ACTIONS(3379), + [aux_sym__val_number_decimal_token2] = ACTIONS(3381), + [aux_sym__val_number_decimal_token3] = ACTIONS(3383), + [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [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(3387), + [aux_sym__val_number_token5] = ACTIONS(3387), + [aux_sym__val_number_token6] = ACTIONS(3387), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), + }, + [1083] = { + [sym_expr_unary] = STATE(2489), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2489), + [sym__expr_binary_expression] = STATE(3361), + [sym_expr_parenthesized] = STATE(2489), + [sym__val_range] = STATE(8160), + [sym__val_range_with_end] = STATE(7583), + [sym__value] = STATE(2489), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(3204), + [sym_val_variable] = STATE(2481), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(3042), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_unquoted] = STATE(2290), + [sym__unquoted_with_expr] = STATE(2512), + [sym__unquoted_anonymous_prefix] = STATE(7358), + [sym_comment] = STATE(1083), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3375), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [aux_sym__val_number_decimal_token1] = ACTIONS(3379), + [aux_sym__val_number_decimal_token2] = ACTIONS(3381), + [aux_sym__val_number_decimal_token3] = ACTIONS(3383), + [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [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(3387), + [aux_sym__val_number_token5] = ACTIONS(3387), + [aux_sym__val_number_token6] = ACTIONS(3387), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3391), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [sym_raw_string_begin] = ACTIONS(121), }, - [1061] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2404), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2041), - [sym__unquoted_with_expr] = STATE(2223), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1061), - [aux_sym_shebang_repeat1] = STATE(1035), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3313), + [1084] = { + [sym_expr_unary] = STATE(2489), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2489), + [sym__expr_binary_expression] = STATE(3344), + [sym_expr_parenthesized] = STATE(2489), + [sym__val_range] = STATE(8160), + [sym__val_range_with_end] = STATE(7583), + [sym__value] = STATE(2489), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(3204), + [sym_val_variable] = STATE(2481), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(3042), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_unquoted] = STATE(2257), + [sym__unquoted_with_expr] = STATE(2518), + [sym__unquoted_anonymous_prefix] = STATE(7358), + [sym_comment] = STATE(1084), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3375), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [aux_sym__val_number_decimal_token1] = ACTIONS(3379), + [aux_sym__val_number_decimal_token2] = ACTIONS(3381), + [aux_sym__val_number_decimal_token3] = ACTIONS(3383), + [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [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(3387), + [aux_sym__val_number_token5] = ACTIONS(3387), + [aux_sym__val_number_token6] = ACTIONS(3387), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3391), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [sym_raw_string_begin] = ACTIONS(121), }, - [1062] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2314), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1986), - [sym__unquoted_with_expr] = STATE(2220), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1062), - [aux_sym_shebang_repeat1] = STATE(1038), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3313), + [1085] = { + [sym_expr_unary] = STATE(2489), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2489), + [sym__expr_binary_expression] = STATE(3342), + [sym_expr_parenthesized] = STATE(2489), + [sym__val_range] = STATE(8160), + [sym__val_range_with_end] = STATE(7583), + [sym__value] = STATE(2489), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(3204), + [sym_val_variable] = STATE(2481), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(3042), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_unquoted] = STATE(2315), + [sym__unquoted_with_expr] = STATE(2520), + [sym__unquoted_anonymous_prefix] = STATE(7358), + [sym_comment] = STATE(1085), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3375), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [aux_sym__val_number_decimal_token1] = ACTIONS(3379), + [aux_sym__val_number_decimal_token2] = ACTIONS(3381), + [aux_sym__val_number_decimal_token3] = ACTIONS(3383), + [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [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(3387), + [aux_sym__val_number_token5] = ACTIONS(3387), + [aux_sym__val_number_token6] = ACTIONS(3387), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3391), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [sym_raw_string_begin] = ACTIONS(121), }, - [1063] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2420), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2026), - [sym__unquoted_with_expr] = STATE(2163), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1063), - [aux_sym_shebang_repeat1] = STATE(1040), - [sym__newline] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [1086] = { + [sym_expr_unary] = STATE(3875), + [sym__expr_unary_minus] = STATE(3908), + [sym_expr_binary] = STATE(3875), + [sym__expr_binary_expression] = STATE(3886), + [sym_expr_parenthesized] = STATE(3875), + [sym__val_range] = STATE(7745), + [sym__val_range_with_end] = STATE(7624), + [sym__value] = STATE(3875), + [sym_val_nothing] = STATE(3510), + [sym_val_bool] = STATE(3651), + [sym_val_variable] = STATE(3510), + [sym_val_number] = STATE(3510), + [sym__val_number_decimal] = STATE(3403), + [sym__val_number] = STATE(3521), + [sym_val_duration] = STATE(3510), + [sym_val_filesize] = STATE(3510), + [sym_val_binary] = STATE(3510), + [sym_val_string] = STATE(3510), + [sym__raw_str] = STATE(3562), + [sym__str_double_quotes] = STATE(3562), + [sym_val_interpolated] = STATE(3510), + [sym__inter_single_quotes] = STATE(3540), + [sym__inter_double_quotes] = STATE(3518), + [sym_val_list] = STATE(3510), + [sym_val_record] = STATE(3510), + [sym_val_table] = STATE(3510), + [sym_val_closure] = STATE(3510), + [sym_unquoted] = STATE(3678), + [sym__unquoted_with_expr] = STATE(3887), + [sym__unquoted_anonymous_prefix] = STATE(6869), + [sym_comment] = STATE(1086), + [anon_sym_LBRACK] = ACTIONS(3393), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_DOLLAR] = ACTIONS(3397), + [anon_sym_DASH2] = ACTIONS(3399), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_DOT_DOT] = ACTIONS(3403), + [aux_sym_expr_unary_token1] = ACTIONS(3405), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), + [anon_sym_DOT_DOT_LT] = ACTIONS(3407), + [anon_sym_null] = ACTIONS(3409), + [anon_sym_true] = ACTIONS(3411), + [anon_sym_false] = ACTIONS(3411), + [aux_sym__val_number_decimal_token1] = ACTIONS(3413), + [aux_sym__val_number_decimal_token2] = ACTIONS(3415), + [aux_sym__val_number_decimal_token3] = ACTIONS(3417), + [aux_sym__val_number_decimal_token4] = ACTIONS(3419), + [aux_sym__val_number_token1] = ACTIONS(3421), + [aux_sym__val_number_token2] = ACTIONS(3421), + [aux_sym__val_number_token3] = ACTIONS(3421), + [aux_sym__val_number_token4] = ACTIONS(3423), + [aux_sym__val_number_token5] = ACTIONS(3423), + [aux_sym__val_number_token6] = ACTIONS(3423), + [anon_sym_0b] = ACTIONS(3425), + [anon_sym_0o] = ACTIONS(3427), + [anon_sym_0x] = ACTIONS(3427), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3431), + [sym__str_single_quotes] = ACTIONS(3433), + [sym__str_back_ticks] = ACTIONS(3433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3439), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3441), }, - [1064] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(2367), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2011), - [sym__unquoted_with_expr] = STATE(2180), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1064), - [aux_sym_shebang_repeat1] = STATE(1044), - [sym__newline] = ACTIONS(3287), + [1087] = { + [sym_expr_unary] = STATE(3875), + [sym__expr_unary_minus] = STATE(3908), + [sym_expr_binary] = STATE(3875), + [sym__expr_binary_expression] = STATE(3888), + [sym_expr_parenthesized] = STATE(3875), + [sym__val_range] = STATE(7745), + [sym__val_range_with_end] = STATE(7624), + [sym__value] = STATE(3875), + [sym_val_nothing] = STATE(3510), + [sym_val_bool] = STATE(3651), + [sym_val_variable] = STATE(3510), + [sym_val_number] = STATE(3510), + [sym__val_number_decimal] = STATE(3403), + [sym__val_number] = STATE(3521), + [sym_val_duration] = STATE(3510), + [sym_val_filesize] = STATE(3510), + [sym_val_binary] = STATE(3510), + [sym_val_string] = STATE(3510), + [sym__raw_str] = STATE(3562), + [sym__str_double_quotes] = STATE(3562), + [sym_val_interpolated] = STATE(3510), + [sym__inter_single_quotes] = STATE(3540), + [sym__inter_double_quotes] = STATE(3518), + [sym_val_list] = STATE(3510), + [sym_val_record] = STATE(3510), + [sym_val_table] = STATE(3510), + [sym_val_closure] = STATE(3510), + [sym_unquoted] = STATE(3679), + [sym__unquoted_with_expr] = STATE(3890), + [sym__unquoted_anonymous_prefix] = STATE(6869), + [sym_comment] = STATE(1087), + [anon_sym_LBRACK] = ACTIONS(3393), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_DOLLAR] = ACTIONS(3397), + [anon_sym_DASH2] = ACTIONS(3399), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_DOT_DOT] = ACTIONS(3403), + [aux_sym_expr_unary_token1] = ACTIONS(3405), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), + [anon_sym_DOT_DOT_LT] = ACTIONS(3407), + [anon_sym_null] = ACTIONS(3409), + [anon_sym_true] = ACTIONS(3411), + [anon_sym_false] = ACTIONS(3411), + [aux_sym__val_number_decimal_token1] = ACTIONS(3413), + [aux_sym__val_number_decimal_token2] = ACTIONS(3415), + [aux_sym__val_number_decimal_token3] = ACTIONS(3417), + [aux_sym__val_number_decimal_token4] = ACTIONS(3419), + [aux_sym__val_number_token1] = ACTIONS(3421), + [aux_sym__val_number_token2] = ACTIONS(3421), + [aux_sym__val_number_token3] = ACTIONS(3421), + [aux_sym__val_number_token4] = ACTIONS(3423), + [aux_sym__val_number_token5] = ACTIONS(3423), + [aux_sym__val_number_token6] = ACTIONS(3423), + [anon_sym_0b] = ACTIONS(3425), + [anon_sym_0o] = ACTIONS(3427), + [anon_sym_0x] = ACTIONS(3427), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3431), + [sym__str_single_quotes] = ACTIONS(3433), + [sym__str_back_ticks] = ACTIONS(3433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3439), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3441), + }, + [1088] = { + [sym_expr_unary] = STATE(3875), + [sym__expr_unary_minus] = STATE(3908), + [sym_expr_binary] = STATE(3875), + [sym__expr_binary_expression] = STATE(3891), + [sym_expr_parenthesized] = STATE(3875), + [sym__val_range] = STATE(7745), + [sym__val_range_with_end] = STATE(7624), + [sym__value] = STATE(3875), + [sym_val_nothing] = STATE(3510), + [sym_val_bool] = STATE(3651), + [sym_val_variable] = STATE(3510), + [sym_val_number] = STATE(3510), + [sym__val_number_decimal] = STATE(3403), + [sym__val_number] = STATE(3521), + [sym_val_duration] = STATE(3510), + [sym_val_filesize] = STATE(3510), + [sym_val_binary] = STATE(3510), + [sym_val_string] = STATE(3510), + [sym__raw_str] = STATE(3562), + [sym__str_double_quotes] = STATE(3562), + [sym_val_interpolated] = STATE(3510), + [sym__inter_single_quotes] = STATE(3540), + [sym__inter_double_quotes] = STATE(3518), + [sym_val_list] = STATE(3510), + [sym_val_record] = STATE(3510), + [sym_val_table] = STATE(3510), + [sym_val_closure] = STATE(3510), + [sym_unquoted] = STATE(3681), + [sym__unquoted_with_expr] = STATE(3893), + [sym__unquoted_anonymous_prefix] = STATE(6869), + [sym_comment] = STATE(1088), + [anon_sym_LBRACK] = ACTIONS(3393), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_DOLLAR] = ACTIONS(3397), + [anon_sym_DASH2] = ACTIONS(3399), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_DOT_DOT] = ACTIONS(3403), + [aux_sym_expr_unary_token1] = ACTIONS(3405), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), + [anon_sym_DOT_DOT_LT] = ACTIONS(3407), + [anon_sym_null] = ACTIONS(3409), + [anon_sym_true] = ACTIONS(3411), + [anon_sym_false] = ACTIONS(3411), + [aux_sym__val_number_decimal_token1] = ACTIONS(3413), + [aux_sym__val_number_decimal_token2] = ACTIONS(3415), + [aux_sym__val_number_decimal_token3] = ACTIONS(3417), + [aux_sym__val_number_decimal_token4] = ACTIONS(3419), + [aux_sym__val_number_token1] = ACTIONS(3421), + [aux_sym__val_number_token2] = ACTIONS(3421), + [aux_sym__val_number_token3] = ACTIONS(3421), + [aux_sym__val_number_token4] = ACTIONS(3423), + [aux_sym__val_number_token5] = ACTIONS(3423), + [aux_sym__val_number_token6] = ACTIONS(3423), + [anon_sym_0b] = ACTIONS(3425), + [anon_sym_0o] = ACTIONS(3427), + [anon_sym_0x] = ACTIONS(3427), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3431), + [sym__str_single_quotes] = ACTIONS(3433), + [sym__str_back_ticks] = ACTIONS(3433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3439), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3441), + }, + [1089] = { + [sym_expr_unary] = STATE(3875), + [sym__expr_unary_minus] = STATE(3908), + [sym_expr_binary] = STATE(3875), + [sym__expr_binary_expression] = STATE(3894), + [sym_expr_parenthesized] = STATE(3875), + [sym__val_range] = STATE(7745), + [sym__val_range_with_end] = STATE(7624), + [sym__value] = STATE(3875), + [sym_val_nothing] = STATE(3510), + [sym_val_bool] = STATE(3651), + [sym_val_variable] = STATE(3510), + [sym_val_number] = STATE(3510), + [sym__val_number_decimal] = STATE(3403), + [sym__val_number] = STATE(3521), + [sym_val_duration] = STATE(3510), + [sym_val_filesize] = STATE(3510), + [sym_val_binary] = STATE(3510), + [sym_val_string] = STATE(3510), + [sym__raw_str] = STATE(3562), + [sym__str_double_quotes] = STATE(3562), + [sym_val_interpolated] = STATE(3510), + [sym__inter_single_quotes] = STATE(3540), + [sym__inter_double_quotes] = STATE(3518), + [sym_val_list] = STATE(3510), + [sym_val_record] = STATE(3510), + [sym_val_table] = STATE(3510), + [sym_val_closure] = STATE(3510), + [sym_unquoted] = STATE(3683), + [sym__unquoted_with_expr] = STATE(3895), + [sym__unquoted_anonymous_prefix] = STATE(6869), + [sym_comment] = STATE(1089), + [anon_sym_LBRACK] = ACTIONS(3393), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_DOLLAR] = ACTIONS(3397), + [anon_sym_DASH2] = ACTIONS(3399), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_DOT_DOT] = ACTIONS(3403), + [aux_sym_expr_unary_token1] = ACTIONS(3405), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), + [anon_sym_DOT_DOT_LT] = ACTIONS(3407), + [anon_sym_null] = ACTIONS(3409), + [anon_sym_true] = ACTIONS(3411), + [anon_sym_false] = ACTIONS(3411), + [aux_sym__val_number_decimal_token1] = ACTIONS(3413), + [aux_sym__val_number_decimal_token2] = ACTIONS(3415), + [aux_sym__val_number_decimal_token3] = ACTIONS(3417), + [aux_sym__val_number_decimal_token4] = ACTIONS(3419), + [aux_sym__val_number_token1] = ACTIONS(3421), + [aux_sym__val_number_token2] = ACTIONS(3421), + [aux_sym__val_number_token3] = ACTIONS(3421), + [aux_sym__val_number_token4] = ACTIONS(3423), + [aux_sym__val_number_token5] = ACTIONS(3423), + [aux_sym__val_number_token6] = ACTIONS(3423), + [anon_sym_0b] = ACTIONS(3425), + [anon_sym_0o] = ACTIONS(3427), + [anon_sym_0x] = ACTIONS(3427), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3431), + [sym__str_single_quotes] = ACTIONS(3433), + [sym__str_back_ticks] = ACTIONS(3433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3439), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3441), + }, + [1090] = { + [sym_expr_unary] = STATE(3875), + [sym__expr_unary_minus] = STATE(3908), + [sym_expr_binary] = STATE(3875), + [sym__expr_binary_expression] = STATE(3897), + [sym_expr_parenthesized] = STATE(3875), + [sym__val_range] = STATE(7745), + [sym__val_range_with_end] = STATE(7624), + [sym__value] = STATE(3875), + [sym_val_nothing] = STATE(3510), + [sym_val_bool] = STATE(3651), + [sym_val_variable] = STATE(3510), + [sym_val_number] = STATE(3510), + [sym__val_number_decimal] = STATE(3403), + [sym__val_number] = STATE(3521), + [sym_val_duration] = STATE(3510), + [sym_val_filesize] = STATE(3510), + [sym_val_binary] = STATE(3510), + [sym_val_string] = STATE(3510), + [sym__raw_str] = STATE(3562), + [sym__str_double_quotes] = STATE(3562), + [sym_val_interpolated] = STATE(3510), + [sym__inter_single_quotes] = STATE(3540), + [sym__inter_double_quotes] = STATE(3518), + [sym_val_list] = STATE(3510), + [sym_val_record] = STATE(3510), + [sym_val_table] = STATE(3510), + [sym_val_closure] = STATE(3510), + [sym_unquoted] = STATE(3684), + [sym__unquoted_with_expr] = STATE(3898), + [sym__unquoted_anonymous_prefix] = STATE(6869), + [sym_comment] = STATE(1090), + [anon_sym_LBRACK] = ACTIONS(3393), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_DOLLAR] = ACTIONS(3397), + [anon_sym_DASH2] = ACTIONS(3399), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_DOT_DOT] = ACTIONS(3403), + [aux_sym_expr_unary_token1] = ACTIONS(3405), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), + [anon_sym_DOT_DOT_LT] = ACTIONS(3407), + [anon_sym_null] = ACTIONS(3409), + [anon_sym_true] = ACTIONS(3411), + [anon_sym_false] = ACTIONS(3411), + [aux_sym__val_number_decimal_token1] = ACTIONS(3413), + [aux_sym__val_number_decimal_token2] = ACTIONS(3415), + [aux_sym__val_number_decimal_token3] = ACTIONS(3417), + [aux_sym__val_number_decimal_token4] = ACTIONS(3419), + [aux_sym__val_number_token1] = ACTIONS(3421), + [aux_sym__val_number_token2] = ACTIONS(3421), + [aux_sym__val_number_token3] = ACTIONS(3421), + [aux_sym__val_number_token4] = ACTIONS(3423), + [aux_sym__val_number_token5] = ACTIONS(3423), + [aux_sym__val_number_token6] = ACTIONS(3423), + [anon_sym_0b] = ACTIONS(3425), + [anon_sym_0o] = ACTIONS(3427), + [anon_sym_0x] = ACTIONS(3427), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3431), + [sym__str_single_quotes] = ACTIONS(3433), + [sym__str_back_ticks] = ACTIONS(3433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3439), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3441), + }, + [1091] = { + [sym_expr_unary] = STATE(3875), + [sym__expr_unary_minus] = STATE(3908), + [sym_expr_binary] = STATE(3875), + [sym__expr_binary_expression] = STATE(3899), + [sym_expr_parenthesized] = STATE(3875), + [sym__val_range] = STATE(7745), + [sym__val_range_with_end] = STATE(7624), + [sym__value] = STATE(3875), + [sym_val_nothing] = STATE(3510), + [sym_val_bool] = STATE(3651), + [sym_val_variable] = STATE(3510), + [sym_val_number] = STATE(3510), + [sym__val_number_decimal] = STATE(3403), + [sym__val_number] = STATE(3521), + [sym_val_duration] = STATE(3510), + [sym_val_filesize] = STATE(3510), + [sym_val_binary] = STATE(3510), + [sym_val_string] = STATE(3510), + [sym__raw_str] = STATE(3562), + [sym__str_double_quotes] = STATE(3562), + [sym_val_interpolated] = STATE(3510), + [sym__inter_single_quotes] = STATE(3540), + [sym__inter_double_quotes] = STATE(3518), + [sym_val_list] = STATE(3510), + [sym_val_record] = STATE(3510), + [sym_val_table] = STATE(3510), + [sym_val_closure] = STATE(3510), + [sym_unquoted] = STATE(3685), + [sym__unquoted_with_expr] = STATE(3900), + [sym__unquoted_anonymous_prefix] = STATE(6869), + [sym_comment] = STATE(1091), + [anon_sym_LBRACK] = ACTIONS(3393), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_DOLLAR] = ACTIONS(3397), + [anon_sym_DASH2] = ACTIONS(3399), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_DOT_DOT] = ACTIONS(3403), + [aux_sym_expr_unary_token1] = ACTIONS(3405), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), + [anon_sym_DOT_DOT_LT] = ACTIONS(3407), + [anon_sym_null] = ACTIONS(3409), + [anon_sym_true] = ACTIONS(3411), + [anon_sym_false] = ACTIONS(3411), + [aux_sym__val_number_decimal_token1] = ACTIONS(3413), + [aux_sym__val_number_decimal_token2] = ACTIONS(3415), + [aux_sym__val_number_decimal_token3] = ACTIONS(3417), + [aux_sym__val_number_decimal_token4] = ACTIONS(3419), + [aux_sym__val_number_token1] = ACTIONS(3421), + [aux_sym__val_number_token2] = ACTIONS(3421), + [aux_sym__val_number_token3] = ACTIONS(3421), + [aux_sym__val_number_token4] = ACTIONS(3423), + [aux_sym__val_number_token5] = ACTIONS(3423), + [aux_sym__val_number_token6] = ACTIONS(3423), + [anon_sym_0b] = ACTIONS(3425), + [anon_sym_0o] = ACTIONS(3427), + [anon_sym_0x] = ACTIONS(3427), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3431), + [sym__str_single_quotes] = ACTIONS(3433), + [sym__str_back_ticks] = ACTIONS(3433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3439), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3441), + }, + [1092] = { + [sym_expr_unary] = STATE(3875), + [sym__expr_unary_minus] = STATE(3908), + [sym_expr_binary] = STATE(3875), + [sym__expr_binary_expression] = STATE(3901), + [sym_expr_parenthesized] = STATE(3875), + [sym__val_range] = STATE(7745), + [sym__val_range_with_end] = STATE(7624), + [sym__value] = STATE(3875), + [sym_val_nothing] = STATE(3510), + [sym_val_bool] = STATE(3651), + [sym_val_variable] = STATE(3510), + [sym_val_number] = STATE(3510), + [sym__val_number_decimal] = STATE(3403), + [sym__val_number] = STATE(3521), + [sym_val_duration] = STATE(3510), + [sym_val_filesize] = STATE(3510), + [sym_val_binary] = STATE(3510), + [sym_val_string] = STATE(3510), + [sym__raw_str] = STATE(3562), + [sym__str_double_quotes] = STATE(3562), + [sym_val_interpolated] = STATE(3510), + [sym__inter_single_quotes] = STATE(3540), + [sym__inter_double_quotes] = STATE(3518), + [sym_val_list] = STATE(3510), + [sym_val_record] = STATE(3510), + [sym_val_table] = STATE(3510), + [sym_val_closure] = STATE(3510), + [sym_unquoted] = STATE(3729), + [sym__unquoted_with_expr] = STATE(3903), + [sym__unquoted_anonymous_prefix] = STATE(6869), + [sym_comment] = STATE(1092), + [anon_sym_LBRACK] = ACTIONS(3393), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_DOLLAR] = ACTIONS(3397), + [anon_sym_DASH2] = ACTIONS(3399), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_DOT_DOT] = ACTIONS(3403), + [aux_sym_expr_unary_token1] = ACTIONS(3405), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), + [anon_sym_DOT_DOT_LT] = ACTIONS(3407), + [anon_sym_null] = ACTIONS(3409), + [anon_sym_true] = ACTIONS(3411), + [anon_sym_false] = ACTIONS(3411), + [aux_sym__val_number_decimal_token1] = ACTIONS(3413), + [aux_sym__val_number_decimal_token2] = ACTIONS(3415), + [aux_sym__val_number_decimal_token3] = ACTIONS(3417), + [aux_sym__val_number_decimal_token4] = ACTIONS(3419), + [aux_sym__val_number_token1] = ACTIONS(3421), + [aux_sym__val_number_token2] = ACTIONS(3421), + [aux_sym__val_number_token3] = ACTIONS(3421), + [aux_sym__val_number_token4] = ACTIONS(3423), + [aux_sym__val_number_token5] = ACTIONS(3423), + [aux_sym__val_number_token6] = ACTIONS(3423), + [anon_sym_0b] = ACTIONS(3425), + [anon_sym_0o] = ACTIONS(3427), + [anon_sym_0x] = ACTIONS(3427), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3431), + [sym__str_single_quotes] = ACTIONS(3433), + [sym__str_back_ticks] = ACTIONS(3433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3439), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3441), + }, + [1093] = { + [sym_expr_unary] = STATE(3875), + [sym__expr_unary_minus] = STATE(3908), + [sym_expr_binary] = STATE(3875), + [sym__expr_binary_expression] = STATE(3931), + [sym_expr_parenthesized] = STATE(3875), + [sym__val_range] = STATE(7745), + [sym__val_range_with_end] = STATE(7624), + [sym__value] = STATE(3875), + [sym_val_nothing] = STATE(3510), + [sym_val_bool] = STATE(3651), + [sym_val_variable] = STATE(3510), + [sym_val_number] = STATE(3510), + [sym__val_number_decimal] = STATE(3403), + [sym__val_number] = STATE(3521), + [sym_val_duration] = STATE(3510), + [sym_val_filesize] = STATE(3510), + [sym_val_binary] = STATE(3510), + [sym_val_string] = STATE(3510), + [sym__raw_str] = STATE(3562), + [sym__str_double_quotes] = STATE(3562), + [sym_val_interpolated] = STATE(3510), + [sym__inter_single_quotes] = STATE(3540), + [sym__inter_double_quotes] = STATE(3518), + [sym_val_list] = STATE(3510), + [sym_val_record] = STATE(3510), + [sym_val_table] = STATE(3510), + [sym_val_closure] = STATE(3510), + [sym_unquoted] = STATE(3688), + [sym__unquoted_with_expr] = STATE(3904), + [sym__unquoted_anonymous_prefix] = STATE(6869), + [sym_comment] = STATE(1093), + [anon_sym_LBRACK] = ACTIONS(3393), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_DOLLAR] = ACTIONS(3397), + [anon_sym_DASH2] = ACTIONS(3399), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_DOT_DOT] = ACTIONS(3403), + [aux_sym_expr_unary_token1] = ACTIONS(3405), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), + [anon_sym_DOT_DOT_LT] = ACTIONS(3407), + [anon_sym_null] = ACTIONS(3409), + [anon_sym_true] = ACTIONS(3411), + [anon_sym_false] = ACTIONS(3411), + [aux_sym__val_number_decimal_token1] = ACTIONS(3413), + [aux_sym__val_number_decimal_token2] = ACTIONS(3415), + [aux_sym__val_number_decimal_token3] = ACTIONS(3417), + [aux_sym__val_number_decimal_token4] = ACTIONS(3419), + [aux_sym__val_number_token1] = ACTIONS(3421), + [aux_sym__val_number_token2] = ACTIONS(3421), + [aux_sym__val_number_token3] = ACTIONS(3421), + [aux_sym__val_number_token4] = ACTIONS(3423), + [aux_sym__val_number_token5] = ACTIONS(3423), + [aux_sym__val_number_token6] = ACTIONS(3423), + [anon_sym_0b] = ACTIONS(3425), + [anon_sym_0o] = ACTIONS(3427), + [anon_sym_0x] = ACTIONS(3427), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3431), + [sym__str_single_quotes] = ACTIONS(3433), + [sym__str_back_ticks] = ACTIONS(3433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3439), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3441), + }, + [1094] = { + [sym_expr_unary] = STATE(3875), + [sym__expr_unary_minus] = STATE(3908), + [sym_expr_binary] = STATE(3875), + [sym__expr_binary_expression] = STATE(3905), + [sym_expr_parenthesized] = STATE(3875), + [sym__val_range] = STATE(7745), + [sym__val_range_with_end] = STATE(7624), + [sym__value] = STATE(3875), + [sym_val_nothing] = STATE(3510), + [sym_val_bool] = STATE(3651), + [sym_val_variable] = STATE(3510), + [sym_val_number] = STATE(3510), + [sym__val_number_decimal] = STATE(3403), + [sym__val_number] = STATE(3521), + [sym_val_duration] = STATE(3510), + [sym_val_filesize] = STATE(3510), + [sym_val_binary] = STATE(3510), + [sym_val_string] = STATE(3510), + [sym__raw_str] = STATE(3562), + [sym__str_double_quotes] = STATE(3562), + [sym_val_interpolated] = STATE(3510), + [sym__inter_single_quotes] = STATE(3540), + [sym__inter_double_quotes] = STATE(3518), + [sym_val_list] = STATE(3510), + [sym_val_record] = STATE(3510), + [sym_val_table] = STATE(3510), + [sym_val_closure] = STATE(3510), + [sym_unquoted] = STATE(3689), + [sym__unquoted_with_expr] = STATE(3907), + [sym__unquoted_anonymous_prefix] = STATE(6869), + [sym_comment] = STATE(1094), + [anon_sym_LBRACK] = ACTIONS(3393), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_DOLLAR] = ACTIONS(3397), + [anon_sym_DASH2] = ACTIONS(3399), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_DOT_DOT] = ACTIONS(3403), + [aux_sym_expr_unary_token1] = ACTIONS(3405), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), + [anon_sym_DOT_DOT_LT] = ACTIONS(3407), + [anon_sym_null] = ACTIONS(3409), + [anon_sym_true] = ACTIONS(3411), + [anon_sym_false] = ACTIONS(3411), + [aux_sym__val_number_decimal_token1] = ACTIONS(3413), + [aux_sym__val_number_decimal_token2] = ACTIONS(3415), + [aux_sym__val_number_decimal_token3] = ACTIONS(3417), + [aux_sym__val_number_decimal_token4] = ACTIONS(3419), + [aux_sym__val_number_token1] = ACTIONS(3421), + [aux_sym__val_number_token2] = ACTIONS(3421), + [aux_sym__val_number_token3] = ACTIONS(3421), + [aux_sym__val_number_token4] = ACTIONS(3423), + [aux_sym__val_number_token5] = ACTIONS(3423), + [aux_sym__val_number_token6] = ACTIONS(3423), + [anon_sym_0b] = ACTIONS(3425), + [anon_sym_0o] = ACTIONS(3427), + [anon_sym_0x] = ACTIONS(3427), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3431), + [sym__str_single_quotes] = ACTIONS(3433), + [sym__str_back_ticks] = ACTIONS(3433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3439), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3441), + }, + [1095] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(2425), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1884), + [sym__unquoted_with_expr] = STATE(2111), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1095), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -182945,82 +185825,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1065] = { - [sym_expr_unary] = STATE(2362), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary_parenthesized] = STATE(2362), - [sym__expr_binary_expression_parenthesized] = STATE(3228), - [sym_expr_parenthesized] = STATE(2362), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2362), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(2043), - [sym__unquoted_with_expr] = STATE(2267), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1065), - [aux_sym_shebang_repeat1] = STATE(2785), - [sym__newline] = ACTIONS(3287), + [1096] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(2429), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1892), + [sym__unquoted_with_expr] = STATE(2117), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1096), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -183030,248 +185908,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_true] = ACTIONS(3333), + [anon_sym_false] = ACTIONS(3333), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), + [aux_sym__val_number_token4] = ACTIONS(3343), + [aux_sym__val_number_token5] = ACTIONS(3343), + [aux_sym__val_number_token6] = ACTIONS(3343), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), + [sym_val_date] = ACTIONS(3345), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1066] = { - [sym_ctrl_do] = STATE(4987), - [sym_ctrl_if] = STATE(4987), - [sym_ctrl_match] = STATE(4987), - [sym_ctrl_try] = STATE(4987), - [sym__expression] = STATE(4987), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3969), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3152), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_comment] = STATE(1066), - [sym__newline] = ACTIONS(3347), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_err_GT_PIPE] = ACTIONS(3349), - [anon_sym_out_GT_PIPE] = ACTIONS(3349), - [anon_sym_e_GT_PIPE] = ACTIONS(3349), - [anon_sym_o_GT_PIPE] = ACTIONS(3349), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3349), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3349), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3349), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_do] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3353), - [anon_sym_match] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(3349), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(3357), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(3359), - [anon_sym_true] = ACTIONS(3361), - [anon_sym_false] = ACTIONS(3361), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(427), - [aux_sym__val_number_token5] = ACTIONS(427), - [aux_sym__val_number_token6] = ACTIONS(427), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_record_entry_token1] = ACTIONS(3363), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [1067] = { - [sym_ctrl_do] = STATE(4987), - [sym_ctrl_if] = STATE(4987), - [sym_ctrl_match] = STATE(4987), - [sym_ctrl_try] = STATE(4987), - [sym__expression] = STATE(4987), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3969), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3152), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_comment] = STATE(1067), - [sym__newline] = ACTIONS(3347), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_err_GT_PIPE] = ACTIONS(3349), - [anon_sym_out_GT_PIPE] = ACTIONS(3349), - [anon_sym_e_GT_PIPE] = ACTIONS(3349), - [anon_sym_o_GT_PIPE] = ACTIONS(3349), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3349), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3349), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3349), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_do] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3353), - [anon_sym_match] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(3349), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(3357), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(3359), - [anon_sym_true] = ACTIONS(3361), - [anon_sym_false] = ACTIONS(3361), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(427), - [aux_sym__val_number_token5] = ACTIONS(427), - [aux_sym__val_number_token6] = ACTIONS(427), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [aux_sym_record_entry_token1] = ACTIONS(3365), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [1068] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3937), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1861), - [sym__unquoted_with_expr] = STATE(2098), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1068), + [1097] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(2430), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1948), + [sym__unquoted_with_expr] = STATE(2122), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1097), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -183303,58 +186013,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1069] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3940), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1860), - [sym__unquoted_with_expr] = STATE(2097), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1069), + [1098] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(2437), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1952), + [sym__unquoted_with_expr] = STATE(2132), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1098), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -183386,141 +186096,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1070] = { - [sym_expr_unary] = STATE(2456), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2456), - [sym__expr_binary_expression] = STATE(2448), - [sym_expr_parenthesized] = STATE(2456), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7480), - [sym__value] = STATE(2456), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(2241), - [sym_val_variable] = STATE(2487), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(1573), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_unquoted] = STATE(2261), - [sym__unquoted_with_expr] = STATE(2459), - [sym__unquoted_anonymous_prefix] = STATE(7122), - [sym_comment] = STATE(1070), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [aux_sym__val_number_decimal_token1] = ACTIONS(3379), - [aux_sym__val_number_decimal_token2] = ACTIONS(3381), - [aux_sym__val_number_decimal_token3] = ACTIONS(3383), - [aux_sym__val_number_decimal_token4] = ACTIONS(3385), - [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(3387), - [aux_sym__val_number_token5] = ACTIONS(3387), - [aux_sym__val_number_token6] = ACTIONS(3387), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3389), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1071] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3929), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1862), - [sym__unquoted_with_expr] = STATE(2099), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1071), + [1099] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(2442), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1962), + [sym__unquoted_with_expr] = STATE(2162), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1099), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -183552,58 +186179,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1072] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3934), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1863), - [sym__unquoted_with_expr] = STATE(2100), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1072), + [1100] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(2447), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1969), + [sym__unquoted_with_expr] = STATE(2174), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1100), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -183635,58 +186262,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1073] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3938), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1864), - [sym__unquoted_with_expr] = STATE(2101), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1073), + [1101] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(2457), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1861), + [sym__unquoted_with_expr] = STATE(2158), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1101), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -183718,58 +186345,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1074] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3920), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1865), - [sym__unquoted_with_expr] = STATE(2102), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1074), + [1102] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(2459), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1862), + [sym__unquoted_with_expr] = STATE(2161), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1102), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -183801,58 +186428,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1075] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(2103), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), + [1103] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(2135), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), [sym_unquoted] = STATE(1866), - [sym__unquoted_with_expr] = STATE(2104), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1075), + [sym__unquoted_with_expr] = STATE(2113), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1103), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -183884,58 +186511,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1076] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3935), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1867), - [sym__unquoted_with_expr] = STATE(2105), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1076), + [1104] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(2455), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1872), + [sym__unquoted_with_expr] = STATE(2098), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1104), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -183967,58 +186594,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1077] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3918), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1868), - [sym__unquoted_with_expr] = STATE(2106), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1077), + [1105] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(2431), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1874), + [sym__unquoted_with_expr] = STATE(2121), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1105), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -184050,58 +186677,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1078] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3915), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1869), - [sym__unquoted_with_expr] = STATE(2107), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1078), + [1106] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(2333), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1875), + [sym__unquoted_with_expr] = STATE(2097), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1106), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -184133,58 +186760,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1079] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3933), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1870), - [sym__unquoted_with_expr] = STATE(2108), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1079), + [1107] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(2399), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2109), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(1538), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1881), + [sym__unquoted_with_expr] = STATE(2114), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1107), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -184216,58 +186843,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1080] = { - [sym_expr_unary] = STATE(2456), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2456), - [sym__expr_binary_expression] = STATE(2515), - [sym_expr_parenthesized] = STATE(2456), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7480), - [sym__value] = STATE(2456), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(2241), - [sym_val_variable] = STATE(2487), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(1573), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_unquoted] = STATE(2299), - [sym__unquoted_with_expr] = STATE(2518), - [sym__unquoted_anonymous_prefix] = STATE(7122), - [sym_comment] = STATE(1080), + [1108] = { + [sym_ctrl_do] = STATE(5145), + [sym_ctrl_if] = STATE(5145), + [sym_ctrl_match] = STATE(5145), + [sym_ctrl_try] = STATE(5145), + [sym__expression] = STATE(5145), + [sym_expr_unary] = STATE(2522), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2522), + [sym__expr_binary_expression] = STATE(3992), + [sym_expr_parenthesized] = STATE(2170), + [sym_val_range] = STATE(3995), + [sym__value] = STATE(2522), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(2481), + [sym_val_variable] = STATE(2126), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(3181), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_comment] = STATE(1108), + [ts_builtin_sym_end] = ACTIONS(3349), + [sym__newline] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_err_GT_PIPE] = ACTIONS(3349), + [anon_sym_out_GT_PIPE] = ACTIONS(3349), + [anon_sym_e_GT_PIPE] = ACTIONS(3349), + [anon_sym_o_GT_PIPE] = ACTIONS(3349), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3349), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3349), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3349), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3349), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_do] = ACTIONS(3459), + [anon_sym_if] = ACTIONS(3461), + [anon_sym_match] = ACTIONS(3463), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(3465), + [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(3467), + [anon_sym_true] = ACTIONS(3469), + [anon_sym_false] = ACTIONS(3469), + [aux_sym__val_number_decimal_token1] = ACTIONS(3447), + [aux_sym__val_number_decimal_token2] = ACTIONS(3449), + [aux_sym__val_number_decimal_token3] = ACTIONS(3451), + [aux_sym__val_number_decimal_token4] = ACTIONS(3453), + [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(99), + [aux_sym__val_number_token5] = ACTIONS(99), + [aux_sym__val_number_token6] = ACTIONS(99), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), + }, + [1109] = { + [sym_expr_unary] = STATE(2489), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2489), + [sym__expr_binary_expression] = STATE(2503), + [sym_expr_parenthesized] = STATE(2489), + [sym__val_range] = STATE(8160), + [sym__val_range_with_end] = STATE(7583), + [sym__value] = STATE(2489), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(2227), + [sym_val_variable] = STATE(2481), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(1625), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_unquoted] = STATE(2305), + [sym__unquoted_with_expr] = STATE(2504), + [sym__unquoted_anonymous_prefix] = STATE(7358), + [sym_comment] = STATE(1109), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(3367), [anon_sym_DOLLAR] = ACTIONS(3369), @@ -184277,80 +186987,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(83), [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [aux_sym__val_number_decimal_token1] = ACTIONS(3379), - [aux_sym__val_number_decimal_token2] = ACTIONS(3381), - [aux_sym__val_number_decimal_token3] = ACTIONS(3383), - [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [anon_sym_null] = ACTIONS(3443), + [anon_sym_true] = ACTIONS(3445), + [anon_sym_false] = ACTIONS(3445), + [aux_sym__val_number_decimal_token1] = ACTIONS(3447), + [aux_sym__val_number_decimal_token2] = ACTIONS(3449), + [aux_sym__val_number_decimal_token3] = ACTIONS(3451), + [aux_sym__val_number_decimal_token4] = ACTIONS(3453), [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(3387), - [aux_sym__val_number_token5] = ACTIONS(3387), - [aux_sym__val_number_token6] = ACTIONS(3387), + [aux_sym__val_number_token4] = ACTIONS(3455), + [aux_sym__val_number_token5] = ACTIONS(3455), + [aux_sym__val_number_token6] = ACTIONS(3455), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3389), + [sym_val_date] = ACTIONS(3457), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3391), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(121), }, - [1081] = { - [sym_expr_unary] = STATE(2456), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2456), - [sym__expr_binary_expression] = STATE(2522), - [sym_expr_parenthesized] = STATE(2456), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7480), - [sym__value] = STATE(2456), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(2241), - [sym_val_variable] = STATE(2487), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(1573), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_unquoted] = STATE(2303), - [sym__unquoted_with_expr] = STATE(2530), - [sym__unquoted_anonymous_prefix] = STATE(7122), - [sym_comment] = STATE(1081), + [1110] = { + [sym_expr_unary] = STATE(2489), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2489), + [sym__expr_binary_expression] = STATE(2505), + [sym_expr_parenthesized] = STATE(2489), + [sym__val_range] = STATE(8160), + [sym__val_range_with_end] = STATE(7583), + [sym__value] = STATE(2489), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(2227), + [sym_val_variable] = STATE(2481), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(1625), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_unquoted] = STATE(2308), + [sym__unquoted_with_expr] = STATE(2506), + [sym__unquoted_anonymous_prefix] = STATE(7358), + [sym_comment] = STATE(1110), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(3367), [anon_sym_DOLLAR] = ACTIONS(3369), @@ -184360,80 +187070,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(83), [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [aux_sym__val_number_decimal_token1] = ACTIONS(3379), - [aux_sym__val_number_decimal_token2] = ACTIONS(3381), - [aux_sym__val_number_decimal_token3] = ACTIONS(3383), - [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [anon_sym_null] = ACTIONS(3443), + [anon_sym_true] = ACTIONS(3445), + [anon_sym_false] = ACTIONS(3445), + [aux_sym__val_number_decimal_token1] = ACTIONS(3447), + [aux_sym__val_number_decimal_token2] = ACTIONS(3449), + [aux_sym__val_number_decimal_token3] = ACTIONS(3451), + [aux_sym__val_number_decimal_token4] = ACTIONS(3453), [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(3387), - [aux_sym__val_number_token5] = ACTIONS(3387), - [aux_sym__val_number_token6] = ACTIONS(3387), + [aux_sym__val_number_token4] = ACTIONS(3455), + [aux_sym__val_number_token5] = ACTIONS(3455), + [aux_sym__val_number_token6] = ACTIONS(3455), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3389), + [sym_val_date] = ACTIONS(3457), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3391), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(121), }, - [1082] = { - [sym_expr_unary] = STATE(2456), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2456), - [sym__expr_binary_expression] = STATE(2531), - [sym_expr_parenthesized] = STATE(2456), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7480), - [sym__value] = STATE(2456), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(2241), - [sym_val_variable] = STATE(2487), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(1573), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_unquoted] = STATE(2238), - [sym__unquoted_with_expr] = STATE(2533), - [sym__unquoted_anonymous_prefix] = STATE(7122), - [sym_comment] = STATE(1082), + [1111] = { + [sym_expr_unary] = STATE(2489), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2489), + [sym__expr_binary_expression] = STATE(2507), + [sym_expr_parenthesized] = STATE(2489), + [sym__val_range] = STATE(8160), + [sym__val_range_with_end] = STATE(7583), + [sym__value] = STATE(2489), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(2227), + [sym_val_variable] = STATE(2481), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(1625), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_unquoted] = STATE(2181), + [sym__unquoted_with_expr] = STATE(2508), + [sym__unquoted_anonymous_prefix] = STATE(7358), + [sym_comment] = STATE(1111), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(3367), [anon_sym_DOLLAR] = ACTIONS(3369), @@ -184443,80 +187153,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(83), [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [aux_sym__val_number_decimal_token1] = ACTIONS(3379), - [aux_sym__val_number_decimal_token2] = ACTIONS(3381), - [aux_sym__val_number_decimal_token3] = ACTIONS(3383), - [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [anon_sym_null] = ACTIONS(3443), + [anon_sym_true] = ACTIONS(3445), + [anon_sym_false] = ACTIONS(3445), + [aux_sym__val_number_decimal_token1] = ACTIONS(3447), + [aux_sym__val_number_decimal_token2] = ACTIONS(3449), + [aux_sym__val_number_decimal_token3] = ACTIONS(3451), + [aux_sym__val_number_decimal_token4] = ACTIONS(3453), [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(3387), - [aux_sym__val_number_token5] = ACTIONS(3387), - [aux_sym__val_number_token6] = ACTIONS(3387), + [aux_sym__val_number_token4] = ACTIONS(3455), + [aux_sym__val_number_token5] = ACTIONS(3455), + [aux_sym__val_number_token6] = ACTIONS(3455), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3389), + [sym_val_date] = ACTIONS(3457), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3391), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(121), }, - [1083] = { - [sym_expr_unary] = STATE(2456), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2456), - [sym__expr_binary_expression] = STATE(2534), - [sym_expr_parenthesized] = STATE(2456), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7480), - [sym__value] = STATE(2456), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(2241), - [sym_val_variable] = STATE(2487), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(1573), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_unquoted] = STATE(2158), - [sym__unquoted_with_expr] = STATE(2517), - [sym__unquoted_anonymous_prefix] = STATE(7122), - [sym_comment] = STATE(1083), + [1112] = { + [sym_expr_unary] = STATE(2489), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2489), + [sym__expr_binary_expression] = STATE(2509), + [sym_expr_parenthesized] = STATE(2489), + [sym__val_range] = STATE(8160), + [sym__val_range_with_end] = STATE(7583), + [sym__value] = STATE(2489), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(2227), + [sym_val_variable] = STATE(2481), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(1625), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_unquoted] = STATE(2183), + [sym__unquoted_with_expr] = STATE(2510), + [sym__unquoted_anonymous_prefix] = STATE(7358), + [sym_comment] = STATE(1112), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(3367), [anon_sym_DOLLAR] = ACTIONS(3369), @@ -184526,495 +187236,329 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(83), [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [aux_sym__val_number_decimal_token1] = ACTIONS(3379), - [aux_sym__val_number_decimal_token2] = ACTIONS(3381), - [aux_sym__val_number_decimal_token3] = ACTIONS(3383), - [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [anon_sym_null] = ACTIONS(3443), + [anon_sym_true] = ACTIONS(3445), + [anon_sym_false] = ACTIONS(3445), + [aux_sym__val_number_decimal_token1] = ACTIONS(3447), + [aux_sym__val_number_decimal_token2] = ACTIONS(3449), + [aux_sym__val_number_decimal_token3] = ACTIONS(3451), + [aux_sym__val_number_decimal_token4] = ACTIONS(3453), [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(3387), - [aux_sym__val_number_token5] = ACTIONS(3387), - [aux_sym__val_number_token6] = ACTIONS(3387), + [aux_sym__val_number_token4] = ACTIONS(3455), + [aux_sym__val_number_token5] = ACTIONS(3455), + [aux_sym__val_number_token6] = ACTIONS(3455), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3389), + [sym_val_date] = ACTIONS(3457), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3391), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(121), }, - [1084] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3298), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1858), - [sym__unquoted_with_expr] = STATE(2095), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1084), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [1085] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3299), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1859), - [sym__unquoted_with_expr] = STATE(2096), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1085), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [1086] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3300), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1860), - [sym__unquoted_with_expr] = STATE(2097), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1086), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3313), + [1113] = { + [sym_expr_unary] = STATE(2489), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2489), + [sym__expr_binary_expression] = STATE(2553), + [sym_expr_parenthesized] = STATE(2489), + [sym__val_range] = STATE(8160), + [sym__val_range_with_end] = STATE(7583), + [sym__value] = STATE(2489), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(2227), + [sym_val_variable] = STATE(2481), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(1625), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_unquoted] = STATE(2290), + [sym__unquoted_with_expr] = STATE(2512), + [sym__unquoted_anonymous_prefix] = STATE(7358), + [sym_comment] = STATE(1113), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3443), + [anon_sym_true] = ACTIONS(3445), + [anon_sym_false] = ACTIONS(3445), + [aux_sym__val_number_decimal_token1] = ACTIONS(3447), + [aux_sym__val_number_decimal_token2] = ACTIONS(3449), + [aux_sym__val_number_decimal_token3] = ACTIONS(3451), + [aux_sym__val_number_decimal_token4] = ACTIONS(3453), + [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(3455), + [aux_sym__val_number_token5] = ACTIONS(3455), + [aux_sym__val_number_token6] = ACTIONS(3455), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3457), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3391), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [sym_raw_string_begin] = ACTIONS(121), }, - [1087] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3301), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1861), - [sym__unquoted_with_expr] = STATE(2098), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1087), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3313), + [1114] = { + [sym_expr_unary] = STATE(2489), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2489), + [sym__expr_binary_expression] = STATE(2492), + [sym_expr_parenthesized] = STATE(2489), + [sym__val_range] = STATE(8160), + [sym__val_range_with_end] = STATE(7583), + [sym__value] = STATE(2489), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(2227), + [sym_val_variable] = STATE(2481), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(1625), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_unquoted] = STATE(2277), + [sym__unquoted_with_expr] = STATE(2493), + [sym__unquoted_anonymous_prefix] = STATE(7358), + [sym_comment] = STATE(1114), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3443), + [anon_sym_true] = ACTIONS(3445), + [anon_sym_false] = ACTIONS(3445), + [aux_sym__val_number_decimal_token1] = ACTIONS(3447), + [aux_sym__val_number_decimal_token2] = ACTIONS(3449), + [aux_sym__val_number_decimal_token3] = ACTIONS(3451), + [aux_sym__val_number_decimal_token4] = ACTIONS(3453), + [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(3455), + [aux_sym__val_number_token5] = ACTIONS(3455), + [aux_sym__val_number_token6] = ACTIONS(3455), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3457), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3391), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [sym_raw_string_begin] = ACTIONS(121), }, - [1088] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3302), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1862), - [sym__unquoted_with_expr] = STATE(2099), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1088), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_DOLLAR] = ACTIONS(3291), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3297), - [anon_sym_true] = ACTIONS(3299), - [anon_sym_false] = ACTIONS(3299), - [aux_sym__val_number_decimal_token1] = ACTIONS(3301), - [aux_sym__val_number_decimal_token2] = ACTIONS(3303), - [aux_sym__val_number_decimal_token3] = ACTIONS(3305), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3309), - [aux_sym__val_number_token5] = ACTIONS(3309), - [aux_sym__val_number_token6] = ACTIONS(3309), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3313), + [1115] = { + [sym_expr_unary] = STATE(2489), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2489), + [sym__expr_binary_expression] = STATE(2519), + [sym_expr_parenthesized] = STATE(2489), + [sym__val_range] = STATE(8160), + [sym__val_range_with_end] = STATE(7583), + [sym__value] = STATE(2489), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(2227), + [sym_val_variable] = STATE(2481), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(1625), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_unquoted] = STATE(2315), + [sym__unquoted_with_expr] = STATE(2520), + [sym__unquoted_anonymous_prefix] = STATE(7358), + [sym_comment] = STATE(1115), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3371), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), + [anon_sym_DOT_DOT_LT] = ACTIONS(3373), + [anon_sym_null] = ACTIONS(3443), + [anon_sym_true] = ACTIONS(3445), + [anon_sym_false] = ACTIONS(3445), + [aux_sym__val_number_decimal_token1] = ACTIONS(3447), + [aux_sym__val_number_decimal_token2] = ACTIONS(3449), + [aux_sym__val_number_decimal_token3] = ACTIONS(3451), + [aux_sym__val_number_decimal_token4] = ACTIONS(3453), + [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(3455), + [aux_sym__val_number_token5] = ACTIONS(3455), + [aux_sym__val_number_token6] = ACTIONS(3455), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3457), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3391), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [sym_raw_string_begin] = ACTIONS(121), }, - [1089] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3303), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1863), - [sym__unquoted_with_expr] = STATE(2100), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1089), + [1116] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3296), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1884), + [sym__unquoted_with_expr] = STATE(2111), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1116), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -185046,58 +187590,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1090] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3304), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1864), - [sym__unquoted_with_expr] = STATE(2101), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1090), + [1117] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3297), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1892), + [sym__unquoted_with_expr] = STATE(2117), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1117), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -185129,58 +187673,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1091] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3305), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1865), - [sym__unquoted_with_expr] = STATE(2102), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1091), + [1118] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3298), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1948), + [sym__unquoted_with_expr] = STATE(2122), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1118), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -185212,58 +187756,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1092] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(2103), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1866), - [sym__unquoted_with_expr] = STATE(2104), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1092), + [1119] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3299), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1952), + [sym__unquoted_with_expr] = STATE(2132), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1119), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -185295,58 +187839,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1093] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3306), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1867), - [sym__unquoted_with_expr] = STATE(2105), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1093), + [1120] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3300), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1962), + [sym__unquoted_with_expr] = STATE(2162), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1120), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -185378,58 +187922,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1094] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3307), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1868), - [sym__unquoted_with_expr] = STATE(2106), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1094), + [1121] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3301), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1969), + [sym__unquoted_with_expr] = STATE(2174), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1121), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -185461,58 +188005,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1095] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3308), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1869), - [sym__unquoted_with_expr] = STATE(2107), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1095), + [1122] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3302), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1861), + [sym__unquoted_with_expr] = STATE(2158), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1122), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -185544,58 +188088,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1096] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3309), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3178), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(2995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1870), - [sym__unquoted_with_expr] = STATE(2108), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1096), + [1123] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3303), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1862), + [sym__unquoted_with_expr] = STATE(2161), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1123), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -185627,307 +188171,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1097] = { - [sym_expr_unary] = STATE(2456), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2456), - [sym__expr_binary_expression] = STATE(2482), - [sym_expr_parenthesized] = STATE(2456), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7480), - [sym__value] = STATE(2456), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(2241), - [sym_val_variable] = STATE(2487), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(1573), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_unquoted] = STATE(2283), - [sym__unquoted_with_expr] = STATE(2486), - [sym__unquoted_anonymous_prefix] = STATE(7122), - [sym_comment] = STATE(1097), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [aux_sym__val_number_decimal_token1] = ACTIONS(3379), - [aux_sym__val_number_decimal_token2] = ACTIONS(3381), - [aux_sym__val_number_decimal_token3] = ACTIONS(3383), - [aux_sym__val_number_decimal_token4] = ACTIONS(3385), - [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(3387), - [aux_sym__val_number_token5] = ACTIONS(3387), - [aux_sym__val_number_token6] = ACTIONS(3387), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3389), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1098] = { - [sym_expr_unary] = STATE(2456), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2456), - [sym__expr_binary_expression] = STATE(2477), - [sym_expr_parenthesized] = STATE(2456), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7480), - [sym__value] = STATE(2456), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(2241), - [sym_val_variable] = STATE(2487), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(1573), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_unquoted] = STATE(2280), - [sym__unquoted_with_expr] = STATE(2481), - [sym__unquoted_anonymous_prefix] = STATE(7122), - [sym_comment] = STATE(1098), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [aux_sym__val_number_decimal_token1] = ACTIONS(3379), - [aux_sym__val_number_decimal_token2] = ACTIONS(3381), - [aux_sym__val_number_decimal_token3] = ACTIONS(3383), - [aux_sym__val_number_decimal_token4] = ACTIONS(3385), - [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(3387), - [aux_sym__val_number_token5] = ACTIONS(3387), - [aux_sym__val_number_token6] = ACTIONS(3387), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3389), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3391), + [1124] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(2135), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1866), + [sym__unquoted_with_expr] = STATE(2113), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1124), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [sym_raw_string_begin] = ACTIONS(435), }, - [1099] = { - [sym_ctrl_do] = STATE(4987), - [sym_ctrl_if] = STATE(4987), - [sym_ctrl_match] = STATE(4987), - [sym_ctrl_try] = STATE(4987), - [sym__expression] = STATE(4987), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3969), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3152), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_comment] = STATE(1099), - [sym__newline] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_err_GT_PIPE] = ACTIONS(3349), - [anon_sym_out_GT_PIPE] = ACTIONS(3349), - [anon_sym_e_GT_PIPE] = ACTIONS(3349), - [anon_sym_o_GT_PIPE] = ACTIONS(3349), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3349), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3349), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3349), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3349), + [1125] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3304), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1872), + [sym__unquoted_with_expr] = STATE(2098), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1125), [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_RPAREN] = ACTIONS(3349), - [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_do] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3393), - [anon_sym_match] = ACTIONS(3355), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(3357), + [anon_sym_DOT_DOT] = ACTIONS(3293), [aux_sym_expr_unary_token1] = ACTIONS(203), - [anon_sym_DOT_DOT_EQ] = ACTIONS(209), - [anon_sym_DOT_DOT_LT] = ACTIONS(209), - [anon_sym_null] = ACTIONS(3359), - [anon_sym_true] = ACTIONS(3361), - [anon_sym_false] = ACTIONS(3361), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(427), - [aux_sym__val_number_token5] = ACTIONS(427), - [aux_sym__val_number_token6] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(233), + [sym_val_date] = ACTIONS(3311), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1100] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3944), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3753), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3417), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1858), - [sym__unquoted_with_expr] = STATE(2095), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1100), + [1126] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3305), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1874), + [sym__unquoted_with_expr] = STATE(2121), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1126), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -185937,80 +188398,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3395), - [anon_sym_true] = ACTIONS(3397), - [anon_sym_false] = ACTIONS(3397), - [aux_sym__val_number_decimal_token1] = ACTIONS(3399), - [aux_sym__val_number_decimal_token2] = ACTIONS(3401), - [aux_sym__val_number_decimal_token3] = ACTIONS(3403), - [aux_sym__val_number_decimal_token4] = ACTIONS(3405), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3407), - [aux_sym__val_number_token5] = ACTIONS(3407), - [aux_sym__val_number_token6] = ACTIONS(3407), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3409), + [sym_val_date] = ACTIONS(3311), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1101] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3923), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3753), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3417), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1859), - [sym__unquoted_with_expr] = STATE(2096), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1101), + [1127] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3306), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1875), + [sym__unquoted_with_expr] = STATE(2097), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1127), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -186020,80 +188481,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3395), - [anon_sym_true] = ACTIONS(3397), - [anon_sym_false] = ACTIONS(3397), - [aux_sym__val_number_decimal_token1] = ACTIONS(3399), - [aux_sym__val_number_decimal_token2] = ACTIONS(3401), - [aux_sym__val_number_decimal_token3] = ACTIONS(3403), - [aux_sym__val_number_decimal_token4] = ACTIONS(3405), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3407), - [aux_sym__val_number_token5] = ACTIONS(3407), - [aux_sym__val_number_token6] = ACTIONS(3407), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3409), + [sym_val_date] = ACTIONS(3311), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1102] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3946), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3753), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3417), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1860), - [sym__unquoted_with_expr] = STATE(2097), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1102), + [1128] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3307), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3190), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(2984), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1881), + [sym__unquoted_with_expr] = STATE(2114), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1128), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -186103,80 +188564,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3395), - [anon_sym_true] = ACTIONS(3397), - [anon_sym_false] = ACTIONS(3397), - [aux_sym__val_number_decimal_token1] = ACTIONS(3399), - [aux_sym__val_number_decimal_token2] = ACTIONS(3401), - [aux_sym__val_number_decimal_token3] = ACTIONS(3403), - [aux_sym__val_number_decimal_token4] = ACTIONS(3405), + [anon_sym_null] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [aux_sym__val_number_decimal_token1] = ACTIONS(3301), + [aux_sym__val_number_decimal_token2] = ACTIONS(3303), + [aux_sym__val_number_decimal_token3] = ACTIONS(3305), + [aux_sym__val_number_decimal_token4] = ACTIONS(3307), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3407), - [aux_sym__val_number_token5] = ACTIONS(3407), - [aux_sym__val_number_token6] = ACTIONS(3407), + [aux_sym__val_number_token4] = ACTIONS(3309), + [aux_sym__val_number_token5] = ACTIONS(3309), + [aux_sym__val_number_token6] = ACTIONS(3309), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3409), + [sym_val_date] = ACTIONS(3311), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1103] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3931), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3753), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3417), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1861), - [sym__unquoted_with_expr] = STATE(2098), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1103), + [1129] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3966), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3800), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3459), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1884), + [sym__unquoted_with_expr] = STATE(2111), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1129), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -186186,80 +188647,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3395), - [anon_sym_true] = ACTIONS(3397), - [anon_sym_false] = ACTIONS(3397), - [aux_sym__val_number_decimal_token1] = ACTIONS(3399), - [aux_sym__val_number_decimal_token2] = ACTIONS(3401), - [aux_sym__val_number_decimal_token3] = ACTIONS(3403), - [aux_sym__val_number_decimal_token4] = ACTIONS(3405), + [anon_sym_null] = ACTIONS(3471), + [anon_sym_true] = ACTIONS(3473), + [anon_sym_false] = ACTIONS(3473), + [aux_sym__val_number_decimal_token1] = ACTIONS(3475), + [aux_sym__val_number_decimal_token2] = ACTIONS(3477), + [aux_sym__val_number_decimal_token3] = ACTIONS(3479), + [aux_sym__val_number_decimal_token4] = ACTIONS(3481), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3407), - [aux_sym__val_number_token5] = ACTIONS(3407), - [aux_sym__val_number_token6] = ACTIONS(3407), + [aux_sym__val_number_token4] = ACTIONS(3483), + [aux_sym__val_number_token5] = ACTIONS(3483), + [aux_sym__val_number_token6] = ACTIONS(3483), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3409), + [sym_val_date] = ACTIONS(3485), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1104] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3924), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3753), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3417), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1862), - [sym__unquoted_with_expr] = STATE(2099), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1104), + [1130] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3967), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3800), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3459), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1892), + [sym__unquoted_with_expr] = STATE(2117), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1130), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -186269,80 +188730,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3395), - [anon_sym_true] = ACTIONS(3397), - [anon_sym_false] = ACTIONS(3397), - [aux_sym__val_number_decimal_token1] = ACTIONS(3399), - [aux_sym__val_number_decimal_token2] = ACTIONS(3401), - [aux_sym__val_number_decimal_token3] = ACTIONS(3403), - [aux_sym__val_number_decimal_token4] = ACTIONS(3405), + [anon_sym_null] = ACTIONS(3471), + [anon_sym_true] = ACTIONS(3473), + [anon_sym_false] = ACTIONS(3473), + [aux_sym__val_number_decimal_token1] = ACTIONS(3475), + [aux_sym__val_number_decimal_token2] = ACTIONS(3477), + [aux_sym__val_number_decimal_token3] = ACTIONS(3479), + [aux_sym__val_number_decimal_token4] = ACTIONS(3481), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3407), - [aux_sym__val_number_token5] = ACTIONS(3407), - [aux_sym__val_number_token6] = ACTIONS(3407), + [aux_sym__val_number_token4] = ACTIONS(3483), + [aux_sym__val_number_token5] = ACTIONS(3483), + [aux_sym__val_number_token6] = ACTIONS(3483), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3409), + [sym_val_date] = ACTIONS(3485), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1105] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3939), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3753), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3417), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1863), - [sym__unquoted_with_expr] = STATE(2100), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1105), + [1131] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3968), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3800), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3459), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1948), + [sym__unquoted_with_expr] = STATE(2122), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1131), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -186352,80 +188813,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3395), - [anon_sym_true] = ACTIONS(3397), - [anon_sym_false] = ACTIONS(3397), - [aux_sym__val_number_decimal_token1] = ACTIONS(3399), - [aux_sym__val_number_decimal_token2] = ACTIONS(3401), - [aux_sym__val_number_decimal_token3] = ACTIONS(3403), - [aux_sym__val_number_decimal_token4] = ACTIONS(3405), + [anon_sym_null] = ACTIONS(3471), + [anon_sym_true] = ACTIONS(3473), + [anon_sym_false] = ACTIONS(3473), + [aux_sym__val_number_decimal_token1] = ACTIONS(3475), + [aux_sym__val_number_decimal_token2] = ACTIONS(3477), + [aux_sym__val_number_decimal_token3] = ACTIONS(3479), + [aux_sym__val_number_decimal_token4] = ACTIONS(3481), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3407), - [aux_sym__val_number_token5] = ACTIONS(3407), - [aux_sym__val_number_token6] = ACTIONS(3407), + [aux_sym__val_number_token4] = ACTIONS(3483), + [aux_sym__val_number_token5] = ACTIONS(3483), + [aux_sym__val_number_token6] = ACTIONS(3483), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3409), + [sym_val_date] = ACTIONS(3485), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1106] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3943), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3753), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3417), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1864), - [sym__unquoted_with_expr] = STATE(2101), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1106), + [1132] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3947), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3800), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3459), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1952), + [sym__unquoted_with_expr] = STATE(2132), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1132), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -186435,80 +188896,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3395), - [anon_sym_true] = ACTIONS(3397), - [anon_sym_false] = ACTIONS(3397), - [aux_sym__val_number_decimal_token1] = ACTIONS(3399), - [aux_sym__val_number_decimal_token2] = ACTIONS(3401), - [aux_sym__val_number_decimal_token3] = ACTIONS(3403), - [aux_sym__val_number_decimal_token4] = ACTIONS(3405), + [anon_sym_null] = ACTIONS(3471), + [anon_sym_true] = ACTIONS(3473), + [anon_sym_false] = ACTIONS(3473), + [aux_sym__val_number_decimal_token1] = ACTIONS(3475), + [aux_sym__val_number_decimal_token2] = ACTIONS(3477), + [aux_sym__val_number_decimal_token3] = ACTIONS(3479), + [aux_sym__val_number_decimal_token4] = ACTIONS(3481), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3407), - [aux_sym__val_number_token5] = ACTIONS(3407), - [aux_sym__val_number_token6] = ACTIONS(3407), + [aux_sym__val_number_token4] = ACTIONS(3483), + [aux_sym__val_number_token5] = ACTIONS(3483), + [aux_sym__val_number_token6] = ACTIONS(3483), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3409), + [sym_val_date] = ACTIONS(3485), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1107] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), + [1133] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), [sym__expr_binary_expression] = STATE(3948), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3753), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3417), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1865), - [sym__unquoted_with_expr] = STATE(2102), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1107), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3800), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3459), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1962), + [sym__unquoted_with_expr] = STATE(2162), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1133), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -186518,80 +188979,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3395), - [anon_sym_true] = ACTIONS(3397), - [anon_sym_false] = ACTIONS(3397), - [aux_sym__val_number_decimal_token1] = ACTIONS(3399), - [aux_sym__val_number_decimal_token2] = ACTIONS(3401), - [aux_sym__val_number_decimal_token3] = ACTIONS(3403), - [aux_sym__val_number_decimal_token4] = ACTIONS(3405), + [anon_sym_null] = ACTIONS(3471), + [anon_sym_true] = ACTIONS(3473), + [anon_sym_false] = ACTIONS(3473), + [aux_sym__val_number_decimal_token1] = ACTIONS(3475), + [aux_sym__val_number_decimal_token2] = ACTIONS(3477), + [aux_sym__val_number_decimal_token3] = ACTIONS(3479), + [aux_sym__val_number_decimal_token4] = ACTIONS(3481), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3407), - [aux_sym__val_number_token5] = ACTIONS(3407), - [aux_sym__val_number_token6] = ACTIONS(3407), + [aux_sym__val_number_token4] = ACTIONS(3483), + [aux_sym__val_number_token5] = ACTIONS(3483), + [aux_sym__val_number_token6] = ACTIONS(3483), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3409), + [sym_val_date] = ACTIONS(3485), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1108] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(2103), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3753), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3417), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1866), - [sym__unquoted_with_expr] = STATE(2104), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1108), + [1134] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3933), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3800), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3459), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1969), + [sym__unquoted_with_expr] = STATE(2174), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1134), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -186601,80 +189062,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3395), - [anon_sym_true] = ACTIONS(3397), - [anon_sym_false] = ACTIONS(3397), - [aux_sym__val_number_decimal_token1] = ACTIONS(3399), - [aux_sym__val_number_decimal_token2] = ACTIONS(3401), - [aux_sym__val_number_decimal_token3] = ACTIONS(3403), - [aux_sym__val_number_decimal_token4] = ACTIONS(3405), + [anon_sym_null] = ACTIONS(3471), + [anon_sym_true] = ACTIONS(3473), + [anon_sym_false] = ACTIONS(3473), + [aux_sym__val_number_decimal_token1] = ACTIONS(3475), + [aux_sym__val_number_decimal_token2] = ACTIONS(3477), + [aux_sym__val_number_decimal_token3] = ACTIONS(3479), + [aux_sym__val_number_decimal_token4] = ACTIONS(3481), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3407), - [aux_sym__val_number_token5] = ACTIONS(3407), - [aux_sym__val_number_token6] = ACTIONS(3407), + [aux_sym__val_number_token4] = ACTIONS(3483), + [aux_sym__val_number_token5] = ACTIONS(3483), + [aux_sym__val_number_token6] = ACTIONS(3483), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3409), + [sym_val_date] = ACTIONS(3485), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1109] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3917), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3753), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3417), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1867), - [sym__unquoted_with_expr] = STATE(2105), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1109), + [1135] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3934), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3800), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3459), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1861), + [sym__unquoted_with_expr] = STATE(2158), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1135), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -186684,80 +189145,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3395), - [anon_sym_true] = ACTIONS(3397), - [anon_sym_false] = ACTIONS(3397), - [aux_sym__val_number_decimal_token1] = ACTIONS(3399), - [aux_sym__val_number_decimal_token2] = ACTIONS(3401), - [aux_sym__val_number_decimal_token3] = ACTIONS(3403), - [aux_sym__val_number_decimal_token4] = ACTIONS(3405), + [anon_sym_null] = ACTIONS(3471), + [anon_sym_true] = ACTIONS(3473), + [anon_sym_false] = ACTIONS(3473), + [aux_sym__val_number_decimal_token1] = ACTIONS(3475), + [aux_sym__val_number_decimal_token2] = ACTIONS(3477), + [aux_sym__val_number_decimal_token3] = ACTIONS(3479), + [aux_sym__val_number_decimal_token4] = ACTIONS(3481), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3407), - [aux_sym__val_number_token5] = ACTIONS(3407), - [aux_sym__val_number_token6] = ACTIONS(3407), + [aux_sym__val_number_token4] = ACTIONS(3483), + [aux_sym__val_number_token5] = ACTIONS(3483), + [aux_sym__val_number_token6] = ACTIONS(3483), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3409), + [sym_val_date] = ACTIONS(3485), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1110] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3922), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3753), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3417), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1868), - [sym__unquoted_with_expr] = STATE(2106), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1110), + [1136] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3935), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3800), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3459), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1862), + [sym__unquoted_with_expr] = STATE(2161), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1136), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -186767,80 +189228,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3395), - [anon_sym_true] = ACTIONS(3397), - [anon_sym_false] = ACTIONS(3397), - [aux_sym__val_number_decimal_token1] = ACTIONS(3399), - [aux_sym__val_number_decimal_token2] = ACTIONS(3401), - [aux_sym__val_number_decimal_token3] = ACTIONS(3403), - [aux_sym__val_number_decimal_token4] = ACTIONS(3405), + [anon_sym_null] = ACTIONS(3471), + [anon_sym_true] = ACTIONS(3473), + [anon_sym_false] = ACTIONS(3473), + [aux_sym__val_number_decimal_token1] = ACTIONS(3475), + [aux_sym__val_number_decimal_token2] = ACTIONS(3477), + [aux_sym__val_number_decimal_token3] = ACTIONS(3479), + [aux_sym__val_number_decimal_token4] = ACTIONS(3481), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3407), - [aux_sym__val_number_token5] = ACTIONS(3407), - [aux_sym__val_number_token6] = ACTIONS(3407), + [aux_sym__val_number_token4] = ACTIONS(3483), + [aux_sym__val_number_token5] = ACTIONS(3483), + [aux_sym__val_number_token6] = ACTIONS(3483), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3409), + [sym_val_date] = ACTIONS(3485), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1111] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3926), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3753), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3417), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1869), - [sym__unquoted_with_expr] = STATE(2107), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1111), + [1137] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(2135), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3800), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3459), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1866), + [sym__unquoted_with_expr] = STATE(2113), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1137), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -186850,80 +189311,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3395), - [anon_sym_true] = ACTIONS(3397), - [anon_sym_false] = ACTIONS(3397), - [aux_sym__val_number_decimal_token1] = ACTIONS(3399), - [aux_sym__val_number_decimal_token2] = ACTIONS(3401), - [aux_sym__val_number_decimal_token3] = ACTIONS(3403), - [aux_sym__val_number_decimal_token4] = ACTIONS(3405), + [anon_sym_null] = ACTIONS(3471), + [anon_sym_true] = ACTIONS(3473), + [anon_sym_false] = ACTIONS(3473), + [aux_sym__val_number_decimal_token1] = ACTIONS(3475), + [aux_sym__val_number_decimal_token2] = ACTIONS(3477), + [aux_sym__val_number_decimal_token3] = ACTIONS(3479), + [aux_sym__val_number_decimal_token4] = ACTIONS(3481), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3407), - [aux_sym__val_number_token5] = ACTIONS(3407), - [aux_sym__val_number_token6] = ACTIONS(3407), + [aux_sym__val_number_token4] = ACTIONS(3483), + [aux_sym__val_number_token5] = ACTIONS(3483), + [aux_sym__val_number_token6] = ACTIONS(3483), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3409), + [sym_val_date] = ACTIONS(3485), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1112] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3928), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3753), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3417), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1870), - [sym__unquoted_with_expr] = STATE(2108), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1112), + [1138] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3936), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3800), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3459), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1872), + [sym__unquoted_with_expr] = STATE(2098), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1138), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -186933,80 +189394,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3395), - [anon_sym_true] = ACTIONS(3397), - [anon_sym_false] = ACTIONS(3397), - [aux_sym__val_number_decimal_token1] = ACTIONS(3399), - [aux_sym__val_number_decimal_token2] = ACTIONS(3401), - [aux_sym__val_number_decimal_token3] = ACTIONS(3403), - [aux_sym__val_number_decimal_token4] = ACTIONS(3405), + [anon_sym_null] = ACTIONS(3471), + [anon_sym_true] = ACTIONS(3473), + [anon_sym_false] = ACTIONS(3473), + [aux_sym__val_number_decimal_token1] = ACTIONS(3475), + [aux_sym__val_number_decimal_token2] = ACTIONS(3477), + [aux_sym__val_number_decimal_token3] = ACTIONS(3479), + [aux_sym__val_number_decimal_token4] = ACTIONS(3481), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3407), - [aux_sym__val_number_token5] = ACTIONS(3407), - [aux_sym__val_number_token6] = ACTIONS(3407), + [aux_sym__val_number_token4] = ACTIONS(3483), + [aux_sym__val_number_token5] = ACTIONS(3483), + [aux_sym__val_number_token6] = ACTIONS(3483), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3409), + [sym_val_date] = ACTIONS(3485), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1113] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3936), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1858), - [sym__unquoted_with_expr] = STATE(2095), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1113), + [1139] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3937), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3800), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3459), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1874), + [sym__unquoted_with_expr] = STATE(2121), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1139), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -187016,80 +189477,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3471), + [anon_sym_true] = ACTIONS(3473), + [anon_sym_false] = ACTIONS(3473), + [aux_sym__val_number_decimal_token1] = ACTIONS(3475), + [aux_sym__val_number_decimal_token2] = ACTIONS(3477), + [aux_sym__val_number_decimal_token3] = ACTIONS(3479), + [aux_sym__val_number_decimal_token4] = ACTIONS(3481), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3483), + [aux_sym__val_number_token5] = ACTIONS(3483), + [aux_sym__val_number_token6] = ACTIONS(3483), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), + [sym_val_date] = ACTIONS(3485), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1114] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(2330), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1858), - [sym__unquoted_with_expr] = STATE(2095), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1114), + [1140] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3938), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3800), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3459), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1875), + [sym__unquoted_with_expr] = STATE(2097), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1140), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -187099,80 +189560,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3471), + [anon_sym_true] = ACTIONS(3473), + [anon_sym_false] = ACTIONS(3473), + [aux_sym__val_number_decimal_token1] = ACTIONS(3475), + [aux_sym__val_number_decimal_token2] = ACTIONS(3477), + [aux_sym__val_number_decimal_token3] = ACTIONS(3479), + [aux_sym__val_number_decimal_token4] = ACTIONS(3481), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3483), + [aux_sym__val_number_token5] = ACTIONS(3483), + [aux_sym__val_number_token6] = ACTIONS(3483), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3485), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1115] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(2306), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1859), - [sym__unquoted_with_expr] = STATE(2096), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1115), + [1141] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3939), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3800), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3459), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1881), + [sym__unquoted_with_expr] = STATE(2114), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1141), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -187182,80 +189643,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3471), + [anon_sym_true] = ACTIONS(3473), + [anon_sym_false] = ACTIONS(3473), + [aux_sym__val_number_decimal_token1] = ACTIONS(3475), + [aux_sym__val_number_decimal_token2] = ACTIONS(3477), + [aux_sym__val_number_decimal_token3] = ACTIONS(3479), + [aux_sym__val_number_decimal_token4] = ACTIONS(3481), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3327), - [aux_sym__val_number_token5] = ACTIONS(3327), - [aux_sym__val_number_token6] = ACTIONS(3327), + [aux_sym__val_number_token4] = ACTIONS(3483), + [aux_sym__val_number_token5] = ACTIONS(3483), + [aux_sym__val_number_token6] = ACTIONS(3483), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3329), + [sym_val_date] = ACTIONS(3485), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1116] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(2331), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1860), - [sym__unquoted_with_expr] = STATE(2097), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1116), + [1142] = { + [sym_expr_unary] = STATE(3875), + [sym__expr_unary_minus] = STATE(3908), + [sym_expr_binary] = STATE(3875), + [sym__expr_binary_expression] = STATE(3876), + [sym_expr_parenthesized] = STATE(3875), + [sym__val_range] = STATE(7745), + [sym__val_range_with_end] = STATE(7624), + [sym__value] = STATE(3875), + [sym_val_nothing] = STATE(3510), + [sym_val_bool] = STATE(3651), + [sym_val_variable] = STATE(3510), + [sym_val_number] = STATE(3510), + [sym__val_number_decimal] = STATE(3403), + [sym__val_number] = STATE(3521), + [sym_val_duration] = STATE(3510), + [sym_val_filesize] = STATE(3510), + [sym_val_binary] = STATE(3510), + [sym_val_string] = STATE(3510), + [sym__raw_str] = STATE(3562), + [sym__str_double_quotes] = STATE(3562), + [sym_val_interpolated] = STATE(3510), + [sym__inter_single_quotes] = STATE(3540), + [sym__inter_double_quotes] = STATE(3518), + [sym_val_list] = STATE(3510), + [sym_val_record] = STATE(3510), + [sym_val_table] = STATE(3510), + [sym_val_closure] = STATE(3510), + [sym_unquoted] = STATE(3670), + [sym__unquoted_with_expr] = STATE(3877), + [sym__unquoted_anonymous_prefix] = STATE(6869), + [sym_comment] = STATE(1142), + [anon_sym_LBRACK] = ACTIONS(3393), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_DOLLAR] = ACTIONS(3397), + [anon_sym_DASH2] = ACTIONS(3399), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_DOT_DOT] = ACTIONS(3403), + [aux_sym_expr_unary_token1] = ACTIONS(3405), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), + [anon_sym_DOT_DOT_LT] = ACTIONS(3407), + [anon_sym_null] = ACTIONS(3409), + [anon_sym_true] = ACTIONS(3411), + [anon_sym_false] = ACTIONS(3411), + [aux_sym__val_number_decimal_token1] = ACTIONS(3413), + [aux_sym__val_number_decimal_token2] = ACTIONS(3415), + [aux_sym__val_number_decimal_token3] = ACTIONS(3417), + [aux_sym__val_number_decimal_token4] = ACTIONS(3419), + [aux_sym__val_number_token1] = ACTIONS(3421), + [aux_sym__val_number_token2] = ACTIONS(3421), + [aux_sym__val_number_token3] = ACTIONS(3421), + [aux_sym__val_number_token4] = ACTIONS(3423), + [aux_sym__val_number_token5] = ACTIONS(3423), + [aux_sym__val_number_token6] = ACTIONS(3423), + [anon_sym_0b] = ACTIONS(3425), + [anon_sym_0o] = ACTIONS(3427), + [anon_sym_0x] = ACTIONS(3427), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3431), + [sym__str_single_quotes] = ACTIONS(3433), + [sym__str_back_ticks] = ACTIONS(3433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3439), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3441), + }, + [1143] = { + [sym_ctrl_do] = STATE(4895), + [sym_ctrl_if] = STATE(4895), + [sym_ctrl_match] = STATE(4895), + [sym_ctrl_try] = STATE(4895), + [sym__expression] = STATE(4895), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3981), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3169), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_comment] = STATE(1143), + [sym__newline] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_err_GT_PIPE] = ACTIONS(3349), + [anon_sym_out_GT_PIPE] = ACTIONS(3349), + [anon_sym_e_GT_PIPE] = ACTIONS(3349), + [anon_sym_o_GT_PIPE] = ACTIONS(3349), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3349), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3349), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3349), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3349), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(3349), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3487), + [anon_sym_match] = ACTIONS(3355), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(3357), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(209), + [anon_sym_DOT_DOT_LT] = ACTIONS(209), + [anon_sym_null] = ACTIONS(3359), + [anon_sym_true] = ACTIONS(3361), + [anon_sym_false] = ACTIONS(3361), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(427), + [aux_sym__val_number_token5] = ACTIONS(427), + [aux_sym__val_number_token6] = ACTIONS(427), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [1144] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3957), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1884), + [sym__unquoted_with_expr] = STATE(2111), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1144), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -187287,58 +189914,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1117] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(2332), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1861), - [sym__unquoted_with_expr] = STATE(2098), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1117), + [1145] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3946), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1892), + [sym__unquoted_with_expr] = STATE(2117), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1145), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -187370,58 +189997,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1118] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(2333), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1862), - [sym__unquoted_with_expr] = STATE(2099), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1118), + [1146] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3960), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1948), + [sym__unquoted_with_expr] = STATE(2122), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1146), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -187453,58 +190080,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1119] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(2334), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1863), - [sym__unquoted_with_expr] = STATE(2100), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1119), + [1147] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3949), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1952), + [sym__unquoted_with_expr] = STATE(2132), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1147), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -187536,58 +190163,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1120] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(2335), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1864), - [sym__unquoted_with_expr] = STATE(2101), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1120), + [1148] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3952), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1962), + [sym__unquoted_with_expr] = STATE(2162), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -187619,58 +190246,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1121] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(2336), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1865), - [sym__unquoted_with_expr] = STATE(2102), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1121), + [1149] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3953), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1969), + [sym__unquoted_with_expr] = STATE(2174), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1149), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -187702,58 +190329,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1122] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(2103), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1866), - [sym__unquoted_with_expr] = STATE(2104), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1122), + [1150] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3954), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1861), + [sym__unquoted_with_expr] = STATE(2158), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1150), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -187785,58 +190412,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1123] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(2337), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1867), - [sym__unquoted_with_expr] = STATE(2105), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1123), + [1151] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3955), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1862), + [sym__unquoted_with_expr] = STATE(2161), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1151), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -187868,58 +190495,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1124] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(2338), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1868), - [sym__unquoted_with_expr] = STATE(2106), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1124), + [1152] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(2135), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1866), + [sym__unquoted_with_expr] = STATE(2113), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1152), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -187951,58 +190578,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1125] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(2339), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1869), - [sym__unquoted_with_expr] = STATE(2107), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1125), + [1153] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3964), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1872), + [sym__unquoted_with_expr] = STATE(2098), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1153), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -188034,58 +190661,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1126] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(2340), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2154), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(1533), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1870), - [sym__unquoted_with_expr] = STATE(2108), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1126), + [1154] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3959), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1874), + [sym__unquoted_with_expr] = STATE(2121), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1154), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -188117,971 +190744,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1127] = { - [sym_expr_unary] = STATE(2456), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2456), - [sym__expr_binary_expression] = STATE(2508), - [sym_expr_parenthesized] = STATE(2456), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7480), - [sym__value] = STATE(2456), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(2241), - [sym_val_variable] = STATE(2487), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(1573), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_unquoted] = STATE(2252), - [sym__unquoted_with_expr] = STATE(2447), - [sym__unquoted_anonymous_prefix] = STATE(7122), - [sym_comment] = STATE(1127), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [aux_sym__val_number_decimal_token1] = ACTIONS(3379), - [aux_sym__val_number_decimal_token2] = ACTIONS(3381), - [aux_sym__val_number_decimal_token3] = ACTIONS(3383), - [aux_sym__val_number_decimal_token4] = ACTIONS(3385), - [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(3387), - [aux_sym__val_number_token5] = ACTIONS(3387), - [aux_sym__val_number_token6] = ACTIONS(3387), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3389), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1128] = { - [sym_expr_unary] = STATE(2456), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2456), - [sym__expr_binary_expression] = STATE(3352), - [sym_expr_parenthesized] = STATE(2456), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7480), - [sym__value] = STATE(2456), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(3187), - [sym_val_variable] = STATE(2487), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(3000), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_unquoted] = STATE(2252), - [sym__unquoted_with_expr] = STATE(2447), - [sym__unquoted_anonymous_prefix] = STATE(7122), - [sym_comment] = STATE(1128), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3411), - [anon_sym_true] = ACTIONS(3413), - [anon_sym_false] = ACTIONS(3413), - [aux_sym__val_number_decimal_token1] = ACTIONS(3415), - [aux_sym__val_number_decimal_token2] = ACTIONS(3417), - [aux_sym__val_number_decimal_token3] = ACTIONS(3419), - [aux_sym__val_number_decimal_token4] = ACTIONS(3421), - [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(3423), - [aux_sym__val_number_token5] = ACTIONS(3423), - [aux_sym__val_number_token6] = ACTIONS(3423), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1129] = { - [sym_expr_unary] = STATE(2456), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2456), - [sym__expr_binary_expression] = STATE(3353), - [sym_expr_parenthesized] = STATE(2456), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7480), - [sym__value] = STATE(2456), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(3187), - [sym_val_variable] = STATE(2487), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(3000), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_unquoted] = STATE(2261), - [sym__unquoted_with_expr] = STATE(2459), - [sym__unquoted_anonymous_prefix] = STATE(7122), - [sym_comment] = STATE(1129), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3411), - [anon_sym_true] = ACTIONS(3413), - [anon_sym_false] = ACTIONS(3413), - [aux_sym__val_number_decimal_token1] = ACTIONS(3415), - [aux_sym__val_number_decimal_token2] = ACTIONS(3417), - [aux_sym__val_number_decimal_token3] = ACTIONS(3419), - [aux_sym__val_number_decimal_token4] = ACTIONS(3421), - [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(3423), - [aux_sym__val_number_token5] = ACTIONS(3423), - [aux_sym__val_number_token6] = ACTIONS(3423), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1130] = { - [sym_expr_unary] = STATE(2456), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2456), - [sym__expr_binary_expression] = STATE(3354), - [sym_expr_parenthesized] = STATE(2456), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7480), - [sym__value] = STATE(2456), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(3187), - [sym_val_variable] = STATE(2487), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(3000), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_unquoted] = STATE(2279), - [sym__unquoted_with_expr] = STATE(2476), - [sym__unquoted_anonymous_prefix] = STATE(7122), - [sym_comment] = STATE(1130), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3411), - [anon_sym_true] = ACTIONS(3413), - [anon_sym_false] = ACTIONS(3413), - [aux_sym__val_number_decimal_token1] = ACTIONS(3415), - [aux_sym__val_number_decimal_token2] = ACTIONS(3417), - [aux_sym__val_number_decimal_token3] = ACTIONS(3419), - [aux_sym__val_number_decimal_token4] = ACTIONS(3421), - [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(3423), - [aux_sym__val_number_token5] = ACTIONS(3423), - [aux_sym__val_number_token6] = ACTIONS(3423), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1131] = { - [sym_expr_unary] = STATE(2456), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2456), - [sym__expr_binary_expression] = STATE(3355), - [sym_expr_parenthesized] = STATE(2456), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7480), - [sym__value] = STATE(2456), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(3187), - [sym_val_variable] = STATE(2487), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(3000), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_unquoted] = STATE(2280), - [sym__unquoted_with_expr] = STATE(2481), - [sym__unquoted_anonymous_prefix] = STATE(7122), - [sym_comment] = STATE(1131), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3411), - [anon_sym_true] = ACTIONS(3413), - [anon_sym_false] = ACTIONS(3413), - [aux_sym__val_number_decimal_token1] = ACTIONS(3415), - [aux_sym__val_number_decimal_token2] = ACTIONS(3417), - [aux_sym__val_number_decimal_token3] = ACTIONS(3419), - [aux_sym__val_number_decimal_token4] = ACTIONS(3421), - [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(3423), - [aux_sym__val_number_token5] = ACTIONS(3423), - [aux_sym__val_number_token6] = ACTIONS(3423), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1132] = { - [sym_ctrl_do] = STATE(5156), - [sym_ctrl_if] = STATE(5156), - [sym_ctrl_match] = STATE(5156), - [sym_ctrl_try] = STATE(5156), - [sym__expression] = STATE(5156), - [sym_expr_unary] = STATE(2469), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2469), - [sym__expr_binary_expression] = STATE(3976), - [sym_expr_parenthesized] = STATE(2122), - [sym_val_range] = STATE(3962), - [sym__value] = STATE(2469), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(2487), - [sym_val_variable] = STATE(2113), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(3163), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_comment] = STATE(1132), - [ts_builtin_sym_end] = ACTIONS(3349), - [sym__newline] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_err_GT_PIPE] = ACTIONS(3349), - [anon_sym_out_GT_PIPE] = ACTIONS(3349), - [anon_sym_e_GT_PIPE] = ACTIONS(3349), - [anon_sym_o_GT_PIPE] = ACTIONS(3349), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3349), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3349), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3349), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1062), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_do] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3429), - [anon_sym_match] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_try] = ACTIONS(3433), - [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(3435), - [anon_sym_true] = ACTIONS(3437), - [anon_sym_false] = ACTIONS(3437), - [aux_sym__val_number_decimal_token1] = ACTIONS(3379), - [aux_sym__val_number_decimal_token2] = ACTIONS(3381), - [aux_sym__val_number_decimal_token3] = ACTIONS(3383), - [aux_sym__val_number_decimal_token4] = ACTIONS(3385), - [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(99), - [aux_sym__val_number_token5] = ACTIONS(99), - [aux_sym__val_number_token6] = ACTIONS(99), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1133] = { - [sym_expr_unary] = STATE(2456), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2456), - [sym__expr_binary_expression] = STATE(3356), - [sym_expr_parenthesized] = STATE(2456), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7480), - [sym__value] = STATE(2456), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(3187), - [sym_val_variable] = STATE(2487), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(3000), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_unquoted] = STATE(2283), - [sym__unquoted_with_expr] = STATE(2486), - [sym__unquoted_anonymous_prefix] = STATE(7122), - [sym_comment] = STATE(1133), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3411), - [anon_sym_true] = ACTIONS(3413), - [anon_sym_false] = ACTIONS(3413), - [aux_sym__val_number_decimal_token1] = ACTIONS(3415), - [aux_sym__val_number_decimal_token2] = ACTIONS(3417), - [aux_sym__val_number_decimal_token3] = ACTIONS(3419), - [aux_sym__val_number_decimal_token4] = ACTIONS(3421), - [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(3423), - [aux_sym__val_number_token5] = ACTIONS(3423), - [aux_sym__val_number_token6] = ACTIONS(3423), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1134] = { - [sym_expr_unary] = STATE(2456), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2456), - [sym__expr_binary_expression] = STATE(3357), - [sym_expr_parenthesized] = STATE(2456), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7480), - [sym__value] = STATE(2456), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(3187), - [sym_val_variable] = STATE(2487), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(3000), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_unquoted] = STATE(2288), - [sym__unquoted_with_expr] = STATE(2493), - [sym__unquoted_anonymous_prefix] = STATE(7122), - [sym_comment] = STATE(1134), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3411), - [anon_sym_true] = ACTIONS(3413), - [anon_sym_false] = ACTIONS(3413), - [aux_sym__val_number_decimal_token1] = ACTIONS(3415), - [aux_sym__val_number_decimal_token2] = ACTIONS(3417), - [aux_sym__val_number_decimal_token3] = ACTIONS(3419), - [aux_sym__val_number_decimal_token4] = ACTIONS(3421), - [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(3423), - [aux_sym__val_number_token5] = ACTIONS(3423), - [aux_sym__val_number_token6] = ACTIONS(3423), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1135] = { - [sym_expr_unary] = STATE(2456), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2456), - [sym__expr_binary_expression] = STATE(3358), - [sym_expr_parenthesized] = STATE(2456), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7480), - [sym__value] = STATE(2456), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(3187), - [sym_val_variable] = STATE(2487), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(3000), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_unquoted] = STATE(2290), - [sym__unquoted_with_expr] = STATE(2498), - [sym__unquoted_anonymous_prefix] = STATE(7122), - [sym_comment] = STATE(1135), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3411), - [anon_sym_true] = ACTIONS(3413), - [anon_sym_false] = ACTIONS(3413), - [aux_sym__val_number_decimal_token1] = ACTIONS(3415), - [aux_sym__val_number_decimal_token2] = ACTIONS(3417), - [aux_sym__val_number_decimal_token3] = ACTIONS(3419), - [aux_sym__val_number_decimal_token4] = ACTIONS(3421), - [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(3423), - [aux_sym__val_number_token5] = ACTIONS(3423), - [aux_sym__val_number_token6] = ACTIONS(3423), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1136] = { - [sym_expr_unary] = STATE(2456), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2456), - [sym__expr_binary_expression] = STATE(2501), - [sym_expr_parenthesized] = STATE(2456), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7480), - [sym__value] = STATE(2456), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(3187), - [sym_val_variable] = STATE(2487), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(3000), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_unquoted] = STATE(2293), - [sym__unquoted_with_expr] = STATE(2510), - [sym__unquoted_anonymous_prefix] = STATE(7122), - [sym_comment] = STATE(1136), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3411), - [anon_sym_true] = ACTIONS(3413), - [anon_sym_false] = ACTIONS(3413), - [aux_sym__val_number_decimal_token1] = ACTIONS(3415), - [aux_sym__val_number_decimal_token2] = ACTIONS(3417), - [aux_sym__val_number_decimal_token3] = ACTIONS(3419), - [aux_sym__val_number_decimal_token4] = ACTIONS(3421), - [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(3423), - [aux_sym__val_number_token5] = ACTIONS(3423), - [aux_sym__val_number_token6] = ACTIONS(3423), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1137] = { - [sym_expr_unary] = STATE(2456), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2456), - [sym__expr_binary_expression] = STATE(3359), - [sym_expr_parenthesized] = STATE(2456), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7480), - [sym__value] = STATE(2456), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(3187), - [sym_val_variable] = STATE(2487), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(3000), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_unquoted] = STATE(2299), - [sym__unquoted_with_expr] = STATE(2518), - [sym__unquoted_anonymous_prefix] = STATE(7122), - [sym_comment] = STATE(1137), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3411), - [anon_sym_true] = ACTIONS(3413), - [anon_sym_false] = ACTIONS(3413), - [aux_sym__val_number_decimal_token1] = ACTIONS(3415), - [aux_sym__val_number_decimal_token2] = ACTIONS(3417), - [aux_sym__val_number_decimal_token3] = ACTIONS(3419), - [aux_sym__val_number_decimal_token4] = ACTIONS(3421), - [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(3423), - [aux_sym__val_number_token5] = ACTIONS(3423), - [aux_sym__val_number_token6] = ACTIONS(3423), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1138] = { - [sym_expr_unary] = STATE(2093), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2093), - [sym__expr_binary_expression] = STATE(3921), - [sym_expr_parenthesized] = STATE(2093), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(2093), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(3639), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3385), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(1859), - [sym__unquoted_with_expr] = STATE(2096), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1138), + [1155] = { + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3962), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1875), + [sym__unquoted_with_expr] = STATE(2097), + [sym__unquoted_anonymous_prefix] = STATE(7439), + [sym_comment] = STATE(1155), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3289), [anon_sym_DOLLAR] = ACTIONS(3291), @@ -189091,1741 +190805,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(203), [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), [anon_sym_DOT_DOT_LT] = ACTIONS(3295), - [anon_sym_null] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [aux_sym__val_number_decimal_token1] = ACTIONS(3335), - [aux_sym__val_number_decimal_token2] = ACTIONS(3337), - [aux_sym__val_number_decimal_token3] = ACTIONS(3339), - [aux_sym__val_number_decimal_token4] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3343), - [aux_sym__val_number_token5] = ACTIONS(3343), - [aux_sym__val_number_token6] = ACTIONS(3343), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [1139] = { - [sym_expr_unary] = STATE(2456), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2456), - [sym__expr_binary_expression] = STATE(2492), - [sym_expr_parenthesized] = STATE(2456), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7480), - [sym__value] = STATE(2456), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(2241), - [sym_val_variable] = STATE(2487), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(1573), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_unquoted] = STATE(2288), - [sym__unquoted_with_expr] = STATE(2493), - [sym__unquoted_anonymous_prefix] = STATE(7122), - [sym_comment] = STATE(1139), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [aux_sym__val_number_decimal_token1] = ACTIONS(3379), - [aux_sym__val_number_decimal_token2] = ACTIONS(3381), - [aux_sym__val_number_decimal_token3] = ACTIONS(3383), - [aux_sym__val_number_decimal_token4] = ACTIONS(3385), - [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(3387), - [aux_sym__val_number_token5] = ACTIONS(3387), - [aux_sym__val_number_token6] = ACTIONS(3387), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3389), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1140] = { - [sym_expr_unary] = STATE(2456), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2456), - [sym__expr_binary_expression] = STATE(3360), - [sym_expr_parenthesized] = STATE(2456), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7480), - [sym__value] = STATE(2456), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(3187), - [sym_val_variable] = STATE(2487), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(3000), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_unquoted] = STATE(2303), - [sym__unquoted_with_expr] = STATE(2530), - [sym__unquoted_anonymous_prefix] = STATE(7122), - [sym_comment] = STATE(1140), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3411), - [anon_sym_true] = ACTIONS(3413), - [anon_sym_false] = ACTIONS(3413), - [aux_sym__val_number_decimal_token1] = ACTIONS(3415), - [aux_sym__val_number_decimal_token2] = ACTIONS(3417), - [aux_sym__val_number_decimal_token3] = ACTIONS(3419), - [aux_sym__val_number_decimal_token4] = ACTIONS(3421), - [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(3423), - [aux_sym__val_number_token5] = ACTIONS(3423), - [aux_sym__val_number_token6] = ACTIONS(3423), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1141] = { - [sym_expr_unary] = STATE(2456), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2456), - [sym__expr_binary_expression] = STATE(2496), - [sym_expr_parenthesized] = STATE(2456), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7480), - [sym__value] = STATE(2456), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(2241), - [sym_val_variable] = STATE(2487), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(1573), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_unquoted] = STATE(2290), - [sym__unquoted_with_expr] = STATE(2498), - [sym__unquoted_anonymous_prefix] = STATE(7122), - [sym_comment] = STATE(1141), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [aux_sym__val_number_decimal_token1] = ACTIONS(3379), - [aux_sym__val_number_decimal_token2] = ACTIONS(3381), - [aux_sym__val_number_decimal_token3] = ACTIONS(3383), - [aux_sym__val_number_decimal_token4] = ACTIONS(3385), - [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(3387), - [aux_sym__val_number_token5] = ACTIONS(3387), - [aux_sym__val_number_token6] = ACTIONS(3387), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3389), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1142] = { - [sym_expr_unary] = STATE(2456), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2456), - [sym__expr_binary_expression] = STATE(3346), - [sym_expr_parenthesized] = STATE(2456), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7480), - [sym__value] = STATE(2456), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(3187), - [sym_val_variable] = STATE(2487), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(3000), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_unquoted] = STATE(2238), - [sym__unquoted_with_expr] = STATE(2533), - [sym__unquoted_anonymous_prefix] = STATE(7122), - [sym_comment] = STATE(1142), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3411), - [anon_sym_true] = ACTIONS(3413), - [anon_sym_false] = ACTIONS(3413), - [aux_sym__val_number_decimal_token1] = ACTIONS(3415), - [aux_sym__val_number_decimal_token2] = ACTIONS(3417), - [aux_sym__val_number_decimal_token3] = ACTIONS(3419), - [aux_sym__val_number_decimal_token4] = ACTIONS(3421), - [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(3423), - [aux_sym__val_number_token5] = ACTIONS(3423), - [aux_sym__val_number_token6] = ACTIONS(3423), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1143] = { - [sym_expr_unary] = STATE(2456), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2456), - [sym__expr_binary_expression] = STATE(3340), - [sym_expr_parenthesized] = STATE(2456), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7480), - [sym__value] = STATE(2456), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(3187), - [sym_val_variable] = STATE(2487), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(3000), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_unquoted] = STATE(2158), - [sym__unquoted_with_expr] = STATE(2517), - [sym__unquoted_anonymous_prefix] = STATE(7122), - [sym_comment] = STATE(1143), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3411), - [anon_sym_true] = ACTIONS(3413), - [anon_sym_false] = ACTIONS(3413), - [aux_sym__val_number_decimal_token1] = ACTIONS(3415), - [aux_sym__val_number_decimal_token2] = ACTIONS(3417), - [aux_sym__val_number_decimal_token3] = ACTIONS(3419), - [aux_sym__val_number_decimal_token4] = ACTIONS(3421), - [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(3423), - [aux_sym__val_number_token5] = ACTIONS(3423), - [aux_sym__val_number_token6] = ACTIONS(3423), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1144] = { - [sym_expr_unary] = STATE(2456), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2456), - [sym__expr_binary_expression] = STATE(2463), - [sym_expr_parenthesized] = STATE(2456), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7480), - [sym__value] = STATE(2456), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(2241), - [sym_val_variable] = STATE(2487), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(1573), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_unquoted] = STATE(2279), - [sym__unquoted_with_expr] = STATE(2476), - [sym__unquoted_anonymous_prefix] = STATE(7122), - [sym_comment] = STATE(1144), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [aux_sym__val_number_decimal_token1] = ACTIONS(3379), - [aux_sym__val_number_decimal_token2] = ACTIONS(3381), - [aux_sym__val_number_decimal_token3] = ACTIONS(3383), - [aux_sym__val_number_decimal_token4] = ACTIONS(3385), - [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(3387), - [aux_sym__val_number_token5] = ACTIONS(3387), - [aux_sym__val_number_token6] = ACTIONS(3387), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3389), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1145] = { - [sym_expr_unary] = STATE(2456), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2456), - [sym__expr_binary_expression] = STATE(2501), - [sym_expr_parenthesized] = STATE(2456), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7480), - [sym__value] = STATE(2456), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(2241), - [sym_val_variable] = STATE(2487), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(1573), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_unquoted] = STATE(2293), - [sym__unquoted_with_expr] = STATE(2510), - [sym__unquoted_anonymous_prefix] = STATE(7122), - [sym_comment] = STATE(1145), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), - [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [aux_sym__val_number_decimal_token1] = ACTIONS(3379), - [aux_sym__val_number_decimal_token2] = ACTIONS(3381), - [aux_sym__val_number_decimal_token3] = ACTIONS(3383), - [aux_sym__val_number_decimal_token4] = ACTIONS(3385), - [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(3387), - [aux_sym__val_number_token5] = ACTIONS(3387), - [aux_sym__val_number_token6] = ACTIONS(3387), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3389), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1146] = { - [sym_expr_unary] = STATE(3845), - [sym__expr_unary_minus] = STATE(3850), - [sym_expr_binary] = STATE(3845), - [sym__expr_binary_expression] = STATE(3881), - [sym_expr_parenthesized] = STATE(3845), - [sym__val_range] = STATE(7627), - [sym__val_range_with_end] = STATE(7381), - [sym__value] = STATE(3845), - [sym_val_nothing] = STATE(3532), - [sym_val_bool] = STATE(3664), - [sym_val_variable] = STATE(3532), - [sym_val_number] = STATE(3532), - [sym__val_number_decimal] = STATE(3387), - [sym__val_number] = STATE(3492), - [sym_val_duration] = STATE(3532), - [sym_val_filesize] = STATE(3532), - [sym_val_binary] = STATE(3532), - [sym_val_string] = STATE(3532), - [sym__raw_str] = STATE(3584), - [sym__str_double_quotes] = STATE(3584), - [sym_val_interpolated] = STATE(3532), - [sym__inter_single_quotes] = STATE(3486), - [sym__inter_double_quotes] = STATE(3489), - [sym_val_list] = STATE(3532), - [sym_val_record] = STATE(3532), - [sym_val_table] = STATE(3532), - [sym_val_closure] = STATE(3532), - [sym_unquoted] = STATE(3645), - [sym__unquoted_with_expr] = STATE(3854), - [sym__unquoted_anonymous_prefix] = STATE(6756), - [sym_comment] = STATE(1146), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_DOLLAR] = ACTIONS(3443), - [anon_sym_DASH2] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3449), - [aux_sym_expr_unary_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3453), - [anon_sym_DOT_DOT_LT] = ACTIONS(3453), - [anon_sym_null] = ACTIONS(3455), - [anon_sym_true] = ACTIONS(3457), - [anon_sym_false] = ACTIONS(3457), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [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(3471), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(3475), - [anon_sym_DQUOTE] = ACTIONS(3477), - [sym__str_single_quotes] = ACTIONS(3479), - [sym__str_back_ticks] = ACTIONS(3479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3485), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3487), - }, - [1147] = { - [sym_expr_unary] = STATE(3845), - [sym__expr_unary_minus] = STATE(3850), - [sym_expr_binary] = STATE(3845), - [sym__expr_binary_expression] = STATE(3899), - [sym_expr_parenthesized] = STATE(3845), - [sym__val_range] = STATE(7627), - [sym__val_range_with_end] = STATE(7381), - [sym__value] = STATE(3845), - [sym_val_nothing] = STATE(3532), - [sym_val_bool] = STATE(3664), - [sym_val_variable] = STATE(3532), - [sym_val_number] = STATE(3532), - [sym__val_number_decimal] = STATE(3387), - [sym__val_number] = STATE(3492), - [sym_val_duration] = STATE(3532), - [sym_val_filesize] = STATE(3532), - [sym_val_binary] = STATE(3532), - [sym_val_string] = STATE(3532), - [sym__raw_str] = STATE(3584), - [sym__str_double_quotes] = STATE(3584), - [sym_val_interpolated] = STATE(3532), - [sym__inter_single_quotes] = STATE(3486), - [sym__inter_double_quotes] = STATE(3489), - [sym_val_list] = STATE(3532), - [sym_val_record] = STATE(3532), - [sym_val_table] = STATE(3532), - [sym_val_closure] = STATE(3532), - [sym_unquoted] = STATE(3674), - [sym__unquoted_with_expr] = STATE(3857), - [sym__unquoted_anonymous_prefix] = STATE(6756), - [sym_comment] = STATE(1147), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_DOLLAR] = ACTIONS(3443), - [anon_sym_DASH2] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3449), - [aux_sym_expr_unary_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3453), - [anon_sym_DOT_DOT_LT] = ACTIONS(3453), - [anon_sym_null] = ACTIONS(3455), - [anon_sym_true] = ACTIONS(3457), - [anon_sym_false] = ACTIONS(3457), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [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(3471), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(3475), - [anon_sym_DQUOTE] = ACTIONS(3477), - [sym__str_single_quotes] = ACTIONS(3479), - [sym__str_back_ticks] = ACTIONS(3479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3485), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3487), - }, - [1148] = { - [sym_expr_unary] = STATE(3845), - [sym__expr_unary_minus] = STATE(3850), - [sym_expr_binary] = STATE(3845), - [sym__expr_binary_expression] = STATE(3882), - [sym_expr_parenthesized] = STATE(3845), - [sym__val_range] = STATE(7627), - [sym__val_range_with_end] = STATE(7381), - [sym__value] = STATE(3845), - [sym_val_nothing] = STATE(3532), - [sym_val_bool] = STATE(3664), - [sym_val_variable] = STATE(3532), - [sym_val_number] = STATE(3532), - [sym__val_number_decimal] = STATE(3387), - [sym__val_number] = STATE(3492), - [sym_val_duration] = STATE(3532), - [sym_val_filesize] = STATE(3532), - [sym_val_binary] = STATE(3532), - [sym_val_string] = STATE(3532), - [sym__raw_str] = STATE(3584), - [sym__str_double_quotes] = STATE(3584), - [sym_val_interpolated] = STATE(3532), - [sym__inter_single_quotes] = STATE(3486), - [sym__inter_double_quotes] = STATE(3489), - [sym_val_list] = STATE(3532), - [sym_val_record] = STATE(3532), - [sym_val_table] = STATE(3532), - [sym_val_closure] = STATE(3532), - [sym_unquoted] = STATE(3694), - [sym__unquoted_with_expr] = STATE(3878), - [sym__unquoted_anonymous_prefix] = STATE(6756), - [sym_comment] = STATE(1148), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_DOLLAR] = ACTIONS(3443), - [anon_sym_DASH2] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3449), - [aux_sym_expr_unary_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3453), - [anon_sym_DOT_DOT_LT] = ACTIONS(3453), - [anon_sym_null] = ACTIONS(3455), - [anon_sym_true] = ACTIONS(3457), - [anon_sym_false] = ACTIONS(3457), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [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(3471), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(3475), - [anon_sym_DQUOTE] = ACTIONS(3477), - [sym__str_single_quotes] = ACTIONS(3479), - [sym__str_back_ticks] = ACTIONS(3479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3485), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3487), - }, - [1149] = { - [sym_expr_unary] = STATE(3845), - [sym__expr_unary_minus] = STATE(3850), - [sym_expr_binary] = STATE(3845), - [sym__expr_binary_expression] = STATE(3879), - [sym_expr_parenthesized] = STATE(3845), - [sym__val_range] = STATE(7627), - [sym__val_range_with_end] = STATE(7381), - [sym__value] = STATE(3845), - [sym_val_nothing] = STATE(3532), - [sym_val_bool] = STATE(3664), - [sym_val_variable] = STATE(3532), - [sym_val_number] = STATE(3532), - [sym__val_number_decimal] = STATE(3387), - [sym__val_number] = STATE(3492), - [sym_val_duration] = STATE(3532), - [sym_val_filesize] = STATE(3532), - [sym_val_binary] = STATE(3532), - [sym_val_string] = STATE(3532), - [sym__raw_str] = STATE(3584), - [sym__str_double_quotes] = STATE(3584), - [sym_val_interpolated] = STATE(3532), - [sym__inter_single_quotes] = STATE(3486), - [sym__inter_double_quotes] = STATE(3489), - [sym_val_list] = STATE(3532), - [sym_val_record] = STATE(3532), - [sym_val_table] = STATE(3532), - [sym_val_closure] = STATE(3532), - [sym_unquoted] = STATE(3697), - [sym__unquoted_with_expr] = STATE(3897), - [sym__unquoted_anonymous_prefix] = STATE(6756), - [sym_comment] = STATE(1149), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_DOLLAR] = ACTIONS(3443), - [anon_sym_DASH2] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3449), - [aux_sym_expr_unary_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3453), - [anon_sym_DOT_DOT_LT] = ACTIONS(3453), - [anon_sym_null] = ACTIONS(3455), - [anon_sym_true] = ACTIONS(3457), - [anon_sym_false] = ACTIONS(3457), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [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(3471), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(3475), - [anon_sym_DQUOTE] = ACTIONS(3477), - [sym__str_single_quotes] = ACTIONS(3479), - [sym__str_back_ticks] = ACTIONS(3479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3485), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3487), - }, - [1150] = { - [sym_expr_unary] = STATE(3845), - [sym__expr_unary_minus] = STATE(3850), - [sym_expr_binary] = STATE(3845), - [sym__expr_binary_expression] = STATE(3900), - [sym_expr_parenthesized] = STATE(3845), - [sym__val_range] = STATE(7627), - [sym__val_range_with_end] = STATE(7381), - [sym__value] = STATE(3845), - [sym_val_nothing] = STATE(3532), - [sym_val_bool] = STATE(3664), - [sym_val_variable] = STATE(3532), - [sym_val_number] = STATE(3532), - [sym__val_number_decimal] = STATE(3387), - [sym__val_number] = STATE(3492), - [sym_val_duration] = STATE(3532), - [sym_val_filesize] = STATE(3532), - [sym_val_binary] = STATE(3532), - [sym_val_string] = STATE(3532), - [sym__raw_str] = STATE(3584), - [sym__str_double_quotes] = STATE(3584), - [sym_val_interpolated] = STATE(3532), - [sym__inter_single_quotes] = STATE(3486), - [sym__inter_double_quotes] = STATE(3489), - [sym_val_list] = STATE(3532), - [sym_val_record] = STATE(3532), - [sym_val_table] = STATE(3532), - [sym_val_closure] = STATE(3532), - [sym_unquoted] = STATE(3709), - [sym__unquoted_with_expr] = STATE(3902), - [sym__unquoted_anonymous_prefix] = STATE(6756), - [sym_comment] = STATE(1150), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_DOLLAR] = ACTIONS(3443), - [anon_sym_DASH2] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3449), - [aux_sym_expr_unary_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3453), - [anon_sym_DOT_DOT_LT] = ACTIONS(3453), - [anon_sym_null] = ACTIONS(3455), - [anon_sym_true] = ACTIONS(3457), - [anon_sym_false] = ACTIONS(3457), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [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(3471), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(3475), - [anon_sym_DQUOTE] = ACTIONS(3477), - [sym__str_single_quotes] = ACTIONS(3479), - [sym__str_back_ticks] = ACTIONS(3479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3485), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3487), - }, - [1151] = { - [sym_expr_unary] = STATE(3845), - [sym__expr_unary_minus] = STATE(3850), - [sym_expr_binary] = STATE(3845), - [sym__expr_binary_expression] = STATE(3904), - [sym_expr_parenthesized] = STATE(3845), - [sym__val_range] = STATE(7627), - [sym__val_range_with_end] = STATE(7381), - [sym__value] = STATE(3845), - [sym_val_nothing] = STATE(3532), - [sym_val_bool] = STATE(3664), - [sym_val_variable] = STATE(3532), - [sym_val_number] = STATE(3532), - [sym__val_number_decimal] = STATE(3387), - [sym__val_number] = STATE(3492), - [sym_val_duration] = STATE(3532), - [sym_val_filesize] = STATE(3532), - [sym_val_binary] = STATE(3532), - [sym_val_string] = STATE(3532), - [sym__raw_str] = STATE(3584), - [sym__str_double_quotes] = STATE(3584), - [sym_val_interpolated] = STATE(3532), - [sym__inter_single_quotes] = STATE(3486), - [sym__inter_double_quotes] = STATE(3489), - [sym_val_list] = STATE(3532), - [sym_val_record] = STATE(3532), - [sym_val_table] = STATE(3532), - [sym_val_closure] = STATE(3532), - [sym_unquoted] = STATE(3711), - [sym__unquoted_with_expr] = STATE(3910), - [sym__unquoted_anonymous_prefix] = STATE(6756), - [sym_comment] = STATE(1151), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_DOLLAR] = ACTIONS(3443), - [anon_sym_DASH2] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3449), - [aux_sym_expr_unary_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3453), - [anon_sym_DOT_DOT_LT] = ACTIONS(3453), - [anon_sym_null] = ACTIONS(3455), - [anon_sym_true] = ACTIONS(3457), - [anon_sym_false] = ACTIONS(3457), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [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(3471), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(3475), - [anon_sym_DQUOTE] = ACTIONS(3477), - [sym__str_single_quotes] = ACTIONS(3479), - [sym__str_back_ticks] = ACTIONS(3479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3485), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3487), - }, - [1152] = { - [sym_expr_unary] = STATE(3845), - [sym__expr_unary_minus] = STATE(3850), - [sym_expr_binary] = STATE(3845), - [sym__expr_binary_expression] = STATE(3911), - [sym_expr_parenthesized] = STATE(3845), - [sym__val_range] = STATE(7627), - [sym__val_range_with_end] = STATE(7381), - [sym__value] = STATE(3845), - [sym_val_nothing] = STATE(3532), - [sym_val_bool] = STATE(3664), - [sym_val_variable] = STATE(3532), - [sym_val_number] = STATE(3532), - [sym__val_number_decimal] = STATE(3387), - [sym__val_number] = STATE(3492), - [sym_val_duration] = STATE(3532), - [sym_val_filesize] = STATE(3532), - [sym_val_binary] = STATE(3532), - [sym_val_string] = STATE(3532), - [sym__raw_str] = STATE(3584), - [sym__str_double_quotes] = STATE(3584), - [sym_val_interpolated] = STATE(3532), - [sym__inter_single_quotes] = STATE(3486), - [sym__inter_double_quotes] = STATE(3489), - [sym_val_list] = STATE(3532), - [sym_val_record] = STATE(3532), - [sym_val_table] = STATE(3532), - [sym_val_closure] = STATE(3532), - [sym_unquoted] = STATE(3669), - [sym__unquoted_with_expr] = STATE(3847), - [sym__unquoted_anonymous_prefix] = STATE(6756), - [sym_comment] = STATE(1152), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_DOLLAR] = ACTIONS(3443), - [anon_sym_DASH2] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3449), - [aux_sym_expr_unary_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3453), - [anon_sym_DOT_DOT_LT] = ACTIONS(3453), - [anon_sym_null] = ACTIONS(3455), - [anon_sym_true] = ACTIONS(3457), - [anon_sym_false] = ACTIONS(3457), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [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(3471), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(3475), - [anon_sym_DQUOTE] = ACTIONS(3477), - [sym__str_single_quotes] = ACTIONS(3479), - [sym__str_back_ticks] = ACTIONS(3479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3485), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3487), - }, - [1153] = { - [sym_expr_unary] = STATE(3845), - [sym__expr_unary_minus] = STATE(3850), - [sym_expr_binary] = STATE(3845), - [sym__expr_binary_expression] = STATE(3913), - [sym_expr_parenthesized] = STATE(3845), - [sym__val_range] = STATE(7627), - [sym__val_range_with_end] = STATE(7381), - [sym__value] = STATE(3845), - [sym_val_nothing] = STATE(3532), - [sym_val_bool] = STATE(3664), - [sym_val_variable] = STATE(3532), - [sym_val_number] = STATE(3532), - [sym__val_number_decimal] = STATE(3387), - [sym__val_number] = STATE(3492), - [sym_val_duration] = STATE(3532), - [sym_val_filesize] = STATE(3532), - [sym_val_binary] = STATE(3532), - [sym_val_string] = STATE(3532), - [sym__raw_str] = STATE(3584), - [sym__str_double_quotes] = STATE(3584), - [sym_val_interpolated] = STATE(3532), - [sym__inter_single_quotes] = STATE(3486), - [sym__inter_double_quotes] = STATE(3489), - [sym_val_list] = STATE(3532), - [sym_val_record] = STATE(3532), - [sym_val_table] = STATE(3532), - [sym_val_closure] = STATE(3532), - [sym_unquoted] = STATE(3623), - [sym__unquoted_with_expr] = STATE(3891), - [sym__unquoted_anonymous_prefix] = STATE(6756), - [sym_comment] = STATE(1153), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_DOLLAR] = ACTIONS(3443), - [anon_sym_DASH2] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3449), - [aux_sym_expr_unary_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3453), - [anon_sym_DOT_DOT_LT] = ACTIONS(3453), - [anon_sym_null] = ACTIONS(3455), - [anon_sym_true] = ACTIONS(3457), - [anon_sym_false] = ACTIONS(3457), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [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(3471), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(3475), - [anon_sym_DQUOTE] = ACTIONS(3477), - [sym__str_single_quotes] = ACTIONS(3479), - [sym__str_back_ticks] = ACTIONS(3479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3485), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3487), - }, - [1154] = { - [sym_expr_unary] = STATE(3845), - [sym__expr_unary_minus] = STATE(3850), - [sym_expr_binary] = STATE(3845), - [sym__expr_binary_expression] = STATE(3846), - [sym_expr_parenthesized] = STATE(3845), - [sym__val_range] = STATE(7627), - [sym__val_range_with_end] = STATE(7381), - [sym__value] = STATE(3845), - [sym_val_nothing] = STATE(3532), - [sym_val_bool] = STATE(3664), - [sym_val_variable] = STATE(3532), - [sym_val_number] = STATE(3532), - [sym__val_number_decimal] = STATE(3387), - [sym__val_number] = STATE(3492), - [sym_val_duration] = STATE(3532), - [sym_val_filesize] = STATE(3532), - [sym_val_binary] = STATE(3532), - [sym_val_string] = STATE(3532), - [sym__raw_str] = STATE(3584), - [sym__str_double_quotes] = STATE(3584), - [sym_val_interpolated] = STATE(3532), - [sym__inter_single_quotes] = STATE(3486), - [sym__inter_double_quotes] = STATE(3489), - [sym_val_list] = STATE(3532), - [sym_val_record] = STATE(3532), - [sym_val_table] = STATE(3532), - [sym_val_closure] = STATE(3532), - [sym_unquoted] = STATE(3625), - [sym__unquoted_with_expr] = STATE(3880), - [sym__unquoted_anonymous_prefix] = STATE(6756), - [sym_comment] = STATE(1154), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_DOLLAR] = ACTIONS(3443), - [anon_sym_DASH2] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3449), - [aux_sym_expr_unary_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3453), - [anon_sym_DOT_DOT_LT] = ACTIONS(3453), - [anon_sym_null] = ACTIONS(3455), - [anon_sym_true] = ACTIONS(3457), - [anon_sym_false] = ACTIONS(3457), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [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(3471), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(3475), - [anon_sym_DQUOTE] = ACTIONS(3477), - [sym__str_single_quotes] = ACTIONS(3479), - [sym__str_back_ticks] = ACTIONS(3479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3485), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3487), - }, - [1155] = { - [sym_expr_unary] = STATE(3845), - [sym__expr_unary_minus] = STATE(3850), - [sym_expr_binary] = STATE(3845), - [sym__expr_binary_expression] = STATE(3853), - [sym_expr_parenthesized] = STATE(3845), - [sym__val_range] = STATE(7627), - [sym__val_range_with_end] = STATE(7381), - [sym__value] = STATE(3845), - [sym_val_nothing] = STATE(3532), - [sym_val_bool] = STATE(3664), - [sym_val_variable] = STATE(3532), - [sym_val_number] = STATE(3532), - [sym__val_number_decimal] = STATE(3387), - [sym__val_number] = STATE(3492), - [sym_val_duration] = STATE(3532), - [sym_val_filesize] = STATE(3532), - [sym_val_binary] = STATE(3532), - [sym_val_string] = STATE(3532), - [sym__raw_str] = STATE(3584), - [sym__str_double_quotes] = STATE(3584), - [sym_val_interpolated] = STATE(3532), - [sym__inter_single_quotes] = STATE(3486), - [sym__inter_double_quotes] = STATE(3489), - [sym_val_list] = STATE(3532), - [sym_val_record] = STATE(3532), - [sym_val_table] = STATE(3532), - [sym_val_closure] = STATE(3532), - [sym_unquoted] = STATE(3626), - [sym__unquoted_with_expr] = STATE(3868), - [sym__unquoted_anonymous_prefix] = STATE(6756), - [sym_comment] = STATE(1155), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_DOLLAR] = ACTIONS(3443), - [anon_sym_DASH2] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3449), - [aux_sym_expr_unary_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3453), - [anon_sym_DOT_DOT_LT] = ACTIONS(3453), - [anon_sym_null] = ACTIONS(3455), - [anon_sym_true] = ACTIONS(3457), - [anon_sym_false] = ACTIONS(3457), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [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(3471), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(3475), - [anon_sym_DQUOTE] = ACTIONS(3477), - [sym__str_single_quotes] = ACTIONS(3479), - [sym__str_back_ticks] = ACTIONS(3479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3485), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3487), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1156] = { - [sym_expr_unary] = STATE(3845), - [sym__expr_unary_minus] = STATE(3850), - [sym_expr_binary] = STATE(3845), - [sym__expr_binary_expression] = STATE(3884), - [sym_expr_parenthesized] = STATE(3845), - [sym__val_range] = STATE(7627), - [sym__val_range_with_end] = STATE(7381), - [sym__value] = STATE(3845), - [sym_val_nothing] = STATE(3532), - [sym_val_bool] = STATE(3664), - [sym_val_variable] = STATE(3532), - [sym_val_number] = STATE(3532), - [sym__val_number_decimal] = STATE(3387), - [sym__val_number] = STATE(3492), - [sym_val_duration] = STATE(3532), - [sym_val_filesize] = STATE(3532), - [sym_val_binary] = STATE(3532), - [sym_val_string] = STATE(3532), - [sym__raw_str] = STATE(3584), - [sym__str_double_quotes] = STATE(3584), - [sym_val_interpolated] = STATE(3532), - [sym__inter_single_quotes] = STATE(3486), - [sym__inter_double_quotes] = STATE(3489), - [sym_val_list] = STATE(3532), - [sym_val_record] = STATE(3532), - [sym_val_table] = STATE(3532), - [sym_val_closure] = STATE(3532), - [sym_unquoted] = STATE(3627), - [sym__unquoted_with_expr] = STATE(3906), - [sym__unquoted_anonymous_prefix] = STATE(6756), + [sym_expr_unary] = STATE(2134), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2134), + [sym__expr_binary_expression] = STATE(3963), + [sym_expr_parenthesized] = STATE(2134), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(2134), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(3667), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(1881), + [sym__unquoted_with_expr] = STATE(2114), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1156), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_DOLLAR] = ACTIONS(3443), - [anon_sym_DASH2] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3449), - [aux_sym_expr_unary_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3453), - [anon_sym_DOT_DOT_LT] = ACTIONS(3453), - [anon_sym_null] = ACTIONS(3455), - [anon_sym_true] = ACTIONS(3457), - [anon_sym_false] = ACTIONS(3457), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [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(3471), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(3475), - [anon_sym_DQUOTE] = ACTIONS(3477), - [sym__str_single_quotes] = ACTIONS(3479), - [sym__str_back_ticks] = ACTIONS(3479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3485), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3487), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(3291), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [aux_sym_expr_unary_token1] = ACTIONS(203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_LT] = ACTIONS(3295), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_true] = ACTIONS(3317), + [anon_sym_false] = ACTIONS(3317), + [aux_sym__val_number_decimal_token1] = ACTIONS(3319), + [aux_sym__val_number_decimal_token2] = ACTIONS(3321), + [aux_sym__val_number_decimal_token3] = ACTIONS(3323), + [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3327), + [aux_sym__val_number_token5] = ACTIONS(3327), + [aux_sym__val_number_token6] = ACTIONS(3327), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1157] = { - [sym_expr_unary] = STATE(3845), - [sym__expr_unary_minus] = STATE(3850), - [sym_expr_binary] = STATE(3845), - [sym__expr_binary_expression] = STATE(3895), - [sym_expr_parenthesized] = STATE(3845), - [sym__val_range] = STATE(7627), - [sym__val_range_with_end] = STATE(7381), - [sym__value] = STATE(3845), - [sym_val_nothing] = STATE(3532), - [sym_val_bool] = STATE(3664), - [sym_val_variable] = STATE(3532), - [sym_val_number] = STATE(3532), - [sym__val_number_decimal] = STATE(3387), - [sym__val_number] = STATE(3492), - [sym_val_duration] = STATE(3532), - [sym_val_filesize] = STATE(3532), - [sym_val_binary] = STATE(3532), - [sym_val_string] = STATE(3532), - [sym__raw_str] = STATE(3584), - [sym__str_double_quotes] = STATE(3584), - [sym_val_interpolated] = STATE(3532), - [sym__inter_single_quotes] = STATE(3486), - [sym__inter_double_quotes] = STATE(3489), - [sym_val_list] = STATE(3532), - [sym_val_record] = STATE(3532), - [sym_val_table] = STATE(3532), - [sym_val_closure] = STATE(3532), - [sym_unquoted] = STATE(3628), - [sym__unquoted_with_expr] = STATE(3866), - [sym__unquoted_anonymous_prefix] = STATE(6756), + [sym_ctrl_do] = STATE(4895), + [sym_ctrl_if] = STATE(4895), + [sym_ctrl_match] = STATE(4895), + [sym_ctrl_try] = STATE(4895), + [sym__expression] = STATE(4895), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3981), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3169), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), [sym_comment] = STATE(1157), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_DOLLAR] = ACTIONS(3443), - [anon_sym_DASH2] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3449), - [aux_sym_expr_unary_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3453), - [anon_sym_DOT_DOT_LT] = ACTIONS(3453), - [anon_sym_null] = ACTIONS(3455), - [anon_sym_true] = ACTIONS(3457), - [anon_sym_false] = ACTIONS(3457), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [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(3471), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(3475), - [anon_sym_DQUOTE] = ACTIONS(3477), - [sym__str_single_quotes] = ACTIONS(3479), - [sym__str_back_ticks] = ACTIONS(3479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3485), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3487), - }, - [1158] = { - [sym_expr_unary] = STATE(3845), - [sym__expr_unary_minus] = STATE(3850), - [sym_expr_binary] = STATE(3845), - [sym__expr_binary_expression] = STATE(3893), - [sym_expr_parenthesized] = STATE(3845), - [sym__val_range] = STATE(7627), - [sym__val_range_with_end] = STATE(7381), - [sym__value] = STATE(3845), - [sym_val_nothing] = STATE(3532), - [sym_val_bool] = STATE(3664), - [sym_val_variable] = STATE(3532), - [sym_val_number] = STATE(3532), - [sym__val_number_decimal] = STATE(3387), - [sym__val_number] = STATE(3492), - [sym_val_duration] = STATE(3532), - [sym_val_filesize] = STATE(3532), - [sym_val_binary] = STATE(3532), - [sym_val_string] = STATE(3532), - [sym__raw_str] = STATE(3584), - [sym__str_double_quotes] = STATE(3584), - [sym_val_interpolated] = STATE(3532), - [sym__inter_single_quotes] = STATE(3486), - [sym__inter_double_quotes] = STATE(3489), - [sym_val_list] = STATE(3532), - [sym_val_record] = STATE(3532), - [sym_val_table] = STATE(3532), - [sym_val_closure] = STATE(3532), - [sym_unquoted] = STATE(3629), - [sym__unquoted_with_expr] = STATE(3907), - [sym__unquoted_anonymous_prefix] = STATE(6756), - [sym_comment] = STATE(1158), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_DOLLAR] = ACTIONS(3443), - [anon_sym_DASH2] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3449), - [aux_sym_expr_unary_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3453), - [anon_sym_DOT_DOT_LT] = ACTIONS(3453), - [anon_sym_null] = ACTIONS(3455), - [anon_sym_true] = ACTIONS(3457), - [anon_sym_false] = ACTIONS(3457), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [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(3471), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(3475), - [anon_sym_DQUOTE] = ACTIONS(3477), - [sym__str_single_quotes] = ACTIONS(3479), - [sym__str_back_ticks] = ACTIONS(3479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3485), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3487), - }, - [1159] = { - [sym_ctrl_do] = STATE(4987), - [sym_ctrl_if] = STATE(4987), - [sym_ctrl_match] = STATE(4987), - [sym_ctrl_try] = STATE(4987), - [sym__expression] = STATE(4987), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3969), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3152), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_comment] = STATE(1159), [sym__newline] = ACTIONS(3349), [anon_sym_SEMI] = ACTIONS(3349), [anon_sym_PIPE] = ACTIONS(3349), @@ -190854,10 +190991,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(3359), [anon_sym_true] = ACTIONS(3361), [anon_sym_false] = ACTIONS(3361), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -190876,37 +191013,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, + [1158] = { + [sym_expr_unary] = STATE(3875), + [sym__expr_unary_minus] = STATE(3908), + [sym_expr_binary] = STATE(3875), + [sym__expr_binary_expression] = STATE(3878), + [sym_expr_parenthesized] = STATE(3875), + [sym__val_range] = STATE(7745), + [sym__val_range_with_end] = STATE(7624), + [sym__value] = STATE(3875), + [sym_val_nothing] = STATE(3510), + [sym_val_bool] = STATE(3651), + [sym_val_variable] = STATE(3510), + [sym_val_number] = STATE(3510), + [sym__val_number_decimal] = STATE(3403), + [sym__val_number] = STATE(3521), + [sym_val_duration] = STATE(3510), + [sym_val_filesize] = STATE(3510), + [sym_val_binary] = STATE(3510), + [sym_val_string] = STATE(3510), + [sym__raw_str] = STATE(3562), + [sym__str_double_quotes] = STATE(3562), + [sym_val_interpolated] = STATE(3510), + [sym__inter_single_quotes] = STATE(3540), + [sym__inter_double_quotes] = STATE(3518), + [sym_val_list] = STATE(3510), + [sym_val_record] = STATE(3510), + [sym_val_table] = STATE(3510), + [sym_val_closure] = STATE(3510), + [sym_unquoted] = STATE(3673), + [sym__unquoted_with_expr] = STATE(3880), + [sym__unquoted_anonymous_prefix] = STATE(6869), + [sym_comment] = STATE(1158), + [anon_sym_LBRACK] = ACTIONS(3393), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_DOLLAR] = ACTIONS(3397), + [anon_sym_DASH2] = ACTIONS(3399), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_DOT_DOT] = ACTIONS(3403), + [aux_sym_expr_unary_token1] = ACTIONS(3405), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), + [anon_sym_DOT_DOT_LT] = ACTIONS(3407), + [anon_sym_null] = ACTIONS(3409), + [anon_sym_true] = ACTIONS(3411), + [anon_sym_false] = ACTIONS(3411), + [aux_sym__val_number_decimal_token1] = ACTIONS(3413), + [aux_sym__val_number_decimal_token2] = ACTIONS(3415), + [aux_sym__val_number_decimal_token3] = ACTIONS(3417), + [aux_sym__val_number_decimal_token4] = ACTIONS(3419), + [aux_sym__val_number_token1] = ACTIONS(3421), + [aux_sym__val_number_token2] = ACTIONS(3421), + [aux_sym__val_number_token3] = ACTIONS(3421), + [aux_sym__val_number_token4] = ACTIONS(3423), + [aux_sym__val_number_token5] = ACTIONS(3423), + [aux_sym__val_number_token6] = ACTIONS(3423), + [anon_sym_0b] = ACTIONS(3425), + [anon_sym_0o] = ACTIONS(3427), + [anon_sym_0x] = ACTIONS(3427), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3431), + [sym__str_single_quotes] = ACTIONS(3433), + [sym__str_back_ticks] = ACTIONS(3433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3439), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3441), + }, + [1159] = { + [sym_expr_unary] = STATE(3875), + [sym__expr_unary_minus] = STATE(3908), + [sym_expr_binary] = STATE(3875), + [sym__expr_binary_expression] = STATE(3881), + [sym_expr_parenthesized] = STATE(3875), + [sym__val_range] = STATE(7745), + [sym__val_range_with_end] = STATE(7624), + [sym__value] = STATE(3875), + [sym_val_nothing] = STATE(3510), + [sym_val_bool] = STATE(3651), + [sym_val_variable] = STATE(3510), + [sym_val_number] = STATE(3510), + [sym__val_number_decimal] = STATE(3403), + [sym__val_number] = STATE(3521), + [sym_val_duration] = STATE(3510), + [sym_val_filesize] = STATE(3510), + [sym_val_binary] = STATE(3510), + [sym_val_string] = STATE(3510), + [sym__raw_str] = STATE(3562), + [sym__str_double_quotes] = STATE(3562), + [sym_val_interpolated] = STATE(3510), + [sym__inter_single_quotes] = STATE(3540), + [sym__inter_double_quotes] = STATE(3518), + [sym_val_list] = STATE(3510), + [sym_val_record] = STATE(3510), + [sym_val_table] = STATE(3510), + [sym_val_closure] = STATE(3510), + [sym_unquoted] = STATE(3675), + [sym__unquoted_with_expr] = STATE(3882), + [sym__unquoted_anonymous_prefix] = STATE(6869), + [sym_comment] = STATE(1159), + [anon_sym_LBRACK] = ACTIONS(3393), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_DOLLAR] = ACTIONS(3397), + [anon_sym_DASH2] = ACTIONS(3399), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_DOT_DOT] = ACTIONS(3403), + [aux_sym_expr_unary_token1] = ACTIONS(3405), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3407), + [anon_sym_DOT_DOT_LT] = ACTIONS(3407), + [anon_sym_null] = ACTIONS(3409), + [anon_sym_true] = ACTIONS(3411), + [anon_sym_false] = ACTIONS(3411), + [aux_sym__val_number_decimal_token1] = ACTIONS(3413), + [aux_sym__val_number_decimal_token2] = ACTIONS(3415), + [aux_sym__val_number_decimal_token3] = ACTIONS(3417), + [aux_sym__val_number_decimal_token4] = ACTIONS(3419), + [aux_sym__val_number_token1] = ACTIONS(3421), + [aux_sym__val_number_token2] = ACTIONS(3421), + [aux_sym__val_number_token3] = ACTIONS(3421), + [aux_sym__val_number_token4] = ACTIONS(3423), + [aux_sym__val_number_token5] = ACTIONS(3423), + [aux_sym__val_number_token6] = ACTIONS(3423), + [anon_sym_0b] = ACTIONS(3425), + [anon_sym_0o] = ACTIONS(3427), + [anon_sym_0x] = ACTIONS(3427), + [sym_val_date] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3431), + [sym__str_single_quotes] = ACTIONS(3433), + [sym__str_back_ticks] = ACTIONS(3433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3439), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3441), + }, [1160] = { - [sym_expr_unary] = STATE(2456), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2456), - [sym__expr_binary_expression] = STATE(2458), - [sym_expr_parenthesized] = STATE(2456), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7480), - [sym__value] = STATE(2456), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(2241), - [sym_val_variable] = STATE(2487), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(1573), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_unquoted] = STATE(2242), - [sym__unquoted_with_expr] = STATE(2471), - [sym__unquoted_anonymous_prefix] = STATE(7122), + [sym_expr_unary] = STATE(2489), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2489), + [sym__expr_binary_expression] = STATE(2490), + [sym_expr_parenthesized] = STATE(2489), + [sym__val_range] = STATE(8160), + [sym__val_range_with_end] = STATE(7583), + [sym__value] = STATE(2489), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(2227), + [sym_val_variable] = STATE(2481), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(1625), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_unquoted] = STATE(2256), + [sym__unquoted_with_expr] = STATE(2491), + [sym__unquoted_anonymous_prefix] = STATE(7358), [sym_comment] = STATE(1160), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(3367), @@ -190917,79 +191220,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(83), [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [aux_sym__val_number_decimal_token1] = ACTIONS(3379), - [aux_sym__val_number_decimal_token2] = ACTIONS(3381), - [aux_sym__val_number_decimal_token3] = ACTIONS(3383), - [aux_sym__val_number_decimal_token4] = ACTIONS(3385), + [anon_sym_null] = ACTIONS(3443), + [anon_sym_true] = ACTIONS(3445), + [anon_sym_false] = ACTIONS(3445), + [aux_sym__val_number_decimal_token1] = ACTIONS(3447), + [aux_sym__val_number_decimal_token2] = ACTIONS(3449), + [aux_sym__val_number_decimal_token3] = ACTIONS(3451), + [aux_sym__val_number_decimal_token4] = ACTIONS(3453), [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(3387), - [aux_sym__val_number_token5] = ACTIONS(3387), - [aux_sym__val_number_token6] = ACTIONS(3387), + [aux_sym__val_number_token4] = ACTIONS(3455), + [aux_sym__val_number_token5] = ACTIONS(3455), + [aux_sym__val_number_token6] = ACTIONS(3455), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3389), + [sym_val_date] = ACTIONS(3457), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3391), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(121), }, [1161] = { - [sym_expr_unary] = STATE(2456), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_binary] = STATE(2456), - [sym__expr_binary_expression] = STATE(3351), - [sym_expr_parenthesized] = STATE(2456), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7480), - [sym__value] = STATE(2456), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(3187), - [sym_val_variable] = STATE(2487), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(3000), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_unquoted] = STATE(2242), - [sym__unquoted_with_expr] = STATE(2471), - [sym__unquoted_anonymous_prefix] = STATE(7122), + [sym_expr_unary] = STATE(2489), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_binary] = STATE(2489), + [sym__expr_binary_expression] = STATE(2517), + [sym_expr_parenthesized] = STATE(2489), + [sym__val_range] = STATE(8160), + [sym__val_range_with_end] = STATE(7583), + [sym__value] = STATE(2489), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(2227), + [sym_val_variable] = STATE(2481), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(1625), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_unquoted] = STATE(2257), + [sym__unquoted_with_expr] = STATE(2518), + [sym__unquoted_anonymous_prefix] = STATE(7358), [sym_comment] = STATE(1161), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(3367), @@ -191000,78 +191303,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(83), [anon_sym_DOT_DOT_EQ] = ACTIONS(3373), [anon_sym_DOT_DOT_LT] = ACTIONS(3373), - [anon_sym_null] = ACTIONS(3411), - [anon_sym_true] = ACTIONS(3413), - [anon_sym_false] = ACTIONS(3413), - [aux_sym__val_number_decimal_token1] = ACTIONS(3415), - [aux_sym__val_number_decimal_token2] = ACTIONS(3417), - [aux_sym__val_number_decimal_token3] = ACTIONS(3419), - [aux_sym__val_number_decimal_token4] = ACTIONS(3421), + [anon_sym_null] = ACTIONS(3443), + [anon_sym_true] = ACTIONS(3445), + [anon_sym_false] = ACTIONS(3445), + [aux_sym__val_number_decimal_token1] = ACTIONS(3447), + [aux_sym__val_number_decimal_token2] = ACTIONS(3449), + [aux_sym__val_number_decimal_token3] = ACTIONS(3451), + [aux_sym__val_number_decimal_token4] = ACTIONS(3453), [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(3423), - [aux_sym__val_number_token5] = ACTIONS(3423), - [aux_sym__val_number_token6] = ACTIONS(3423), + [aux_sym__val_number_token4] = ACTIONS(3455), + [aux_sym__val_number_token5] = ACTIONS(3455), + [aux_sym__val_number_token6] = ACTIONS(3455), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3425), + [sym_val_date] = ACTIONS(3457), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3391), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(121), }, [1162] = { - [sym_expr_unary] = STATE(4399), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_parenthesized] = STATE(4105), - [sym_val_range] = STATE(4399), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(4399), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(4207), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(4206), - [sym__unquoted_with_expr] = STATE(4403), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(4338), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_parenthesized] = STATE(4125), + [sym_val_range] = STATE(4338), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(4338), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(4177), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(4014), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(4212), + [sym__unquoted_with_expr] = STATE(4339), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1162), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3489), @@ -191104,138 +191407,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1163] = { - [sym_expr_unary] = STATE(4524), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_parenthesized] = STATE(4134), - [sym_val_range] = STATE(4524), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7480), - [sym__value] = STATE(4524), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(4258), - [sym_val_variable] = STATE(2113), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(4010), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_unquoted] = STATE(4227), - [sym__unquoted_with_expr] = STATE(4509), - [sym__unquoted_anonymous_prefix] = STATE(7122), + [sym_expr_unary] = STATE(4334), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_parenthesized] = STATE(4124), + [sym_val_range] = STATE(4334), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(4334), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(4177), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(4014), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(4174), + [sym__unquoted_with_expr] = STATE(4337), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1163), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3515), - [anon_sym_DOLLAR] = ACTIONS(3517), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3519), - [aux_sym_expr_unary_token1] = ACTIONS(3521), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3523), - [anon_sym_DOT_DOT_LT] = ACTIONS(3523), - [anon_sym_null] = ACTIONS(3525), - [anon_sym_true] = ACTIONS(3527), - [anon_sym_false] = ACTIONS(3527), - [aux_sym__val_number_decimal_token1] = ACTIONS(3529), - [aux_sym__val_number_decimal_token2] = ACTIONS(3531), - [aux_sym__val_number_decimal_token3] = ACTIONS(3533), - [aux_sym__val_number_decimal_token4] = ACTIONS(3535), - [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(3537), - [aux_sym__val_number_token5] = ACTIONS(3537), - [aux_sym__val_number_token6] = ACTIONS(3537), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3539), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(3489), + [anon_sym_DOLLAR] = ACTIONS(3491), + [anon_sym_DASH2] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3493), + [aux_sym_expr_unary_token1] = ACTIONS(3495), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3497), + [anon_sym_DOT_DOT_LT] = ACTIONS(3497), + [anon_sym_null] = ACTIONS(3499), + [anon_sym_true] = ACTIONS(3501), + [anon_sym_false] = ACTIONS(3501), + [aux_sym__val_number_decimal_token1] = ACTIONS(3503), + [aux_sym__val_number_decimal_token2] = ACTIONS(3505), + [aux_sym__val_number_decimal_token3] = ACTIONS(3507), + [aux_sym__val_number_decimal_token4] = ACTIONS(3509), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3511), + [aux_sym__val_number_token5] = ACTIONS(3511), + [aux_sym__val_number_token6] = ACTIONS(3511), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3513), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), + [sym_raw_string_begin] = ACTIONS(435), }, [1164] = { - [sym_expr_unary] = STATE(4404), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_parenthesized] = STATE(4103), - [sym_val_range] = STATE(4404), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(4404), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(4207), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(4194), - [sym__unquoted_with_expr] = STATE(4412), - [sym__unquoted_anonymous_prefix] = STATE(7150), + [sym_expr_unary] = STATE(4331), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_parenthesized] = STATE(4141), + [sym_val_range] = STATE(4331), + [sym__val_range] = STATE(7906), + [sym__val_range_with_end] = STATE(7613), + [sym__value] = STATE(4331), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(4177), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(4014), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(4189), + [sym__unquoted_with_expr] = STATE(4333), + [sym__unquoted_anonymous_prefix] = STATE(7439), [sym_comment] = STATE(1164), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(3489), @@ -191268,56 +191571,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1165] = { - [sym_expr_unary] = STATE(4511), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_parenthesized] = STATE(4136), - [sym_val_range] = STATE(4511), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7480), - [sym__value] = STATE(4511), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(4258), - [sym_val_variable] = STATE(2113), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(4010), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_unquoted] = STATE(4215), - [sym__unquoted_with_expr] = STATE(4549), - [sym__unquoted_anonymous_prefix] = STATE(7122), + [sym_expr_unary] = STATE(4610), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_parenthesized] = STATE(4200), + [sym_val_range] = STATE(4610), + [sym__val_range] = STATE(8160), + [sym__val_range_with_end] = STATE(7583), + [sym__value] = STATE(4610), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(4244), + [sym_val_variable] = STATE(2126), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(4034), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_unquoted] = STATE(4272), + [sym__unquoted_with_expr] = STATE(4583), + [sym__unquoted_anonymous_prefix] = STATE(7358), [sym_comment] = STATE(1165), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(3515), @@ -191350,223 +191653,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3391), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(121), }, [1166] = { - [sym_expr_unary] = STATE(4508), - [sym__expr_unary_minus] = STATE(2478), - [sym_expr_parenthesized] = STATE(4161), - [sym_val_range] = STATE(4508), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7480), - [sym__value] = STATE(4508), - [sym_val_nothing] = STATE(2487), - [sym_val_bool] = STATE(4258), - [sym_val_variable] = STATE(2113), - [sym_val_number] = STATE(2487), - [sym__val_number_decimal] = STATE(4010), - [sym__val_number] = STATE(2490), - [sym_val_duration] = STATE(2487), - [sym_val_filesize] = STATE(2487), - [sym_val_binary] = STATE(2487), - [sym_val_string] = STATE(2487), - [sym__raw_str] = STATE(2091), - [sym__str_double_quotes] = STATE(2091), - [sym_val_interpolated] = STATE(2487), - [sym__inter_single_quotes] = STATE(2457), - [sym__inter_double_quotes] = STATE(2488), - [sym_val_list] = STATE(2487), - [sym_val_record] = STATE(2487), - [sym_val_table] = STATE(2487), - [sym_val_closure] = STATE(2487), - [sym_unquoted] = STATE(4223), - [sym__unquoted_with_expr] = STATE(4512), - [sym__unquoted_anonymous_prefix] = STATE(7122), + [sym_ctrl_do] = STATE(4895), + [sym_ctrl_if] = STATE(4895), + [sym_ctrl_match] = STATE(4895), + [sym_ctrl_try] = STATE(4895), + [sym__expression] = STATE(4895), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3981), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3169), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), [sym_comment] = STATE(1166), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3515), - [anon_sym_DOLLAR] = ACTIONS(3517), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3519), - [aux_sym_expr_unary_token1] = ACTIONS(3521), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3523), - [anon_sym_DOT_DOT_LT] = ACTIONS(3523), - [anon_sym_null] = ACTIONS(3525), - [anon_sym_true] = ACTIONS(3527), - [anon_sym_false] = ACTIONS(3527), - [aux_sym__val_number_decimal_token1] = ACTIONS(3529), - [aux_sym__val_number_decimal_token2] = ACTIONS(3531), - [aux_sym__val_number_decimal_token3] = ACTIONS(3533), - [aux_sym__val_number_decimal_token4] = ACTIONS(3535), - [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(3537), - [aux_sym__val_number_token5] = ACTIONS(3537), - [aux_sym__val_number_token6] = ACTIONS(3537), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3539), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1167] = { - [sym_expr_unary] = STATE(4397), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_parenthesized] = STATE(4102), - [sym_val_range] = STATE(4397), - [sym__val_range] = STATE(7572), - [sym__val_range_with_end] = STATE(7359), - [sym__value] = STATE(4397), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(4207), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3995), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(4156), - [sym__unquoted_with_expr] = STATE(4398), - [sym__unquoted_anonymous_prefix] = STATE(7150), - [sym_comment] = STATE(1167), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(3489), - [anon_sym_DOLLAR] = ACTIONS(3491), - [anon_sym_DASH2] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3493), - [aux_sym_expr_unary_token1] = ACTIONS(3495), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3497), - [anon_sym_DOT_DOT_LT] = ACTIONS(3497), - [anon_sym_null] = ACTIONS(3499), - [anon_sym_true] = ACTIONS(3501), - [anon_sym_false] = ACTIONS(3501), - [aux_sym__val_number_decimal_token1] = ACTIONS(3503), - [aux_sym__val_number_decimal_token2] = ACTIONS(3505), - [aux_sym__val_number_decimal_token3] = ACTIONS(3507), - [aux_sym__val_number_decimal_token4] = ACTIONS(3509), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3511), - [aux_sym__val_number_token5] = ACTIONS(3511), - [aux_sym__val_number_token6] = ACTIONS(3511), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3513), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [1168] = { - [sym_ctrl_do] = STATE(4987), - [sym_ctrl_if] = STATE(4987), - [sym_ctrl_match] = STATE(4987), - [sym_ctrl_try] = STATE(4987), - [sym__expression] = STATE(4987), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3969), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3152), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_comment] = STATE(1168), [sym__newline] = ACTIONS(3349), [anon_sym_SEMI] = ACTIONS(3349), [anon_sym_PIPE] = ACTIONS(3349), @@ -191594,10 +191733,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(3359), [anon_sym_true] = ACTIONS(3361), [anon_sym_false] = ACTIONS(3361), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -191616,9 +191755,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, + [1167] = { + [sym_expr_unary] = STATE(4524), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_parenthesized] = STATE(4203), + [sym_val_range] = STATE(4524), + [sym__val_range] = STATE(8160), + [sym__val_range_with_end] = STATE(7583), + [sym__value] = STATE(4524), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(4244), + [sym_val_variable] = STATE(2126), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(4034), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_unquoted] = STATE(4282), + [sym__unquoted_with_expr] = STATE(4588), + [sym__unquoted_anonymous_prefix] = STATE(7358), + [sym_comment] = STATE(1167), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3515), + [anon_sym_DOLLAR] = ACTIONS(3517), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3519), + [aux_sym_expr_unary_token1] = ACTIONS(3521), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3523), + [anon_sym_DOT_DOT_LT] = ACTIONS(3523), + [anon_sym_null] = ACTIONS(3525), + [anon_sym_true] = ACTIONS(3527), + [anon_sym_false] = ACTIONS(3527), + [aux_sym__val_number_decimal_token1] = ACTIONS(3529), + [aux_sym__val_number_decimal_token2] = ACTIONS(3531), + [aux_sym__val_number_decimal_token3] = ACTIONS(3533), + [aux_sym__val_number_decimal_token4] = ACTIONS(3535), + [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(3537), + [aux_sym__val_number_token5] = ACTIONS(3537), + [aux_sym__val_number_token6] = ACTIONS(3537), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3539), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), + }, + [1168] = { + [sym_expr_unary] = STATE(4621), + [sym__expr_unary_minus] = STATE(2523), + [sym_expr_parenthesized] = STATE(4185), + [sym_val_range] = STATE(4621), + [sym__val_range] = STATE(8160), + [sym__val_range_with_end] = STATE(7583), + [sym__value] = STATE(4621), + [sym_val_nothing] = STATE(2481), + [sym_val_bool] = STATE(4244), + [sym_val_variable] = STATE(2126), + [sym_val_number] = STATE(2481), + [sym__val_number_decimal] = STATE(4034), + [sym__val_number] = STATE(2536), + [sym_val_duration] = STATE(2481), + [sym_val_filesize] = STATE(2481), + [sym_val_binary] = STATE(2481), + [sym_val_string] = STATE(2481), + [sym__raw_str] = STATE(2093), + [sym__str_double_quotes] = STATE(2093), + [sym_val_interpolated] = STATE(2481), + [sym__inter_single_quotes] = STATE(2537), + [sym__inter_double_quotes] = STATE(2538), + [sym_val_list] = STATE(2481), + [sym_val_record] = STATE(2481), + [sym_val_table] = STATE(2481), + [sym_val_closure] = STATE(2481), + [sym_unquoted] = STATE(4300), + [sym__unquoted_with_expr] = STATE(4565), + [sym__unquoted_anonymous_prefix] = STATE(7358), + [sym_comment] = STATE(1168), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(3515), + [anon_sym_DOLLAR] = ACTIONS(3517), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3519), + [aux_sym_expr_unary_token1] = ACTIONS(3521), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3523), + [anon_sym_DOT_DOT_LT] = ACTIONS(3523), + [anon_sym_null] = ACTIONS(3525), + [anon_sym_true] = ACTIONS(3527), + [anon_sym_false] = ACTIONS(3527), + [aux_sym__val_number_decimal_token1] = ACTIONS(3529), + [aux_sym__val_number_decimal_token2] = ACTIONS(3531), + [aux_sym__val_number_decimal_token3] = ACTIONS(3533), + [aux_sym__val_number_decimal_token4] = ACTIONS(3535), + [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(3537), + [aux_sym__val_number_token5] = ACTIONS(3537), + [aux_sym__val_number_token6] = ACTIONS(3537), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3539), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3391), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(121), + }, [1169] = { [sym_comment] = STATE(1169), - [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1171), + [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1169), [aux_sym_cmd_identifier_token1] = ACTIONS(3543), [aux_sym_cmd_identifier_token2] = ACTIONS(3543), [aux_sym_cmd_identifier_token3] = ACTIONS(3543), @@ -191660,7 +191963,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token39] = ACTIONS(3543), [aux_sym_cmd_identifier_token40] = ACTIONS(3543), [sym__newline] = ACTIONS(3545), - [sym__space] = ACTIONS(3547), + [sym__space] = ACTIONS(3548), [anon_sym_LBRACK] = ACTIONS(3543), [anon_sym_LPAREN] = ACTIONS(3543), [anon_sym_DOLLAR] = ACTIONS(3543), @@ -191695,40 +191998,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_env_var_token1] = ACTIONS(3543), [anon_sym_CARET] = ACTIONS(3543), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3549), + [sym_raw_string_begin] = ACTIONS(3551), }, [1170] = { - [sym_ctrl_do] = STATE(4987), - [sym_ctrl_if] = STATE(4987), - [sym_ctrl_match] = STATE(4987), - [sym_ctrl_try] = STATE(4987), - [sym__expression] = STATE(4987), - [sym_expr_unary] = STATE(2144), - [sym__expr_unary_minus] = STATE(2145), - [sym_expr_binary] = STATE(2144), - [sym__expr_binary_expression] = STATE(3969), - [sym_expr_parenthesized] = STATE(2087), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(2144), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(2112), - [sym_val_variable] = STATE(1979), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(3152), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), + [sym_ctrl_do] = STATE(4895), + [sym_ctrl_if] = STATE(4895), + [sym_ctrl_match] = STATE(4895), + [sym_ctrl_try] = STATE(4895), + [sym__expression] = STATE(4895), + [sym_expr_unary] = STATE(2130), + [sym__expr_unary_minus] = STATE(2131), + [sym_expr_binary] = STATE(2130), + [sym__expr_binary_expression] = STATE(3981), + [sym_expr_parenthesized] = STATE(1998), + [sym_val_range] = STATE(3626), + [sym__value] = STATE(2130), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(2116), + [sym_val_variable] = STATE(2000), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(3169), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), [sym_comment] = STATE(1170), [sym__newline] = ACTIONS(3349), [anon_sym_PIPE] = ACTIONS(3349), @@ -191745,7 +192048,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1048), [anon_sym_DASH2] = ACTIONS(385), [anon_sym_do] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3551), + [anon_sym_if] = ACTIONS(3553), [anon_sym_match] = ACTIONS(3355), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), @@ -191756,10 +192059,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(3359), [anon_sym_true] = ACTIONS(3361), [anon_sym_false] = ACTIONS(3361), - [aux_sym__val_number_decimal_token1] = ACTIONS(3319), - [aux_sym__val_number_decimal_token2] = ACTIONS(3321), - [aux_sym__val_number_decimal_token3] = ACTIONS(3323), - [aux_sym__val_number_decimal_token4] = ACTIONS(3325), + [aux_sym__val_number_decimal_token1] = ACTIONS(3335), + [aux_sym__val_number_decimal_token2] = ACTIONS(3337), + [aux_sym__val_number_decimal_token3] = ACTIONS(3339), + [aux_sym__val_number_decimal_token4] = ACTIONS(3341), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), @@ -191780,1048 +192083,488 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1171] = { [sym_comment] = STATE(1171), - [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1171), - [aux_sym_cmd_identifier_token1] = ACTIONS(3553), - [aux_sym_cmd_identifier_token2] = ACTIONS(3553), - [aux_sym_cmd_identifier_token3] = ACTIONS(3553), - [aux_sym_cmd_identifier_token4] = ACTIONS(3553), - [aux_sym_cmd_identifier_token5] = ACTIONS(3553), - [aux_sym_cmd_identifier_token6] = ACTIONS(3553), - [aux_sym_cmd_identifier_token7] = ACTIONS(3553), - [aux_sym_cmd_identifier_token8] = ACTIONS(3553), - [aux_sym_cmd_identifier_token9] = ACTIONS(3553), - [aux_sym_cmd_identifier_token10] = ACTIONS(3553), - [aux_sym_cmd_identifier_token11] = ACTIONS(3553), - [aux_sym_cmd_identifier_token12] = ACTIONS(3553), - [aux_sym_cmd_identifier_token13] = ACTIONS(3553), - [aux_sym_cmd_identifier_token14] = ACTIONS(3553), - [aux_sym_cmd_identifier_token15] = ACTIONS(3553), - [aux_sym_cmd_identifier_token16] = ACTIONS(3553), - [aux_sym_cmd_identifier_token17] = ACTIONS(3553), - [aux_sym_cmd_identifier_token18] = ACTIONS(3553), - [aux_sym_cmd_identifier_token19] = ACTIONS(3553), - [aux_sym_cmd_identifier_token20] = ACTIONS(3553), - [aux_sym_cmd_identifier_token21] = ACTIONS(3553), - [aux_sym_cmd_identifier_token22] = ACTIONS(3553), - [aux_sym_cmd_identifier_token23] = ACTIONS(3553), - [aux_sym_cmd_identifier_token24] = ACTIONS(3553), - [aux_sym_cmd_identifier_token25] = ACTIONS(3553), - [aux_sym_cmd_identifier_token26] = ACTIONS(3553), - [aux_sym_cmd_identifier_token27] = ACTIONS(3553), - [aux_sym_cmd_identifier_token28] = ACTIONS(3553), - [aux_sym_cmd_identifier_token29] = ACTIONS(3553), - [aux_sym_cmd_identifier_token30] = ACTIONS(3553), - [aux_sym_cmd_identifier_token31] = ACTIONS(3553), - [aux_sym_cmd_identifier_token32] = ACTIONS(3553), - [aux_sym_cmd_identifier_token33] = ACTIONS(3553), - [aux_sym_cmd_identifier_token34] = ACTIONS(3553), - [aux_sym_cmd_identifier_token35] = ACTIONS(3553), - [aux_sym_cmd_identifier_token36] = ACTIONS(3553), - [aux_sym_cmd_identifier_token37] = ACTIONS(3553), - [aux_sym_cmd_identifier_token38] = ACTIONS(3553), - [aux_sym_cmd_identifier_token39] = ACTIONS(3553), - [aux_sym_cmd_identifier_token40] = ACTIONS(3553), - [sym__newline] = ACTIONS(3555), - [sym__space] = ACTIONS(3558), - [anon_sym_LBRACK] = ACTIONS(3553), - [anon_sym_LPAREN] = ACTIONS(3553), - [anon_sym_DOLLAR] = ACTIONS(3553), - [anon_sym_DASH2] = ACTIONS(3553), - [anon_sym_LBRACE] = ACTIONS(3553), - [anon_sym_DOT_DOT] = ACTIONS(3553), - [aux_sym_expr_unary_token1] = ACTIONS(3553), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3553), - [anon_sym_DOT_DOT_LT] = ACTIONS(3553), - [anon_sym_null] = ACTIONS(3553), - [anon_sym_true] = ACTIONS(3553), - [anon_sym_false] = ACTIONS(3553), - [aux_sym__val_number_decimal_token1] = ACTIONS(3553), - [aux_sym__val_number_decimal_token2] = ACTIONS(3553), - [aux_sym__val_number_decimal_token3] = ACTIONS(3553), - [aux_sym__val_number_decimal_token4] = ACTIONS(3553), - [aux_sym__val_number_token1] = ACTIONS(3553), - [aux_sym__val_number_token2] = ACTIONS(3553), - [aux_sym__val_number_token3] = ACTIONS(3553), - [aux_sym__val_number_token4] = ACTIONS(3553), - [aux_sym__val_number_token5] = ACTIONS(3553), - [aux_sym__val_number_token6] = ACTIONS(3553), - [anon_sym_0b] = ACTIONS(3553), - [anon_sym_0o] = ACTIONS(3553), - [anon_sym_0x] = ACTIONS(3553), - [sym_val_date] = ACTIONS(3553), - [anon_sym_DQUOTE] = ACTIONS(3553), - [sym__str_single_quotes] = ACTIONS(3553), - [sym__str_back_ticks] = ACTIONS(3553), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3553), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3553), - [aux_sym_env_var_token1] = ACTIONS(3553), - [anon_sym_CARET] = ACTIONS(3553), + [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1169), + [aux_sym_cmd_identifier_token1] = ACTIONS(3555), + [aux_sym_cmd_identifier_token2] = ACTIONS(3555), + [aux_sym_cmd_identifier_token3] = ACTIONS(3555), + [aux_sym_cmd_identifier_token4] = ACTIONS(3555), + [aux_sym_cmd_identifier_token5] = ACTIONS(3555), + [aux_sym_cmd_identifier_token6] = ACTIONS(3555), + [aux_sym_cmd_identifier_token7] = ACTIONS(3555), + [aux_sym_cmd_identifier_token8] = ACTIONS(3555), + [aux_sym_cmd_identifier_token9] = ACTIONS(3555), + [aux_sym_cmd_identifier_token10] = ACTIONS(3555), + [aux_sym_cmd_identifier_token11] = ACTIONS(3555), + [aux_sym_cmd_identifier_token12] = ACTIONS(3555), + [aux_sym_cmd_identifier_token13] = ACTIONS(3555), + [aux_sym_cmd_identifier_token14] = ACTIONS(3555), + [aux_sym_cmd_identifier_token15] = ACTIONS(3555), + [aux_sym_cmd_identifier_token16] = ACTIONS(3555), + [aux_sym_cmd_identifier_token17] = ACTIONS(3555), + [aux_sym_cmd_identifier_token18] = ACTIONS(3555), + [aux_sym_cmd_identifier_token19] = ACTIONS(3555), + [aux_sym_cmd_identifier_token20] = ACTIONS(3555), + [aux_sym_cmd_identifier_token21] = ACTIONS(3555), + [aux_sym_cmd_identifier_token22] = ACTIONS(3555), + [aux_sym_cmd_identifier_token23] = ACTIONS(3555), + [aux_sym_cmd_identifier_token24] = ACTIONS(3555), + [aux_sym_cmd_identifier_token25] = ACTIONS(3555), + [aux_sym_cmd_identifier_token26] = ACTIONS(3555), + [aux_sym_cmd_identifier_token27] = ACTIONS(3555), + [aux_sym_cmd_identifier_token28] = ACTIONS(3555), + [aux_sym_cmd_identifier_token29] = ACTIONS(3555), + [aux_sym_cmd_identifier_token30] = ACTIONS(3555), + [aux_sym_cmd_identifier_token31] = ACTIONS(3555), + [aux_sym_cmd_identifier_token32] = ACTIONS(3555), + [aux_sym_cmd_identifier_token33] = ACTIONS(3555), + [aux_sym_cmd_identifier_token34] = ACTIONS(3555), + [aux_sym_cmd_identifier_token35] = ACTIONS(3555), + [aux_sym_cmd_identifier_token36] = ACTIONS(3555), + [aux_sym_cmd_identifier_token37] = ACTIONS(3555), + [aux_sym_cmd_identifier_token38] = ACTIONS(3555), + [aux_sym_cmd_identifier_token39] = ACTIONS(3555), + [aux_sym_cmd_identifier_token40] = ACTIONS(3555), + [sym__newline] = ACTIONS(3557), + [sym__space] = ACTIONS(3559), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_LPAREN] = ACTIONS(3555), + [anon_sym_DOLLAR] = ACTIONS(3555), + [anon_sym_DASH2] = ACTIONS(3555), + [anon_sym_LBRACE] = ACTIONS(3555), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [aux_sym_expr_unary_token1] = ACTIONS(3555), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), + [anon_sym_DOT_DOT_LT] = ACTIONS(3555), + [anon_sym_null] = ACTIONS(3555), + [anon_sym_true] = ACTIONS(3555), + [anon_sym_false] = ACTIONS(3555), + [aux_sym__val_number_decimal_token1] = ACTIONS(3555), + [aux_sym__val_number_decimal_token2] = ACTIONS(3555), + [aux_sym__val_number_decimal_token3] = ACTIONS(3555), + [aux_sym__val_number_decimal_token4] = ACTIONS(3555), + [aux_sym__val_number_token1] = ACTIONS(3555), + [aux_sym__val_number_token2] = ACTIONS(3555), + [aux_sym__val_number_token3] = ACTIONS(3555), + [aux_sym__val_number_token4] = ACTIONS(3555), + [aux_sym__val_number_token5] = ACTIONS(3555), + [aux_sym__val_number_token6] = ACTIONS(3555), + [anon_sym_0b] = ACTIONS(3555), + [anon_sym_0o] = ACTIONS(3555), + [anon_sym_0x] = ACTIONS(3555), + [sym_val_date] = ACTIONS(3555), + [anon_sym_DQUOTE] = ACTIONS(3555), + [sym__str_single_quotes] = ACTIONS(3555), + [sym__str_back_ticks] = ACTIONS(3555), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3555), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3555), + [aux_sym_env_var_token1] = ACTIONS(3555), + [anon_sym_CARET] = ACTIONS(3555), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(3561), }, [1172] = { [sym_comment] = STATE(1172), - [anon_sym_STAR_STAR] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_SLASH_SLASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_bit_DASHshl] = ACTIONS(1609), - [anon_sym_bit_DASHshr] = ACTIONS(1609), - [anon_sym_EQ_TILDE] = ACTIONS(1609), - [anon_sym_BANG_TILDE] = ACTIONS(1609), - [anon_sym_bit_DASHand] = ACTIONS(1609), - [anon_sym_bit_DASHxor] = ACTIONS(1609), - [anon_sym_bit_DASHor] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(1609), - [anon_sym_not_DASHin] = ACTIONS(1609), - [anon_sym_starts_DASHwith] = ACTIONS(1609), - [anon_sym_ends_DASHwith] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1609), - [anon_sym_BANG_EQ] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1609), - [aux_sym_cmd_identifier_token41] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_RBRACE] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT] = ACTIONS(3563), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(3565), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), + [aux_sym_pipe_element_repeat1] = STATE(1181), + [aux_sym_cmd_identifier_token1] = ACTIONS(3563), + [aux_sym_cmd_identifier_token2] = ACTIONS(3563), + [aux_sym_cmd_identifier_token3] = ACTIONS(3563), + [aux_sym_cmd_identifier_token4] = ACTIONS(3563), + [aux_sym_cmd_identifier_token5] = ACTIONS(3563), + [aux_sym_cmd_identifier_token6] = ACTIONS(3563), + [aux_sym_cmd_identifier_token7] = ACTIONS(3563), + [aux_sym_cmd_identifier_token8] = ACTIONS(3563), + [aux_sym_cmd_identifier_token9] = ACTIONS(3563), + [aux_sym_cmd_identifier_token10] = ACTIONS(3563), + [aux_sym_cmd_identifier_token11] = ACTIONS(3563), + [aux_sym_cmd_identifier_token12] = ACTIONS(3563), + [aux_sym_cmd_identifier_token13] = ACTIONS(3563), + [aux_sym_cmd_identifier_token14] = ACTIONS(3563), + [aux_sym_cmd_identifier_token15] = ACTIONS(3563), + [aux_sym_cmd_identifier_token16] = ACTIONS(3563), + [aux_sym_cmd_identifier_token17] = ACTIONS(3563), + [aux_sym_cmd_identifier_token18] = ACTIONS(3563), + [aux_sym_cmd_identifier_token19] = ACTIONS(3563), + [aux_sym_cmd_identifier_token20] = ACTIONS(3563), + [aux_sym_cmd_identifier_token21] = ACTIONS(3563), + [aux_sym_cmd_identifier_token22] = ACTIONS(3563), + [aux_sym_cmd_identifier_token23] = ACTIONS(3563), + [aux_sym_cmd_identifier_token24] = ACTIONS(3563), + [aux_sym_cmd_identifier_token25] = ACTIONS(3563), + [aux_sym_cmd_identifier_token26] = ACTIONS(3563), + [aux_sym_cmd_identifier_token27] = ACTIONS(3563), + [aux_sym_cmd_identifier_token28] = ACTIONS(3563), + [aux_sym_cmd_identifier_token29] = ACTIONS(3563), + [aux_sym_cmd_identifier_token30] = ACTIONS(3563), + [aux_sym_cmd_identifier_token31] = ACTIONS(3563), + [aux_sym_cmd_identifier_token32] = ACTIONS(3563), + [aux_sym_cmd_identifier_token33] = ACTIONS(3563), + [aux_sym_cmd_identifier_token34] = ACTIONS(3563), + [aux_sym_cmd_identifier_token35] = ACTIONS(3563), + [aux_sym_cmd_identifier_token36] = ACTIONS(3563), + [aux_sym_cmd_identifier_token37] = ACTIONS(3563), + [aux_sym_cmd_identifier_token38] = ACTIONS(3563), + [aux_sym_cmd_identifier_token39] = ACTIONS(3563), + [aux_sym_cmd_identifier_token40] = ACTIONS(3563), + [sym__space] = ACTIONS(3565), + [anon_sym_LBRACK] = ACTIONS(3563), + [anon_sym_LPAREN] = ACTIONS(3563), + [anon_sym_DOLLAR] = ACTIONS(3563), + [anon_sym_DASH2] = ACTIONS(3563), + [anon_sym_LBRACE] = ACTIONS(3563), + [anon_sym_DOT_DOT] = ACTIONS(3563), + [aux_sym_expr_unary_token1] = ACTIONS(3563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3563), + [anon_sym_DOT_DOT_LT] = ACTIONS(3563), + [anon_sym_null] = ACTIONS(3563), + [anon_sym_true] = ACTIONS(3563), + [anon_sym_false] = ACTIONS(3563), + [aux_sym__val_number_decimal_token1] = ACTIONS(3563), + [aux_sym__val_number_decimal_token2] = ACTIONS(3563), + [aux_sym__val_number_decimal_token3] = ACTIONS(3563), + [aux_sym__val_number_decimal_token4] = ACTIONS(3563), + [aux_sym__val_number_token1] = ACTIONS(3563), + [aux_sym__val_number_token2] = ACTIONS(3563), + [aux_sym__val_number_token3] = ACTIONS(3563), + [aux_sym__val_number_token4] = ACTIONS(3563), + [aux_sym__val_number_token5] = ACTIONS(3563), + [aux_sym__val_number_token6] = ACTIONS(3563), + [anon_sym_0b] = ACTIONS(3563), + [anon_sym_0o] = ACTIONS(3563), + [anon_sym_0x] = ACTIONS(3563), + [sym_val_date] = ACTIONS(3563), + [anon_sym_DQUOTE] = ACTIONS(3563), + [sym__str_single_quotes] = ACTIONS(3563), + [sym__str_back_ticks] = ACTIONS(3563), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3563), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3563), + [aux_sym_env_var_token1] = ACTIONS(3563), + [anon_sym_CARET] = ACTIONS(3563), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3567), }, [1173] = { - [sym_expr_parenthesized] = STATE(4552), - [sym_val_range] = STATE(5015), - [sym__val_range] = STATE(7741), - [sym__val_range_with_end] = STATE(7363), - [sym__value] = STATE(5015), - [sym_val_nothing] = STATE(4907), - [sym_val_bool] = STATE(4740), - [sym_val_variable] = STATE(4565), - [sym_val_number] = STATE(4907), - [sym__val_number_decimal] = STATE(4091), - [sym__val_number] = STATE(4940), - [sym_val_duration] = STATE(4907), - [sym_val_filesize] = STATE(4907), - [sym_val_binary] = STATE(4907), - [sym_val_string] = STATE(4907), - [sym__raw_str] = STATE(4722), - [sym__str_double_quotes] = STATE(4722), - [sym_val_interpolated] = STATE(4907), - [sym__inter_single_quotes] = STATE(4952), - [sym__inter_double_quotes] = STATE(4953), - [sym_val_list] = STATE(4907), - [sym_val_record] = STATE(4907), - [sym_val_table] = STATE(4907), - [sym_val_closure] = STATE(4907), - [sym__unquoted_in_list] = STATE(4649), - [sym__unquoted_in_list_with_expr] = STATE(5015), - [sym__unquoted_anonymous_prefix] = STATE(6780), + [sym_env_var] = STATE(7604), [sym_comment] = STATE(1173), - [aux_sym_shebang_repeat1] = STATE(2963), - [sym__newline] = ACTIONS(3567), - [anon_sym_LBRACK] = ACTIONS(3569), - [anon_sym_LPAREN] = ACTIONS(3571), - [anon_sym_DOLLAR] = ACTIONS(3573), - [anon_sym_LBRACE] = ACTIONS(3575), - [anon_sym_DOT_DOT] = ACTIONS(3577), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3579), - [anon_sym_DOT_DOT_LT] = ACTIONS(3579), - [anon_sym_null] = ACTIONS(3581), - [anon_sym_true] = ACTIONS(3583), - [anon_sym_false] = ACTIONS(3583), - [aux_sym__val_number_decimal_token1] = ACTIONS(3585), - [aux_sym__val_number_decimal_token2] = ACTIONS(3587), - [aux_sym__val_number_decimal_token3] = ACTIONS(3589), - [aux_sym__val_number_decimal_token4] = ACTIONS(3591), - [aux_sym__val_number_token1] = ACTIONS(3593), - [aux_sym__val_number_token2] = ACTIONS(3593), - [aux_sym__val_number_token3] = ACTIONS(3593), - [aux_sym__val_number_token4] = ACTIONS(3595), - [aux_sym__val_number_token5] = ACTIONS(3595), - [aux_sym__val_number_token6] = ACTIONS(3595), - [anon_sym_0b] = ACTIONS(3597), - [anon_sym_0o] = ACTIONS(3599), - [anon_sym_0x] = ACTIONS(3599), - [sym_val_date] = ACTIONS(3601), - [anon_sym_DQUOTE] = ACTIONS(3603), - [sym__str_single_quotes] = ACTIONS(3605), - [sym__str_back_ticks] = ACTIONS(3605), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3611), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3613), + [aux_sym_pipe_element_repeat2] = STATE(1173), + [aux_sym_cmd_identifier_token1] = ACTIONS(3563), + [aux_sym_cmd_identifier_token2] = ACTIONS(3567), + [aux_sym_cmd_identifier_token3] = ACTIONS(3567), + [aux_sym_cmd_identifier_token4] = ACTIONS(3567), + [aux_sym_cmd_identifier_token5] = ACTIONS(3567), + [aux_sym_cmd_identifier_token6] = ACTIONS(3567), + [aux_sym_cmd_identifier_token7] = ACTIONS(3567), + [aux_sym_cmd_identifier_token8] = ACTIONS(3567), + [aux_sym_cmd_identifier_token9] = ACTIONS(3563), + [aux_sym_cmd_identifier_token10] = ACTIONS(3567), + [aux_sym_cmd_identifier_token11] = ACTIONS(3567), + [aux_sym_cmd_identifier_token12] = ACTIONS(3567), + [aux_sym_cmd_identifier_token13] = ACTIONS(3563), + [aux_sym_cmd_identifier_token14] = ACTIONS(3567), + [aux_sym_cmd_identifier_token15] = ACTIONS(3563), + [aux_sym_cmd_identifier_token16] = ACTIONS(3567), + [aux_sym_cmd_identifier_token17] = ACTIONS(3567), + [aux_sym_cmd_identifier_token18] = ACTIONS(3567), + [aux_sym_cmd_identifier_token19] = ACTIONS(3567), + [aux_sym_cmd_identifier_token20] = ACTIONS(3567), + [aux_sym_cmd_identifier_token21] = ACTIONS(3567), + [aux_sym_cmd_identifier_token22] = ACTIONS(3567), + [aux_sym_cmd_identifier_token23] = ACTIONS(3567), + [aux_sym_cmd_identifier_token24] = ACTIONS(3567), + [aux_sym_cmd_identifier_token25] = ACTIONS(3567), + [aux_sym_cmd_identifier_token26] = ACTIONS(3567), + [aux_sym_cmd_identifier_token27] = ACTIONS(3567), + [aux_sym_cmd_identifier_token28] = ACTIONS(3567), + [aux_sym_cmd_identifier_token29] = ACTIONS(3567), + [aux_sym_cmd_identifier_token30] = ACTIONS(3567), + [aux_sym_cmd_identifier_token31] = ACTIONS(3567), + [aux_sym_cmd_identifier_token32] = ACTIONS(3567), + [aux_sym_cmd_identifier_token33] = ACTIONS(3567), + [aux_sym_cmd_identifier_token34] = ACTIONS(3563), + [aux_sym_cmd_identifier_token35] = ACTIONS(3567), + [aux_sym_cmd_identifier_token36] = ACTIONS(3567), + [aux_sym_cmd_identifier_token37] = ACTIONS(3567), + [aux_sym_cmd_identifier_token38] = ACTIONS(3563), + [aux_sym_cmd_identifier_token39] = ACTIONS(3567), + [aux_sym_cmd_identifier_token40] = ACTIONS(3567), + [anon_sym_LBRACK] = ACTIONS(3567), + [anon_sym_LPAREN] = ACTIONS(3567), + [anon_sym_DOLLAR] = ACTIONS(3563), + [anon_sym_DASH2] = ACTIONS(3563), + [anon_sym_LBRACE] = ACTIONS(3567), + [anon_sym_DOT_DOT] = ACTIONS(3563), + [aux_sym_expr_unary_token1] = ACTIONS(3567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3567), + [anon_sym_DOT_DOT_LT] = ACTIONS(3567), + [anon_sym_null] = ACTIONS(3563), + [anon_sym_true] = ACTIONS(3563), + [anon_sym_false] = ACTIONS(3563), + [aux_sym__val_number_decimal_token1] = ACTIONS(3563), + [aux_sym__val_number_decimal_token2] = ACTIONS(3567), + [aux_sym__val_number_decimal_token3] = ACTIONS(3567), + [aux_sym__val_number_decimal_token4] = ACTIONS(3567), + [aux_sym__val_number_token1] = ACTIONS(3567), + [aux_sym__val_number_token2] = ACTIONS(3567), + [aux_sym__val_number_token3] = ACTIONS(3567), + [aux_sym__val_number_token4] = ACTIONS(3563), + [aux_sym__val_number_token5] = ACTIONS(3563), + [aux_sym__val_number_token6] = ACTIONS(3563), + [anon_sym_0b] = ACTIONS(3563), + [anon_sym_0o] = ACTIONS(3563), + [anon_sym_0x] = ACTIONS(3563), + [sym_val_date] = ACTIONS(3567), + [anon_sym_DQUOTE] = ACTIONS(3567), + [sym__str_single_quotes] = ACTIONS(3567), + [sym__str_back_ticks] = ACTIONS(3567), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3567), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3567), + [aux_sym_env_var_token1] = ACTIONS(3569), + [anon_sym_CARET] = ACTIONS(3567), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3567), }, [1174] = { - [sym_match_arm] = STATE(6885), - [sym_default_arm] = STATE(6885), - [sym_match_pattern] = STATE(7608), - [sym__match_pattern] = STATE(6119), - [sym__match_pattern_expression] = STATE(6912), - [sym__match_pattern_value] = STATE(6932), - [sym__match_pattern_list] = STATE(6972), - [sym__match_pattern_record] = STATE(6995), - [sym_expr_parenthesized] = STATE(5800), - [sym_val_range] = STATE(6932), - [sym__val_range] = STATE(7572), - [sym_val_nothing] = STATE(7043), - [sym_val_bool] = STATE(6380), - [sym_val_variable] = STATE(5810), - [sym_val_number] = STATE(7043), - [sym__val_number_decimal] = STATE(5472), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(7043), - [sym_val_filesize] = STATE(7043), - [sym_val_binary] = STATE(7043), - [sym_val_string] = STATE(7043), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_table] = STATE(7043), - [sym_unquoted] = STATE(7086), - [sym__unquoted_anonymous_prefix] = STATE(7585), [sym_comment] = STATE(1174), - [aux_sym_shebang_repeat1] = STATE(1197), - [aux_sym_ctrl_match_repeat1] = STATE(1246), - [sym__newline] = ACTIONS(3615), - [anon_sym_LBRACK] = ACTIONS(3617), - [anon_sym_LPAREN] = ACTIONS(3619), - [anon_sym_DOLLAR] = ACTIONS(3621), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym_RBRACE] = ACTIONS(3625), - [anon_sym__] = ACTIONS(3627), - [anon_sym_DOT_DOT] = ACTIONS(3629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3631), - [anon_sym_DOT_DOT_LT] = ACTIONS(3631), - [anon_sym_null] = ACTIONS(3633), - [anon_sym_true] = ACTIONS(3635), - [anon_sym_false] = ACTIONS(3635), - [aux_sym__val_number_decimal_token1] = ACTIONS(3637), - [aux_sym__val_number_decimal_token2] = ACTIONS(3639), - [aux_sym__val_number_decimal_token3] = ACTIONS(3641), - [aux_sym__val_number_decimal_token4] = ACTIONS(3643), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3645), - [aux_sym__val_number_token5] = ACTIONS(3645), - [aux_sym__val_number_token6] = ACTIONS(3645), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3647), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_bit_DASHshl] = ACTIONS(1575), + [anon_sym_bit_DASHshr] = ACTIONS(1575), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_BANG_TILDE] = ACTIONS(1575), + [anon_sym_bit_DASHand] = ACTIONS(1575), + [anon_sym_bit_DASHxor] = ACTIONS(1575), + [anon_sym_bit_DASHor] = ACTIONS(1575), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_not_DASHin] = ACTIONS(1575), + [anon_sym_starts_DASHwith] = ACTIONS(1575), + [anon_sym_ends_DASHwith] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1575), + [aux_sym_cmd_identifier_token41] = ACTIONS(1573), + [sym__newline] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_err_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_GT_PIPE] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_RBRACE] = ACTIONS(1573), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1573), + [anon_sym_xor2] = ACTIONS(1573), + [anon_sym_or2] = ACTIONS(1573), + [anon_sym_not_DASHin2] = ACTIONS(1573), + [anon_sym_starts_DASHwith2] = ACTIONS(1573), + [anon_sym_ends_DASHwith2] = ACTIONS(1573), + [anon_sym_EQ_EQ2] = ACTIONS(1573), + [anon_sym_BANG_EQ2] = ACTIONS(1573), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1573), + [anon_sym_GT_EQ2] = ACTIONS(1573), + [anon_sym_EQ_TILDE2] = ACTIONS(1573), + [anon_sym_BANG_TILDE2] = ACTIONS(1573), + [anon_sym_STAR_STAR2] = ACTIONS(1573), + [anon_sym_PLUS_PLUS2] = ACTIONS(1573), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1573), + [anon_sym_SLASH_SLASH2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1573), + [anon_sym_bit_DASHshr2] = ACTIONS(1573), + [anon_sym_bit_DASHand2] = ACTIONS(1573), + [anon_sym_bit_DASHxor2] = ACTIONS(1573), + [anon_sym_bit_DASHor2] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT] = ACTIONS(3572), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(3574), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_POUND] = ACTIONS(3), }, [1175] = { - [sym_match_arm] = STATE(7123), - [sym_default_arm] = STATE(7123), - [sym_match_pattern] = STATE(7608), - [sym__match_pattern] = STATE(6119), - [sym__match_pattern_expression] = STATE(6912), - [sym__match_pattern_value] = STATE(6932), - [sym__match_pattern_list] = STATE(6972), - [sym__match_pattern_record] = STATE(6995), - [sym_expr_parenthesized] = STATE(5800), - [sym_val_range] = STATE(6932), - [sym__val_range] = STATE(7572), - [sym_val_nothing] = STATE(7043), - [sym_val_bool] = STATE(6380), - [sym_val_variable] = STATE(5810), - [sym_val_number] = STATE(7043), - [sym__val_number_decimal] = STATE(5472), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(7043), - [sym_val_filesize] = STATE(7043), - [sym_val_binary] = STATE(7043), - [sym_val_string] = STATE(7043), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_table] = STATE(7043), - [sym_unquoted] = STATE(7086), - [sym__unquoted_anonymous_prefix] = STATE(7585), [sym_comment] = STATE(1175), - [aux_sym_shebang_repeat1] = STATE(1194), - [aux_sym_ctrl_match_repeat1] = STATE(1243), - [sym__newline] = ACTIONS(3615), - [anon_sym_LBRACK] = ACTIONS(3617), - [anon_sym_LPAREN] = ACTIONS(3619), - [anon_sym_DOLLAR] = ACTIONS(3621), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym_RBRACE] = ACTIONS(3649), - [anon_sym__] = ACTIONS(3627), - [anon_sym_DOT_DOT] = ACTIONS(3629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3631), - [anon_sym_DOT_DOT_LT] = ACTIONS(3631), - [anon_sym_null] = ACTIONS(3633), - [anon_sym_true] = ACTIONS(3635), - [anon_sym_false] = ACTIONS(3635), - [aux_sym__val_number_decimal_token1] = ACTIONS(3637), - [aux_sym__val_number_decimal_token2] = ACTIONS(3639), - [aux_sym__val_number_decimal_token3] = ACTIONS(3641), - [aux_sym__val_number_decimal_token4] = ACTIONS(3643), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3645), - [aux_sym__val_number_token5] = ACTIONS(3645), - [aux_sym__val_number_token6] = ACTIONS(3645), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3647), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_STAR_STAR] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_mod] = ACTIONS(1587), + [anon_sym_SLASH_SLASH] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_bit_DASHshl] = ACTIONS(1587), + [anon_sym_bit_DASHshr] = ACTIONS(1587), + [anon_sym_EQ_TILDE] = ACTIONS(1587), + [anon_sym_BANG_TILDE] = ACTIONS(1587), + [anon_sym_bit_DASHand] = ACTIONS(1587), + [anon_sym_bit_DASHxor] = ACTIONS(1587), + [anon_sym_bit_DASHor] = ACTIONS(1587), + [anon_sym_and] = ACTIONS(1587), + [anon_sym_xor] = ACTIONS(1587), + [anon_sym_or] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(1587), + [anon_sym_not_DASHin] = ACTIONS(1587), + [anon_sym_starts_DASHwith] = ACTIONS(1587), + [anon_sym_ends_DASHwith] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(1587), + [anon_sym_BANG_EQ] = ACTIONS(1587), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_LT_EQ] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1587), + [aux_sym_cmd_identifier_token41] = ACTIONS(1585), + [sym__newline] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_err_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_GT_PIPE] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), + [anon_sym_GT2] = ACTIONS(1585), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_in2] = ACTIONS(1585), + [anon_sym_RBRACE] = ACTIONS(1585), + [anon_sym_STAR2] = ACTIONS(1585), + [anon_sym_and2] = ACTIONS(1585), + [anon_sym_xor2] = ACTIONS(1585), + [anon_sym_or2] = ACTIONS(1585), + [anon_sym_not_DASHin2] = ACTIONS(1585), + [anon_sym_starts_DASHwith2] = ACTIONS(1585), + [anon_sym_ends_DASHwith2] = ACTIONS(1585), + [anon_sym_EQ_EQ2] = ACTIONS(1585), + [anon_sym_BANG_EQ2] = ACTIONS(1585), + [anon_sym_LT2] = ACTIONS(1585), + [anon_sym_LT_EQ2] = ACTIONS(1585), + [anon_sym_GT_EQ2] = ACTIONS(1585), + [anon_sym_EQ_TILDE2] = ACTIONS(1585), + [anon_sym_BANG_TILDE2] = ACTIONS(1585), + [anon_sym_STAR_STAR2] = ACTIONS(1585), + [anon_sym_PLUS_PLUS2] = ACTIONS(1585), + [anon_sym_SLASH2] = ACTIONS(1585), + [anon_sym_mod2] = ACTIONS(1585), + [anon_sym_SLASH_SLASH2] = ACTIONS(1585), + [anon_sym_PLUS2] = ACTIONS(1585), + [anon_sym_bit_DASHshl2] = ACTIONS(1585), + [anon_sym_bit_DASHshr2] = ACTIONS(1585), + [anon_sym_bit_DASHand2] = ACTIONS(1585), + [anon_sym_bit_DASHxor2] = ACTIONS(1585), + [anon_sym_bit_DASHor2] = ACTIONS(1585), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [aux_sym__immediate_decimal_token1] = ACTIONS(3576), + [aux_sym__immediate_decimal_token2] = ACTIONS(3578), + [sym_filesize_unit] = ACTIONS(1585), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_POUND] = ACTIONS(3), }, [1176] = { [sym_comment] = STATE(1176), - [anon_sym_STAR_STAR] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_SLASH_SLASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_bit_DASHshl] = ACTIONS(1609), - [anon_sym_bit_DASHshr] = ACTIONS(1609), - [anon_sym_EQ_TILDE] = ACTIONS(1609), - [anon_sym_BANG_TILDE] = ACTIONS(1609), - [anon_sym_bit_DASHand] = ACTIONS(1609), - [anon_sym_bit_DASHxor] = ACTIONS(1609), - [anon_sym_bit_DASHor] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(1609), - [anon_sym_not_DASHin] = ACTIONS(1609), - [anon_sym_starts_DASHwith] = ACTIONS(1609), - [anon_sym_ends_DASHwith] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1609), - [anon_sym_BANG_EQ] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1609), - [aux_sym_cmd_identifier_token41] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_RPAREN] = ACTIONS(1607), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT] = ACTIONS(3651), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(3653), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_bit_DASHshl] = ACTIONS(1575), + [anon_sym_bit_DASHshr] = ACTIONS(1575), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_BANG_TILDE] = ACTIONS(1575), + [anon_sym_bit_DASHand] = ACTIONS(1575), + [anon_sym_bit_DASHxor] = ACTIONS(1575), + [anon_sym_bit_DASHor] = ACTIONS(1575), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_not_DASHin] = ACTIONS(1575), + [anon_sym_starts_DASHwith] = ACTIONS(1575), + [anon_sym_ends_DASHwith] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1575), + [aux_sym_cmd_identifier_token41] = ACTIONS(1573), + [sym__newline] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_err_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_GT_PIPE] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), + [anon_sym_RPAREN] = ACTIONS(1573), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1573), + [anon_sym_xor2] = ACTIONS(1573), + [anon_sym_or2] = ACTIONS(1573), + [anon_sym_not_DASHin2] = ACTIONS(1573), + [anon_sym_starts_DASHwith2] = ACTIONS(1573), + [anon_sym_ends_DASHwith2] = ACTIONS(1573), + [anon_sym_EQ_EQ2] = ACTIONS(1573), + [anon_sym_BANG_EQ2] = ACTIONS(1573), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1573), + [anon_sym_GT_EQ2] = ACTIONS(1573), + [anon_sym_EQ_TILDE2] = ACTIONS(1573), + [anon_sym_BANG_TILDE2] = ACTIONS(1573), + [anon_sym_STAR_STAR2] = ACTIONS(1573), + [anon_sym_PLUS_PLUS2] = ACTIONS(1573), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1573), + [anon_sym_SLASH_SLASH2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1573), + [anon_sym_bit_DASHshr2] = ACTIONS(1573), + [anon_sym_bit_DASHand2] = ACTIONS(1573), + [anon_sym_bit_DASHxor2] = ACTIONS(1573), + [anon_sym_bit_DASHor2] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT] = ACTIONS(3580), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(3582), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), [anon_sym_POUND] = ACTIONS(3), }, [1177] = { [sym_comment] = STATE(1177), - [aux_sym_cmd_identifier_token1] = ACTIONS(3655), - [aux_sym_cmd_identifier_token2] = ACTIONS(3655), - [aux_sym_cmd_identifier_token3] = ACTIONS(3655), - [aux_sym_cmd_identifier_token4] = ACTIONS(3655), - [aux_sym_cmd_identifier_token5] = ACTIONS(3655), - [aux_sym_cmd_identifier_token6] = ACTIONS(3655), - [aux_sym_cmd_identifier_token7] = ACTIONS(3655), - [aux_sym_cmd_identifier_token8] = ACTIONS(3655), - [aux_sym_cmd_identifier_token9] = ACTIONS(3655), - [aux_sym_cmd_identifier_token10] = ACTIONS(3655), - [aux_sym_cmd_identifier_token11] = ACTIONS(3655), - [aux_sym_cmd_identifier_token12] = ACTIONS(3655), - [aux_sym_cmd_identifier_token13] = ACTIONS(3655), - [aux_sym_cmd_identifier_token14] = ACTIONS(3655), - [aux_sym_cmd_identifier_token15] = ACTIONS(3655), - [aux_sym_cmd_identifier_token16] = ACTIONS(3655), - [aux_sym_cmd_identifier_token17] = ACTIONS(3655), - [aux_sym_cmd_identifier_token18] = ACTIONS(3655), - [aux_sym_cmd_identifier_token19] = ACTIONS(3655), - [aux_sym_cmd_identifier_token20] = ACTIONS(3655), - [aux_sym_cmd_identifier_token21] = ACTIONS(3655), - [aux_sym_cmd_identifier_token22] = ACTIONS(3655), - [aux_sym_cmd_identifier_token23] = ACTIONS(3655), - [aux_sym_cmd_identifier_token24] = ACTIONS(3655), - [aux_sym_cmd_identifier_token25] = ACTIONS(3655), - [aux_sym_cmd_identifier_token26] = ACTIONS(3655), - [aux_sym_cmd_identifier_token27] = ACTIONS(3655), - [aux_sym_cmd_identifier_token28] = ACTIONS(3655), - [aux_sym_cmd_identifier_token29] = ACTIONS(3655), - [aux_sym_cmd_identifier_token30] = ACTIONS(3655), - [aux_sym_cmd_identifier_token31] = ACTIONS(3655), - [aux_sym_cmd_identifier_token32] = ACTIONS(3655), - [aux_sym_cmd_identifier_token33] = ACTIONS(3655), - [aux_sym_cmd_identifier_token34] = ACTIONS(3655), - [aux_sym_cmd_identifier_token35] = ACTIONS(3655), - [aux_sym_cmd_identifier_token36] = ACTIONS(3655), - [aux_sym_cmd_identifier_token37] = ACTIONS(3655), - [aux_sym_cmd_identifier_token38] = ACTIONS(3655), - [aux_sym_cmd_identifier_token39] = ACTIONS(3655), - [aux_sym_cmd_identifier_token40] = ACTIONS(3655), - [sym__newline] = ACTIONS(3655), - [sym__space] = ACTIONS(3657), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_DOLLAR] = ACTIONS(3655), - [anon_sym_DASH2] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3655), - [anon_sym_DOT_DOT] = ACTIONS(3655), - [aux_sym_expr_unary_token1] = ACTIONS(3655), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3655), - [anon_sym_DOT_DOT_LT] = ACTIONS(3655), - [anon_sym_null] = ACTIONS(3655), - [anon_sym_true] = ACTIONS(3655), - [anon_sym_false] = ACTIONS(3655), - [aux_sym__val_number_decimal_token1] = ACTIONS(3655), - [aux_sym__val_number_decimal_token2] = ACTIONS(3655), - [aux_sym__val_number_decimal_token3] = ACTIONS(3655), - [aux_sym__val_number_decimal_token4] = ACTIONS(3655), - [aux_sym__val_number_token1] = ACTIONS(3655), - [aux_sym__val_number_token2] = ACTIONS(3655), - [aux_sym__val_number_token3] = ACTIONS(3655), - [aux_sym__val_number_token4] = ACTIONS(3655), - [aux_sym__val_number_token5] = ACTIONS(3655), - [aux_sym__val_number_token6] = ACTIONS(3655), - [anon_sym_0b] = ACTIONS(3655), - [anon_sym_0o] = ACTIONS(3655), - [anon_sym_0x] = ACTIONS(3655), - [sym_val_date] = ACTIONS(3655), - [anon_sym_DQUOTE] = ACTIONS(3655), - [sym__str_single_quotes] = ACTIONS(3655), - [sym__str_back_ticks] = ACTIONS(3655), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3655), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3655), - [aux_sym_env_var_token1] = ACTIONS(3655), - [anon_sym_CARET] = ACTIONS(3655), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3657), - }, - [1178] = { - [sym_match_arm] = STATE(7124), - [sym_default_arm] = STATE(7124), - [sym_match_pattern] = STATE(7608), - [sym__match_pattern] = STATE(6119), - [sym__match_pattern_expression] = STATE(6912), - [sym__match_pattern_value] = STATE(6932), - [sym__match_pattern_list] = STATE(6972), - [sym__match_pattern_record] = STATE(6995), - [sym_expr_parenthesized] = STATE(5800), - [sym_val_range] = STATE(6932), - [sym__val_range] = STATE(7572), - [sym_val_nothing] = STATE(7043), - [sym_val_bool] = STATE(6380), - [sym_val_variable] = STATE(5810), - [sym_val_number] = STATE(7043), - [sym__val_number_decimal] = STATE(5472), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(7043), - [sym_val_filesize] = STATE(7043), - [sym_val_binary] = STATE(7043), - [sym_val_string] = STATE(7043), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_table] = STATE(7043), - [sym_unquoted] = STATE(7086), - [sym__unquoted_anonymous_prefix] = STATE(7585), - [sym_comment] = STATE(1178), - [aux_sym_shebang_repeat1] = STATE(1199), - [aux_sym_ctrl_match_repeat1] = STATE(1238), - [sym__newline] = ACTIONS(3615), - [anon_sym_LBRACK] = ACTIONS(3617), - [anon_sym_LPAREN] = ACTIONS(3619), - [anon_sym_DOLLAR] = ACTIONS(3621), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym_RBRACE] = ACTIONS(3659), - [anon_sym__] = ACTIONS(3627), - [anon_sym_DOT_DOT] = ACTIONS(3629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3631), - [anon_sym_DOT_DOT_LT] = ACTIONS(3631), - [anon_sym_null] = ACTIONS(3633), - [anon_sym_true] = ACTIONS(3635), - [anon_sym_false] = ACTIONS(3635), - [aux_sym__val_number_decimal_token1] = ACTIONS(3637), - [aux_sym__val_number_decimal_token2] = ACTIONS(3639), - [aux_sym__val_number_decimal_token3] = ACTIONS(3641), - [aux_sym__val_number_decimal_token4] = ACTIONS(3643), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3645), - [aux_sym__val_number_token5] = ACTIONS(3645), - [aux_sym__val_number_token6] = ACTIONS(3645), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3647), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [1179] = { - [sym_match_arm] = STATE(7128), - [sym_default_arm] = STATE(7128), - [sym_match_pattern] = STATE(7608), - [sym__match_pattern] = STATE(6119), - [sym__match_pattern_expression] = STATE(6912), - [sym__match_pattern_value] = STATE(6932), - [sym__match_pattern_list] = STATE(6972), - [sym__match_pattern_record] = STATE(6995), - [sym_expr_parenthesized] = STATE(5800), - [sym_val_range] = STATE(6932), - [sym__val_range] = STATE(7572), - [sym_val_nothing] = STATE(7043), - [sym_val_bool] = STATE(6380), - [sym_val_variable] = STATE(5810), - [sym_val_number] = STATE(7043), - [sym__val_number_decimal] = STATE(5472), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(7043), - [sym_val_filesize] = STATE(7043), - [sym_val_binary] = STATE(7043), - [sym_val_string] = STATE(7043), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_table] = STATE(7043), - [sym_unquoted] = STATE(7086), - [sym__unquoted_anonymous_prefix] = STATE(7585), - [sym_comment] = STATE(1179), - [aux_sym_shebang_repeat1] = STATE(1193), - [aux_sym_ctrl_match_repeat1] = STATE(1250), - [sym__newline] = ACTIONS(3615), - [anon_sym_LBRACK] = ACTIONS(3617), - [anon_sym_LPAREN] = ACTIONS(3619), - [anon_sym_DOLLAR] = ACTIONS(3621), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym_RBRACE] = ACTIONS(3661), - [anon_sym__] = ACTIONS(3627), - [anon_sym_DOT_DOT] = ACTIONS(3629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3631), - [anon_sym_DOT_DOT_LT] = ACTIONS(3631), - [anon_sym_null] = ACTIONS(3633), - [anon_sym_true] = ACTIONS(3635), - [anon_sym_false] = ACTIONS(3635), - [aux_sym__val_number_decimal_token1] = ACTIONS(3637), - [aux_sym__val_number_decimal_token2] = ACTIONS(3639), - [aux_sym__val_number_decimal_token3] = ACTIONS(3641), - [aux_sym__val_number_decimal_token4] = ACTIONS(3643), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3645), - [aux_sym__val_number_token5] = ACTIONS(3645), - [aux_sym__val_number_token6] = ACTIONS(3645), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3647), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [1180] = { - [sym_env_var] = STATE(7496), - [sym_comment] = STATE(1180), - [aux_sym_pipe_element_repeat2] = STATE(1180), - [aux_sym_cmd_identifier_token1] = ACTIONS(3663), - [aux_sym_cmd_identifier_token2] = ACTIONS(3665), - [aux_sym_cmd_identifier_token3] = ACTIONS(3665), - [aux_sym_cmd_identifier_token4] = ACTIONS(3665), - [aux_sym_cmd_identifier_token5] = ACTIONS(3665), - [aux_sym_cmd_identifier_token6] = ACTIONS(3665), - [aux_sym_cmd_identifier_token7] = ACTIONS(3665), - [aux_sym_cmd_identifier_token8] = ACTIONS(3665), - [aux_sym_cmd_identifier_token9] = ACTIONS(3663), - [aux_sym_cmd_identifier_token10] = ACTIONS(3665), - [aux_sym_cmd_identifier_token11] = ACTIONS(3665), - [aux_sym_cmd_identifier_token12] = ACTIONS(3665), - [aux_sym_cmd_identifier_token13] = ACTIONS(3663), - [aux_sym_cmd_identifier_token14] = ACTIONS(3665), - [aux_sym_cmd_identifier_token15] = ACTIONS(3663), - [aux_sym_cmd_identifier_token16] = ACTIONS(3665), - [aux_sym_cmd_identifier_token17] = ACTIONS(3665), - [aux_sym_cmd_identifier_token18] = ACTIONS(3665), - [aux_sym_cmd_identifier_token19] = ACTIONS(3665), - [aux_sym_cmd_identifier_token20] = ACTIONS(3665), - [aux_sym_cmd_identifier_token21] = ACTIONS(3665), - [aux_sym_cmd_identifier_token22] = ACTIONS(3665), - [aux_sym_cmd_identifier_token23] = ACTIONS(3665), - [aux_sym_cmd_identifier_token24] = ACTIONS(3665), - [aux_sym_cmd_identifier_token25] = ACTIONS(3665), - [aux_sym_cmd_identifier_token26] = ACTIONS(3665), - [aux_sym_cmd_identifier_token27] = ACTIONS(3665), - [aux_sym_cmd_identifier_token28] = ACTIONS(3665), - [aux_sym_cmd_identifier_token29] = ACTIONS(3665), - [aux_sym_cmd_identifier_token30] = ACTIONS(3665), - [aux_sym_cmd_identifier_token31] = ACTIONS(3665), - [aux_sym_cmd_identifier_token32] = ACTIONS(3665), - [aux_sym_cmd_identifier_token33] = ACTIONS(3665), - [aux_sym_cmd_identifier_token34] = ACTIONS(3663), - [aux_sym_cmd_identifier_token35] = ACTIONS(3665), - [aux_sym_cmd_identifier_token36] = ACTIONS(3665), - [aux_sym_cmd_identifier_token37] = ACTIONS(3665), - [aux_sym_cmd_identifier_token38] = ACTIONS(3663), - [aux_sym_cmd_identifier_token39] = ACTIONS(3665), - [aux_sym_cmd_identifier_token40] = ACTIONS(3665), - [anon_sym_LBRACK] = ACTIONS(3665), - [anon_sym_LPAREN] = ACTIONS(3665), - [anon_sym_DOLLAR] = ACTIONS(3663), - [anon_sym_DASH2] = ACTIONS(3663), - [anon_sym_LBRACE] = ACTIONS(3665), - [anon_sym_DOT_DOT] = ACTIONS(3663), - [aux_sym_expr_unary_token1] = ACTIONS(3665), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3665), - [anon_sym_DOT_DOT_LT] = ACTIONS(3665), - [anon_sym_null] = ACTIONS(3663), - [anon_sym_true] = ACTIONS(3663), - [anon_sym_false] = ACTIONS(3663), - [aux_sym__val_number_decimal_token1] = ACTIONS(3663), - [aux_sym__val_number_decimal_token2] = ACTIONS(3665), - [aux_sym__val_number_decimal_token3] = ACTIONS(3665), - [aux_sym__val_number_decimal_token4] = ACTIONS(3665), - [aux_sym__val_number_token1] = ACTIONS(3665), - [aux_sym__val_number_token2] = ACTIONS(3665), - [aux_sym__val_number_token3] = ACTIONS(3665), - [aux_sym__val_number_token4] = ACTIONS(3663), - [aux_sym__val_number_token5] = ACTIONS(3663), - [aux_sym__val_number_token6] = ACTIONS(3663), - [anon_sym_0b] = ACTIONS(3663), - [anon_sym_0o] = ACTIONS(3663), - [anon_sym_0x] = ACTIONS(3663), - [sym_val_date] = ACTIONS(3665), - [anon_sym_DQUOTE] = ACTIONS(3665), - [sym__str_single_quotes] = ACTIONS(3665), - [sym__str_back_ticks] = ACTIONS(3665), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3665), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3665), - [aux_sym_env_var_token1] = ACTIONS(3667), - [anon_sym_CARET] = ACTIONS(3665), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3665), - }, - [1181] = { - [sym_comment] = STATE(1181), - [aux_sym_pipe_element_repeat1] = STATE(1183), - [aux_sym_cmd_identifier_token1] = ACTIONS(3663), - [aux_sym_cmd_identifier_token2] = ACTIONS(3663), - [aux_sym_cmd_identifier_token3] = ACTIONS(3663), - [aux_sym_cmd_identifier_token4] = ACTIONS(3663), - [aux_sym_cmd_identifier_token5] = ACTIONS(3663), - [aux_sym_cmd_identifier_token6] = ACTIONS(3663), - [aux_sym_cmd_identifier_token7] = ACTIONS(3663), - [aux_sym_cmd_identifier_token8] = ACTIONS(3663), - [aux_sym_cmd_identifier_token9] = ACTIONS(3663), - [aux_sym_cmd_identifier_token10] = ACTIONS(3663), - [aux_sym_cmd_identifier_token11] = ACTIONS(3663), - [aux_sym_cmd_identifier_token12] = ACTIONS(3663), - [aux_sym_cmd_identifier_token13] = ACTIONS(3663), - [aux_sym_cmd_identifier_token14] = ACTIONS(3663), - [aux_sym_cmd_identifier_token15] = ACTIONS(3663), - [aux_sym_cmd_identifier_token16] = ACTIONS(3663), - [aux_sym_cmd_identifier_token17] = ACTIONS(3663), - [aux_sym_cmd_identifier_token18] = ACTIONS(3663), - [aux_sym_cmd_identifier_token19] = ACTIONS(3663), - [aux_sym_cmd_identifier_token20] = ACTIONS(3663), - [aux_sym_cmd_identifier_token21] = ACTIONS(3663), - [aux_sym_cmd_identifier_token22] = ACTIONS(3663), - [aux_sym_cmd_identifier_token23] = ACTIONS(3663), - [aux_sym_cmd_identifier_token24] = ACTIONS(3663), - [aux_sym_cmd_identifier_token25] = ACTIONS(3663), - [aux_sym_cmd_identifier_token26] = ACTIONS(3663), - [aux_sym_cmd_identifier_token27] = ACTIONS(3663), - [aux_sym_cmd_identifier_token28] = ACTIONS(3663), - [aux_sym_cmd_identifier_token29] = ACTIONS(3663), - [aux_sym_cmd_identifier_token30] = ACTIONS(3663), - [aux_sym_cmd_identifier_token31] = ACTIONS(3663), - [aux_sym_cmd_identifier_token32] = ACTIONS(3663), - [aux_sym_cmd_identifier_token33] = ACTIONS(3663), - [aux_sym_cmd_identifier_token34] = ACTIONS(3663), - [aux_sym_cmd_identifier_token35] = ACTIONS(3663), - [aux_sym_cmd_identifier_token36] = ACTIONS(3663), - [aux_sym_cmd_identifier_token37] = ACTIONS(3663), - [aux_sym_cmd_identifier_token38] = ACTIONS(3663), - [aux_sym_cmd_identifier_token39] = ACTIONS(3663), - [aux_sym_cmd_identifier_token40] = ACTIONS(3663), - [sym__space] = ACTIONS(3670), - [anon_sym_LBRACK] = ACTIONS(3663), - [anon_sym_LPAREN] = ACTIONS(3663), - [anon_sym_DOLLAR] = ACTIONS(3663), - [anon_sym_DASH2] = ACTIONS(3663), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_DOT_DOT] = ACTIONS(3663), - [aux_sym_expr_unary_token1] = ACTIONS(3663), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3663), - [anon_sym_DOT_DOT_LT] = ACTIONS(3663), - [anon_sym_null] = ACTIONS(3663), - [anon_sym_true] = ACTIONS(3663), - [anon_sym_false] = ACTIONS(3663), - [aux_sym__val_number_decimal_token1] = ACTIONS(3663), - [aux_sym__val_number_decimal_token2] = ACTIONS(3663), - [aux_sym__val_number_decimal_token3] = ACTIONS(3663), - [aux_sym__val_number_decimal_token4] = ACTIONS(3663), - [aux_sym__val_number_token1] = ACTIONS(3663), - [aux_sym__val_number_token2] = ACTIONS(3663), - [aux_sym__val_number_token3] = ACTIONS(3663), - [aux_sym__val_number_token4] = ACTIONS(3663), - [aux_sym__val_number_token5] = ACTIONS(3663), - [aux_sym__val_number_token6] = ACTIONS(3663), - [anon_sym_0b] = ACTIONS(3663), - [anon_sym_0o] = ACTIONS(3663), - [anon_sym_0x] = ACTIONS(3663), - [sym_val_date] = ACTIONS(3663), - [anon_sym_DQUOTE] = ACTIONS(3663), - [sym__str_single_quotes] = ACTIONS(3663), - [sym__str_back_ticks] = ACTIONS(3663), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3663), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), - [aux_sym_env_var_token1] = ACTIONS(3663), - [anon_sym_CARET] = ACTIONS(3663), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3665), - }, - [1182] = { - [sym_comment] = STATE(1182), - [ts_builtin_sym_end] = ACTIONS(1609), - [anon_sym_STAR_STAR] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_SLASH_SLASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_bit_DASHshl] = ACTIONS(1609), - [anon_sym_bit_DASHshr] = ACTIONS(1609), - [anon_sym_EQ_TILDE] = ACTIONS(1609), - [anon_sym_BANG_TILDE] = ACTIONS(1609), - [anon_sym_bit_DASHand] = ACTIONS(1609), - [anon_sym_bit_DASHxor] = ACTIONS(1609), - [anon_sym_bit_DASHor] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(1609), - [anon_sym_not_DASHin] = ACTIONS(1609), - [anon_sym_starts_DASHwith] = ACTIONS(1609), - [anon_sym_ends_DASHwith] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1609), - [anon_sym_BANG_EQ] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1609), - [aux_sym_cmd_identifier_token41] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT] = ACTIONS(3672), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(3674), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(3), - }, - [1183] = { - [sym_comment] = STATE(1183), - [aux_sym_pipe_element_repeat1] = STATE(1183), - [aux_sym_cmd_identifier_token1] = ACTIONS(3676), - [aux_sym_cmd_identifier_token2] = ACTIONS(3676), - [aux_sym_cmd_identifier_token3] = ACTIONS(3676), - [aux_sym_cmd_identifier_token4] = ACTIONS(3676), - [aux_sym_cmd_identifier_token5] = ACTIONS(3676), - [aux_sym_cmd_identifier_token6] = ACTIONS(3676), - [aux_sym_cmd_identifier_token7] = ACTIONS(3676), - [aux_sym_cmd_identifier_token8] = ACTIONS(3676), - [aux_sym_cmd_identifier_token9] = ACTIONS(3676), - [aux_sym_cmd_identifier_token10] = ACTIONS(3676), - [aux_sym_cmd_identifier_token11] = ACTIONS(3676), - [aux_sym_cmd_identifier_token12] = ACTIONS(3676), - [aux_sym_cmd_identifier_token13] = ACTIONS(3676), - [aux_sym_cmd_identifier_token14] = ACTIONS(3676), - [aux_sym_cmd_identifier_token15] = ACTIONS(3676), - [aux_sym_cmd_identifier_token16] = ACTIONS(3676), - [aux_sym_cmd_identifier_token17] = ACTIONS(3676), - [aux_sym_cmd_identifier_token18] = ACTIONS(3676), - [aux_sym_cmd_identifier_token19] = ACTIONS(3676), - [aux_sym_cmd_identifier_token20] = ACTIONS(3676), - [aux_sym_cmd_identifier_token21] = ACTIONS(3676), - [aux_sym_cmd_identifier_token22] = ACTIONS(3676), - [aux_sym_cmd_identifier_token23] = ACTIONS(3676), - [aux_sym_cmd_identifier_token24] = ACTIONS(3676), - [aux_sym_cmd_identifier_token25] = ACTIONS(3676), - [aux_sym_cmd_identifier_token26] = ACTIONS(3676), - [aux_sym_cmd_identifier_token27] = ACTIONS(3676), - [aux_sym_cmd_identifier_token28] = ACTIONS(3676), - [aux_sym_cmd_identifier_token29] = ACTIONS(3676), - [aux_sym_cmd_identifier_token30] = ACTIONS(3676), - [aux_sym_cmd_identifier_token31] = ACTIONS(3676), - [aux_sym_cmd_identifier_token32] = ACTIONS(3676), - [aux_sym_cmd_identifier_token33] = ACTIONS(3676), - [aux_sym_cmd_identifier_token34] = ACTIONS(3676), - [aux_sym_cmd_identifier_token35] = ACTIONS(3676), - [aux_sym_cmd_identifier_token36] = ACTIONS(3676), - [aux_sym_cmd_identifier_token37] = ACTIONS(3676), - [aux_sym_cmd_identifier_token38] = ACTIONS(3676), - [aux_sym_cmd_identifier_token39] = ACTIONS(3676), - [aux_sym_cmd_identifier_token40] = ACTIONS(3676), - [sym__space] = ACTIONS(3678), - [anon_sym_LBRACK] = ACTIONS(3676), - [anon_sym_LPAREN] = ACTIONS(3676), - [anon_sym_DOLLAR] = ACTIONS(3676), - [anon_sym_DASH2] = ACTIONS(3676), - [anon_sym_LBRACE] = ACTIONS(3676), - [anon_sym_DOT_DOT] = ACTIONS(3676), - [aux_sym_expr_unary_token1] = ACTIONS(3676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3676), - [anon_sym_DOT_DOT_LT] = ACTIONS(3676), - [anon_sym_null] = ACTIONS(3676), - [anon_sym_true] = ACTIONS(3676), - [anon_sym_false] = ACTIONS(3676), - [aux_sym__val_number_decimal_token1] = ACTIONS(3676), - [aux_sym__val_number_decimal_token2] = ACTIONS(3676), - [aux_sym__val_number_decimal_token3] = ACTIONS(3676), - [aux_sym__val_number_decimal_token4] = ACTIONS(3676), - [aux_sym__val_number_token1] = ACTIONS(3676), - [aux_sym__val_number_token2] = ACTIONS(3676), - [aux_sym__val_number_token3] = ACTIONS(3676), - [aux_sym__val_number_token4] = ACTIONS(3676), - [aux_sym__val_number_token5] = ACTIONS(3676), - [aux_sym__val_number_token6] = ACTIONS(3676), - [anon_sym_0b] = ACTIONS(3676), - [anon_sym_0o] = ACTIONS(3676), - [anon_sym_0x] = ACTIONS(3676), - [sym_val_date] = ACTIONS(3676), - [anon_sym_DQUOTE] = ACTIONS(3676), - [sym__str_single_quotes] = ACTIONS(3676), - [sym__str_back_ticks] = ACTIONS(3676), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3676), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3676), - [aux_sym_env_var_token1] = ACTIONS(3676), - [anon_sym_CARET] = ACTIONS(3676), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3681), - }, - [1184] = { - [sym_comment] = STATE(1184), - [aux_sym_shebang_repeat1] = STATE(1184), + [aux_sym_shebang_repeat1] = STATE(1177), [aux_sym_cmd_identifier_token1] = ACTIONS(1294), [aux_sym_cmd_identifier_token2] = ACTIONS(1296), [aux_sym_cmd_identifier_token3] = ACTIONS(1296), @@ -192862,7 +192605,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(1294), [aux_sym_cmd_identifier_token39] = ACTIONS(1296), [aux_sym_cmd_identifier_token40] = ACTIONS(1296), - [sym__newline] = ACTIONS(3683), + [sym__newline] = ACTIONS(3584), [anon_sym_LBRACK] = ACTIONS(1296), [anon_sym_LPAREN] = ACTIONS(1296), [anon_sym_DOLLAR] = ACTIONS(1294), @@ -192899,1042 +192642,1128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1296), }, - [1185] = { - [sym_comment] = STATE(1185), - [anon_sym_STAR_STAR] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_SLASH] = ACTIONS(1621), - [anon_sym_mod] = ACTIONS(1623), - [anon_sym_SLASH_SLASH] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_bit_DASHshl] = ACTIONS(1623), - [anon_sym_bit_DASHshr] = ACTIONS(1623), - [anon_sym_EQ_TILDE] = ACTIONS(1623), - [anon_sym_BANG_TILDE] = ACTIONS(1623), - [anon_sym_bit_DASHand] = ACTIONS(1623), - [anon_sym_bit_DASHxor] = ACTIONS(1623), - [anon_sym_bit_DASHor] = ACTIONS(1623), - [anon_sym_and] = ACTIONS(1623), - [anon_sym_xor] = ACTIONS(1623), - [anon_sym_or] = ACTIONS(1623), - [anon_sym_in] = ACTIONS(1623), - [anon_sym_not_DASHin] = ACTIONS(1623), - [anon_sym_starts_DASHwith] = ACTIONS(1623), - [anon_sym_ends_DASHwith] = ACTIONS(1623), - [anon_sym_EQ_EQ] = ACTIONS(1623), - [anon_sym_BANG_EQ] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1621), - [anon_sym_LT_EQ] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1621), - [anon_sym_GT_EQ] = ACTIONS(1623), - [aux_sym_cmd_identifier_token41] = ACTIONS(1621), - [sym__newline] = ACTIONS(1621), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_PIPE] = ACTIONS(1621), - [anon_sym_err_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_GT_PIPE] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), - [anon_sym_RPAREN] = ACTIONS(1621), - [anon_sym_GT2] = ACTIONS(1621), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_in2] = ACTIONS(1621), - [anon_sym_STAR2] = ACTIONS(1621), - [anon_sym_and2] = ACTIONS(1621), - [anon_sym_xor2] = ACTIONS(1621), - [anon_sym_or2] = ACTIONS(1621), - [anon_sym_not_DASHin2] = ACTIONS(1621), - [anon_sym_starts_DASHwith2] = ACTIONS(1621), - [anon_sym_ends_DASHwith2] = ACTIONS(1621), - [anon_sym_EQ_EQ2] = ACTIONS(1621), - [anon_sym_BANG_EQ2] = ACTIONS(1621), - [anon_sym_LT2] = ACTIONS(1621), - [anon_sym_LT_EQ2] = ACTIONS(1621), - [anon_sym_GT_EQ2] = ACTIONS(1621), - [anon_sym_EQ_TILDE2] = ACTIONS(1621), - [anon_sym_BANG_TILDE2] = ACTIONS(1621), - [anon_sym_STAR_STAR2] = ACTIONS(1621), - [anon_sym_PLUS_PLUS2] = ACTIONS(1621), - [anon_sym_SLASH2] = ACTIONS(1621), - [anon_sym_mod2] = ACTIONS(1621), - [anon_sym_SLASH_SLASH2] = ACTIONS(1621), - [anon_sym_PLUS2] = ACTIONS(1621), - [anon_sym_bit_DASHshl2] = ACTIONS(1621), - [anon_sym_bit_DASHshr2] = ACTIONS(1621), - [anon_sym_bit_DASHand2] = ACTIONS(1621), - [anon_sym_bit_DASHxor2] = ACTIONS(1621), - [anon_sym_bit_DASHor2] = ACTIONS(1621), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [aux_sym__immediate_decimal_token1] = ACTIONS(3686), - [aux_sym__immediate_decimal_token2] = ACTIONS(3688), - [sym_filesize_unit] = ACTIONS(1621), - [sym_duration_unit] = ACTIONS(1623), - [anon_sym_POUND] = ACTIONS(3), - }, - [1186] = { - [sym_comment] = STATE(1186), - [ts_builtin_sym_end] = ACTIONS(1623), - [anon_sym_STAR_STAR] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_SLASH] = ACTIONS(1621), - [anon_sym_mod] = ACTIONS(1623), - [anon_sym_SLASH_SLASH] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_bit_DASHshl] = ACTIONS(1623), - [anon_sym_bit_DASHshr] = ACTIONS(1623), - [anon_sym_EQ_TILDE] = ACTIONS(1623), - [anon_sym_BANG_TILDE] = ACTIONS(1623), - [anon_sym_bit_DASHand] = ACTIONS(1623), - [anon_sym_bit_DASHxor] = ACTIONS(1623), - [anon_sym_bit_DASHor] = ACTIONS(1623), - [anon_sym_and] = ACTIONS(1623), - [anon_sym_xor] = ACTIONS(1623), - [anon_sym_or] = ACTIONS(1623), - [anon_sym_in] = ACTIONS(1623), - [anon_sym_not_DASHin] = ACTIONS(1623), - [anon_sym_starts_DASHwith] = ACTIONS(1623), - [anon_sym_ends_DASHwith] = ACTIONS(1623), - [anon_sym_EQ_EQ] = ACTIONS(1623), - [anon_sym_BANG_EQ] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1621), - [anon_sym_LT_EQ] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1621), - [anon_sym_GT_EQ] = ACTIONS(1623), - [aux_sym_cmd_identifier_token41] = ACTIONS(1621), - [sym__newline] = ACTIONS(1621), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_PIPE] = ACTIONS(1621), - [anon_sym_err_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_GT_PIPE] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), - [anon_sym_GT2] = ACTIONS(1621), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_in2] = ACTIONS(1621), - [anon_sym_STAR2] = ACTIONS(1621), - [anon_sym_and2] = ACTIONS(1621), - [anon_sym_xor2] = ACTIONS(1621), - [anon_sym_or2] = ACTIONS(1621), - [anon_sym_not_DASHin2] = ACTIONS(1621), - [anon_sym_starts_DASHwith2] = ACTIONS(1621), - [anon_sym_ends_DASHwith2] = ACTIONS(1621), - [anon_sym_EQ_EQ2] = ACTIONS(1621), - [anon_sym_BANG_EQ2] = ACTIONS(1621), - [anon_sym_LT2] = ACTIONS(1621), - [anon_sym_LT_EQ2] = ACTIONS(1621), - [anon_sym_GT_EQ2] = ACTIONS(1621), - [anon_sym_EQ_TILDE2] = ACTIONS(1621), - [anon_sym_BANG_TILDE2] = ACTIONS(1621), - [anon_sym_STAR_STAR2] = ACTIONS(1621), - [anon_sym_PLUS_PLUS2] = ACTIONS(1621), - [anon_sym_SLASH2] = ACTIONS(1621), - [anon_sym_mod2] = ACTIONS(1621), - [anon_sym_SLASH_SLASH2] = ACTIONS(1621), - [anon_sym_PLUS2] = ACTIONS(1621), - [anon_sym_bit_DASHshl2] = ACTIONS(1621), - [anon_sym_bit_DASHshr2] = ACTIONS(1621), - [anon_sym_bit_DASHand2] = ACTIONS(1621), - [anon_sym_bit_DASHxor2] = ACTIONS(1621), - [anon_sym_bit_DASHor2] = ACTIONS(1621), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [aux_sym__immediate_decimal_token1] = ACTIONS(3690), - [aux_sym__immediate_decimal_token2] = ACTIONS(3692), - [sym_filesize_unit] = ACTIONS(1621), - [sym_duration_unit] = ACTIONS(1623), - [anon_sym_POUND] = ACTIONS(3), - }, - [1187] = { - [sym_expr_parenthesized] = STATE(4507), - [sym_val_range] = STATE(5098), - [sym__val_range] = STATE(7741), - [sym__val_range_with_end] = STATE(7363), - [sym__value] = STATE(5098), - [sym_val_nothing] = STATE(4907), - [sym_val_bool] = STATE(4740), - [sym_val_variable] = STATE(4565), - [sym_val_number] = STATE(4907), - [sym__val_number_decimal] = STATE(4091), - [sym__val_number] = STATE(4940), - [sym_val_duration] = STATE(4907), - [sym_val_filesize] = STATE(4907), - [sym_val_binary] = STATE(4907), - [sym_val_string] = STATE(4907), - [sym__raw_str] = STATE(4722), - [sym__str_double_quotes] = STATE(4722), - [sym_val_interpolated] = STATE(4907), - [sym__inter_single_quotes] = STATE(4952), - [sym__inter_double_quotes] = STATE(4953), - [sym_val_list] = STATE(4907), - [sym_val_record] = STATE(4907), - [sym_val_table] = STATE(4907), - [sym_val_closure] = STATE(4907), - [sym__unquoted_in_list] = STATE(4671), - [sym__unquoted_in_list_with_expr] = STATE(5098), - [sym__unquoted_anonymous_prefix] = STATE(6780), - [sym_comment] = STATE(1187), - [aux_sym_shebang_repeat1] = STATE(2963), - [sym__newline] = ACTIONS(3567), - [anon_sym_LBRACK] = ACTIONS(3569), - [anon_sym_LPAREN] = ACTIONS(3571), - [anon_sym_DOLLAR] = ACTIONS(3573), - [anon_sym_LBRACE] = ACTIONS(3575), - [anon_sym_DOT_DOT] = ACTIONS(3577), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3579), - [anon_sym_DOT_DOT_LT] = ACTIONS(3579), - [anon_sym_null] = ACTIONS(3581), - [anon_sym_true] = ACTIONS(3583), - [anon_sym_false] = ACTIONS(3583), - [aux_sym__val_number_decimal_token1] = ACTIONS(3585), - [aux_sym__val_number_decimal_token2] = ACTIONS(3587), - [aux_sym__val_number_decimal_token3] = ACTIONS(3589), - [aux_sym__val_number_decimal_token4] = ACTIONS(3591), - [aux_sym__val_number_token1] = ACTIONS(3593), - [aux_sym__val_number_token2] = ACTIONS(3593), - [aux_sym__val_number_token3] = ACTIONS(3593), - [aux_sym__val_number_token4] = ACTIONS(3595), - [aux_sym__val_number_token5] = ACTIONS(3595), - [aux_sym__val_number_token6] = ACTIONS(3595), - [anon_sym_0b] = ACTIONS(3597), - [anon_sym_0o] = ACTIONS(3599), - [anon_sym_0x] = ACTIONS(3599), - [sym_val_date] = ACTIONS(3601), - [anon_sym_DQUOTE] = ACTIONS(3603), - [sym__str_single_quotes] = ACTIONS(3605), - [sym__str_back_ticks] = ACTIONS(3605), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3611), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3613), - }, - [1188] = { - [sym_expr_parenthesized] = STATE(4507), - [sym_val_range] = STATE(5098), - [sym__val_range] = STATE(7741), - [sym__val_range_with_end] = STATE(7363), - [sym__value] = STATE(5098), - [sym_val_nothing] = STATE(4907), - [sym_val_bool] = STATE(4740), - [sym_val_variable] = STATE(4565), - [sym_val_number] = STATE(4907), - [sym__val_number_decimal] = STATE(4091), - [sym__val_number] = STATE(4940), - [sym_val_duration] = STATE(4907), - [sym_val_filesize] = STATE(4907), - [sym_val_binary] = STATE(4907), - [sym_val_string] = STATE(4907), - [sym__raw_str] = STATE(4722), - [sym__str_double_quotes] = STATE(4722), - [sym_val_interpolated] = STATE(4907), - [sym__inter_single_quotes] = STATE(4952), - [sym__inter_double_quotes] = STATE(4953), - [sym_val_list] = STATE(4907), - [sym_val_record] = STATE(4907), - [sym_val_table] = STATE(4907), - [sym_val_closure] = STATE(4907), - [sym__unquoted_in_list] = STATE(4671), - [sym__unquoted_in_list_with_expr] = STATE(5098), - [sym__unquoted_anonymous_prefix] = STATE(6780), - [sym_comment] = STATE(1188), - [aux_sym_shebang_repeat1] = STATE(1173), - [sym__newline] = ACTIONS(3567), - [anon_sym_LBRACK] = ACTIONS(3569), - [anon_sym_LPAREN] = ACTIONS(3571), - [anon_sym_DOLLAR] = ACTIONS(3573), - [anon_sym_LBRACE] = ACTIONS(3575), - [anon_sym_DOT_DOT] = ACTIONS(3577), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3579), - [anon_sym_DOT_DOT_LT] = ACTIONS(3579), - [anon_sym_null] = ACTIONS(3581), - [anon_sym_true] = ACTIONS(3583), - [anon_sym_false] = ACTIONS(3583), - [aux_sym__val_number_decimal_token1] = ACTIONS(3585), - [aux_sym__val_number_decimal_token2] = ACTIONS(3587), - [aux_sym__val_number_decimal_token3] = ACTIONS(3589), - [aux_sym__val_number_decimal_token4] = ACTIONS(3591), - [aux_sym__val_number_token1] = ACTIONS(3593), - [aux_sym__val_number_token2] = ACTIONS(3593), - [aux_sym__val_number_token3] = ACTIONS(3593), - [aux_sym__val_number_token4] = ACTIONS(3595), - [aux_sym__val_number_token5] = ACTIONS(3595), - [aux_sym__val_number_token6] = ACTIONS(3595), - [anon_sym_0b] = ACTIONS(3597), - [anon_sym_0o] = ACTIONS(3599), - [anon_sym_0x] = ACTIONS(3599), - [sym_val_date] = ACTIONS(3601), - [anon_sym_DQUOTE] = ACTIONS(3603), - [sym__str_single_quotes] = ACTIONS(3605), - [sym__str_back_ticks] = ACTIONS(3605), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3611), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3613), - }, - [1189] = { - [sym_env_var] = STATE(6848), - [sym_comment] = STATE(1189), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1189), - [aux_sym_cmd_identifier_token1] = ACTIONS(3543), - [aux_sym_cmd_identifier_token2] = ACTIONS(3549), - [aux_sym_cmd_identifier_token3] = ACTIONS(3549), - [aux_sym_cmd_identifier_token4] = ACTIONS(3549), - [aux_sym_cmd_identifier_token5] = ACTIONS(3549), - [aux_sym_cmd_identifier_token6] = ACTIONS(3549), - [aux_sym_cmd_identifier_token7] = ACTIONS(3549), - [aux_sym_cmd_identifier_token8] = ACTIONS(3549), - [aux_sym_cmd_identifier_token9] = ACTIONS(3543), - [aux_sym_cmd_identifier_token10] = ACTIONS(3549), - [aux_sym_cmd_identifier_token11] = ACTIONS(3549), - [aux_sym_cmd_identifier_token12] = ACTIONS(3549), - [aux_sym_cmd_identifier_token13] = ACTIONS(3543), - [aux_sym_cmd_identifier_token14] = ACTIONS(3549), - [aux_sym_cmd_identifier_token15] = ACTIONS(3543), - [aux_sym_cmd_identifier_token16] = ACTIONS(3549), - [aux_sym_cmd_identifier_token17] = ACTIONS(3549), - [aux_sym_cmd_identifier_token18] = ACTIONS(3549), - [aux_sym_cmd_identifier_token19] = ACTIONS(3549), - [aux_sym_cmd_identifier_token20] = ACTIONS(3549), - [aux_sym_cmd_identifier_token21] = ACTIONS(3549), - [aux_sym_cmd_identifier_token22] = ACTIONS(3549), - [aux_sym_cmd_identifier_token23] = ACTIONS(3549), - [aux_sym_cmd_identifier_token24] = ACTIONS(3549), - [aux_sym_cmd_identifier_token25] = ACTIONS(3549), - [aux_sym_cmd_identifier_token26] = ACTIONS(3549), - [aux_sym_cmd_identifier_token27] = ACTIONS(3549), - [aux_sym_cmd_identifier_token28] = ACTIONS(3549), - [aux_sym_cmd_identifier_token29] = ACTIONS(3549), - [aux_sym_cmd_identifier_token30] = ACTIONS(3549), - [aux_sym_cmd_identifier_token31] = ACTIONS(3549), - [aux_sym_cmd_identifier_token32] = ACTIONS(3549), - [aux_sym_cmd_identifier_token33] = ACTIONS(3549), - [aux_sym_cmd_identifier_token34] = ACTIONS(3543), - [aux_sym_cmd_identifier_token35] = ACTIONS(3549), - [aux_sym_cmd_identifier_token36] = ACTIONS(3549), - [aux_sym_cmd_identifier_token37] = ACTIONS(3549), - [aux_sym_cmd_identifier_token38] = ACTIONS(3543), - [aux_sym_cmd_identifier_token39] = ACTIONS(3549), - [aux_sym_cmd_identifier_token40] = ACTIONS(3549), - [anon_sym_LBRACK] = ACTIONS(3549), - [anon_sym_LPAREN] = ACTIONS(3549), - [anon_sym_DOLLAR] = ACTIONS(3543), - [anon_sym_DASH2] = ACTIONS(3543), - [anon_sym_LBRACE] = ACTIONS(3549), - [anon_sym_DOT_DOT] = ACTIONS(3543), - [aux_sym_expr_unary_token1] = ACTIONS(3549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3549), - [anon_sym_DOT_DOT_LT] = ACTIONS(3549), - [anon_sym_null] = ACTIONS(3543), - [anon_sym_true] = ACTIONS(3543), - [anon_sym_false] = ACTIONS(3543), - [aux_sym__val_number_decimal_token1] = ACTIONS(3543), - [aux_sym__val_number_decimal_token2] = ACTIONS(3549), - [aux_sym__val_number_decimal_token3] = ACTIONS(3549), - [aux_sym__val_number_decimal_token4] = ACTIONS(3549), - [aux_sym__val_number_token1] = ACTIONS(3549), - [aux_sym__val_number_token2] = ACTIONS(3549), - [aux_sym__val_number_token3] = ACTIONS(3549), - [aux_sym__val_number_token4] = ACTIONS(3543), - [aux_sym__val_number_token5] = ACTIONS(3543), - [aux_sym__val_number_token6] = ACTIONS(3543), - [anon_sym_0b] = ACTIONS(3543), - [anon_sym_0o] = ACTIONS(3543), - [anon_sym_0x] = ACTIONS(3543), - [sym_val_date] = ACTIONS(3549), - [anon_sym_DQUOTE] = ACTIONS(3549), - [sym__str_single_quotes] = ACTIONS(3549), - [sym__str_back_ticks] = ACTIONS(3549), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3549), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3549), - [aux_sym_env_var_token1] = ACTIONS(3694), - [anon_sym_CARET] = ACTIONS(3549), + [1178] = { + [sym_match_arm] = STATE(7053), + [sym_default_arm] = STATE(7053), + [sym_match_pattern] = STATE(7855), + [sym__match_pattern] = STATE(6042), + [sym__match_pattern_expression] = STATE(7095), + [sym__match_pattern_value] = STATE(7109), + [sym__match_pattern_list] = STATE(7114), + [sym__match_pattern_record] = STATE(7148), + [sym_expr_parenthesized] = STATE(5819), + [sym_val_range] = STATE(7109), + [sym__val_range] = STATE(7906), + [sym_val_nothing] = STATE(7164), + [sym_val_bool] = STATE(6540), + [sym_val_variable] = STATE(5826), + [sym_val_number] = STATE(7164), + [sym__val_number_decimal] = STATE(5383), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(7164), + [sym_val_filesize] = STATE(7164), + [sym_val_binary] = STATE(7164), + [sym_val_string] = STATE(7164), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_table] = STATE(7164), + [sym_unquoted] = STATE(7176), + [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym_comment] = STATE(1178), + [aux_sym_shebang_repeat1] = STATE(1198), + [aux_sym_ctrl_match_repeat1] = STATE(1234), + [sym__newline] = ACTIONS(3587), + [anon_sym_LBRACK] = ACTIONS(3589), + [anon_sym_LPAREN] = ACTIONS(3591), + [anon_sym_DOLLAR] = ACTIONS(3593), + [anon_sym_LBRACE] = ACTIONS(3595), + [anon_sym_RBRACE] = ACTIONS(3597), + [anon_sym__] = ACTIONS(3599), + [anon_sym_DOT_DOT] = ACTIONS(3601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), + [anon_sym_DOT_DOT_LT] = ACTIONS(3603), + [anon_sym_null] = ACTIONS(3605), + [anon_sym_true] = ACTIONS(3607), + [anon_sym_false] = ACTIONS(3607), + [aux_sym__val_number_decimal_token1] = ACTIONS(3609), + [aux_sym__val_number_decimal_token2] = ACTIONS(3611), + [aux_sym__val_number_decimal_token3] = ACTIONS(3613), + [aux_sym__val_number_decimal_token4] = ACTIONS(3615), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3617), + [aux_sym__val_number_token5] = ACTIONS(3617), + [aux_sym__val_number_token6] = ACTIONS(3617), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3619), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3549), - }, - [1190] = { - [sym_expr_parenthesized] = STATE(4593), - [sym_val_range] = STATE(5028), - [sym__val_range] = STATE(7741), - [sym__val_range_with_end] = STATE(7363), - [sym__value] = STATE(5028), - [sym_val_nothing] = STATE(4907), - [sym_val_bool] = STATE(4740), - [sym_val_variable] = STATE(4565), - [sym_val_number] = STATE(4907), - [sym__val_number_decimal] = STATE(4091), - [sym__val_number] = STATE(4940), - [sym_val_duration] = STATE(4907), - [sym_val_filesize] = STATE(4907), - [sym_val_binary] = STATE(4907), - [sym_val_string] = STATE(4907), - [sym__raw_str] = STATE(4722), - [sym__str_double_quotes] = STATE(4722), - [sym_val_interpolated] = STATE(4907), - [sym__inter_single_quotes] = STATE(4952), - [sym__inter_double_quotes] = STATE(4953), - [sym_val_list] = STATE(4907), - [sym_val_record] = STATE(4907), - [sym_val_table] = STATE(4907), - [sym_val_closure] = STATE(4907), - [sym__unquoted_in_list] = STATE(4759), - [sym__unquoted_in_list_with_expr] = STATE(5028), - [sym__unquoted_anonymous_prefix] = STATE(6780), - [sym_comment] = STATE(1190), - [aux_sym_shebang_repeat1] = STATE(1187), - [sym__newline] = ACTIONS(3567), - [anon_sym_LBRACK] = ACTIONS(3569), - [anon_sym_LPAREN] = ACTIONS(3571), - [anon_sym_DOLLAR] = ACTIONS(3573), - [anon_sym_LBRACE] = ACTIONS(3575), - [anon_sym_DOT_DOT] = ACTIONS(3577), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3579), - [anon_sym_DOT_DOT_LT] = ACTIONS(3579), - [anon_sym_null] = ACTIONS(3581), - [anon_sym_true] = ACTIONS(3583), - [anon_sym_false] = ACTIONS(3583), - [aux_sym__val_number_decimal_token1] = ACTIONS(3585), - [aux_sym__val_number_decimal_token2] = ACTIONS(3587), - [aux_sym__val_number_decimal_token3] = ACTIONS(3589), - [aux_sym__val_number_decimal_token4] = ACTIONS(3591), - [aux_sym__val_number_token1] = ACTIONS(3593), - [aux_sym__val_number_token2] = ACTIONS(3593), - [aux_sym__val_number_token3] = ACTIONS(3593), - [aux_sym__val_number_token4] = ACTIONS(3595), - [aux_sym__val_number_token5] = ACTIONS(3595), - [aux_sym__val_number_token6] = ACTIONS(3595), - [anon_sym_0b] = ACTIONS(3597), - [anon_sym_0o] = ACTIONS(3599), - [anon_sym_0x] = ACTIONS(3599), - [sym_val_date] = ACTIONS(3601), - [anon_sym_DQUOTE] = ACTIONS(3603), - [sym__str_single_quotes] = ACTIONS(3605), - [sym__str_back_ticks] = ACTIONS(3605), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3611), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3613), - }, - [1191] = { - [sym_comment] = STATE(1191), - [anon_sym_STAR_STAR] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_SLASH] = ACTIONS(1621), - [anon_sym_mod] = ACTIONS(1623), - [anon_sym_SLASH_SLASH] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_bit_DASHshl] = ACTIONS(1623), - [anon_sym_bit_DASHshr] = ACTIONS(1623), - [anon_sym_EQ_TILDE] = ACTIONS(1623), - [anon_sym_BANG_TILDE] = ACTIONS(1623), - [anon_sym_bit_DASHand] = ACTIONS(1623), - [anon_sym_bit_DASHxor] = ACTIONS(1623), - [anon_sym_bit_DASHor] = ACTIONS(1623), - [anon_sym_and] = ACTIONS(1623), - [anon_sym_xor] = ACTIONS(1623), - [anon_sym_or] = ACTIONS(1623), - [anon_sym_in] = ACTIONS(1623), - [anon_sym_not_DASHin] = ACTIONS(1623), - [anon_sym_starts_DASHwith] = ACTIONS(1623), - [anon_sym_ends_DASHwith] = ACTIONS(1623), - [anon_sym_EQ_EQ] = ACTIONS(1623), - [anon_sym_BANG_EQ] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1621), - [anon_sym_LT_EQ] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1621), - [anon_sym_GT_EQ] = ACTIONS(1623), - [aux_sym_cmd_identifier_token41] = ACTIONS(1621), - [sym__newline] = ACTIONS(1621), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_PIPE] = ACTIONS(1621), - [anon_sym_err_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_GT_PIPE] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), - [anon_sym_GT2] = ACTIONS(1621), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_in2] = ACTIONS(1621), - [anon_sym_RBRACE] = ACTIONS(1621), - [anon_sym_STAR2] = ACTIONS(1621), - [anon_sym_and2] = ACTIONS(1621), - [anon_sym_xor2] = ACTIONS(1621), - [anon_sym_or2] = ACTIONS(1621), - [anon_sym_not_DASHin2] = ACTIONS(1621), - [anon_sym_starts_DASHwith2] = ACTIONS(1621), - [anon_sym_ends_DASHwith2] = ACTIONS(1621), - [anon_sym_EQ_EQ2] = ACTIONS(1621), - [anon_sym_BANG_EQ2] = ACTIONS(1621), - [anon_sym_LT2] = ACTIONS(1621), - [anon_sym_LT_EQ2] = ACTIONS(1621), - [anon_sym_GT_EQ2] = ACTIONS(1621), - [anon_sym_EQ_TILDE2] = ACTIONS(1621), - [anon_sym_BANG_TILDE2] = ACTIONS(1621), - [anon_sym_STAR_STAR2] = ACTIONS(1621), - [anon_sym_PLUS_PLUS2] = ACTIONS(1621), - [anon_sym_SLASH2] = ACTIONS(1621), - [anon_sym_mod2] = ACTIONS(1621), - [anon_sym_SLASH_SLASH2] = ACTIONS(1621), - [anon_sym_PLUS2] = ACTIONS(1621), - [anon_sym_bit_DASHshl2] = ACTIONS(1621), - [anon_sym_bit_DASHshr2] = ACTIONS(1621), - [anon_sym_bit_DASHand2] = ACTIONS(1621), - [anon_sym_bit_DASHxor2] = ACTIONS(1621), - [anon_sym_bit_DASHor2] = ACTIONS(1621), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [aux_sym__immediate_decimal_token1] = ACTIONS(3697), - [aux_sym__immediate_decimal_token2] = ACTIONS(3699), - [sym_filesize_unit] = ACTIONS(1621), - [sym_duration_unit] = ACTIONS(1623), - [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(435), }, - [1192] = { - [sym_comment] = STATE(1192), - [anon_sym_STAR_STAR] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_SLASH] = ACTIONS(1621), - [anon_sym_mod] = ACTIONS(1623), - [anon_sym_SLASH_SLASH] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_bit_DASHshl] = ACTIONS(1623), - [anon_sym_bit_DASHshr] = ACTIONS(1623), - [anon_sym_EQ_TILDE] = ACTIONS(1623), - [anon_sym_BANG_TILDE] = ACTIONS(1623), - [anon_sym_bit_DASHand] = ACTIONS(1623), - [anon_sym_bit_DASHxor] = ACTIONS(1623), - [anon_sym_bit_DASHor] = ACTIONS(1623), - [anon_sym_and] = ACTIONS(1623), - [anon_sym_xor] = ACTIONS(1623), - [anon_sym_or] = ACTIONS(1623), - [anon_sym_in] = ACTIONS(1623), - [anon_sym_not_DASHin] = ACTIONS(1623), - [anon_sym_starts_DASHwith] = ACTIONS(1623), - [anon_sym_ends_DASHwith] = ACTIONS(1623), - [anon_sym_EQ_EQ] = ACTIONS(1623), - [anon_sym_BANG_EQ] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1621), - [anon_sym_LT_EQ] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1621), - [anon_sym_GT_EQ] = ACTIONS(1623), - [aux_sym_cmd_identifier_token41] = ACTIONS(1621), - [sym__newline] = ACTIONS(1621), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_PIPE] = ACTIONS(1621), - [anon_sym_err_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_GT_PIPE] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), - [anon_sym_GT2] = ACTIONS(1621), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_in2] = ACTIONS(1621), - [anon_sym_STAR2] = ACTIONS(1621), - [anon_sym_and2] = ACTIONS(1621), - [anon_sym_xor2] = ACTIONS(1621), - [anon_sym_or2] = ACTIONS(1621), - [anon_sym_not_DASHin2] = ACTIONS(1621), - [anon_sym_starts_DASHwith2] = ACTIONS(1621), - [anon_sym_ends_DASHwith2] = ACTIONS(1621), - [anon_sym_EQ_EQ2] = ACTIONS(1621), - [anon_sym_BANG_EQ2] = ACTIONS(1621), - [anon_sym_LT2] = ACTIONS(1621), - [anon_sym_LT_EQ2] = ACTIONS(1621), - [anon_sym_GT_EQ2] = ACTIONS(1621), - [anon_sym_EQ_TILDE2] = ACTIONS(1621), - [anon_sym_BANG_TILDE2] = ACTIONS(1621), - [anon_sym_STAR_STAR2] = ACTIONS(1621), - [anon_sym_PLUS_PLUS2] = ACTIONS(1621), - [anon_sym_SLASH2] = ACTIONS(1621), - [anon_sym_mod2] = ACTIONS(1621), - [anon_sym_SLASH_SLASH2] = ACTIONS(1621), - [anon_sym_PLUS2] = ACTIONS(1621), - [anon_sym_bit_DASHshl2] = ACTIONS(1621), - [anon_sym_bit_DASHshr2] = ACTIONS(1621), - [anon_sym_bit_DASHand2] = ACTIONS(1621), - [anon_sym_bit_DASHxor2] = ACTIONS(1621), - [anon_sym_bit_DASHor2] = ACTIONS(1621), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [aux_sym__immediate_decimal_token1] = ACTIONS(3701), - [aux_sym__immediate_decimal_token2] = ACTIONS(3703), - [sym_filesize_unit] = ACTIONS(1621), - [sym_duration_unit] = ACTIONS(1623), - [anon_sym_POUND] = ACTIONS(3), + [1179] = { + [sym_expr_parenthesized] = STATE(4558), + [sym_val_range] = STATE(5040), + [sym__val_range] = STATE(7896), + [sym__val_range_with_end] = STATE(7508), + [sym__value] = STATE(5040), + [sym_val_nothing] = STATE(5002), + [sym_val_bool] = STATE(4665), + [sym_val_variable] = STATE(4569), + [sym_val_number] = STATE(5002), + [sym__val_number_decimal] = STATE(4109), + [sym__val_number] = STATE(4893), + [sym_val_duration] = STATE(5002), + [sym_val_filesize] = STATE(5002), + [sym_val_binary] = STATE(5002), + [sym_val_string] = STATE(5002), + [sym__raw_str] = STATE(4721), + [sym__str_double_quotes] = STATE(4721), + [sym_val_interpolated] = STATE(5002), + [sym__inter_single_quotes] = STATE(4834), + [sym__inter_double_quotes] = STATE(4836), + [sym_val_list] = STATE(5002), + [sym_val_record] = STATE(5002), + [sym_val_table] = STATE(5002), + [sym_val_closure] = STATE(5002), + [sym__unquoted_in_list] = STATE(4748), + [sym__unquoted_in_list_with_expr] = STATE(5040), + [sym__unquoted_anonymous_prefix] = STATE(7093), + [sym_comment] = STATE(1179), + [aux_sym_shebang_repeat1] = STATE(3010), + [sym__newline] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(3623), + [anon_sym_LPAREN] = ACTIONS(3625), + [anon_sym_DOLLAR] = ACTIONS(3627), + [anon_sym_LBRACE] = ACTIONS(3629), + [anon_sym_DOT_DOT] = ACTIONS(3631), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3633), + [anon_sym_DOT_DOT_LT] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [anon_sym_true] = ACTIONS(3637), + [anon_sym_false] = ACTIONS(3637), + [aux_sym__val_number_decimal_token1] = ACTIONS(3639), + [aux_sym__val_number_decimal_token2] = ACTIONS(3641), + [aux_sym__val_number_decimal_token3] = ACTIONS(3643), + [aux_sym__val_number_decimal_token4] = ACTIONS(3645), + [aux_sym__val_number_token1] = ACTIONS(3647), + [aux_sym__val_number_token2] = ACTIONS(3647), + [aux_sym__val_number_token3] = ACTIONS(3647), + [aux_sym__val_number_token4] = ACTIONS(3649), + [aux_sym__val_number_token5] = ACTIONS(3649), + [aux_sym__val_number_token6] = ACTIONS(3649), + [anon_sym_0b] = ACTIONS(3651), + [anon_sym_0o] = ACTIONS(3653), + [anon_sym_0x] = ACTIONS(3653), + [sym_val_date] = ACTIONS(3655), + [anon_sym_DQUOTE] = ACTIONS(3657), + [sym__str_single_quotes] = ACTIONS(3659), + [sym__str_back_ticks] = ACTIONS(3659), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3665), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3667), }, - [1193] = { - [sym_match_arm] = STATE(7265), - [sym_default_arm] = STATE(7265), - [sym_match_pattern] = STATE(7608), - [sym__match_pattern] = STATE(6119), - [sym__match_pattern_expression] = STATE(6912), - [sym__match_pattern_value] = STATE(6932), - [sym__match_pattern_list] = STATE(6972), - [sym__match_pattern_record] = STATE(6995), - [sym_expr_parenthesized] = STATE(5800), - [sym_val_range] = STATE(6932), - [sym__val_range] = STATE(7572), - [sym_val_nothing] = STATE(7043), - [sym_val_bool] = STATE(6380), - [sym_val_variable] = STATE(5810), - [sym_val_number] = STATE(7043), - [sym__val_number_decimal] = STATE(5472), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(7043), - [sym_val_filesize] = STATE(7043), - [sym_val_binary] = STATE(7043), - [sym_val_string] = STATE(7043), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_table] = STATE(7043), - [sym_unquoted] = STATE(7086), - [sym__unquoted_anonymous_prefix] = STATE(7585), - [sym_comment] = STATE(1193), - [aux_sym_shebang_repeat1] = STATE(3007), - [aux_sym_ctrl_match_repeat1] = STATE(1241), - [sym__newline] = ACTIONS(3615), - [anon_sym_LBRACK] = ACTIONS(3617), - [anon_sym_LPAREN] = ACTIONS(3619), - [anon_sym_DOLLAR] = ACTIONS(3621), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym__] = ACTIONS(3627), - [anon_sym_DOT_DOT] = ACTIONS(3629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3631), - [anon_sym_DOT_DOT_LT] = ACTIONS(3631), - [anon_sym_null] = ACTIONS(3633), - [anon_sym_true] = ACTIONS(3635), - [anon_sym_false] = ACTIONS(3635), - [aux_sym__val_number_decimal_token1] = ACTIONS(3637), - [aux_sym__val_number_decimal_token2] = ACTIONS(3639), - [aux_sym__val_number_decimal_token3] = ACTIONS(3641), - [aux_sym__val_number_decimal_token4] = ACTIONS(3643), + [1180] = { + [sym_match_arm] = STATE(7015), + [sym_default_arm] = STATE(7015), + [sym_match_pattern] = STATE(7855), + [sym__match_pattern] = STATE(6042), + [sym__match_pattern_expression] = STATE(7095), + [sym__match_pattern_value] = STATE(7109), + [sym__match_pattern_list] = STATE(7114), + [sym__match_pattern_record] = STATE(7148), + [sym_expr_parenthesized] = STATE(5819), + [sym_val_range] = STATE(7109), + [sym__val_range] = STATE(7906), + [sym_val_nothing] = STATE(7164), + [sym_val_bool] = STATE(6540), + [sym_val_variable] = STATE(5826), + [sym_val_number] = STATE(7164), + [sym__val_number_decimal] = STATE(5383), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(7164), + [sym_val_filesize] = STATE(7164), + [sym_val_binary] = STATE(7164), + [sym_val_string] = STATE(7164), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_table] = STATE(7164), + [sym_unquoted] = STATE(7176), + [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym_comment] = STATE(1180), + [aux_sym_shebang_repeat1] = STATE(1204), + [aux_sym_ctrl_match_repeat1] = STATE(1242), + [sym__newline] = ACTIONS(3587), + [anon_sym_LBRACK] = ACTIONS(3589), + [anon_sym_LPAREN] = ACTIONS(3591), + [anon_sym_DOLLAR] = ACTIONS(3593), + [anon_sym_LBRACE] = ACTIONS(3595), + [anon_sym_RBRACE] = ACTIONS(3669), + [anon_sym__] = ACTIONS(3599), + [anon_sym_DOT_DOT] = ACTIONS(3601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), + [anon_sym_DOT_DOT_LT] = ACTIONS(3603), + [anon_sym_null] = ACTIONS(3605), + [anon_sym_true] = ACTIONS(3607), + [anon_sym_false] = ACTIONS(3607), + [aux_sym__val_number_decimal_token1] = ACTIONS(3609), + [aux_sym__val_number_decimal_token2] = ACTIONS(3611), + [aux_sym__val_number_decimal_token3] = ACTIONS(3613), + [aux_sym__val_number_decimal_token4] = ACTIONS(3615), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3645), - [aux_sym__val_number_token5] = ACTIONS(3645), - [aux_sym__val_number_token6] = ACTIONS(3645), + [aux_sym__val_number_token4] = ACTIONS(3617), + [aux_sym__val_number_token5] = ACTIONS(3617), + [aux_sym__val_number_token6] = ACTIONS(3617), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3647), + [sym_val_date] = ACTIONS(3619), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1194] = { - [sym_match_arm] = STATE(7145), - [sym_default_arm] = STATE(7145), - [sym_match_pattern] = STATE(7608), - [sym__match_pattern] = STATE(6119), - [sym__match_pattern_expression] = STATE(6912), - [sym__match_pattern_value] = STATE(6932), - [sym__match_pattern_list] = STATE(6972), - [sym__match_pattern_record] = STATE(6995), - [sym_expr_parenthesized] = STATE(5800), - [sym_val_range] = STATE(6932), - [sym__val_range] = STATE(7572), - [sym_val_nothing] = STATE(7043), - [sym_val_bool] = STATE(6380), - [sym_val_variable] = STATE(5810), - [sym_val_number] = STATE(7043), - [sym__val_number_decimal] = STATE(5472), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(7043), - [sym_val_filesize] = STATE(7043), - [sym_val_binary] = STATE(7043), - [sym_val_string] = STATE(7043), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_table] = STATE(7043), - [sym_unquoted] = STATE(7086), - [sym__unquoted_anonymous_prefix] = STATE(7585), - [sym_comment] = STATE(1194), - [aux_sym_shebang_repeat1] = STATE(3007), - [aux_sym_ctrl_match_repeat1] = STATE(1236), - [sym__newline] = ACTIONS(3615), - [anon_sym_LBRACK] = ACTIONS(3617), - [anon_sym_LPAREN] = ACTIONS(3619), - [anon_sym_DOLLAR] = ACTIONS(3621), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym__] = ACTIONS(3627), - [anon_sym_DOT_DOT] = ACTIONS(3629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3631), - [anon_sym_DOT_DOT_LT] = ACTIONS(3631), - [anon_sym_null] = ACTIONS(3633), - [anon_sym_true] = ACTIONS(3635), - [anon_sym_false] = ACTIONS(3635), - [aux_sym__val_number_decimal_token1] = ACTIONS(3637), - [aux_sym__val_number_decimal_token2] = ACTIONS(3639), - [aux_sym__val_number_decimal_token3] = ACTIONS(3641), - [aux_sym__val_number_decimal_token4] = ACTIONS(3643), + [1181] = { + [sym_comment] = STATE(1181), + [aux_sym_pipe_element_repeat1] = STATE(1181), + [aux_sym_cmd_identifier_token1] = ACTIONS(3671), + [aux_sym_cmd_identifier_token2] = ACTIONS(3671), + [aux_sym_cmd_identifier_token3] = ACTIONS(3671), + [aux_sym_cmd_identifier_token4] = ACTIONS(3671), + [aux_sym_cmd_identifier_token5] = ACTIONS(3671), + [aux_sym_cmd_identifier_token6] = ACTIONS(3671), + [aux_sym_cmd_identifier_token7] = ACTIONS(3671), + [aux_sym_cmd_identifier_token8] = ACTIONS(3671), + [aux_sym_cmd_identifier_token9] = ACTIONS(3671), + [aux_sym_cmd_identifier_token10] = ACTIONS(3671), + [aux_sym_cmd_identifier_token11] = ACTIONS(3671), + [aux_sym_cmd_identifier_token12] = ACTIONS(3671), + [aux_sym_cmd_identifier_token13] = ACTIONS(3671), + [aux_sym_cmd_identifier_token14] = ACTIONS(3671), + [aux_sym_cmd_identifier_token15] = ACTIONS(3671), + [aux_sym_cmd_identifier_token16] = ACTIONS(3671), + [aux_sym_cmd_identifier_token17] = ACTIONS(3671), + [aux_sym_cmd_identifier_token18] = ACTIONS(3671), + [aux_sym_cmd_identifier_token19] = ACTIONS(3671), + [aux_sym_cmd_identifier_token20] = ACTIONS(3671), + [aux_sym_cmd_identifier_token21] = ACTIONS(3671), + [aux_sym_cmd_identifier_token22] = ACTIONS(3671), + [aux_sym_cmd_identifier_token23] = ACTIONS(3671), + [aux_sym_cmd_identifier_token24] = ACTIONS(3671), + [aux_sym_cmd_identifier_token25] = ACTIONS(3671), + [aux_sym_cmd_identifier_token26] = ACTIONS(3671), + [aux_sym_cmd_identifier_token27] = ACTIONS(3671), + [aux_sym_cmd_identifier_token28] = ACTIONS(3671), + [aux_sym_cmd_identifier_token29] = ACTIONS(3671), + [aux_sym_cmd_identifier_token30] = ACTIONS(3671), + [aux_sym_cmd_identifier_token31] = ACTIONS(3671), + [aux_sym_cmd_identifier_token32] = ACTIONS(3671), + [aux_sym_cmd_identifier_token33] = ACTIONS(3671), + [aux_sym_cmd_identifier_token34] = ACTIONS(3671), + [aux_sym_cmd_identifier_token35] = ACTIONS(3671), + [aux_sym_cmd_identifier_token36] = ACTIONS(3671), + [aux_sym_cmd_identifier_token37] = ACTIONS(3671), + [aux_sym_cmd_identifier_token38] = ACTIONS(3671), + [aux_sym_cmd_identifier_token39] = ACTIONS(3671), + [aux_sym_cmd_identifier_token40] = ACTIONS(3671), + [sym__space] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3671), + [anon_sym_LPAREN] = ACTIONS(3671), + [anon_sym_DOLLAR] = ACTIONS(3671), + [anon_sym_DASH2] = ACTIONS(3671), + [anon_sym_LBRACE] = ACTIONS(3671), + [anon_sym_DOT_DOT] = ACTIONS(3671), + [aux_sym_expr_unary_token1] = ACTIONS(3671), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3671), + [anon_sym_DOT_DOT_LT] = ACTIONS(3671), + [anon_sym_null] = ACTIONS(3671), + [anon_sym_true] = ACTIONS(3671), + [anon_sym_false] = ACTIONS(3671), + [aux_sym__val_number_decimal_token1] = ACTIONS(3671), + [aux_sym__val_number_decimal_token2] = ACTIONS(3671), + [aux_sym__val_number_decimal_token3] = ACTIONS(3671), + [aux_sym__val_number_decimal_token4] = ACTIONS(3671), + [aux_sym__val_number_token1] = ACTIONS(3671), + [aux_sym__val_number_token2] = ACTIONS(3671), + [aux_sym__val_number_token3] = ACTIONS(3671), + [aux_sym__val_number_token4] = ACTIONS(3671), + [aux_sym__val_number_token5] = ACTIONS(3671), + [aux_sym__val_number_token6] = ACTIONS(3671), + [anon_sym_0b] = ACTIONS(3671), + [anon_sym_0o] = ACTIONS(3671), + [anon_sym_0x] = ACTIONS(3671), + [sym_val_date] = ACTIONS(3671), + [anon_sym_DQUOTE] = ACTIONS(3671), + [sym__str_single_quotes] = ACTIONS(3671), + [sym__str_back_ticks] = ACTIONS(3671), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3671), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), + [aux_sym_env_var_token1] = ACTIONS(3671), + [anon_sym_CARET] = ACTIONS(3671), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3676), + }, + [1182] = { + [sym_comment] = STATE(1182), + [ts_builtin_sym_end] = ACTIONS(1587), + [anon_sym_STAR_STAR] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_mod] = ACTIONS(1587), + [anon_sym_SLASH_SLASH] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_bit_DASHshl] = ACTIONS(1587), + [anon_sym_bit_DASHshr] = ACTIONS(1587), + [anon_sym_EQ_TILDE] = ACTIONS(1587), + [anon_sym_BANG_TILDE] = ACTIONS(1587), + [anon_sym_bit_DASHand] = ACTIONS(1587), + [anon_sym_bit_DASHxor] = ACTIONS(1587), + [anon_sym_bit_DASHor] = ACTIONS(1587), + [anon_sym_and] = ACTIONS(1587), + [anon_sym_xor] = ACTIONS(1587), + [anon_sym_or] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(1587), + [anon_sym_not_DASHin] = ACTIONS(1587), + [anon_sym_starts_DASHwith] = ACTIONS(1587), + [anon_sym_ends_DASHwith] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(1587), + [anon_sym_BANG_EQ] = ACTIONS(1587), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_LT_EQ] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1587), + [aux_sym_cmd_identifier_token41] = ACTIONS(1585), + [sym__newline] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_err_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_GT_PIPE] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), + [anon_sym_GT2] = ACTIONS(1585), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_in2] = ACTIONS(1585), + [anon_sym_STAR2] = ACTIONS(1585), + [anon_sym_and2] = ACTIONS(1585), + [anon_sym_xor2] = ACTIONS(1585), + [anon_sym_or2] = ACTIONS(1585), + [anon_sym_not_DASHin2] = ACTIONS(1585), + [anon_sym_starts_DASHwith2] = ACTIONS(1585), + [anon_sym_ends_DASHwith2] = ACTIONS(1585), + [anon_sym_EQ_EQ2] = ACTIONS(1585), + [anon_sym_BANG_EQ2] = ACTIONS(1585), + [anon_sym_LT2] = ACTIONS(1585), + [anon_sym_LT_EQ2] = ACTIONS(1585), + [anon_sym_GT_EQ2] = ACTIONS(1585), + [anon_sym_EQ_TILDE2] = ACTIONS(1585), + [anon_sym_BANG_TILDE2] = ACTIONS(1585), + [anon_sym_STAR_STAR2] = ACTIONS(1585), + [anon_sym_PLUS_PLUS2] = ACTIONS(1585), + [anon_sym_SLASH2] = ACTIONS(1585), + [anon_sym_mod2] = ACTIONS(1585), + [anon_sym_SLASH_SLASH2] = ACTIONS(1585), + [anon_sym_PLUS2] = ACTIONS(1585), + [anon_sym_bit_DASHshl2] = ACTIONS(1585), + [anon_sym_bit_DASHshr2] = ACTIONS(1585), + [anon_sym_bit_DASHand2] = ACTIONS(1585), + [anon_sym_bit_DASHxor2] = ACTIONS(1585), + [anon_sym_bit_DASHor2] = ACTIONS(1585), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [aux_sym__immediate_decimal_token1] = ACTIONS(3678), + [aux_sym__immediate_decimal_token2] = ACTIONS(3680), + [sym_filesize_unit] = ACTIONS(1585), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_POUND] = ACTIONS(3), + }, + [1183] = { + [sym_match_arm] = STATE(7014), + [sym_default_arm] = STATE(7014), + [sym_match_pattern] = STATE(7855), + [sym__match_pattern] = STATE(6042), + [sym__match_pattern_expression] = STATE(7095), + [sym__match_pattern_value] = STATE(7109), + [sym__match_pattern_list] = STATE(7114), + [sym__match_pattern_record] = STATE(7148), + [sym_expr_parenthesized] = STATE(5819), + [sym_val_range] = STATE(7109), + [sym__val_range] = STATE(7906), + [sym_val_nothing] = STATE(7164), + [sym_val_bool] = STATE(6540), + [sym_val_variable] = STATE(5826), + [sym_val_number] = STATE(7164), + [sym__val_number_decimal] = STATE(5383), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(7164), + [sym_val_filesize] = STATE(7164), + [sym_val_binary] = STATE(7164), + [sym_val_string] = STATE(7164), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_table] = STATE(7164), + [sym_unquoted] = STATE(7176), + [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym_comment] = STATE(1183), + [aux_sym_shebang_repeat1] = STATE(1203), + [aux_sym_ctrl_match_repeat1] = STATE(1250), + [sym__newline] = ACTIONS(3587), + [anon_sym_LBRACK] = ACTIONS(3589), + [anon_sym_LPAREN] = ACTIONS(3591), + [anon_sym_DOLLAR] = ACTIONS(3593), + [anon_sym_LBRACE] = ACTIONS(3595), + [anon_sym_RBRACE] = ACTIONS(3682), + [anon_sym__] = ACTIONS(3599), + [anon_sym_DOT_DOT] = ACTIONS(3601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), + [anon_sym_DOT_DOT_LT] = ACTIONS(3603), + [anon_sym_null] = ACTIONS(3605), + [anon_sym_true] = ACTIONS(3607), + [anon_sym_false] = ACTIONS(3607), + [aux_sym__val_number_decimal_token1] = ACTIONS(3609), + [aux_sym__val_number_decimal_token2] = ACTIONS(3611), + [aux_sym__val_number_decimal_token3] = ACTIONS(3613), + [aux_sym__val_number_decimal_token4] = ACTIONS(3615), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3645), - [aux_sym__val_number_token5] = ACTIONS(3645), - [aux_sym__val_number_token6] = ACTIONS(3645), + [aux_sym__val_number_token4] = ACTIONS(3617), + [aux_sym__val_number_token5] = ACTIONS(3617), + [aux_sym__val_number_token6] = ACTIONS(3617), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3647), + [sym_val_date] = ACTIONS(3619), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1195] = { - [sym_comment] = STATE(1195), - [ts_builtin_sym_end] = ACTIONS(1609), - [anon_sym_STAR_STAR] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_SLASH_SLASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_bit_DASHshl] = ACTIONS(1609), - [anon_sym_bit_DASHshr] = ACTIONS(1609), - [anon_sym_EQ_TILDE] = ACTIONS(1609), - [anon_sym_BANG_TILDE] = ACTIONS(1609), - [anon_sym_bit_DASHand] = ACTIONS(1609), - [anon_sym_bit_DASHxor] = ACTIONS(1609), - [anon_sym_bit_DASHor] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(1609), - [anon_sym_not_DASHin] = ACTIONS(1609), - [anon_sym_starts_DASHwith] = ACTIONS(1609), - [anon_sym_ends_DASHwith] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1609), - [anon_sym_BANG_EQ] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1609), - [aux_sym_cmd_identifier_token41] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(3674), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), + [1184] = { + [sym_expr_parenthesized] = STATE(4548), + [sym_val_range] = STATE(5152), + [sym__val_range] = STATE(7896), + [sym__val_range_with_end] = STATE(7508), + [sym__value] = STATE(5152), + [sym_val_nothing] = STATE(5002), + [sym_val_bool] = STATE(4665), + [sym_val_variable] = STATE(4569), + [sym_val_number] = STATE(5002), + [sym__val_number_decimal] = STATE(4109), + [sym__val_number] = STATE(4893), + [sym_val_duration] = STATE(5002), + [sym_val_filesize] = STATE(5002), + [sym_val_binary] = STATE(5002), + [sym_val_string] = STATE(5002), + [sym__raw_str] = STATE(4721), + [sym__str_double_quotes] = STATE(4721), + [sym_val_interpolated] = STATE(5002), + [sym__inter_single_quotes] = STATE(4834), + [sym__inter_double_quotes] = STATE(4836), + [sym_val_list] = STATE(5002), + [sym_val_record] = STATE(5002), + [sym_val_table] = STATE(5002), + [sym_val_closure] = STATE(5002), + [sym__unquoted_in_list] = STATE(4663), + [sym__unquoted_in_list_with_expr] = STATE(5152), + [sym__unquoted_anonymous_prefix] = STATE(7093), + [sym_comment] = STATE(1184), + [aux_sym_shebang_repeat1] = STATE(1188), + [sym__newline] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(3623), + [anon_sym_LPAREN] = ACTIONS(3625), + [anon_sym_DOLLAR] = ACTIONS(3627), + [anon_sym_LBRACE] = ACTIONS(3629), + [anon_sym_DOT_DOT] = ACTIONS(3631), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3633), + [anon_sym_DOT_DOT_LT] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [anon_sym_true] = ACTIONS(3637), + [anon_sym_false] = ACTIONS(3637), + [aux_sym__val_number_decimal_token1] = ACTIONS(3639), + [aux_sym__val_number_decimal_token2] = ACTIONS(3641), + [aux_sym__val_number_decimal_token3] = ACTIONS(3643), + [aux_sym__val_number_decimal_token4] = ACTIONS(3645), + [aux_sym__val_number_token1] = ACTIONS(3647), + [aux_sym__val_number_token2] = ACTIONS(3647), + [aux_sym__val_number_token3] = ACTIONS(3647), + [aux_sym__val_number_token4] = ACTIONS(3649), + [aux_sym__val_number_token5] = ACTIONS(3649), + [aux_sym__val_number_token6] = ACTIONS(3649), + [anon_sym_0b] = ACTIONS(3651), + [anon_sym_0o] = ACTIONS(3653), + [anon_sym_0x] = ACTIONS(3653), + [sym_val_date] = ACTIONS(3655), + [anon_sym_DQUOTE] = ACTIONS(3657), + [sym__str_single_quotes] = ACTIONS(3659), + [sym__str_back_ticks] = ACTIONS(3659), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3665), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3667), + }, + [1185] = { + [sym_comment] = STATE(1185), + [anon_sym_STAR_STAR] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_mod] = ACTIONS(1587), + [anon_sym_SLASH_SLASH] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_bit_DASHshl] = ACTIONS(1587), + [anon_sym_bit_DASHshr] = ACTIONS(1587), + [anon_sym_EQ_TILDE] = ACTIONS(1587), + [anon_sym_BANG_TILDE] = ACTIONS(1587), + [anon_sym_bit_DASHand] = ACTIONS(1587), + [anon_sym_bit_DASHxor] = ACTIONS(1587), + [anon_sym_bit_DASHor] = ACTIONS(1587), + [anon_sym_and] = ACTIONS(1587), + [anon_sym_xor] = ACTIONS(1587), + [anon_sym_or] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(1587), + [anon_sym_not_DASHin] = ACTIONS(1587), + [anon_sym_starts_DASHwith] = ACTIONS(1587), + [anon_sym_ends_DASHwith] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(1587), + [anon_sym_BANG_EQ] = ACTIONS(1587), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_LT_EQ] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1587), + [aux_sym_cmd_identifier_token41] = ACTIONS(1585), + [sym__newline] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_err_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_GT_PIPE] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(1585), + [anon_sym_GT2] = ACTIONS(1585), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_in2] = ACTIONS(1585), + [anon_sym_STAR2] = ACTIONS(1585), + [anon_sym_and2] = ACTIONS(1585), + [anon_sym_xor2] = ACTIONS(1585), + [anon_sym_or2] = ACTIONS(1585), + [anon_sym_not_DASHin2] = ACTIONS(1585), + [anon_sym_starts_DASHwith2] = ACTIONS(1585), + [anon_sym_ends_DASHwith2] = ACTIONS(1585), + [anon_sym_EQ_EQ2] = ACTIONS(1585), + [anon_sym_BANG_EQ2] = ACTIONS(1585), + [anon_sym_LT2] = ACTIONS(1585), + [anon_sym_LT_EQ2] = ACTIONS(1585), + [anon_sym_GT_EQ2] = ACTIONS(1585), + [anon_sym_EQ_TILDE2] = ACTIONS(1585), + [anon_sym_BANG_TILDE2] = ACTIONS(1585), + [anon_sym_STAR_STAR2] = ACTIONS(1585), + [anon_sym_PLUS_PLUS2] = ACTIONS(1585), + [anon_sym_SLASH2] = ACTIONS(1585), + [anon_sym_mod2] = ACTIONS(1585), + [anon_sym_SLASH_SLASH2] = ACTIONS(1585), + [anon_sym_PLUS2] = ACTIONS(1585), + [anon_sym_bit_DASHshl2] = ACTIONS(1585), + [anon_sym_bit_DASHshr2] = ACTIONS(1585), + [anon_sym_bit_DASHand2] = ACTIONS(1585), + [anon_sym_bit_DASHxor2] = ACTIONS(1585), + [anon_sym_bit_DASHor2] = ACTIONS(1585), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [aux_sym__immediate_decimal_token1] = ACTIONS(3684), + [aux_sym__immediate_decimal_token2] = ACTIONS(3686), + [sym_filesize_unit] = ACTIONS(1585), + [sym_duration_unit] = ACTIONS(1587), [anon_sym_POUND] = ACTIONS(3), }, - [1196] = { - [sym_comment] = STATE(1196), - [anon_sym_STAR_STAR] = ACTIONS(1675), - [anon_sym_PLUS_PLUS] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1673), - [anon_sym_mod] = ACTIONS(1675), - [anon_sym_SLASH_SLASH] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_bit_DASHshl] = ACTIONS(1675), - [anon_sym_bit_DASHshr] = ACTIONS(1675), - [anon_sym_EQ_TILDE] = ACTIONS(1675), - [anon_sym_BANG_TILDE] = ACTIONS(1675), - [anon_sym_bit_DASHand] = ACTIONS(1675), - [anon_sym_bit_DASHxor] = ACTIONS(1675), - [anon_sym_bit_DASHor] = ACTIONS(1675), - [anon_sym_and] = ACTIONS(1675), - [anon_sym_xor] = ACTIONS(1675), - [anon_sym_or] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [anon_sym_not_DASHin] = ACTIONS(1675), - [anon_sym_starts_DASHwith] = ACTIONS(1675), - [anon_sym_ends_DASHwith] = ACTIONS(1675), - [anon_sym_EQ_EQ] = ACTIONS(1675), - [anon_sym_BANG_EQ] = ACTIONS(1675), - [anon_sym_LT] = ACTIONS(1673), - [anon_sym_LT_EQ] = ACTIONS(1675), - [anon_sym_GT] = ACTIONS(1673), - [anon_sym_GT_EQ] = ACTIONS(1675), - [aux_sym_cmd_identifier_token41] = ACTIONS(1673), - [sym__newline] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1673), - [anon_sym_err_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_GT_PIPE] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), - [anon_sym_RPAREN] = ACTIONS(1673), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_in2] = ACTIONS(1673), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1673), - [anon_sym_xor2] = ACTIONS(1673), - [anon_sym_or2] = ACTIONS(1673), - [anon_sym_not_DASHin2] = ACTIONS(1673), - [anon_sym_starts_DASHwith2] = ACTIONS(1673), - [anon_sym_ends_DASHwith2] = ACTIONS(1673), - [anon_sym_EQ_EQ2] = ACTIONS(1673), - [anon_sym_BANG_EQ2] = ACTIONS(1673), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1673), - [anon_sym_GT_EQ2] = ACTIONS(1673), - [anon_sym_EQ_TILDE2] = ACTIONS(1673), - [anon_sym_BANG_TILDE2] = ACTIONS(1673), - [anon_sym_STAR_STAR2] = ACTIONS(1673), - [anon_sym_PLUS_PLUS2] = ACTIONS(1673), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1673), - [anon_sym_SLASH_SLASH2] = ACTIONS(1673), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1673), - [anon_sym_bit_DASHshr2] = ACTIONS(1673), - [anon_sym_bit_DASHand2] = ACTIONS(1673), - [anon_sym_bit_DASHxor2] = ACTIONS(1673), - [anon_sym_bit_DASHor2] = ACTIONS(1673), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [aux_sym__immediate_decimal_token2] = ACTIONS(3705), - [sym_filesize_unit] = ACTIONS(1673), - [sym_duration_unit] = ACTIONS(1675), + [1186] = { + [sym_comment] = STATE(1186), + [aux_sym_cmd_identifier_token1] = ACTIONS(3688), + [aux_sym_cmd_identifier_token2] = ACTIONS(3688), + [aux_sym_cmd_identifier_token3] = ACTIONS(3688), + [aux_sym_cmd_identifier_token4] = ACTIONS(3688), + [aux_sym_cmd_identifier_token5] = ACTIONS(3688), + [aux_sym_cmd_identifier_token6] = ACTIONS(3688), + [aux_sym_cmd_identifier_token7] = ACTIONS(3688), + [aux_sym_cmd_identifier_token8] = ACTIONS(3688), + [aux_sym_cmd_identifier_token9] = ACTIONS(3688), + [aux_sym_cmd_identifier_token10] = ACTIONS(3688), + [aux_sym_cmd_identifier_token11] = ACTIONS(3688), + [aux_sym_cmd_identifier_token12] = ACTIONS(3688), + [aux_sym_cmd_identifier_token13] = ACTIONS(3688), + [aux_sym_cmd_identifier_token14] = ACTIONS(3688), + [aux_sym_cmd_identifier_token15] = ACTIONS(3688), + [aux_sym_cmd_identifier_token16] = ACTIONS(3688), + [aux_sym_cmd_identifier_token17] = ACTIONS(3688), + [aux_sym_cmd_identifier_token18] = ACTIONS(3688), + [aux_sym_cmd_identifier_token19] = ACTIONS(3688), + [aux_sym_cmd_identifier_token20] = ACTIONS(3688), + [aux_sym_cmd_identifier_token21] = ACTIONS(3688), + [aux_sym_cmd_identifier_token22] = ACTIONS(3688), + [aux_sym_cmd_identifier_token23] = ACTIONS(3688), + [aux_sym_cmd_identifier_token24] = ACTIONS(3688), + [aux_sym_cmd_identifier_token25] = ACTIONS(3688), + [aux_sym_cmd_identifier_token26] = ACTIONS(3688), + [aux_sym_cmd_identifier_token27] = ACTIONS(3688), + [aux_sym_cmd_identifier_token28] = ACTIONS(3688), + [aux_sym_cmd_identifier_token29] = ACTIONS(3688), + [aux_sym_cmd_identifier_token30] = ACTIONS(3688), + [aux_sym_cmd_identifier_token31] = ACTIONS(3688), + [aux_sym_cmd_identifier_token32] = ACTIONS(3688), + [aux_sym_cmd_identifier_token33] = ACTIONS(3688), + [aux_sym_cmd_identifier_token34] = ACTIONS(3688), + [aux_sym_cmd_identifier_token35] = ACTIONS(3688), + [aux_sym_cmd_identifier_token36] = ACTIONS(3688), + [aux_sym_cmd_identifier_token37] = ACTIONS(3688), + [aux_sym_cmd_identifier_token38] = ACTIONS(3688), + [aux_sym_cmd_identifier_token39] = ACTIONS(3688), + [aux_sym_cmd_identifier_token40] = ACTIONS(3688), + [sym__newline] = ACTIONS(3688), + [sym__space] = ACTIONS(3690), + [anon_sym_LBRACK] = ACTIONS(3688), + [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_DOLLAR] = ACTIONS(3688), + [anon_sym_DASH2] = ACTIONS(3688), + [anon_sym_LBRACE] = ACTIONS(3688), + [anon_sym_DOT_DOT] = ACTIONS(3688), + [aux_sym_expr_unary_token1] = ACTIONS(3688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3688), + [anon_sym_DOT_DOT_LT] = ACTIONS(3688), + [anon_sym_null] = ACTIONS(3688), + [anon_sym_true] = ACTIONS(3688), + [anon_sym_false] = ACTIONS(3688), + [aux_sym__val_number_decimal_token1] = ACTIONS(3688), + [aux_sym__val_number_decimal_token2] = ACTIONS(3688), + [aux_sym__val_number_decimal_token3] = ACTIONS(3688), + [aux_sym__val_number_decimal_token4] = ACTIONS(3688), + [aux_sym__val_number_token1] = ACTIONS(3688), + [aux_sym__val_number_token2] = ACTIONS(3688), + [aux_sym__val_number_token3] = ACTIONS(3688), + [aux_sym__val_number_token4] = ACTIONS(3688), + [aux_sym__val_number_token5] = ACTIONS(3688), + [aux_sym__val_number_token6] = ACTIONS(3688), + [anon_sym_0b] = ACTIONS(3688), + [anon_sym_0o] = ACTIONS(3688), + [anon_sym_0x] = ACTIONS(3688), + [sym_val_date] = ACTIONS(3688), + [anon_sym_DQUOTE] = ACTIONS(3688), + [sym__str_single_quotes] = ACTIONS(3688), + [sym__str_back_ticks] = ACTIONS(3688), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3688), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3688), + [aux_sym_env_var_token1] = ACTIONS(3688), + [anon_sym_CARET] = ACTIONS(3688), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3690), }, - [1197] = { - [sym_match_arm] = STATE(7104), - [sym_default_arm] = STATE(7104), - [sym_match_pattern] = STATE(7608), - [sym__match_pattern] = STATE(6119), - [sym__match_pattern_expression] = STATE(6912), - [sym__match_pattern_value] = STATE(6932), - [sym__match_pattern_list] = STATE(6972), - [sym__match_pattern_record] = STATE(6995), - [sym_expr_parenthesized] = STATE(5800), - [sym_val_range] = STATE(6932), - [sym__val_range] = STATE(7572), - [sym_val_nothing] = STATE(7043), - [sym_val_bool] = STATE(6380), - [sym_val_variable] = STATE(5810), - [sym_val_number] = STATE(7043), - [sym__val_number_decimal] = STATE(5472), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(7043), - [sym_val_filesize] = STATE(7043), - [sym_val_binary] = STATE(7043), - [sym_val_string] = STATE(7043), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_table] = STATE(7043), - [sym_unquoted] = STATE(7086), - [sym__unquoted_anonymous_prefix] = STATE(7585), - [sym_comment] = STATE(1197), - [aux_sym_shebang_repeat1] = STATE(3007), - [aux_sym_ctrl_match_repeat1] = STATE(1234), - [sym__newline] = ACTIONS(3615), - [anon_sym_LBRACK] = ACTIONS(3617), - [anon_sym_LPAREN] = ACTIONS(3619), - [anon_sym_DOLLAR] = ACTIONS(3621), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym__] = ACTIONS(3627), - [anon_sym_DOT_DOT] = ACTIONS(3629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3631), - [anon_sym_DOT_DOT_LT] = ACTIONS(3631), - [anon_sym_null] = ACTIONS(3633), - [anon_sym_true] = ACTIONS(3635), - [anon_sym_false] = ACTIONS(3635), - [aux_sym__val_number_decimal_token1] = ACTIONS(3637), - [aux_sym__val_number_decimal_token2] = ACTIONS(3639), - [aux_sym__val_number_decimal_token3] = ACTIONS(3641), - [aux_sym__val_number_decimal_token4] = ACTIONS(3643), + [1187] = { + [sym_match_arm] = STATE(7258), + [sym_default_arm] = STATE(7258), + [sym_match_pattern] = STATE(7855), + [sym__match_pattern] = STATE(6042), + [sym__match_pattern_expression] = STATE(7095), + [sym__match_pattern_value] = STATE(7109), + [sym__match_pattern_list] = STATE(7114), + [sym__match_pattern_record] = STATE(7148), + [sym_expr_parenthesized] = STATE(5819), + [sym_val_range] = STATE(7109), + [sym__val_range] = STATE(7906), + [sym_val_nothing] = STATE(7164), + [sym_val_bool] = STATE(6540), + [sym_val_variable] = STATE(5826), + [sym_val_number] = STATE(7164), + [sym__val_number_decimal] = STATE(5383), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(7164), + [sym_val_filesize] = STATE(7164), + [sym_val_binary] = STATE(7164), + [sym_val_string] = STATE(7164), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_table] = STATE(7164), + [sym_unquoted] = STATE(7176), + [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym_comment] = STATE(1187), + [aux_sym_shebang_repeat1] = STATE(1200), + [aux_sym_ctrl_match_repeat1] = STATE(1235), + [sym__newline] = ACTIONS(3587), + [anon_sym_LBRACK] = ACTIONS(3589), + [anon_sym_LPAREN] = ACTIONS(3591), + [anon_sym_DOLLAR] = ACTIONS(3593), + [anon_sym_LBRACE] = ACTIONS(3595), + [anon_sym_RBRACE] = ACTIONS(3692), + [anon_sym__] = ACTIONS(3599), + [anon_sym_DOT_DOT] = ACTIONS(3601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), + [anon_sym_DOT_DOT_LT] = ACTIONS(3603), + [anon_sym_null] = ACTIONS(3605), + [anon_sym_true] = ACTIONS(3607), + [anon_sym_false] = ACTIONS(3607), + [aux_sym__val_number_decimal_token1] = ACTIONS(3609), + [aux_sym__val_number_decimal_token2] = ACTIONS(3611), + [aux_sym__val_number_decimal_token3] = ACTIONS(3613), + [aux_sym__val_number_decimal_token4] = ACTIONS(3615), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3645), - [aux_sym__val_number_token5] = ACTIONS(3645), - [aux_sym__val_number_token6] = ACTIONS(3645), + [aux_sym__val_number_token4] = ACTIONS(3617), + [aux_sym__val_number_token5] = ACTIONS(3617), + [aux_sym__val_number_token6] = ACTIONS(3617), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3647), + [sym_val_date] = ACTIONS(3619), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1198] = { - [sym_comment] = STATE(1198), + [1188] = { + [sym_expr_parenthesized] = STATE(4537), + [sym_val_range] = STATE(5053), + [sym__val_range] = STATE(7896), + [sym__val_range_with_end] = STATE(7508), + [sym__value] = STATE(5053), + [sym_val_nothing] = STATE(5002), + [sym_val_bool] = STATE(4665), + [sym_val_variable] = STATE(4569), + [sym_val_number] = STATE(5002), + [sym__val_number_decimal] = STATE(4109), + [sym__val_number] = STATE(4893), + [sym_val_duration] = STATE(5002), + [sym_val_filesize] = STATE(5002), + [sym_val_binary] = STATE(5002), + [sym_val_string] = STATE(5002), + [sym__raw_str] = STATE(4721), + [sym__str_double_quotes] = STATE(4721), + [sym_val_interpolated] = STATE(5002), + [sym__inter_single_quotes] = STATE(4834), + [sym__inter_double_quotes] = STATE(4836), + [sym_val_list] = STATE(5002), + [sym_val_record] = STATE(5002), + [sym_val_table] = STATE(5002), + [sym_val_closure] = STATE(5002), + [sym__unquoted_in_list] = STATE(4659), + [sym__unquoted_in_list_with_expr] = STATE(5053), + [sym__unquoted_anonymous_prefix] = STATE(7093), + [sym_comment] = STATE(1188), + [aux_sym_shebang_repeat1] = STATE(3010), + [sym__newline] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(3623), + [anon_sym_LPAREN] = ACTIONS(3625), + [anon_sym_DOLLAR] = ACTIONS(3627), + [anon_sym_LBRACE] = ACTIONS(3629), + [anon_sym_DOT_DOT] = ACTIONS(3631), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3633), + [anon_sym_DOT_DOT_LT] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [anon_sym_true] = ACTIONS(3637), + [anon_sym_false] = ACTIONS(3637), + [aux_sym__val_number_decimal_token1] = ACTIONS(3639), + [aux_sym__val_number_decimal_token2] = ACTIONS(3641), + [aux_sym__val_number_decimal_token3] = ACTIONS(3643), + [aux_sym__val_number_decimal_token4] = ACTIONS(3645), + [aux_sym__val_number_token1] = ACTIONS(3647), + [aux_sym__val_number_token2] = ACTIONS(3647), + [aux_sym__val_number_token3] = ACTIONS(3647), + [aux_sym__val_number_token4] = ACTIONS(3649), + [aux_sym__val_number_token5] = ACTIONS(3649), + [aux_sym__val_number_token6] = ACTIONS(3649), + [anon_sym_0b] = ACTIONS(3651), + [anon_sym_0o] = ACTIONS(3653), + [anon_sym_0x] = ACTIONS(3653), + [sym_val_date] = ACTIONS(3655), + [anon_sym_DQUOTE] = ACTIONS(3657), + [sym__str_single_quotes] = ACTIONS(3659), + [sym__str_back_ticks] = ACTIONS(3659), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3665), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3667), + }, + [1189] = { + [sym_expr_parenthesized] = STATE(4537), + [sym_val_range] = STATE(5053), + [sym__val_range] = STATE(7896), + [sym__val_range_with_end] = STATE(7508), + [sym__value] = STATE(5053), + [sym_val_nothing] = STATE(5002), + [sym_val_bool] = STATE(4665), + [sym_val_variable] = STATE(4569), + [sym_val_number] = STATE(5002), + [sym__val_number_decimal] = STATE(4109), + [sym__val_number] = STATE(4893), + [sym_val_duration] = STATE(5002), + [sym_val_filesize] = STATE(5002), + [sym_val_binary] = STATE(5002), + [sym_val_string] = STATE(5002), + [sym__raw_str] = STATE(4721), + [sym__str_double_quotes] = STATE(4721), + [sym_val_interpolated] = STATE(5002), + [sym__inter_single_quotes] = STATE(4834), + [sym__inter_double_quotes] = STATE(4836), + [sym_val_list] = STATE(5002), + [sym_val_record] = STATE(5002), + [sym_val_table] = STATE(5002), + [sym_val_closure] = STATE(5002), + [sym__unquoted_in_list] = STATE(4659), + [sym__unquoted_in_list_with_expr] = STATE(5053), + [sym__unquoted_anonymous_prefix] = STATE(7093), + [sym_comment] = STATE(1189), + [aux_sym_shebang_repeat1] = STATE(1179), + [sym__newline] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(3623), + [anon_sym_LPAREN] = ACTIONS(3625), + [anon_sym_DOLLAR] = ACTIONS(3627), + [anon_sym_LBRACE] = ACTIONS(3629), + [anon_sym_DOT_DOT] = ACTIONS(3631), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3633), + [anon_sym_DOT_DOT_LT] = ACTIONS(3633), + [anon_sym_null] = ACTIONS(3635), + [anon_sym_true] = ACTIONS(3637), + [anon_sym_false] = ACTIONS(3637), + [aux_sym__val_number_decimal_token1] = ACTIONS(3639), + [aux_sym__val_number_decimal_token2] = ACTIONS(3641), + [aux_sym__val_number_decimal_token3] = ACTIONS(3643), + [aux_sym__val_number_decimal_token4] = ACTIONS(3645), + [aux_sym__val_number_token1] = ACTIONS(3647), + [aux_sym__val_number_token2] = ACTIONS(3647), + [aux_sym__val_number_token3] = ACTIONS(3647), + [aux_sym__val_number_token4] = ACTIONS(3649), + [aux_sym__val_number_token5] = ACTIONS(3649), + [aux_sym__val_number_token6] = ACTIONS(3649), + [anon_sym_0b] = ACTIONS(3651), + [anon_sym_0o] = ACTIONS(3653), + [anon_sym_0x] = ACTIONS(3653), + [sym_val_date] = ACTIONS(3655), + [anon_sym_DQUOTE] = ACTIONS(3657), + [sym__str_single_quotes] = ACTIONS(3659), + [sym__str_back_ticks] = ACTIONS(3659), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3665), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3667), + }, + [1190] = { + [sym_env_var] = STATE(7174), + [sym_comment] = STATE(1190), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1190), + [aux_sym_cmd_identifier_token1] = ACTIONS(3555), + [aux_sym_cmd_identifier_token2] = ACTIONS(3561), + [aux_sym_cmd_identifier_token3] = ACTIONS(3561), + [aux_sym_cmd_identifier_token4] = ACTIONS(3561), + [aux_sym_cmd_identifier_token5] = ACTIONS(3561), + [aux_sym_cmd_identifier_token6] = ACTIONS(3561), + [aux_sym_cmd_identifier_token7] = ACTIONS(3561), + [aux_sym_cmd_identifier_token8] = ACTIONS(3561), + [aux_sym_cmd_identifier_token9] = ACTIONS(3555), + [aux_sym_cmd_identifier_token10] = ACTIONS(3561), + [aux_sym_cmd_identifier_token11] = ACTIONS(3561), + [aux_sym_cmd_identifier_token12] = ACTIONS(3561), + [aux_sym_cmd_identifier_token13] = ACTIONS(3555), + [aux_sym_cmd_identifier_token14] = ACTIONS(3561), + [aux_sym_cmd_identifier_token15] = ACTIONS(3555), + [aux_sym_cmd_identifier_token16] = ACTIONS(3561), + [aux_sym_cmd_identifier_token17] = ACTIONS(3561), + [aux_sym_cmd_identifier_token18] = ACTIONS(3561), + [aux_sym_cmd_identifier_token19] = ACTIONS(3561), + [aux_sym_cmd_identifier_token20] = ACTIONS(3561), + [aux_sym_cmd_identifier_token21] = ACTIONS(3561), + [aux_sym_cmd_identifier_token22] = ACTIONS(3561), + [aux_sym_cmd_identifier_token23] = ACTIONS(3561), + [aux_sym_cmd_identifier_token24] = ACTIONS(3561), + [aux_sym_cmd_identifier_token25] = ACTIONS(3561), + [aux_sym_cmd_identifier_token26] = ACTIONS(3561), + [aux_sym_cmd_identifier_token27] = ACTIONS(3561), + [aux_sym_cmd_identifier_token28] = ACTIONS(3561), + [aux_sym_cmd_identifier_token29] = ACTIONS(3561), + [aux_sym_cmd_identifier_token30] = ACTIONS(3561), + [aux_sym_cmd_identifier_token31] = ACTIONS(3561), + [aux_sym_cmd_identifier_token32] = ACTIONS(3561), + [aux_sym_cmd_identifier_token33] = ACTIONS(3561), + [aux_sym_cmd_identifier_token34] = ACTIONS(3555), + [aux_sym_cmd_identifier_token35] = ACTIONS(3561), + [aux_sym_cmd_identifier_token36] = ACTIONS(3561), + [aux_sym_cmd_identifier_token37] = ACTIONS(3561), + [aux_sym_cmd_identifier_token38] = ACTIONS(3555), + [aux_sym_cmd_identifier_token39] = ACTIONS(3561), + [aux_sym_cmd_identifier_token40] = ACTIONS(3561), + [anon_sym_LBRACK] = ACTIONS(3561), + [anon_sym_LPAREN] = ACTIONS(3561), + [anon_sym_DOLLAR] = ACTIONS(3555), + [anon_sym_DASH2] = ACTIONS(3555), + [anon_sym_LBRACE] = ACTIONS(3561), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [aux_sym_expr_unary_token1] = ACTIONS(3561), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3561), + [anon_sym_DOT_DOT_LT] = ACTIONS(3561), + [anon_sym_null] = ACTIONS(3555), + [anon_sym_true] = ACTIONS(3555), + [anon_sym_false] = ACTIONS(3555), + [aux_sym__val_number_decimal_token1] = ACTIONS(3555), + [aux_sym__val_number_decimal_token2] = ACTIONS(3561), + [aux_sym__val_number_decimal_token3] = ACTIONS(3561), + [aux_sym__val_number_decimal_token4] = ACTIONS(3561), + [aux_sym__val_number_token1] = ACTIONS(3561), + [aux_sym__val_number_token2] = ACTIONS(3561), + [aux_sym__val_number_token3] = ACTIONS(3561), + [aux_sym__val_number_token4] = ACTIONS(3555), + [aux_sym__val_number_token5] = ACTIONS(3555), + [aux_sym__val_number_token6] = ACTIONS(3555), + [anon_sym_0b] = ACTIONS(3555), + [anon_sym_0o] = ACTIONS(3555), + [anon_sym_0x] = ACTIONS(3555), + [sym_val_date] = ACTIONS(3561), + [anon_sym_DQUOTE] = ACTIONS(3561), + [sym__str_single_quotes] = ACTIONS(3561), + [sym__str_back_ticks] = ACTIONS(3561), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3561), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3561), + [aux_sym_env_var_token1] = ACTIONS(3694), + [anon_sym_CARET] = ACTIONS(3561), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3561), + }, + [1191] = { + [sym_comment] = STATE(1191), + [ts_builtin_sym_end] = ACTIONS(1575), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_bit_DASHshl] = ACTIONS(1575), + [anon_sym_bit_DASHshr] = ACTIONS(1575), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_BANG_TILDE] = ACTIONS(1575), + [anon_sym_bit_DASHand] = ACTIONS(1575), + [anon_sym_bit_DASHxor] = ACTIONS(1575), + [anon_sym_bit_DASHor] = ACTIONS(1575), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_not_DASHin] = ACTIONS(1575), + [anon_sym_starts_DASHwith] = ACTIONS(1575), + [anon_sym_ends_DASHwith] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1575), + [aux_sym_cmd_identifier_token41] = ACTIONS(1573), + [sym__newline] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_err_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_GT_PIPE] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1573), + [anon_sym_xor2] = ACTIONS(1573), + [anon_sym_or2] = ACTIONS(1573), + [anon_sym_not_DASHin2] = ACTIONS(1573), + [anon_sym_starts_DASHwith2] = ACTIONS(1573), + [anon_sym_ends_DASHwith2] = ACTIONS(1573), + [anon_sym_EQ_EQ2] = ACTIONS(1573), + [anon_sym_BANG_EQ2] = ACTIONS(1573), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1573), + [anon_sym_GT_EQ2] = ACTIONS(1573), + [anon_sym_EQ_TILDE2] = ACTIONS(1573), + [anon_sym_BANG_TILDE2] = ACTIONS(1573), + [anon_sym_STAR_STAR2] = ACTIONS(1573), + [anon_sym_PLUS_PLUS2] = ACTIONS(1573), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1573), + [anon_sym_SLASH_SLASH2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1573), + [anon_sym_bit_DASHshr2] = ACTIONS(1573), + [anon_sym_bit_DASHand2] = ACTIONS(1573), + [anon_sym_bit_DASHxor2] = ACTIONS(1573), + [anon_sym_bit_DASHor2] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT] = ACTIONS(3697), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(3699), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_POUND] = ACTIONS(3), + }, + [1192] = { + [sym_comment] = STATE(1192), [aux_sym_cmd_identifier_token1] = ACTIONS(1290), [aux_sym_cmd_identifier_token2] = ACTIONS(1288), [aux_sym_cmd_identifier_token3] = ACTIONS(1288), @@ -194012,1654 +193841,1270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1288), }, - [1199] = { - [sym_match_arm] = STATE(7258), - [sym_default_arm] = STATE(7258), - [sym_match_pattern] = STATE(7608), - [sym__match_pattern] = STATE(6119), - [sym__match_pattern_expression] = STATE(6912), - [sym__match_pattern_value] = STATE(6932), - [sym__match_pattern_list] = STATE(6972), - [sym__match_pattern_record] = STATE(6995), - [sym_expr_parenthesized] = STATE(5800), - [sym_val_range] = STATE(6932), - [sym__val_range] = STATE(7572), - [sym_val_nothing] = STATE(7043), - [sym_val_bool] = STATE(6380), - [sym_val_variable] = STATE(5810), - [sym_val_number] = STATE(7043), - [sym__val_number_decimal] = STATE(5472), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(7043), - [sym_val_filesize] = STATE(7043), - [sym_val_binary] = STATE(7043), - [sym_val_string] = STATE(7043), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_table] = STATE(7043), - [sym_unquoted] = STATE(7086), - [sym__unquoted_anonymous_prefix] = STATE(7585), - [sym_comment] = STATE(1199), - [aux_sym_shebang_repeat1] = STATE(3007), - [aux_sym_ctrl_match_repeat1] = STATE(1240), - [sym__newline] = ACTIONS(3615), - [anon_sym_LBRACK] = ACTIONS(3617), - [anon_sym_LPAREN] = ACTIONS(3619), - [anon_sym_DOLLAR] = ACTIONS(3621), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym__] = ACTIONS(3627), - [anon_sym_DOT_DOT] = ACTIONS(3629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3631), - [anon_sym_DOT_DOT_LT] = ACTIONS(3631), - [anon_sym_null] = ACTIONS(3633), - [anon_sym_true] = ACTIONS(3635), - [anon_sym_false] = ACTIONS(3635), - [aux_sym__val_number_decimal_token1] = ACTIONS(3637), - [aux_sym__val_number_decimal_token2] = ACTIONS(3639), - [aux_sym__val_number_decimal_token3] = ACTIONS(3641), - [aux_sym__val_number_decimal_token4] = ACTIONS(3643), + [1193] = { + [sym_comment] = STATE(1193), + [anon_sym_STAR_STAR] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_mod] = ACTIONS(1587), + [anon_sym_SLASH_SLASH] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_bit_DASHshl] = ACTIONS(1587), + [anon_sym_bit_DASHshr] = ACTIONS(1587), + [anon_sym_EQ_TILDE] = ACTIONS(1587), + [anon_sym_BANG_TILDE] = ACTIONS(1587), + [anon_sym_bit_DASHand] = ACTIONS(1587), + [anon_sym_bit_DASHxor] = ACTIONS(1587), + [anon_sym_bit_DASHor] = ACTIONS(1587), + [anon_sym_and] = ACTIONS(1587), + [anon_sym_xor] = ACTIONS(1587), + [anon_sym_or] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(1587), + [anon_sym_not_DASHin] = ACTIONS(1587), + [anon_sym_starts_DASHwith] = ACTIONS(1587), + [anon_sym_ends_DASHwith] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(1587), + [anon_sym_BANG_EQ] = ACTIONS(1587), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_LT_EQ] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1587), + [aux_sym_cmd_identifier_token41] = ACTIONS(1585), + [sym__newline] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_err_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_GT_PIPE] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), + [anon_sym_GT2] = ACTIONS(1585), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_in2] = ACTIONS(1585), + [anon_sym_STAR2] = ACTIONS(1585), + [anon_sym_and2] = ACTIONS(1585), + [anon_sym_xor2] = ACTIONS(1585), + [anon_sym_or2] = ACTIONS(1585), + [anon_sym_not_DASHin2] = ACTIONS(1585), + [anon_sym_starts_DASHwith2] = ACTIONS(1585), + [anon_sym_ends_DASHwith2] = ACTIONS(1585), + [anon_sym_EQ_EQ2] = ACTIONS(1585), + [anon_sym_BANG_EQ2] = ACTIONS(1585), + [anon_sym_LT2] = ACTIONS(1585), + [anon_sym_LT_EQ2] = ACTIONS(1585), + [anon_sym_GT_EQ2] = ACTIONS(1585), + [anon_sym_EQ_TILDE2] = ACTIONS(1585), + [anon_sym_BANG_TILDE2] = ACTIONS(1585), + [anon_sym_STAR_STAR2] = ACTIONS(1585), + [anon_sym_PLUS_PLUS2] = ACTIONS(1585), + [anon_sym_SLASH2] = ACTIONS(1585), + [anon_sym_mod2] = ACTIONS(1585), + [anon_sym_SLASH_SLASH2] = ACTIONS(1585), + [anon_sym_PLUS2] = ACTIONS(1585), + [anon_sym_bit_DASHshl2] = ACTIONS(1585), + [anon_sym_bit_DASHshr2] = ACTIONS(1585), + [anon_sym_bit_DASHand2] = ACTIONS(1585), + [anon_sym_bit_DASHxor2] = ACTIONS(1585), + [anon_sym_bit_DASHor2] = ACTIONS(1585), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [aux_sym__immediate_decimal_token1] = ACTIONS(3701), + [aux_sym__immediate_decimal_token2] = ACTIONS(3703), + [sym_filesize_unit] = ACTIONS(1585), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_POUND] = ACTIONS(3), + }, + [1194] = { + [sym_comment] = STATE(1194), + [ts_builtin_sym_end] = ACTIONS(1575), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_bit_DASHshl] = ACTIONS(1575), + [anon_sym_bit_DASHshr] = ACTIONS(1575), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_BANG_TILDE] = ACTIONS(1575), + [anon_sym_bit_DASHand] = ACTIONS(1575), + [anon_sym_bit_DASHxor] = ACTIONS(1575), + [anon_sym_bit_DASHor] = ACTIONS(1575), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_not_DASHin] = ACTIONS(1575), + [anon_sym_starts_DASHwith] = ACTIONS(1575), + [anon_sym_ends_DASHwith] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1575), + [aux_sym_cmd_identifier_token41] = ACTIONS(1573), + [sym__newline] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_err_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_GT_PIPE] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1573), + [anon_sym_xor2] = ACTIONS(1573), + [anon_sym_or2] = ACTIONS(1573), + [anon_sym_not_DASHin2] = ACTIONS(1573), + [anon_sym_starts_DASHwith2] = ACTIONS(1573), + [anon_sym_ends_DASHwith2] = ACTIONS(1573), + [anon_sym_EQ_EQ2] = ACTIONS(1573), + [anon_sym_BANG_EQ2] = ACTIONS(1573), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1573), + [anon_sym_GT_EQ2] = ACTIONS(1573), + [anon_sym_EQ_TILDE2] = ACTIONS(1573), + [anon_sym_BANG_TILDE2] = ACTIONS(1573), + [anon_sym_STAR_STAR2] = ACTIONS(1573), + [anon_sym_PLUS_PLUS2] = ACTIONS(1573), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1573), + [anon_sym_SLASH_SLASH2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1573), + [anon_sym_bit_DASHshr2] = ACTIONS(1573), + [anon_sym_bit_DASHand2] = ACTIONS(1573), + [anon_sym_bit_DASHxor2] = ACTIONS(1573), + [anon_sym_bit_DASHor2] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(3699), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_POUND] = ACTIONS(3), + }, + [1195] = { + [sym_comment] = STATE(1195), + [ts_builtin_sym_end] = ACTIONS(1683), + [anon_sym_STAR_STAR] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1681), + [anon_sym_SLASH] = ACTIONS(1681), + [anon_sym_mod] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_bit_DASHshl] = ACTIONS(1683), + [anon_sym_bit_DASHshr] = ACTIONS(1683), + [anon_sym_EQ_TILDE] = ACTIONS(1683), + [anon_sym_BANG_TILDE] = ACTIONS(1683), + [anon_sym_bit_DASHand] = ACTIONS(1683), + [anon_sym_bit_DASHxor] = ACTIONS(1683), + [anon_sym_bit_DASHor] = ACTIONS(1683), + [anon_sym_and] = ACTIONS(1683), + [anon_sym_xor] = ACTIONS(1683), + [anon_sym_or] = ACTIONS(1683), + [anon_sym_in] = ACTIONS(1683), + [anon_sym_not_DASHin] = ACTIONS(1683), + [anon_sym_starts_DASHwith] = ACTIONS(1683), + [anon_sym_ends_DASHwith] = ACTIONS(1683), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(1683), + [aux_sym_cmd_identifier_token41] = ACTIONS(1681), + [sym__newline] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_err_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_GT_PIPE] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), + [anon_sym_GT2] = ACTIONS(1681), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_in2] = ACTIONS(1681), + [anon_sym_STAR2] = ACTIONS(1681), + [anon_sym_and2] = ACTIONS(1681), + [anon_sym_xor2] = ACTIONS(1681), + [anon_sym_or2] = ACTIONS(1681), + [anon_sym_not_DASHin2] = ACTIONS(1681), + [anon_sym_starts_DASHwith2] = ACTIONS(1681), + [anon_sym_ends_DASHwith2] = ACTIONS(1681), + [anon_sym_EQ_EQ2] = ACTIONS(1681), + [anon_sym_BANG_EQ2] = ACTIONS(1681), + [anon_sym_LT2] = ACTIONS(1681), + [anon_sym_LT_EQ2] = ACTIONS(1681), + [anon_sym_GT_EQ2] = ACTIONS(1681), + [anon_sym_EQ_TILDE2] = ACTIONS(1681), + [anon_sym_BANG_TILDE2] = ACTIONS(1681), + [anon_sym_STAR_STAR2] = ACTIONS(1681), + [anon_sym_PLUS_PLUS2] = ACTIONS(1681), + [anon_sym_SLASH2] = ACTIONS(1681), + [anon_sym_mod2] = ACTIONS(1681), + [anon_sym_SLASH_SLASH2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1681), + [anon_sym_bit_DASHshl2] = ACTIONS(1681), + [anon_sym_bit_DASHshr2] = ACTIONS(1681), + [anon_sym_bit_DASHand2] = ACTIONS(1681), + [anon_sym_bit_DASHxor2] = ACTIONS(1681), + [anon_sym_bit_DASHor2] = ACTIONS(1681), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [aux_sym__immediate_decimal_token2] = ACTIONS(3705), + [sym_filesize_unit] = ACTIONS(1681), + [sym_duration_unit] = ACTIONS(1683), + [anon_sym_POUND] = ACTIONS(3), + }, + [1196] = { + [sym_comment] = STATE(1196), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_bit_DASHshl] = ACTIONS(1575), + [anon_sym_bit_DASHshr] = ACTIONS(1575), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_BANG_TILDE] = ACTIONS(1575), + [anon_sym_bit_DASHand] = ACTIONS(1575), + [anon_sym_bit_DASHxor] = ACTIONS(1575), + [anon_sym_bit_DASHor] = ACTIONS(1575), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_not_DASHin] = ACTIONS(1575), + [anon_sym_starts_DASHwith] = ACTIONS(1575), + [anon_sym_ends_DASHwith] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1575), + [aux_sym_cmd_identifier_token41] = ACTIONS(1573), + [sym__newline] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_err_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_GT_PIPE] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), + [anon_sym_RPAREN] = ACTIONS(1573), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1573), + [anon_sym_xor2] = ACTIONS(1573), + [anon_sym_or2] = ACTIONS(1573), + [anon_sym_not_DASHin2] = ACTIONS(1573), + [anon_sym_starts_DASHwith2] = ACTIONS(1573), + [anon_sym_ends_DASHwith2] = ACTIONS(1573), + [anon_sym_EQ_EQ2] = ACTIONS(1573), + [anon_sym_BANG_EQ2] = ACTIONS(1573), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1573), + [anon_sym_GT_EQ2] = ACTIONS(1573), + [anon_sym_EQ_TILDE2] = ACTIONS(1573), + [anon_sym_BANG_TILDE2] = ACTIONS(1573), + [anon_sym_STAR_STAR2] = ACTIONS(1573), + [anon_sym_PLUS_PLUS2] = ACTIONS(1573), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1573), + [anon_sym_SLASH_SLASH2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1573), + [anon_sym_bit_DASHshr2] = ACTIONS(1573), + [anon_sym_bit_DASHand2] = ACTIONS(1573), + [anon_sym_bit_DASHxor2] = ACTIONS(1573), + [anon_sym_bit_DASHor2] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(3582), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_POUND] = ACTIONS(3), + }, + [1197] = { + [sym_comment] = STATE(1197), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_bit_DASHshl] = ACTIONS(1575), + [anon_sym_bit_DASHshr] = ACTIONS(1575), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_BANG_TILDE] = ACTIONS(1575), + [anon_sym_bit_DASHand] = ACTIONS(1575), + [anon_sym_bit_DASHxor] = ACTIONS(1575), + [anon_sym_bit_DASHor] = ACTIONS(1575), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_not_DASHin] = ACTIONS(1575), + [anon_sym_starts_DASHwith] = ACTIONS(1575), + [anon_sym_ends_DASHwith] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1575), + [aux_sym_cmd_identifier_token41] = ACTIONS(1573), + [sym__newline] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_err_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_GT_PIPE] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1573), + [anon_sym_xor2] = ACTIONS(1573), + [anon_sym_or2] = ACTIONS(1573), + [anon_sym_not_DASHin2] = ACTIONS(1573), + [anon_sym_starts_DASHwith2] = ACTIONS(1573), + [anon_sym_ends_DASHwith2] = ACTIONS(1573), + [anon_sym_EQ_EQ2] = ACTIONS(1573), + [anon_sym_BANG_EQ2] = ACTIONS(1573), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1573), + [anon_sym_GT_EQ2] = ACTIONS(1573), + [anon_sym_EQ_TILDE2] = ACTIONS(1573), + [anon_sym_BANG_TILDE2] = ACTIONS(1573), + [anon_sym_STAR_STAR2] = ACTIONS(1573), + [anon_sym_PLUS_PLUS2] = ACTIONS(1573), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1573), + [anon_sym_SLASH_SLASH2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1573), + [anon_sym_bit_DASHshr2] = ACTIONS(1573), + [anon_sym_bit_DASHand2] = ACTIONS(1573), + [anon_sym_bit_DASHxor2] = ACTIONS(1573), + [anon_sym_bit_DASHor2] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT] = ACTIONS(3707), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(3709), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_POUND] = ACTIONS(3), + }, + [1198] = { + [sym_match_arm] = STATE(7038), + [sym_default_arm] = STATE(7038), + [sym_match_pattern] = STATE(7855), + [sym__match_pattern] = STATE(6042), + [sym__match_pattern_expression] = STATE(7095), + [sym__match_pattern_value] = STATE(7109), + [sym__match_pattern_list] = STATE(7114), + [sym__match_pattern_record] = STATE(7148), + [sym_expr_parenthesized] = STATE(5819), + [sym_val_range] = STATE(7109), + [sym__val_range] = STATE(7906), + [sym_val_nothing] = STATE(7164), + [sym_val_bool] = STATE(6540), + [sym_val_variable] = STATE(5826), + [sym_val_number] = STATE(7164), + [sym__val_number_decimal] = STATE(5383), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(7164), + [sym_val_filesize] = STATE(7164), + [sym_val_binary] = STATE(7164), + [sym_val_string] = STATE(7164), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_table] = STATE(7164), + [sym_unquoted] = STATE(7176), + [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym_comment] = STATE(1198), + [aux_sym_shebang_repeat1] = STATE(3071), + [aux_sym_ctrl_match_repeat1] = STATE(1248), + [sym__newline] = ACTIONS(3587), + [anon_sym_LBRACK] = ACTIONS(3589), + [anon_sym_LPAREN] = ACTIONS(3591), + [anon_sym_DOLLAR] = ACTIONS(3593), + [anon_sym_LBRACE] = ACTIONS(3595), + [anon_sym__] = ACTIONS(3599), + [anon_sym_DOT_DOT] = ACTIONS(3601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), + [anon_sym_DOT_DOT_LT] = ACTIONS(3603), + [anon_sym_null] = ACTIONS(3605), + [anon_sym_true] = ACTIONS(3607), + [anon_sym_false] = ACTIONS(3607), + [aux_sym__val_number_decimal_token1] = ACTIONS(3609), + [aux_sym__val_number_decimal_token2] = ACTIONS(3611), + [aux_sym__val_number_decimal_token3] = ACTIONS(3613), + [aux_sym__val_number_decimal_token4] = ACTIONS(3615), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3645), - [aux_sym__val_number_token5] = ACTIONS(3645), - [aux_sym__val_number_token6] = ACTIONS(3645), + [aux_sym__val_number_token4] = ACTIONS(3617), + [aux_sym__val_number_token5] = ACTIONS(3617), + [aux_sym__val_number_token6] = ACTIONS(3617), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3647), + [sym_val_date] = ACTIONS(3619), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, + [1199] = { + [sym_comment] = STATE(1199), + [aux_sym_cmd_identifier_token1] = ACTIONS(3711), + [aux_sym_cmd_identifier_token2] = ACTIONS(3711), + [aux_sym_cmd_identifier_token3] = ACTIONS(3711), + [aux_sym_cmd_identifier_token4] = ACTIONS(3711), + [aux_sym_cmd_identifier_token5] = ACTIONS(3711), + [aux_sym_cmd_identifier_token6] = ACTIONS(3711), + [aux_sym_cmd_identifier_token7] = ACTIONS(3711), + [aux_sym_cmd_identifier_token8] = ACTIONS(3711), + [aux_sym_cmd_identifier_token9] = ACTIONS(3711), + [aux_sym_cmd_identifier_token10] = ACTIONS(3711), + [aux_sym_cmd_identifier_token11] = ACTIONS(3711), + [aux_sym_cmd_identifier_token12] = ACTIONS(3711), + [aux_sym_cmd_identifier_token13] = ACTIONS(3711), + [aux_sym_cmd_identifier_token14] = ACTIONS(3711), + [aux_sym_cmd_identifier_token15] = ACTIONS(3711), + [aux_sym_cmd_identifier_token16] = ACTIONS(3711), + [aux_sym_cmd_identifier_token17] = ACTIONS(3711), + [aux_sym_cmd_identifier_token18] = ACTIONS(3711), + [aux_sym_cmd_identifier_token19] = ACTIONS(3711), + [aux_sym_cmd_identifier_token20] = ACTIONS(3711), + [aux_sym_cmd_identifier_token21] = ACTIONS(3711), + [aux_sym_cmd_identifier_token22] = ACTIONS(3711), + [aux_sym_cmd_identifier_token23] = ACTIONS(3711), + [aux_sym_cmd_identifier_token24] = ACTIONS(3711), + [aux_sym_cmd_identifier_token25] = ACTIONS(3711), + [aux_sym_cmd_identifier_token26] = ACTIONS(3711), + [aux_sym_cmd_identifier_token27] = ACTIONS(3711), + [aux_sym_cmd_identifier_token28] = ACTIONS(3711), + [aux_sym_cmd_identifier_token29] = ACTIONS(3711), + [aux_sym_cmd_identifier_token30] = ACTIONS(3711), + [aux_sym_cmd_identifier_token31] = ACTIONS(3711), + [aux_sym_cmd_identifier_token32] = ACTIONS(3711), + [aux_sym_cmd_identifier_token33] = ACTIONS(3711), + [aux_sym_cmd_identifier_token34] = ACTIONS(3711), + [aux_sym_cmd_identifier_token35] = ACTIONS(3711), + [aux_sym_cmd_identifier_token36] = ACTIONS(3711), + [aux_sym_cmd_identifier_token37] = ACTIONS(3711), + [aux_sym_cmd_identifier_token38] = ACTIONS(3711), + [aux_sym_cmd_identifier_token39] = ACTIONS(3711), + [aux_sym_cmd_identifier_token40] = ACTIONS(3711), + [sym__space] = ACTIONS(3713), + [anon_sym_LBRACK] = ACTIONS(3711), + [anon_sym_LPAREN] = ACTIONS(3711), + [anon_sym_DOLLAR] = ACTIONS(3711), + [anon_sym_DASH2] = ACTIONS(3711), + [anon_sym_LBRACE] = ACTIONS(3711), + [anon_sym_DOT_DOT] = ACTIONS(3711), + [aux_sym_expr_unary_token1] = ACTIONS(3711), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3711), + [anon_sym_DOT_DOT_LT] = ACTIONS(3711), + [anon_sym_null] = ACTIONS(3711), + [anon_sym_true] = ACTIONS(3711), + [anon_sym_false] = ACTIONS(3711), + [aux_sym__val_number_decimal_token1] = ACTIONS(3711), + [aux_sym__val_number_decimal_token2] = ACTIONS(3711), + [aux_sym__val_number_decimal_token3] = ACTIONS(3711), + [aux_sym__val_number_decimal_token4] = ACTIONS(3711), + [aux_sym__val_number_token1] = ACTIONS(3711), + [aux_sym__val_number_token2] = ACTIONS(3711), + [aux_sym__val_number_token3] = ACTIONS(3711), + [aux_sym__val_number_token4] = ACTIONS(3711), + [aux_sym__val_number_token5] = ACTIONS(3711), + [aux_sym__val_number_token6] = ACTIONS(3711), + [anon_sym_0b] = ACTIONS(3711), + [anon_sym_0o] = ACTIONS(3711), + [anon_sym_0x] = ACTIONS(3711), + [sym_val_date] = ACTIONS(3711), + [anon_sym_DQUOTE] = ACTIONS(3711), + [sym__str_single_quotes] = ACTIONS(3711), + [sym__str_back_ticks] = ACTIONS(3711), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3711), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3711), + [aux_sym_env_var_token1] = ACTIONS(3711), + [anon_sym_CARET] = ACTIONS(3711), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3713), + }, [1200] = { + [sym_match_arm] = STATE(7248), + [sym_default_arm] = STATE(7248), + [sym_match_pattern] = STATE(7855), + [sym__match_pattern] = STATE(6042), + [sym__match_pattern_expression] = STATE(7095), + [sym__match_pattern_value] = STATE(7109), + [sym__match_pattern_list] = STATE(7114), + [sym__match_pattern_record] = STATE(7148), + [sym_expr_parenthesized] = STATE(5819), + [sym_val_range] = STATE(7109), + [sym__val_range] = STATE(7906), + [sym_val_nothing] = STATE(7164), + [sym_val_bool] = STATE(6540), + [sym_val_variable] = STATE(5826), + [sym_val_number] = STATE(7164), + [sym__val_number_decimal] = STATE(5383), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(7164), + [sym_val_filesize] = STATE(7164), + [sym_val_binary] = STATE(7164), + [sym_val_string] = STATE(7164), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_table] = STATE(7164), + [sym_unquoted] = STATE(7176), + [sym__unquoted_anonymous_prefix] = STATE(7913), [sym_comment] = STATE(1200), - [aux_sym_cmd_identifier_token1] = ACTIONS(3707), - [aux_sym_cmd_identifier_token2] = ACTIONS(3707), - [aux_sym_cmd_identifier_token3] = ACTIONS(3707), - [aux_sym_cmd_identifier_token4] = ACTIONS(3707), - [aux_sym_cmd_identifier_token5] = ACTIONS(3707), - [aux_sym_cmd_identifier_token6] = ACTIONS(3707), - [aux_sym_cmd_identifier_token7] = ACTIONS(3707), - [aux_sym_cmd_identifier_token8] = ACTIONS(3707), - [aux_sym_cmd_identifier_token9] = ACTIONS(3707), - [aux_sym_cmd_identifier_token10] = ACTIONS(3707), - [aux_sym_cmd_identifier_token11] = ACTIONS(3707), - [aux_sym_cmd_identifier_token12] = ACTIONS(3707), - [aux_sym_cmd_identifier_token13] = ACTIONS(3707), - [aux_sym_cmd_identifier_token14] = ACTIONS(3707), - [aux_sym_cmd_identifier_token15] = ACTIONS(3707), - [aux_sym_cmd_identifier_token16] = ACTIONS(3707), - [aux_sym_cmd_identifier_token17] = ACTIONS(3707), - [aux_sym_cmd_identifier_token18] = ACTIONS(3707), - [aux_sym_cmd_identifier_token19] = ACTIONS(3707), - [aux_sym_cmd_identifier_token20] = ACTIONS(3707), - [aux_sym_cmd_identifier_token21] = ACTIONS(3707), - [aux_sym_cmd_identifier_token22] = ACTIONS(3707), - [aux_sym_cmd_identifier_token23] = ACTIONS(3707), - [aux_sym_cmd_identifier_token24] = ACTIONS(3707), - [aux_sym_cmd_identifier_token25] = ACTIONS(3707), - [aux_sym_cmd_identifier_token26] = ACTIONS(3707), - [aux_sym_cmd_identifier_token27] = ACTIONS(3707), - [aux_sym_cmd_identifier_token28] = ACTIONS(3707), - [aux_sym_cmd_identifier_token29] = ACTIONS(3707), - [aux_sym_cmd_identifier_token30] = ACTIONS(3707), - [aux_sym_cmd_identifier_token31] = ACTIONS(3707), - [aux_sym_cmd_identifier_token32] = ACTIONS(3707), - [aux_sym_cmd_identifier_token33] = ACTIONS(3707), - [aux_sym_cmd_identifier_token34] = ACTIONS(3707), - [aux_sym_cmd_identifier_token35] = ACTIONS(3707), - [aux_sym_cmd_identifier_token36] = ACTIONS(3707), - [aux_sym_cmd_identifier_token37] = ACTIONS(3707), - [aux_sym_cmd_identifier_token38] = ACTIONS(3707), - [aux_sym_cmd_identifier_token39] = ACTIONS(3707), - [aux_sym_cmd_identifier_token40] = ACTIONS(3707), - [sym__space] = ACTIONS(3709), - [anon_sym_LBRACK] = ACTIONS(3707), - [anon_sym_LPAREN] = ACTIONS(3707), - [anon_sym_DOLLAR] = ACTIONS(3707), - [anon_sym_DASH2] = ACTIONS(3707), - [anon_sym_LBRACE] = ACTIONS(3707), - [anon_sym_DOT_DOT] = ACTIONS(3707), - [aux_sym_expr_unary_token1] = ACTIONS(3707), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), - [anon_sym_DOT_DOT_LT] = ACTIONS(3707), - [anon_sym_null] = ACTIONS(3707), - [anon_sym_true] = ACTIONS(3707), - [anon_sym_false] = ACTIONS(3707), - [aux_sym__val_number_decimal_token1] = ACTIONS(3707), - [aux_sym__val_number_decimal_token2] = ACTIONS(3707), - [aux_sym__val_number_decimal_token3] = ACTIONS(3707), - [aux_sym__val_number_decimal_token4] = ACTIONS(3707), - [aux_sym__val_number_token1] = ACTIONS(3707), - [aux_sym__val_number_token2] = ACTIONS(3707), - [aux_sym__val_number_token3] = ACTIONS(3707), - [aux_sym__val_number_token4] = ACTIONS(3707), - [aux_sym__val_number_token5] = ACTIONS(3707), - [aux_sym__val_number_token6] = ACTIONS(3707), - [anon_sym_0b] = ACTIONS(3707), - [anon_sym_0o] = ACTIONS(3707), - [anon_sym_0x] = ACTIONS(3707), - [sym_val_date] = ACTIONS(3707), - [anon_sym_DQUOTE] = ACTIONS(3707), - [sym__str_single_quotes] = ACTIONS(3707), - [sym__str_back_ticks] = ACTIONS(3707), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3707), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3707), - [aux_sym_env_var_token1] = ACTIONS(3707), - [anon_sym_CARET] = ACTIONS(3707), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3709), + [aux_sym_shebang_repeat1] = STATE(3071), + [aux_sym_ctrl_match_repeat1] = STATE(1249), + [sym__newline] = ACTIONS(3587), + [anon_sym_LBRACK] = ACTIONS(3589), + [anon_sym_LPAREN] = ACTIONS(3591), + [anon_sym_DOLLAR] = ACTIONS(3593), + [anon_sym_LBRACE] = ACTIONS(3595), + [anon_sym__] = ACTIONS(3599), + [anon_sym_DOT_DOT] = ACTIONS(3601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), + [anon_sym_DOT_DOT_LT] = ACTIONS(3603), + [anon_sym_null] = ACTIONS(3605), + [anon_sym_true] = ACTIONS(3607), + [anon_sym_false] = ACTIONS(3607), + [aux_sym__val_number_decimal_token1] = ACTIONS(3609), + [aux_sym__val_number_decimal_token2] = ACTIONS(3611), + [aux_sym__val_number_decimal_token3] = ACTIONS(3613), + [aux_sym__val_number_decimal_token4] = ACTIONS(3615), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3617), + [aux_sym__val_number_token5] = ACTIONS(3617), + [aux_sym__val_number_token6] = ACTIONS(3617), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3619), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1201] = { [sym_comment] = STATE(1201), - [ts_builtin_sym_end] = ACTIONS(1675), - [anon_sym_STAR_STAR] = ACTIONS(1675), - [anon_sym_PLUS_PLUS] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1673), - [anon_sym_mod] = ACTIONS(1675), - [anon_sym_SLASH_SLASH] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_bit_DASHshl] = ACTIONS(1675), - [anon_sym_bit_DASHshr] = ACTIONS(1675), - [anon_sym_EQ_TILDE] = ACTIONS(1675), - [anon_sym_BANG_TILDE] = ACTIONS(1675), - [anon_sym_bit_DASHand] = ACTIONS(1675), - [anon_sym_bit_DASHxor] = ACTIONS(1675), - [anon_sym_bit_DASHor] = ACTIONS(1675), - [anon_sym_and] = ACTIONS(1675), - [anon_sym_xor] = ACTIONS(1675), - [anon_sym_or] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [anon_sym_not_DASHin] = ACTIONS(1675), - [anon_sym_starts_DASHwith] = ACTIONS(1675), - [anon_sym_ends_DASHwith] = ACTIONS(1675), - [anon_sym_EQ_EQ] = ACTIONS(1675), - [anon_sym_BANG_EQ] = ACTIONS(1675), - [anon_sym_LT] = ACTIONS(1673), - [anon_sym_LT_EQ] = ACTIONS(1675), - [anon_sym_GT] = ACTIONS(1673), - [anon_sym_GT_EQ] = ACTIONS(1675), - [aux_sym_cmd_identifier_token41] = ACTIONS(1673), - [sym__newline] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1673), - [anon_sym_err_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_GT_PIPE] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_in2] = ACTIONS(1673), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1673), - [anon_sym_xor2] = ACTIONS(1673), - [anon_sym_or2] = ACTIONS(1673), - [anon_sym_not_DASHin2] = ACTIONS(1673), - [anon_sym_starts_DASHwith2] = ACTIONS(1673), - [anon_sym_ends_DASHwith2] = ACTIONS(1673), - [anon_sym_EQ_EQ2] = ACTIONS(1673), - [anon_sym_BANG_EQ2] = ACTIONS(1673), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1673), - [anon_sym_GT_EQ2] = ACTIONS(1673), - [anon_sym_EQ_TILDE2] = ACTIONS(1673), - [anon_sym_BANG_TILDE2] = ACTIONS(1673), - [anon_sym_STAR_STAR2] = ACTIONS(1673), - [anon_sym_PLUS_PLUS2] = ACTIONS(1673), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1673), - [anon_sym_SLASH_SLASH2] = ACTIONS(1673), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1673), - [anon_sym_bit_DASHshr2] = ACTIONS(1673), - [anon_sym_bit_DASHand2] = ACTIONS(1673), - [anon_sym_bit_DASHxor2] = ACTIONS(1673), - [anon_sym_bit_DASHor2] = ACTIONS(1673), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [aux_sym__immediate_decimal_token2] = ACTIONS(3711), - [sym_filesize_unit] = ACTIONS(1673), - [sym_duration_unit] = ACTIONS(1675), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_bit_DASHshl] = ACTIONS(1575), + [anon_sym_bit_DASHshr] = ACTIONS(1575), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_BANG_TILDE] = ACTIONS(1575), + [anon_sym_bit_DASHand] = ACTIONS(1575), + [anon_sym_bit_DASHxor] = ACTIONS(1575), + [anon_sym_bit_DASHor] = ACTIONS(1575), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_not_DASHin] = ACTIONS(1575), + [anon_sym_starts_DASHwith] = ACTIONS(1575), + [anon_sym_ends_DASHwith] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1575), + [aux_sym_cmd_identifier_token41] = ACTIONS(1573), + [sym__newline] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_err_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_GT_PIPE] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_RBRACE] = ACTIONS(1573), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1573), + [anon_sym_xor2] = ACTIONS(1573), + [anon_sym_or2] = ACTIONS(1573), + [anon_sym_not_DASHin2] = ACTIONS(1573), + [anon_sym_starts_DASHwith2] = ACTIONS(1573), + [anon_sym_ends_DASHwith2] = ACTIONS(1573), + [anon_sym_EQ_EQ2] = ACTIONS(1573), + [anon_sym_BANG_EQ2] = ACTIONS(1573), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1573), + [anon_sym_GT_EQ2] = ACTIONS(1573), + [anon_sym_EQ_TILDE2] = ACTIONS(1573), + [anon_sym_BANG_TILDE2] = ACTIONS(1573), + [anon_sym_STAR_STAR2] = ACTIONS(1573), + [anon_sym_PLUS_PLUS2] = ACTIONS(1573), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1573), + [anon_sym_SLASH_SLASH2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1573), + [anon_sym_bit_DASHshr2] = ACTIONS(1573), + [anon_sym_bit_DASHand2] = ACTIONS(1573), + [anon_sym_bit_DASHxor2] = ACTIONS(1573), + [anon_sym_bit_DASHor2] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(3574), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), [anon_sym_POUND] = ACTIONS(3), }, [1202] = { [sym_comment] = STATE(1202), - [anon_sym_STAR_STAR] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_SLASH_SLASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_bit_DASHshl] = ACTIONS(1609), - [anon_sym_bit_DASHshr] = ACTIONS(1609), - [anon_sym_EQ_TILDE] = ACTIONS(1609), - [anon_sym_BANG_TILDE] = ACTIONS(1609), - [anon_sym_bit_DASHand] = ACTIONS(1609), - [anon_sym_bit_DASHxor] = ACTIONS(1609), - [anon_sym_bit_DASHor] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(1609), - [anon_sym_not_DASHin] = ACTIONS(1609), - [anon_sym_starts_DASHwith] = ACTIONS(1609), - [anon_sym_ends_DASHwith] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1609), - [anon_sym_BANG_EQ] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1609), - [aux_sym_cmd_identifier_token41] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT] = ACTIONS(3713), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), + [anon_sym_STAR_STAR] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1681), + [anon_sym_SLASH] = ACTIONS(1681), + [anon_sym_mod] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_bit_DASHshl] = ACTIONS(1683), + [anon_sym_bit_DASHshr] = ACTIONS(1683), + [anon_sym_EQ_TILDE] = ACTIONS(1683), + [anon_sym_BANG_TILDE] = ACTIONS(1683), + [anon_sym_bit_DASHand] = ACTIONS(1683), + [anon_sym_bit_DASHxor] = ACTIONS(1683), + [anon_sym_bit_DASHor] = ACTIONS(1683), + [anon_sym_and] = ACTIONS(1683), + [anon_sym_xor] = ACTIONS(1683), + [anon_sym_or] = ACTIONS(1683), + [anon_sym_in] = ACTIONS(1683), + [anon_sym_not_DASHin] = ACTIONS(1683), + [anon_sym_starts_DASHwith] = ACTIONS(1683), + [anon_sym_ends_DASHwith] = ACTIONS(1683), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(1683), + [aux_sym_cmd_identifier_token41] = ACTIONS(1681), + [sym__newline] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_err_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_GT_PIPE] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), + [anon_sym_GT2] = ACTIONS(1681), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_in2] = ACTIONS(1681), + [anon_sym_RBRACE] = ACTIONS(1681), + [anon_sym_STAR2] = ACTIONS(1681), + [anon_sym_and2] = ACTIONS(1681), + [anon_sym_xor2] = ACTIONS(1681), + [anon_sym_or2] = ACTIONS(1681), + [anon_sym_not_DASHin2] = ACTIONS(1681), + [anon_sym_starts_DASHwith2] = ACTIONS(1681), + [anon_sym_ends_DASHwith2] = ACTIONS(1681), + [anon_sym_EQ_EQ2] = ACTIONS(1681), + [anon_sym_BANG_EQ2] = ACTIONS(1681), + [anon_sym_LT2] = ACTIONS(1681), + [anon_sym_LT_EQ2] = ACTIONS(1681), + [anon_sym_GT_EQ2] = ACTIONS(1681), + [anon_sym_EQ_TILDE2] = ACTIONS(1681), + [anon_sym_BANG_TILDE2] = ACTIONS(1681), + [anon_sym_STAR_STAR2] = ACTIONS(1681), + [anon_sym_PLUS_PLUS2] = ACTIONS(1681), + [anon_sym_SLASH2] = ACTIONS(1681), + [anon_sym_mod2] = ACTIONS(1681), + [anon_sym_SLASH_SLASH2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1681), + [anon_sym_bit_DASHshl2] = ACTIONS(1681), + [anon_sym_bit_DASHshr2] = ACTIONS(1681), + [anon_sym_bit_DASHand2] = ACTIONS(1681), + [anon_sym_bit_DASHxor2] = ACTIONS(1681), + [anon_sym_bit_DASHor2] = ACTIONS(1681), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), [aux_sym__immediate_decimal_token2] = ACTIONS(3715), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), + [sym_filesize_unit] = ACTIONS(1681), + [sym_duration_unit] = ACTIONS(1683), [anon_sym_POUND] = ACTIONS(3), }, [1203] = { + [sym_match_arm] = STATE(7228), + [sym_default_arm] = STATE(7228), + [sym_match_pattern] = STATE(7855), + [sym__match_pattern] = STATE(6042), + [sym__match_pattern_expression] = STATE(7095), + [sym__match_pattern_value] = STATE(7109), + [sym__match_pattern_list] = STATE(7114), + [sym__match_pattern_record] = STATE(7148), + [sym_expr_parenthesized] = STATE(5819), + [sym_val_range] = STATE(7109), + [sym__val_range] = STATE(7906), + [sym_val_nothing] = STATE(7164), + [sym_val_bool] = STATE(6540), + [sym_val_variable] = STATE(5826), + [sym_val_number] = STATE(7164), + [sym__val_number_decimal] = STATE(5383), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(7164), + [sym_val_filesize] = STATE(7164), + [sym_val_binary] = STATE(7164), + [sym_val_string] = STATE(7164), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_table] = STATE(7164), + [sym_unquoted] = STATE(7176), + [sym__unquoted_anonymous_prefix] = STATE(7913), [sym_comment] = STATE(1203), - [anon_sym_STAR_STAR] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_SLASH_SLASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_bit_DASHshl] = ACTIONS(1609), - [anon_sym_bit_DASHshr] = ACTIONS(1609), - [anon_sym_EQ_TILDE] = ACTIONS(1609), - [anon_sym_BANG_TILDE] = ACTIONS(1609), - [anon_sym_bit_DASHand] = ACTIONS(1609), - [anon_sym_bit_DASHxor] = ACTIONS(1609), - [anon_sym_bit_DASHor] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(1609), - [anon_sym_not_DASHin] = ACTIONS(1609), - [anon_sym_starts_DASHwith] = ACTIONS(1609), - [anon_sym_ends_DASHwith] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1609), - [anon_sym_BANG_EQ] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1609), - [aux_sym_cmd_identifier_token41] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_RBRACE] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(3565), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(3071), + [aux_sym_ctrl_match_repeat1] = STATE(1243), + [sym__newline] = ACTIONS(3587), + [anon_sym_LBRACK] = ACTIONS(3589), + [anon_sym_LPAREN] = ACTIONS(3591), + [anon_sym_DOLLAR] = ACTIONS(3593), + [anon_sym_LBRACE] = ACTIONS(3595), + [anon_sym__] = ACTIONS(3599), + [anon_sym_DOT_DOT] = ACTIONS(3601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), + [anon_sym_DOT_DOT_LT] = ACTIONS(3603), + [anon_sym_null] = ACTIONS(3605), + [anon_sym_true] = ACTIONS(3607), + [anon_sym_false] = ACTIONS(3607), + [aux_sym__val_number_decimal_token1] = ACTIONS(3609), + [aux_sym__val_number_decimal_token2] = ACTIONS(3611), + [aux_sym__val_number_decimal_token3] = ACTIONS(3613), + [aux_sym__val_number_decimal_token4] = ACTIONS(3615), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3617), + [aux_sym__val_number_token5] = ACTIONS(3617), + [aux_sym__val_number_token6] = ACTIONS(3617), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3619), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1204] = { + [sym_match_arm] = STATE(7233), + [sym_default_arm] = STATE(7233), + [sym_match_pattern] = STATE(7855), + [sym__match_pattern] = STATE(6042), + [sym__match_pattern_expression] = STATE(7095), + [sym__match_pattern_value] = STATE(7109), + [sym__match_pattern_list] = STATE(7114), + [sym__match_pattern_record] = STATE(7148), + [sym_expr_parenthesized] = STATE(5819), + [sym_val_range] = STATE(7109), + [sym__val_range] = STATE(7906), + [sym_val_nothing] = STATE(7164), + [sym_val_bool] = STATE(6540), + [sym_val_variable] = STATE(5826), + [sym_val_number] = STATE(7164), + [sym__val_number_decimal] = STATE(5383), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(7164), + [sym_val_filesize] = STATE(7164), + [sym_val_binary] = STATE(7164), + [sym_val_string] = STATE(7164), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_table] = STATE(7164), + [sym_unquoted] = STATE(7176), + [sym__unquoted_anonymous_prefix] = STATE(7913), [sym_comment] = STATE(1204), - [anon_sym_STAR_STAR] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_SLASH_SLASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_bit_DASHshl] = ACTIONS(1609), - [anon_sym_bit_DASHshr] = ACTIONS(1609), - [anon_sym_EQ_TILDE] = ACTIONS(1609), - [anon_sym_BANG_TILDE] = ACTIONS(1609), - [anon_sym_bit_DASHand] = ACTIONS(1609), - [anon_sym_bit_DASHxor] = ACTIONS(1609), - [anon_sym_bit_DASHor] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(1609), - [anon_sym_not_DASHin] = ACTIONS(1609), - [anon_sym_starts_DASHwith] = ACTIONS(1609), - [anon_sym_ends_DASHwith] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1609), - [anon_sym_BANG_EQ] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1609), - [aux_sym_cmd_identifier_token41] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_RPAREN] = ACTIONS(1607), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(3653), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(3071), + [aux_sym_ctrl_match_repeat1] = STATE(1244), + [sym__newline] = ACTIONS(3587), + [anon_sym_LBRACK] = ACTIONS(3589), + [anon_sym_LPAREN] = ACTIONS(3591), + [anon_sym_DOLLAR] = ACTIONS(3593), + [anon_sym_LBRACE] = ACTIONS(3595), + [anon_sym__] = ACTIONS(3599), + [anon_sym_DOT_DOT] = ACTIONS(3601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), + [anon_sym_DOT_DOT_LT] = ACTIONS(3603), + [anon_sym_null] = ACTIONS(3605), + [anon_sym_true] = ACTIONS(3607), + [anon_sym_false] = ACTIONS(3607), + [aux_sym__val_number_decimal_token1] = ACTIONS(3609), + [aux_sym__val_number_decimal_token2] = ACTIONS(3611), + [aux_sym__val_number_decimal_token3] = ACTIONS(3613), + [aux_sym__val_number_decimal_token4] = ACTIONS(3615), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3617), + [aux_sym__val_number_token5] = ACTIONS(3617), + [aux_sym__val_number_token6] = ACTIONS(3617), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3619), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), }, [1205] = { [sym_comment] = STATE(1205), - [anon_sym_STAR_STAR] = ACTIONS(1675), - [anon_sym_PLUS_PLUS] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1673), - [anon_sym_mod] = ACTIONS(1675), - [anon_sym_SLASH_SLASH] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_bit_DASHshl] = ACTIONS(1675), - [anon_sym_bit_DASHshr] = ACTIONS(1675), - [anon_sym_EQ_TILDE] = ACTIONS(1675), - [anon_sym_BANG_TILDE] = ACTIONS(1675), - [anon_sym_bit_DASHand] = ACTIONS(1675), - [anon_sym_bit_DASHxor] = ACTIONS(1675), - [anon_sym_bit_DASHor] = ACTIONS(1675), - [anon_sym_and] = ACTIONS(1675), - [anon_sym_xor] = ACTIONS(1675), - [anon_sym_or] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [anon_sym_not_DASHin] = ACTIONS(1675), - [anon_sym_starts_DASHwith] = ACTIONS(1675), - [anon_sym_ends_DASHwith] = ACTIONS(1675), - [anon_sym_EQ_EQ] = ACTIONS(1675), - [anon_sym_BANG_EQ] = ACTIONS(1675), - [anon_sym_LT] = ACTIONS(1673), - [anon_sym_LT_EQ] = ACTIONS(1675), - [anon_sym_GT] = ACTIONS(1673), - [anon_sym_GT_EQ] = ACTIONS(1675), - [aux_sym_cmd_identifier_token41] = ACTIONS(1673), - [sym__newline] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1673), - [anon_sym_err_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_GT_PIPE] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_in2] = ACTIONS(1673), - [anon_sym_RBRACE] = ACTIONS(1673), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1673), - [anon_sym_xor2] = ACTIONS(1673), - [anon_sym_or2] = ACTIONS(1673), - [anon_sym_not_DASHin2] = ACTIONS(1673), - [anon_sym_starts_DASHwith2] = ACTIONS(1673), - [anon_sym_ends_DASHwith2] = ACTIONS(1673), - [anon_sym_EQ_EQ2] = ACTIONS(1673), - [anon_sym_BANG_EQ2] = ACTIONS(1673), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1673), - [anon_sym_GT_EQ2] = ACTIONS(1673), - [anon_sym_EQ_TILDE2] = ACTIONS(1673), - [anon_sym_BANG_TILDE2] = ACTIONS(1673), - [anon_sym_STAR_STAR2] = ACTIONS(1673), - [anon_sym_PLUS_PLUS2] = ACTIONS(1673), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1673), - [anon_sym_SLASH_SLASH2] = ACTIONS(1673), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1673), - [anon_sym_bit_DASHshr2] = ACTIONS(1673), - [anon_sym_bit_DASHand2] = ACTIONS(1673), - [anon_sym_bit_DASHxor2] = ACTIONS(1673), - [anon_sym_bit_DASHor2] = ACTIONS(1673), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), + [anon_sym_STAR_STAR] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1681), + [anon_sym_SLASH] = ACTIONS(1681), + [anon_sym_mod] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_bit_DASHshl] = ACTIONS(1683), + [anon_sym_bit_DASHshr] = ACTIONS(1683), + [anon_sym_EQ_TILDE] = ACTIONS(1683), + [anon_sym_BANG_TILDE] = ACTIONS(1683), + [anon_sym_bit_DASHand] = ACTIONS(1683), + [anon_sym_bit_DASHxor] = ACTIONS(1683), + [anon_sym_bit_DASHor] = ACTIONS(1683), + [anon_sym_and] = ACTIONS(1683), + [anon_sym_xor] = ACTIONS(1683), + [anon_sym_or] = ACTIONS(1683), + [anon_sym_in] = ACTIONS(1683), + [anon_sym_not_DASHin] = ACTIONS(1683), + [anon_sym_starts_DASHwith] = ACTIONS(1683), + [anon_sym_ends_DASHwith] = ACTIONS(1683), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(1683), + [aux_sym_cmd_identifier_token41] = ACTIONS(1681), + [sym__newline] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_err_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_GT_PIPE] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), + [anon_sym_RPAREN] = ACTIONS(1681), + [anon_sym_GT2] = ACTIONS(1681), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_in2] = ACTIONS(1681), + [anon_sym_STAR2] = ACTIONS(1681), + [anon_sym_and2] = ACTIONS(1681), + [anon_sym_xor2] = ACTIONS(1681), + [anon_sym_or2] = ACTIONS(1681), + [anon_sym_not_DASHin2] = ACTIONS(1681), + [anon_sym_starts_DASHwith2] = ACTIONS(1681), + [anon_sym_ends_DASHwith2] = ACTIONS(1681), + [anon_sym_EQ_EQ2] = ACTIONS(1681), + [anon_sym_BANG_EQ2] = ACTIONS(1681), + [anon_sym_LT2] = ACTIONS(1681), + [anon_sym_LT_EQ2] = ACTIONS(1681), + [anon_sym_GT_EQ2] = ACTIONS(1681), + [anon_sym_EQ_TILDE2] = ACTIONS(1681), + [anon_sym_BANG_TILDE2] = ACTIONS(1681), + [anon_sym_STAR_STAR2] = ACTIONS(1681), + [anon_sym_PLUS_PLUS2] = ACTIONS(1681), + [anon_sym_SLASH2] = ACTIONS(1681), + [anon_sym_mod2] = ACTIONS(1681), + [anon_sym_SLASH_SLASH2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1681), + [anon_sym_bit_DASHshl2] = ACTIONS(1681), + [anon_sym_bit_DASHshr2] = ACTIONS(1681), + [anon_sym_bit_DASHand2] = ACTIONS(1681), + [anon_sym_bit_DASHxor2] = ACTIONS(1681), + [anon_sym_bit_DASHor2] = ACTIONS(1681), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), [aux_sym__immediate_decimal_token2] = ACTIONS(3717), - [sym_filesize_unit] = ACTIONS(1673), - [sym_duration_unit] = ACTIONS(1675), + [sym_filesize_unit] = ACTIONS(1681), + [sym_duration_unit] = ACTIONS(1683), [anon_sym_POUND] = ACTIONS(3), }, [1206] = { + [sym_expr_parenthesized] = STATE(501), + [sym_val_range] = STATE(658), + [sym__val_range] = STATE(7732), + [sym__val_range_with_end] = STATE(7584), + [sym__value] = STATE(658), + [sym_val_nothing] = STATE(631), + [sym_val_bool] = STATE(534), + [sym_val_variable] = STATE(509), + [sym_val_number] = STATE(631), + [sym__val_number_decimal] = STATE(348), + [sym__val_number] = STATE(654), + [sym_val_duration] = STATE(631), + [sym_val_filesize] = STATE(631), + [sym_val_binary] = STATE(631), + [sym_val_string] = STATE(631), + [sym__raw_str] = STATE(694), + [sym__str_double_quotes] = STATE(694), + [sym_val_interpolated] = STATE(631), + [sym__inter_single_quotes] = STATE(669), + [sym__inter_double_quotes] = STATE(671), + [sym_val_list] = STATE(631), + [sym_val_record] = STATE(631), + [sym_val_table] = STATE(631), + [sym_val_closure] = STATE(631), + [sym__unquoted_in_record] = STATE(542), + [sym__unquoted_in_record_with_expr] = STATE(658), + [sym__unquoted_anonymous_prefix] = STATE(6895), [sym_comment] = STATE(1206), - [anon_sym_STAR_STAR] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_SLASH_SLASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_bit_DASHshl] = ACTIONS(1609), - [anon_sym_bit_DASHshr] = ACTIONS(1609), - [anon_sym_EQ_TILDE] = ACTIONS(1609), - [anon_sym_BANG_TILDE] = ACTIONS(1609), - [anon_sym_bit_DASHand] = ACTIONS(1609), - [anon_sym_bit_DASHxor] = ACTIONS(1609), - [anon_sym_bit_DASHor] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(1609), - [anon_sym_not_DASHin] = ACTIONS(1609), - [anon_sym_starts_DASHwith] = ACTIONS(1609), - [anon_sym_ends_DASHwith] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1609), - [anon_sym_BANG_EQ] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1609), - [aux_sym_cmd_identifier_token41] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(3715), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3719), + [anon_sym_LPAREN] = ACTIONS(3721), + [anon_sym_DOLLAR] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(3723), + [anon_sym_DOT_DOT] = ACTIONS(3725), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3727), + [anon_sym_DOT_DOT_LT] = ACTIONS(3727), + [anon_sym_null] = ACTIONS(3729), + [anon_sym_true] = ACTIONS(3731), + [anon_sym_false] = ACTIONS(3731), + [aux_sym__val_number_decimal_token1] = ACTIONS(3733), + [aux_sym__val_number_decimal_token2] = ACTIONS(3735), + [aux_sym__val_number_decimal_token3] = ACTIONS(3737), + [aux_sym__val_number_decimal_token4] = ACTIONS(3739), + [aux_sym__val_number_token1] = ACTIONS(3741), + [aux_sym__val_number_token2] = ACTIONS(3741), + [aux_sym__val_number_token3] = ACTIONS(3741), + [aux_sym__val_number_token4] = ACTIONS(3743), + [aux_sym__val_number_token5] = ACTIONS(3743), + [aux_sym__val_number_token6] = ACTIONS(3743), + [anon_sym_0b] = ACTIONS(3745), + [anon_sym_0o] = ACTIONS(3747), + [anon_sym_0x] = ACTIONS(3747), + [sym_val_date] = ACTIONS(3749), + [anon_sym_DQUOTE] = ACTIONS(3751), + [sym__str_single_quotes] = ACTIONS(3753), + [sym__str_back_ticks] = ACTIONS(3753), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3755), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3757), + [anon_sym_err_GT] = ACTIONS(3759), + [anon_sym_out_GT] = ACTIONS(3759), + [anon_sym_e_GT] = ACTIONS(3759), + [anon_sym_o_GT] = ACTIONS(3759), + [anon_sym_err_PLUSout_GT] = ACTIONS(3759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3759), + [anon_sym_o_PLUSe_GT] = ACTIONS(3759), + [anon_sym_e_PLUSo_GT] = ACTIONS(3759), + [anon_sym_err_GT_GT] = ACTIONS(3761), + [anon_sym_out_GT_GT] = ACTIONS(3761), + [anon_sym_e_GT_GT] = ACTIONS(3761), + [anon_sym_o_GT_GT] = ACTIONS(3761), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3761), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3761), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3761), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3761), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3763), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3765), }, [1207] = { [sym_comment] = STATE(1207), - [anon_sym_STAR_STAR] = ACTIONS(3063), - [anon_sym_PLUS_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_SLASH] = ACTIONS(3065), - [anon_sym_mod] = ACTIONS(3063), - [anon_sym_SLASH_SLASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_bit_DASHshl] = ACTIONS(3063), - [anon_sym_bit_DASHshr] = ACTIONS(3063), - [anon_sym_EQ_TILDE] = ACTIONS(3063), - [anon_sym_BANG_TILDE] = ACTIONS(3063), - [anon_sym_bit_DASHand] = ACTIONS(3063), - [anon_sym_bit_DASHxor] = ACTIONS(3063), - [anon_sym_bit_DASHor] = ACTIONS(3063), - [anon_sym_and] = ACTIONS(3063), - [anon_sym_xor] = ACTIONS(3063), - [anon_sym_or] = ACTIONS(3063), - [anon_sym_in] = ACTIONS(3063), - [anon_sym_not_DASHin] = ACTIONS(3063), - [anon_sym_starts_DASHwith] = ACTIONS(3063), - [anon_sym_ends_DASHwith] = ACTIONS(3063), - [anon_sym_EQ_EQ] = ACTIONS(3063), - [anon_sym_BANG_EQ] = ACTIONS(3063), - [anon_sym_LT] = ACTIONS(3065), - [anon_sym_LT_EQ] = ACTIONS(3063), - [anon_sym_GT] = ACTIONS(3065), - [anon_sym_GT_EQ] = ACTIONS(3063), - [aux_sym_cmd_identifier_token41] = ACTIONS(3067), - [sym__newline] = ACTIONS(1709), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_PIPE] = ACTIONS(1709), - [anon_sym_err_GT_PIPE] = ACTIONS(1709), - [anon_sym_out_GT_PIPE] = ACTIONS(1709), - [anon_sym_e_GT_PIPE] = ACTIONS(1709), - [anon_sym_o_GT_PIPE] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), - [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_RPAREN] = ACTIONS(1709), - [anon_sym_GT2] = ACTIONS(1709), - [anon_sym_DASH2] = ACTIONS(1709), - [anon_sym_in2] = ACTIONS(1709), - [anon_sym_STAR2] = ACTIONS(1709), - [anon_sym_and2] = ACTIONS(1709), - [anon_sym_xor2] = ACTIONS(1709), - [anon_sym_or2] = ACTIONS(1709), - [anon_sym_not_DASHin2] = ACTIONS(1709), - [anon_sym_starts_DASHwith2] = ACTIONS(1709), - [anon_sym_ends_DASHwith2] = ACTIONS(1709), - [anon_sym_EQ_EQ2] = ACTIONS(1709), - [anon_sym_BANG_EQ2] = ACTIONS(1709), - [anon_sym_LT2] = ACTIONS(1709), - [anon_sym_LT_EQ2] = ACTIONS(1709), - [anon_sym_GT_EQ2] = ACTIONS(1709), - [anon_sym_EQ_TILDE2] = ACTIONS(1709), - [anon_sym_BANG_TILDE2] = ACTIONS(1709), - [anon_sym_STAR_STAR2] = ACTIONS(1709), - [anon_sym_PLUS_PLUS2] = ACTIONS(1709), - [anon_sym_SLASH2] = ACTIONS(1709), - [anon_sym_mod2] = ACTIONS(1709), - [anon_sym_SLASH_SLASH2] = ACTIONS(1709), - [anon_sym_PLUS2] = ACTIONS(1709), - [anon_sym_bit_DASHshl2] = ACTIONS(1709), - [anon_sym_bit_DASHshr2] = ACTIONS(1709), - [anon_sym_bit_DASHand2] = ACTIONS(1709), - [anon_sym_bit_DASHxor2] = ACTIONS(1709), - [anon_sym_bit_DASHor2] = ACTIONS(1709), - [anon_sym_DOT_DOT2] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3039), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3039), - [sym_filesize_unit] = ACTIONS(3719), - [sym_duration_unit] = ACTIONS(3721), + [anon_sym_STAR_STAR] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_mod] = ACTIONS(1587), + [anon_sym_SLASH_SLASH] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_bit_DASHshl] = ACTIONS(1587), + [anon_sym_bit_DASHshr] = ACTIONS(1587), + [anon_sym_EQ_TILDE] = ACTIONS(1587), + [anon_sym_BANG_TILDE] = ACTIONS(1587), + [anon_sym_bit_DASHand] = ACTIONS(1587), + [anon_sym_bit_DASHxor] = ACTIONS(1587), + [anon_sym_bit_DASHor] = ACTIONS(1587), + [anon_sym_and] = ACTIONS(1587), + [anon_sym_xor] = ACTIONS(1587), + [anon_sym_or] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(1587), + [anon_sym_not_DASHin] = ACTIONS(1587), + [anon_sym_starts_DASHwith] = ACTIONS(1587), + [anon_sym_ends_DASHwith] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(1587), + [anon_sym_BANG_EQ] = ACTIONS(1587), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_LT_EQ] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1587), + [aux_sym_cmd_identifier_token41] = ACTIONS(1585), + [sym__newline] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_err_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_GT_PIPE] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), + [anon_sym_GT2] = ACTIONS(1585), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_in2] = ACTIONS(1585), + [anon_sym_STAR2] = ACTIONS(1585), + [anon_sym_and2] = ACTIONS(1585), + [anon_sym_xor2] = ACTIONS(1585), + [anon_sym_or2] = ACTIONS(1585), + [anon_sym_not_DASHin2] = ACTIONS(1585), + [anon_sym_starts_DASHwith2] = ACTIONS(1585), + [anon_sym_ends_DASHwith2] = ACTIONS(1585), + [anon_sym_EQ_EQ2] = ACTIONS(1585), + [anon_sym_BANG_EQ2] = ACTIONS(1585), + [anon_sym_LT2] = ACTIONS(1585), + [anon_sym_LT_EQ2] = ACTIONS(1585), + [anon_sym_GT_EQ2] = ACTIONS(1585), + [anon_sym_EQ_TILDE2] = ACTIONS(1585), + [anon_sym_BANG_TILDE2] = ACTIONS(1585), + [anon_sym_STAR_STAR2] = ACTIONS(1585), + [anon_sym_PLUS_PLUS2] = ACTIONS(1585), + [anon_sym_SLASH2] = ACTIONS(1585), + [anon_sym_mod2] = ACTIONS(1585), + [anon_sym_SLASH_SLASH2] = ACTIONS(1585), + [anon_sym_PLUS2] = ACTIONS(1585), + [anon_sym_bit_DASHshl2] = ACTIONS(1585), + [anon_sym_bit_DASHshr2] = ACTIONS(1585), + [anon_sym_bit_DASHand2] = ACTIONS(1585), + [anon_sym_bit_DASHxor2] = ACTIONS(1585), + [anon_sym_bit_DASHor2] = ACTIONS(1585), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [aux_sym__immediate_decimal_token1] = ACTIONS(3767), + [aux_sym__immediate_decimal_token2] = ACTIONS(3769), + [sym_filesize_unit] = ACTIONS(1585), + [sym_duration_unit] = ACTIONS(1587), [anon_sym_POUND] = ACTIONS(3), }, [1208] = { - [sym_expr_parenthesized] = STATE(6210), - [sym_val_range] = STATE(7537), - [sym__val_range] = STATE(7626), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7537), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6741), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5343), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7097), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_record] = STATE(6745), - [sym__unquoted_in_record_with_expr] = STATE(7537), - [sym__unquoted_anonymous_prefix] = STATE(7182), [sym_comment] = STATE(1208), - [anon_sym_LBRACK] = ACTIONS(3141), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3099), - [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(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [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(3121), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3741), - [anon_sym_DQUOTE] = ACTIONS(3127), - [sym__str_single_quotes] = ACTIONS(3129), - [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_err_GT] = ACTIONS(3743), - [anon_sym_out_GT] = ACTIONS(3743), - [anon_sym_e_GT] = ACTIONS(3743), - [anon_sym_o_GT] = ACTIONS(3743), - [anon_sym_err_PLUSout_GT] = ACTIONS(3743), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3743), - [anon_sym_o_PLUSe_GT] = ACTIONS(3743), - [anon_sym_e_PLUSo_GT] = ACTIONS(3743), - [anon_sym_err_GT_GT] = ACTIONS(3745), - [anon_sym_out_GT_GT] = ACTIONS(3745), - [anon_sym_e_GT_GT] = ACTIONS(3745), - [anon_sym_o_GT_GT] = ACTIONS(3745), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3745), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3745), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3745), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3745), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3747), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3133), + [ts_builtin_sym_end] = ACTIONS(1587), + [anon_sym_STAR_STAR] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_mod] = ACTIONS(1587), + [anon_sym_SLASH_SLASH] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_bit_DASHshl] = ACTIONS(1587), + [anon_sym_bit_DASHshr] = ACTIONS(1587), + [anon_sym_EQ_TILDE] = ACTIONS(1587), + [anon_sym_BANG_TILDE] = ACTIONS(1587), + [anon_sym_bit_DASHand] = ACTIONS(1587), + [anon_sym_bit_DASHxor] = ACTIONS(1587), + [anon_sym_bit_DASHor] = ACTIONS(1587), + [anon_sym_and] = ACTIONS(1587), + [anon_sym_xor] = ACTIONS(1587), + [anon_sym_or] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(1587), + [anon_sym_not_DASHin] = ACTIONS(1587), + [anon_sym_starts_DASHwith] = ACTIONS(1587), + [anon_sym_ends_DASHwith] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(1587), + [anon_sym_BANG_EQ] = ACTIONS(1587), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_LT_EQ] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1587), + [aux_sym_cmd_identifier_token41] = ACTIONS(1585), + [sym__newline] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_err_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_GT_PIPE] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), + [anon_sym_GT2] = ACTIONS(1585), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_in2] = ACTIONS(1585), + [anon_sym_STAR2] = ACTIONS(1585), + [anon_sym_and2] = ACTIONS(1585), + [anon_sym_xor2] = ACTIONS(1585), + [anon_sym_or2] = ACTIONS(1585), + [anon_sym_not_DASHin2] = ACTIONS(1585), + [anon_sym_starts_DASHwith2] = ACTIONS(1585), + [anon_sym_ends_DASHwith2] = ACTIONS(1585), + [anon_sym_EQ_EQ2] = ACTIONS(1585), + [anon_sym_BANG_EQ2] = ACTIONS(1585), + [anon_sym_LT2] = ACTIONS(1585), + [anon_sym_LT_EQ2] = ACTIONS(1585), + [anon_sym_GT_EQ2] = ACTIONS(1585), + [anon_sym_EQ_TILDE2] = ACTIONS(1585), + [anon_sym_BANG_TILDE2] = ACTIONS(1585), + [anon_sym_STAR_STAR2] = ACTIONS(1585), + [anon_sym_PLUS_PLUS2] = ACTIONS(1585), + [anon_sym_SLASH2] = ACTIONS(1585), + [anon_sym_mod2] = ACTIONS(1585), + [anon_sym_SLASH_SLASH2] = ACTIONS(1585), + [anon_sym_PLUS2] = ACTIONS(1585), + [anon_sym_bit_DASHshl2] = ACTIONS(1585), + [anon_sym_bit_DASHshr2] = ACTIONS(1585), + [anon_sym_bit_DASHand2] = ACTIONS(1585), + [anon_sym_bit_DASHxor2] = ACTIONS(1585), + [anon_sym_bit_DASHor2] = ACTIONS(1585), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [sym_filesize_unit] = ACTIONS(1585), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_POUND] = ACTIONS(3), }, [1209] = { [sym_comment] = STATE(1209), - [anon_sym_STAR_STAR] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_SLASH_SLASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_bit_DASHshl] = ACTIONS(1609), - [anon_sym_bit_DASHshr] = ACTIONS(1609), - [anon_sym_EQ_TILDE] = ACTIONS(1609), - [anon_sym_BANG_TILDE] = ACTIONS(1609), - [anon_sym_bit_DASHand] = ACTIONS(1609), - [anon_sym_bit_DASHxor] = ACTIONS(1609), - [anon_sym_bit_DASHor] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(1609), - [anon_sym_not_DASHin] = ACTIONS(1609), - [anon_sym_starts_DASHwith] = ACTIONS(1609), - [anon_sym_ends_DASHwith] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1609), - [anon_sym_BANG_EQ] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1609), - [aux_sym_cmd_identifier_token41] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_RPAREN] = ACTIONS(1607), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(3), - }, - [1210] = { - [sym_comment] = STATE(1210), - [anon_sym_STAR_STAR] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1763), - [anon_sym_SLASH] = ACTIONS(1763), - [anon_sym_mod] = ACTIONS(1765), - [anon_sym_SLASH_SLASH] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_bit_DASHshl] = ACTIONS(1765), - [anon_sym_bit_DASHshr] = ACTIONS(1765), - [anon_sym_EQ_TILDE] = ACTIONS(1765), - [anon_sym_BANG_TILDE] = ACTIONS(1765), - [anon_sym_bit_DASHand] = ACTIONS(1765), - [anon_sym_bit_DASHxor] = ACTIONS(1765), - [anon_sym_bit_DASHor] = ACTIONS(1765), - [anon_sym_and] = ACTIONS(1765), - [anon_sym_xor] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), - [anon_sym_in] = ACTIONS(1765), - [anon_sym_not_DASHin] = ACTIONS(1765), - [anon_sym_starts_DASHwith] = ACTIONS(1765), - [anon_sym_ends_DASHwith] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1765), - [anon_sym_BANG_EQ] = ACTIONS(1765), - [anon_sym_LT] = ACTIONS(1763), - [anon_sym_LT_EQ] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1765), - [aux_sym_cmd_identifier_token41] = ACTIONS(1763), - [sym__newline] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_err_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_GT_PIPE] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), - [anon_sym_GT2] = ACTIONS(1763), - [anon_sym_DASH2] = ACTIONS(1763), - [anon_sym_in2] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_STAR2] = ACTIONS(1763), - [anon_sym_and2] = ACTIONS(1763), - [anon_sym_xor2] = ACTIONS(1763), - [anon_sym_or2] = ACTIONS(1763), - [anon_sym_not_DASHin2] = ACTIONS(1763), - [anon_sym_starts_DASHwith2] = ACTIONS(1763), - [anon_sym_ends_DASHwith2] = ACTIONS(1763), - [anon_sym_EQ_EQ2] = ACTIONS(1763), - [anon_sym_BANG_EQ2] = ACTIONS(1763), - [anon_sym_LT2] = ACTIONS(1763), - [anon_sym_LT_EQ2] = ACTIONS(1763), - [anon_sym_GT_EQ2] = ACTIONS(1763), - [anon_sym_EQ_TILDE2] = ACTIONS(1763), - [anon_sym_BANG_TILDE2] = ACTIONS(1763), - [anon_sym_STAR_STAR2] = ACTIONS(1763), - [anon_sym_PLUS_PLUS2] = ACTIONS(1763), - [anon_sym_SLASH2] = ACTIONS(1763), - [anon_sym_mod2] = ACTIONS(1763), - [anon_sym_SLASH_SLASH2] = ACTIONS(1763), - [anon_sym_PLUS2] = ACTIONS(1763), - [anon_sym_bit_DASHshl2] = ACTIONS(1763), - [anon_sym_bit_DASHshr2] = ACTIONS(1763), - [anon_sym_bit_DASHand2] = ACTIONS(1763), - [anon_sym_bit_DASHxor2] = ACTIONS(1763), - [anon_sym_bit_DASHor2] = ACTIONS(1763), - [anon_sym_DOT_DOT2] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), - [sym_filesize_unit] = ACTIONS(1763), - [sym_duration_unit] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(3), - }, - [1211] = { - [sym_comment] = STATE(1211), - [anon_sym_STAR_STAR] = ACTIONS(3063), - [anon_sym_PLUS_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_SLASH] = ACTIONS(3065), - [anon_sym_mod] = ACTIONS(3063), - [anon_sym_SLASH_SLASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_bit_DASHshl] = ACTIONS(3063), - [anon_sym_bit_DASHshr] = ACTIONS(3063), - [anon_sym_EQ_TILDE] = ACTIONS(3063), - [anon_sym_BANG_TILDE] = ACTIONS(3063), - [anon_sym_bit_DASHand] = ACTIONS(3063), - [anon_sym_bit_DASHxor] = ACTIONS(3063), - [anon_sym_bit_DASHor] = ACTIONS(3063), - [anon_sym_and] = ACTIONS(3063), - [anon_sym_xor] = ACTIONS(3063), - [anon_sym_or] = ACTIONS(3063), - [anon_sym_in] = ACTIONS(3063), - [anon_sym_not_DASHin] = ACTIONS(3063), - [anon_sym_starts_DASHwith] = ACTIONS(3063), - [anon_sym_ends_DASHwith] = ACTIONS(3063), - [anon_sym_EQ_EQ] = ACTIONS(3063), - [anon_sym_BANG_EQ] = ACTIONS(3063), - [anon_sym_LT] = ACTIONS(3065), - [anon_sym_LT_EQ] = ACTIONS(3063), - [anon_sym_GT] = ACTIONS(3065), - [anon_sym_GT_EQ] = ACTIONS(3063), - [aux_sym_cmd_identifier_token41] = ACTIONS(3067), - [sym__newline] = ACTIONS(1709), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_PIPE] = ACTIONS(1709), - [anon_sym_err_GT_PIPE] = ACTIONS(1709), - [anon_sym_out_GT_PIPE] = ACTIONS(1709), - [anon_sym_e_GT_PIPE] = ACTIONS(1709), - [anon_sym_o_GT_PIPE] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), - [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_GT2] = ACTIONS(1709), - [anon_sym_DASH2] = ACTIONS(1709), - [anon_sym_in2] = ACTIONS(1709), - [anon_sym_RBRACE] = ACTIONS(1709), - [anon_sym_STAR2] = ACTIONS(1709), - [anon_sym_and2] = ACTIONS(1709), - [anon_sym_xor2] = ACTIONS(1709), - [anon_sym_or2] = ACTIONS(1709), - [anon_sym_not_DASHin2] = ACTIONS(1709), - [anon_sym_starts_DASHwith2] = ACTIONS(1709), - [anon_sym_ends_DASHwith2] = ACTIONS(1709), - [anon_sym_EQ_EQ2] = ACTIONS(1709), - [anon_sym_BANG_EQ2] = ACTIONS(1709), - [anon_sym_LT2] = ACTIONS(1709), - [anon_sym_LT_EQ2] = ACTIONS(1709), - [anon_sym_GT_EQ2] = ACTIONS(1709), - [anon_sym_EQ_TILDE2] = ACTIONS(1709), - [anon_sym_BANG_TILDE2] = ACTIONS(1709), - [anon_sym_STAR_STAR2] = ACTIONS(1709), - [anon_sym_PLUS_PLUS2] = ACTIONS(1709), - [anon_sym_SLASH2] = ACTIONS(1709), - [anon_sym_mod2] = ACTIONS(1709), - [anon_sym_SLASH_SLASH2] = ACTIONS(1709), - [anon_sym_PLUS2] = ACTIONS(1709), - [anon_sym_bit_DASHshl2] = ACTIONS(1709), - [anon_sym_bit_DASHshr2] = ACTIONS(1709), - [anon_sym_bit_DASHand2] = ACTIONS(1709), - [anon_sym_bit_DASHxor2] = ACTIONS(1709), - [anon_sym_bit_DASHor2] = ACTIONS(1709), - [anon_sym_DOT_DOT2] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3039), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3039), - [sym_filesize_unit] = ACTIONS(3749), - [sym_duration_unit] = ACTIONS(3751), - [anon_sym_POUND] = ACTIONS(3), - }, - [1212] = { - [sym_comment] = STATE(1212), - [anon_sym_STAR_STAR] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_SLASH] = ACTIONS(1621), - [anon_sym_mod] = ACTIONS(1623), - [anon_sym_SLASH_SLASH] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_bit_DASHshl] = ACTIONS(1623), - [anon_sym_bit_DASHshr] = ACTIONS(1623), - [anon_sym_EQ_TILDE] = ACTIONS(1623), - [anon_sym_BANG_TILDE] = ACTIONS(1623), - [anon_sym_bit_DASHand] = ACTIONS(1623), - [anon_sym_bit_DASHxor] = ACTIONS(1623), - [anon_sym_bit_DASHor] = ACTIONS(1623), - [anon_sym_and] = ACTIONS(1623), - [anon_sym_xor] = ACTIONS(1623), - [anon_sym_or] = ACTIONS(1623), - [anon_sym_in] = ACTIONS(1623), - [anon_sym_not_DASHin] = ACTIONS(1623), - [anon_sym_starts_DASHwith] = ACTIONS(1623), - [anon_sym_ends_DASHwith] = ACTIONS(1623), - [anon_sym_EQ_EQ] = ACTIONS(1623), - [anon_sym_BANG_EQ] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1621), - [anon_sym_LT_EQ] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1621), - [anon_sym_GT_EQ] = ACTIONS(1623), - [aux_sym_cmd_identifier_token41] = ACTIONS(1621), - [sym__newline] = ACTIONS(1621), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_PIPE] = ACTIONS(1621), - [anon_sym_err_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_GT_PIPE] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), - [anon_sym_RPAREN] = ACTIONS(1621), - [anon_sym_GT2] = ACTIONS(1621), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_in2] = ACTIONS(1621), - [anon_sym_STAR2] = ACTIONS(1621), - [anon_sym_and2] = ACTIONS(1621), - [anon_sym_xor2] = ACTIONS(1621), - [anon_sym_or2] = ACTIONS(1621), - [anon_sym_not_DASHin2] = ACTIONS(1621), - [anon_sym_starts_DASHwith2] = ACTIONS(1621), - [anon_sym_ends_DASHwith2] = ACTIONS(1621), - [anon_sym_EQ_EQ2] = ACTIONS(1621), - [anon_sym_BANG_EQ2] = ACTIONS(1621), - [anon_sym_LT2] = ACTIONS(1621), - [anon_sym_LT_EQ2] = ACTIONS(1621), - [anon_sym_GT_EQ2] = ACTIONS(1621), - [anon_sym_EQ_TILDE2] = ACTIONS(1621), - [anon_sym_BANG_TILDE2] = ACTIONS(1621), - [anon_sym_STAR_STAR2] = ACTIONS(1621), - [anon_sym_PLUS_PLUS2] = ACTIONS(1621), - [anon_sym_SLASH2] = ACTIONS(1621), - [anon_sym_mod2] = ACTIONS(1621), - [anon_sym_SLASH_SLASH2] = ACTIONS(1621), - [anon_sym_PLUS2] = ACTIONS(1621), - [anon_sym_bit_DASHshl2] = ACTIONS(1621), - [anon_sym_bit_DASHshr2] = ACTIONS(1621), - [anon_sym_bit_DASHand2] = ACTIONS(1621), - [anon_sym_bit_DASHxor2] = ACTIONS(1621), - [anon_sym_bit_DASHor2] = ACTIONS(1621), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [sym_filesize_unit] = ACTIONS(1621), - [sym_duration_unit] = ACTIONS(1623), - [anon_sym_POUND] = ACTIONS(3), - }, - [1213] = { - [sym_comment] = STATE(1213), - [anon_sym_STAR_STAR] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_SLASH] = ACTIONS(1621), - [anon_sym_mod] = ACTIONS(1623), - [anon_sym_SLASH_SLASH] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_bit_DASHshl] = ACTIONS(1623), - [anon_sym_bit_DASHshr] = ACTIONS(1623), - [anon_sym_EQ_TILDE] = ACTIONS(1623), - [anon_sym_BANG_TILDE] = ACTIONS(1623), - [anon_sym_bit_DASHand] = ACTIONS(1623), - [anon_sym_bit_DASHxor] = ACTIONS(1623), - [anon_sym_bit_DASHor] = ACTIONS(1623), - [anon_sym_and] = ACTIONS(1623), - [anon_sym_xor] = ACTIONS(1623), - [anon_sym_or] = ACTIONS(1623), - [anon_sym_in] = ACTIONS(1623), - [anon_sym_not_DASHin] = ACTIONS(1623), - [anon_sym_starts_DASHwith] = ACTIONS(1623), - [anon_sym_ends_DASHwith] = ACTIONS(1623), - [anon_sym_EQ_EQ] = ACTIONS(1623), - [anon_sym_BANG_EQ] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1621), - [anon_sym_LT_EQ] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1621), - [anon_sym_GT_EQ] = ACTIONS(1623), - [aux_sym_cmd_identifier_token41] = ACTIONS(1621), - [sym__newline] = ACTIONS(1621), - [anon_sym_PIPE] = ACTIONS(1621), - [anon_sym_err_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_GT_PIPE] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), - [anon_sym_GT2] = ACTIONS(1621), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_in2] = ACTIONS(1621), - [anon_sym_STAR2] = ACTIONS(1621), - [anon_sym_and2] = ACTIONS(1621), - [anon_sym_xor2] = ACTIONS(1621), - [anon_sym_or2] = ACTIONS(1621), - [anon_sym_not_DASHin2] = ACTIONS(1621), - [anon_sym_starts_DASHwith2] = ACTIONS(1621), - [anon_sym_ends_DASHwith2] = ACTIONS(1621), - [anon_sym_EQ_EQ2] = ACTIONS(1621), - [anon_sym_BANG_EQ2] = ACTIONS(1621), - [anon_sym_LT2] = ACTIONS(1621), - [anon_sym_LT_EQ2] = ACTIONS(1621), - [anon_sym_GT_EQ2] = ACTIONS(1621), - [anon_sym_EQ_TILDE2] = ACTIONS(1621), - [anon_sym_BANG_TILDE2] = ACTIONS(1621), - [anon_sym_STAR_STAR2] = ACTIONS(1621), - [anon_sym_PLUS_PLUS2] = ACTIONS(1621), - [anon_sym_SLASH2] = ACTIONS(1621), - [anon_sym_mod2] = ACTIONS(1621), - [anon_sym_SLASH_SLASH2] = ACTIONS(1621), - [anon_sym_PLUS2] = ACTIONS(1621), - [anon_sym_bit_DASHshl2] = ACTIONS(1621), - [anon_sym_bit_DASHshr2] = ACTIONS(1621), - [anon_sym_bit_DASHand2] = ACTIONS(1621), - [anon_sym_bit_DASHxor2] = ACTIONS(1621), - [anon_sym_bit_DASHor2] = ACTIONS(1621), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [aux_sym__immediate_decimal_token1] = ACTIONS(3753), - [aux_sym__immediate_decimal_token2] = ACTIONS(3755), - [sym_filesize_unit] = ACTIONS(1621), - [sym_duration_unit] = ACTIONS(1623), - [anon_sym_POUND] = ACTIONS(3), - }, - [1214] = { - [sym_comment] = STATE(1214), - [anon_sym_STAR_STAR] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_SLASH_SLASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_bit_DASHshl] = ACTIONS(1609), - [anon_sym_bit_DASHshr] = ACTIONS(1609), - [anon_sym_EQ_TILDE] = ACTIONS(1609), - [anon_sym_BANG_TILDE] = ACTIONS(1609), - [anon_sym_bit_DASHand] = ACTIONS(1609), - [anon_sym_bit_DASHxor] = ACTIONS(1609), - [anon_sym_bit_DASHor] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(1609), - [anon_sym_not_DASHin] = ACTIONS(1609), - [anon_sym_starts_DASHwith] = ACTIONS(1609), - [anon_sym_ends_DASHwith] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1609), - [anon_sym_BANG_EQ] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1609), - [aux_sym_cmd_identifier_token41] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT] = ACTIONS(3757), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(3759), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(3), - }, - [1215] = { - [sym_comment] = STATE(1215), - [ts_builtin_sym_end] = ACTIONS(1675), - [anon_sym_STAR_STAR] = ACTIONS(1675), - [anon_sym_PLUS_PLUS] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1673), - [anon_sym_mod] = ACTIONS(1675), - [anon_sym_SLASH_SLASH] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_bit_DASHshl] = ACTIONS(1675), - [anon_sym_bit_DASHshr] = ACTIONS(1675), - [anon_sym_EQ_TILDE] = ACTIONS(1675), - [anon_sym_BANG_TILDE] = ACTIONS(1675), - [anon_sym_bit_DASHand] = ACTIONS(1675), - [anon_sym_bit_DASHxor] = ACTIONS(1675), - [anon_sym_bit_DASHor] = ACTIONS(1675), - [anon_sym_and] = ACTIONS(1675), - [anon_sym_xor] = ACTIONS(1675), - [anon_sym_or] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [anon_sym_not_DASHin] = ACTIONS(1675), - [anon_sym_starts_DASHwith] = ACTIONS(1675), - [anon_sym_ends_DASHwith] = ACTIONS(1675), - [anon_sym_EQ_EQ] = ACTIONS(1675), - [anon_sym_BANG_EQ] = ACTIONS(1675), - [anon_sym_LT] = ACTIONS(1673), - [anon_sym_LT_EQ] = ACTIONS(1675), - [anon_sym_GT] = ACTIONS(1673), - [anon_sym_GT_EQ] = ACTIONS(1675), - [aux_sym_cmd_identifier_token41] = ACTIONS(1673), - [sym__newline] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1673), - [anon_sym_err_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_GT_PIPE] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_in2] = ACTIONS(1673), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1673), - [anon_sym_xor2] = ACTIONS(1673), - [anon_sym_or2] = ACTIONS(1673), - [anon_sym_not_DASHin2] = ACTIONS(1673), - [anon_sym_starts_DASHwith2] = ACTIONS(1673), - [anon_sym_ends_DASHwith2] = ACTIONS(1673), - [anon_sym_EQ_EQ2] = ACTIONS(1673), - [anon_sym_BANG_EQ2] = ACTIONS(1673), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1673), - [anon_sym_GT_EQ2] = ACTIONS(1673), - [anon_sym_EQ_TILDE2] = ACTIONS(1673), - [anon_sym_BANG_TILDE2] = ACTIONS(1673), - [anon_sym_STAR_STAR2] = ACTIONS(1673), - [anon_sym_PLUS_PLUS2] = ACTIONS(1673), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1673), - [anon_sym_SLASH_SLASH2] = ACTIONS(1673), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1673), - [anon_sym_bit_DASHshr2] = ACTIONS(1673), - [anon_sym_bit_DASHand2] = ACTIONS(1673), - [anon_sym_bit_DASHxor2] = ACTIONS(1673), - [anon_sym_bit_DASHor2] = ACTIONS(1673), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [sym_filesize_unit] = ACTIONS(1673), - [sym_duration_unit] = ACTIONS(1675), - [anon_sym_POUND] = ACTIONS(3), - }, - [1216] = { - [sym_comment] = STATE(1216), - [anon_sym_STAR_STAR] = ACTIONS(1675), - [anon_sym_PLUS_PLUS] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1673), - [anon_sym_mod] = ACTIONS(1675), - [anon_sym_SLASH_SLASH] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_bit_DASHshl] = ACTIONS(1675), - [anon_sym_bit_DASHshr] = ACTIONS(1675), - [anon_sym_EQ_TILDE] = ACTIONS(1675), - [anon_sym_BANG_TILDE] = ACTIONS(1675), - [anon_sym_bit_DASHand] = ACTIONS(1675), - [anon_sym_bit_DASHxor] = ACTIONS(1675), - [anon_sym_bit_DASHor] = ACTIONS(1675), - [anon_sym_and] = ACTIONS(1675), - [anon_sym_xor] = ACTIONS(1675), - [anon_sym_or] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [anon_sym_not_DASHin] = ACTIONS(1675), - [anon_sym_starts_DASHwith] = ACTIONS(1675), - [anon_sym_ends_DASHwith] = ACTIONS(1675), - [anon_sym_EQ_EQ] = ACTIONS(1675), - [anon_sym_BANG_EQ] = ACTIONS(1675), - [anon_sym_LT] = ACTIONS(1673), - [anon_sym_LT_EQ] = ACTIONS(1675), - [anon_sym_GT] = ACTIONS(1673), - [anon_sym_GT_EQ] = ACTIONS(1675), - [aux_sym_cmd_identifier_token41] = ACTIONS(1673), - [sym__newline] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1673), - [anon_sym_err_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_GT_PIPE] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), - [anon_sym_RPAREN] = ACTIONS(1673), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_in2] = ACTIONS(1673), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1673), - [anon_sym_xor2] = ACTIONS(1673), - [anon_sym_or2] = ACTIONS(1673), - [anon_sym_not_DASHin2] = ACTIONS(1673), - [anon_sym_starts_DASHwith2] = ACTIONS(1673), - [anon_sym_ends_DASHwith2] = ACTIONS(1673), - [anon_sym_EQ_EQ2] = ACTIONS(1673), - [anon_sym_BANG_EQ2] = ACTIONS(1673), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1673), - [anon_sym_GT_EQ2] = ACTIONS(1673), - [anon_sym_EQ_TILDE2] = ACTIONS(1673), - [anon_sym_BANG_TILDE2] = ACTIONS(1673), - [anon_sym_STAR_STAR2] = ACTIONS(1673), - [anon_sym_PLUS_PLUS2] = ACTIONS(1673), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1673), - [anon_sym_SLASH_SLASH2] = ACTIONS(1673), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1673), - [anon_sym_bit_DASHshr2] = ACTIONS(1673), - [anon_sym_bit_DASHand2] = ACTIONS(1673), - [anon_sym_bit_DASHxor2] = ACTIONS(1673), - [anon_sym_bit_DASHor2] = ACTIONS(1673), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [sym_filesize_unit] = ACTIONS(1673), - [sym_duration_unit] = ACTIONS(1675), - [anon_sym_POUND] = ACTIONS(3), - }, - [1217] = { - [sym_comment] = STATE(1217), - [ts_builtin_sym_end] = ACTIONS(1623), - [anon_sym_STAR_STAR] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_SLASH] = ACTIONS(1621), - [anon_sym_mod] = ACTIONS(1623), - [anon_sym_SLASH_SLASH] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_bit_DASHshl] = ACTIONS(1623), - [anon_sym_bit_DASHshr] = ACTIONS(1623), - [anon_sym_EQ_TILDE] = ACTIONS(1623), - [anon_sym_BANG_TILDE] = ACTIONS(1623), - [anon_sym_bit_DASHand] = ACTIONS(1623), - [anon_sym_bit_DASHxor] = ACTIONS(1623), - [anon_sym_bit_DASHor] = ACTIONS(1623), - [anon_sym_and] = ACTIONS(1623), - [anon_sym_xor] = ACTIONS(1623), - [anon_sym_or] = ACTIONS(1623), - [anon_sym_in] = ACTIONS(1623), - [anon_sym_not_DASHin] = ACTIONS(1623), - [anon_sym_starts_DASHwith] = ACTIONS(1623), - [anon_sym_ends_DASHwith] = ACTIONS(1623), - [anon_sym_EQ_EQ] = ACTIONS(1623), - [anon_sym_BANG_EQ] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1621), - [anon_sym_LT_EQ] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1621), - [anon_sym_GT_EQ] = ACTIONS(1623), - [aux_sym_cmd_identifier_token41] = ACTIONS(1621), - [sym__newline] = ACTIONS(1621), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_PIPE] = ACTIONS(1621), - [anon_sym_err_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_GT_PIPE] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), - [anon_sym_GT2] = ACTIONS(1621), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_in2] = ACTIONS(1621), - [anon_sym_STAR2] = ACTIONS(1621), - [anon_sym_and2] = ACTIONS(1621), - [anon_sym_xor2] = ACTIONS(1621), - [anon_sym_or2] = ACTIONS(1621), - [anon_sym_not_DASHin2] = ACTIONS(1621), - [anon_sym_starts_DASHwith2] = ACTIONS(1621), - [anon_sym_ends_DASHwith2] = ACTIONS(1621), - [anon_sym_EQ_EQ2] = ACTIONS(1621), - [anon_sym_BANG_EQ2] = ACTIONS(1621), - [anon_sym_LT2] = ACTIONS(1621), - [anon_sym_LT_EQ2] = ACTIONS(1621), - [anon_sym_GT_EQ2] = ACTIONS(1621), - [anon_sym_EQ_TILDE2] = ACTIONS(1621), - [anon_sym_BANG_TILDE2] = ACTIONS(1621), - [anon_sym_STAR_STAR2] = ACTIONS(1621), - [anon_sym_PLUS_PLUS2] = ACTIONS(1621), - [anon_sym_SLASH2] = ACTIONS(1621), - [anon_sym_mod2] = ACTIONS(1621), - [anon_sym_SLASH_SLASH2] = ACTIONS(1621), - [anon_sym_PLUS2] = ACTIONS(1621), - [anon_sym_bit_DASHshl2] = ACTIONS(1621), - [anon_sym_bit_DASHshr2] = ACTIONS(1621), - [anon_sym_bit_DASHand2] = ACTIONS(1621), - [anon_sym_bit_DASHxor2] = ACTIONS(1621), - [anon_sym_bit_DASHor2] = ACTIONS(1621), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [sym_filesize_unit] = ACTIONS(1621), - [sym_duration_unit] = ACTIONS(1623), - [anon_sym_POUND] = ACTIONS(3), - }, - [1218] = { - [sym_comment] = STATE(1218), - [anon_sym_STAR_STAR] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1763), - [anon_sym_SLASH] = ACTIONS(1763), - [anon_sym_mod] = ACTIONS(1765), - [anon_sym_SLASH_SLASH] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_bit_DASHshl] = ACTIONS(1765), - [anon_sym_bit_DASHshr] = ACTIONS(1765), - [anon_sym_EQ_TILDE] = ACTIONS(1765), - [anon_sym_BANG_TILDE] = ACTIONS(1765), - [anon_sym_bit_DASHand] = ACTIONS(1765), - [anon_sym_bit_DASHxor] = ACTIONS(1765), - [anon_sym_bit_DASHor] = ACTIONS(1765), - [anon_sym_and] = ACTIONS(1765), - [anon_sym_xor] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), - [anon_sym_in] = ACTIONS(1765), - [anon_sym_not_DASHin] = ACTIONS(1765), - [anon_sym_starts_DASHwith] = ACTIONS(1765), - [anon_sym_ends_DASHwith] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1765), - [anon_sym_BANG_EQ] = ACTIONS(1765), - [anon_sym_LT] = ACTIONS(1763), - [anon_sym_LT_EQ] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1765), - [aux_sym_cmd_identifier_token41] = ACTIONS(1763), - [sym__newline] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_err_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_GT_PIPE] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), - [anon_sym_RPAREN] = ACTIONS(1763), - [anon_sym_GT2] = ACTIONS(1763), - [anon_sym_DASH2] = ACTIONS(1763), - [anon_sym_in2] = ACTIONS(1763), - [anon_sym_STAR2] = ACTIONS(1763), - [anon_sym_and2] = ACTIONS(1763), - [anon_sym_xor2] = ACTIONS(1763), - [anon_sym_or2] = ACTIONS(1763), - [anon_sym_not_DASHin2] = ACTIONS(1763), - [anon_sym_starts_DASHwith2] = ACTIONS(1763), - [anon_sym_ends_DASHwith2] = ACTIONS(1763), - [anon_sym_EQ_EQ2] = ACTIONS(1763), - [anon_sym_BANG_EQ2] = ACTIONS(1763), - [anon_sym_LT2] = ACTIONS(1763), - [anon_sym_LT_EQ2] = ACTIONS(1763), - [anon_sym_GT_EQ2] = ACTIONS(1763), - [anon_sym_EQ_TILDE2] = ACTIONS(1763), - [anon_sym_BANG_TILDE2] = ACTIONS(1763), - [anon_sym_STAR_STAR2] = ACTIONS(1763), - [anon_sym_PLUS_PLUS2] = ACTIONS(1763), - [anon_sym_SLASH2] = ACTIONS(1763), - [anon_sym_mod2] = ACTIONS(1763), - [anon_sym_SLASH_SLASH2] = ACTIONS(1763), - [anon_sym_PLUS2] = ACTIONS(1763), - [anon_sym_bit_DASHshl2] = ACTIONS(1763), - [anon_sym_bit_DASHshr2] = ACTIONS(1763), - [anon_sym_bit_DASHand2] = ACTIONS(1763), - [anon_sym_bit_DASHxor2] = ACTIONS(1763), - [anon_sym_bit_DASHor2] = ACTIONS(1763), - [anon_sym_DOT_DOT2] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), - [sym_filesize_unit] = ACTIONS(1763), - [sym_duration_unit] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(3), - }, - [1219] = { - [sym_expr_parenthesized] = STATE(550), - [sym_val_range] = STATE(740), - [sym__val_range] = STATE(7578), - [sym__val_range_with_end] = STATE(7427), - [sym__value] = STATE(740), - [sym_val_nothing] = STATE(758), - [sym_val_bool] = STATE(565), - [sym_val_variable] = STATE(531), - [sym_val_number] = STATE(758), - [sym__val_number_decimal] = STATE(363), - [sym__val_number] = STATE(753), - [sym_val_duration] = STATE(758), - [sym_val_filesize] = STATE(758), - [sym_val_binary] = STATE(758), - [sym_val_string] = STATE(758), - [sym__raw_str] = STATE(765), - [sym__str_double_quotes] = STATE(765), - [sym_val_interpolated] = STATE(758), - [sym__inter_single_quotes] = STATE(709), - [sym__inter_double_quotes] = STATE(710), - [sym_val_list] = STATE(758), - [sym_val_record] = STATE(758), - [sym_val_table] = STATE(758), - [sym_val_closure] = STATE(758), - [sym__unquoted_in_record] = STATE(593), - [sym__unquoted_in_record_with_expr] = STATE(740), - [sym__unquoted_anonymous_prefix] = STATE(7131), - [sym_comment] = STATE(1219), - [anon_sym_LBRACK] = ACTIONS(3761), - [anon_sym_LPAREN] = ACTIONS(3763), - [anon_sym_DOLLAR] = ACTIONS(3765), - [anon_sym_LBRACE] = ACTIONS(3767), - [anon_sym_DOT_DOT] = ACTIONS(3769), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3771), - [anon_sym_DOT_DOT_LT] = ACTIONS(3771), - [anon_sym_null] = ACTIONS(3773), - [anon_sym_true] = ACTIONS(3775), - [anon_sym_false] = ACTIONS(3775), - [aux_sym__val_number_decimal_token1] = ACTIONS(3777), - [aux_sym__val_number_decimal_token2] = ACTIONS(3779), - [aux_sym__val_number_decimal_token3] = ACTIONS(3781), - [aux_sym__val_number_decimal_token4] = ACTIONS(3783), - [aux_sym__val_number_token1] = ACTIONS(3785), - [aux_sym__val_number_token2] = ACTIONS(3785), - [aux_sym__val_number_token3] = ACTIONS(3785), - [aux_sym__val_number_token4] = ACTIONS(3787), - [aux_sym__val_number_token5] = ACTIONS(3787), - [aux_sym__val_number_token6] = ACTIONS(3787), - [anon_sym_0b] = ACTIONS(3789), - [anon_sym_0o] = ACTIONS(3791), - [anon_sym_0x] = ACTIONS(3791), - [sym_val_date] = ACTIONS(3793), - [anon_sym_DQUOTE] = ACTIONS(3795), - [sym__str_single_quotes] = ACTIONS(3797), - [sym__str_back_ticks] = ACTIONS(3797), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3799), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3801), - [anon_sym_err_GT] = ACTIONS(3743), - [anon_sym_out_GT] = ACTIONS(3743), - [anon_sym_e_GT] = ACTIONS(3743), - [anon_sym_o_GT] = ACTIONS(3743), - [anon_sym_err_PLUSout_GT] = ACTIONS(3743), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3743), - [anon_sym_o_PLUSe_GT] = ACTIONS(3743), - [anon_sym_e_PLUSo_GT] = ACTIONS(3743), - [anon_sym_err_GT_GT] = ACTIONS(3745), - [anon_sym_out_GT_GT] = ACTIONS(3745), - [anon_sym_e_GT_GT] = ACTIONS(3745), - [anon_sym_o_GT_GT] = ACTIONS(3745), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3745), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3745), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3745), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3745), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3803), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3805), - }, - [1220] = { - [sym_comment] = STATE(1220), - [ts_builtin_sym_end] = ACTIONS(1721), + [ts_builtin_sym_end] = ACTIONS(1719), [anon_sym_STAR_STAR] = ACTIONS(3049), [anon_sym_PLUS_PLUS] = ACTIONS(3049), [anon_sym_STAR] = ACTIONS(3051), @@ -195689,8467 +195134,8363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(3051), [anon_sym_GT_EQ] = ACTIONS(3049), [aux_sym_cmd_identifier_token41] = ACTIONS(3053), - [sym__newline] = ACTIONS(1709), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_PIPE] = ACTIONS(1709), - [anon_sym_err_GT_PIPE] = ACTIONS(1709), - [anon_sym_out_GT_PIPE] = ACTIONS(1709), - [anon_sym_e_GT_PIPE] = ACTIONS(1709), - [anon_sym_o_GT_PIPE] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), - [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_GT2] = ACTIONS(1709), - [anon_sym_DASH2] = ACTIONS(1709), - [anon_sym_in2] = ACTIONS(1709), - [anon_sym_STAR2] = ACTIONS(1709), - [anon_sym_and2] = ACTIONS(1709), - [anon_sym_xor2] = ACTIONS(1709), - [anon_sym_or2] = ACTIONS(1709), - [anon_sym_not_DASHin2] = ACTIONS(1709), - [anon_sym_starts_DASHwith2] = ACTIONS(1709), - [anon_sym_ends_DASHwith2] = ACTIONS(1709), - [anon_sym_EQ_EQ2] = ACTIONS(1709), - [anon_sym_BANG_EQ2] = ACTIONS(1709), - [anon_sym_LT2] = ACTIONS(1709), - [anon_sym_LT_EQ2] = ACTIONS(1709), - [anon_sym_GT_EQ2] = ACTIONS(1709), - [anon_sym_EQ_TILDE2] = ACTIONS(1709), - [anon_sym_BANG_TILDE2] = ACTIONS(1709), - [anon_sym_STAR_STAR2] = ACTIONS(1709), - [anon_sym_PLUS_PLUS2] = ACTIONS(1709), - [anon_sym_SLASH2] = ACTIONS(1709), - [anon_sym_mod2] = ACTIONS(1709), - [anon_sym_SLASH_SLASH2] = ACTIONS(1709), - [anon_sym_PLUS2] = ACTIONS(1709), - [anon_sym_bit_DASHshl2] = ACTIONS(1709), - [anon_sym_bit_DASHshr2] = ACTIONS(1709), - [anon_sym_bit_DASHand2] = ACTIONS(1709), - [anon_sym_bit_DASHxor2] = ACTIONS(1709), - [anon_sym_bit_DASHor2] = ACTIONS(1709), + [sym__newline] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_err_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_GT_PIPE] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), + [anon_sym_GT2] = ACTIONS(1707), + [anon_sym_DASH2] = ACTIONS(1707), + [anon_sym_in2] = ACTIONS(1707), + [anon_sym_STAR2] = ACTIONS(1707), + [anon_sym_and2] = ACTIONS(1707), + [anon_sym_xor2] = ACTIONS(1707), + [anon_sym_or2] = ACTIONS(1707), + [anon_sym_not_DASHin2] = ACTIONS(1707), + [anon_sym_starts_DASHwith2] = ACTIONS(1707), + [anon_sym_ends_DASHwith2] = ACTIONS(1707), + [anon_sym_EQ_EQ2] = ACTIONS(1707), + [anon_sym_BANG_EQ2] = ACTIONS(1707), + [anon_sym_LT2] = ACTIONS(1707), + [anon_sym_LT_EQ2] = ACTIONS(1707), + [anon_sym_GT_EQ2] = ACTIONS(1707), + [anon_sym_EQ_TILDE2] = ACTIONS(1707), + [anon_sym_BANG_TILDE2] = ACTIONS(1707), + [anon_sym_STAR_STAR2] = ACTIONS(1707), + [anon_sym_PLUS_PLUS2] = ACTIONS(1707), + [anon_sym_SLASH2] = ACTIONS(1707), + [anon_sym_mod2] = ACTIONS(1707), + [anon_sym_SLASH_SLASH2] = ACTIONS(1707), + [anon_sym_PLUS2] = ACTIONS(1707), + [anon_sym_bit_DASHshl2] = ACTIONS(1707), + [anon_sym_bit_DASHshr2] = ACTIONS(1707), + [anon_sym_bit_DASHand2] = ACTIONS(1707), + [anon_sym_bit_DASHxor2] = ACTIONS(1707), + [anon_sym_bit_DASHor2] = ACTIONS(1707), [anon_sym_DOT_DOT2] = ACTIONS(3055), [anon_sym_DOT_DOT_EQ2] = ACTIONS(3057), [anon_sym_DOT_DOT_LT2] = ACTIONS(3057), - [sym_filesize_unit] = ACTIONS(3807), - [sym_duration_unit] = ACTIONS(3809), + [sym_filesize_unit] = ACTIONS(3771), + [sym_duration_unit] = ACTIONS(3773), [anon_sym_POUND] = ACTIONS(3), }, - [1221] = { - [sym_expr_parenthesized] = STATE(551), - [sym_val_range] = STATE(743), - [sym__val_range] = STATE(7578), - [sym__val_range_with_end] = STATE(7427), - [sym__value] = STATE(743), - [sym_val_nothing] = STATE(758), - [sym_val_bool] = STATE(565), - [sym_val_variable] = STATE(531), - [sym_val_number] = STATE(758), - [sym__val_number_decimal] = STATE(363), - [sym__val_number] = STATE(753), - [sym_val_duration] = STATE(758), - [sym_val_filesize] = STATE(758), - [sym_val_binary] = STATE(758), - [sym_val_string] = STATE(758), - [sym__raw_str] = STATE(765), - [sym__str_double_quotes] = STATE(765), - [sym_val_interpolated] = STATE(758), - [sym__inter_single_quotes] = STATE(709), - [sym__inter_double_quotes] = STATE(710), - [sym_val_list] = STATE(758), - [sym_val_record] = STATE(758), - [sym_val_table] = STATE(758), - [sym_val_closure] = STATE(758), - [sym__unquoted_in_record] = STATE(595), - [sym__unquoted_in_record_with_expr] = STATE(743), - [sym__unquoted_anonymous_prefix] = STATE(7131), - [sym_comment] = STATE(1221), - [anon_sym_LBRACK] = ACTIONS(3761), - [anon_sym_LPAREN] = ACTIONS(3763), - [anon_sym_DOLLAR] = ACTIONS(3765), - [anon_sym_LBRACE] = ACTIONS(3767), - [anon_sym_DOT_DOT] = ACTIONS(3769), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3771), - [anon_sym_DOT_DOT_LT] = ACTIONS(3771), - [anon_sym_null] = ACTIONS(3773), - [anon_sym_true] = ACTIONS(3775), - [anon_sym_false] = ACTIONS(3775), - [aux_sym__val_number_decimal_token1] = ACTIONS(3777), - [aux_sym__val_number_decimal_token2] = ACTIONS(3779), - [aux_sym__val_number_decimal_token3] = ACTIONS(3781), - [aux_sym__val_number_decimal_token4] = ACTIONS(3783), - [aux_sym__val_number_token1] = ACTIONS(3785), - [aux_sym__val_number_token2] = ACTIONS(3785), - [aux_sym__val_number_token3] = ACTIONS(3785), - [aux_sym__val_number_token4] = ACTIONS(3787), - [aux_sym__val_number_token5] = ACTIONS(3787), - [aux_sym__val_number_token6] = ACTIONS(3787), - [anon_sym_0b] = ACTIONS(3789), - [anon_sym_0o] = ACTIONS(3791), - [anon_sym_0x] = ACTIONS(3791), - [sym_val_date] = ACTIONS(3793), - [anon_sym_DQUOTE] = ACTIONS(3795), - [sym__str_single_quotes] = ACTIONS(3797), - [sym__str_back_ticks] = ACTIONS(3797), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3799), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3801), - [anon_sym_err_GT] = ACTIONS(3743), - [anon_sym_out_GT] = ACTIONS(3743), - [anon_sym_e_GT] = ACTIONS(3743), - [anon_sym_o_GT] = ACTIONS(3743), - [anon_sym_err_PLUSout_GT] = ACTIONS(3743), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3743), - [anon_sym_o_PLUSe_GT] = ACTIONS(3743), - [anon_sym_e_PLUSo_GT] = ACTIONS(3743), - [anon_sym_err_GT_GT] = ACTIONS(3745), - [anon_sym_out_GT_GT] = ACTIONS(3745), - [anon_sym_e_GT_GT] = ACTIONS(3745), - [anon_sym_o_GT_GT] = ACTIONS(3745), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3745), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3745), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3745), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3745), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3803), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3805), + [1210] = { + [sym_comment] = STATE(1210), + [anon_sym_STAR_STAR] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1681), + [anon_sym_SLASH] = ACTIONS(1681), + [anon_sym_mod] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_bit_DASHshl] = ACTIONS(1683), + [anon_sym_bit_DASHshr] = ACTIONS(1683), + [anon_sym_EQ_TILDE] = ACTIONS(1683), + [anon_sym_BANG_TILDE] = ACTIONS(1683), + [anon_sym_bit_DASHand] = ACTIONS(1683), + [anon_sym_bit_DASHxor] = ACTIONS(1683), + [anon_sym_bit_DASHor] = ACTIONS(1683), + [anon_sym_and] = ACTIONS(1683), + [anon_sym_xor] = ACTIONS(1683), + [anon_sym_or] = ACTIONS(1683), + [anon_sym_in] = ACTIONS(1683), + [anon_sym_not_DASHin] = ACTIONS(1683), + [anon_sym_starts_DASHwith] = ACTIONS(1683), + [anon_sym_ends_DASHwith] = ACTIONS(1683), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(1683), + [aux_sym_cmd_identifier_token41] = ACTIONS(1681), + [sym__newline] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_err_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_GT_PIPE] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), + [anon_sym_RPAREN] = ACTIONS(1681), + [anon_sym_GT2] = ACTIONS(1681), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_in2] = ACTIONS(1681), + [anon_sym_STAR2] = ACTIONS(1681), + [anon_sym_and2] = ACTIONS(1681), + [anon_sym_xor2] = ACTIONS(1681), + [anon_sym_or2] = ACTIONS(1681), + [anon_sym_not_DASHin2] = ACTIONS(1681), + [anon_sym_starts_DASHwith2] = ACTIONS(1681), + [anon_sym_ends_DASHwith2] = ACTIONS(1681), + [anon_sym_EQ_EQ2] = ACTIONS(1681), + [anon_sym_BANG_EQ2] = ACTIONS(1681), + [anon_sym_LT2] = ACTIONS(1681), + [anon_sym_LT_EQ2] = ACTIONS(1681), + [anon_sym_GT_EQ2] = ACTIONS(1681), + [anon_sym_EQ_TILDE2] = ACTIONS(1681), + [anon_sym_BANG_TILDE2] = ACTIONS(1681), + [anon_sym_STAR_STAR2] = ACTIONS(1681), + [anon_sym_PLUS_PLUS2] = ACTIONS(1681), + [anon_sym_SLASH2] = ACTIONS(1681), + [anon_sym_mod2] = ACTIONS(1681), + [anon_sym_SLASH_SLASH2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1681), + [anon_sym_bit_DASHshl2] = ACTIONS(1681), + [anon_sym_bit_DASHshr2] = ACTIONS(1681), + [anon_sym_bit_DASHand2] = ACTIONS(1681), + [anon_sym_bit_DASHxor2] = ACTIONS(1681), + [anon_sym_bit_DASHor2] = ACTIONS(1681), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [sym_filesize_unit] = ACTIONS(1681), + [sym_duration_unit] = ACTIONS(1683), + [anon_sym_POUND] = ACTIONS(3), }, - [1222] = { - [sym_comment] = STATE(1222), - [anon_sym_STAR_STAR] = ACTIONS(1675), - [anon_sym_PLUS_PLUS] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1673), - [anon_sym_mod] = ACTIONS(1675), - [anon_sym_SLASH_SLASH] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_bit_DASHshl] = ACTIONS(1675), - [anon_sym_bit_DASHshr] = ACTIONS(1675), - [anon_sym_EQ_TILDE] = ACTIONS(1675), - [anon_sym_BANG_TILDE] = ACTIONS(1675), - [anon_sym_bit_DASHand] = ACTIONS(1675), - [anon_sym_bit_DASHxor] = ACTIONS(1675), - [anon_sym_bit_DASHor] = ACTIONS(1675), - [anon_sym_and] = ACTIONS(1675), - [anon_sym_xor] = ACTIONS(1675), - [anon_sym_or] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [anon_sym_not_DASHin] = ACTIONS(1675), - [anon_sym_starts_DASHwith] = ACTIONS(1675), - [anon_sym_ends_DASHwith] = ACTIONS(1675), - [anon_sym_EQ_EQ] = ACTIONS(1675), - [anon_sym_BANG_EQ] = ACTIONS(1675), - [anon_sym_LT] = ACTIONS(1673), - [anon_sym_LT_EQ] = ACTIONS(1675), - [anon_sym_GT] = ACTIONS(1673), - [anon_sym_GT_EQ] = ACTIONS(1675), - [aux_sym_cmd_identifier_token41] = ACTIONS(1673), - [sym__newline] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1673), - [anon_sym_err_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_GT_PIPE] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_in2] = ACTIONS(1673), - [anon_sym_RBRACE] = ACTIONS(1673), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1673), - [anon_sym_xor2] = ACTIONS(1673), - [anon_sym_or2] = ACTIONS(1673), - [anon_sym_not_DASHin2] = ACTIONS(1673), - [anon_sym_starts_DASHwith2] = ACTIONS(1673), - [anon_sym_ends_DASHwith2] = ACTIONS(1673), - [anon_sym_EQ_EQ2] = ACTIONS(1673), - [anon_sym_BANG_EQ2] = ACTIONS(1673), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1673), - [anon_sym_GT_EQ2] = ACTIONS(1673), - [anon_sym_EQ_TILDE2] = ACTIONS(1673), - [anon_sym_BANG_TILDE2] = ACTIONS(1673), - [anon_sym_STAR_STAR2] = ACTIONS(1673), - [anon_sym_PLUS_PLUS2] = ACTIONS(1673), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1673), - [anon_sym_SLASH_SLASH2] = ACTIONS(1673), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1673), - [anon_sym_bit_DASHshr2] = ACTIONS(1673), - [anon_sym_bit_DASHand2] = ACTIONS(1673), - [anon_sym_bit_DASHxor2] = ACTIONS(1673), - [anon_sym_bit_DASHor2] = ACTIONS(1673), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [sym_filesize_unit] = ACTIONS(1673), - [sym_duration_unit] = ACTIONS(1675), + [1211] = { + [sym_comment] = STATE(1211), + [anon_sym_STAR_STAR] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1761), + [anon_sym_mod] = ACTIONS(1763), + [anon_sym_SLASH_SLASH] = ACTIONS(1763), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_bit_DASHshl] = ACTIONS(1763), + [anon_sym_bit_DASHshr] = ACTIONS(1763), + [anon_sym_EQ_TILDE] = ACTIONS(1763), + [anon_sym_BANG_TILDE] = ACTIONS(1763), + [anon_sym_bit_DASHand] = ACTIONS(1763), + [anon_sym_bit_DASHxor] = ACTIONS(1763), + [anon_sym_bit_DASHor] = ACTIONS(1763), + [anon_sym_and] = ACTIONS(1763), + [anon_sym_xor] = ACTIONS(1763), + [anon_sym_or] = ACTIONS(1763), + [anon_sym_in] = ACTIONS(1763), + [anon_sym_not_DASHin] = ACTIONS(1763), + [anon_sym_starts_DASHwith] = ACTIONS(1763), + [anon_sym_ends_DASHwith] = ACTIONS(1763), + [anon_sym_EQ_EQ] = ACTIONS(1763), + [anon_sym_BANG_EQ] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1761), + [anon_sym_LT_EQ] = ACTIONS(1763), + [anon_sym_GT] = ACTIONS(1761), + [anon_sym_GT_EQ] = ACTIONS(1763), + [aux_sym_cmd_identifier_token41] = ACTIONS(1761), + [sym__newline] = ACTIONS(1761), + [anon_sym_SEMI] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1761), + [anon_sym_err_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_GT_PIPE] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), + [anon_sym_RPAREN] = ACTIONS(1761), + [anon_sym_GT2] = ACTIONS(1761), + [anon_sym_DASH2] = ACTIONS(1761), + [anon_sym_in2] = ACTIONS(1761), + [anon_sym_STAR2] = ACTIONS(1761), + [anon_sym_and2] = ACTIONS(1761), + [anon_sym_xor2] = ACTIONS(1761), + [anon_sym_or2] = ACTIONS(1761), + [anon_sym_not_DASHin2] = ACTIONS(1761), + [anon_sym_starts_DASHwith2] = ACTIONS(1761), + [anon_sym_ends_DASHwith2] = ACTIONS(1761), + [anon_sym_EQ_EQ2] = ACTIONS(1761), + [anon_sym_BANG_EQ2] = ACTIONS(1761), + [anon_sym_LT2] = ACTIONS(1761), + [anon_sym_LT_EQ2] = ACTIONS(1761), + [anon_sym_GT_EQ2] = ACTIONS(1761), + [anon_sym_EQ_TILDE2] = ACTIONS(1761), + [anon_sym_BANG_TILDE2] = ACTIONS(1761), + [anon_sym_STAR_STAR2] = ACTIONS(1761), + [anon_sym_PLUS_PLUS2] = ACTIONS(1761), + [anon_sym_SLASH2] = ACTIONS(1761), + [anon_sym_mod2] = ACTIONS(1761), + [anon_sym_SLASH_SLASH2] = ACTIONS(1761), + [anon_sym_PLUS2] = ACTIONS(1761), + [anon_sym_bit_DASHshl2] = ACTIONS(1761), + [anon_sym_bit_DASHshr2] = ACTIONS(1761), + [anon_sym_bit_DASHand2] = ACTIONS(1761), + [anon_sym_bit_DASHxor2] = ACTIONS(1761), + [anon_sym_bit_DASHor2] = ACTIONS(1761), + [anon_sym_DOT_DOT2] = ACTIONS(1761), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), + [sym_filesize_unit] = ACTIONS(1761), + [sym_duration_unit] = ACTIONS(1763), [anon_sym_POUND] = ACTIONS(3), }, - [1223] = { - [sym_expr_parenthesized] = STATE(6150), - [sym_val_range] = STATE(7461), - [sym__val_range] = STATE(7626), - [sym__val_range_with_end] = STATE(7469), - [sym__value] = STATE(7461), - [sym_val_nothing] = STATE(7097), - [sym_val_bool] = STATE(6741), - [sym_val_variable] = STATE(5989), - [sym_val_number] = STATE(7097), - [sym__val_number_decimal] = STATE(5343), - [sym__val_number] = STATE(7130), - [sym_val_duration] = STATE(7097), - [sym_val_filesize] = STATE(7097), - [sym_val_binary] = STATE(7097), - [sym_val_string] = STATE(7097), - [sym__raw_str] = STATE(5497), - [sym__str_double_quotes] = STATE(5497), - [sym_val_interpolated] = STATE(7097), - [sym__inter_single_quotes] = STATE(7020), - [sym__inter_double_quotes] = STATE(7027), - [sym_val_list] = STATE(7097), - [sym_val_record] = STATE(7097), - [sym_val_table] = STATE(7097), - [sym_val_closure] = STATE(7097), - [sym__unquoted_in_record] = STATE(6667), - [sym__unquoted_in_record_with_expr] = STATE(7461), - [sym__unquoted_anonymous_prefix] = STATE(7182), - [sym_comment] = STATE(1223), - [anon_sym_LBRACK] = ACTIONS(3141), + [1212] = { + [sym_expr_parenthesized] = STATE(6041), + [sym_val_range] = STATE(7687), + [sym__val_range] = STATE(7792), + [sym__val_range_with_end] = STATE(7576), + [sym__value] = STATE(7687), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6259), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5293), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7142), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_record] = STATE(6805), + [sym__unquoted_in_record_with_expr] = STATE(7687), + [sym__unquoted_anonymous_prefix] = STATE(7272), + [sym_comment] = STATE(1212), + [anon_sym_LBRACK] = ACTIONS(3137), [anon_sym_LPAREN] = ACTIONS(3095), [anon_sym_DOLLAR] = ACTIONS(3097), [anon_sym_LBRACE] = ACTIONS(3099), - [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), + [anon_sym_DOT_DOT] = ACTIONS(3775), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3777), + [anon_sym_DOT_DOT_LT] = ACTIONS(3777), + [anon_sym_null] = ACTIONS(3779), + [anon_sym_true] = ACTIONS(3781), + [anon_sym_false] = ACTIONS(3781), + [aux_sym__val_number_decimal_token1] = ACTIONS(3783), + [aux_sym__val_number_decimal_token2] = ACTIONS(3785), + [aux_sym__val_number_decimal_token3] = ACTIONS(3787), + [aux_sym__val_number_decimal_token4] = ACTIONS(3789), [aux_sym__val_number_token1] = ACTIONS(3117), [aux_sym__val_number_token2] = ACTIONS(3117), [aux_sym__val_number_token3] = ACTIONS(3117), - [aux_sym__val_number_token4] = ACTIONS(3739), - [aux_sym__val_number_token5] = ACTIONS(3739), - [aux_sym__val_number_token6] = ACTIONS(3739), + [aux_sym__val_number_token4] = ACTIONS(3791), + [aux_sym__val_number_token5] = ACTIONS(3791), + [aux_sym__val_number_token6] = ACTIONS(3791), [anon_sym_0b] = ACTIONS(3121), [anon_sym_0o] = ACTIONS(3123), [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3741), + [sym_val_date] = ACTIONS(3793), [anon_sym_DQUOTE] = ACTIONS(3127), [sym__str_single_quotes] = ACTIONS(3129), [sym__str_back_ticks] = ACTIONS(3129), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2586), - [anon_sym_err_GT] = ACTIONS(3743), - [anon_sym_out_GT] = ACTIONS(3743), - [anon_sym_e_GT] = ACTIONS(3743), - [anon_sym_o_GT] = ACTIONS(3743), - [anon_sym_err_PLUSout_GT] = ACTIONS(3743), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3743), - [anon_sym_o_PLUSe_GT] = ACTIONS(3743), - [anon_sym_e_PLUSo_GT] = ACTIONS(3743), - [anon_sym_err_GT_GT] = ACTIONS(3745), - [anon_sym_out_GT_GT] = ACTIONS(3745), - [anon_sym_e_GT_GT] = ACTIONS(3745), - [anon_sym_o_GT_GT] = ACTIONS(3745), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3745), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3745), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3745), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3745), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3747), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_err_GT] = ACTIONS(3759), + [anon_sym_out_GT] = ACTIONS(3759), + [anon_sym_e_GT] = ACTIONS(3759), + [anon_sym_o_GT] = ACTIONS(3759), + [anon_sym_err_PLUSout_GT] = ACTIONS(3759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3759), + [anon_sym_o_PLUSe_GT] = ACTIONS(3759), + [anon_sym_e_PLUSo_GT] = ACTIONS(3759), + [anon_sym_err_GT_GT] = ACTIONS(3761), + [anon_sym_out_GT_GT] = ACTIONS(3761), + [anon_sym_e_GT_GT] = ACTIONS(3761), + [anon_sym_o_GT_GT] = ACTIONS(3761), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3761), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3761), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3761), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3761), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3795), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(3133), }, - [1224] = { - [sym_expr_parenthesized] = STATE(501), - [sym_val_range] = STATE(670), - [sym__val_range] = STATE(7571), - [sym__val_range_with_end] = STATE(7484), - [sym__value] = STATE(670), + [1213] = { + [sym_comment] = STATE(1213), + [ts_builtin_sym_end] = ACTIONS(1683), + [anon_sym_STAR_STAR] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1681), + [anon_sym_SLASH] = ACTIONS(1681), + [anon_sym_mod] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_bit_DASHshl] = ACTIONS(1683), + [anon_sym_bit_DASHshr] = ACTIONS(1683), + [anon_sym_EQ_TILDE] = ACTIONS(1683), + [anon_sym_BANG_TILDE] = ACTIONS(1683), + [anon_sym_bit_DASHand] = ACTIONS(1683), + [anon_sym_bit_DASHxor] = ACTIONS(1683), + [anon_sym_bit_DASHor] = ACTIONS(1683), + [anon_sym_and] = ACTIONS(1683), + [anon_sym_xor] = ACTIONS(1683), + [anon_sym_or] = ACTIONS(1683), + [anon_sym_in] = ACTIONS(1683), + [anon_sym_not_DASHin] = ACTIONS(1683), + [anon_sym_starts_DASHwith] = ACTIONS(1683), + [anon_sym_ends_DASHwith] = ACTIONS(1683), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(1683), + [aux_sym_cmd_identifier_token41] = ACTIONS(1681), + [sym__newline] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_err_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_GT_PIPE] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), + [anon_sym_GT2] = ACTIONS(1681), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_in2] = ACTIONS(1681), + [anon_sym_STAR2] = ACTIONS(1681), + [anon_sym_and2] = ACTIONS(1681), + [anon_sym_xor2] = ACTIONS(1681), + [anon_sym_or2] = ACTIONS(1681), + [anon_sym_not_DASHin2] = ACTIONS(1681), + [anon_sym_starts_DASHwith2] = ACTIONS(1681), + [anon_sym_ends_DASHwith2] = ACTIONS(1681), + [anon_sym_EQ_EQ2] = ACTIONS(1681), + [anon_sym_BANG_EQ2] = ACTIONS(1681), + [anon_sym_LT2] = ACTIONS(1681), + [anon_sym_LT_EQ2] = ACTIONS(1681), + [anon_sym_GT_EQ2] = ACTIONS(1681), + [anon_sym_EQ_TILDE2] = ACTIONS(1681), + [anon_sym_BANG_TILDE2] = ACTIONS(1681), + [anon_sym_STAR_STAR2] = ACTIONS(1681), + [anon_sym_PLUS_PLUS2] = ACTIONS(1681), + [anon_sym_SLASH2] = ACTIONS(1681), + [anon_sym_mod2] = ACTIONS(1681), + [anon_sym_SLASH_SLASH2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1681), + [anon_sym_bit_DASHshl2] = ACTIONS(1681), + [anon_sym_bit_DASHshr2] = ACTIONS(1681), + [anon_sym_bit_DASHand2] = ACTIONS(1681), + [anon_sym_bit_DASHxor2] = ACTIONS(1681), + [anon_sym_bit_DASHor2] = ACTIONS(1681), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [sym_filesize_unit] = ACTIONS(1681), + [sym_duration_unit] = ACTIONS(1683), + [anon_sym_POUND] = ACTIONS(3), + }, + [1214] = { + [sym_comment] = STATE(1214), + [anon_sym_STAR_STAR] = ACTIONS(3071), + [anon_sym_PLUS_PLUS] = ACTIONS(3071), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_SLASH] = ACTIONS(3073), + [anon_sym_mod] = ACTIONS(3071), + [anon_sym_SLASH_SLASH] = ACTIONS(3071), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_DASH] = ACTIONS(3071), + [anon_sym_bit_DASHshl] = ACTIONS(3071), + [anon_sym_bit_DASHshr] = ACTIONS(3071), + [anon_sym_EQ_TILDE] = ACTIONS(3071), + [anon_sym_BANG_TILDE] = ACTIONS(3071), + [anon_sym_bit_DASHand] = ACTIONS(3071), + [anon_sym_bit_DASHxor] = ACTIONS(3071), + [anon_sym_bit_DASHor] = ACTIONS(3071), + [anon_sym_and] = ACTIONS(3071), + [anon_sym_xor] = ACTIONS(3071), + [anon_sym_or] = ACTIONS(3071), + [anon_sym_in] = ACTIONS(3071), + [anon_sym_not_DASHin] = ACTIONS(3071), + [anon_sym_starts_DASHwith] = ACTIONS(3071), + [anon_sym_ends_DASHwith] = ACTIONS(3071), + [anon_sym_EQ_EQ] = ACTIONS(3071), + [anon_sym_BANG_EQ] = ACTIONS(3071), + [anon_sym_LT] = ACTIONS(3073), + [anon_sym_LT_EQ] = ACTIONS(3071), + [anon_sym_GT] = ACTIONS(3073), + [anon_sym_GT_EQ] = ACTIONS(3071), + [aux_sym_cmd_identifier_token41] = ACTIONS(3075), + [sym__newline] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_err_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_GT_PIPE] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), + [anon_sym_RPAREN] = ACTIONS(1707), + [anon_sym_GT2] = ACTIONS(1707), + [anon_sym_DASH2] = ACTIONS(1707), + [anon_sym_in2] = ACTIONS(1707), + [anon_sym_STAR2] = ACTIONS(1707), + [anon_sym_and2] = ACTIONS(1707), + [anon_sym_xor2] = ACTIONS(1707), + [anon_sym_or2] = ACTIONS(1707), + [anon_sym_not_DASHin2] = ACTIONS(1707), + [anon_sym_starts_DASHwith2] = ACTIONS(1707), + [anon_sym_ends_DASHwith2] = ACTIONS(1707), + [anon_sym_EQ_EQ2] = ACTIONS(1707), + [anon_sym_BANG_EQ2] = ACTIONS(1707), + [anon_sym_LT2] = ACTIONS(1707), + [anon_sym_LT_EQ2] = ACTIONS(1707), + [anon_sym_GT_EQ2] = ACTIONS(1707), + [anon_sym_EQ_TILDE2] = ACTIONS(1707), + [anon_sym_BANG_TILDE2] = ACTIONS(1707), + [anon_sym_STAR_STAR2] = ACTIONS(1707), + [anon_sym_PLUS_PLUS2] = ACTIONS(1707), + [anon_sym_SLASH2] = ACTIONS(1707), + [anon_sym_mod2] = ACTIONS(1707), + [anon_sym_SLASH_SLASH2] = ACTIONS(1707), + [anon_sym_PLUS2] = ACTIONS(1707), + [anon_sym_bit_DASHshl2] = ACTIONS(1707), + [anon_sym_bit_DASHshr2] = ACTIONS(1707), + [anon_sym_bit_DASHand2] = ACTIONS(1707), + [anon_sym_bit_DASHxor2] = ACTIONS(1707), + [anon_sym_bit_DASHor2] = ACTIONS(1707), + [anon_sym_DOT_DOT2] = ACTIONS(2900), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2902), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2902), + [sym_filesize_unit] = ACTIONS(3797), + [sym_duration_unit] = ACTIONS(3799), + [anon_sym_POUND] = ACTIONS(3), + }, + [1215] = { + [sym_comment] = STATE(1215), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_bit_DASHshl] = ACTIONS(1575), + [anon_sym_bit_DASHshr] = ACTIONS(1575), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_BANG_TILDE] = ACTIONS(1575), + [anon_sym_bit_DASHand] = ACTIONS(1575), + [anon_sym_bit_DASHxor] = ACTIONS(1575), + [anon_sym_bit_DASHor] = ACTIONS(1575), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_not_DASHin] = ACTIONS(1575), + [anon_sym_starts_DASHwith] = ACTIONS(1575), + [anon_sym_ends_DASHwith] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1575), + [aux_sym_cmd_identifier_token41] = ACTIONS(1573), + [sym__newline] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_err_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_GT_PIPE] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_RBRACE] = ACTIONS(1573), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1573), + [anon_sym_xor2] = ACTIONS(1573), + [anon_sym_or2] = ACTIONS(1573), + [anon_sym_not_DASHin2] = ACTIONS(1573), + [anon_sym_starts_DASHwith2] = ACTIONS(1573), + [anon_sym_ends_DASHwith2] = ACTIONS(1573), + [anon_sym_EQ_EQ2] = ACTIONS(1573), + [anon_sym_BANG_EQ2] = ACTIONS(1573), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1573), + [anon_sym_GT_EQ2] = ACTIONS(1573), + [anon_sym_EQ_TILDE2] = ACTIONS(1573), + [anon_sym_BANG_TILDE2] = ACTIONS(1573), + [anon_sym_STAR_STAR2] = ACTIONS(1573), + [anon_sym_PLUS_PLUS2] = ACTIONS(1573), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1573), + [anon_sym_SLASH_SLASH2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1573), + [anon_sym_bit_DASHshr2] = ACTIONS(1573), + [anon_sym_bit_DASHand2] = ACTIONS(1573), + [anon_sym_bit_DASHxor2] = ACTIONS(1573), + [anon_sym_bit_DASHor2] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_POUND] = ACTIONS(3), + }, + [1216] = { + [sym_comment] = STATE(1216), + [ts_builtin_sym_end] = ACTIONS(1763), + [anon_sym_STAR_STAR] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1761), + [anon_sym_mod] = ACTIONS(1763), + [anon_sym_SLASH_SLASH] = ACTIONS(1763), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_bit_DASHshl] = ACTIONS(1763), + [anon_sym_bit_DASHshr] = ACTIONS(1763), + [anon_sym_EQ_TILDE] = ACTIONS(1763), + [anon_sym_BANG_TILDE] = ACTIONS(1763), + [anon_sym_bit_DASHand] = ACTIONS(1763), + [anon_sym_bit_DASHxor] = ACTIONS(1763), + [anon_sym_bit_DASHor] = ACTIONS(1763), + [anon_sym_and] = ACTIONS(1763), + [anon_sym_xor] = ACTIONS(1763), + [anon_sym_or] = ACTIONS(1763), + [anon_sym_in] = ACTIONS(1763), + [anon_sym_not_DASHin] = ACTIONS(1763), + [anon_sym_starts_DASHwith] = ACTIONS(1763), + [anon_sym_ends_DASHwith] = ACTIONS(1763), + [anon_sym_EQ_EQ] = ACTIONS(1763), + [anon_sym_BANG_EQ] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1761), + [anon_sym_LT_EQ] = ACTIONS(1763), + [anon_sym_GT] = ACTIONS(1761), + [anon_sym_GT_EQ] = ACTIONS(1763), + [aux_sym_cmd_identifier_token41] = ACTIONS(1761), + [sym__newline] = ACTIONS(1761), + [anon_sym_SEMI] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1761), + [anon_sym_err_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_GT_PIPE] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), + [anon_sym_GT2] = ACTIONS(1761), + [anon_sym_DASH2] = ACTIONS(1761), + [anon_sym_in2] = ACTIONS(1761), + [anon_sym_STAR2] = ACTIONS(1761), + [anon_sym_and2] = ACTIONS(1761), + [anon_sym_xor2] = ACTIONS(1761), + [anon_sym_or2] = ACTIONS(1761), + [anon_sym_not_DASHin2] = ACTIONS(1761), + [anon_sym_starts_DASHwith2] = ACTIONS(1761), + [anon_sym_ends_DASHwith2] = ACTIONS(1761), + [anon_sym_EQ_EQ2] = ACTIONS(1761), + [anon_sym_BANG_EQ2] = ACTIONS(1761), + [anon_sym_LT2] = ACTIONS(1761), + [anon_sym_LT_EQ2] = ACTIONS(1761), + [anon_sym_GT_EQ2] = ACTIONS(1761), + [anon_sym_EQ_TILDE2] = ACTIONS(1761), + [anon_sym_BANG_TILDE2] = ACTIONS(1761), + [anon_sym_STAR_STAR2] = ACTIONS(1761), + [anon_sym_PLUS_PLUS2] = ACTIONS(1761), + [anon_sym_SLASH2] = ACTIONS(1761), + [anon_sym_mod2] = ACTIONS(1761), + [anon_sym_SLASH_SLASH2] = ACTIONS(1761), + [anon_sym_PLUS2] = ACTIONS(1761), + [anon_sym_bit_DASHshl2] = ACTIONS(1761), + [anon_sym_bit_DASHshr2] = ACTIONS(1761), + [anon_sym_bit_DASHand2] = ACTIONS(1761), + [anon_sym_bit_DASHxor2] = ACTIONS(1761), + [anon_sym_bit_DASHor2] = ACTIONS(1761), + [anon_sym_DOT_DOT2] = ACTIONS(1761), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), + [sym_filesize_unit] = ACTIONS(1761), + [sym_duration_unit] = ACTIONS(1763), + [anon_sym_POUND] = ACTIONS(3), + }, + [1217] = { + [sym_comment] = STATE(1217), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_bit_DASHshl] = ACTIONS(1575), + [anon_sym_bit_DASHshr] = ACTIONS(1575), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_BANG_TILDE] = ACTIONS(1575), + [anon_sym_bit_DASHand] = ACTIONS(1575), + [anon_sym_bit_DASHxor] = ACTIONS(1575), + [anon_sym_bit_DASHor] = ACTIONS(1575), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_not_DASHin] = ACTIONS(1575), + [anon_sym_starts_DASHwith] = ACTIONS(1575), + [anon_sym_ends_DASHwith] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1575), + [aux_sym_cmd_identifier_token41] = ACTIONS(1573), + [sym__newline] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_err_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_GT_PIPE] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1573), + [anon_sym_xor2] = ACTIONS(1573), + [anon_sym_or2] = ACTIONS(1573), + [anon_sym_not_DASHin2] = ACTIONS(1573), + [anon_sym_starts_DASHwith2] = ACTIONS(1573), + [anon_sym_ends_DASHwith2] = ACTIONS(1573), + [anon_sym_EQ_EQ2] = ACTIONS(1573), + [anon_sym_BANG_EQ2] = ACTIONS(1573), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1573), + [anon_sym_GT_EQ2] = ACTIONS(1573), + [anon_sym_EQ_TILDE2] = ACTIONS(1573), + [anon_sym_BANG_TILDE2] = ACTIONS(1573), + [anon_sym_STAR_STAR2] = ACTIONS(1573), + [anon_sym_PLUS_PLUS2] = ACTIONS(1573), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1573), + [anon_sym_SLASH_SLASH2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1573), + [anon_sym_bit_DASHshr2] = ACTIONS(1573), + [anon_sym_bit_DASHand2] = ACTIONS(1573), + [anon_sym_bit_DASHxor2] = ACTIONS(1573), + [anon_sym_bit_DASHor2] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(3709), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_POUND] = ACTIONS(3), + }, + [1218] = { + [sym_comment] = STATE(1218), + [anon_sym_STAR_STAR] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_mod] = ACTIONS(1587), + [anon_sym_SLASH_SLASH] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_bit_DASHshl] = ACTIONS(1587), + [anon_sym_bit_DASHshr] = ACTIONS(1587), + [anon_sym_EQ_TILDE] = ACTIONS(1587), + [anon_sym_BANG_TILDE] = ACTIONS(1587), + [anon_sym_bit_DASHand] = ACTIONS(1587), + [anon_sym_bit_DASHxor] = ACTIONS(1587), + [anon_sym_bit_DASHor] = ACTIONS(1587), + [anon_sym_and] = ACTIONS(1587), + [anon_sym_xor] = ACTIONS(1587), + [anon_sym_or] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(1587), + [anon_sym_not_DASHin] = ACTIONS(1587), + [anon_sym_starts_DASHwith] = ACTIONS(1587), + [anon_sym_ends_DASHwith] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(1587), + [anon_sym_BANG_EQ] = ACTIONS(1587), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_LT_EQ] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1587), + [aux_sym_cmd_identifier_token41] = ACTIONS(1585), + [sym__newline] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_err_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_GT_PIPE] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), + [anon_sym_GT2] = ACTIONS(1585), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_in2] = ACTIONS(1585), + [anon_sym_RBRACE] = ACTIONS(1585), + [anon_sym_STAR2] = ACTIONS(1585), + [anon_sym_and2] = ACTIONS(1585), + [anon_sym_xor2] = ACTIONS(1585), + [anon_sym_or2] = ACTIONS(1585), + [anon_sym_not_DASHin2] = ACTIONS(1585), + [anon_sym_starts_DASHwith2] = ACTIONS(1585), + [anon_sym_ends_DASHwith2] = ACTIONS(1585), + [anon_sym_EQ_EQ2] = ACTIONS(1585), + [anon_sym_BANG_EQ2] = ACTIONS(1585), + [anon_sym_LT2] = ACTIONS(1585), + [anon_sym_LT_EQ2] = ACTIONS(1585), + [anon_sym_GT_EQ2] = ACTIONS(1585), + [anon_sym_EQ_TILDE2] = ACTIONS(1585), + [anon_sym_BANG_TILDE2] = ACTIONS(1585), + [anon_sym_STAR_STAR2] = ACTIONS(1585), + [anon_sym_PLUS_PLUS2] = ACTIONS(1585), + [anon_sym_SLASH2] = ACTIONS(1585), + [anon_sym_mod2] = ACTIONS(1585), + [anon_sym_SLASH_SLASH2] = ACTIONS(1585), + [anon_sym_PLUS2] = ACTIONS(1585), + [anon_sym_bit_DASHshl2] = ACTIONS(1585), + [anon_sym_bit_DASHshr2] = ACTIONS(1585), + [anon_sym_bit_DASHand2] = ACTIONS(1585), + [anon_sym_bit_DASHxor2] = ACTIONS(1585), + [anon_sym_bit_DASHor2] = ACTIONS(1585), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [sym_filesize_unit] = ACTIONS(1585), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_POUND] = ACTIONS(3), + }, + [1219] = { + [sym_comment] = STATE(1219), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_bit_DASHshl] = ACTIONS(1575), + [anon_sym_bit_DASHshr] = ACTIONS(1575), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_BANG_TILDE] = ACTIONS(1575), + [anon_sym_bit_DASHand] = ACTIONS(1575), + [anon_sym_bit_DASHxor] = ACTIONS(1575), + [anon_sym_bit_DASHor] = ACTIONS(1575), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_not_DASHin] = ACTIONS(1575), + [anon_sym_starts_DASHwith] = ACTIONS(1575), + [anon_sym_ends_DASHwith] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1575), + [aux_sym_cmd_identifier_token41] = ACTIONS(1573), + [sym__newline] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_err_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_GT_PIPE] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), + [anon_sym_RPAREN] = ACTIONS(1573), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1573), + [anon_sym_xor2] = ACTIONS(1573), + [anon_sym_or2] = ACTIONS(1573), + [anon_sym_not_DASHin2] = ACTIONS(1573), + [anon_sym_starts_DASHwith2] = ACTIONS(1573), + [anon_sym_ends_DASHwith2] = ACTIONS(1573), + [anon_sym_EQ_EQ2] = ACTIONS(1573), + [anon_sym_BANG_EQ2] = ACTIONS(1573), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1573), + [anon_sym_GT_EQ2] = ACTIONS(1573), + [anon_sym_EQ_TILDE2] = ACTIONS(1573), + [anon_sym_BANG_TILDE2] = ACTIONS(1573), + [anon_sym_STAR_STAR2] = ACTIONS(1573), + [anon_sym_PLUS_PLUS2] = ACTIONS(1573), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1573), + [anon_sym_SLASH_SLASH2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1573), + [anon_sym_bit_DASHshr2] = ACTIONS(1573), + [anon_sym_bit_DASHand2] = ACTIONS(1573), + [anon_sym_bit_DASHxor2] = ACTIONS(1573), + [anon_sym_bit_DASHor2] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_POUND] = ACTIONS(3), + }, + [1220] = { + [sym_comment] = STATE(1220), + [anon_sym_STAR_STAR] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1681), + [anon_sym_SLASH] = ACTIONS(1681), + [anon_sym_mod] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_bit_DASHshl] = ACTIONS(1683), + [anon_sym_bit_DASHshr] = ACTIONS(1683), + [anon_sym_EQ_TILDE] = ACTIONS(1683), + [anon_sym_BANG_TILDE] = ACTIONS(1683), + [anon_sym_bit_DASHand] = ACTIONS(1683), + [anon_sym_bit_DASHxor] = ACTIONS(1683), + [anon_sym_bit_DASHor] = ACTIONS(1683), + [anon_sym_and] = ACTIONS(1683), + [anon_sym_xor] = ACTIONS(1683), + [anon_sym_or] = ACTIONS(1683), + [anon_sym_in] = ACTIONS(1683), + [anon_sym_not_DASHin] = ACTIONS(1683), + [anon_sym_starts_DASHwith] = ACTIONS(1683), + [anon_sym_ends_DASHwith] = ACTIONS(1683), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(1683), + [aux_sym_cmd_identifier_token41] = ACTIONS(1681), + [sym__newline] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_err_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_GT_PIPE] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), + [anon_sym_GT2] = ACTIONS(1681), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_in2] = ACTIONS(1681), + [anon_sym_RBRACE] = ACTIONS(1681), + [anon_sym_STAR2] = ACTIONS(1681), + [anon_sym_and2] = ACTIONS(1681), + [anon_sym_xor2] = ACTIONS(1681), + [anon_sym_or2] = ACTIONS(1681), + [anon_sym_not_DASHin2] = ACTIONS(1681), + [anon_sym_starts_DASHwith2] = ACTIONS(1681), + [anon_sym_ends_DASHwith2] = ACTIONS(1681), + [anon_sym_EQ_EQ2] = ACTIONS(1681), + [anon_sym_BANG_EQ2] = ACTIONS(1681), + [anon_sym_LT2] = ACTIONS(1681), + [anon_sym_LT_EQ2] = ACTIONS(1681), + [anon_sym_GT_EQ2] = ACTIONS(1681), + [anon_sym_EQ_TILDE2] = ACTIONS(1681), + [anon_sym_BANG_TILDE2] = ACTIONS(1681), + [anon_sym_STAR_STAR2] = ACTIONS(1681), + [anon_sym_PLUS_PLUS2] = ACTIONS(1681), + [anon_sym_SLASH2] = ACTIONS(1681), + [anon_sym_mod2] = ACTIONS(1681), + [anon_sym_SLASH_SLASH2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1681), + [anon_sym_bit_DASHshl2] = ACTIONS(1681), + [anon_sym_bit_DASHshr2] = ACTIONS(1681), + [anon_sym_bit_DASHand2] = ACTIONS(1681), + [anon_sym_bit_DASHxor2] = ACTIONS(1681), + [anon_sym_bit_DASHor2] = ACTIONS(1681), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [sym_filesize_unit] = ACTIONS(1681), + [sym_duration_unit] = ACTIONS(1683), + [anon_sym_POUND] = ACTIONS(3), + }, + [1221] = { + [sym_comment] = STATE(1221), + [ts_builtin_sym_end] = ACTIONS(1575), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_bit_DASHshl] = ACTIONS(1575), + [anon_sym_bit_DASHshr] = ACTIONS(1575), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_BANG_TILDE] = ACTIONS(1575), + [anon_sym_bit_DASHand] = ACTIONS(1575), + [anon_sym_bit_DASHxor] = ACTIONS(1575), + [anon_sym_bit_DASHor] = ACTIONS(1575), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_not_DASHin] = ACTIONS(1575), + [anon_sym_starts_DASHwith] = ACTIONS(1575), + [anon_sym_ends_DASHwith] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1575), + [aux_sym_cmd_identifier_token41] = ACTIONS(1573), + [sym__newline] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_err_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_GT_PIPE] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1573), + [anon_sym_xor2] = ACTIONS(1573), + [anon_sym_or2] = ACTIONS(1573), + [anon_sym_not_DASHin2] = ACTIONS(1573), + [anon_sym_starts_DASHwith2] = ACTIONS(1573), + [anon_sym_ends_DASHwith2] = ACTIONS(1573), + [anon_sym_EQ_EQ2] = ACTIONS(1573), + [anon_sym_BANG_EQ2] = ACTIONS(1573), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1573), + [anon_sym_GT_EQ2] = ACTIONS(1573), + [anon_sym_EQ_TILDE2] = ACTIONS(1573), + [anon_sym_BANG_TILDE2] = ACTIONS(1573), + [anon_sym_STAR_STAR2] = ACTIONS(1573), + [anon_sym_PLUS_PLUS2] = ACTIONS(1573), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1573), + [anon_sym_SLASH_SLASH2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1573), + [anon_sym_bit_DASHshr2] = ACTIONS(1573), + [anon_sym_bit_DASHand2] = ACTIONS(1573), + [anon_sym_bit_DASHxor2] = ACTIONS(1573), + [anon_sym_bit_DASHor2] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_POUND] = ACTIONS(3), + }, + [1222] = { + [sym_expr_parenthesized] = STATE(502), + [sym_val_range] = STATE(673), + [sym__val_range] = STATE(7732), + [sym__val_range_with_end] = STATE(7584), + [sym__value] = STATE(673), [sym_val_nothing] = STATE(631), - [sym_val_bool] = STATE(526), - [sym_val_variable] = STATE(455), + [sym_val_bool] = STATE(534), + [sym_val_variable] = STATE(509), [sym_val_number] = STATE(631), - [sym__val_number_decimal] = STATE(347), - [sym__val_number] = STATE(621), + [sym__val_number_decimal] = STATE(348), + [sym__val_number] = STATE(654), [sym_val_duration] = STATE(631), [sym_val_filesize] = STATE(631), [sym_val_binary] = STATE(631), [sym_val_string] = STATE(631), - [sym__raw_str] = STATE(678), - [sym__str_double_quotes] = STATE(678), + [sym__raw_str] = STATE(694), + [sym__str_double_quotes] = STATE(694), [sym_val_interpolated] = STATE(631), - [sym__inter_single_quotes] = STATE(625), - [sym__inter_double_quotes] = STATE(612), + [sym__inter_single_quotes] = STATE(669), + [sym__inter_double_quotes] = STATE(671), [sym_val_list] = STATE(631), [sym_val_record] = STATE(631), [sym_val_table] = STATE(631), [sym_val_closure] = STATE(631), - [sym__unquoted_in_record] = STATE(554), - [sym__unquoted_in_record_with_expr] = STATE(670), - [sym__unquoted_anonymous_prefix] = STATE(6771), + [sym__unquoted_in_record] = STATE(538), + [sym__unquoted_in_record_with_expr] = STATE(673), + [sym__unquoted_anonymous_prefix] = STATE(6895), + [sym_comment] = STATE(1222), + [anon_sym_LBRACK] = ACTIONS(3719), + [anon_sym_LPAREN] = ACTIONS(3721), + [anon_sym_DOLLAR] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(3723), + [anon_sym_DOT_DOT] = ACTIONS(3725), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3727), + [anon_sym_DOT_DOT_LT] = ACTIONS(3727), + [anon_sym_null] = ACTIONS(3729), + [anon_sym_true] = ACTIONS(3731), + [anon_sym_false] = ACTIONS(3731), + [aux_sym__val_number_decimal_token1] = ACTIONS(3733), + [aux_sym__val_number_decimal_token2] = ACTIONS(3735), + [aux_sym__val_number_decimal_token3] = ACTIONS(3737), + [aux_sym__val_number_decimal_token4] = ACTIONS(3739), + [aux_sym__val_number_token1] = ACTIONS(3741), + [aux_sym__val_number_token2] = ACTIONS(3741), + [aux_sym__val_number_token3] = ACTIONS(3741), + [aux_sym__val_number_token4] = ACTIONS(3743), + [aux_sym__val_number_token5] = ACTIONS(3743), + [aux_sym__val_number_token6] = ACTIONS(3743), + [anon_sym_0b] = ACTIONS(3745), + [anon_sym_0o] = ACTIONS(3747), + [anon_sym_0x] = ACTIONS(3747), + [sym_val_date] = ACTIONS(3749), + [anon_sym_DQUOTE] = ACTIONS(3751), + [sym__str_single_quotes] = ACTIONS(3753), + [sym__str_back_ticks] = ACTIONS(3753), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3755), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3757), + [anon_sym_err_GT] = ACTIONS(3759), + [anon_sym_out_GT] = ACTIONS(3759), + [anon_sym_e_GT] = ACTIONS(3759), + [anon_sym_o_GT] = ACTIONS(3759), + [anon_sym_err_PLUSout_GT] = ACTIONS(3759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3759), + [anon_sym_o_PLUSe_GT] = ACTIONS(3759), + [anon_sym_e_PLUSo_GT] = ACTIONS(3759), + [anon_sym_err_GT_GT] = ACTIONS(3761), + [anon_sym_out_GT_GT] = ACTIONS(3761), + [anon_sym_e_GT_GT] = ACTIONS(3761), + [anon_sym_o_GT_GT] = ACTIONS(3761), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3761), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3761), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3761), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3761), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3763), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3765), + }, + [1223] = { + [sym_comment] = STATE(1223), + [anon_sym_STAR_STAR] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_mod] = ACTIONS(1587), + [anon_sym_SLASH_SLASH] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_bit_DASHshl] = ACTIONS(1587), + [anon_sym_bit_DASHshr] = ACTIONS(1587), + [anon_sym_EQ_TILDE] = ACTIONS(1587), + [anon_sym_BANG_TILDE] = ACTIONS(1587), + [anon_sym_bit_DASHand] = ACTIONS(1587), + [anon_sym_bit_DASHxor] = ACTIONS(1587), + [anon_sym_bit_DASHor] = ACTIONS(1587), + [anon_sym_and] = ACTIONS(1587), + [anon_sym_xor] = ACTIONS(1587), + [anon_sym_or] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(1587), + [anon_sym_not_DASHin] = ACTIONS(1587), + [anon_sym_starts_DASHwith] = ACTIONS(1587), + [anon_sym_ends_DASHwith] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(1587), + [anon_sym_BANG_EQ] = ACTIONS(1587), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_LT_EQ] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1587), + [aux_sym_cmd_identifier_token41] = ACTIONS(1585), + [sym__newline] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_err_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_GT_PIPE] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(1585), + [anon_sym_GT2] = ACTIONS(1585), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_in2] = ACTIONS(1585), + [anon_sym_STAR2] = ACTIONS(1585), + [anon_sym_and2] = ACTIONS(1585), + [anon_sym_xor2] = ACTIONS(1585), + [anon_sym_or2] = ACTIONS(1585), + [anon_sym_not_DASHin2] = ACTIONS(1585), + [anon_sym_starts_DASHwith2] = ACTIONS(1585), + [anon_sym_ends_DASHwith2] = ACTIONS(1585), + [anon_sym_EQ_EQ2] = ACTIONS(1585), + [anon_sym_BANG_EQ2] = ACTIONS(1585), + [anon_sym_LT2] = ACTIONS(1585), + [anon_sym_LT_EQ2] = ACTIONS(1585), + [anon_sym_GT_EQ2] = ACTIONS(1585), + [anon_sym_EQ_TILDE2] = ACTIONS(1585), + [anon_sym_BANG_TILDE2] = ACTIONS(1585), + [anon_sym_STAR_STAR2] = ACTIONS(1585), + [anon_sym_PLUS_PLUS2] = ACTIONS(1585), + [anon_sym_SLASH2] = ACTIONS(1585), + [anon_sym_mod2] = ACTIONS(1585), + [anon_sym_SLASH_SLASH2] = ACTIONS(1585), + [anon_sym_PLUS2] = ACTIONS(1585), + [anon_sym_bit_DASHshl2] = ACTIONS(1585), + [anon_sym_bit_DASHshr2] = ACTIONS(1585), + [anon_sym_bit_DASHand2] = ACTIONS(1585), + [anon_sym_bit_DASHxor2] = ACTIONS(1585), + [anon_sym_bit_DASHor2] = ACTIONS(1585), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [sym_filesize_unit] = ACTIONS(1585), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_POUND] = ACTIONS(3), + }, + [1224] = { [sym_comment] = STATE(1224), - [anon_sym_LBRACK] = ACTIONS(3811), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_DOLLAR] = ACTIONS(1532), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_DOT_DOT] = ACTIONS(3817), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3819), - [anon_sym_DOT_DOT_LT] = ACTIONS(3819), - [anon_sym_null] = ACTIONS(3821), - [anon_sym_true] = ACTIONS(3823), - [anon_sym_false] = ACTIONS(3823), - [aux_sym__val_number_decimal_token1] = ACTIONS(3825), - [aux_sym__val_number_decimal_token2] = ACTIONS(3827), - [aux_sym__val_number_decimal_token3] = ACTIONS(3829), - [aux_sym__val_number_decimal_token4] = ACTIONS(3831), - [aux_sym__val_number_token1] = ACTIONS(3833), - [aux_sym__val_number_token2] = ACTIONS(3833), - [aux_sym__val_number_token3] = ACTIONS(3833), - [aux_sym__val_number_token4] = ACTIONS(3835), - [aux_sym__val_number_token5] = ACTIONS(3835), - [aux_sym__val_number_token6] = ACTIONS(3835), - [anon_sym_0b] = ACTIONS(3837), - [anon_sym_0o] = ACTIONS(3839), - [anon_sym_0x] = ACTIONS(3839), - [sym_val_date] = ACTIONS(3841), - [anon_sym_DQUOTE] = ACTIONS(3843), - [sym__str_single_quotes] = ACTIONS(3845), - [sym__str_back_ticks] = ACTIONS(3845), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3847), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3849), - [anon_sym_err_GT] = ACTIONS(3743), - [anon_sym_out_GT] = ACTIONS(3743), - [anon_sym_e_GT] = ACTIONS(3743), - [anon_sym_o_GT] = ACTIONS(3743), - [anon_sym_err_PLUSout_GT] = ACTIONS(3743), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3743), - [anon_sym_o_PLUSe_GT] = ACTIONS(3743), - [anon_sym_e_PLUSo_GT] = ACTIONS(3743), - [anon_sym_err_GT_GT] = ACTIONS(3745), - [anon_sym_out_GT_GT] = ACTIONS(3745), - [anon_sym_e_GT_GT] = ACTIONS(3745), - [anon_sym_o_GT_GT] = ACTIONS(3745), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3745), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3745), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3745), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3745), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3851), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3853), + [anon_sym_STAR_STAR] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1761), + [anon_sym_mod] = ACTIONS(1763), + [anon_sym_SLASH_SLASH] = ACTIONS(1763), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_bit_DASHshl] = ACTIONS(1763), + [anon_sym_bit_DASHshr] = ACTIONS(1763), + [anon_sym_EQ_TILDE] = ACTIONS(1763), + [anon_sym_BANG_TILDE] = ACTIONS(1763), + [anon_sym_bit_DASHand] = ACTIONS(1763), + [anon_sym_bit_DASHxor] = ACTIONS(1763), + [anon_sym_bit_DASHor] = ACTIONS(1763), + [anon_sym_and] = ACTIONS(1763), + [anon_sym_xor] = ACTIONS(1763), + [anon_sym_or] = ACTIONS(1763), + [anon_sym_in] = ACTIONS(1763), + [anon_sym_not_DASHin] = ACTIONS(1763), + [anon_sym_starts_DASHwith] = ACTIONS(1763), + [anon_sym_ends_DASHwith] = ACTIONS(1763), + [anon_sym_EQ_EQ] = ACTIONS(1763), + [anon_sym_BANG_EQ] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1761), + [anon_sym_LT_EQ] = ACTIONS(1763), + [anon_sym_GT] = ACTIONS(1761), + [anon_sym_GT_EQ] = ACTIONS(1763), + [aux_sym_cmd_identifier_token41] = ACTIONS(1761), + [sym__newline] = ACTIONS(1761), + [anon_sym_SEMI] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1761), + [anon_sym_err_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_GT_PIPE] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), + [anon_sym_GT2] = ACTIONS(1761), + [anon_sym_DASH2] = ACTIONS(1761), + [anon_sym_in2] = ACTIONS(1761), + [anon_sym_RBRACE] = ACTIONS(1761), + [anon_sym_STAR2] = ACTIONS(1761), + [anon_sym_and2] = ACTIONS(1761), + [anon_sym_xor2] = ACTIONS(1761), + [anon_sym_or2] = ACTIONS(1761), + [anon_sym_not_DASHin2] = ACTIONS(1761), + [anon_sym_starts_DASHwith2] = ACTIONS(1761), + [anon_sym_ends_DASHwith2] = ACTIONS(1761), + [anon_sym_EQ_EQ2] = ACTIONS(1761), + [anon_sym_BANG_EQ2] = ACTIONS(1761), + [anon_sym_LT2] = ACTIONS(1761), + [anon_sym_LT_EQ2] = ACTIONS(1761), + [anon_sym_GT_EQ2] = ACTIONS(1761), + [anon_sym_EQ_TILDE2] = ACTIONS(1761), + [anon_sym_BANG_TILDE2] = ACTIONS(1761), + [anon_sym_STAR_STAR2] = ACTIONS(1761), + [anon_sym_PLUS_PLUS2] = ACTIONS(1761), + [anon_sym_SLASH2] = ACTIONS(1761), + [anon_sym_mod2] = ACTIONS(1761), + [anon_sym_SLASH_SLASH2] = ACTIONS(1761), + [anon_sym_PLUS2] = ACTIONS(1761), + [anon_sym_bit_DASHshl2] = ACTIONS(1761), + [anon_sym_bit_DASHshr2] = ACTIONS(1761), + [anon_sym_bit_DASHand2] = ACTIONS(1761), + [anon_sym_bit_DASHxor2] = ACTIONS(1761), + [anon_sym_bit_DASHor2] = ACTIONS(1761), + [anon_sym_DOT_DOT2] = ACTIONS(1761), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), + [sym_filesize_unit] = ACTIONS(1761), + [sym_duration_unit] = ACTIONS(1763), + [anon_sym_POUND] = ACTIONS(3), }, [1225] = { [sym_comment] = STATE(1225), - [ts_builtin_sym_end] = ACTIONS(1765), - [anon_sym_STAR_STAR] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1763), - [anon_sym_SLASH] = ACTIONS(1763), - [anon_sym_mod] = ACTIONS(1765), - [anon_sym_SLASH_SLASH] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_bit_DASHshl] = ACTIONS(1765), - [anon_sym_bit_DASHshr] = ACTIONS(1765), - [anon_sym_EQ_TILDE] = ACTIONS(1765), - [anon_sym_BANG_TILDE] = ACTIONS(1765), - [anon_sym_bit_DASHand] = ACTIONS(1765), - [anon_sym_bit_DASHxor] = ACTIONS(1765), - [anon_sym_bit_DASHor] = ACTIONS(1765), - [anon_sym_and] = ACTIONS(1765), - [anon_sym_xor] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), - [anon_sym_in] = ACTIONS(1765), - [anon_sym_not_DASHin] = ACTIONS(1765), - [anon_sym_starts_DASHwith] = ACTIONS(1765), - [anon_sym_ends_DASHwith] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1765), - [anon_sym_BANG_EQ] = ACTIONS(1765), - [anon_sym_LT] = ACTIONS(1763), - [anon_sym_LT_EQ] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1765), - [aux_sym_cmd_identifier_token41] = ACTIONS(1763), - [sym__newline] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_err_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_GT_PIPE] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), - [anon_sym_GT2] = ACTIONS(1763), - [anon_sym_DASH2] = ACTIONS(1763), - [anon_sym_in2] = ACTIONS(1763), - [anon_sym_STAR2] = ACTIONS(1763), - [anon_sym_and2] = ACTIONS(1763), - [anon_sym_xor2] = ACTIONS(1763), - [anon_sym_or2] = ACTIONS(1763), - [anon_sym_not_DASHin2] = ACTIONS(1763), - [anon_sym_starts_DASHwith2] = ACTIONS(1763), - [anon_sym_ends_DASHwith2] = ACTIONS(1763), - [anon_sym_EQ_EQ2] = ACTIONS(1763), - [anon_sym_BANG_EQ2] = ACTIONS(1763), - [anon_sym_LT2] = ACTIONS(1763), - [anon_sym_LT_EQ2] = ACTIONS(1763), - [anon_sym_GT_EQ2] = ACTIONS(1763), - [anon_sym_EQ_TILDE2] = ACTIONS(1763), - [anon_sym_BANG_TILDE2] = ACTIONS(1763), - [anon_sym_STAR_STAR2] = ACTIONS(1763), - [anon_sym_PLUS_PLUS2] = ACTIONS(1763), - [anon_sym_SLASH2] = ACTIONS(1763), - [anon_sym_mod2] = ACTIONS(1763), - [anon_sym_SLASH_SLASH2] = ACTIONS(1763), - [anon_sym_PLUS2] = ACTIONS(1763), - [anon_sym_bit_DASHshl2] = ACTIONS(1763), - [anon_sym_bit_DASHshr2] = ACTIONS(1763), - [anon_sym_bit_DASHand2] = ACTIONS(1763), - [anon_sym_bit_DASHxor2] = ACTIONS(1763), - [anon_sym_bit_DASHor2] = ACTIONS(1763), - [anon_sym_DOT_DOT2] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), - [sym_filesize_unit] = ACTIONS(1763), - [sym_duration_unit] = ACTIONS(1765), + [anon_sym_STAR_STAR] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1681), + [anon_sym_SLASH] = ACTIONS(1681), + [anon_sym_mod] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_bit_DASHshl] = ACTIONS(1683), + [anon_sym_bit_DASHshr] = ACTIONS(1683), + [anon_sym_EQ_TILDE] = ACTIONS(1683), + [anon_sym_BANG_TILDE] = ACTIONS(1683), + [anon_sym_bit_DASHand] = ACTIONS(1683), + [anon_sym_bit_DASHxor] = ACTIONS(1683), + [anon_sym_bit_DASHor] = ACTIONS(1683), + [anon_sym_and] = ACTIONS(1683), + [anon_sym_xor] = ACTIONS(1683), + [anon_sym_or] = ACTIONS(1683), + [anon_sym_in] = ACTIONS(1683), + [anon_sym_not_DASHin] = ACTIONS(1683), + [anon_sym_starts_DASHwith] = ACTIONS(1683), + [anon_sym_ends_DASHwith] = ACTIONS(1683), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(1683), + [aux_sym_cmd_identifier_token41] = ACTIONS(1681), + [sym__newline] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_err_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_GT_PIPE] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), + [anon_sym_GT2] = ACTIONS(1681), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_in2] = ACTIONS(1681), + [anon_sym_STAR2] = ACTIONS(1681), + [anon_sym_and2] = ACTIONS(1681), + [anon_sym_xor2] = ACTIONS(1681), + [anon_sym_or2] = ACTIONS(1681), + [anon_sym_not_DASHin2] = ACTIONS(1681), + [anon_sym_starts_DASHwith2] = ACTIONS(1681), + [anon_sym_ends_DASHwith2] = ACTIONS(1681), + [anon_sym_EQ_EQ2] = ACTIONS(1681), + [anon_sym_BANG_EQ2] = ACTIONS(1681), + [anon_sym_LT2] = ACTIONS(1681), + [anon_sym_LT_EQ2] = ACTIONS(1681), + [anon_sym_GT_EQ2] = ACTIONS(1681), + [anon_sym_EQ_TILDE2] = ACTIONS(1681), + [anon_sym_BANG_TILDE2] = ACTIONS(1681), + [anon_sym_STAR_STAR2] = ACTIONS(1681), + [anon_sym_PLUS_PLUS2] = ACTIONS(1681), + [anon_sym_SLASH2] = ACTIONS(1681), + [anon_sym_mod2] = ACTIONS(1681), + [anon_sym_SLASH_SLASH2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1681), + [anon_sym_bit_DASHshl2] = ACTIONS(1681), + [anon_sym_bit_DASHshr2] = ACTIONS(1681), + [anon_sym_bit_DASHand2] = ACTIONS(1681), + [anon_sym_bit_DASHxor2] = ACTIONS(1681), + [anon_sym_bit_DASHor2] = ACTIONS(1681), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [aux_sym__immediate_decimal_token2] = ACTIONS(3801), + [sym_filesize_unit] = ACTIONS(1681), + [sym_duration_unit] = ACTIONS(1683), [anon_sym_POUND] = ACTIONS(3), }, [1226] = { [sym_comment] = STATE(1226), - [anon_sym_STAR_STAR] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_SLASH_SLASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_bit_DASHshl] = ACTIONS(1609), - [anon_sym_bit_DASHshr] = ACTIONS(1609), - [anon_sym_EQ_TILDE] = ACTIONS(1609), - [anon_sym_BANG_TILDE] = ACTIONS(1609), - [anon_sym_bit_DASHand] = ACTIONS(1609), - [anon_sym_bit_DASHxor] = ACTIONS(1609), - [anon_sym_bit_DASHor] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(1609), - [anon_sym_not_DASHin] = ACTIONS(1609), - [anon_sym_starts_DASHwith] = ACTIONS(1609), - [anon_sym_ends_DASHwith] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1609), - [anon_sym_BANG_EQ] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1609), - [aux_sym_cmd_identifier_token41] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_RBRACE] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), + [anon_sym_STAR_STAR] = ACTIONS(3071), + [anon_sym_PLUS_PLUS] = ACTIONS(3071), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_SLASH] = ACTIONS(3073), + [anon_sym_mod] = ACTIONS(3071), + [anon_sym_SLASH_SLASH] = ACTIONS(3071), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_DASH] = ACTIONS(3071), + [anon_sym_bit_DASHshl] = ACTIONS(3071), + [anon_sym_bit_DASHshr] = ACTIONS(3071), + [anon_sym_EQ_TILDE] = ACTIONS(3071), + [anon_sym_BANG_TILDE] = ACTIONS(3071), + [anon_sym_bit_DASHand] = ACTIONS(3071), + [anon_sym_bit_DASHxor] = ACTIONS(3071), + [anon_sym_bit_DASHor] = ACTIONS(3071), + [anon_sym_and] = ACTIONS(3071), + [anon_sym_xor] = ACTIONS(3071), + [anon_sym_or] = ACTIONS(3071), + [anon_sym_in] = ACTIONS(3071), + [anon_sym_not_DASHin] = ACTIONS(3071), + [anon_sym_starts_DASHwith] = ACTIONS(3071), + [anon_sym_ends_DASHwith] = ACTIONS(3071), + [anon_sym_EQ_EQ] = ACTIONS(3071), + [anon_sym_BANG_EQ] = ACTIONS(3071), + [anon_sym_LT] = ACTIONS(3073), + [anon_sym_LT_EQ] = ACTIONS(3071), + [anon_sym_GT] = ACTIONS(3073), + [anon_sym_GT_EQ] = ACTIONS(3071), + [aux_sym_cmd_identifier_token41] = ACTIONS(3075), + [sym__newline] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_err_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_GT_PIPE] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), + [anon_sym_GT2] = ACTIONS(1707), + [anon_sym_DASH2] = ACTIONS(1707), + [anon_sym_in2] = ACTIONS(1707), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_STAR2] = ACTIONS(1707), + [anon_sym_and2] = ACTIONS(1707), + [anon_sym_xor2] = ACTIONS(1707), + [anon_sym_or2] = ACTIONS(1707), + [anon_sym_not_DASHin2] = ACTIONS(1707), + [anon_sym_starts_DASHwith2] = ACTIONS(1707), + [anon_sym_ends_DASHwith2] = ACTIONS(1707), + [anon_sym_EQ_EQ2] = ACTIONS(1707), + [anon_sym_BANG_EQ2] = ACTIONS(1707), + [anon_sym_LT2] = ACTIONS(1707), + [anon_sym_LT_EQ2] = ACTIONS(1707), + [anon_sym_GT_EQ2] = ACTIONS(1707), + [anon_sym_EQ_TILDE2] = ACTIONS(1707), + [anon_sym_BANG_TILDE2] = ACTIONS(1707), + [anon_sym_STAR_STAR2] = ACTIONS(1707), + [anon_sym_PLUS_PLUS2] = ACTIONS(1707), + [anon_sym_SLASH2] = ACTIONS(1707), + [anon_sym_mod2] = ACTIONS(1707), + [anon_sym_SLASH_SLASH2] = ACTIONS(1707), + [anon_sym_PLUS2] = ACTIONS(1707), + [anon_sym_bit_DASHshl2] = ACTIONS(1707), + [anon_sym_bit_DASHshr2] = ACTIONS(1707), + [anon_sym_bit_DASHand2] = ACTIONS(1707), + [anon_sym_bit_DASHxor2] = ACTIONS(1707), + [anon_sym_bit_DASHor2] = ACTIONS(1707), + [anon_sym_DOT_DOT2] = ACTIONS(2900), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2902), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2902), + [sym_filesize_unit] = ACTIONS(3803), + [sym_duration_unit] = ACTIONS(3805), [anon_sym_POUND] = ACTIONS(3), }, [1227] = { + [sym_expr_parenthesized] = STATE(562), + [sym_val_range] = STATE(696), + [sym__val_range] = STATE(7967), + [sym__val_range_with_end] = STATE(7545), + [sym__value] = STATE(696), + [sym_val_nothing] = STATE(719), + [sym_val_bool] = STATE(594), + [sym_val_variable] = STATE(555), + [sym_val_number] = STATE(719), + [sym__val_number_decimal] = STATE(366), + [sym__val_number] = STATE(754), + [sym_val_duration] = STATE(719), + [sym_val_filesize] = STATE(719), + [sym_val_binary] = STATE(719), + [sym_val_string] = STATE(719), + [sym__raw_str] = STATE(758), + [sym__str_double_quotes] = STATE(758), + [sym_val_interpolated] = STATE(719), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(719), + [sym_val_record] = STATE(719), + [sym_val_table] = STATE(719), + [sym_val_closure] = STATE(719), + [sym__unquoted_in_record] = STATE(602), + [sym__unquoted_in_record_with_expr] = STATE(696), + [sym__unquoted_anonymous_prefix] = STATE(7030), [sym_comment] = STATE(1227), - [anon_sym_STAR_STAR] = ACTIONS(1675), - [anon_sym_PLUS_PLUS] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1673), - [anon_sym_mod] = ACTIONS(1675), - [anon_sym_SLASH_SLASH] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_bit_DASHshl] = ACTIONS(1675), - [anon_sym_bit_DASHshr] = ACTIONS(1675), - [anon_sym_EQ_TILDE] = ACTIONS(1675), - [anon_sym_BANG_TILDE] = ACTIONS(1675), - [anon_sym_bit_DASHand] = ACTIONS(1675), - [anon_sym_bit_DASHxor] = ACTIONS(1675), - [anon_sym_bit_DASHor] = ACTIONS(1675), - [anon_sym_and] = ACTIONS(1675), - [anon_sym_xor] = ACTIONS(1675), - [anon_sym_or] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [anon_sym_not_DASHin] = ACTIONS(1675), - [anon_sym_starts_DASHwith] = ACTIONS(1675), - [anon_sym_ends_DASHwith] = ACTIONS(1675), - [anon_sym_EQ_EQ] = ACTIONS(1675), - [anon_sym_BANG_EQ] = ACTIONS(1675), - [anon_sym_LT] = ACTIONS(1673), - [anon_sym_LT_EQ] = ACTIONS(1675), - [anon_sym_GT] = ACTIONS(1673), - [anon_sym_GT_EQ] = ACTIONS(1675), - [aux_sym_cmd_identifier_token41] = ACTIONS(1673), - [sym__newline] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1673), - [anon_sym_err_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_GT_PIPE] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_in2] = ACTIONS(1673), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1673), - [anon_sym_xor2] = ACTIONS(1673), - [anon_sym_or2] = ACTIONS(1673), - [anon_sym_not_DASHin2] = ACTIONS(1673), - [anon_sym_starts_DASHwith2] = ACTIONS(1673), - [anon_sym_ends_DASHwith2] = ACTIONS(1673), - [anon_sym_EQ_EQ2] = ACTIONS(1673), - [anon_sym_BANG_EQ2] = ACTIONS(1673), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1673), - [anon_sym_GT_EQ2] = ACTIONS(1673), - [anon_sym_EQ_TILDE2] = ACTIONS(1673), - [anon_sym_BANG_TILDE2] = ACTIONS(1673), - [anon_sym_STAR_STAR2] = ACTIONS(1673), - [anon_sym_PLUS_PLUS2] = ACTIONS(1673), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1673), - [anon_sym_SLASH_SLASH2] = ACTIONS(1673), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1673), - [anon_sym_bit_DASHshr2] = ACTIONS(1673), - [anon_sym_bit_DASHand2] = ACTIONS(1673), - [anon_sym_bit_DASHxor2] = ACTIONS(1673), - [anon_sym_bit_DASHor2] = ACTIONS(1673), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [aux_sym__immediate_decimal_token2] = ACTIONS(3855), - [sym_filesize_unit] = ACTIONS(1673), - [sym_duration_unit] = ACTIONS(1675), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3807), + [anon_sym_LPAREN] = ACTIONS(3809), + [anon_sym_DOLLAR] = ACTIONS(3811), + [anon_sym_LBRACE] = ACTIONS(3813), + [anon_sym_DOT_DOT] = ACTIONS(3815), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3817), + [anon_sym_DOT_DOT_LT] = ACTIONS(3817), + [anon_sym_null] = ACTIONS(3819), + [anon_sym_true] = ACTIONS(3821), + [anon_sym_false] = ACTIONS(3821), + [aux_sym__val_number_decimal_token1] = ACTIONS(3823), + [aux_sym__val_number_decimal_token2] = ACTIONS(3825), + [aux_sym__val_number_decimal_token3] = ACTIONS(3827), + [aux_sym__val_number_decimal_token4] = ACTIONS(3829), + [aux_sym__val_number_token1] = ACTIONS(3831), + [aux_sym__val_number_token2] = ACTIONS(3831), + [aux_sym__val_number_token3] = ACTIONS(3831), + [aux_sym__val_number_token4] = ACTIONS(3833), + [aux_sym__val_number_token5] = ACTIONS(3833), + [aux_sym__val_number_token6] = ACTIONS(3833), + [anon_sym_0b] = ACTIONS(3835), + [anon_sym_0o] = ACTIONS(3837), + [anon_sym_0x] = ACTIONS(3837), + [sym_val_date] = ACTIONS(3839), + [anon_sym_DQUOTE] = ACTIONS(3841), + [sym__str_single_quotes] = ACTIONS(3843), + [sym__str_back_ticks] = ACTIONS(3843), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3845), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3847), + [anon_sym_err_GT] = ACTIONS(3759), + [anon_sym_out_GT] = ACTIONS(3759), + [anon_sym_e_GT] = ACTIONS(3759), + [anon_sym_o_GT] = ACTIONS(3759), + [anon_sym_err_PLUSout_GT] = ACTIONS(3759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3759), + [anon_sym_o_PLUSe_GT] = ACTIONS(3759), + [anon_sym_e_PLUSo_GT] = ACTIONS(3759), + [anon_sym_err_GT_GT] = ACTIONS(3761), + [anon_sym_out_GT_GT] = ACTIONS(3761), + [anon_sym_e_GT_GT] = ACTIONS(3761), + [anon_sym_o_GT_GT] = ACTIONS(3761), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3761), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3761), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3761), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3761), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3849), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3851), }, [1228] = { - [sym_expr_parenthesized] = STATE(504), - [sym_val_range] = STATE(676), - [sym__val_range] = STATE(7571), - [sym__val_range_with_end] = STATE(7484), - [sym__value] = STATE(676), - [sym_val_nothing] = STATE(631), - [sym_val_bool] = STATE(526), - [sym_val_variable] = STATE(455), - [sym_val_number] = STATE(631), - [sym__val_number_decimal] = STATE(347), - [sym__val_number] = STATE(621), - [sym_val_duration] = STATE(631), - [sym_val_filesize] = STATE(631), - [sym_val_binary] = STATE(631), - [sym_val_string] = STATE(631), - [sym__raw_str] = STATE(678), - [sym__str_double_quotes] = STATE(678), - [sym_val_interpolated] = STATE(631), - [sym__inter_single_quotes] = STATE(625), - [sym__inter_double_quotes] = STATE(612), - [sym_val_list] = STATE(631), - [sym_val_record] = STATE(631), - [sym_val_table] = STATE(631), - [sym_val_closure] = STATE(631), - [sym__unquoted_in_record] = STATE(556), - [sym__unquoted_in_record_with_expr] = STATE(676), - [sym__unquoted_anonymous_prefix] = STATE(6771), + [sym_expr_parenthesized] = STATE(6056), + [sym_val_range] = STATE(7574), + [sym__val_range] = STATE(7792), + [sym__val_range_with_end] = STATE(7576), + [sym__value] = STATE(7574), + [sym_val_nothing] = STATE(7142), + [sym_val_bool] = STATE(6259), + [sym_val_variable] = STATE(5790), + [sym_val_number] = STATE(7142), + [sym__val_number_decimal] = STATE(5293), + [sym__val_number] = STATE(6878), + [sym_val_duration] = STATE(7142), + [sym_val_filesize] = STATE(7142), + [sym_val_binary] = STATE(7142), + [sym_val_string] = STATE(7142), + [sym__raw_str] = STATE(5625), + [sym__str_double_quotes] = STATE(5625), + [sym_val_interpolated] = STATE(7142), + [sym__inter_single_quotes] = STATE(7238), + [sym__inter_double_quotes] = STATE(7239), + [sym_val_list] = STATE(7142), + [sym_val_record] = STATE(7142), + [sym_val_table] = STATE(7142), + [sym_val_closure] = STATE(7142), + [sym__unquoted_in_record] = STATE(6772), + [sym__unquoted_in_record_with_expr] = STATE(7574), + [sym__unquoted_anonymous_prefix] = STATE(7272), [sym_comment] = STATE(1228), - [anon_sym_LBRACK] = ACTIONS(3811), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_DOLLAR] = ACTIONS(1532), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_DOT_DOT] = ACTIONS(3817), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3819), - [anon_sym_DOT_DOT_LT] = ACTIONS(3819), - [anon_sym_null] = ACTIONS(3821), - [anon_sym_true] = ACTIONS(3823), - [anon_sym_false] = ACTIONS(3823), - [aux_sym__val_number_decimal_token1] = ACTIONS(3825), - [aux_sym__val_number_decimal_token2] = ACTIONS(3827), - [aux_sym__val_number_decimal_token3] = ACTIONS(3829), - [aux_sym__val_number_decimal_token4] = ACTIONS(3831), - [aux_sym__val_number_token1] = ACTIONS(3833), - [aux_sym__val_number_token2] = ACTIONS(3833), - [aux_sym__val_number_token3] = ACTIONS(3833), - [aux_sym__val_number_token4] = ACTIONS(3835), - [aux_sym__val_number_token5] = ACTIONS(3835), - [aux_sym__val_number_token6] = ACTIONS(3835), - [anon_sym_0b] = ACTIONS(3837), - [anon_sym_0o] = ACTIONS(3839), - [anon_sym_0x] = ACTIONS(3839), - [sym_val_date] = ACTIONS(3841), - [anon_sym_DQUOTE] = ACTIONS(3843), - [sym__str_single_quotes] = ACTIONS(3845), - [sym__str_back_ticks] = ACTIONS(3845), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3847), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3849), - [anon_sym_err_GT] = ACTIONS(3743), - [anon_sym_out_GT] = ACTIONS(3743), - [anon_sym_e_GT] = ACTIONS(3743), - [anon_sym_o_GT] = ACTIONS(3743), - [anon_sym_err_PLUSout_GT] = ACTIONS(3743), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3743), - [anon_sym_o_PLUSe_GT] = ACTIONS(3743), - [anon_sym_e_PLUSo_GT] = ACTIONS(3743), - [anon_sym_err_GT_GT] = ACTIONS(3745), - [anon_sym_out_GT_GT] = ACTIONS(3745), - [anon_sym_e_GT_GT] = ACTIONS(3745), - [anon_sym_o_GT_GT] = ACTIONS(3745), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3745), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3745), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3745), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3745), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3851), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3853), + [anon_sym_LBRACK] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_DOLLAR] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_DOT_DOT] = ACTIONS(3775), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3777), + [anon_sym_DOT_DOT_LT] = ACTIONS(3777), + [anon_sym_null] = ACTIONS(3779), + [anon_sym_true] = ACTIONS(3781), + [anon_sym_false] = ACTIONS(3781), + [aux_sym__val_number_decimal_token1] = ACTIONS(3783), + [aux_sym__val_number_decimal_token2] = ACTIONS(3785), + [aux_sym__val_number_decimal_token3] = ACTIONS(3787), + [aux_sym__val_number_decimal_token4] = ACTIONS(3789), + [aux_sym__val_number_token1] = ACTIONS(3117), + [aux_sym__val_number_token2] = ACTIONS(3117), + [aux_sym__val_number_token3] = ACTIONS(3117), + [aux_sym__val_number_token4] = ACTIONS(3791), + [aux_sym__val_number_token5] = ACTIONS(3791), + [aux_sym__val_number_token6] = ACTIONS(3791), + [anon_sym_0b] = ACTIONS(3121), + [anon_sym_0o] = ACTIONS(3123), + [anon_sym_0x] = ACTIONS(3123), + [sym_val_date] = ACTIONS(3793), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym__str_single_quotes] = ACTIONS(3129), + [sym__str_back_ticks] = ACTIONS(3129), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2574), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2576), + [anon_sym_err_GT] = ACTIONS(3759), + [anon_sym_out_GT] = ACTIONS(3759), + [anon_sym_e_GT] = ACTIONS(3759), + [anon_sym_o_GT] = ACTIONS(3759), + [anon_sym_err_PLUSout_GT] = ACTIONS(3759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3759), + [anon_sym_o_PLUSe_GT] = ACTIONS(3759), + [anon_sym_e_PLUSo_GT] = ACTIONS(3759), + [anon_sym_err_GT_GT] = ACTIONS(3761), + [anon_sym_out_GT_GT] = ACTIONS(3761), + [anon_sym_e_GT_GT] = ACTIONS(3761), + [anon_sym_o_GT_GT] = ACTIONS(3761), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3761), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3761), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3761), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3761), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3795), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3133), }, [1229] = { + [sym_expr_parenthesized] = STATE(563), + [sym_val_range] = STATE(698), + [sym__val_range] = STATE(7967), + [sym__val_range_with_end] = STATE(7545), + [sym__value] = STATE(698), + [sym_val_nothing] = STATE(719), + [sym_val_bool] = STATE(594), + [sym_val_variable] = STATE(555), + [sym_val_number] = STATE(719), + [sym__val_number_decimal] = STATE(366), + [sym__val_number] = STATE(754), + [sym_val_duration] = STATE(719), + [sym_val_filesize] = STATE(719), + [sym_val_binary] = STATE(719), + [sym_val_string] = STATE(719), + [sym__raw_str] = STATE(758), + [sym__str_double_quotes] = STATE(758), + [sym_val_interpolated] = STATE(719), + [sym__inter_single_quotes] = STATE(728), + [sym__inter_double_quotes] = STATE(729), + [sym_val_list] = STATE(719), + [sym_val_record] = STATE(719), + [sym_val_table] = STATE(719), + [sym_val_closure] = STATE(719), + [sym__unquoted_in_record] = STATE(604), + [sym__unquoted_in_record_with_expr] = STATE(698), + [sym__unquoted_anonymous_prefix] = STATE(7030), [sym_comment] = STATE(1229), - [anon_sym_STAR_STAR] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_SLASH] = ACTIONS(1621), - [anon_sym_mod] = ACTIONS(1623), - [anon_sym_SLASH_SLASH] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_bit_DASHshl] = ACTIONS(1623), - [anon_sym_bit_DASHshr] = ACTIONS(1623), - [anon_sym_EQ_TILDE] = ACTIONS(1623), - [anon_sym_BANG_TILDE] = ACTIONS(1623), - [anon_sym_bit_DASHand] = ACTIONS(1623), - [anon_sym_bit_DASHxor] = ACTIONS(1623), - [anon_sym_bit_DASHor] = ACTIONS(1623), - [anon_sym_and] = ACTIONS(1623), - [anon_sym_xor] = ACTIONS(1623), - [anon_sym_or] = ACTIONS(1623), - [anon_sym_in] = ACTIONS(1623), - [anon_sym_not_DASHin] = ACTIONS(1623), - [anon_sym_starts_DASHwith] = ACTIONS(1623), - [anon_sym_ends_DASHwith] = ACTIONS(1623), - [anon_sym_EQ_EQ] = ACTIONS(1623), - [anon_sym_BANG_EQ] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1621), - [anon_sym_LT_EQ] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1621), - [anon_sym_GT_EQ] = ACTIONS(1623), - [aux_sym_cmd_identifier_token41] = ACTIONS(1621), - [sym__newline] = ACTIONS(1621), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_PIPE] = ACTIONS(1621), - [anon_sym_err_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_GT_PIPE] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), - [anon_sym_GT2] = ACTIONS(1621), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_in2] = ACTIONS(1621), - [anon_sym_RBRACE] = ACTIONS(1621), - [anon_sym_STAR2] = ACTIONS(1621), - [anon_sym_and2] = ACTIONS(1621), - [anon_sym_xor2] = ACTIONS(1621), - [anon_sym_or2] = ACTIONS(1621), - [anon_sym_not_DASHin2] = ACTIONS(1621), - [anon_sym_starts_DASHwith2] = ACTIONS(1621), - [anon_sym_ends_DASHwith2] = ACTIONS(1621), - [anon_sym_EQ_EQ2] = ACTIONS(1621), - [anon_sym_BANG_EQ2] = ACTIONS(1621), - [anon_sym_LT2] = ACTIONS(1621), - [anon_sym_LT_EQ2] = ACTIONS(1621), - [anon_sym_GT_EQ2] = ACTIONS(1621), - [anon_sym_EQ_TILDE2] = ACTIONS(1621), - [anon_sym_BANG_TILDE2] = ACTIONS(1621), - [anon_sym_STAR_STAR2] = ACTIONS(1621), - [anon_sym_PLUS_PLUS2] = ACTIONS(1621), - [anon_sym_SLASH2] = ACTIONS(1621), - [anon_sym_mod2] = ACTIONS(1621), - [anon_sym_SLASH_SLASH2] = ACTIONS(1621), - [anon_sym_PLUS2] = ACTIONS(1621), - [anon_sym_bit_DASHshl2] = ACTIONS(1621), - [anon_sym_bit_DASHshr2] = ACTIONS(1621), - [anon_sym_bit_DASHand2] = ACTIONS(1621), - [anon_sym_bit_DASHxor2] = ACTIONS(1621), - [anon_sym_bit_DASHor2] = ACTIONS(1621), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [sym_filesize_unit] = ACTIONS(1621), - [sym_duration_unit] = ACTIONS(1623), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3807), + [anon_sym_LPAREN] = ACTIONS(3809), + [anon_sym_DOLLAR] = ACTIONS(3811), + [anon_sym_LBRACE] = ACTIONS(3813), + [anon_sym_DOT_DOT] = ACTIONS(3815), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3817), + [anon_sym_DOT_DOT_LT] = ACTIONS(3817), + [anon_sym_null] = ACTIONS(3819), + [anon_sym_true] = ACTIONS(3821), + [anon_sym_false] = ACTIONS(3821), + [aux_sym__val_number_decimal_token1] = ACTIONS(3823), + [aux_sym__val_number_decimal_token2] = ACTIONS(3825), + [aux_sym__val_number_decimal_token3] = ACTIONS(3827), + [aux_sym__val_number_decimal_token4] = ACTIONS(3829), + [aux_sym__val_number_token1] = ACTIONS(3831), + [aux_sym__val_number_token2] = ACTIONS(3831), + [aux_sym__val_number_token3] = ACTIONS(3831), + [aux_sym__val_number_token4] = ACTIONS(3833), + [aux_sym__val_number_token5] = ACTIONS(3833), + [aux_sym__val_number_token6] = ACTIONS(3833), + [anon_sym_0b] = ACTIONS(3835), + [anon_sym_0o] = ACTIONS(3837), + [anon_sym_0x] = ACTIONS(3837), + [sym_val_date] = ACTIONS(3839), + [anon_sym_DQUOTE] = ACTIONS(3841), + [sym__str_single_quotes] = ACTIONS(3843), + [sym__str_back_ticks] = ACTIONS(3843), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3845), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3847), + [anon_sym_err_GT] = ACTIONS(3759), + [anon_sym_out_GT] = ACTIONS(3759), + [anon_sym_e_GT] = ACTIONS(3759), + [anon_sym_o_GT] = ACTIONS(3759), + [anon_sym_err_PLUSout_GT] = ACTIONS(3759), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3759), + [anon_sym_o_PLUSe_GT] = ACTIONS(3759), + [anon_sym_e_PLUSo_GT] = ACTIONS(3759), + [anon_sym_err_GT_GT] = ACTIONS(3761), + [anon_sym_out_GT_GT] = ACTIONS(3761), + [anon_sym_e_GT_GT] = ACTIONS(3761), + [anon_sym_o_GT_GT] = ACTIONS(3761), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3761), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3761), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3761), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3761), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3849), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3851), }, [1230] = { [sym_comment] = STATE(1230), - [ts_builtin_sym_end] = ACTIONS(1609), - [anon_sym_STAR_STAR] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_SLASH_SLASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_bit_DASHshl] = ACTIONS(1609), - [anon_sym_bit_DASHshr] = ACTIONS(1609), - [anon_sym_EQ_TILDE] = ACTIONS(1609), - [anon_sym_BANG_TILDE] = ACTIONS(1609), - [anon_sym_bit_DASHand] = ACTIONS(1609), - [anon_sym_bit_DASHxor] = ACTIONS(1609), - [anon_sym_bit_DASHor] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(1609), - [anon_sym_not_DASHin] = ACTIONS(1609), - [anon_sym_starts_DASHwith] = ACTIONS(1609), - [anon_sym_ends_DASHwith] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1609), - [anon_sym_BANG_EQ] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1609), - [aux_sym_cmd_identifier_token41] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_bit_DASHshl] = ACTIONS(1575), + [anon_sym_bit_DASHshr] = ACTIONS(1575), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_BANG_TILDE] = ACTIONS(1575), + [anon_sym_bit_DASHand] = ACTIONS(1575), + [anon_sym_bit_DASHxor] = ACTIONS(1575), + [anon_sym_bit_DASHor] = ACTIONS(1575), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_not_DASHin] = ACTIONS(1575), + [anon_sym_starts_DASHwith] = ACTIONS(1575), + [anon_sym_ends_DASHwith] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1575), + [aux_sym_cmd_identifier_token41] = ACTIONS(1573), + [sym__newline] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_err_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_GT_PIPE] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1573), + [anon_sym_xor2] = ACTIONS(1573), + [anon_sym_or2] = ACTIONS(1573), + [anon_sym_not_DASHin2] = ACTIONS(1573), + [anon_sym_starts_DASHwith2] = ACTIONS(1573), + [anon_sym_ends_DASHwith2] = ACTIONS(1573), + [anon_sym_EQ_EQ2] = ACTIONS(1573), + [anon_sym_BANG_EQ2] = ACTIONS(1573), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1573), + [anon_sym_GT_EQ2] = ACTIONS(1573), + [anon_sym_EQ_TILDE2] = ACTIONS(1573), + [anon_sym_BANG_TILDE2] = ACTIONS(1573), + [anon_sym_STAR_STAR2] = ACTIONS(1573), + [anon_sym_PLUS_PLUS2] = ACTIONS(1573), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1573), + [anon_sym_SLASH_SLASH2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1573), + [anon_sym_bit_DASHshr2] = ACTIONS(1573), + [anon_sym_bit_DASHand2] = ACTIONS(1573), + [anon_sym_bit_DASHxor2] = ACTIONS(1573), + [anon_sym_bit_DASHor2] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(3855), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), [anon_sym_POUND] = ACTIONS(3), }, [1231] = { - [sym__match_pattern_expression] = STATE(3107), - [sym__match_pattern_value] = STATE(3147), - [sym__match_pattern_list] = STATE(3109), - [sym__match_pattern_rest] = STATE(7612), - [sym__match_pattern_record] = STATE(3111), - [sym_expr_parenthesized] = STATE(2878), - [sym_val_range] = STATE(3147), - [sym__val_range] = STATE(7888), - [sym_val_nothing] = STATE(3095), - [sym_val_bool] = STATE(3079), - [sym_val_variable] = STATE(2883), - [sym_val_number] = STATE(3095), - [sym__val_number_decimal] = STATE(2727), - [sym__val_number] = STATE(3096), - [sym_val_duration] = STATE(3095), - [sym_val_filesize] = STATE(3095), - [sym_val_binary] = STATE(3095), - [sym_val_string] = STATE(3095), - [sym__raw_str] = STATE(3110), - [sym__str_double_quotes] = STATE(3110), - [sym_val_list] = STATE(7615), - [sym_val_table] = STATE(3095), - [sym__unquoted_in_list] = STATE(3107), - [sym__unquoted_anonymous_prefix] = STATE(7642), + [sym_match_arm] = STATE(7552), + [sym_default_arm] = STATE(7552), + [sym_match_pattern] = STATE(7855), + [sym__match_pattern] = STATE(6042), + [sym__match_pattern_expression] = STATE(7095), + [sym__match_pattern_value] = STATE(7109), + [sym__match_pattern_list] = STATE(7114), + [sym__match_pattern_record] = STATE(7148), + [sym_expr_parenthesized] = STATE(5819), + [sym_val_range] = STATE(7109), + [sym__val_range] = STATE(7906), + [sym_val_nothing] = STATE(7164), + [sym_val_bool] = STATE(6540), + [sym_val_variable] = STATE(5826), + [sym_val_number] = STATE(7164), + [sym__val_number_decimal] = STATE(5383), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(7164), + [sym_val_filesize] = STATE(7164), + [sym_val_binary] = STATE(7164), + [sym_val_string] = STATE(7164), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_table] = STATE(7164), + [sym_unquoted] = STATE(7176), + [sym__unquoted_anonymous_prefix] = STATE(7913), [sym_comment] = STATE(1231), - [aux_sym_shebang_repeat1] = STATE(6699), - [aux_sym__match_pattern_list_repeat1] = STATE(1273), - [sym__newline] = ACTIONS(3857), - [anon_sym_LBRACK] = ACTIONS(3859), - [anon_sym_RBRACK] = ACTIONS(3861), - [anon_sym_LPAREN] = ACTIONS(3863), - [anon_sym_DOLLAR] = ACTIONS(3865), - [anon_sym_LBRACE] = ACTIONS(3867), - [anon_sym_DOT_DOT] = ACTIONS(3869), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3871), - [anon_sym_DOT_DOT_LT] = ACTIONS(3871), - [anon_sym_null] = ACTIONS(3873), - [anon_sym_true] = ACTIONS(3875), - [anon_sym_false] = ACTIONS(3875), - [aux_sym__val_number_decimal_token1] = ACTIONS(3877), - [aux_sym__val_number_decimal_token2] = ACTIONS(3879), - [aux_sym__val_number_decimal_token3] = ACTIONS(3881), - [aux_sym__val_number_decimal_token4] = ACTIONS(3883), - [aux_sym__val_number_token1] = ACTIONS(3885), - [aux_sym__val_number_token2] = ACTIONS(3885), - [aux_sym__val_number_token3] = ACTIONS(3885), - [aux_sym__val_number_token4] = ACTIONS(3887), - [aux_sym__val_number_token5] = ACTIONS(3887), - [aux_sym__val_number_token6] = ACTIONS(3887), - [anon_sym_0b] = ACTIONS(3889), - [anon_sym_0o] = ACTIONS(3891), - [anon_sym_0x] = ACTIONS(3891), - [sym_val_date] = ACTIONS(3893), - [anon_sym_DQUOTE] = ACTIONS(3895), - [sym__str_single_quotes] = ACTIONS(3897), - [sym__str_back_ticks] = ACTIONS(3897), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3899), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3901), + [aux_sym_ctrl_match_repeat1] = STATE(1231), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_LPAREN] = ACTIONS(3860), + [anon_sym_DOLLAR] = ACTIONS(3863), + [anon_sym_LBRACE] = ACTIONS(3866), + [anon_sym__] = ACTIONS(3869), + [anon_sym_DOT_DOT] = ACTIONS(3872), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3875), + [anon_sym_DOT_DOT_LT] = ACTIONS(3875), + [anon_sym_null] = ACTIONS(3878), + [anon_sym_true] = ACTIONS(3881), + [anon_sym_false] = ACTIONS(3881), + [aux_sym__val_number_decimal_token1] = ACTIONS(3884), + [aux_sym__val_number_decimal_token2] = ACTIONS(3887), + [aux_sym__val_number_decimal_token3] = ACTIONS(3890), + [aux_sym__val_number_decimal_token4] = ACTIONS(3893), + [aux_sym__val_number_token1] = ACTIONS(3896), + [aux_sym__val_number_token2] = ACTIONS(3896), + [aux_sym__val_number_token3] = ACTIONS(3896), + [aux_sym__val_number_token4] = ACTIONS(3899), + [aux_sym__val_number_token5] = ACTIONS(3899), + [aux_sym__val_number_token6] = ACTIONS(3899), + [anon_sym_0b] = ACTIONS(3902), + [anon_sym_0o] = ACTIONS(3905), + [anon_sym_0x] = ACTIONS(3905), + [sym_val_date] = ACTIONS(3908), + [anon_sym_DQUOTE] = ACTIONS(3911), + [sym__str_single_quotes] = ACTIONS(3914), + [sym__str_back_ticks] = ACTIONS(3914), + [anon_sym_err_GT] = ACTIONS(3917), + [anon_sym_out_GT] = ACTIONS(3917), + [anon_sym_e_GT] = ACTIONS(3917), + [anon_sym_o_GT] = ACTIONS(3917), + [anon_sym_err_PLUSout_GT] = ACTIONS(3917), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3917), + [anon_sym_o_PLUSe_GT] = ACTIONS(3917), + [anon_sym_e_PLUSo_GT] = ACTIONS(3917), + [anon_sym_err_GT_GT] = ACTIONS(3920), + [anon_sym_out_GT_GT] = ACTIONS(3920), + [anon_sym_e_GT_GT] = ACTIONS(3920), + [anon_sym_o_GT_GT] = ACTIONS(3920), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3920), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3920), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3920), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3920), + [aux_sym_unquoted_token1] = ACTIONS(3923), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3926), }, [1232] = { [sym_comment] = STATE(1232), - [anon_sym_STAR_STAR] = ACTIONS(3063), - [anon_sym_PLUS_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_SLASH] = ACTIONS(3065), - [anon_sym_mod] = ACTIONS(3063), - [anon_sym_SLASH_SLASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_bit_DASHshl] = ACTIONS(3063), - [anon_sym_bit_DASHshr] = ACTIONS(3063), - [anon_sym_EQ_TILDE] = ACTIONS(3063), - [anon_sym_BANG_TILDE] = ACTIONS(3063), - [anon_sym_bit_DASHand] = ACTIONS(3063), - [anon_sym_bit_DASHxor] = ACTIONS(3063), - [anon_sym_bit_DASHor] = ACTIONS(3063), - [anon_sym_and] = ACTIONS(3063), - [anon_sym_xor] = ACTIONS(3063), - [anon_sym_or] = ACTIONS(3063), - [anon_sym_in] = ACTIONS(3063), - [anon_sym_not_DASHin] = ACTIONS(3063), - [anon_sym_starts_DASHwith] = ACTIONS(3063), - [anon_sym_ends_DASHwith] = ACTIONS(3063), - [anon_sym_EQ_EQ] = ACTIONS(3063), - [anon_sym_BANG_EQ] = ACTIONS(3063), - [anon_sym_LT] = ACTIONS(3065), - [anon_sym_LT_EQ] = ACTIONS(3063), - [anon_sym_GT] = ACTIONS(3065), - [anon_sym_GT_EQ] = ACTIONS(3063), - [aux_sym_cmd_identifier_token41] = ACTIONS(3067), - [sym__newline] = ACTIONS(1709), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_PIPE] = ACTIONS(1709), - [anon_sym_err_GT_PIPE] = ACTIONS(1709), - [anon_sym_out_GT_PIPE] = ACTIONS(1709), - [anon_sym_e_GT_PIPE] = ACTIONS(1709), - [anon_sym_o_GT_PIPE] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), - [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_GT2] = ACTIONS(1709), - [anon_sym_DASH2] = ACTIONS(1709), - [anon_sym_in2] = ACTIONS(1709), - [anon_sym_STAR2] = ACTIONS(1709), - [anon_sym_and2] = ACTIONS(1709), - [anon_sym_xor2] = ACTIONS(1709), - [anon_sym_or2] = ACTIONS(1709), - [anon_sym_not_DASHin2] = ACTIONS(1709), - [anon_sym_starts_DASHwith2] = ACTIONS(1709), - [anon_sym_ends_DASHwith2] = ACTIONS(1709), - [anon_sym_EQ_EQ2] = ACTIONS(1709), - [anon_sym_BANG_EQ2] = ACTIONS(1709), - [anon_sym_LT2] = ACTIONS(1709), - [anon_sym_LT_EQ2] = ACTIONS(1709), - [anon_sym_GT_EQ2] = ACTIONS(1709), - [anon_sym_EQ_TILDE2] = ACTIONS(1709), - [anon_sym_BANG_TILDE2] = ACTIONS(1709), - [anon_sym_STAR_STAR2] = ACTIONS(1709), - [anon_sym_PLUS_PLUS2] = ACTIONS(1709), - [anon_sym_SLASH2] = ACTIONS(1709), - [anon_sym_mod2] = ACTIONS(1709), - [anon_sym_SLASH_SLASH2] = ACTIONS(1709), - [anon_sym_PLUS2] = ACTIONS(1709), - [anon_sym_bit_DASHshl2] = ACTIONS(1709), - [anon_sym_bit_DASHshr2] = ACTIONS(1709), - [anon_sym_bit_DASHand2] = ACTIONS(1709), - [anon_sym_bit_DASHxor2] = ACTIONS(1709), - [anon_sym_bit_DASHor2] = ACTIONS(1709), - [anon_sym_DOT_DOT2] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3039), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3039), - [sym_filesize_unit] = ACTIONS(3903), - [sym_duration_unit] = ACTIONS(3905), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_bit_DASHshl] = ACTIONS(1575), + [anon_sym_bit_DASHshr] = ACTIONS(1575), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_BANG_TILDE] = ACTIONS(1575), + [anon_sym_bit_DASHand] = ACTIONS(1575), + [anon_sym_bit_DASHxor] = ACTIONS(1575), + [anon_sym_bit_DASHor] = ACTIONS(1575), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_not_DASHin] = ACTIONS(1575), + [anon_sym_starts_DASHwith] = ACTIONS(1575), + [anon_sym_ends_DASHwith] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1575), + [aux_sym_cmd_identifier_token41] = ACTIONS(1573), + [sym__newline] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_err_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_GT_PIPE] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1573), + [anon_sym_xor2] = ACTIONS(1573), + [anon_sym_or2] = ACTIONS(1573), + [anon_sym_not_DASHin2] = ACTIONS(1573), + [anon_sym_starts_DASHwith2] = ACTIONS(1573), + [anon_sym_ends_DASHwith2] = ACTIONS(1573), + [anon_sym_EQ_EQ2] = ACTIONS(1573), + [anon_sym_BANG_EQ2] = ACTIONS(1573), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1573), + [anon_sym_GT_EQ2] = ACTIONS(1573), + [anon_sym_EQ_TILDE2] = ACTIONS(1573), + [anon_sym_BANG_TILDE2] = ACTIONS(1573), + [anon_sym_STAR_STAR2] = ACTIONS(1573), + [anon_sym_PLUS_PLUS2] = ACTIONS(1573), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1573), + [anon_sym_SLASH_SLASH2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1573), + [anon_sym_bit_DASHshr2] = ACTIONS(1573), + [anon_sym_bit_DASHand2] = ACTIONS(1573), + [anon_sym_bit_DASHxor2] = ACTIONS(1573), + [anon_sym_bit_DASHor2] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(3855), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), [anon_sym_POUND] = ACTIONS(3), }, [1233] = { - [sym__match_pattern_expression] = STATE(3107), - [sym__match_pattern_value] = STATE(3147), - [sym__match_pattern_list] = STATE(3109), - [sym__match_pattern_rest] = STATE(7807), - [sym__match_pattern_record] = STATE(3111), - [sym_expr_parenthesized] = STATE(2878), - [sym_val_range] = STATE(3147), - [sym__val_range] = STATE(7888), - [sym_val_nothing] = STATE(3095), - [sym_val_bool] = STATE(3079), + [sym__match_pattern_expression] = STATE(3167), + [sym__match_pattern_value] = STATE(3159), + [sym__match_pattern_list] = STATE(3160), + [sym__match_pattern_rest] = STATE(8147), + [sym__match_pattern_record] = STATE(3161), + [sym_expr_parenthesized] = STATE(2875), + [sym_val_range] = STATE(3159), + [sym__val_range] = STATE(7970), + [sym_val_nothing] = STATE(3162), + [sym_val_bool] = STATE(3037), [sym_val_variable] = STATE(2883), - [sym_val_number] = STATE(3095), - [sym__val_number_decimal] = STATE(2727), - [sym__val_number] = STATE(3096), - [sym_val_duration] = STATE(3095), - [sym_val_filesize] = STATE(3095), - [sym_val_binary] = STATE(3095), - [sym_val_string] = STATE(3095), - [sym__raw_str] = STATE(3110), - [sym__str_double_quotes] = STATE(3110), - [sym_val_list] = STATE(7581), - [sym_val_table] = STATE(3095), - [sym__unquoted_in_list] = STATE(3107), - [sym__unquoted_anonymous_prefix] = STATE(7642), + [sym_val_number] = STATE(3162), + [sym__val_number_decimal] = STATE(2683), + [sym__val_number] = STATE(3147), + [sym_val_duration] = STATE(3162), + [sym_val_filesize] = STATE(3162), + [sym_val_binary] = STATE(3162), + [sym_val_string] = STATE(3162), + [sym__raw_str] = STATE(3125), + [sym__str_double_quotes] = STATE(3125), + [sym_val_list] = STATE(8043), + [sym_val_table] = STATE(3162), + [sym__unquoted_in_list] = STATE(3167), + [sym__unquoted_anonymous_prefix] = STATE(7872), [sym_comment] = STATE(1233), - [aux_sym_shebang_repeat1] = STATE(6727), - [aux_sym__match_pattern_list_repeat1] = STATE(1272), - [sym__newline] = ACTIONS(3857), - [anon_sym_LBRACK] = ACTIONS(3859), - [anon_sym_RBRACK] = ACTIONS(3907), - [anon_sym_LPAREN] = ACTIONS(3863), - [anon_sym_DOLLAR] = ACTIONS(3865), - [anon_sym_LBRACE] = ACTIONS(3867), - [anon_sym_DOT_DOT] = ACTIONS(3909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3871), - [anon_sym_DOT_DOT_LT] = ACTIONS(3871), - [anon_sym_null] = ACTIONS(3873), - [anon_sym_true] = ACTIONS(3875), - [anon_sym_false] = ACTIONS(3875), - [aux_sym__val_number_decimal_token1] = ACTIONS(3877), - [aux_sym__val_number_decimal_token2] = ACTIONS(3879), - [aux_sym__val_number_decimal_token3] = ACTIONS(3881), - [aux_sym__val_number_decimal_token4] = ACTIONS(3883), - [aux_sym__val_number_token1] = ACTIONS(3885), - [aux_sym__val_number_token2] = ACTIONS(3885), - [aux_sym__val_number_token3] = ACTIONS(3885), - [aux_sym__val_number_token4] = ACTIONS(3887), - [aux_sym__val_number_token5] = ACTIONS(3887), - [aux_sym__val_number_token6] = ACTIONS(3887), - [anon_sym_0b] = ACTIONS(3889), - [anon_sym_0o] = ACTIONS(3891), - [anon_sym_0x] = ACTIONS(3891), - [sym_val_date] = ACTIONS(3893), - [anon_sym_DQUOTE] = ACTIONS(3895), - [sym__str_single_quotes] = ACTIONS(3897), - [sym__str_back_ticks] = ACTIONS(3897), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3899), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3901), + [aux_sym_shebang_repeat1] = STATE(6262), + [aux_sym__match_pattern_list_repeat1] = STATE(1324), + [sym__newline] = ACTIONS(3929), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_RBRACK] = ACTIONS(3933), + [anon_sym_LPAREN] = ACTIONS(3935), + [anon_sym_DOLLAR] = ACTIONS(3937), + [anon_sym_LBRACE] = ACTIONS(3939), + [anon_sym_DOT_DOT] = ACTIONS(3941), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3943), + [anon_sym_DOT_DOT_LT] = ACTIONS(3943), + [anon_sym_null] = ACTIONS(3945), + [anon_sym_true] = ACTIONS(3947), + [anon_sym_false] = ACTIONS(3947), + [aux_sym__val_number_decimal_token1] = ACTIONS(3949), + [aux_sym__val_number_decimal_token2] = ACTIONS(3951), + [aux_sym__val_number_decimal_token3] = ACTIONS(3953), + [aux_sym__val_number_decimal_token4] = ACTIONS(3955), + [aux_sym__val_number_token1] = ACTIONS(3957), + [aux_sym__val_number_token2] = ACTIONS(3957), + [aux_sym__val_number_token3] = ACTIONS(3957), + [aux_sym__val_number_token4] = ACTIONS(3959), + [aux_sym__val_number_token5] = ACTIONS(3959), + [aux_sym__val_number_token6] = ACTIONS(3959), + [anon_sym_0b] = ACTIONS(3961), + [anon_sym_0o] = ACTIONS(3963), + [anon_sym_0x] = ACTIONS(3963), + [sym_val_date] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3967), + [sym__str_single_quotes] = ACTIONS(3969), + [sym__str_back_ticks] = ACTIONS(3969), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3971), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3973), }, [1234] = { - [sym_match_arm] = STATE(7144), - [sym_default_arm] = STATE(7144), - [sym_match_pattern] = STATE(7608), - [sym__match_pattern] = STATE(6119), - [sym__match_pattern_expression] = STATE(6912), - [sym__match_pattern_value] = STATE(6932), - [sym__match_pattern_list] = STATE(6972), - [sym__match_pattern_record] = STATE(6995), - [sym_expr_parenthesized] = STATE(5800), - [sym_val_range] = STATE(6932), - [sym__val_range] = STATE(7572), - [sym_val_nothing] = STATE(7043), - [sym_val_bool] = STATE(6380), - [sym_val_variable] = STATE(5810), - [sym_val_number] = STATE(7043), - [sym__val_number_decimal] = STATE(5472), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(7043), - [sym_val_filesize] = STATE(7043), - [sym_val_binary] = STATE(7043), - [sym_val_string] = STATE(7043), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_table] = STATE(7043), - [sym_unquoted] = STATE(7086), - [sym__unquoted_anonymous_prefix] = STATE(7585), + [sym_match_arm] = STATE(7038), + [sym_default_arm] = STATE(7038), + [sym_match_pattern] = STATE(7855), + [sym__match_pattern] = STATE(6042), + [sym__match_pattern_expression] = STATE(7095), + [sym__match_pattern_value] = STATE(7109), + [sym__match_pattern_list] = STATE(7114), + [sym__match_pattern_record] = STATE(7148), + [sym_expr_parenthesized] = STATE(5819), + [sym_val_range] = STATE(7109), + [sym__val_range] = STATE(7906), + [sym_val_nothing] = STATE(7164), + [sym_val_bool] = STATE(6540), + [sym_val_variable] = STATE(5826), + [sym_val_number] = STATE(7164), + [sym__val_number_decimal] = STATE(5383), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(7164), + [sym_val_filesize] = STATE(7164), + [sym_val_binary] = STATE(7164), + [sym_val_string] = STATE(7164), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_table] = STATE(7164), + [sym_unquoted] = STATE(7176), + [sym__unquoted_anonymous_prefix] = STATE(7913), [sym_comment] = STATE(1234), - [aux_sym_ctrl_match_repeat1] = STATE(1235), - [anon_sym_LBRACK] = ACTIONS(3617), - [anon_sym_LPAREN] = ACTIONS(3619), - [anon_sym_DOLLAR] = ACTIONS(3621), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym__] = ACTIONS(3627), - [anon_sym_DOT_DOT] = ACTIONS(3629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3631), - [anon_sym_DOT_DOT_LT] = ACTIONS(3631), - [anon_sym_null] = ACTIONS(3633), - [anon_sym_true] = ACTIONS(3635), - [anon_sym_false] = ACTIONS(3635), - [aux_sym__val_number_decimal_token1] = ACTIONS(3637), - [aux_sym__val_number_decimal_token2] = ACTIONS(3639), - [aux_sym__val_number_decimal_token3] = ACTIONS(3641), - [aux_sym__val_number_decimal_token4] = ACTIONS(3643), + [aux_sym_ctrl_match_repeat1] = STATE(1231), + [anon_sym_LBRACK] = ACTIONS(3589), + [anon_sym_LPAREN] = ACTIONS(3591), + [anon_sym_DOLLAR] = ACTIONS(3593), + [anon_sym_LBRACE] = ACTIONS(3595), + [anon_sym__] = ACTIONS(3599), + [anon_sym_DOT_DOT] = ACTIONS(3601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), + [anon_sym_DOT_DOT_LT] = ACTIONS(3603), + [anon_sym_null] = ACTIONS(3605), + [anon_sym_true] = ACTIONS(3607), + [anon_sym_false] = ACTIONS(3607), + [aux_sym__val_number_decimal_token1] = ACTIONS(3609), + [aux_sym__val_number_decimal_token2] = ACTIONS(3611), + [aux_sym__val_number_decimal_token3] = ACTIONS(3613), + [aux_sym__val_number_decimal_token4] = ACTIONS(3615), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3645), - [aux_sym__val_number_token5] = ACTIONS(3645), - [aux_sym__val_number_token6] = ACTIONS(3645), + [aux_sym__val_number_token4] = ACTIONS(3617), + [aux_sym__val_number_token5] = ACTIONS(3617), + [aux_sym__val_number_token6] = ACTIONS(3617), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3647), + [sym_val_date] = ACTIONS(3619), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1235] = { - [sym_match_arm] = STATE(7466), - [sym_default_arm] = STATE(7466), - [sym_match_pattern] = STATE(7608), - [sym__match_pattern] = STATE(6119), - [sym__match_pattern_expression] = STATE(6912), - [sym__match_pattern_value] = STATE(6932), - [sym__match_pattern_list] = STATE(6972), - [sym__match_pattern_record] = STATE(6995), - [sym_expr_parenthesized] = STATE(5800), - [sym_val_range] = STATE(6932), - [sym__val_range] = STATE(7572), - [sym_val_nothing] = STATE(7043), - [sym_val_bool] = STATE(6380), - [sym_val_variable] = STATE(5810), - [sym_val_number] = STATE(7043), - [sym__val_number_decimal] = STATE(5472), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(7043), - [sym_val_filesize] = STATE(7043), - [sym_val_binary] = STATE(7043), - [sym_val_string] = STATE(7043), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_table] = STATE(7043), - [sym_unquoted] = STATE(7086), - [sym__unquoted_anonymous_prefix] = STATE(7585), + [sym_match_arm] = STATE(7248), + [sym_default_arm] = STATE(7248), + [sym_match_pattern] = STATE(7855), + [sym__match_pattern] = STATE(6042), + [sym__match_pattern_expression] = STATE(7095), + [sym__match_pattern_value] = STATE(7109), + [sym__match_pattern_list] = STATE(7114), + [sym__match_pattern_record] = STATE(7148), + [sym_expr_parenthesized] = STATE(5819), + [sym_val_range] = STATE(7109), + [sym__val_range] = STATE(7906), + [sym_val_nothing] = STATE(7164), + [sym_val_bool] = STATE(6540), + [sym_val_variable] = STATE(5826), + [sym_val_number] = STATE(7164), + [sym__val_number_decimal] = STATE(5383), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(7164), + [sym_val_filesize] = STATE(7164), + [sym_val_binary] = STATE(7164), + [sym_val_string] = STATE(7164), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_table] = STATE(7164), + [sym_unquoted] = STATE(7176), + [sym__unquoted_anonymous_prefix] = STATE(7913), [sym_comment] = STATE(1235), - [aux_sym_ctrl_match_repeat1] = STATE(1235), - [anon_sym_LBRACK] = ACTIONS(3911), - [anon_sym_LPAREN] = ACTIONS(3914), - [anon_sym_DOLLAR] = ACTIONS(3917), - [anon_sym_LBRACE] = ACTIONS(3920), - [anon_sym__] = ACTIONS(3923), - [anon_sym_DOT_DOT] = ACTIONS(3926), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3929), - [anon_sym_DOT_DOT_LT] = ACTIONS(3929), - [anon_sym_null] = ACTIONS(3932), - [anon_sym_true] = ACTIONS(3935), - [anon_sym_false] = ACTIONS(3935), - [aux_sym__val_number_decimal_token1] = ACTIONS(3938), - [aux_sym__val_number_decimal_token2] = ACTIONS(3941), - [aux_sym__val_number_decimal_token3] = ACTIONS(3944), - [aux_sym__val_number_decimal_token4] = ACTIONS(3947), - [aux_sym__val_number_token1] = ACTIONS(3950), - [aux_sym__val_number_token2] = ACTIONS(3950), - [aux_sym__val_number_token3] = ACTIONS(3950), - [aux_sym__val_number_token4] = ACTIONS(3953), - [aux_sym__val_number_token5] = ACTIONS(3953), - [aux_sym__val_number_token6] = ACTIONS(3953), - [anon_sym_0b] = ACTIONS(3956), - [anon_sym_0o] = ACTIONS(3959), - [anon_sym_0x] = ACTIONS(3959), - [sym_val_date] = ACTIONS(3962), - [anon_sym_DQUOTE] = ACTIONS(3965), - [sym__str_single_quotes] = ACTIONS(3968), - [sym__str_back_ticks] = ACTIONS(3968), - [anon_sym_err_GT] = ACTIONS(3971), - [anon_sym_out_GT] = ACTIONS(3971), - [anon_sym_e_GT] = ACTIONS(3971), - [anon_sym_o_GT] = ACTIONS(3971), - [anon_sym_err_PLUSout_GT] = ACTIONS(3971), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3971), - [anon_sym_o_PLUSe_GT] = ACTIONS(3971), - [anon_sym_e_PLUSo_GT] = ACTIONS(3971), - [anon_sym_err_GT_GT] = ACTIONS(3974), - [anon_sym_out_GT_GT] = ACTIONS(3974), - [anon_sym_e_GT_GT] = ACTIONS(3974), - [anon_sym_o_GT_GT] = ACTIONS(3974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3974), - [aux_sym_unquoted_token1] = ACTIONS(3977), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3980), - }, - [1236] = { - [sym_match_arm] = STATE(7156), - [sym_default_arm] = STATE(7156), - [sym_match_pattern] = STATE(7608), - [sym__match_pattern] = STATE(6119), - [sym__match_pattern_expression] = STATE(6912), - [sym__match_pattern_value] = STATE(6932), - [sym__match_pattern_list] = STATE(6972), - [sym__match_pattern_record] = STATE(6995), - [sym_expr_parenthesized] = STATE(5800), - [sym_val_range] = STATE(6932), - [sym__val_range] = STATE(7572), - [sym_val_nothing] = STATE(7043), - [sym_val_bool] = STATE(6380), - [sym_val_variable] = STATE(5810), - [sym_val_number] = STATE(7043), - [sym__val_number_decimal] = STATE(5472), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(7043), - [sym_val_filesize] = STATE(7043), - [sym_val_binary] = STATE(7043), - [sym_val_string] = STATE(7043), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_table] = STATE(7043), - [sym_unquoted] = STATE(7086), - [sym__unquoted_anonymous_prefix] = STATE(7585), - [sym_comment] = STATE(1236), - [aux_sym_ctrl_match_repeat1] = STATE(1235), - [anon_sym_LBRACK] = ACTIONS(3617), - [anon_sym_LPAREN] = ACTIONS(3619), - [anon_sym_DOLLAR] = ACTIONS(3621), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym__] = ACTIONS(3627), - [anon_sym_DOT_DOT] = ACTIONS(3629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3631), - [anon_sym_DOT_DOT_LT] = ACTIONS(3631), - [anon_sym_null] = ACTIONS(3633), - [anon_sym_true] = ACTIONS(3635), - [anon_sym_false] = ACTIONS(3635), - [aux_sym__val_number_decimal_token1] = ACTIONS(3637), - [aux_sym__val_number_decimal_token2] = ACTIONS(3639), - [aux_sym__val_number_decimal_token3] = ACTIONS(3641), - [aux_sym__val_number_decimal_token4] = ACTIONS(3643), + [aux_sym_ctrl_match_repeat1] = STATE(1231), + [anon_sym_LBRACK] = ACTIONS(3589), + [anon_sym_LPAREN] = ACTIONS(3591), + [anon_sym_DOLLAR] = ACTIONS(3593), + [anon_sym_LBRACE] = ACTIONS(3595), + [anon_sym__] = ACTIONS(3599), + [anon_sym_DOT_DOT] = ACTIONS(3601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), + [anon_sym_DOT_DOT_LT] = ACTIONS(3603), + [anon_sym_null] = ACTIONS(3605), + [anon_sym_true] = ACTIONS(3607), + [anon_sym_false] = ACTIONS(3607), + [aux_sym__val_number_decimal_token1] = ACTIONS(3609), + [aux_sym__val_number_decimal_token2] = ACTIONS(3611), + [aux_sym__val_number_decimal_token3] = ACTIONS(3613), + [aux_sym__val_number_decimal_token4] = ACTIONS(3615), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3645), - [aux_sym__val_number_token5] = ACTIONS(3645), - [aux_sym__val_number_token6] = ACTIONS(3645), + [aux_sym__val_number_token4] = ACTIONS(3617), + [aux_sym__val_number_token5] = ACTIONS(3617), + [aux_sym__val_number_token6] = ACTIONS(3617), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3647), + [sym_val_date] = ACTIONS(3619), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, + [1236] = { + [sym_comment] = STATE(1236), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_bit_DASHshl] = ACTIONS(1575), + [anon_sym_bit_DASHshr] = ACTIONS(1575), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_BANG_TILDE] = ACTIONS(1575), + [anon_sym_bit_DASHand] = ACTIONS(1575), + [anon_sym_bit_DASHxor] = ACTIONS(1575), + [anon_sym_bit_DASHor] = ACTIONS(1575), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_not_DASHin] = ACTIONS(1575), + [anon_sym_starts_DASHwith] = ACTIONS(1575), + [anon_sym_ends_DASHwith] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1575), + [aux_sym_cmd_identifier_token41] = ACTIONS(1573), + [sym__newline] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_err_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_GT_PIPE] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1573), + [anon_sym_xor2] = ACTIONS(1573), + [anon_sym_or2] = ACTIONS(1573), + [anon_sym_not_DASHin2] = ACTIONS(1573), + [anon_sym_starts_DASHwith2] = ACTIONS(1573), + [anon_sym_ends_DASHwith2] = ACTIONS(1573), + [anon_sym_EQ_EQ2] = ACTIONS(1573), + [anon_sym_BANG_EQ2] = ACTIONS(1573), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1573), + [anon_sym_GT_EQ2] = ACTIONS(1573), + [anon_sym_EQ_TILDE2] = ACTIONS(1573), + [anon_sym_BANG_TILDE2] = ACTIONS(1573), + [anon_sym_STAR_STAR2] = ACTIONS(1573), + [anon_sym_PLUS_PLUS2] = ACTIONS(1573), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1573), + [anon_sym_SLASH_SLASH2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1573), + [anon_sym_bit_DASHshr2] = ACTIONS(1573), + [anon_sym_bit_DASHand2] = ACTIONS(1573), + [anon_sym_bit_DASHxor2] = ACTIONS(1573), + [anon_sym_bit_DASHor2] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_POUND] = ACTIONS(3), + }, [1237] = { - [sym_expr_parenthesized] = STATE(6596), - [sym_val_range] = STATE(7953), - [sym__val_range] = STATE(7572), - [sym__value] = STATE(7953), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(7458), - [sym_val_variable] = STATE(3658), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(5700), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(4492), - [sym__str_double_quotes] = STATE(4492), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(7954), - [sym__unquoted_anonymous_prefix] = STATE(7585), [sym_comment] = STATE(1237), - [anon_sym_LBRACK] = ACTIONS(3983), - [anon_sym_LPAREN] = ACTIONS(3619), - [anon_sym_DOLLAR] = ACTIONS(3985), - [anon_sym_LBRACE] = ACTIONS(3987), - [anon_sym_DOT_DOT] = ACTIONS(3989), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3991), - [anon_sym_DOT_DOT_LT] = ACTIONS(3991), - [anon_sym_null] = ACTIONS(3993), - [anon_sym_true] = ACTIONS(3995), - [anon_sym_false] = ACTIONS(3995), - [aux_sym__val_number_decimal_token1] = ACTIONS(3997), - [aux_sym__val_number_decimal_token2] = ACTIONS(3999), - [aux_sym__val_number_decimal_token3] = ACTIONS(4001), - [aux_sym__val_number_decimal_token4] = ACTIONS(4003), + [anon_sym_STAR_STAR] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1761), + [anon_sym_mod] = ACTIONS(1763), + [anon_sym_SLASH_SLASH] = ACTIONS(1763), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_bit_DASHshl] = ACTIONS(1763), + [anon_sym_bit_DASHshr] = ACTIONS(1763), + [anon_sym_EQ_TILDE] = ACTIONS(1763), + [anon_sym_BANG_TILDE] = ACTIONS(1763), + [anon_sym_bit_DASHand] = ACTIONS(1763), + [anon_sym_bit_DASHxor] = ACTIONS(1763), + [anon_sym_bit_DASHor] = ACTIONS(1763), + [anon_sym_and] = ACTIONS(1763), + [anon_sym_xor] = ACTIONS(1763), + [anon_sym_or] = ACTIONS(1763), + [anon_sym_in] = ACTIONS(1763), + [anon_sym_not_DASHin] = ACTIONS(1763), + [anon_sym_starts_DASHwith] = ACTIONS(1763), + [anon_sym_ends_DASHwith] = ACTIONS(1763), + [anon_sym_EQ_EQ] = ACTIONS(1763), + [anon_sym_BANG_EQ] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1761), + [anon_sym_LT_EQ] = ACTIONS(1763), + [anon_sym_GT] = ACTIONS(1761), + [anon_sym_GT_EQ] = ACTIONS(1763), + [aux_sym_cmd_identifier_token41] = ACTIONS(1761), + [sym__newline] = ACTIONS(1761), + [anon_sym_SEMI] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1761), + [anon_sym_err_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_GT_PIPE] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), + [anon_sym_GT2] = ACTIONS(1761), + [anon_sym_DASH2] = ACTIONS(1761), + [anon_sym_in2] = ACTIONS(1761), + [anon_sym_STAR2] = ACTIONS(1761), + [anon_sym_and2] = ACTIONS(1761), + [anon_sym_xor2] = ACTIONS(1761), + [anon_sym_or2] = ACTIONS(1761), + [anon_sym_not_DASHin2] = ACTIONS(1761), + [anon_sym_starts_DASHwith2] = ACTIONS(1761), + [anon_sym_ends_DASHwith2] = ACTIONS(1761), + [anon_sym_EQ_EQ2] = ACTIONS(1761), + [anon_sym_BANG_EQ2] = ACTIONS(1761), + [anon_sym_LT2] = ACTIONS(1761), + [anon_sym_LT_EQ2] = ACTIONS(1761), + [anon_sym_GT_EQ2] = ACTIONS(1761), + [anon_sym_EQ_TILDE2] = ACTIONS(1761), + [anon_sym_BANG_TILDE2] = ACTIONS(1761), + [anon_sym_STAR_STAR2] = ACTIONS(1761), + [anon_sym_PLUS_PLUS2] = ACTIONS(1761), + [anon_sym_SLASH2] = ACTIONS(1761), + [anon_sym_mod2] = ACTIONS(1761), + [anon_sym_SLASH_SLASH2] = ACTIONS(1761), + [anon_sym_PLUS2] = ACTIONS(1761), + [anon_sym_bit_DASHshl2] = ACTIONS(1761), + [anon_sym_bit_DASHshr2] = ACTIONS(1761), + [anon_sym_bit_DASHand2] = ACTIONS(1761), + [anon_sym_bit_DASHxor2] = ACTIONS(1761), + [anon_sym_bit_DASHor2] = ACTIONS(1761), + [anon_sym_DOT_DOT2] = ACTIONS(1761), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), + [sym_filesize_unit] = ACTIONS(1761), + [sym_duration_unit] = ACTIONS(1763), + [anon_sym_POUND] = ACTIONS(3), + }, + [1238] = { + [sym_expr_parenthesized] = STATE(6746), + [sym_val_range] = STATE(8026), + [sym__val_range] = STATE(7906), + [sym__value] = STATE(8026), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(7502), + [sym_val_variable] = STATE(3657), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(5698), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(4332), + [sym__str_double_quotes] = STATE(4332), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(8028), + [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym_comment] = STATE(1238), + [anon_sym_LBRACK] = ACTIONS(3975), + [anon_sym_LPAREN] = ACTIONS(3591), + [anon_sym_DOLLAR] = ACTIONS(3977), + [anon_sym_LBRACE] = ACTIONS(3979), + [anon_sym_DOT_DOT] = ACTIONS(3981), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3983), + [anon_sym_DOT_DOT_LT] = ACTIONS(3983), + [anon_sym_null] = ACTIONS(3985), + [anon_sym_true] = ACTIONS(3987), + [anon_sym_false] = ACTIONS(3987), + [aux_sym__val_number_decimal_token1] = ACTIONS(3989), + [aux_sym__val_number_decimal_token2] = ACTIONS(3991), + [aux_sym__val_number_decimal_token3] = ACTIONS(3993), + [aux_sym__val_number_decimal_token4] = ACTIONS(3995), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(4005), - [aux_sym__val_number_token5] = ACTIONS(4005), - [aux_sym__val_number_token6] = ACTIONS(4005), + [aux_sym__val_number_token4] = ACTIONS(3997), + [aux_sym__val_number_token5] = ACTIONS(3997), + [aux_sym__val_number_token6] = ACTIONS(3997), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(4007), - [anon_sym_DQUOTE] = ACTIONS(4009), - [sym__str_single_quotes] = ACTIONS(4011), - [sym__str_back_ticks] = ACTIONS(4011), + [sym_val_date] = ACTIONS(3999), + [anon_sym_DQUOTE] = ACTIONS(4001), + [sym__str_single_quotes] = ACTIONS(4003), + [sym__str_back_ticks] = ACTIONS(4003), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_record_entry_token1] = ACTIONS(3365), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4013), + [sym_raw_string_begin] = ACTIONS(4005), }, - [1238] = { - [sym_match_arm] = STATE(7258), - [sym_default_arm] = STATE(7258), - [sym_match_pattern] = STATE(7608), - [sym__match_pattern] = STATE(6119), - [sym__match_pattern_expression] = STATE(6912), - [sym__match_pattern_value] = STATE(6932), - [sym__match_pattern_list] = STATE(6972), - [sym__match_pattern_record] = STATE(6995), - [sym_expr_parenthesized] = STATE(5800), - [sym_val_range] = STATE(6932), - [sym__val_range] = STATE(7572), - [sym_val_nothing] = STATE(7043), - [sym_val_bool] = STATE(6380), - [sym_val_variable] = STATE(5810), - [sym_val_number] = STATE(7043), - [sym__val_number_decimal] = STATE(5472), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(7043), - [sym_val_filesize] = STATE(7043), - [sym_val_binary] = STATE(7043), - [sym_val_string] = STATE(7043), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_table] = STATE(7043), - [sym_unquoted] = STATE(7086), - [sym__unquoted_anonymous_prefix] = STATE(7585), - [sym_comment] = STATE(1238), - [aux_sym_ctrl_match_repeat1] = STATE(1235), - [anon_sym_LBRACK] = ACTIONS(3617), - [anon_sym_LPAREN] = ACTIONS(3619), - [anon_sym_DOLLAR] = ACTIONS(3621), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym__] = ACTIONS(3627), - [anon_sym_DOT_DOT] = ACTIONS(3629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3631), - [anon_sym_DOT_DOT_LT] = ACTIONS(3631), - [anon_sym_null] = ACTIONS(3633), - [anon_sym_true] = ACTIONS(3635), - [anon_sym_false] = ACTIONS(3635), - [aux_sym__val_number_decimal_token1] = ACTIONS(3637), - [aux_sym__val_number_decimal_token2] = ACTIONS(3639), - [aux_sym__val_number_decimal_token3] = ACTIONS(3641), - [aux_sym__val_number_decimal_token4] = ACTIONS(3643), + [1239] = { + [sym_comment] = STATE(1239), + [anon_sym_STAR_STAR] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1681), + [anon_sym_SLASH] = ACTIONS(1681), + [anon_sym_mod] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_bit_DASHshl] = ACTIONS(1683), + [anon_sym_bit_DASHshr] = ACTIONS(1683), + [anon_sym_EQ_TILDE] = ACTIONS(1683), + [anon_sym_BANG_TILDE] = ACTIONS(1683), + [anon_sym_bit_DASHand] = ACTIONS(1683), + [anon_sym_bit_DASHxor] = ACTIONS(1683), + [anon_sym_bit_DASHor] = ACTIONS(1683), + [anon_sym_and] = ACTIONS(1683), + [anon_sym_xor] = ACTIONS(1683), + [anon_sym_or] = ACTIONS(1683), + [anon_sym_in] = ACTIONS(1683), + [anon_sym_not_DASHin] = ACTIONS(1683), + [anon_sym_starts_DASHwith] = ACTIONS(1683), + [anon_sym_ends_DASHwith] = ACTIONS(1683), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(1683), + [aux_sym_cmd_identifier_token41] = ACTIONS(1681), + [sym__newline] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_err_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_GT_PIPE] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), + [anon_sym_GT2] = ACTIONS(1681), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_in2] = ACTIONS(1681), + [anon_sym_STAR2] = ACTIONS(1681), + [anon_sym_and2] = ACTIONS(1681), + [anon_sym_xor2] = ACTIONS(1681), + [anon_sym_or2] = ACTIONS(1681), + [anon_sym_not_DASHin2] = ACTIONS(1681), + [anon_sym_starts_DASHwith2] = ACTIONS(1681), + [anon_sym_ends_DASHwith2] = ACTIONS(1681), + [anon_sym_EQ_EQ2] = ACTIONS(1681), + [anon_sym_BANG_EQ2] = ACTIONS(1681), + [anon_sym_LT2] = ACTIONS(1681), + [anon_sym_LT_EQ2] = ACTIONS(1681), + [anon_sym_GT_EQ2] = ACTIONS(1681), + [anon_sym_EQ_TILDE2] = ACTIONS(1681), + [anon_sym_BANG_TILDE2] = ACTIONS(1681), + [anon_sym_STAR_STAR2] = ACTIONS(1681), + [anon_sym_PLUS_PLUS2] = ACTIONS(1681), + [anon_sym_SLASH2] = ACTIONS(1681), + [anon_sym_mod2] = ACTIONS(1681), + [anon_sym_SLASH_SLASH2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1681), + [anon_sym_bit_DASHshl2] = ACTIONS(1681), + [anon_sym_bit_DASHshr2] = ACTIONS(1681), + [anon_sym_bit_DASHand2] = ACTIONS(1681), + [anon_sym_bit_DASHxor2] = ACTIONS(1681), + [anon_sym_bit_DASHor2] = ACTIONS(1681), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [sym_filesize_unit] = ACTIONS(1681), + [sym_duration_unit] = ACTIONS(1683), + [anon_sym_POUND] = ACTIONS(3), + }, + [1240] = { + [sym_comment] = STATE(1240), + [anon_sym_STAR_STAR] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1681), + [anon_sym_SLASH] = ACTIONS(1681), + [anon_sym_mod] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_bit_DASHshl] = ACTIONS(1683), + [anon_sym_bit_DASHshr] = ACTIONS(1683), + [anon_sym_EQ_TILDE] = ACTIONS(1683), + [anon_sym_BANG_TILDE] = ACTIONS(1683), + [anon_sym_bit_DASHand] = ACTIONS(1683), + [anon_sym_bit_DASHxor] = ACTIONS(1683), + [anon_sym_bit_DASHor] = ACTIONS(1683), + [anon_sym_and] = ACTIONS(1683), + [anon_sym_xor] = ACTIONS(1683), + [anon_sym_or] = ACTIONS(1683), + [anon_sym_in] = ACTIONS(1683), + [anon_sym_not_DASHin] = ACTIONS(1683), + [anon_sym_starts_DASHwith] = ACTIONS(1683), + [anon_sym_ends_DASHwith] = ACTIONS(1683), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(1683), + [aux_sym_cmd_identifier_token41] = ACTIONS(1681), + [sym__newline] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_err_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_GT_PIPE] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), + [anon_sym_GT2] = ACTIONS(1681), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_in2] = ACTIONS(1681), + [anon_sym_STAR2] = ACTIONS(1681), + [anon_sym_and2] = ACTIONS(1681), + [anon_sym_xor2] = ACTIONS(1681), + [anon_sym_or2] = ACTIONS(1681), + [anon_sym_not_DASHin2] = ACTIONS(1681), + [anon_sym_starts_DASHwith2] = ACTIONS(1681), + [anon_sym_ends_DASHwith2] = ACTIONS(1681), + [anon_sym_EQ_EQ2] = ACTIONS(1681), + [anon_sym_BANG_EQ2] = ACTIONS(1681), + [anon_sym_LT2] = ACTIONS(1681), + [anon_sym_LT_EQ2] = ACTIONS(1681), + [anon_sym_GT_EQ2] = ACTIONS(1681), + [anon_sym_EQ_TILDE2] = ACTIONS(1681), + [anon_sym_BANG_TILDE2] = ACTIONS(1681), + [anon_sym_STAR_STAR2] = ACTIONS(1681), + [anon_sym_PLUS_PLUS2] = ACTIONS(1681), + [anon_sym_SLASH2] = ACTIONS(1681), + [anon_sym_mod2] = ACTIONS(1681), + [anon_sym_SLASH_SLASH2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1681), + [anon_sym_bit_DASHshl2] = ACTIONS(1681), + [anon_sym_bit_DASHshr2] = ACTIONS(1681), + [anon_sym_bit_DASHand2] = ACTIONS(1681), + [anon_sym_bit_DASHxor2] = ACTIONS(1681), + [anon_sym_bit_DASHor2] = ACTIONS(1681), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [aux_sym__immediate_decimal_token2] = ACTIONS(4007), + [sym_filesize_unit] = ACTIONS(1681), + [sym_duration_unit] = ACTIONS(1683), + [anon_sym_POUND] = ACTIONS(3), + }, + [1241] = { + [sym__match_pattern_expression] = STATE(3167), + [sym__match_pattern_value] = STATE(3159), + [sym__match_pattern_list] = STATE(3160), + [sym__match_pattern_rest] = STATE(8142), + [sym__match_pattern_record] = STATE(3161), + [sym_expr_parenthesized] = STATE(2875), + [sym_val_range] = STATE(3159), + [sym__val_range] = STATE(7970), + [sym_val_nothing] = STATE(3162), + [sym_val_bool] = STATE(3037), + [sym_val_variable] = STATE(2883), + [sym_val_number] = STATE(3162), + [sym__val_number_decimal] = STATE(2683), + [sym__val_number] = STATE(3147), + [sym_val_duration] = STATE(3162), + [sym_val_filesize] = STATE(3162), + [sym_val_binary] = STATE(3162), + [sym_val_string] = STATE(3162), + [sym__raw_str] = STATE(3125), + [sym__str_double_quotes] = STATE(3125), + [sym_val_list] = STATE(7744), + [sym_val_table] = STATE(3162), + [sym__unquoted_in_list] = STATE(3167), + [sym__unquoted_anonymous_prefix] = STATE(7872), + [sym_comment] = STATE(1241), + [aux_sym_shebang_repeat1] = STATE(6803), + [aux_sym__match_pattern_list_repeat1] = STATE(1286), + [sym__newline] = ACTIONS(3929), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_RBRACK] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(3935), + [anon_sym_DOLLAR] = ACTIONS(3937), + [anon_sym_LBRACE] = ACTIONS(3939), + [anon_sym_DOT_DOT] = ACTIONS(4011), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3943), + [anon_sym_DOT_DOT_LT] = ACTIONS(3943), + [anon_sym_null] = ACTIONS(3945), + [anon_sym_true] = ACTIONS(3947), + [anon_sym_false] = ACTIONS(3947), + [aux_sym__val_number_decimal_token1] = ACTIONS(3949), + [aux_sym__val_number_decimal_token2] = ACTIONS(3951), + [aux_sym__val_number_decimal_token3] = ACTIONS(3953), + [aux_sym__val_number_decimal_token4] = ACTIONS(3955), + [aux_sym__val_number_token1] = ACTIONS(3957), + [aux_sym__val_number_token2] = ACTIONS(3957), + [aux_sym__val_number_token3] = ACTIONS(3957), + [aux_sym__val_number_token4] = ACTIONS(3959), + [aux_sym__val_number_token5] = ACTIONS(3959), + [aux_sym__val_number_token6] = ACTIONS(3959), + [anon_sym_0b] = ACTIONS(3961), + [anon_sym_0o] = ACTIONS(3963), + [anon_sym_0x] = ACTIONS(3963), + [sym_val_date] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3967), + [sym__str_single_quotes] = ACTIONS(3969), + [sym__str_back_ticks] = ACTIONS(3969), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3971), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3973), + }, + [1242] = { + [sym_match_arm] = STATE(7233), + [sym_default_arm] = STATE(7233), + [sym_match_pattern] = STATE(7855), + [sym__match_pattern] = STATE(6042), + [sym__match_pattern_expression] = STATE(7095), + [sym__match_pattern_value] = STATE(7109), + [sym__match_pattern_list] = STATE(7114), + [sym__match_pattern_record] = STATE(7148), + [sym_expr_parenthesized] = STATE(5819), + [sym_val_range] = STATE(7109), + [sym__val_range] = STATE(7906), + [sym_val_nothing] = STATE(7164), + [sym_val_bool] = STATE(6540), + [sym_val_variable] = STATE(5826), + [sym_val_number] = STATE(7164), + [sym__val_number_decimal] = STATE(5383), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(7164), + [sym_val_filesize] = STATE(7164), + [sym_val_binary] = STATE(7164), + [sym_val_string] = STATE(7164), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_table] = STATE(7164), + [sym_unquoted] = STATE(7176), + [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym_comment] = STATE(1242), + [aux_sym_ctrl_match_repeat1] = STATE(1231), + [anon_sym_LBRACK] = ACTIONS(3589), + [anon_sym_LPAREN] = ACTIONS(3591), + [anon_sym_DOLLAR] = ACTIONS(3593), + [anon_sym_LBRACE] = ACTIONS(3595), + [anon_sym__] = ACTIONS(3599), + [anon_sym_DOT_DOT] = ACTIONS(3601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), + [anon_sym_DOT_DOT_LT] = ACTIONS(3603), + [anon_sym_null] = ACTIONS(3605), + [anon_sym_true] = ACTIONS(3607), + [anon_sym_false] = ACTIONS(3607), + [aux_sym__val_number_decimal_token1] = ACTIONS(3609), + [aux_sym__val_number_decimal_token2] = ACTIONS(3611), + [aux_sym__val_number_decimal_token3] = ACTIONS(3613), + [aux_sym__val_number_decimal_token4] = ACTIONS(3615), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3645), - [aux_sym__val_number_token5] = ACTIONS(3645), - [aux_sym__val_number_token6] = ACTIONS(3645), + [aux_sym__val_number_token4] = ACTIONS(3617), + [aux_sym__val_number_token5] = ACTIONS(3617), + [aux_sym__val_number_token6] = ACTIONS(3617), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3647), + [sym_val_date] = ACTIONS(3619), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1239] = { - [sym_comment] = STATE(1239), - [anon_sym_STAR_STAR] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1763), - [anon_sym_SLASH] = ACTIONS(1763), - [anon_sym_mod] = ACTIONS(1765), - [anon_sym_SLASH_SLASH] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_bit_DASHshl] = ACTIONS(1765), - [anon_sym_bit_DASHshr] = ACTIONS(1765), - [anon_sym_EQ_TILDE] = ACTIONS(1765), - [anon_sym_BANG_TILDE] = ACTIONS(1765), - [anon_sym_bit_DASHand] = ACTIONS(1765), - [anon_sym_bit_DASHxor] = ACTIONS(1765), - [anon_sym_bit_DASHor] = ACTIONS(1765), - [anon_sym_and] = ACTIONS(1765), - [anon_sym_xor] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), - [anon_sym_in] = ACTIONS(1765), - [anon_sym_not_DASHin] = ACTIONS(1765), - [anon_sym_starts_DASHwith] = ACTIONS(1765), - [anon_sym_ends_DASHwith] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1765), - [anon_sym_BANG_EQ] = ACTIONS(1765), - [anon_sym_LT] = ACTIONS(1763), - [anon_sym_LT_EQ] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1765), - [aux_sym_cmd_identifier_token41] = ACTIONS(1763), - [sym__newline] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_err_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_GT_PIPE] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), - [anon_sym_GT2] = ACTIONS(1763), - [anon_sym_DASH2] = ACTIONS(1763), - [anon_sym_in2] = ACTIONS(1763), - [anon_sym_STAR2] = ACTIONS(1763), - [anon_sym_and2] = ACTIONS(1763), - [anon_sym_xor2] = ACTIONS(1763), - [anon_sym_or2] = ACTIONS(1763), - [anon_sym_not_DASHin2] = ACTIONS(1763), - [anon_sym_starts_DASHwith2] = ACTIONS(1763), - [anon_sym_ends_DASHwith2] = ACTIONS(1763), - [anon_sym_EQ_EQ2] = ACTIONS(1763), - [anon_sym_BANG_EQ2] = ACTIONS(1763), - [anon_sym_LT2] = ACTIONS(1763), - [anon_sym_LT_EQ2] = ACTIONS(1763), - [anon_sym_GT_EQ2] = ACTIONS(1763), - [anon_sym_EQ_TILDE2] = ACTIONS(1763), - [anon_sym_BANG_TILDE2] = ACTIONS(1763), - [anon_sym_STAR_STAR2] = ACTIONS(1763), - [anon_sym_PLUS_PLUS2] = ACTIONS(1763), - [anon_sym_SLASH2] = ACTIONS(1763), - [anon_sym_mod2] = ACTIONS(1763), - [anon_sym_SLASH_SLASH2] = ACTIONS(1763), - [anon_sym_PLUS2] = ACTIONS(1763), - [anon_sym_bit_DASHshl2] = ACTIONS(1763), - [anon_sym_bit_DASHshr2] = ACTIONS(1763), - [anon_sym_bit_DASHand2] = ACTIONS(1763), - [anon_sym_bit_DASHxor2] = ACTIONS(1763), - [anon_sym_bit_DASHor2] = ACTIONS(1763), - [anon_sym_DOT_DOT2] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), - [sym_filesize_unit] = ACTIONS(1763), - [sym_duration_unit] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(3), - }, - [1240] = { - [sym_match_arm] = STATE(6937), - [sym_default_arm] = STATE(6937), - [sym_match_pattern] = STATE(7608), - [sym__match_pattern] = STATE(6119), - [sym__match_pattern_expression] = STATE(6912), - [sym__match_pattern_value] = STATE(6932), - [sym__match_pattern_list] = STATE(6972), - [sym__match_pattern_record] = STATE(6995), - [sym_expr_parenthesized] = STATE(5800), - [sym_val_range] = STATE(6932), - [sym__val_range] = STATE(7572), - [sym_val_nothing] = STATE(7043), - [sym_val_bool] = STATE(6380), - [sym_val_variable] = STATE(5810), - [sym_val_number] = STATE(7043), - [sym__val_number_decimal] = STATE(5472), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(7043), - [sym_val_filesize] = STATE(7043), - [sym_val_binary] = STATE(7043), - [sym_val_string] = STATE(7043), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_table] = STATE(7043), - [sym_unquoted] = STATE(7086), - [sym__unquoted_anonymous_prefix] = STATE(7585), - [sym_comment] = STATE(1240), - [aux_sym_ctrl_match_repeat1] = STATE(1235), - [anon_sym_LBRACK] = ACTIONS(3617), - [anon_sym_LPAREN] = ACTIONS(3619), - [anon_sym_DOLLAR] = ACTIONS(3621), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym__] = ACTIONS(3627), - [anon_sym_DOT_DOT] = ACTIONS(3629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3631), - [anon_sym_DOT_DOT_LT] = ACTIONS(3631), - [anon_sym_null] = ACTIONS(3633), - [anon_sym_true] = ACTIONS(3635), - [anon_sym_false] = ACTIONS(3635), - [aux_sym__val_number_decimal_token1] = ACTIONS(3637), - [aux_sym__val_number_decimal_token2] = ACTIONS(3639), - [aux_sym__val_number_decimal_token3] = ACTIONS(3641), - [aux_sym__val_number_decimal_token4] = ACTIONS(3643), + [1243] = { + [sym_match_arm] = STATE(7313), + [sym_default_arm] = STATE(7313), + [sym_match_pattern] = STATE(7855), + [sym__match_pattern] = STATE(6042), + [sym__match_pattern_expression] = STATE(7095), + [sym__match_pattern_value] = STATE(7109), + [sym__match_pattern_list] = STATE(7114), + [sym__match_pattern_record] = STATE(7148), + [sym_expr_parenthesized] = STATE(5819), + [sym_val_range] = STATE(7109), + [sym__val_range] = STATE(7906), + [sym_val_nothing] = STATE(7164), + [sym_val_bool] = STATE(6540), + [sym_val_variable] = STATE(5826), + [sym_val_number] = STATE(7164), + [sym__val_number_decimal] = STATE(5383), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(7164), + [sym_val_filesize] = STATE(7164), + [sym_val_binary] = STATE(7164), + [sym_val_string] = STATE(7164), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_table] = STATE(7164), + [sym_unquoted] = STATE(7176), + [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym_comment] = STATE(1243), + [aux_sym_ctrl_match_repeat1] = STATE(1231), + [anon_sym_LBRACK] = ACTIONS(3589), + [anon_sym_LPAREN] = ACTIONS(3591), + [anon_sym_DOLLAR] = ACTIONS(3593), + [anon_sym_LBRACE] = ACTIONS(3595), + [anon_sym__] = ACTIONS(3599), + [anon_sym_DOT_DOT] = ACTIONS(3601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), + [anon_sym_DOT_DOT_LT] = ACTIONS(3603), + [anon_sym_null] = ACTIONS(3605), + [anon_sym_true] = ACTIONS(3607), + [anon_sym_false] = ACTIONS(3607), + [aux_sym__val_number_decimal_token1] = ACTIONS(3609), + [aux_sym__val_number_decimal_token2] = ACTIONS(3611), + [aux_sym__val_number_decimal_token3] = ACTIONS(3613), + [aux_sym__val_number_decimal_token4] = ACTIONS(3615), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3645), - [aux_sym__val_number_token5] = ACTIONS(3645), - [aux_sym__val_number_token6] = ACTIONS(3645), + [aux_sym__val_number_token4] = ACTIONS(3617), + [aux_sym__val_number_token5] = ACTIONS(3617), + [aux_sym__val_number_token6] = ACTIONS(3617), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3647), + [sym_val_date] = ACTIONS(3619), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1241] = { - [sym_match_arm] = STATE(6990), - [sym_default_arm] = STATE(6990), - [sym_match_pattern] = STATE(7608), - [sym__match_pattern] = STATE(6119), - [sym__match_pattern_expression] = STATE(6912), - [sym__match_pattern_value] = STATE(6932), - [sym__match_pattern_list] = STATE(6972), - [sym__match_pattern_record] = STATE(6995), - [sym_expr_parenthesized] = STATE(5800), - [sym_val_range] = STATE(6932), - [sym__val_range] = STATE(7572), - [sym_val_nothing] = STATE(7043), - [sym_val_bool] = STATE(6380), - [sym_val_variable] = STATE(5810), - [sym_val_number] = STATE(7043), - [sym__val_number_decimal] = STATE(5472), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(7043), - [sym_val_filesize] = STATE(7043), - [sym_val_binary] = STATE(7043), - [sym_val_string] = STATE(7043), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_table] = STATE(7043), - [sym_unquoted] = STATE(7086), - [sym__unquoted_anonymous_prefix] = STATE(7585), - [sym_comment] = STATE(1241), - [aux_sym_ctrl_match_repeat1] = STATE(1235), - [anon_sym_LBRACK] = ACTIONS(3617), - [anon_sym_LPAREN] = ACTIONS(3619), - [anon_sym_DOLLAR] = ACTIONS(3621), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym__] = ACTIONS(3627), - [anon_sym_DOT_DOT] = ACTIONS(3629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3631), - [anon_sym_DOT_DOT_LT] = ACTIONS(3631), - [anon_sym_null] = ACTIONS(3633), - [anon_sym_true] = ACTIONS(3635), - [anon_sym_false] = ACTIONS(3635), - [aux_sym__val_number_decimal_token1] = ACTIONS(3637), - [aux_sym__val_number_decimal_token2] = ACTIONS(3639), - [aux_sym__val_number_decimal_token3] = ACTIONS(3641), - [aux_sym__val_number_decimal_token4] = ACTIONS(3643), + [1244] = { + [sym_match_arm] = STATE(7318), + [sym_default_arm] = STATE(7318), + [sym_match_pattern] = STATE(7855), + [sym__match_pattern] = STATE(6042), + [sym__match_pattern_expression] = STATE(7095), + [sym__match_pattern_value] = STATE(7109), + [sym__match_pattern_list] = STATE(7114), + [sym__match_pattern_record] = STATE(7148), + [sym_expr_parenthesized] = STATE(5819), + [sym_val_range] = STATE(7109), + [sym__val_range] = STATE(7906), + [sym_val_nothing] = STATE(7164), + [sym_val_bool] = STATE(6540), + [sym_val_variable] = STATE(5826), + [sym_val_number] = STATE(7164), + [sym__val_number_decimal] = STATE(5383), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(7164), + [sym_val_filesize] = STATE(7164), + [sym_val_binary] = STATE(7164), + [sym_val_string] = STATE(7164), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_table] = STATE(7164), + [sym_unquoted] = STATE(7176), + [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym_comment] = STATE(1244), + [aux_sym_ctrl_match_repeat1] = STATE(1231), + [anon_sym_LBRACK] = ACTIONS(3589), + [anon_sym_LPAREN] = ACTIONS(3591), + [anon_sym_DOLLAR] = ACTIONS(3593), + [anon_sym_LBRACE] = ACTIONS(3595), + [anon_sym__] = ACTIONS(3599), + [anon_sym_DOT_DOT] = ACTIONS(3601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), + [anon_sym_DOT_DOT_LT] = ACTIONS(3603), + [anon_sym_null] = ACTIONS(3605), + [anon_sym_true] = ACTIONS(3607), + [anon_sym_false] = ACTIONS(3607), + [aux_sym__val_number_decimal_token1] = ACTIONS(3609), + [aux_sym__val_number_decimal_token2] = ACTIONS(3611), + [aux_sym__val_number_decimal_token3] = ACTIONS(3613), + [aux_sym__val_number_decimal_token4] = ACTIONS(3615), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3645), - [aux_sym__val_number_token5] = ACTIONS(3645), - [aux_sym__val_number_token6] = ACTIONS(3645), + [aux_sym__val_number_token4] = ACTIONS(3617), + [aux_sym__val_number_token5] = ACTIONS(3617), + [aux_sym__val_number_token6] = ACTIONS(3617), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3647), + [sym_val_date] = ACTIONS(3619), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1242] = { - [sym_expr_parenthesized] = STATE(6596), - [sym_val_range] = STATE(7953), - [sym__val_range] = STATE(7572), - [sym__value] = STATE(7953), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(7458), - [sym_val_variable] = STATE(3658), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(5700), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(4492), - [sym__str_double_quotes] = STATE(4492), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(7954), - [sym__unquoted_anonymous_prefix] = STATE(7585), - [sym_comment] = STATE(1242), - [anon_sym_LBRACK] = ACTIONS(3983), - [anon_sym_LPAREN] = ACTIONS(3619), - [anon_sym_DOLLAR] = ACTIONS(3985), - [anon_sym_LBRACE] = ACTIONS(3987), - [anon_sym_DOT_DOT] = ACTIONS(3989), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3991), - [anon_sym_DOT_DOT_LT] = ACTIONS(3991), - [anon_sym_null] = ACTIONS(3993), - [anon_sym_true] = ACTIONS(3995), - [anon_sym_false] = ACTIONS(3995), - [aux_sym__val_number_decimal_token1] = ACTIONS(3997), - [aux_sym__val_number_decimal_token2] = ACTIONS(3999), - [aux_sym__val_number_decimal_token3] = ACTIONS(4001), - [aux_sym__val_number_decimal_token4] = ACTIONS(4003), + [1245] = { + [sym_comment] = STATE(1245), + [anon_sym_STAR_STAR] = ACTIONS(3071), + [anon_sym_PLUS_PLUS] = ACTIONS(3071), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_SLASH] = ACTIONS(3073), + [anon_sym_mod] = ACTIONS(3071), + [anon_sym_SLASH_SLASH] = ACTIONS(3071), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_DASH] = ACTIONS(3071), + [anon_sym_bit_DASHshl] = ACTIONS(3071), + [anon_sym_bit_DASHshr] = ACTIONS(3071), + [anon_sym_EQ_TILDE] = ACTIONS(3071), + [anon_sym_BANG_TILDE] = ACTIONS(3071), + [anon_sym_bit_DASHand] = ACTIONS(3071), + [anon_sym_bit_DASHxor] = ACTIONS(3071), + [anon_sym_bit_DASHor] = ACTIONS(3071), + [anon_sym_and] = ACTIONS(3071), + [anon_sym_xor] = ACTIONS(3071), + [anon_sym_or] = ACTIONS(3071), + [anon_sym_in] = ACTIONS(3071), + [anon_sym_not_DASHin] = ACTIONS(3071), + [anon_sym_starts_DASHwith] = ACTIONS(3071), + [anon_sym_ends_DASHwith] = ACTIONS(3071), + [anon_sym_EQ_EQ] = ACTIONS(3071), + [anon_sym_BANG_EQ] = ACTIONS(3071), + [anon_sym_LT] = ACTIONS(3073), + [anon_sym_LT_EQ] = ACTIONS(3071), + [anon_sym_GT] = ACTIONS(3073), + [anon_sym_GT_EQ] = ACTIONS(3071), + [aux_sym_cmd_identifier_token41] = ACTIONS(3075), + [sym__newline] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_err_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_GT_PIPE] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), + [anon_sym_GT2] = ACTIONS(1707), + [anon_sym_DASH2] = ACTIONS(1707), + [anon_sym_in2] = ACTIONS(1707), + [anon_sym_STAR2] = ACTIONS(1707), + [anon_sym_and2] = ACTIONS(1707), + [anon_sym_xor2] = ACTIONS(1707), + [anon_sym_or2] = ACTIONS(1707), + [anon_sym_not_DASHin2] = ACTIONS(1707), + [anon_sym_starts_DASHwith2] = ACTIONS(1707), + [anon_sym_ends_DASHwith2] = ACTIONS(1707), + [anon_sym_EQ_EQ2] = ACTIONS(1707), + [anon_sym_BANG_EQ2] = ACTIONS(1707), + [anon_sym_LT2] = ACTIONS(1707), + [anon_sym_LT_EQ2] = ACTIONS(1707), + [anon_sym_GT_EQ2] = ACTIONS(1707), + [anon_sym_EQ_TILDE2] = ACTIONS(1707), + [anon_sym_BANG_TILDE2] = ACTIONS(1707), + [anon_sym_STAR_STAR2] = ACTIONS(1707), + [anon_sym_PLUS_PLUS2] = ACTIONS(1707), + [anon_sym_SLASH2] = ACTIONS(1707), + [anon_sym_mod2] = ACTIONS(1707), + [anon_sym_SLASH_SLASH2] = ACTIONS(1707), + [anon_sym_PLUS2] = ACTIONS(1707), + [anon_sym_bit_DASHshl2] = ACTIONS(1707), + [anon_sym_bit_DASHshr2] = ACTIONS(1707), + [anon_sym_bit_DASHand2] = ACTIONS(1707), + [anon_sym_bit_DASHxor2] = ACTIONS(1707), + [anon_sym_bit_DASHor2] = ACTIONS(1707), + [anon_sym_DOT_DOT2] = ACTIONS(2900), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2902), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2902), + [sym_filesize_unit] = ACTIONS(4013), + [sym_duration_unit] = ACTIONS(4015), + [anon_sym_POUND] = ACTIONS(3), + }, + [1246] = { + [sym_comment] = STATE(1246), + [anon_sym_STAR_STAR] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_mod] = ACTIONS(1587), + [anon_sym_SLASH_SLASH] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_bit_DASHshl] = ACTIONS(1587), + [anon_sym_bit_DASHshr] = ACTIONS(1587), + [anon_sym_EQ_TILDE] = ACTIONS(1587), + [anon_sym_BANG_TILDE] = ACTIONS(1587), + [anon_sym_bit_DASHand] = ACTIONS(1587), + [anon_sym_bit_DASHxor] = ACTIONS(1587), + [anon_sym_bit_DASHor] = ACTIONS(1587), + [anon_sym_and] = ACTIONS(1587), + [anon_sym_xor] = ACTIONS(1587), + [anon_sym_or] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(1587), + [anon_sym_not_DASHin] = ACTIONS(1587), + [anon_sym_starts_DASHwith] = ACTIONS(1587), + [anon_sym_ends_DASHwith] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(1587), + [anon_sym_BANG_EQ] = ACTIONS(1587), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_LT_EQ] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1587), + [aux_sym_cmd_identifier_token41] = ACTIONS(1585), + [sym__newline] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_err_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_GT_PIPE] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), + [anon_sym_GT2] = ACTIONS(1585), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_in2] = ACTIONS(1585), + [anon_sym_STAR2] = ACTIONS(1585), + [anon_sym_and2] = ACTIONS(1585), + [anon_sym_xor2] = ACTIONS(1585), + [anon_sym_or2] = ACTIONS(1585), + [anon_sym_not_DASHin2] = ACTIONS(1585), + [anon_sym_starts_DASHwith2] = ACTIONS(1585), + [anon_sym_ends_DASHwith2] = ACTIONS(1585), + [anon_sym_EQ_EQ2] = ACTIONS(1585), + [anon_sym_BANG_EQ2] = ACTIONS(1585), + [anon_sym_LT2] = ACTIONS(1585), + [anon_sym_LT_EQ2] = ACTIONS(1585), + [anon_sym_GT_EQ2] = ACTIONS(1585), + [anon_sym_EQ_TILDE2] = ACTIONS(1585), + [anon_sym_BANG_TILDE2] = ACTIONS(1585), + [anon_sym_STAR_STAR2] = ACTIONS(1585), + [anon_sym_PLUS_PLUS2] = ACTIONS(1585), + [anon_sym_SLASH2] = ACTIONS(1585), + [anon_sym_mod2] = ACTIONS(1585), + [anon_sym_SLASH_SLASH2] = ACTIONS(1585), + [anon_sym_PLUS2] = ACTIONS(1585), + [anon_sym_bit_DASHshl2] = ACTIONS(1585), + [anon_sym_bit_DASHshr2] = ACTIONS(1585), + [anon_sym_bit_DASHand2] = ACTIONS(1585), + [anon_sym_bit_DASHxor2] = ACTIONS(1585), + [anon_sym_bit_DASHor2] = ACTIONS(1585), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [sym_filesize_unit] = ACTIONS(1585), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_POUND] = ACTIONS(3), + }, + [1247] = { + [sym_expr_parenthesized] = STATE(6746), + [sym_val_range] = STATE(8026), + [sym__val_range] = STATE(7906), + [sym__value] = STATE(8026), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(7502), + [sym_val_variable] = STATE(3657), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(5698), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(4332), + [sym__str_double_quotes] = STATE(4332), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(8028), + [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym_comment] = STATE(1247), + [anon_sym_LBRACK] = ACTIONS(3975), + [anon_sym_LPAREN] = ACTIONS(3591), + [anon_sym_DOLLAR] = ACTIONS(3977), + [anon_sym_LBRACE] = ACTIONS(3979), + [anon_sym_DOT_DOT] = ACTIONS(3981), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3983), + [anon_sym_DOT_DOT_LT] = ACTIONS(3983), + [anon_sym_null] = ACTIONS(3985), + [anon_sym_true] = ACTIONS(3987), + [anon_sym_false] = ACTIONS(3987), + [aux_sym__val_number_decimal_token1] = ACTIONS(3989), + [aux_sym__val_number_decimal_token2] = ACTIONS(3991), + [aux_sym__val_number_decimal_token3] = ACTIONS(3993), + [aux_sym__val_number_decimal_token4] = ACTIONS(3995), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(4005), - [aux_sym__val_number_token5] = ACTIONS(4005), - [aux_sym__val_number_token6] = ACTIONS(4005), + [aux_sym__val_number_token4] = ACTIONS(3997), + [aux_sym__val_number_token5] = ACTIONS(3997), + [aux_sym__val_number_token6] = ACTIONS(3997), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(4007), - [anon_sym_DQUOTE] = ACTIONS(4009), - [sym__str_single_quotes] = ACTIONS(4011), - [sym__str_back_ticks] = ACTIONS(4011), + [sym_val_date] = ACTIONS(3999), + [anon_sym_DQUOTE] = ACTIONS(4001), + [sym__str_single_quotes] = ACTIONS(4003), + [sym__str_back_ticks] = ACTIONS(4003), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_record_entry_token1] = ACTIONS(3363), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4013), + [sym_raw_string_begin] = ACTIONS(4005), }, - [1243] = { - [sym_match_arm] = STATE(7145), - [sym_default_arm] = STATE(7145), - [sym_match_pattern] = STATE(7608), - [sym__match_pattern] = STATE(6119), - [sym__match_pattern_expression] = STATE(6912), - [sym__match_pattern_value] = STATE(6932), - [sym__match_pattern_list] = STATE(6972), - [sym__match_pattern_record] = STATE(6995), - [sym_expr_parenthesized] = STATE(5800), - [sym_val_range] = STATE(6932), - [sym__val_range] = STATE(7572), - [sym_val_nothing] = STATE(7043), - [sym_val_bool] = STATE(6380), - [sym_val_variable] = STATE(5810), - [sym_val_number] = STATE(7043), - [sym__val_number_decimal] = STATE(5472), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(7043), - [sym_val_filesize] = STATE(7043), - [sym_val_binary] = STATE(7043), - [sym_val_string] = STATE(7043), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_table] = STATE(7043), - [sym_unquoted] = STATE(7086), - [sym__unquoted_anonymous_prefix] = STATE(7585), - [sym_comment] = STATE(1243), - [aux_sym_ctrl_match_repeat1] = STATE(1235), - [anon_sym_LBRACK] = ACTIONS(3617), - [anon_sym_LPAREN] = ACTIONS(3619), - [anon_sym_DOLLAR] = ACTIONS(3621), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym__] = ACTIONS(3627), - [anon_sym_DOT_DOT] = ACTIONS(3629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3631), - [anon_sym_DOT_DOT_LT] = ACTIONS(3631), - [anon_sym_null] = ACTIONS(3633), - [anon_sym_true] = ACTIONS(3635), - [anon_sym_false] = ACTIONS(3635), - [aux_sym__val_number_decimal_token1] = ACTIONS(3637), - [aux_sym__val_number_decimal_token2] = ACTIONS(3639), - [aux_sym__val_number_decimal_token3] = ACTIONS(3641), - [aux_sym__val_number_decimal_token4] = ACTIONS(3643), + [1248] = { + [sym_match_arm] = STATE(7243), + [sym_default_arm] = STATE(7243), + [sym_match_pattern] = STATE(7855), + [sym__match_pattern] = STATE(6042), + [sym__match_pattern_expression] = STATE(7095), + [sym__match_pattern_value] = STATE(7109), + [sym__match_pattern_list] = STATE(7114), + [sym__match_pattern_record] = STATE(7148), + [sym_expr_parenthesized] = STATE(5819), + [sym_val_range] = STATE(7109), + [sym__val_range] = STATE(7906), + [sym_val_nothing] = STATE(7164), + [sym_val_bool] = STATE(6540), + [sym_val_variable] = STATE(5826), + [sym_val_number] = STATE(7164), + [sym__val_number_decimal] = STATE(5383), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(7164), + [sym_val_filesize] = STATE(7164), + [sym_val_binary] = STATE(7164), + [sym_val_string] = STATE(7164), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_table] = STATE(7164), + [sym_unquoted] = STATE(7176), + [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym_comment] = STATE(1248), + [aux_sym_ctrl_match_repeat1] = STATE(1231), + [anon_sym_LBRACK] = ACTIONS(3589), + [anon_sym_LPAREN] = ACTIONS(3591), + [anon_sym_DOLLAR] = ACTIONS(3593), + [anon_sym_LBRACE] = ACTIONS(3595), + [anon_sym__] = ACTIONS(3599), + [anon_sym_DOT_DOT] = ACTIONS(3601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), + [anon_sym_DOT_DOT_LT] = ACTIONS(3603), + [anon_sym_null] = ACTIONS(3605), + [anon_sym_true] = ACTIONS(3607), + [anon_sym_false] = ACTIONS(3607), + [aux_sym__val_number_decimal_token1] = ACTIONS(3609), + [aux_sym__val_number_decimal_token2] = ACTIONS(3611), + [aux_sym__val_number_decimal_token3] = ACTIONS(3613), + [aux_sym__val_number_decimal_token4] = ACTIONS(3615), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3645), - [aux_sym__val_number_token5] = ACTIONS(3645), - [aux_sym__val_number_token6] = ACTIONS(3645), + [aux_sym__val_number_token4] = ACTIONS(3617), + [aux_sym__val_number_token5] = ACTIONS(3617), + [aux_sym__val_number_token6] = ACTIONS(3617), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3647), + [sym_val_date] = ACTIONS(3619), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1244] = { - [sym_comment] = STATE(1244), - [anon_sym_STAR_STAR] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_SLASH_SLASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_bit_DASHshl] = ACTIONS(1609), - [anon_sym_bit_DASHshr] = ACTIONS(1609), - [anon_sym_EQ_TILDE] = ACTIONS(1609), - [anon_sym_BANG_TILDE] = ACTIONS(1609), - [anon_sym_bit_DASHand] = ACTIONS(1609), - [anon_sym_bit_DASHxor] = ACTIONS(1609), - [anon_sym_bit_DASHor] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(1609), - [anon_sym_not_DASHin] = ACTIONS(1609), - [anon_sym_starts_DASHwith] = ACTIONS(1609), - [anon_sym_ends_DASHwith] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1609), - [anon_sym_BANG_EQ] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1609), - [aux_sym_cmd_identifier_token41] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(3759), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(3), - }, - [1245] = { - [sym_comment] = STATE(1245), - [anon_sym_STAR_STAR] = ACTIONS(1675), - [anon_sym_PLUS_PLUS] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1673), - [anon_sym_mod] = ACTIONS(1675), - [anon_sym_SLASH_SLASH] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_bit_DASHshl] = ACTIONS(1675), - [anon_sym_bit_DASHshr] = ACTIONS(1675), - [anon_sym_EQ_TILDE] = ACTIONS(1675), - [anon_sym_BANG_TILDE] = ACTIONS(1675), - [anon_sym_bit_DASHand] = ACTIONS(1675), - [anon_sym_bit_DASHxor] = ACTIONS(1675), - [anon_sym_bit_DASHor] = ACTIONS(1675), - [anon_sym_and] = ACTIONS(1675), - [anon_sym_xor] = ACTIONS(1675), - [anon_sym_or] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [anon_sym_not_DASHin] = ACTIONS(1675), - [anon_sym_starts_DASHwith] = ACTIONS(1675), - [anon_sym_ends_DASHwith] = ACTIONS(1675), - [anon_sym_EQ_EQ] = ACTIONS(1675), - [anon_sym_BANG_EQ] = ACTIONS(1675), - [anon_sym_LT] = ACTIONS(1673), - [anon_sym_LT_EQ] = ACTIONS(1675), - [anon_sym_GT] = ACTIONS(1673), - [anon_sym_GT_EQ] = ACTIONS(1675), - [aux_sym_cmd_identifier_token41] = ACTIONS(1673), - [sym__newline] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1673), - [anon_sym_err_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_GT_PIPE] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_in2] = ACTIONS(1673), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1673), - [anon_sym_xor2] = ACTIONS(1673), - [anon_sym_or2] = ACTIONS(1673), - [anon_sym_not_DASHin2] = ACTIONS(1673), - [anon_sym_starts_DASHwith2] = ACTIONS(1673), - [anon_sym_ends_DASHwith2] = ACTIONS(1673), - [anon_sym_EQ_EQ2] = ACTIONS(1673), - [anon_sym_BANG_EQ2] = ACTIONS(1673), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1673), - [anon_sym_GT_EQ2] = ACTIONS(1673), - [anon_sym_EQ_TILDE2] = ACTIONS(1673), - [anon_sym_BANG_TILDE2] = ACTIONS(1673), - [anon_sym_STAR_STAR2] = ACTIONS(1673), - [anon_sym_PLUS_PLUS2] = ACTIONS(1673), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1673), - [anon_sym_SLASH_SLASH2] = ACTIONS(1673), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1673), - [anon_sym_bit_DASHshr2] = ACTIONS(1673), - [anon_sym_bit_DASHand2] = ACTIONS(1673), - [anon_sym_bit_DASHxor2] = ACTIONS(1673), - [anon_sym_bit_DASHor2] = ACTIONS(1673), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [aux_sym__immediate_decimal_token2] = ACTIONS(4015), - [sym_filesize_unit] = ACTIONS(1673), - [sym_duration_unit] = ACTIONS(1675), - [anon_sym_POUND] = ACTIONS(3), - }, - [1246] = { - [sym_match_arm] = STATE(7104), - [sym_default_arm] = STATE(7104), - [sym_match_pattern] = STATE(7608), - [sym__match_pattern] = STATE(6119), - [sym__match_pattern_expression] = STATE(6912), - [sym__match_pattern_value] = STATE(6932), - [sym__match_pattern_list] = STATE(6972), - [sym__match_pattern_record] = STATE(6995), - [sym_expr_parenthesized] = STATE(5800), - [sym_val_range] = STATE(6932), - [sym__val_range] = STATE(7572), - [sym_val_nothing] = STATE(7043), - [sym_val_bool] = STATE(6380), - [sym_val_variable] = STATE(5810), - [sym_val_number] = STATE(7043), - [sym__val_number_decimal] = STATE(5472), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(7043), - [sym_val_filesize] = STATE(7043), - [sym_val_binary] = STATE(7043), - [sym_val_string] = STATE(7043), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_table] = STATE(7043), - [sym_unquoted] = STATE(7086), - [sym__unquoted_anonymous_prefix] = STATE(7585), - [sym_comment] = STATE(1246), - [aux_sym_ctrl_match_repeat1] = STATE(1235), - [anon_sym_LBRACK] = ACTIONS(3617), - [anon_sym_LPAREN] = ACTIONS(3619), - [anon_sym_DOLLAR] = ACTIONS(3621), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym__] = ACTIONS(3627), - [anon_sym_DOT_DOT] = ACTIONS(3629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3631), - [anon_sym_DOT_DOT_LT] = ACTIONS(3631), - [anon_sym_null] = ACTIONS(3633), - [anon_sym_true] = ACTIONS(3635), - [anon_sym_false] = ACTIONS(3635), - [aux_sym__val_number_decimal_token1] = ACTIONS(3637), - [aux_sym__val_number_decimal_token2] = ACTIONS(3639), - [aux_sym__val_number_decimal_token3] = ACTIONS(3641), - [aux_sym__val_number_decimal_token4] = ACTIONS(3643), + [1249] = { + [sym_match_arm] = STATE(7246), + [sym_default_arm] = STATE(7246), + [sym_match_pattern] = STATE(7855), + [sym__match_pattern] = STATE(6042), + [sym__match_pattern_expression] = STATE(7095), + [sym__match_pattern_value] = STATE(7109), + [sym__match_pattern_list] = STATE(7114), + [sym__match_pattern_record] = STATE(7148), + [sym_expr_parenthesized] = STATE(5819), + [sym_val_range] = STATE(7109), + [sym__val_range] = STATE(7906), + [sym_val_nothing] = STATE(7164), + [sym_val_bool] = STATE(6540), + [sym_val_variable] = STATE(5826), + [sym_val_number] = STATE(7164), + [sym__val_number_decimal] = STATE(5383), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(7164), + [sym_val_filesize] = STATE(7164), + [sym_val_binary] = STATE(7164), + [sym_val_string] = STATE(7164), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_table] = STATE(7164), + [sym_unquoted] = STATE(7176), + [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym_comment] = STATE(1249), + [aux_sym_ctrl_match_repeat1] = STATE(1231), + [anon_sym_LBRACK] = ACTIONS(3589), + [anon_sym_LPAREN] = ACTIONS(3591), + [anon_sym_DOLLAR] = ACTIONS(3593), + [anon_sym_LBRACE] = ACTIONS(3595), + [anon_sym__] = ACTIONS(3599), + [anon_sym_DOT_DOT] = ACTIONS(3601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), + [anon_sym_DOT_DOT_LT] = ACTIONS(3603), + [anon_sym_null] = ACTIONS(3605), + [anon_sym_true] = ACTIONS(3607), + [anon_sym_false] = ACTIONS(3607), + [aux_sym__val_number_decimal_token1] = ACTIONS(3609), + [aux_sym__val_number_decimal_token2] = ACTIONS(3611), + [aux_sym__val_number_decimal_token3] = ACTIONS(3613), + [aux_sym__val_number_decimal_token4] = ACTIONS(3615), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3645), - [aux_sym__val_number_token5] = ACTIONS(3645), - [aux_sym__val_number_token6] = ACTIONS(3645), + [aux_sym__val_number_token4] = ACTIONS(3617), + [aux_sym__val_number_token5] = ACTIONS(3617), + [aux_sym__val_number_token6] = ACTIONS(3617), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3647), + [sym_val_date] = ACTIONS(3619), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1247] = { - [sym_comment] = STATE(1247), - [anon_sym_STAR_STAR] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_SLASH_SLASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_bit_DASHshl] = ACTIONS(1609), - [anon_sym_bit_DASHshr] = ACTIONS(1609), - [anon_sym_EQ_TILDE] = ACTIONS(1609), - [anon_sym_BANG_TILDE] = ACTIONS(1609), - [anon_sym_bit_DASHand] = ACTIONS(1609), - [anon_sym_bit_DASHxor] = ACTIONS(1609), - [anon_sym_bit_DASHor] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(1609), - [anon_sym_not_DASHin] = ACTIONS(1609), - [anon_sym_starts_DASHwith] = ACTIONS(1609), - [anon_sym_ends_DASHwith] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1609), - [anon_sym_BANG_EQ] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1609), - [aux_sym_cmd_identifier_token41] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(3), - }, - [1248] = { - [sym_comment] = STATE(1248), - [anon_sym_STAR_STAR] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_SLASH] = ACTIONS(1621), - [anon_sym_mod] = ACTIONS(1623), - [anon_sym_SLASH_SLASH] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_bit_DASHshl] = ACTIONS(1623), - [anon_sym_bit_DASHshr] = ACTIONS(1623), - [anon_sym_EQ_TILDE] = ACTIONS(1623), - [anon_sym_BANG_TILDE] = ACTIONS(1623), - [anon_sym_bit_DASHand] = ACTIONS(1623), - [anon_sym_bit_DASHxor] = ACTIONS(1623), - [anon_sym_bit_DASHor] = ACTIONS(1623), - [anon_sym_and] = ACTIONS(1623), - [anon_sym_xor] = ACTIONS(1623), - [anon_sym_or] = ACTIONS(1623), - [anon_sym_in] = ACTIONS(1623), - [anon_sym_not_DASHin] = ACTIONS(1623), - [anon_sym_starts_DASHwith] = ACTIONS(1623), - [anon_sym_ends_DASHwith] = ACTIONS(1623), - [anon_sym_EQ_EQ] = ACTIONS(1623), - [anon_sym_BANG_EQ] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1621), - [anon_sym_LT_EQ] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1621), - [anon_sym_GT_EQ] = ACTIONS(1623), - [aux_sym_cmd_identifier_token41] = ACTIONS(1621), - [sym__newline] = ACTIONS(1621), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_PIPE] = ACTIONS(1621), - [anon_sym_err_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_GT_PIPE] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), - [anon_sym_GT2] = ACTIONS(1621), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_in2] = ACTIONS(1621), - [anon_sym_STAR2] = ACTIONS(1621), - [anon_sym_and2] = ACTIONS(1621), - [anon_sym_xor2] = ACTIONS(1621), - [anon_sym_or2] = ACTIONS(1621), - [anon_sym_not_DASHin2] = ACTIONS(1621), - [anon_sym_starts_DASHwith2] = ACTIONS(1621), - [anon_sym_ends_DASHwith2] = ACTIONS(1621), - [anon_sym_EQ_EQ2] = ACTIONS(1621), - [anon_sym_BANG_EQ2] = ACTIONS(1621), - [anon_sym_LT2] = ACTIONS(1621), - [anon_sym_LT_EQ2] = ACTIONS(1621), - [anon_sym_GT_EQ2] = ACTIONS(1621), - [anon_sym_EQ_TILDE2] = ACTIONS(1621), - [anon_sym_BANG_TILDE2] = ACTIONS(1621), - [anon_sym_STAR_STAR2] = ACTIONS(1621), - [anon_sym_PLUS_PLUS2] = ACTIONS(1621), - [anon_sym_SLASH2] = ACTIONS(1621), - [anon_sym_mod2] = ACTIONS(1621), - [anon_sym_SLASH_SLASH2] = ACTIONS(1621), - [anon_sym_PLUS2] = ACTIONS(1621), - [anon_sym_bit_DASHshl2] = ACTIONS(1621), - [anon_sym_bit_DASHshr2] = ACTIONS(1621), - [anon_sym_bit_DASHand2] = ACTIONS(1621), - [anon_sym_bit_DASHxor2] = ACTIONS(1621), - [anon_sym_bit_DASHor2] = ACTIONS(1621), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [sym_filesize_unit] = ACTIONS(1621), - [sym_duration_unit] = ACTIONS(1623), - [anon_sym_POUND] = ACTIONS(3), - }, - [1249] = { - [sym_comment] = STATE(1249), - [anon_sym_STAR_STAR] = ACTIONS(1675), - [anon_sym_PLUS_PLUS] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1673), - [anon_sym_mod] = ACTIONS(1675), - [anon_sym_SLASH_SLASH] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_bit_DASHshl] = ACTIONS(1675), - [anon_sym_bit_DASHshr] = ACTIONS(1675), - [anon_sym_EQ_TILDE] = ACTIONS(1675), - [anon_sym_BANG_TILDE] = ACTIONS(1675), - [anon_sym_bit_DASHand] = ACTIONS(1675), - [anon_sym_bit_DASHxor] = ACTIONS(1675), - [anon_sym_bit_DASHor] = ACTIONS(1675), - [anon_sym_and] = ACTIONS(1675), - [anon_sym_xor] = ACTIONS(1675), - [anon_sym_or] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [anon_sym_not_DASHin] = ACTIONS(1675), - [anon_sym_starts_DASHwith] = ACTIONS(1675), - [anon_sym_ends_DASHwith] = ACTIONS(1675), - [anon_sym_EQ_EQ] = ACTIONS(1675), - [anon_sym_BANG_EQ] = ACTIONS(1675), - [anon_sym_LT] = ACTIONS(1673), - [anon_sym_LT_EQ] = ACTIONS(1675), - [anon_sym_GT] = ACTIONS(1673), - [anon_sym_GT_EQ] = ACTIONS(1675), - [aux_sym_cmd_identifier_token41] = ACTIONS(1673), - [sym__newline] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1673), - [anon_sym_err_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_GT_PIPE] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_in2] = ACTIONS(1673), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1673), - [anon_sym_xor2] = ACTIONS(1673), - [anon_sym_or2] = ACTIONS(1673), - [anon_sym_not_DASHin2] = ACTIONS(1673), - [anon_sym_starts_DASHwith2] = ACTIONS(1673), - [anon_sym_ends_DASHwith2] = ACTIONS(1673), - [anon_sym_EQ_EQ2] = ACTIONS(1673), - [anon_sym_BANG_EQ2] = ACTIONS(1673), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1673), - [anon_sym_GT_EQ2] = ACTIONS(1673), - [anon_sym_EQ_TILDE2] = ACTIONS(1673), - [anon_sym_BANG_TILDE2] = ACTIONS(1673), - [anon_sym_STAR_STAR2] = ACTIONS(1673), - [anon_sym_PLUS_PLUS2] = ACTIONS(1673), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1673), - [anon_sym_SLASH_SLASH2] = ACTIONS(1673), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1673), - [anon_sym_bit_DASHshr2] = ACTIONS(1673), - [anon_sym_bit_DASHand2] = ACTIONS(1673), - [anon_sym_bit_DASHxor2] = ACTIONS(1673), - [anon_sym_bit_DASHor2] = ACTIONS(1673), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [sym_filesize_unit] = ACTIONS(1673), - [sym_duration_unit] = ACTIONS(1675), - [anon_sym_POUND] = ACTIONS(3), - }, [1250] = { - [sym_match_arm] = STATE(7265), - [sym_default_arm] = STATE(7265), - [sym_match_pattern] = STATE(7608), - [sym__match_pattern] = STATE(6119), - [sym__match_pattern_expression] = STATE(6912), - [sym__match_pattern_value] = STATE(6932), - [sym__match_pattern_list] = STATE(6972), - [sym__match_pattern_record] = STATE(6995), - [sym_expr_parenthesized] = STATE(5800), - [sym_val_range] = STATE(6932), - [sym__val_range] = STATE(7572), - [sym_val_nothing] = STATE(7043), - [sym_val_bool] = STATE(6380), - [sym_val_variable] = STATE(5810), - [sym_val_number] = STATE(7043), - [sym__val_number_decimal] = STATE(5472), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(7043), - [sym_val_filesize] = STATE(7043), - [sym_val_binary] = STATE(7043), - [sym_val_string] = STATE(7043), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_table] = STATE(7043), - [sym_unquoted] = STATE(7086), - [sym__unquoted_anonymous_prefix] = STATE(7585), + [sym_match_arm] = STATE(7228), + [sym_default_arm] = STATE(7228), + [sym_match_pattern] = STATE(7855), + [sym__match_pattern] = STATE(6042), + [sym__match_pattern_expression] = STATE(7095), + [sym__match_pattern_value] = STATE(7109), + [sym__match_pattern_list] = STATE(7114), + [sym__match_pattern_record] = STATE(7148), + [sym_expr_parenthesized] = STATE(5819), + [sym_val_range] = STATE(7109), + [sym__val_range] = STATE(7906), + [sym_val_nothing] = STATE(7164), + [sym_val_bool] = STATE(6540), + [sym_val_variable] = STATE(5826), + [sym_val_number] = STATE(7164), + [sym__val_number_decimal] = STATE(5383), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(7164), + [sym_val_filesize] = STATE(7164), + [sym_val_binary] = STATE(7164), + [sym_val_string] = STATE(7164), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_table] = STATE(7164), + [sym_unquoted] = STATE(7176), + [sym__unquoted_anonymous_prefix] = STATE(7913), [sym_comment] = STATE(1250), - [aux_sym_ctrl_match_repeat1] = STATE(1235), - [anon_sym_LBRACK] = ACTIONS(3617), - [anon_sym_LPAREN] = ACTIONS(3619), - [anon_sym_DOLLAR] = ACTIONS(3621), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym__] = ACTIONS(3627), - [anon_sym_DOT_DOT] = ACTIONS(3629), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3631), - [anon_sym_DOT_DOT_LT] = ACTIONS(3631), - [anon_sym_null] = ACTIONS(3633), - [anon_sym_true] = ACTIONS(3635), - [anon_sym_false] = ACTIONS(3635), - [aux_sym__val_number_decimal_token1] = ACTIONS(3637), - [aux_sym__val_number_decimal_token2] = ACTIONS(3639), - [aux_sym__val_number_decimal_token3] = ACTIONS(3641), - [aux_sym__val_number_decimal_token4] = ACTIONS(3643), + [aux_sym_ctrl_match_repeat1] = STATE(1231), + [anon_sym_LBRACK] = ACTIONS(3589), + [anon_sym_LPAREN] = ACTIONS(3591), + [anon_sym_DOLLAR] = ACTIONS(3593), + [anon_sym_LBRACE] = ACTIONS(3595), + [anon_sym__] = ACTIONS(3599), + [anon_sym_DOT_DOT] = ACTIONS(3601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), + [anon_sym_DOT_DOT_LT] = ACTIONS(3603), + [anon_sym_null] = ACTIONS(3605), + [anon_sym_true] = ACTIONS(3607), + [anon_sym_false] = ACTIONS(3607), + [aux_sym__val_number_decimal_token1] = ACTIONS(3609), + [aux_sym__val_number_decimal_token2] = ACTIONS(3611), + [aux_sym__val_number_decimal_token3] = ACTIONS(3613), + [aux_sym__val_number_decimal_token4] = ACTIONS(3615), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(3645), - [aux_sym__val_number_token5] = ACTIONS(3645), - [aux_sym__val_number_token6] = ACTIONS(3645), + [aux_sym__val_number_token4] = ACTIONS(3617), + [aux_sym__val_number_token5] = ACTIONS(3617), + [aux_sym__val_number_token6] = ACTIONS(3617), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(3647), + [sym_val_date] = ACTIONS(3619), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, [1251] = { - [sym_expr_parenthesized] = STATE(6298), - [sym_val_range] = STATE(7712), - [sym__val_range] = STATE(7572), - [sym__value] = STATE(7712), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(7458), - [sym_val_variable] = STATE(3658), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(5700), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(4492), - [sym__str_double_quotes] = STATE(4492), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(7971), - [sym__unquoted_anonymous_prefix] = STATE(7585), + [sym__expr_parenthesized_immediate] = STATE(1506), + [sym__immediate_decimal] = STATE(1427), + [sym_val_variable] = STATE(1506), [sym_comment] = STATE(1251), - [anon_sym_LBRACK] = ACTIONS(3983), - [anon_sym_LPAREN] = ACTIONS(3619), - [anon_sym_DOLLAR] = ACTIONS(3985), - [anon_sym_LBRACE] = ACTIONS(3987), - [anon_sym_DOT_DOT] = ACTIONS(3989), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3991), - [anon_sym_DOT_DOT_LT] = ACTIONS(3991), - [anon_sym_null] = ACTIONS(3993), - [anon_sym_true] = ACTIONS(3995), - [anon_sym_false] = ACTIONS(3995), - [aux_sym__val_number_decimal_token1] = ACTIONS(3997), - [aux_sym__val_number_decimal_token2] = ACTIONS(3999), - [aux_sym__val_number_decimal_token3] = ACTIONS(4001), - [aux_sym__val_number_decimal_token4] = ACTIONS(4003), + [sym__newline] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_err_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_GT_PIPE] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1557), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_RPAREN] = ACTIONS(1557), + [anon_sym_DOLLAR] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_DASH2] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_RBRACE] = ACTIONS(1557), + [anon_sym_DOT_DOT] = ACTIONS(1543), + [anon_sym_LPAREN2] = ACTIONS(4017), + [anon_sym_DOT] = ACTIONS(4019), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1557), + [anon_sym_DOT_DOT_LT] = ACTIONS(1557), + [aux_sym__immediate_decimal_token1] = ACTIONS(4021), + [aux_sym__immediate_decimal_token3] = ACTIONS(4023), + [aux_sym__immediate_decimal_token4] = ACTIONS(4025), + [aux_sym__immediate_decimal_token5] = ACTIONS(4027), + [anon_sym_null] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [aux_sym__val_number_decimal_token1] = ACTIONS(1543), + [aux_sym__val_number_decimal_token2] = ACTIONS(1543), + [aux_sym__val_number_decimal_token3] = ACTIONS(1543), + [aux_sym__val_number_decimal_token4] = ACTIONS(1543), + [aux_sym__val_number_token1] = ACTIONS(1557), + [aux_sym__val_number_token2] = ACTIONS(1557), + [aux_sym__val_number_token3] = ACTIONS(1557), + [aux_sym__val_number_token4] = ACTIONS(1557), + [aux_sym__val_number_token5] = ACTIONS(1557), + [aux_sym__val_number_token6] = ACTIONS(1557), + [anon_sym_0b] = ACTIONS(1543), + [anon_sym_0o] = ACTIONS(1543), + [anon_sym_0x] = ACTIONS(1543), + [sym_val_date] = ACTIONS(1557), + [anon_sym_DQUOTE] = ACTIONS(1557), + [sym__str_single_quotes] = ACTIONS(1557), + [sym__str_back_ticks] = ACTIONS(1557), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1557), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1557), + [anon_sym_err_GT] = ACTIONS(1543), + [anon_sym_out_GT] = ACTIONS(1543), + [anon_sym_e_GT] = ACTIONS(1543), + [anon_sym_o_GT] = ACTIONS(1543), + [anon_sym_err_PLUSout_GT] = ACTIONS(1543), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), + [anon_sym_o_PLUSe_GT] = ACTIONS(1543), + [anon_sym_e_PLUSo_GT] = ACTIONS(1543), + [anon_sym_err_GT_GT] = ACTIONS(1557), + [anon_sym_out_GT_GT] = ACTIONS(1557), + [anon_sym_e_GT_GT] = ACTIONS(1557), + [anon_sym_o_GT_GT] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1557), + [aux_sym_unquoted_token1] = ACTIONS(1543), + [aux_sym_unquoted_token2] = ACTIONS(1559), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1557), + }, + [1252] = { + [sym_expr_parenthesized] = STATE(6310), + [sym_val_range] = STATE(8153), + [sym__val_range] = STATE(7906), + [sym__value] = STATE(8153), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(7502), + [sym_val_variable] = STATE(3657), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(5698), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(4332), + [sym__str_double_quotes] = STATE(4332), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(8042), + [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym_comment] = STATE(1252), + [anon_sym_LBRACK] = ACTIONS(3975), + [anon_sym_LPAREN] = ACTIONS(3591), + [anon_sym_DOLLAR] = ACTIONS(3977), + [anon_sym_LBRACE] = ACTIONS(3979), + [anon_sym_DOT_DOT] = ACTIONS(3981), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3983), + [anon_sym_DOT_DOT_LT] = ACTIONS(3983), + [anon_sym_null] = ACTIONS(3985), + [anon_sym_true] = ACTIONS(3987), + [anon_sym_false] = ACTIONS(3987), + [aux_sym__val_number_decimal_token1] = ACTIONS(3989), + [aux_sym__val_number_decimal_token2] = ACTIONS(3991), + [aux_sym__val_number_decimal_token3] = ACTIONS(3993), + [aux_sym__val_number_decimal_token4] = ACTIONS(3995), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(4005), - [aux_sym__val_number_token5] = ACTIONS(4005), - [aux_sym__val_number_token6] = ACTIONS(4005), + [aux_sym__val_number_token4] = ACTIONS(3997), + [aux_sym__val_number_token5] = ACTIONS(3997), + [aux_sym__val_number_token6] = ACTIONS(3997), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(4007), - [anon_sym_DQUOTE] = ACTIONS(4009), - [sym__str_single_quotes] = ACTIONS(4011), - [sym__str_back_ticks] = ACTIONS(4011), + [sym_val_date] = ACTIONS(3999), + [anon_sym_DQUOTE] = ACTIONS(4001), + [sym__str_single_quotes] = ACTIONS(4003), + [sym__str_back_ticks] = ACTIONS(4003), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4013), - }, - [1252] = { - [sym_comment] = STATE(1252), - [anon_sym_STAR_STAR] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1763), - [anon_sym_SLASH] = ACTIONS(1763), - [anon_sym_mod] = ACTIONS(1765), - [anon_sym_SLASH_SLASH] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_bit_DASHshl] = ACTIONS(1765), - [anon_sym_bit_DASHshr] = ACTIONS(1765), - [anon_sym_EQ_TILDE] = ACTIONS(1765), - [anon_sym_BANG_TILDE] = ACTIONS(1765), - [anon_sym_bit_DASHand] = ACTIONS(1765), - [anon_sym_bit_DASHxor] = ACTIONS(1765), - [anon_sym_bit_DASHor] = ACTIONS(1765), - [anon_sym_and] = ACTIONS(1765), - [anon_sym_xor] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), - [anon_sym_in] = ACTIONS(1765), - [anon_sym_not_DASHin] = ACTIONS(1765), - [anon_sym_starts_DASHwith] = ACTIONS(1765), - [anon_sym_ends_DASHwith] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1765), - [anon_sym_BANG_EQ] = ACTIONS(1765), - [anon_sym_LT] = ACTIONS(1763), - [anon_sym_LT_EQ] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1765), - [aux_sym_cmd_identifier_token41] = ACTIONS(1763), - [sym__newline] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_err_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_GT_PIPE] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), - [anon_sym_GT2] = ACTIONS(1763), - [anon_sym_DASH2] = ACTIONS(1763), - [anon_sym_in2] = ACTIONS(1763), - [anon_sym_STAR2] = ACTIONS(1763), - [anon_sym_and2] = ACTIONS(1763), - [anon_sym_xor2] = ACTIONS(1763), - [anon_sym_or2] = ACTIONS(1763), - [anon_sym_not_DASHin2] = ACTIONS(1763), - [anon_sym_starts_DASHwith2] = ACTIONS(1763), - [anon_sym_ends_DASHwith2] = ACTIONS(1763), - [anon_sym_EQ_EQ2] = ACTIONS(1763), - [anon_sym_BANG_EQ2] = ACTIONS(1763), - [anon_sym_LT2] = ACTIONS(1763), - [anon_sym_LT_EQ2] = ACTIONS(1763), - [anon_sym_GT_EQ2] = ACTIONS(1763), - [anon_sym_EQ_TILDE2] = ACTIONS(1763), - [anon_sym_BANG_TILDE2] = ACTIONS(1763), - [anon_sym_STAR_STAR2] = ACTIONS(1763), - [anon_sym_PLUS_PLUS2] = ACTIONS(1763), - [anon_sym_SLASH2] = ACTIONS(1763), - [anon_sym_mod2] = ACTIONS(1763), - [anon_sym_SLASH_SLASH2] = ACTIONS(1763), - [anon_sym_PLUS2] = ACTIONS(1763), - [anon_sym_bit_DASHshl2] = ACTIONS(1763), - [anon_sym_bit_DASHshr2] = ACTIONS(1763), - [anon_sym_bit_DASHand2] = ACTIONS(1763), - [anon_sym_bit_DASHxor2] = ACTIONS(1763), - [anon_sym_bit_DASHor2] = ACTIONS(1763), - [anon_sym_DOT_DOT2] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), - [sym_filesize_unit] = ACTIONS(1763), - [sym_duration_unit] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(4005), }, [1253] = { [sym_comment] = STATE(1253), - [anon_sym_STAR_STAR] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_SLASH_SLASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_bit_DASHshl] = ACTIONS(1609), - [anon_sym_bit_DASHshr] = ACTIONS(1609), - [anon_sym_EQ_TILDE] = ACTIONS(1609), - [anon_sym_BANG_TILDE] = ACTIONS(1609), - [anon_sym_bit_DASHand] = ACTIONS(1609), - [anon_sym_bit_DASHxor] = ACTIONS(1609), - [anon_sym_bit_DASHor] = ACTIONS(1609), - [anon_sym_and] = ACTIONS(1609), - [anon_sym_xor] = ACTIONS(1609), - [anon_sym_or] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(1609), - [anon_sym_not_DASHin] = ACTIONS(1609), - [anon_sym_starts_DASHwith] = ACTIONS(1609), - [anon_sym_ends_DASHwith] = ACTIONS(1609), - [anon_sym_EQ_EQ] = ACTIONS(1609), - [anon_sym_BANG_EQ] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_GT_EQ] = ACTIONS(1609), - [aux_sym_cmd_identifier_token41] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_in2] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), + [anon_sym_STAR_STAR] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1761), + [anon_sym_mod] = ACTIONS(1763), + [anon_sym_SLASH_SLASH] = ACTIONS(1763), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_bit_DASHshl] = ACTIONS(1763), + [anon_sym_bit_DASHshr] = ACTIONS(1763), + [anon_sym_EQ_TILDE] = ACTIONS(1763), + [anon_sym_BANG_TILDE] = ACTIONS(1763), + [anon_sym_bit_DASHand] = ACTIONS(1763), + [anon_sym_bit_DASHxor] = ACTIONS(1763), + [anon_sym_bit_DASHor] = ACTIONS(1763), + [anon_sym_and] = ACTIONS(1763), + [anon_sym_xor] = ACTIONS(1763), + [anon_sym_or] = ACTIONS(1763), + [anon_sym_in] = ACTIONS(1763), + [anon_sym_not_DASHin] = ACTIONS(1763), + [anon_sym_starts_DASHwith] = ACTIONS(1763), + [anon_sym_ends_DASHwith] = ACTIONS(1763), + [anon_sym_EQ_EQ] = ACTIONS(1763), + [anon_sym_BANG_EQ] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1761), + [anon_sym_LT_EQ] = ACTIONS(1763), + [anon_sym_GT] = ACTIONS(1761), + [anon_sym_GT_EQ] = ACTIONS(1763), + [aux_sym_cmd_identifier_token41] = ACTIONS(1761), + [sym__newline] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1761), + [anon_sym_err_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_GT_PIPE] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), + [anon_sym_GT2] = ACTIONS(1761), + [anon_sym_DASH2] = ACTIONS(1761), + [anon_sym_in2] = ACTIONS(1761), + [anon_sym_STAR2] = ACTIONS(1761), + [anon_sym_and2] = ACTIONS(1761), + [anon_sym_xor2] = ACTIONS(1761), + [anon_sym_or2] = ACTIONS(1761), + [anon_sym_not_DASHin2] = ACTIONS(1761), + [anon_sym_starts_DASHwith2] = ACTIONS(1761), + [anon_sym_ends_DASHwith2] = ACTIONS(1761), + [anon_sym_EQ_EQ2] = ACTIONS(1761), + [anon_sym_BANG_EQ2] = ACTIONS(1761), + [anon_sym_LT2] = ACTIONS(1761), + [anon_sym_LT_EQ2] = ACTIONS(1761), + [anon_sym_GT_EQ2] = ACTIONS(1761), + [anon_sym_EQ_TILDE2] = ACTIONS(1761), + [anon_sym_BANG_TILDE2] = ACTIONS(1761), + [anon_sym_STAR_STAR2] = ACTIONS(1761), + [anon_sym_PLUS_PLUS2] = ACTIONS(1761), + [anon_sym_SLASH2] = ACTIONS(1761), + [anon_sym_mod2] = ACTIONS(1761), + [anon_sym_SLASH_SLASH2] = ACTIONS(1761), + [anon_sym_PLUS2] = ACTIONS(1761), + [anon_sym_bit_DASHshl2] = ACTIONS(1761), + [anon_sym_bit_DASHshr2] = ACTIONS(1761), + [anon_sym_bit_DASHand2] = ACTIONS(1761), + [anon_sym_bit_DASHxor2] = ACTIONS(1761), + [anon_sym_bit_DASHor2] = ACTIONS(1761), + [anon_sym_DOT_DOT2] = ACTIONS(1761), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), + [sym_filesize_unit] = ACTIONS(1761), + [sym_duration_unit] = ACTIONS(1763), [anon_sym_POUND] = ACTIONS(3), }, [1254] = { + [sym_expr_parenthesized] = STATE(6746), + [sym_val_range] = STATE(8026), + [sym__val_range] = STATE(7906), + [sym__value] = STATE(8026), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(7502), + [sym_val_variable] = STATE(3657), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(5698), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(4332), + [sym__str_double_quotes] = STATE(4332), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(8028), + [sym__unquoted_anonymous_prefix] = STATE(7913), [sym_comment] = STATE(1254), - [anon_sym_STAR_STAR] = ACTIONS(1675), - [anon_sym_PLUS_PLUS] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1673), - [anon_sym_mod] = ACTIONS(1675), - [anon_sym_SLASH_SLASH] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_bit_DASHshl] = ACTIONS(1675), - [anon_sym_bit_DASHshr] = ACTIONS(1675), - [anon_sym_EQ_TILDE] = ACTIONS(1675), - [anon_sym_BANG_TILDE] = ACTIONS(1675), - [anon_sym_bit_DASHand] = ACTIONS(1675), - [anon_sym_bit_DASHxor] = ACTIONS(1675), - [anon_sym_bit_DASHor] = ACTIONS(1675), - [anon_sym_and] = ACTIONS(1675), - [anon_sym_xor] = ACTIONS(1675), - [anon_sym_or] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [anon_sym_not_DASHin] = ACTIONS(1675), - [anon_sym_starts_DASHwith] = ACTIONS(1675), - [anon_sym_ends_DASHwith] = ACTIONS(1675), - [anon_sym_EQ_EQ] = ACTIONS(1675), - [anon_sym_BANG_EQ] = ACTIONS(1675), - [anon_sym_LT] = ACTIONS(1673), - [anon_sym_LT_EQ] = ACTIONS(1675), - [anon_sym_GT] = ACTIONS(1673), - [anon_sym_GT_EQ] = ACTIONS(1675), - [aux_sym_cmd_identifier_token41] = ACTIONS(1673), - [sym__newline] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1673), - [anon_sym_err_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_GT_PIPE] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_in2] = ACTIONS(1673), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1673), - [anon_sym_xor2] = ACTIONS(1673), - [anon_sym_or2] = ACTIONS(1673), - [anon_sym_not_DASHin2] = ACTIONS(1673), - [anon_sym_starts_DASHwith2] = ACTIONS(1673), - [anon_sym_ends_DASHwith2] = ACTIONS(1673), - [anon_sym_EQ_EQ2] = ACTIONS(1673), - [anon_sym_BANG_EQ2] = ACTIONS(1673), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1673), - [anon_sym_GT_EQ2] = ACTIONS(1673), - [anon_sym_EQ_TILDE2] = ACTIONS(1673), - [anon_sym_BANG_TILDE2] = ACTIONS(1673), - [anon_sym_STAR_STAR2] = ACTIONS(1673), - [anon_sym_PLUS_PLUS2] = ACTIONS(1673), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1673), - [anon_sym_SLASH_SLASH2] = ACTIONS(1673), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1673), - [anon_sym_bit_DASHshr2] = ACTIONS(1673), - [anon_sym_bit_DASHand2] = ACTIONS(1673), - [anon_sym_bit_DASHxor2] = ACTIONS(1673), - [anon_sym_bit_DASHor2] = ACTIONS(1673), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [sym_filesize_unit] = ACTIONS(1673), - [sym_duration_unit] = ACTIONS(1675), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3975), + [anon_sym_LPAREN] = ACTIONS(3591), + [anon_sym_DOLLAR] = ACTIONS(3977), + [anon_sym_LBRACE] = ACTIONS(3979), + [anon_sym_DOT_DOT] = ACTIONS(3981), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3983), + [anon_sym_DOT_DOT_LT] = ACTIONS(3983), + [anon_sym_null] = ACTIONS(3985), + [anon_sym_true] = ACTIONS(3987), + [anon_sym_false] = ACTIONS(3987), + [aux_sym__val_number_decimal_token1] = ACTIONS(3989), + [aux_sym__val_number_decimal_token2] = ACTIONS(3991), + [aux_sym__val_number_decimal_token3] = ACTIONS(3993), + [aux_sym__val_number_decimal_token4] = ACTIONS(3995), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3997), + [aux_sym__val_number_token5] = ACTIONS(3997), + [aux_sym__val_number_token6] = ACTIONS(3997), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3999), + [anon_sym_DQUOTE] = ACTIONS(4001), + [sym__str_single_quotes] = ACTIONS(4003), + [sym__str_back_ticks] = ACTIONS(4003), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4005), }, [1255] = { [sym_comment] = STATE(1255), - [anon_sym_STAR_STAR] = ACTIONS(3063), - [anon_sym_PLUS_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_SLASH] = ACTIONS(3065), - [anon_sym_mod] = ACTIONS(3063), - [anon_sym_SLASH_SLASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_bit_DASHshl] = ACTIONS(3063), - [anon_sym_bit_DASHshr] = ACTIONS(3063), - [anon_sym_EQ_TILDE] = ACTIONS(3063), - [anon_sym_BANG_TILDE] = ACTIONS(3063), - [anon_sym_bit_DASHand] = ACTIONS(3063), - [anon_sym_bit_DASHxor] = ACTIONS(3063), - [anon_sym_bit_DASHor] = ACTIONS(3063), - [anon_sym_and] = ACTIONS(3063), - [anon_sym_xor] = ACTIONS(3063), - [anon_sym_or] = ACTIONS(3063), - [anon_sym_in] = ACTIONS(3063), - [anon_sym_not_DASHin] = ACTIONS(3063), - [anon_sym_starts_DASHwith] = ACTIONS(3063), - [anon_sym_ends_DASHwith] = ACTIONS(3063), - [anon_sym_EQ_EQ] = ACTIONS(3063), - [anon_sym_BANG_EQ] = ACTIONS(3063), - [anon_sym_LT] = ACTIONS(3065), - [anon_sym_LT_EQ] = ACTIONS(3063), - [anon_sym_GT] = ACTIONS(3065), - [anon_sym_GT_EQ] = ACTIONS(3063), - [aux_sym_cmd_identifier_token41] = ACTIONS(3067), - [sym__newline] = ACTIONS(1709), - [anon_sym_PIPE] = ACTIONS(1709), - [anon_sym_err_GT_PIPE] = ACTIONS(1709), - [anon_sym_out_GT_PIPE] = ACTIONS(1709), - [anon_sym_e_GT_PIPE] = ACTIONS(1709), - [anon_sym_o_GT_PIPE] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), - [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_GT2] = ACTIONS(1709), - [anon_sym_DASH2] = ACTIONS(1709), - [anon_sym_in2] = ACTIONS(1709), - [anon_sym_STAR2] = ACTIONS(1709), - [anon_sym_and2] = ACTIONS(1709), - [anon_sym_xor2] = ACTIONS(1709), - [anon_sym_or2] = ACTIONS(1709), - [anon_sym_not_DASHin2] = ACTIONS(1709), - [anon_sym_starts_DASHwith2] = ACTIONS(1709), - [anon_sym_ends_DASHwith2] = ACTIONS(1709), - [anon_sym_EQ_EQ2] = ACTIONS(1709), - [anon_sym_BANG_EQ2] = ACTIONS(1709), - [anon_sym_LT2] = ACTIONS(1709), - [anon_sym_LT_EQ2] = ACTIONS(1709), - [anon_sym_GT_EQ2] = ACTIONS(1709), - [anon_sym_EQ_TILDE2] = ACTIONS(1709), - [anon_sym_BANG_TILDE2] = ACTIONS(1709), - [anon_sym_STAR_STAR2] = ACTIONS(1709), - [anon_sym_PLUS_PLUS2] = ACTIONS(1709), - [anon_sym_SLASH2] = ACTIONS(1709), - [anon_sym_mod2] = ACTIONS(1709), - [anon_sym_SLASH_SLASH2] = ACTIONS(1709), - [anon_sym_PLUS2] = ACTIONS(1709), - [anon_sym_bit_DASHshl2] = ACTIONS(1709), - [anon_sym_bit_DASHshr2] = ACTIONS(1709), - [anon_sym_bit_DASHand2] = ACTIONS(1709), - [anon_sym_bit_DASHxor2] = ACTIONS(1709), - [anon_sym_bit_DASHor2] = ACTIONS(1709), - [anon_sym_DOT_DOT2] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3039), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3039), - [sym_filesize_unit] = ACTIONS(4017), - [sym_duration_unit] = ACTIONS(4019), + [anon_sym_STAR_STAR] = ACTIONS(3071), + [anon_sym_PLUS_PLUS] = ACTIONS(3071), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_SLASH] = ACTIONS(3073), + [anon_sym_mod] = ACTIONS(3071), + [anon_sym_SLASH_SLASH] = ACTIONS(3071), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_DASH] = ACTIONS(3071), + [anon_sym_bit_DASHshl] = ACTIONS(3071), + [anon_sym_bit_DASHshr] = ACTIONS(3071), + [anon_sym_EQ_TILDE] = ACTIONS(3071), + [anon_sym_BANG_TILDE] = ACTIONS(3071), + [anon_sym_bit_DASHand] = ACTIONS(3071), + [anon_sym_bit_DASHxor] = ACTIONS(3071), + [anon_sym_bit_DASHor] = ACTIONS(3071), + [anon_sym_and] = ACTIONS(3071), + [anon_sym_xor] = ACTIONS(3071), + [anon_sym_or] = ACTIONS(3071), + [anon_sym_in] = ACTIONS(3071), + [anon_sym_not_DASHin] = ACTIONS(3071), + [anon_sym_starts_DASHwith] = ACTIONS(3071), + [anon_sym_ends_DASHwith] = ACTIONS(3071), + [anon_sym_EQ_EQ] = ACTIONS(3071), + [anon_sym_BANG_EQ] = ACTIONS(3071), + [anon_sym_LT] = ACTIONS(3073), + [anon_sym_LT_EQ] = ACTIONS(3071), + [anon_sym_GT] = ACTIONS(3073), + [anon_sym_GT_EQ] = ACTIONS(3071), + [aux_sym_cmd_identifier_token41] = ACTIONS(3075), + [sym__newline] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_err_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_GT_PIPE] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), + [anon_sym_GT2] = ACTIONS(1707), + [anon_sym_DASH2] = ACTIONS(1707), + [anon_sym_in2] = ACTIONS(1707), + [anon_sym_STAR2] = ACTIONS(1707), + [anon_sym_and2] = ACTIONS(1707), + [anon_sym_xor2] = ACTIONS(1707), + [anon_sym_or2] = ACTIONS(1707), + [anon_sym_not_DASHin2] = ACTIONS(1707), + [anon_sym_starts_DASHwith2] = ACTIONS(1707), + [anon_sym_ends_DASHwith2] = ACTIONS(1707), + [anon_sym_EQ_EQ2] = ACTIONS(1707), + [anon_sym_BANG_EQ2] = ACTIONS(1707), + [anon_sym_LT2] = ACTIONS(1707), + [anon_sym_LT_EQ2] = ACTIONS(1707), + [anon_sym_GT_EQ2] = ACTIONS(1707), + [anon_sym_EQ_TILDE2] = ACTIONS(1707), + [anon_sym_BANG_TILDE2] = ACTIONS(1707), + [anon_sym_STAR_STAR2] = ACTIONS(1707), + [anon_sym_PLUS_PLUS2] = ACTIONS(1707), + [anon_sym_SLASH2] = ACTIONS(1707), + [anon_sym_mod2] = ACTIONS(1707), + [anon_sym_SLASH_SLASH2] = ACTIONS(1707), + [anon_sym_PLUS2] = ACTIONS(1707), + [anon_sym_bit_DASHshl2] = ACTIONS(1707), + [anon_sym_bit_DASHshr2] = ACTIONS(1707), + [anon_sym_bit_DASHand2] = ACTIONS(1707), + [anon_sym_bit_DASHxor2] = ACTIONS(1707), + [anon_sym_bit_DASHor2] = ACTIONS(1707), + [anon_sym_DOT_DOT2] = ACTIONS(2900), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2902), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2902), + [sym_filesize_unit] = ACTIONS(4029), + [sym_duration_unit] = ACTIONS(4031), [anon_sym_POUND] = ACTIONS(3), }, [1256] = { [sym_comment] = STATE(1256), - [anon_sym_STAR_STAR] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_SLASH] = ACTIONS(1621), - [anon_sym_mod] = ACTIONS(1623), - [anon_sym_SLASH_SLASH] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_bit_DASHshl] = ACTIONS(1623), - [anon_sym_bit_DASHshr] = ACTIONS(1623), - [anon_sym_EQ_TILDE] = ACTIONS(1623), - [anon_sym_BANG_TILDE] = ACTIONS(1623), - [anon_sym_bit_DASHand] = ACTIONS(1623), - [anon_sym_bit_DASHxor] = ACTIONS(1623), - [anon_sym_bit_DASHor] = ACTIONS(1623), - [anon_sym_and] = ACTIONS(1623), - [anon_sym_xor] = ACTIONS(1623), - [anon_sym_or] = ACTIONS(1623), - [anon_sym_in] = ACTIONS(1623), - [anon_sym_not_DASHin] = ACTIONS(1623), - [anon_sym_starts_DASHwith] = ACTIONS(1623), - [anon_sym_ends_DASHwith] = ACTIONS(1623), - [anon_sym_EQ_EQ] = ACTIONS(1623), - [anon_sym_BANG_EQ] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1621), - [anon_sym_LT_EQ] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1621), - [anon_sym_GT_EQ] = ACTIONS(1623), - [aux_sym_cmd_identifier_token41] = ACTIONS(1621), - [sym__newline] = ACTIONS(1621), - [anon_sym_PIPE] = ACTIONS(1621), - [anon_sym_err_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_GT_PIPE] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1621), - [anon_sym_GT2] = ACTIONS(1621), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_in2] = ACTIONS(1621), - [anon_sym_STAR2] = ACTIONS(1621), - [anon_sym_and2] = ACTIONS(1621), - [anon_sym_xor2] = ACTIONS(1621), - [anon_sym_or2] = ACTIONS(1621), - [anon_sym_not_DASHin2] = ACTIONS(1621), - [anon_sym_starts_DASHwith2] = ACTIONS(1621), - [anon_sym_ends_DASHwith2] = ACTIONS(1621), - [anon_sym_EQ_EQ2] = ACTIONS(1621), - [anon_sym_BANG_EQ2] = ACTIONS(1621), - [anon_sym_LT2] = ACTIONS(1621), - [anon_sym_LT_EQ2] = ACTIONS(1621), - [anon_sym_GT_EQ2] = ACTIONS(1621), - [anon_sym_EQ_TILDE2] = ACTIONS(1621), - [anon_sym_BANG_TILDE2] = ACTIONS(1621), - [anon_sym_STAR_STAR2] = ACTIONS(1621), - [anon_sym_PLUS_PLUS2] = ACTIONS(1621), - [anon_sym_SLASH2] = ACTIONS(1621), - [anon_sym_mod2] = ACTIONS(1621), - [anon_sym_SLASH_SLASH2] = ACTIONS(1621), - [anon_sym_PLUS2] = ACTIONS(1621), - [anon_sym_bit_DASHshl2] = ACTIONS(1621), - [anon_sym_bit_DASHshr2] = ACTIONS(1621), - [anon_sym_bit_DASHand2] = ACTIONS(1621), - [anon_sym_bit_DASHxor2] = ACTIONS(1621), - [anon_sym_bit_DASHor2] = ACTIONS(1621), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [sym_filesize_unit] = ACTIONS(1621), - [sym_duration_unit] = ACTIONS(1623), + [anon_sym_STAR_STAR] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_mod] = ACTIONS(1587), + [anon_sym_SLASH_SLASH] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_bit_DASHshl] = ACTIONS(1587), + [anon_sym_bit_DASHshr] = ACTIONS(1587), + [anon_sym_EQ_TILDE] = ACTIONS(1587), + [anon_sym_BANG_TILDE] = ACTIONS(1587), + [anon_sym_bit_DASHand] = ACTIONS(1587), + [anon_sym_bit_DASHxor] = ACTIONS(1587), + [anon_sym_bit_DASHor] = ACTIONS(1587), + [anon_sym_and] = ACTIONS(1587), + [anon_sym_xor] = ACTIONS(1587), + [anon_sym_or] = ACTIONS(1587), + [anon_sym_in] = ACTIONS(1587), + [anon_sym_not_DASHin] = ACTIONS(1587), + [anon_sym_starts_DASHwith] = ACTIONS(1587), + [anon_sym_ends_DASHwith] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(1587), + [anon_sym_BANG_EQ] = ACTIONS(1587), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_LT_EQ] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1587), + [aux_sym_cmd_identifier_token41] = ACTIONS(1585), + [sym__newline] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_err_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_GT_PIPE] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1585), + [anon_sym_GT2] = ACTIONS(1585), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_in2] = ACTIONS(1585), + [anon_sym_STAR2] = ACTIONS(1585), + [anon_sym_and2] = ACTIONS(1585), + [anon_sym_xor2] = ACTIONS(1585), + [anon_sym_or2] = ACTIONS(1585), + [anon_sym_not_DASHin2] = ACTIONS(1585), + [anon_sym_starts_DASHwith2] = ACTIONS(1585), + [anon_sym_ends_DASHwith2] = ACTIONS(1585), + [anon_sym_EQ_EQ2] = ACTIONS(1585), + [anon_sym_BANG_EQ2] = ACTIONS(1585), + [anon_sym_LT2] = ACTIONS(1585), + [anon_sym_LT_EQ2] = ACTIONS(1585), + [anon_sym_GT_EQ2] = ACTIONS(1585), + [anon_sym_EQ_TILDE2] = ACTIONS(1585), + [anon_sym_BANG_TILDE2] = ACTIONS(1585), + [anon_sym_STAR_STAR2] = ACTIONS(1585), + [anon_sym_PLUS_PLUS2] = ACTIONS(1585), + [anon_sym_SLASH2] = ACTIONS(1585), + [anon_sym_mod2] = ACTIONS(1585), + [anon_sym_SLASH_SLASH2] = ACTIONS(1585), + [anon_sym_PLUS2] = ACTIONS(1585), + [anon_sym_bit_DASHshl2] = ACTIONS(1585), + [anon_sym_bit_DASHshr2] = ACTIONS(1585), + [anon_sym_bit_DASHand2] = ACTIONS(1585), + [anon_sym_bit_DASHxor2] = ACTIONS(1585), + [anon_sym_bit_DASHor2] = ACTIONS(1585), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [sym_filesize_unit] = ACTIONS(1585), + [sym_duration_unit] = ACTIONS(1587), [anon_sym_POUND] = ACTIONS(3), }, [1257] = { - [sym_expr_parenthesized] = STATE(6596), - [sym_val_range] = STATE(7953), - [sym__val_range] = STATE(7572), - [sym__value] = STATE(7953), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(7458), - [sym_val_variable] = STATE(3658), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(5700), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(4492), - [sym__str_double_quotes] = STATE(4492), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(7954), - [sym__unquoted_anonymous_prefix] = STATE(7585), [sym_comment] = STATE(1257), - [anon_sym_LBRACK] = ACTIONS(3983), - [anon_sym_LPAREN] = ACTIONS(3619), - [anon_sym_DOLLAR] = ACTIONS(3985), - [anon_sym_LBRACE] = ACTIONS(3987), - [anon_sym_DOT_DOT] = ACTIONS(3989), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3991), - [anon_sym_DOT_DOT_LT] = ACTIONS(3991), - [anon_sym_null] = ACTIONS(3993), - [anon_sym_true] = ACTIONS(3995), - [anon_sym_false] = ACTIONS(3995), - [aux_sym__val_number_decimal_token1] = ACTIONS(3997), - [aux_sym__val_number_decimal_token2] = ACTIONS(3999), - [aux_sym__val_number_decimal_token3] = ACTIONS(4001), - [aux_sym__val_number_decimal_token4] = ACTIONS(4003), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(4005), - [aux_sym__val_number_token5] = ACTIONS(4005), - [aux_sym__val_number_token6] = ACTIONS(4005), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(4007), - [anon_sym_DQUOTE] = ACTIONS(4009), - [sym__str_single_quotes] = ACTIONS(4011), - [sym__str_back_ticks] = ACTIONS(4011), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4013), + [anon_sym_STAR_STAR] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_mod] = ACTIONS(1575), + [anon_sym_SLASH_SLASH] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_bit_DASHshl] = ACTIONS(1575), + [anon_sym_bit_DASHshr] = ACTIONS(1575), + [anon_sym_EQ_TILDE] = ACTIONS(1575), + [anon_sym_BANG_TILDE] = ACTIONS(1575), + [anon_sym_bit_DASHand] = ACTIONS(1575), + [anon_sym_bit_DASHxor] = ACTIONS(1575), + [anon_sym_bit_DASHor] = ACTIONS(1575), + [anon_sym_and] = ACTIONS(1575), + [anon_sym_xor] = ACTIONS(1575), + [anon_sym_or] = ACTIONS(1575), + [anon_sym_in] = ACTIONS(1575), + [anon_sym_not_DASHin] = ACTIONS(1575), + [anon_sym_starts_DASHwith] = ACTIONS(1575), + [anon_sym_ends_DASHwith] = ACTIONS(1575), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_EQ] = ACTIONS(1575), + [aux_sym_cmd_identifier_token41] = ACTIONS(1573), + [sym__newline] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_err_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_GT_PIPE] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1573), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_in2] = ACTIONS(1573), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1573), + [anon_sym_xor2] = ACTIONS(1573), + [anon_sym_or2] = ACTIONS(1573), + [anon_sym_not_DASHin2] = ACTIONS(1573), + [anon_sym_starts_DASHwith2] = ACTIONS(1573), + [anon_sym_ends_DASHwith2] = ACTIONS(1573), + [anon_sym_EQ_EQ2] = ACTIONS(1573), + [anon_sym_BANG_EQ2] = ACTIONS(1573), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1573), + [anon_sym_GT_EQ2] = ACTIONS(1573), + [anon_sym_EQ_TILDE2] = ACTIONS(1573), + [anon_sym_BANG_TILDE2] = ACTIONS(1573), + [anon_sym_STAR_STAR2] = ACTIONS(1573), + [anon_sym_PLUS_PLUS2] = ACTIONS(1573), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1573), + [anon_sym_SLASH_SLASH2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1573), + [anon_sym_bit_DASHshr2] = ACTIONS(1573), + [anon_sym_bit_DASHand2] = ACTIONS(1573), + [anon_sym_bit_DASHxor2] = ACTIONS(1573), + [anon_sym_bit_DASHor2] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_POUND] = ACTIONS(3), }, [1258] = { - [sym__expr_parenthesized_immediate] = STATE(1524), - [sym__immediate_decimal] = STATE(1440), - [sym_val_variable] = STATE(1524), [sym_comment] = STATE(1258), - [sym__newline] = ACTIONS(1544), - [anon_sym_SEMI] = ACTIONS(1544), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_err_GT_PIPE] = ACTIONS(1544), - [anon_sym_out_GT_PIPE] = ACTIONS(1544), - [anon_sym_e_GT_PIPE] = ACTIONS(1544), - [anon_sym_o_GT_PIPE] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_RPAREN] = ACTIONS(1544), - [anon_sym_DOLLAR] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(1544), - [anon_sym_DASH2] = ACTIONS(1530), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_RBRACE] = ACTIONS(1544), - [anon_sym_DOT_DOT] = ACTIONS(1530), - [anon_sym_LPAREN2] = ACTIONS(4021), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT] = ACTIONS(1544), - [aux_sym__immediate_decimal_token1] = ACTIONS(4025), - [aux_sym__immediate_decimal_token3] = ACTIONS(4027), - [aux_sym__immediate_decimal_token4] = ACTIONS(4029), - [aux_sym__immediate_decimal_token5] = ACTIONS(4031), - [anon_sym_null] = ACTIONS(1544), - [anon_sym_true] = ACTIONS(1544), - [anon_sym_false] = ACTIONS(1544), - [aux_sym__val_number_decimal_token1] = ACTIONS(1530), - [aux_sym__val_number_decimal_token2] = ACTIONS(1530), - [aux_sym__val_number_decimal_token3] = ACTIONS(1530), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(1544), - [aux_sym__val_number_token2] = ACTIONS(1544), - [aux_sym__val_number_token3] = ACTIONS(1544), - [aux_sym__val_number_token4] = ACTIONS(1544), - [aux_sym__val_number_token5] = ACTIONS(1544), - [aux_sym__val_number_token6] = ACTIONS(1544), - [anon_sym_0b] = ACTIONS(1530), - [anon_sym_0o] = ACTIONS(1530), - [anon_sym_0x] = ACTIONS(1530), - [sym_val_date] = ACTIONS(1544), - [anon_sym_DQUOTE] = ACTIONS(1544), - [sym__str_single_quotes] = ACTIONS(1544), - [sym__str_back_ticks] = ACTIONS(1544), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1544), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1544), - [anon_sym_err_GT] = ACTIONS(1530), - [anon_sym_out_GT] = ACTIONS(1530), - [anon_sym_e_GT] = ACTIONS(1530), - [anon_sym_o_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT] = ACTIONS(1530), - [anon_sym_err_GT_GT] = ACTIONS(1544), - [anon_sym_out_GT_GT] = ACTIONS(1544), - [anon_sym_e_GT_GT] = ACTIONS(1544), - [anon_sym_o_GT_GT] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1544), - [aux_sym_unquoted_token1] = ACTIONS(1530), - [aux_sym_unquoted_token2] = ACTIONS(1546), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1544), + [anon_sym_STAR_STAR] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1681), + [anon_sym_SLASH] = ACTIONS(1681), + [anon_sym_mod] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_bit_DASHshl] = ACTIONS(1683), + [anon_sym_bit_DASHshr] = ACTIONS(1683), + [anon_sym_EQ_TILDE] = ACTIONS(1683), + [anon_sym_BANG_TILDE] = ACTIONS(1683), + [anon_sym_bit_DASHand] = ACTIONS(1683), + [anon_sym_bit_DASHxor] = ACTIONS(1683), + [anon_sym_bit_DASHor] = ACTIONS(1683), + [anon_sym_and] = ACTIONS(1683), + [anon_sym_xor] = ACTIONS(1683), + [anon_sym_or] = ACTIONS(1683), + [anon_sym_in] = ACTIONS(1683), + [anon_sym_not_DASHin] = ACTIONS(1683), + [anon_sym_starts_DASHwith] = ACTIONS(1683), + [anon_sym_ends_DASHwith] = ACTIONS(1683), + [anon_sym_EQ_EQ] = ACTIONS(1683), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_GT_EQ] = ACTIONS(1683), + [aux_sym_cmd_identifier_token41] = ACTIONS(1681), + [sym__newline] = ACTIONS(1681), + [anon_sym_PIPE] = ACTIONS(1681), + [anon_sym_err_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_GT_PIPE] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1681), + [anon_sym_GT2] = ACTIONS(1681), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_in2] = ACTIONS(1681), + [anon_sym_STAR2] = ACTIONS(1681), + [anon_sym_and2] = ACTIONS(1681), + [anon_sym_xor2] = ACTIONS(1681), + [anon_sym_or2] = ACTIONS(1681), + [anon_sym_not_DASHin2] = ACTIONS(1681), + [anon_sym_starts_DASHwith2] = ACTIONS(1681), + [anon_sym_ends_DASHwith2] = ACTIONS(1681), + [anon_sym_EQ_EQ2] = ACTIONS(1681), + [anon_sym_BANG_EQ2] = ACTIONS(1681), + [anon_sym_LT2] = ACTIONS(1681), + [anon_sym_LT_EQ2] = ACTIONS(1681), + [anon_sym_GT_EQ2] = ACTIONS(1681), + [anon_sym_EQ_TILDE2] = ACTIONS(1681), + [anon_sym_BANG_TILDE2] = ACTIONS(1681), + [anon_sym_STAR_STAR2] = ACTIONS(1681), + [anon_sym_PLUS_PLUS2] = ACTIONS(1681), + [anon_sym_SLASH2] = ACTIONS(1681), + [anon_sym_mod2] = ACTIONS(1681), + [anon_sym_SLASH_SLASH2] = ACTIONS(1681), + [anon_sym_PLUS2] = ACTIONS(1681), + [anon_sym_bit_DASHshl2] = ACTIONS(1681), + [anon_sym_bit_DASHshr2] = ACTIONS(1681), + [anon_sym_bit_DASHand2] = ACTIONS(1681), + [anon_sym_bit_DASHxor2] = ACTIONS(1681), + [anon_sym_bit_DASHor2] = ACTIONS(1681), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [sym_filesize_unit] = ACTIONS(1681), + [sym_duration_unit] = ACTIONS(1683), + [anon_sym_POUND] = ACTIONS(3), }, [1259] = { - [sym__expr_parenthesized_immediate] = STATE(1576), - [sym__immediate_decimal] = STATE(1456), - [sym_val_variable] = STATE(1576), + [sym__expr_parenthesized_immediate] = STATE(1811), + [sym__immediate_decimal] = STATE(1592), + [sym_val_variable] = STATE(1811), [sym_comment] = STATE(1259), - [ts_builtin_sym_end] = ACTIONS(1544), - [sym__newline] = ACTIONS(1544), - [anon_sym_SEMI] = ACTIONS(1544), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_err_GT_PIPE] = ACTIONS(1544), - [anon_sym_out_GT_PIPE] = ACTIONS(1544), - [anon_sym_e_GT_PIPE] = ACTIONS(1544), - [anon_sym_o_GT_PIPE] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_DOLLAR] = ACTIONS(2864), - [anon_sym_DASH_DASH] = ACTIONS(1544), - [anon_sym_DASH2] = ACTIONS(1530), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_DOT_DOT] = ACTIONS(1530), - [anon_sym_LPAREN2] = ACTIONS(4033), - [anon_sym_DOT] = ACTIONS(4035), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT] = ACTIONS(1544), + [sym__newline] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_err_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_GT_PIPE] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1557), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_RPAREN] = ACTIONS(1557), + [anon_sym_DOLLAR] = ACTIONS(4033), + [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_DASH2] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_RBRACE] = ACTIONS(1557), + [anon_sym_DOT_DOT] = ACTIONS(1543), + [anon_sym_LPAREN2] = ACTIONS(4035), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1557), + [anon_sym_DOT_DOT_LT] = ACTIONS(1557), [aux_sym__immediate_decimal_token1] = ACTIONS(4037), [aux_sym__immediate_decimal_token3] = ACTIONS(4039), [aux_sym__immediate_decimal_token4] = ACTIONS(4041), [aux_sym__immediate_decimal_token5] = ACTIONS(4043), - [anon_sym_null] = ACTIONS(1544), - [anon_sym_true] = ACTIONS(1544), - [anon_sym_false] = ACTIONS(1544), - [aux_sym__val_number_decimal_token1] = ACTIONS(1530), - [aux_sym__val_number_decimal_token2] = ACTIONS(1530), - [aux_sym__val_number_decimal_token3] = ACTIONS(1530), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(1544), - [aux_sym__val_number_token2] = ACTIONS(1544), - [aux_sym__val_number_token3] = ACTIONS(1544), - [aux_sym__val_number_token4] = ACTIONS(1544), - [aux_sym__val_number_token5] = ACTIONS(1544), - [aux_sym__val_number_token6] = ACTIONS(1544), - [anon_sym_0b] = ACTIONS(1530), - [anon_sym_0o] = ACTIONS(1530), - [anon_sym_0x] = ACTIONS(1530), - [sym_val_date] = ACTIONS(1544), - [anon_sym_DQUOTE] = ACTIONS(1544), - [sym__str_single_quotes] = ACTIONS(1544), - [sym__str_back_ticks] = ACTIONS(1544), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1544), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1544), - [anon_sym_err_GT] = ACTIONS(1530), - [anon_sym_out_GT] = ACTIONS(1530), - [anon_sym_e_GT] = ACTIONS(1530), - [anon_sym_o_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT] = ACTIONS(1530), - [anon_sym_err_GT_GT] = ACTIONS(1544), - [anon_sym_out_GT_GT] = ACTIONS(1544), - [anon_sym_e_GT_GT] = ACTIONS(1544), - [anon_sym_o_GT_GT] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1544), - [aux_sym_unquoted_token1] = ACTIONS(1530), - [aux_sym_unquoted_token2] = ACTIONS(1546), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1544), + [anon_sym_null] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [aux_sym__val_number_decimal_token1] = ACTIONS(1543), + [aux_sym__val_number_decimal_token2] = ACTIONS(1543), + [aux_sym__val_number_decimal_token3] = ACTIONS(1543), + [aux_sym__val_number_decimal_token4] = ACTIONS(1543), + [aux_sym__val_number_token1] = ACTIONS(1557), + [aux_sym__val_number_token2] = ACTIONS(1557), + [aux_sym__val_number_token3] = ACTIONS(1557), + [aux_sym__val_number_token4] = ACTIONS(1557), + [aux_sym__val_number_token5] = ACTIONS(1557), + [aux_sym__val_number_token6] = ACTIONS(1557), + [anon_sym_0b] = ACTIONS(1543), + [anon_sym_0o] = ACTIONS(1543), + [anon_sym_0x] = ACTIONS(1543), + [sym_val_date] = ACTIONS(1557), + [anon_sym_DQUOTE] = ACTIONS(1557), + [sym__str_single_quotes] = ACTIONS(1557), + [sym__str_back_ticks] = ACTIONS(1557), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1557), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1557), + [anon_sym_err_GT] = ACTIONS(1543), + [anon_sym_out_GT] = ACTIONS(1543), + [anon_sym_e_GT] = ACTIONS(1543), + [anon_sym_o_GT] = ACTIONS(1543), + [anon_sym_err_PLUSout_GT] = ACTIONS(1543), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), + [anon_sym_o_PLUSe_GT] = ACTIONS(1543), + [anon_sym_e_PLUSo_GT] = ACTIONS(1543), + [anon_sym_err_GT_GT] = ACTIONS(1557), + [anon_sym_out_GT_GT] = ACTIONS(1557), + [anon_sym_e_GT_GT] = ACTIONS(1557), + [anon_sym_o_GT_GT] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1557), + [aux_sym_unquoted_token1] = ACTIONS(1543), + [aux_sym_unquoted_token2] = ACTIONS(1559), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1557), }, [1260] = { - [sym__expr_parenthesized_immediate] = STATE(1521), - [sym__immediate_decimal] = STATE(1522), - [sym_val_variable] = STATE(1521), [sym_comment] = STATE(1260), - [sym__newline] = ACTIONS(1591), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_PIPE] = ACTIONS(1591), - [anon_sym_err_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_GT_PIPE] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1591), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_RPAREN] = ACTIONS(1591), - [anon_sym_DOLLAR] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_DASH2] = ACTIONS(1581), - [anon_sym_LBRACE] = ACTIONS(1591), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1581), - [anon_sym_LPAREN2] = ACTIONS(4021), - [anon_sym_DOT] = ACTIONS(4045), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT] = ACTIONS(1591), - [aux_sym__immediate_decimal_token1] = ACTIONS(4047), - [aux_sym__immediate_decimal_token3] = ACTIONS(4049), - [aux_sym__immediate_decimal_token4] = ACTIONS(4051), - [aux_sym__immediate_decimal_token5] = ACTIONS(4053), - [anon_sym_null] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [aux_sym__val_number_decimal_token1] = ACTIONS(1581), - [aux_sym__val_number_decimal_token2] = ACTIONS(1581), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1581), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [aux_sym__val_number_token4] = ACTIONS(1591), - [aux_sym__val_number_token5] = ACTIONS(1591), - [aux_sym__val_number_token6] = ACTIONS(1591), - [anon_sym_0b] = ACTIONS(1581), - [anon_sym_0o] = ACTIONS(1581), - [anon_sym_0x] = ACTIONS(1581), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), - [anon_sym_err_GT] = ACTIONS(1581), - [anon_sym_out_GT] = ACTIONS(1581), - [anon_sym_e_GT] = ACTIONS(1581), - [anon_sym_o_GT] = ACTIONS(1581), - [anon_sym_err_PLUSout_GT] = ACTIONS(1581), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1581), - [anon_sym_o_PLUSe_GT] = ACTIONS(1581), - [anon_sym_e_PLUSo_GT] = ACTIONS(1581), - [anon_sym_err_GT_GT] = ACTIONS(1591), - [anon_sym_out_GT_GT] = ACTIONS(1591), - [anon_sym_e_GT_GT] = ACTIONS(1591), - [anon_sym_o_GT_GT] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), - [aux_sym_unquoted_token1] = ACTIONS(1581), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1591), + [sym__newline] = ACTIONS(1587), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_err_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_GT_PIPE] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(1587), + [anon_sym_DOLLAR] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1585), + [anon_sym_LPAREN2] = ACTIONS(1587), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), + [anon_sym_DOT_DOT_LT] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [aux_sym__immediate_decimal_token1] = ACTIONS(4045), + [aux_sym__immediate_decimal_token2] = ACTIONS(4047), + [anon_sym_null] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(1587), + [anon_sym_false] = ACTIONS(1587), + [aux_sym__val_number_decimal_token1] = ACTIONS(1585), + [aux_sym__val_number_decimal_token2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1587), + [aux_sym__val_number_token2] = ACTIONS(1587), + [aux_sym__val_number_token3] = ACTIONS(1587), + [aux_sym__val_number_token4] = ACTIONS(1587), + [aux_sym__val_number_token5] = ACTIONS(1587), + [aux_sym__val_number_token6] = ACTIONS(1587), + [anon_sym_0b] = ACTIONS(1585), + [sym_filesize_unit] = ACTIONS(1587), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_0o] = ACTIONS(1585), + [anon_sym_0x] = ACTIONS(1585), + [sym_val_date] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [sym__str_single_quotes] = ACTIONS(1587), + [sym__str_back_ticks] = ACTIONS(1587), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1587), + [anon_sym_out_GT_GT] = ACTIONS(1587), + [anon_sym_e_GT_GT] = ACTIONS(1587), + [anon_sym_o_GT_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [aux_sym_unquoted_token1] = ACTIONS(1585), + [aux_sym_unquoted_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1587), }, [1261] = { - [sym__expr_parenthesized_immediate] = STATE(1836), - [sym__immediate_decimal] = STATE(1631), - [sym_val_variable] = STATE(1836), + [sym__expr_parenthesized_immediate] = STATE(1504), + [sym__immediate_decimal] = STATE(1505), + [sym_val_variable] = STATE(1504), [sym_comment] = STATE(1261), - [sym__newline] = ACTIONS(1544), - [anon_sym_SEMI] = ACTIONS(1544), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_err_GT_PIPE] = ACTIONS(1544), - [anon_sym_out_GT_PIPE] = ACTIONS(1544), - [anon_sym_e_GT_PIPE] = ACTIONS(1544), - [anon_sym_o_GT_PIPE] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_RPAREN] = ACTIONS(1544), - [anon_sym_DOLLAR] = ACTIONS(4055), - [anon_sym_DASH_DASH] = ACTIONS(1544), - [anon_sym_DASH2] = ACTIONS(1530), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_RBRACE] = ACTIONS(1544), - [anon_sym_DOT_DOT] = ACTIONS(1530), - [anon_sym_LPAREN2] = ACTIONS(4057), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT] = ACTIONS(1544), - [aux_sym__immediate_decimal_token1] = ACTIONS(4059), - [aux_sym__immediate_decimal_token3] = ACTIONS(4061), - [aux_sym__immediate_decimal_token4] = ACTIONS(4063), - [aux_sym__immediate_decimal_token5] = ACTIONS(4065), - [anon_sym_null] = ACTIONS(1544), - [anon_sym_true] = ACTIONS(1544), - [anon_sym_false] = ACTIONS(1544), - [aux_sym__val_number_decimal_token1] = ACTIONS(1530), - [aux_sym__val_number_decimal_token2] = ACTIONS(1530), - [aux_sym__val_number_decimal_token3] = ACTIONS(1530), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(1544), - [aux_sym__val_number_token2] = ACTIONS(1544), - [aux_sym__val_number_token3] = ACTIONS(1544), - [aux_sym__val_number_token4] = ACTIONS(1544), - [aux_sym__val_number_token5] = ACTIONS(1544), - [aux_sym__val_number_token6] = ACTIONS(1544), - [anon_sym_0b] = ACTIONS(1530), - [anon_sym_0o] = ACTIONS(1530), - [anon_sym_0x] = ACTIONS(1530), - [sym_val_date] = ACTIONS(1544), - [anon_sym_DQUOTE] = ACTIONS(1544), - [sym__str_single_quotes] = ACTIONS(1544), - [sym__str_back_ticks] = ACTIONS(1544), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1544), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1544), - [anon_sym_err_GT] = ACTIONS(1530), - [anon_sym_out_GT] = ACTIONS(1530), - [anon_sym_e_GT] = ACTIONS(1530), - [anon_sym_o_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT] = ACTIONS(1530), - [anon_sym_err_GT_GT] = ACTIONS(1544), - [anon_sym_out_GT_GT] = ACTIONS(1544), - [anon_sym_e_GT_GT] = ACTIONS(1544), - [anon_sym_o_GT_GT] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1544), - [aux_sym_unquoted_token1] = ACTIONS(1530), - [aux_sym_unquoted_token2] = ACTIONS(1546), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1544), + [sym__newline] = ACTIONS(1603), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_PIPE] = ACTIONS(1603), + [anon_sym_err_GT_PIPE] = ACTIONS(1603), + [anon_sym_out_GT_PIPE] = ACTIONS(1603), + [anon_sym_e_GT_PIPE] = ACTIONS(1603), + [anon_sym_o_GT_PIPE] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_RPAREN] = ACTIONS(1603), + [anon_sym_DOLLAR] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_DASH2] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_RBRACE] = ACTIONS(1603), + [anon_sym_DOT_DOT] = ACTIONS(1593), + [anon_sym_LPAREN2] = ACTIONS(4017), + [anon_sym_DOT] = ACTIONS(4049), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1603), + [anon_sym_DOT_DOT_LT] = ACTIONS(1603), + [aux_sym__immediate_decimal_token1] = ACTIONS(4051), + [aux_sym__immediate_decimal_token3] = ACTIONS(4053), + [aux_sym__immediate_decimal_token4] = ACTIONS(4055), + [aux_sym__immediate_decimal_token5] = ACTIONS(4057), + [anon_sym_null] = ACTIONS(1603), + [anon_sym_true] = ACTIONS(1603), + [anon_sym_false] = ACTIONS(1603), + [aux_sym__val_number_decimal_token1] = ACTIONS(1593), + [aux_sym__val_number_decimal_token2] = ACTIONS(1593), + [aux_sym__val_number_decimal_token3] = ACTIONS(1593), + [aux_sym__val_number_decimal_token4] = ACTIONS(1593), + [aux_sym__val_number_token1] = ACTIONS(1603), + [aux_sym__val_number_token2] = ACTIONS(1603), + [aux_sym__val_number_token3] = ACTIONS(1603), + [aux_sym__val_number_token4] = ACTIONS(1603), + [aux_sym__val_number_token5] = ACTIONS(1603), + [aux_sym__val_number_token6] = ACTIONS(1603), + [anon_sym_0b] = ACTIONS(1593), + [anon_sym_0o] = ACTIONS(1593), + [anon_sym_0x] = ACTIONS(1593), + [sym_val_date] = ACTIONS(1603), + [anon_sym_DQUOTE] = ACTIONS(1603), + [sym__str_single_quotes] = ACTIONS(1603), + [sym__str_back_ticks] = ACTIONS(1603), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), + [anon_sym_err_GT] = ACTIONS(1593), + [anon_sym_out_GT] = ACTIONS(1593), + [anon_sym_e_GT] = ACTIONS(1593), + [anon_sym_o_GT] = ACTIONS(1593), + [anon_sym_err_PLUSout_GT] = ACTIONS(1593), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1593), + [anon_sym_o_PLUSe_GT] = ACTIONS(1593), + [anon_sym_e_PLUSo_GT] = ACTIONS(1593), + [anon_sym_err_GT_GT] = ACTIONS(1603), + [anon_sym_out_GT_GT] = ACTIONS(1603), + [anon_sym_e_GT_GT] = ACTIONS(1603), + [anon_sym_o_GT_GT] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1603), + [aux_sym_unquoted_token1] = ACTIONS(1593), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1603), }, [1262] = { [sym_comment] = STATE(1262), - [sym__newline] = ACTIONS(1623), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1623), - [anon_sym_err_GT_PIPE] = ACTIONS(1623), - [anon_sym_out_GT_PIPE] = ACTIONS(1623), - [anon_sym_e_GT_PIPE] = ACTIONS(1623), - [anon_sym_o_GT_PIPE] = ACTIONS(1623), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(1621), - [anon_sym_RPAREN] = ACTIONS(1623), - [anon_sym_DOLLAR] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_RBRACE] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1621), - [anon_sym_LPAREN2] = ACTIONS(1623), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1621), - [anon_sym_DOT_DOT_LT] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [aux_sym__immediate_decimal_token1] = ACTIONS(4067), - [aux_sym__immediate_decimal_token2] = ACTIONS(4069), - [anon_sym_null] = ACTIONS(1623), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [aux_sym__val_number_decimal_token1] = ACTIONS(1621), - [aux_sym__val_number_decimal_token2] = ACTIONS(1623), - [aux_sym__val_number_decimal_token3] = ACTIONS(1623), - [aux_sym__val_number_decimal_token4] = ACTIONS(1623), - [aux_sym__val_number_token1] = ACTIONS(1623), - [aux_sym__val_number_token2] = ACTIONS(1623), - [aux_sym__val_number_token3] = ACTIONS(1623), - [aux_sym__val_number_token4] = ACTIONS(1623), - [aux_sym__val_number_token5] = ACTIONS(1623), - [aux_sym__val_number_token6] = ACTIONS(1623), - [anon_sym_0b] = ACTIONS(1621), - [sym_filesize_unit] = ACTIONS(1623), - [sym_duration_unit] = ACTIONS(1623), - [anon_sym_0o] = ACTIONS(1621), - [anon_sym_0x] = ACTIONS(1621), - [sym_val_date] = ACTIONS(1623), - [anon_sym_DQUOTE] = ACTIONS(1623), - [sym__str_single_quotes] = ACTIONS(1623), - [sym__str_back_ticks] = ACTIONS(1623), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1623), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1623), - [anon_sym_err_GT] = ACTIONS(1621), - [anon_sym_out_GT] = ACTIONS(1621), - [anon_sym_e_GT] = ACTIONS(1621), - [anon_sym_o_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT] = ACTIONS(1621), - [anon_sym_err_GT_GT] = ACTIONS(1623), - [anon_sym_out_GT_GT] = ACTIONS(1623), - [anon_sym_e_GT_GT] = ACTIONS(1623), - [anon_sym_o_GT_GT] = ACTIONS(1623), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), - [aux_sym_unquoted_token1] = ACTIONS(1621), - [aux_sym_unquoted_token2] = ACTIONS(1621), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1623), + [sym__newline] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_err_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_GT_PIPE] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), + [anon_sym_LBRACK] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_RPAREN] = ACTIONS(1575), + [anon_sym_DOLLAR] = ACTIONS(1573), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_RBRACE] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_LPAREN2] = ACTIONS(1575), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT] = ACTIONS(4059), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1573), + [anon_sym_DOT_DOT_LT] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(4061), + [anon_sym_null] = ACTIONS(1575), + [anon_sym_true] = ACTIONS(1575), + [anon_sym_false] = ACTIONS(1575), + [aux_sym__val_number_decimal_token1] = ACTIONS(1573), + [aux_sym__val_number_decimal_token2] = ACTIONS(1575), + [aux_sym__val_number_decimal_token3] = ACTIONS(1575), + [aux_sym__val_number_decimal_token4] = ACTIONS(1575), + [aux_sym__val_number_token1] = ACTIONS(1575), + [aux_sym__val_number_token2] = ACTIONS(1575), + [aux_sym__val_number_token3] = ACTIONS(1575), + [aux_sym__val_number_token4] = ACTIONS(1575), + [aux_sym__val_number_token5] = ACTIONS(1575), + [aux_sym__val_number_token6] = ACTIONS(1575), + [anon_sym_0b] = ACTIONS(1573), + [sym_filesize_unit] = ACTIONS(1575), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_0o] = ACTIONS(1573), + [anon_sym_0x] = ACTIONS(1573), + [sym_val_date] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [sym__str_single_quotes] = ACTIONS(1575), + [sym__str_back_ticks] = ACTIONS(1575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1575), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1575), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1575), + [anon_sym_out_GT_GT] = ACTIONS(1575), + [anon_sym_e_GT_GT] = ACTIONS(1575), + [anon_sym_o_GT_GT] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), + [aux_sym_unquoted_token1] = ACTIONS(1573), + [aux_sym_unquoted_token2] = ACTIONS(1573), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1575), }, [1263] = { - [sym__expr_parenthesized_immediate] = STATE(1850), - [sym__immediate_decimal] = STATE(1640), - [sym_val_variable] = STATE(1850), + [sym__expr_parenthesized_immediate] = STATE(1764), + [sym__immediate_decimal] = STATE(1601), + [sym_val_variable] = STATE(1764), [sym_comment] = STATE(1263), - [sym__newline] = ACTIONS(1577), - [anon_sym_SEMI] = ACTIONS(1577), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_err_GT_PIPE] = ACTIONS(1577), - [anon_sym_out_GT_PIPE] = ACTIONS(1577), - [anon_sym_e_GT_PIPE] = ACTIONS(1577), - [anon_sym_o_GT_PIPE] = ACTIONS(1577), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1577), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1577), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1577), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_DOLLAR] = ACTIONS(4055), - [anon_sym_DASH_DASH] = ACTIONS(1577), - [anon_sym_DASH2] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), - [anon_sym_DOT_DOT] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(4057), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1577), - [anon_sym_DOT_DOT_LT] = ACTIONS(1577), - [aux_sym__immediate_decimal_token1] = ACTIONS(4059), - [aux_sym__immediate_decimal_token3] = ACTIONS(4061), - [aux_sym__immediate_decimal_token4] = ACTIONS(4063), - [aux_sym__immediate_decimal_token5] = ACTIONS(4065), - [anon_sym_null] = ACTIONS(1577), - [anon_sym_true] = ACTIONS(1577), - [anon_sym_false] = ACTIONS(1577), - [aux_sym__val_number_decimal_token1] = ACTIONS(1565), - [aux_sym__val_number_decimal_token2] = ACTIONS(1565), - [aux_sym__val_number_decimal_token3] = ACTIONS(1565), - [aux_sym__val_number_decimal_token4] = ACTIONS(1565), - [aux_sym__val_number_token1] = ACTIONS(1577), - [aux_sym__val_number_token2] = ACTIONS(1577), - [aux_sym__val_number_token3] = ACTIONS(1577), - [aux_sym__val_number_token4] = ACTIONS(1577), - [aux_sym__val_number_token5] = ACTIONS(1577), - [aux_sym__val_number_token6] = ACTIONS(1577), - [anon_sym_0b] = ACTIONS(1565), - [anon_sym_0o] = ACTIONS(1565), - [anon_sym_0x] = ACTIONS(1565), - [sym_val_date] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1577), - [sym__str_single_quotes] = ACTIONS(1577), - [sym__str_back_ticks] = ACTIONS(1577), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1577), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1577), - [anon_sym_err_GT] = ACTIONS(1565), - [anon_sym_out_GT] = ACTIONS(1565), - [anon_sym_e_GT] = ACTIONS(1565), - [anon_sym_o_GT] = ACTIONS(1565), - [anon_sym_err_PLUSout_GT] = ACTIONS(1565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), - [anon_sym_o_PLUSe_GT] = ACTIONS(1565), - [anon_sym_e_PLUSo_GT] = ACTIONS(1565), - [anon_sym_err_GT_GT] = ACTIONS(1577), - [anon_sym_out_GT_GT] = ACTIONS(1577), - [anon_sym_e_GT_GT] = ACTIONS(1577), - [anon_sym_o_GT_GT] = ACTIONS(1577), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1577), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1577), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1577), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1577), - [aux_sym_unquoted_token1] = ACTIONS(1565), - [aux_sym_unquoted_token2] = ACTIONS(1579), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1577), + [sym__newline] = ACTIONS(1659), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1659), + [anon_sym_err_GT_PIPE] = ACTIONS(1659), + [anon_sym_out_GT_PIPE] = ACTIONS(1659), + [anon_sym_e_GT_PIPE] = ACTIONS(1659), + [anon_sym_o_GT_PIPE] = ACTIONS(1659), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1659), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1659), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1659), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym_RPAREN] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(4033), + [anon_sym_DASH_DASH] = ACTIONS(1659), + [anon_sym_DASH2] = ACTIONS(1657), + [anon_sym_LBRACE] = ACTIONS(1659), + [anon_sym_RBRACE] = ACTIONS(1659), + [anon_sym_DOT_DOT] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(4035), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1659), + [anon_sym_DOT_DOT_LT] = ACTIONS(1659), + [aux_sym__immediate_decimal_token1] = ACTIONS(4037), + [aux_sym__immediate_decimal_token3] = ACTIONS(4039), + [aux_sym__immediate_decimal_token4] = ACTIONS(4041), + [aux_sym__immediate_decimal_token5] = ACTIONS(4043), + [anon_sym_null] = ACTIONS(1659), + [anon_sym_true] = ACTIONS(1659), + [anon_sym_false] = ACTIONS(1659), + [aux_sym__val_number_decimal_token1] = ACTIONS(1657), + [aux_sym__val_number_decimal_token2] = ACTIONS(1657), + [aux_sym__val_number_decimal_token3] = ACTIONS(1657), + [aux_sym__val_number_decimal_token4] = ACTIONS(1657), + [aux_sym__val_number_token1] = ACTIONS(1659), + [aux_sym__val_number_token2] = ACTIONS(1659), + [aux_sym__val_number_token3] = ACTIONS(1659), + [aux_sym__val_number_token4] = ACTIONS(1659), + [aux_sym__val_number_token5] = ACTIONS(1659), + [aux_sym__val_number_token6] = ACTIONS(1659), + [anon_sym_0b] = ACTIONS(1657), + [anon_sym_0o] = ACTIONS(1657), + [anon_sym_0x] = ACTIONS(1657), + [sym_val_date] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1659), + [sym__str_single_quotes] = ACTIONS(1659), + [sym__str_back_ticks] = ACTIONS(1659), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1659), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1659), + [anon_sym_err_GT] = ACTIONS(1657), + [anon_sym_out_GT] = ACTIONS(1657), + [anon_sym_e_GT] = ACTIONS(1657), + [anon_sym_o_GT] = ACTIONS(1657), + [anon_sym_err_PLUSout_GT] = ACTIONS(1657), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1657), + [anon_sym_o_PLUSe_GT] = ACTIONS(1657), + [anon_sym_e_PLUSo_GT] = ACTIONS(1657), + [anon_sym_err_GT_GT] = ACTIONS(1659), + [anon_sym_out_GT_GT] = ACTIONS(1659), + [anon_sym_e_GT_GT] = ACTIONS(1659), + [anon_sym_o_GT_GT] = ACTIONS(1659), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1659), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1659), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1659), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1659), + [aux_sym_unquoted_token1] = ACTIONS(1657), + [aux_sym_unquoted_token2] = ACTIONS(1661), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1659), }, [1264] = { + [sym__expr_parenthesized_immediate] = STATE(1609), + [sym__immediate_decimal] = STATE(1488), + [sym_val_variable] = STATE(1609), [sym_comment] = STATE(1264), - [sym__newline] = ACTIONS(1609), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_PIPE] = ACTIONS(1609), - [anon_sym_err_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_GT_PIPE] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1609), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_RPAREN] = ACTIONS(1609), - [anon_sym_DOLLAR] = ACTIONS(1607), - [anon_sym_DASH_DASH] = ACTIONS(1609), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_LBRACE] = ACTIONS(1609), - [anon_sym_RBRACE] = ACTIONS(1609), - [anon_sym_DOT_DOT] = ACTIONS(1607), - [anon_sym_LPAREN2] = ACTIONS(1609), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT] = ACTIONS(4071), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), - [anon_sym_DOT_DOT_LT] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(4073), - [anon_sym_null] = ACTIONS(1609), - [anon_sym_true] = ACTIONS(1609), - [anon_sym_false] = ACTIONS(1609), - [aux_sym__val_number_decimal_token1] = ACTIONS(1607), - [aux_sym__val_number_decimal_token2] = ACTIONS(1609), - [aux_sym__val_number_decimal_token3] = ACTIONS(1609), - [aux_sym__val_number_decimal_token4] = ACTIONS(1609), - [aux_sym__val_number_token1] = ACTIONS(1609), - [aux_sym__val_number_token2] = ACTIONS(1609), - [aux_sym__val_number_token3] = ACTIONS(1609), - [aux_sym__val_number_token4] = ACTIONS(1609), - [aux_sym__val_number_token5] = ACTIONS(1609), - [aux_sym__val_number_token6] = ACTIONS(1609), - [anon_sym_0b] = ACTIONS(1607), - [sym_filesize_unit] = ACTIONS(1609), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_0o] = ACTIONS(1607), - [anon_sym_0x] = ACTIONS(1607), - [sym_val_date] = ACTIONS(1609), - [anon_sym_DQUOTE] = ACTIONS(1609), - [sym__str_single_quotes] = ACTIONS(1609), - [sym__str_back_ticks] = ACTIONS(1609), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1609), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1609), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1609), - [anon_sym_out_GT_GT] = ACTIONS(1609), - [anon_sym_e_GT_GT] = ACTIONS(1609), - [anon_sym_o_GT_GT] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), - [aux_sym_unquoted_token1] = ACTIONS(1607), - [aux_sym_unquoted_token2] = ACTIONS(1607), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1609), + [ts_builtin_sym_end] = ACTIONS(1557), + [sym__newline] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_err_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_GT_PIPE] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1557), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_DASH2] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_DOT_DOT] = ACTIONS(1543), + [anon_sym_LPAREN2] = ACTIONS(4063), + [anon_sym_DOT] = ACTIONS(4065), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1557), + [anon_sym_DOT_DOT_LT] = ACTIONS(1557), + [aux_sym__immediate_decimal_token1] = ACTIONS(4067), + [aux_sym__immediate_decimal_token3] = ACTIONS(4069), + [aux_sym__immediate_decimal_token4] = ACTIONS(4071), + [aux_sym__immediate_decimal_token5] = ACTIONS(4073), + [anon_sym_null] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [aux_sym__val_number_decimal_token1] = ACTIONS(1543), + [aux_sym__val_number_decimal_token2] = ACTIONS(1543), + [aux_sym__val_number_decimal_token3] = ACTIONS(1543), + [aux_sym__val_number_decimal_token4] = ACTIONS(1543), + [aux_sym__val_number_token1] = ACTIONS(1557), + [aux_sym__val_number_token2] = ACTIONS(1557), + [aux_sym__val_number_token3] = ACTIONS(1557), + [aux_sym__val_number_token4] = ACTIONS(1557), + [aux_sym__val_number_token5] = ACTIONS(1557), + [aux_sym__val_number_token6] = ACTIONS(1557), + [anon_sym_0b] = ACTIONS(1543), + [anon_sym_0o] = ACTIONS(1543), + [anon_sym_0x] = ACTIONS(1543), + [sym_val_date] = ACTIONS(1557), + [anon_sym_DQUOTE] = ACTIONS(1557), + [sym__str_single_quotes] = ACTIONS(1557), + [sym__str_back_ticks] = ACTIONS(1557), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1557), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1557), + [anon_sym_err_GT] = ACTIONS(1543), + [anon_sym_out_GT] = ACTIONS(1543), + [anon_sym_e_GT] = ACTIONS(1543), + [anon_sym_o_GT] = ACTIONS(1543), + [anon_sym_err_PLUSout_GT] = ACTIONS(1543), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), + [anon_sym_o_PLUSe_GT] = ACTIONS(1543), + [anon_sym_e_PLUSo_GT] = ACTIONS(1543), + [anon_sym_err_GT_GT] = ACTIONS(1557), + [anon_sym_out_GT_GT] = ACTIONS(1557), + [anon_sym_e_GT_GT] = ACTIONS(1557), + [anon_sym_o_GT_GT] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1557), + [aux_sym_unquoted_token1] = ACTIONS(1543), + [aux_sym_unquoted_token2] = ACTIONS(1559), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1557), }, [1265] = { + [sym__val_range] = STATE(7932), + [sym__value] = STATE(6009), + [sym_val_nothing] = STATE(5879), + [sym_val_bool] = STATE(5689), + [sym_val_variable] = STATE(5879), + [sym_val_number] = STATE(5879), + [sym__val_number_decimal] = STATE(5141), + [sym__val_number] = STATE(5951), + [sym_val_duration] = STATE(5879), + [sym_val_filesize] = STATE(5879), + [sym_val_binary] = STATE(5879), + [sym_val_string] = STATE(5879), + [sym__raw_str] = STATE(5616), + [sym__str_double_quotes] = STATE(5616), + [sym_val_interpolated] = STATE(5879), + [sym__inter_single_quotes] = STATE(5824), + [sym__inter_double_quotes] = STATE(5825), + [sym_val_list] = STATE(5879), + [sym_val_record] = STATE(5879), + [sym_val_table] = STATE(5879), + [sym_val_closure] = STATE(5879), + [sym_unquoted] = STATE(6015), + [sym__unquoted_anonymous_prefix] = STATE(7904), [sym_comment] = STATE(1265), - [sym__newline] = ACTIONS(1623), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1623), - [anon_sym_err_GT_PIPE] = ACTIONS(1623), - [anon_sym_out_GT_PIPE] = ACTIONS(1623), - [anon_sym_e_GT_PIPE] = ACTIONS(1623), - [anon_sym_o_GT_PIPE] = ACTIONS(1623), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(1623), - [anon_sym_RPAREN] = ACTIONS(1623), - [anon_sym_DOLLAR] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_RBRACE] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1621), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1621), - [anon_sym_DOT_DOT_LT] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [aux_sym__immediate_decimal_token1] = ACTIONS(4075), - [aux_sym__immediate_decimal_token2] = ACTIONS(4077), - [anon_sym_null] = ACTIONS(1623), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [aux_sym__val_number_decimal_token1] = ACTIONS(1621), - [aux_sym__val_number_decimal_token2] = ACTIONS(1623), - [aux_sym__val_number_decimal_token3] = ACTIONS(1623), - [aux_sym__val_number_decimal_token4] = ACTIONS(1623), - [aux_sym__val_number_token1] = ACTIONS(1623), - [aux_sym__val_number_token2] = ACTIONS(1623), - [aux_sym__val_number_token3] = ACTIONS(1623), - [aux_sym__val_number_token4] = ACTIONS(1623), - [aux_sym__val_number_token5] = ACTIONS(1623), - [aux_sym__val_number_token6] = ACTIONS(1623), - [anon_sym_0b] = ACTIONS(1621), - [sym_filesize_unit] = ACTIONS(1623), - [sym_duration_unit] = ACTIONS(1623), - [anon_sym_0o] = ACTIONS(1621), - [anon_sym_0x] = ACTIONS(1621), - [sym_val_date] = ACTIONS(1623), - [anon_sym_DQUOTE] = ACTIONS(1623), - [sym__str_single_quotes] = ACTIONS(1623), - [sym__str_back_ticks] = ACTIONS(1623), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1623), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1623), - [anon_sym_err_GT] = ACTIONS(1621), - [anon_sym_out_GT] = ACTIONS(1621), - [anon_sym_e_GT] = ACTIONS(1621), - [anon_sym_o_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT] = ACTIONS(1621), - [anon_sym_err_GT_GT] = ACTIONS(1623), - [anon_sym_out_GT_GT] = ACTIONS(1623), - [anon_sym_e_GT_GT] = ACTIONS(1623), - [anon_sym_o_GT_GT] = ACTIONS(1623), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), - [aux_sym_unquoted_token1] = ACTIONS(1621), - [aux_sym_unquoted_token2] = ACTIONS(1621), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1623), + [anon_sym_LBRACK] = ACTIONS(4075), + [anon_sym_LPAREN] = ACTIONS(4077), + [anon_sym_DOLLAR] = ACTIONS(4079), + [anon_sym_LBRACE] = ACTIONS(4081), + [anon_sym_DOT_DOT] = ACTIONS(4083), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4085), + [anon_sym_DOT_DOT_LT] = ACTIONS(4085), + [anon_sym_null] = ACTIONS(4087), + [anon_sym_true] = ACTIONS(4089), + [anon_sym_false] = ACTIONS(4089), + [aux_sym__val_number_decimal_token1] = ACTIONS(4091), + [aux_sym__val_number_decimal_token2] = ACTIONS(4093), + [aux_sym__val_number_decimal_token3] = ACTIONS(4095), + [aux_sym__val_number_decimal_token4] = ACTIONS(4097), + [aux_sym__val_number_token1] = ACTIONS(4099), + [aux_sym__val_number_token2] = ACTIONS(4099), + [aux_sym__val_number_token3] = ACTIONS(4099), + [aux_sym__val_number_token4] = ACTIONS(4101), + [aux_sym__val_number_token5] = ACTIONS(4101), + [aux_sym__val_number_token6] = ACTIONS(4101), + [anon_sym_0b] = ACTIONS(4103), + [anon_sym_0o] = ACTIONS(4105), + [anon_sym_0x] = ACTIONS(4105), + [sym_val_date] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(4109), + [sym__str_single_quotes] = ACTIONS(4111), + [sym__str_back_ticks] = ACTIONS(4111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4115), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4117), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4119), }, [1266] = { - [sym__expr_parenthesized_immediate] = STATE(1598), - [sym__immediate_decimal] = STATE(1646), - [sym_val_variable] = STATE(1598), + [sym__val_range] = STATE(8054), + [sym__value] = STATE(4756), + [sym_val_nothing] = STATE(4729), + [sym_val_bool] = STATE(4448), + [sym_val_variable] = STATE(4729), + [sym_val_number] = STATE(4729), + [sym__val_number_decimal] = STATE(4103), + [sym__val_number] = STATE(4716), + [sym_val_duration] = STATE(4729), + [sym_val_filesize] = STATE(4729), + [sym_val_binary] = STATE(4729), + [sym_val_string] = STATE(4729), + [sym__raw_str] = STATE(4371), + [sym__str_double_quotes] = STATE(4371), + [sym_val_interpolated] = STATE(4729), + [sym__inter_single_quotes] = STATE(4731), + [sym__inter_double_quotes] = STATE(4732), + [sym_val_list] = STATE(4729), + [sym_val_record] = STATE(4729), + [sym_val_table] = STATE(4729), + [sym_val_closure] = STATE(4729), + [sym_unquoted] = STATE(4757), + [sym__unquoted_anonymous_prefix] = STATE(7757), [sym_comment] = STATE(1266), - [ts_builtin_sym_end] = ACTIONS(1591), - [sym__newline] = ACTIONS(1591), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_PIPE] = ACTIONS(1591), - [anon_sym_err_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_GT_PIPE] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1591), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_DOLLAR] = ACTIONS(2864), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_DASH2] = ACTIONS(1581), - [anon_sym_LBRACE] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1581), - [anon_sym_LPAREN2] = ACTIONS(4033), - [anon_sym_DOT] = ACTIONS(4079), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT] = ACTIONS(1591), - [aux_sym__immediate_decimal_token1] = ACTIONS(4081), - [aux_sym__immediate_decimal_token3] = ACTIONS(4083), - [aux_sym__immediate_decimal_token4] = ACTIONS(4085), - [aux_sym__immediate_decimal_token5] = ACTIONS(4087), - [anon_sym_null] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [aux_sym__val_number_decimal_token1] = ACTIONS(1581), - [aux_sym__val_number_decimal_token2] = ACTIONS(1581), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1581), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [aux_sym__val_number_token4] = ACTIONS(1591), - [aux_sym__val_number_token5] = ACTIONS(1591), - [aux_sym__val_number_token6] = ACTIONS(1591), - [anon_sym_0b] = ACTIONS(1581), - [anon_sym_0o] = ACTIONS(1581), - [anon_sym_0x] = ACTIONS(1581), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), - [anon_sym_err_GT] = ACTIONS(1581), - [anon_sym_out_GT] = ACTIONS(1581), - [anon_sym_e_GT] = ACTIONS(1581), - [anon_sym_o_GT] = ACTIONS(1581), - [anon_sym_err_PLUSout_GT] = ACTIONS(1581), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1581), - [anon_sym_o_PLUSe_GT] = ACTIONS(1581), - [anon_sym_e_PLUSo_GT] = ACTIONS(1581), - [anon_sym_err_GT_GT] = ACTIONS(1591), - [anon_sym_out_GT_GT] = ACTIONS(1591), - [anon_sym_e_GT_GT] = ACTIONS(1591), - [anon_sym_o_GT_GT] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), - [aux_sym_unquoted_token1] = ACTIONS(1581), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1591), + [anon_sym_LBRACK] = ACTIONS(4121), + [anon_sym_LPAREN] = ACTIONS(4123), + [anon_sym_DOLLAR] = ACTIONS(4125), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_DOT_DOT] = ACTIONS(4129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4131), + [anon_sym_DOT_DOT_LT] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4133), + [anon_sym_true] = ACTIONS(4135), + [anon_sym_false] = ACTIONS(4135), + [aux_sym__val_number_decimal_token1] = ACTIONS(1980), + [aux_sym__val_number_decimal_token2] = ACTIONS(4137), + [aux_sym__val_number_decimal_token3] = ACTIONS(4139), + [aux_sym__val_number_decimal_token4] = ACTIONS(4141), + [aux_sym__val_number_token1] = ACTIONS(4143), + [aux_sym__val_number_token2] = ACTIONS(4143), + [aux_sym__val_number_token3] = ACTIONS(4143), + [aux_sym__val_number_token4] = ACTIONS(4145), + [aux_sym__val_number_token5] = ACTIONS(4145), + [aux_sym__val_number_token6] = ACTIONS(4145), + [anon_sym_0b] = ACTIONS(1990), + [anon_sym_0o] = ACTIONS(1992), + [anon_sym_0x] = ACTIONS(1992), + [sym_val_date] = ACTIONS(4147), + [anon_sym_DQUOTE] = ACTIONS(4149), + [sym__str_single_quotes] = ACTIONS(4151), + [sym__str_back_ticks] = ACTIONS(4151), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4153), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4155), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(2008), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2010), }, [1267] = { - [sym__val_range] = STATE(7673), - [sym__value] = STATE(6059), - [sym_val_nothing] = STATE(4907), - [sym_val_bool] = STATE(5835), - [sym_val_variable] = STATE(4907), - [sym_val_number] = STATE(4907), - [sym__val_number_decimal] = STATE(5242), - [sym__val_number] = STATE(4940), - [sym_val_duration] = STATE(4907), - [sym_val_filesize] = STATE(4907), - [sym_val_binary] = STATE(4907), - [sym_val_string] = STATE(4907), - [sym__raw_str] = STATE(4492), - [sym__str_double_quotes] = STATE(4492), - [sym_val_interpolated] = STATE(4907), - [sym__inter_single_quotes] = STATE(4952), - [sym__inter_double_quotes] = STATE(4953), - [sym_val_list] = STATE(4907), - [sym_val_record] = STATE(4907), - [sym_val_table] = STATE(4907), - [sym_val_closure] = STATE(4907), - [sym_unquoted] = STATE(6060), - [sym__unquoted_anonymous_prefix] = STATE(7821), + [sym__val_range] = STATE(8054), + [sym__value] = STATE(4702), + [sym_val_nothing] = STATE(4729), + [sym_val_bool] = STATE(6971), + [sym_val_variable] = STATE(4729), + [sym_val_number] = STATE(4729), + [sym__val_number_decimal] = STATE(5511), + [sym__val_number] = STATE(4716), + [sym_val_duration] = STATE(4729), + [sym_val_filesize] = STATE(4729), + [sym_val_binary] = STATE(4729), + [sym_val_string] = STATE(4729), + [sym__raw_str] = STATE(4371), + [sym__str_double_quotes] = STATE(4371), + [sym_val_interpolated] = STATE(4729), + [sym__inter_single_quotes] = STATE(4731), + [sym__inter_double_quotes] = STATE(4732), + [sym_val_list] = STATE(4729), + [sym_val_record] = STATE(4729), + [sym_val_table] = STATE(4729), + [sym_val_closure] = STATE(4729), + [sym_unquoted] = STATE(4703), + [sym__unquoted_anonymous_prefix] = STATE(7757), [sym_comment] = STATE(1267), - [anon_sym_LBRACK] = ACTIONS(4089), - [anon_sym_LPAREN] = ACTIONS(4091), - [anon_sym_DOLLAR] = ACTIONS(4093), - [anon_sym_LBRACE] = ACTIONS(4095), - [anon_sym_DOT_DOT] = ACTIONS(4097), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4099), - [anon_sym_DOT_DOT_LT] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4103), - [anon_sym_false] = ACTIONS(4103), - [aux_sym__val_number_decimal_token1] = ACTIONS(4105), - [aux_sym__val_number_decimal_token2] = ACTIONS(4107), - [aux_sym__val_number_decimal_token3] = ACTIONS(4109), - [aux_sym__val_number_decimal_token4] = ACTIONS(4111), - [aux_sym__val_number_token1] = ACTIONS(3593), - [aux_sym__val_number_token2] = ACTIONS(3593), - [aux_sym__val_number_token3] = ACTIONS(3593), - [aux_sym__val_number_token4] = ACTIONS(4113), - [aux_sym__val_number_token5] = ACTIONS(4113), - [aux_sym__val_number_token6] = ACTIONS(4113), - [anon_sym_0b] = ACTIONS(3597), - [anon_sym_0o] = ACTIONS(3599), - [anon_sym_0x] = ACTIONS(3599), - [sym_val_date] = ACTIONS(4115), - [anon_sym_DQUOTE] = ACTIONS(4009), - [sym__str_single_quotes] = ACTIONS(4011), - [sym__str_back_ticks] = ACTIONS(4011), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4117), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4121), + [anon_sym_LPAREN] = ACTIONS(4123), + [anon_sym_DOLLAR] = ACTIONS(4125), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_DOT_DOT] = ACTIONS(4129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4131), + [anon_sym_DOT_DOT_LT] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4157), + [anon_sym_true] = ACTIONS(4159), + [anon_sym_false] = ACTIONS(4159), + [aux_sym__val_number_decimal_token1] = ACTIONS(4161), + [aux_sym__val_number_decimal_token2] = ACTIONS(4163), + [aux_sym__val_number_decimal_token3] = ACTIONS(4165), + [aux_sym__val_number_decimal_token4] = ACTIONS(4167), + [aux_sym__val_number_token1] = ACTIONS(4143), + [aux_sym__val_number_token2] = ACTIONS(4143), + [aux_sym__val_number_token3] = ACTIONS(4143), + [aux_sym__val_number_token4] = ACTIONS(4169), + [aux_sym__val_number_token5] = ACTIONS(4169), + [aux_sym__val_number_token6] = ACTIONS(4169), + [anon_sym_0b] = ACTIONS(1990), + [anon_sym_0o] = ACTIONS(1992), + [anon_sym_0x] = ACTIONS(1992), + [sym_val_date] = ACTIONS(4171), + [anon_sym_DQUOTE] = ACTIONS(4149), + [sym__str_single_quotes] = ACTIONS(4151), + [sym__str_back_ticks] = ACTIONS(4151), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4153), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4155), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(2008), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2010), }, [1268] = { - [sym__val_range] = STATE(7673), - [sym__value] = STATE(6063), - [sym_val_nothing] = STATE(4907), - [sym_val_bool] = STATE(7042), - [sym_val_variable] = STATE(4907), - [sym_val_number] = STATE(4907), - [sym__val_number_decimal] = STATE(5550), - [sym__val_number] = STATE(4940), - [sym_val_duration] = STATE(4907), - [sym_val_filesize] = STATE(4907), - [sym_val_binary] = STATE(4907), - [sym_val_string] = STATE(4907), - [sym__raw_str] = STATE(4492), - [sym__str_double_quotes] = STATE(4492), - [sym_val_interpolated] = STATE(4907), - [sym__inter_single_quotes] = STATE(4952), - [sym__inter_double_quotes] = STATE(4953), - [sym_val_list] = STATE(4907), - [sym_val_record] = STATE(4907), - [sym_val_table] = STATE(4907), - [sym_val_closure] = STATE(4907), - [sym_unquoted] = STATE(6064), - [sym__unquoted_anonymous_prefix] = STATE(7821), + [sym__val_range] = STATE(8054), + [sym__value] = STATE(4766), + [sym_val_nothing] = STATE(4729), + [sym_val_bool] = STATE(4448), + [sym_val_variable] = STATE(4729), + [sym_val_number] = STATE(4729), + [sym__val_number_decimal] = STATE(4103), + [sym__val_number] = STATE(4716), + [sym_val_duration] = STATE(4729), + [sym_val_filesize] = STATE(4729), + [sym_val_binary] = STATE(4729), + [sym_val_string] = STATE(4729), + [sym__raw_str] = STATE(4371), + [sym__str_double_quotes] = STATE(4371), + [sym_val_interpolated] = STATE(4729), + [sym__inter_single_quotes] = STATE(4731), + [sym__inter_double_quotes] = STATE(4732), + [sym_val_list] = STATE(4729), + [sym_val_record] = STATE(4729), + [sym_val_table] = STATE(4729), + [sym_val_closure] = STATE(4729), + [sym_unquoted] = STATE(4767), + [sym__unquoted_anonymous_prefix] = STATE(7757), [sym_comment] = STATE(1268), - [anon_sym_LBRACK] = ACTIONS(4089), - [anon_sym_LPAREN] = ACTIONS(4091), - [anon_sym_DOLLAR] = ACTIONS(4119), - [anon_sym_LBRACE] = ACTIONS(4095), - [anon_sym_DOT_DOT] = ACTIONS(4097), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4099), - [anon_sym_DOT_DOT_LT] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4121), - [anon_sym_true] = ACTIONS(4123), - [anon_sym_false] = ACTIONS(4123), - [aux_sym__val_number_decimal_token1] = ACTIONS(4125), - [aux_sym__val_number_decimal_token2] = ACTIONS(4127), - [aux_sym__val_number_decimal_token3] = ACTIONS(4129), - [aux_sym__val_number_decimal_token4] = ACTIONS(4131), - [aux_sym__val_number_token1] = ACTIONS(3593), - [aux_sym__val_number_token2] = ACTIONS(3593), - [aux_sym__val_number_token3] = ACTIONS(3593), - [aux_sym__val_number_token4] = ACTIONS(4133), - [aux_sym__val_number_token5] = ACTIONS(4133), - [aux_sym__val_number_token6] = ACTIONS(4133), - [anon_sym_0b] = ACTIONS(3597), - [anon_sym_0o] = ACTIONS(3599), - [anon_sym_0x] = ACTIONS(3599), - [sym_val_date] = ACTIONS(4135), - [anon_sym_DQUOTE] = ACTIONS(4009), - [sym__str_single_quotes] = ACTIONS(4011), - [sym__str_back_ticks] = ACTIONS(4011), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4117), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4121), + [anon_sym_LPAREN] = ACTIONS(4123), + [anon_sym_DOLLAR] = ACTIONS(4125), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_DOT_DOT] = ACTIONS(4129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4131), + [anon_sym_DOT_DOT_LT] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4133), + [anon_sym_true] = ACTIONS(4135), + [anon_sym_false] = ACTIONS(4135), + [aux_sym__val_number_decimal_token1] = ACTIONS(1980), + [aux_sym__val_number_decimal_token2] = ACTIONS(4137), + [aux_sym__val_number_decimal_token3] = ACTIONS(4139), + [aux_sym__val_number_decimal_token4] = ACTIONS(4141), + [aux_sym__val_number_token1] = ACTIONS(4143), + [aux_sym__val_number_token2] = ACTIONS(4143), + [aux_sym__val_number_token3] = ACTIONS(4143), + [aux_sym__val_number_token4] = ACTIONS(4145), + [aux_sym__val_number_token5] = ACTIONS(4145), + [aux_sym__val_number_token6] = ACTIONS(4145), + [anon_sym_0b] = ACTIONS(1990), + [anon_sym_0o] = ACTIONS(1992), + [anon_sym_0x] = ACTIONS(1992), + [sym_val_date] = ACTIONS(4147), + [anon_sym_DQUOTE] = ACTIONS(4149), + [sym__str_single_quotes] = ACTIONS(4151), + [sym__str_back_ticks] = ACTIONS(4151), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4153), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4155), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(2008), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2010), }, [1269] = { [sym_comment] = STATE(1269), - [sym__newline] = ACTIONS(1609), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_PIPE] = ACTIONS(1609), - [anon_sym_err_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_GT_PIPE] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1609), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_RPAREN] = ACTIONS(1609), - [anon_sym_DOLLAR] = ACTIONS(1607), - [anon_sym_DASH_DASH] = ACTIONS(1609), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_LBRACE] = ACTIONS(1609), - [anon_sym_RBRACE] = ACTIONS(1609), - [anon_sym_DOT_DOT] = ACTIONS(1607), - [anon_sym_LPAREN2] = ACTIONS(1609), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), - [anon_sym_DOT_DOT_LT] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(4073), - [anon_sym_null] = ACTIONS(1609), - [anon_sym_true] = ACTIONS(1609), - [anon_sym_false] = ACTIONS(1609), - [aux_sym__val_number_decimal_token1] = ACTIONS(1607), - [aux_sym__val_number_decimal_token2] = ACTIONS(1609), - [aux_sym__val_number_decimal_token3] = ACTIONS(1609), - [aux_sym__val_number_decimal_token4] = ACTIONS(1609), - [aux_sym__val_number_token1] = ACTIONS(1609), - [aux_sym__val_number_token2] = ACTIONS(1609), - [aux_sym__val_number_token3] = ACTIONS(1609), - [aux_sym__val_number_token4] = ACTIONS(1609), - [aux_sym__val_number_token5] = ACTIONS(1609), - [aux_sym__val_number_token6] = ACTIONS(1609), - [anon_sym_0b] = ACTIONS(1607), - [sym_filesize_unit] = ACTIONS(1609), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_0o] = ACTIONS(1607), - [anon_sym_0x] = ACTIONS(1607), - [sym_val_date] = ACTIONS(1609), - [anon_sym_DQUOTE] = ACTIONS(1609), - [sym__str_single_quotes] = ACTIONS(1609), - [sym__str_back_ticks] = ACTIONS(1609), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1609), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1609), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1609), - [anon_sym_out_GT_GT] = ACTIONS(1609), - [anon_sym_e_GT_GT] = ACTIONS(1609), - [anon_sym_o_GT_GT] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), - [aux_sym_unquoted_token1] = ACTIONS(1607), - [aux_sym_unquoted_token2] = ACTIONS(1607), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1609), + [sym__newline] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_err_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_GT_PIPE] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), + [anon_sym_LBRACK] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_RPAREN] = ACTIONS(1575), + [anon_sym_DOLLAR] = ACTIONS(1573), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_RBRACE] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1573), + [anon_sym_DOT_DOT_LT] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(4175), + [anon_sym_null] = ACTIONS(1575), + [anon_sym_true] = ACTIONS(1575), + [anon_sym_false] = ACTIONS(1575), + [aux_sym__val_number_decimal_token1] = ACTIONS(1573), + [aux_sym__val_number_decimal_token2] = ACTIONS(1575), + [aux_sym__val_number_decimal_token3] = ACTIONS(1575), + [aux_sym__val_number_decimal_token4] = ACTIONS(1575), + [aux_sym__val_number_token1] = ACTIONS(1575), + [aux_sym__val_number_token2] = ACTIONS(1575), + [aux_sym__val_number_token3] = ACTIONS(1575), + [aux_sym__val_number_token4] = ACTIONS(1575), + [aux_sym__val_number_token5] = ACTIONS(1575), + [aux_sym__val_number_token6] = ACTIONS(1575), + [anon_sym_0b] = ACTIONS(1573), + [sym_filesize_unit] = ACTIONS(1575), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_0o] = ACTIONS(1573), + [anon_sym_0x] = ACTIONS(1573), + [sym_val_date] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [sym__str_single_quotes] = ACTIONS(1575), + [sym__str_back_ticks] = ACTIONS(1575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1575), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1575), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1575), + [anon_sym_out_GT_GT] = ACTIONS(1575), + [anon_sym_e_GT_GT] = ACTIONS(1575), + [anon_sym_o_GT_GT] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), + [aux_sym_unquoted_token1] = ACTIONS(1573), + [aux_sym_unquoted_token2] = ACTIONS(1573), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1575), }, [1270] = { + [sym__val_range] = STATE(7739), + [sym__value] = STATE(6136), + [sym_val_nothing] = STATE(5002), + [sym_val_bool] = STATE(7278), + [sym_val_variable] = STATE(5002), + [sym_val_number] = STATE(5002), + [sym__val_number_decimal] = STATE(5602), + [sym__val_number] = STATE(4893), + [sym_val_duration] = STATE(5002), + [sym_val_filesize] = STATE(5002), + [sym_val_binary] = STATE(5002), + [sym_val_string] = STATE(5002), + [sym__raw_str] = STATE(4332), + [sym__str_double_quotes] = STATE(4332), + [sym_val_interpolated] = STATE(5002), + [sym__inter_single_quotes] = STATE(4834), + [sym__inter_double_quotes] = STATE(4836), + [sym_val_list] = STATE(5002), + [sym_val_record] = STATE(5002), + [sym_val_table] = STATE(5002), + [sym_val_closure] = STATE(5002), + [sym_unquoted] = STATE(6137), + [sym__unquoted_anonymous_prefix] = STATE(7847), [sym_comment] = STATE(1270), - [sym__newline] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_err_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_GT_PIPE] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_RPAREN] = ACTIONS(1675), - [anon_sym_DOLLAR] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1675), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1675), - [anon_sym_DOT_DOT] = ACTIONS(1673), - [anon_sym_LPAREN2] = ACTIONS(1675), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1673), - [anon_sym_DOT_DOT_LT] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [aux_sym__immediate_decimal_token2] = ACTIONS(4137), - [anon_sym_null] = ACTIONS(1675), - [anon_sym_true] = ACTIONS(1675), - [anon_sym_false] = ACTIONS(1675), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1675), - [aux_sym__val_number_decimal_token4] = ACTIONS(1675), - [aux_sym__val_number_token1] = ACTIONS(1675), - [aux_sym__val_number_token2] = ACTIONS(1675), - [aux_sym__val_number_token3] = ACTIONS(1675), - [aux_sym__val_number_token4] = ACTIONS(1675), - [aux_sym__val_number_token5] = ACTIONS(1675), - [aux_sym__val_number_token6] = ACTIONS(1675), - [anon_sym_0b] = ACTIONS(1673), - [sym_filesize_unit] = ACTIONS(1675), - [sym_duration_unit] = ACTIONS(1675), - [anon_sym_0o] = ACTIONS(1673), - [anon_sym_0x] = ACTIONS(1673), - [sym_val_date] = ACTIONS(1675), - [anon_sym_DQUOTE] = ACTIONS(1675), - [sym__str_single_quotes] = ACTIONS(1675), - [sym__str_back_ticks] = ACTIONS(1675), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1675), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1675), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1675), - [anon_sym_out_GT_GT] = ACTIONS(1675), - [anon_sym_e_GT_GT] = ACTIONS(1675), - [anon_sym_o_GT_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), - [aux_sym_unquoted_token1] = ACTIONS(1673), - [aux_sym_unquoted_token2] = ACTIONS(1673), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1675), + [anon_sym_LBRACK] = ACTIONS(4177), + [anon_sym_LPAREN] = ACTIONS(4179), + [anon_sym_DOLLAR] = ACTIONS(4181), + [anon_sym_LBRACE] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), + [anon_sym_DOT_DOT_LT] = ACTIONS(4187), + [anon_sym_null] = ACTIONS(4189), + [anon_sym_true] = ACTIONS(4191), + [anon_sym_false] = ACTIONS(4191), + [aux_sym__val_number_decimal_token1] = ACTIONS(4193), + [aux_sym__val_number_decimal_token2] = ACTIONS(4195), + [aux_sym__val_number_decimal_token3] = ACTIONS(4197), + [aux_sym__val_number_decimal_token4] = ACTIONS(4199), + [aux_sym__val_number_token1] = ACTIONS(3647), + [aux_sym__val_number_token2] = ACTIONS(3647), + [aux_sym__val_number_token3] = ACTIONS(3647), + [aux_sym__val_number_token4] = ACTIONS(4201), + [aux_sym__val_number_token5] = ACTIONS(4201), + [aux_sym__val_number_token6] = ACTIONS(4201), + [anon_sym_0b] = ACTIONS(3651), + [anon_sym_0o] = ACTIONS(3653), + [anon_sym_0x] = ACTIONS(3653), + [sym_val_date] = ACTIONS(4203), + [anon_sym_DQUOTE] = ACTIONS(4001), + [sym__str_single_quotes] = ACTIONS(4003), + [sym__str_back_ticks] = ACTIONS(4003), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4205), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4005), }, [1271] = { - [sym__val_range] = STATE(7673), - [sym__value] = STATE(6049), - [sym_val_nothing] = STATE(4907), - [sym_val_bool] = STATE(5835), - [sym_val_variable] = STATE(4907), - [sym_val_number] = STATE(4907), - [sym__val_number_decimal] = STATE(5242), - [sym__val_number] = STATE(4940), - [sym_val_duration] = STATE(4907), - [sym_val_filesize] = STATE(4907), - [sym_val_binary] = STATE(4907), - [sym_val_string] = STATE(4907), - [sym__raw_str] = STATE(4492), - [sym__str_double_quotes] = STATE(4492), - [sym_val_interpolated] = STATE(4907), - [sym__inter_single_quotes] = STATE(4952), - [sym__inter_double_quotes] = STATE(4953), - [sym_val_list] = STATE(4907), - [sym_val_record] = STATE(4907), - [sym_val_table] = STATE(4907), - [sym_val_closure] = STATE(4907), - [sym_unquoted] = STATE(6050), - [sym__unquoted_anonymous_prefix] = STATE(7821), + [sym__val_range] = STATE(8054), + [sym__value] = STATE(4684), + [sym_val_nothing] = STATE(4729), + [sym_val_bool] = STATE(4448), + [sym_val_variable] = STATE(4729), + [sym_val_number] = STATE(4729), + [sym__val_number_decimal] = STATE(4103), + [sym__val_number] = STATE(4716), + [sym_val_duration] = STATE(4729), + [sym_val_filesize] = STATE(4729), + [sym_val_binary] = STATE(4729), + [sym_val_string] = STATE(4729), + [sym__raw_str] = STATE(4371), + [sym__str_double_quotes] = STATE(4371), + [sym_val_interpolated] = STATE(4729), + [sym__inter_single_quotes] = STATE(4731), + [sym__inter_double_quotes] = STATE(4732), + [sym_val_list] = STATE(4729), + [sym_val_record] = STATE(4729), + [sym_val_table] = STATE(4729), + [sym_val_closure] = STATE(4729), + [sym_unquoted] = STATE(4685), + [sym__unquoted_anonymous_prefix] = STATE(7757), [sym_comment] = STATE(1271), - [anon_sym_LBRACK] = ACTIONS(4089), - [anon_sym_LPAREN] = ACTIONS(4091), - [anon_sym_DOLLAR] = ACTIONS(4093), - [anon_sym_LBRACE] = ACTIONS(4095), - [anon_sym_DOT_DOT] = ACTIONS(4097), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4099), - [anon_sym_DOT_DOT_LT] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4103), - [anon_sym_false] = ACTIONS(4103), - [aux_sym__val_number_decimal_token1] = ACTIONS(4105), - [aux_sym__val_number_decimal_token2] = ACTIONS(4107), - [aux_sym__val_number_decimal_token3] = ACTIONS(4109), - [aux_sym__val_number_decimal_token4] = ACTIONS(4111), - [aux_sym__val_number_token1] = ACTIONS(3593), - [aux_sym__val_number_token2] = ACTIONS(3593), - [aux_sym__val_number_token3] = ACTIONS(3593), - [aux_sym__val_number_token4] = ACTIONS(4113), - [aux_sym__val_number_token5] = ACTIONS(4113), - [aux_sym__val_number_token6] = ACTIONS(4113), - [anon_sym_0b] = ACTIONS(3597), - [anon_sym_0o] = ACTIONS(3599), - [anon_sym_0x] = ACTIONS(3599), - [sym_val_date] = ACTIONS(4115), - [anon_sym_DQUOTE] = ACTIONS(4009), - [sym__str_single_quotes] = ACTIONS(4011), - [sym__str_back_ticks] = ACTIONS(4011), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4117), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4121), + [anon_sym_LPAREN] = ACTIONS(4123), + [anon_sym_DOLLAR] = ACTIONS(4125), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_DOT_DOT] = ACTIONS(4129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4131), + [anon_sym_DOT_DOT_LT] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4133), + [anon_sym_true] = ACTIONS(4135), + [anon_sym_false] = ACTIONS(4135), + [aux_sym__val_number_decimal_token1] = ACTIONS(1980), + [aux_sym__val_number_decimal_token2] = ACTIONS(4137), + [aux_sym__val_number_decimal_token3] = ACTIONS(4139), + [aux_sym__val_number_decimal_token4] = ACTIONS(4141), + [aux_sym__val_number_token1] = ACTIONS(4143), + [aux_sym__val_number_token2] = ACTIONS(4143), + [aux_sym__val_number_token3] = ACTIONS(4143), + [aux_sym__val_number_token4] = ACTIONS(4145), + [aux_sym__val_number_token5] = ACTIONS(4145), + [aux_sym__val_number_token6] = ACTIONS(4145), + [anon_sym_0b] = ACTIONS(1990), + [anon_sym_0o] = ACTIONS(1992), + [anon_sym_0x] = ACTIONS(1992), + [sym_val_date] = ACTIONS(4147), + [anon_sym_DQUOTE] = ACTIONS(4149), + [sym__str_single_quotes] = ACTIONS(4151), + [sym__str_back_ticks] = ACTIONS(4151), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4153), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4155), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(2008), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2010), }, [1272] = { - [sym__match_pattern_expression] = STATE(3107), - [sym__match_pattern_value] = STATE(3147), - [sym__match_pattern_list] = STATE(3109), - [sym__match_pattern_rest] = STATE(7558), - [sym__match_pattern_record] = STATE(3111), - [sym_expr_parenthesized] = STATE(2878), - [sym_val_range] = STATE(3147), - [sym__val_range] = STATE(7888), - [sym_val_nothing] = STATE(3095), - [sym_val_bool] = STATE(3079), - [sym_val_variable] = STATE(2883), - [sym_val_number] = STATE(3095), - [sym__val_number_decimal] = STATE(2727), - [sym__val_number] = STATE(3096), - [sym_val_duration] = STATE(3095), - [sym_val_filesize] = STATE(3095), - [sym_val_binary] = STATE(3095), - [sym_val_string] = STATE(3095), - [sym__raw_str] = STATE(3110), - [sym__str_double_quotes] = STATE(3110), - [sym_val_table] = STATE(3095), - [sym__unquoted_in_list] = STATE(3107), - [sym__unquoted_anonymous_prefix] = STATE(7642), + [sym__val_range] = STATE(7898), + [sym__value] = STATE(3694), + [sym_val_nothing] = STATE(3723), + [sym_val_bool] = STATE(3630), + [sym_val_variable] = STATE(3723), + [sym_val_number] = STATE(3723), + [sym__val_number_decimal] = STATE(3406), + [sym__val_number] = STATE(3703), + [sym_val_duration] = STATE(3723), + [sym_val_filesize] = STATE(3723), + [sym_val_binary] = STATE(3723), + [sym_val_string] = STATE(3723), + [sym__raw_str] = STATE(3573), + [sym__str_double_quotes] = STATE(3573), + [sym_val_interpolated] = STATE(3723), + [sym__inter_single_quotes] = STATE(3704), + [sym__inter_double_quotes] = STATE(3705), + [sym_val_list] = STATE(3723), + [sym_val_record] = STATE(3723), + [sym_val_table] = STATE(3723), + [sym_val_closure] = STATE(3723), + [sym_unquoted] = STATE(3695), + [sym__unquoted_anonymous_prefix] = STATE(7965), [sym_comment] = STATE(1272), - [aux_sym__match_pattern_list_repeat1] = STATE(1357), - [anon_sym_LBRACK] = ACTIONS(4139), - [anon_sym_RBRACK] = ACTIONS(4141), - [anon_sym_LPAREN] = ACTIONS(3863), - [anon_sym_DOLLAR] = ACTIONS(3865), - [anon_sym_LBRACE] = ACTIONS(3867), - [anon_sym_DOT_DOT] = ACTIONS(4143), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3871), - [anon_sym_DOT_DOT_LT] = ACTIONS(3871), - [anon_sym_null] = ACTIONS(3873), - [anon_sym_true] = ACTIONS(3875), - [anon_sym_false] = ACTIONS(3875), - [aux_sym__val_number_decimal_token1] = ACTIONS(3877), - [aux_sym__val_number_decimal_token2] = ACTIONS(3879), - [aux_sym__val_number_decimal_token3] = ACTIONS(3881), - [aux_sym__val_number_decimal_token4] = ACTIONS(3883), - [aux_sym__val_number_token1] = ACTIONS(3885), - [aux_sym__val_number_token2] = ACTIONS(3885), - [aux_sym__val_number_token3] = ACTIONS(3885), - [aux_sym__val_number_token4] = ACTIONS(3887), - [aux_sym__val_number_token5] = ACTIONS(3887), - [aux_sym__val_number_token6] = ACTIONS(3887), - [anon_sym_0b] = ACTIONS(3889), - [anon_sym_0o] = ACTIONS(3891), - [anon_sym_0x] = ACTIONS(3891), - [sym_val_date] = ACTIONS(3893), - [anon_sym_DQUOTE] = ACTIONS(3895), - [sym__str_single_quotes] = ACTIONS(3897), - [sym__str_back_ticks] = ACTIONS(3897), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3899), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3901), + [anon_sym_LBRACK] = ACTIONS(4207), + [anon_sym_LPAREN] = ACTIONS(4209), + [anon_sym_DOLLAR] = ACTIONS(4211), + [anon_sym_LBRACE] = ACTIONS(4213), + [anon_sym_DOT_DOT] = ACTIONS(4215), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4217), + [anon_sym_DOT_DOT_LT] = ACTIONS(4217), + [anon_sym_null] = ACTIONS(4219), + [anon_sym_true] = ACTIONS(4221), + [anon_sym_false] = ACTIONS(4221), + [aux_sym__val_number_decimal_token1] = ACTIONS(4223), + [aux_sym__val_number_decimal_token2] = ACTIONS(4225), + [aux_sym__val_number_decimal_token3] = ACTIONS(4227), + [aux_sym__val_number_decimal_token4] = ACTIONS(4229), + [aux_sym__val_number_token1] = ACTIONS(4231), + [aux_sym__val_number_token2] = ACTIONS(4231), + [aux_sym__val_number_token3] = ACTIONS(4231), + [aux_sym__val_number_token4] = ACTIONS(4233), + [aux_sym__val_number_token5] = ACTIONS(4233), + [aux_sym__val_number_token6] = ACTIONS(4233), + [anon_sym_0b] = ACTIONS(4235), + [anon_sym_0o] = ACTIONS(4237), + [anon_sym_0x] = ACTIONS(4237), + [sym_val_date] = ACTIONS(4239), + [anon_sym_DQUOTE] = ACTIONS(4241), + [sym__str_single_quotes] = ACTIONS(4243), + [sym__str_back_ticks] = ACTIONS(4243), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4245), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4247), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4249), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4251), }, [1273] = { - [sym__match_pattern_expression] = STATE(3107), - [sym__match_pattern_value] = STATE(3147), - [sym__match_pattern_list] = STATE(3109), - [sym__match_pattern_rest] = STATE(7960), - [sym__match_pattern_record] = STATE(3111), - [sym_expr_parenthesized] = STATE(2878), - [sym_val_range] = STATE(3147), - [sym__val_range] = STATE(7888), - [sym_val_nothing] = STATE(3095), - [sym_val_bool] = STATE(3079), - [sym_val_variable] = STATE(2883), - [sym_val_number] = STATE(3095), - [sym__val_number_decimal] = STATE(2727), - [sym__val_number] = STATE(3096), - [sym_val_duration] = STATE(3095), - [sym_val_filesize] = STATE(3095), - [sym_val_binary] = STATE(3095), - [sym_val_string] = STATE(3095), - [sym__raw_str] = STATE(3110), - [sym__str_double_quotes] = STATE(3110), - [sym_val_table] = STATE(3095), - [sym__unquoted_in_list] = STATE(3107), - [sym__unquoted_anonymous_prefix] = STATE(7642), + [sym__val_range] = STATE(8054), + [sym__value] = STATE(4702), + [sym_val_nothing] = STATE(4729), + [sym_val_bool] = STATE(4448), + [sym_val_variable] = STATE(4729), + [sym_val_number] = STATE(4729), + [sym__val_number_decimal] = STATE(4103), + [sym__val_number] = STATE(4716), + [sym_val_duration] = STATE(4729), + [sym_val_filesize] = STATE(4729), + [sym_val_binary] = STATE(4729), + [sym_val_string] = STATE(4729), + [sym__raw_str] = STATE(4371), + [sym__str_double_quotes] = STATE(4371), + [sym_val_interpolated] = STATE(4729), + [sym__inter_single_quotes] = STATE(4731), + [sym__inter_double_quotes] = STATE(4732), + [sym_val_list] = STATE(4729), + [sym_val_record] = STATE(4729), + [sym_val_table] = STATE(4729), + [sym_val_closure] = STATE(4729), + [sym_unquoted] = STATE(4703), + [sym__unquoted_anonymous_prefix] = STATE(7757), [sym_comment] = STATE(1273), - [aux_sym__match_pattern_list_repeat1] = STATE(1357), - [anon_sym_LBRACK] = ACTIONS(4139), - [anon_sym_RBRACK] = ACTIONS(4145), - [anon_sym_LPAREN] = ACTIONS(3863), - [anon_sym_DOLLAR] = ACTIONS(3865), - [anon_sym_LBRACE] = ACTIONS(3867), - [anon_sym_DOT_DOT] = ACTIONS(4147), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3871), - [anon_sym_DOT_DOT_LT] = ACTIONS(3871), - [anon_sym_null] = ACTIONS(3873), - [anon_sym_true] = ACTIONS(3875), - [anon_sym_false] = ACTIONS(3875), - [aux_sym__val_number_decimal_token1] = ACTIONS(3877), - [aux_sym__val_number_decimal_token2] = ACTIONS(3879), - [aux_sym__val_number_decimal_token3] = ACTIONS(3881), - [aux_sym__val_number_decimal_token4] = ACTIONS(3883), - [aux_sym__val_number_token1] = ACTIONS(3885), - [aux_sym__val_number_token2] = ACTIONS(3885), - [aux_sym__val_number_token3] = ACTIONS(3885), - [aux_sym__val_number_token4] = ACTIONS(3887), - [aux_sym__val_number_token5] = ACTIONS(3887), - [aux_sym__val_number_token6] = ACTIONS(3887), - [anon_sym_0b] = ACTIONS(3889), - [anon_sym_0o] = ACTIONS(3891), - [anon_sym_0x] = ACTIONS(3891), - [sym_val_date] = ACTIONS(3893), - [anon_sym_DQUOTE] = ACTIONS(3895), - [sym__str_single_quotes] = ACTIONS(3897), - [sym__str_back_ticks] = ACTIONS(3897), - [anon_sym_err_GT] = ACTIONS(2590), - [anon_sym_out_GT] = ACTIONS(2590), - [anon_sym_e_GT] = ACTIONS(2590), - [anon_sym_o_GT] = ACTIONS(2590), - [anon_sym_err_PLUSout_GT] = ACTIONS(2590), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2590), - [anon_sym_o_PLUSe_GT] = ACTIONS(2590), - [anon_sym_e_PLUSo_GT] = ACTIONS(2590), - [anon_sym_err_GT_GT] = ACTIONS(2592), - [anon_sym_out_GT_GT] = ACTIONS(2592), - [anon_sym_e_GT_GT] = ACTIONS(2592), - [anon_sym_o_GT_GT] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3899), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3901), + [anon_sym_LBRACK] = ACTIONS(4121), + [anon_sym_LPAREN] = ACTIONS(4123), + [anon_sym_DOLLAR] = ACTIONS(4125), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_DOT_DOT] = ACTIONS(4129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4131), + [anon_sym_DOT_DOT_LT] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4133), + [anon_sym_true] = ACTIONS(4135), + [anon_sym_false] = ACTIONS(4135), + [aux_sym__val_number_decimal_token1] = ACTIONS(1980), + [aux_sym__val_number_decimal_token2] = ACTIONS(4137), + [aux_sym__val_number_decimal_token3] = ACTIONS(4139), + [aux_sym__val_number_decimal_token4] = ACTIONS(4141), + [aux_sym__val_number_token1] = ACTIONS(4143), + [aux_sym__val_number_token2] = ACTIONS(4143), + [aux_sym__val_number_token3] = ACTIONS(4143), + [aux_sym__val_number_token4] = ACTIONS(4145), + [aux_sym__val_number_token5] = ACTIONS(4145), + [aux_sym__val_number_token6] = ACTIONS(4145), + [anon_sym_0b] = ACTIONS(1990), + [anon_sym_0o] = ACTIONS(1992), + [anon_sym_0x] = ACTIONS(1992), + [sym_val_date] = ACTIONS(4147), + [anon_sym_DQUOTE] = ACTIONS(4149), + [sym__str_single_quotes] = ACTIONS(4151), + [sym__str_back_ticks] = ACTIONS(4151), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4153), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4155), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(2008), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2010), }, [1274] = { - [sym__val_range] = STATE(7991), - [sym__value] = STATE(2976), - [sym_val_nothing] = STATE(2914), - [sym_val_bool] = STATE(2880), - [sym_val_variable] = STATE(2914), - [sym_val_number] = STATE(2914), - [sym__val_number_decimal] = STATE(2552), - [sym__val_number] = STATE(2910), - [sym_val_duration] = STATE(2914), - [sym_val_filesize] = STATE(2914), - [sym_val_binary] = STATE(2914), - [sym_val_string] = STATE(2914), - [sym__raw_str] = STATE(2922), - [sym__str_double_quotes] = STATE(2922), - [sym_val_interpolated] = STATE(2914), - [sym__inter_single_quotes] = STATE(2978), - [sym__inter_double_quotes] = STATE(2970), - [sym_val_list] = STATE(2914), - [sym_val_record] = STATE(2914), - [sym_val_table] = STATE(2914), - [sym_val_closure] = STATE(2914), - [sym_unquoted] = STATE(2980), - [sym__unquoted_anonymous_prefix] = STATE(7589), + [sym__val_range] = STATE(7898), + [sym__value] = STATE(3701), + [sym_val_nothing] = STATE(3723), + [sym_val_bool] = STATE(3630), + [sym_val_variable] = STATE(3723), + [sym_val_number] = STATE(3723), + [sym__val_number_decimal] = STATE(3406), + [sym__val_number] = STATE(3703), + [sym_val_duration] = STATE(3723), + [sym_val_filesize] = STATE(3723), + [sym_val_binary] = STATE(3723), + [sym_val_string] = STATE(3723), + [sym__raw_str] = STATE(3573), + [sym__str_double_quotes] = STATE(3573), + [sym_val_interpolated] = STATE(3723), + [sym__inter_single_quotes] = STATE(3704), + [sym__inter_double_quotes] = STATE(3705), + [sym_val_list] = STATE(3723), + [sym_val_record] = STATE(3723), + [sym_val_table] = STATE(3723), + [sym_val_closure] = STATE(3723), + [sym_unquoted] = STATE(3702), + [sym__unquoted_anonymous_prefix] = STATE(7965), [sym_comment] = STATE(1274), - [anon_sym_LBRACK] = ACTIONS(4149), - [anon_sym_LPAREN] = ACTIONS(4151), - [anon_sym_DOLLAR] = ACTIONS(4153), - [anon_sym_LBRACE] = ACTIONS(4155), - [anon_sym_DOT_DOT] = ACTIONS(4157), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4159), - [anon_sym_DOT_DOT_LT] = ACTIONS(4159), - [anon_sym_null] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4163), - [anon_sym_false] = ACTIONS(4163), - [aux_sym__val_number_decimal_token1] = ACTIONS(4165), - [aux_sym__val_number_decimal_token2] = ACTIONS(4167), - [aux_sym__val_number_decimal_token3] = ACTIONS(4169), - [aux_sym__val_number_decimal_token4] = ACTIONS(4171), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(4175), - [aux_sym__val_number_token5] = ACTIONS(4175), - [aux_sym__val_number_token6] = ACTIONS(4175), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(4181), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4191), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(4207), + [anon_sym_LPAREN] = ACTIONS(4209), + [anon_sym_DOLLAR] = ACTIONS(4211), + [anon_sym_LBRACE] = ACTIONS(4213), + [anon_sym_DOT_DOT] = ACTIONS(4215), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4217), + [anon_sym_DOT_DOT_LT] = ACTIONS(4217), + [anon_sym_null] = ACTIONS(4219), + [anon_sym_true] = ACTIONS(4221), + [anon_sym_false] = ACTIONS(4221), + [aux_sym__val_number_decimal_token1] = ACTIONS(4223), + [aux_sym__val_number_decimal_token2] = ACTIONS(4225), + [aux_sym__val_number_decimal_token3] = ACTIONS(4227), + [aux_sym__val_number_decimal_token4] = ACTIONS(4229), + [aux_sym__val_number_token1] = ACTIONS(4231), + [aux_sym__val_number_token2] = ACTIONS(4231), + [aux_sym__val_number_token3] = ACTIONS(4231), + [aux_sym__val_number_token4] = ACTIONS(4233), + [aux_sym__val_number_token5] = ACTIONS(4233), + [aux_sym__val_number_token6] = ACTIONS(4233), + [anon_sym_0b] = ACTIONS(4235), + [anon_sym_0o] = ACTIONS(4237), + [anon_sym_0x] = ACTIONS(4237), + [sym_val_date] = ACTIONS(4239), + [anon_sym_DQUOTE] = ACTIONS(4241), + [sym__str_single_quotes] = ACTIONS(4243), + [sym__str_back_ticks] = ACTIONS(4243), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4245), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4247), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4249), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4251), }, [1275] = { - [sym__val_range] = STATE(7991), - [sym__value] = STATE(2985), - [sym_val_nothing] = STATE(2914), - [sym_val_bool] = STATE(2880), - [sym_val_variable] = STATE(2914), - [sym_val_number] = STATE(2914), - [sym__val_number_decimal] = STATE(2552), - [sym__val_number] = STATE(2910), - [sym_val_duration] = STATE(2914), - [sym_val_filesize] = STATE(2914), - [sym_val_binary] = STATE(2914), - [sym_val_string] = STATE(2914), - [sym__raw_str] = STATE(2922), - [sym__str_double_quotes] = STATE(2922), - [sym_val_interpolated] = STATE(2914), - [sym__inter_single_quotes] = STATE(2978), - [sym__inter_double_quotes] = STATE(2970), - [sym_val_list] = STATE(2914), - [sym_val_record] = STATE(2914), - [sym_val_table] = STATE(2914), - [sym_val_closure] = STATE(2914), - [sym_unquoted] = STATE(2991), - [sym__unquoted_anonymous_prefix] = STATE(7589), + [sym__val_range] = STATE(7898), + [sym__value] = STATE(3712), + [sym_val_nothing] = STATE(3723), + [sym_val_bool] = STATE(3630), + [sym_val_variable] = STATE(3723), + [sym_val_number] = STATE(3723), + [sym__val_number_decimal] = STATE(3406), + [sym__val_number] = STATE(3703), + [sym_val_duration] = STATE(3723), + [sym_val_filesize] = STATE(3723), + [sym_val_binary] = STATE(3723), + [sym_val_string] = STATE(3723), + [sym__raw_str] = STATE(3573), + [sym__str_double_quotes] = STATE(3573), + [sym_val_interpolated] = STATE(3723), + [sym__inter_single_quotes] = STATE(3704), + [sym__inter_double_quotes] = STATE(3705), + [sym_val_list] = STATE(3723), + [sym_val_record] = STATE(3723), + [sym_val_table] = STATE(3723), + [sym_val_closure] = STATE(3723), + [sym_unquoted] = STATE(3713), + [sym__unquoted_anonymous_prefix] = STATE(7965), [sym_comment] = STATE(1275), - [anon_sym_LBRACK] = ACTIONS(4149), - [anon_sym_LPAREN] = ACTIONS(4151), - [anon_sym_DOLLAR] = ACTIONS(4153), - [anon_sym_LBRACE] = ACTIONS(4155), - [anon_sym_DOT_DOT] = ACTIONS(4157), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4159), - [anon_sym_DOT_DOT_LT] = ACTIONS(4159), - [anon_sym_null] = ACTIONS(4161), - [anon_sym_true] = ACTIONS(4163), - [anon_sym_false] = ACTIONS(4163), - [aux_sym__val_number_decimal_token1] = ACTIONS(4165), - [aux_sym__val_number_decimal_token2] = ACTIONS(4167), - [aux_sym__val_number_decimal_token3] = ACTIONS(4169), - [aux_sym__val_number_decimal_token4] = ACTIONS(4171), - [aux_sym__val_number_token1] = ACTIONS(4173), - [aux_sym__val_number_token2] = ACTIONS(4173), - [aux_sym__val_number_token3] = ACTIONS(4173), - [aux_sym__val_number_token4] = ACTIONS(4175), - [aux_sym__val_number_token5] = ACTIONS(4175), - [aux_sym__val_number_token6] = ACTIONS(4175), - [anon_sym_0b] = ACTIONS(4177), - [anon_sym_0o] = ACTIONS(4179), - [anon_sym_0x] = ACTIONS(4179), - [sym_val_date] = ACTIONS(4181), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4187), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4189), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4191), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(4207), + [anon_sym_LPAREN] = ACTIONS(4209), + [anon_sym_DOLLAR] = ACTIONS(4211), + [anon_sym_LBRACE] = ACTIONS(4213), + [anon_sym_DOT_DOT] = ACTIONS(4215), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4217), + [anon_sym_DOT_DOT_LT] = ACTIONS(4217), + [anon_sym_null] = ACTIONS(4219), + [anon_sym_true] = ACTIONS(4221), + [anon_sym_false] = ACTIONS(4221), + [aux_sym__val_number_decimal_token1] = ACTIONS(4223), + [aux_sym__val_number_decimal_token2] = ACTIONS(4225), + [aux_sym__val_number_decimal_token3] = ACTIONS(4227), + [aux_sym__val_number_decimal_token4] = ACTIONS(4229), + [aux_sym__val_number_token1] = ACTIONS(4231), + [aux_sym__val_number_token2] = ACTIONS(4231), + [aux_sym__val_number_token3] = ACTIONS(4231), + [aux_sym__val_number_token4] = ACTIONS(4233), + [aux_sym__val_number_token5] = ACTIONS(4233), + [aux_sym__val_number_token6] = ACTIONS(4233), + [anon_sym_0b] = ACTIONS(4235), + [anon_sym_0o] = ACTIONS(4237), + [anon_sym_0x] = ACTIONS(4237), + [sym_val_date] = ACTIONS(4239), + [anon_sym_DQUOTE] = ACTIONS(4241), + [sym__str_single_quotes] = ACTIONS(4243), + [sym__str_back_ticks] = ACTIONS(4243), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4245), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4247), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4249), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4251), }, [1276] = { - [sym__val_range] = STATE(7673), - [sym__value] = STATE(6061), - [sym_val_nothing] = STATE(4907), - [sym_val_bool] = STATE(5835), - [sym_val_variable] = STATE(4907), - [sym_val_number] = STATE(4907), - [sym__val_number_decimal] = STATE(5242), - [sym__val_number] = STATE(4940), - [sym_val_duration] = STATE(4907), - [sym_val_filesize] = STATE(4907), - [sym_val_binary] = STATE(4907), - [sym_val_string] = STATE(4907), - [sym__raw_str] = STATE(4492), - [sym__str_double_quotes] = STATE(4492), - [sym_val_interpolated] = STATE(4907), - [sym__inter_single_quotes] = STATE(4952), - [sym__inter_double_quotes] = STATE(4953), - [sym_val_list] = STATE(4907), - [sym_val_record] = STATE(4907), - [sym_val_table] = STATE(4907), - [sym_val_closure] = STATE(4907), - [sym_unquoted] = STATE(6065), - [sym__unquoted_anonymous_prefix] = STATE(7821), + [sym__val_range] = STATE(7842), + [sym__value] = STATE(1815), + [sym_val_nothing] = STATE(1829), + [sym_val_bool] = STATE(1702), + [sym_val_variable] = STATE(1829), + [sym_val_number] = STATE(1829), + [sym__val_number_decimal] = STATE(1404), + [sym__val_number] = STATE(1779), + [sym_val_duration] = STATE(1829), + [sym_val_filesize] = STATE(1829), + [sym_val_binary] = STATE(1829), + [sym_val_string] = STATE(1829), + [sym__raw_str] = STATE(1791), + [sym__str_double_quotes] = STATE(1791), + [sym_val_interpolated] = STATE(1829), + [sym__inter_single_quotes] = STATE(1798), + [sym__inter_double_quotes] = STATE(1799), + [sym_val_list] = STATE(1829), + [sym_val_record] = STATE(1829), + [sym_val_table] = STATE(1829), + [sym_val_closure] = STATE(1829), + [sym_unquoted] = STATE(1818), + [sym__unquoted_anonymous_prefix] = STATE(7788), [sym_comment] = STATE(1276), - [anon_sym_LBRACK] = ACTIONS(4089), - [anon_sym_LPAREN] = ACTIONS(4091), - [anon_sym_DOLLAR] = ACTIONS(4093), - [anon_sym_LBRACE] = ACTIONS(4095), - [anon_sym_DOT_DOT] = ACTIONS(4097), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4099), - [anon_sym_DOT_DOT_LT] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4103), - [anon_sym_false] = ACTIONS(4103), - [aux_sym__val_number_decimal_token1] = ACTIONS(4105), - [aux_sym__val_number_decimal_token2] = ACTIONS(4107), - [aux_sym__val_number_decimal_token3] = ACTIONS(4109), - [aux_sym__val_number_decimal_token4] = ACTIONS(4111), - [aux_sym__val_number_token1] = ACTIONS(3593), - [aux_sym__val_number_token2] = ACTIONS(3593), - [aux_sym__val_number_token3] = ACTIONS(3593), - [aux_sym__val_number_token4] = ACTIONS(4113), - [aux_sym__val_number_token5] = ACTIONS(4113), - [aux_sym__val_number_token6] = ACTIONS(4113), - [anon_sym_0b] = ACTIONS(3597), - [anon_sym_0o] = ACTIONS(3599), - [anon_sym_0x] = ACTIONS(3599), - [sym_val_date] = ACTIONS(4115), - [anon_sym_DQUOTE] = ACTIONS(4009), - [sym__str_single_quotes] = ACTIONS(4011), - [sym__str_back_ticks] = ACTIONS(4011), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4117), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_DOLLAR] = ACTIONS(4033), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_DOT_DOT] = ACTIONS(4255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4257), + [anon_sym_DOT_DOT_LT] = ACTIONS(4257), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_true] = ACTIONS(4261), + [anon_sym_false] = ACTIONS(4261), + [aux_sym__val_number_decimal_token1] = ACTIONS(4263), + [aux_sym__val_number_decimal_token2] = ACTIONS(4265), + [aux_sym__val_number_decimal_token3] = ACTIONS(4267), + [aux_sym__val_number_decimal_token4] = ACTIONS(4269), + [aux_sym__val_number_token1] = ACTIONS(2653), + [aux_sym__val_number_token2] = ACTIONS(2653), + [aux_sym__val_number_token3] = ACTIONS(2653), + [aux_sym__val_number_token4] = ACTIONS(4271), + [aux_sym__val_number_token5] = ACTIONS(4271), + [aux_sym__val_number_token6] = ACTIONS(4271), + [anon_sym_0b] = ACTIONS(2657), + [anon_sym_0o] = ACTIONS(2659), + [anon_sym_0x] = ACTIONS(2659), + [sym_val_date] = ACTIONS(4273), + [anon_sym_DQUOTE] = ACTIONS(2663), + [sym__str_single_quotes] = ACTIONS(2665), + [sym__str_back_ticks] = ACTIONS(2665), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2667), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2669), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4275), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2677), }, [1277] = { - [sym__val_range] = STATE(7673), - [sym__value] = STATE(6059), - [sym_val_nothing] = STATE(4907), - [sym_val_bool] = STATE(5835), - [sym_val_variable] = STATE(4907), - [sym_val_number] = STATE(4907), - [sym__val_number_decimal] = STATE(5262), - [sym__val_number] = STATE(4940), - [sym_val_duration] = STATE(4907), - [sym_val_filesize] = STATE(4907), - [sym_val_binary] = STATE(4907), - [sym_val_string] = STATE(4907), - [sym__raw_str] = STATE(4492), - [sym__str_double_quotes] = STATE(4492), - [sym_val_interpolated] = STATE(4907), - [sym__inter_single_quotes] = STATE(4952), - [sym__inter_double_quotes] = STATE(4953), - [sym_val_list] = STATE(4907), - [sym_val_record] = STATE(4907), - [sym_val_table] = STATE(4907), - [sym_val_closure] = STATE(4907), - [sym_unquoted] = STATE(6060), - [sym__unquoted_anonymous_prefix] = STATE(7821), + [sym__val_range] = STATE(7898), + [sym__value] = STATE(3718), + [sym_val_nothing] = STATE(3723), + [sym_val_bool] = STATE(3630), + [sym_val_variable] = STATE(3723), + [sym_val_number] = STATE(3723), + [sym__val_number_decimal] = STATE(3406), + [sym__val_number] = STATE(3703), + [sym_val_duration] = STATE(3723), + [sym_val_filesize] = STATE(3723), + [sym_val_binary] = STATE(3723), + [sym_val_string] = STATE(3723), + [sym__raw_str] = STATE(3573), + [sym__str_double_quotes] = STATE(3573), + [sym_val_interpolated] = STATE(3723), + [sym__inter_single_quotes] = STATE(3704), + [sym__inter_double_quotes] = STATE(3705), + [sym_val_list] = STATE(3723), + [sym_val_record] = STATE(3723), + [sym_val_table] = STATE(3723), + [sym_val_closure] = STATE(3723), + [sym_unquoted] = STATE(3639), + [sym__unquoted_anonymous_prefix] = STATE(7965), [sym_comment] = STATE(1277), - [anon_sym_LBRACK] = ACTIONS(4089), - [anon_sym_LPAREN] = ACTIONS(4091), - [anon_sym_DOLLAR] = ACTIONS(4119), - [anon_sym_LBRACE] = ACTIONS(4095), - [anon_sym_DOT_DOT] = ACTIONS(4097), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4099), - [anon_sym_DOT_DOT_LT] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4103), - [anon_sym_false] = ACTIONS(4103), - [aux_sym__val_number_decimal_token1] = ACTIONS(4195), - [aux_sym__val_number_decimal_token2] = ACTIONS(4197), - [aux_sym__val_number_decimal_token3] = ACTIONS(4199), - [aux_sym__val_number_decimal_token4] = ACTIONS(4201), - [aux_sym__val_number_token1] = ACTIONS(3593), - [aux_sym__val_number_token2] = ACTIONS(3593), - [aux_sym__val_number_token3] = ACTIONS(3593), - [aux_sym__val_number_token4] = ACTIONS(4203), - [aux_sym__val_number_token5] = ACTIONS(4203), - [aux_sym__val_number_token6] = ACTIONS(4203), - [anon_sym_0b] = ACTIONS(3597), - [anon_sym_0o] = ACTIONS(3599), - [anon_sym_0x] = ACTIONS(3599), - [sym_val_date] = ACTIONS(4115), - [anon_sym_DQUOTE] = ACTIONS(4009), - [sym__str_single_quotes] = ACTIONS(4011), - [sym__str_back_ticks] = ACTIONS(4011), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4117), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4207), + [anon_sym_LPAREN] = ACTIONS(4209), + [anon_sym_DOLLAR] = ACTIONS(4211), + [anon_sym_LBRACE] = ACTIONS(4213), + [anon_sym_DOT_DOT] = ACTIONS(4215), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4217), + [anon_sym_DOT_DOT_LT] = ACTIONS(4217), + [anon_sym_null] = ACTIONS(4219), + [anon_sym_true] = ACTIONS(4221), + [anon_sym_false] = ACTIONS(4221), + [aux_sym__val_number_decimal_token1] = ACTIONS(4223), + [aux_sym__val_number_decimal_token2] = ACTIONS(4225), + [aux_sym__val_number_decimal_token3] = ACTIONS(4227), + [aux_sym__val_number_decimal_token4] = ACTIONS(4229), + [aux_sym__val_number_token1] = ACTIONS(4231), + [aux_sym__val_number_token2] = ACTIONS(4231), + [aux_sym__val_number_token3] = ACTIONS(4231), + [aux_sym__val_number_token4] = ACTIONS(4233), + [aux_sym__val_number_token5] = ACTIONS(4233), + [aux_sym__val_number_token6] = ACTIONS(4233), + [anon_sym_0b] = ACTIONS(4235), + [anon_sym_0o] = ACTIONS(4237), + [anon_sym_0x] = ACTIONS(4237), + [sym_val_date] = ACTIONS(4239), + [anon_sym_DQUOTE] = ACTIONS(4241), + [sym__str_single_quotes] = ACTIONS(4243), + [sym__str_back_ticks] = ACTIONS(4243), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4245), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4247), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4249), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4251), }, [1278] = { - [sym__val_range] = STATE(7673), - [sym__value] = STATE(6063), - [sym_val_nothing] = STATE(4907), - [sym_val_bool] = STATE(5835), - [sym_val_variable] = STATE(4907), - [sym_val_number] = STATE(4907), - [sym__val_number_decimal] = STATE(5242), - [sym__val_number] = STATE(4940), - [sym_val_duration] = STATE(4907), - [sym_val_filesize] = STATE(4907), - [sym_val_binary] = STATE(4907), - [sym_val_string] = STATE(4907), - [sym__raw_str] = STATE(4492), - [sym__str_double_quotes] = STATE(4492), - [sym_val_interpolated] = STATE(4907), - [sym__inter_single_quotes] = STATE(4952), - [sym__inter_double_quotes] = STATE(4953), - [sym_val_list] = STATE(4907), - [sym_val_record] = STATE(4907), - [sym_val_table] = STATE(4907), - [sym_val_closure] = STATE(4907), - [sym_unquoted] = STATE(6064), - [sym__unquoted_anonymous_prefix] = STATE(7821), + [sym__val_range] = STATE(7842), + [sym__value] = STATE(1732), + [sym_val_nothing] = STATE(1829), + [sym_val_bool] = STATE(1702), + [sym_val_variable] = STATE(1829), + [sym_val_number] = STATE(1829), + [sym__val_number_decimal] = STATE(1404), + [sym__val_number] = STATE(1779), + [sym_val_duration] = STATE(1829), + [sym_val_filesize] = STATE(1829), + [sym_val_binary] = STATE(1829), + [sym_val_string] = STATE(1829), + [sym__raw_str] = STATE(1791), + [sym__str_double_quotes] = STATE(1791), + [sym_val_interpolated] = STATE(1829), + [sym__inter_single_quotes] = STATE(1798), + [sym__inter_double_quotes] = STATE(1799), + [sym_val_list] = STATE(1829), + [sym_val_record] = STATE(1829), + [sym_val_table] = STATE(1829), + [sym_val_closure] = STATE(1829), + [sym_unquoted] = STATE(1737), + [sym__unquoted_anonymous_prefix] = STATE(7788), [sym_comment] = STATE(1278), - [anon_sym_LBRACK] = ACTIONS(4089), - [anon_sym_LPAREN] = ACTIONS(4091), - [anon_sym_DOLLAR] = ACTIONS(4093), - [anon_sym_LBRACE] = ACTIONS(4095), - [anon_sym_DOT_DOT] = ACTIONS(4097), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4099), - [anon_sym_DOT_DOT_LT] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4103), - [anon_sym_false] = ACTIONS(4103), - [aux_sym__val_number_decimal_token1] = ACTIONS(4105), - [aux_sym__val_number_decimal_token2] = ACTIONS(4107), - [aux_sym__val_number_decimal_token3] = ACTIONS(4109), - [aux_sym__val_number_decimal_token4] = ACTIONS(4111), - [aux_sym__val_number_token1] = ACTIONS(3593), - [aux_sym__val_number_token2] = ACTIONS(3593), - [aux_sym__val_number_token3] = ACTIONS(3593), - [aux_sym__val_number_token4] = ACTIONS(4113), - [aux_sym__val_number_token5] = ACTIONS(4113), - [aux_sym__val_number_token6] = ACTIONS(4113), - [anon_sym_0b] = ACTIONS(3597), - [anon_sym_0o] = ACTIONS(3599), - [anon_sym_0x] = ACTIONS(3599), - [sym_val_date] = ACTIONS(4115), - [anon_sym_DQUOTE] = ACTIONS(4009), - [sym__str_single_quotes] = ACTIONS(4011), - [sym__str_back_ticks] = ACTIONS(4011), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4117), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_DOLLAR] = ACTIONS(4033), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_DOT_DOT] = ACTIONS(4255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4257), + [anon_sym_DOT_DOT_LT] = ACTIONS(4257), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_true] = ACTIONS(4261), + [anon_sym_false] = ACTIONS(4261), + [aux_sym__val_number_decimal_token1] = ACTIONS(4263), + [aux_sym__val_number_decimal_token2] = ACTIONS(4265), + [aux_sym__val_number_decimal_token3] = ACTIONS(4267), + [aux_sym__val_number_decimal_token4] = ACTIONS(4269), + [aux_sym__val_number_token1] = ACTIONS(2653), + [aux_sym__val_number_token2] = ACTIONS(2653), + [aux_sym__val_number_token3] = ACTIONS(2653), + [aux_sym__val_number_token4] = ACTIONS(4271), + [aux_sym__val_number_token5] = ACTIONS(4271), + [aux_sym__val_number_token6] = ACTIONS(4271), + [anon_sym_0b] = ACTIONS(2657), + [anon_sym_0o] = ACTIONS(2659), + [anon_sym_0x] = ACTIONS(2659), + [sym_val_date] = ACTIONS(4273), + [anon_sym_DQUOTE] = ACTIONS(2663), + [sym__str_single_quotes] = ACTIONS(2665), + [sym__str_back_ticks] = ACTIONS(2665), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2667), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2669), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4275), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2677), }, [1279] = { - [sym__val_range] = STATE(7673), - [sym__value] = STATE(6049), - [sym_val_nothing] = STATE(4907), - [sym_val_bool] = STATE(5835), - [sym_val_variable] = STATE(4907), - [sym_val_number] = STATE(4907), - [sym__val_number_decimal] = STATE(5262), - [sym__val_number] = STATE(4940), - [sym_val_duration] = STATE(4907), - [sym_val_filesize] = STATE(4907), - [sym_val_binary] = STATE(4907), - [sym_val_string] = STATE(4907), - [sym__raw_str] = STATE(4492), - [sym__str_double_quotes] = STATE(4492), - [sym_val_interpolated] = STATE(4907), - [sym__inter_single_quotes] = STATE(4952), - [sym__inter_double_quotes] = STATE(4953), - [sym_val_list] = STATE(4907), - [sym_val_record] = STATE(4907), - [sym_val_table] = STATE(4907), - [sym_val_closure] = STATE(4907), - [sym_unquoted] = STATE(6050), - [sym__unquoted_anonymous_prefix] = STATE(7821), [sym_comment] = STATE(1279), - [anon_sym_LBRACK] = ACTIONS(4089), - [anon_sym_LPAREN] = ACTIONS(4091), - [anon_sym_DOLLAR] = ACTIONS(4119), - [anon_sym_LBRACE] = ACTIONS(4095), - [anon_sym_DOT_DOT] = ACTIONS(4097), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4099), - [anon_sym_DOT_DOT_LT] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4103), - [anon_sym_false] = ACTIONS(4103), - [aux_sym__val_number_decimal_token1] = ACTIONS(4195), - [aux_sym__val_number_decimal_token2] = ACTIONS(4197), - [aux_sym__val_number_decimal_token3] = ACTIONS(4199), - [aux_sym__val_number_decimal_token4] = ACTIONS(4201), - [aux_sym__val_number_token1] = ACTIONS(3593), - [aux_sym__val_number_token2] = ACTIONS(3593), - [aux_sym__val_number_token3] = ACTIONS(3593), - [aux_sym__val_number_token4] = ACTIONS(4203), - [aux_sym__val_number_token5] = ACTIONS(4203), - [aux_sym__val_number_token6] = ACTIONS(4203), - [anon_sym_0b] = ACTIONS(3597), - [anon_sym_0o] = ACTIONS(3599), - [anon_sym_0x] = ACTIONS(3599), - [sym_val_date] = ACTIONS(4115), - [anon_sym_DQUOTE] = ACTIONS(4009), - [sym__str_single_quotes] = ACTIONS(4011), - [sym__str_back_ticks] = ACTIONS(4011), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4117), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4013), + [sym__newline] = ACTIONS(1587), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_err_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_GT_PIPE] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_RPAREN] = ACTIONS(1587), + [anon_sym_DOLLAR] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1585), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), + [anon_sym_DOT_DOT_LT] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [aux_sym__immediate_decimal_token1] = ACTIONS(4277), + [aux_sym__immediate_decimal_token2] = ACTIONS(4279), + [anon_sym_null] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(1587), + [anon_sym_false] = ACTIONS(1587), + [aux_sym__val_number_decimal_token1] = ACTIONS(1585), + [aux_sym__val_number_decimal_token2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1587), + [aux_sym__val_number_token2] = ACTIONS(1587), + [aux_sym__val_number_token3] = ACTIONS(1587), + [aux_sym__val_number_token4] = ACTIONS(1587), + [aux_sym__val_number_token5] = ACTIONS(1587), + [aux_sym__val_number_token6] = ACTIONS(1587), + [anon_sym_0b] = ACTIONS(1585), + [sym_filesize_unit] = ACTIONS(1587), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_0o] = ACTIONS(1585), + [anon_sym_0x] = ACTIONS(1585), + [sym_val_date] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [sym__str_single_quotes] = ACTIONS(1587), + [sym__str_back_ticks] = ACTIONS(1587), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1587), + [anon_sym_out_GT_GT] = ACTIONS(1587), + [anon_sym_e_GT_GT] = ACTIONS(1587), + [anon_sym_o_GT_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [aux_sym_unquoted_token1] = ACTIONS(1585), + [aux_sym_unquoted_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1587), }, [1280] = { + [sym__val_range] = STATE(7780), + [sym__value] = STATE(2994), + [sym_val_nothing] = STATE(2937), + [sym_val_bool] = STATE(2886), + [sym_val_variable] = STATE(2937), + [sym_val_number] = STATE(2937), + [sym__val_number_decimal] = STATE(2555), + [sym__val_number] = STATE(2962), + [sym_val_duration] = STATE(2937), + [sym_val_filesize] = STATE(2937), + [sym_val_binary] = STATE(2937), + [sym_val_string] = STATE(2937), + [sym__raw_str] = STATE(3005), + [sym__str_double_quotes] = STATE(3005), + [sym_val_interpolated] = STATE(2937), + [sym__inter_single_quotes] = STATE(2980), + [sym__inter_double_quotes] = STATE(2981), + [sym_val_list] = STATE(2937), + [sym_val_record] = STATE(2937), + [sym_val_table] = STATE(2937), + [sym_val_closure] = STATE(2937), + [sym_unquoted] = STATE(3009), + [sym__unquoted_anonymous_prefix] = STATE(7890), [sym_comment] = STATE(1280), - [sym__newline] = ACTIONS(1609), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_PIPE] = ACTIONS(1609), - [anon_sym_err_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_GT_PIPE] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1609), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_RPAREN] = ACTIONS(1609), - [anon_sym_DOLLAR] = ACTIONS(1607), - [anon_sym_DASH_DASH] = ACTIONS(1609), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_LBRACE] = ACTIONS(1609), - [anon_sym_RBRACE] = ACTIONS(1609), - [anon_sym_DOT_DOT] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT] = ACTIONS(4205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), - [anon_sym_DOT_DOT_LT] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(4207), - [anon_sym_null] = ACTIONS(1609), - [anon_sym_true] = ACTIONS(1609), - [anon_sym_false] = ACTIONS(1609), - [aux_sym__val_number_decimal_token1] = ACTIONS(1607), - [aux_sym__val_number_decimal_token2] = ACTIONS(1609), - [aux_sym__val_number_decimal_token3] = ACTIONS(1609), - [aux_sym__val_number_decimal_token4] = ACTIONS(1609), - [aux_sym__val_number_token1] = ACTIONS(1609), - [aux_sym__val_number_token2] = ACTIONS(1609), - [aux_sym__val_number_token3] = ACTIONS(1609), - [aux_sym__val_number_token4] = ACTIONS(1609), - [aux_sym__val_number_token5] = ACTIONS(1609), - [aux_sym__val_number_token6] = ACTIONS(1609), - [anon_sym_0b] = ACTIONS(1607), - [sym_filesize_unit] = ACTIONS(1609), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_0o] = ACTIONS(1607), - [anon_sym_0x] = ACTIONS(1607), - [sym_val_date] = ACTIONS(1609), - [anon_sym_DQUOTE] = ACTIONS(1609), - [sym__str_single_quotes] = ACTIONS(1609), - [sym__str_back_ticks] = ACTIONS(1609), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1609), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1609), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1609), - [anon_sym_out_GT_GT] = ACTIONS(1609), - [anon_sym_e_GT_GT] = ACTIONS(1609), - [anon_sym_o_GT_GT] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), - [aux_sym_unquoted_token1] = ACTIONS(1607), - [aux_sym_unquoted_token2] = ACTIONS(1607), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(4283), + [anon_sym_DOLLAR] = ACTIONS(4285), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_DOT_DOT] = ACTIONS(4289), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4291), + [anon_sym_DOT_DOT_LT] = ACTIONS(4291), + [anon_sym_null] = ACTIONS(4293), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [aux_sym__val_number_decimal_token1] = ACTIONS(4297), + [aux_sym__val_number_decimal_token2] = ACTIONS(4299), + [aux_sym__val_number_decimal_token3] = ACTIONS(4301), + [aux_sym__val_number_decimal_token4] = ACTIONS(4303), + [aux_sym__val_number_token1] = ACTIONS(4305), + [aux_sym__val_number_token2] = ACTIONS(4305), + [aux_sym__val_number_token3] = ACTIONS(4305), + [aux_sym__val_number_token4] = ACTIONS(4307), + [aux_sym__val_number_token5] = ACTIONS(4307), + [aux_sym__val_number_token6] = ACTIONS(4307), + [anon_sym_0b] = ACTIONS(4309), + [anon_sym_0o] = ACTIONS(4311), + [anon_sym_0x] = ACTIONS(4311), + [sym_val_date] = ACTIONS(4313), + [anon_sym_DQUOTE] = ACTIONS(4315), + [sym__str_single_quotes] = ACTIONS(4317), + [sym__str_back_ticks] = ACTIONS(4317), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4321), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4323), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4325), }, [1281] = { - [sym_cell_path] = STATE(1463), - [sym_path] = STATE(1443), + [sym__val_range] = STATE(7842), + [sym__value] = STATE(1751), + [sym_val_nothing] = STATE(1829), + [sym_val_bool] = STATE(1702), + [sym_val_variable] = STATE(1829), + [sym_val_number] = STATE(1829), + [sym__val_number_decimal] = STATE(1404), + [sym__val_number] = STATE(1779), + [sym_val_duration] = STATE(1829), + [sym_val_filesize] = STATE(1829), + [sym_val_binary] = STATE(1829), + [sym_val_string] = STATE(1829), + [sym__raw_str] = STATE(1791), + [sym__str_double_quotes] = STATE(1791), + [sym_val_interpolated] = STATE(1829), + [sym__inter_single_quotes] = STATE(1798), + [sym__inter_double_quotes] = STATE(1799), + [sym_val_list] = STATE(1829), + [sym_val_record] = STATE(1829), + [sym_val_table] = STATE(1829), + [sym_val_closure] = STATE(1829), + [sym_unquoted] = STATE(1755), + [sym__unquoted_anonymous_prefix] = STATE(7788), [sym_comment] = STATE(1281), - [aux_sym_cell_path_repeat1] = STATE(1374), - [anon_sym_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(963), - [anon_sym_DASH_EQ] = ACTIONS(963), - [anon_sym_STAR_EQ] = ACTIONS(963), - [anon_sym_SLASH_EQ] = ACTIONS(963), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(963), - [sym__newline] = ACTIONS(963), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(963), - [anon_sym_err_GT_PIPE] = ACTIONS(963), - [anon_sym_out_GT_PIPE] = ACTIONS(963), - [anon_sym_e_GT_PIPE] = ACTIONS(963), - [anon_sym_o_GT_PIPE] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), - [anon_sym_RPAREN] = ACTIONS(963), - [anon_sym_GT2] = ACTIONS(961), - [anon_sym_DASH2] = ACTIONS(961), - [anon_sym_in2] = ACTIONS(963), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_STAR2] = ACTIONS(961), - [anon_sym_and2] = ACTIONS(963), - [anon_sym_xor2] = ACTIONS(963), - [anon_sym_or2] = ACTIONS(963), - [anon_sym_not_DASHin2] = ACTIONS(963), - [anon_sym_starts_DASHwith2] = ACTIONS(963), - [anon_sym_ends_DASHwith2] = ACTIONS(963), - [anon_sym_EQ_EQ2] = ACTIONS(963), - [anon_sym_BANG_EQ2] = ACTIONS(963), - [anon_sym_LT2] = ACTIONS(961), - [anon_sym_LT_EQ2] = ACTIONS(963), - [anon_sym_GT_EQ2] = ACTIONS(963), - [anon_sym_EQ_TILDE2] = ACTIONS(963), - [anon_sym_BANG_TILDE2] = ACTIONS(963), - [anon_sym_STAR_STAR2] = ACTIONS(963), - [anon_sym_PLUS_PLUS2] = ACTIONS(961), - [anon_sym_SLASH2] = ACTIONS(961), - [anon_sym_mod2] = ACTIONS(963), - [anon_sym_SLASH_SLASH2] = ACTIONS(963), - [anon_sym_PLUS2] = ACTIONS(961), - [anon_sym_bit_DASHshl2] = ACTIONS(963), - [anon_sym_bit_DASHshr2] = ACTIONS(963), - [anon_sym_bit_DASHand2] = ACTIONS(963), - [anon_sym_bit_DASHxor2] = ACTIONS(963), - [anon_sym_bit_DASHor2] = ACTIONS(963), - [anon_sym_DOT_DOT2] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(4209), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), - [anon_sym_DOT_DOT_LT2] = ACTIONS(963), - [anon_sym_err_GT] = ACTIONS(961), - [anon_sym_out_GT] = ACTIONS(961), - [anon_sym_e_GT] = ACTIONS(961), - [anon_sym_o_GT] = ACTIONS(961), - [anon_sym_err_PLUSout_GT] = ACTIONS(961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(961), - [anon_sym_o_PLUSe_GT] = ACTIONS(961), - [anon_sym_e_PLUSo_GT] = ACTIONS(961), - [anon_sym_err_GT_GT] = ACTIONS(963), - [anon_sym_out_GT_GT] = ACTIONS(963), - [anon_sym_e_GT_GT] = ACTIONS(963), - [anon_sym_o_GT_GT] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_DOLLAR] = ACTIONS(4033), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_DOT_DOT] = ACTIONS(4255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4257), + [anon_sym_DOT_DOT_LT] = ACTIONS(4257), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_true] = ACTIONS(4261), + [anon_sym_false] = ACTIONS(4261), + [aux_sym__val_number_decimal_token1] = ACTIONS(4263), + [aux_sym__val_number_decimal_token2] = ACTIONS(4265), + [aux_sym__val_number_decimal_token3] = ACTIONS(4267), + [aux_sym__val_number_decimal_token4] = ACTIONS(4269), + [aux_sym__val_number_token1] = ACTIONS(2653), + [aux_sym__val_number_token2] = ACTIONS(2653), + [aux_sym__val_number_token3] = ACTIONS(2653), + [aux_sym__val_number_token4] = ACTIONS(4271), + [aux_sym__val_number_token5] = ACTIONS(4271), + [aux_sym__val_number_token6] = ACTIONS(4271), + [anon_sym_0b] = ACTIONS(2657), + [anon_sym_0o] = ACTIONS(2659), + [anon_sym_0x] = ACTIONS(2659), + [sym_val_date] = ACTIONS(4273), + [anon_sym_DQUOTE] = ACTIONS(2663), + [sym__str_single_quotes] = ACTIONS(2665), + [sym__str_back_ticks] = ACTIONS(2665), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2667), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2669), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4275), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2677), }, [1282] = { - [sym__val_range] = STATE(7572), - [sym__value] = STATE(6061), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(7458), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(5622), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(4492), - [sym__str_double_quotes] = STATE(4492), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(6065), - [sym__unquoted_anonymous_prefix] = STATE(7585), + [sym__val_range] = STATE(7932), + [sym__value] = STATE(5959), + [sym_val_nothing] = STATE(5879), + [sym_val_bool] = STATE(5689), + [sym_val_variable] = STATE(5879), + [sym_val_number] = STATE(5879), + [sym__val_number_decimal] = STATE(5141), + [sym__val_number] = STATE(5951), + [sym_val_duration] = STATE(5879), + [sym_val_filesize] = STATE(5879), + [sym_val_binary] = STATE(5879), + [sym_val_string] = STATE(5879), + [sym__raw_str] = STATE(5616), + [sym__str_double_quotes] = STATE(5616), + [sym_val_interpolated] = STATE(5879), + [sym__inter_single_quotes] = STATE(5824), + [sym__inter_double_quotes] = STATE(5825), + [sym_val_list] = STATE(5879), + [sym_val_record] = STATE(5879), + [sym_val_table] = STATE(5879), + [sym_val_closure] = STATE(5879), + [sym_unquoted] = STATE(5960), + [sym__unquoted_anonymous_prefix] = STATE(7904), [sym_comment] = STATE(1282), - [anon_sym_LBRACK] = ACTIONS(3983), - [anon_sym_LPAREN] = ACTIONS(4211), - [anon_sym_DOLLAR] = ACTIONS(4213), - [anon_sym_LBRACE] = ACTIONS(3987), - [anon_sym_DOT_DOT] = ACTIONS(4215), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4217), - [anon_sym_DOT_DOT_LT] = ACTIONS(4217), - [anon_sym_null] = ACTIONS(3993), - [anon_sym_true] = ACTIONS(3995), - [anon_sym_false] = ACTIONS(3995), - [aux_sym__val_number_decimal_token1] = ACTIONS(3997), - [aux_sym__val_number_decimal_token2] = ACTIONS(3999), - [aux_sym__val_number_decimal_token3] = ACTIONS(4001), - [aux_sym__val_number_decimal_token4] = ACTIONS(4003), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(4005), - [aux_sym__val_number_token5] = ACTIONS(4005), - [aux_sym__val_number_token6] = ACTIONS(4005), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(4007), - [anon_sym_DQUOTE] = ACTIONS(4009), - [sym__str_single_quotes] = ACTIONS(4011), - [sym__str_back_ticks] = ACTIONS(4011), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_LBRACK] = ACTIONS(4075), + [anon_sym_LPAREN] = ACTIONS(4077), + [anon_sym_DOLLAR] = ACTIONS(4079), + [anon_sym_LBRACE] = ACTIONS(4081), + [anon_sym_DOT_DOT] = ACTIONS(4083), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4085), + [anon_sym_DOT_DOT_LT] = ACTIONS(4085), + [anon_sym_null] = ACTIONS(4087), + [anon_sym_true] = ACTIONS(4089), + [anon_sym_false] = ACTIONS(4089), + [aux_sym__val_number_decimal_token1] = ACTIONS(4091), + [aux_sym__val_number_decimal_token2] = ACTIONS(4093), + [aux_sym__val_number_decimal_token3] = ACTIONS(4095), + [aux_sym__val_number_decimal_token4] = ACTIONS(4097), + [aux_sym__val_number_token1] = ACTIONS(4099), + [aux_sym__val_number_token2] = ACTIONS(4099), + [aux_sym__val_number_token3] = ACTIONS(4099), + [aux_sym__val_number_token4] = ACTIONS(4101), + [aux_sym__val_number_token5] = ACTIONS(4101), + [aux_sym__val_number_token6] = ACTIONS(4101), + [anon_sym_0b] = ACTIONS(4103), + [anon_sym_0o] = ACTIONS(4105), + [anon_sym_0x] = ACTIONS(4105), + [sym_val_date] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(4109), + [sym__str_single_quotes] = ACTIONS(4111), + [sym__str_back_ticks] = ACTIONS(4111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4115), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4117), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4013), + [sym_raw_string_begin] = ACTIONS(4119), }, [1283] = { - [sym__expr_parenthesized_immediate] = STATE(1901), - [sym__immediate_decimal] = STATE(1710), - [sym_val_variable] = STATE(1901), + [sym__val_range] = STATE(7842), + [sym__value] = STATE(1765), + [sym_val_nothing] = STATE(1829), + [sym_val_bool] = STATE(1702), + [sym_val_variable] = STATE(1829), + [sym_val_number] = STATE(1829), + [sym__val_number_decimal] = STATE(1404), + [sym__val_number] = STATE(1779), + [sym_val_duration] = STATE(1829), + [sym_val_filesize] = STATE(1829), + [sym_val_binary] = STATE(1829), + [sym_val_string] = STATE(1829), + [sym__raw_str] = STATE(1791), + [sym__str_double_quotes] = STATE(1791), + [sym_val_interpolated] = STATE(1829), + [sym__inter_single_quotes] = STATE(1798), + [sym__inter_double_quotes] = STATE(1799), + [sym_val_list] = STATE(1829), + [sym_val_record] = STATE(1829), + [sym_val_table] = STATE(1829), + [sym_val_closure] = STATE(1829), + [sym_unquoted] = STATE(1766), + [sym__unquoted_anonymous_prefix] = STATE(7788), [sym_comment] = STATE(1283), - [ts_builtin_sym_end] = ACTIONS(1544), - [sym__newline] = ACTIONS(1544), - [anon_sym_SEMI] = ACTIONS(1544), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_err_GT_PIPE] = ACTIONS(1544), - [anon_sym_out_GT_PIPE] = ACTIONS(1544), - [anon_sym_e_GT_PIPE] = ACTIONS(1544), - [anon_sym_o_GT_PIPE] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_DOLLAR] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(1544), - [anon_sym_DASH2] = ACTIONS(1530), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_DOT_DOT] = ACTIONS(1530), - [anon_sym_LPAREN2] = ACTIONS(4221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT] = ACTIONS(1544), - [aux_sym__immediate_decimal_token1] = ACTIONS(4223), - [aux_sym__immediate_decimal_token3] = ACTIONS(4225), - [aux_sym__immediate_decimal_token4] = ACTIONS(4227), - [aux_sym__immediate_decimal_token5] = ACTIONS(4229), - [anon_sym_null] = ACTIONS(1544), - [anon_sym_true] = ACTIONS(1544), - [anon_sym_false] = ACTIONS(1544), - [aux_sym__val_number_decimal_token1] = ACTIONS(1530), - [aux_sym__val_number_decimal_token2] = ACTIONS(1530), - [aux_sym__val_number_decimal_token3] = ACTIONS(1530), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(1544), - [aux_sym__val_number_token2] = ACTIONS(1544), - [aux_sym__val_number_token3] = ACTIONS(1544), - [aux_sym__val_number_token4] = ACTIONS(1544), - [aux_sym__val_number_token5] = ACTIONS(1544), - [aux_sym__val_number_token6] = ACTIONS(1544), - [anon_sym_0b] = ACTIONS(1530), - [anon_sym_0o] = ACTIONS(1530), - [anon_sym_0x] = ACTIONS(1530), - [sym_val_date] = ACTIONS(1544), - [anon_sym_DQUOTE] = ACTIONS(1544), - [sym__str_single_quotes] = ACTIONS(1544), - [sym__str_back_ticks] = ACTIONS(1544), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1544), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1544), - [anon_sym_err_GT] = ACTIONS(1530), - [anon_sym_out_GT] = ACTIONS(1530), - [anon_sym_e_GT] = ACTIONS(1530), - [anon_sym_o_GT] = ACTIONS(1530), - [anon_sym_err_PLUSout_GT] = ACTIONS(1530), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1530), - [anon_sym_o_PLUSe_GT] = ACTIONS(1530), - [anon_sym_e_PLUSo_GT] = ACTIONS(1530), - [anon_sym_err_GT_GT] = ACTIONS(1544), - [anon_sym_out_GT_GT] = ACTIONS(1544), - [anon_sym_e_GT_GT] = ACTIONS(1544), - [anon_sym_o_GT_GT] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1544), - [aux_sym_unquoted_token1] = ACTIONS(1530), - [aux_sym_unquoted_token2] = ACTIONS(1546), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym_DOLLAR] = ACTIONS(4033), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_DOT_DOT] = ACTIONS(4255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4257), + [anon_sym_DOT_DOT_LT] = ACTIONS(4257), + [anon_sym_null] = ACTIONS(4259), + [anon_sym_true] = ACTIONS(4261), + [anon_sym_false] = ACTIONS(4261), + [aux_sym__val_number_decimal_token1] = ACTIONS(4263), + [aux_sym__val_number_decimal_token2] = ACTIONS(4265), + [aux_sym__val_number_decimal_token3] = ACTIONS(4267), + [aux_sym__val_number_decimal_token4] = ACTIONS(4269), + [aux_sym__val_number_token1] = ACTIONS(2653), + [aux_sym__val_number_token2] = ACTIONS(2653), + [aux_sym__val_number_token3] = ACTIONS(2653), + [aux_sym__val_number_token4] = ACTIONS(4271), + [aux_sym__val_number_token5] = ACTIONS(4271), + [aux_sym__val_number_token6] = ACTIONS(4271), + [anon_sym_0b] = ACTIONS(2657), + [anon_sym_0o] = ACTIONS(2659), + [anon_sym_0x] = ACTIONS(2659), + [sym_val_date] = ACTIONS(4273), + [anon_sym_DQUOTE] = ACTIONS(2663), + [sym__str_single_quotes] = ACTIONS(2665), + [sym__str_back_ticks] = ACTIONS(2665), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2667), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2669), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4275), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2677), }, [1284] = { - [sym__val_range] = STATE(7572), - [sym__value] = STATE(6059), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(7458), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(5622), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(4492), - [sym__str_double_quotes] = STATE(4492), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(6060), - [sym__unquoted_anonymous_prefix] = STATE(7585), + [sym__val_range] = STATE(7932), + [sym__value] = STATE(5968), + [sym_val_nothing] = STATE(5879), + [sym_val_bool] = STATE(5689), + [sym_val_variable] = STATE(5879), + [sym_val_number] = STATE(5879), + [sym__val_number_decimal] = STATE(5141), + [sym__val_number] = STATE(5951), + [sym_val_duration] = STATE(5879), + [sym_val_filesize] = STATE(5879), + [sym_val_binary] = STATE(5879), + [sym_val_string] = STATE(5879), + [sym__raw_str] = STATE(5616), + [sym__str_double_quotes] = STATE(5616), + [sym_val_interpolated] = STATE(5879), + [sym__inter_single_quotes] = STATE(5824), + [sym__inter_double_quotes] = STATE(5825), + [sym_val_list] = STATE(5879), + [sym_val_record] = STATE(5879), + [sym_val_table] = STATE(5879), + [sym_val_closure] = STATE(5879), + [sym_unquoted] = STATE(5969), + [sym__unquoted_anonymous_prefix] = STATE(7904), [sym_comment] = STATE(1284), - [anon_sym_LBRACK] = ACTIONS(3983), - [anon_sym_LPAREN] = ACTIONS(4211), - [anon_sym_DOLLAR] = ACTIONS(4213), - [anon_sym_LBRACE] = ACTIONS(3987), - [anon_sym_DOT_DOT] = ACTIONS(4215), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4217), - [anon_sym_DOT_DOT_LT] = ACTIONS(4217), - [anon_sym_null] = ACTIONS(3993), - [anon_sym_true] = ACTIONS(3995), - [anon_sym_false] = ACTIONS(3995), - [aux_sym__val_number_decimal_token1] = ACTIONS(3997), - [aux_sym__val_number_decimal_token2] = ACTIONS(3999), - [aux_sym__val_number_decimal_token3] = ACTIONS(4001), - [aux_sym__val_number_decimal_token4] = ACTIONS(4003), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(4005), - [aux_sym__val_number_token5] = ACTIONS(4005), - [aux_sym__val_number_token6] = ACTIONS(4005), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(4007), - [anon_sym_DQUOTE] = ACTIONS(4009), - [sym__str_single_quotes] = ACTIONS(4011), - [sym__str_back_ticks] = ACTIONS(4011), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_LBRACK] = ACTIONS(4075), + [anon_sym_LPAREN] = ACTIONS(4077), + [anon_sym_DOLLAR] = ACTIONS(4079), + [anon_sym_LBRACE] = ACTIONS(4081), + [anon_sym_DOT_DOT] = ACTIONS(4083), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4085), + [anon_sym_DOT_DOT_LT] = ACTIONS(4085), + [anon_sym_null] = ACTIONS(4087), + [anon_sym_true] = ACTIONS(4089), + [anon_sym_false] = ACTIONS(4089), + [aux_sym__val_number_decimal_token1] = ACTIONS(4091), + [aux_sym__val_number_decimal_token2] = ACTIONS(4093), + [aux_sym__val_number_decimal_token3] = ACTIONS(4095), + [aux_sym__val_number_decimal_token4] = ACTIONS(4097), + [aux_sym__val_number_token1] = ACTIONS(4099), + [aux_sym__val_number_token2] = ACTIONS(4099), + [aux_sym__val_number_token3] = ACTIONS(4099), + [aux_sym__val_number_token4] = ACTIONS(4101), + [aux_sym__val_number_token5] = ACTIONS(4101), + [aux_sym__val_number_token6] = ACTIONS(4101), + [anon_sym_0b] = ACTIONS(4103), + [anon_sym_0o] = ACTIONS(4105), + [anon_sym_0x] = ACTIONS(4105), + [sym_val_date] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(4109), + [sym__str_single_quotes] = ACTIONS(4111), + [sym__str_back_ticks] = ACTIONS(4111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4115), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4117), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4013), + [sym_raw_string_begin] = ACTIONS(4119), }, [1285] = { - [sym__val_range] = STATE(7673), - [sym__value] = STATE(6061), - [sym_val_nothing] = STATE(4907), - [sym_val_bool] = STATE(5835), - [sym_val_variable] = STATE(4907), - [sym_val_number] = STATE(4907), - [sym__val_number_decimal] = STATE(5262), - [sym__val_number] = STATE(4940), - [sym_val_duration] = STATE(4907), - [sym_val_filesize] = STATE(4907), - [sym_val_binary] = STATE(4907), - [sym_val_string] = STATE(4907), - [sym__raw_str] = STATE(4492), - [sym__str_double_quotes] = STATE(4492), - [sym_val_interpolated] = STATE(4907), - [sym__inter_single_quotes] = STATE(4952), - [sym__inter_double_quotes] = STATE(4953), - [sym_val_list] = STATE(4907), - [sym_val_record] = STATE(4907), - [sym_val_table] = STATE(4907), - [sym_val_closure] = STATE(4907), - [sym_unquoted] = STATE(6065), - [sym__unquoted_anonymous_prefix] = STATE(7821), + [sym__val_range] = STATE(7906), + [sym__value] = STATE(5569), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(7662), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(5723), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(5603), + [sym__unquoted_anonymous_prefix] = STATE(7913), [sym_comment] = STATE(1285), - [anon_sym_LBRACK] = ACTIONS(4089), - [anon_sym_LPAREN] = ACTIONS(4091), - [anon_sym_DOLLAR] = ACTIONS(4119), - [anon_sym_LBRACE] = ACTIONS(4095), - [anon_sym_DOT_DOT] = ACTIONS(4097), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4099), - [anon_sym_DOT_DOT_LT] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4103), - [anon_sym_false] = ACTIONS(4103), - [aux_sym__val_number_decimal_token1] = ACTIONS(4195), - [aux_sym__val_number_decimal_token2] = ACTIONS(4197), - [aux_sym__val_number_decimal_token3] = ACTIONS(4199), - [aux_sym__val_number_decimal_token4] = ACTIONS(4201), - [aux_sym__val_number_token1] = ACTIONS(3593), - [aux_sym__val_number_token2] = ACTIONS(3593), - [aux_sym__val_number_token3] = ACTIONS(3593), - [aux_sym__val_number_token4] = ACTIONS(4203), - [aux_sym__val_number_token5] = ACTIONS(4203), - [aux_sym__val_number_token6] = ACTIONS(4203), - [anon_sym_0b] = ACTIONS(3597), - [anon_sym_0o] = ACTIONS(3599), - [anon_sym_0x] = ACTIONS(3599), - [sym_val_date] = ACTIONS(4115), - [anon_sym_DQUOTE] = ACTIONS(4009), - [sym__str_single_quotes] = ACTIONS(4011), - [sym__str_back_ticks] = ACTIONS(4011), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4117), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4013), - }, - [1286] = { - [sym__val_range] = STATE(7572), - [sym__value] = STATE(5570), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(7366), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(5735), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(5589), - [sym__unquoted_anonymous_prefix] = STATE(7585), - [sym_comment] = STATE(1286), [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(4211), - [anon_sym_DOLLAR] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4327), + [anon_sym_DOLLAR] = ACTIONS(4329), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(4215), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4217), - [anon_sym_DOT_DOT_LT] = ACTIONS(4217), - [anon_sym_null] = ACTIONS(4233), - [anon_sym_true] = ACTIONS(4235), - [anon_sym_false] = ACTIONS(4235), - [aux_sym__val_number_decimal_token1] = ACTIONS(4237), - [aux_sym__val_number_decimal_token2] = ACTIONS(4239), - [aux_sym__val_number_decimal_token3] = ACTIONS(4241), - [aux_sym__val_number_decimal_token4] = ACTIONS(4243), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4333), + [anon_sym_DOT_DOT_LT] = ACTIONS(4333), + [anon_sym_null] = ACTIONS(4335), + [anon_sym_true] = ACTIONS(4337), + [anon_sym_false] = ACTIONS(4337), + [aux_sym__val_number_decimal_token1] = ACTIONS(4339), + [aux_sym__val_number_decimal_token2] = ACTIONS(4341), + [aux_sym__val_number_decimal_token3] = ACTIONS(4343), + [aux_sym__val_number_decimal_token4] = ACTIONS(4345), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(4245), - [aux_sym__val_number_token5] = ACTIONS(4245), - [aux_sym__val_number_token6] = ACTIONS(4245), + [aux_sym__val_number_token4] = ACTIONS(4347), + [aux_sym__val_number_token5] = ACTIONS(4347), + [aux_sym__val_number_token6] = ACTIONS(4347), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(4247), + [sym_val_date] = ACTIONS(4349), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, + [1286] = { + [sym__match_pattern_expression] = STATE(3167), + [sym__match_pattern_value] = STATE(3159), + [sym__match_pattern_list] = STATE(3160), + [sym__match_pattern_rest] = STATE(7880), + [sym__match_pattern_record] = STATE(3161), + [sym_expr_parenthesized] = STATE(2875), + [sym_val_range] = STATE(3159), + [sym__val_range] = STATE(7970), + [sym_val_nothing] = STATE(3162), + [sym_val_bool] = STATE(3037), + [sym_val_variable] = STATE(2883), + [sym_val_number] = STATE(3162), + [sym__val_number_decimal] = STATE(2683), + [sym__val_number] = STATE(3147), + [sym_val_duration] = STATE(3162), + [sym_val_filesize] = STATE(3162), + [sym_val_binary] = STATE(3162), + [sym_val_string] = STATE(3162), + [sym__raw_str] = STATE(3125), + [sym__str_double_quotes] = STATE(3125), + [sym_val_table] = STATE(3162), + [sym__unquoted_in_list] = STATE(3167), + [sym__unquoted_anonymous_prefix] = STATE(7872), + [sym_comment] = STATE(1286), + [aux_sym__match_pattern_list_repeat1] = STATE(1366), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_RBRACK] = ACTIONS(4353), + [anon_sym_LPAREN] = ACTIONS(3935), + [anon_sym_DOLLAR] = ACTIONS(3937), + [anon_sym_LBRACE] = ACTIONS(3939), + [anon_sym_DOT_DOT] = ACTIONS(4355), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3943), + [anon_sym_DOT_DOT_LT] = ACTIONS(3943), + [anon_sym_null] = ACTIONS(3945), + [anon_sym_true] = ACTIONS(3947), + [anon_sym_false] = ACTIONS(3947), + [aux_sym__val_number_decimal_token1] = ACTIONS(3949), + [aux_sym__val_number_decimal_token2] = ACTIONS(3951), + [aux_sym__val_number_decimal_token3] = ACTIONS(3953), + [aux_sym__val_number_decimal_token4] = ACTIONS(3955), + [aux_sym__val_number_token1] = ACTIONS(3957), + [aux_sym__val_number_token2] = ACTIONS(3957), + [aux_sym__val_number_token3] = ACTIONS(3957), + [aux_sym__val_number_token4] = ACTIONS(3959), + [aux_sym__val_number_token5] = ACTIONS(3959), + [aux_sym__val_number_token6] = ACTIONS(3959), + [anon_sym_0b] = ACTIONS(3961), + [anon_sym_0o] = ACTIONS(3963), + [anon_sym_0x] = ACTIONS(3963), + [sym_val_date] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3967), + [sym__str_single_quotes] = ACTIONS(3969), + [sym__str_back_ticks] = ACTIONS(3969), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3971), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3973), + }, [1287] = { - [sym__val_range] = STATE(7673), - [sym__value] = STATE(6063), - [sym_val_nothing] = STATE(4907), - [sym_val_bool] = STATE(5835), - [sym_val_variable] = STATE(4907), - [sym_val_number] = STATE(4907), - [sym__val_number_decimal] = STATE(5262), - [sym__val_number] = STATE(4940), - [sym_val_duration] = STATE(4907), - [sym_val_filesize] = STATE(4907), - [sym_val_binary] = STATE(4907), - [sym_val_string] = STATE(4907), - [sym__raw_str] = STATE(4492), - [sym__str_double_quotes] = STATE(4492), - [sym_val_interpolated] = STATE(4907), - [sym__inter_single_quotes] = STATE(4952), - [sym__inter_double_quotes] = STATE(4953), - [sym_val_list] = STATE(4907), - [sym_val_record] = STATE(4907), - [sym_val_table] = STATE(4907), - [sym_val_closure] = STATE(4907), - [sym_unquoted] = STATE(6064), - [sym__unquoted_anonymous_prefix] = STATE(7821), + [sym__val_range] = STATE(7739), + [sym__value] = STATE(6117), + [sym_val_nothing] = STATE(5002), + [sym_val_bool] = STATE(5962), + [sym_val_variable] = STATE(5002), + [sym_val_number] = STATE(5002), + [sym__val_number_decimal] = STATE(5248), + [sym__val_number] = STATE(4893), + [sym_val_duration] = STATE(5002), + [sym_val_filesize] = STATE(5002), + [sym_val_binary] = STATE(5002), + [sym_val_string] = STATE(5002), + [sym__raw_str] = STATE(4332), + [sym__str_double_quotes] = STATE(4332), + [sym_val_interpolated] = STATE(5002), + [sym__inter_single_quotes] = STATE(4834), + [sym__inter_double_quotes] = STATE(4836), + [sym_val_list] = STATE(5002), + [sym_val_record] = STATE(5002), + [sym_val_table] = STATE(5002), + [sym_val_closure] = STATE(5002), + [sym_unquoted] = STATE(6143), + [sym__unquoted_anonymous_prefix] = STATE(7847), [sym_comment] = STATE(1287), - [anon_sym_LBRACK] = ACTIONS(4089), - [anon_sym_LPAREN] = ACTIONS(4091), - [anon_sym_DOLLAR] = ACTIONS(4119), - [anon_sym_LBRACE] = ACTIONS(4095), - [anon_sym_DOT_DOT] = ACTIONS(4097), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4099), - [anon_sym_DOT_DOT_LT] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4101), - [anon_sym_true] = ACTIONS(4103), - [anon_sym_false] = ACTIONS(4103), - [aux_sym__val_number_decimal_token1] = ACTIONS(4195), - [aux_sym__val_number_decimal_token2] = ACTIONS(4197), - [aux_sym__val_number_decimal_token3] = ACTIONS(4199), - [aux_sym__val_number_decimal_token4] = ACTIONS(4201), - [aux_sym__val_number_token1] = ACTIONS(3593), - [aux_sym__val_number_token2] = ACTIONS(3593), - [aux_sym__val_number_token3] = ACTIONS(3593), - [aux_sym__val_number_token4] = ACTIONS(4203), - [aux_sym__val_number_token5] = ACTIONS(4203), - [aux_sym__val_number_token6] = ACTIONS(4203), - [anon_sym_0b] = ACTIONS(3597), - [anon_sym_0o] = ACTIONS(3599), - [anon_sym_0x] = ACTIONS(3599), - [sym_val_date] = ACTIONS(4115), - [anon_sym_DQUOTE] = ACTIONS(4009), - [sym__str_single_quotes] = ACTIONS(4011), - [sym__str_back_ticks] = ACTIONS(4011), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4117), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4177), + [anon_sym_LPAREN] = ACTIONS(4179), + [anon_sym_DOLLAR] = ACTIONS(4357), + [anon_sym_LBRACE] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), + [anon_sym_DOT_DOT_LT] = ACTIONS(4187), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_true] = ACTIONS(4361), + [anon_sym_false] = ACTIONS(4361), + [aux_sym__val_number_decimal_token1] = ACTIONS(4363), + [aux_sym__val_number_decimal_token2] = ACTIONS(4365), + [aux_sym__val_number_decimal_token3] = ACTIONS(4367), + [aux_sym__val_number_decimal_token4] = ACTIONS(4369), + [aux_sym__val_number_token1] = ACTIONS(3647), + [aux_sym__val_number_token2] = ACTIONS(3647), + [aux_sym__val_number_token3] = ACTIONS(3647), + [aux_sym__val_number_token4] = ACTIONS(4371), + [aux_sym__val_number_token5] = ACTIONS(4371), + [aux_sym__val_number_token6] = ACTIONS(4371), + [anon_sym_0b] = ACTIONS(3651), + [anon_sym_0o] = ACTIONS(3653), + [anon_sym_0x] = ACTIONS(3653), + [sym_val_date] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(4001), + [sym__str_single_quotes] = ACTIONS(4003), + [sym__str_back_ticks] = ACTIONS(4003), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4205), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4005), }, [1288] = { - [sym__val_range] = STATE(7572), - [sym__value] = STATE(5612), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(7366), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(5735), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(5617), - [sym__unquoted_anonymous_prefix] = STATE(7585), + [sym__val_range] = STATE(7745), + [sym__value] = STATE(5501), + [sym_val_nothing] = STATE(3510), + [sym_val_bool] = STATE(5617), + [sym_val_variable] = STATE(3510), + [sym_val_number] = STATE(3510), + [sym__val_number_decimal] = STATE(4868), + [sym__val_number] = STATE(3521), + [sym_val_duration] = STATE(3510), + [sym_val_filesize] = STATE(3510), + [sym_val_binary] = STATE(3510), + [sym_val_string] = STATE(3510), + [sym__raw_str] = STATE(3343), + [sym__str_double_quotes] = STATE(3343), + [sym_val_interpolated] = STATE(3510), + [sym__inter_single_quotes] = STATE(3540), + [sym__inter_double_quotes] = STATE(3518), + [sym_val_list] = STATE(3510), + [sym_val_record] = STATE(3510), + [sym_val_table] = STATE(3510), + [sym_val_closure] = STATE(3510), + [sym_unquoted] = STATE(5502), + [sym__unquoted_anonymous_prefix] = STATE(7746), [sym_comment] = STATE(1288), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(4211), - [anon_sym_DOLLAR] = ACTIONS(4231), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(4215), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4217), - [anon_sym_DOT_DOT_LT] = ACTIONS(4217), - [anon_sym_null] = ACTIONS(4233), - [anon_sym_true] = ACTIONS(4235), - [anon_sym_false] = ACTIONS(4235), - [aux_sym__val_number_decimal_token1] = ACTIONS(4237), - [aux_sym__val_number_decimal_token2] = ACTIONS(4239), - [aux_sym__val_number_decimal_token3] = ACTIONS(4241), - [aux_sym__val_number_decimal_token4] = ACTIONS(4243), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(4245), - [aux_sym__val_number_token5] = ACTIONS(4245), - [aux_sym__val_number_token6] = ACTIONS(4245), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(4247), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym_DOLLAR] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [anon_sym_DOT_DOT] = ACTIONS(4383), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4385), + [anon_sym_DOT_DOT_LT] = ACTIONS(4385), + [anon_sym_null] = ACTIONS(4387), + [anon_sym_true] = ACTIONS(4389), + [anon_sym_false] = ACTIONS(4389), + [aux_sym__val_number_decimal_token1] = ACTIONS(4391), + [aux_sym__val_number_decimal_token2] = ACTIONS(4393), + [aux_sym__val_number_decimal_token3] = ACTIONS(4395), + [aux_sym__val_number_decimal_token4] = ACTIONS(4397), + [aux_sym__val_number_token1] = ACTIONS(3421), + [aux_sym__val_number_token2] = ACTIONS(3421), + [aux_sym__val_number_token3] = ACTIONS(3421), + [aux_sym__val_number_token4] = ACTIONS(4399), + [aux_sym__val_number_token5] = ACTIONS(4399), + [aux_sym__val_number_token6] = ACTIONS(4399), + [anon_sym_0b] = ACTIONS(3425), + [anon_sym_0o] = ACTIONS(3427), + [anon_sym_0x] = ACTIONS(3427), + [sym_val_date] = ACTIONS(4401), + [anon_sym_DQUOTE] = ACTIONS(4403), + [sym__str_single_quotes] = ACTIONS(4405), + [sym__str_back_ticks] = ACTIONS(4405), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3439), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4407), }, [1289] = { - [sym__expr_parenthesized_immediate] = STATE(7504), + [sym__val_range] = STATE(7932), + [sym__value] = STATE(5982), + [sym_val_nothing] = STATE(5879), + [sym_val_bool] = STATE(5689), + [sym_val_variable] = STATE(5879), + [sym_val_number] = STATE(5879), + [sym__val_number_decimal] = STATE(5141), + [sym__val_number] = STATE(5951), + [sym_val_duration] = STATE(5879), + [sym_val_filesize] = STATE(5879), + [sym_val_binary] = STATE(5879), + [sym_val_string] = STATE(5879), + [sym__raw_str] = STATE(5616), + [sym__str_double_quotes] = STATE(5616), + [sym_val_interpolated] = STATE(5879), + [sym__inter_single_quotes] = STATE(5824), + [sym__inter_double_quotes] = STATE(5825), + [sym_val_list] = STATE(5879), + [sym_val_record] = STATE(5879), + [sym_val_table] = STATE(5879), + [sym_val_closure] = STATE(5879), + [sym_unquoted] = STATE(5983), + [sym__unquoted_anonymous_prefix] = STATE(7904), [sym_comment] = STATE(1289), - [sym__newline] = ACTIONS(1721), - [anon_sym_SEMI] = ACTIONS(1721), - [anon_sym_PIPE] = ACTIONS(1721), - [anon_sym_err_GT_PIPE] = ACTIONS(1721), - [anon_sym_out_GT_PIPE] = ACTIONS(1721), - [anon_sym_e_GT_PIPE] = ACTIONS(1721), - [anon_sym_o_GT_PIPE] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1721), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_RPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_DASH_DASH] = ACTIONS(1721), - [anon_sym_DASH2] = ACTIONS(1709), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1709), - [anon_sym_LPAREN2] = ACTIONS(4249), - [anon_sym_DOT_DOT2] = ACTIONS(4251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1709), - [anon_sym_DOT_DOT_LT] = ACTIONS(1709), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4253), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4253), - [anon_sym_null] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1709), - [aux_sym__val_number_decimal_token2] = ACTIONS(1721), - [aux_sym__val_number_decimal_token3] = ACTIONS(1721), - [aux_sym__val_number_decimal_token4] = ACTIONS(1721), - [aux_sym__val_number_token1] = ACTIONS(1721), - [aux_sym__val_number_token2] = ACTIONS(1721), - [aux_sym__val_number_token3] = ACTIONS(1721), - [aux_sym__val_number_token4] = ACTIONS(1721), - [aux_sym__val_number_token5] = ACTIONS(1721), - [aux_sym__val_number_token6] = ACTIONS(1721), - [anon_sym_0b] = ACTIONS(1709), - [sym_filesize_unit] = ACTIONS(4255), - [sym_duration_unit] = ACTIONS(4257), - [anon_sym_0o] = ACTIONS(1709), - [anon_sym_0x] = ACTIONS(1709), - [sym_val_date] = ACTIONS(1721), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym__str_single_quotes] = ACTIONS(1721), - [sym__str_back_ticks] = ACTIONS(1721), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1721), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1721), - [anon_sym_err_GT] = ACTIONS(1709), - [anon_sym_out_GT] = ACTIONS(1709), - [anon_sym_e_GT] = ACTIONS(1709), - [anon_sym_o_GT] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT] = ACTIONS(1709), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), - [anon_sym_o_PLUSe_GT] = ACTIONS(1709), - [anon_sym_e_PLUSo_GT] = ACTIONS(1709), - [anon_sym_err_GT_GT] = ACTIONS(1721), - [anon_sym_out_GT_GT] = ACTIONS(1721), - [anon_sym_e_GT_GT] = ACTIONS(1721), - [anon_sym_o_GT_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1721), - [aux_sym_unquoted_token1] = ACTIONS(1709), - [aux_sym_unquoted_token2] = ACTIONS(4259), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1721), + [anon_sym_LBRACK] = ACTIONS(4075), + [anon_sym_LPAREN] = ACTIONS(4077), + [anon_sym_DOLLAR] = ACTIONS(4079), + [anon_sym_LBRACE] = ACTIONS(4081), + [anon_sym_DOT_DOT] = ACTIONS(4083), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4085), + [anon_sym_DOT_DOT_LT] = ACTIONS(4085), + [anon_sym_null] = ACTIONS(4087), + [anon_sym_true] = ACTIONS(4089), + [anon_sym_false] = ACTIONS(4089), + [aux_sym__val_number_decimal_token1] = ACTIONS(4091), + [aux_sym__val_number_decimal_token2] = ACTIONS(4093), + [aux_sym__val_number_decimal_token3] = ACTIONS(4095), + [aux_sym__val_number_decimal_token4] = ACTIONS(4097), + [aux_sym__val_number_token1] = ACTIONS(4099), + [aux_sym__val_number_token2] = ACTIONS(4099), + [aux_sym__val_number_token3] = ACTIONS(4099), + [aux_sym__val_number_token4] = ACTIONS(4101), + [aux_sym__val_number_token5] = ACTIONS(4101), + [aux_sym__val_number_token6] = ACTIONS(4101), + [anon_sym_0b] = ACTIONS(4103), + [anon_sym_0o] = ACTIONS(4105), + [anon_sym_0x] = ACTIONS(4105), + [sym_val_date] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(4109), + [sym__str_single_quotes] = ACTIONS(4111), + [sym__str_back_ticks] = ACTIONS(4111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4115), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4117), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4119), }, [1290] = { - [sym__val_range] = STATE(7572), - [sym__value] = STATE(5616), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(7366), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(5735), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(5547), - [sym__unquoted_anonymous_prefix] = STATE(7585), + [sym__val_range] = STATE(7745), + [sym__value] = STATE(5514), + [sym_val_nothing] = STATE(3510), + [sym_val_bool] = STATE(5617), + [sym_val_variable] = STATE(3510), + [sym_val_number] = STATE(3510), + [sym__val_number_decimal] = STATE(4868), + [sym__val_number] = STATE(3521), + [sym_val_duration] = STATE(3510), + [sym_val_filesize] = STATE(3510), + [sym_val_binary] = STATE(3510), + [sym_val_string] = STATE(3510), + [sym__raw_str] = STATE(3343), + [sym__str_double_quotes] = STATE(3343), + [sym_val_interpolated] = STATE(3510), + [sym__inter_single_quotes] = STATE(3540), + [sym__inter_double_quotes] = STATE(3518), + [sym_val_list] = STATE(3510), + [sym_val_record] = STATE(3510), + [sym_val_table] = STATE(3510), + [sym_val_closure] = STATE(3510), + [sym_unquoted] = STATE(5515), + [sym__unquoted_anonymous_prefix] = STATE(7746), [sym_comment] = STATE(1290), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(4211), - [anon_sym_DOLLAR] = ACTIONS(4231), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(4215), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4217), - [anon_sym_DOT_DOT_LT] = ACTIONS(4217), - [anon_sym_null] = ACTIONS(4233), - [anon_sym_true] = ACTIONS(4235), - [anon_sym_false] = ACTIONS(4235), - [aux_sym__val_number_decimal_token1] = ACTIONS(4237), - [aux_sym__val_number_decimal_token2] = ACTIONS(4239), - [aux_sym__val_number_decimal_token3] = ACTIONS(4241), - [aux_sym__val_number_decimal_token4] = ACTIONS(4243), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(4245), - [aux_sym__val_number_token5] = ACTIONS(4245), - [aux_sym__val_number_token6] = ACTIONS(4245), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(4247), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym_DOLLAR] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [anon_sym_DOT_DOT] = ACTIONS(4383), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4385), + [anon_sym_DOT_DOT_LT] = ACTIONS(4385), + [anon_sym_null] = ACTIONS(4387), + [anon_sym_true] = ACTIONS(4389), + [anon_sym_false] = ACTIONS(4389), + [aux_sym__val_number_decimal_token1] = ACTIONS(4391), + [aux_sym__val_number_decimal_token2] = ACTIONS(4393), + [aux_sym__val_number_decimal_token3] = ACTIONS(4395), + [aux_sym__val_number_decimal_token4] = ACTIONS(4397), + [aux_sym__val_number_token1] = ACTIONS(3421), + [aux_sym__val_number_token2] = ACTIONS(3421), + [aux_sym__val_number_token3] = ACTIONS(3421), + [aux_sym__val_number_token4] = ACTIONS(4399), + [aux_sym__val_number_token5] = ACTIONS(4399), + [aux_sym__val_number_token6] = ACTIONS(4399), + [anon_sym_0b] = ACTIONS(3425), + [anon_sym_0o] = ACTIONS(3427), + [anon_sym_0x] = ACTIONS(3427), + [sym_val_date] = ACTIONS(4401), + [anon_sym_DQUOTE] = ACTIONS(4403), + [sym__str_single_quotes] = ACTIONS(4405), + [sym__str_back_ticks] = ACTIONS(4405), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3439), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4407), }, [1291] = { - [sym__val_range] = STATE(7742), - [sym__value] = STATE(1881), - [sym_val_nothing] = STATE(1890), - [sym_val_bool] = STATE(1851), - [sym_val_variable] = STATE(1890), - [sym_val_number] = STATE(1890), - [sym__val_number_decimal] = STATE(1441), - [sym__val_number] = STATE(1944), - [sym_val_duration] = STATE(1890), - [sym_val_filesize] = STATE(1890), - [sym_val_binary] = STATE(1890), - [sym_val_string] = STATE(1890), - [sym__raw_str] = STATE(1873), - [sym__str_double_quotes] = STATE(1873), - [sym_val_interpolated] = STATE(1890), - [sym__inter_single_quotes] = STATE(1966), - [sym__inter_double_quotes] = STATE(1967), - [sym_val_list] = STATE(1890), - [sym_val_record] = STATE(1890), - [sym_val_table] = STATE(1890), - [sym_val_closure] = STATE(1890), - [sym_unquoted] = STATE(1882), - [sym__unquoted_anonymous_prefix] = STATE(7803), + [sym__val_range] = STATE(7745), + [sym__value] = STATE(5569), + [sym_val_nothing] = STATE(3510), + [sym_val_bool] = STATE(5617), + [sym_val_variable] = STATE(3510), + [sym_val_number] = STATE(3510), + [sym__val_number_decimal] = STATE(4868), + [sym__val_number] = STATE(3521), + [sym_val_duration] = STATE(3510), + [sym_val_filesize] = STATE(3510), + [sym_val_binary] = STATE(3510), + [sym_val_string] = STATE(3510), + [sym__raw_str] = STATE(3343), + [sym__str_double_quotes] = STATE(3343), + [sym_val_interpolated] = STATE(3510), + [sym__inter_single_quotes] = STATE(3540), + [sym__inter_double_quotes] = STATE(3518), + [sym_val_list] = STATE(3510), + [sym_val_record] = STATE(3510), + [sym_val_table] = STATE(3510), + [sym_val_closure] = STATE(3510), + [sym_unquoted] = STATE(5603), + [sym__unquoted_anonymous_prefix] = STATE(7746), [sym_comment] = STATE(1291), - [anon_sym_LBRACK] = ACTIONS(2860), - [anon_sym_LPAREN] = ACTIONS(4261), - [anon_sym_DOLLAR] = ACTIONS(4219), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_DOT_DOT] = ACTIONS(4263), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4265), - [anon_sym_DOT_DOT_LT] = ACTIONS(4265), - [anon_sym_null] = ACTIONS(4267), - [anon_sym_true] = ACTIONS(4269), - [anon_sym_false] = ACTIONS(4269), - [aux_sym__val_number_decimal_token1] = ACTIONS(4271), - [aux_sym__val_number_decimal_token2] = ACTIONS(4273), - [aux_sym__val_number_decimal_token3] = ACTIONS(4275), - [aux_sym__val_number_decimal_token4] = ACTIONS(4277), - [aux_sym__val_number_token1] = ACTIONS(2888), - [aux_sym__val_number_token2] = ACTIONS(2888), - [aux_sym__val_number_token3] = ACTIONS(2888), - [aux_sym__val_number_token4] = ACTIONS(4279), - [aux_sym__val_number_token5] = ACTIONS(4279), - [aux_sym__val_number_token6] = ACTIONS(4279), - [anon_sym_0b] = ACTIONS(2892), - [anon_sym_0o] = ACTIONS(2894), - [anon_sym_0x] = ACTIONS(2894), - [sym_val_date] = ACTIONS(4281), - [anon_sym_DQUOTE] = ACTIONS(2898), - [sym__str_single_quotes] = ACTIONS(2900), - [sym__str_back_ticks] = ACTIONS(2900), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4283), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym_DOLLAR] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [anon_sym_DOT_DOT] = ACTIONS(4383), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4385), + [anon_sym_DOT_DOT_LT] = ACTIONS(4385), + [anon_sym_null] = ACTIONS(4387), + [anon_sym_true] = ACTIONS(4389), + [anon_sym_false] = ACTIONS(4389), + [aux_sym__val_number_decimal_token1] = ACTIONS(4391), + [aux_sym__val_number_decimal_token2] = ACTIONS(4393), + [aux_sym__val_number_decimal_token3] = ACTIONS(4395), + [aux_sym__val_number_decimal_token4] = ACTIONS(4397), + [aux_sym__val_number_token1] = ACTIONS(3421), + [aux_sym__val_number_token2] = ACTIONS(3421), + [aux_sym__val_number_token3] = ACTIONS(3421), + [aux_sym__val_number_token4] = ACTIONS(4399), + [aux_sym__val_number_token5] = ACTIONS(4399), + [aux_sym__val_number_token6] = ACTIONS(4399), + [anon_sym_0b] = ACTIONS(3425), + [anon_sym_0o] = ACTIONS(3427), + [anon_sym_0x] = ACTIONS(3427), + [sym_val_date] = ACTIONS(4401), + [anon_sym_DQUOTE] = ACTIONS(4403), + [sym__str_single_quotes] = ACTIONS(4405), + [sym__str_back_ticks] = ACTIONS(4405), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3439), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4407), }, [1292] = { - [sym__val_range] = STATE(7572), - [sym__value] = STATE(5533), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(7366), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(5735), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(5542), - [sym__unquoted_anonymous_prefix] = STATE(7585), + [sym__val_range] = STATE(7745), + [sym__value] = STATE(5629), + [sym_val_nothing] = STATE(3510), + [sym_val_bool] = STATE(5617), + [sym_val_variable] = STATE(3510), + [sym_val_number] = STATE(3510), + [sym__val_number_decimal] = STATE(4868), + [sym__val_number] = STATE(3521), + [sym_val_duration] = STATE(3510), + [sym_val_filesize] = STATE(3510), + [sym_val_binary] = STATE(3510), + [sym_val_string] = STATE(3510), + [sym__raw_str] = STATE(3343), + [sym__str_double_quotes] = STATE(3343), + [sym_val_interpolated] = STATE(3510), + [sym__inter_single_quotes] = STATE(3540), + [sym__inter_double_quotes] = STATE(3518), + [sym_val_list] = STATE(3510), + [sym_val_record] = STATE(3510), + [sym_val_table] = STATE(3510), + [sym_val_closure] = STATE(3510), + [sym_unquoted] = STATE(5503), + [sym__unquoted_anonymous_prefix] = STATE(7746), [sym_comment] = STATE(1292), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym_DOLLAR] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4381), + [anon_sym_DOT_DOT] = ACTIONS(4383), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4385), + [anon_sym_DOT_DOT_LT] = ACTIONS(4385), + [anon_sym_null] = ACTIONS(4387), + [anon_sym_true] = ACTIONS(4389), + [anon_sym_false] = ACTIONS(4389), + [aux_sym__val_number_decimal_token1] = ACTIONS(4391), + [aux_sym__val_number_decimal_token2] = ACTIONS(4393), + [aux_sym__val_number_decimal_token3] = ACTIONS(4395), + [aux_sym__val_number_decimal_token4] = ACTIONS(4397), + [aux_sym__val_number_token1] = ACTIONS(3421), + [aux_sym__val_number_token2] = ACTIONS(3421), + [aux_sym__val_number_token3] = ACTIONS(3421), + [aux_sym__val_number_token4] = ACTIONS(4399), + [aux_sym__val_number_token5] = ACTIONS(4399), + [aux_sym__val_number_token6] = ACTIONS(4399), + [anon_sym_0b] = ACTIONS(3425), + [anon_sym_0o] = ACTIONS(3427), + [anon_sym_0x] = ACTIONS(3427), + [sym_val_date] = ACTIONS(4401), + [anon_sym_DQUOTE] = ACTIONS(4403), + [sym__str_single_quotes] = ACTIONS(4405), + [sym__str_back_ticks] = ACTIONS(4405), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3435), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3437), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3439), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4407), + }, + [1293] = { + [sym__expr_parenthesized_immediate] = STATE(1800), + [sym__immediate_decimal] = STATE(1804), + [sym_val_variable] = STATE(1800), + [sym_comment] = STATE(1293), + [sym__newline] = ACTIONS(1603), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_PIPE] = ACTIONS(1603), + [anon_sym_err_GT_PIPE] = ACTIONS(1603), + [anon_sym_out_GT_PIPE] = ACTIONS(1603), + [anon_sym_e_GT_PIPE] = ACTIONS(1603), + [anon_sym_o_GT_PIPE] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_RPAREN] = ACTIONS(1603), + [anon_sym_DOLLAR] = ACTIONS(4033), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_DASH2] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_RBRACE] = ACTIONS(1603), + [anon_sym_DOT_DOT] = ACTIONS(1593), + [anon_sym_LPAREN2] = ACTIONS(4035), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1603), + [anon_sym_DOT_DOT_LT] = ACTIONS(1603), + [aux_sym__immediate_decimal_token1] = ACTIONS(4409), + [aux_sym__immediate_decimal_token3] = ACTIONS(4411), + [aux_sym__immediate_decimal_token4] = ACTIONS(4413), + [aux_sym__immediate_decimal_token5] = ACTIONS(4415), + [anon_sym_null] = ACTIONS(1603), + [anon_sym_true] = ACTIONS(1603), + [anon_sym_false] = ACTIONS(1603), + [aux_sym__val_number_decimal_token1] = ACTIONS(1593), + [aux_sym__val_number_decimal_token2] = ACTIONS(1593), + [aux_sym__val_number_decimal_token3] = ACTIONS(1593), + [aux_sym__val_number_decimal_token4] = ACTIONS(1593), + [aux_sym__val_number_token1] = ACTIONS(1603), + [aux_sym__val_number_token2] = ACTIONS(1603), + [aux_sym__val_number_token3] = ACTIONS(1603), + [aux_sym__val_number_token4] = ACTIONS(1603), + [aux_sym__val_number_token5] = ACTIONS(1603), + [aux_sym__val_number_token6] = ACTIONS(1603), + [anon_sym_0b] = ACTIONS(1593), + [anon_sym_0o] = ACTIONS(1593), + [anon_sym_0x] = ACTIONS(1593), + [sym_val_date] = ACTIONS(1603), + [anon_sym_DQUOTE] = ACTIONS(1603), + [sym__str_single_quotes] = ACTIONS(1603), + [sym__str_back_ticks] = ACTIONS(1603), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), + [anon_sym_err_GT] = ACTIONS(1593), + [anon_sym_out_GT] = ACTIONS(1593), + [anon_sym_e_GT] = ACTIONS(1593), + [anon_sym_o_GT] = ACTIONS(1593), + [anon_sym_err_PLUSout_GT] = ACTIONS(1593), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1593), + [anon_sym_o_PLUSe_GT] = ACTIONS(1593), + [anon_sym_e_PLUSo_GT] = ACTIONS(1593), + [anon_sym_err_GT_GT] = ACTIONS(1603), + [anon_sym_out_GT_GT] = ACTIONS(1603), + [anon_sym_e_GT_GT] = ACTIONS(1603), + [anon_sym_o_GT_GT] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1603), + [aux_sym_unquoted_token1] = ACTIONS(1593), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1603), + }, + [1294] = { + [sym__val_range] = STATE(7720), + [sym__value] = STATE(1896), + [sym_val_nothing] = STATE(1876), + [sym_val_bool] = STATE(1846), + [sym_val_variable] = STATE(1876), + [sym_val_number] = STATE(1876), + [sym__val_number_decimal] = STATE(1429), + [sym__val_number] = STATE(1949), + [sym_val_duration] = STATE(1876), + [sym_val_filesize] = STATE(1876), + [sym_val_binary] = STATE(1876), + [sym_val_string] = STATE(1876), + [sym__raw_str] = STATE(1965), + [sym__str_double_quotes] = STATE(1965), + [sym_val_interpolated] = STATE(1876), + [sym__inter_single_quotes] = STATE(1935), + [sym__inter_double_quotes] = STATE(1936), + [sym_val_list] = STATE(1876), + [sym_val_record] = STATE(1876), + [sym_val_table] = STATE(1876), + [sym_val_closure] = STATE(1876), + [sym_unquoted] = STATE(1897), + [sym__unquoted_anonymous_prefix] = STATE(7785), + [sym_comment] = STATE(1294), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(4417), + [anon_sym_DOLLAR] = ACTIONS(4419), + [anon_sym_LBRACE] = ACTIONS(3003), + [anon_sym_DOT_DOT] = ACTIONS(4421), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4423), + [anon_sym_DOT_DOT_LT] = ACTIONS(4423), + [anon_sym_null] = ACTIONS(4425), + [anon_sym_true] = ACTIONS(4427), + [anon_sym_false] = ACTIONS(4427), + [aux_sym__val_number_decimal_token1] = ACTIONS(4429), + [aux_sym__val_number_decimal_token2] = ACTIONS(4431), + [aux_sym__val_number_decimal_token3] = ACTIONS(4433), + [aux_sym__val_number_decimal_token4] = ACTIONS(4435), + [aux_sym__val_number_token1] = ACTIONS(3021), + [aux_sym__val_number_token2] = ACTIONS(3021), + [aux_sym__val_number_token3] = ACTIONS(3021), + [aux_sym__val_number_token4] = ACTIONS(4437), + [aux_sym__val_number_token5] = ACTIONS(4437), + [aux_sym__val_number_token6] = ACTIONS(4437), + [anon_sym_0b] = ACTIONS(3025), + [anon_sym_0o] = ACTIONS(3027), + [anon_sym_0x] = ACTIONS(3027), + [sym_val_date] = ACTIONS(4439), + [anon_sym_DQUOTE] = ACTIONS(3031), + [sym__str_single_quotes] = ACTIONS(3033), + [sym__str_back_ticks] = ACTIONS(3033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3035), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4441), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3041), + }, + [1295] = { + [sym_comment] = STATE(1295), + [sym__newline] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_err_GT_PIPE] = ACTIONS(1683), + [anon_sym_out_GT_PIPE] = ACTIONS(1683), + [anon_sym_e_GT_PIPE] = ACTIONS(1683), + [anon_sym_o_GT_PIPE] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1683), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1681), + [anon_sym_RPAREN] = ACTIONS(1683), + [anon_sym_DOLLAR] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1683), + [anon_sym_RBRACE] = ACTIONS(1683), + [anon_sym_DOT_DOT] = ACTIONS(1681), + [anon_sym_LPAREN2] = ACTIONS(1683), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1681), + [anon_sym_DOT_DOT_LT] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [aux_sym__immediate_decimal_token2] = ACTIONS(4443), + [anon_sym_null] = ACTIONS(1683), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [aux_sym__val_number_decimal_token1] = ACTIONS(1681), + [aux_sym__val_number_decimal_token2] = ACTIONS(1683), + [aux_sym__val_number_decimal_token3] = ACTIONS(1683), + [aux_sym__val_number_decimal_token4] = ACTIONS(1683), + [aux_sym__val_number_token1] = ACTIONS(1683), + [aux_sym__val_number_token2] = ACTIONS(1683), + [aux_sym__val_number_token3] = ACTIONS(1683), + [aux_sym__val_number_token4] = ACTIONS(1683), + [aux_sym__val_number_token5] = ACTIONS(1683), + [aux_sym__val_number_token6] = ACTIONS(1683), + [anon_sym_0b] = ACTIONS(1681), + [sym_filesize_unit] = ACTIONS(1683), + [sym_duration_unit] = ACTIONS(1683), + [anon_sym_0o] = ACTIONS(1681), + [anon_sym_0x] = ACTIONS(1681), + [sym_val_date] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(1683), + [sym__str_single_quotes] = ACTIONS(1683), + [sym__str_back_ticks] = ACTIONS(1683), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1683), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1683), + [anon_sym_err_GT] = ACTIONS(1681), + [anon_sym_out_GT] = ACTIONS(1681), + [anon_sym_e_GT] = ACTIONS(1681), + [anon_sym_o_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT] = ACTIONS(1681), + [anon_sym_err_GT_GT] = ACTIONS(1683), + [anon_sym_out_GT_GT] = ACTIONS(1683), + [anon_sym_e_GT_GT] = ACTIONS(1683), + [anon_sym_o_GT_GT] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1683), + [aux_sym_unquoted_token1] = ACTIONS(1681), + [aux_sym_unquoted_token2] = ACTIONS(1681), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1683), + }, + [1296] = { + [sym__val_range] = STATE(7906), + [sym__value] = STATE(5629), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(7662), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(5723), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(5503), + [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym_comment] = STATE(1296), [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(4211), - [anon_sym_DOLLAR] = ACTIONS(4231), + [anon_sym_LPAREN] = ACTIONS(4327), + [anon_sym_DOLLAR] = ACTIONS(4329), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(4215), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4217), - [anon_sym_DOT_DOT_LT] = ACTIONS(4217), - [anon_sym_null] = ACTIONS(4233), - [anon_sym_true] = ACTIONS(4235), - [anon_sym_false] = ACTIONS(4235), - [aux_sym__val_number_decimal_token1] = ACTIONS(4237), - [aux_sym__val_number_decimal_token2] = ACTIONS(4239), - [aux_sym__val_number_decimal_token3] = ACTIONS(4241), - [aux_sym__val_number_decimal_token4] = ACTIONS(4243), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4333), + [anon_sym_DOT_DOT_LT] = ACTIONS(4333), + [anon_sym_null] = ACTIONS(4335), + [anon_sym_true] = ACTIONS(4337), + [anon_sym_false] = ACTIONS(4337), + [aux_sym__val_number_decimal_token1] = ACTIONS(4339), + [aux_sym__val_number_decimal_token2] = ACTIONS(4341), + [aux_sym__val_number_decimal_token3] = ACTIONS(4343), + [aux_sym__val_number_decimal_token4] = ACTIONS(4345), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(4245), - [aux_sym__val_number_token5] = ACTIONS(4245), - [aux_sym__val_number_token6] = ACTIONS(4245), + [aux_sym__val_number_token4] = ACTIONS(4347), + [aux_sym__val_number_token5] = ACTIONS(4347), + [aux_sym__val_number_token6] = ACTIONS(4347), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(4247), + [sym_val_date] = ACTIONS(4349), [anon_sym_DQUOTE] = ACTIONS(431), [sym__str_single_quotes] = ACTIONS(433), [sym__str_back_ticks] = ACTIONS(433), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(435), }, - [1293] = { - [sym__val_range] = STATE(7742), - [sym__value] = STATE(1884), - [sym_val_nothing] = STATE(1890), - [sym_val_bool] = STATE(1851), - [sym_val_variable] = STATE(1890), - [sym_val_number] = STATE(1890), - [sym__val_number_decimal] = STATE(1441), - [sym__val_number] = STATE(1944), - [sym_val_duration] = STATE(1890), - [sym_val_filesize] = STATE(1890), - [sym_val_binary] = STATE(1890), - [sym_val_string] = STATE(1890), - [sym__raw_str] = STATE(1873), - [sym__str_double_quotes] = STATE(1873), - [sym_val_interpolated] = STATE(1890), - [sym__inter_single_quotes] = STATE(1966), - [sym__inter_double_quotes] = STATE(1967), - [sym_val_list] = STATE(1890), - [sym_val_record] = STATE(1890), - [sym_val_table] = STATE(1890), - [sym_val_closure] = STATE(1890), - [sym_unquoted] = STATE(1885), - [sym__unquoted_anonymous_prefix] = STATE(7803), - [sym_comment] = STATE(1293), - [anon_sym_LBRACK] = ACTIONS(2860), - [anon_sym_LPAREN] = ACTIONS(4261), - [anon_sym_DOLLAR] = ACTIONS(4219), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_DOT_DOT] = ACTIONS(4263), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4265), - [anon_sym_DOT_DOT_LT] = ACTIONS(4265), - [anon_sym_null] = ACTIONS(4267), - [anon_sym_true] = ACTIONS(4269), - [anon_sym_false] = ACTIONS(4269), - [aux_sym__val_number_decimal_token1] = ACTIONS(4271), - [aux_sym__val_number_decimal_token2] = ACTIONS(4273), - [aux_sym__val_number_decimal_token3] = ACTIONS(4275), - [aux_sym__val_number_decimal_token4] = ACTIONS(4277), - [aux_sym__val_number_token1] = ACTIONS(2888), - [aux_sym__val_number_token2] = ACTIONS(2888), - [aux_sym__val_number_token3] = ACTIONS(2888), - [aux_sym__val_number_token4] = ACTIONS(4279), - [aux_sym__val_number_token5] = ACTIONS(4279), - [aux_sym__val_number_token6] = ACTIONS(4279), - [anon_sym_0b] = ACTIONS(2892), - [anon_sym_0o] = ACTIONS(2894), - [anon_sym_0x] = ACTIONS(2894), - [sym_val_date] = ACTIONS(4281), - [anon_sym_DQUOTE] = ACTIONS(2898), - [sym__str_single_quotes] = ACTIONS(2900), - [sym__str_back_ticks] = ACTIONS(2900), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4283), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2908), - }, - [1294] = { - [sym__val_range] = STATE(7742), - [sym__value] = STATE(1902), - [sym_val_nothing] = STATE(1890), - [sym_val_bool] = STATE(1851), - [sym_val_variable] = STATE(1890), - [sym_val_number] = STATE(1890), - [sym__val_number_decimal] = STATE(1441), - [sym__val_number] = STATE(1944), - [sym_val_duration] = STATE(1890), - [sym_val_filesize] = STATE(1890), - [sym_val_binary] = STATE(1890), - [sym_val_string] = STATE(1890), - [sym__raw_str] = STATE(1873), - [sym__str_double_quotes] = STATE(1873), - [sym_val_interpolated] = STATE(1890), - [sym__inter_single_quotes] = STATE(1966), - [sym__inter_double_quotes] = STATE(1967), - [sym_val_list] = STATE(1890), - [sym_val_record] = STATE(1890), - [sym_val_table] = STATE(1890), - [sym_val_closure] = STATE(1890), - [sym_unquoted] = STATE(1903), - [sym__unquoted_anonymous_prefix] = STATE(7803), - [sym_comment] = STATE(1294), - [anon_sym_LBRACK] = ACTIONS(2860), - [anon_sym_LPAREN] = ACTIONS(4261), - [anon_sym_DOLLAR] = ACTIONS(4219), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_DOT_DOT] = ACTIONS(4263), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4265), - [anon_sym_DOT_DOT_LT] = ACTIONS(4265), - [anon_sym_null] = ACTIONS(4267), - [anon_sym_true] = ACTIONS(4269), - [anon_sym_false] = ACTIONS(4269), - [aux_sym__val_number_decimal_token1] = ACTIONS(4271), - [aux_sym__val_number_decimal_token2] = ACTIONS(4273), - [aux_sym__val_number_decimal_token3] = ACTIONS(4275), - [aux_sym__val_number_decimal_token4] = ACTIONS(4277), - [aux_sym__val_number_token1] = ACTIONS(2888), - [aux_sym__val_number_token2] = ACTIONS(2888), - [aux_sym__val_number_token3] = ACTIONS(2888), - [aux_sym__val_number_token4] = ACTIONS(4279), - [aux_sym__val_number_token5] = ACTIONS(4279), - [aux_sym__val_number_token6] = ACTIONS(4279), - [anon_sym_0b] = ACTIONS(2892), - [anon_sym_0o] = ACTIONS(2894), - [anon_sym_0x] = ACTIONS(2894), - [sym_val_date] = ACTIONS(4281), - [anon_sym_DQUOTE] = ACTIONS(2898), - [sym__str_single_quotes] = ACTIONS(2900), - [sym__str_back_ticks] = ACTIONS(2900), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4283), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2908), - }, - [1295] = { - [sym__val_range] = STATE(7673), - [sym__value] = STATE(6059), - [sym_val_nothing] = STATE(4907), - [sym_val_bool] = STATE(6452), - [sym_val_variable] = STATE(4907), - [sym_val_number] = STATE(4907), - [sym__val_number_decimal] = STATE(5362), - [sym__val_number] = STATE(4940), - [sym_val_duration] = STATE(4907), - [sym_val_filesize] = STATE(4907), - [sym_val_binary] = STATE(4907), - [sym_val_string] = STATE(4907), - [sym__raw_str] = STATE(4492), - [sym__str_double_quotes] = STATE(4492), - [sym_val_interpolated] = STATE(4907), - [sym__inter_single_quotes] = STATE(4952), - [sym__inter_double_quotes] = STATE(4953), - [sym_val_list] = STATE(4907), - [sym_val_record] = STATE(4907), - [sym_val_table] = STATE(4907), - [sym_val_closure] = STATE(4907), - [sym_unquoted] = STATE(6060), - [sym__unquoted_anonymous_prefix] = STATE(7821), - [sym_comment] = STATE(1295), - [anon_sym_LBRACK] = ACTIONS(4089), - [anon_sym_LPAREN] = ACTIONS(4091), - [anon_sym_DOLLAR] = ACTIONS(4119), - [anon_sym_LBRACE] = ACTIONS(4095), - [anon_sym_DOT_DOT] = ACTIONS(4097), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4099), - [anon_sym_DOT_DOT_LT] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4285), - [anon_sym_true] = ACTIONS(4287), - [anon_sym_false] = ACTIONS(4287), - [aux_sym__val_number_decimal_token1] = ACTIONS(4289), - [aux_sym__val_number_decimal_token2] = ACTIONS(4291), - [aux_sym__val_number_decimal_token3] = ACTIONS(4293), - [aux_sym__val_number_decimal_token4] = ACTIONS(4295), - [aux_sym__val_number_token1] = ACTIONS(3593), - [aux_sym__val_number_token2] = ACTIONS(3593), - [aux_sym__val_number_token3] = ACTIONS(3593), - [aux_sym__val_number_token4] = ACTIONS(4297), - [aux_sym__val_number_token5] = ACTIONS(4297), - [aux_sym__val_number_token6] = ACTIONS(4297), - [anon_sym_0b] = ACTIONS(3597), - [anon_sym_0o] = ACTIONS(3599), - [anon_sym_0x] = ACTIONS(3599), - [sym_val_date] = ACTIONS(4299), - [anon_sym_DQUOTE] = ACTIONS(4009), - [sym__str_single_quotes] = ACTIONS(4011), - [sym__str_back_ticks] = ACTIONS(4011), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4117), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4013), - }, - [1296] = { - [sym__val_range] = STATE(7742), - [sym__value] = STATE(1911), - [sym_val_nothing] = STATE(1890), - [sym_val_bool] = STATE(1851), - [sym_val_variable] = STATE(1890), - [sym_val_number] = STATE(1890), - [sym__val_number_decimal] = STATE(1441), - [sym__val_number] = STATE(1944), - [sym_val_duration] = STATE(1890), - [sym_val_filesize] = STATE(1890), - [sym_val_binary] = STATE(1890), - [sym_val_string] = STATE(1890), - [sym__raw_str] = STATE(1873), - [sym__str_double_quotes] = STATE(1873), - [sym_val_interpolated] = STATE(1890), - [sym__inter_single_quotes] = STATE(1966), - [sym__inter_double_quotes] = STATE(1967), - [sym_val_list] = STATE(1890), - [sym_val_record] = STATE(1890), - [sym_val_table] = STATE(1890), - [sym_val_closure] = STATE(1890), - [sym_unquoted] = STATE(1912), - [sym__unquoted_anonymous_prefix] = STATE(7803), - [sym_comment] = STATE(1296), - [anon_sym_LBRACK] = ACTIONS(2860), - [anon_sym_LPAREN] = ACTIONS(4261), - [anon_sym_DOLLAR] = ACTIONS(4219), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_DOT_DOT] = ACTIONS(4263), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4265), - [anon_sym_DOT_DOT_LT] = ACTIONS(4265), - [anon_sym_null] = ACTIONS(4267), - [anon_sym_true] = ACTIONS(4269), - [anon_sym_false] = ACTIONS(4269), - [aux_sym__val_number_decimal_token1] = ACTIONS(4271), - [aux_sym__val_number_decimal_token2] = ACTIONS(4273), - [aux_sym__val_number_decimal_token3] = ACTIONS(4275), - [aux_sym__val_number_decimal_token4] = ACTIONS(4277), - [aux_sym__val_number_token1] = ACTIONS(2888), - [aux_sym__val_number_token2] = ACTIONS(2888), - [aux_sym__val_number_token3] = ACTIONS(2888), - [aux_sym__val_number_token4] = ACTIONS(4279), - [aux_sym__val_number_token5] = ACTIONS(4279), - [aux_sym__val_number_token6] = ACTIONS(4279), - [anon_sym_0b] = ACTIONS(2892), - [anon_sym_0o] = ACTIONS(2894), - [anon_sym_0x] = ACTIONS(2894), - [sym_val_date] = ACTIONS(4281), - [anon_sym_DQUOTE] = ACTIONS(2898), - [sym__str_single_quotes] = ACTIONS(2900), - [sym__str_back_ticks] = ACTIONS(2900), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2904), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4283), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2908), - }, [1297] = { - [sym__val_range] = STATE(7673), - [sym__value] = STATE(6049), - [sym_val_nothing] = STATE(4907), - [sym_val_bool] = STATE(6452), - [sym_val_variable] = STATE(4907), - [sym_val_number] = STATE(4907), - [sym__val_number_decimal] = STATE(5362), - [sym__val_number] = STATE(4940), - [sym_val_duration] = STATE(4907), - [sym_val_filesize] = STATE(4907), - [sym_val_binary] = STATE(4907), - [sym_val_string] = STATE(4907), - [sym__raw_str] = STATE(4492), - [sym__str_double_quotes] = STATE(4492), - [sym_val_interpolated] = STATE(4907), - [sym__inter_single_quotes] = STATE(4952), - [sym__inter_double_quotes] = STATE(4953), - [sym_val_list] = STATE(4907), - [sym_val_record] = STATE(4907), - [sym_val_table] = STATE(4907), - [sym_val_closure] = STATE(4907), - [sym_unquoted] = STATE(6050), - [sym__unquoted_anonymous_prefix] = STATE(7821), + [sym__expr_parenthesized_immediate] = STATE(1650), + [sym__immediate_decimal] = STATE(1633), + [sym_val_variable] = STATE(1650), [sym_comment] = STATE(1297), - [anon_sym_LBRACK] = ACTIONS(4089), - [anon_sym_LPAREN] = ACTIONS(4091), - [anon_sym_DOLLAR] = ACTIONS(4119), - [anon_sym_LBRACE] = ACTIONS(4095), - [anon_sym_DOT_DOT] = ACTIONS(4097), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4099), - [anon_sym_DOT_DOT_LT] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4285), - [anon_sym_true] = ACTIONS(4287), - [anon_sym_false] = ACTIONS(4287), - [aux_sym__val_number_decimal_token1] = ACTIONS(4289), - [aux_sym__val_number_decimal_token2] = ACTIONS(4291), - [aux_sym__val_number_decimal_token3] = ACTIONS(4293), - [aux_sym__val_number_decimal_token4] = ACTIONS(4295), - [aux_sym__val_number_token1] = ACTIONS(3593), - [aux_sym__val_number_token2] = ACTIONS(3593), - [aux_sym__val_number_token3] = ACTIONS(3593), - [aux_sym__val_number_token4] = ACTIONS(4297), - [aux_sym__val_number_token5] = ACTIONS(4297), - [aux_sym__val_number_token6] = ACTIONS(4297), - [anon_sym_0b] = ACTIONS(3597), - [anon_sym_0o] = ACTIONS(3599), - [anon_sym_0x] = ACTIONS(3599), - [sym_val_date] = ACTIONS(4299), - [anon_sym_DQUOTE] = ACTIONS(4009), - [sym__str_single_quotes] = ACTIONS(4011), - [sym__str_back_ticks] = ACTIONS(4011), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4117), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4013), + [ts_builtin_sym_end] = ACTIONS(1603), + [sym__newline] = ACTIONS(1603), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_PIPE] = ACTIONS(1603), + [anon_sym_err_GT_PIPE] = ACTIONS(1603), + [anon_sym_out_GT_PIPE] = ACTIONS(1603), + [anon_sym_e_GT_PIPE] = ACTIONS(1603), + [anon_sym_o_GT_PIPE] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_DOLLAR] = ACTIONS(2997), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_DASH2] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_DOT_DOT] = ACTIONS(1593), + [anon_sym_LPAREN2] = ACTIONS(4063), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1603), + [anon_sym_DOT_DOT_LT] = ACTIONS(1603), + [aux_sym__immediate_decimal_token1] = ACTIONS(4447), + [aux_sym__immediate_decimal_token3] = ACTIONS(4449), + [aux_sym__immediate_decimal_token4] = ACTIONS(4451), + [aux_sym__immediate_decimal_token5] = ACTIONS(4453), + [anon_sym_null] = ACTIONS(1603), + [anon_sym_true] = ACTIONS(1603), + [anon_sym_false] = ACTIONS(1603), + [aux_sym__val_number_decimal_token1] = ACTIONS(1593), + [aux_sym__val_number_decimal_token2] = ACTIONS(1593), + [aux_sym__val_number_decimal_token3] = ACTIONS(1593), + [aux_sym__val_number_decimal_token4] = ACTIONS(1593), + [aux_sym__val_number_token1] = ACTIONS(1603), + [aux_sym__val_number_token2] = ACTIONS(1603), + [aux_sym__val_number_token3] = ACTIONS(1603), + [aux_sym__val_number_token4] = ACTIONS(1603), + [aux_sym__val_number_token5] = ACTIONS(1603), + [aux_sym__val_number_token6] = ACTIONS(1603), + [anon_sym_0b] = ACTIONS(1593), + [anon_sym_0o] = ACTIONS(1593), + [anon_sym_0x] = ACTIONS(1593), + [sym_val_date] = ACTIONS(1603), + [anon_sym_DQUOTE] = ACTIONS(1603), + [sym__str_single_quotes] = ACTIONS(1603), + [sym__str_back_ticks] = ACTIONS(1603), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), + [anon_sym_err_GT] = ACTIONS(1593), + [anon_sym_out_GT] = ACTIONS(1593), + [anon_sym_e_GT] = ACTIONS(1593), + [anon_sym_o_GT] = ACTIONS(1593), + [anon_sym_err_PLUSout_GT] = ACTIONS(1593), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1593), + [anon_sym_o_PLUSe_GT] = ACTIONS(1593), + [anon_sym_e_PLUSo_GT] = ACTIONS(1593), + [anon_sym_err_GT_GT] = ACTIONS(1603), + [anon_sym_out_GT_GT] = ACTIONS(1603), + [anon_sym_e_GT_GT] = ACTIONS(1603), + [anon_sym_o_GT_GT] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1603), + [aux_sym_unquoted_token1] = ACTIONS(1593), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1603), }, [1298] = { - [sym__val_range] = STATE(7673), - [sym__value] = STATE(6061), - [sym_val_nothing] = STATE(4907), - [sym_val_bool] = STATE(6452), - [sym_val_variable] = STATE(4907), - [sym_val_number] = STATE(4907), - [sym__val_number_decimal] = STATE(5362), - [sym__val_number] = STATE(4940), - [sym_val_duration] = STATE(4907), - [sym_val_filesize] = STATE(4907), - [sym_val_binary] = STATE(4907), - [sym_val_string] = STATE(4907), - [sym__raw_str] = STATE(4492), - [sym__str_double_quotes] = STATE(4492), - [sym_val_interpolated] = STATE(4907), - [sym__inter_single_quotes] = STATE(4952), - [sym__inter_double_quotes] = STATE(4953), - [sym_val_list] = STATE(4907), - [sym_val_record] = STATE(4907), - [sym_val_table] = STATE(4907), - [sym_val_closure] = STATE(4907), - [sym_unquoted] = STATE(6065), - [sym__unquoted_anonymous_prefix] = STATE(7821), + [sym__val_range] = STATE(7720), + [sym__value] = STATE(1955), + [sym_val_nothing] = STATE(1876), + [sym_val_bool] = STATE(1846), + [sym_val_variable] = STATE(1876), + [sym_val_number] = STATE(1876), + [sym__val_number_decimal] = STATE(1429), + [sym__val_number] = STATE(1949), + [sym_val_duration] = STATE(1876), + [sym_val_filesize] = STATE(1876), + [sym_val_binary] = STATE(1876), + [sym_val_string] = STATE(1876), + [sym__raw_str] = STATE(1965), + [sym__str_double_quotes] = STATE(1965), + [sym_val_interpolated] = STATE(1876), + [sym__inter_single_quotes] = STATE(1935), + [sym__inter_double_quotes] = STATE(1936), + [sym_val_list] = STATE(1876), + [sym_val_record] = STATE(1876), + [sym_val_table] = STATE(1876), + [sym_val_closure] = STATE(1876), + [sym_unquoted] = STATE(1956), + [sym__unquoted_anonymous_prefix] = STATE(7785), [sym_comment] = STATE(1298), - [anon_sym_LBRACK] = ACTIONS(4089), - [anon_sym_LPAREN] = ACTIONS(4091), - [anon_sym_DOLLAR] = ACTIONS(4119), - [anon_sym_LBRACE] = ACTIONS(4095), - [anon_sym_DOT_DOT] = ACTIONS(4097), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4099), - [anon_sym_DOT_DOT_LT] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4285), - [anon_sym_true] = ACTIONS(4287), - [anon_sym_false] = ACTIONS(4287), - [aux_sym__val_number_decimal_token1] = ACTIONS(4289), - [aux_sym__val_number_decimal_token2] = ACTIONS(4291), - [aux_sym__val_number_decimal_token3] = ACTIONS(4293), - [aux_sym__val_number_decimal_token4] = ACTIONS(4295), - [aux_sym__val_number_token1] = ACTIONS(3593), - [aux_sym__val_number_token2] = ACTIONS(3593), - [aux_sym__val_number_token3] = ACTIONS(3593), - [aux_sym__val_number_token4] = ACTIONS(4297), - [aux_sym__val_number_token5] = ACTIONS(4297), - [aux_sym__val_number_token6] = ACTIONS(4297), - [anon_sym_0b] = ACTIONS(3597), - [anon_sym_0o] = ACTIONS(3599), - [anon_sym_0x] = ACTIONS(3599), - [sym_val_date] = ACTIONS(4299), - [anon_sym_DQUOTE] = ACTIONS(4009), - [sym__str_single_quotes] = ACTIONS(4011), - [sym__str_back_ticks] = ACTIONS(4011), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4117), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(4417), + [anon_sym_DOLLAR] = ACTIONS(4419), + [anon_sym_LBRACE] = ACTIONS(3003), + [anon_sym_DOT_DOT] = ACTIONS(4421), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4423), + [anon_sym_DOT_DOT_LT] = ACTIONS(4423), + [anon_sym_null] = ACTIONS(4425), + [anon_sym_true] = ACTIONS(4427), + [anon_sym_false] = ACTIONS(4427), + [aux_sym__val_number_decimal_token1] = ACTIONS(4429), + [aux_sym__val_number_decimal_token2] = ACTIONS(4431), + [aux_sym__val_number_decimal_token3] = ACTIONS(4433), + [aux_sym__val_number_decimal_token4] = ACTIONS(4435), + [aux_sym__val_number_token1] = ACTIONS(3021), + [aux_sym__val_number_token2] = ACTIONS(3021), + [aux_sym__val_number_token3] = ACTIONS(3021), + [aux_sym__val_number_token4] = ACTIONS(4437), + [aux_sym__val_number_token5] = ACTIONS(4437), + [aux_sym__val_number_token6] = ACTIONS(4437), + [anon_sym_0b] = ACTIONS(3025), + [anon_sym_0o] = ACTIONS(3027), + [anon_sym_0x] = ACTIONS(3027), + [sym_val_date] = ACTIONS(4439), + [anon_sym_DQUOTE] = ACTIONS(3031), + [sym__str_single_quotes] = ACTIONS(3033), + [sym__str_back_ticks] = ACTIONS(3033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3035), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4441), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3041), }, [1299] = { - [sym__val_range] = STATE(7817), - [sym__value] = STATE(4786), - [sym_val_nothing] = STATE(4804), - [sym_val_bool] = STATE(4581), - [sym_val_variable] = STATE(4804), - [sym_val_number] = STATE(4804), - [sym__val_number_decimal] = STATE(4113), - [sym__val_number] = STATE(4871), - [sym_val_duration] = STATE(4804), - [sym_val_filesize] = STATE(4804), - [sym_val_binary] = STATE(4804), - [sym_val_string] = STATE(4804), - [sym__raw_str] = STATE(4517), - [sym__str_double_quotes] = STATE(4517), - [sym_val_interpolated] = STATE(4804), - [sym__inter_single_quotes] = STATE(4807), - [sym__inter_double_quotes] = STATE(4808), - [sym_val_list] = STATE(4804), - [sym_val_record] = STATE(4804), - [sym_val_table] = STATE(4804), - [sym_val_closure] = STATE(4804), - [sym_unquoted] = STATE(4787), - [sym__unquoted_anonymous_prefix] = STATE(7666), + [sym__val_range] = STATE(7906), + [sym__value] = STATE(6117), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(7502), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(5707), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(4332), + [sym__str_double_quotes] = STATE(4332), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(6143), + [sym__unquoted_anonymous_prefix] = STATE(7913), [sym_comment] = STATE(1299), - [anon_sym_LBRACK] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_DOLLAR] = ACTIONS(4305), - [anon_sym_LBRACE] = ACTIONS(4307), - [anon_sym_DOT_DOT] = ACTIONS(4309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4311), - [anon_sym_DOT_DOT_LT] = ACTIONS(4311), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_true] = ACTIONS(4315), - [anon_sym_false] = ACTIONS(4315), - [aux_sym__val_number_decimal_token1] = ACTIONS(2032), - [aux_sym__val_number_decimal_token2] = ACTIONS(4317), - [aux_sym__val_number_decimal_token3] = ACTIONS(4319), - [aux_sym__val_number_decimal_token4] = ACTIONS(4321), - [aux_sym__val_number_token1] = ACTIONS(4323), - [aux_sym__val_number_token2] = ACTIONS(4323), - [aux_sym__val_number_token3] = ACTIONS(4323), - [aux_sym__val_number_token4] = ACTIONS(4325), - [aux_sym__val_number_token5] = ACTIONS(4325), - [aux_sym__val_number_token6] = ACTIONS(4325), - [anon_sym_0b] = ACTIONS(2042), - [anon_sym_0o] = ACTIONS(2044), - [anon_sym_0x] = ACTIONS(2044), - [sym_val_date] = ACTIONS(4327), - [anon_sym_DQUOTE] = ACTIONS(4329), - [sym__str_single_quotes] = ACTIONS(4331), - [sym__str_back_ticks] = ACTIONS(4331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4333), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4335), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(2060), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2062), + [anon_sym_LBRACK] = ACTIONS(3975), + [anon_sym_LPAREN] = ACTIONS(4327), + [anon_sym_DOLLAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(3979), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4333), + [anon_sym_DOT_DOT_LT] = ACTIONS(4333), + [anon_sym_null] = ACTIONS(3985), + [anon_sym_true] = ACTIONS(3987), + [anon_sym_false] = ACTIONS(3987), + [aux_sym__val_number_decimal_token1] = ACTIONS(3989), + [aux_sym__val_number_decimal_token2] = ACTIONS(3991), + [aux_sym__val_number_decimal_token3] = ACTIONS(3993), + [aux_sym__val_number_decimal_token4] = ACTIONS(3995), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3997), + [aux_sym__val_number_token5] = ACTIONS(3997), + [aux_sym__val_number_token6] = ACTIONS(3997), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3999), + [anon_sym_DQUOTE] = ACTIONS(4001), + [sym__str_single_quotes] = ACTIONS(4003), + [sym__str_back_ticks] = ACTIONS(4003), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4005), }, [1300] = { - [sym__val_range] = STATE(7673), - [sym__value] = STATE(6063), - [sym_val_nothing] = STATE(4907), - [sym_val_bool] = STATE(6452), - [sym_val_variable] = STATE(4907), - [sym_val_number] = STATE(4907), - [sym__val_number_decimal] = STATE(5362), - [sym__val_number] = STATE(4940), - [sym_val_duration] = STATE(4907), - [sym_val_filesize] = STATE(4907), - [sym_val_binary] = STATE(4907), - [sym_val_string] = STATE(4907), - [sym__raw_str] = STATE(4492), - [sym__str_double_quotes] = STATE(4492), - [sym_val_interpolated] = STATE(4907), - [sym__inter_single_quotes] = STATE(4952), - [sym__inter_double_quotes] = STATE(4953), - [sym_val_list] = STATE(4907), - [sym_val_record] = STATE(4907), - [sym_val_table] = STATE(4907), - [sym_val_closure] = STATE(4907), - [sym_unquoted] = STATE(6064), - [sym__unquoted_anonymous_prefix] = STATE(7821), + [sym__val_range] = STATE(7720), + [sym__value] = STATE(1894), + [sym_val_nothing] = STATE(1876), + [sym_val_bool] = STATE(1846), + [sym_val_variable] = STATE(1876), + [sym_val_number] = STATE(1876), + [sym__val_number_decimal] = STATE(1429), + [sym__val_number] = STATE(1949), + [sym_val_duration] = STATE(1876), + [sym_val_filesize] = STATE(1876), + [sym_val_binary] = STATE(1876), + [sym_val_string] = STATE(1876), + [sym__raw_str] = STATE(1965), + [sym__str_double_quotes] = STATE(1965), + [sym_val_interpolated] = STATE(1876), + [sym__inter_single_quotes] = STATE(1935), + [sym__inter_double_quotes] = STATE(1936), + [sym_val_list] = STATE(1876), + [sym_val_record] = STATE(1876), + [sym_val_table] = STATE(1876), + [sym_val_closure] = STATE(1876), + [sym_unquoted] = STATE(1895), + [sym__unquoted_anonymous_prefix] = STATE(7785), [sym_comment] = STATE(1300), - [anon_sym_LBRACK] = ACTIONS(4089), - [anon_sym_LPAREN] = ACTIONS(4091), - [anon_sym_DOLLAR] = ACTIONS(4119), - [anon_sym_LBRACE] = ACTIONS(4095), - [anon_sym_DOT_DOT] = ACTIONS(4097), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4099), - [anon_sym_DOT_DOT_LT] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4285), - [anon_sym_true] = ACTIONS(4287), - [anon_sym_false] = ACTIONS(4287), - [aux_sym__val_number_decimal_token1] = ACTIONS(4289), - [aux_sym__val_number_decimal_token2] = ACTIONS(4291), - [aux_sym__val_number_decimal_token3] = ACTIONS(4293), - [aux_sym__val_number_decimal_token4] = ACTIONS(4295), - [aux_sym__val_number_token1] = ACTIONS(3593), - [aux_sym__val_number_token2] = ACTIONS(3593), - [aux_sym__val_number_token3] = ACTIONS(3593), - [aux_sym__val_number_token4] = ACTIONS(4297), - [aux_sym__val_number_token5] = ACTIONS(4297), - [aux_sym__val_number_token6] = ACTIONS(4297), - [anon_sym_0b] = ACTIONS(3597), - [anon_sym_0o] = ACTIONS(3599), - [anon_sym_0x] = ACTIONS(3599), - [sym_val_date] = ACTIONS(4299), - [anon_sym_DQUOTE] = ACTIONS(4009), - [sym__str_single_quotes] = ACTIONS(4011), - [sym__str_back_ticks] = ACTIONS(4011), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4117), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(4417), + [anon_sym_DOLLAR] = ACTIONS(4419), + [anon_sym_LBRACE] = ACTIONS(3003), + [anon_sym_DOT_DOT] = ACTIONS(4421), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4423), + [anon_sym_DOT_DOT_LT] = ACTIONS(4423), + [anon_sym_null] = ACTIONS(4425), + [anon_sym_true] = ACTIONS(4427), + [anon_sym_false] = ACTIONS(4427), + [aux_sym__val_number_decimal_token1] = ACTIONS(4429), + [aux_sym__val_number_decimal_token2] = ACTIONS(4431), + [aux_sym__val_number_decimal_token3] = ACTIONS(4433), + [aux_sym__val_number_decimal_token4] = ACTIONS(4435), + [aux_sym__val_number_token1] = ACTIONS(3021), + [aux_sym__val_number_token2] = ACTIONS(3021), + [aux_sym__val_number_token3] = ACTIONS(3021), + [aux_sym__val_number_token4] = ACTIONS(4437), + [aux_sym__val_number_token5] = ACTIONS(4437), + [aux_sym__val_number_token6] = ACTIONS(4437), + [anon_sym_0b] = ACTIONS(3025), + [anon_sym_0o] = ACTIONS(3027), + [anon_sym_0x] = ACTIONS(3027), + [sym_val_date] = ACTIONS(4439), + [anon_sym_DQUOTE] = ACTIONS(3031), + [sym__str_single_quotes] = ACTIONS(3033), + [sym__str_back_ticks] = ACTIONS(3033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3035), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4441), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3041), }, [1301] = { - [sym__val_range] = STATE(7817), - [sym__value] = STATE(4791), - [sym_val_nothing] = STATE(4804), - [sym_val_bool] = STATE(4581), - [sym_val_variable] = STATE(4804), - [sym_val_number] = STATE(4804), - [sym__val_number_decimal] = STATE(4113), - [sym__val_number] = STATE(4871), - [sym_val_duration] = STATE(4804), - [sym_val_filesize] = STATE(4804), - [sym_val_binary] = STATE(4804), - [sym_val_string] = STATE(4804), - [sym__raw_str] = STATE(4517), - [sym__str_double_quotes] = STATE(4517), - [sym_val_interpolated] = STATE(4804), - [sym__inter_single_quotes] = STATE(4807), - [sym__inter_double_quotes] = STATE(4808), - [sym_val_list] = STATE(4804), - [sym_val_record] = STATE(4804), - [sym_val_table] = STATE(4804), - [sym_val_closure] = STATE(4804), - [sym_unquoted] = STATE(4792), - [sym__unquoted_anonymous_prefix] = STATE(7666), + [sym__val_range] = STATE(7739), + [sym__value] = STATE(6217), + [sym_val_nothing] = STATE(5002), + [sym_val_bool] = STATE(6436), + [sym_val_variable] = STATE(5002), + [sym_val_number] = STATE(5002), + [sym__val_number_decimal] = STATE(5470), + [sym__val_number] = STATE(4893), + [sym_val_duration] = STATE(5002), + [sym_val_filesize] = STATE(5002), + [sym_val_binary] = STATE(5002), + [sym_val_string] = STATE(5002), + [sym__raw_str] = STATE(4332), + [sym__str_double_quotes] = STATE(4332), + [sym_val_interpolated] = STATE(5002), + [sym__inter_single_quotes] = STATE(4834), + [sym__inter_double_quotes] = STATE(4836), + [sym_val_list] = STATE(5002), + [sym_val_record] = STATE(5002), + [sym_val_table] = STATE(5002), + [sym_val_closure] = STATE(5002), + [sym_unquoted] = STATE(6239), + [sym__unquoted_anonymous_prefix] = STATE(7847), [sym_comment] = STATE(1301), - [anon_sym_LBRACK] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_DOLLAR] = ACTIONS(4305), - [anon_sym_LBRACE] = ACTIONS(4307), - [anon_sym_DOT_DOT] = ACTIONS(4309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4311), - [anon_sym_DOT_DOT_LT] = ACTIONS(4311), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_true] = ACTIONS(4315), - [anon_sym_false] = ACTIONS(4315), - [aux_sym__val_number_decimal_token1] = ACTIONS(2032), - [aux_sym__val_number_decimal_token2] = ACTIONS(4317), - [aux_sym__val_number_decimal_token3] = ACTIONS(4319), - [aux_sym__val_number_decimal_token4] = ACTIONS(4321), - [aux_sym__val_number_token1] = ACTIONS(4323), - [aux_sym__val_number_token2] = ACTIONS(4323), - [aux_sym__val_number_token3] = ACTIONS(4323), - [aux_sym__val_number_token4] = ACTIONS(4325), - [aux_sym__val_number_token5] = ACTIONS(4325), - [aux_sym__val_number_token6] = ACTIONS(4325), - [anon_sym_0b] = ACTIONS(2042), - [anon_sym_0o] = ACTIONS(2044), - [anon_sym_0x] = ACTIONS(2044), - [sym_val_date] = ACTIONS(4327), - [anon_sym_DQUOTE] = ACTIONS(4329), - [sym__str_single_quotes] = ACTIONS(4331), - [sym__str_back_ticks] = ACTIONS(4331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4333), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4335), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(2060), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2062), + [anon_sym_LBRACK] = ACTIONS(4177), + [anon_sym_LPAREN] = ACTIONS(4179), + [anon_sym_DOLLAR] = ACTIONS(4181), + [anon_sym_LBRACE] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), + [anon_sym_DOT_DOT_LT] = ACTIONS(4187), + [anon_sym_null] = ACTIONS(4457), + [anon_sym_true] = ACTIONS(4459), + [anon_sym_false] = ACTIONS(4459), + [aux_sym__val_number_decimal_token1] = ACTIONS(4461), + [aux_sym__val_number_decimal_token2] = ACTIONS(4463), + [aux_sym__val_number_decimal_token3] = ACTIONS(4465), + [aux_sym__val_number_decimal_token4] = ACTIONS(4467), + [aux_sym__val_number_token1] = ACTIONS(3647), + [aux_sym__val_number_token2] = ACTIONS(3647), + [aux_sym__val_number_token3] = ACTIONS(3647), + [aux_sym__val_number_token4] = ACTIONS(4469), + [aux_sym__val_number_token5] = ACTIONS(4469), + [aux_sym__val_number_token6] = ACTIONS(4469), + [anon_sym_0b] = ACTIONS(3651), + [anon_sym_0o] = ACTIONS(3653), + [anon_sym_0x] = ACTIONS(3653), + [sym_val_date] = ACTIONS(4471), + [anon_sym_DQUOTE] = ACTIONS(4001), + [sym__str_single_quotes] = ACTIONS(4003), + [sym__str_back_ticks] = ACTIONS(4003), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4205), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4005), }, [1302] = { - [sym__val_range] = STATE(7817), - [sym__value] = STATE(4834), - [sym_val_nothing] = STATE(4804), - [sym_val_bool] = STATE(4581), - [sym_val_variable] = STATE(4804), - [sym_val_number] = STATE(4804), - [sym__val_number_decimal] = STATE(4113), - [sym__val_number] = STATE(4871), - [sym_val_duration] = STATE(4804), - [sym_val_filesize] = STATE(4804), - [sym_val_binary] = STATE(4804), - [sym_val_string] = STATE(4804), - [sym__raw_str] = STATE(4517), - [sym__str_double_quotes] = STATE(4517), - [sym_val_interpolated] = STATE(4804), - [sym__inter_single_quotes] = STATE(4807), - [sym__inter_double_quotes] = STATE(4808), - [sym_val_list] = STATE(4804), - [sym_val_record] = STATE(4804), - [sym_val_table] = STATE(4804), - [sym_val_closure] = STATE(4804), - [sym_unquoted] = STATE(4835), - [sym__unquoted_anonymous_prefix] = STATE(7666), + [sym__val_range] = STATE(7739), + [sym__value] = STATE(6117), + [sym_val_nothing] = STATE(5002), + [sym_val_bool] = STATE(5962), + [sym_val_variable] = STATE(5002), + [sym_val_number] = STATE(5002), + [sym__val_number_decimal] = STATE(5270), + [sym__val_number] = STATE(4893), + [sym_val_duration] = STATE(5002), + [sym_val_filesize] = STATE(5002), + [sym_val_binary] = STATE(5002), + [sym_val_string] = STATE(5002), + [sym__raw_str] = STATE(4332), + [sym__str_double_quotes] = STATE(4332), + [sym_val_interpolated] = STATE(5002), + [sym__inter_single_quotes] = STATE(4834), + [sym__inter_double_quotes] = STATE(4836), + [sym_val_list] = STATE(5002), + [sym_val_record] = STATE(5002), + [sym_val_table] = STATE(5002), + [sym_val_closure] = STATE(5002), + [sym_unquoted] = STATE(6143), + [sym__unquoted_anonymous_prefix] = STATE(7847), [sym_comment] = STATE(1302), - [anon_sym_LBRACK] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_DOLLAR] = ACTIONS(4305), - [anon_sym_LBRACE] = ACTIONS(4307), - [anon_sym_DOT_DOT] = ACTIONS(4309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4311), - [anon_sym_DOT_DOT_LT] = ACTIONS(4311), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_true] = ACTIONS(4315), - [anon_sym_false] = ACTIONS(4315), - [aux_sym__val_number_decimal_token1] = ACTIONS(2032), - [aux_sym__val_number_decimal_token2] = ACTIONS(4317), - [aux_sym__val_number_decimal_token3] = ACTIONS(4319), - [aux_sym__val_number_decimal_token4] = ACTIONS(4321), - [aux_sym__val_number_token1] = ACTIONS(4323), - [aux_sym__val_number_token2] = ACTIONS(4323), - [aux_sym__val_number_token3] = ACTIONS(4323), - [aux_sym__val_number_token4] = ACTIONS(4325), - [aux_sym__val_number_token5] = ACTIONS(4325), - [aux_sym__val_number_token6] = ACTIONS(4325), - [anon_sym_0b] = ACTIONS(2042), - [anon_sym_0o] = ACTIONS(2044), - [anon_sym_0x] = ACTIONS(2044), - [sym_val_date] = ACTIONS(4327), - [anon_sym_DQUOTE] = ACTIONS(4329), - [sym__str_single_quotes] = ACTIONS(4331), - [sym__str_back_ticks] = ACTIONS(4331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4333), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4335), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(2060), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2062), + [anon_sym_LBRACK] = ACTIONS(4177), + [anon_sym_LPAREN] = ACTIONS(4179), + [anon_sym_DOLLAR] = ACTIONS(4181), + [anon_sym_LBRACE] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), + [anon_sym_DOT_DOT_LT] = ACTIONS(4187), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_true] = ACTIONS(4361), + [anon_sym_false] = ACTIONS(4361), + [aux_sym__val_number_decimal_token1] = ACTIONS(4473), + [aux_sym__val_number_decimal_token2] = ACTIONS(4475), + [aux_sym__val_number_decimal_token3] = ACTIONS(4477), + [aux_sym__val_number_decimal_token4] = ACTIONS(4479), + [aux_sym__val_number_token1] = ACTIONS(3647), + [aux_sym__val_number_token2] = ACTIONS(3647), + [aux_sym__val_number_token3] = ACTIONS(3647), + [aux_sym__val_number_token4] = ACTIONS(4481), + [aux_sym__val_number_token5] = ACTIONS(4481), + [aux_sym__val_number_token6] = ACTIONS(4481), + [anon_sym_0b] = ACTIONS(3651), + [anon_sym_0o] = ACTIONS(3653), + [anon_sym_0x] = ACTIONS(3653), + [sym_val_date] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(4001), + [sym__str_single_quotes] = ACTIONS(4003), + [sym__str_back_ticks] = ACTIONS(4003), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4205), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4005), }, [1303] = { - [sym__val_range] = STATE(7658), - [sym__value] = STATE(4750), - [sym_val_nothing] = STATE(4616), - [sym_val_bool] = STATE(7000), - [sym_val_variable] = STATE(4616), - [sym_val_number] = STATE(4616), - [sym__val_number_decimal] = STATE(5569), - [sym__val_number] = STATE(4634), - [sym_val_duration] = STATE(4616), - [sym_val_filesize] = STATE(4616), - [sym_val_binary] = STATE(4616), - [sym_val_string] = STATE(4616), - [sym__raw_str] = STATE(4465), - [sym__str_double_quotes] = STATE(4465), - [sym_val_interpolated] = STATE(4616), - [sym__inter_single_quotes] = STATE(4689), - [sym__inter_double_quotes] = STATE(4701), - [sym_val_list] = STATE(4616), - [sym_val_record] = STATE(4616), - [sym_val_table] = STATE(4616), - [sym_val_closure] = STATE(4616), - [sym_unquoted] = STATE(4751), - [sym__unquoted_anonymous_prefix] = STATE(7677), + [sym__val_range] = STATE(7720), + [sym__value] = STATE(1909), + [sym_val_nothing] = STATE(1876), + [sym_val_bool] = STATE(1846), + [sym_val_variable] = STATE(1876), + [sym_val_number] = STATE(1876), + [sym__val_number_decimal] = STATE(1429), + [sym__val_number] = STATE(1949), + [sym_val_duration] = STATE(1876), + [sym_val_filesize] = STATE(1876), + [sym_val_binary] = STATE(1876), + [sym_val_string] = STATE(1876), + [sym__raw_str] = STATE(1965), + [sym__str_double_quotes] = STATE(1965), + [sym_val_interpolated] = STATE(1876), + [sym__inter_single_quotes] = STATE(1935), + [sym__inter_double_quotes] = STATE(1936), + [sym_val_list] = STATE(1876), + [sym_val_record] = STATE(1876), + [sym_val_table] = STATE(1876), + [sym_val_closure] = STATE(1876), + [sym_unquoted] = STATE(1910), + [sym__unquoted_anonymous_prefix] = STATE(7785), [sym_comment] = STATE(1303), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym_DOLLAR] = ACTIONS(4341), - [anon_sym_LBRACE] = ACTIONS(4343), - [anon_sym_DOT_DOT] = ACTIONS(4345), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4347), - [anon_sym_DOT_DOT_LT] = ACTIONS(4347), - [anon_sym_null] = ACTIONS(4349), - [anon_sym_true] = ACTIONS(4351), - [anon_sym_false] = ACTIONS(4351), - [aux_sym__val_number_decimal_token1] = ACTIONS(4353), - [aux_sym__val_number_decimal_token2] = ACTIONS(4355), - [aux_sym__val_number_decimal_token3] = ACTIONS(4357), - [aux_sym__val_number_decimal_token4] = ACTIONS(4359), - [aux_sym__val_number_token1] = ACTIONS(4361), - [aux_sym__val_number_token2] = ACTIONS(4361), - [aux_sym__val_number_token3] = ACTIONS(4361), - [aux_sym__val_number_token4] = ACTIONS(4363), - [aux_sym__val_number_token5] = ACTIONS(4363), - [aux_sym__val_number_token6] = ACTIONS(4363), - [anon_sym_0b] = ACTIONS(1840), - [anon_sym_0o] = ACTIONS(1842), - [anon_sym_0x] = ACTIONS(1842), - [sym_val_date] = ACTIONS(4365), - [anon_sym_DQUOTE] = ACTIONS(4367), - [sym__str_single_quotes] = ACTIONS(4369), - [sym__str_back_ticks] = ACTIONS(4369), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4371), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4373), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(1858), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(4417), + [anon_sym_DOLLAR] = ACTIONS(4419), + [anon_sym_LBRACE] = ACTIONS(3003), + [anon_sym_DOT_DOT] = ACTIONS(4421), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4423), + [anon_sym_DOT_DOT_LT] = ACTIONS(4423), + [anon_sym_null] = ACTIONS(4425), + [anon_sym_true] = ACTIONS(4427), + [anon_sym_false] = ACTIONS(4427), + [aux_sym__val_number_decimal_token1] = ACTIONS(4429), + [aux_sym__val_number_decimal_token2] = ACTIONS(4431), + [aux_sym__val_number_decimal_token3] = ACTIONS(4433), + [aux_sym__val_number_decimal_token4] = ACTIONS(4435), + [aux_sym__val_number_token1] = ACTIONS(3021), + [aux_sym__val_number_token2] = ACTIONS(3021), + [aux_sym__val_number_token3] = ACTIONS(3021), + [aux_sym__val_number_token4] = ACTIONS(4437), + [aux_sym__val_number_token5] = ACTIONS(4437), + [aux_sym__val_number_token6] = ACTIONS(4437), + [anon_sym_0b] = ACTIONS(3025), + [anon_sym_0o] = ACTIONS(3027), + [anon_sym_0x] = ACTIONS(3027), + [sym_val_date] = ACTIONS(4439), + [anon_sym_DQUOTE] = ACTIONS(3031), + [sym__str_single_quotes] = ACTIONS(3033), + [sym__str_back_ticks] = ACTIONS(3033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3035), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3037), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4441), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3041), }, [1304] = { - [sym__val_range] = STATE(7817), - [sym__value] = STATE(4841), - [sym_val_nothing] = STATE(4804), - [sym_val_bool] = STATE(4581), - [sym_val_variable] = STATE(4804), - [sym_val_number] = STATE(4804), - [sym__val_number_decimal] = STATE(4113), - [sym__val_number] = STATE(4871), - [sym_val_duration] = STATE(4804), - [sym_val_filesize] = STATE(4804), - [sym_val_binary] = STATE(4804), - [sym_val_string] = STATE(4804), - [sym__raw_str] = STATE(4517), - [sym__str_double_quotes] = STATE(4517), - [sym_val_interpolated] = STATE(4804), - [sym__inter_single_quotes] = STATE(4807), - [sym__inter_double_quotes] = STATE(4808), - [sym_val_list] = STATE(4804), - [sym_val_record] = STATE(4804), - [sym_val_table] = STATE(4804), - [sym_val_closure] = STATE(4804), - [sym_unquoted] = STATE(4842), - [sym__unquoted_anonymous_prefix] = STATE(7666), + [sym__val_range] = STATE(7739), + [sym__value] = STATE(6162), + [sym_val_nothing] = STATE(5002), + [sym_val_bool] = STATE(7278), + [sym_val_variable] = STATE(5002), + [sym_val_number] = STATE(5002), + [sym__val_number_decimal] = STATE(5602), + [sym__val_number] = STATE(4893), + [sym_val_duration] = STATE(5002), + [sym_val_filesize] = STATE(5002), + [sym_val_binary] = STATE(5002), + [sym_val_string] = STATE(5002), + [sym__raw_str] = STATE(4332), + [sym__str_double_quotes] = STATE(4332), + [sym_val_interpolated] = STATE(5002), + [sym__inter_single_quotes] = STATE(4834), + [sym__inter_double_quotes] = STATE(4836), + [sym_val_list] = STATE(5002), + [sym_val_record] = STATE(5002), + [sym_val_table] = STATE(5002), + [sym_val_closure] = STATE(5002), + [sym_unquoted] = STATE(6182), + [sym__unquoted_anonymous_prefix] = STATE(7847), [sym_comment] = STATE(1304), - [anon_sym_LBRACK] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym_DOLLAR] = ACTIONS(4305), - [anon_sym_LBRACE] = ACTIONS(4307), - [anon_sym_DOT_DOT] = ACTIONS(4309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4311), - [anon_sym_DOT_DOT_LT] = ACTIONS(4311), - [anon_sym_null] = ACTIONS(4313), - [anon_sym_true] = ACTIONS(4315), - [anon_sym_false] = ACTIONS(4315), - [aux_sym__val_number_decimal_token1] = ACTIONS(2032), - [aux_sym__val_number_decimal_token2] = ACTIONS(4317), - [aux_sym__val_number_decimal_token3] = ACTIONS(4319), - [aux_sym__val_number_decimal_token4] = ACTIONS(4321), - [aux_sym__val_number_token1] = ACTIONS(4323), - [aux_sym__val_number_token2] = ACTIONS(4323), - [aux_sym__val_number_token3] = ACTIONS(4323), - [aux_sym__val_number_token4] = ACTIONS(4325), - [aux_sym__val_number_token5] = ACTIONS(4325), - [aux_sym__val_number_token6] = ACTIONS(4325), - [anon_sym_0b] = ACTIONS(2042), - [anon_sym_0o] = ACTIONS(2044), - [anon_sym_0x] = ACTIONS(2044), - [sym_val_date] = ACTIONS(4327), - [anon_sym_DQUOTE] = ACTIONS(4329), - [sym__str_single_quotes] = ACTIONS(4331), - [sym__str_back_ticks] = ACTIONS(4331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4333), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4335), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(2060), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2062), + [anon_sym_LBRACK] = ACTIONS(4177), + [anon_sym_LPAREN] = ACTIONS(4179), + [anon_sym_DOLLAR] = ACTIONS(4181), + [anon_sym_LBRACE] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), + [anon_sym_DOT_DOT_LT] = ACTIONS(4187), + [anon_sym_null] = ACTIONS(4189), + [anon_sym_true] = ACTIONS(4191), + [anon_sym_false] = ACTIONS(4191), + [aux_sym__val_number_decimal_token1] = ACTIONS(4193), + [aux_sym__val_number_decimal_token2] = ACTIONS(4195), + [aux_sym__val_number_decimal_token3] = ACTIONS(4197), + [aux_sym__val_number_decimal_token4] = ACTIONS(4199), + [aux_sym__val_number_token1] = ACTIONS(3647), + [aux_sym__val_number_token2] = ACTIONS(3647), + [aux_sym__val_number_token3] = ACTIONS(3647), + [aux_sym__val_number_token4] = ACTIONS(4201), + [aux_sym__val_number_token5] = ACTIONS(4201), + [aux_sym__val_number_token6] = ACTIONS(4201), + [anon_sym_0b] = ACTIONS(3651), + [anon_sym_0o] = ACTIONS(3653), + [anon_sym_0x] = ACTIONS(3653), + [sym_val_date] = ACTIONS(4203), + [anon_sym_DQUOTE] = ACTIONS(4001), + [sym__str_single_quotes] = ACTIONS(4003), + [sym__str_back_ticks] = ACTIONS(4003), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4205), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4005), }, [1305] = { - [sym__val_range] = STATE(7673), - [sym__value] = STATE(6061), - [sym_val_nothing] = STATE(4907), - [sym_val_bool] = STATE(7042), - [sym_val_variable] = STATE(4907), - [sym_val_number] = STATE(4907), - [sym__val_number_decimal] = STATE(5550), - [sym__val_number] = STATE(4940), - [sym_val_duration] = STATE(4907), - [sym_val_filesize] = STATE(4907), - [sym_val_binary] = STATE(4907), - [sym_val_string] = STATE(4907), - [sym__raw_str] = STATE(4492), - [sym__str_double_quotes] = STATE(4492), - [sym_val_interpolated] = STATE(4907), - [sym__inter_single_quotes] = STATE(4952), - [sym__inter_double_quotes] = STATE(4953), - [sym_val_list] = STATE(4907), - [sym_val_record] = STATE(4907), - [sym_val_table] = STATE(4907), - [sym_val_closure] = STATE(4907), - [sym_unquoted] = STATE(6065), - [sym__unquoted_anonymous_prefix] = STATE(7821), + [sym__val_range] = STATE(8054), + [sym__value] = STATE(4684), + [sym_val_nothing] = STATE(4729), + [sym_val_bool] = STATE(6971), + [sym_val_variable] = STATE(4729), + [sym_val_number] = STATE(4729), + [sym__val_number_decimal] = STATE(5511), + [sym__val_number] = STATE(4716), + [sym_val_duration] = STATE(4729), + [sym_val_filesize] = STATE(4729), + [sym_val_binary] = STATE(4729), + [sym_val_string] = STATE(4729), + [sym__raw_str] = STATE(4371), + [sym__str_double_quotes] = STATE(4371), + [sym_val_interpolated] = STATE(4729), + [sym__inter_single_quotes] = STATE(4731), + [sym__inter_double_quotes] = STATE(4732), + [sym_val_list] = STATE(4729), + [sym_val_record] = STATE(4729), + [sym_val_table] = STATE(4729), + [sym_val_closure] = STATE(4729), + [sym_unquoted] = STATE(4685), + [sym__unquoted_anonymous_prefix] = STATE(7757), [sym_comment] = STATE(1305), - [anon_sym_LBRACK] = ACTIONS(4089), - [anon_sym_LPAREN] = ACTIONS(4091), - [anon_sym_DOLLAR] = ACTIONS(4119), - [anon_sym_LBRACE] = ACTIONS(4095), - [anon_sym_DOT_DOT] = ACTIONS(4097), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4099), - [anon_sym_DOT_DOT_LT] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4121), - [anon_sym_true] = ACTIONS(4123), - [anon_sym_false] = ACTIONS(4123), - [aux_sym__val_number_decimal_token1] = ACTIONS(4125), - [aux_sym__val_number_decimal_token2] = ACTIONS(4127), - [aux_sym__val_number_decimal_token3] = ACTIONS(4129), - [aux_sym__val_number_decimal_token4] = ACTIONS(4131), - [aux_sym__val_number_token1] = ACTIONS(3593), - [aux_sym__val_number_token2] = ACTIONS(3593), - [aux_sym__val_number_token3] = ACTIONS(3593), - [aux_sym__val_number_token4] = ACTIONS(4133), - [aux_sym__val_number_token5] = ACTIONS(4133), - [aux_sym__val_number_token6] = ACTIONS(4133), - [anon_sym_0b] = ACTIONS(3597), - [anon_sym_0o] = ACTIONS(3599), - [anon_sym_0x] = ACTIONS(3599), - [sym_val_date] = ACTIONS(4135), - [anon_sym_DQUOTE] = ACTIONS(4009), - [sym__str_single_quotes] = ACTIONS(4011), - [sym__str_back_ticks] = ACTIONS(4011), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4117), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4121), + [anon_sym_LPAREN] = ACTIONS(4123), + [anon_sym_DOLLAR] = ACTIONS(4125), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_DOT_DOT] = ACTIONS(4129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4131), + [anon_sym_DOT_DOT_LT] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4157), + [anon_sym_true] = ACTIONS(4159), + [anon_sym_false] = ACTIONS(4159), + [aux_sym__val_number_decimal_token1] = ACTIONS(4161), + [aux_sym__val_number_decimal_token2] = ACTIONS(4163), + [aux_sym__val_number_decimal_token3] = ACTIONS(4165), + [aux_sym__val_number_decimal_token4] = ACTIONS(4167), + [aux_sym__val_number_token1] = ACTIONS(4143), + [aux_sym__val_number_token2] = ACTIONS(4143), + [aux_sym__val_number_token3] = ACTIONS(4143), + [aux_sym__val_number_token4] = ACTIONS(4169), + [aux_sym__val_number_token5] = ACTIONS(4169), + [aux_sym__val_number_token6] = ACTIONS(4169), + [anon_sym_0b] = ACTIONS(1990), + [anon_sym_0o] = ACTIONS(1992), + [anon_sym_0x] = ACTIONS(1992), + [sym_val_date] = ACTIONS(4171), + [anon_sym_DQUOTE] = ACTIONS(4149), + [sym__str_single_quotes] = ACTIONS(4151), + [sym__str_back_ticks] = ACTIONS(4151), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4153), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4155), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(2008), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2010), }, [1306] = { - [sym_cell_path] = STATE(1454), - [sym_path] = STATE(1421), [sym_comment] = STATE(1306), - [aux_sym_cell_path_repeat1] = STATE(1365), - [anon_sym_EQ] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(963), - [anon_sym_DASH_EQ] = ACTIONS(963), - [anon_sym_STAR_EQ] = ACTIONS(963), - [anon_sym_SLASH_EQ] = ACTIONS(963), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(963), - [sym__newline] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(963), - [anon_sym_err_GT_PIPE] = ACTIONS(963), - [anon_sym_out_GT_PIPE] = ACTIONS(963), - [anon_sym_e_GT_PIPE] = ACTIONS(963), - [anon_sym_o_GT_PIPE] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), - [anon_sym_GT2] = ACTIONS(961), - [anon_sym_DASH2] = ACTIONS(961), - [anon_sym_in2] = ACTIONS(963), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_STAR2] = ACTIONS(961), - [anon_sym_and2] = ACTIONS(963), - [anon_sym_xor2] = ACTIONS(963), - [anon_sym_or2] = ACTIONS(963), - [anon_sym_not_DASHin2] = ACTIONS(963), - [anon_sym_starts_DASHwith2] = ACTIONS(963), - [anon_sym_ends_DASHwith2] = ACTIONS(963), - [anon_sym_EQ_EQ2] = ACTIONS(963), - [anon_sym_BANG_EQ2] = ACTIONS(963), - [anon_sym_LT2] = ACTIONS(961), - [anon_sym_LT_EQ2] = ACTIONS(963), - [anon_sym_GT_EQ2] = ACTIONS(963), - [anon_sym_EQ_TILDE2] = ACTIONS(963), - [anon_sym_BANG_TILDE2] = ACTIONS(963), - [anon_sym_STAR_STAR2] = ACTIONS(963), - [anon_sym_PLUS_PLUS2] = ACTIONS(961), - [anon_sym_SLASH2] = ACTIONS(961), - [anon_sym_mod2] = ACTIONS(963), - [anon_sym_SLASH_SLASH2] = ACTIONS(963), - [anon_sym_PLUS2] = ACTIONS(961), - [anon_sym_bit_DASHshl2] = ACTIONS(963), - [anon_sym_bit_DASHshr2] = ACTIONS(963), - [anon_sym_bit_DASHand2] = ACTIONS(963), - [anon_sym_bit_DASHxor2] = ACTIONS(963), - [anon_sym_bit_DASHor2] = ACTIONS(963), - [anon_sym_DOT_DOT2] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(4375), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), - [anon_sym_DOT_DOT_LT2] = ACTIONS(963), - [aux_sym_record_entry_token1] = ACTIONS(963), - [anon_sym_err_GT] = ACTIONS(961), - [anon_sym_out_GT] = ACTIONS(961), - [anon_sym_e_GT] = ACTIONS(961), - [anon_sym_o_GT] = ACTIONS(961), - [anon_sym_err_PLUSout_GT] = ACTIONS(961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(961), - [anon_sym_o_PLUSe_GT] = ACTIONS(961), - [anon_sym_e_PLUSo_GT] = ACTIONS(961), - [anon_sym_err_GT_GT] = ACTIONS(963), - [anon_sym_out_GT_GT] = ACTIONS(963), - [anon_sym_e_GT_GT] = ACTIONS(963), - [anon_sym_o_GT_GT] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_err_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_GT_PIPE] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), + [anon_sym_LBRACK] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_RPAREN] = ACTIONS(1575), + [anon_sym_DOLLAR] = ACTIONS(1573), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_RBRACE] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_LPAREN2] = ACTIONS(1575), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1573), + [anon_sym_DOT_DOT_LT] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(4061), + [anon_sym_null] = ACTIONS(1575), + [anon_sym_true] = ACTIONS(1575), + [anon_sym_false] = ACTIONS(1575), + [aux_sym__val_number_decimal_token1] = ACTIONS(1573), + [aux_sym__val_number_decimal_token2] = ACTIONS(1575), + [aux_sym__val_number_decimal_token3] = ACTIONS(1575), + [aux_sym__val_number_decimal_token4] = ACTIONS(1575), + [aux_sym__val_number_token1] = ACTIONS(1575), + [aux_sym__val_number_token2] = ACTIONS(1575), + [aux_sym__val_number_token3] = ACTIONS(1575), + [aux_sym__val_number_token4] = ACTIONS(1575), + [aux_sym__val_number_token5] = ACTIONS(1575), + [aux_sym__val_number_token6] = ACTIONS(1575), + [anon_sym_0b] = ACTIONS(1573), + [sym_filesize_unit] = ACTIONS(1575), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_0o] = ACTIONS(1573), + [anon_sym_0x] = ACTIONS(1573), + [sym_val_date] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [sym__str_single_quotes] = ACTIONS(1575), + [sym__str_back_ticks] = ACTIONS(1575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1575), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1575), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1575), + [anon_sym_out_GT_GT] = ACTIONS(1575), + [anon_sym_e_GT_GT] = ACTIONS(1575), + [anon_sym_o_GT_GT] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), + [aux_sym_unquoted_token1] = ACTIONS(1573), + [aux_sym_unquoted_token2] = ACTIONS(1573), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1575), }, [1307] = { - [sym__val_range] = STATE(7572), - [sym__value] = STATE(6063), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(7458), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(5622), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(4492), - [sym__str_double_quotes] = STATE(4492), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(6064), - [sym__unquoted_anonymous_prefix] = STATE(7585), + [sym__val_range] = STATE(7739), + [sym__value] = STATE(6217), + [sym_val_nothing] = STATE(5002), + [sym_val_bool] = STATE(7278), + [sym_val_variable] = STATE(5002), + [sym_val_number] = STATE(5002), + [sym__val_number_decimal] = STATE(5602), + [sym__val_number] = STATE(4893), + [sym_val_duration] = STATE(5002), + [sym_val_filesize] = STATE(5002), + [sym_val_binary] = STATE(5002), + [sym_val_string] = STATE(5002), + [sym__raw_str] = STATE(4332), + [sym__str_double_quotes] = STATE(4332), + [sym_val_interpolated] = STATE(5002), + [sym__inter_single_quotes] = STATE(4834), + [sym__inter_double_quotes] = STATE(4836), + [sym_val_list] = STATE(5002), + [sym_val_record] = STATE(5002), + [sym_val_table] = STATE(5002), + [sym_val_closure] = STATE(5002), + [sym_unquoted] = STATE(6239), + [sym__unquoted_anonymous_prefix] = STATE(7847), [sym_comment] = STATE(1307), - [anon_sym_LBRACK] = ACTIONS(3983), - [anon_sym_LPAREN] = ACTIONS(4211), - [anon_sym_DOLLAR] = ACTIONS(4213), - [anon_sym_LBRACE] = ACTIONS(3987), - [anon_sym_DOT_DOT] = ACTIONS(4215), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4217), - [anon_sym_DOT_DOT_LT] = ACTIONS(4217), - [anon_sym_null] = ACTIONS(3993), - [anon_sym_true] = ACTIONS(3995), - [anon_sym_false] = ACTIONS(3995), - [aux_sym__val_number_decimal_token1] = ACTIONS(3997), - [aux_sym__val_number_decimal_token2] = ACTIONS(3999), - [aux_sym__val_number_decimal_token3] = ACTIONS(4001), - [aux_sym__val_number_decimal_token4] = ACTIONS(4003), + [anon_sym_LBRACK] = ACTIONS(4177), + [anon_sym_LPAREN] = ACTIONS(4179), + [anon_sym_DOLLAR] = ACTIONS(4181), + [anon_sym_LBRACE] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), + [anon_sym_DOT_DOT_LT] = ACTIONS(4187), + [anon_sym_null] = ACTIONS(4189), + [anon_sym_true] = ACTIONS(4191), + [anon_sym_false] = ACTIONS(4191), + [aux_sym__val_number_decimal_token1] = ACTIONS(4193), + [aux_sym__val_number_decimal_token2] = ACTIONS(4195), + [aux_sym__val_number_decimal_token3] = ACTIONS(4197), + [aux_sym__val_number_decimal_token4] = ACTIONS(4199), + [aux_sym__val_number_token1] = ACTIONS(3647), + [aux_sym__val_number_token2] = ACTIONS(3647), + [aux_sym__val_number_token3] = ACTIONS(3647), + [aux_sym__val_number_token4] = ACTIONS(4201), + [aux_sym__val_number_token5] = ACTIONS(4201), + [aux_sym__val_number_token6] = ACTIONS(4201), + [anon_sym_0b] = ACTIONS(3651), + [anon_sym_0o] = ACTIONS(3653), + [anon_sym_0x] = ACTIONS(3653), + [sym_val_date] = ACTIONS(4203), + [anon_sym_DQUOTE] = ACTIONS(4001), + [sym__str_single_quotes] = ACTIONS(4003), + [sym__str_back_ticks] = ACTIONS(4003), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4205), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4005), + }, + [1308] = { + [sym_comment] = STATE(1308), + [ts_builtin_sym_end] = ACTIONS(1575), + [sym__newline] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_err_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_GT_PIPE] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), + [anon_sym_LBRACK] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_DOLLAR] = ACTIONS(1573), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_LPAREN2] = ACTIONS(1575), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT] = ACTIONS(4483), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1573), + [anon_sym_DOT_DOT_LT] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(4485), + [anon_sym_null] = ACTIONS(1575), + [anon_sym_true] = ACTIONS(1575), + [anon_sym_false] = ACTIONS(1575), + [aux_sym__val_number_decimal_token1] = ACTIONS(1573), + [aux_sym__val_number_decimal_token2] = ACTIONS(1575), + [aux_sym__val_number_decimal_token3] = ACTIONS(1575), + [aux_sym__val_number_decimal_token4] = ACTIONS(1575), + [aux_sym__val_number_token1] = ACTIONS(1575), + [aux_sym__val_number_token2] = ACTIONS(1575), + [aux_sym__val_number_token3] = ACTIONS(1575), + [aux_sym__val_number_token4] = ACTIONS(1575), + [aux_sym__val_number_token5] = ACTIONS(1575), + [aux_sym__val_number_token6] = ACTIONS(1575), + [anon_sym_0b] = ACTIONS(1573), + [sym_filesize_unit] = ACTIONS(1575), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_0o] = ACTIONS(1573), + [anon_sym_0x] = ACTIONS(1573), + [sym_val_date] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [sym__str_single_quotes] = ACTIONS(1575), + [sym__str_back_ticks] = ACTIONS(1575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1575), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1575), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1575), + [anon_sym_out_GT_GT] = ACTIONS(1575), + [anon_sym_e_GT_GT] = ACTIONS(1575), + [anon_sym_o_GT_GT] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), + [aux_sym_unquoted_token1] = ACTIONS(1573), + [aux_sym_unquoted_token2] = ACTIONS(1573), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1575), + }, + [1309] = { + [sym__val_range] = STATE(7906), + [sym__value] = STATE(6136), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(7502), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(5707), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(4332), + [sym__str_double_quotes] = STATE(4332), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(6137), + [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym_comment] = STATE(1309), + [anon_sym_LBRACK] = ACTIONS(3975), + [anon_sym_LPAREN] = ACTIONS(4327), + [anon_sym_DOLLAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(3979), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4333), + [anon_sym_DOT_DOT_LT] = ACTIONS(4333), + [anon_sym_null] = ACTIONS(3985), + [anon_sym_true] = ACTIONS(3987), + [anon_sym_false] = ACTIONS(3987), + [aux_sym__val_number_decimal_token1] = ACTIONS(3989), + [aux_sym__val_number_decimal_token2] = ACTIONS(3991), + [aux_sym__val_number_decimal_token3] = ACTIONS(3993), + [aux_sym__val_number_decimal_token4] = ACTIONS(3995), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(4005), - [aux_sym__val_number_token5] = ACTIONS(4005), - [aux_sym__val_number_token6] = ACTIONS(4005), + [aux_sym__val_number_token4] = ACTIONS(3997), + [aux_sym__val_number_token5] = ACTIONS(3997), + [aux_sym__val_number_token6] = ACTIONS(3997), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(4007), - [anon_sym_DQUOTE] = ACTIONS(4009), - [sym__str_single_quotes] = ACTIONS(4011), - [sym__str_back_ticks] = ACTIONS(4011), + [sym_val_date] = ACTIONS(3999), + [anon_sym_DQUOTE] = ACTIONS(4001), + [sym__str_single_quotes] = ACTIONS(4003), + [sym__str_back_ticks] = ACTIONS(4003), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4013), - }, - [1308] = { - [sym__val_range] = STATE(7658), - [sym__value] = STATE(4724), - [sym_val_nothing] = STATE(4616), - [sym_val_bool] = STATE(7000), - [sym_val_variable] = STATE(4616), - [sym_val_number] = STATE(4616), - [sym__val_number_decimal] = STATE(5569), - [sym__val_number] = STATE(4634), - [sym_val_duration] = STATE(4616), - [sym_val_filesize] = STATE(4616), - [sym_val_binary] = STATE(4616), - [sym_val_string] = STATE(4616), - [sym__raw_str] = STATE(4465), - [sym__str_double_quotes] = STATE(4465), - [sym_val_interpolated] = STATE(4616), - [sym__inter_single_quotes] = STATE(4689), - [sym__inter_double_quotes] = STATE(4701), - [sym_val_list] = STATE(4616), - [sym_val_record] = STATE(4616), - [sym_val_table] = STATE(4616), - [sym_val_closure] = STATE(4616), - [sym_unquoted] = STATE(4726), - [sym__unquoted_anonymous_prefix] = STATE(7677), - [sym_comment] = STATE(1308), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym_DOLLAR] = ACTIONS(4341), - [anon_sym_LBRACE] = ACTIONS(4343), - [anon_sym_DOT_DOT] = ACTIONS(4345), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4347), - [anon_sym_DOT_DOT_LT] = ACTIONS(4347), - [anon_sym_null] = ACTIONS(4349), - [anon_sym_true] = ACTIONS(4351), - [anon_sym_false] = ACTIONS(4351), - [aux_sym__val_number_decimal_token1] = ACTIONS(4353), - [aux_sym__val_number_decimal_token2] = ACTIONS(4355), - [aux_sym__val_number_decimal_token3] = ACTIONS(4357), - [aux_sym__val_number_decimal_token4] = ACTIONS(4359), - [aux_sym__val_number_token1] = ACTIONS(4361), - [aux_sym__val_number_token2] = ACTIONS(4361), - [aux_sym__val_number_token3] = ACTIONS(4361), - [aux_sym__val_number_token4] = ACTIONS(4363), - [aux_sym__val_number_token5] = ACTIONS(4363), - [aux_sym__val_number_token6] = ACTIONS(4363), - [anon_sym_0b] = ACTIONS(1840), - [anon_sym_0o] = ACTIONS(1842), - [anon_sym_0x] = ACTIONS(1842), - [sym_val_date] = ACTIONS(4365), - [anon_sym_DQUOTE] = ACTIONS(4367), - [sym__str_single_quotes] = ACTIONS(4369), - [sym__str_back_ticks] = ACTIONS(4369), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4371), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4373), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(1858), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1860), - }, - [1309] = { - [sym__val_range] = STATE(7658), - [sym__value] = STATE(4750), - [sym_val_nothing] = STATE(4616), - [sym_val_bool] = STATE(4396), - [sym_val_variable] = STATE(4616), - [sym_val_number] = STATE(4616), - [sym__val_number_decimal] = STATE(4076), - [sym__val_number] = STATE(4634), - [sym_val_duration] = STATE(4616), - [sym_val_filesize] = STATE(4616), - [sym_val_binary] = STATE(4616), - [sym_val_string] = STATE(4616), - [sym__raw_str] = STATE(4465), - [sym__str_double_quotes] = STATE(4465), - [sym_val_interpolated] = STATE(4616), - [sym__inter_single_quotes] = STATE(4689), - [sym__inter_double_quotes] = STATE(4701), - [sym_val_list] = STATE(4616), - [sym_val_record] = STATE(4616), - [sym_val_table] = STATE(4616), - [sym_val_closure] = STATE(4616), - [sym_unquoted] = STATE(4751), - [sym__unquoted_anonymous_prefix] = STATE(7677), - [sym_comment] = STATE(1309), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym_DOLLAR] = ACTIONS(4341), - [anon_sym_LBRACE] = ACTIONS(4343), - [anon_sym_DOT_DOT] = ACTIONS(4345), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4347), - [anon_sym_DOT_DOT_LT] = ACTIONS(4347), - [anon_sym_null] = ACTIONS(4377), - [anon_sym_true] = ACTIONS(4379), - [anon_sym_false] = ACTIONS(4379), - [aux_sym__val_number_decimal_token1] = ACTIONS(1830), - [aux_sym__val_number_decimal_token2] = ACTIONS(4381), - [aux_sym__val_number_decimal_token3] = ACTIONS(4383), - [aux_sym__val_number_decimal_token4] = ACTIONS(4385), - [aux_sym__val_number_token1] = ACTIONS(4361), - [aux_sym__val_number_token2] = ACTIONS(4361), - [aux_sym__val_number_token3] = ACTIONS(4361), - [aux_sym__val_number_token4] = ACTIONS(4387), - [aux_sym__val_number_token5] = ACTIONS(4387), - [aux_sym__val_number_token6] = ACTIONS(4387), - [anon_sym_0b] = ACTIONS(1840), - [anon_sym_0o] = ACTIONS(1842), - [anon_sym_0x] = ACTIONS(1842), - [sym_val_date] = ACTIONS(4389), - [anon_sym_DQUOTE] = ACTIONS(4367), - [sym__str_single_quotes] = ACTIONS(4369), - [sym__str_back_ticks] = ACTIONS(4369), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4371), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4373), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(1858), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1860), + [sym_raw_string_begin] = ACTIONS(4005), }, [1310] = { - [sym__val_range] = STATE(7658), - [sym__value] = STATE(4760), - [sym_val_nothing] = STATE(4616), - [sym_val_bool] = STATE(7000), - [sym_val_variable] = STATE(4616), - [sym_val_number] = STATE(4616), - [sym__val_number_decimal] = STATE(5569), - [sym__val_number] = STATE(4634), - [sym_val_duration] = STATE(4616), - [sym_val_filesize] = STATE(4616), - [sym_val_binary] = STATE(4616), - [sym_val_string] = STATE(4616), - [sym__raw_str] = STATE(4465), - [sym__str_double_quotes] = STATE(4465), - [sym_val_interpolated] = STATE(4616), - [sym__inter_single_quotes] = STATE(4689), - [sym__inter_double_quotes] = STATE(4701), - [sym_val_list] = STATE(4616), - [sym_val_record] = STATE(4616), - [sym_val_table] = STATE(4616), - [sym_val_closure] = STATE(4616), - [sym_unquoted] = STATE(4762), - [sym__unquoted_anonymous_prefix] = STATE(7677), + [sym__expr_parenthesized_immediate] = STATE(1922), + [sym__immediate_decimal] = STATE(1695), + [sym_val_variable] = STATE(1922), [sym_comment] = STATE(1310), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym_DOLLAR] = ACTIONS(4341), - [anon_sym_LBRACE] = ACTIONS(4343), - [anon_sym_DOT_DOT] = ACTIONS(4345), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4347), - [anon_sym_DOT_DOT_LT] = ACTIONS(4347), - [anon_sym_null] = ACTIONS(4349), - [anon_sym_true] = ACTIONS(4351), - [anon_sym_false] = ACTIONS(4351), - [aux_sym__val_number_decimal_token1] = ACTIONS(4353), - [aux_sym__val_number_decimal_token2] = ACTIONS(4355), - [aux_sym__val_number_decimal_token3] = ACTIONS(4357), - [aux_sym__val_number_decimal_token4] = ACTIONS(4359), - [aux_sym__val_number_token1] = ACTIONS(4361), - [aux_sym__val_number_token2] = ACTIONS(4361), - [aux_sym__val_number_token3] = ACTIONS(4361), - [aux_sym__val_number_token4] = ACTIONS(4363), - [aux_sym__val_number_token5] = ACTIONS(4363), - [aux_sym__val_number_token6] = ACTIONS(4363), - [anon_sym_0b] = ACTIONS(1840), - [anon_sym_0o] = ACTIONS(1842), - [anon_sym_0x] = ACTIONS(1842), - [sym_val_date] = ACTIONS(4365), - [anon_sym_DQUOTE] = ACTIONS(4367), - [sym__str_single_quotes] = ACTIONS(4369), - [sym__str_back_ticks] = ACTIONS(4369), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4371), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4373), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(1858), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1860), + [ts_builtin_sym_end] = ACTIONS(1659), + [sym__newline] = ACTIONS(1659), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1659), + [anon_sym_err_GT_PIPE] = ACTIONS(1659), + [anon_sym_out_GT_PIPE] = ACTIONS(1659), + [anon_sym_e_GT_PIPE] = ACTIONS(1659), + [anon_sym_o_GT_PIPE] = ACTIONS(1659), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1659), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1659), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1659), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym_DOLLAR] = ACTIONS(4419), + [anon_sym_DASH_DASH] = ACTIONS(1659), + [anon_sym_DASH2] = ACTIONS(1657), + [anon_sym_LBRACE] = ACTIONS(1659), + [anon_sym_DOT_DOT] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(4487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1659), + [anon_sym_DOT_DOT_LT] = ACTIONS(1659), + [aux_sym__immediate_decimal_token1] = ACTIONS(4489), + [aux_sym__immediate_decimal_token3] = ACTIONS(4491), + [aux_sym__immediate_decimal_token4] = ACTIONS(4493), + [aux_sym__immediate_decimal_token5] = ACTIONS(4495), + [anon_sym_null] = ACTIONS(1659), + [anon_sym_true] = ACTIONS(1659), + [anon_sym_false] = ACTIONS(1659), + [aux_sym__val_number_decimal_token1] = ACTIONS(1657), + [aux_sym__val_number_decimal_token2] = ACTIONS(1657), + [aux_sym__val_number_decimal_token3] = ACTIONS(1657), + [aux_sym__val_number_decimal_token4] = ACTIONS(1657), + [aux_sym__val_number_token1] = ACTIONS(1659), + [aux_sym__val_number_token2] = ACTIONS(1659), + [aux_sym__val_number_token3] = ACTIONS(1659), + [aux_sym__val_number_token4] = ACTIONS(1659), + [aux_sym__val_number_token5] = ACTIONS(1659), + [aux_sym__val_number_token6] = ACTIONS(1659), + [anon_sym_0b] = ACTIONS(1657), + [anon_sym_0o] = ACTIONS(1657), + [anon_sym_0x] = ACTIONS(1657), + [sym_val_date] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1659), + [sym__str_single_quotes] = ACTIONS(1659), + [sym__str_back_ticks] = ACTIONS(1659), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1659), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1659), + [anon_sym_err_GT] = ACTIONS(1657), + [anon_sym_out_GT] = ACTIONS(1657), + [anon_sym_e_GT] = ACTIONS(1657), + [anon_sym_o_GT] = ACTIONS(1657), + [anon_sym_err_PLUSout_GT] = ACTIONS(1657), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1657), + [anon_sym_o_PLUSe_GT] = ACTIONS(1657), + [anon_sym_e_PLUSo_GT] = ACTIONS(1657), + [anon_sym_err_GT_GT] = ACTIONS(1659), + [anon_sym_out_GT_GT] = ACTIONS(1659), + [anon_sym_e_GT_GT] = ACTIONS(1659), + [anon_sym_o_GT_GT] = ACTIONS(1659), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1659), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1659), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1659), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1659), + [aux_sym_unquoted_token1] = ACTIONS(1657), + [aux_sym_unquoted_token2] = ACTIONS(1661), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1659), }, [1311] = { - [sym__val_range] = STATE(7658), - [sym__value] = STATE(4764), - [sym_val_nothing] = STATE(4616), - [sym_val_bool] = STATE(4396), - [sym_val_variable] = STATE(4616), - [sym_val_number] = STATE(4616), - [sym__val_number_decimal] = STATE(4076), - [sym__val_number] = STATE(4634), - [sym_val_duration] = STATE(4616), - [sym_val_filesize] = STATE(4616), - [sym_val_binary] = STATE(4616), - [sym_val_string] = STATE(4616), - [sym__raw_str] = STATE(4465), - [sym__str_double_quotes] = STATE(4465), - [sym_val_interpolated] = STATE(4616), - [sym__inter_single_quotes] = STATE(4689), - [sym__inter_double_quotes] = STATE(4701), - [sym_val_list] = STATE(4616), - [sym_val_record] = STATE(4616), - [sym_val_table] = STATE(4616), - [sym_val_closure] = STATE(4616), - [sym_unquoted] = STATE(4765), - [sym__unquoted_anonymous_prefix] = STATE(7677), [sym_comment] = STATE(1311), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym_DOLLAR] = ACTIONS(4341), - [anon_sym_LBRACE] = ACTIONS(4343), - [anon_sym_DOT_DOT] = ACTIONS(4345), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4347), - [anon_sym_DOT_DOT_LT] = ACTIONS(4347), - [anon_sym_null] = ACTIONS(4377), - [anon_sym_true] = ACTIONS(4379), - [anon_sym_false] = ACTIONS(4379), - [aux_sym__val_number_decimal_token1] = ACTIONS(1830), - [aux_sym__val_number_decimal_token2] = ACTIONS(4381), - [aux_sym__val_number_decimal_token3] = ACTIONS(4383), - [aux_sym__val_number_decimal_token4] = ACTIONS(4385), - [aux_sym__val_number_token1] = ACTIONS(4361), - [aux_sym__val_number_token2] = ACTIONS(4361), - [aux_sym__val_number_token3] = ACTIONS(4361), - [aux_sym__val_number_token4] = ACTIONS(4387), - [aux_sym__val_number_token5] = ACTIONS(4387), - [aux_sym__val_number_token6] = ACTIONS(4387), - [anon_sym_0b] = ACTIONS(1840), - [anon_sym_0o] = ACTIONS(1842), - [anon_sym_0x] = ACTIONS(1842), - [sym_val_date] = ACTIONS(4389), - [anon_sym_DQUOTE] = ACTIONS(4367), - [sym__str_single_quotes] = ACTIONS(4369), - [sym__str_back_ticks] = ACTIONS(4369), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4371), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4373), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(1858), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1860), + [ts_builtin_sym_end] = ACTIONS(1587), + [sym__newline] = ACTIONS(1587), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_err_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_GT_PIPE] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_DOLLAR] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1585), + [anon_sym_LPAREN2] = ACTIONS(1587), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), + [anon_sym_DOT_DOT_LT] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [aux_sym__immediate_decimal_token1] = ACTIONS(4497), + [aux_sym__immediate_decimal_token2] = ACTIONS(4499), + [anon_sym_null] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(1587), + [anon_sym_false] = ACTIONS(1587), + [aux_sym__val_number_decimal_token1] = ACTIONS(1585), + [aux_sym__val_number_decimal_token2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1587), + [aux_sym__val_number_token2] = ACTIONS(1587), + [aux_sym__val_number_token3] = ACTIONS(1587), + [aux_sym__val_number_token4] = ACTIONS(1587), + [aux_sym__val_number_token5] = ACTIONS(1587), + [aux_sym__val_number_token6] = ACTIONS(1587), + [anon_sym_0b] = ACTIONS(1585), + [sym_filesize_unit] = ACTIONS(1587), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_0o] = ACTIONS(1585), + [anon_sym_0x] = ACTIONS(1585), + [sym_val_date] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [sym__str_single_quotes] = ACTIONS(1587), + [sym__str_back_ticks] = ACTIONS(1587), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1587), + [anon_sym_out_GT_GT] = ACTIONS(1587), + [anon_sym_e_GT_GT] = ACTIONS(1587), + [anon_sym_o_GT_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [aux_sym_unquoted_token1] = ACTIONS(1585), + [aux_sym_unquoted_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1587), }, [1312] = { - [sym__val_range] = STATE(7658), - [sym__value] = STATE(4724), - [sym_val_nothing] = STATE(4616), - [sym_val_bool] = STATE(4396), - [sym_val_variable] = STATE(4616), - [sym_val_number] = STATE(4616), - [sym__val_number_decimal] = STATE(4076), - [sym__val_number] = STATE(4634), - [sym_val_duration] = STATE(4616), - [sym_val_filesize] = STATE(4616), - [sym_val_binary] = STATE(4616), - [sym_val_string] = STATE(4616), - [sym__raw_str] = STATE(4465), - [sym__str_double_quotes] = STATE(4465), - [sym_val_interpolated] = STATE(4616), - [sym__inter_single_quotes] = STATE(4689), - [sym__inter_double_quotes] = STATE(4701), - [sym_val_list] = STATE(4616), - [sym_val_record] = STATE(4616), - [sym_val_table] = STATE(4616), - [sym_val_closure] = STATE(4616), - [sym_unquoted] = STATE(4726), - [sym__unquoted_anonymous_prefix] = STATE(7677), + [sym__val_range] = STATE(7739), + [sym__value] = STATE(6217), + [sym_val_nothing] = STATE(5002), + [sym_val_bool] = STATE(5962), + [sym_val_variable] = STATE(5002), + [sym_val_number] = STATE(5002), + [sym__val_number_decimal] = STATE(5248), + [sym__val_number] = STATE(4893), + [sym_val_duration] = STATE(5002), + [sym_val_filesize] = STATE(5002), + [sym_val_binary] = STATE(5002), + [sym_val_string] = STATE(5002), + [sym__raw_str] = STATE(4332), + [sym__str_double_quotes] = STATE(4332), + [sym_val_interpolated] = STATE(5002), + [sym__inter_single_quotes] = STATE(4834), + [sym__inter_double_quotes] = STATE(4836), + [sym_val_list] = STATE(5002), + [sym_val_record] = STATE(5002), + [sym_val_table] = STATE(5002), + [sym_val_closure] = STATE(5002), + [sym_unquoted] = STATE(6239), + [sym__unquoted_anonymous_prefix] = STATE(7847), [sym_comment] = STATE(1312), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym_DOLLAR] = ACTIONS(4341), - [anon_sym_LBRACE] = ACTIONS(4343), - [anon_sym_DOT_DOT] = ACTIONS(4345), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4347), - [anon_sym_DOT_DOT_LT] = ACTIONS(4347), - [anon_sym_null] = ACTIONS(4377), - [anon_sym_true] = ACTIONS(4379), - [anon_sym_false] = ACTIONS(4379), - [aux_sym__val_number_decimal_token1] = ACTIONS(1830), - [aux_sym__val_number_decimal_token2] = ACTIONS(4381), - [aux_sym__val_number_decimal_token3] = ACTIONS(4383), - [aux_sym__val_number_decimal_token4] = ACTIONS(4385), - [aux_sym__val_number_token1] = ACTIONS(4361), - [aux_sym__val_number_token2] = ACTIONS(4361), - [aux_sym__val_number_token3] = ACTIONS(4361), - [aux_sym__val_number_token4] = ACTIONS(4387), - [aux_sym__val_number_token5] = ACTIONS(4387), - [aux_sym__val_number_token6] = ACTIONS(4387), - [anon_sym_0b] = ACTIONS(1840), - [anon_sym_0o] = ACTIONS(1842), - [anon_sym_0x] = ACTIONS(1842), - [sym_val_date] = ACTIONS(4389), - [anon_sym_DQUOTE] = ACTIONS(4367), - [sym__str_single_quotes] = ACTIONS(4369), - [sym__str_back_ticks] = ACTIONS(4369), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4371), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4373), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(1858), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(4177), + [anon_sym_LPAREN] = ACTIONS(4179), + [anon_sym_DOLLAR] = ACTIONS(4357), + [anon_sym_LBRACE] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), + [anon_sym_DOT_DOT_LT] = ACTIONS(4187), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_true] = ACTIONS(4361), + [anon_sym_false] = ACTIONS(4361), + [aux_sym__val_number_decimal_token1] = ACTIONS(4363), + [aux_sym__val_number_decimal_token2] = ACTIONS(4365), + [aux_sym__val_number_decimal_token3] = ACTIONS(4367), + [aux_sym__val_number_decimal_token4] = ACTIONS(4369), + [aux_sym__val_number_token1] = ACTIONS(3647), + [aux_sym__val_number_token2] = ACTIONS(3647), + [aux_sym__val_number_token3] = ACTIONS(3647), + [aux_sym__val_number_token4] = ACTIONS(4371), + [aux_sym__val_number_token5] = ACTIONS(4371), + [aux_sym__val_number_token6] = ACTIONS(4371), + [anon_sym_0b] = ACTIONS(3651), + [anon_sym_0o] = ACTIONS(3653), + [anon_sym_0x] = ACTIONS(3653), + [sym_val_date] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(4001), + [sym__str_single_quotes] = ACTIONS(4003), + [sym__str_back_ticks] = ACTIONS(4003), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4205), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4005), }, [1313] = { - [sym__val_range] = STATE(7973), - [sym__value] = STATE(3642), - [sym_val_nothing] = STATE(3702), - [sym_val_bool] = STATE(3612), - [sym_val_variable] = STATE(3702), - [sym_val_number] = STATE(3702), - [sym__val_number_decimal] = STATE(3401), - [sym__val_number] = STATE(3687), - [sym_val_duration] = STATE(3702), - [sym_val_filesize] = STATE(3702), - [sym_val_binary] = STATE(3702), - [sym_val_string] = STATE(3702), - [sym__raw_str] = STATE(3586), - [sym__str_double_quotes] = STATE(3586), - [sym_val_interpolated] = STATE(3702), - [sym__inter_single_quotes] = STATE(3700), - [sym__inter_double_quotes] = STATE(3661), - [sym_val_list] = STATE(3702), - [sym_val_record] = STATE(3702), - [sym_val_table] = STATE(3702), - [sym_val_closure] = STATE(3702), - [sym_unquoted] = STATE(3643), - [sym__unquoted_anonymous_prefix] = STATE(7566), + [sym__val_range] = STATE(7739), + [sym__value] = STATE(6162), + [sym_val_nothing] = STATE(5002), + [sym_val_bool] = STATE(6436), + [sym_val_variable] = STATE(5002), + [sym_val_number] = STATE(5002), + [sym__val_number_decimal] = STATE(5470), + [sym__val_number] = STATE(4893), + [sym_val_duration] = STATE(5002), + [sym_val_filesize] = STATE(5002), + [sym_val_binary] = STATE(5002), + [sym_val_string] = STATE(5002), + [sym__raw_str] = STATE(4332), + [sym__str_double_quotes] = STATE(4332), + [sym_val_interpolated] = STATE(5002), + [sym__inter_single_quotes] = STATE(4834), + [sym__inter_double_quotes] = STATE(4836), + [sym_val_list] = STATE(5002), + [sym_val_record] = STATE(5002), + [sym_val_table] = STATE(5002), + [sym_val_closure] = STATE(5002), + [sym_unquoted] = STATE(6182), + [sym__unquoted_anonymous_prefix] = STATE(7847), [sym_comment] = STATE(1313), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_DOLLAR] = ACTIONS(4395), - [anon_sym_LBRACE] = ACTIONS(4397), - [anon_sym_DOT_DOT] = ACTIONS(4399), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4401), - [anon_sym_DOT_DOT_LT] = ACTIONS(4401), - [anon_sym_null] = ACTIONS(4403), - [anon_sym_true] = ACTIONS(4405), - [anon_sym_false] = ACTIONS(4405), - [aux_sym__val_number_decimal_token1] = ACTIONS(4407), - [aux_sym__val_number_decimal_token2] = ACTIONS(4409), - [aux_sym__val_number_decimal_token3] = ACTIONS(4411), - [aux_sym__val_number_decimal_token4] = ACTIONS(4413), - [aux_sym__val_number_token1] = ACTIONS(4415), - [aux_sym__val_number_token2] = ACTIONS(4415), - [aux_sym__val_number_token3] = ACTIONS(4415), - [aux_sym__val_number_token4] = ACTIONS(4417), - [aux_sym__val_number_token5] = ACTIONS(4417), - [aux_sym__val_number_token6] = ACTIONS(4417), - [anon_sym_0b] = ACTIONS(4419), - [anon_sym_0o] = ACTIONS(4421), - [anon_sym_0x] = ACTIONS(4421), - [sym_val_date] = ACTIONS(4423), - [anon_sym_DQUOTE] = ACTIONS(4425), - [sym__str_single_quotes] = ACTIONS(4427), - [sym__str_back_ticks] = ACTIONS(4427), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4429), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4431), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4433), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4435), + [anon_sym_LBRACK] = ACTIONS(4177), + [anon_sym_LPAREN] = ACTIONS(4179), + [anon_sym_DOLLAR] = ACTIONS(4181), + [anon_sym_LBRACE] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), + [anon_sym_DOT_DOT_LT] = ACTIONS(4187), + [anon_sym_null] = ACTIONS(4457), + [anon_sym_true] = ACTIONS(4459), + [anon_sym_false] = ACTIONS(4459), + [aux_sym__val_number_decimal_token1] = ACTIONS(4461), + [aux_sym__val_number_decimal_token2] = ACTIONS(4463), + [aux_sym__val_number_decimal_token3] = ACTIONS(4465), + [aux_sym__val_number_decimal_token4] = ACTIONS(4467), + [aux_sym__val_number_token1] = ACTIONS(3647), + [aux_sym__val_number_token2] = ACTIONS(3647), + [aux_sym__val_number_token3] = ACTIONS(3647), + [aux_sym__val_number_token4] = ACTIONS(4469), + [aux_sym__val_number_token5] = ACTIONS(4469), + [aux_sym__val_number_token6] = ACTIONS(4469), + [anon_sym_0b] = ACTIONS(3651), + [anon_sym_0o] = ACTIONS(3653), + [anon_sym_0x] = ACTIONS(3653), + [sym_val_date] = ACTIONS(4471), + [anon_sym_DQUOTE] = ACTIONS(4001), + [sym__str_single_quotes] = ACTIONS(4003), + [sym__str_back_ticks] = ACTIONS(4003), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4205), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4005), }, [1314] = { - [sym__val_range] = STATE(7658), - [sym__value] = STATE(4760), - [sym_val_nothing] = STATE(4616), - [sym_val_bool] = STATE(4396), - [sym_val_variable] = STATE(4616), - [sym_val_number] = STATE(4616), - [sym__val_number_decimal] = STATE(4076), - [sym__val_number] = STATE(4634), - [sym_val_duration] = STATE(4616), - [sym_val_filesize] = STATE(4616), - [sym_val_binary] = STATE(4616), - [sym_val_string] = STATE(4616), - [sym__raw_str] = STATE(4465), - [sym__str_double_quotes] = STATE(4465), - [sym_val_interpolated] = STATE(4616), - [sym__inter_single_quotes] = STATE(4689), - [sym__inter_double_quotes] = STATE(4701), - [sym_val_list] = STATE(4616), - [sym_val_record] = STATE(4616), - [sym_val_table] = STATE(4616), - [sym_val_closure] = STATE(4616), - [sym_unquoted] = STATE(4762), - [sym__unquoted_anonymous_prefix] = STATE(7677), + [sym__val_range] = STATE(7779), + [sym__value] = STATE(4905), + [sym_val_nothing] = STATE(4888), + [sym_val_bool] = STATE(4601), + [sym_val_variable] = STATE(4888), + [sym_val_number] = STATE(4888), + [sym__val_number_decimal] = STATE(4115), + [sym__val_number] = STATE(4852), + [sym_val_duration] = STATE(4888), + [sym_val_filesize] = STATE(4888), + [sym_val_binary] = STATE(4888), + [sym_val_string] = STATE(4888), + [sym__raw_str] = STATE(4528), + [sym__str_double_quotes] = STATE(4528), + [sym_val_interpolated] = STATE(4888), + [sym__inter_single_quotes] = STATE(4891), + [sym__inter_double_quotes] = STATE(4896), + [sym_val_list] = STATE(4888), + [sym_val_record] = STATE(4888), + [sym_val_table] = STATE(4888), + [sym_val_closure] = STATE(4888), + [sym_unquoted] = STATE(4907), + [sym__unquoted_anonymous_prefix] = STATE(8056), [sym_comment] = STATE(1314), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym_DOLLAR] = ACTIONS(4341), - [anon_sym_LBRACE] = ACTIONS(4343), - [anon_sym_DOT_DOT] = ACTIONS(4345), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4347), - [anon_sym_DOT_DOT_LT] = ACTIONS(4347), - [anon_sym_null] = ACTIONS(4377), - [anon_sym_true] = ACTIONS(4379), - [anon_sym_false] = ACTIONS(4379), - [aux_sym__val_number_decimal_token1] = ACTIONS(1830), - [aux_sym__val_number_decimal_token2] = ACTIONS(4381), - [aux_sym__val_number_decimal_token3] = ACTIONS(4383), - [aux_sym__val_number_decimal_token4] = ACTIONS(4385), - [aux_sym__val_number_token1] = ACTIONS(4361), - [aux_sym__val_number_token2] = ACTIONS(4361), - [aux_sym__val_number_token3] = ACTIONS(4361), - [aux_sym__val_number_token4] = ACTIONS(4387), - [aux_sym__val_number_token5] = ACTIONS(4387), - [aux_sym__val_number_token6] = ACTIONS(4387), - [anon_sym_0b] = ACTIONS(1840), - [anon_sym_0o] = ACTIONS(1842), - [anon_sym_0x] = ACTIONS(1842), - [sym_val_date] = ACTIONS(4389), - [anon_sym_DQUOTE] = ACTIONS(4367), - [sym__str_single_quotes] = ACTIONS(4369), - [sym__str_back_ticks] = ACTIONS(4369), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4371), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4373), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(1858), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(4501), + [anon_sym_LPAREN] = ACTIONS(4503), + [anon_sym_DOLLAR] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_DOT_DOT] = ACTIONS(4509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4511), + [anon_sym_DOT_DOT_LT] = ACTIONS(4511), + [anon_sym_null] = ACTIONS(4513), + [anon_sym_true] = ACTIONS(4515), + [anon_sym_false] = ACTIONS(4515), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(4517), + [aux_sym__val_number_decimal_token3] = ACTIONS(4519), + [aux_sym__val_number_decimal_token4] = ACTIONS(4521), + [aux_sym__val_number_token1] = ACTIONS(4523), + [aux_sym__val_number_token2] = ACTIONS(4523), + [aux_sym__val_number_token3] = ACTIONS(4523), + [aux_sym__val_number_token4] = ACTIONS(4525), + [aux_sym__val_number_token5] = ACTIONS(4525), + [aux_sym__val_number_token6] = ACTIONS(4525), + [anon_sym_0b] = ACTIONS(2096), + [anon_sym_0o] = ACTIONS(2098), + [anon_sym_0x] = ACTIONS(2098), + [sym_val_date] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(4529), + [sym__str_single_quotes] = ACTIONS(4531), + [sym__str_back_ticks] = ACTIONS(4531), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4533), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4535), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(2114), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2116), }, [1315] = { - [sym__val_range] = STATE(7973), - [sym__value] = STATE(3646), - [sym_val_nothing] = STATE(3702), - [sym_val_bool] = STATE(3612), - [sym_val_variable] = STATE(3702), - [sym_val_number] = STATE(3702), - [sym__val_number_decimal] = STATE(3401), - [sym__val_number] = STATE(3687), - [sym_val_duration] = STATE(3702), - [sym_val_filesize] = STATE(3702), - [sym_val_binary] = STATE(3702), - [sym_val_string] = STATE(3702), - [sym__raw_str] = STATE(3586), - [sym__str_double_quotes] = STATE(3586), - [sym_val_interpolated] = STATE(3702), - [sym__inter_single_quotes] = STATE(3700), - [sym__inter_double_quotes] = STATE(3661), - [sym_val_list] = STATE(3702), - [sym_val_record] = STATE(3702), - [sym_val_table] = STATE(3702), - [sym_val_closure] = STATE(3702), - [sym_unquoted] = STATE(3647), - [sym__unquoted_anonymous_prefix] = STATE(7566), + [sym__val_range] = STATE(7739), + [sym__value] = STATE(6136), + [sym_val_nothing] = STATE(5002), + [sym_val_bool] = STATE(6436), + [sym_val_variable] = STATE(5002), + [sym_val_number] = STATE(5002), + [sym__val_number_decimal] = STATE(5470), + [sym__val_number] = STATE(4893), + [sym_val_duration] = STATE(5002), + [sym_val_filesize] = STATE(5002), + [sym_val_binary] = STATE(5002), + [sym_val_string] = STATE(5002), + [sym__raw_str] = STATE(4332), + [sym__str_double_quotes] = STATE(4332), + [sym_val_interpolated] = STATE(5002), + [sym__inter_single_quotes] = STATE(4834), + [sym__inter_double_quotes] = STATE(4836), + [sym_val_list] = STATE(5002), + [sym_val_record] = STATE(5002), + [sym_val_table] = STATE(5002), + [sym_val_closure] = STATE(5002), + [sym_unquoted] = STATE(6137), + [sym__unquoted_anonymous_prefix] = STATE(7847), [sym_comment] = STATE(1315), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_DOLLAR] = ACTIONS(4395), - [anon_sym_LBRACE] = ACTIONS(4397), - [anon_sym_DOT_DOT] = ACTIONS(4399), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4401), - [anon_sym_DOT_DOT_LT] = ACTIONS(4401), - [anon_sym_null] = ACTIONS(4403), - [anon_sym_true] = ACTIONS(4405), - [anon_sym_false] = ACTIONS(4405), - [aux_sym__val_number_decimal_token1] = ACTIONS(4407), - [aux_sym__val_number_decimal_token2] = ACTIONS(4409), - [aux_sym__val_number_decimal_token3] = ACTIONS(4411), - [aux_sym__val_number_decimal_token4] = ACTIONS(4413), - [aux_sym__val_number_token1] = ACTIONS(4415), - [aux_sym__val_number_token2] = ACTIONS(4415), - [aux_sym__val_number_token3] = ACTIONS(4415), - [aux_sym__val_number_token4] = ACTIONS(4417), - [aux_sym__val_number_token5] = ACTIONS(4417), - [aux_sym__val_number_token6] = ACTIONS(4417), - [anon_sym_0b] = ACTIONS(4419), - [anon_sym_0o] = ACTIONS(4421), - [anon_sym_0x] = ACTIONS(4421), - [sym_val_date] = ACTIONS(4423), - [anon_sym_DQUOTE] = ACTIONS(4425), - [sym__str_single_quotes] = ACTIONS(4427), - [sym__str_back_ticks] = ACTIONS(4427), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4429), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4431), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4433), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4435), + [anon_sym_LBRACK] = ACTIONS(4177), + [anon_sym_LPAREN] = ACTIONS(4179), + [anon_sym_DOLLAR] = ACTIONS(4181), + [anon_sym_LBRACE] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), + [anon_sym_DOT_DOT_LT] = ACTIONS(4187), + [anon_sym_null] = ACTIONS(4457), + [anon_sym_true] = ACTIONS(4459), + [anon_sym_false] = ACTIONS(4459), + [aux_sym__val_number_decimal_token1] = ACTIONS(4461), + [aux_sym__val_number_decimal_token2] = ACTIONS(4463), + [aux_sym__val_number_decimal_token3] = ACTIONS(4465), + [aux_sym__val_number_decimal_token4] = ACTIONS(4467), + [aux_sym__val_number_token1] = ACTIONS(3647), + [aux_sym__val_number_token2] = ACTIONS(3647), + [aux_sym__val_number_token3] = ACTIONS(3647), + [aux_sym__val_number_token4] = ACTIONS(4469), + [aux_sym__val_number_token5] = ACTIONS(4469), + [aux_sym__val_number_token6] = ACTIONS(4469), + [anon_sym_0b] = ACTIONS(3651), + [anon_sym_0o] = ACTIONS(3653), + [anon_sym_0x] = ACTIONS(3653), + [sym_val_date] = ACTIONS(4471), + [anon_sym_DQUOTE] = ACTIONS(4001), + [sym__str_single_quotes] = ACTIONS(4003), + [sym__str_back_ticks] = ACTIONS(4003), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4205), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4005), }, [1316] = { - [sym__val_range] = STATE(7973), - [sym__value] = STATE(3671), - [sym_val_nothing] = STATE(3702), - [sym_val_bool] = STATE(3612), - [sym_val_variable] = STATE(3702), - [sym_val_number] = STATE(3702), - [sym__val_number_decimal] = STATE(3401), - [sym__val_number] = STATE(3687), - [sym_val_duration] = STATE(3702), - [sym_val_filesize] = STATE(3702), - [sym_val_binary] = STATE(3702), - [sym_val_string] = STATE(3702), - [sym__raw_str] = STATE(3586), - [sym__str_double_quotes] = STATE(3586), - [sym_val_interpolated] = STATE(3702), - [sym__inter_single_quotes] = STATE(3700), - [sym__inter_double_quotes] = STATE(3661), - [sym_val_list] = STATE(3702), - [sym_val_record] = STATE(3702), - [sym_val_table] = STATE(3702), - [sym_val_closure] = STATE(3702), - [sym_unquoted] = STATE(3672), - [sym__unquoted_anonymous_prefix] = STATE(7566), + [sym__val_range] = STATE(7906), + [sym__value] = STATE(6162), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(7502), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(5707), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(4332), + [sym__str_double_quotes] = STATE(4332), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(6182), + [sym__unquoted_anonymous_prefix] = STATE(7913), [sym_comment] = STATE(1316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_DOLLAR] = ACTIONS(4395), - [anon_sym_LBRACE] = ACTIONS(4397), - [anon_sym_DOT_DOT] = ACTIONS(4399), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4401), - [anon_sym_DOT_DOT_LT] = ACTIONS(4401), - [anon_sym_null] = ACTIONS(4403), - [anon_sym_true] = ACTIONS(4405), - [anon_sym_false] = ACTIONS(4405), - [aux_sym__val_number_decimal_token1] = ACTIONS(4407), - [aux_sym__val_number_decimal_token2] = ACTIONS(4409), - [aux_sym__val_number_decimal_token3] = ACTIONS(4411), - [aux_sym__val_number_decimal_token4] = ACTIONS(4413), - [aux_sym__val_number_token1] = ACTIONS(4415), - [aux_sym__val_number_token2] = ACTIONS(4415), - [aux_sym__val_number_token3] = ACTIONS(4415), - [aux_sym__val_number_token4] = ACTIONS(4417), - [aux_sym__val_number_token5] = ACTIONS(4417), - [aux_sym__val_number_token6] = ACTIONS(4417), - [anon_sym_0b] = ACTIONS(4419), - [anon_sym_0o] = ACTIONS(4421), - [anon_sym_0x] = ACTIONS(4421), - [sym_val_date] = ACTIONS(4423), - [anon_sym_DQUOTE] = ACTIONS(4425), - [sym__str_single_quotes] = ACTIONS(4427), - [sym__str_back_ticks] = ACTIONS(4427), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4429), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4431), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4433), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4435), - }, - [1317] = { - [sym__val_range] = STATE(7727), - [sym__value] = STATE(1837), - [sym_val_nothing] = STATE(1738), - [sym_val_bool] = STATE(1670), - [sym_val_variable] = STATE(1738), - [sym_val_number] = STATE(1738), - [sym__val_number_decimal] = STATE(1391), - [sym__val_number] = STATE(1765), - [sym_val_duration] = STATE(1738), - [sym_val_filesize] = STATE(1738), - [sym_val_binary] = STATE(1738), - [sym_val_string] = STATE(1738), - [sym__raw_str] = STATE(1783), - [sym__str_double_quotes] = STATE(1783), - [sym_val_interpolated] = STATE(1738), - [sym__inter_single_quotes] = STATE(1768), - [sym__inter_double_quotes] = STATE(1769), - [sym_val_list] = STATE(1738), - [sym_val_record] = STATE(1738), - [sym_val_table] = STATE(1738), - [sym_val_closure] = STATE(1738), - [sym_unquoted] = STATE(1838), - [sym__unquoted_anonymous_prefix] = STATE(7745), - [sym_comment] = STATE(1317), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_LPAREN] = ACTIONS(4437), - [anon_sym_DOLLAR] = ACTIONS(4055), - [anon_sym_LBRACE] = ACTIONS(2627), - [anon_sym_DOT_DOT] = ACTIONS(4439), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4441), - [anon_sym_DOT_DOT_LT] = ACTIONS(4441), - [anon_sym_null] = ACTIONS(4443), - [anon_sym_true] = ACTIONS(4445), - [anon_sym_false] = ACTIONS(4445), - [aux_sym__val_number_decimal_token1] = ACTIONS(4447), - [aux_sym__val_number_decimal_token2] = ACTIONS(4449), - [aux_sym__val_number_decimal_token3] = ACTIONS(4451), - [aux_sym__val_number_decimal_token4] = ACTIONS(4453), - [aux_sym__val_number_token1] = ACTIONS(2645), - [aux_sym__val_number_token2] = ACTIONS(2645), - [aux_sym__val_number_token3] = ACTIONS(2645), - [aux_sym__val_number_token4] = ACTIONS(4455), - [aux_sym__val_number_token5] = ACTIONS(4455), - [aux_sym__val_number_token6] = ACTIONS(4455), - [anon_sym_0b] = ACTIONS(2649), - [anon_sym_0o] = ACTIONS(2651), - [anon_sym_0x] = ACTIONS(2651), - [sym_val_date] = ACTIONS(4457), - [anon_sym_DQUOTE] = ACTIONS(2655), - [sym__str_single_quotes] = ACTIONS(2657), - [sym__str_back_ticks] = ACTIONS(2657), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2659), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2661), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4459), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2669), - }, - [1318] = { - [sym__val_range] = STATE(7973), - [sym__value] = STATE(3678), - [sym_val_nothing] = STATE(3702), - [sym_val_bool] = STATE(3612), - [sym_val_variable] = STATE(3702), - [sym_val_number] = STATE(3702), - [sym__val_number_decimal] = STATE(3401), - [sym__val_number] = STATE(3687), - [sym_val_duration] = STATE(3702), - [sym_val_filesize] = STATE(3702), - [sym_val_binary] = STATE(3702), - [sym_val_string] = STATE(3702), - [sym__raw_str] = STATE(3586), - [sym__str_double_quotes] = STATE(3586), - [sym_val_interpolated] = STATE(3702), - [sym__inter_single_quotes] = STATE(3700), - [sym__inter_double_quotes] = STATE(3661), - [sym_val_list] = STATE(3702), - [sym_val_record] = STATE(3702), - [sym_val_table] = STATE(3702), - [sym_val_closure] = STATE(3702), - [sym_unquoted] = STATE(3679), - [sym__unquoted_anonymous_prefix] = STATE(7566), - [sym_comment] = STATE(1318), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_DOLLAR] = ACTIONS(4395), - [anon_sym_LBRACE] = ACTIONS(4397), - [anon_sym_DOT_DOT] = ACTIONS(4399), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4401), - [anon_sym_DOT_DOT_LT] = ACTIONS(4401), - [anon_sym_null] = ACTIONS(4403), - [anon_sym_true] = ACTIONS(4405), - [anon_sym_false] = ACTIONS(4405), - [aux_sym__val_number_decimal_token1] = ACTIONS(4407), - [aux_sym__val_number_decimal_token2] = ACTIONS(4409), - [aux_sym__val_number_decimal_token3] = ACTIONS(4411), - [aux_sym__val_number_decimal_token4] = ACTIONS(4413), - [aux_sym__val_number_token1] = ACTIONS(4415), - [aux_sym__val_number_token2] = ACTIONS(4415), - [aux_sym__val_number_token3] = ACTIONS(4415), - [aux_sym__val_number_token4] = ACTIONS(4417), - [aux_sym__val_number_token5] = ACTIONS(4417), - [aux_sym__val_number_token6] = ACTIONS(4417), - [anon_sym_0b] = ACTIONS(4419), - [anon_sym_0o] = ACTIONS(4421), - [anon_sym_0x] = ACTIONS(4421), - [sym_val_date] = ACTIONS(4423), - [anon_sym_DQUOTE] = ACTIONS(4425), - [sym__str_single_quotes] = ACTIONS(4427), - [sym__str_back_ticks] = ACTIONS(4427), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4429), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4431), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4433), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4435), - }, - [1319] = { - [sym__val_range] = STATE(7727), - [sym__value] = STATE(1842), - [sym_val_nothing] = STATE(1738), - [sym_val_bool] = STATE(1670), - [sym_val_variable] = STATE(1738), - [sym_val_number] = STATE(1738), - [sym__val_number_decimal] = STATE(1391), - [sym__val_number] = STATE(1765), - [sym_val_duration] = STATE(1738), - [sym_val_filesize] = STATE(1738), - [sym_val_binary] = STATE(1738), - [sym_val_string] = STATE(1738), - [sym__raw_str] = STATE(1783), - [sym__str_double_quotes] = STATE(1783), - [sym_val_interpolated] = STATE(1738), - [sym__inter_single_quotes] = STATE(1768), - [sym__inter_double_quotes] = STATE(1769), - [sym_val_list] = STATE(1738), - [sym_val_record] = STATE(1738), - [sym_val_table] = STATE(1738), - [sym_val_closure] = STATE(1738), - [sym_unquoted] = STATE(1843), - [sym__unquoted_anonymous_prefix] = STATE(7745), - [sym_comment] = STATE(1319), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_LPAREN] = ACTIONS(4437), - [anon_sym_DOLLAR] = ACTIONS(4055), - [anon_sym_LBRACE] = ACTIONS(2627), - [anon_sym_DOT_DOT] = ACTIONS(4439), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4441), - [anon_sym_DOT_DOT_LT] = ACTIONS(4441), - [anon_sym_null] = ACTIONS(4443), - [anon_sym_true] = ACTIONS(4445), - [anon_sym_false] = ACTIONS(4445), - [aux_sym__val_number_decimal_token1] = ACTIONS(4447), - [aux_sym__val_number_decimal_token2] = ACTIONS(4449), - [aux_sym__val_number_decimal_token3] = ACTIONS(4451), - [aux_sym__val_number_decimal_token4] = ACTIONS(4453), - [aux_sym__val_number_token1] = ACTIONS(2645), - [aux_sym__val_number_token2] = ACTIONS(2645), - [aux_sym__val_number_token3] = ACTIONS(2645), - [aux_sym__val_number_token4] = ACTIONS(4455), - [aux_sym__val_number_token5] = ACTIONS(4455), - [aux_sym__val_number_token6] = ACTIONS(4455), - [anon_sym_0b] = ACTIONS(2649), - [anon_sym_0o] = ACTIONS(2651), - [anon_sym_0x] = ACTIONS(2651), - [sym_val_date] = ACTIONS(4457), - [anon_sym_DQUOTE] = ACTIONS(2655), - [sym__str_single_quotes] = ACTIONS(2657), - [sym__str_back_ticks] = ACTIONS(2657), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2659), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2661), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4459), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2669), - }, - [1320] = { - [sym__val_range] = STATE(7727), - [sym__value] = STATE(1814), - [sym_val_nothing] = STATE(1738), - [sym_val_bool] = STATE(1670), - [sym_val_variable] = STATE(1738), - [sym_val_number] = STATE(1738), - [sym__val_number_decimal] = STATE(1391), - [sym__val_number] = STATE(1765), - [sym_val_duration] = STATE(1738), - [sym_val_filesize] = STATE(1738), - [sym_val_binary] = STATE(1738), - [sym_val_string] = STATE(1738), - [sym__raw_str] = STATE(1783), - [sym__str_double_quotes] = STATE(1783), - [sym_val_interpolated] = STATE(1738), - [sym__inter_single_quotes] = STATE(1768), - [sym__inter_double_quotes] = STATE(1769), - [sym_val_list] = STATE(1738), - [sym_val_record] = STATE(1738), - [sym_val_table] = STATE(1738), - [sym_val_closure] = STATE(1738), - [sym_unquoted] = STATE(1795), - [sym__unquoted_anonymous_prefix] = STATE(7745), - [sym_comment] = STATE(1320), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_LPAREN] = ACTIONS(4437), - [anon_sym_DOLLAR] = ACTIONS(4055), - [anon_sym_LBRACE] = ACTIONS(2627), - [anon_sym_DOT_DOT] = ACTIONS(4439), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4441), - [anon_sym_DOT_DOT_LT] = ACTIONS(4441), - [anon_sym_null] = ACTIONS(4443), - [anon_sym_true] = ACTIONS(4445), - [anon_sym_false] = ACTIONS(4445), - [aux_sym__val_number_decimal_token1] = ACTIONS(4447), - [aux_sym__val_number_decimal_token2] = ACTIONS(4449), - [aux_sym__val_number_decimal_token3] = ACTIONS(4451), - [aux_sym__val_number_decimal_token4] = ACTIONS(4453), - [aux_sym__val_number_token1] = ACTIONS(2645), - [aux_sym__val_number_token2] = ACTIONS(2645), - [aux_sym__val_number_token3] = ACTIONS(2645), - [aux_sym__val_number_token4] = ACTIONS(4455), - [aux_sym__val_number_token5] = ACTIONS(4455), - [aux_sym__val_number_token6] = ACTIONS(4455), - [anon_sym_0b] = ACTIONS(2649), - [anon_sym_0o] = ACTIONS(2651), - [anon_sym_0x] = ACTIONS(2651), - [sym_val_date] = ACTIONS(4457), - [anon_sym_DQUOTE] = ACTIONS(2655), - [sym__str_single_quotes] = ACTIONS(2657), - [sym__str_back_ticks] = ACTIONS(2657), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2659), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2661), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4459), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2669), - }, - [1321] = { - [sym__val_range] = STATE(7866), - [sym__value] = STATE(5967), - [sym_val_nothing] = STATE(5929), - [sym_val_bool] = STATE(5701), - [sym_val_variable] = STATE(5929), - [sym_val_number] = STATE(5929), - [sym__val_number_decimal] = STATE(5135), - [sym__val_number] = STATE(5877), - [sym_val_duration] = STATE(5929), - [sym_val_filesize] = STATE(5929), - [sym_val_binary] = STATE(5929), - [sym_val_string] = STATE(5929), - [sym__raw_str] = STATE(5530), - [sym__str_double_quotes] = STATE(5530), - [sym_val_interpolated] = STATE(5929), - [sym__inter_single_quotes] = STATE(5843), - [sym__inter_double_quotes] = STATE(5844), - [sym_val_list] = STATE(5929), - [sym_val_record] = STATE(5929), - [sym_val_table] = STATE(5929), - [sym_val_closure] = STATE(5929), - [sym_unquoted] = STATE(5968), - [sym__unquoted_anonymous_prefix] = STATE(7974), - [sym_comment] = STATE(1321), - [anon_sym_LBRACK] = ACTIONS(4461), - [anon_sym_LPAREN] = ACTIONS(4463), - [anon_sym_DOLLAR] = ACTIONS(4465), - [anon_sym_LBRACE] = ACTIONS(4467), - [anon_sym_DOT_DOT] = ACTIONS(4469), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4471), - [anon_sym_DOT_DOT_LT] = ACTIONS(4471), - [anon_sym_null] = ACTIONS(4473), - [anon_sym_true] = ACTIONS(4475), - [anon_sym_false] = ACTIONS(4475), - [aux_sym__val_number_decimal_token1] = ACTIONS(4477), - [aux_sym__val_number_decimal_token2] = ACTIONS(4479), - [aux_sym__val_number_decimal_token3] = ACTIONS(4481), - [aux_sym__val_number_decimal_token4] = ACTIONS(4483), - [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(4487), - [aux_sym__val_number_token5] = ACTIONS(4487), - [aux_sym__val_number_token6] = ACTIONS(4487), - [anon_sym_0b] = ACTIONS(4489), - [anon_sym_0o] = ACTIONS(4491), - [anon_sym_0x] = ACTIONS(4491), - [sym_val_date] = ACTIONS(4493), - [anon_sym_DQUOTE] = ACTIONS(4495), - [sym__str_single_quotes] = ACTIONS(4497), - [sym__str_back_ticks] = ACTIONS(4497), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4499), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4501), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4503), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4505), - }, - [1322] = { - [sym__val_range] = STATE(7727), - [sym__value] = STATE(1736), - [sym_val_nothing] = STATE(1738), - [sym_val_bool] = STATE(1670), - [sym_val_variable] = STATE(1738), - [sym_val_number] = STATE(1738), - [sym__val_number_decimal] = STATE(1391), - [sym__val_number] = STATE(1765), - [sym_val_duration] = STATE(1738), - [sym_val_filesize] = STATE(1738), - [sym_val_binary] = STATE(1738), - [sym_val_string] = STATE(1738), - [sym__raw_str] = STATE(1783), - [sym__str_double_quotes] = STATE(1783), - [sym_val_interpolated] = STATE(1738), - [sym__inter_single_quotes] = STATE(1768), - [sym__inter_double_quotes] = STATE(1769), - [sym_val_list] = STATE(1738), - [sym_val_record] = STATE(1738), - [sym_val_table] = STATE(1738), - [sym_val_closure] = STATE(1738), - [sym_unquoted] = STATE(1737), - [sym__unquoted_anonymous_prefix] = STATE(7745), - [sym_comment] = STATE(1322), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_LPAREN] = ACTIONS(4437), - [anon_sym_DOLLAR] = ACTIONS(4055), - [anon_sym_LBRACE] = ACTIONS(2627), - [anon_sym_DOT_DOT] = ACTIONS(4439), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4441), - [anon_sym_DOT_DOT_LT] = ACTIONS(4441), - [anon_sym_null] = ACTIONS(4443), - [anon_sym_true] = ACTIONS(4445), - [anon_sym_false] = ACTIONS(4445), - [aux_sym__val_number_decimal_token1] = ACTIONS(4447), - [aux_sym__val_number_decimal_token2] = ACTIONS(4449), - [aux_sym__val_number_decimal_token3] = ACTIONS(4451), - [aux_sym__val_number_decimal_token4] = ACTIONS(4453), - [aux_sym__val_number_token1] = ACTIONS(2645), - [aux_sym__val_number_token2] = ACTIONS(2645), - [aux_sym__val_number_token3] = ACTIONS(2645), - [aux_sym__val_number_token4] = ACTIONS(4455), - [aux_sym__val_number_token5] = ACTIONS(4455), - [aux_sym__val_number_token6] = ACTIONS(4455), - [anon_sym_0b] = ACTIONS(2649), - [anon_sym_0o] = ACTIONS(2651), - [anon_sym_0x] = ACTIONS(2651), - [sym_val_date] = ACTIONS(4457), - [anon_sym_DQUOTE] = ACTIONS(2655), - [sym__str_single_quotes] = ACTIONS(2657), - [sym__str_back_ticks] = ACTIONS(2657), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2659), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2661), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4459), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2669), - }, - [1323] = { - [sym__val_range] = STATE(7866), - [sym__value] = STATE(5794), - [sym_val_nothing] = STATE(5929), - [sym_val_bool] = STATE(5701), - [sym_val_variable] = STATE(5929), - [sym_val_number] = STATE(5929), - [sym__val_number_decimal] = STATE(5135), - [sym__val_number] = STATE(5877), - [sym_val_duration] = STATE(5929), - [sym_val_filesize] = STATE(5929), - [sym_val_binary] = STATE(5929), - [sym_val_string] = STATE(5929), - [sym__raw_str] = STATE(5530), - [sym__str_double_quotes] = STATE(5530), - [sym_val_interpolated] = STATE(5929), - [sym__inter_single_quotes] = STATE(5843), - [sym__inter_double_quotes] = STATE(5844), - [sym_val_list] = STATE(5929), - [sym_val_record] = STATE(5929), - [sym_val_table] = STATE(5929), - [sym_val_closure] = STATE(5929), - [sym_unquoted] = STATE(5799), - [sym__unquoted_anonymous_prefix] = STATE(7974), - [sym_comment] = STATE(1323), - [anon_sym_LBRACK] = ACTIONS(4461), - [anon_sym_LPAREN] = ACTIONS(4463), - [anon_sym_DOLLAR] = ACTIONS(4465), - [anon_sym_LBRACE] = ACTIONS(4467), - [anon_sym_DOT_DOT] = ACTIONS(4469), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4471), - [anon_sym_DOT_DOT_LT] = ACTIONS(4471), - [anon_sym_null] = ACTIONS(4473), - [anon_sym_true] = ACTIONS(4475), - [anon_sym_false] = ACTIONS(4475), - [aux_sym__val_number_decimal_token1] = ACTIONS(4477), - [aux_sym__val_number_decimal_token2] = ACTIONS(4479), - [aux_sym__val_number_decimal_token3] = ACTIONS(4481), - [aux_sym__val_number_decimal_token4] = ACTIONS(4483), - [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(4487), - [aux_sym__val_number_token5] = ACTIONS(4487), - [aux_sym__val_number_token6] = ACTIONS(4487), - [anon_sym_0b] = ACTIONS(4489), - [anon_sym_0o] = ACTIONS(4491), - [anon_sym_0x] = ACTIONS(4491), - [sym_val_date] = ACTIONS(4493), - [anon_sym_DQUOTE] = ACTIONS(4495), - [sym__str_single_quotes] = ACTIONS(4497), - [sym__str_back_ticks] = ACTIONS(4497), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4499), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4501), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4503), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4505), - }, - [1324] = { - [sym__expr_parenthesized_immediate] = STATE(1834), - [sym__immediate_decimal] = STATE(1835), - [sym_val_variable] = STATE(1834), - [sym_comment] = STATE(1324), - [sym__newline] = ACTIONS(1591), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_PIPE] = ACTIONS(1591), - [anon_sym_err_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_GT_PIPE] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1591), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_RPAREN] = ACTIONS(1591), - [anon_sym_DOLLAR] = ACTIONS(4055), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_DASH2] = ACTIONS(1581), - [anon_sym_LBRACE] = ACTIONS(1591), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1581), - [anon_sym_LPAREN2] = ACTIONS(4057), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT] = ACTIONS(1591), - [aux_sym__immediate_decimal_token1] = ACTIONS(4507), - [aux_sym__immediate_decimal_token3] = ACTIONS(4509), - [aux_sym__immediate_decimal_token4] = ACTIONS(4511), - [aux_sym__immediate_decimal_token5] = ACTIONS(4513), - [anon_sym_null] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [aux_sym__val_number_decimal_token1] = ACTIONS(1581), - [aux_sym__val_number_decimal_token2] = ACTIONS(1581), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1581), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [aux_sym__val_number_token4] = ACTIONS(1591), - [aux_sym__val_number_token5] = ACTIONS(1591), - [aux_sym__val_number_token6] = ACTIONS(1591), - [anon_sym_0b] = ACTIONS(1581), - [anon_sym_0o] = ACTIONS(1581), - [anon_sym_0x] = ACTIONS(1581), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), - [anon_sym_err_GT] = ACTIONS(1581), - [anon_sym_out_GT] = ACTIONS(1581), - [anon_sym_e_GT] = ACTIONS(1581), - [anon_sym_o_GT] = ACTIONS(1581), - [anon_sym_err_PLUSout_GT] = ACTIONS(1581), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1581), - [anon_sym_o_PLUSe_GT] = ACTIONS(1581), - [anon_sym_e_PLUSo_GT] = ACTIONS(1581), - [anon_sym_err_GT_GT] = ACTIONS(1591), - [anon_sym_out_GT_GT] = ACTIONS(1591), - [anon_sym_e_GT_GT] = ACTIONS(1591), - [anon_sym_o_GT_GT] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), - [aux_sym_unquoted_token1] = ACTIONS(1581), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1591), - }, - [1325] = { - [sym__val_range] = STATE(7572), - [sym__value] = STATE(6049), - [sym_val_nothing] = STATE(2112), - [sym_val_bool] = STATE(7458), - [sym_val_variable] = STATE(2112), - [sym_val_number] = STATE(2112), - [sym__val_number_decimal] = STATE(5622), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(2112), - [sym_val_filesize] = STATE(2112), - [sym_val_binary] = STATE(2112), - [sym_val_string] = STATE(2112), - [sym__raw_str] = STATE(4492), - [sym__str_double_quotes] = STATE(4492), - [sym_val_interpolated] = STATE(2112), - [sym__inter_single_quotes] = STATE(2131), - [sym__inter_double_quotes] = STATE(2132), - [sym_val_list] = STATE(2112), - [sym_val_record] = STATE(2112), - [sym_val_table] = STATE(2112), - [sym_val_closure] = STATE(2112), - [sym_unquoted] = STATE(6050), - [sym__unquoted_anonymous_prefix] = STATE(7585), - [sym_comment] = STATE(1325), - [anon_sym_LBRACK] = ACTIONS(3983), - [anon_sym_LPAREN] = ACTIONS(4211), - [anon_sym_DOLLAR] = ACTIONS(4213), - [anon_sym_LBRACE] = ACTIONS(3987), - [anon_sym_DOT_DOT] = ACTIONS(4215), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4217), - [anon_sym_DOT_DOT_LT] = ACTIONS(4217), - [anon_sym_null] = ACTIONS(3993), - [anon_sym_true] = ACTIONS(3995), - [anon_sym_false] = ACTIONS(3995), - [aux_sym__val_number_decimal_token1] = ACTIONS(3997), - [aux_sym__val_number_decimal_token2] = ACTIONS(3999), - [aux_sym__val_number_decimal_token3] = ACTIONS(4001), - [aux_sym__val_number_decimal_token4] = ACTIONS(4003), + [anon_sym_LBRACK] = ACTIONS(3975), + [anon_sym_LPAREN] = ACTIONS(4327), + [anon_sym_DOLLAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(3979), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4333), + [anon_sym_DOT_DOT_LT] = ACTIONS(4333), + [anon_sym_null] = ACTIONS(3985), + [anon_sym_true] = ACTIONS(3987), + [anon_sym_false] = ACTIONS(3987), + [aux_sym__val_number_decimal_token1] = ACTIONS(3989), + [aux_sym__val_number_decimal_token2] = ACTIONS(3991), + [aux_sym__val_number_decimal_token3] = ACTIONS(3993), + [aux_sym__val_number_decimal_token4] = ACTIONS(3995), [aux_sym__val_number_token1] = ACTIONS(427), [aux_sym__val_number_token2] = ACTIONS(427), [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(4005), - [aux_sym__val_number_token5] = ACTIONS(4005), - [aux_sym__val_number_token6] = ACTIONS(4005), + [aux_sym__val_number_token4] = ACTIONS(3997), + [aux_sym__val_number_token5] = ACTIONS(3997), + [aux_sym__val_number_token6] = ACTIONS(3997), [anon_sym_0b] = ACTIONS(229), [anon_sym_0o] = ACTIONS(231), [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(4007), - [anon_sym_DQUOTE] = ACTIONS(4009), - [sym__str_single_quotes] = ACTIONS(4011), - [sym__str_back_ticks] = ACTIONS(4011), + [sym_val_date] = ACTIONS(3999), + [anon_sym_DQUOTE] = ACTIONS(4001), + [sym__str_single_quotes] = ACTIONS(4003), + [sym__str_back_ticks] = ACTIONS(4003), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4013), - }, - [1326] = { - [sym__val_range] = STATE(7866), - [sym__value] = STATE(5848), - [sym_val_nothing] = STATE(5929), - [sym_val_bool] = STATE(5701), - [sym_val_variable] = STATE(5929), - [sym_val_number] = STATE(5929), - [sym__val_number_decimal] = STATE(5135), - [sym__val_number] = STATE(5877), - [sym_val_duration] = STATE(5929), - [sym_val_filesize] = STATE(5929), - [sym_val_binary] = STATE(5929), - [sym_val_string] = STATE(5929), - [sym__raw_str] = STATE(5530), - [sym__str_double_quotes] = STATE(5530), - [sym_val_interpolated] = STATE(5929), - [sym__inter_single_quotes] = STATE(5843), - [sym__inter_double_quotes] = STATE(5844), - [sym_val_list] = STATE(5929), - [sym_val_record] = STATE(5929), - [sym_val_table] = STATE(5929), - [sym_val_closure] = STATE(5929), - [sym_unquoted] = STATE(5898), - [sym__unquoted_anonymous_prefix] = STATE(7974), - [sym_comment] = STATE(1326), - [anon_sym_LBRACK] = ACTIONS(4461), - [anon_sym_LPAREN] = ACTIONS(4463), - [anon_sym_DOLLAR] = ACTIONS(4465), - [anon_sym_LBRACE] = ACTIONS(4467), - [anon_sym_DOT_DOT] = ACTIONS(4469), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4471), - [anon_sym_DOT_DOT_LT] = ACTIONS(4471), - [anon_sym_null] = ACTIONS(4473), - [anon_sym_true] = ACTIONS(4475), - [anon_sym_false] = ACTIONS(4475), - [aux_sym__val_number_decimal_token1] = ACTIONS(4477), - [aux_sym__val_number_decimal_token2] = ACTIONS(4479), - [aux_sym__val_number_decimal_token3] = ACTIONS(4481), - [aux_sym__val_number_decimal_token4] = ACTIONS(4483), - [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(4487), - [aux_sym__val_number_token5] = ACTIONS(4487), - [aux_sym__val_number_token6] = ACTIONS(4487), - [anon_sym_0b] = ACTIONS(4489), - [anon_sym_0o] = ACTIONS(4491), - [anon_sym_0x] = ACTIONS(4491), - [sym_val_date] = ACTIONS(4493), - [anon_sym_DQUOTE] = ACTIONS(4495), - [sym__str_single_quotes] = ACTIONS(4497), - [sym__str_back_ticks] = ACTIONS(4497), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4499), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4501), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4503), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4505), - }, - [1327] = { - [sym__val_range] = STATE(7627), - [sym__value] = STATE(5570), - [sym_val_nothing] = STATE(3532), - [sym_val_bool] = STATE(5531), - [sym_val_variable] = STATE(3532), - [sym_val_number] = STATE(3532), - [sym__val_number_decimal] = STATE(4927), - [sym__val_number] = STATE(3492), - [sym_val_duration] = STATE(3532), - [sym_val_filesize] = STATE(3532), - [sym_val_binary] = STATE(3532), - [sym_val_string] = STATE(3532), - [sym__raw_str] = STATE(3335), - [sym__str_double_quotes] = STATE(3335), - [sym_val_interpolated] = STATE(3532), - [sym__inter_single_quotes] = STATE(3486), - [sym__inter_double_quotes] = STATE(3489), - [sym_val_list] = STATE(3532), - [sym_val_record] = STATE(3532), - [sym_val_table] = STATE(3532), - [sym_val_closure] = STATE(3532), - [sym_unquoted] = STATE(5589), - [sym__unquoted_anonymous_prefix] = STATE(7630), - [sym_comment] = STATE(1327), - [anon_sym_LBRACK] = ACTIONS(4515), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_DOLLAR] = ACTIONS(4519), - [anon_sym_LBRACE] = ACTIONS(4521), - [anon_sym_DOT_DOT] = ACTIONS(4523), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4525), - [anon_sym_DOT_DOT_LT] = ACTIONS(4525), - [anon_sym_null] = ACTIONS(4527), - [anon_sym_true] = ACTIONS(4529), - [anon_sym_false] = ACTIONS(4529), - [aux_sym__val_number_decimal_token1] = ACTIONS(4531), - [aux_sym__val_number_decimal_token2] = ACTIONS(4533), - [aux_sym__val_number_decimal_token3] = ACTIONS(4535), - [aux_sym__val_number_decimal_token4] = ACTIONS(4537), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [aux_sym__val_number_token4] = ACTIONS(4539), - [aux_sym__val_number_token5] = ACTIONS(4539), - [aux_sym__val_number_token6] = ACTIONS(4539), - [anon_sym_0b] = ACTIONS(3471), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(4541), - [anon_sym_DQUOTE] = ACTIONS(4543), - [sym__str_single_quotes] = ACTIONS(4545), - [sym__str_back_ticks] = ACTIONS(4545), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3485), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4547), - }, - [1328] = { - [sym__val_range] = STATE(7866), - [sym__value] = STATE(5868), - [sym_val_nothing] = STATE(5929), - [sym_val_bool] = STATE(5701), - [sym_val_variable] = STATE(5929), - [sym_val_number] = STATE(5929), - [sym__val_number_decimal] = STATE(5135), - [sym__val_number] = STATE(5877), - [sym_val_duration] = STATE(5929), - [sym_val_filesize] = STATE(5929), - [sym_val_binary] = STATE(5929), - [sym_val_string] = STATE(5929), - [sym__raw_str] = STATE(5530), - [sym__str_double_quotes] = STATE(5530), - [sym_val_interpolated] = STATE(5929), - [sym__inter_single_quotes] = STATE(5843), - [sym__inter_double_quotes] = STATE(5844), - [sym_val_list] = STATE(5929), - [sym_val_record] = STATE(5929), - [sym_val_table] = STATE(5929), - [sym_val_closure] = STATE(5929), - [sym_unquoted] = STATE(5870), - [sym__unquoted_anonymous_prefix] = STATE(7974), - [sym_comment] = STATE(1328), - [anon_sym_LBRACK] = ACTIONS(4461), - [anon_sym_LPAREN] = ACTIONS(4463), - [anon_sym_DOLLAR] = ACTIONS(4465), - [anon_sym_LBRACE] = ACTIONS(4467), - [anon_sym_DOT_DOT] = ACTIONS(4469), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4471), - [anon_sym_DOT_DOT_LT] = ACTIONS(4471), - [anon_sym_null] = ACTIONS(4473), - [anon_sym_true] = ACTIONS(4475), - [anon_sym_false] = ACTIONS(4475), - [aux_sym__val_number_decimal_token1] = ACTIONS(4477), - [aux_sym__val_number_decimal_token2] = ACTIONS(4479), - [aux_sym__val_number_decimal_token3] = ACTIONS(4481), - [aux_sym__val_number_decimal_token4] = ACTIONS(4483), - [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(4487), - [aux_sym__val_number_token5] = ACTIONS(4487), - [aux_sym__val_number_token6] = ACTIONS(4487), - [anon_sym_0b] = ACTIONS(4489), - [anon_sym_0o] = ACTIONS(4491), - [anon_sym_0x] = ACTIONS(4491), - [sym_val_date] = ACTIONS(4493), - [anon_sym_DQUOTE] = ACTIONS(4495), - [sym__str_single_quotes] = ACTIONS(4497), - [sym__str_back_ticks] = ACTIONS(4497), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4499), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4501), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4503), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4505), - }, - [1329] = { - [sym__val_range] = STATE(7627), - [sym__value] = STATE(5612), - [sym_val_nothing] = STATE(3532), - [sym_val_bool] = STATE(5531), - [sym_val_variable] = STATE(3532), - [sym_val_number] = STATE(3532), - [sym__val_number_decimal] = STATE(4927), - [sym__val_number] = STATE(3492), - [sym_val_duration] = STATE(3532), - [sym_val_filesize] = STATE(3532), - [sym_val_binary] = STATE(3532), - [sym_val_string] = STATE(3532), - [sym__raw_str] = STATE(3335), - [sym__str_double_quotes] = STATE(3335), - [sym_val_interpolated] = STATE(3532), - [sym__inter_single_quotes] = STATE(3486), - [sym__inter_double_quotes] = STATE(3489), - [sym_val_list] = STATE(3532), - [sym_val_record] = STATE(3532), - [sym_val_table] = STATE(3532), - [sym_val_closure] = STATE(3532), - [sym_unquoted] = STATE(5617), - [sym__unquoted_anonymous_prefix] = STATE(7630), - [sym_comment] = STATE(1329), - [anon_sym_LBRACK] = ACTIONS(4515), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_DOLLAR] = ACTIONS(4519), - [anon_sym_LBRACE] = ACTIONS(4521), - [anon_sym_DOT_DOT] = ACTIONS(4523), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4525), - [anon_sym_DOT_DOT_LT] = ACTIONS(4525), - [anon_sym_null] = ACTIONS(4527), - [anon_sym_true] = ACTIONS(4529), - [anon_sym_false] = ACTIONS(4529), - [aux_sym__val_number_decimal_token1] = ACTIONS(4531), - [aux_sym__val_number_decimal_token2] = ACTIONS(4533), - [aux_sym__val_number_decimal_token3] = ACTIONS(4535), - [aux_sym__val_number_decimal_token4] = ACTIONS(4537), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [aux_sym__val_number_token4] = ACTIONS(4539), - [aux_sym__val_number_token5] = ACTIONS(4539), - [aux_sym__val_number_token6] = ACTIONS(4539), - [anon_sym_0b] = ACTIONS(3471), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(4541), - [anon_sym_DQUOTE] = ACTIONS(4543), - [sym__str_single_quotes] = ACTIONS(4545), - [sym__str_back_ticks] = ACTIONS(4545), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3485), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4547), + [sym_raw_string_begin] = ACTIONS(4005), }, - [1330] = { - [sym__val_range] = STATE(7627), - [sym__value] = STATE(5616), - [sym_val_nothing] = STATE(3532), - [sym_val_bool] = STATE(5531), - [sym_val_variable] = STATE(3532), - [sym_val_number] = STATE(3532), - [sym__val_number_decimal] = STATE(4927), - [sym__val_number] = STATE(3492), - [sym_val_duration] = STATE(3532), - [sym_val_filesize] = STATE(3532), - [sym_val_binary] = STATE(3532), - [sym_val_string] = STATE(3532), - [sym__raw_str] = STATE(3335), - [sym__str_double_quotes] = STATE(3335), - [sym_val_interpolated] = STATE(3532), - [sym__inter_single_quotes] = STATE(3486), - [sym__inter_double_quotes] = STATE(3489), - [sym_val_list] = STATE(3532), - [sym_val_record] = STATE(3532), - [sym_val_table] = STATE(3532), - [sym_val_closure] = STATE(3532), - [sym_unquoted] = STATE(5547), - [sym__unquoted_anonymous_prefix] = STATE(7630), - [sym_comment] = STATE(1330), - [anon_sym_LBRACK] = ACTIONS(4515), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_DOLLAR] = ACTIONS(4519), - [anon_sym_LBRACE] = ACTIONS(4521), - [anon_sym_DOT_DOT] = ACTIONS(4523), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4525), - [anon_sym_DOT_DOT_LT] = ACTIONS(4525), - [anon_sym_null] = ACTIONS(4527), - [anon_sym_true] = ACTIONS(4529), - [anon_sym_false] = ACTIONS(4529), - [aux_sym__val_number_decimal_token1] = ACTIONS(4531), - [aux_sym__val_number_decimal_token2] = ACTIONS(4533), - [aux_sym__val_number_decimal_token3] = ACTIONS(4535), - [aux_sym__val_number_decimal_token4] = ACTIONS(4537), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [aux_sym__val_number_token4] = ACTIONS(4539), - [aux_sym__val_number_token5] = ACTIONS(4539), - [aux_sym__val_number_token6] = ACTIONS(4539), - [anon_sym_0b] = ACTIONS(3471), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(4541), - [anon_sym_DQUOTE] = ACTIONS(4543), - [sym__str_single_quotes] = ACTIONS(4545), - [sym__str_back_ticks] = ACTIONS(4545), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3485), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4547), + [1317] = { + [sym__val_range] = STATE(7779), + [sym__value] = STATE(5004), + [sym_val_nothing] = STATE(4888), + [sym_val_bool] = STATE(4601), + [sym_val_variable] = STATE(4888), + [sym_val_number] = STATE(4888), + [sym__val_number_decimal] = STATE(4115), + [sym__val_number] = STATE(4852), + [sym_val_duration] = STATE(4888), + [sym_val_filesize] = STATE(4888), + [sym_val_binary] = STATE(4888), + [sym_val_string] = STATE(4888), + [sym__raw_str] = STATE(4528), + [sym__str_double_quotes] = STATE(4528), + [sym_val_interpolated] = STATE(4888), + [sym__inter_single_quotes] = STATE(4891), + [sym__inter_double_quotes] = STATE(4896), + [sym_val_list] = STATE(4888), + [sym_val_record] = STATE(4888), + [sym_val_table] = STATE(4888), + [sym_val_closure] = STATE(4888), + [sym_unquoted] = STATE(4839), + [sym__unquoted_anonymous_prefix] = STATE(8056), + [sym_comment] = STATE(1317), + [anon_sym_LBRACK] = ACTIONS(4501), + [anon_sym_LPAREN] = ACTIONS(4503), + [anon_sym_DOLLAR] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_DOT_DOT] = ACTIONS(4509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4511), + [anon_sym_DOT_DOT_LT] = ACTIONS(4511), + [anon_sym_null] = ACTIONS(4513), + [anon_sym_true] = ACTIONS(4515), + [anon_sym_false] = ACTIONS(4515), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(4517), + [aux_sym__val_number_decimal_token3] = ACTIONS(4519), + [aux_sym__val_number_decimal_token4] = ACTIONS(4521), + [aux_sym__val_number_token1] = ACTIONS(4523), + [aux_sym__val_number_token2] = ACTIONS(4523), + [aux_sym__val_number_token3] = ACTIONS(4523), + [aux_sym__val_number_token4] = ACTIONS(4525), + [aux_sym__val_number_token5] = ACTIONS(4525), + [aux_sym__val_number_token6] = ACTIONS(4525), + [anon_sym_0b] = ACTIONS(2096), + [anon_sym_0o] = ACTIONS(2098), + [anon_sym_0x] = ACTIONS(2098), + [sym_val_date] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(4529), + [sym__str_single_quotes] = ACTIONS(4531), + [sym__str_back_ticks] = ACTIONS(4531), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4533), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4535), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(2114), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2116), }, - [1331] = { - [sym__val_range] = STATE(7627), - [sym__value] = STATE(5533), - [sym_val_nothing] = STATE(3532), - [sym_val_bool] = STATE(5531), - [sym_val_variable] = STATE(3532), - [sym_val_number] = STATE(3532), - [sym__val_number_decimal] = STATE(4927), - [sym__val_number] = STATE(3492), - [sym_val_duration] = STATE(3532), - [sym_val_filesize] = STATE(3532), - [sym_val_binary] = STATE(3532), - [sym_val_string] = STATE(3532), - [sym__raw_str] = STATE(3335), - [sym__str_double_quotes] = STATE(3335), - [sym_val_interpolated] = STATE(3532), - [sym__inter_single_quotes] = STATE(3486), - [sym__inter_double_quotes] = STATE(3489), - [sym_val_list] = STATE(3532), - [sym_val_record] = STATE(3532), - [sym_val_table] = STATE(3532), - [sym_val_closure] = STATE(3532), - [sym_unquoted] = STATE(5542), - [sym__unquoted_anonymous_prefix] = STATE(7630), - [sym_comment] = STATE(1331), - [anon_sym_LBRACK] = ACTIONS(4515), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_DOLLAR] = ACTIONS(4519), - [anon_sym_LBRACE] = ACTIONS(4521), - [anon_sym_DOT_DOT] = ACTIONS(4523), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4525), - [anon_sym_DOT_DOT_LT] = ACTIONS(4525), - [anon_sym_null] = ACTIONS(4527), - [anon_sym_true] = ACTIONS(4529), - [anon_sym_false] = ACTIONS(4529), - [aux_sym__val_number_decimal_token1] = ACTIONS(4531), - [aux_sym__val_number_decimal_token2] = ACTIONS(4533), - [aux_sym__val_number_decimal_token3] = ACTIONS(4535), - [aux_sym__val_number_decimal_token4] = ACTIONS(4537), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [aux_sym__val_number_token4] = ACTIONS(4539), - [aux_sym__val_number_token5] = ACTIONS(4539), - [aux_sym__val_number_token6] = ACTIONS(4539), - [anon_sym_0b] = ACTIONS(3471), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(4541), - [anon_sym_DQUOTE] = ACTIONS(4543), - [sym__str_single_quotes] = ACTIONS(4545), - [sym__str_back_ticks] = ACTIONS(4545), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3485), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4547), + [1318] = { + [sym__expr_parenthesized_immediate] = STATE(1893), + [sym__immediate_decimal] = STATE(1719), + [sym_val_variable] = STATE(1893), + [sym_comment] = STATE(1318), + [ts_builtin_sym_end] = ACTIONS(1557), + [sym__newline] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_err_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_GT_PIPE] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1557), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(4419), + [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_DASH2] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_DOT_DOT] = ACTIONS(1543), + [anon_sym_LPAREN2] = ACTIONS(4487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1557), + [anon_sym_DOT_DOT_LT] = ACTIONS(1557), + [aux_sym__immediate_decimal_token1] = ACTIONS(4489), + [aux_sym__immediate_decimal_token3] = ACTIONS(4491), + [aux_sym__immediate_decimal_token4] = ACTIONS(4493), + [aux_sym__immediate_decimal_token5] = ACTIONS(4495), + [anon_sym_null] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [aux_sym__val_number_decimal_token1] = ACTIONS(1543), + [aux_sym__val_number_decimal_token2] = ACTIONS(1543), + [aux_sym__val_number_decimal_token3] = ACTIONS(1543), + [aux_sym__val_number_decimal_token4] = ACTIONS(1543), + [aux_sym__val_number_token1] = ACTIONS(1557), + [aux_sym__val_number_token2] = ACTIONS(1557), + [aux_sym__val_number_token3] = ACTIONS(1557), + [aux_sym__val_number_token4] = ACTIONS(1557), + [aux_sym__val_number_token5] = ACTIONS(1557), + [aux_sym__val_number_token6] = ACTIONS(1557), + [anon_sym_0b] = ACTIONS(1543), + [anon_sym_0o] = ACTIONS(1543), + [anon_sym_0x] = ACTIONS(1543), + [sym_val_date] = ACTIONS(1557), + [anon_sym_DQUOTE] = ACTIONS(1557), + [sym__str_single_quotes] = ACTIONS(1557), + [sym__str_back_ticks] = ACTIONS(1557), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1557), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1557), + [anon_sym_err_GT] = ACTIONS(1543), + [anon_sym_out_GT] = ACTIONS(1543), + [anon_sym_e_GT] = ACTIONS(1543), + [anon_sym_o_GT] = ACTIONS(1543), + [anon_sym_err_PLUSout_GT] = ACTIONS(1543), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), + [anon_sym_o_PLUSe_GT] = ACTIONS(1543), + [anon_sym_e_PLUSo_GT] = ACTIONS(1543), + [anon_sym_err_GT_GT] = ACTIONS(1557), + [anon_sym_out_GT_GT] = ACTIONS(1557), + [anon_sym_e_GT_GT] = ACTIONS(1557), + [anon_sym_o_GT_GT] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1557), + [aux_sym_unquoted_token1] = ACTIONS(1543), + [aux_sym_unquoted_token2] = ACTIONS(1559), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1557), }, - [1332] = { - [sym__expr_parenthesized_immediate] = STATE(1844), - [sym__immediate_decimal] = STATE(1845), - [sym_val_variable] = STATE(1844), - [sym_comment] = STATE(1332), - [sym__newline] = ACTIONS(1693), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_PIPE] = ACTIONS(1693), - [anon_sym_err_GT_PIPE] = ACTIONS(1693), - [anon_sym_out_GT_PIPE] = ACTIONS(1693), - [anon_sym_e_GT_PIPE] = ACTIONS(1693), - [anon_sym_o_GT_PIPE] = ACTIONS(1693), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1693), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1693), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1693), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1693), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_RPAREN] = ACTIONS(1693), - [anon_sym_DOLLAR] = ACTIONS(4055), - [anon_sym_DASH_DASH] = ACTIONS(1693), - [anon_sym_DASH2] = ACTIONS(1691), - [anon_sym_LBRACE] = ACTIONS(1693), - [anon_sym_RBRACE] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1691), - [anon_sym_LPAREN2] = ACTIONS(4057), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1693), - [anon_sym_DOT_DOT_LT] = ACTIONS(1693), - [aux_sym__immediate_decimal_token1] = ACTIONS(4507), - [aux_sym__immediate_decimal_token3] = ACTIONS(4509), - [aux_sym__immediate_decimal_token4] = ACTIONS(4511), - [aux_sym__immediate_decimal_token5] = ACTIONS(4513), - [anon_sym_null] = ACTIONS(1693), - [anon_sym_true] = ACTIONS(1693), - [anon_sym_false] = ACTIONS(1693), - [aux_sym__val_number_decimal_token1] = ACTIONS(1691), - [aux_sym__val_number_decimal_token2] = ACTIONS(1691), - [aux_sym__val_number_decimal_token3] = ACTIONS(1691), - [aux_sym__val_number_decimal_token4] = ACTIONS(1691), - [aux_sym__val_number_token1] = ACTIONS(1693), - [aux_sym__val_number_token2] = ACTIONS(1693), - [aux_sym__val_number_token3] = ACTIONS(1693), - [aux_sym__val_number_token4] = ACTIONS(1693), - [aux_sym__val_number_token5] = ACTIONS(1693), - [aux_sym__val_number_token6] = ACTIONS(1693), - [anon_sym_0b] = ACTIONS(1691), - [anon_sym_0o] = ACTIONS(1691), - [anon_sym_0x] = ACTIONS(1691), - [sym_val_date] = ACTIONS(1693), - [anon_sym_DQUOTE] = ACTIONS(1693), - [sym__str_single_quotes] = ACTIONS(1693), - [sym__str_back_ticks] = ACTIONS(1693), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1693), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1693), - [anon_sym_err_GT] = ACTIONS(1691), - [anon_sym_out_GT] = ACTIONS(1691), - [anon_sym_e_GT] = ACTIONS(1691), - [anon_sym_o_GT] = ACTIONS(1691), - [anon_sym_err_PLUSout_GT] = ACTIONS(1691), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1691), - [anon_sym_o_PLUSe_GT] = ACTIONS(1691), - [anon_sym_e_PLUSo_GT] = ACTIONS(1691), - [anon_sym_err_GT_GT] = ACTIONS(1693), - [anon_sym_out_GT_GT] = ACTIONS(1693), - [anon_sym_e_GT_GT] = ACTIONS(1693), - [anon_sym_o_GT_GT] = ACTIONS(1693), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1693), - [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_token1] = ACTIONS(1691), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1693), + [1319] = { + [sym__val_range] = STATE(7780), + [sym__value] = STATE(3004), + [sym_val_nothing] = STATE(2937), + [sym_val_bool] = STATE(2886), + [sym_val_variable] = STATE(2937), + [sym_val_number] = STATE(2937), + [sym__val_number_decimal] = STATE(2555), + [sym__val_number] = STATE(2962), + [sym_val_duration] = STATE(2937), + [sym_val_filesize] = STATE(2937), + [sym_val_binary] = STATE(2937), + [sym_val_string] = STATE(2937), + [sym__raw_str] = STATE(3005), + [sym__str_double_quotes] = STATE(3005), + [sym_val_interpolated] = STATE(2937), + [sym__inter_single_quotes] = STATE(2980), + [sym__inter_double_quotes] = STATE(2981), + [sym_val_list] = STATE(2937), + [sym_val_record] = STATE(2937), + [sym_val_table] = STATE(2937), + [sym_val_closure] = STATE(2937), + [sym_unquoted] = STATE(3012), + [sym__unquoted_anonymous_prefix] = STATE(7890), + [sym_comment] = STATE(1319), + [anon_sym_LBRACK] = ACTIONS(4281), + [anon_sym_LPAREN] = ACTIONS(4283), + [anon_sym_DOLLAR] = ACTIONS(4285), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_DOT_DOT] = ACTIONS(4289), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4291), + [anon_sym_DOT_DOT_LT] = ACTIONS(4291), + [anon_sym_null] = ACTIONS(4293), + [anon_sym_true] = ACTIONS(4295), + [anon_sym_false] = ACTIONS(4295), + [aux_sym__val_number_decimal_token1] = ACTIONS(4297), + [aux_sym__val_number_decimal_token2] = ACTIONS(4299), + [aux_sym__val_number_decimal_token3] = ACTIONS(4301), + [aux_sym__val_number_decimal_token4] = ACTIONS(4303), + [aux_sym__val_number_token1] = ACTIONS(4305), + [aux_sym__val_number_token2] = ACTIONS(4305), + [aux_sym__val_number_token3] = ACTIONS(4305), + [aux_sym__val_number_token4] = ACTIONS(4307), + [aux_sym__val_number_token5] = ACTIONS(4307), + [aux_sym__val_number_token6] = ACTIONS(4307), + [anon_sym_0b] = ACTIONS(4309), + [anon_sym_0o] = ACTIONS(4311), + [anon_sym_0x] = ACTIONS(4311), + [sym_val_date] = ACTIONS(4313), + [anon_sym_DQUOTE] = ACTIONS(4315), + [sym__str_single_quotes] = ACTIONS(4317), + [sym__str_back_ticks] = ACTIONS(4317), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4321), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4323), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4325), }, - [1333] = { - [sym__expr_parenthesized_immediate] = STATE(1846), - [sym__immediate_decimal] = STATE(1847), - [sym_val_variable] = STATE(1846), - [sym_comment] = STATE(1333), + [1320] = { + [sym__expr_parenthesized_immediate] = STATE(1740), + [sym__immediate_decimal] = STATE(1741), + [sym_val_variable] = STATE(1740), + [sym_comment] = STATE(1320), [sym__newline] = ACTIONS(1671), [anon_sym_SEMI] = ACTIONS(1671), [anon_sym_PIPE] = ACTIONS(1671), @@ -204164,19 +203505,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1671), [anon_sym_LPAREN] = ACTIONS(1663), [anon_sym_RPAREN] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(4055), + [anon_sym_DOLLAR] = ACTIONS(4033), [anon_sym_DASH_DASH] = ACTIONS(1671), [anon_sym_DASH2] = ACTIONS(1663), [anon_sym_LBRACE] = ACTIONS(1671), [anon_sym_RBRACE] = ACTIONS(1671), [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_LPAREN2] = ACTIONS(4057), + [anon_sym_LPAREN2] = ACTIONS(4035), [anon_sym_DOT_DOT_EQ] = ACTIONS(1671), [anon_sym_DOT_DOT_LT] = ACTIONS(1671), - [aux_sym__immediate_decimal_token1] = ACTIONS(4507), - [aux_sym__immediate_decimal_token3] = ACTIONS(4509), - [aux_sym__immediate_decimal_token4] = ACTIONS(4511), - [aux_sym__immediate_decimal_token5] = ACTIONS(4513), + [aux_sym__immediate_decimal_token1] = ACTIONS(4409), + [aux_sym__immediate_decimal_token3] = ACTIONS(4411), + [aux_sym__immediate_decimal_token4] = ACTIONS(4413), + [aux_sym__immediate_decimal_token5] = ACTIONS(4415), [anon_sym_null] = ACTIONS(1671), [anon_sym_true] = ACTIONS(1671), [anon_sym_false] = ACTIONS(1671), @@ -204219,964 +203560,1488 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1671), }, - [1334] = { - [sym__expr_parenthesized_immediate] = STATE(1848), - [sym__immediate_decimal] = STATE(1849), - [sym_val_variable] = STATE(1848), - [sym_comment] = STATE(1334), - [sym__newline] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_err_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_GT_PIPE] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), - [anon_sym_LBRACK] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_RPAREN] = ACTIONS(1707), - [anon_sym_DOLLAR] = ACTIONS(4055), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_DASH2] = ACTIONS(1705), - [anon_sym_LBRACE] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_DOT_DOT] = ACTIONS(1705), - [anon_sym_LPAREN2] = ACTIONS(4057), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1707), - [anon_sym_DOT_DOT_LT] = ACTIONS(1707), - [aux_sym__immediate_decimal_token1] = ACTIONS(4507), - [aux_sym__immediate_decimal_token3] = ACTIONS(4509), - [aux_sym__immediate_decimal_token4] = ACTIONS(4511), - [aux_sym__immediate_decimal_token5] = ACTIONS(4513), - [anon_sym_null] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(1707), - [anon_sym_false] = ACTIONS(1707), - [aux_sym__val_number_decimal_token1] = ACTIONS(1705), - [aux_sym__val_number_decimal_token2] = ACTIONS(1705), - [aux_sym__val_number_decimal_token3] = ACTIONS(1705), - [aux_sym__val_number_decimal_token4] = ACTIONS(1705), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [aux_sym__val_number_token4] = ACTIONS(1707), - [aux_sym__val_number_token5] = ACTIONS(1707), - [aux_sym__val_number_token6] = ACTIONS(1707), - [anon_sym_0b] = ACTIONS(1705), - [anon_sym_0o] = ACTIONS(1705), - [anon_sym_0x] = ACTIONS(1705), - [sym_val_date] = ACTIONS(1707), - [anon_sym_DQUOTE] = ACTIONS(1707), - [sym__str_single_quotes] = ACTIONS(1707), - [sym__str_back_ticks] = ACTIONS(1707), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1707), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1707), - [anon_sym_err_GT] = ACTIONS(1705), - [anon_sym_out_GT] = ACTIONS(1705), - [anon_sym_e_GT] = ACTIONS(1705), - [anon_sym_o_GT] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT] = ACTIONS(1705), - [anon_sym_err_GT_GT] = ACTIONS(1707), - [anon_sym_out_GT_GT] = ACTIONS(1707), - [anon_sym_e_GT_GT] = ACTIONS(1707), - [anon_sym_o_GT_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), - [aux_sym_unquoted_token1] = ACTIONS(1705), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1707), - }, - [1335] = { - [sym__val_range] = STATE(7673), - [sym__value] = STATE(6059), - [sym_val_nothing] = STATE(4907), - [sym_val_bool] = STATE(7042), - [sym_val_variable] = STATE(4907), - [sym_val_number] = STATE(4907), - [sym__val_number_decimal] = STATE(5550), - [sym__val_number] = STATE(4940), - [sym_val_duration] = STATE(4907), - [sym_val_filesize] = STATE(4907), - [sym_val_binary] = STATE(4907), - [sym_val_string] = STATE(4907), - [sym__raw_str] = STATE(4492), - [sym__str_double_quotes] = STATE(4492), - [sym_val_interpolated] = STATE(4907), - [sym__inter_single_quotes] = STATE(4952), - [sym__inter_double_quotes] = STATE(4953), - [sym_val_list] = STATE(4907), - [sym_val_record] = STATE(4907), - [sym_val_table] = STATE(4907), - [sym_val_closure] = STATE(4907), - [sym_unquoted] = STATE(6060), - [sym__unquoted_anonymous_prefix] = STATE(7821), - [sym_comment] = STATE(1335), - [anon_sym_LBRACK] = ACTIONS(4089), - [anon_sym_LPAREN] = ACTIONS(4091), - [anon_sym_DOLLAR] = ACTIONS(4119), - [anon_sym_LBRACE] = ACTIONS(4095), - [anon_sym_DOT_DOT] = ACTIONS(4097), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4099), - [anon_sym_DOT_DOT_LT] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4121), - [anon_sym_true] = ACTIONS(4123), - [anon_sym_false] = ACTIONS(4123), - [aux_sym__val_number_decimal_token1] = ACTIONS(4125), - [aux_sym__val_number_decimal_token2] = ACTIONS(4127), - [aux_sym__val_number_decimal_token3] = ACTIONS(4129), - [aux_sym__val_number_decimal_token4] = ACTIONS(4131), - [aux_sym__val_number_token1] = ACTIONS(3593), - [aux_sym__val_number_token2] = ACTIONS(3593), - [aux_sym__val_number_token3] = ACTIONS(3593), - [aux_sym__val_number_token4] = ACTIONS(4133), - [aux_sym__val_number_token5] = ACTIONS(4133), - [aux_sym__val_number_token6] = ACTIONS(4133), - [anon_sym_0b] = ACTIONS(3597), - [anon_sym_0o] = ACTIONS(3599), - [anon_sym_0x] = ACTIONS(3599), - [sym_val_date] = ACTIONS(4135), - [anon_sym_DQUOTE] = ACTIONS(4009), - [sym__str_single_quotes] = ACTIONS(4011), - [sym__str_back_ticks] = ACTIONS(4011), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4117), + [1321] = { + [sym__val_range] = STATE(7906), + [sym__value] = STATE(6217), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(7502), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(5707), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(4332), + [sym__str_double_quotes] = STATE(4332), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(6239), + [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym_comment] = STATE(1321), + [anon_sym_LBRACK] = ACTIONS(3975), + [anon_sym_LPAREN] = ACTIONS(4327), + [anon_sym_DOLLAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(3979), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4333), + [anon_sym_DOT_DOT_LT] = ACTIONS(4333), + [anon_sym_null] = ACTIONS(3985), + [anon_sym_true] = ACTIONS(3987), + [anon_sym_false] = ACTIONS(3987), + [aux_sym__val_number_decimal_token1] = ACTIONS(3989), + [aux_sym__val_number_decimal_token2] = ACTIONS(3991), + [aux_sym__val_number_decimal_token3] = ACTIONS(3993), + [aux_sym__val_number_decimal_token4] = ACTIONS(3995), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(3997), + [aux_sym__val_number_token5] = ACTIONS(3997), + [aux_sym__val_number_token6] = ACTIONS(3997), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3999), + [anon_sym_DQUOTE] = ACTIONS(4001), + [sym__str_single_quotes] = ACTIONS(4003), + [sym__str_back_ticks] = ACTIONS(4003), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3313), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4013), - }, - [1336] = { - [sym_comment] = STATE(1336), - [ts_builtin_sym_end] = ACTIONS(1609), - [sym__newline] = ACTIONS(1609), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_PIPE] = ACTIONS(1609), - [anon_sym_err_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_GT_PIPE] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1609), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_DOLLAR] = ACTIONS(1607), - [anon_sym_DASH_DASH] = ACTIONS(1609), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_LBRACE] = ACTIONS(1609), - [anon_sym_DOT_DOT] = ACTIONS(1607), - [anon_sym_LPAREN2] = ACTIONS(1609), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), - [anon_sym_DOT_DOT_LT] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(4551), - [anon_sym_null] = ACTIONS(1609), - [anon_sym_true] = ACTIONS(1609), - [anon_sym_false] = ACTIONS(1609), - [aux_sym__val_number_decimal_token1] = ACTIONS(1607), - [aux_sym__val_number_decimal_token2] = ACTIONS(1609), - [aux_sym__val_number_decimal_token3] = ACTIONS(1609), - [aux_sym__val_number_decimal_token4] = ACTIONS(1609), - [aux_sym__val_number_token1] = ACTIONS(1609), - [aux_sym__val_number_token2] = ACTIONS(1609), - [aux_sym__val_number_token3] = ACTIONS(1609), - [aux_sym__val_number_token4] = ACTIONS(1609), - [aux_sym__val_number_token5] = ACTIONS(1609), - [aux_sym__val_number_token6] = ACTIONS(1609), - [anon_sym_0b] = ACTIONS(1607), - [sym_filesize_unit] = ACTIONS(1609), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_0o] = ACTIONS(1607), - [anon_sym_0x] = ACTIONS(1607), - [sym_val_date] = ACTIONS(1609), - [anon_sym_DQUOTE] = ACTIONS(1609), - [sym__str_single_quotes] = ACTIONS(1609), - [sym__str_back_ticks] = ACTIONS(1609), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1609), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1609), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1609), - [anon_sym_out_GT_GT] = ACTIONS(1609), - [anon_sym_e_GT_GT] = ACTIONS(1609), - [anon_sym_o_GT_GT] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), - [aux_sym_unquoted_token1] = ACTIONS(1607), - [aux_sym_unquoted_token2] = ACTIONS(1607), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1609), + [sym_raw_string_begin] = ACTIONS(4005), }, - [1337] = { - [sym__expr_parenthesized_immediate] = STATE(1924), - [sym__immediate_decimal] = STATE(1675), - [sym_val_variable] = STATE(1924), - [sym_comment] = STATE(1337), - [ts_builtin_sym_end] = ACTIONS(1577), - [sym__newline] = ACTIONS(1577), - [anon_sym_SEMI] = ACTIONS(1577), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_err_GT_PIPE] = ACTIONS(1577), - [anon_sym_out_GT_PIPE] = ACTIONS(1577), - [anon_sym_e_GT_PIPE] = ACTIONS(1577), - [anon_sym_o_GT_PIPE] = ACTIONS(1577), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1577), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1577), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1577), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_DOLLAR] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(1577), - [anon_sym_DASH2] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1577), - [anon_sym_DOT_DOT] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(4221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1577), - [anon_sym_DOT_DOT_LT] = ACTIONS(1577), - [aux_sym__immediate_decimal_token1] = ACTIONS(4223), - [aux_sym__immediate_decimal_token3] = ACTIONS(4225), - [aux_sym__immediate_decimal_token4] = ACTIONS(4227), - [aux_sym__immediate_decimal_token5] = ACTIONS(4229), - [anon_sym_null] = ACTIONS(1577), - [anon_sym_true] = ACTIONS(1577), - [anon_sym_false] = ACTIONS(1577), - [aux_sym__val_number_decimal_token1] = ACTIONS(1565), - [aux_sym__val_number_decimal_token2] = ACTIONS(1565), - [aux_sym__val_number_decimal_token3] = ACTIONS(1565), - [aux_sym__val_number_decimal_token4] = ACTIONS(1565), - [aux_sym__val_number_token1] = ACTIONS(1577), - [aux_sym__val_number_token2] = ACTIONS(1577), - [aux_sym__val_number_token3] = ACTIONS(1577), - [aux_sym__val_number_token4] = ACTIONS(1577), - [aux_sym__val_number_token5] = ACTIONS(1577), - [aux_sym__val_number_token6] = ACTIONS(1577), - [anon_sym_0b] = ACTIONS(1565), - [anon_sym_0o] = ACTIONS(1565), - [anon_sym_0x] = ACTIONS(1565), - [sym_val_date] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1577), - [sym__str_single_quotes] = ACTIONS(1577), - [sym__str_back_ticks] = ACTIONS(1577), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1577), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1577), - [anon_sym_err_GT] = ACTIONS(1565), - [anon_sym_out_GT] = ACTIONS(1565), - [anon_sym_e_GT] = ACTIONS(1565), - [anon_sym_o_GT] = ACTIONS(1565), - [anon_sym_err_PLUSout_GT] = ACTIONS(1565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1565), - [anon_sym_o_PLUSe_GT] = ACTIONS(1565), - [anon_sym_e_PLUSo_GT] = ACTIONS(1565), - [anon_sym_err_GT_GT] = ACTIONS(1577), - [anon_sym_out_GT_GT] = ACTIONS(1577), - [anon_sym_e_GT_GT] = ACTIONS(1577), - [anon_sym_o_GT_GT] = ACTIONS(1577), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1577), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1577), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1577), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1577), - [aux_sym_unquoted_token1] = ACTIONS(1565), - [aux_sym_unquoted_token2] = ACTIONS(1579), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1577), - }, - [1338] = { - [sym__val_range] = STATE(7673), - [sym__value] = STATE(6049), - [sym_val_nothing] = STATE(4907), - [sym_val_bool] = STATE(7042), - [sym_val_variable] = STATE(4907), - [sym_val_number] = STATE(4907), - [sym__val_number_decimal] = STATE(5550), - [sym__val_number] = STATE(4940), - [sym_val_duration] = STATE(4907), - [sym_val_filesize] = STATE(4907), - [sym_val_binary] = STATE(4907), - [sym_val_string] = STATE(4907), - [sym__raw_str] = STATE(4492), - [sym__str_double_quotes] = STATE(4492), - [sym_val_interpolated] = STATE(4907), - [sym__inter_single_quotes] = STATE(4952), - [sym__inter_double_quotes] = STATE(4953), - [sym_val_list] = STATE(4907), - [sym_val_record] = STATE(4907), - [sym_val_table] = STATE(4907), - [sym_val_closure] = STATE(4907), - [sym_unquoted] = STATE(6050), - [sym__unquoted_anonymous_prefix] = STATE(7821), - [sym_comment] = STATE(1338), - [anon_sym_LBRACK] = ACTIONS(4089), - [anon_sym_LPAREN] = ACTIONS(4091), - [anon_sym_DOLLAR] = ACTIONS(4119), - [anon_sym_LBRACE] = ACTIONS(4095), - [anon_sym_DOT_DOT] = ACTIONS(4097), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4099), - [anon_sym_DOT_DOT_LT] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(4121), - [anon_sym_true] = ACTIONS(4123), - [anon_sym_false] = ACTIONS(4123), - [aux_sym__val_number_decimal_token1] = ACTIONS(4125), - [aux_sym__val_number_decimal_token2] = ACTIONS(4127), - [aux_sym__val_number_decimal_token3] = ACTIONS(4129), - [aux_sym__val_number_decimal_token4] = ACTIONS(4131), - [aux_sym__val_number_token1] = ACTIONS(3593), - [aux_sym__val_number_token2] = ACTIONS(3593), - [aux_sym__val_number_token3] = ACTIONS(3593), - [aux_sym__val_number_token4] = ACTIONS(4133), - [aux_sym__val_number_token5] = ACTIONS(4133), - [aux_sym__val_number_token6] = ACTIONS(4133), - [anon_sym_0b] = ACTIONS(3597), - [anon_sym_0o] = ACTIONS(3599), - [anon_sym_0x] = ACTIONS(3599), - [sym_val_date] = ACTIONS(4135), - [anon_sym_DQUOTE] = ACTIONS(4009), - [sym__str_single_quotes] = ACTIONS(4011), - [sym__str_back_ticks] = ACTIONS(4011), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3609), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(4117), + [1322] = { + [sym__expr_parenthesized_immediate] = STATE(1746), + [sym__immediate_decimal] = STATE(1753), + [sym_val_variable] = STATE(1746), + [sym_comment] = STATE(1322), + [sym__newline] = ACTIONS(1675), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1675), + [anon_sym_err_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_GT_PIPE] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_RPAREN] = ACTIONS(1675), + [anon_sym_DOLLAR] = ACTIONS(4033), + [anon_sym_DASH_DASH] = ACTIONS(1675), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1673), + [anon_sym_LPAREN2] = ACTIONS(4035), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT] = ACTIONS(1675), + [aux_sym__immediate_decimal_token1] = ACTIONS(4409), + [aux_sym__immediate_decimal_token3] = ACTIONS(4411), + [aux_sym__immediate_decimal_token4] = ACTIONS(4413), + [aux_sym__immediate_decimal_token5] = ACTIONS(4415), + [anon_sym_null] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1675), + [anon_sym_false] = ACTIONS(1675), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [aux_sym__val_number_decimal_token2] = ACTIONS(1673), + [aux_sym__val_number_decimal_token3] = ACTIONS(1673), + [aux_sym__val_number_decimal_token4] = ACTIONS(1673), + [aux_sym__val_number_token1] = ACTIONS(1675), + [aux_sym__val_number_token2] = ACTIONS(1675), + [aux_sym__val_number_token3] = ACTIONS(1675), + [aux_sym__val_number_token4] = ACTIONS(1675), + [aux_sym__val_number_token5] = ACTIONS(1675), + [aux_sym__val_number_token6] = ACTIONS(1675), + [anon_sym_0b] = ACTIONS(1673), + [anon_sym_0o] = ACTIONS(1673), + [anon_sym_0x] = ACTIONS(1673), + [sym_val_date] = ACTIONS(1675), + [anon_sym_DQUOTE] = ACTIONS(1675), + [sym__str_single_quotes] = ACTIONS(1675), + [sym__str_back_ticks] = ACTIONS(1675), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1675), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1675), + [anon_sym_err_GT] = ACTIONS(1673), + [anon_sym_out_GT] = ACTIONS(1673), + [anon_sym_e_GT] = ACTIONS(1673), + [anon_sym_o_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT] = ACTIONS(1673), + [anon_sym_err_GT_GT] = ACTIONS(1675), + [anon_sym_out_GT_GT] = ACTIONS(1675), + [anon_sym_e_GT_GT] = ACTIONS(1675), + [anon_sym_o_GT_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), + [aux_sym_unquoted_token1] = ACTIONS(1673), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4013), - }, - [1339] = { - [sym_comment] = STATE(1339), - [ts_builtin_sym_end] = ACTIONS(1623), - [sym__newline] = ACTIONS(1623), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1623), - [anon_sym_err_GT_PIPE] = ACTIONS(1623), - [anon_sym_out_GT_PIPE] = ACTIONS(1623), - [anon_sym_e_GT_PIPE] = ACTIONS(1623), - [anon_sym_o_GT_PIPE] = ACTIONS(1623), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(1621), - [anon_sym_DOLLAR] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1621), - [anon_sym_LPAREN2] = ACTIONS(1623), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1621), - [anon_sym_DOT_DOT_LT] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [aux_sym__immediate_decimal_token1] = ACTIONS(4553), - [aux_sym__immediate_decimal_token2] = ACTIONS(4555), - [anon_sym_null] = ACTIONS(1623), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [aux_sym__val_number_decimal_token1] = ACTIONS(1621), - [aux_sym__val_number_decimal_token2] = ACTIONS(1623), - [aux_sym__val_number_decimal_token3] = ACTIONS(1623), - [aux_sym__val_number_decimal_token4] = ACTIONS(1623), - [aux_sym__val_number_token1] = ACTIONS(1623), - [aux_sym__val_number_token2] = ACTIONS(1623), - [aux_sym__val_number_token3] = ACTIONS(1623), - [aux_sym__val_number_token4] = ACTIONS(1623), - [aux_sym__val_number_token5] = ACTIONS(1623), - [aux_sym__val_number_token6] = ACTIONS(1623), - [anon_sym_0b] = ACTIONS(1621), - [sym_filesize_unit] = ACTIONS(1623), - [sym_duration_unit] = ACTIONS(1623), - [anon_sym_0o] = ACTIONS(1621), - [anon_sym_0x] = ACTIONS(1621), - [sym_val_date] = ACTIONS(1623), - [anon_sym_DQUOTE] = ACTIONS(1623), - [sym__str_single_quotes] = ACTIONS(1623), - [sym__str_back_ticks] = ACTIONS(1623), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1623), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1623), - [anon_sym_err_GT] = ACTIONS(1621), - [anon_sym_out_GT] = ACTIONS(1621), - [anon_sym_e_GT] = ACTIONS(1621), - [anon_sym_o_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT] = ACTIONS(1621), - [anon_sym_err_GT_GT] = ACTIONS(1623), - [anon_sym_out_GT_GT] = ACTIONS(1623), - [anon_sym_e_GT_GT] = ACTIONS(1623), - [anon_sym_o_GT_GT] = ACTIONS(1623), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), - [aux_sym_unquoted_token1] = ACTIONS(1621), - [aux_sym_unquoted_token2] = ACTIONS(1621), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1623), + [sym_raw_string_begin] = ACTIONS(1675), }, - [1340] = { - [sym__val_range] = STATE(7658), - [sym__value] = STATE(4764), - [sym_val_nothing] = STATE(4616), - [sym_val_bool] = STATE(7000), - [sym_val_variable] = STATE(4616), - [sym_val_number] = STATE(4616), - [sym__val_number_decimal] = STATE(5569), - [sym__val_number] = STATE(4634), - [sym_val_duration] = STATE(4616), - [sym_val_filesize] = STATE(4616), - [sym_val_binary] = STATE(4616), - [sym_val_string] = STATE(4616), - [sym__raw_str] = STATE(4465), - [sym__str_double_quotes] = STATE(4465), - [sym_val_interpolated] = STATE(4616), - [sym__inter_single_quotes] = STATE(4689), - [sym__inter_double_quotes] = STATE(4701), - [sym_val_list] = STATE(4616), - [sym_val_record] = STATE(4616), - [sym_val_table] = STATE(4616), - [sym_val_closure] = STATE(4616), - [sym_unquoted] = STATE(4765), - [sym__unquoted_anonymous_prefix] = STATE(7677), - [sym_comment] = STATE(1340), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym_DOLLAR] = ACTIONS(4341), - [anon_sym_LBRACE] = ACTIONS(4343), - [anon_sym_DOT_DOT] = ACTIONS(4345), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4347), - [anon_sym_DOT_DOT_LT] = ACTIONS(4347), - [anon_sym_null] = ACTIONS(4349), - [anon_sym_true] = ACTIONS(4351), - [anon_sym_false] = ACTIONS(4351), - [aux_sym__val_number_decimal_token1] = ACTIONS(4353), - [aux_sym__val_number_decimal_token2] = ACTIONS(4355), - [aux_sym__val_number_decimal_token3] = ACTIONS(4357), - [aux_sym__val_number_decimal_token4] = ACTIONS(4359), - [aux_sym__val_number_token1] = ACTIONS(4361), - [aux_sym__val_number_token2] = ACTIONS(4361), - [aux_sym__val_number_token3] = ACTIONS(4361), - [aux_sym__val_number_token4] = ACTIONS(4363), - [aux_sym__val_number_token5] = ACTIONS(4363), - [aux_sym__val_number_token6] = ACTIONS(4363), - [anon_sym_0b] = ACTIONS(1840), - [anon_sym_0o] = ACTIONS(1842), - [anon_sym_0x] = ACTIONS(1842), - [sym_val_date] = ACTIONS(4365), - [anon_sym_DQUOTE] = ACTIONS(4367), - [sym__str_single_quotes] = ACTIONS(4369), - [sym__str_back_ticks] = ACTIONS(4369), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4371), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4373), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(1858), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1860), + [1323] = { + [sym__expr_parenthesized_immediate] = STATE(1754), + [sym__immediate_decimal] = STATE(1760), + [sym_val_variable] = STATE(1754), + [sym_comment] = STATE(1323), + [sym__newline] = ACTIONS(1679), + [anon_sym_SEMI] = ACTIONS(1679), + [anon_sym_PIPE] = ACTIONS(1679), + [anon_sym_err_GT_PIPE] = ACTIONS(1679), + [anon_sym_out_GT_PIPE] = ACTIONS(1679), + [anon_sym_e_GT_PIPE] = ACTIONS(1679), + [anon_sym_o_GT_PIPE] = ACTIONS(1679), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1679), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1679), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1679), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1679), + [anon_sym_LBRACK] = ACTIONS(1679), + [anon_sym_LPAREN] = ACTIONS(1677), + [anon_sym_RPAREN] = ACTIONS(1679), + [anon_sym_DOLLAR] = ACTIONS(4033), + [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_DASH2] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1679), + [anon_sym_RBRACE] = ACTIONS(1679), + [anon_sym_DOT_DOT] = ACTIONS(1677), + [anon_sym_LPAREN2] = ACTIONS(4035), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1679), + [anon_sym_DOT_DOT_LT] = ACTIONS(1679), + [aux_sym__immediate_decimal_token1] = ACTIONS(4409), + [aux_sym__immediate_decimal_token3] = ACTIONS(4411), + [aux_sym__immediate_decimal_token4] = ACTIONS(4413), + [aux_sym__immediate_decimal_token5] = ACTIONS(4415), + [anon_sym_null] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1679), + [anon_sym_false] = ACTIONS(1679), + [aux_sym__val_number_decimal_token1] = ACTIONS(1677), + [aux_sym__val_number_decimal_token2] = ACTIONS(1677), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1677), + [aux_sym__val_number_token1] = ACTIONS(1679), + [aux_sym__val_number_token2] = ACTIONS(1679), + [aux_sym__val_number_token3] = ACTIONS(1679), + [aux_sym__val_number_token4] = ACTIONS(1679), + [aux_sym__val_number_token5] = ACTIONS(1679), + [aux_sym__val_number_token6] = ACTIONS(1679), + [anon_sym_0b] = ACTIONS(1677), + [anon_sym_0o] = ACTIONS(1677), + [anon_sym_0x] = ACTIONS(1677), + [sym_val_date] = ACTIONS(1679), + [anon_sym_DQUOTE] = ACTIONS(1679), + [sym__str_single_quotes] = ACTIONS(1679), + [sym__str_back_ticks] = ACTIONS(1679), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1679), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1679), + [anon_sym_err_GT] = ACTIONS(1677), + [anon_sym_out_GT] = ACTIONS(1677), + [anon_sym_e_GT] = ACTIONS(1677), + [anon_sym_o_GT] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT] = ACTIONS(1677), + [anon_sym_err_GT_GT] = ACTIONS(1679), + [anon_sym_out_GT_GT] = ACTIONS(1679), + [anon_sym_e_GT_GT] = ACTIONS(1679), + [anon_sym_o_GT_GT] = ACTIONS(1679), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1679), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1679), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1679), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1679), + [aux_sym_unquoted_token1] = ACTIONS(1677), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1679), }, - [1341] = { - [sym_comment] = STATE(1341), - [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(2214), - [anon_sym_SEMI] = ACTIONS(2214), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_err_GT_PIPE] = ACTIONS(2214), - [anon_sym_out_GT_PIPE] = ACTIONS(2214), - [anon_sym_e_GT_PIPE] = ACTIONS(2214), - [anon_sym_o_GT_PIPE] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2214), - [anon_sym_RPAREN] = ACTIONS(2214), - [anon_sym_GT2] = ACTIONS(2214), - [anon_sym_DASH2] = ACTIONS(2214), - [anon_sym_in2] = ACTIONS(2214), - [anon_sym_STAR2] = ACTIONS(2214), - [anon_sym_and2] = ACTIONS(2214), - [anon_sym_xor2] = ACTIONS(2214), - [anon_sym_or2] = ACTIONS(2214), - [anon_sym_not_DASHin2] = ACTIONS(2214), - [anon_sym_starts_DASHwith2] = ACTIONS(2214), - [anon_sym_ends_DASHwith2] = ACTIONS(2214), - [anon_sym_EQ_EQ2] = ACTIONS(2214), - [anon_sym_BANG_EQ2] = ACTIONS(2214), - [anon_sym_LT2] = ACTIONS(2214), - [anon_sym_LT_EQ2] = ACTIONS(2214), - [anon_sym_GT_EQ2] = ACTIONS(2214), - [anon_sym_EQ_TILDE2] = ACTIONS(2214), - [anon_sym_BANG_TILDE2] = ACTIONS(2214), - [anon_sym_STAR_STAR2] = ACTIONS(2214), - [anon_sym_PLUS_PLUS2] = ACTIONS(2214), - [anon_sym_SLASH2] = ACTIONS(2214), - [anon_sym_mod2] = ACTIONS(2214), - [anon_sym_SLASH_SLASH2] = ACTIONS(2214), - [anon_sym_PLUS2] = ACTIONS(2214), - [anon_sym_bit_DASHshl2] = ACTIONS(2214), - [anon_sym_bit_DASHshr2] = ACTIONS(2214), - [anon_sym_bit_DASHand2] = ACTIONS(2214), - [anon_sym_bit_DASHxor2] = ACTIONS(2214), - [anon_sym_bit_DASHor2] = ACTIONS(2214), - [anon_sym_POUND] = ACTIONS(3), + [1324] = { + [sym__match_pattern_expression] = STATE(3167), + [sym__match_pattern_value] = STATE(3159), + [sym__match_pattern_list] = STATE(3160), + [sym__match_pattern_rest] = STATE(7947), + [sym__match_pattern_record] = STATE(3161), + [sym_expr_parenthesized] = STATE(2875), + [sym_val_range] = STATE(3159), + [sym__val_range] = STATE(7970), + [sym_val_nothing] = STATE(3162), + [sym_val_bool] = STATE(3037), + [sym_val_variable] = STATE(2883), + [sym_val_number] = STATE(3162), + [sym__val_number_decimal] = STATE(2683), + [sym__val_number] = STATE(3147), + [sym_val_duration] = STATE(3162), + [sym_val_filesize] = STATE(3162), + [sym_val_binary] = STATE(3162), + [sym_val_string] = STATE(3162), + [sym__raw_str] = STATE(3125), + [sym__str_double_quotes] = STATE(3125), + [sym_val_table] = STATE(3162), + [sym__unquoted_in_list] = STATE(3167), + [sym__unquoted_anonymous_prefix] = STATE(7872), + [sym_comment] = STATE(1324), + [aux_sym__match_pattern_list_repeat1] = STATE(1366), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_RBRACK] = ACTIONS(4537), + [anon_sym_LPAREN] = ACTIONS(3935), + [anon_sym_DOLLAR] = ACTIONS(3937), + [anon_sym_LBRACE] = ACTIONS(3939), + [anon_sym_DOT_DOT] = ACTIONS(4539), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3943), + [anon_sym_DOT_DOT_LT] = ACTIONS(3943), + [anon_sym_null] = ACTIONS(3945), + [anon_sym_true] = ACTIONS(3947), + [anon_sym_false] = ACTIONS(3947), + [aux_sym__val_number_decimal_token1] = ACTIONS(3949), + [aux_sym__val_number_decimal_token2] = ACTIONS(3951), + [aux_sym__val_number_decimal_token3] = ACTIONS(3953), + [aux_sym__val_number_decimal_token4] = ACTIONS(3955), + [aux_sym__val_number_token1] = ACTIONS(3957), + [aux_sym__val_number_token2] = ACTIONS(3957), + [aux_sym__val_number_token3] = ACTIONS(3957), + [aux_sym__val_number_token4] = ACTIONS(3959), + [aux_sym__val_number_token5] = ACTIONS(3959), + [aux_sym__val_number_token6] = ACTIONS(3959), + [anon_sym_0b] = ACTIONS(3961), + [anon_sym_0o] = ACTIONS(3963), + [anon_sym_0x] = ACTIONS(3963), + [sym_val_date] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3967), + [sym__str_single_quotes] = ACTIONS(3969), + [sym__str_back_ticks] = ACTIONS(3969), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2582), + [anon_sym_out_GT_GT] = ACTIONS(2582), + [anon_sym_e_GT_GT] = ACTIONS(2582), + [anon_sym_o_GT_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2582), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3971), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(3973), }, - [1342] = { - [sym_comment] = STATE(1342), - [ts_builtin_sym_end] = ACTIONS(2218), - [anon_sym_STAR_STAR] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3197), - [anon_sym_mod] = ACTIONS(3195), - [anon_sym_SLASH_SLASH] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_bit_DASHshl] = ACTIONS(3195), - [anon_sym_bit_DASHshr] = ACTIONS(3195), - [anon_sym_EQ_TILDE] = ACTIONS(3195), - [anon_sym_BANG_TILDE] = ACTIONS(3195), - [anon_sym_bit_DASHand] = ACTIONS(3195), - [anon_sym_bit_DASHxor] = ACTIONS(3195), - [anon_sym_bit_DASHor] = ACTIONS(3195), - [anon_sym_and] = ACTIONS(3195), - [anon_sym_xor] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3195), - [anon_sym_in] = ACTIONS(3195), - [anon_sym_not_DASHin] = ACTIONS(3195), - [anon_sym_starts_DASHwith] = ACTIONS(3195), - [anon_sym_ends_DASHwith] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3195), - [aux_sym_cmd_identifier_token41] = ACTIONS(3199), - [sym__newline] = ACTIONS(2214), - [anon_sym_SEMI] = ACTIONS(2214), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_err_GT_PIPE] = ACTIONS(2214), - [anon_sym_out_GT_PIPE] = ACTIONS(2214), - [anon_sym_e_GT_PIPE] = ACTIONS(2214), - [anon_sym_o_GT_PIPE] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2214), - [anon_sym_GT2] = ACTIONS(2214), - [anon_sym_DASH2] = ACTIONS(2214), - [anon_sym_in2] = ACTIONS(2214), - [anon_sym_STAR2] = ACTIONS(2214), - [anon_sym_and2] = ACTIONS(2214), - [anon_sym_xor2] = ACTIONS(2214), - [anon_sym_or2] = ACTIONS(2214), - [anon_sym_not_DASHin2] = ACTIONS(2214), - [anon_sym_starts_DASHwith2] = ACTIONS(2214), - [anon_sym_ends_DASHwith2] = ACTIONS(2214), - [anon_sym_EQ_EQ2] = ACTIONS(2214), - [anon_sym_BANG_EQ2] = ACTIONS(2214), - [anon_sym_LT2] = ACTIONS(2214), - [anon_sym_LT_EQ2] = ACTIONS(2214), - [anon_sym_GT_EQ2] = ACTIONS(2214), - [anon_sym_EQ_TILDE2] = ACTIONS(2214), - [anon_sym_BANG_TILDE2] = ACTIONS(2214), - [anon_sym_STAR_STAR2] = ACTIONS(2214), - [anon_sym_PLUS_PLUS2] = ACTIONS(2214), - [anon_sym_SLASH2] = ACTIONS(2214), - [anon_sym_mod2] = ACTIONS(2214), - [anon_sym_SLASH_SLASH2] = ACTIONS(2214), - [anon_sym_PLUS2] = ACTIONS(2214), - [anon_sym_bit_DASHshl2] = ACTIONS(2214), - [anon_sym_bit_DASHshr2] = ACTIONS(2214), - [anon_sym_bit_DASHand2] = ACTIONS(2214), - [anon_sym_bit_DASHxor2] = ACTIONS(2214), - [anon_sym_bit_DASHor2] = ACTIONS(2214), - [anon_sym_POUND] = ACTIONS(3), + [1325] = { + [sym__val_range] = STATE(7739), + [sym__value] = STATE(6217), + [sym_val_nothing] = STATE(5002), + [sym_val_bool] = STATE(5962), + [sym_val_variable] = STATE(5002), + [sym_val_number] = STATE(5002), + [sym__val_number_decimal] = STATE(5270), + [sym__val_number] = STATE(4893), + [sym_val_duration] = STATE(5002), + [sym_val_filesize] = STATE(5002), + [sym_val_binary] = STATE(5002), + [sym_val_string] = STATE(5002), + [sym__raw_str] = STATE(4332), + [sym__str_double_quotes] = STATE(4332), + [sym_val_interpolated] = STATE(5002), + [sym__inter_single_quotes] = STATE(4834), + [sym__inter_double_quotes] = STATE(4836), + [sym_val_list] = STATE(5002), + [sym_val_record] = STATE(5002), + [sym_val_table] = STATE(5002), + [sym_val_closure] = STATE(5002), + [sym_unquoted] = STATE(6239), + [sym__unquoted_anonymous_prefix] = STATE(7847), + [sym_comment] = STATE(1325), + [anon_sym_LBRACK] = ACTIONS(4177), + [anon_sym_LPAREN] = ACTIONS(4179), + [anon_sym_DOLLAR] = ACTIONS(4181), + [anon_sym_LBRACE] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), + [anon_sym_DOT_DOT_LT] = ACTIONS(4187), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_true] = ACTIONS(4361), + [anon_sym_false] = ACTIONS(4361), + [aux_sym__val_number_decimal_token1] = ACTIONS(4473), + [aux_sym__val_number_decimal_token2] = ACTIONS(4475), + [aux_sym__val_number_decimal_token3] = ACTIONS(4477), + [aux_sym__val_number_decimal_token4] = ACTIONS(4479), + [aux_sym__val_number_token1] = ACTIONS(3647), + [aux_sym__val_number_token2] = ACTIONS(3647), + [aux_sym__val_number_token3] = ACTIONS(3647), + [aux_sym__val_number_token4] = ACTIONS(4481), + [aux_sym__val_number_token5] = ACTIONS(4481), + [aux_sym__val_number_token6] = ACTIONS(4481), + [anon_sym_0b] = ACTIONS(3651), + [anon_sym_0o] = ACTIONS(3653), + [anon_sym_0x] = ACTIONS(3653), + [sym_val_date] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(4001), + [sym__str_single_quotes] = ACTIONS(4003), + [sym__str_back_ticks] = ACTIONS(4003), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4205), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4005), }, - [1343] = { - [sym_comment] = STATE(1343), - [ts_builtin_sym_end] = ACTIONS(2224), - [anon_sym_STAR_STAR] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3197), - [anon_sym_mod] = ACTIONS(3195), - [anon_sym_SLASH_SLASH] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_bit_DASHshl] = ACTIONS(3195), - [anon_sym_bit_DASHshr] = ACTIONS(3195), - [anon_sym_EQ_TILDE] = ACTIONS(3195), - [anon_sym_BANG_TILDE] = ACTIONS(3195), - [anon_sym_bit_DASHand] = ACTIONS(3195), - [anon_sym_bit_DASHxor] = ACTIONS(3195), - [anon_sym_bit_DASHor] = ACTIONS(3195), - [anon_sym_and] = ACTIONS(3195), - [anon_sym_xor] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3195), - [anon_sym_in] = ACTIONS(3195), - [anon_sym_not_DASHin] = ACTIONS(3195), - [anon_sym_starts_DASHwith] = ACTIONS(3195), - [anon_sym_ends_DASHwith] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3195), - [aux_sym_cmd_identifier_token41] = ACTIONS(3199), - [sym__newline] = ACTIONS(2222), - [anon_sym_SEMI] = ACTIONS(2222), - [anon_sym_PIPE] = ACTIONS(2222), - [anon_sym_err_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_GT_PIPE] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2222), - [anon_sym_GT2] = ACTIONS(2222), - [anon_sym_DASH2] = ACTIONS(2222), - [anon_sym_in2] = ACTIONS(2222), - [anon_sym_STAR2] = ACTIONS(2222), - [anon_sym_and2] = ACTIONS(2222), - [anon_sym_xor2] = ACTIONS(2222), - [anon_sym_or2] = ACTIONS(2222), - [anon_sym_not_DASHin2] = ACTIONS(2222), - [anon_sym_starts_DASHwith2] = ACTIONS(2222), - [anon_sym_ends_DASHwith2] = ACTIONS(2222), - [anon_sym_EQ_EQ2] = ACTIONS(2222), - [anon_sym_BANG_EQ2] = ACTIONS(2222), - [anon_sym_LT2] = ACTIONS(2222), - [anon_sym_LT_EQ2] = ACTIONS(2222), - [anon_sym_GT_EQ2] = ACTIONS(2222), - [anon_sym_EQ_TILDE2] = ACTIONS(2222), - [anon_sym_BANG_TILDE2] = ACTIONS(2222), - [anon_sym_STAR_STAR2] = ACTIONS(2222), - [anon_sym_PLUS_PLUS2] = ACTIONS(2222), - [anon_sym_SLASH2] = ACTIONS(2222), - [anon_sym_mod2] = ACTIONS(2222), - [anon_sym_SLASH_SLASH2] = ACTIONS(2222), - [anon_sym_PLUS2] = ACTIONS(2222), - [anon_sym_bit_DASHshl2] = ACTIONS(2222), - [anon_sym_bit_DASHshr2] = ACTIONS(2222), - [anon_sym_bit_DASHand2] = ACTIONS(2222), - [anon_sym_bit_DASHxor2] = ACTIONS(2222), - [anon_sym_bit_DASHor2] = ACTIONS(2222), - [anon_sym_POUND] = ACTIONS(3), + [1326] = { + [sym__val_range] = STATE(7739), + [sym__value] = STATE(6136), + [sym_val_nothing] = STATE(5002), + [sym_val_bool] = STATE(5962), + [sym_val_variable] = STATE(5002), + [sym_val_number] = STATE(5002), + [sym__val_number_decimal] = STATE(5248), + [sym__val_number] = STATE(4893), + [sym_val_duration] = STATE(5002), + [sym_val_filesize] = STATE(5002), + [sym_val_binary] = STATE(5002), + [sym_val_string] = STATE(5002), + [sym__raw_str] = STATE(4332), + [sym__str_double_quotes] = STATE(4332), + [sym_val_interpolated] = STATE(5002), + [sym__inter_single_quotes] = STATE(4834), + [sym__inter_double_quotes] = STATE(4836), + [sym_val_list] = STATE(5002), + [sym_val_record] = STATE(5002), + [sym_val_table] = STATE(5002), + [sym_val_closure] = STATE(5002), + [sym_unquoted] = STATE(6137), + [sym__unquoted_anonymous_prefix] = STATE(7847), + [sym_comment] = STATE(1326), + [anon_sym_LBRACK] = ACTIONS(4177), + [anon_sym_LPAREN] = ACTIONS(4179), + [anon_sym_DOLLAR] = ACTIONS(4357), + [anon_sym_LBRACE] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), + [anon_sym_DOT_DOT_LT] = ACTIONS(4187), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_true] = ACTIONS(4361), + [anon_sym_false] = ACTIONS(4361), + [aux_sym__val_number_decimal_token1] = ACTIONS(4363), + [aux_sym__val_number_decimal_token2] = ACTIONS(4365), + [aux_sym__val_number_decimal_token3] = ACTIONS(4367), + [aux_sym__val_number_decimal_token4] = ACTIONS(4369), + [aux_sym__val_number_token1] = ACTIONS(3647), + [aux_sym__val_number_token2] = ACTIONS(3647), + [aux_sym__val_number_token3] = ACTIONS(3647), + [aux_sym__val_number_token4] = ACTIONS(4371), + [aux_sym__val_number_token5] = ACTIONS(4371), + [aux_sym__val_number_token6] = ACTIONS(4371), + [anon_sym_0b] = ACTIONS(3651), + [anon_sym_0o] = ACTIONS(3653), + [anon_sym_0x] = ACTIONS(3653), + [sym_val_date] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(4001), + [sym__str_single_quotes] = ACTIONS(4003), + [sym__str_back_ticks] = ACTIONS(4003), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4205), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4005), }, - [1344] = { - [sym_comment] = STATE(1344), - [anon_sym_EQ] = ACTIONS(994), - [anon_sym_PLUS_EQ] = ACTIONS(996), - [anon_sym_DASH_EQ] = ACTIONS(996), - [anon_sym_STAR_EQ] = ACTIONS(996), - [anon_sym_SLASH_EQ] = ACTIONS(996), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(996), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_RPAREN] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(994), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_in2] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(994), - [anon_sym_QMARK2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(994), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(994), - [anon_sym_SLASH2] = ACTIONS(994), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(994), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_DOT_DOT2] = ACTIONS(994), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), - [anon_sym_DOT_DOT_LT2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(994), - [anon_sym_out_GT] = ACTIONS(994), - [anon_sym_e_GT] = ACTIONS(994), - [anon_sym_o_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT] = ACTIONS(994), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [1327] = { + [sym_cell_path] = STATE(1484), + [sym_path] = STATE(1412), + [sym_comment] = STATE(1327), + [aux_sym_cell_path_repeat1] = STATE(1350), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(963), + [anon_sym_DASH_EQ] = ACTIONS(963), + [anon_sym_STAR_EQ] = ACTIONS(963), + [anon_sym_SLASH_EQ] = ACTIONS(963), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(963), + [sym__newline] = ACTIONS(963), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_err_GT_PIPE] = ACTIONS(963), + [anon_sym_out_GT_PIPE] = ACTIONS(963), + [anon_sym_e_GT_PIPE] = ACTIONS(963), + [anon_sym_o_GT_PIPE] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), + [anon_sym_RPAREN] = ACTIONS(963), + [anon_sym_GT2] = ACTIONS(961), + [anon_sym_DASH2] = ACTIONS(961), + [anon_sym_in2] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_STAR2] = ACTIONS(961), + [anon_sym_and2] = ACTIONS(963), + [anon_sym_xor2] = ACTIONS(963), + [anon_sym_or2] = ACTIONS(963), + [anon_sym_not_DASHin2] = ACTIONS(963), + [anon_sym_starts_DASHwith2] = ACTIONS(963), + [anon_sym_ends_DASHwith2] = ACTIONS(963), + [anon_sym_EQ_EQ2] = ACTIONS(963), + [anon_sym_BANG_EQ2] = ACTIONS(963), + [anon_sym_LT2] = ACTIONS(961), + [anon_sym_LT_EQ2] = ACTIONS(963), + [anon_sym_GT_EQ2] = ACTIONS(963), + [anon_sym_EQ_TILDE2] = ACTIONS(963), + [anon_sym_BANG_TILDE2] = ACTIONS(963), + [anon_sym_STAR_STAR2] = ACTIONS(963), + [anon_sym_PLUS_PLUS2] = ACTIONS(961), + [anon_sym_SLASH2] = ACTIONS(961), + [anon_sym_mod2] = ACTIONS(963), + [anon_sym_SLASH_SLASH2] = ACTIONS(963), + [anon_sym_PLUS2] = ACTIONS(961), + [anon_sym_bit_DASHshl2] = ACTIONS(963), + [anon_sym_bit_DASHshr2] = ACTIONS(963), + [anon_sym_bit_DASHand2] = ACTIONS(963), + [anon_sym_bit_DASHxor2] = ACTIONS(963), + [anon_sym_bit_DASHor2] = ACTIONS(963), + [anon_sym_DOT_DOT2] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), + [anon_sym_DOT_DOT_LT2] = ACTIONS(963), + [anon_sym_err_GT] = ACTIONS(961), + [anon_sym_out_GT] = ACTIONS(961), + [anon_sym_e_GT] = ACTIONS(961), + [anon_sym_o_GT] = ACTIONS(961), + [anon_sym_err_PLUSout_GT] = ACTIONS(961), + [anon_sym_out_PLUSerr_GT] = ACTIONS(961), + [anon_sym_o_PLUSe_GT] = ACTIONS(961), + [anon_sym_e_PLUSo_GT] = ACTIONS(961), + [anon_sym_err_GT_GT] = ACTIONS(963), + [anon_sym_out_GT_GT] = ACTIONS(963), + [anon_sym_e_GT_GT] = ACTIONS(963), + [anon_sym_o_GT_GT] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), [anon_sym_POUND] = ACTIONS(247), }, - [1345] = { - [sym_cell_path] = STATE(1527), - [sym_path] = STATE(1460), - [sym_comment] = STATE(1345), - [aux_sym_cell_path_repeat1] = STATE(1397), - [sym__newline] = ACTIONS(1771), - [anon_sym_SEMI] = ACTIONS(1771), - [anon_sym_PIPE] = ACTIONS(1771), - [anon_sym_err_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_GT_PIPE] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1771), - [anon_sym_RPAREN] = ACTIONS(1771), - [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1771), - [anon_sym_DASH2] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_RBRACE] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1769), - [anon_sym_DOT_DOT2] = ACTIONS(1769), - [anon_sym_DOT] = ACTIONS(4557), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1769), - [anon_sym_DOT_DOT_LT] = ACTIONS(1769), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), - [anon_sym_null] = ACTIONS(1771), - [anon_sym_true] = ACTIONS(1771), - [anon_sym_false] = ACTIONS(1771), - [aux_sym__val_number_decimal_token1] = ACTIONS(1769), - [aux_sym__val_number_decimal_token2] = ACTIONS(1771), - [aux_sym__val_number_decimal_token3] = ACTIONS(1771), - [aux_sym__val_number_decimal_token4] = ACTIONS(1771), - [aux_sym__val_number_token1] = ACTIONS(1771), - [aux_sym__val_number_token2] = ACTIONS(1771), - [aux_sym__val_number_token3] = ACTIONS(1771), - [aux_sym__val_number_token4] = ACTIONS(1771), - [aux_sym__val_number_token5] = ACTIONS(1771), - [aux_sym__val_number_token6] = ACTIONS(1771), - [anon_sym_0b] = ACTIONS(1769), - [anon_sym_0o] = ACTIONS(1769), - [anon_sym_0x] = ACTIONS(1769), - [sym_val_date] = ACTIONS(1771), - [anon_sym_DQUOTE] = ACTIONS(1771), - [sym__str_single_quotes] = ACTIONS(1771), - [sym__str_back_ticks] = ACTIONS(1771), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1771), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1771), - [anon_sym_err_GT] = ACTIONS(1769), - [anon_sym_out_GT] = ACTIONS(1769), - [anon_sym_e_GT] = ACTIONS(1769), - [anon_sym_o_GT] = ACTIONS(1769), - [anon_sym_err_PLUSout_GT] = ACTIONS(1769), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), - [anon_sym_o_PLUSe_GT] = ACTIONS(1769), - [anon_sym_e_PLUSo_GT] = ACTIONS(1769), - [anon_sym_err_GT_GT] = ACTIONS(1771), - [anon_sym_out_GT_GT] = ACTIONS(1771), - [anon_sym_e_GT_GT] = ACTIONS(1771), - [anon_sym_o_GT_GT] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), - [aux_sym_unquoted_token1] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1771), + [1328] = { + [sym__val_range] = STATE(7739), + [sym__value] = STATE(6162), + [sym_val_nothing] = STATE(5002), + [sym_val_bool] = STATE(5962), + [sym_val_variable] = STATE(5002), + [sym_val_number] = STATE(5002), + [sym__val_number_decimal] = STATE(5248), + [sym__val_number] = STATE(4893), + [sym_val_duration] = STATE(5002), + [sym_val_filesize] = STATE(5002), + [sym_val_binary] = STATE(5002), + [sym_val_string] = STATE(5002), + [sym__raw_str] = STATE(4332), + [sym__str_double_quotes] = STATE(4332), + [sym_val_interpolated] = STATE(5002), + [sym__inter_single_quotes] = STATE(4834), + [sym__inter_double_quotes] = STATE(4836), + [sym_val_list] = STATE(5002), + [sym_val_record] = STATE(5002), + [sym_val_table] = STATE(5002), + [sym_val_closure] = STATE(5002), + [sym_unquoted] = STATE(6182), + [sym__unquoted_anonymous_prefix] = STATE(7847), + [sym_comment] = STATE(1328), + [anon_sym_LBRACK] = ACTIONS(4177), + [anon_sym_LPAREN] = ACTIONS(4179), + [anon_sym_DOLLAR] = ACTIONS(4357), + [anon_sym_LBRACE] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), + [anon_sym_DOT_DOT_LT] = ACTIONS(4187), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_true] = ACTIONS(4361), + [anon_sym_false] = ACTIONS(4361), + [aux_sym__val_number_decimal_token1] = ACTIONS(4363), + [aux_sym__val_number_decimal_token2] = ACTIONS(4365), + [aux_sym__val_number_decimal_token3] = ACTIONS(4367), + [aux_sym__val_number_decimal_token4] = ACTIONS(4369), + [aux_sym__val_number_token1] = ACTIONS(3647), + [aux_sym__val_number_token2] = ACTIONS(3647), + [aux_sym__val_number_token3] = ACTIONS(3647), + [aux_sym__val_number_token4] = ACTIONS(4371), + [aux_sym__val_number_token5] = ACTIONS(4371), + [aux_sym__val_number_token6] = ACTIONS(4371), + [anon_sym_0b] = ACTIONS(3651), + [anon_sym_0o] = ACTIONS(3653), + [anon_sym_0x] = ACTIONS(3653), + [sym_val_date] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(4001), + [sym__str_single_quotes] = ACTIONS(4003), + [sym__str_back_ticks] = ACTIONS(4003), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4205), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4005), }, - [1346] = { - [sym_comment] = STATE(1346), - [sym__newline] = ACTIONS(1609), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_PIPE] = ACTIONS(1609), - [anon_sym_err_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_GT_PIPE] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1609), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_RPAREN] = ACTIONS(1609), - [anon_sym_DOLLAR] = ACTIONS(1607), - [anon_sym_DASH_DASH] = ACTIONS(1609), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_LBRACE] = ACTIONS(1609), - [anon_sym_RBRACE] = ACTIONS(1609), - [anon_sym_DOT_DOT] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), - [anon_sym_DOT_DOT_LT] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(4207), - [anon_sym_null] = ACTIONS(1609), - [anon_sym_true] = ACTIONS(1609), - [anon_sym_false] = ACTIONS(1609), - [aux_sym__val_number_decimal_token1] = ACTIONS(1607), - [aux_sym__val_number_decimal_token2] = ACTIONS(1609), - [aux_sym__val_number_decimal_token3] = ACTIONS(1609), - [aux_sym__val_number_decimal_token4] = ACTIONS(1609), - [aux_sym__val_number_token1] = ACTIONS(1609), - [aux_sym__val_number_token2] = ACTIONS(1609), - [aux_sym__val_number_token3] = ACTIONS(1609), - [aux_sym__val_number_token4] = ACTIONS(1609), - [aux_sym__val_number_token5] = ACTIONS(1609), - [aux_sym__val_number_token6] = ACTIONS(1609), - [anon_sym_0b] = ACTIONS(1607), - [sym_filesize_unit] = ACTIONS(1609), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_0o] = ACTIONS(1607), - [anon_sym_0x] = ACTIONS(1607), - [sym_val_date] = ACTIONS(1609), - [anon_sym_DQUOTE] = ACTIONS(1609), - [sym__str_single_quotes] = ACTIONS(1609), - [sym__str_back_ticks] = ACTIONS(1609), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1609), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1609), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1609), - [anon_sym_out_GT_GT] = ACTIONS(1609), - [anon_sym_e_GT_GT] = ACTIONS(1609), - [anon_sym_o_GT_GT] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), - [aux_sym_unquoted_token1] = ACTIONS(1607), - [aux_sym_unquoted_token2] = ACTIONS(1607), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1609), + [1329] = { + [sym__val_range] = STATE(7739), + [sym__value] = STATE(6162), + [sym_val_nothing] = STATE(5002), + [sym_val_bool] = STATE(5962), + [sym_val_variable] = STATE(5002), + [sym_val_number] = STATE(5002), + [sym__val_number_decimal] = STATE(5270), + [sym__val_number] = STATE(4893), + [sym_val_duration] = STATE(5002), + [sym_val_filesize] = STATE(5002), + [sym_val_binary] = STATE(5002), + [sym_val_string] = STATE(5002), + [sym__raw_str] = STATE(4332), + [sym__str_double_quotes] = STATE(4332), + [sym_val_interpolated] = STATE(5002), + [sym__inter_single_quotes] = STATE(4834), + [sym__inter_double_quotes] = STATE(4836), + [sym_val_list] = STATE(5002), + [sym_val_record] = STATE(5002), + [sym_val_table] = STATE(5002), + [sym_val_closure] = STATE(5002), + [sym_unquoted] = STATE(6182), + [sym__unquoted_anonymous_prefix] = STATE(7847), + [sym_comment] = STATE(1329), + [anon_sym_LBRACK] = ACTIONS(4177), + [anon_sym_LPAREN] = ACTIONS(4179), + [anon_sym_DOLLAR] = ACTIONS(4181), + [anon_sym_LBRACE] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), + [anon_sym_DOT_DOT_LT] = ACTIONS(4187), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_true] = ACTIONS(4361), + [anon_sym_false] = ACTIONS(4361), + [aux_sym__val_number_decimal_token1] = ACTIONS(4473), + [aux_sym__val_number_decimal_token2] = ACTIONS(4475), + [aux_sym__val_number_decimal_token3] = ACTIONS(4477), + [aux_sym__val_number_decimal_token4] = ACTIONS(4479), + [aux_sym__val_number_token1] = ACTIONS(3647), + [aux_sym__val_number_token2] = ACTIONS(3647), + [aux_sym__val_number_token3] = ACTIONS(3647), + [aux_sym__val_number_token4] = ACTIONS(4481), + [aux_sym__val_number_token5] = ACTIONS(4481), + [aux_sym__val_number_token6] = ACTIONS(4481), + [anon_sym_0b] = ACTIONS(3651), + [anon_sym_0o] = ACTIONS(3653), + [anon_sym_0x] = ACTIONS(3653), + [sym_val_date] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(4001), + [sym__str_single_quotes] = ACTIONS(4003), + [sym__str_back_ticks] = ACTIONS(4003), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4205), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4005), }, - [1347] = { - [sym_comment] = STATE(1347), + [1330] = { + [sym__val_range] = STATE(7906), + [sym__value] = STATE(5501), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(7662), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(5723), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(5502), + [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym_comment] = STATE(1330), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(4327), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4333), + [anon_sym_DOT_DOT_LT] = ACTIONS(4333), + [anon_sym_null] = ACTIONS(4335), + [anon_sym_true] = ACTIONS(4337), + [anon_sym_false] = ACTIONS(4337), + [aux_sym__val_number_decimal_token1] = ACTIONS(4339), + [aux_sym__val_number_decimal_token2] = ACTIONS(4341), + [aux_sym__val_number_decimal_token3] = ACTIONS(4343), + [aux_sym__val_number_decimal_token4] = ACTIONS(4345), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(4347), + [aux_sym__val_number_token5] = ACTIONS(4347), + [aux_sym__val_number_token6] = ACTIONS(4347), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(4349), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [1331] = { + [sym__val_range] = STATE(7779), + [sym__value] = STATE(4928), + [sym_val_nothing] = STATE(4888), + [sym_val_bool] = STATE(4601), + [sym_val_variable] = STATE(4888), + [sym_val_number] = STATE(4888), + [sym__val_number_decimal] = STATE(4115), + [sym__val_number] = STATE(4852), + [sym_val_duration] = STATE(4888), + [sym_val_filesize] = STATE(4888), + [sym_val_binary] = STATE(4888), + [sym_val_string] = STATE(4888), + [sym__raw_str] = STATE(4528), + [sym__str_double_quotes] = STATE(4528), + [sym_val_interpolated] = STATE(4888), + [sym__inter_single_quotes] = STATE(4891), + [sym__inter_double_quotes] = STATE(4896), + [sym_val_list] = STATE(4888), + [sym_val_record] = STATE(4888), + [sym_val_table] = STATE(4888), + [sym_val_closure] = STATE(4888), + [sym_unquoted] = STATE(4929), + [sym__unquoted_anonymous_prefix] = STATE(8056), + [sym_comment] = STATE(1331), + [anon_sym_LBRACK] = ACTIONS(4501), + [anon_sym_LPAREN] = ACTIONS(4503), + [anon_sym_DOLLAR] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_DOT_DOT] = ACTIONS(4509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4511), + [anon_sym_DOT_DOT_LT] = ACTIONS(4511), + [anon_sym_null] = ACTIONS(4513), + [anon_sym_true] = ACTIONS(4515), + [anon_sym_false] = ACTIONS(4515), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(4517), + [aux_sym__val_number_decimal_token3] = ACTIONS(4519), + [aux_sym__val_number_decimal_token4] = ACTIONS(4521), + [aux_sym__val_number_token1] = ACTIONS(4523), + [aux_sym__val_number_token2] = ACTIONS(4523), + [aux_sym__val_number_token3] = ACTIONS(4523), + [aux_sym__val_number_token4] = ACTIONS(4525), + [aux_sym__val_number_token5] = ACTIONS(4525), + [aux_sym__val_number_token6] = ACTIONS(4525), + [anon_sym_0b] = ACTIONS(2096), + [anon_sym_0o] = ACTIONS(2098), + [anon_sym_0x] = ACTIONS(2098), + [sym_val_date] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(4529), + [sym__str_single_quotes] = ACTIONS(4531), + [sym__str_back_ticks] = ACTIONS(4531), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4533), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4535), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(2114), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2116), + }, + [1332] = { + [sym__val_range] = STATE(7739), + [sym__value] = STATE(6136), + [sym_val_nothing] = STATE(5002), + [sym_val_bool] = STATE(5962), + [sym_val_variable] = STATE(5002), + [sym_val_number] = STATE(5002), + [sym__val_number_decimal] = STATE(5270), + [sym__val_number] = STATE(4893), + [sym_val_duration] = STATE(5002), + [sym_val_filesize] = STATE(5002), + [sym_val_binary] = STATE(5002), + [sym_val_string] = STATE(5002), + [sym__raw_str] = STATE(4332), + [sym__str_double_quotes] = STATE(4332), + [sym_val_interpolated] = STATE(5002), + [sym__inter_single_quotes] = STATE(4834), + [sym__inter_double_quotes] = STATE(4836), + [sym_val_list] = STATE(5002), + [sym_val_record] = STATE(5002), + [sym_val_table] = STATE(5002), + [sym_val_closure] = STATE(5002), + [sym_unquoted] = STATE(6137), + [sym__unquoted_anonymous_prefix] = STATE(7847), + [sym_comment] = STATE(1332), + [anon_sym_LBRACK] = ACTIONS(4177), + [anon_sym_LPAREN] = ACTIONS(4179), + [anon_sym_DOLLAR] = ACTIONS(4181), + [anon_sym_LBRACE] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), + [anon_sym_DOT_DOT_LT] = ACTIONS(4187), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_true] = ACTIONS(4361), + [anon_sym_false] = ACTIONS(4361), + [aux_sym__val_number_decimal_token1] = ACTIONS(4473), + [aux_sym__val_number_decimal_token2] = ACTIONS(4475), + [aux_sym__val_number_decimal_token3] = ACTIONS(4477), + [aux_sym__val_number_decimal_token4] = ACTIONS(4479), + [aux_sym__val_number_token1] = ACTIONS(3647), + [aux_sym__val_number_token2] = ACTIONS(3647), + [aux_sym__val_number_token3] = ACTIONS(3647), + [aux_sym__val_number_token4] = ACTIONS(4481), + [aux_sym__val_number_token5] = ACTIONS(4481), + [aux_sym__val_number_token6] = ACTIONS(4481), + [anon_sym_0b] = ACTIONS(3651), + [anon_sym_0o] = ACTIONS(3653), + [anon_sym_0x] = ACTIONS(3653), + [sym_val_date] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(4001), + [sym__str_single_quotes] = ACTIONS(4003), + [sym__str_back_ticks] = ACTIONS(4003), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4205), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4005), + }, + [1333] = { + [sym__expr_parenthesized_immediate] = STATE(7673), + [sym_comment] = STATE(1333), + [sym__newline] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_PIPE] = ACTIONS(1719), + [anon_sym_err_GT_PIPE] = ACTIONS(1719), + [anon_sym_out_GT_PIPE] = ACTIONS(1719), + [anon_sym_e_GT_PIPE] = ACTIONS(1719), + [anon_sym_o_GT_PIPE] = ACTIONS(1719), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1719), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1719), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1719), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1719), + [anon_sym_LBRACK] = ACTIONS(1719), + [anon_sym_LPAREN] = ACTIONS(1707), + [anon_sym_RPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1719), + [anon_sym_DASH2] = ACTIONS(1707), + [anon_sym_LBRACE] = ACTIONS(1719), + [anon_sym_RBRACE] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_LPAREN2] = ACTIONS(4543), + [anon_sym_DOT_DOT2] = ACTIONS(4545), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1707), + [anon_sym_DOT_DOT_LT] = ACTIONS(1707), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4547), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4547), + [anon_sym_null] = ACTIONS(1719), + [anon_sym_true] = ACTIONS(1719), + [anon_sym_false] = ACTIONS(1719), + [aux_sym__val_number_decimal_token1] = ACTIONS(1707), + [aux_sym__val_number_decimal_token2] = ACTIONS(1719), + [aux_sym__val_number_decimal_token3] = ACTIONS(1719), + [aux_sym__val_number_decimal_token4] = ACTIONS(1719), + [aux_sym__val_number_token1] = ACTIONS(1719), + [aux_sym__val_number_token2] = ACTIONS(1719), + [aux_sym__val_number_token3] = ACTIONS(1719), + [aux_sym__val_number_token4] = ACTIONS(1719), + [aux_sym__val_number_token5] = ACTIONS(1719), + [aux_sym__val_number_token6] = ACTIONS(1719), + [anon_sym_0b] = ACTIONS(1707), + [sym_filesize_unit] = ACTIONS(4549), + [sym_duration_unit] = ACTIONS(4551), + [anon_sym_0o] = ACTIONS(1707), + [anon_sym_0x] = ACTIONS(1707), + [sym_val_date] = ACTIONS(1719), + [anon_sym_DQUOTE] = ACTIONS(1719), + [sym__str_single_quotes] = ACTIONS(1719), + [sym__str_back_ticks] = ACTIONS(1719), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1719), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1719), + [anon_sym_err_GT] = ACTIONS(1707), + [anon_sym_out_GT] = ACTIONS(1707), + [anon_sym_e_GT] = ACTIONS(1707), + [anon_sym_o_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT] = ACTIONS(1707), + [anon_sym_err_GT_GT] = ACTIONS(1719), + [anon_sym_out_GT_GT] = ACTIONS(1719), + [anon_sym_e_GT_GT] = ACTIONS(1719), + [anon_sym_o_GT_GT] = ACTIONS(1719), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1719), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1719), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1719), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1719), + [aux_sym_unquoted_token1] = ACTIONS(1707), + [aux_sym_unquoted_token2] = ACTIONS(4553), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1719), + }, + [1334] = { + [sym__val_range] = STATE(8054), + [sym__value] = STATE(4756), + [sym_val_nothing] = STATE(4729), + [sym_val_bool] = STATE(6971), + [sym_val_variable] = STATE(4729), + [sym_val_number] = STATE(4729), + [sym__val_number_decimal] = STATE(5511), + [sym__val_number] = STATE(4716), + [sym_val_duration] = STATE(4729), + [sym_val_filesize] = STATE(4729), + [sym_val_binary] = STATE(4729), + [sym_val_string] = STATE(4729), + [sym__raw_str] = STATE(4371), + [sym__str_double_quotes] = STATE(4371), + [sym_val_interpolated] = STATE(4729), + [sym__inter_single_quotes] = STATE(4731), + [sym__inter_double_quotes] = STATE(4732), + [sym_val_list] = STATE(4729), + [sym_val_record] = STATE(4729), + [sym_val_table] = STATE(4729), + [sym_val_closure] = STATE(4729), + [sym_unquoted] = STATE(4757), + [sym__unquoted_anonymous_prefix] = STATE(7757), + [sym_comment] = STATE(1334), + [anon_sym_LBRACK] = ACTIONS(4121), + [anon_sym_LPAREN] = ACTIONS(4123), + [anon_sym_DOLLAR] = ACTIONS(4125), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_DOT_DOT] = ACTIONS(4129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4131), + [anon_sym_DOT_DOT_LT] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4157), + [anon_sym_true] = ACTIONS(4159), + [anon_sym_false] = ACTIONS(4159), + [aux_sym__val_number_decimal_token1] = ACTIONS(4161), + [aux_sym__val_number_decimal_token2] = ACTIONS(4163), + [aux_sym__val_number_decimal_token3] = ACTIONS(4165), + [aux_sym__val_number_decimal_token4] = ACTIONS(4167), + [aux_sym__val_number_token1] = ACTIONS(4143), + [aux_sym__val_number_token2] = ACTIONS(4143), + [aux_sym__val_number_token3] = ACTIONS(4143), + [aux_sym__val_number_token4] = ACTIONS(4169), + [aux_sym__val_number_token5] = ACTIONS(4169), + [aux_sym__val_number_token6] = ACTIONS(4169), + [anon_sym_0b] = ACTIONS(1990), + [anon_sym_0o] = ACTIONS(1992), + [anon_sym_0x] = ACTIONS(1992), + [sym_val_date] = ACTIONS(4171), + [anon_sym_DQUOTE] = ACTIONS(4149), + [sym__str_single_quotes] = ACTIONS(4151), + [sym__str_back_ticks] = ACTIONS(4151), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4153), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4155), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(2008), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2010), + }, + [1335] = { + [sym__val_range] = STATE(7779), + [sym__value] = STATE(4964), + [sym_val_nothing] = STATE(4888), + [sym_val_bool] = STATE(4601), + [sym_val_variable] = STATE(4888), + [sym_val_number] = STATE(4888), + [sym__val_number_decimal] = STATE(4115), + [sym__val_number] = STATE(4852), + [sym_val_duration] = STATE(4888), + [sym_val_filesize] = STATE(4888), + [sym_val_binary] = STATE(4888), + [sym_val_string] = STATE(4888), + [sym__raw_str] = STATE(4528), + [sym__str_double_quotes] = STATE(4528), + [sym_val_interpolated] = STATE(4888), + [sym__inter_single_quotes] = STATE(4891), + [sym__inter_double_quotes] = STATE(4896), + [sym_val_list] = STATE(4888), + [sym_val_record] = STATE(4888), + [sym_val_table] = STATE(4888), + [sym_val_closure] = STATE(4888), + [sym_unquoted] = STATE(4969), + [sym__unquoted_anonymous_prefix] = STATE(8056), + [sym_comment] = STATE(1335), + [anon_sym_LBRACK] = ACTIONS(4501), + [anon_sym_LPAREN] = ACTIONS(4503), + [anon_sym_DOLLAR] = ACTIONS(4505), + [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_DOT_DOT] = ACTIONS(4509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4511), + [anon_sym_DOT_DOT_LT] = ACTIONS(4511), + [anon_sym_null] = ACTIONS(4513), + [anon_sym_true] = ACTIONS(4515), + [anon_sym_false] = ACTIONS(4515), + [aux_sym__val_number_decimal_token1] = ACTIONS(2086), + [aux_sym__val_number_decimal_token2] = ACTIONS(4517), + [aux_sym__val_number_decimal_token3] = ACTIONS(4519), + [aux_sym__val_number_decimal_token4] = ACTIONS(4521), + [aux_sym__val_number_token1] = ACTIONS(4523), + [aux_sym__val_number_token2] = ACTIONS(4523), + [aux_sym__val_number_token3] = ACTIONS(4523), + [aux_sym__val_number_token4] = ACTIONS(4525), + [aux_sym__val_number_token5] = ACTIONS(4525), + [aux_sym__val_number_token6] = ACTIONS(4525), + [anon_sym_0b] = ACTIONS(2096), + [anon_sym_0o] = ACTIONS(2098), + [anon_sym_0x] = ACTIONS(2098), + [sym_val_date] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(4529), + [sym__str_single_quotes] = ACTIONS(4531), + [sym__str_back_ticks] = ACTIONS(4531), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4533), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4535), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(2114), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2116), + }, + [1336] = { + [sym__val_range] = STATE(8054), + [sym__value] = STATE(4766), + [sym_val_nothing] = STATE(4729), + [sym_val_bool] = STATE(6971), + [sym_val_variable] = STATE(4729), + [sym_val_number] = STATE(4729), + [sym__val_number_decimal] = STATE(5511), + [sym__val_number] = STATE(4716), + [sym_val_duration] = STATE(4729), + [sym_val_filesize] = STATE(4729), + [sym_val_binary] = STATE(4729), + [sym_val_string] = STATE(4729), + [sym__raw_str] = STATE(4371), + [sym__str_double_quotes] = STATE(4371), + [sym_val_interpolated] = STATE(4729), + [sym__inter_single_quotes] = STATE(4731), + [sym__inter_double_quotes] = STATE(4732), + [sym_val_list] = STATE(4729), + [sym_val_record] = STATE(4729), + [sym_val_table] = STATE(4729), + [sym_val_closure] = STATE(4729), + [sym_unquoted] = STATE(4767), + [sym__unquoted_anonymous_prefix] = STATE(7757), + [sym_comment] = STATE(1336), + [anon_sym_LBRACK] = ACTIONS(4121), + [anon_sym_LPAREN] = ACTIONS(4123), + [anon_sym_DOLLAR] = ACTIONS(4125), + [anon_sym_LBRACE] = ACTIONS(4127), + [anon_sym_DOT_DOT] = ACTIONS(4129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4131), + [anon_sym_DOT_DOT_LT] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4157), + [anon_sym_true] = ACTIONS(4159), + [anon_sym_false] = ACTIONS(4159), + [aux_sym__val_number_decimal_token1] = ACTIONS(4161), + [aux_sym__val_number_decimal_token2] = ACTIONS(4163), + [aux_sym__val_number_decimal_token3] = ACTIONS(4165), + [aux_sym__val_number_decimal_token4] = ACTIONS(4167), + [aux_sym__val_number_token1] = ACTIONS(4143), + [aux_sym__val_number_token2] = ACTIONS(4143), + [aux_sym__val_number_token3] = ACTIONS(4143), + [aux_sym__val_number_token4] = ACTIONS(4169), + [aux_sym__val_number_token5] = ACTIONS(4169), + [aux_sym__val_number_token6] = ACTIONS(4169), + [anon_sym_0b] = ACTIONS(1990), + [anon_sym_0o] = ACTIONS(1992), + [anon_sym_0x] = ACTIONS(1992), + [sym_val_date] = ACTIONS(4171), + [anon_sym_DQUOTE] = ACTIONS(4149), + [sym__str_single_quotes] = ACTIONS(4151), + [sym__str_back_ticks] = ACTIONS(4151), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4153), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4155), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(2008), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2010), + }, + [1337] = { + [sym__val_range] = STATE(7906), + [sym__value] = STATE(5514), + [sym_val_nothing] = STATE(2116), + [sym_val_bool] = STATE(7662), + [sym_val_variable] = STATE(2116), + [sym_val_number] = STATE(2116), + [sym__val_number_decimal] = STATE(5723), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(2116), + [sym_val_filesize] = STATE(2116), + [sym_val_binary] = STATE(2116), + [sym_val_string] = STATE(2116), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_interpolated] = STATE(2116), + [sym__inter_single_quotes] = STATE(2171), + [sym__inter_double_quotes] = STATE(2172), + [sym_val_list] = STATE(2116), + [sym_val_record] = STATE(2116), + [sym_val_table] = STATE(2116), + [sym_val_closure] = STATE(2116), + [sym_unquoted] = STATE(5515), + [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym_comment] = STATE(1337), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(4327), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(4331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4333), + [anon_sym_DOT_DOT_LT] = ACTIONS(4333), + [anon_sym_null] = ACTIONS(4335), + [anon_sym_true] = ACTIONS(4337), + [anon_sym_false] = ACTIONS(4337), + [aux_sym__val_number_decimal_token1] = ACTIONS(4339), + [aux_sym__val_number_decimal_token2] = ACTIONS(4341), + [aux_sym__val_number_decimal_token3] = ACTIONS(4343), + [aux_sym__val_number_decimal_token4] = ACTIONS(4345), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(4347), + [aux_sym__val_number_token5] = ACTIONS(4347), + [aux_sym__val_number_token6] = ACTIONS(4347), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(4349), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [1338] = { + [sym__val_range] = STATE(7739), + [sym__value] = STATE(6117), + [sym_val_nothing] = STATE(5002), + [sym_val_bool] = STATE(7278), + [sym_val_variable] = STATE(5002), + [sym_val_number] = STATE(5002), + [sym__val_number_decimal] = STATE(5602), + [sym__val_number] = STATE(4893), + [sym_val_duration] = STATE(5002), + [sym_val_filesize] = STATE(5002), + [sym_val_binary] = STATE(5002), + [sym_val_string] = STATE(5002), + [sym__raw_str] = STATE(4332), + [sym__str_double_quotes] = STATE(4332), + [sym_val_interpolated] = STATE(5002), + [sym__inter_single_quotes] = STATE(4834), + [sym__inter_double_quotes] = STATE(4836), + [sym_val_list] = STATE(5002), + [sym_val_record] = STATE(5002), + [sym_val_table] = STATE(5002), + [sym_val_closure] = STATE(5002), + [sym_unquoted] = STATE(6143), + [sym__unquoted_anonymous_prefix] = STATE(7847), + [sym_comment] = STATE(1338), + [anon_sym_LBRACK] = ACTIONS(4177), + [anon_sym_LPAREN] = ACTIONS(4179), + [anon_sym_DOLLAR] = ACTIONS(4181), + [anon_sym_LBRACE] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), + [anon_sym_DOT_DOT_LT] = ACTIONS(4187), + [anon_sym_null] = ACTIONS(4189), + [anon_sym_true] = ACTIONS(4191), + [anon_sym_false] = ACTIONS(4191), + [aux_sym__val_number_decimal_token1] = ACTIONS(4193), + [aux_sym__val_number_decimal_token2] = ACTIONS(4195), + [aux_sym__val_number_decimal_token3] = ACTIONS(4197), + [aux_sym__val_number_decimal_token4] = ACTIONS(4199), + [aux_sym__val_number_token1] = ACTIONS(3647), + [aux_sym__val_number_token2] = ACTIONS(3647), + [aux_sym__val_number_token3] = ACTIONS(3647), + [aux_sym__val_number_token4] = ACTIONS(4201), + [aux_sym__val_number_token5] = ACTIONS(4201), + [aux_sym__val_number_token6] = ACTIONS(4201), + [anon_sym_0b] = ACTIONS(3651), + [anon_sym_0o] = ACTIONS(3653), + [anon_sym_0x] = ACTIONS(3653), + [sym_val_date] = ACTIONS(4203), + [anon_sym_DQUOTE] = ACTIONS(4001), + [sym__str_single_quotes] = ACTIONS(4003), + [sym__str_back_ticks] = ACTIONS(4003), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4205), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4005), + }, + [1339] = { + [sym_cell_path] = STATE(1501), + [sym_path] = STATE(1421), + [sym_comment] = STATE(1339), + [aux_sym_cell_path_repeat1] = STATE(1348), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(963), + [anon_sym_DASH_EQ] = ACTIONS(963), + [anon_sym_STAR_EQ] = ACTIONS(963), + [anon_sym_SLASH_EQ] = ACTIONS(963), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(963), + [sym__newline] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_err_GT_PIPE] = ACTIONS(963), + [anon_sym_out_GT_PIPE] = ACTIONS(963), + [anon_sym_e_GT_PIPE] = ACTIONS(963), + [anon_sym_o_GT_PIPE] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), + [anon_sym_GT2] = ACTIONS(961), + [anon_sym_DASH2] = ACTIONS(961), + [anon_sym_in2] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_STAR2] = ACTIONS(961), + [anon_sym_and2] = ACTIONS(963), + [anon_sym_xor2] = ACTIONS(963), + [anon_sym_or2] = ACTIONS(963), + [anon_sym_not_DASHin2] = ACTIONS(963), + [anon_sym_starts_DASHwith2] = ACTIONS(963), + [anon_sym_ends_DASHwith2] = ACTIONS(963), + [anon_sym_EQ_EQ2] = ACTIONS(963), + [anon_sym_BANG_EQ2] = ACTIONS(963), + [anon_sym_LT2] = ACTIONS(961), + [anon_sym_LT_EQ2] = ACTIONS(963), + [anon_sym_GT_EQ2] = ACTIONS(963), + [anon_sym_EQ_TILDE2] = ACTIONS(963), + [anon_sym_BANG_TILDE2] = ACTIONS(963), + [anon_sym_STAR_STAR2] = ACTIONS(963), + [anon_sym_PLUS_PLUS2] = ACTIONS(961), + [anon_sym_SLASH2] = ACTIONS(961), + [anon_sym_mod2] = ACTIONS(963), + [anon_sym_SLASH_SLASH2] = ACTIONS(963), + [anon_sym_PLUS2] = ACTIONS(961), + [anon_sym_bit_DASHshl2] = ACTIONS(963), + [anon_sym_bit_DASHshr2] = ACTIONS(963), + [anon_sym_bit_DASHand2] = ACTIONS(963), + [anon_sym_bit_DASHxor2] = ACTIONS(963), + [anon_sym_bit_DASHor2] = ACTIONS(963), + [anon_sym_DOT_DOT2] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(4555), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), + [anon_sym_DOT_DOT_LT2] = ACTIONS(963), + [aux_sym_record_entry_token1] = ACTIONS(963), + [anon_sym_err_GT] = ACTIONS(961), + [anon_sym_out_GT] = ACTIONS(961), + [anon_sym_e_GT] = ACTIONS(961), + [anon_sym_o_GT] = ACTIONS(961), + [anon_sym_err_PLUSout_GT] = ACTIONS(961), + [anon_sym_out_PLUSerr_GT] = ACTIONS(961), + [anon_sym_o_PLUSe_GT] = ACTIONS(961), + [anon_sym_e_PLUSo_GT] = ACTIONS(961), + [anon_sym_err_GT_GT] = ACTIONS(963), + [anon_sym_out_GT_GT] = ACTIONS(963), + [anon_sym_e_GT_GT] = ACTIONS(963), + [anon_sym_o_GT_GT] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), + [anon_sym_POUND] = ACTIONS(247), + }, + [1340] = { + [sym__val_range] = STATE(7739), + [sym__value] = STATE(6117), + [sym_val_nothing] = STATE(5002), + [sym_val_bool] = STATE(6436), + [sym_val_variable] = STATE(5002), + [sym_val_number] = STATE(5002), + [sym__val_number_decimal] = STATE(5470), + [sym__val_number] = STATE(4893), + [sym_val_duration] = STATE(5002), + [sym_val_filesize] = STATE(5002), + [sym_val_binary] = STATE(5002), + [sym_val_string] = STATE(5002), + [sym__raw_str] = STATE(4332), + [sym__str_double_quotes] = STATE(4332), + [sym_val_interpolated] = STATE(5002), + [sym__inter_single_quotes] = STATE(4834), + [sym__inter_double_quotes] = STATE(4836), + [sym_val_list] = STATE(5002), + [sym_val_record] = STATE(5002), + [sym_val_table] = STATE(5002), + [sym_val_closure] = STATE(5002), + [sym_unquoted] = STATE(6143), + [sym__unquoted_anonymous_prefix] = STATE(7847), + [sym_comment] = STATE(1340), + [anon_sym_LBRACK] = ACTIONS(4177), + [anon_sym_LPAREN] = ACTIONS(4179), + [anon_sym_DOLLAR] = ACTIONS(4181), + [anon_sym_LBRACE] = ACTIONS(4183), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4187), + [anon_sym_DOT_DOT_LT] = ACTIONS(4187), + [anon_sym_null] = ACTIONS(4457), + [anon_sym_true] = ACTIONS(4459), + [anon_sym_false] = ACTIONS(4459), + [aux_sym__val_number_decimal_token1] = ACTIONS(4461), + [aux_sym__val_number_decimal_token2] = ACTIONS(4463), + [aux_sym__val_number_decimal_token3] = ACTIONS(4465), + [aux_sym__val_number_decimal_token4] = ACTIONS(4467), + [aux_sym__val_number_token1] = ACTIONS(3647), + [aux_sym__val_number_token2] = ACTIONS(3647), + [aux_sym__val_number_token3] = ACTIONS(3647), + [aux_sym__val_number_token4] = ACTIONS(4469), + [aux_sym__val_number_token5] = ACTIONS(4469), + [aux_sym__val_number_token6] = ACTIONS(4469), + [anon_sym_0b] = ACTIONS(3651), + [anon_sym_0o] = ACTIONS(3653), + [anon_sym_0x] = ACTIONS(3653), + [sym_val_date] = ACTIONS(4471), + [anon_sym_DQUOTE] = ACTIONS(4001), + [sym__str_single_quotes] = ACTIONS(4003), + [sym__str_back_ticks] = ACTIONS(4003), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3661), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3663), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(4205), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4005), + }, + [1341] = { + [sym_comment] = STATE(1341), [anon_sym_EQ] = ACTIONS(998), [anon_sym_PLUS_EQ] = ACTIONS(1000), [anon_sym_DASH_EQ] = ACTIONS(1000), @@ -205248,1106 +205113,303 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), [anon_sym_POUND] = ACTIONS(247), }, - [1348] = { - [sym_cell_path] = STATE(1523), - [sym_path] = STATE(1460), - [sym_comment] = STATE(1348), - [aux_sym_cell_path_repeat1] = STATE(1397), - [sym__newline] = ACTIONS(963), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(963), - [anon_sym_err_GT_PIPE] = ACTIONS(963), - [anon_sym_out_GT_PIPE] = ACTIONS(963), - [anon_sym_e_GT_PIPE] = ACTIONS(963), - [anon_sym_o_GT_PIPE] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), - [anon_sym_LBRACK] = ACTIONS(963), - [anon_sym_LPAREN] = ACTIONS(963), - [anon_sym_RPAREN] = ACTIONS(963), - [anon_sym_DOLLAR] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_DASH2] = ACTIONS(961), - [anon_sym_LBRACE] = ACTIONS(963), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_DOT_DOT] = ACTIONS(961), - [anon_sym_DOT_DOT2] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(4557), - [anon_sym_DOT_DOT_EQ] = ACTIONS(961), - [anon_sym_DOT_DOT_LT] = ACTIONS(961), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), - [anon_sym_DOT_DOT_LT2] = ACTIONS(963), - [anon_sym_null] = ACTIONS(963), - [anon_sym_true] = ACTIONS(963), - [anon_sym_false] = ACTIONS(963), - [aux_sym__val_number_decimal_token1] = ACTIONS(961), - [aux_sym__val_number_decimal_token2] = ACTIONS(963), - [aux_sym__val_number_decimal_token3] = ACTIONS(963), - [aux_sym__val_number_decimal_token4] = ACTIONS(963), - [aux_sym__val_number_token1] = ACTIONS(963), - [aux_sym__val_number_token2] = ACTIONS(963), - [aux_sym__val_number_token3] = ACTIONS(963), - [aux_sym__val_number_token4] = ACTIONS(963), - [aux_sym__val_number_token5] = ACTIONS(963), - [aux_sym__val_number_token6] = ACTIONS(963), - [anon_sym_0b] = ACTIONS(961), - [anon_sym_0o] = ACTIONS(961), - [anon_sym_0x] = ACTIONS(961), - [sym_val_date] = ACTIONS(963), - [anon_sym_DQUOTE] = ACTIONS(963), - [sym__str_single_quotes] = ACTIONS(963), - [sym__str_back_ticks] = ACTIONS(963), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(963), - [anon_sym_err_GT] = ACTIONS(961), - [anon_sym_out_GT] = ACTIONS(961), - [anon_sym_e_GT] = ACTIONS(961), - [anon_sym_o_GT] = ACTIONS(961), - [anon_sym_err_PLUSout_GT] = ACTIONS(961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(961), - [anon_sym_o_PLUSe_GT] = ACTIONS(961), - [anon_sym_e_PLUSo_GT] = ACTIONS(961), - [anon_sym_err_GT_GT] = ACTIONS(963), - [anon_sym_out_GT_GT] = ACTIONS(963), - [anon_sym_e_GT_GT] = ACTIONS(963), - [anon_sym_o_GT_GT] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), - [aux_sym_unquoted_token1] = ACTIONS(961), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(963), - }, - [1349] = { - [sym_comment] = STATE(1349), - [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(2222), - [anon_sym_SEMI] = ACTIONS(2222), - [anon_sym_PIPE] = ACTIONS(2222), - [anon_sym_err_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_GT_PIPE] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2222), - [anon_sym_RPAREN] = ACTIONS(2222), - [anon_sym_GT2] = ACTIONS(2222), - [anon_sym_DASH2] = ACTIONS(2222), - [anon_sym_in2] = ACTIONS(2222), - [anon_sym_STAR2] = ACTIONS(2222), - [anon_sym_and2] = ACTIONS(2222), - [anon_sym_xor2] = ACTIONS(2222), - [anon_sym_or2] = ACTIONS(2222), - [anon_sym_not_DASHin2] = ACTIONS(2222), - [anon_sym_starts_DASHwith2] = ACTIONS(2222), - [anon_sym_ends_DASHwith2] = ACTIONS(2222), - [anon_sym_EQ_EQ2] = ACTIONS(2222), - [anon_sym_BANG_EQ2] = ACTIONS(2222), - [anon_sym_LT2] = ACTIONS(2222), - [anon_sym_LT_EQ2] = ACTIONS(2222), - [anon_sym_GT_EQ2] = ACTIONS(2222), - [anon_sym_EQ_TILDE2] = ACTIONS(2222), - [anon_sym_BANG_TILDE2] = ACTIONS(2222), - [anon_sym_STAR_STAR2] = ACTIONS(2222), - [anon_sym_PLUS_PLUS2] = ACTIONS(2222), - [anon_sym_SLASH2] = ACTIONS(2222), - [anon_sym_mod2] = ACTIONS(2222), - [anon_sym_SLASH_SLASH2] = ACTIONS(2222), - [anon_sym_PLUS2] = ACTIONS(2222), - [anon_sym_bit_DASHshl2] = ACTIONS(2222), - [anon_sym_bit_DASHshr2] = ACTIONS(2222), - [anon_sym_bit_DASHand2] = ACTIONS(2222), - [anon_sym_bit_DASHxor2] = ACTIONS(2222), - [anon_sym_bit_DASHor2] = ACTIONS(2222), + [1342] = { + [sym_comment] = STATE(1342), + [anon_sym_STAR_STAR] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_SLASH] = ACTIONS(3197), + [anon_sym_mod] = ACTIONS(3195), + [anon_sym_SLASH_SLASH] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_bit_DASHshl] = ACTIONS(3195), + [anon_sym_bit_DASHshr] = ACTIONS(3195), + [anon_sym_EQ_TILDE] = ACTIONS(3195), + [anon_sym_BANG_TILDE] = ACTIONS(3195), + [anon_sym_bit_DASHand] = ACTIONS(3195), + [anon_sym_bit_DASHxor] = ACTIONS(3195), + [anon_sym_bit_DASHor] = ACTIONS(3195), + [anon_sym_and] = ACTIONS(3195), + [anon_sym_xor] = ACTIONS(3195), + [anon_sym_or] = ACTIONS(3195), + [anon_sym_in] = ACTIONS(3195), + [anon_sym_not_DASHin] = ACTIONS(3195), + [anon_sym_starts_DASHwith] = ACTIONS(3195), + [anon_sym_ends_DASHwith] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT] = ACTIONS(3197), + [anon_sym_GT_EQ] = ACTIONS(3195), + [aux_sym_cmd_identifier_token41] = ACTIONS(3199), + [sym__newline] = ACTIONS(2246), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2246), + [anon_sym_err_GT_PIPE] = ACTIONS(2246), + [anon_sym_out_GT_PIPE] = ACTIONS(2246), + [anon_sym_e_GT_PIPE] = ACTIONS(2246), + [anon_sym_o_GT_PIPE] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2246), + [anon_sym_GT2] = ACTIONS(2246), + [anon_sym_DASH2] = ACTIONS(2246), + [anon_sym_in2] = ACTIONS(2246), + [anon_sym_RBRACE] = ACTIONS(2246), + [anon_sym_STAR2] = ACTIONS(2246), + [anon_sym_and2] = ACTIONS(2246), + [anon_sym_xor2] = ACTIONS(2246), + [anon_sym_or2] = ACTIONS(2246), + [anon_sym_not_DASHin2] = ACTIONS(2246), + [anon_sym_starts_DASHwith2] = ACTIONS(2246), + [anon_sym_ends_DASHwith2] = ACTIONS(2246), + [anon_sym_EQ_EQ2] = ACTIONS(2246), + [anon_sym_BANG_EQ2] = ACTIONS(2246), + [anon_sym_LT2] = ACTIONS(2246), + [anon_sym_LT_EQ2] = ACTIONS(2246), + [anon_sym_GT_EQ2] = ACTIONS(2246), + [anon_sym_EQ_TILDE2] = ACTIONS(2246), + [anon_sym_BANG_TILDE2] = ACTIONS(2246), + [anon_sym_STAR_STAR2] = ACTIONS(2246), + [anon_sym_PLUS_PLUS2] = ACTIONS(2246), + [anon_sym_SLASH2] = ACTIONS(2246), + [anon_sym_mod2] = ACTIONS(2246), + [anon_sym_SLASH_SLASH2] = ACTIONS(2246), + [anon_sym_PLUS2] = ACTIONS(2246), + [anon_sym_bit_DASHshl2] = ACTIONS(2246), + [anon_sym_bit_DASHshr2] = ACTIONS(2246), + [anon_sym_bit_DASHand2] = ACTIONS(2246), + [anon_sym_bit_DASHxor2] = ACTIONS(2246), + [anon_sym_bit_DASHor2] = ACTIONS(2246), [anon_sym_POUND] = ACTIONS(3), }, - [1350] = { - [sym_comment] = STATE(1350), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_PLUS_EQ] = ACTIONS(1004), - [anon_sym_DASH_EQ] = ACTIONS(1004), - [anon_sym_STAR_EQ] = ACTIONS(1004), - [anon_sym_SLASH_EQ] = ACTIONS(1004), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1004), - [sym__newline] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_err_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_GT_PIPE] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), - [anon_sym_RPAREN] = ACTIONS(1004), - [anon_sym_GT2] = ACTIONS(1002), - [anon_sym_DASH2] = ACTIONS(1002), - [anon_sym_in2] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1004), - [anon_sym_STAR2] = ACTIONS(1002), - [anon_sym_QMARK2] = ACTIONS(1004), - [anon_sym_and2] = ACTIONS(1004), - [anon_sym_xor2] = ACTIONS(1004), - [anon_sym_or2] = ACTIONS(1004), - [anon_sym_not_DASHin2] = ACTIONS(1004), - [anon_sym_starts_DASHwith2] = ACTIONS(1004), - [anon_sym_ends_DASHwith2] = ACTIONS(1004), - [anon_sym_EQ_EQ2] = ACTIONS(1004), - [anon_sym_BANG_EQ2] = ACTIONS(1004), - [anon_sym_LT2] = ACTIONS(1002), - [anon_sym_LT_EQ2] = ACTIONS(1004), - [anon_sym_GT_EQ2] = ACTIONS(1004), - [anon_sym_EQ_TILDE2] = ACTIONS(1004), - [anon_sym_BANG_TILDE2] = ACTIONS(1004), - [anon_sym_STAR_STAR2] = ACTIONS(1004), - [anon_sym_PLUS_PLUS2] = ACTIONS(1002), - [anon_sym_SLASH2] = ACTIONS(1002), - [anon_sym_mod2] = ACTIONS(1004), - [anon_sym_SLASH_SLASH2] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1002), - [anon_sym_bit_DASHshl2] = ACTIONS(1004), - [anon_sym_bit_DASHshr2] = ACTIONS(1004), - [anon_sym_bit_DASHand2] = ACTIONS(1004), - [anon_sym_bit_DASHxor2] = ACTIONS(1004), - [anon_sym_bit_DASHor2] = ACTIONS(1004), - [anon_sym_DOT_DOT2] = ACTIONS(1002), - [anon_sym_DOT] = ACTIONS(1002), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), - [anon_sym_err_GT] = ACTIONS(1002), - [anon_sym_out_GT] = ACTIONS(1002), - [anon_sym_e_GT] = ACTIONS(1002), - [anon_sym_o_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT] = ACTIONS(1002), - [anon_sym_err_GT_GT] = ACTIONS(1004), - [anon_sym_out_GT_GT] = ACTIONS(1004), - [anon_sym_e_GT_GT] = ACTIONS(1004), - [anon_sym_o_GT_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), - [anon_sym_POUND] = ACTIONS(247), - }, - [1351] = { - [sym_comment] = STATE(1351), - [sym__newline] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_err_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_GT_PIPE] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_LPAREN] = ACTIONS(1675), - [anon_sym_RPAREN] = ACTIONS(1675), - [anon_sym_DOLLAR] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1675), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1675), - [anon_sym_DOT_DOT] = ACTIONS(1673), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1673), - [anon_sym_DOT_DOT_LT] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [aux_sym__immediate_decimal_token2] = ACTIONS(4559), - [anon_sym_null] = ACTIONS(1675), - [anon_sym_true] = ACTIONS(1675), - [anon_sym_false] = ACTIONS(1675), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1675), - [aux_sym__val_number_decimal_token4] = ACTIONS(1675), - [aux_sym__val_number_token1] = ACTIONS(1675), - [aux_sym__val_number_token2] = ACTIONS(1675), - [aux_sym__val_number_token3] = ACTIONS(1675), - [aux_sym__val_number_token4] = ACTIONS(1675), - [aux_sym__val_number_token5] = ACTIONS(1675), - [aux_sym__val_number_token6] = ACTIONS(1675), - [anon_sym_0b] = ACTIONS(1673), - [sym_filesize_unit] = ACTIONS(1675), - [sym_duration_unit] = ACTIONS(1675), - [anon_sym_0o] = ACTIONS(1673), - [anon_sym_0x] = ACTIONS(1673), - [sym_val_date] = ACTIONS(1675), - [anon_sym_DQUOTE] = ACTIONS(1675), - [sym__str_single_quotes] = ACTIONS(1675), - [sym__str_back_ticks] = ACTIONS(1675), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1675), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1675), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1675), - [anon_sym_out_GT_GT] = ACTIONS(1675), - [anon_sym_e_GT_GT] = ACTIONS(1675), - [anon_sym_o_GT_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), - [aux_sym_unquoted_token1] = ACTIONS(1673), - [aux_sym_unquoted_token2] = ACTIONS(1673), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1675), - }, - [1352] = { - [sym_comment] = STATE(1352), - [sym__newline] = ACTIONS(1609), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_PIPE] = ACTIONS(1609), - [anon_sym_err_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_GT_PIPE] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1609), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_RPAREN] = ACTIONS(1609), - [anon_sym_DOLLAR] = ACTIONS(1607), - [anon_sym_DASH_DASH] = ACTIONS(1609), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_LBRACE] = ACTIONS(1609), - [anon_sym_RBRACE] = ACTIONS(1609), - [anon_sym_DOT_DOT] = ACTIONS(1607), - [anon_sym_LPAREN2] = ACTIONS(1609), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), - [anon_sym_DOT_DOT_LT] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [anon_sym_null] = ACTIONS(1609), - [anon_sym_true] = ACTIONS(1609), - [anon_sym_false] = ACTIONS(1609), - [aux_sym__val_number_decimal_token1] = ACTIONS(1607), - [aux_sym__val_number_decimal_token2] = ACTIONS(1609), - [aux_sym__val_number_decimal_token3] = ACTIONS(1609), - [aux_sym__val_number_decimal_token4] = ACTIONS(1609), - [aux_sym__val_number_token1] = ACTIONS(1609), - [aux_sym__val_number_token2] = ACTIONS(1609), - [aux_sym__val_number_token3] = ACTIONS(1609), - [aux_sym__val_number_token4] = ACTIONS(1609), - [aux_sym__val_number_token5] = ACTIONS(1609), - [aux_sym__val_number_token6] = ACTIONS(1609), - [anon_sym_0b] = ACTIONS(1607), - [sym_filesize_unit] = ACTIONS(1609), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_0o] = ACTIONS(1607), - [anon_sym_0x] = ACTIONS(1607), - [sym_val_date] = ACTIONS(1609), - [anon_sym_DQUOTE] = ACTIONS(1609), - [sym__str_single_quotes] = ACTIONS(1609), - [sym__str_back_ticks] = ACTIONS(1609), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1609), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1609), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1609), - [anon_sym_out_GT_GT] = ACTIONS(1609), - [anon_sym_e_GT_GT] = ACTIONS(1609), - [anon_sym_o_GT_GT] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), - [aux_sym_unquoted_token1] = ACTIONS(1607), - [aux_sym_unquoted_token2] = ACTIONS(1607), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1609), - }, - [1353] = { - [sym__expr_parenthesized_immediate] = STATE(1899), - [sym__immediate_decimal] = STATE(1900), - [sym_val_variable] = STATE(1899), - [sym_comment] = STATE(1353), - [ts_builtin_sym_end] = ACTIONS(1591), - [sym__newline] = ACTIONS(1591), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_PIPE] = ACTIONS(1591), - [anon_sym_err_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_GT_PIPE] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1591), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_DOLLAR] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_DASH2] = ACTIONS(1581), - [anon_sym_LBRACE] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1581), - [anon_sym_LPAREN2] = ACTIONS(4221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT] = ACTIONS(1591), - [aux_sym__immediate_decimal_token1] = ACTIONS(4561), - [aux_sym__immediate_decimal_token3] = ACTIONS(4563), - [aux_sym__immediate_decimal_token4] = ACTIONS(4565), - [aux_sym__immediate_decimal_token5] = ACTIONS(4567), - [anon_sym_null] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [aux_sym__val_number_decimal_token1] = ACTIONS(1581), - [aux_sym__val_number_decimal_token2] = ACTIONS(1581), - [aux_sym__val_number_decimal_token3] = ACTIONS(1581), - [aux_sym__val_number_decimal_token4] = ACTIONS(1581), - [aux_sym__val_number_token1] = ACTIONS(1591), - [aux_sym__val_number_token2] = ACTIONS(1591), - [aux_sym__val_number_token3] = ACTIONS(1591), - [aux_sym__val_number_token4] = ACTIONS(1591), - [aux_sym__val_number_token5] = ACTIONS(1591), - [aux_sym__val_number_token6] = ACTIONS(1591), - [anon_sym_0b] = ACTIONS(1581), - [anon_sym_0o] = ACTIONS(1581), - [anon_sym_0x] = ACTIONS(1581), - [sym_val_date] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym__str_single_quotes] = ACTIONS(1591), - [sym__str_back_ticks] = ACTIONS(1591), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1591), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1591), - [anon_sym_err_GT] = ACTIONS(1581), - [anon_sym_out_GT] = ACTIONS(1581), - [anon_sym_e_GT] = ACTIONS(1581), - [anon_sym_o_GT] = ACTIONS(1581), - [anon_sym_err_PLUSout_GT] = ACTIONS(1581), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1581), - [anon_sym_o_PLUSe_GT] = ACTIONS(1581), - [anon_sym_e_PLUSo_GT] = ACTIONS(1581), - [anon_sym_err_GT_GT] = ACTIONS(1591), - [anon_sym_out_GT_GT] = ACTIONS(1591), - [anon_sym_e_GT_GT] = ACTIONS(1591), - [anon_sym_o_GT_GT] = ACTIONS(1591), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1591), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1591), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1591), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1591), - [aux_sym_unquoted_token1] = ACTIONS(1581), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1591), - }, - [1354] = { - [sym_comment] = STATE(1354), - [sym__newline] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_err_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_GT_PIPE] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_RPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT] = ACTIONS(4569), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), - [anon_sym_DOT_DOT_LT] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(4571), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_0b] = ACTIONS(1755), - [anon_sym_0o] = ACTIONS(1755), - [anon_sym_0x] = ACTIONS(1755), - [sym_val_date] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), - [anon_sym_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [aux_sym_unquoted_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [1355] = { - [sym_comment] = STATE(1355), - [sym__newline] = ACTIONS(1623), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1623), - [anon_sym_err_GT_PIPE] = ACTIONS(1623), - [anon_sym_out_GT_PIPE] = ACTIONS(1623), - [anon_sym_e_GT_PIPE] = ACTIONS(1623), - [anon_sym_o_GT_PIPE] = ACTIONS(1623), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(1621), - [anon_sym_RPAREN] = ACTIONS(1623), - [anon_sym_DOLLAR] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_RBRACE] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1621), - [anon_sym_LPAREN2] = ACTIONS(1623), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1621), - [anon_sym_DOT_DOT_LT] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [anon_sym_null] = ACTIONS(1623), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [aux_sym__val_number_decimal_token1] = ACTIONS(1621), - [aux_sym__val_number_decimal_token2] = ACTIONS(1623), - [aux_sym__val_number_decimal_token3] = ACTIONS(1623), - [aux_sym__val_number_decimal_token4] = ACTIONS(1623), - [aux_sym__val_number_token1] = ACTIONS(1623), - [aux_sym__val_number_token2] = ACTIONS(1623), - [aux_sym__val_number_token3] = ACTIONS(1623), - [aux_sym__val_number_token4] = ACTIONS(1623), - [aux_sym__val_number_token5] = ACTIONS(1623), - [aux_sym__val_number_token6] = ACTIONS(1623), - [anon_sym_0b] = ACTIONS(1621), - [sym_filesize_unit] = ACTIONS(1623), - [sym_duration_unit] = ACTIONS(1623), - [anon_sym_0o] = ACTIONS(1621), - [anon_sym_0x] = ACTIONS(1621), - [sym_val_date] = ACTIONS(1623), - [anon_sym_DQUOTE] = ACTIONS(1623), - [sym__str_single_quotes] = ACTIONS(1623), - [sym__str_back_ticks] = ACTIONS(1623), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1623), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1623), - [anon_sym_err_GT] = ACTIONS(1621), - [anon_sym_out_GT] = ACTIONS(1621), - [anon_sym_e_GT] = ACTIONS(1621), - [anon_sym_o_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT] = ACTIONS(1621), - [anon_sym_err_GT_GT] = ACTIONS(1623), - [anon_sym_out_GT_GT] = ACTIONS(1623), - [anon_sym_e_GT_GT] = ACTIONS(1623), - [anon_sym_o_GT_GT] = ACTIONS(1623), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), - [aux_sym_unquoted_token1] = ACTIONS(1621), - [aux_sym_unquoted_token2] = ACTIONS(1621), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1623), - }, - [1356] = { - [sym_cell_path] = STATE(1567), - [sym_path] = STATE(1460), - [sym_comment] = STATE(1356), - [aux_sym_cell_path_repeat1] = STATE(1397), - [sym__newline] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_err_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_GT_PIPE] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_LPAREN] = ACTIONS(1737), - [anon_sym_RPAREN] = ACTIONS(1737), - [anon_sym_DOLLAR] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1737), - [anon_sym_DASH2] = ACTIONS(1735), - [anon_sym_LBRACE] = ACTIONS(1737), - [anon_sym_RBRACE] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1735), - [anon_sym_DOT_DOT2] = ACTIONS(1735), + [1343] = { + [sym_comment] = STATE(1343), + [ts_builtin_sym_end] = ACTIONS(1575), + [sym__newline] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_err_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_GT_PIPE] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), + [anon_sym_LBRACK] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_DOLLAR] = ACTIONS(1573), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), [anon_sym_DOT] = ACTIONS(4557), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1735), - [anon_sym_DOT_DOT_LT] = ACTIONS(1735), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), - [anon_sym_null] = ACTIONS(1737), - [anon_sym_true] = ACTIONS(1737), - [anon_sym_false] = ACTIONS(1737), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1737), - [aux_sym__val_number_decimal_token4] = ACTIONS(1737), - [aux_sym__val_number_token1] = ACTIONS(1737), - [aux_sym__val_number_token2] = ACTIONS(1737), - [aux_sym__val_number_token3] = ACTIONS(1737), - [aux_sym__val_number_token4] = ACTIONS(1737), - [aux_sym__val_number_token5] = ACTIONS(1737), - [aux_sym__val_number_token6] = ACTIONS(1737), - [anon_sym_0b] = ACTIONS(1735), - [anon_sym_0o] = ACTIONS(1735), - [anon_sym_0x] = ACTIONS(1735), - [sym_val_date] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1737), - [sym__str_single_quotes] = ACTIONS(1737), - [sym__str_back_ticks] = ACTIONS(1737), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), - [anon_sym_err_GT] = ACTIONS(1735), - [anon_sym_out_GT] = ACTIONS(1735), - [anon_sym_e_GT] = ACTIONS(1735), - [anon_sym_o_GT] = ACTIONS(1735), - [anon_sym_err_PLUSout_GT] = ACTIONS(1735), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), - [anon_sym_o_PLUSe_GT] = ACTIONS(1735), - [anon_sym_e_PLUSo_GT] = ACTIONS(1735), - [anon_sym_err_GT_GT] = ACTIONS(1737), - [anon_sym_out_GT_GT] = ACTIONS(1737), - [anon_sym_e_GT_GT] = ACTIONS(1737), - [anon_sym_o_GT_GT] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), - [aux_sym_unquoted_token1] = ACTIONS(1735), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1737), - }, - [1357] = { - [sym__match_pattern_expression] = STATE(3107), - [sym__match_pattern_value] = STATE(3147), - [sym__match_pattern_list] = STATE(3109), - [sym__match_pattern_record] = STATE(3111), - [sym_expr_parenthesized] = STATE(2878), - [sym_val_range] = STATE(3147), - [sym__val_range] = STATE(7888), - [sym_val_nothing] = STATE(3095), - [sym_val_bool] = STATE(3079), - [sym_val_variable] = STATE(2883), - [sym_val_number] = STATE(3095), - [sym__val_number_decimal] = STATE(2727), - [sym__val_number] = STATE(3096), - [sym_val_duration] = STATE(3095), - [sym_val_filesize] = STATE(3095), - [sym_val_binary] = STATE(3095), - [sym_val_string] = STATE(3095), - [sym__raw_str] = STATE(3110), - [sym__str_double_quotes] = STATE(3110), - [sym_val_table] = STATE(3095), - [sym__unquoted_in_list] = STATE(3107), - [sym__unquoted_anonymous_prefix] = STATE(7642), - [sym_comment] = STATE(1357), - [aux_sym__match_pattern_list_repeat1] = STATE(1357), - [anon_sym_LBRACK] = ACTIONS(4573), - [anon_sym_RBRACK] = ACTIONS(4576), - [anon_sym_LPAREN] = ACTIONS(4578), - [anon_sym_DOLLAR] = ACTIONS(4581), - [anon_sym_LBRACE] = ACTIONS(4584), - [anon_sym_DOT_DOT] = ACTIONS(4587), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4590), - [anon_sym_DOT_DOT_LT] = ACTIONS(4590), - [anon_sym_null] = ACTIONS(4593), - [anon_sym_true] = ACTIONS(4596), - [anon_sym_false] = ACTIONS(4596), - [aux_sym__val_number_decimal_token1] = ACTIONS(4599), - [aux_sym__val_number_decimal_token2] = ACTIONS(4602), - [aux_sym__val_number_decimal_token3] = ACTIONS(4605), - [aux_sym__val_number_decimal_token4] = ACTIONS(4608), - [aux_sym__val_number_token1] = ACTIONS(4611), - [aux_sym__val_number_token2] = ACTIONS(4611), - [aux_sym__val_number_token3] = ACTIONS(4611), - [aux_sym__val_number_token4] = ACTIONS(4614), - [aux_sym__val_number_token5] = ACTIONS(4614), - [aux_sym__val_number_token6] = ACTIONS(4614), - [anon_sym_0b] = ACTIONS(4617), - [anon_sym_0o] = ACTIONS(4620), - [anon_sym_0x] = ACTIONS(4620), - [sym_val_date] = ACTIONS(4623), - [anon_sym_DQUOTE] = ACTIONS(4626), - [sym__str_single_quotes] = ACTIONS(4629), - [sym__str_back_ticks] = ACTIONS(4629), - [anon_sym_err_GT] = ACTIONS(4632), - [anon_sym_out_GT] = ACTIONS(4632), - [anon_sym_e_GT] = ACTIONS(4632), - [anon_sym_o_GT] = ACTIONS(4632), - [anon_sym_err_PLUSout_GT] = ACTIONS(4632), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4632), - [anon_sym_o_PLUSe_GT] = ACTIONS(4632), - [anon_sym_e_PLUSo_GT] = ACTIONS(4632), - [anon_sym_err_GT_GT] = ACTIONS(4635), - [anon_sym_out_GT_GT] = ACTIONS(4635), - [anon_sym_e_GT_GT] = ACTIONS(4635), - [anon_sym_o_GT_GT] = ACTIONS(4635), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4635), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4635), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4635), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4635), - [aux_sym__unquoted_in_list_token1] = ACTIONS(4638), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4641), - }, - [1358] = { - [sym_comment] = STATE(1358), - [sym__newline] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_err_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_GT_PIPE] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_RPAREN] = ACTIONS(1675), - [anon_sym_DOLLAR] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1675), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1675), - [anon_sym_DOT_DOT] = ACTIONS(1673), - [anon_sym_LPAREN2] = ACTIONS(1675), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1673), - [anon_sym_DOT_DOT_LT] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [anon_sym_null] = ACTIONS(1675), - [anon_sym_true] = ACTIONS(1675), - [anon_sym_false] = ACTIONS(1675), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1675), - [aux_sym__val_number_decimal_token4] = ACTIONS(1675), - [aux_sym__val_number_token1] = ACTIONS(1675), - [aux_sym__val_number_token2] = ACTIONS(1675), - [aux_sym__val_number_token3] = ACTIONS(1675), - [aux_sym__val_number_token4] = ACTIONS(1675), - [aux_sym__val_number_token5] = ACTIONS(1675), - [aux_sym__val_number_token6] = ACTIONS(1675), - [anon_sym_0b] = ACTIONS(1673), - [sym_filesize_unit] = ACTIONS(1675), - [sym_duration_unit] = ACTIONS(1675), - [anon_sym_0o] = ACTIONS(1673), - [anon_sym_0x] = ACTIONS(1673), - [sym_val_date] = ACTIONS(1675), - [anon_sym_DQUOTE] = ACTIONS(1675), - [sym__str_single_quotes] = ACTIONS(1675), - [sym__str_back_ticks] = ACTIONS(1675), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1675), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1675), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1675), - [anon_sym_out_GT_GT] = ACTIONS(1675), - [anon_sym_e_GT_GT] = ACTIONS(1675), - [anon_sym_o_GT_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), - [aux_sym_unquoted_token1] = ACTIONS(1673), - [aux_sym_unquoted_token2] = ACTIONS(1673), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1675), - }, - [1359] = { - [sym_comment] = STATE(1359), - [sym__newline] = ACTIONS(1765), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_err_GT_PIPE] = ACTIONS(1765), - [anon_sym_out_GT_PIPE] = ACTIONS(1765), - [anon_sym_e_GT_PIPE] = ACTIONS(1765), - [anon_sym_o_GT_PIPE] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1763), - [anon_sym_RPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1763), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_DOT_DOT] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(1765), - [anon_sym_DOT_DOT2] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1763), - [anon_sym_DOT_DOT_LT] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), - [anon_sym_null] = ACTIONS(1765), - [anon_sym_true] = ACTIONS(1765), - [anon_sym_false] = ACTIONS(1765), - [aux_sym__val_number_decimal_token1] = ACTIONS(1763), - [aux_sym__val_number_decimal_token2] = ACTIONS(1765), - [aux_sym__val_number_decimal_token3] = ACTIONS(1765), - [aux_sym__val_number_decimal_token4] = ACTIONS(1765), - [aux_sym__val_number_token1] = ACTIONS(1765), - [aux_sym__val_number_token2] = ACTIONS(1765), - [aux_sym__val_number_token3] = ACTIONS(1765), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_0b] = ACTIONS(1763), - [sym_filesize_unit] = ACTIONS(1765), - [sym_duration_unit] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1763), - [anon_sym_0x] = ACTIONS(1763), - [sym_val_date] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym__str_single_quotes] = ACTIONS(1765), - [sym__str_back_ticks] = ACTIONS(1765), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1765), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1765), - [anon_sym_err_GT] = ACTIONS(1763), - [anon_sym_out_GT] = ACTIONS(1763), - [anon_sym_e_GT] = ACTIONS(1763), - [anon_sym_o_GT] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT] = ACTIONS(1763), - [anon_sym_err_GT_GT] = ACTIONS(1765), - [anon_sym_out_GT_GT] = ACTIONS(1765), - [anon_sym_e_GT_GT] = ACTIONS(1765), - [anon_sym_o_GT_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1765), - [aux_sym_unquoted_token1] = ACTIONS(1763), - [aux_sym_unquoted_token2] = ACTIONS(1763), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1765), - }, - [1360] = { - [sym_comment] = STATE(1360), - [ts_builtin_sym_end] = ACTIONS(1675), - [sym__newline] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_err_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_GT_PIPE] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_DOLLAR] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1675), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1675), - [anon_sym_DOT_DOT] = ACTIONS(1673), - [anon_sym_LPAREN2] = ACTIONS(1675), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1673), - [anon_sym_DOT_DOT_LT] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [aux_sym__immediate_decimal_token2] = ACTIONS(4644), - [anon_sym_null] = ACTIONS(1675), - [anon_sym_true] = ACTIONS(1675), - [anon_sym_false] = ACTIONS(1675), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1675), - [aux_sym__val_number_decimal_token4] = ACTIONS(1675), - [aux_sym__val_number_token1] = ACTIONS(1675), - [aux_sym__val_number_token2] = ACTIONS(1675), - [aux_sym__val_number_token3] = ACTIONS(1675), - [aux_sym__val_number_token4] = ACTIONS(1675), - [aux_sym__val_number_token5] = ACTIONS(1675), - [aux_sym__val_number_token6] = ACTIONS(1675), - [anon_sym_0b] = ACTIONS(1673), - [sym_filesize_unit] = ACTIONS(1675), - [sym_duration_unit] = ACTIONS(1675), - [anon_sym_0o] = ACTIONS(1673), - [anon_sym_0x] = ACTIONS(1673), - [sym_val_date] = ACTIONS(1675), - [anon_sym_DQUOTE] = ACTIONS(1675), - [sym__str_single_quotes] = ACTIONS(1675), - [sym__str_back_ticks] = ACTIONS(1675), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1675), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1675), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1675), - [anon_sym_out_GT_GT] = ACTIONS(1675), - [anon_sym_e_GT_GT] = ACTIONS(1675), - [anon_sym_o_GT_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), - [aux_sym_unquoted_token1] = ACTIONS(1673), - [aux_sym_unquoted_token2] = ACTIONS(1673), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1573), + [anon_sym_DOT_DOT_LT] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(1575), + [anon_sym_true] = ACTIONS(1575), + [anon_sym_false] = ACTIONS(1575), + [aux_sym__val_number_decimal_token1] = ACTIONS(1573), + [aux_sym__val_number_decimal_token2] = ACTIONS(1575), + [aux_sym__val_number_decimal_token3] = ACTIONS(1575), + [aux_sym__val_number_decimal_token4] = ACTIONS(1575), + [aux_sym__val_number_token1] = ACTIONS(1575), + [aux_sym__val_number_token2] = ACTIONS(1575), + [aux_sym__val_number_token3] = ACTIONS(1575), + [aux_sym__val_number_token4] = ACTIONS(1575), + [aux_sym__val_number_token5] = ACTIONS(1575), + [aux_sym__val_number_token6] = ACTIONS(1575), + [anon_sym_0b] = ACTIONS(1573), + [sym_filesize_unit] = ACTIONS(1575), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_0o] = ACTIONS(1573), + [anon_sym_0x] = ACTIONS(1573), + [sym_val_date] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [sym__str_single_quotes] = ACTIONS(1575), + [sym__str_back_ticks] = ACTIONS(1575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1575), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1575), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1575), + [anon_sym_out_GT_GT] = ACTIONS(1575), + [anon_sym_e_GT_GT] = ACTIONS(1575), + [anon_sym_o_GT_GT] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), + [aux_sym_unquoted_token1] = ACTIONS(1573), + [aux_sym_unquoted_token2] = ACTIONS(1573), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1575), }, - [1361] = { - [sym_path] = STATE(1443), - [sym_comment] = STATE(1361), - [aux_sym_cell_path_repeat1] = STATE(1361), - [anon_sym_EQ] = ACTIONS(971), - [anon_sym_PLUS_EQ] = ACTIONS(973), - [anon_sym_DASH_EQ] = ACTIONS(973), - [anon_sym_STAR_EQ] = ACTIONS(973), - [anon_sym_SLASH_EQ] = ACTIONS(973), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(973), - [sym__newline] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(973), - [anon_sym_err_GT_PIPE] = ACTIONS(973), - [anon_sym_out_GT_PIPE] = ACTIONS(973), - [anon_sym_e_GT_PIPE] = ACTIONS(973), - [anon_sym_o_GT_PIPE] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), - [anon_sym_RPAREN] = ACTIONS(973), - [anon_sym_GT2] = ACTIONS(971), - [anon_sym_DASH2] = ACTIONS(971), - [anon_sym_in2] = ACTIONS(973), - [anon_sym_RBRACE] = ACTIONS(973), - [anon_sym_STAR2] = ACTIONS(971), - [anon_sym_and2] = ACTIONS(973), - [anon_sym_xor2] = ACTIONS(973), - [anon_sym_or2] = ACTIONS(973), - [anon_sym_not_DASHin2] = ACTIONS(973), - [anon_sym_starts_DASHwith2] = ACTIONS(973), - [anon_sym_ends_DASHwith2] = ACTIONS(973), - [anon_sym_EQ_EQ2] = ACTIONS(973), - [anon_sym_BANG_EQ2] = ACTIONS(973), - [anon_sym_LT2] = ACTIONS(971), - [anon_sym_LT_EQ2] = ACTIONS(973), - [anon_sym_GT_EQ2] = ACTIONS(973), - [anon_sym_EQ_TILDE2] = ACTIONS(973), - [anon_sym_BANG_TILDE2] = ACTIONS(973), - [anon_sym_STAR_STAR2] = ACTIONS(973), - [anon_sym_PLUS_PLUS2] = ACTIONS(971), - [anon_sym_SLASH2] = ACTIONS(971), - [anon_sym_mod2] = ACTIONS(973), - [anon_sym_SLASH_SLASH2] = ACTIONS(973), - [anon_sym_PLUS2] = ACTIONS(971), - [anon_sym_bit_DASHshl2] = ACTIONS(973), - [anon_sym_bit_DASHshr2] = ACTIONS(973), - [anon_sym_bit_DASHand2] = ACTIONS(973), - [anon_sym_bit_DASHxor2] = ACTIONS(973), - [anon_sym_bit_DASHor2] = ACTIONS(973), - [anon_sym_DOT_DOT2] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(4646), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(973), - [anon_sym_DOT_DOT_LT2] = ACTIONS(973), - [anon_sym_err_GT] = ACTIONS(971), - [anon_sym_out_GT] = ACTIONS(971), - [anon_sym_e_GT] = ACTIONS(971), - [anon_sym_o_GT] = ACTIONS(971), - [anon_sym_err_PLUSout_GT] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT] = ACTIONS(971), - [anon_sym_o_PLUSe_GT] = ACTIONS(971), - [anon_sym_e_PLUSo_GT] = ACTIONS(971), - [anon_sym_err_GT_GT] = ACTIONS(973), - [anon_sym_out_GT_GT] = ACTIONS(973), - [anon_sym_e_GT_GT] = ACTIONS(973), - [anon_sym_o_GT_GT] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), - [anon_sym_POUND] = ACTIONS(247), + [1344] = { + [sym__expr_parenthesized_immediate] = STATE(7700), + [sym_comment] = STATE(1344), + [ts_builtin_sym_end] = ACTIONS(1719), + [sym__newline] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_PIPE] = ACTIONS(1719), + [anon_sym_err_GT_PIPE] = ACTIONS(1719), + [anon_sym_out_GT_PIPE] = ACTIONS(1719), + [anon_sym_e_GT_PIPE] = ACTIONS(1719), + [anon_sym_o_GT_PIPE] = ACTIONS(1719), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1719), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1719), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1719), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1719), + [anon_sym_LBRACK] = ACTIONS(1719), + [anon_sym_LPAREN] = ACTIONS(1707), + [anon_sym_DOLLAR] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1719), + [anon_sym_DASH2] = ACTIONS(1707), + [anon_sym_LBRACE] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_LPAREN2] = ACTIONS(4543), + [anon_sym_DOT_DOT2] = ACTIONS(4561), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1707), + [anon_sym_DOT_DOT_LT] = ACTIONS(1707), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4563), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4563), + [anon_sym_null] = ACTIONS(1719), + [anon_sym_true] = ACTIONS(1719), + [anon_sym_false] = ACTIONS(1719), + [aux_sym__val_number_decimal_token1] = ACTIONS(1707), + [aux_sym__val_number_decimal_token2] = ACTIONS(1719), + [aux_sym__val_number_decimal_token3] = ACTIONS(1719), + [aux_sym__val_number_decimal_token4] = ACTIONS(1719), + [aux_sym__val_number_token1] = ACTIONS(1719), + [aux_sym__val_number_token2] = ACTIONS(1719), + [aux_sym__val_number_token3] = ACTIONS(1719), + [aux_sym__val_number_token4] = ACTIONS(1719), + [aux_sym__val_number_token5] = ACTIONS(1719), + [aux_sym__val_number_token6] = ACTIONS(1719), + [anon_sym_0b] = ACTIONS(1707), + [sym_filesize_unit] = ACTIONS(4565), + [sym_duration_unit] = ACTIONS(4567), + [anon_sym_0o] = ACTIONS(1707), + [anon_sym_0x] = ACTIONS(1707), + [sym_val_date] = ACTIONS(1719), + [anon_sym_DQUOTE] = ACTIONS(1719), + [sym__str_single_quotes] = ACTIONS(1719), + [sym__str_back_ticks] = ACTIONS(1719), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1719), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1719), + [anon_sym_err_GT] = ACTIONS(1707), + [anon_sym_out_GT] = ACTIONS(1707), + [anon_sym_e_GT] = ACTIONS(1707), + [anon_sym_o_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT] = ACTIONS(1707), + [anon_sym_err_GT_GT] = ACTIONS(1719), + [anon_sym_out_GT_GT] = ACTIONS(1719), + [anon_sym_e_GT_GT] = ACTIONS(1719), + [anon_sym_o_GT_GT] = ACTIONS(1719), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1719), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1719), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1719), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1719), + [aux_sym_unquoted_token1] = ACTIONS(1707), + [aux_sym_unquoted_token2] = ACTIONS(4569), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1719), }, - [1362] = { - [sym__expr_parenthesized_immediate] = STATE(1918), - [sym__immediate_decimal] = STATE(1919), - [sym_val_variable] = STATE(1918), - [sym_comment] = STATE(1362), - [ts_builtin_sym_end] = ACTIONS(1693), - [sym__newline] = ACTIONS(1693), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_PIPE] = ACTIONS(1693), - [anon_sym_err_GT_PIPE] = ACTIONS(1693), - [anon_sym_out_GT_PIPE] = ACTIONS(1693), - [anon_sym_e_GT_PIPE] = ACTIONS(1693), - [anon_sym_o_GT_PIPE] = ACTIONS(1693), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1693), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1693), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1693), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1693), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_DOLLAR] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(1693), - [anon_sym_DASH2] = ACTIONS(1691), - [anon_sym_LBRACE] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1691), - [anon_sym_LPAREN2] = ACTIONS(4221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1693), - [anon_sym_DOT_DOT_LT] = ACTIONS(1693), - [aux_sym__immediate_decimal_token1] = ACTIONS(4561), - [aux_sym__immediate_decimal_token3] = ACTIONS(4563), - [aux_sym__immediate_decimal_token4] = ACTIONS(4565), - [aux_sym__immediate_decimal_token5] = ACTIONS(4567), - [anon_sym_null] = ACTIONS(1693), - [anon_sym_true] = ACTIONS(1693), - [anon_sym_false] = ACTIONS(1693), - [aux_sym__val_number_decimal_token1] = ACTIONS(1691), - [aux_sym__val_number_decimal_token2] = ACTIONS(1691), - [aux_sym__val_number_decimal_token3] = ACTIONS(1691), - [aux_sym__val_number_decimal_token4] = ACTIONS(1691), - [aux_sym__val_number_token1] = ACTIONS(1693), - [aux_sym__val_number_token2] = ACTIONS(1693), - [aux_sym__val_number_token3] = ACTIONS(1693), - [aux_sym__val_number_token4] = ACTIONS(1693), - [aux_sym__val_number_token5] = ACTIONS(1693), - [aux_sym__val_number_token6] = ACTIONS(1693), - [anon_sym_0b] = ACTIONS(1691), - [anon_sym_0o] = ACTIONS(1691), - [anon_sym_0x] = ACTIONS(1691), - [sym_val_date] = ACTIONS(1693), - [anon_sym_DQUOTE] = ACTIONS(1693), - [sym__str_single_quotes] = ACTIONS(1693), - [sym__str_back_ticks] = ACTIONS(1693), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1693), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1693), - [anon_sym_err_GT] = ACTIONS(1691), - [anon_sym_out_GT] = ACTIONS(1691), - [anon_sym_e_GT] = ACTIONS(1691), - [anon_sym_o_GT] = ACTIONS(1691), - [anon_sym_err_PLUSout_GT] = ACTIONS(1691), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1691), - [anon_sym_o_PLUSe_GT] = ACTIONS(1691), - [anon_sym_e_PLUSo_GT] = ACTIONS(1691), - [anon_sym_err_GT_GT] = ACTIONS(1693), - [anon_sym_out_GT_GT] = ACTIONS(1693), - [anon_sym_e_GT_GT] = ACTIONS(1693), - [anon_sym_o_GT_GT] = ACTIONS(1693), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1693), - [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_token1] = ACTIONS(1691), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1693), + [1345] = { + [sym_comment] = STATE(1345), + [ts_builtin_sym_end] = ACTIONS(1587), + [sym__newline] = ACTIONS(1587), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_err_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_GT_PIPE] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_DOLLAR] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1585), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), + [anon_sym_DOT_DOT_LT] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [aux_sym__immediate_decimal_token1] = ACTIONS(4571), + [aux_sym__immediate_decimal_token2] = ACTIONS(4573), + [anon_sym_null] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(1587), + [anon_sym_false] = ACTIONS(1587), + [aux_sym__val_number_decimal_token1] = ACTIONS(1585), + [aux_sym__val_number_decimal_token2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1587), + [aux_sym__val_number_token2] = ACTIONS(1587), + [aux_sym__val_number_token3] = ACTIONS(1587), + [aux_sym__val_number_token4] = ACTIONS(1587), + [aux_sym__val_number_token5] = ACTIONS(1587), + [aux_sym__val_number_token6] = ACTIONS(1587), + [anon_sym_0b] = ACTIONS(1585), + [sym_filesize_unit] = ACTIONS(1587), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_0o] = ACTIONS(1585), + [anon_sym_0x] = ACTIONS(1585), + [sym_val_date] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [sym__str_single_quotes] = ACTIONS(1587), + [sym__str_back_ticks] = ACTIONS(1587), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1587), + [anon_sym_out_GT_GT] = ACTIONS(1587), + [anon_sym_e_GT_GT] = ACTIONS(1587), + [anon_sym_o_GT_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [aux_sym_unquoted_token1] = ACTIONS(1585), + [aux_sym_unquoted_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1587), }, - [1363] = { - [sym__expr_parenthesized_immediate] = STATE(1920), - [sym__immediate_decimal] = STATE(1921), - [sym_val_variable] = STATE(1920), - [sym_comment] = STATE(1363), + [1346] = { + [sym__expr_parenthesized_immediate] = STATE(1916), + [sym__immediate_decimal] = STATE(1917), + [sym_val_variable] = STATE(1916), + [sym_comment] = STATE(1346), [ts_builtin_sym_end] = ACTIONS(1671), [sym__newline] = ACTIONS(1671), [anon_sym_SEMI] = ACTIONS(1671), @@ -206362,18 +205424,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), [anon_sym_LBRACK] = ACTIONS(1671), [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_DOLLAR] = ACTIONS(4219), + [anon_sym_DOLLAR] = ACTIONS(4419), [anon_sym_DASH_DASH] = ACTIONS(1671), [anon_sym_DASH2] = ACTIONS(1663), [anon_sym_LBRACE] = ACTIONS(1671), [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_LPAREN2] = ACTIONS(4221), + [anon_sym_LPAREN2] = ACTIONS(4487), [anon_sym_DOT_DOT_EQ] = ACTIONS(1671), [anon_sym_DOT_DOT_LT] = ACTIONS(1671), - [aux_sym__immediate_decimal_token1] = ACTIONS(4561), - [aux_sym__immediate_decimal_token3] = ACTIONS(4563), - [aux_sym__immediate_decimal_token4] = ACTIONS(4565), - [aux_sym__immediate_decimal_token5] = ACTIONS(4567), + [aux_sym__immediate_decimal_token1] = ACTIONS(4575), + [aux_sym__immediate_decimal_token3] = ACTIONS(4577), + [aux_sym__immediate_decimal_token4] = ACTIONS(4579), + [aux_sym__immediate_decimal_token5] = ACTIONS(4581), [anon_sym_null] = ACTIONS(1671), [anon_sym_true] = ACTIONS(1671), [anon_sym_false] = ACTIONS(1671), @@ -206416,83 +205478,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1671), }, - [1364] = { - [sym__expr_parenthesized_immediate] = STATE(1922), - [sym__immediate_decimal] = STATE(1923), - [sym_val_variable] = STATE(1922), - [sym_comment] = STATE(1364), - [ts_builtin_sym_end] = ACTIONS(1707), - [sym__newline] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_err_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_GT_PIPE] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), - [anon_sym_LBRACK] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_DOLLAR] = ACTIONS(4219), - [anon_sym_DASH_DASH] = ACTIONS(1707), - [anon_sym_DASH2] = ACTIONS(1705), - [anon_sym_LBRACE] = ACTIONS(1707), - [anon_sym_DOT_DOT] = ACTIONS(1705), - [anon_sym_LPAREN2] = ACTIONS(4221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1707), - [anon_sym_DOT_DOT_LT] = ACTIONS(1707), - [aux_sym__immediate_decimal_token1] = ACTIONS(4561), - [aux_sym__immediate_decimal_token3] = ACTIONS(4563), - [aux_sym__immediate_decimal_token4] = ACTIONS(4565), - [aux_sym__immediate_decimal_token5] = ACTIONS(4567), - [anon_sym_null] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(1707), - [anon_sym_false] = ACTIONS(1707), - [aux_sym__val_number_decimal_token1] = ACTIONS(1705), - [aux_sym__val_number_decimal_token2] = ACTIONS(1705), - [aux_sym__val_number_decimal_token3] = ACTIONS(1705), - [aux_sym__val_number_decimal_token4] = ACTIONS(1705), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [aux_sym__val_number_token4] = ACTIONS(1707), - [aux_sym__val_number_token5] = ACTIONS(1707), - [aux_sym__val_number_token6] = ACTIONS(1707), - [anon_sym_0b] = ACTIONS(1705), - [anon_sym_0o] = ACTIONS(1705), - [anon_sym_0x] = ACTIONS(1705), - [sym_val_date] = ACTIONS(1707), - [anon_sym_DQUOTE] = ACTIONS(1707), - [sym__str_single_quotes] = ACTIONS(1707), - [sym__str_back_ticks] = ACTIONS(1707), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1707), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1707), - [anon_sym_err_GT] = ACTIONS(1705), - [anon_sym_out_GT] = ACTIONS(1705), - [anon_sym_e_GT] = ACTIONS(1705), - [anon_sym_o_GT] = ACTIONS(1705), - [anon_sym_err_PLUSout_GT] = ACTIONS(1705), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), - [anon_sym_o_PLUSe_GT] = ACTIONS(1705), - [anon_sym_e_PLUSo_GT] = ACTIONS(1705), - [anon_sym_err_GT_GT] = ACTIONS(1707), - [anon_sym_out_GT_GT] = ACTIONS(1707), - [anon_sym_e_GT_GT] = ACTIONS(1707), - [anon_sym_o_GT_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), - [aux_sym_unquoted_token1] = ACTIONS(1705), + [1347] = { + [sym__expr_parenthesized_immediate] = STATE(1918), + [sym__immediate_decimal] = STATE(1977), + [sym_val_variable] = STATE(1918), + [sym_comment] = STATE(1347), + [ts_builtin_sym_end] = ACTIONS(1675), + [sym__newline] = ACTIONS(1675), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1675), + [anon_sym_err_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_GT_PIPE] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_DOLLAR] = ACTIONS(4419), + [anon_sym_DASH_DASH] = ACTIONS(1675), + [anon_sym_DASH2] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1673), + [anon_sym_LPAREN2] = ACTIONS(4487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT] = ACTIONS(1675), + [aux_sym__immediate_decimal_token1] = ACTIONS(4575), + [aux_sym__immediate_decimal_token3] = ACTIONS(4577), + [aux_sym__immediate_decimal_token4] = ACTIONS(4579), + [aux_sym__immediate_decimal_token5] = ACTIONS(4581), + [anon_sym_null] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1675), + [anon_sym_false] = ACTIONS(1675), + [aux_sym__val_number_decimal_token1] = ACTIONS(1673), + [aux_sym__val_number_decimal_token2] = ACTIONS(1673), + [aux_sym__val_number_decimal_token3] = ACTIONS(1673), + [aux_sym__val_number_decimal_token4] = ACTIONS(1673), + [aux_sym__val_number_token1] = ACTIONS(1675), + [aux_sym__val_number_token2] = ACTIONS(1675), + [aux_sym__val_number_token3] = ACTIONS(1675), + [aux_sym__val_number_token4] = ACTIONS(1675), + [aux_sym__val_number_token5] = ACTIONS(1675), + [aux_sym__val_number_token6] = ACTIONS(1675), + [anon_sym_0b] = ACTIONS(1673), + [anon_sym_0o] = ACTIONS(1673), + [anon_sym_0x] = ACTIONS(1673), + [sym_val_date] = ACTIONS(1675), + [anon_sym_DQUOTE] = ACTIONS(1675), + [sym__str_single_quotes] = ACTIONS(1675), + [sym__str_back_ticks] = ACTIONS(1675), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1675), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1675), + [anon_sym_err_GT] = ACTIONS(1673), + [anon_sym_out_GT] = ACTIONS(1673), + [anon_sym_e_GT] = ACTIONS(1673), + [anon_sym_o_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT] = ACTIONS(1673), + [anon_sym_err_GT_GT] = ACTIONS(1675), + [anon_sym_out_GT_GT] = ACTIONS(1675), + [anon_sym_e_GT_GT] = ACTIONS(1675), + [anon_sym_o_GT_GT] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), + [aux_sym_unquoted_token1] = ACTIONS(1673), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1707), + [sym_raw_string_begin] = ACTIONS(1675), }, - [1365] = { + [1348] = { [sym_path] = STATE(1421), - [sym_comment] = STATE(1365), - [aux_sym_cell_path_repeat1] = STATE(1370), + [sym_comment] = STATE(1348), + [aux_sym_cell_path_repeat1] = STATE(1355), [anon_sym_EQ] = ACTIONS(967), [anon_sym_PLUS_EQ] = ACTIONS(969), [anon_sym_DASH_EQ] = ACTIONS(969), @@ -206540,7 +205602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(969), [anon_sym_bit_DASHor2] = ACTIONS(969), [anon_sym_DOT_DOT2] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4555), [anon_sym_DOT_DOT_EQ2] = ACTIONS(969), [anon_sym_DOT_DOT_LT2] = ACTIONS(969), [aux_sym_record_entry_token1] = ACTIONS(969), @@ -206562,302 +205624,448 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), [anon_sym_POUND] = ACTIONS(247), }, - [1366] = { - [sym_comment] = STATE(1366), - [ts_builtin_sym_end] = ACTIONS(1609), - [sym__newline] = ACTIONS(1609), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_PIPE] = ACTIONS(1609), - [anon_sym_err_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_GT_PIPE] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1609), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_DOLLAR] = ACTIONS(1607), - [anon_sym_DASH_DASH] = ACTIONS(1609), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_LBRACE] = ACTIONS(1609), - [anon_sym_DOT_DOT] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT] = ACTIONS(4649), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), - [anon_sym_DOT_DOT_LT] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(4651), - [anon_sym_null] = ACTIONS(1609), - [anon_sym_true] = ACTIONS(1609), - [anon_sym_false] = ACTIONS(1609), - [aux_sym__val_number_decimal_token1] = ACTIONS(1607), - [aux_sym__val_number_decimal_token2] = ACTIONS(1609), - [aux_sym__val_number_decimal_token3] = ACTIONS(1609), - [aux_sym__val_number_decimal_token4] = ACTIONS(1609), - [aux_sym__val_number_token1] = ACTIONS(1609), - [aux_sym__val_number_token2] = ACTIONS(1609), - [aux_sym__val_number_token3] = ACTIONS(1609), - [aux_sym__val_number_token4] = ACTIONS(1609), - [aux_sym__val_number_token5] = ACTIONS(1609), - [aux_sym__val_number_token6] = ACTIONS(1609), - [anon_sym_0b] = ACTIONS(1607), - [sym_filesize_unit] = ACTIONS(1609), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_0o] = ACTIONS(1607), - [anon_sym_0x] = ACTIONS(1607), - [sym_val_date] = ACTIONS(1609), - [anon_sym_DQUOTE] = ACTIONS(1609), - [sym__str_single_quotes] = ACTIONS(1609), - [sym__str_back_ticks] = ACTIONS(1609), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1609), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1609), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1609), - [anon_sym_out_GT_GT] = ACTIONS(1609), - [anon_sym_e_GT_GT] = ACTIONS(1609), - [anon_sym_o_GT_GT] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), - [aux_sym_unquoted_token1] = ACTIONS(1607), - [aux_sym_unquoted_token2] = ACTIONS(1607), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1609), + [1349] = { + [sym_comment] = STATE(1349), + [ts_builtin_sym_end] = ACTIONS(1575), + [sym__newline] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_err_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_GT_PIPE] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), + [anon_sym_LBRACK] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_DOLLAR] = ACTIONS(1573), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_LPAREN2] = ACTIONS(1575), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1573), + [anon_sym_DOT_DOT_LT] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(4485), + [anon_sym_null] = ACTIONS(1575), + [anon_sym_true] = ACTIONS(1575), + [anon_sym_false] = ACTIONS(1575), + [aux_sym__val_number_decimal_token1] = ACTIONS(1573), + [aux_sym__val_number_decimal_token2] = ACTIONS(1575), + [aux_sym__val_number_decimal_token3] = ACTIONS(1575), + [aux_sym__val_number_decimal_token4] = ACTIONS(1575), + [aux_sym__val_number_token1] = ACTIONS(1575), + [aux_sym__val_number_token2] = ACTIONS(1575), + [aux_sym__val_number_token3] = ACTIONS(1575), + [aux_sym__val_number_token4] = ACTIONS(1575), + [aux_sym__val_number_token5] = ACTIONS(1575), + [aux_sym__val_number_token6] = ACTIONS(1575), + [anon_sym_0b] = ACTIONS(1573), + [sym_filesize_unit] = ACTIONS(1575), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_0o] = ACTIONS(1573), + [anon_sym_0x] = ACTIONS(1573), + [sym_val_date] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [sym__str_single_quotes] = ACTIONS(1575), + [sym__str_back_ticks] = ACTIONS(1575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1575), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1575), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1575), + [anon_sym_out_GT_GT] = ACTIONS(1575), + [anon_sym_e_GT_GT] = ACTIONS(1575), + [anon_sym_o_GT_GT] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), + [aux_sym_unquoted_token1] = ACTIONS(1573), + [aux_sym_unquoted_token2] = ACTIONS(1573), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1575), }, - [1367] = { - [sym_comment] = STATE(1367), - [ts_builtin_sym_end] = ACTIONS(1623), - [sym__newline] = ACTIONS(1623), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1623), - [anon_sym_err_GT_PIPE] = ACTIONS(1623), - [anon_sym_out_GT_PIPE] = ACTIONS(1623), - [anon_sym_e_GT_PIPE] = ACTIONS(1623), - [anon_sym_o_GT_PIPE] = ACTIONS(1623), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(1623), - [anon_sym_DOLLAR] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1621), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1621), - [anon_sym_DOT_DOT_LT] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [aux_sym__immediate_decimal_token1] = ACTIONS(4653), - [aux_sym__immediate_decimal_token2] = ACTIONS(4655), - [anon_sym_null] = ACTIONS(1623), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [aux_sym__val_number_decimal_token1] = ACTIONS(1621), - [aux_sym__val_number_decimal_token2] = ACTIONS(1623), - [aux_sym__val_number_decimal_token3] = ACTIONS(1623), - [aux_sym__val_number_decimal_token4] = ACTIONS(1623), - [aux_sym__val_number_token1] = ACTIONS(1623), - [aux_sym__val_number_token2] = ACTIONS(1623), - [aux_sym__val_number_token3] = ACTIONS(1623), - [aux_sym__val_number_token4] = ACTIONS(1623), - [aux_sym__val_number_token5] = ACTIONS(1623), - [aux_sym__val_number_token6] = ACTIONS(1623), - [anon_sym_0b] = ACTIONS(1621), - [sym_filesize_unit] = ACTIONS(1623), - [sym_duration_unit] = ACTIONS(1623), - [anon_sym_0o] = ACTIONS(1621), - [anon_sym_0x] = ACTIONS(1621), - [sym_val_date] = ACTIONS(1623), - [anon_sym_DQUOTE] = ACTIONS(1623), - [sym__str_single_quotes] = ACTIONS(1623), - [sym__str_back_ticks] = ACTIONS(1623), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1623), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1623), - [anon_sym_err_GT] = ACTIONS(1621), - [anon_sym_out_GT] = ACTIONS(1621), - [anon_sym_e_GT] = ACTIONS(1621), - [anon_sym_o_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT] = ACTIONS(1621), - [anon_sym_err_GT_GT] = ACTIONS(1623), - [anon_sym_out_GT_GT] = ACTIONS(1623), - [anon_sym_e_GT_GT] = ACTIONS(1623), - [anon_sym_o_GT_GT] = ACTIONS(1623), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), - [aux_sym_unquoted_token1] = ACTIONS(1621), - [aux_sym_unquoted_token2] = ACTIONS(1621), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1623), + [1350] = { + [sym_path] = STATE(1412), + [sym_comment] = STATE(1350), + [aux_sym_cell_path_repeat1] = STATE(1367), + [anon_sym_EQ] = ACTIONS(967), + [anon_sym_PLUS_EQ] = ACTIONS(969), + [anon_sym_DASH_EQ] = ACTIONS(969), + [anon_sym_STAR_EQ] = ACTIONS(969), + [anon_sym_SLASH_EQ] = ACTIONS(969), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(969), + [sym__newline] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(969), + [anon_sym_err_GT_PIPE] = ACTIONS(969), + [anon_sym_out_GT_PIPE] = ACTIONS(969), + [anon_sym_e_GT_PIPE] = ACTIONS(969), + [anon_sym_o_GT_PIPE] = ACTIONS(969), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(969), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(969), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(969), + [anon_sym_RPAREN] = ACTIONS(969), + [anon_sym_GT2] = ACTIONS(967), + [anon_sym_DASH2] = ACTIONS(967), + [anon_sym_in2] = ACTIONS(969), + [anon_sym_RBRACE] = ACTIONS(969), + [anon_sym_STAR2] = ACTIONS(967), + [anon_sym_and2] = ACTIONS(969), + [anon_sym_xor2] = ACTIONS(969), + [anon_sym_or2] = ACTIONS(969), + [anon_sym_not_DASHin2] = ACTIONS(969), + [anon_sym_starts_DASHwith2] = ACTIONS(969), + [anon_sym_ends_DASHwith2] = ACTIONS(969), + [anon_sym_EQ_EQ2] = ACTIONS(969), + [anon_sym_BANG_EQ2] = ACTIONS(969), + [anon_sym_LT2] = ACTIONS(967), + [anon_sym_LT_EQ2] = ACTIONS(969), + [anon_sym_GT_EQ2] = ACTIONS(969), + [anon_sym_EQ_TILDE2] = ACTIONS(969), + [anon_sym_BANG_TILDE2] = ACTIONS(969), + [anon_sym_STAR_STAR2] = ACTIONS(969), + [anon_sym_PLUS_PLUS2] = ACTIONS(967), + [anon_sym_SLASH2] = ACTIONS(967), + [anon_sym_mod2] = ACTIONS(969), + [anon_sym_SLASH_SLASH2] = ACTIONS(969), + [anon_sym_PLUS2] = ACTIONS(967), + [anon_sym_bit_DASHshl2] = ACTIONS(969), + [anon_sym_bit_DASHshr2] = ACTIONS(969), + [anon_sym_bit_DASHand2] = ACTIONS(969), + [anon_sym_bit_DASHxor2] = ACTIONS(969), + [anon_sym_bit_DASHor2] = ACTIONS(969), + [anon_sym_DOT_DOT2] = ACTIONS(967), + [anon_sym_DOT] = ACTIONS(4541), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(969), + [anon_sym_DOT_DOT_LT2] = ACTIONS(969), + [anon_sym_err_GT] = ACTIONS(967), + [anon_sym_out_GT] = ACTIONS(967), + [anon_sym_e_GT] = ACTIONS(967), + [anon_sym_o_GT] = ACTIONS(967), + [anon_sym_err_PLUSout_GT] = ACTIONS(967), + [anon_sym_out_PLUSerr_GT] = ACTIONS(967), + [anon_sym_o_PLUSe_GT] = ACTIONS(967), + [anon_sym_e_PLUSo_GT] = ACTIONS(967), + [anon_sym_err_GT_GT] = ACTIONS(969), + [anon_sym_out_GT_GT] = ACTIONS(969), + [anon_sym_e_GT_GT] = ACTIONS(969), + [anon_sym_o_GT_GT] = ACTIONS(969), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(969), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(969), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), + [anon_sym_POUND] = ACTIONS(247), }, - [1368] = { - [sym_comment] = STATE(1368), - [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(2214), - [anon_sym_SEMI] = ACTIONS(2214), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_err_GT_PIPE] = ACTIONS(2214), - [anon_sym_out_GT_PIPE] = ACTIONS(2214), - [anon_sym_e_GT_PIPE] = ACTIONS(2214), - [anon_sym_o_GT_PIPE] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2214), - [anon_sym_GT2] = ACTIONS(2214), - [anon_sym_DASH2] = ACTIONS(2214), - [anon_sym_in2] = ACTIONS(2214), - [anon_sym_RBRACE] = ACTIONS(2214), - [anon_sym_STAR2] = ACTIONS(2214), - [anon_sym_and2] = ACTIONS(2214), - [anon_sym_xor2] = ACTIONS(2214), - [anon_sym_or2] = ACTIONS(2214), - [anon_sym_not_DASHin2] = ACTIONS(2214), - [anon_sym_starts_DASHwith2] = ACTIONS(2214), - [anon_sym_ends_DASHwith2] = ACTIONS(2214), - [anon_sym_EQ_EQ2] = ACTIONS(2214), - [anon_sym_BANG_EQ2] = ACTIONS(2214), - [anon_sym_LT2] = ACTIONS(2214), - [anon_sym_LT_EQ2] = ACTIONS(2214), - [anon_sym_GT_EQ2] = ACTIONS(2214), - [anon_sym_EQ_TILDE2] = ACTIONS(2214), - [anon_sym_BANG_TILDE2] = ACTIONS(2214), - [anon_sym_STAR_STAR2] = ACTIONS(2214), - [anon_sym_PLUS_PLUS2] = ACTIONS(2214), - [anon_sym_SLASH2] = ACTIONS(2214), - [anon_sym_mod2] = ACTIONS(2214), - [anon_sym_SLASH_SLASH2] = ACTIONS(2214), - [anon_sym_PLUS2] = ACTIONS(2214), - [anon_sym_bit_DASHshl2] = ACTIONS(2214), - [anon_sym_bit_DASHshr2] = ACTIONS(2214), - [anon_sym_bit_DASHand2] = ACTIONS(2214), - [anon_sym_bit_DASHxor2] = ACTIONS(2214), - [anon_sym_bit_DASHor2] = ACTIONS(2214), + [1351] = { + [sym_comment] = STATE(1351), + [ts_builtin_sym_end] = ACTIONS(1683), + [sym__newline] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_err_GT_PIPE] = ACTIONS(1683), + [anon_sym_out_GT_PIPE] = ACTIONS(1683), + [anon_sym_e_GT_PIPE] = ACTIONS(1683), + [anon_sym_o_GT_PIPE] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1683), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1681), + [anon_sym_DOLLAR] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1683), + [anon_sym_DOT_DOT] = ACTIONS(1681), + [anon_sym_LPAREN2] = ACTIONS(1683), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1681), + [anon_sym_DOT_DOT_LT] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [aux_sym__immediate_decimal_token2] = ACTIONS(4583), + [anon_sym_null] = ACTIONS(1683), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [aux_sym__val_number_decimal_token1] = ACTIONS(1681), + [aux_sym__val_number_decimal_token2] = ACTIONS(1683), + [aux_sym__val_number_decimal_token3] = ACTIONS(1683), + [aux_sym__val_number_decimal_token4] = ACTIONS(1683), + [aux_sym__val_number_token1] = ACTIONS(1683), + [aux_sym__val_number_token2] = ACTIONS(1683), + [aux_sym__val_number_token3] = ACTIONS(1683), + [aux_sym__val_number_token4] = ACTIONS(1683), + [aux_sym__val_number_token5] = ACTIONS(1683), + [aux_sym__val_number_token6] = ACTIONS(1683), + [anon_sym_0b] = ACTIONS(1681), + [sym_filesize_unit] = ACTIONS(1683), + [sym_duration_unit] = ACTIONS(1683), + [anon_sym_0o] = ACTIONS(1681), + [anon_sym_0x] = ACTIONS(1681), + [sym_val_date] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(1683), + [sym__str_single_quotes] = ACTIONS(1683), + [sym__str_back_ticks] = ACTIONS(1683), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1683), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1683), + [anon_sym_err_GT] = ACTIONS(1681), + [anon_sym_out_GT] = ACTIONS(1681), + [anon_sym_e_GT] = ACTIONS(1681), + [anon_sym_o_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT] = ACTIONS(1681), + [anon_sym_err_GT_GT] = ACTIONS(1683), + [anon_sym_out_GT_GT] = ACTIONS(1683), + [anon_sym_e_GT_GT] = ACTIONS(1683), + [anon_sym_o_GT_GT] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1683), + [aux_sym_unquoted_token1] = ACTIONS(1681), + [aux_sym_unquoted_token2] = ACTIONS(1681), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1683), + }, + [1352] = { + [sym_comment] = STATE(1352), + [anon_sym_STAR_STAR] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_SLASH] = ACTIONS(3197), + [anon_sym_mod] = ACTIONS(3195), + [anon_sym_SLASH_SLASH] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_bit_DASHshl] = ACTIONS(3195), + [anon_sym_bit_DASHshr] = ACTIONS(3195), + [anon_sym_EQ_TILDE] = ACTIONS(3195), + [anon_sym_BANG_TILDE] = ACTIONS(3195), + [anon_sym_bit_DASHand] = ACTIONS(3195), + [anon_sym_bit_DASHxor] = ACTIONS(3195), + [anon_sym_bit_DASHor] = ACTIONS(3195), + [anon_sym_and] = ACTIONS(3195), + [anon_sym_xor] = ACTIONS(3195), + [anon_sym_or] = ACTIONS(3195), + [anon_sym_in] = ACTIONS(3195), + [anon_sym_not_DASHin] = ACTIONS(3195), + [anon_sym_starts_DASHwith] = ACTIONS(3195), + [anon_sym_ends_DASHwith] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT] = ACTIONS(3197), + [anon_sym_GT_EQ] = ACTIONS(3195), + [aux_sym_cmd_identifier_token41] = ACTIONS(3199), + [sym__newline] = ACTIONS(2246), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2246), + [anon_sym_err_GT_PIPE] = ACTIONS(2246), + [anon_sym_out_GT_PIPE] = ACTIONS(2246), + [anon_sym_e_GT_PIPE] = ACTIONS(2246), + [anon_sym_o_GT_PIPE] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2246), + [anon_sym_RPAREN] = ACTIONS(2246), + [anon_sym_GT2] = ACTIONS(2246), + [anon_sym_DASH2] = ACTIONS(2246), + [anon_sym_in2] = ACTIONS(2246), + [anon_sym_STAR2] = ACTIONS(2246), + [anon_sym_and2] = ACTIONS(2246), + [anon_sym_xor2] = ACTIONS(2246), + [anon_sym_or2] = ACTIONS(2246), + [anon_sym_not_DASHin2] = ACTIONS(2246), + [anon_sym_starts_DASHwith2] = ACTIONS(2246), + [anon_sym_ends_DASHwith2] = ACTIONS(2246), + [anon_sym_EQ_EQ2] = ACTIONS(2246), + [anon_sym_BANG_EQ2] = ACTIONS(2246), + [anon_sym_LT2] = ACTIONS(2246), + [anon_sym_LT_EQ2] = ACTIONS(2246), + [anon_sym_GT_EQ2] = ACTIONS(2246), + [anon_sym_EQ_TILDE2] = ACTIONS(2246), + [anon_sym_BANG_TILDE2] = ACTIONS(2246), + [anon_sym_STAR_STAR2] = ACTIONS(2246), + [anon_sym_PLUS_PLUS2] = ACTIONS(2246), + [anon_sym_SLASH2] = ACTIONS(2246), + [anon_sym_mod2] = ACTIONS(2246), + [anon_sym_SLASH_SLASH2] = ACTIONS(2246), + [anon_sym_PLUS2] = ACTIONS(2246), + [anon_sym_bit_DASHshl2] = ACTIONS(2246), + [anon_sym_bit_DASHshr2] = ACTIONS(2246), + [anon_sym_bit_DASHand2] = ACTIONS(2246), + [anon_sym_bit_DASHxor2] = ACTIONS(2246), + [anon_sym_bit_DASHor2] = ACTIONS(2246), [anon_sym_POUND] = ACTIONS(3), }, - [1369] = { - [sym_comment] = STATE(1369), - [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(2222), - [anon_sym_SEMI] = ACTIONS(2222), - [anon_sym_PIPE] = ACTIONS(2222), - [anon_sym_err_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_GT_PIPE] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2222), - [anon_sym_GT2] = ACTIONS(2222), - [anon_sym_DASH2] = ACTIONS(2222), - [anon_sym_in2] = ACTIONS(2222), - [anon_sym_RBRACE] = ACTIONS(2222), - [anon_sym_STAR2] = ACTIONS(2222), - [anon_sym_and2] = ACTIONS(2222), - [anon_sym_xor2] = ACTIONS(2222), - [anon_sym_or2] = ACTIONS(2222), - [anon_sym_not_DASHin2] = ACTIONS(2222), - [anon_sym_starts_DASHwith2] = ACTIONS(2222), - [anon_sym_ends_DASHwith2] = ACTIONS(2222), - [anon_sym_EQ_EQ2] = ACTIONS(2222), - [anon_sym_BANG_EQ2] = ACTIONS(2222), - [anon_sym_LT2] = ACTIONS(2222), - [anon_sym_LT_EQ2] = ACTIONS(2222), - [anon_sym_GT_EQ2] = ACTIONS(2222), - [anon_sym_EQ_TILDE2] = ACTIONS(2222), - [anon_sym_BANG_TILDE2] = ACTIONS(2222), - [anon_sym_STAR_STAR2] = ACTIONS(2222), - [anon_sym_PLUS_PLUS2] = ACTIONS(2222), - [anon_sym_SLASH2] = ACTIONS(2222), - [anon_sym_mod2] = ACTIONS(2222), - [anon_sym_SLASH_SLASH2] = ACTIONS(2222), - [anon_sym_PLUS2] = ACTIONS(2222), - [anon_sym_bit_DASHshl2] = ACTIONS(2222), - [anon_sym_bit_DASHshr2] = ACTIONS(2222), - [anon_sym_bit_DASHand2] = ACTIONS(2222), - [anon_sym_bit_DASHxor2] = ACTIONS(2222), - [anon_sym_bit_DASHor2] = ACTIONS(2222), + [1353] = { + [sym_cell_path] = STATE(1516), + [sym_path] = STATE(1481), + [sym_comment] = STATE(1353), + [aux_sym_cell_path_repeat1] = STATE(1407), + [sym__newline] = ACTIONS(963), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_err_GT_PIPE] = ACTIONS(963), + [anon_sym_out_GT_PIPE] = ACTIONS(963), + [anon_sym_e_GT_PIPE] = ACTIONS(963), + [anon_sym_o_GT_PIPE] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), + [anon_sym_LBRACK] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(963), + [anon_sym_RPAREN] = ACTIONS(963), + [anon_sym_DOLLAR] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_DASH2] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_DOT_DOT] = ACTIONS(961), + [anon_sym_DOT_DOT2] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(4585), + [anon_sym_DOT_DOT_EQ] = ACTIONS(961), + [anon_sym_DOT_DOT_LT] = ACTIONS(961), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), + [anon_sym_DOT_DOT_LT2] = ACTIONS(963), + [anon_sym_null] = ACTIONS(963), + [anon_sym_true] = ACTIONS(963), + [anon_sym_false] = ACTIONS(963), + [aux_sym__val_number_decimal_token1] = ACTIONS(961), + [aux_sym__val_number_decimal_token2] = ACTIONS(963), + [aux_sym__val_number_decimal_token3] = ACTIONS(963), + [aux_sym__val_number_decimal_token4] = ACTIONS(963), + [aux_sym__val_number_token1] = ACTIONS(963), + [aux_sym__val_number_token2] = ACTIONS(963), + [aux_sym__val_number_token3] = ACTIONS(963), + [aux_sym__val_number_token4] = ACTIONS(963), + [aux_sym__val_number_token5] = ACTIONS(963), + [aux_sym__val_number_token6] = ACTIONS(963), + [anon_sym_0b] = ACTIONS(961), + [anon_sym_0o] = ACTIONS(961), + [anon_sym_0x] = ACTIONS(961), + [sym_val_date] = ACTIONS(963), + [anon_sym_DQUOTE] = ACTIONS(963), + [sym__str_single_quotes] = ACTIONS(963), + [sym__str_back_ticks] = ACTIONS(963), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(963), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(963), + [anon_sym_err_GT] = ACTIONS(961), + [anon_sym_out_GT] = ACTIONS(961), + [anon_sym_e_GT] = ACTIONS(961), + [anon_sym_o_GT] = ACTIONS(961), + [anon_sym_err_PLUSout_GT] = ACTIONS(961), + [anon_sym_out_PLUSerr_GT] = ACTIONS(961), + [anon_sym_o_PLUSe_GT] = ACTIONS(961), + [anon_sym_e_PLUSo_GT] = ACTIONS(961), + [anon_sym_err_GT_GT] = ACTIONS(963), + [anon_sym_out_GT_GT] = ACTIONS(963), + [anon_sym_e_GT_GT] = ACTIONS(963), + [anon_sym_o_GT_GT] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), + [aux_sym_unquoted_token1] = ACTIONS(961), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(963), + }, + [1354] = { + [sym_comment] = STATE(1354), + [anon_sym_STAR_STAR] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_SLASH] = ACTIONS(3197), + [anon_sym_mod] = ACTIONS(3195), + [anon_sym_SLASH_SLASH] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_bit_DASHshl] = ACTIONS(3195), + [anon_sym_bit_DASHshr] = ACTIONS(3195), + [anon_sym_EQ_TILDE] = ACTIONS(3195), + [anon_sym_BANG_TILDE] = ACTIONS(3195), + [anon_sym_bit_DASHand] = ACTIONS(3195), + [anon_sym_bit_DASHxor] = ACTIONS(3195), + [anon_sym_bit_DASHor] = ACTIONS(3195), + [anon_sym_and] = ACTIONS(3195), + [anon_sym_xor] = ACTIONS(3195), + [anon_sym_or] = ACTIONS(3195), + [anon_sym_in] = ACTIONS(3195), + [anon_sym_not_DASHin] = ACTIONS(3195), + [anon_sym_starts_DASHwith] = ACTIONS(3195), + [anon_sym_ends_DASHwith] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT] = ACTIONS(3197), + [anon_sym_GT_EQ] = ACTIONS(3195), + [aux_sym_cmd_identifier_token41] = ACTIONS(3199), + [sym__newline] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_PIPE] = ACTIONS(2254), + [anon_sym_err_GT_PIPE] = ACTIONS(2254), + [anon_sym_out_GT_PIPE] = ACTIONS(2254), + [anon_sym_e_GT_PIPE] = ACTIONS(2254), + [anon_sym_o_GT_PIPE] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), + [anon_sym_RPAREN] = ACTIONS(2254), + [anon_sym_GT2] = ACTIONS(2254), + [anon_sym_DASH2] = ACTIONS(2254), + [anon_sym_in2] = ACTIONS(2254), + [anon_sym_STAR2] = ACTIONS(2254), + [anon_sym_and2] = ACTIONS(2254), + [anon_sym_xor2] = ACTIONS(2254), + [anon_sym_or2] = ACTIONS(2254), + [anon_sym_not_DASHin2] = ACTIONS(2254), + [anon_sym_starts_DASHwith2] = ACTIONS(2254), + [anon_sym_ends_DASHwith2] = ACTIONS(2254), + [anon_sym_EQ_EQ2] = ACTIONS(2254), + [anon_sym_BANG_EQ2] = ACTIONS(2254), + [anon_sym_LT2] = ACTIONS(2254), + [anon_sym_LT_EQ2] = ACTIONS(2254), + [anon_sym_GT_EQ2] = ACTIONS(2254), + [anon_sym_EQ_TILDE2] = ACTIONS(2254), + [anon_sym_BANG_TILDE2] = ACTIONS(2254), + [anon_sym_STAR_STAR2] = ACTIONS(2254), + [anon_sym_PLUS_PLUS2] = ACTIONS(2254), + [anon_sym_SLASH2] = ACTIONS(2254), + [anon_sym_mod2] = ACTIONS(2254), + [anon_sym_SLASH_SLASH2] = ACTIONS(2254), + [anon_sym_PLUS2] = ACTIONS(2254), + [anon_sym_bit_DASHshl2] = ACTIONS(2254), + [anon_sym_bit_DASHshr2] = ACTIONS(2254), + [anon_sym_bit_DASHand2] = ACTIONS(2254), + [anon_sym_bit_DASHxor2] = ACTIONS(2254), + [anon_sym_bit_DASHor2] = ACTIONS(2254), [anon_sym_POUND] = ACTIONS(3), }, - [1370] = { + [1355] = { [sym_path] = STATE(1421), - [sym_comment] = STATE(1370), - [aux_sym_cell_path_repeat1] = STATE(1370), + [sym_comment] = STATE(1355), + [aux_sym_cell_path_repeat1] = STATE(1355), [anon_sym_EQ] = ACTIONS(971), [anon_sym_PLUS_EQ] = ACTIONS(973), [anon_sym_DASH_EQ] = ACTIONS(973), @@ -206905,7 +206113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(973), [anon_sym_bit_DASHor2] = ACTIONS(973), [anon_sym_DOT_DOT2] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(4657), + [anon_sym_DOT] = ACTIONS(4587), [anon_sym_DOT_DOT_EQ2] = ACTIONS(973), [anon_sym_DOT_DOT_LT2] = ACTIONS(973), [aux_sym_record_entry_token1] = ACTIONS(973), @@ -206927,84 +206135,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), [anon_sym_POUND] = ACTIONS(247), }, - [1371] = { - [sym_comment] = STATE(1371), - [sym__newline] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_err_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_GT_PIPE] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_RPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(1741), - [anon_sym_DOT_DOT2] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), - [anon_sym_DOT_DOT_LT] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), - [aux_sym__immediate_decimal_token1] = ACTIONS(4660), - [aux_sym__immediate_decimal_token2] = ACTIONS(4662), - [anon_sym_null] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1741), - [aux_sym__val_number_token5] = ACTIONS(1741), - [aux_sym__val_number_token6] = ACTIONS(1741), - [anon_sym_0b] = ACTIONS(1739), - [anon_sym_0o] = ACTIONS(1739), - [anon_sym_0x] = ACTIONS(1739), - [sym_val_date] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), - [anon_sym_err_GT] = ACTIONS(1739), - [anon_sym_out_GT] = ACTIONS(1739), - [anon_sym_e_GT] = ACTIONS(1739), - [anon_sym_o_GT] = ACTIONS(1739), - [anon_sym_err_PLUSout_GT] = ACTIONS(1739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), - [anon_sym_o_PLUSe_GT] = ACTIONS(1739), - [anon_sym_e_PLUSo_GT] = ACTIONS(1739), - [anon_sym_err_GT_GT] = ACTIONS(1741), - [anon_sym_out_GT_GT] = ACTIONS(1741), - [anon_sym_e_GT_GT] = ACTIONS(1741), - [anon_sym_o_GT_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), - [aux_sym_unquoted_token1] = ACTIONS(1739), - [aux_sym_unquoted_token2] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), + [1356] = { + [sym__expr_parenthesized_immediate] = STATE(1920), + [sym__immediate_decimal] = STATE(1921), + [sym_val_variable] = STATE(1920), + [sym_comment] = STATE(1356), + [ts_builtin_sym_end] = ACTIONS(1679), + [sym__newline] = ACTIONS(1679), + [anon_sym_SEMI] = ACTIONS(1679), + [anon_sym_PIPE] = ACTIONS(1679), + [anon_sym_err_GT_PIPE] = ACTIONS(1679), + [anon_sym_out_GT_PIPE] = ACTIONS(1679), + [anon_sym_e_GT_PIPE] = ACTIONS(1679), + [anon_sym_o_GT_PIPE] = ACTIONS(1679), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1679), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1679), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1679), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1679), + [anon_sym_LBRACK] = ACTIONS(1679), + [anon_sym_LPAREN] = ACTIONS(1677), + [anon_sym_DOLLAR] = ACTIONS(4419), + [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_DASH2] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1679), + [anon_sym_DOT_DOT] = ACTIONS(1677), + [anon_sym_LPAREN2] = ACTIONS(4487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1679), + [anon_sym_DOT_DOT_LT] = ACTIONS(1679), + [aux_sym__immediate_decimal_token1] = ACTIONS(4575), + [aux_sym__immediate_decimal_token3] = ACTIONS(4577), + [aux_sym__immediate_decimal_token4] = ACTIONS(4579), + [aux_sym__immediate_decimal_token5] = ACTIONS(4581), + [anon_sym_null] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1679), + [anon_sym_false] = ACTIONS(1679), + [aux_sym__val_number_decimal_token1] = ACTIONS(1677), + [aux_sym__val_number_decimal_token2] = ACTIONS(1677), + [aux_sym__val_number_decimal_token3] = ACTIONS(1677), + [aux_sym__val_number_decimal_token4] = ACTIONS(1677), + [aux_sym__val_number_token1] = ACTIONS(1679), + [aux_sym__val_number_token2] = ACTIONS(1679), + [aux_sym__val_number_token3] = ACTIONS(1679), + [aux_sym__val_number_token4] = ACTIONS(1679), + [aux_sym__val_number_token5] = ACTIONS(1679), + [aux_sym__val_number_token6] = ACTIONS(1679), + [anon_sym_0b] = ACTIONS(1677), + [anon_sym_0o] = ACTIONS(1677), + [anon_sym_0x] = ACTIONS(1677), + [sym_val_date] = ACTIONS(1679), + [anon_sym_DQUOTE] = ACTIONS(1679), + [sym__str_single_quotes] = ACTIONS(1679), + [sym__str_back_ticks] = ACTIONS(1679), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1679), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1679), + [anon_sym_err_GT] = ACTIONS(1677), + [anon_sym_out_GT] = ACTIONS(1677), + [anon_sym_e_GT] = ACTIONS(1677), + [anon_sym_o_GT] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT] = ACTIONS(1677), + [anon_sym_err_GT_GT] = ACTIONS(1679), + [anon_sym_out_GT_GT] = ACTIONS(1679), + [anon_sym_e_GT_GT] = ACTIONS(1679), + [anon_sym_o_GT_GT] = ACTIONS(1679), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1679), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1679), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1679), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1679), + [aux_sym_unquoted_token1] = ACTIONS(1677), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1679), }, - [1372] = { - [sym_cell_path] = STATE(1471), - [sym_path] = STATE(1488), - [sym_comment] = STATE(1372), - [aux_sym_cell_path_repeat1] = STATE(1405), + [1357] = { + [sym_cell_path] = STATE(1463), + [sym_path] = STATE(1449), + [sym_comment] = STATE(1357), + [aux_sym_cell_path_repeat1] = STATE(1400), [ts_builtin_sym_end] = ACTIONS(963), [anon_sym_EQ] = ACTIONS(961), [anon_sym_PLUS_EQ] = ACTIONS(963), @@ -207052,7 +206260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(963), [anon_sym_bit_DASHor2] = ACTIONS(963), [anon_sym_DOT_DOT2] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(4664), + [anon_sym_DOT] = ACTIONS(4590), [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), [anon_sym_DOT_DOT_LT2] = ACTIONS(963), [anon_sym_err_GT] = ACTIONS(961), @@ -207073,227 +206281,519 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), [anon_sym_POUND] = ACTIONS(247), }, - [1373] = { - [sym_comment] = STATE(1373), - [ts_builtin_sym_end] = ACTIONS(1609), - [sym__newline] = ACTIONS(1609), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_PIPE] = ACTIONS(1609), - [anon_sym_err_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_GT_PIPE] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1609), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_DOLLAR] = ACTIONS(1607), - [anon_sym_DASH_DASH] = ACTIONS(1609), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_LBRACE] = ACTIONS(1609), - [anon_sym_DOT_DOT] = ACTIONS(1607), - [anon_sym_LPAREN2] = ACTIONS(1609), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), - [anon_sym_DOT_DOT_LT] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(4551), - [anon_sym_null] = ACTIONS(1609), - [anon_sym_true] = ACTIONS(1609), - [anon_sym_false] = ACTIONS(1609), - [aux_sym__val_number_decimal_token1] = ACTIONS(1607), - [aux_sym__val_number_decimal_token2] = ACTIONS(1609), - [aux_sym__val_number_decimal_token3] = ACTIONS(1609), - [aux_sym__val_number_decimal_token4] = ACTIONS(1609), - [aux_sym__val_number_token1] = ACTIONS(1609), - [aux_sym__val_number_token2] = ACTIONS(1609), - [aux_sym__val_number_token3] = ACTIONS(1609), - [aux_sym__val_number_token4] = ACTIONS(1609), - [aux_sym__val_number_token5] = ACTIONS(1609), - [aux_sym__val_number_token6] = ACTIONS(1609), - [anon_sym_0b] = ACTIONS(1607), - [sym_filesize_unit] = ACTIONS(1609), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_0o] = ACTIONS(1607), - [anon_sym_0x] = ACTIONS(1607), - [sym_val_date] = ACTIONS(1609), - [anon_sym_DQUOTE] = ACTIONS(1609), - [sym__str_single_quotes] = ACTIONS(1609), - [sym__str_back_ticks] = ACTIONS(1609), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1609), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1609), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1609), - [anon_sym_out_GT_GT] = ACTIONS(1609), - [anon_sym_e_GT_GT] = ACTIONS(1609), - [anon_sym_o_GT_GT] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), - [aux_sym_unquoted_token1] = ACTIONS(1607), - [aux_sym_unquoted_token2] = ACTIONS(1607), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1609), + [1358] = { + [sym_comment] = STATE(1358), + [sym__newline] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_err_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_GT_PIPE] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), + [anon_sym_LBRACK] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_RPAREN] = ACTIONS(1575), + [anon_sym_DOLLAR] = ACTIONS(1573), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_RBRACE] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1573), + [anon_sym_DOT_DOT_LT] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(4175), + [anon_sym_null] = ACTIONS(1575), + [anon_sym_true] = ACTIONS(1575), + [anon_sym_false] = ACTIONS(1575), + [aux_sym__val_number_decimal_token1] = ACTIONS(1573), + [aux_sym__val_number_decimal_token2] = ACTIONS(1575), + [aux_sym__val_number_decimal_token3] = ACTIONS(1575), + [aux_sym__val_number_decimal_token4] = ACTIONS(1575), + [aux_sym__val_number_token1] = ACTIONS(1575), + [aux_sym__val_number_token2] = ACTIONS(1575), + [aux_sym__val_number_token3] = ACTIONS(1575), + [aux_sym__val_number_token4] = ACTIONS(1575), + [aux_sym__val_number_token5] = ACTIONS(1575), + [aux_sym__val_number_token6] = ACTIONS(1575), + [anon_sym_0b] = ACTIONS(1573), + [sym_filesize_unit] = ACTIONS(1575), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_0o] = ACTIONS(1573), + [anon_sym_0x] = ACTIONS(1573), + [sym_val_date] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [sym__str_single_quotes] = ACTIONS(1575), + [sym__str_back_ticks] = ACTIONS(1575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1575), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1575), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1575), + [anon_sym_out_GT_GT] = ACTIONS(1575), + [anon_sym_e_GT_GT] = ACTIONS(1575), + [anon_sym_o_GT_GT] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), + [aux_sym_unquoted_token1] = ACTIONS(1573), + [aux_sym_unquoted_token2] = ACTIONS(1573), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1575), }, - [1374] = { - [sym_path] = STATE(1443), - [sym_comment] = STATE(1374), - [aux_sym_cell_path_repeat1] = STATE(1361), - [anon_sym_EQ] = ACTIONS(967), - [anon_sym_PLUS_EQ] = ACTIONS(969), - [anon_sym_DASH_EQ] = ACTIONS(969), - [anon_sym_STAR_EQ] = ACTIONS(969), - [anon_sym_SLASH_EQ] = ACTIONS(969), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(969), - [sym__newline] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_err_GT_PIPE] = ACTIONS(969), - [anon_sym_out_GT_PIPE] = ACTIONS(969), - [anon_sym_e_GT_PIPE] = ACTIONS(969), - [anon_sym_o_GT_PIPE] = ACTIONS(969), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(969), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(969), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(969), - [anon_sym_RPAREN] = ACTIONS(969), - [anon_sym_GT2] = ACTIONS(967), - [anon_sym_DASH2] = ACTIONS(967), - [anon_sym_in2] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_STAR2] = ACTIONS(967), - [anon_sym_and2] = ACTIONS(969), - [anon_sym_xor2] = ACTIONS(969), - [anon_sym_or2] = ACTIONS(969), - [anon_sym_not_DASHin2] = ACTIONS(969), - [anon_sym_starts_DASHwith2] = ACTIONS(969), - [anon_sym_ends_DASHwith2] = ACTIONS(969), - [anon_sym_EQ_EQ2] = ACTIONS(969), - [anon_sym_BANG_EQ2] = ACTIONS(969), - [anon_sym_LT2] = ACTIONS(967), - [anon_sym_LT_EQ2] = ACTIONS(969), - [anon_sym_GT_EQ2] = ACTIONS(969), - [anon_sym_EQ_TILDE2] = ACTIONS(969), - [anon_sym_BANG_TILDE2] = ACTIONS(969), - [anon_sym_STAR_STAR2] = ACTIONS(969), - [anon_sym_PLUS_PLUS2] = ACTIONS(967), - [anon_sym_SLASH2] = ACTIONS(967), - [anon_sym_mod2] = ACTIONS(969), - [anon_sym_SLASH_SLASH2] = ACTIONS(969), - [anon_sym_PLUS2] = ACTIONS(967), - [anon_sym_bit_DASHshl2] = ACTIONS(969), - [anon_sym_bit_DASHshr2] = ACTIONS(969), - [anon_sym_bit_DASHand2] = ACTIONS(969), - [anon_sym_bit_DASHxor2] = ACTIONS(969), - [anon_sym_bit_DASHor2] = ACTIONS(969), - [anon_sym_DOT_DOT2] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(4209), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(969), - [anon_sym_DOT_DOT_LT2] = ACTIONS(969), - [anon_sym_err_GT] = ACTIONS(967), - [anon_sym_out_GT] = ACTIONS(967), - [anon_sym_e_GT] = ACTIONS(967), - [anon_sym_o_GT] = ACTIONS(967), - [anon_sym_err_PLUSout_GT] = ACTIONS(967), - [anon_sym_out_PLUSerr_GT] = ACTIONS(967), - [anon_sym_o_PLUSe_GT] = ACTIONS(967), - [anon_sym_e_PLUSo_GT] = ACTIONS(967), - [anon_sym_err_GT_GT] = ACTIONS(969), - [anon_sym_out_GT_GT] = ACTIONS(969), - [anon_sym_e_GT_GT] = ACTIONS(969), - [anon_sym_o_GT_GT] = ACTIONS(969), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(969), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(969), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), + [1359] = { + [sym_comment] = STATE(1359), + [sym__newline] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_err_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_GT_PIPE] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), + [anon_sym_LBRACK] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_RPAREN] = ACTIONS(1575), + [anon_sym_DOLLAR] = ACTIONS(1573), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_RBRACE] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_LPAREN2] = ACTIONS(1575), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1573), + [anon_sym_DOT_DOT_LT] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [anon_sym_null] = ACTIONS(1575), + [anon_sym_true] = ACTIONS(1575), + [anon_sym_false] = ACTIONS(1575), + [aux_sym__val_number_decimal_token1] = ACTIONS(1573), + [aux_sym__val_number_decimal_token2] = ACTIONS(1575), + [aux_sym__val_number_decimal_token3] = ACTIONS(1575), + [aux_sym__val_number_decimal_token4] = ACTIONS(1575), + [aux_sym__val_number_token1] = ACTIONS(1575), + [aux_sym__val_number_token2] = ACTIONS(1575), + [aux_sym__val_number_token3] = ACTIONS(1575), + [aux_sym__val_number_token4] = ACTIONS(1575), + [aux_sym__val_number_token5] = ACTIONS(1575), + [aux_sym__val_number_token6] = ACTIONS(1575), + [anon_sym_0b] = ACTIONS(1573), + [sym_filesize_unit] = ACTIONS(1575), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_0o] = ACTIONS(1573), + [anon_sym_0x] = ACTIONS(1573), + [sym_val_date] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [sym__str_single_quotes] = ACTIONS(1575), + [sym__str_back_ticks] = ACTIONS(1575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1575), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1575), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1575), + [anon_sym_out_GT_GT] = ACTIONS(1575), + [anon_sym_e_GT_GT] = ACTIONS(1575), + [anon_sym_o_GT_GT] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), + [aux_sym_unquoted_token1] = ACTIONS(1573), + [aux_sym_unquoted_token2] = ACTIONS(1573), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1575), + }, + [1360] = { + [sym_comment] = STATE(1360), + [ts_builtin_sym_end] = ACTIONS(2250), + [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(2246), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2246), + [anon_sym_err_GT_PIPE] = ACTIONS(2246), + [anon_sym_out_GT_PIPE] = ACTIONS(2246), + [anon_sym_e_GT_PIPE] = ACTIONS(2246), + [anon_sym_o_GT_PIPE] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2246), + [anon_sym_GT2] = ACTIONS(2246), + [anon_sym_DASH2] = ACTIONS(2246), + [anon_sym_in2] = ACTIONS(2246), + [anon_sym_STAR2] = ACTIONS(2246), + [anon_sym_and2] = ACTIONS(2246), + [anon_sym_xor2] = ACTIONS(2246), + [anon_sym_or2] = ACTIONS(2246), + [anon_sym_not_DASHin2] = ACTIONS(2246), + [anon_sym_starts_DASHwith2] = ACTIONS(2246), + [anon_sym_ends_DASHwith2] = ACTIONS(2246), + [anon_sym_EQ_EQ2] = ACTIONS(2246), + [anon_sym_BANG_EQ2] = ACTIONS(2246), + [anon_sym_LT2] = ACTIONS(2246), + [anon_sym_LT_EQ2] = ACTIONS(2246), + [anon_sym_GT_EQ2] = ACTIONS(2246), + [anon_sym_EQ_TILDE2] = ACTIONS(2246), + [anon_sym_BANG_TILDE2] = ACTIONS(2246), + [anon_sym_STAR_STAR2] = ACTIONS(2246), + [anon_sym_PLUS_PLUS2] = ACTIONS(2246), + [anon_sym_SLASH2] = ACTIONS(2246), + [anon_sym_mod2] = ACTIONS(2246), + [anon_sym_SLASH_SLASH2] = ACTIONS(2246), + [anon_sym_PLUS2] = ACTIONS(2246), + [anon_sym_bit_DASHshl2] = ACTIONS(2246), + [anon_sym_bit_DASHshr2] = ACTIONS(2246), + [anon_sym_bit_DASHand2] = ACTIONS(2246), + [anon_sym_bit_DASHxor2] = ACTIONS(2246), + [anon_sym_bit_DASHor2] = ACTIONS(2246), + [anon_sym_POUND] = ACTIONS(3), + }, + [1361] = { + [sym_comment] = STATE(1361), + [sym__newline] = ACTIONS(1741), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym_PIPE] = ACTIONS(1741), + [anon_sym_err_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_GT_PIPE] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_RPAREN] = ACTIONS(1741), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_DASH_DASH] = ACTIONS(1741), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1741), + [anon_sym_RBRACE] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_DOT_DOT2] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), + [anon_sym_DOT_DOT_LT] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), + [aux_sym__immediate_decimal_token1] = ACTIONS(4592), + [aux_sym__immediate_decimal_token2] = ACTIONS(4594), + [anon_sym_null] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1741), + [anon_sym_false] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1741), + [aux_sym__val_number_token5] = ACTIONS(1741), + [aux_sym__val_number_token6] = ACTIONS(1741), + [anon_sym_0b] = ACTIONS(1739), + [anon_sym_0o] = ACTIONS(1739), + [anon_sym_0x] = ACTIONS(1739), + [sym_val_date] = ACTIONS(1741), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), + [anon_sym_err_GT] = ACTIONS(1739), + [anon_sym_out_GT] = ACTIONS(1739), + [anon_sym_e_GT] = ACTIONS(1739), + [anon_sym_o_GT] = ACTIONS(1739), + [anon_sym_err_PLUSout_GT] = ACTIONS(1739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), + [anon_sym_o_PLUSe_GT] = ACTIONS(1739), + [anon_sym_e_PLUSo_GT] = ACTIONS(1739), + [anon_sym_err_GT_GT] = ACTIONS(1741), + [anon_sym_out_GT_GT] = ACTIONS(1741), + [anon_sym_e_GT_GT] = ACTIONS(1741), + [anon_sym_o_GT_GT] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), + [aux_sym_unquoted_token1] = ACTIONS(1739), + [aux_sym_unquoted_token2] = ACTIONS(1739), [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), }, - [1375] = { - [sym__expr_parenthesized_immediate] = STATE(7437), - [sym_comment] = STATE(1375), - [ts_builtin_sym_end] = ACTIONS(1721), - [sym__newline] = ACTIONS(1721), - [anon_sym_SEMI] = ACTIONS(1721), - [anon_sym_PIPE] = ACTIONS(1721), - [anon_sym_err_GT_PIPE] = ACTIONS(1721), - [anon_sym_out_GT_PIPE] = ACTIONS(1721), - [anon_sym_e_GT_PIPE] = ACTIONS(1721), - [anon_sym_o_GT_PIPE] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1721), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_DASH_DASH] = ACTIONS(1721), - [anon_sym_DASH2] = ACTIONS(1709), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1709), - [anon_sym_LPAREN2] = ACTIONS(4249), - [anon_sym_DOT_DOT2] = ACTIONS(4666), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1709), - [anon_sym_DOT_DOT_LT] = ACTIONS(1709), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4668), - [anon_sym_null] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1709), - [aux_sym__val_number_decimal_token2] = ACTIONS(1721), - [aux_sym__val_number_decimal_token3] = ACTIONS(1721), - [aux_sym__val_number_decimal_token4] = ACTIONS(1721), - [aux_sym__val_number_token1] = ACTIONS(1721), - [aux_sym__val_number_token2] = ACTIONS(1721), - [aux_sym__val_number_token3] = ACTIONS(1721), - [aux_sym__val_number_token4] = ACTIONS(1721), - [aux_sym__val_number_token5] = ACTIONS(1721), - [aux_sym__val_number_token6] = ACTIONS(1721), - [anon_sym_0b] = ACTIONS(1709), - [sym_filesize_unit] = ACTIONS(4670), - [sym_duration_unit] = ACTIONS(4672), - [anon_sym_0o] = ACTIONS(1709), - [anon_sym_0x] = ACTIONS(1709), - [sym_val_date] = ACTIONS(1721), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym__str_single_quotes] = ACTIONS(1721), - [sym__str_back_ticks] = ACTIONS(1721), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1721), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1721), - [anon_sym_err_GT] = ACTIONS(1709), - [anon_sym_out_GT] = ACTIONS(1709), - [anon_sym_e_GT] = ACTIONS(1709), - [anon_sym_o_GT] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT] = ACTIONS(1709), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), - [anon_sym_o_PLUSe_GT] = ACTIONS(1709), - [anon_sym_e_PLUSo_GT] = ACTIONS(1709), - [anon_sym_err_GT_GT] = ACTIONS(1721), - [anon_sym_out_GT_GT] = ACTIONS(1721), - [anon_sym_e_GT_GT] = ACTIONS(1721), - [anon_sym_o_GT_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1721), - [aux_sym_unquoted_token1] = ACTIONS(1709), - [aux_sym_unquoted_token2] = ACTIONS(4674), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1721), + [1362] = { + [sym_comment] = STATE(1362), + [ts_builtin_sym_end] = ACTIONS(2256), + [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(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_PIPE] = ACTIONS(2254), + [anon_sym_err_GT_PIPE] = ACTIONS(2254), + [anon_sym_out_GT_PIPE] = ACTIONS(2254), + [anon_sym_e_GT_PIPE] = ACTIONS(2254), + [anon_sym_o_GT_PIPE] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), + [anon_sym_GT2] = ACTIONS(2254), + [anon_sym_DASH2] = ACTIONS(2254), + [anon_sym_in2] = ACTIONS(2254), + [anon_sym_STAR2] = ACTIONS(2254), + [anon_sym_and2] = ACTIONS(2254), + [anon_sym_xor2] = ACTIONS(2254), + [anon_sym_or2] = ACTIONS(2254), + [anon_sym_not_DASHin2] = ACTIONS(2254), + [anon_sym_starts_DASHwith2] = ACTIONS(2254), + [anon_sym_ends_DASHwith2] = ACTIONS(2254), + [anon_sym_EQ_EQ2] = ACTIONS(2254), + [anon_sym_BANG_EQ2] = ACTIONS(2254), + [anon_sym_LT2] = ACTIONS(2254), + [anon_sym_LT_EQ2] = ACTIONS(2254), + [anon_sym_GT_EQ2] = ACTIONS(2254), + [anon_sym_EQ_TILDE2] = ACTIONS(2254), + [anon_sym_BANG_TILDE2] = ACTIONS(2254), + [anon_sym_STAR_STAR2] = ACTIONS(2254), + [anon_sym_PLUS_PLUS2] = ACTIONS(2254), + [anon_sym_SLASH2] = ACTIONS(2254), + [anon_sym_mod2] = ACTIONS(2254), + [anon_sym_SLASH_SLASH2] = ACTIONS(2254), + [anon_sym_PLUS2] = ACTIONS(2254), + [anon_sym_bit_DASHshl2] = ACTIONS(2254), + [anon_sym_bit_DASHshr2] = ACTIONS(2254), + [anon_sym_bit_DASHand2] = ACTIONS(2254), + [anon_sym_bit_DASHxor2] = ACTIONS(2254), + [anon_sym_bit_DASHor2] = ACTIONS(2254), + [anon_sym_POUND] = ACTIONS(3), }, - [1376] = { - [sym_comment] = STATE(1376), + [1363] = { + [sym_comment] = STATE(1363), + [sym__newline] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_err_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_GT_PIPE] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_RPAREN] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_DOT_DOT] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1767), + [anon_sym_DOT_DOT2] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1765), + [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(4598), + [anon_sym_null] = ACTIONS(1767), + [anon_sym_true] = ACTIONS(1767), + [anon_sym_false] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1767), + [aux_sym__val_number_token5] = ACTIONS(1767), + [aux_sym__val_number_token6] = ACTIONS(1767), + [anon_sym_0b] = ACTIONS(1765), + [anon_sym_0o] = ACTIONS(1765), + [anon_sym_0x] = ACTIONS(1765), + [sym_val_date] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), + [anon_sym_err_GT] = ACTIONS(1765), + [anon_sym_out_GT] = ACTIONS(1765), + [anon_sym_e_GT] = ACTIONS(1765), + [anon_sym_o_GT] = ACTIONS(1765), + [anon_sym_err_PLUSout_GT] = ACTIONS(1765), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), + [anon_sym_o_PLUSe_GT] = ACTIONS(1765), + [anon_sym_e_PLUSo_GT] = ACTIONS(1765), + [anon_sym_err_GT_GT] = ACTIONS(1767), + [anon_sym_out_GT_GT] = ACTIONS(1767), + [anon_sym_e_GT_GT] = ACTIONS(1767), + [anon_sym_o_GT_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), + [aux_sym_unquoted_token1] = ACTIONS(1765), + [aux_sym_unquoted_token2] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1767), + }, + [1364] = { + [sym_comment] = STATE(1364), + [sym__newline] = ACTIONS(1587), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_err_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_GT_PIPE] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(1587), + [anon_sym_DOLLAR] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1585), + [anon_sym_LPAREN2] = ACTIONS(1587), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), + [anon_sym_DOT_DOT_LT] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [anon_sym_null] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(1587), + [anon_sym_false] = ACTIONS(1587), + [aux_sym__val_number_decimal_token1] = ACTIONS(1585), + [aux_sym__val_number_decimal_token2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1587), + [aux_sym__val_number_token2] = ACTIONS(1587), + [aux_sym__val_number_token3] = ACTIONS(1587), + [aux_sym__val_number_token4] = ACTIONS(1587), + [aux_sym__val_number_token5] = ACTIONS(1587), + [aux_sym__val_number_token6] = ACTIONS(1587), + [anon_sym_0b] = ACTIONS(1585), + [sym_filesize_unit] = ACTIONS(1587), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_0o] = ACTIONS(1585), + [anon_sym_0x] = ACTIONS(1585), + [sym_val_date] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [sym__str_single_quotes] = ACTIONS(1587), + [sym__str_back_ticks] = ACTIONS(1587), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1587), + [anon_sym_out_GT_GT] = ACTIONS(1587), + [anon_sym_e_GT_GT] = ACTIONS(1587), + [anon_sym_o_GT_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [aux_sym_unquoted_token1] = ACTIONS(1585), + [aux_sym_unquoted_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1587), + }, + [1365] = { + [sym_comment] = STATE(1365), [anon_sym_EQ] = ACTIONS(990), [anon_sym_PLUS_EQ] = ACTIONS(992), [anon_sym_DASH_EQ] = ACTIONS(992), @@ -207365,87 +206865,672 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), [anon_sym_POUND] = ACTIONS(247), }, - [1377] = { - [sym_comment] = STATE(1377), - [anon_sym_EQ] = ACTIONS(984), - [anon_sym_PLUS_EQ] = ACTIONS(986), - [anon_sym_DASH_EQ] = ACTIONS(986), - [anon_sym_STAR_EQ] = ACTIONS(986), - [anon_sym_SLASH_EQ] = ACTIONS(986), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(986), - [sym__newline] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_err_GT_PIPE] = ACTIONS(986), - [anon_sym_out_GT_PIPE] = ACTIONS(986), - [anon_sym_e_GT_PIPE] = ACTIONS(986), - [anon_sym_o_GT_PIPE] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), - [anon_sym_RPAREN] = ACTIONS(986), - [anon_sym_GT2] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_in2] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_STAR2] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(4676), - [anon_sym_and2] = ACTIONS(986), - [anon_sym_xor2] = ACTIONS(986), - [anon_sym_or2] = ACTIONS(986), - [anon_sym_not_DASHin2] = ACTIONS(986), - [anon_sym_starts_DASHwith2] = ACTIONS(986), - [anon_sym_ends_DASHwith2] = ACTIONS(986), - [anon_sym_EQ_EQ2] = ACTIONS(986), - [anon_sym_BANG_EQ2] = ACTIONS(986), - [anon_sym_LT2] = ACTIONS(984), - [anon_sym_LT_EQ2] = ACTIONS(986), - [anon_sym_GT_EQ2] = ACTIONS(986), - [anon_sym_EQ_TILDE2] = ACTIONS(986), - [anon_sym_BANG_TILDE2] = ACTIONS(986), - [anon_sym_STAR_STAR2] = ACTIONS(986), - [anon_sym_PLUS_PLUS2] = ACTIONS(984), - [anon_sym_SLASH2] = ACTIONS(984), - [anon_sym_mod2] = ACTIONS(986), - [anon_sym_SLASH_SLASH2] = ACTIONS(986), - [anon_sym_PLUS2] = ACTIONS(984), - [anon_sym_bit_DASHshl2] = ACTIONS(986), - [anon_sym_bit_DASHshr2] = ACTIONS(986), - [anon_sym_bit_DASHand2] = ACTIONS(986), - [anon_sym_bit_DASHxor2] = ACTIONS(986), - [anon_sym_bit_DASHor2] = ACTIONS(986), - [anon_sym_DOT_DOT2] = ACTIONS(984), - [anon_sym_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), - [anon_sym_DOT_DOT_LT2] = ACTIONS(986), - [anon_sym_err_GT] = ACTIONS(984), - [anon_sym_out_GT] = ACTIONS(984), - [anon_sym_e_GT] = ACTIONS(984), - [anon_sym_o_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT] = ACTIONS(984), - [anon_sym_err_GT_GT] = ACTIONS(986), - [anon_sym_out_GT_GT] = ACTIONS(986), - [anon_sym_e_GT_GT] = ACTIONS(986), - [anon_sym_o_GT_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), + [1366] = { + [sym__match_pattern_expression] = STATE(3167), + [sym__match_pattern_value] = STATE(3159), + [sym__match_pattern_list] = STATE(3160), + [sym__match_pattern_record] = STATE(3161), + [sym_expr_parenthesized] = STATE(2875), + [sym_val_range] = STATE(3159), + [sym__val_range] = STATE(7970), + [sym_val_nothing] = STATE(3162), + [sym_val_bool] = STATE(3037), + [sym_val_variable] = STATE(2883), + [sym_val_number] = STATE(3162), + [sym__val_number_decimal] = STATE(2683), + [sym__val_number] = STATE(3147), + [sym_val_duration] = STATE(3162), + [sym_val_filesize] = STATE(3162), + [sym_val_binary] = STATE(3162), + [sym_val_string] = STATE(3162), + [sym__raw_str] = STATE(3125), + [sym__str_double_quotes] = STATE(3125), + [sym_val_table] = STATE(3162), + [sym__unquoted_in_list] = STATE(3167), + [sym__unquoted_anonymous_prefix] = STATE(7872), + [sym_comment] = STATE(1366), + [aux_sym__match_pattern_list_repeat1] = STATE(1366), + [anon_sym_LBRACK] = ACTIONS(4600), + [anon_sym_RBRACK] = ACTIONS(4603), + [anon_sym_LPAREN] = ACTIONS(4605), + [anon_sym_DOLLAR] = ACTIONS(4608), + [anon_sym_LBRACE] = ACTIONS(4611), + [anon_sym_DOT_DOT] = ACTIONS(4614), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4617), + [anon_sym_DOT_DOT_LT] = ACTIONS(4617), + [anon_sym_null] = ACTIONS(4620), + [anon_sym_true] = ACTIONS(4623), + [anon_sym_false] = ACTIONS(4623), + [aux_sym__val_number_decimal_token1] = ACTIONS(4626), + [aux_sym__val_number_decimal_token2] = ACTIONS(4629), + [aux_sym__val_number_decimal_token3] = ACTIONS(4632), + [aux_sym__val_number_decimal_token4] = ACTIONS(4635), + [aux_sym__val_number_token1] = ACTIONS(4638), + [aux_sym__val_number_token2] = ACTIONS(4638), + [aux_sym__val_number_token3] = ACTIONS(4638), + [aux_sym__val_number_token4] = ACTIONS(4641), + [aux_sym__val_number_token5] = ACTIONS(4641), + [aux_sym__val_number_token6] = ACTIONS(4641), + [anon_sym_0b] = ACTIONS(4644), + [anon_sym_0o] = ACTIONS(4647), + [anon_sym_0x] = ACTIONS(4647), + [sym_val_date] = ACTIONS(4650), + [anon_sym_DQUOTE] = ACTIONS(4653), + [sym__str_single_quotes] = ACTIONS(4656), + [sym__str_back_ticks] = ACTIONS(4656), + [anon_sym_err_GT] = ACTIONS(4659), + [anon_sym_out_GT] = ACTIONS(4659), + [anon_sym_e_GT] = ACTIONS(4659), + [anon_sym_o_GT] = ACTIONS(4659), + [anon_sym_err_PLUSout_GT] = ACTIONS(4659), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4659), + [anon_sym_o_PLUSe_GT] = ACTIONS(4659), + [anon_sym_e_PLUSo_GT] = ACTIONS(4659), + [anon_sym_err_GT_GT] = ACTIONS(4662), + [anon_sym_out_GT_GT] = ACTIONS(4662), + [anon_sym_e_GT_GT] = ACTIONS(4662), + [anon_sym_o_GT_GT] = ACTIONS(4662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4662), + [aux_sym__unquoted_in_list_token1] = ACTIONS(4665), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4668), + }, + [1367] = { + [sym_path] = STATE(1412), + [sym_comment] = STATE(1367), + [aux_sym_cell_path_repeat1] = STATE(1367), + [anon_sym_EQ] = ACTIONS(971), + [anon_sym_PLUS_EQ] = ACTIONS(973), + [anon_sym_DASH_EQ] = ACTIONS(973), + [anon_sym_STAR_EQ] = ACTIONS(973), + [anon_sym_SLASH_EQ] = ACTIONS(973), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(973), + [sym__newline] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(973), + [anon_sym_err_GT_PIPE] = ACTIONS(973), + [anon_sym_out_GT_PIPE] = ACTIONS(973), + [anon_sym_e_GT_PIPE] = ACTIONS(973), + [anon_sym_o_GT_PIPE] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), + [anon_sym_RPAREN] = ACTIONS(973), + [anon_sym_GT2] = ACTIONS(971), + [anon_sym_DASH2] = ACTIONS(971), + [anon_sym_in2] = ACTIONS(973), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_STAR2] = ACTIONS(971), + [anon_sym_and2] = ACTIONS(973), + [anon_sym_xor2] = ACTIONS(973), + [anon_sym_or2] = ACTIONS(973), + [anon_sym_not_DASHin2] = ACTIONS(973), + [anon_sym_starts_DASHwith2] = ACTIONS(973), + [anon_sym_ends_DASHwith2] = ACTIONS(973), + [anon_sym_EQ_EQ2] = ACTIONS(973), + [anon_sym_BANG_EQ2] = ACTIONS(973), + [anon_sym_LT2] = ACTIONS(971), + [anon_sym_LT_EQ2] = ACTIONS(973), + [anon_sym_GT_EQ2] = ACTIONS(973), + [anon_sym_EQ_TILDE2] = ACTIONS(973), + [anon_sym_BANG_TILDE2] = ACTIONS(973), + [anon_sym_STAR_STAR2] = ACTIONS(973), + [anon_sym_PLUS_PLUS2] = ACTIONS(971), + [anon_sym_SLASH2] = ACTIONS(971), + [anon_sym_mod2] = ACTIONS(973), + [anon_sym_SLASH_SLASH2] = ACTIONS(973), + [anon_sym_PLUS2] = ACTIONS(971), + [anon_sym_bit_DASHshl2] = ACTIONS(973), + [anon_sym_bit_DASHshr2] = ACTIONS(973), + [anon_sym_bit_DASHand2] = ACTIONS(973), + [anon_sym_bit_DASHxor2] = ACTIONS(973), + [anon_sym_bit_DASHor2] = ACTIONS(973), + [anon_sym_DOT_DOT2] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(4671), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(973), + [anon_sym_DOT_DOT_LT2] = ACTIONS(973), + [anon_sym_err_GT] = ACTIONS(971), + [anon_sym_out_GT] = ACTIONS(971), + [anon_sym_e_GT] = ACTIONS(971), + [anon_sym_o_GT] = ACTIONS(971), + [anon_sym_err_PLUSout_GT] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT] = ACTIONS(971), + [anon_sym_o_PLUSe_GT] = ACTIONS(971), + [anon_sym_e_PLUSo_GT] = ACTIONS(971), + [anon_sym_err_GT_GT] = ACTIONS(973), + [anon_sym_out_GT_GT] = ACTIONS(973), + [anon_sym_e_GT_GT] = ACTIONS(973), + [anon_sym_o_GT_GT] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), [anon_sym_POUND] = ACTIONS(247), }, - [1378] = { - [sym_comment] = STATE(1378), + [1368] = { + [sym_cell_path] = STATE(1554), + [sym_path] = STATE(1481), + [sym_comment] = STATE(1368), + [aux_sym_cell_path_repeat1] = STATE(1407), + [sym__newline] = ACTIONS(1749), + [anon_sym_SEMI] = ACTIONS(1749), + [anon_sym_PIPE] = ACTIONS(1749), + [anon_sym_err_GT_PIPE] = ACTIONS(1749), + [anon_sym_out_GT_PIPE] = ACTIONS(1749), + [anon_sym_e_GT_PIPE] = ACTIONS(1749), + [anon_sym_o_GT_PIPE] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_RPAREN] = ACTIONS(1749), + [anon_sym_DOLLAR] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1749), + [anon_sym_DASH2] = ACTIONS(1747), + [anon_sym_LBRACE] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1749), + [anon_sym_DOT_DOT] = ACTIONS(1747), + [anon_sym_DOT_DOT2] = ACTIONS(1747), + [anon_sym_DOT] = ACTIONS(4585), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1747), + [anon_sym_DOT_DOT_LT] = ACTIONS(1747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1749), + [anon_sym_null] = ACTIONS(1749), + [anon_sym_true] = ACTIONS(1749), + [anon_sym_false] = ACTIONS(1749), + [aux_sym__val_number_decimal_token1] = ACTIONS(1747), + [aux_sym__val_number_decimal_token2] = ACTIONS(1749), + [aux_sym__val_number_decimal_token3] = ACTIONS(1749), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(1749), + [aux_sym__val_number_token2] = ACTIONS(1749), + [aux_sym__val_number_token3] = ACTIONS(1749), + [aux_sym__val_number_token4] = ACTIONS(1749), + [aux_sym__val_number_token5] = ACTIONS(1749), + [aux_sym__val_number_token6] = ACTIONS(1749), + [anon_sym_0b] = ACTIONS(1747), + [anon_sym_0o] = ACTIONS(1747), + [anon_sym_0x] = ACTIONS(1747), + [sym_val_date] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1749), + [sym__str_single_quotes] = ACTIONS(1749), + [sym__str_back_ticks] = ACTIONS(1749), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1749), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1749), + [anon_sym_err_GT] = ACTIONS(1747), + [anon_sym_out_GT] = ACTIONS(1747), + [anon_sym_e_GT] = ACTIONS(1747), + [anon_sym_o_GT] = ACTIONS(1747), + [anon_sym_err_PLUSout_GT] = ACTIONS(1747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1747), + [anon_sym_o_PLUSe_GT] = ACTIONS(1747), + [anon_sym_e_PLUSo_GT] = ACTIONS(1747), + [anon_sym_err_GT_GT] = ACTIONS(1749), + [anon_sym_out_GT_GT] = ACTIONS(1749), + [anon_sym_e_GT_GT] = ACTIONS(1749), + [anon_sym_o_GT_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1749), + [aux_sym_unquoted_token1] = ACTIONS(1747), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1749), + }, + [1369] = { + [sym_comment] = STATE(1369), + [anon_sym_EQ] = ACTIONS(994), + [anon_sym_PLUS_EQ] = ACTIONS(996), + [anon_sym_DASH_EQ] = ACTIONS(996), + [anon_sym_STAR_EQ] = ACTIONS(996), + [anon_sym_SLASH_EQ] = ACTIONS(996), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(996), + [sym__newline] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_err_GT_PIPE] = ACTIONS(996), + [anon_sym_out_GT_PIPE] = ACTIONS(996), + [anon_sym_e_GT_PIPE] = ACTIONS(996), + [anon_sym_o_GT_PIPE] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), + [anon_sym_RPAREN] = ACTIONS(996), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(996), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_QMARK2] = ACTIONS(996), + [anon_sym_and2] = ACTIONS(996), + [anon_sym_xor2] = ACTIONS(996), + [anon_sym_or2] = ACTIONS(996), + [anon_sym_not_DASHin2] = ACTIONS(996), + [anon_sym_starts_DASHwith2] = ACTIONS(996), + [anon_sym_ends_DASHwith2] = ACTIONS(996), + [anon_sym_EQ_EQ2] = ACTIONS(996), + [anon_sym_BANG_EQ2] = ACTIONS(996), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(996), + [anon_sym_GT_EQ2] = ACTIONS(996), + [anon_sym_EQ_TILDE2] = ACTIONS(996), + [anon_sym_BANG_TILDE2] = ACTIONS(996), + [anon_sym_STAR_STAR2] = ACTIONS(996), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(996), + [anon_sym_SLASH_SLASH2] = ACTIONS(996), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(996), + [anon_sym_bit_DASHshr2] = ACTIONS(996), + [anon_sym_bit_DASHand2] = ACTIONS(996), + [anon_sym_bit_DASHxor2] = ACTIONS(996), + [anon_sym_bit_DASHor2] = ACTIONS(996), + [anon_sym_DOT_DOT2] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), + [anon_sym_DOT_DOT_LT2] = ACTIONS(996), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(996), + [anon_sym_out_GT_GT] = ACTIONS(996), + [anon_sym_e_GT_GT] = ACTIONS(996), + [anon_sym_o_GT_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [anon_sym_POUND] = ACTIONS(247), + }, + [1370] = { + [sym_comment] = STATE(1370), + [sym__newline] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_err_GT_PIPE] = ACTIONS(1683), + [anon_sym_out_GT_PIPE] = ACTIONS(1683), + [anon_sym_e_GT_PIPE] = ACTIONS(1683), + [anon_sym_o_GT_PIPE] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1683), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1681), + [anon_sym_RPAREN] = ACTIONS(1683), + [anon_sym_DOLLAR] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1683), + [anon_sym_RBRACE] = ACTIONS(1683), + [anon_sym_DOT_DOT] = ACTIONS(1681), + [anon_sym_LPAREN2] = ACTIONS(1683), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1681), + [anon_sym_DOT_DOT_LT] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [anon_sym_null] = ACTIONS(1683), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [aux_sym__val_number_decimal_token1] = ACTIONS(1681), + [aux_sym__val_number_decimal_token2] = ACTIONS(1683), + [aux_sym__val_number_decimal_token3] = ACTIONS(1683), + [aux_sym__val_number_decimal_token4] = ACTIONS(1683), + [aux_sym__val_number_token1] = ACTIONS(1683), + [aux_sym__val_number_token2] = ACTIONS(1683), + [aux_sym__val_number_token3] = ACTIONS(1683), + [aux_sym__val_number_token4] = ACTIONS(1683), + [aux_sym__val_number_token5] = ACTIONS(1683), + [aux_sym__val_number_token6] = ACTIONS(1683), + [anon_sym_0b] = ACTIONS(1681), + [sym_filesize_unit] = ACTIONS(1683), + [sym_duration_unit] = ACTIONS(1683), + [anon_sym_0o] = ACTIONS(1681), + [anon_sym_0x] = ACTIONS(1681), + [sym_val_date] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(1683), + [sym__str_single_quotes] = ACTIONS(1683), + [sym__str_back_ticks] = ACTIONS(1683), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1683), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1683), + [anon_sym_err_GT] = ACTIONS(1681), + [anon_sym_out_GT] = ACTIONS(1681), + [anon_sym_e_GT] = ACTIONS(1681), + [anon_sym_o_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT] = ACTIONS(1681), + [anon_sym_err_GT_GT] = ACTIONS(1683), + [anon_sym_out_GT_GT] = ACTIONS(1683), + [anon_sym_e_GT_GT] = ACTIONS(1683), + [anon_sym_o_GT_GT] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1683), + [aux_sym_unquoted_token1] = ACTIONS(1681), + [aux_sym_unquoted_token2] = ACTIONS(1681), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1683), + }, + [1371] = { + [sym_comment] = STATE(1371), + [sym__newline] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_err_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_GT_PIPE] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), + [anon_sym_LBRACK] = ACTIONS(1763), + [anon_sym_LPAREN] = ACTIONS(1761), + [anon_sym_RPAREN] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1761), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_DASH2] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_DOT_DOT] = ACTIONS(1761), + [anon_sym_LPAREN2] = ACTIONS(1763), + [anon_sym_DOT_DOT2] = ACTIONS(1761), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1761), + [anon_sym_DOT_DOT_LT] = ACTIONS(1761), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), + [anon_sym_null] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1763), + [anon_sym_false] = ACTIONS(1763), + [aux_sym__val_number_decimal_token1] = ACTIONS(1761), + [aux_sym__val_number_decimal_token2] = ACTIONS(1763), + [aux_sym__val_number_decimal_token3] = ACTIONS(1763), + [aux_sym__val_number_decimal_token4] = ACTIONS(1763), + [aux_sym__val_number_token1] = ACTIONS(1763), + [aux_sym__val_number_token2] = ACTIONS(1763), + [aux_sym__val_number_token3] = ACTIONS(1763), + [aux_sym__val_number_token4] = ACTIONS(1763), + [aux_sym__val_number_token5] = ACTIONS(1763), + [aux_sym__val_number_token6] = ACTIONS(1763), + [anon_sym_0b] = ACTIONS(1761), + [sym_filesize_unit] = ACTIONS(1763), + [sym_duration_unit] = ACTIONS(1763), + [anon_sym_0o] = ACTIONS(1761), + [anon_sym_0x] = ACTIONS(1761), + [sym_val_date] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym__str_single_quotes] = ACTIONS(1763), + [sym__str_back_ticks] = ACTIONS(1763), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1763), + [anon_sym_err_GT] = ACTIONS(1761), + [anon_sym_out_GT] = ACTIONS(1761), + [anon_sym_e_GT] = ACTIONS(1761), + [anon_sym_o_GT] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT] = ACTIONS(1761), + [anon_sym_err_GT_GT] = ACTIONS(1763), + [anon_sym_out_GT_GT] = ACTIONS(1763), + [anon_sym_e_GT_GT] = ACTIONS(1763), + [anon_sym_o_GT_GT] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1763), + [aux_sym_unquoted_token1] = ACTIONS(1761), + [aux_sym_unquoted_token2] = ACTIONS(1761), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1763), + }, + [1372] = { + [sym_cell_path] = STATE(1543), + [sym_path] = STATE(1481), + [sym_comment] = STATE(1372), + [aux_sym_cell_path_repeat1] = STATE(1407), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_RPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1733), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_DASH2] = ACTIONS(1733), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_DOT_DOT] = ACTIONS(1733), + [anon_sym_DOT_DOT2] = ACTIONS(1733), + [anon_sym_DOT] = ACTIONS(4585), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1733), + [anon_sym_DOT_DOT_LT] = ACTIONS(1733), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [anon_sym_null] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(1737), + [anon_sym_false] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1733), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1737), + [aux_sym__val_number_token5] = ACTIONS(1737), + [aux_sym__val_number_token6] = ACTIONS(1737), + [anon_sym_0b] = ACTIONS(1733), + [anon_sym_0o] = ACTIONS(1733), + [anon_sym_0x] = ACTIONS(1733), + [sym_val_date] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1733), + [anon_sym_out_GT] = ACTIONS(1733), + [anon_sym_e_GT] = ACTIONS(1733), + [anon_sym_o_GT] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT] = ACTIONS(1733), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [aux_sym_unquoted_token1] = ACTIONS(1733), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1737), + }, + [1373] = { + [sym__expr_parenthesized_immediate] = STATE(1889), + [sym__immediate_decimal] = STATE(1891), + [sym_val_variable] = STATE(1889), + [sym_comment] = STATE(1373), + [ts_builtin_sym_end] = ACTIONS(1603), + [sym__newline] = ACTIONS(1603), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_PIPE] = ACTIONS(1603), + [anon_sym_err_GT_PIPE] = ACTIONS(1603), + [anon_sym_out_GT_PIPE] = ACTIONS(1603), + [anon_sym_e_GT_PIPE] = ACTIONS(1603), + [anon_sym_o_GT_PIPE] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1603), + [anon_sym_LBRACK] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_DOLLAR] = ACTIONS(4419), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_DASH2] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_DOT_DOT] = ACTIONS(1593), + [anon_sym_LPAREN2] = ACTIONS(4487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1603), + [anon_sym_DOT_DOT_LT] = ACTIONS(1603), + [aux_sym__immediate_decimal_token1] = ACTIONS(4575), + [aux_sym__immediate_decimal_token3] = ACTIONS(4577), + [aux_sym__immediate_decimal_token4] = ACTIONS(4579), + [aux_sym__immediate_decimal_token5] = ACTIONS(4581), + [anon_sym_null] = ACTIONS(1603), + [anon_sym_true] = ACTIONS(1603), + [anon_sym_false] = ACTIONS(1603), + [aux_sym__val_number_decimal_token1] = ACTIONS(1593), + [aux_sym__val_number_decimal_token2] = ACTIONS(1593), + [aux_sym__val_number_decimal_token3] = ACTIONS(1593), + [aux_sym__val_number_decimal_token4] = ACTIONS(1593), + [aux_sym__val_number_token1] = ACTIONS(1603), + [aux_sym__val_number_token2] = ACTIONS(1603), + [aux_sym__val_number_token3] = ACTIONS(1603), + [aux_sym__val_number_token4] = ACTIONS(1603), + [aux_sym__val_number_token5] = ACTIONS(1603), + [aux_sym__val_number_token6] = ACTIONS(1603), + [anon_sym_0b] = ACTIONS(1593), + [anon_sym_0o] = ACTIONS(1593), + [anon_sym_0x] = ACTIONS(1593), + [sym_val_date] = ACTIONS(1603), + [anon_sym_DQUOTE] = ACTIONS(1603), + [sym__str_single_quotes] = ACTIONS(1603), + [sym__str_back_ticks] = ACTIONS(1603), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1603), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), + [anon_sym_err_GT] = ACTIONS(1593), + [anon_sym_out_GT] = ACTIONS(1593), + [anon_sym_e_GT] = ACTIONS(1593), + [anon_sym_o_GT] = ACTIONS(1593), + [anon_sym_err_PLUSout_GT] = ACTIONS(1593), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1593), + [anon_sym_o_PLUSe_GT] = ACTIONS(1593), + [anon_sym_e_PLUSo_GT] = ACTIONS(1593), + [anon_sym_err_GT_GT] = ACTIONS(1603), + [anon_sym_out_GT_GT] = ACTIONS(1603), + [anon_sym_e_GT_GT] = ACTIONS(1603), + [anon_sym_o_GT_GT] = ACTIONS(1603), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1603), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1603), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1603), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1603), + [aux_sym_unquoted_token1] = ACTIONS(1593), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1603), + }, + [1374] = { + [sym_comment] = STATE(1374), + [sym__newline] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_err_GT_PIPE] = ACTIONS(1683), + [anon_sym_out_GT_PIPE] = ACTIONS(1683), + [anon_sym_e_GT_PIPE] = ACTIONS(1683), + [anon_sym_o_GT_PIPE] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1683), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1683), + [anon_sym_RPAREN] = ACTIONS(1683), + [anon_sym_DOLLAR] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1683), + [anon_sym_RBRACE] = ACTIONS(1683), + [anon_sym_DOT_DOT] = ACTIONS(1681), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1681), + [anon_sym_DOT_DOT_LT] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [aux_sym__immediate_decimal_token2] = ACTIONS(4674), + [anon_sym_null] = ACTIONS(1683), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [aux_sym__val_number_decimal_token1] = ACTIONS(1681), + [aux_sym__val_number_decimal_token2] = ACTIONS(1683), + [aux_sym__val_number_decimal_token3] = ACTIONS(1683), + [aux_sym__val_number_decimal_token4] = ACTIONS(1683), + [aux_sym__val_number_token1] = ACTIONS(1683), + [aux_sym__val_number_token2] = ACTIONS(1683), + [aux_sym__val_number_token3] = ACTIONS(1683), + [aux_sym__val_number_token4] = ACTIONS(1683), + [aux_sym__val_number_token5] = ACTIONS(1683), + [aux_sym__val_number_token6] = ACTIONS(1683), + [anon_sym_0b] = ACTIONS(1681), + [sym_filesize_unit] = ACTIONS(1683), + [sym_duration_unit] = ACTIONS(1683), + [anon_sym_0o] = ACTIONS(1681), + [anon_sym_0x] = ACTIONS(1681), + [sym_val_date] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(1683), + [sym__str_single_quotes] = ACTIONS(1683), + [sym__str_back_ticks] = ACTIONS(1683), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1683), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1683), + [anon_sym_err_GT] = ACTIONS(1681), + [anon_sym_out_GT] = ACTIONS(1681), + [anon_sym_e_GT] = ACTIONS(1681), + [anon_sym_o_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT] = ACTIONS(1681), + [anon_sym_err_GT_GT] = ACTIONS(1683), + [anon_sym_out_GT_GT] = ACTIONS(1683), + [anon_sym_e_GT_GT] = ACTIONS(1683), + [anon_sym_o_GT_GT] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1683), + [aux_sym_unquoted_token1] = ACTIONS(1681), + [aux_sym_unquoted_token2] = ACTIONS(1681), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1683), + }, + [1375] = { + [sym_comment] = STATE(1375), [anon_sym_EQ] = ACTIONS(1002), [anon_sym_PLUS_EQ] = ACTIONS(1004), [anon_sym_DASH_EQ] = ACTIONS(1004), [anon_sym_STAR_EQ] = ACTIONS(1004), [anon_sym_SLASH_EQ] = ACTIONS(1004), [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1004), - [sym__newline] = ACTIONS(1002), + [sym__newline] = ACTIONS(1004), [anon_sym_SEMI] = ACTIONS(1004), [anon_sym_PIPE] = ACTIONS(1004), [anon_sym_err_GT_PIPE] = ACTIONS(1004), @@ -207456,9 +207541,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), + [anon_sym_RPAREN] = ACTIONS(1004), [anon_sym_GT2] = ACTIONS(1002), [anon_sym_DASH2] = ACTIONS(1002), [anon_sym_in2] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1004), [anon_sym_RBRACE] = ACTIONS(1004), [anon_sym_STAR2] = ACTIONS(1002), [anon_sym_QMARK2] = ACTIONS(1004), @@ -207490,7 +207577,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1002), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), - [aux_sym_record_entry_token1] = ACTIONS(1004), [anon_sym_err_GT] = ACTIONS(1002), [anon_sym_out_GT] = ACTIONS(1002), [anon_sym_e_GT] = ACTIONS(1002), @@ -207509,8 +207595,297 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), [anon_sym_POUND] = ACTIONS(247), }, + [1376] = { + [sym_comment] = STATE(1376), + [anon_sym_STAR_STAR] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_SLASH] = ACTIONS(3197), + [anon_sym_mod] = ACTIONS(3195), + [anon_sym_SLASH_SLASH] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_bit_DASHshl] = ACTIONS(3195), + [anon_sym_bit_DASHshr] = ACTIONS(3195), + [anon_sym_EQ_TILDE] = ACTIONS(3195), + [anon_sym_BANG_TILDE] = ACTIONS(3195), + [anon_sym_bit_DASHand] = ACTIONS(3195), + [anon_sym_bit_DASHxor] = ACTIONS(3195), + [anon_sym_bit_DASHor] = ACTIONS(3195), + [anon_sym_and] = ACTIONS(3195), + [anon_sym_xor] = ACTIONS(3195), + [anon_sym_or] = ACTIONS(3195), + [anon_sym_in] = ACTIONS(3195), + [anon_sym_not_DASHin] = ACTIONS(3195), + [anon_sym_starts_DASHwith] = ACTIONS(3195), + [anon_sym_ends_DASHwith] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT] = ACTIONS(3197), + [anon_sym_GT_EQ] = ACTIONS(3195), + [aux_sym_cmd_identifier_token41] = ACTIONS(3199), + [sym__newline] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_PIPE] = ACTIONS(2254), + [anon_sym_err_GT_PIPE] = ACTIONS(2254), + [anon_sym_out_GT_PIPE] = ACTIONS(2254), + [anon_sym_e_GT_PIPE] = ACTIONS(2254), + [anon_sym_o_GT_PIPE] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), + [anon_sym_GT2] = ACTIONS(2254), + [anon_sym_DASH2] = ACTIONS(2254), + [anon_sym_in2] = ACTIONS(2254), + [anon_sym_RBRACE] = ACTIONS(2254), + [anon_sym_STAR2] = ACTIONS(2254), + [anon_sym_and2] = ACTIONS(2254), + [anon_sym_xor2] = ACTIONS(2254), + [anon_sym_or2] = ACTIONS(2254), + [anon_sym_not_DASHin2] = ACTIONS(2254), + [anon_sym_starts_DASHwith2] = ACTIONS(2254), + [anon_sym_ends_DASHwith2] = ACTIONS(2254), + [anon_sym_EQ_EQ2] = ACTIONS(2254), + [anon_sym_BANG_EQ2] = ACTIONS(2254), + [anon_sym_LT2] = ACTIONS(2254), + [anon_sym_LT_EQ2] = ACTIONS(2254), + [anon_sym_GT_EQ2] = ACTIONS(2254), + [anon_sym_EQ_TILDE2] = ACTIONS(2254), + [anon_sym_BANG_TILDE2] = ACTIONS(2254), + [anon_sym_STAR_STAR2] = ACTIONS(2254), + [anon_sym_PLUS_PLUS2] = ACTIONS(2254), + [anon_sym_SLASH2] = ACTIONS(2254), + [anon_sym_mod2] = ACTIONS(2254), + [anon_sym_SLASH_SLASH2] = ACTIONS(2254), + [anon_sym_PLUS2] = ACTIONS(2254), + [anon_sym_bit_DASHshl2] = ACTIONS(2254), + [anon_sym_bit_DASHshr2] = ACTIONS(2254), + [anon_sym_bit_DASHand2] = ACTIONS(2254), + [anon_sym_bit_DASHxor2] = ACTIONS(2254), + [anon_sym_bit_DASHor2] = ACTIONS(2254), + [anon_sym_POUND] = ACTIONS(3), + }, + [1377] = { + [sym_cell_path] = STATE(1631), + [sym_path] = STATE(1519), + [sym_comment] = STATE(1377), + [aux_sym_cell_path_repeat1] = STATE(1431), + [ts_builtin_sym_end] = ACTIONS(1737), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1733), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_DASH2] = ACTIONS(1733), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_DOT_DOT] = ACTIONS(1733), + [anon_sym_DOT_DOT2] = ACTIONS(1733), + [anon_sym_DOT] = ACTIONS(4676), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1733), + [anon_sym_DOT_DOT_LT] = ACTIONS(1733), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [anon_sym_null] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(1737), + [anon_sym_false] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1733), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1737), + [aux_sym__val_number_token5] = ACTIONS(1737), + [aux_sym__val_number_token6] = ACTIONS(1737), + [anon_sym_0b] = ACTIONS(1733), + [anon_sym_0o] = ACTIONS(1733), + [anon_sym_0x] = ACTIONS(1733), + [sym_val_date] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1733), + [anon_sym_out_GT] = ACTIONS(1733), + [anon_sym_e_GT] = ACTIONS(1733), + [anon_sym_o_GT] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT] = ACTIONS(1733), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [aux_sym_unquoted_token1] = ACTIONS(1733), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1737), + }, + [1378] = { + [sym_comment] = STATE(1378), + [sym__newline] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_err_GT_PIPE] = ACTIONS(1683), + [anon_sym_out_GT_PIPE] = ACTIONS(1683), + [anon_sym_e_GT_PIPE] = ACTIONS(1683), + [anon_sym_o_GT_PIPE] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1683), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1683), + [anon_sym_RPAREN] = ACTIONS(1683), + [anon_sym_DOLLAR] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1683), + [anon_sym_RBRACE] = ACTIONS(1683), + [anon_sym_DOT_DOT] = ACTIONS(1681), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1681), + [anon_sym_DOT_DOT_LT] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [anon_sym_null] = ACTIONS(1683), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [aux_sym__val_number_decimal_token1] = ACTIONS(1681), + [aux_sym__val_number_decimal_token2] = ACTIONS(1683), + [aux_sym__val_number_decimal_token3] = ACTIONS(1683), + [aux_sym__val_number_decimal_token4] = ACTIONS(1683), + [aux_sym__val_number_token1] = ACTIONS(1683), + [aux_sym__val_number_token2] = ACTIONS(1683), + [aux_sym__val_number_token3] = ACTIONS(1683), + [aux_sym__val_number_token4] = ACTIONS(1683), + [aux_sym__val_number_token5] = ACTIONS(1683), + [aux_sym__val_number_token6] = ACTIONS(1683), + [anon_sym_0b] = ACTIONS(1681), + [sym_filesize_unit] = ACTIONS(1683), + [sym_duration_unit] = ACTIONS(1683), + [anon_sym_0o] = ACTIONS(1681), + [anon_sym_0x] = ACTIONS(1681), + [sym_val_date] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(1683), + [sym__str_single_quotes] = ACTIONS(1683), + [sym__str_back_ticks] = ACTIONS(1683), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1683), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1683), + [anon_sym_err_GT] = ACTIONS(1681), + [anon_sym_out_GT] = ACTIONS(1681), + [anon_sym_e_GT] = ACTIONS(1681), + [anon_sym_o_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT] = ACTIONS(1681), + [anon_sym_err_GT_GT] = ACTIONS(1683), + [anon_sym_out_GT_GT] = ACTIONS(1683), + [anon_sym_e_GT_GT] = ACTIONS(1683), + [anon_sym_o_GT_GT] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1683), + [aux_sym_unquoted_token1] = ACTIONS(1681), + [aux_sym_unquoted_token2] = ACTIONS(1681), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1683), + }, [1379] = { [sym_comment] = STATE(1379), + [ts_builtin_sym_end] = ACTIONS(1683), + [sym__newline] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_err_GT_PIPE] = ACTIONS(1683), + [anon_sym_out_GT_PIPE] = ACTIONS(1683), + [anon_sym_e_GT_PIPE] = ACTIONS(1683), + [anon_sym_o_GT_PIPE] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1683), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1683), + [anon_sym_DOLLAR] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1683), + [anon_sym_DOT_DOT] = ACTIONS(1681), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1681), + [anon_sym_DOT_DOT_LT] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [aux_sym__immediate_decimal_token2] = ACTIONS(4678), + [anon_sym_null] = ACTIONS(1683), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [aux_sym__val_number_decimal_token1] = ACTIONS(1681), + [aux_sym__val_number_decimal_token2] = ACTIONS(1683), + [aux_sym__val_number_decimal_token3] = ACTIONS(1683), + [aux_sym__val_number_decimal_token4] = ACTIONS(1683), + [aux_sym__val_number_token1] = ACTIONS(1683), + [aux_sym__val_number_token2] = ACTIONS(1683), + [aux_sym__val_number_token3] = ACTIONS(1683), + [aux_sym__val_number_token4] = ACTIONS(1683), + [aux_sym__val_number_token5] = ACTIONS(1683), + [aux_sym__val_number_token6] = ACTIONS(1683), + [anon_sym_0b] = ACTIONS(1681), + [sym_filesize_unit] = ACTIONS(1683), + [sym_duration_unit] = ACTIONS(1683), + [anon_sym_0o] = ACTIONS(1681), + [anon_sym_0x] = ACTIONS(1681), + [sym_val_date] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(1683), + [sym__str_single_quotes] = ACTIONS(1683), + [sym__str_back_ticks] = ACTIONS(1683), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1683), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1683), + [anon_sym_err_GT] = ACTIONS(1681), + [anon_sym_out_GT] = ACTIONS(1681), + [anon_sym_e_GT] = ACTIONS(1681), + [anon_sym_o_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT] = ACTIONS(1681), + [anon_sym_err_GT_GT] = ACTIONS(1683), + [anon_sym_out_GT_GT] = ACTIONS(1683), + [anon_sym_e_GT_GT] = ACTIONS(1683), + [anon_sym_o_GT_GT] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1683), + [aux_sym_unquoted_token1] = ACTIONS(1681), + [aux_sym_unquoted_token2] = ACTIONS(1681), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1683), + }, + [1380] = { + [sym_comment] = STATE(1380), [ts_builtin_sym_end] = ACTIONS(1741), [sym__newline] = ACTIONS(1741), [anon_sym_SEMI] = ACTIONS(1741), @@ -207536,8 +207911,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(1739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), - [aux_sym__immediate_decimal_token1] = ACTIONS(4678), - [aux_sym__immediate_decimal_token2] = ACTIONS(4680), + [aux_sym__immediate_decimal_token1] = ACTIONS(4680), + [aux_sym__immediate_decimal_token2] = ACTIONS(4682), [anon_sym_null] = ACTIONS(1741), [anon_sym_true] = ACTIONS(1741), [anon_sym_false] = ACTIONS(1741), @@ -207581,368 +207956,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1741), }, - [1380] = { - [sym_comment] = STATE(1380), - [sym__newline] = ACTIONS(1765), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_err_GT_PIPE] = ACTIONS(1765), - [anon_sym_out_GT_PIPE] = ACTIONS(1765), - [anon_sym_e_GT_PIPE] = ACTIONS(1765), - [anon_sym_o_GT_PIPE] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1763), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_DOT_DOT] = ACTIONS(1763), - [anon_sym_DOT_DOT2] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1763), - [anon_sym_DOT_DOT_LT] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), - [anon_sym_null] = ACTIONS(1765), - [anon_sym_true] = ACTIONS(1765), - [anon_sym_false] = ACTIONS(1765), - [aux_sym__val_number_decimal_token1] = ACTIONS(1763), - [aux_sym__val_number_decimal_token2] = ACTIONS(1765), - [aux_sym__val_number_decimal_token3] = ACTIONS(1765), - [aux_sym__val_number_decimal_token4] = ACTIONS(1765), - [aux_sym__val_number_token1] = ACTIONS(1765), - [aux_sym__val_number_token2] = ACTIONS(1765), - [aux_sym__val_number_token3] = ACTIONS(1765), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_0b] = ACTIONS(1763), - [sym_filesize_unit] = ACTIONS(1765), - [sym_duration_unit] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1763), - [anon_sym_0x] = ACTIONS(1763), - [sym_val_date] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym__str_single_quotes] = ACTIONS(1765), - [sym__str_back_ticks] = ACTIONS(1765), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1765), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1765), - [anon_sym_err_GT] = ACTIONS(1763), - [anon_sym_out_GT] = ACTIONS(1763), - [anon_sym_e_GT] = ACTIONS(1763), - [anon_sym_o_GT] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT] = ACTIONS(1763), - [anon_sym_err_GT_GT] = ACTIONS(1765), - [anon_sym_out_GT_GT] = ACTIONS(1765), - [anon_sym_e_GT_GT] = ACTIONS(1765), - [anon_sym_o_GT_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1765), - [aux_sym_unquoted_token1] = ACTIONS(1763), - [aux_sym_unquoted_token2] = ACTIONS(1763), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1765), - }, [1381] = { [sym_comment] = STATE(1381), - [sym__newline] = ACTIONS(1609), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_PIPE] = ACTIONS(1609), - [anon_sym_err_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_GT_PIPE] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1609), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_RPAREN] = ACTIONS(1609), - [anon_sym_DOLLAR] = ACTIONS(1607), - [anon_sym_DASH_DASH] = ACTIONS(1609), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_LBRACE] = ACTIONS(1609), - [anon_sym_RBRACE] = ACTIONS(1609), - [anon_sym_DOT_DOT] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), - [anon_sym_DOT_DOT_LT] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [anon_sym_null] = ACTIONS(1609), - [anon_sym_true] = ACTIONS(1609), - [anon_sym_false] = ACTIONS(1609), - [aux_sym__val_number_decimal_token1] = ACTIONS(1607), - [aux_sym__val_number_decimal_token2] = ACTIONS(1609), - [aux_sym__val_number_decimal_token3] = ACTIONS(1609), - [aux_sym__val_number_decimal_token4] = ACTIONS(1609), - [aux_sym__val_number_token1] = ACTIONS(1609), - [aux_sym__val_number_token2] = ACTIONS(1609), - [aux_sym__val_number_token3] = ACTIONS(1609), - [aux_sym__val_number_token4] = ACTIONS(1609), - [aux_sym__val_number_token5] = ACTIONS(1609), - [aux_sym__val_number_token6] = ACTIONS(1609), - [anon_sym_0b] = ACTIONS(1607), - [sym_filesize_unit] = ACTIONS(1609), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_0o] = ACTIONS(1607), - [anon_sym_0x] = ACTIONS(1607), - [sym_val_date] = ACTIONS(1609), - [anon_sym_DQUOTE] = ACTIONS(1609), - [sym__str_single_quotes] = ACTIONS(1609), - [sym__str_back_ticks] = ACTIONS(1609), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1609), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1609), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1609), - [anon_sym_out_GT_GT] = ACTIONS(1609), - [anon_sym_e_GT_GT] = ACTIONS(1609), - [anon_sym_o_GT_GT] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), - [aux_sym_unquoted_token1] = ACTIONS(1607), - [aux_sym_unquoted_token2] = ACTIONS(1607), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1609), - }, - [1382] = { - [sym_cell_path] = STATE(1621), - [sym_path] = STATE(1510), - [sym_comment] = STATE(1382), - [aux_sym_cell_path_repeat1] = STATE(1444), - [ts_builtin_sym_end] = ACTIONS(1737), - [sym__newline] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_err_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_GT_PIPE] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_LPAREN] = ACTIONS(1737), - [anon_sym_DOLLAR] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1737), - [anon_sym_DASH2] = ACTIONS(1735), - [anon_sym_LBRACE] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1735), - [anon_sym_DOT_DOT2] = ACTIONS(1735), - [anon_sym_DOT] = ACTIONS(4682), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1735), - [anon_sym_DOT_DOT_LT] = ACTIONS(1735), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), - [anon_sym_null] = ACTIONS(1737), - [anon_sym_true] = ACTIONS(1737), - [anon_sym_false] = ACTIONS(1737), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1737), - [aux_sym__val_number_decimal_token4] = ACTIONS(1737), - [aux_sym__val_number_token1] = ACTIONS(1737), - [aux_sym__val_number_token2] = ACTIONS(1737), - [aux_sym__val_number_token3] = ACTIONS(1737), - [aux_sym__val_number_token4] = ACTIONS(1737), - [aux_sym__val_number_token5] = ACTIONS(1737), - [aux_sym__val_number_token6] = ACTIONS(1737), - [anon_sym_0b] = ACTIONS(1735), - [anon_sym_0o] = ACTIONS(1735), - [anon_sym_0x] = ACTIONS(1735), - [sym_val_date] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1737), - [sym__str_single_quotes] = ACTIONS(1737), - [sym__str_back_ticks] = ACTIONS(1737), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), - [anon_sym_err_GT] = ACTIONS(1735), - [anon_sym_out_GT] = ACTIONS(1735), - [anon_sym_e_GT] = ACTIONS(1735), - [anon_sym_o_GT] = ACTIONS(1735), - [anon_sym_err_PLUSout_GT] = ACTIONS(1735), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), - [anon_sym_o_PLUSe_GT] = ACTIONS(1735), - [anon_sym_e_PLUSo_GT] = ACTIONS(1735), - [anon_sym_err_GT_GT] = ACTIONS(1737), - [anon_sym_out_GT_GT] = ACTIONS(1737), - [anon_sym_e_GT_GT] = ACTIONS(1737), - [anon_sym_o_GT_GT] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), - [aux_sym_unquoted_token1] = ACTIONS(1735), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1737), - }, - [1383] = { - [sym_comment] = STATE(1383), - [ts_builtin_sym_end] = ACTIONS(1765), - [sym__newline] = ACTIONS(1765), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_err_GT_PIPE] = ACTIONS(1765), - [anon_sym_out_GT_PIPE] = ACTIONS(1765), - [anon_sym_e_GT_PIPE] = ACTIONS(1765), - [anon_sym_o_GT_PIPE] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1763), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_DOT_DOT] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(1765), - [anon_sym_DOT_DOT2] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1763), - [anon_sym_DOT_DOT_LT] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), - [anon_sym_null] = ACTIONS(1765), - [anon_sym_true] = ACTIONS(1765), - [anon_sym_false] = ACTIONS(1765), - [aux_sym__val_number_decimal_token1] = ACTIONS(1763), - [aux_sym__val_number_decimal_token2] = ACTIONS(1765), - [aux_sym__val_number_decimal_token3] = ACTIONS(1765), - [aux_sym__val_number_decimal_token4] = ACTIONS(1765), - [aux_sym__val_number_token1] = ACTIONS(1765), - [aux_sym__val_number_token2] = ACTIONS(1765), - [aux_sym__val_number_token3] = ACTIONS(1765), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_0b] = ACTIONS(1763), - [sym_filesize_unit] = ACTIONS(1765), - [sym_duration_unit] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1763), - [anon_sym_0x] = ACTIONS(1763), - [sym_val_date] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym__str_single_quotes] = ACTIONS(1765), - [sym__str_back_ticks] = ACTIONS(1765), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1765), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1765), - [anon_sym_err_GT] = ACTIONS(1763), - [anon_sym_out_GT] = ACTIONS(1763), - [anon_sym_e_GT] = ACTIONS(1763), - [anon_sym_o_GT] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT] = ACTIONS(1763), - [anon_sym_err_GT_GT] = ACTIONS(1765), - [anon_sym_out_GT_GT] = ACTIONS(1765), - [anon_sym_e_GT_GT] = ACTIONS(1765), - [anon_sym_o_GT_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1765), - [aux_sym_unquoted_token1] = ACTIONS(1763), - [aux_sym_unquoted_token2] = ACTIONS(1763), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1765), - }, - [1384] = { - [sym_comment] = STATE(1384), - [sym__newline] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_err_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_GT_PIPE] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_RPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), - [aux_sym__immediate_decimal_token2] = ACTIONS(4684), - [anon_sym_null] = ACTIONS(1785), - [anon_sym_true] = ACTIONS(1785), - [anon_sym_false] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_0b] = ACTIONS(1783), - [anon_sym_0o] = ACTIONS(1783), - [anon_sym_0x] = ACTIONS(1783), - [sym_val_date] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_err_GT] = ACTIONS(1783), - [anon_sym_out_GT] = ACTIONS(1783), - [anon_sym_e_GT] = ACTIONS(1783), - [anon_sym_o_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT] = ACTIONS(1783), - [anon_sym_err_GT_GT] = ACTIONS(1785), - [anon_sym_out_GT_GT] = ACTIONS(1785), - [anon_sym_e_GT_GT] = ACTIONS(1785), - [anon_sym_o_GT_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), - [aux_sym_unquoted_token1] = ACTIONS(1783), - [aux_sym_unquoted_token2] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1785), - }, - [1385] = { - [sym_comment] = STATE(1385), [anon_sym_EQ] = ACTIONS(990), [anon_sym_PLUS_EQ] = ACTIONS(992), [anon_sym_DASH_EQ] = ACTIONS(992), @@ -207980,332 +207995,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE2] = ACTIONS(992), [anon_sym_BANG_TILDE2] = ACTIONS(992), [anon_sym_STAR_STAR2] = ACTIONS(992), - [anon_sym_PLUS_PLUS2] = ACTIONS(990), - [anon_sym_SLASH2] = ACTIONS(990), - [anon_sym_mod2] = ACTIONS(992), - [anon_sym_SLASH_SLASH2] = ACTIONS(992), - [anon_sym_PLUS2] = ACTIONS(990), - [anon_sym_bit_DASHshl2] = ACTIONS(992), - [anon_sym_bit_DASHshr2] = ACTIONS(992), - [anon_sym_bit_DASHand2] = ACTIONS(992), - [anon_sym_bit_DASHxor2] = ACTIONS(992), - [anon_sym_bit_DASHor2] = ACTIONS(992), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [aux_sym_record_entry_token1] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(247), - }, - [1386] = { - [sym_comment] = STATE(1386), - [ts_builtin_sym_end] = ACTIONS(1609), - [sym__newline] = ACTIONS(1609), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_PIPE] = ACTIONS(1609), - [anon_sym_err_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_GT_PIPE] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1609), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_DOLLAR] = ACTIONS(1607), - [anon_sym_DASH_DASH] = ACTIONS(1609), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_LBRACE] = ACTIONS(1609), - [anon_sym_DOT_DOT] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), - [anon_sym_DOT_DOT_LT] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(4651), - [anon_sym_null] = ACTIONS(1609), - [anon_sym_true] = ACTIONS(1609), - [anon_sym_false] = ACTIONS(1609), - [aux_sym__val_number_decimal_token1] = ACTIONS(1607), - [aux_sym__val_number_decimal_token2] = ACTIONS(1609), - [aux_sym__val_number_decimal_token3] = ACTIONS(1609), - [aux_sym__val_number_decimal_token4] = ACTIONS(1609), - [aux_sym__val_number_token1] = ACTIONS(1609), - [aux_sym__val_number_token2] = ACTIONS(1609), - [aux_sym__val_number_token3] = ACTIONS(1609), - [aux_sym__val_number_token4] = ACTIONS(1609), - [aux_sym__val_number_token5] = ACTIONS(1609), - [aux_sym__val_number_token6] = ACTIONS(1609), - [anon_sym_0b] = ACTIONS(1607), - [sym_filesize_unit] = ACTIONS(1609), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_0o] = ACTIONS(1607), - [anon_sym_0x] = ACTIONS(1607), - [sym_val_date] = ACTIONS(1609), - [anon_sym_DQUOTE] = ACTIONS(1609), - [sym__str_single_quotes] = ACTIONS(1609), - [sym__str_back_ticks] = ACTIONS(1609), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1609), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1609), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1609), - [anon_sym_out_GT_GT] = ACTIONS(1609), - [anon_sym_e_GT_GT] = ACTIONS(1609), - [anon_sym_o_GT_GT] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), - [aux_sym_unquoted_token1] = ACTIONS(1607), - [aux_sym_unquoted_token2] = ACTIONS(1607), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1609), - }, - [1387] = { - [sym__match_pattern] = STATE(7457), - [sym__match_pattern_expression] = STATE(6912), - [sym__match_pattern_value] = STATE(6932), - [sym__match_pattern_list] = STATE(6972), - [sym__match_pattern_record] = STATE(6995), - [sym_expr_parenthesized] = STATE(5800), - [sym_val_range] = STATE(6932), - [sym__val_range] = STATE(7572), - [sym_val_nothing] = STATE(7043), - [sym_val_bool] = STATE(6878), - [sym_val_variable] = STATE(5810), - [sym_val_number] = STATE(7043), - [sym__val_number_decimal] = STATE(5553), - [sym__val_number] = STATE(1811), - [sym_val_duration] = STATE(7043), - [sym_val_filesize] = STATE(7043), - [sym_val_binary] = STATE(7043), - [sym_val_string] = STATE(7043), - [sym__raw_str] = STATE(1821), - [sym__str_double_quotes] = STATE(1821), - [sym_val_table] = STATE(7043), - [sym_unquoted] = STATE(7086), - [sym__unquoted_anonymous_prefix] = STATE(7585), - [sym_comment] = STATE(1387), - [anon_sym_LBRACK] = ACTIONS(3617), - [anon_sym_LPAREN] = ACTIONS(3619), - [anon_sym_DOLLAR] = ACTIONS(3621), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym_DOT_DOT] = ACTIONS(4686), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4688), - [anon_sym_DOT_DOT_LT] = ACTIONS(4688), - [anon_sym_null] = ACTIONS(4690), - [anon_sym_true] = ACTIONS(4692), - [anon_sym_false] = ACTIONS(4692), - [aux_sym__val_number_decimal_token1] = ACTIONS(4694), - [aux_sym__val_number_decimal_token2] = ACTIONS(4696), - [aux_sym__val_number_decimal_token3] = ACTIONS(4698), - [aux_sym__val_number_decimal_token4] = ACTIONS(4700), - [aux_sym__val_number_token1] = ACTIONS(427), - [aux_sym__val_number_token2] = ACTIONS(427), - [aux_sym__val_number_token3] = ACTIONS(427), - [aux_sym__val_number_token4] = ACTIONS(4702), - [aux_sym__val_number_token5] = ACTIONS(4702), - [aux_sym__val_number_token6] = ACTIONS(4702), - [anon_sym_0b] = ACTIONS(229), - [anon_sym_0o] = ACTIONS(231), - [anon_sym_0x] = ACTIONS(231), - [sym_val_date] = ACTIONS(4704), - [anon_sym_DQUOTE] = ACTIONS(431), - [sym__str_single_quotes] = ACTIONS(433), - [sym__str_back_ticks] = ACTIONS(433), - [anon_sym_err_GT] = ACTIONS(2663), - [anon_sym_out_GT] = ACTIONS(2663), - [anon_sym_e_GT] = ACTIONS(2663), - [anon_sym_o_GT] = ACTIONS(2663), - [anon_sym_err_PLUSout_GT] = ACTIONS(2663), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2663), - [anon_sym_o_PLUSe_GT] = ACTIONS(2663), - [anon_sym_e_PLUSo_GT] = ACTIONS(2663), - [anon_sym_err_GT_GT] = ACTIONS(2665), - [anon_sym_out_GT_GT] = ACTIONS(2665), - [anon_sym_e_GT_GT] = ACTIONS(2665), - [anon_sym_o_GT_GT] = ACTIONS(2665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2665), - [aux_sym_unquoted_token1] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(435), - }, - [1388] = { - [sym_comment] = STATE(1388), - [sym__newline] = ACTIONS(1623), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1623), - [anon_sym_err_GT_PIPE] = ACTIONS(1623), - [anon_sym_out_GT_PIPE] = ACTIONS(1623), - [anon_sym_e_GT_PIPE] = ACTIONS(1623), - [anon_sym_o_GT_PIPE] = ACTIONS(1623), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(1623), - [anon_sym_RPAREN] = ACTIONS(1623), - [anon_sym_DOLLAR] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_RBRACE] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1621), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1621), - [anon_sym_DOT_DOT_LT] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [anon_sym_null] = ACTIONS(1623), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [aux_sym__val_number_decimal_token1] = ACTIONS(1621), - [aux_sym__val_number_decimal_token2] = ACTIONS(1623), - [aux_sym__val_number_decimal_token3] = ACTIONS(1623), - [aux_sym__val_number_decimal_token4] = ACTIONS(1623), - [aux_sym__val_number_token1] = ACTIONS(1623), - [aux_sym__val_number_token2] = ACTIONS(1623), - [aux_sym__val_number_token3] = ACTIONS(1623), - [aux_sym__val_number_token4] = ACTIONS(1623), - [aux_sym__val_number_token5] = ACTIONS(1623), - [aux_sym__val_number_token6] = ACTIONS(1623), - [anon_sym_0b] = ACTIONS(1621), - [sym_filesize_unit] = ACTIONS(1623), - [sym_duration_unit] = ACTIONS(1623), - [anon_sym_0o] = ACTIONS(1621), - [anon_sym_0x] = ACTIONS(1621), - [sym_val_date] = ACTIONS(1623), - [anon_sym_DQUOTE] = ACTIONS(1623), - [sym__str_single_quotes] = ACTIONS(1623), - [sym__str_back_ticks] = ACTIONS(1623), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1623), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1623), - [anon_sym_err_GT] = ACTIONS(1621), - [anon_sym_out_GT] = ACTIONS(1621), - [anon_sym_e_GT] = ACTIONS(1621), - [anon_sym_o_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT] = ACTIONS(1621), - [anon_sym_err_GT_GT] = ACTIONS(1623), - [anon_sym_out_GT_GT] = ACTIONS(1623), - [anon_sym_e_GT_GT] = ACTIONS(1623), - [anon_sym_o_GT_GT] = ACTIONS(1623), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), - [aux_sym_unquoted_token1] = ACTIONS(1621), - [aux_sym_unquoted_token2] = ACTIONS(1621), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1623), - }, - [1389] = { - [sym_comment] = STATE(1389), - [ts_builtin_sym_end] = ACTIONS(1675), - [sym__newline] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_err_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_GT_PIPE] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_LPAREN] = ACTIONS(1675), - [anon_sym_DOLLAR] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1675), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1675), - [anon_sym_DOT_DOT] = ACTIONS(1673), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1673), - [anon_sym_DOT_DOT_LT] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [aux_sym__immediate_decimal_token2] = ACTIONS(4706), - [anon_sym_null] = ACTIONS(1675), - [anon_sym_true] = ACTIONS(1675), - [anon_sym_false] = ACTIONS(1675), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1675), - [aux_sym__val_number_decimal_token4] = ACTIONS(1675), - [aux_sym__val_number_token1] = ACTIONS(1675), - [aux_sym__val_number_token2] = ACTIONS(1675), - [aux_sym__val_number_token3] = ACTIONS(1675), - [aux_sym__val_number_token4] = ACTIONS(1675), - [aux_sym__val_number_token5] = ACTIONS(1675), - [aux_sym__val_number_token6] = ACTIONS(1675), - [anon_sym_0b] = ACTIONS(1673), - [sym_filesize_unit] = ACTIONS(1675), - [sym_duration_unit] = ACTIONS(1675), - [anon_sym_0o] = ACTIONS(1673), - [anon_sym_0x] = ACTIONS(1673), - [sym_val_date] = ACTIONS(1675), - [anon_sym_DQUOTE] = ACTIONS(1675), - [sym__str_single_quotes] = ACTIONS(1675), - [sym__str_back_ticks] = ACTIONS(1675), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1675), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1675), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1675), - [anon_sym_out_GT_GT] = ACTIONS(1675), - [anon_sym_e_GT_GT] = ACTIONS(1675), - [anon_sym_o_GT_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), - [aux_sym_unquoted_token1] = ACTIONS(1673), - [aux_sym_unquoted_token2] = ACTIONS(1673), + [anon_sym_PLUS_PLUS2] = ACTIONS(990), + [anon_sym_SLASH2] = ACTIONS(990), + [anon_sym_mod2] = ACTIONS(992), + [anon_sym_SLASH_SLASH2] = ACTIONS(992), + [anon_sym_PLUS2] = ACTIONS(990), + [anon_sym_bit_DASHshl2] = ACTIONS(992), + [anon_sym_bit_DASHshr2] = ACTIONS(992), + [anon_sym_bit_DASHand2] = ACTIONS(992), + [anon_sym_bit_DASHxor2] = ACTIONS(992), + [anon_sym_bit_DASHor2] = ACTIONS(992), + [anon_sym_DOT_DOT2] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), + [anon_sym_DOT_DOT_LT2] = ACTIONS(992), + [aux_sym_record_entry_token1] = ACTIONS(992), + [anon_sym_err_GT] = ACTIONS(990), + [anon_sym_out_GT] = ACTIONS(990), + [anon_sym_e_GT] = ACTIONS(990), + [anon_sym_o_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT] = ACTIONS(990), + [anon_sym_err_GT_GT] = ACTIONS(992), + [anon_sym_out_GT_GT] = ACTIONS(992), + [anon_sym_e_GT_GT] = ACTIONS(992), + [anon_sym_o_GT_GT] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1675), }, - [1390] = { - [sym_cell_path] = STATE(1596), - [sym_path] = STATE(1510), - [sym_comment] = STATE(1390), - [aux_sym_cell_path_repeat1] = STATE(1444), + [1382] = { + [sym_comment] = STATE(1382), + [sym__newline] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_err_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_GT_PIPE] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), + [anon_sym_LBRACK] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_RPAREN] = ACTIONS(1575), + [anon_sym_DOLLAR] = ACTIONS(1573), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_RBRACE] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1573), + [anon_sym_DOT_DOT_LT] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [anon_sym_null] = ACTIONS(1575), + [anon_sym_true] = ACTIONS(1575), + [anon_sym_false] = ACTIONS(1575), + [aux_sym__val_number_decimal_token1] = ACTIONS(1573), + [aux_sym__val_number_decimal_token2] = ACTIONS(1575), + [aux_sym__val_number_decimal_token3] = ACTIONS(1575), + [aux_sym__val_number_decimal_token4] = ACTIONS(1575), + [aux_sym__val_number_token1] = ACTIONS(1575), + [aux_sym__val_number_token2] = ACTIONS(1575), + [aux_sym__val_number_token3] = ACTIONS(1575), + [aux_sym__val_number_token4] = ACTIONS(1575), + [aux_sym__val_number_token5] = ACTIONS(1575), + [aux_sym__val_number_token6] = ACTIONS(1575), + [anon_sym_0b] = ACTIONS(1573), + [sym_filesize_unit] = ACTIONS(1575), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_0o] = ACTIONS(1573), + [anon_sym_0x] = ACTIONS(1573), + [sym_val_date] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [sym__str_single_quotes] = ACTIONS(1575), + [sym__str_back_ticks] = ACTIONS(1575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1575), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1575), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1575), + [anon_sym_out_GT_GT] = ACTIONS(1575), + [anon_sym_e_GT_GT] = ACTIONS(1575), + [anon_sym_o_GT_GT] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), + [aux_sym_unquoted_token1] = ACTIONS(1573), + [aux_sym_unquoted_token2] = ACTIONS(1573), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1575), + }, + [1383] = { + [sym_comment] = STATE(1383), + [sym__newline] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_err_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_GT_PIPE] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), + [anon_sym_LBRACK] = ACTIONS(1763), + [anon_sym_LPAREN] = ACTIONS(1763), + [anon_sym_RPAREN] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1761), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_DASH2] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_DOT_DOT] = ACTIONS(1761), + [anon_sym_DOT_DOT2] = ACTIONS(1761), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1761), + [anon_sym_DOT_DOT_LT] = ACTIONS(1761), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), + [anon_sym_null] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1763), + [anon_sym_false] = ACTIONS(1763), + [aux_sym__val_number_decimal_token1] = ACTIONS(1761), + [aux_sym__val_number_decimal_token2] = ACTIONS(1763), + [aux_sym__val_number_decimal_token3] = ACTIONS(1763), + [aux_sym__val_number_decimal_token4] = ACTIONS(1763), + [aux_sym__val_number_token1] = ACTIONS(1763), + [aux_sym__val_number_token2] = ACTIONS(1763), + [aux_sym__val_number_token3] = ACTIONS(1763), + [aux_sym__val_number_token4] = ACTIONS(1763), + [aux_sym__val_number_token5] = ACTIONS(1763), + [aux_sym__val_number_token6] = ACTIONS(1763), + [anon_sym_0b] = ACTIONS(1761), + [sym_filesize_unit] = ACTIONS(1763), + [sym_duration_unit] = ACTIONS(1763), + [anon_sym_0o] = ACTIONS(1761), + [anon_sym_0x] = ACTIONS(1761), + [sym_val_date] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym__str_single_quotes] = ACTIONS(1763), + [sym__str_back_ticks] = ACTIONS(1763), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1763), + [anon_sym_err_GT] = ACTIONS(1761), + [anon_sym_out_GT] = ACTIONS(1761), + [anon_sym_e_GT] = ACTIONS(1761), + [anon_sym_o_GT] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT] = ACTIONS(1761), + [anon_sym_err_GT_GT] = ACTIONS(1763), + [anon_sym_out_GT_GT] = ACTIONS(1763), + [anon_sym_e_GT_GT] = ACTIONS(1763), + [anon_sym_o_GT_GT] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1763), + [aux_sym_unquoted_token1] = ACTIONS(1761), + [aux_sym_unquoted_token2] = ACTIONS(1761), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1763), + }, + [1384] = { + [sym_cell_path] = STATE(1640), + [sym_path] = STATE(1519), + [sym_comment] = STATE(1384), + [aux_sym_cell_path_repeat1] = STATE(1431), [ts_builtin_sym_end] = ACTIONS(963), [sym__newline] = ACTIONS(963), [anon_sym_SEMI] = ACTIONS(963), @@ -208326,7 +208197,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(963), [anon_sym_DOT_DOT] = ACTIONS(961), [anon_sym_DOT_DOT2] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(4682), + [anon_sym_DOT] = ACTIONS(4676), [anon_sym_DOT_DOT_EQ] = ACTIONS(961), [anon_sym_DOT_DOT_LT] = ACTIONS(961), [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), @@ -208373,87 +208244,591 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(963), }, + [1385] = { + [sym_comment] = STATE(1385), + [anon_sym_STAR_STAR] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_SLASH] = ACTIONS(3197), + [anon_sym_mod] = ACTIONS(3195), + [anon_sym_SLASH_SLASH] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_bit_DASHshl] = ACTIONS(3195), + [anon_sym_bit_DASHshr] = ACTIONS(3195), + [anon_sym_EQ_TILDE] = ACTIONS(3195), + [anon_sym_BANG_TILDE] = ACTIONS(3195), + [anon_sym_bit_DASHand] = ACTIONS(3195), + [anon_sym_bit_DASHxor] = ACTIONS(3195), + [anon_sym_bit_DASHor] = ACTIONS(3195), + [anon_sym_and] = ACTIONS(3195), + [anon_sym_xor] = ACTIONS(3195), + [anon_sym_or] = ACTIONS(3195), + [anon_sym_in] = ACTIONS(3195), + [anon_sym_not_DASHin] = ACTIONS(3195), + [anon_sym_starts_DASHwith] = ACTIONS(3195), + [anon_sym_ends_DASHwith] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT] = ACTIONS(3197), + [anon_sym_GT_EQ] = ACTIONS(3195), + [aux_sym_cmd_identifier_token41] = ACTIONS(3199), + [sym__newline] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_PIPE] = ACTIONS(2254), + [anon_sym_err_GT_PIPE] = ACTIONS(2254), + [anon_sym_out_GT_PIPE] = ACTIONS(2254), + [anon_sym_e_GT_PIPE] = ACTIONS(2254), + [anon_sym_o_GT_PIPE] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), + [anon_sym_GT2] = ACTIONS(2254), + [anon_sym_DASH2] = ACTIONS(2254), + [anon_sym_in2] = ACTIONS(2254), + [anon_sym_STAR2] = ACTIONS(2254), + [anon_sym_and2] = ACTIONS(2254), + [anon_sym_xor2] = ACTIONS(2254), + [anon_sym_or2] = ACTIONS(2254), + [anon_sym_not_DASHin2] = ACTIONS(2254), + [anon_sym_starts_DASHwith2] = ACTIONS(2254), + [anon_sym_ends_DASHwith2] = ACTIONS(2254), + [anon_sym_EQ_EQ2] = ACTIONS(2254), + [anon_sym_BANG_EQ2] = ACTIONS(2254), + [anon_sym_LT2] = ACTIONS(2254), + [anon_sym_LT_EQ2] = ACTIONS(2254), + [anon_sym_GT_EQ2] = ACTIONS(2254), + [anon_sym_EQ_TILDE2] = ACTIONS(2254), + [anon_sym_BANG_TILDE2] = ACTIONS(2254), + [anon_sym_STAR_STAR2] = ACTIONS(2254), + [anon_sym_PLUS_PLUS2] = ACTIONS(2254), + [anon_sym_SLASH2] = ACTIONS(2254), + [anon_sym_mod2] = ACTIONS(2254), + [anon_sym_SLASH_SLASH2] = ACTIONS(2254), + [anon_sym_PLUS2] = ACTIONS(2254), + [anon_sym_bit_DASHshl2] = ACTIONS(2254), + [anon_sym_bit_DASHshr2] = ACTIONS(2254), + [anon_sym_bit_DASHand2] = ACTIONS(2254), + [anon_sym_bit_DASHxor2] = ACTIONS(2254), + [anon_sym_bit_DASHor2] = ACTIONS(2254), + [anon_sym_POUND] = ACTIONS(3), + }, + [1386] = { + [sym_comment] = STATE(1386), + [ts_builtin_sym_end] = ACTIONS(1575), + [sym__newline] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_err_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_GT_PIPE] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), + [anon_sym_LBRACK] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_DOLLAR] = ACTIONS(1573), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_LPAREN2] = ACTIONS(1575), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1573), + [anon_sym_DOT_DOT_LT] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [anon_sym_null] = ACTIONS(1575), + [anon_sym_true] = ACTIONS(1575), + [anon_sym_false] = ACTIONS(1575), + [aux_sym__val_number_decimal_token1] = ACTIONS(1573), + [aux_sym__val_number_decimal_token2] = ACTIONS(1575), + [aux_sym__val_number_decimal_token3] = ACTIONS(1575), + [aux_sym__val_number_decimal_token4] = ACTIONS(1575), + [aux_sym__val_number_token1] = ACTIONS(1575), + [aux_sym__val_number_token2] = ACTIONS(1575), + [aux_sym__val_number_token3] = ACTIONS(1575), + [aux_sym__val_number_token4] = ACTIONS(1575), + [aux_sym__val_number_token5] = ACTIONS(1575), + [aux_sym__val_number_token6] = ACTIONS(1575), + [anon_sym_0b] = ACTIONS(1573), + [sym_filesize_unit] = ACTIONS(1575), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_0o] = ACTIONS(1573), + [anon_sym_0x] = ACTIONS(1573), + [sym_val_date] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [sym__str_single_quotes] = ACTIONS(1575), + [sym__str_back_ticks] = ACTIONS(1575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1575), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1575), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1575), + [anon_sym_out_GT_GT] = ACTIONS(1575), + [anon_sym_e_GT_GT] = ACTIONS(1575), + [anon_sym_o_GT_GT] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), + [aux_sym_unquoted_token1] = ACTIONS(1573), + [aux_sym_unquoted_token2] = ACTIONS(1573), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1575), + }, + [1387] = { + [sym_comment] = STATE(1387), + [ts_builtin_sym_end] = ACTIONS(1575), + [sym__newline] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_err_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_GT_PIPE] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), + [anon_sym_LBRACK] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_DOLLAR] = ACTIONS(1573), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1573), + [anon_sym_DOT_DOT_LT] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(4559), + [anon_sym_null] = ACTIONS(1575), + [anon_sym_true] = ACTIONS(1575), + [anon_sym_false] = ACTIONS(1575), + [aux_sym__val_number_decimal_token1] = ACTIONS(1573), + [aux_sym__val_number_decimal_token2] = ACTIONS(1575), + [aux_sym__val_number_decimal_token3] = ACTIONS(1575), + [aux_sym__val_number_decimal_token4] = ACTIONS(1575), + [aux_sym__val_number_token1] = ACTIONS(1575), + [aux_sym__val_number_token2] = ACTIONS(1575), + [aux_sym__val_number_token3] = ACTIONS(1575), + [aux_sym__val_number_token4] = ACTIONS(1575), + [aux_sym__val_number_token5] = ACTIONS(1575), + [aux_sym__val_number_token6] = ACTIONS(1575), + [anon_sym_0b] = ACTIONS(1573), + [sym_filesize_unit] = ACTIONS(1575), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_0o] = ACTIONS(1573), + [anon_sym_0x] = ACTIONS(1573), + [sym_val_date] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [sym__str_single_quotes] = ACTIONS(1575), + [sym__str_back_ticks] = ACTIONS(1575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1575), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1575), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1575), + [anon_sym_out_GT_GT] = ACTIONS(1575), + [anon_sym_e_GT_GT] = ACTIONS(1575), + [anon_sym_o_GT_GT] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), + [aux_sym_unquoted_token1] = ACTIONS(1573), + [aux_sym_unquoted_token2] = ACTIONS(1573), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1575), + }, + [1388] = { + [sym_comment] = STATE(1388), + [anon_sym_EQ] = ACTIONS(994), + [anon_sym_PLUS_EQ] = ACTIONS(996), + [anon_sym_DASH_EQ] = ACTIONS(996), + [anon_sym_STAR_EQ] = ACTIONS(996), + [anon_sym_SLASH_EQ] = ACTIONS(996), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(996), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_err_GT_PIPE] = ACTIONS(996), + [anon_sym_out_GT_PIPE] = ACTIONS(996), + [anon_sym_e_GT_PIPE] = ACTIONS(996), + [anon_sym_o_GT_PIPE] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_QMARK2] = ACTIONS(996), + [anon_sym_and2] = ACTIONS(996), + [anon_sym_xor2] = ACTIONS(996), + [anon_sym_or2] = ACTIONS(996), + [anon_sym_not_DASHin2] = ACTIONS(996), + [anon_sym_starts_DASHwith2] = ACTIONS(996), + [anon_sym_ends_DASHwith2] = ACTIONS(996), + [anon_sym_EQ_EQ2] = ACTIONS(996), + [anon_sym_BANG_EQ2] = ACTIONS(996), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(996), + [anon_sym_GT_EQ2] = ACTIONS(996), + [anon_sym_EQ_TILDE2] = ACTIONS(996), + [anon_sym_BANG_TILDE2] = ACTIONS(996), + [anon_sym_STAR_STAR2] = ACTIONS(996), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(996), + [anon_sym_SLASH_SLASH2] = ACTIONS(996), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(996), + [anon_sym_bit_DASHshr2] = ACTIONS(996), + [anon_sym_bit_DASHand2] = ACTIONS(996), + [anon_sym_bit_DASHxor2] = ACTIONS(996), + [anon_sym_bit_DASHor2] = ACTIONS(996), + [anon_sym_DOT_DOT2] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), + [anon_sym_DOT_DOT_LT2] = ACTIONS(996), + [aux_sym_record_entry_token1] = ACTIONS(996), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(996), + [anon_sym_out_GT_GT] = ACTIONS(996), + [anon_sym_e_GT_GT] = ACTIONS(996), + [anon_sym_o_GT_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [anon_sym_POUND] = ACTIONS(247), + }, + [1389] = { + [sym_comment] = STATE(1389), + [sym__newline] = ACTIONS(1587), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_err_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_GT_PIPE] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_RPAREN] = ACTIONS(1587), + [anon_sym_DOLLAR] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1585), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), + [anon_sym_DOT_DOT_LT] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [anon_sym_null] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(1587), + [anon_sym_false] = ACTIONS(1587), + [aux_sym__val_number_decimal_token1] = ACTIONS(1585), + [aux_sym__val_number_decimal_token2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1587), + [aux_sym__val_number_token2] = ACTIONS(1587), + [aux_sym__val_number_token3] = ACTIONS(1587), + [aux_sym__val_number_token4] = ACTIONS(1587), + [aux_sym__val_number_token5] = ACTIONS(1587), + [aux_sym__val_number_token6] = ACTIONS(1587), + [anon_sym_0b] = ACTIONS(1585), + [sym_filesize_unit] = ACTIONS(1587), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_0o] = ACTIONS(1585), + [anon_sym_0x] = ACTIONS(1585), + [sym_val_date] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [sym__str_single_quotes] = ACTIONS(1587), + [sym__str_back_ticks] = ACTIONS(1587), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1587), + [anon_sym_out_GT_GT] = ACTIONS(1587), + [anon_sym_e_GT_GT] = ACTIONS(1587), + [anon_sym_o_GT_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [aux_sym_unquoted_token1] = ACTIONS(1585), + [aux_sym_unquoted_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1587), + }, + [1390] = { + [sym_comment] = STATE(1390), + [sym__newline] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_err_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_GT_PIPE] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_RPAREN] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_DOT_DOT] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1767), + [anon_sym_DOT_DOT2] = ACTIONS(1765), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1765), + [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(4598), + [anon_sym_null] = ACTIONS(1767), + [anon_sym_true] = ACTIONS(1767), + [anon_sym_false] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1767), + [aux_sym__val_number_token5] = ACTIONS(1767), + [aux_sym__val_number_token6] = ACTIONS(1767), + [anon_sym_0b] = ACTIONS(1765), + [anon_sym_0o] = ACTIONS(1765), + [anon_sym_0x] = ACTIONS(1765), + [sym_val_date] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), + [anon_sym_err_GT] = ACTIONS(1765), + [anon_sym_out_GT] = ACTIONS(1765), + [anon_sym_e_GT] = ACTIONS(1765), + [anon_sym_o_GT] = ACTIONS(1765), + [anon_sym_err_PLUSout_GT] = ACTIONS(1765), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), + [anon_sym_o_PLUSe_GT] = ACTIONS(1765), + [anon_sym_e_PLUSo_GT] = ACTIONS(1765), + [anon_sym_err_GT_GT] = ACTIONS(1767), + [anon_sym_out_GT_GT] = ACTIONS(1767), + [anon_sym_e_GT_GT] = ACTIONS(1767), + [anon_sym_o_GT_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), + [aux_sym_unquoted_token1] = ACTIONS(1765), + [aux_sym_unquoted_token2] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1767), + }, [1391] = { [sym_comment] = STATE(1391), - [sym__newline] = ACTIONS(1721), - [anon_sym_SEMI] = ACTIONS(1721), - [anon_sym_PIPE] = ACTIONS(1721), - [anon_sym_err_GT_PIPE] = ACTIONS(1721), - [anon_sym_out_GT_PIPE] = ACTIONS(1721), - [anon_sym_e_GT_PIPE] = ACTIONS(1721), - [anon_sym_o_GT_PIPE] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1721), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_RPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_DASH_DASH] = ACTIONS(1721), - [anon_sym_DASH2] = ACTIONS(1709), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1709), - [anon_sym_DOT_DOT2] = ACTIONS(4708), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1709), - [anon_sym_DOT_DOT_LT] = ACTIONS(1709), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4710), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4710), - [anon_sym_null] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1709), - [aux_sym__val_number_decimal_token2] = ACTIONS(1721), - [aux_sym__val_number_decimal_token3] = ACTIONS(1721), - [aux_sym__val_number_decimal_token4] = ACTIONS(1721), - [aux_sym__val_number_token1] = ACTIONS(1721), - [aux_sym__val_number_token2] = ACTIONS(1721), - [aux_sym__val_number_token3] = ACTIONS(1721), - [aux_sym__val_number_token4] = ACTIONS(1721), - [aux_sym__val_number_token5] = ACTIONS(1721), - [aux_sym__val_number_token6] = ACTIONS(1721), - [anon_sym_0b] = ACTIONS(1709), - [sym_filesize_unit] = ACTIONS(4712), - [sym_duration_unit] = ACTIONS(4714), - [anon_sym_0o] = ACTIONS(1709), - [anon_sym_0x] = ACTIONS(1709), - [sym_val_date] = ACTIONS(1721), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym__str_single_quotes] = ACTIONS(1721), - [sym__str_back_ticks] = ACTIONS(1721), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1721), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1721), - [anon_sym_err_GT] = ACTIONS(1709), - [anon_sym_out_GT] = ACTIONS(1709), - [anon_sym_e_GT] = ACTIONS(1709), - [anon_sym_o_GT] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT] = ACTIONS(1709), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), - [anon_sym_o_PLUSe_GT] = ACTIONS(1709), - [anon_sym_e_PLUSo_GT] = ACTIONS(1709), - [anon_sym_err_GT_GT] = ACTIONS(1721), - [anon_sym_out_GT_GT] = ACTIONS(1721), - [anon_sym_e_GT_GT] = ACTIONS(1721), - [anon_sym_o_GT_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1721), - [aux_sym_unquoted_token1] = ACTIONS(1709), - [aux_sym_unquoted_token2] = ACTIONS(4716), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1721), + [anon_sym_STAR_STAR] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_SLASH] = ACTIONS(3197), + [anon_sym_mod] = ACTIONS(3195), + [anon_sym_SLASH_SLASH] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_bit_DASHshl] = ACTIONS(3195), + [anon_sym_bit_DASHshr] = ACTIONS(3195), + [anon_sym_EQ_TILDE] = ACTIONS(3195), + [anon_sym_BANG_TILDE] = ACTIONS(3195), + [anon_sym_bit_DASHand] = ACTIONS(3195), + [anon_sym_bit_DASHxor] = ACTIONS(3195), + [anon_sym_bit_DASHor] = ACTIONS(3195), + [anon_sym_and] = ACTIONS(3195), + [anon_sym_xor] = ACTIONS(3195), + [anon_sym_or] = ACTIONS(3195), + [anon_sym_in] = ACTIONS(3195), + [anon_sym_not_DASHin] = ACTIONS(3195), + [anon_sym_starts_DASHwith] = ACTIONS(3195), + [anon_sym_ends_DASHwith] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT] = ACTIONS(3197), + [anon_sym_GT_EQ] = ACTIONS(3195), + [aux_sym_cmd_identifier_token41] = ACTIONS(3199), + [sym__newline] = ACTIONS(2246), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2246), + [anon_sym_err_GT_PIPE] = ACTIONS(2246), + [anon_sym_out_GT_PIPE] = ACTIONS(2246), + [anon_sym_e_GT_PIPE] = ACTIONS(2246), + [anon_sym_o_GT_PIPE] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2246), + [anon_sym_GT2] = ACTIONS(2246), + [anon_sym_DASH2] = ACTIONS(2246), + [anon_sym_in2] = ACTIONS(2246), + [anon_sym_STAR2] = ACTIONS(2246), + [anon_sym_and2] = ACTIONS(2246), + [anon_sym_xor2] = ACTIONS(2246), + [anon_sym_or2] = ACTIONS(2246), + [anon_sym_not_DASHin2] = ACTIONS(2246), + [anon_sym_starts_DASHwith2] = ACTIONS(2246), + [anon_sym_ends_DASHwith2] = ACTIONS(2246), + [anon_sym_EQ_EQ2] = ACTIONS(2246), + [anon_sym_BANG_EQ2] = ACTIONS(2246), + [anon_sym_LT2] = ACTIONS(2246), + [anon_sym_LT_EQ2] = ACTIONS(2246), + [anon_sym_GT_EQ2] = ACTIONS(2246), + [anon_sym_EQ_TILDE2] = ACTIONS(2246), + [anon_sym_BANG_TILDE2] = ACTIONS(2246), + [anon_sym_STAR_STAR2] = ACTIONS(2246), + [anon_sym_PLUS_PLUS2] = ACTIONS(2246), + [anon_sym_SLASH2] = ACTIONS(2246), + [anon_sym_mod2] = ACTIONS(2246), + [anon_sym_SLASH_SLASH2] = ACTIONS(2246), + [anon_sym_PLUS2] = ACTIONS(2246), + [anon_sym_bit_DASHshl2] = ACTIONS(2246), + [anon_sym_bit_DASHshr2] = ACTIONS(2246), + [anon_sym_bit_DASHand2] = ACTIONS(2246), + [anon_sym_bit_DASHxor2] = ACTIONS(2246), + [anon_sym_bit_DASHor2] = ACTIONS(2246), + [anon_sym_POUND] = ACTIONS(3), }, [1392] = { [sym_comment] = STATE(1392), + [ts_builtin_sym_end] = ACTIONS(1767), + [sym__newline] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_err_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_GT_PIPE] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_DOLLAR] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_DOT_DOT] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1767), + [anon_sym_DOT_DOT2] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(4684), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1765), + [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(4686), + [anon_sym_null] = ACTIONS(1767), + [anon_sym_true] = ACTIONS(1767), + [anon_sym_false] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1767), + [aux_sym__val_number_token5] = ACTIONS(1767), + [aux_sym__val_number_token6] = ACTIONS(1767), + [anon_sym_0b] = ACTIONS(1765), + [anon_sym_0o] = ACTIONS(1765), + [anon_sym_0x] = ACTIONS(1765), + [sym_val_date] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), + [anon_sym_err_GT] = ACTIONS(1765), + [anon_sym_out_GT] = ACTIONS(1765), + [anon_sym_e_GT] = ACTIONS(1765), + [anon_sym_o_GT] = ACTIONS(1765), + [anon_sym_err_PLUSout_GT] = ACTIONS(1765), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), + [anon_sym_o_PLUSe_GT] = ACTIONS(1765), + [anon_sym_e_PLUSo_GT] = ACTIONS(1765), + [anon_sym_err_GT_GT] = ACTIONS(1767), + [anon_sym_out_GT_GT] = ACTIONS(1767), + [anon_sym_e_GT_GT] = ACTIONS(1767), + [anon_sym_o_GT_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), + [aux_sym_unquoted_token1] = ACTIONS(1765), + [aux_sym_unquoted_token2] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1767), + }, + [1393] = { + [sym_comment] = STATE(1393), [anon_sym_EQ] = ACTIONS(978), [anon_sym_PLUS_EQ] = ACTIONS(980), [anon_sym_DASH_EQ] = ACTIONS(980), [anon_sym_STAR_EQ] = ACTIONS(980), [anon_sym_SLASH_EQ] = ACTIONS(980), [anon_sym_PLUS_PLUS_EQ] = ACTIONS(980), - [sym__newline] = ACTIONS(978), + [sym__newline] = ACTIONS(980), [anon_sym_SEMI] = ACTIONS(980), [anon_sym_PIPE] = ACTIONS(980), [anon_sym_err_GT_PIPE] = ACTIONS(980), @@ -208464,12 +208839,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), + [anon_sym_RPAREN] = ACTIONS(980), [anon_sym_GT2] = ACTIONS(978), [anon_sym_DASH2] = ACTIONS(978), [anon_sym_in2] = ACTIONS(980), [anon_sym_RBRACE] = ACTIONS(980), [anon_sym_STAR2] = ACTIONS(978), - [anon_sym_QMARK2] = ACTIONS(4718), + [anon_sym_QMARK2] = ACTIONS(4688), [anon_sym_and2] = ACTIONS(980), [anon_sym_xor2] = ACTIONS(980), [anon_sym_or2] = ACTIONS(980), @@ -208498,7 +208874,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(978), [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), [anon_sym_DOT_DOT_LT2] = ACTIONS(980), - [aux_sym_record_entry_token1] = ACTIONS(980), [anon_sym_err_GT] = ACTIONS(978), [anon_sym_out_GT] = ACTIONS(978), [anon_sym_e_GT] = ACTIONS(978), @@ -208517,15 +208892,303 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), [anon_sym_POUND] = ACTIONS(247), }, - [1393] = { - [sym_comment] = STATE(1393), + [1394] = { + [sym_comment] = STATE(1394), + [anon_sym_EQ] = ACTIONS(998), + [anon_sym_PLUS_EQ] = ACTIONS(1000), + [anon_sym_DASH_EQ] = ACTIONS(1000), + [anon_sym_STAR_EQ] = ACTIONS(1000), + [anon_sym_SLASH_EQ] = ACTIONS(1000), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1000), + [sym__newline] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_err_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_GT_PIPE] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), + [anon_sym_GT2] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(998), + [anon_sym_in2] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_STAR2] = ACTIONS(998), + [anon_sym_QMARK2] = ACTIONS(1000), + [anon_sym_and2] = ACTIONS(1000), + [anon_sym_xor2] = ACTIONS(1000), + [anon_sym_or2] = ACTIONS(1000), + [anon_sym_not_DASHin2] = ACTIONS(1000), + [anon_sym_starts_DASHwith2] = ACTIONS(1000), + [anon_sym_ends_DASHwith2] = ACTIONS(1000), + [anon_sym_EQ_EQ2] = ACTIONS(1000), + [anon_sym_BANG_EQ2] = ACTIONS(1000), + [anon_sym_LT2] = ACTIONS(998), + [anon_sym_LT_EQ2] = ACTIONS(1000), + [anon_sym_GT_EQ2] = ACTIONS(1000), + [anon_sym_EQ_TILDE2] = ACTIONS(1000), + [anon_sym_BANG_TILDE2] = ACTIONS(1000), + [anon_sym_STAR_STAR2] = ACTIONS(1000), + [anon_sym_PLUS_PLUS2] = ACTIONS(998), + [anon_sym_SLASH2] = ACTIONS(998), + [anon_sym_mod2] = ACTIONS(1000), + [anon_sym_SLASH_SLASH2] = ACTIONS(1000), + [anon_sym_PLUS2] = ACTIONS(998), + [anon_sym_bit_DASHshl2] = ACTIONS(1000), + [anon_sym_bit_DASHshr2] = ACTIONS(1000), + [anon_sym_bit_DASHand2] = ACTIONS(1000), + [anon_sym_bit_DASHxor2] = ACTIONS(1000), + [anon_sym_bit_DASHor2] = ACTIONS(1000), + [anon_sym_DOT_DOT2] = ACTIONS(998), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1000), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1000), + [aux_sym_record_entry_token1] = ACTIONS(1000), + [anon_sym_err_GT] = ACTIONS(998), + [anon_sym_out_GT] = ACTIONS(998), + [anon_sym_e_GT] = ACTIONS(998), + [anon_sym_o_GT] = ACTIONS(998), + [anon_sym_err_PLUSout_GT] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT] = ACTIONS(998), + [anon_sym_o_PLUSe_GT] = ACTIONS(998), + [anon_sym_e_PLUSo_GT] = ACTIONS(998), + [anon_sym_err_GT_GT] = ACTIONS(1000), + [anon_sym_out_GT_GT] = ACTIONS(1000), + [anon_sym_e_GT_GT] = ACTIONS(1000), + [anon_sym_o_GT_GT] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(247), + }, + [1395] = { + [sym__match_pattern] = STATE(7546), + [sym__match_pattern_expression] = STATE(7095), + [sym__match_pattern_value] = STATE(7109), + [sym__match_pattern_list] = STATE(7114), + [sym__match_pattern_record] = STATE(7148), + [sym_expr_parenthesized] = STATE(5819), + [sym_val_range] = STATE(7109), + [sym__val_range] = STATE(7906), + [sym_val_nothing] = STATE(7164), + [sym_val_bool] = STATE(7203), + [sym_val_variable] = STATE(5826), + [sym_val_number] = STATE(7164), + [sym__val_number_decimal] = STATE(5605), + [sym__val_number] = STATE(1729), + [sym_val_duration] = STATE(7164), + [sym_val_filesize] = STATE(7164), + [sym_val_binary] = STATE(7164), + [sym_val_string] = STATE(7164), + [sym__raw_str] = STATE(1771), + [sym__str_double_quotes] = STATE(1771), + [sym_val_table] = STATE(7164), + [sym_unquoted] = STATE(7176), + [sym__unquoted_anonymous_prefix] = STATE(7913), + [sym_comment] = STATE(1395), + [anon_sym_LBRACK] = ACTIONS(3589), + [anon_sym_LPAREN] = ACTIONS(3591), + [anon_sym_DOLLAR] = ACTIONS(3593), + [anon_sym_LBRACE] = ACTIONS(3595), + [anon_sym_DOT_DOT] = ACTIONS(4690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4692), + [anon_sym_DOT_DOT_LT] = ACTIONS(4692), + [anon_sym_null] = ACTIONS(4694), + [anon_sym_true] = ACTIONS(4696), + [anon_sym_false] = ACTIONS(4696), + [aux_sym__val_number_decimal_token1] = ACTIONS(4698), + [aux_sym__val_number_decimal_token2] = ACTIONS(4700), + [aux_sym__val_number_decimal_token3] = ACTIONS(4702), + [aux_sym__val_number_decimal_token4] = ACTIONS(4704), + [aux_sym__val_number_token1] = ACTIONS(427), + [aux_sym__val_number_token2] = ACTIONS(427), + [aux_sym__val_number_token3] = ACTIONS(427), + [aux_sym__val_number_token4] = ACTIONS(4706), + [aux_sym__val_number_token5] = ACTIONS(4706), + [aux_sym__val_number_token6] = ACTIONS(4706), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(4708), + [anon_sym_DQUOTE] = ACTIONS(431), + [sym__str_single_quotes] = ACTIONS(433), + [sym__str_back_ticks] = ACTIONS(433), + [anon_sym_err_GT] = ACTIONS(2671), + [anon_sym_out_GT] = ACTIONS(2671), + [anon_sym_e_GT] = ACTIONS(2671), + [anon_sym_o_GT] = ACTIONS(2671), + [anon_sym_err_PLUSout_GT] = ACTIONS(2671), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2671), + [anon_sym_o_PLUSe_GT] = ACTIONS(2671), + [anon_sym_e_PLUSo_GT] = ACTIONS(2671), + [anon_sym_err_GT_GT] = ACTIONS(2673), + [anon_sym_out_GT_GT] = ACTIONS(2673), + [anon_sym_e_GT_GT] = ACTIONS(2673), + [anon_sym_o_GT_GT] = ACTIONS(2673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2673), + [aux_sym_unquoted_token1] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(435), + }, + [1396] = { + [sym_comment] = STATE(1396), + [anon_sym_EQ] = ACTIONS(1002), + [anon_sym_PLUS_EQ] = ACTIONS(1004), + [anon_sym_DASH_EQ] = ACTIONS(1004), + [anon_sym_STAR_EQ] = ACTIONS(1004), + [anon_sym_SLASH_EQ] = ACTIONS(1004), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1004), + [sym__newline] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_err_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_GT_PIPE] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_in2] = ACTIONS(1004), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_QMARK2] = ACTIONS(1004), + [anon_sym_and2] = ACTIONS(1004), + [anon_sym_xor2] = ACTIONS(1004), + [anon_sym_or2] = ACTIONS(1004), + [anon_sym_not_DASHin2] = ACTIONS(1004), + [anon_sym_starts_DASHwith2] = ACTIONS(1004), + [anon_sym_ends_DASHwith2] = ACTIONS(1004), + [anon_sym_EQ_EQ2] = ACTIONS(1004), + [anon_sym_BANG_EQ2] = ACTIONS(1004), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1004), + [anon_sym_GT_EQ2] = ACTIONS(1004), + [anon_sym_EQ_TILDE2] = ACTIONS(1004), + [anon_sym_BANG_TILDE2] = ACTIONS(1004), + [anon_sym_STAR_STAR2] = ACTIONS(1004), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1004), + [anon_sym_SLASH_SLASH2] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1004), + [anon_sym_bit_DASHshr2] = ACTIONS(1004), + [anon_sym_bit_DASHand2] = ACTIONS(1004), + [anon_sym_bit_DASHxor2] = ACTIONS(1004), + [anon_sym_bit_DASHor2] = ACTIONS(1004), + [anon_sym_DOT_DOT2] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), + [aux_sym_record_entry_token1] = ACTIONS(1004), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1004), + [anon_sym_out_GT_GT] = ACTIONS(1004), + [anon_sym_e_GT_GT] = ACTIONS(1004), + [anon_sym_o_GT_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), + [anon_sym_POUND] = ACTIONS(247), + }, + [1397] = { + [sym_comment] = STATE(1397), + [sym__newline] = ACTIONS(1787), + [anon_sym_SEMI] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_err_GT_PIPE] = ACTIONS(1787), + [anon_sym_out_GT_PIPE] = ACTIONS(1787), + [anon_sym_e_GT_PIPE] = ACTIONS(1787), + [anon_sym_o_GT_PIPE] = ACTIONS(1787), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_RPAREN] = ACTIONS(1787), + [anon_sym_DOLLAR] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1787), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_RBRACE] = ACTIONS(1787), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_DOT_DOT2] = ACTIONS(1785), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), + [anon_sym_DOT_DOT_LT] = ACTIONS(1785), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), + [aux_sym__immediate_decimal_token2] = ACTIONS(4710), + [anon_sym_null] = ACTIONS(1787), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [aux_sym__val_number_decimal_token1] = ACTIONS(1785), + [aux_sym__val_number_decimal_token2] = ACTIONS(1787), + [aux_sym__val_number_decimal_token3] = ACTIONS(1787), + [aux_sym__val_number_decimal_token4] = ACTIONS(1787), + [aux_sym__val_number_token1] = ACTIONS(1787), + [aux_sym__val_number_token2] = ACTIONS(1787), + [aux_sym__val_number_token3] = ACTIONS(1787), + [aux_sym__val_number_token4] = ACTIONS(1787), + [aux_sym__val_number_token5] = ACTIONS(1787), + [aux_sym__val_number_token6] = ACTIONS(1787), + [anon_sym_0b] = ACTIONS(1785), + [anon_sym_0o] = ACTIONS(1785), + [anon_sym_0x] = ACTIONS(1785), + [sym_val_date] = ACTIONS(1787), + [anon_sym_DQUOTE] = ACTIONS(1787), + [sym__str_single_quotes] = ACTIONS(1787), + [sym__str_back_ticks] = ACTIONS(1787), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), + [anon_sym_err_GT] = ACTIONS(1785), + [anon_sym_out_GT] = ACTIONS(1785), + [anon_sym_e_GT] = ACTIONS(1785), + [anon_sym_o_GT] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT] = ACTIONS(1785), + [anon_sym_err_GT_GT] = ACTIONS(1787), + [anon_sym_out_GT_GT] = ACTIONS(1787), + [anon_sym_e_GT_GT] = ACTIONS(1787), + [anon_sym_o_GT_GT] = ACTIONS(1787), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), + [aux_sym_unquoted_token1] = ACTIONS(1785), + [aux_sym_unquoted_token2] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1787), + }, + [1398] = { + [sym_comment] = STATE(1398), [anon_sym_EQ] = ACTIONS(984), [anon_sym_PLUS_EQ] = ACTIONS(986), [anon_sym_DASH_EQ] = ACTIONS(986), [anon_sym_STAR_EQ] = ACTIONS(986), [anon_sym_SLASH_EQ] = ACTIONS(986), [anon_sym_PLUS_PLUS_EQ] = ACTIONS(986), - [sym__newline] = ACTIONS(984), + [sym__newline] = ACTIONS(986), [anon_sym_SEMI] = ACTIONS(986), [anon_sym_PIPE] = ACTIONS(986), [anon_sym_err_GT_PIPE] = ACTIONS(986), @@ -208536,12 +209199,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), + [anon_sym_RPAREN] = ACTIONS(986), [anon_sym_GT2] = ACTIONS(984), [anon_sym_DASH2] = ACTIONS(984), [anon_sym_in2] = ACTIONS(986), [anon_sym_RBRACE] = ACTIONS(986), [anon_sym_STAR2] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(4720), + [anon_sym_QMARK2] = ACTIONS(4712), [anon_sym_and2] = ACTIONS(986), [anon_sym_xor2] = ACTIONS(986), [anon_sym_or2] = ACTIONS(986), @@ -208570,7 +209234,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(984), [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), [anon_sym_DOT_DOT_LT2] = ACTIONS(986), - [aux_sym_record_entry_token1] = ACTIONS(986), [anon_sym_err_GT] = ACTIONS(984), [anon_sym_out_GT] = ACTIONS(984), [anon_sym_e_GT] = ACTIONS(984), @@ -208589,226 +209252,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), [anon_sym_POUND] = ACTIONS(247), }, - [1394] = { - [sym_comment] = STATE(1394), - [sym__newline] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_err_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_GT_PIPE] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_LPAREN] = ACTIONS(1675), - [anon_sym_RPAREN] = ACTIONS(1675), - [anon_sym_DOLLAR] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1675), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1675), - [anon_sym_DOT_DOT] = ACTIONS(1673), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1673), - [anon_sym_DOT_DOT_LT] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [anon_sym_null] = ACTIONS(1675), - [anon_sym_true] = ACTIONS(1675), - [anon_sym_false] = ACTIONS(1675), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1675), - [aux_sym__val_number_decimal_token4] = ACTIONS(1675), - [aux_sym__val_number_token1] = ACTIONS(1675), - [aux_sym__val_number_token2] = ACTIONS(1675), - [aux_sym__val_number_token3] = ACTIONS(1675), - [aux_sym__val_number_token4] = ACTIONS(1675), - [aux_sym__val_number_token5] = ACTIONS(1675), - [aux_sym__val_number_token6] = ACTIONS(1675), - [anon_sym_0b] = ACTIONS(1673), - [sym_filesize_unit] = ACTIONS(1675), - [sym_duration_unit] = ACTIONS(1675), - [anon_sym_0o] = ACTIONS(1673), - [anon_sym_0x] = ACTIONS(1673), - [sym_val_date] = ACTIONS(1675), - [anon_sym_DQUOTE] = ACTIONS(1675), - [sym__str_single_quotes] = ACTIONS(1675), - [sym__str_back_ticks] = ACTIONS(1675), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1675), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1675), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1675), - [anon_sym_out_GT_GT] = ACTIONS(1675), - [anon_sym_e_GT_GT] = ACTIONS(1675), - [anon_sym_o_GT_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), - [aux_sym_unquoted_token1] = ACTIONS(1673), - [aux_sym_unquoted_token2] = ACTIONS(1673), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1675), - }, - [1395] = { - [sym_comment] = STATE(1395), - [ts_builtin_sym_end] = ACTIONS(1675), - [sym__newline] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_err_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_GT_PIPE] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_DOLLAR] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1675), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1675), - [anon_sym_DOT_DOT] = ACTIONS(1673), - [anon_sym_LPAREN2] = ACTIONS(1675), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1673), - [anon_sym_DOT_DOT_LT] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [anon_sym_null] = ACTIONS(1675), - [anon_sym_true] = ACTIONS(1675), - [anon_sym_false] = ACTIONS(1675), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1675), - [aux_sym__val_number_decimal_token4] = ACTIONS(1675), - [aux_sym__val_number_token1] = ACTIONS(1675), - [aux_sym__val_number_token2] = ACTIONS(1675), - [aux_sym__val_number_token3] = ACTIONS(1675), - [aux_sym__val_number_token4] = ACTIONS(1675), - [aux_sym__val_number_token5] = ACTIONS(1675), - [aux_sym__val_number_token6] = ACTIONS(1675), - [anon_sym_0b] = ACTIONS(1673), - [sym_filesize_unit] = ACTIONS(1675), - [sym_duration_unit] = ACTIONS(1675), - [anon_sym_0o] = ACTIONS(1673), - [anon_sym_0x] = ACTIONS(1673), - [sym_val_date] = ACTIONS(1675), - [anon_sym_DQUOTE] = ACTIONS(1675), - [sym__str_single_quotes] = ACTIONS(1675), - [sym__str_back_ticks] = ACTIONS(1675), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1675), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1675), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1675), - [anon_sym_out_GT_GT] = ACTIONS(1675), - [anon_sym_e_GT_GT] = ACTIONS(1675), - [anon_sym_o_GT_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), - [aux_sym_unquoted_token1] = ACTIONS(1673), - [aux_sym_unquoted_token2] = ACTIONS(1673), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1675), - }, - [1396] = { - [sym_cell_path] = STATE(1617), - [sym_path] = STATE(1510), - [sym_comment] = STATE(1396), - [aux_sym_cell_path_repeat1] = STATE(1444), - [ts_builtin_sym_end] = ACTIONS(1771), - [sym__newline] = ACTIONS(1771), - [anon_sym_SEMI] = ACTIONS(1771), - [anon_sym_PIPE] = ACTIONS(1771), - [anon_sym_err_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_GT_PIPE] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1771), - [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1771), - [anon_sym_DASH2] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1769), - [anon_sym_DOT_DOT2] = ACTIONS(1769), - [anon_sym_DOT] = ACTIONS(4682), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1769), - [anon_sym_DOT_DOT_LT] = ACTIONS(1769), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), - [anon_sym_null] = ACTIONS(1771), - [anon_sym_true] = ACTIONS(1771), - [anon_sym_false] = ACTIONS(1771), - [aux_sym__val_number_decimal_token1] = ACTIONS(1769), - [aux_sym__val_number_decimal_token2] = ACTIONS(1771), - [aux_sym__val_number_decimal_token3] = ACTIONS(1771), - [aux_sym__val_number_decimal_token4] = ACTIONS(1771), - [aux_sym__val_number_token1] = ACTIONS(1771), - [aux_sym__val_number_token2] = ACTIONS(1771), - [aux_sym__val_number_token3] = ACTIONS(1771), - [aux_sym__val_number_token4] = ACTIONS(1771), - [aux_sym__val_number_token5] = ACTIONS(1771), - [aux_sym__val_number_token6] = ACTIONS(1771), - [anon_sym_0b] = ACTIONS(1769), - [anon_sym_0o] = ACTIONS(1769), - [anon_sym_0x] = ACTIONS(1769), - [sym_val_date] = ACTIONS(1771), - [anon_sym_DQUOTE] = ACTIONS(1771), - [sym__str_single_quotes] = ACTIONS(1771), - [sym__str_back_ticks] = ACTIONS(1771), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1771), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1771), - [anon_sym_err_GT] = ACTIONS(1769), - [anon_sym_out_GT] = ACTIONS(1769), - [anon_sym_e_GT] = ACTIONS(1769), - [anon_sym_o_GT] = ACTIONS(1769), - [anon_sym_err_PLUSout_GT] = ACTIONS(1769), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), - [anon_sym_o_PLUSe_GT] = ACTIONS(1769), - [anon_sym_e_PLUSo_GT] = ACTIONS(1769), - [anon_sym_err_GT_GT] = ACTIONS(1771), - [anon_sym_out_GT_GT] = ACTIONS(1771), - [anon_sym_e_GT_GT] = ACTIONS(1771), - [anon_sym_o_GT_GT] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), - [aux_sym_unquoted_token1] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1771), + [1399] = { + [sym_comment] = STATE(1399), + [ts_builtin_sym_end] = ACTIONS(1587), + [sym__newline] = ACTIONS(1587), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_err_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_GT_PIPE] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_DOLLAR] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1585), + [anon_sym_LPAREN2] = ACTIONS(1587), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), + [anon_sym_DOT_DOT_LT] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [anon_sym_null] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(1587), + [anon_sym_false] = ACTIONS(1587), + [aux_sym__val_number_decimal_token1] = ACTIONS(1585), + [aux_sym__val_number_decimal_token2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1587), + [aux_sym__val_number_token2] = ACTIONS(1587), + [aux_sym__val_number_token3] = ACTIONS(1587), + [aux_sym__val_number_token4] = ACTIONS(1587), + [aux_sym__val_number_token5] = ACTIONS(1587), + [aux_sym__val_number_token6] = ACTIONS(1587), + [anon_sym_0b] = ACTIONS(1585), + [sym_filesize_unit] = ACTIONS(1587), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_0o] = ACTIONS(1585), + [anon_sym_0x] = ACTIONS(1585), + [sym_val_date] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [sym__str_single_quotes] = ACTIONS(1587), + [sym__str_back_ticks] = ACTIONS(1587), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1587), + [anon_sym_out_GT_GT] = ACTIONS(1587), + [anon_sym_e_GT_GT] = ACTIONS(1587), + [anon_sym_o_GT_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [aux_sym_unquoted_token1] = ACTIONS(1585), + [aux_sym_unquoted_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1587), }, - [1397] = { - [sym_path] = STATE(1460), - [sym_comment] = STATE(1397), - [aux_sym_cell_path_repeat1] = STATE(1399), + [1400] = { + [sym_path] = STATE(1449), + [sym_comment] = STATE(1400), + [aux_sym_cell_path_repeat1] = STATE(1402), + [ts_builtin_sym_end] = ACTIONS(969), + [anon_sym_EQ] = ACTIONS(967), + [anon_sym_PLUS_EQ] = ACTIONS(969), + [anon_sym_DASH_EQ] = ACTIONS(969), + [anon_sym_STAR_EQ] = ACTIONS(969), + [anon_sym_SLASH_EQ] = ACTIONS(969), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(969), [sym__newline] = ACTIONS(969), [anon_sym_SEMI] = ACTIONS(969), [anon_sym_PIPE] = ACTIONS(969), @@ -208820,43 +209346,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(969), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(969), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_RPAREN] = ACTIONS(969), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_DASH_DASH] = ACTIONS(969), + [anon_sym_GT2] = ACTIONS(967), [anon_sym_DASH2] = ACTIONS(967), - [anon_sym_LBRACE] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_DOT_DOT] = ACTIONS(967), + [anon_sym_in2] = ACTIONS(969), + [anon_sym_STAR2] = ACTIONS(967), + [anon_sym_and2] = ACTIONS(969), + [anon_sym_xor2] = ACTIONS(969), + [anon_sym_or2] = ACTIONS(969), + [anon_sym_not_DASHin2] = ACTIONS(969), + [anon_sym_starts_DASHwith2] = ACTIONS(969), + [anon_sym_ends_DASHwith2] = ACTIONS(969), + [anon_sym_EQ_EQ2] = ACTIONS(969), + [anon_sym_BANG_EQ2] = ACTIONS(969), + [anon_sym_LT2] = ACTIONS(967), + [anon_sym_LT_EQ2] = ACTIONS(969), + [anon_sym_GT_EQ2] = ACTIONS(969), + [anon_sym_EQ_TILDE2] = ACTIONS(969), + [anon_sym_BANG_TILDE2] = ACTIONS(969), + [anon_sym_STAR_STAR2] = ACTIONS(969), + [anon_sym_PLUS_PLUS2] = ACTIONS(967), + [anon_sym_SLASH2] = ACTIONS(967), + [anon_sym_mod2] = ACTIONS(969), + [anon_sym_SLASH_SLASH2] = ACTIONS(969), + [anon_sym_PLUS2] = ACTIONS(967), + [anon_sym_bit_DASHshl2] = ACTIONS(969), + [anon_sym_bit_DASHshr2] = ACTIONS(969), + [anon_sym_bit_DASHand2] = ACTIONS(969), + [anon_sym_bit_DASHxor2] = ACTIONS(969), + [anon_sym_bit_DASHor2] = ACTIONS(969), [anon_sym_DOT_DOT2] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(4557), - [anon_sym_DOT_DOT_EQ] = ACTIONS(967), - [anon_sym_DOT_DOT_LT] = ACTIONS(967), + [anon_sym_DOT] = ACTIONS(4590), [anon_sym_DOT_DOT_EQ2] = ACTIONS(969), [anon_sym_DOT_DOT_LT2] = ACTIONS(969), - [anon_sym_null] = ACTIONS(969), - [anon_sym_true] = ACTIONS(969), - [anon_sym_false] = ACTIONS(969), - [aux_sym__val_number_decimal_token1] = ACTIONS(967), - [aux_sym__val_number_decimal_token2] = ACTIONS(969), - [aux_sym__val_number_decimal_token3] = ACTIONS(969), - [aux_sym__val_number_decimal_token4] = ACTIONS(969), - [aux_sym__val_number_token1] = ACTIONS(969), - [aux_sym__val_number_token2] = ACTIONS(969), - [aux_sym__val_number_token3] = ACTIONS(969), - [aux_sym__val_number_token4] = ACTIONS(969), - [aux_sym__val_number_token5] = ACTIONS(969), - [aux_sym__val_number_token6] = ACTIONS(969), - [anon_sym_0b] = ACTIONS(967), - [anon_sym_0o] = ACTIONS(967), - [anon_sym_0x] = ACTIONS(967), - [sym_val_date] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(969), - [sym__str_single_quotes] = ACTIONS(969), - [sym__str_back_ticks] = ACTIONS(969), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(969), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(969), [anon_sym_err_GT] = ACTIONS(967), [anon_sym_out_GT] = ACTIONS(967), [anon_sym_e_GT] = ACTIONS(967), @@ -208873,86 +209394,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(969), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(969), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), - [aux_sym_unquoted_token1] = ACTIONS(967), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(969), }, - [1398] = { - [sym_comment] = STATE(1398), - [ts_builtin_sym_end] = ACTIONS(1609), - [sym__newline] = ACTIONS(1609), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_PIPE] = ACTIONS(1609), - [anon_sym_err_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_GT_PIPE] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1609), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_DOLLAR] = ACTIONS(1607), - [anon_sym_DASH_DASH] = ACTIONS(1609), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_LBRACE] = ACTIONS(1609), - [anon_sym_DOT_DOT] = ACTIONS(1607), - [anon_sym_LPAREN2] = ACTIONS(1609), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), - [anon_sym_DOT_DOT_LT] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [anon_sym_null] = ACTIONS(1609), - [anon_sym_true] = ACTIONS(1609), - [anon_sym_false] = ACTIONS(1609), - [aux_sym__val_number_decimal_token1] = ACTIONS(1607), - [aux_sym__val_number_decimal_token2] = ACTIONS(1609), - [aux_sym__val_number_decimal_token3] = ACTIONS(1609), - [aux_sym__val_number_decimal_token4] = ACTIONS(1609), - [aux_sym__val_number_token1] = ACTIONS(1609), - [aux_sym__val_number_token2] = ACTIONS(1609), - [aux_sym__val_number_token3] = ACTIONS(1609), - [aux_sym__val_number_token4] = ACTIONS(1609), - [aux_sym__val_number_token5] = ACTIONS(1609), - [aux_sym__val_number_token6] = ACTIONS(1609), - [anon_sym_0b] = ACTIONS(1607), - [sym_filesize_unit] = ACTIONS(1609), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_0o] = ACTIONS(1607), - [anon_sym_0x] = ACTIONS(1607), - [sym_val_date] = ACTIONS(1609), - [anon_sym_DQUOTE] = ACTIONS(1609), - [sym__str_single_quotes] = ACTIONS(1609), - [sym__str_back_ticks] = ACTIONS(1609), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1609), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1609), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1609), - [anon_sym_out_GT_GT] = ACTIONS(1609), - [anon_sym_e_GT_GT] = ACTIONS(1609), - [anon_sym_o_GT_GT] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), - [aux_sym_unquoted_token1] = ACTIONS(1607), - [aux_sym_unquoted_token2] = ACTIONS(1607), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1609), + [1401] = { + [sym_comment] = STATE(1401), + [anon_sym_EQ] = ACTIONS(978), + [anon_sym_PLUS_EQ] = ACTIONS(980), + [anon_sym_DASH_EQ] = ACTIONS(980), + [anon_sym_STAR_EQ] = ACTIONS(980), + [anon_sym_SLASH_EQ] = ACTIONS(980), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(980), + [sym__newline] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_err_GT_PIPE] = ACTIONS(980), + [anon_sym_out_GT_PIPE] = ACTIONS(980), + [anon_sym_e_GT_PIPE] = ACTIONS(980), + [anon_sym_o_GT_PIPE] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), + [anon_sym_GT2] = ACTIONS(978), + [anon_sym_DASH2] = ACTIONS(978), + [anon_sym_in2] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_STAR2] = ACTIONS(978), + [anon_sym_QMARK2] = ACTIONS(4714), + [anon_sym_and2] = ACTIONS(980), + [anon_sym_xor2] = ACTIONS(980), + [anon_sym_or2] = ACTIONS(980), + [anon_sym_not_DASHin2] = ACTIONS(980), + [anon_sym_starts_DASHwith2] = ACTIONS(980), + [anon_sym_ends_DASHwith2] = ACTIONS(980), + [anon_sym_EQ_EQ2] = ACTIONS(980), + [anon_sym_BANG_EQ2] = ACTIONS(980), + [anon_sym_LT2] = ACTIONS(978), + [anon_sym_LT_EQ2] = ACTIONS(980), + [anon_sym_GT_EQ2] = ACTIONS(980), + [anon_sym_EQ_TILDE2] = ACTIONS(980), + [anon_sym_BANG_TILDE2] = ACTIONS(980), + [anon_sym_STAR_STAR2] = ACTIONS(980), + [anon_sym_PLUS_PLUS2] = ACTIONS(978), + [anon_sym_SLASH2] = ACTIONS(978), + [anon_sym_mod2] = ACTIONS(980), + [anon_sym_SLASH_SLASH2] = ACTIONS(980), + [anon_sym_PLUS2] = ACTIONS(978), + [anon_sym_bit_DASHshl2] = ACTIONS(980), + [anon_sym_bit_DASHshr2] = ACTIONS(980), + [anon_sym_bit_DASHand2] = ACTIONS(980), + [anon_sym_bit_DASHxor2] = ACTIONS(980), + [anon_sym_bit_DASHor2] = ACTIONS(980), + [anon_sym_DOT_DOT2] = ACTIONS(978), + [anon_sym_DOT] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), + [anon_sym_DOT_DOT_LT2] = ACTIONS(980), + [aux_sym_record_entry_token1] = ACTIONS(980), + [anon_sym_err_GT] = ACTIONS(978), + [anon_sym_out_GT] = ACTIONS(978), + [anon_sym_e_GT] = ACTIONS(978), + [anon_sym_o_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT] = ACTIONS(978), + [anon_sym_err_GT_GT] = ACTIONS(980), + [anon_sym_out_GT_GT] = ACTIONS(980), + [anon_sym_e_GT_GT] = ACTIONS(980), + [anon_sym_o_GT_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(247), }, - [1399] = { - [sym_path] = STATE(1460), - [sym_comment] = STATE(1399), - [aux_sym_cell_path_repeat1] = STATE(1399), + [1402] = { + [sym_path] = STATE(1449), + [sym_comment] = STATE(1402), + [aux_sym_cell_path_repeat1] = STATE(1402), + [ts_builtin_sym_end] = ACTIONS(973), + [anon_sym_EQ] = ACTIONS(971), + [anon_sym_PLUS_EQ] = ACTIONS(973), + [anon_sym_DASH_EQ] = ACTIONS(973), + [anon_sym_STAR_EQ] = ACTIONS(973), + [anon_sym_SLASH_EQ] = ACTIONS(973), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(973), + [sym__newline] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(973), + [anon_sym_err_GT_PIPE] = ACTIONS(973), + [anon_sym_out_GT_PIPE] = ACTIONS(973), + [anon_sym_e_GT_PIPE] = ACTIONS(973), + [anon_sym_o_GT_PIPE] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), + [anon_sym_GT2] = ACTIONS(971), + [anon_sym_DASH2] = ACTIONS(971), + [anon_sym_in2] = ACTIONS(973), + [anon_sym_STAR2] = ACTIONS(971), + [anon_sym_and2] = ACTIONS(973), + [anon_sym_xor2] = ACTIONS(973), + [anon_sym_or2] = ACTIONS(973), + [anon_sym_not_DASHin2] = ACTIONS(973), + [anon_sym_starts_DASHwith2] = ACTIONS(973), + [anon_sym_ends_DASHwith2] = ACTIONS(973), + [anon_sym_EQ_EQ2] = ACTIONS(973), + [anon_sym_BANG_EQ2] = ACTIONS(973), + [anon_sym_LT2] = ACTIONS(971), + [anon_sym_LT_EQ2] = ACTIONS(973), + [anon_sym_GT_EQ2] = ACTIONS(973), + [anon_sym_EQ_TILDE2] = ACTIONS(973), + [anon_sym_BANG_TILDE2] = ACTIONS(973), + [anon_sym_STAR_STAR2] = ACTIONS(973), + [anon_sym_PLUS_PLUS2] = ACTIONS(971), + [anon_sym_SLASH2] = ACTIONS(971), + [anon_sym_mod2] = ACTIONS(973), + [anon_sym_SLASH_SLASH2] = ACTIONS(973), + [anon_sym_PLUS2] = ACTIONS(971), + [anon_sym_bit_DASHshl2] = ACTIONS(973), + [anon_sym_bit_DASHshr2] = ACTIONS(973), + [anon_sym_bit_DASHand2] = ACTIONS(973), + [anon_sym_bit_DASHxor2] = ACTIONS(973), + [anon_sym_bit_DASHor2] = ACTIONS(973), + [anon_sym_DOT_DOT2] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(4716), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(973), + [anon_sym_DOT_DOT_LT2] = ACTIONS(973), + [anon_sym_err_GT] = ACTIONS(971), + [anon_sym_out_GT] = ACTIONS(971), + [anon_sym_e_GT] = ACTIONS(971), + [anon_sym_o_GT] = ACTIONS(971), + [anon_sym_err_PLUSout_GT] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT] = ACTIONS(971), + [anon_sym_o_PLUSe_GT] = ACTIONS(971), + [anon_sym_e_PLUSo_GT] = ACTIONS(971), + [anon_sym_err_GT_GT] = ACTIONS(973), + [anon_sym_out_GT_GT] = ACTIONS(973), + [anon_sym_e_GT_GT] = ACTIONS(973), + [anon_sym_o_GT_GT] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(247), + }, + [1403] = { + [sym_path] = STATE(1481), + [sym_comment] = STATE(1403), + [aux_sym_cell_path_repeat1] = STATE(1403), [sym__newline] = ACTIONS(973), [anon_sym_SEMI] = ACTIONS(973), [anon_sym_PIPE] = ACTIONS(973), @@ -208974,7 +209565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(973), [anon_sym_DOT_DOT] = ACTIONS(971), [anon_sym_DOT_DOT2] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(4722), + [anon_sym_DOT] = ACTIONS(4719), [anon_sym_DOT_DOT_EQ] = ACTIONS(971), [anon_sym_DOT_DOT_LT] = ACTIONS(971), [anon_sym_DOT_DOT_EQ2] = ACTIONS(973), @@ -209021,377 +209612,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(973), }, - [1400] = { - [sym_comment] = STATE(1400), - [ts_builtin_sym_end] = ACTIONS(1757), - [sym__newline] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_err_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_GT_PIPE] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT] = ACTIONS(4725), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), - [anon_sym_DOT_DOT_LT] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(4727), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_0b] = ACTIONS(1755), - [anon_sym_0o] = ACTIONS(1755), - [anon_sym_0x] = ACTIONS(1755), - [sym_val_date] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), - [anon_sym_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [aux_sym_unquoted_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [1401] = { - [sym_comment] = STATE(1401), - [anon_sym_EQ] = ACTIONS(998), - [anon_sym_PLUS_EQ] = ACTIONS(1000), - [anon_sym_DASH_EQ] = ACTIONS(1000), - [anon_sym_STAR_EQ] = ACTIONS(1000), - [anon_sym_SLASH_EQ] = ACTIONS(1000), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1000), - [sym__newline] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1000), - [anon_sym_err_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_GT_PIPE] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), - [anon_sym_GT2] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_STAR2] = ACTIONS(998), - [anon_sym_QMARK2] = ACTIONS(1000), - [anon_sym_and2] = ACTIONS(1000), - [anon_sym_xor2] = ACTIONS(1000), - [anon_sym_or2] = ACTIONS(1000), - [anon_sym_not_DASHin2] = ACTIONS(1000), - [anon_sym_starts_DASHwith2] = ACTIONS(1000), - [anon_sym_ends_DASHwith2] = ACTIONS(1000), - [anon_sym_EQ_EQ2] = ACTIONS(1000), - [anon_sym_BANG_EQ2] = ACTIONS(1000), - [anon_sym_LT2] = ACTIONS(998), - [anon_sym_LT_EQ2] = ACTIONS(1000), - [anon_sym_GT_EQ2] = ACTIONS(1000), - [anon_sym_EQ_TILDE2] = ACTIONS(1000), - [anon_sym_BANG_TILDE2] = ACTIONS(1000), - [anon_sym_STAR_STAR2] = ACTIONS(1000), - [anon_sym_PLUS_PLUS2] = ACTIONS(998), - [anon_sym_SLASH2] = ACTIONS(998), - [anon_sym_mod2] = ACTIONS(1000), - [anon_sym_SLASH_SLASH2] = ACTIONS(1000), - [anon_sym_PLUS2] = ACTIONS(998), - [anon_sym_bit_DASHshl2] = ACTIONS(1000), - [anon_sym_bit_DASHshr2] = ACTIONS(1000), - [anon_sym_bit_DASHand2] = ACTIONS(1000), - [anon_sym_bit_DASHxor2] = ACTIONS(1000), - [anon_sym_bit_DASHor2] = ACTIONS(1000), - [anon_sym_DOT_DOT2] = ACTIONS(998), - [anon_sym_DOT] = ACTIONS(998), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1000), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1000), - [aux_sym_record_entry_token1] = ACTIONS(1000), - [anon_sym_err_GT] = ACTIONS(998), - [anon_sym_out_GT] = ACTIONS(998), - [anon_sym_e_GT] = ACTIONS(998), - [anon_sym_o_GT] = ACTIONS(998), - [anon_sym_err_PLUSout_GT] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT] = ACTIONS(998), - [anon_sym_o_PLUSe_GT] = ACTIONS(998), - [anon_sym_e_PLUSo_GT] = ACTIONS(998), - [anon_sym_err_GT_GT] = ACTIONS(1000), - [anon_sym_out_GT_GT] = ACTIONS(1000), - [anon_sym_e_GT_GT] = ACTIONS(1000), - [anon_sym_o_GT_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), - [anon_sym_POUND] = ACTIONS(247), - }, - [1402] = { - [sym_comment] = STATE(1402), - [ts_builtin_sym_end] = ACTIONS(1623), - [sym__newline] = ACTIONS(1623), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1623), - [anon_sym_err_GT_PIPE] = ACTIONS(1623), - [anon_sym_out_GT_PIPE] = ACTIONS(1623), - [anon_sym_e_GT_PIPE] = ACTIONS(1623), - [anon_sym_o_GT_PIPE] = ACTIONS(1623), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(1621), - [anon_sym_DOLLAR] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1621), - [anon_sym_LPAREN2] = ACTIONS(1623), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1621), - [anon_sym_DOT_DOT_LT] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [anon_sym_null] = ACTIONS(1623), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [aux_sym__val_number_decimal_token1] = ACTIONS(1621), - [aux_sym__val_number_decimal_token2] = ACTIONS(1623), - [aux_sym__val_number_decimal_token3] = ACTIONS(1623), - [aux_sym__val_number_decimal_token4] = ACTIONS(1623), - [aux_sym__val_number_token1] = ACTIONS(1623), - [aux_sym__val_number_token2] = ACTIONS(1623), - [aux_sym__val_number_token3] = ACTIONS(1623), - [aux_sym__val_number_token4] = ACTIONS(1623), - [aux_sym__val_number_token5] = ACTIONS(1623), - [aux_sym__val_number_token6] = ACTIONS(1623), - [anon_sym_0b] = ACTIONS(1621), - [sym_filesize_unit] = ACTIONS(1623), - [sym_duration_unit] = ACTIONS(1623), - [anon_sym_0o] = ACTIONS(1621), - [anon_sym_0x] = ACTIONS(1621), - [sym_val_date] = ACTIONS(1623), - [anon_sym_DQUOTE] = ACTIONS(1623), - [sym__str_single_quotes] = ACTIONS(1623), - [sym__str_back_ticks] = ACTIONS(1623), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1623), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1623), - [anon_sym_err_GT] = ACTIONS(1621), - [anon_sym_out_GT] = ACTIONS(1621), - [anon_sym_e_GT] = ACTIONS(1621), - [anon_sym_o_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT] = ACTIONS(1621), - [anon_sym_err_GT_GT] = ACTIONS(1623), - [anon_sym_out_GT_GT] = ACTIONS(1623), - [anon_sym_e_GT_GT] = ACTIONS(1623), - [anon_sym_o_GT_GT] = ACTIONS(1623), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), - [aux_sym_unquoted_token1] = ACTIONS(1621), - [aux_sym_unquoted_token2] = ACTIONS(1621), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1623), - }, - [1403] = { - [sym_comment] = STATE(1403), - [anon_sym_EQ] = ACTIONS(994), - [anon_sym_PLUS_EQ] = ACTIONS(996), - [anon_sym_DASH_EQ] = ACTIONS(996), - [anon_sym_STAR_EQ] = ACTIONS(996), - [anon_sym_SLASH_EQ] = ACTIONS(996), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(996), - [sym__newline] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(994), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_in2] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(994), - [anon_sym_QMARK2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(994), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(994), - [anon_sym_SLASH2] = ACTIONS(994), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(994), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_DOT_DOT2] = ACTIONS(994), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), - [anon_sym_DOT_DOT_LT2] = ACTIONS(996), - [aux_sym_record_entry_token1] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(994), - [anon_sym_out_GT] = ACTIONS(994), - [anon_sym_e_GT] = ACTIONS(994), - [anon_sym_o_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT] = ACTIONS(994), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(247), - }, [1404] = { [sym_comment] = STATE(1404), - [anon_sym_EQ] = ACTIONS(978), - [anon_sym_PLUS_EQ] = ACTIONS(980), - [anon_sym_DASH_EQ] = ACTIONS(980), - [anon_sym_STAR_EQ] = ACTIONS(980), - [anon_sym_SLASH_EQ] = ACTIONS(980), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(980), - [sym__newline] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(980), - [anon_sym_err_GT_PIPE] = ACTIONS(980), - [anon_sym_out_GT_PIPE] = ACTIONS(980), - [anon_sym_e_GT_PIPE] = ACTIONS(980), - [anon_sym_o_GT_PIPE] = ACTIONS(980), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), - [anon_sym_RPAREN] = ACTIONS(980), - [anon_sym_GT2] = ACTIONS(978), - [anon_sym_DASH2] = ACTIONS(978), - [anon_sym_in2] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_STAR2] = ACTIONS(978), - [anon_sym_QMARK2] = ACTIONS(4729), - [anon_sym_and2] = ACTIONS(980), - [anon_sym_xor2] = ACTIONS(980), - [anon_sym_or2] = ACTIONS(980), - [anon_sym_not_DASHin2] = ACTIONS(980), - [anon_sym_starts_DASHwith2] = ACTIONS(980), - [anon_sym_ends_DASHwith2] = ACTIONS(980), - [anon_sym_EQ_EQ2] = ACTIONS(980), - [anon_sym_BANG_EQ2] = ACTIONS(980), - [anon_sym_LT2] = ACTIONS(978), - [anon_sym_LT_EQ2] = ACTIONS(980), - [anon_sym_GT_EQ2] = ACTIONS(980), - [anon_sym_EQ_TILDE2] = ACTIONS(980), - [anon_sym_BANG_TILDE2] = ACTIONS(980), - [anon_sym_STAR_STAR2] = ACTIONS(980), - [anon_sym_PLUS_PLUS2] = ACTIONS(978), - [anon_sym_SLASH2] = ACTIONS(978), - [anon_sym_mod2] = ACTIONS(980), - [anon_sym_SLASH_SLASH2] = ACTIONS(980), - [anon_sym_PLUS2] = ACTIONS(978), - [anon_sym_bit_DASHshl2] = ACTIONS(980), - [anon_sym_bit_DASHshr2] = ACTIONS(980), - [anon_sym_bit_DASHand2] = ACTIONS(980), - [anon_sym_bit_DASHxor2] = ACTIONS(980), - [anon_sym_bit_DASHor2] = ACTIONS(980), - [anon_sym_DOT_DOT2] = ACTIONS(978), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), - [anon_sym_DOT_DOT_LT2] = ACTIONS(980), - [anon_sym_err_GT] = ACTIONS(978), - [anon_sym_out_GT] = ACTIONS(978), - [anon_sym_e_GT] = ACTIONS(978), - [anon_sym_o_GT] = ACTIONS(978), - [anon_sym_err_PLUSout_GT] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT] = ACTIONS(978), - [anon_sym_o_PLUSe_GT] = ACTIONS(978), - [anon_sym_e_PLUSo_GT] = ACTIONS(978), - [anon_sym_err_GT_GT] = ACTIONS(980), - [anon_sym_out_GT_GT] = ACTIONS(980), - [anon_sym_e_GT_GT] = ACTIONS(980), - [anon_sym_o_GT_GT] = ACTIONS(980), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), + [sym__newline] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_PIPE] = ACTIONS(1719), + [anon_sym_err_GT_PIPE] = ACTIONS(1719), + [anon_sym_out_GT_PIPE] = ACTIONS(1719), + [anon_sym_e_GT_PIPE] = ACTIONS(1719), + [anon_sym_o_GT_PIPE] = ACTIONS(1719), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1719), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1719), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1719), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1719), + [anon_sym_LBRACK] = ACTIONS(1719), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_RPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1719), + [anon_sym_DASH2] = ACTIONS(1707), + [anon_sym_LBRACE] = ACTIONS(1719), + [anon_sym_RBRACE] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_DOT_DOT2] = ACTIONS(4722), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1707), + [anon_sym_DOT_DOT_LT] = ACTIONS(1707), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4724), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4724), + [anon_sym_null] = ACTIONS(1719), + [anon_sym_true] = ACTIONS(1719), + [anon_sym_false] = ACTIONS(1719), + [aux_sym__val_number_decimal_token1] = ACTIONS(1707), + [aux_sym__val_number_decimal_token2] = ACTIONS(1719), + [aux_sym__val_number_decimal_token3] = ACTIONS(1719), + [aux_sym__val_number_decimal_token4] = ACTIONS(1719), + [aux_sym__val_number_token1] = ACTIONS(1719), + [aux_sym__val_number_token2] = ACTIONS(1719), + [aux_sym__val_number_token3] = ACTIONS(1719), + [aux_sym__val_number_token4] = ACTIONS(1719), + [aux_sym__val_number_token5] = ACTIONS(1719), + [aux_sym__val_number_token6] = ACTIONS(1719), + [anon_sym_0b] = ACTIONS(1707), + [sym_filesize_unit] = ACTIONS(4726), + [sym_duration_unit] = ACTIONS(4728), + [anon_sym_0o] = ACTIONS(1707), + [anon_sym_0x] = ACTIONS(1707), + [sym_val_date] = ACTIONS(1719), + [anon_sym_DQUOTE] = ACTIONS(1719), + [sym__str_single_quotes] = ACTIONS(1719), + [sym__str_back_ticks] = ACTIONS(1719), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1719), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1719), + [anon_sym_err_GT] = ACTIONS(1707), + [anon_sym_out_GT] = ACTIONS(1707), + [anon_sym_e_GT] = ACTIONS(1707), + [anon_sym_o_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT] = ACTIONS(1707), + [anon_sym_err_GT_GT] = ACTIONS(1719), + [anon_sym_out_GT_GT] = ACTIONS(1719), + [anon_sym_e_GT_GT] = ACTIONS(1719), + [anon_sym_o_GT_GT] = ACTIONS(1719), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1719), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1719), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1719), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1719), + [aux_sym_unquoted_token1] = ACTIONS(1707), + [aux_sym_unquoted_token2] = ACTIONS(4730), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1719), + }, + [1405] = { + [sym_comment] = STATE(1405), + [anon_sym_EQ] = ACTIONS(984), + [anon_sym_PLUS_EQ] = ACTIONS(986), + [anon_sym_DASH_EQ] = ACTIONS(986), + [anon_sym_STAR_EQ] = ACTIONS(986), + [anon_sym_SLASH_EQ] = ACTIONS(986), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(986), + [sym__newline] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_PIPE] = ACTIONS(986), + [anon_sym_err_GT_PIPE] = ACTIONS(986), + [anon_sym_out_GT_PIPE] = ACTIONS(986), + [anon_sym_e_GT_PIPE] = ACTIONS(986), + [anon_sym_o_GT_PIPE] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), + [anon_sym_GT2] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_in2] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_STAR2] = ACTIONS(984), + [anon_sym_QMARK2] = ACTIONS(4732), + [anon_sym_and2] = ACTIONS(986), + [anon_sym_xor2] = ACTIONS(986), + [anon_sym_or2] = ACTIONS(986), + [anon_sym_not_DASHin2] = ACTIONS(986), + [anon_sym_starts_DASHwith2] = ACTIONS(986), + [anon_sym_ends_DASHwith2] = ACTIONS(986), + [anon_sym_EQ_EQ2] = ACTIONS(986), + [anon_sym_BANG_EQ2] = ACTIONS(986), + [anon_sym_LT2] = ACTIONS(984), + [anon_sym_LT_EQ2] = ACTIONS(986), + [anon_sym_GT_EQ2] = ACTIONS(986), + [anon_sym_EQ_TILDE2] = ACTIONS(986), + [anon_sym_BANG_TILDE2] = ACTIONS(986), + [anon_sym_STAR_STAR2] = ACTIONS(986), + [anon_sym_PLUS_PLUS2] = ACTIONS(984), + [anon_sym_SLASH2] = ACTIONS(984), + [anon_sym_mod2] = ACTIONS(986), + [anon_sym_SLASH_SLASH2] = ACTIONS(986), + [anon_sym_PLUS2] = ACTIONS(984), + [anon_sym_bit_DASHshl2] = ACTIONS(986), + [anon_sym_bit_DASHshr2] = ACTIONS(986), + [anon_sym_bit_DASHand2] = ACTIONS(986), + [anon_sym_bit_DASHxor2] = ACTIONS(986), + [anon_sym_bit_DASHor2] = ACTIONS(986), + [anon_sym_DOT_DOT2] = ACTIONS(984), + [anon_sym_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), + [anon_sym_DOT_DOT_LT2] = ACTIONS(986), + [aux_sym_record_entry_token1] = ACTIONS(986), + [anon_sym_err_GT] = ACTIONS(984), + [anon_sym_out_GT] = ACTIONS(984), + [anon_sym_e_GT] = ACTIONS(984), + [anon_sym_o_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT] = ACTIONS(984), + [anon_sym_err_GT_GT] = ACTIONS(986), + [anon_sym_out_GT_GT] = ACTIONS(986), + [anon_sym_e_GT_GT] = ACTIONS(986), + [anon_sym_o_GT_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), [anon_sym_POUND] = ACTIONS(247), }, - [1405] = { - [sym_path] = STATE(1488), - [sym_comment] = STATE(1405), - [aux_sym_cell_path_repeat1] = STATE(1408), - [ts_builtin_sym_end] = ACTIONS(969), - [anon_sym_EQ] = ACTIONS(967), - [anon_sym_PLUS_EQ] = ACTIONS(969), - [anon_sym_DASH_EQ] = ACTIONS(969), - [anon_sym_STAR_EQ] = ACTIONS(969), - [anon_sym_SLASH_EQ] = ACTIONS(969), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(969), + [1406] = { + [sym_comment] = STATE(1406), + [ts_builtin_sym_end] = ACTIONS(1683), + [sym__newline] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_err_GT_PIPE] = ACTIONS(1683), + [anon_sym_out_GT_PIPE] = ACTIONS(1683), + [anon_sym_e_GT_PIPE] = ACTIONS(1683), + [anon_sym_o_GT_PIPE] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1683), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1681), + [anon_sym_DOLLAR] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1683), + [anon_sym_DOT_DOT] = ACTIONS(1681), + [anon_sym_LPAREN2] = ACTIONS(1683), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1681), + [anon_sym_DOT_DOT_LT] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [anon_sym_null] = ACTIONS(1683), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [aux_sym__val_number_decimal_token1] = ACTIONS(1681), + [aux_sym__val_number_decimal_token2] = ACTIONS(1683), + [aux_sym__val_number_decimal_token3] = ACTIONS(1683), + [aux_sym__val_number_decimal_token4] = ACTIONS(1683), + [aux_sym__val_number_token1] = ACTIONS(1683), + [aux_sym__val_number_token2] = ACTIONS(1683), + [aux_sym__val_number_token3] = ACTIONS(1683), + [aux_sym__val_number_token4] = ACTIONS(1683), + [aux_sym__val_number_token5] = ACTIONS(1683), + [aux_sym__val_number_token6] = ACTIONS(1683), + [anon_sym_0b] = ACTIONS(1681), + [sym_filesize_unit] = ACTIONS(1683), + [sym_duration_unit] = ACTIONS(1683), + [anon_sym_0o] = ACTIONS(1681), + [anon_sym_0x] = ACTIONS(1681), + [sym_val_date] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(1683), + [sym__str_single_quotes] = ACTIONS(1683), + [sym__str_back_ticks] = ACTIONS(1683), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1683), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1683), + [anon_sym_err_GT] = ACTIONS(1681), + [anon_sym_out_GT] = ACTIONS(1681), + [anon_sym_e_GT] = ACTIONS(1681), + [anon_sym_o_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT] = ACTIONS(1681), + [anon_sym_err_GT_GT] = ACTIONS(1683), + [anon_sym_out_GT_GT] = ACTIONS(1683), + [anon_sym_e_GT_GT] = ACTIONS(1683), + [anon_sym_o_GT_GT] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1683), + [aux_sym_unquoted_token1] = ACTIONS(1681), + [aux_sym_unquoted_token2] = ACTIONS(1681), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1683), + }, + [1407] = { + [sym_path] = STATE(1481), + [sym_comment] = STATE(1407), + [aux_sym_cell_path_repeat1] = STATE(1403), [sym__newline] = ACTIONS(969), [anon_sym_SEMI] = ACTIONS(969), [anon_sym_PIPE] = ACTIONS(969), @@ -209403,38 +209843,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(969), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(969), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(969), - [anon_sym_GT2] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(969), + [anon_sym_RPAREN] = ACTIONS(969), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_DASH_DASH] = ACTIONS(969), [anon_sym_DASH2] = ACTIONS(967), - [anon_sym_in2] = ACTIONS(969), - [anon_sym_STAR2] = ACTIONS(967), - [anon_sym_and2] = ACTIONS(969), - [anon_sym_xor2] = ACTIONS(969), - [anon_sym_or2] = ACTIONS(969), - [anon_sym_not_DASHin2] = ACTIONS(969), - [anon_sym_starts_DASHwith2] = ACTIONS(969), - [anon_sym_ends_DASHwith2] = ACTIONS(969), - [anon_sym_EQ_EQ2] = ACTIONS(969), - [anon_sym_BANG_EQ2] = ACTIONS(969), - [anon_sym_LT2] = ACTIONS(967), - [anon_sym_LT_EQ2] = ACTIONS(969), - [anon_sym_GT_EQ2] = ACTIONS(969), - [anon_sym_EQ_TILDE2] = ACTIONS(969), - [anon_sym_BANG_TILDE2] = ACTIONS(969), - [anon_sym_STAR_STAR2] = ACTIONS(969), - [anon_sym_PLUS_PLUS2] = ACTIONS(967), - [anon_sym_SLASH2] = ACTIONS(967), - [anon_sym_mod2] = ACTIONS(969), - [anon_sym_SLASH_SLASH2] = ACTIONS(969), - [anon_sym_PLUS2] = ACTIONS(967), - [anon_sym_bit_DASHshl2] = ACTIONS(969), - [anon_sym_bit_DASHshr2] = ACTIONS(969), - [anon_sym_bit_DASHand2] = ACTIONS(969), - [anon_sym_bit_DASHxor2] = ACTIONS(969), - [anon_sym_bit_DASHor2] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_RBRACE] = ACTIONS(969), + [anon_sym_DOT_DOT] = ACTIONS(967), [anon_sym_DOT_DOT2] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(4664), + [anon_sym_DOT] = ACTIONS(4585), + [anon_sym_DOT_DOT_EQ] = ACTIONS(967), + [anon_sym_DOT_DOT_LT] = ACTIONS(967), [anon_sym_DOT_DOT_EQ2] = ACTIONS(969), [anon_sym_DOT_DOT_LT2] = ACTIONS(969), + [anon_sym_null] = ACTIONS(969), + [anon_sym_true] = ACTIONS(969), + [anon_sym_false] = ACTIONS(969), + [aux_sym__val_number_decimal_token1] = ACTIONS(967), + [aux_sym__val_number_decimal_token2] = ACTIONS(969), + [aux_sym__val_number_decimal_token3] = ACTIONS(969), + [aux_sym__val_number_decimal_token4] = ACTIONS(969), + [aux_sym__val_number_token1] = ACTIONS(969), + [aux_sym__val_number_token2] = ACTIONS(969), + [aux_sym__val_number_token3] = ACTIONS(969), + [aux_sym__val_number_token4] = ACTIONS(969), + [aux_sym__val_number_token5] = ACTIONS(969), + [aux_sym__val_number_token6] = ACTIONS(969), + [anon_sym_0b] = ACTIONS(967), + [anon_sym_0o] = ACTIONS(967), + [anon_sym_0x] = ACTIONS(967), + [sym_val_date] = ACTIONS(969), + [anon_sym_DQUOTE] = ACTIONS(969), + [sym__str_single_quotes] = ACTIONS(969), + [sym__str_back_ticks] = ACTIONS(969), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(969), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(969), [anon_sym_err_GT] = ACTIONS(967), [anon_sym_out_GT] = ACTIONS(967), [anon_sym_e_GT] = ACTIONS(967), @@ -209451,295 +209896,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(969), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(969), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), + [aux_sym_unquoted_token1] = ACTIONS(967), [anon_sym_POUND] = ACTIONS(247), - }, - [1406] = { - [sym_comment] = STATE(1406), - [sym__newline] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_err_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_GT_PIPE] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_RPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), - [anon_sym_DOT_DOT_LT] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(4571), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_0b] = ACTIONS(1755), - [anon_sym_0o] = ACTIONS(1755), - [anon_sym_0x] = ACTIONS(1755), - [sym_val_date] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), - [anon_sym_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [aux_sym_unquoted_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [1407] = { - [sym_comment] = STATE(1407), - [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(2214), - [anon_sym_SEMI] = ACTIONS(2214), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_err_GT_PIPE] = ACTIONS(2214), - [anon_sym_out_GT_PIPE] = ACTIONS(2214), - [anon_sym_e_GT_PIPE] = ACTIONS(2214), - [anon_sym_o_GT_PIPE] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2214), - [anon_sym_GT2] = ACTIONS(2214), - [anon_sym_DASH2] = ACTIONS(2214), - [anon_sym_in2] = ACTIONS(2214), - [anon_sym_STAR2] = ACTIONS(2214), - [anon_sym_and2] = ACTIONS(2214), - [anon_sym_xor2] = ACTIONS(2214), - [anon_sym_or2] = ACTIONS(2214), - [anon_sym_not_DASHin2] = ACTIONS(2214), - [anon_sym_starts_DASHwith2] = ACTIONS(2214), - [anon_sym_ends_DASHwith2] = ACTIONS(2214), - [anon_sym_EQ_EQ2] = ACTIONS(2214), - [anon_sym_BANG_EQ2] = ACTIONS(2214), - [anon_sym_LT2] = ACTIONS(2214), - [anon_sym_LT_EQ2] = ACTIONS(2214), - [anon_sym_GT_EQ2] = ACTIONS(2214), - [anon_sym_EQ_TILDE2] = ACTIONS(2214), - [anon_sym_BANG_TILDE2] = ACTIONS(2214), - [anon_sym_STAR_STAR2] = ACTIONS(2214), - [anon_sym_PLUS_PLUS2] = ACTIONS(2214), - [anon_sym_SLASH2] = ACTIONS(2214), - [anon_sym_mod2] = ACTIONS(2214), - [anon_sym_SLASH_SLASH2] = ACTIONS(2214), - [anon_sym_PLUS2] = ACTIONS(2214), - [anon_sym_bit_DASHshl2] = ACTIONS(2214), - [anon_sym_bit_DASHshr2] = ACTIONS(2214), - [anon_sym_bit_DASHand2] = ACTIONS(2214), - [anon_sym_bit_DASHxor2] = ACTIONS(2214), - [anon_sym_bit_DASHor2] = ACTIONS(2214), - [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(969), }, [1408] = { - [sym_path] = STATE(1488), + [sym_cell_path] = STATE(1630), + [sym_path] = STATE(1519), [sym_comment] = STATE(1408), - [aux_sym_cell_path_repeat1] = STATE(1408), - [ts_builtin_sym_end] = ACTIONS(973), - [anon_sym_EQ] = ACTIONS(971), - [anon_sym_PLUS_EQ] = ACTIONS(973), - [anon_sym_DASH_EQ] = ACTIONS(973), - [anon_sym_STAR_EQ] = ACTIONS(973), - [anon_sym_SLASH_EQ] = ACTIONS(973), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(973), - [sym__newline] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(973), - [anon_sym_err_GT_PIPE] = ACTIONS(973), - [anon_sym_out_GT_PIPE] = ACTIONS(973), - [anon_sym_e_GT_PIPE] = ACTIONS(973), - [anon_sym_o_GT_PIPE] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), - [anon_sym_GT2] = ACTIONS(971), - [anon_sym_DASH2] = ACTIONS(971), - [anon_sym_in2] = ACTIONS(973), - [anon_sym_STAR2] = ACTIONS(971), - [anon_sym_and2] = ACTIONS(973), - [anon_sym_xor2] = ACTIONS(973), - [anon_sym_or2] = ACTIONS(973), - [anon_sym_not_DASHin2] = ACTIONS(973), - [anon_sym_starts_DASHwith2] = ACTIONS(973), - [anon_sym_ends_DASHwith2] = ACTIONS(973), - [anon_sym_EQ_EQ2] = ACTIONS(973), - [anon_sym_BANG_EQ2] = ACTIONS(973), - [anon_sym_LT2] = ACTIONS(971), - [anon_sym_LT_EQ2] = ACTIONS(973), - [anon_sym_GT_EQ2] = ACTIONS(973), - [anon_sym_EQ_TILDE2] = ACTIONS(973), - [anon_sym_BANG_TILDE2] = ACTIONS(973), - [anon_sym_STAR_STAR2] = ACTIONS(973), - [anon_sym_PLUS_PLUS2] = ACTIONS(971), - [anon_sym_SLASH2] = ACTIONS(971), - [anon_sym_mod2] = ACTIONS(973), - [anon_sym_SLASH_SLASH2] = ACTIONS(973), - [anon_sym_PLUS2] = ACTIONS(971), - [anon_sym_bit_DASHshl2] = ACTIONS(973), - [anon_sym_bit_DASHshr2] = ACTIONS(973), - [anon_sym_bit_DASHand2] = ACTIONS(973), - [anon_sym_bit_DASHxor2] = ACTIONS(973), - [anon_sym_bit_DASHor2] = ACTIONS(973), - [anon_sym_DOT_DOT2] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(4731), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(973), - [anon_sym_DOT_DOT_LT2] = ACTIONS(973), - [anon_sym_err_GT] = ACTIONS(971), - [anon_sym_out_GT] = ACTIONS(971), - [anon_sym_e_GT] = ACTIONS(971), - [anon_sym_o_GT] = ACTIONS(971), - [anon_sym_err_PLUSout_GT] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT] = ACTIONS(971), - [anon_sym_o_PLUSe_GT] = ACTIONS(971), - [anon_sym_e_PLUSo_GT] = ACTIONS(971), - [anon_sym_err_GT_GT] = ACTIONS(973), - [anon_sym_out_GT_GT] = ACTIONS(973), - [anon_sym_e_GT_GT] = ACTIONS(973), - [anon_sym_o_GT_GT] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1431), + [ts_builtin_sym_end] = ACTIONS(1749), + [sym__newline] = ACTIONS(1749), + [anon_sym_SEMI] = ACTIONS(1749), + [anon_sym_PIPE] = ACTIONS(1749), + [anon_sym_err_GT_PIPE] = ACTIONS(1749), + [anon_sym_out_GT_PIPE] = ACTIONS(1749), + [anon_sym_e_GT_PIPE] = ACTIONS(1749), + [anon_sym_o_GT_PIPE] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_DOLLAR] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1749), + [anon_sym_DASH2] = ACTIONS(1747), + [anon_sym_LBRACE] = ACTIONS(1749), + [anon_sym_DOT_DOT] = ACTIONS(1747), + [anon_sym_DOT_DOT2] = ACTIONS(1747), + [anon_sym_DOT] = ACTIONS(4676), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1747), + [anon_sym_DOT_DOT_LT] = ACTIONS(1747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1749), + [anon_sym_null] = ACTIONS(1749), + [anon_sym_true] = ACTIONS(1749), + [anon_sym_false] = ACTIONS(1749), + [aux_sym__val_number_decimal_token1] = ACTIONS(1747), + [aux_sym__val_number_decimal_token2] = ACTIONS(1749), + [aux_sym__val_number_decimal_token3] = ACTIONS(1749), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(1749), + [aux_sym__val_number_token2] = ACTIONS(1749), + [aux_sym__val_number_token3] = ACTIONS(1749), + [aux_sym__val_number_token4] = ACTIONS(1749), + [aux_sym__val_number_token5] = ACTIONS(1749), + [aux_sym__val_number_token6] = ACTIONS(1749), + [anon_sym_0b] = ACTIONS(1747), + [anon_sym_0o] = ACTIONS(1747), + [anon_sym_0x] = ACTIONS(1747), + [sym_val_date] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1749), + [sym__str_single_quotes] = ACTIONS(1749), + [sym__str_back_ticks] = ACTIONS(1749), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1749), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1749), + [anon_sym_err_GT] = ACTIONS(1747), + [anon_sym_out_GT] = ACTIONS(1747), + [anon_sym_e_GT] = ACTIONS(1747), + [anon_sym_o_GT] = ACTIONS(1747), + [anon_sym_err_PLUSout_GT] = ACTIONS(1747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1747), + [anon_sym_o_PLUSe_GT] = ACTIONS(1747), + [anon_sym_e_PLUSo_GT] = ACTIONS(1747), + [anon_sym_err_GT_GT] = ACTIONS(1749), + [anon_sym_out_GT_GT] = ACTIONS(1749), + [anon_sym_e_GT_GT] = ACTIONS(1749), + [anon_sym_o_GT_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1749), + [aux_sym_unquoted_token1] = ACTIONS(1747), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1749), }, [1409] = { [sym_comment] = STATE(1409), - [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(2222), - [anon_sym_SEMI] = ACTIONS(2222), - [anon_sym_PIPE] = ACTIONS(2222), - [anon_sym_err_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_GT_PIPE] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2222), - [anon_sym_GT2] = ACTIONS(2222), - [anon_sym_DASH2] = ACTIONS(2222), - [anon_sym_in2] = ACTIONS(2222), - [anon_sym_STAR2] = ACTIONS(2222), - [anon_sym_and2] = ACTIONS(2222), - [anon_sym_xor2] = ACTIONS(2222), - [anon_sym_or2] = ACTIONS(2222), - [anon_sym_not_DASHin2] = ACTIONS(2222), - [anon_sym_starts_DASHwith2] = ACTIONS(2222), - [anon_sym_ends_DASHwith2] = ACTIONS(2222), - [anon_sym_EQ_EQ2] = ACTIONS(2222), - [anon_sym_BANG_EQ2] = ACTIONS(2222), - [anon_sym_LT2] = ACTIONS(2222), - [anon_sym_LT_EQ2] = ACTIONS(2222), - [anon_sym_GT_EQ2] = ACTIONS(2222), - [anon_sym_EQ_TILDE2] = ACTIONS(2222), - [anon_sym_BANG_TILDE2] = ACTIONS(2222), - [anon_sym_STAR_STAR2] = ACTIONS(2222), - [anon_sym_PLUS_PLUS2] = ACTIONS(2222), - [anon_sym_SLASH2] = ACTIONS(2222), - [anon_sym_mod2] = ACTIONS(2222), - [anon_sym_SLASH_SLASH2] = ACTIONS(2222), - [anon_sym_PLUS2] = ACTIONS(2222), - [anon_sym_bit_DASHshl2] = ACTIONS(2222), - [anon_sym_bit_DASHshr2] = ACTIONS(2222), - [anon_sym_bit_DASHand2] = ACTIONS(2222), - [anon_sym_bit_DASHxor2] = ACTIONS(2222), - [anon_sym_bit_DASHor2] = ACTIONS(2222), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1763), + [sym__newline] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_err_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_GT_PIPE] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), + [anon_sym_LBRACK] = ACTIONS(1763), + [anon_sym_LPAREN] = ACTIONS(1761), + [anon_sym_DOLLAR] = ACTIONS(1761), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_DASH2] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_DOT_DOT] = ACTIONS(1761), + [anon_sym_LPAREN2] = ACTIONS(1763), + [anon_sym_DOT_DOT2] = ACTIONS(1761), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1761), + [anon_sym_DOT_DOT_LT] = ACTIONS(1761), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), + [anon_sym_null] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1763), + [anon_sym_false] = ACTIONS(1763), + [aux_sym__val_number_decimal_token1] = ACTIONS(1761), + [aux_sym__val_number_decimal_token2] = ACTIONS(1763), + [aux_sym__val_number_decimal_token3] = ACTIONS(1763), + [aux_sym__val_number_decimal_token4] = ACTIONS(1763), + [aux_sym__val_number_token1] = ACTIONS(1763), + [aux_sym__val_number_token2] = ACTIONS(1763), + [aux_sym__val_number_token3] = ACTIONS(1763), + [aux_sym__val_number_token4] = ACTIONS(1763), + [aux_sym__val_number_token5] = ACTIONS(1763), + [aux_sym__val_number_token6] = ACTIONS(1763), + [anon_sym_0b] = ACTIONS(1761), + [sym_filesize_unit] = ACTIONS(1763), + [sym_duration_unit] = ACTIONS(1763), + [anon_sym_0o] = ACTIONS(1761), + [anon_sym_0x] = ACTIONS(1761), + [sym_val_date] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym__str_single_quotes] = ACTIONS(1763), + [sym__str_back_ticks] = ACTIONS(1763), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1763), + [anon_sym_err_GT] = ACTIONS(1761), + [anon_sym_out_GT] = ACTIONS(1761), + [anon_sym_e_GT] = ACTIONS(1761), + [anon_sym_o_GT] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT] = ACTIONS(1761), + [anon_sym_err_GT_GT] = ACTIONS(1763), + [anon_sym_out_GT_GT] = ACTIONS(1763), + [anon_sym_e_GT_GT] = ACTIONS(1763), + [anon_sym_o_GT_GT] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1763), + [aux_sym_unquoted_token1] = ACTIONS(1761), + [aux_sym_unquoted_token2] = ACTIONS(1761), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1763), }, [1410] = { [sym_comment] = STATE(1410), @@ -209814,148 +210117,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1411] = { [sym_comment] = STATE(1411), - [sym__newline] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_err_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_GT_PIPE] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_RPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), - [anon_sym_null] = ACTIONS(1785), - [anon_sym_true] = ACTIONS(1785), - [anon_sym_false] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_0b] = ACTIONS(1783), - [anon_sym_0o] = ACTIONS(1783), - [anon_sym_0x] = ACTIONS(1783), - [sym_val_date] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_err_GT] = ACTIONS(1783), - [anon_sym_out_GT] = ACTIONS(1783), - [anon_sym_e_GT] = ACTIONS(1783), - [anon_sym_o_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT] = ACTIONS(1783), - [anon_sym_err_GT_GT] = ACTIONS(1785), - [anon_sym_out_GT_GT] = ACTIONS(1785), - [anon_sym_e_GT_GT] = ACTIONS(1785), - [anon_sym_o_GT_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), - [aux_sym_unquoted_token1] = ACTIONS(1783), - [aux_sym_unquoted_token2] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1785), + [sym__newline] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_err_GT_PIPE] = ACTIONS(996), + [anon_sym_out_GT_PIPE] = ACTIONS(996), + [anon_sym_e_GT_PIPE] = ACTIONS(996), + [anon_sym_o_GT_PIPE] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_RPAREN] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(996), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_DOT_DOT] = ACTIONS(994), + [anon_sym_QMARK2] = ACTIONS(996), + [anon_sym_DOT_DOT2] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ] = ACTIONS(994), + [anon_sym_DOT_DOT_LT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), + [anon_sym_DOT_DOT_LT2] = ACTIONS(996), + [anon_sym_null] = ACTIONS(996), + [anon_sym_true] = ACTIONS(996), + [anon_sym_false] = ACTIONS(996), + [aux_sym__val_number_decimal_token1] = ACTIONS(994), + [aux_sym__val_number_decimal_token2] = ACTIONS(996), + [aux_sym__val_number_decimal_token3] = ACTIONS(996), + [aux_sym__val_number_decimal_token4] = ACTIONS(996), + [aux_sym__val_number_token1] = ACTIONS(996), + [aux_sym__val_number_token2] = ACTIONS(996), + [aux_sym__val_number_token3] = ACTIONS(996), + [aux_sym__val_number_token4] = ACTIONS(996), + [aux_sym__val_number_token5] = ACTIONS(996), + [aux_sym__val_number_token6] = ACTIONS(996), + [anon_sym_0b] = ACTIONS(994), + [anon_sym_0o] = ACTIONS(994), + [anon_sym_0x] = ACTIONS(994), + [sym_val_date] = ACTIONS(996), + [anon_sym_DQUOTE] = ACTIONS(996), + [sym__str_single_quotes] = ACTIONS(996), + [sym__str_back_ticks] = ACTIONS(996), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(996), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(996), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(996), + [anon_sym_out_GT_GT] = ACTIONS(996), + [anon_sym_e_GT_GT] = ACTIONS(996), + [anon_sym_o_GT_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [aux_sym_unquoted_token1] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(996), }, [1412] = { [sym_comment] = STATE(1412), - [ts_builtin_sym_end] = ACTIONS(1757), - [sym__newline] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_err_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_GT_PIPE] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), - [anon_sym_DOT_DOT_LT] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(4727), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_0b] = ACTIONS(1755), - [anon_sym_0o] = ACTIONS(1755), - [anon_sym_0x] = ACTIONS(1755), - [sym_val_date] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), - [anon_sym_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [aux_sym_unquoted_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1757), + [anon_sym_EQ] = ACTIONS(1006), + [anon_sym_PLUS_EQ] = ACTIONS(1008), + [anon_sym_DASH_EQ] = ACTIONS(1008), + [anon_sym_STAR_EQ] = ACTIONS(1008), + [anon_sym_SLASH_EQ] = ACTIONS(1008), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1008), + [sym__newline] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [anon_sym_RPAREN] = ACTIONS(1008), + [anon_sym_GT2] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(1006), + [anon_sym_in2] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_STAR2] = ACTIONS(1006), + [anon_sym_and2] = ACTIONS(1008), + [anon_sym_xor2] = ACTIONS(1008), + [anon_sym_or2] = ACTIONS(1008), + [anon_sym_not_DASHin2] = ACTIONS(1008), + [anon_sym_starts_DASHwith2] = ACTIONS(1008), + [anon_sym_ends_DASHwith2] = ACTIONS(1008), + [anon_sym_EQ_EQ2] = ACTIONS(1008), + [anon_sym_BANG_EQ2] = ACTIONS(1008), + [anon_sym_LT2] = ACTIONS(1006), + [anon_sym_LT_EQ2] = ACTIONS(1008), + [anon_sym_GT_EQ2] = ACTIONS(1008), + [anon_sym_EQ_TILDE2] = ACTIONS(1008), + [anon_sym_BANG_TILDE2] = ACTIONS(1008), + [anon_sym_STAR_STAR2] = ACTIONS(1008), + [anon_sym_PLUS_PLUS2] = ACTIONS(1006), + [anon_sym_SLASH2] = ACTIONS(1006), + [anon_sym_mod2] = ACTIONS(1008), + [anon_sym_SLASH_SLASH2] = ACTIONS(1008), + [anon_sym_PLUS2] = ACTIONS(1006), + [anon_sym_bit_DASHshl2] = ACTIONS(1008), + [anon_sym_bit_DASHshr2] = ACTIONS(1008), + [anon_sym_bit_DASHand2] = ACTIONS(1008), + [anon_sym_bit_DASHxor2] = ACTIONS(1008), + [anon_sym_bit_DASHor2] = ACTIONS(1008), + [anon_sym_DOT_DOT2] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), + [anon_sym_err_GT] = ACTIONS(1006), + [anon_sym_out_GT] = ACTIONS(1006), + [anon_sym_e_GT] = ACTIONS(1006), + [anon_sym_o_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT] = ACTIONS(1006), + [anon_sym_err_GT_GT] = ACTIONS(1008), + [anon_sym_out_GT_GT] = ACTIONS(1008), + [anon_sym_e_GT_GT] = ACTIONS(1008), + [anon_sym_o_GT_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(247), }, [1413] = { [sym_comment] = STATE(1413), + [ts_builtin_sym_end] = ACTIONS(980), + [anon_sym_EQ] = ACTIONS(978), + [anon_sym_PLUS_EQ] = ACTIONS(980), + [anon_sym_DASH_EQ] = ACTIONS(980), + [anon_sym_STAR_EQ] = ACTIONS(980), + [anon_sym_SLASH_EQ] = ACTIONS(980), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(980), [sym__newline] = ACTIONS(980), [anon_sym_SEMI] = ACTIONS(980), [anon_sym_PIPE] = ACTIONS(980), @@ -209967,44 +210277,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), - [anon_sym_LBRACK] = ACTIONS(980), - [anon_sym_LPAREN] = ACTIONS(980), - [anon_sym_RPAREN] = ACTIONS(980), - [anon_sym_DOLLAR] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_GT2] = ACTIONS(978), [anon_sym_DASH2] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(978), + [anon_sym_in2] = ACTIONS(980), + [anon_sym_STAR2] = ACTIONS(978), [anon_sym_QMARK2] = ACTIONS(4734), + [anon_sym_and2] = ACTIONS(980), + [anon_sym_xor2] = ACTIONS(980), + [anon_sym_or2] = ACTIONS(980), + [anon_sym_not_DASHin2] = ACTIONS(980), + [anon_sym_starts_DASHwith2] = ACTIONS(980), + [anon_sym_ends_DASHwith2] = ACTIONS(980), + [anon_sym_EQ_EQ2] = ACTIONS(980), + [anon_sym_BANG_EQ2] = ACTIONS(980), + [anon_sym_LT2] = ACTIONS(978), + [anon_sym_LT_EQ2] = ACTIONS(980), + [anon_sym_GT_EQ2] = ACTIONS(980), + [anon_sym_EQ_TILDE2] = ACTIONS(980), + [anon_sym_BANG_TILDE2] = ACTIONS(980), + [anon_sym_STAR_STAR2] = ACTIONS(980), + [anon_sym_PLUS_PLUS2] = ACTIONS(978), + [anon_sym_SLASH2] = ACTIONS(978), + [anon_sym_mod2] = ACTIONS(980), + [anon_sym_SLASH_SLASH2] = ACTIONS(980), + [anon_sym_PLUS2] = ACTIONS(978), + [anon_sym_bit_DASHshl2] = ACTIONS(980), + [anon_sym_bit_DASHshr2] = ACTIONS(980), + [anon_sym_bit_DASHand2] = ACTIONS(980), + [anon_sym_bit_DASHxor2] = ACTIONS(980), + [anon_sym_bit_DASHor2] = ACTIONS(980), [anon_sym_DOT_DOT2] = ACTIONS(978), [anon_sym_DOT] = ACTIONS(978), - [anon_sym_DOT_DOT_EQ] = ACTIONS(978), - [anon_sym_DOT_DOT_LT] = ACTIONS(978), [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), [anon_sym_DOT_DOT_LT2] = ACTIONS(980), - [anon_sym_null] = ACTIONS(980), - [anon_sym_true] = ACTIONS(980), - [anon_sym_false] = ACTIONS(980), - [aux_sym__val_number_decimal_token1] = ACTIONS(978), - [aux_sym__val_number_decimal_token2] = ACTIONS(980), - [aux_sym__val_number_decimal_token3] = ACTIONS(980), - [aux_sym__val_number_decimal_token4] = ACTIONS(980), - [aux_sym__val_number_token1] = ACTIONS(980), - [aux_sym__val_number_token2] = ACTIONS(980), - [aux_sym__val_number_token3] = ACTIONS(980), - [aux_sym__val_number_token4] = ACTIONS(980), - [aux_sym__val_number_token5] = ACTIONS(980), - [aux_sym__val_number_token6] = ACTIONS(980), - [anon_sym_0b] = ACTIONS(978), - [anon_sym_0o] = ACTIONS(978), - [anon_sym_0x] = ACTIONS(978), - [sym_val_date] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym__str_single_quotes] = ACTIONS(980), - [sym__str_back_ticks] = ACTIONS(980), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(980), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(980), [anon_sym_err_GT] = ACTIONS(978), [anon_sym_out_GT] = ACTIONS(978), [anon_sym_e_GT] = ACTIONS(978), @@ -210021,12 +210326,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), - [aux_sym_unquoted_token1] = ACTIONS(978), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(980), }, [1414] = { [sym_comment] = STATE(1414), + [ts_builtin_sym_end] = ACTIONS(986), + [anon_sym_EQ] = ACTIONS(984), + [anon_sym_PLUS_EQ] = ACTIONS(986), + [anon_sym_DASH_EQ] = ACTIONS(986), + [anon_sym_STAR_EQ] = ACTIONS(986), + [anon_sym_SLASH_EQ] = ACTIONS(986), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(986), [sym__newline] = ACTIONS(986), [anon_sym_SEMI] = ACTIONS(986), [anon_sym_PIPE] = ACTIONS(986), @@ -210038,44 +210348,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_RPAREN] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_GT2] = ACTIONS(984), [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_in2] = ACTIONS(986), + [anon_sym_STAR2] = ACTIONS(984), [anon_sym_QMARK2] = ACTIONS(4736), + [anon_sym_and2] = ACTIONS(986), + [anon_sym_xor2] = ACTIONS(986), + [anon_sym_or2] = ACTIONS(986), + [anon_sym_not_DASHin2] = ACTIONS(986), + [anon_sym_starts_DASHwith2] = ACTIONS(986), + [anon_sym_ends_DASHwith2] = ACTIONS(986), + [anon_sym_EQ_EQ2] = ACTIONS(986), + [anon_sym_BANG_EQ2] = ACTIONS(986), + [anon_sym_LT2] = ACTIONS(984), + [anon_sym_LT_EQ2] = ACTIONS(986), + [anon_sym_GT_EQ2] = ACTIONS(986), + [anon_sym_EQ_TILDE2] = ACTIONS(986), + [anon_sym_BANG_TILDE2] = ACTIONS(986), + [anon_sym_STAR_STAR2] = ACTIONS(986), + [anon_sym_PLUS_PLUS2] = ACTIONS(984), + [anon_sym_SLASH2] = ACTIONS(984), + [anon_sym_mod2] = ACTIONS(986), + [anon_sym_SLASH_SLASH2] = ACTIONS(986), + [anon_sym_PLUS2] = ACTIONS(984), + [anon_sym_bit_DASHshl2] = ACTIONS(986), + [anon_sym_bit_DASHshr2] = ACTIONS(986), + [anon_sym_bit_DASHand2] = ACTIONS(986), + [anon_sym_bit_DASHxor2] = ACTIONS(986), + [anon_sym_bit_DASHor2] = ACTIONS(986), [anon_sym_DOT_DOT2] = ACTIONS(984), [anon_sym_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ] = ACTIONS(984), - [anon_sym_DOT_DOT_LT] = ACTIONS(984), [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), [anon_sym_DOT_DOT_LT2] = ACTIONS(986), - [anon_sym_null] = ACTIONS(986), - [anon_sym_true] = ACTIONS(986), - [anon_sym_false] = ACTIONS(986), - [aux_sym__val_number_decimal_token1] = ACTIONS(984), - [aux_sym__val_number_decimal_token2] = ACTIONS(986), - [aux_sym__val_number_decimal_token3] = ACTIONS(986), - [aux_sym__val_number_decimal_token4] = ACTIONS(986), - [aux_sym__val_number_token1] = ACTIONS(986), - [aux_sym__val_number_token2] = ACTIONS(986), - [aux_sym__val_number_token3] = ACTIONS(986), - [aux_sym__val_number_token4] = ACTIONS(986), - [aux_sym__val_number_token5] = ACTIONS(986), - [aux_sym__val_number_token6] = ACTIONS(986), - [anon_sym_0b] = ACTIONS(984), - [anon_sym_0o] = ACTIONS(984), - [anon_sym_0x] = ACTIONS(984), - [sym_val_date] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), [anon_sym_err_GT] = ACTIONS(984), [anon_sym_out_GT] = ACTIONS(984), [anon_sym_e_GT] = ACTIONS(984), @@ -210092,367 +210397,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), - [aux_sym_unquoted_token1] = ACTIONS(984), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(986), }, [1415] = { [sym_comment] = STATE(1415), - [sym__newline] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_err_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_GT_PIPE] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_RPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_DOT_DOT2] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), - [anon_sym_DOT_DOT_LT] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), - [aux_sym__immediate_decimal_token1] = ACTIONS(4738), - [aux_sym__immediate_decimal_token2] = ACTIONS(4740), - [anon_sym_null] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1741), - [aux_sym__val_number_token5] = ACTIONS(1741), - [aux_sym__val_number_token6] = ACTIONS(1741), - [anon_sym_0b] = ACTIONS(1739), - [anon_sym_0o] = ACTIONS(1739), - [anon_sym_0x] = ACTIONS(1739), - [sym_val_date] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), - [anon_sym_err_GT] = ACTIONS(1739), - [anon_sym_out_GT] = ACTIONS(1739), - [anon_sym_e_GT] = ACTIONS(1739), - [anon_sym_o_GT] = ACTIONS(1739), - [anon_sym_err_PLUSout_GT] = ACTIONS(1739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), - [anon_sym_o_PLUSe_GT] = ACTIONS(1739), - [anon_sym_e_PLUSo_GT] = ACTIONS(1739), - [anon_sym_err_GT_GT] = ACTIONS(1741), - [anon_sym_out_GT_GT] = ACTIONS(1741), - [anon_sym_e_GT_GT] = ACTIONS(1741), - [anon_sym_o_GT_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), - [aux_sym_unquoted_token1] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), - }, - [1416] = { - [sym_comment] = STATE(1416), - [sym__newline] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_err_GT_PIPE] = ACTIONS(1892), - [anon_sym_out_GT_PIPE] = ACTIONS(1892), - [anon_sym_e_GT_PIPE] = ACTIONS(1892), - [anon_sym_o_GT_PIPE] = ACTIONS(1892), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1892), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1892), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1892), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1892), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_RPAREN] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1890), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_DASH2] = ACTIONS(1890), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_RBRACE] = ACTIONS(1892), - [anon_sym_DOT_DOT] = ACTIONS(1890), - [anon_sym_LPAREN2] = ACTIONS(1892), - [anon_sym_DOT_DOT2] = ACTIONS(1890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1890), - [anon_sym_DOT_DOT_LT] = ACTIONS(1890), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1892), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [aux_sym__val_number_decimal_token1] = ACTIONS(1890), - [aux_sym__val_number_decimal_token2] = ACTIONS(1892), - [aux_sym__val_number_decimal_token3] = ACTIONS(1892), - [aux_sym__val_number_decimal_token4] = ACTIONS(1892), - [aux_sym__val_number_token1] = ACTIONS(1892), - [aux_sym__val_number_token2] = ACTIONS(1892), - [aux_sym__val_number_token3] = ACTIONS(1892), - [aux_sym__val_number_token4] = ACTIONS(1892), - [aux_sym__val_number_token5] = ACTIONS(1892), - [aux_sym__val_number_token6] = ACTIONS(1892), - [anon_sym_0b] = ACTIONS(1890), - [anon_sym_0o] = ACTIONS(1890), - [anon_sym_0x] = ACTIONS(1890), - [sym_val_date] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [sym__str_single_quotes] = ACTIONS(1892), - [sym__str_back_ticks] = ACTIONS(1892), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1892), - [anon_sym_err_GT] = ACTIONS(1890), - [anon_sym_out_GT] = ACTIONS(1890), - [anon_sym_e_GT] = ACTIONS(1890), - [anon_sym_o_GT] = ACTIONS(1890), - [anon_sym_err_PLUSout_GT] = ACTIONS(1890), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1890), - [anon_sym_o_PLUSe_GT] = ACTIONS(1890), - [anon_sym_e_PLUSo_GT] = ACTIONS(1890), - [anon_sym_err_GT_GT] = ACTIONS(1892), - [anon_sym_out_GT_GT] = ACTIONS(1892), - [anon_sym_e_GT_GT] = ACTIONS(1892), - [anon_sym_o_GT_GT] = ACTIONS(1892), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1892), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1892), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1892), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1892), - [aux_sym_unquoted_token1] = ACTIONS(1890), - [aux_sym_unquoted_token2] = ACTIONS(1890), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1892), - }, - [1417] = { - [sym_comment] = STATE(1417), - [sym__newline] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_err_GT_PIPE] = ACTIONS(992), - [anon_sym_out_GT_PIPE] = ACTIONS(992), - [anon_sym_e_GT_PIPE] = ACTIONS(992), - [anon_sym_o_GT_PIPE] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_RPAREN] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_DOT_DOT] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(992), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ] = ACTIONS(990), - [anon_sym_DOT_DOT_LT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [anon_sym_null] = ACTIONS(992), - [anon_sym_true] = ACTIONS(992), - [anon_sym_false] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(992), - [aux_sym__val_number_decimal_token3] = ACTIONS(992), - [aux_sym__val_number_decimal_token4] = ACTIONS(992), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [aux_sym__val_number_token4] = ACTIONS(992), - [aux_sym__val_number_token5] = ACTIONS(992), - [aux_sym__val_number_token6] = ACTIONS(992), - [anon_sym_0b] = ACTIONS(990), - [anon_sym_0o] = ACTIONS(990), - [anon_sym_0x] = ACTIONS(990), - [sym_val_date] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), - [aux_sym_unquoted_token1] = ACTIONS(990), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(992), - }, - [1418] = { - [sym_comment] = STATE(1418), - [sym__newline] = ACTIONS(1609), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_PIPE] = ACTIONS(1609), - [anon_sym_err_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_GT_PIPE] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), - [anon_sym_RPAREN] = ACTIONS(1609), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1609), - [anon_sym_in2] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1609), - [anon_sym_RBRACE] = ACTIONS(1609), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1609), - [anon_sym_xor2] = ACTIONS(1609), - [anon_sym_or2] = ACTIONS(1609), - [anon_sym_not_DASHin2] = ACTIONS(1609), - [anon_sym_starts_DASHwith2] = ACTIONS(1609), - [anon_sym_ends_DASHwith2] = ACTIONS(1609), - [anon_sym_EQ_EQ2] = ACTIONS(1609), - [anon_sym_BANG_EQ2] = ACTIONS(1609), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1609), - [anon_sym_GT_EQ2] = ACTIONS(1609), - [anon_sym_EQ_TILDE2] = ACTIONS(1609), - [anon_sym_BANG_TILDE2] = ACTIONS(1609), - [anon_sym_LPAREN2] = ACTIONS(1609), - [anon_sym_STAR_STAR2] = ACTIONS(1609), - [anon_sym_PLUS_PLUS2] = ACTIONS(1609), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1609), - [anon_sym_SLASH_SLASH2] = ACTIONS(1609), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1609), - [anon_sym_bit_DASHshr2] = ACTIONS(1609), - [anon_sym_bit_DASHand2] = ACTIONS(1609), - [anon_sym_bit_DASHxor2] = ACTIONS(1609), - [anon_sym_bit_DASHor2] = ACTIONS(1609), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT] = ACTIONS(4742), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(4744), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1609), - [anon_sym_out_GT_GT] = ACTIONS(1609), - [anon_sym_e_GT_GT] = ACTIONS(1609), - [anon_sym_o_GT_GT] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), - [aux_sym_unquoted_token2] = ACTIONS(1607), - [anon_sym_POUND] = ACTIONS(247), - }, - [1419] = { - [sym_comment] = STATE(1419), - [sym__newline] = ACTIONS(1623), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1623), - [anon_sym_err_GT_PIPE] = ACTIONS(1623), - [anon_sym_out_GT_PIPE] = ACTIONS(1623), - [anon_sym_e_GT_PIPE] = ACTIONS(1623), - [anon_sym_o_GT_PIPE] = ACTIONS(1623), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), - [anon_sym_RPAREN] = ACTIONS(1623), - [anon_sym_GT2] = ACTIONS(1621), - [anon_sym_DASH2] = ACTIONS(1623), - [anon_sym_in2] = ACTIONS(1623), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_RBRACE] = ACTIONS(1623), - [anon_sym_STAR2] = ACTIONS(1621), - [anon_sym_and2] = ACTIONS(1623), - [anon_sym_xor2] = ACTIONS(1623), - [anon_sym_or2] = ACTIONS(1623), - [anon_sym_not_DASHin2] = ACTIONS(1623), - [anon_sym_starts_DASHwith2] = ACTIONS(1623), - [anon_sym_ends_DASHwith2] = ACTIONS(1623), - [anon_sym_EQ_EQ2] = ACTIONS(1623), - [anon_sym_BANG_EQ2] = ACTIONS(1623), - [anon_sym_LT2] = ACTIONS(1621), - [anon_sym_LT_EQ2] = ACTIONS(1623), - [anon_sym_GT_EQ2] = ACTIONS(1623), - [anon_sym_EQ_TILDE2] = ACTIONS(1623), - [anon_sym_BANG_TILDE2] = ACTIONS(1623), - [anon_sym_LPAREN2] = ACTIONS(1623), - [anon_sym_STAR_STAR2] = ACTIONS(1623), - [anon_sym_PLUS_PLUS2] = ACTIONS(1623), - [anon_sym_SLASH2] = ACTIONS(1621), - [anon_sym_mod2] = ACTIONS(1623), - [anon_sym_SLASH_SLASH2] = ACTIONS(1623), - [anon_sym_PLUS2] = ACTIONS(1621), - [anon_sym_bit_DASHshl2] = ACTIONS(1623), - [anon_sym_bit_DASHshr2] = ACTIONS(1623), - [anon_sym_bit_DASHand2] = ACTIONS(1623), - [anon_sym_bit_DASHxor2] = ACTIONS(1623), - [anon_sym_bit_DASHor2] = ACTIONS(1623), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [aux_sym__immediate_decimal_token1] = ACTIONS(4746), - [aux_sym__immediate_decimal_token2] = ACTIONS(4748), - [sym_filesize_unit] = ACTIONS(1621), - [sym_duration_unit] = ACTIONS(1623), - [anon_sym_err_GT] = ACTIONS(1621), - [anon_sym_out_GT] = ACTIONS(1621), - [anon_sym_e_GT] = ACTIONS(1621), - [anon_sym_o_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT] = ACTIONS(1621), - [anon_sym_err_GT_GT] = ACTIONS(1623), - [anon_sym_out_GT_GT] = ACTIONS(1623), - [anon_sym_e_GT_GT] = ACTIONS(1623), - [anon_sym_o_GT_GT] = ACTIONS(1623), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), - [aux_sym_unquoted_token2] = ACTIONS(1621), - [anon_sym_POUND] = ACTIONS(247), - }, - [1420] = { - [sym_comment] = STATE(1420), [anon_sym_EQ] = ACTIONS(1010), [anon_sym_PLUS_EQ] = ACTIONS(1012), [anon_sym_DASH_EQ] = ACTIONS(1012), @@ -210522,79 +210470,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), [anon_sym_POUND] = ACTIONS(247), }, - [1421] = { - [sym_comment] = STATE(1421), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_PLUS_EQ] = ACTIONS(1008), - [anon_sym_DASH_EQ] = ACTIONS(1008), - [anon_sym_STAR_EQ] = ACTIONS(1008), - [anon_sym_SLASH_EQ] = ACTIONS(1008), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1008), - [sym__newline] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_GT2] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(1006), - [anon_sym_in2] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym_STAR2] = ACTIONS(1006), - [anon_sym_and2] = ACTIONS(1008), - [anon_sym_xor2] = ACTIONS(1008), - [anon_sym_or2] = ACTIONS(1008), - [anon_sym_not_DASHin2] = ACTIONS(1008), - [anon_sym_starts_DASHwith2] = ACTIONS(1008), - [anon_sym_ends_DASHwith2] = ACTIONS(1008), - [anon_sym_EQ_EQ2] = ACTIONS(1008), - [anon_sym_BANG_EQ2] = ACTIONS(1008), - [anon_sym_LT2] = ACTIONS(1006), - [anon_sym_LT_EQ2] = ACTIONS(1008), - [anon_sym_GT_EQ2] = ACTIONS(1008), - [anon_sym_EQ_TILDE2] = ACTIONS(1008), - [anon_sym_BANG_TILDE2] = ACTIONS(1008), - [anon_sym_STAR_STAR2] = ACTIONS(1008), - [anon_sym_PLUS_PLUS2] = ACTIONS(1006), - [anon_sym_SLASH2] = ACTIONS(1006), - [anon_sym_mod2] = ACTIONS(1008), - [anon_sym_SLASH_SLASH2] = ACTIONS(1008), - [anon_sym_PLUS2] = ACTIONS(1006), - [anon_sym_bit_DASHshl2] = ACTIONS(1008), - [anon_sym_bit_DASHshr2] = ACTIONS(1008), - [anon_sym_bit_DASHand2] = ACTIONS(1008), - [anon_sym_bit_DASHxor2] = ACTIONS(1008), - [anon_sym_bit_DASHor2] = ACTIONS(1008), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), - [aux_sym_record_entry_token1] = ACTIONS(1008), - [anon_sym_err_GT] = ACTIONS(1006), - [anon_sym_out_GT] = ACTIONS(1006), - [anon_sym_e_GT] = ACTIONS(1006), - [anon_sym_o_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT] = ACTIONS(1006), - [anon_sym_err_GT_GT] = ACTIONS(1008), - [anon_sym_out_GT_GT] = ACTIONS(1008), - [anon_sym_e_GT_GT] = ACTIONS(1008), - [anon_sym_o_GT_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), - [anon_sym_POUND] = ACTIONS(247), - }, - [1422] = { - [sym_comment] = STATE(1422), + [1416] = { + [sym_comment] = STATE(1416), [anon_sym_EQ] = ACTIONS(1014), [anon_sym_PLUS_EQ] = ACTIONS(1016), [anon_sym_DASH_EQ] = ACTIONS(1016), @@ -210664,576 +210541,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), [anon_sym_POUND] = ACTIONS(247), }, - [1423] = { - [sym_comment] = STATE(1423), - [ts_builtin_sym_end] = ACTIONS(1609), - [sym__newline] = ACTIONS(1609), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_PIPE] = ACTIONS(1609), - [anon_sym_err_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_GT_PIPE] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1609), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_DOLLAR] = ACTIONS(1607), - [anon_sym_DASH_DASH] = ACTIONS(1609), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_LBRACE] = ACTIONS(1609), - [anon_sym_DOT_DOT] = ACTIONS(1607), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1607), - [anon_sym_DOT_DOT_LT] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [anon_sym_null] = ACTIONS(1609), - [anon_sym_true] = ACTIONS(1609), - [anon_sym_false] = ACTIONS(1609), - [aux_sym__val_number_decimal_token1] = ACTIONS(1607), - [aux_sym__val_number_decimal_token2] = ACTIONS(1609), - [aux_sym__val_number_decimal_token3] = ACTIONS(1609), - [aux_sym__val_number_decimal_token4] = ACTIONS(1609), - [aux_sym__val_number_token1] = ACTIONS(1609), - [aux_sym__val_number_token2] = ACTIONS(1609), - [aux_sym__val_number_token3] = ACTIONS(1609), - [aux_sym__val_number_token4] = ACTIONS(1609), - [aux_sym__val_number_token5] = ACTIONS(1609), - [aux_sym__val_number_token6] = ACTIONS(1609), - [anon_sym_0b] = ACTIONS(1607), - [sym_filesize_unit] = ACTIONS(1609), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_0o] = ACTIONS(1607), - [anon_sym_0x] = ACTIONS(1607), - [sym_val_date] = ACTIONS(1609), - [anon_sym_DQUOTE] = ACTIONS(1609), - [sym__str_single_quotes] = ACTIONS(1609), - [sym__str_back_ticks] = ACTIONS(1609), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1609), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1609), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1609), - [anon_sym_out_GT_GT] = ACTIONS(1609), - [anon_sym_e_GT_GT] = ACTIONS(1609), - [anon_sym_o_GT_GT] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), - [aux_sym_unquoted_token1] = ACTIONS(1607), - [aux_sym_unquoted_token2] = ACTIONS(1607), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1609), - }, - [1424] = { - [sym_comment] = STATE(1424), - [sym__newline] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_err_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_GT_PIPE] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_RPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(1741), - [anon_sym_DOT_DOT2] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), - [anon_sym_DOT_DOT_LT] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), - [anon_sym_null] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1741), - [aux_sym__val_number_token5] = ACTIONS(1741), - [aux_sym__val_number_token6] = ACTIONS(1741), - [anon_sym_0b] = ACTIONS(1739), - [anon_sym_0o] = ACTIONS(1739), - [anon_sym_0x] = ACTIONS(1739), - [sym_val_date] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), - [anon_sym_err_GT] = ACTIONS(1739), - [anon_sym_out_GT] = ACTIONS(1739), - [anon_sym_e_GT] = ACTIONS(1739), - [anon_sym_o_GT] = ACTIONS(1739), - [anon_sym_err_PLUSout_GT] = ACTIONS(1739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), - [anon_sym_o_PLUSe_GT] = ACTIONS(1739), - [anon_sym_e_PLUSo_GT] = ACTIONS(1739), - [anon_sym_err_GT_GT] = ACTIONS(1741), - [anon_sym_out_GT_GT] = ACTIONS(1741), - [anon_sym_e_GT_GT] = ACTIONS(1741), - [anon_sym_o_GT_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), - [aux_sym_unquoted_token1] = ACTIONS(1739), - [aux_sym_unquoted_token2] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), - }, - [1425] = { - [sym_comment] = STATE(1425), - [ts_builtin_sym_end] = ACTIONS(1623), - [sym__newline] = ACTIONS(1623), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1623), - [anon_sym_err_GT_PIPE] = ACTIONS(1623), - [anon_sym_out_GT_PIPE] = ACTIONS(1623), - [anon_sym_e_GT_PIPE] = ACTIONS(1623), - [anon_sym_o_GT_PIPE] = ACTIONS(1623), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(1623), - [anon_sym_DOLLAR] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_DASH2] = ACTIONS(1621), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_DOT_DOT] = ACTIONS(1621), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1621), - [anon_sym_DOT_DOT_LT] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [anon_sym_null] = ACTIONS(1623), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [aux_sym__val_number_decimal_token1] = ACTIONS(1621), - [aux_sym__val_number_decimal_token2] = ACTIONS(1623), - [aux_sym__val_number_decimal_token3] = ACTIONS(1623), - [aux_sym__val_number_decimal_token4] = ACTIONS(1623), - [aux_sym__val_number_token1] = ACTIONS(1623), - [aux_sym__val_number_token2] = ACTIONS(1623), - [aux_sym__val_number_token3] = ACTIONS(1623), - [aux_sym__val_number_token4] = ACTIONS(1623), - [aux_sym__val_number_token5] = ACTIONS(1623), - [aux_sym__val_number_token6] = ACTIONS(1623), - [anon_sym_0b] = ACTIONS(1621), - [sym_filesize_unit] = ACTIONS(1623), - [sym_duration_unit] = ACTIONS(1623), - [anon_sym_0o] = ACTIONS(1621), - [anon_sym_0x] = ACTIONS(1621), - [sym_val_date] = ACTIONS(1623), - [anon_sym_DQUOTE] = ACTIONS(1623), - [sym__str_single_quotes] = ACTIONS(1623), - [sym__str_back_ticks] = ACTIONS(1623), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1623), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1623), - [anon_sym_err_GT] = ACTIONS(1621), - [anon_sym_out_GT] = ACTIONS(1621), - [anon_sym_e_GT] = ACTIONS(1621), - [anon_sym_o_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT] = ACTIONS(1621), - [anon_sym_err_GT_GT] = ACTIONS(1623), - [anon_sym_out_GT_GT] = ACTIONS(1623), - [anon_sym_e_GT_GT] = ACTIONS(1623), - [anon_sym_o_GT_GT] = ACTIONS(1623), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), - [aux_sym_unquoted_token1] = ACTIONS(1621), - [aux_sym_unquoted_token2] = ACTIONS(1621), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1623), - }, - [1426] = { - [sym_comment] = STATE(1426), - [sym__newline] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_err_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_GT_PIPE] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_RPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), - [anon_sym_DOT_DOT_LT] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_0b] = ACTIONS(1755), - [anon_sym_0o] = ACTIONS(1755), - [anon_sym_0x] = ACTIONS(1755), - [sym_val_date] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), - [anon_sym_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [aux_sym_unquoted_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [1427] = { - [sym_comment] = STATE(1427), - [sym__newline] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_err_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_GT_PIPE] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_RPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT] = ACTIONS(4750), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), - [anon_sym_DOT_DOT_LT] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(4752), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_0b] = ACTIONS(1755), - [anon_sym_0o] = ACTIONS(1755), - [anon_sym_0x] = ACTIONS(1755), - [sym_val_date] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), - [anon_sym_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [1428] = { - [sym_comment] = STATE(1428), - [ts_builtin_sym_end] = ACTIONS(1675), - [sym__newline] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_err_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_GT_PIPE] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_LPAREN] = ACTIONS(1675), - [anon_sym_DOLLAR] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1675), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1675), - [anon_sym_DOT_DOT] = ACTIONS(1673), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1673), - [anon_sym_DOT_DOT_LT] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [anon_sym_null] = ACTIONS(1675), - [anon_sym_true] = ACTIONS(1675), - [anon_sym_false] = ACTIONS(1675), - [aux_sym__val_number_decimal_token1] = ACTIONS(1673), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1675), - [aux_sym__val_number_decimal_token4] = ACTIONS(1675), - [aux_sym__val_number_token1] = ACTIONS(1675), - [aux_sym__val_number_token2] = ACTIONS(1675), - [aux_sym__val_number_token3] = ACTIONS(1675), - [aux_sym__val_number_token4] = ACTIONS(1675), - [aux_sym__val_number_token5] = ACTIONS(1675), - [aux_sym__val_number_token6] = ACTIONS(1675), - [anon_sym_0b] = ACTIONS(1673), - [sym_filesize_unit] = ACTIONS(1675), - [sym_duration_unit] = ACTIONS(1675), - [anon_sym_0o] = ACTIONS(1673), - [anon_sym_0x] = ACTIONS(1673), - [sym_val_date] = ACTIONS(1675), - [anon_sym_DQUOTE] = ACTIONS(1675), - [sym__str_single_quotes] = ACTIONS(1675), - [sym__str_back_ticks] = ACTIONS(1675), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1675), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1675), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1675), - [anon_sym_out_GT_GT] = ACTIONS(1675), - [anon_sym_e_GT_GT] = ACTIONS(1675), - [anon_sym_o_GT_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), - [aux_sym_unquoted_token1] = ACTIONS(1673), - [aux_sym_unquoted_token2] = ACTIONS(1673), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1675), - }, - [1429] = { - [sym_comment] = STATE(1429), - [ts_builtin_sym_end] = ACTIONS(1765), - [sym__newline] = ACTIONS(1765), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_err_GT_PIPE] = ACTIONS(1765), - [anon_sym_out_GT_PIPE] = ACTIONS(1765), - [anon_sym_e_GT_PIPE] = ACTIONS(1765), - [anon_sym_o_GT_PIPE] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1763), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_DOT_DOT] = ACTIONS(1763), - [anon_sym_DOT_DOT2] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1763), - [anon_sym_DOT_DOT_LT] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), - [anon_sym_null] = ACTIONS(1765), - [anon_sym_true] = ACTIONS(1765), - [anon_sym_false] = ACTIONS(1765), - [aux_sym__val_number_decimal_token1] = ACTIONS(1763), - [aux_sym__val_number_decimal_token2] = ACTIONS(1765), - [aux_sym__val_number_decimal_token3] = ACTIONS(1765), - [aux_sym__val_number_decimal_token4] = ACTIONS(1765), - [aux_sym__val_number_token1] = ACTIONS(1765), - [aux_sym__val_number_token2] = ACTIONS(1765), - [aux_sym__val_number_token3] = ACTIONS(1765), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_0b] = ACTIONS(1763), - [sym_filesize_unit] = ACTIONS(1765), - [sym_duration_unit] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1763), - [anon_sym_0x] = ACTIONS(1763), - [sym_val_date] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym__str_single_quotes] = ACTIONS(1765), - [sym__str_back_ticks] = ACTIONS(1765), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1765), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1765), - [anon_sym_err_GT] = ACTIONS(1763), - [anon_sym_out_GT] = ACTIONS(1763), - [anon_sym_e_GT] = ACTIONS(1763), - [anon_sym_o_GT] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT] = ACTIONS(1763), - [anon_sym_err_GT_GT] = ACTIONS(1765), - [anon_sym_out_GT_GT] = ACTIONS(1765), - [anon_sym_e_GT_GT] = ACTIONS(1765), - [anon_sym_o_GT_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1765), - [aux_sym_unquoted_token1] = ACTIONS(1763), - [aux_sym_unquoted_token2] = ACTIONS(1763), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1765), - }, - [1430] = { - [sym_comment] = STATE(1430), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_LBRACK] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_RPAREN] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(994), - [anon_sym_DASH_DASH] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_LBRACE] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_DOT_DOT] = ACTIONS(994), - [anon_sym_QMARK2] = ACTIONS(996), - [anon_sym_DOT_DOT2] = ACTIONS(994), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ] = ACTIONS(994), - [anon_sym_DOT_DOT_LT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), - [anon_sym_DOT_DOT_LT2] = ACTIONS(996), - [anon_sym_null] = ACTIONS(996), - [anon_sym_true] = ACTIONS(996), - [anon_sym_false] = ACTIONS(996), - [aux_sym__val_number_decimal_token1] = ACTIONS(994), - [aux_sym__val_number_decimal_token2] = ACTIONS(996), - [aux_sym__val_number_decimal_token3] = ACTIONS(996), - [aux_sym__val_number_decimal_token4] = ACTIONS(996), - [aux_sym__val_number_token1] = ACTIONS(996), - [aux_sym__val_number_token2] = ACTIONS(996), - [aux_sym__val_number_token3] = ACTIONS(996), - [aux_sym__val_number_token4] = ACTIONS(996), - [aux_sym__val_number_token5] = ACTIONS(996), - [aux_sym__val_number_token6] = ACTIONS(996), - [anon_sym_0b] = ACTIONS(994), - [anon_sym_0o] = ACTIONS(994), - [anon_sym_0x] = ACTIONS(994), - [sym_val_date] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(996), - [sym__str_single_quotes] = ACTIONS(996), - [sym__str_back_ticks] = ACTIONS(996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(994), - [anon_sym_out_GT] = ACTIONS(994), - [anon_sym_e_GT] = ACTIONS(994), - [anon_sym_o_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT] = ACTIONS(994), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [aux_sym_unquoted_token1] = ACTIONS(994), + [1417] = { + [sym_comment] = STATE(1417), + [ts_builtin_sym_end] = ACTIONS(992), + [anon_sym_EQ] = ACTIONS(990), + [anon_sym_PLUS_EQ] = ACTIONS(992), + [anon_sym_DASH_EQ] = ACTIONS(992), + [anon_sym_STAR_EQ] = ACTIONS(992), + [anon_sym_SLASH_EQ] = ACTIONS(992), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(992), + [sym__newline] = ACTIONS(992), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(992), + [anon_sym_err_GT_PIPE] = ACTIONS(992), + [anon_sym_out_GT_PIPE] = ACTIONS(992), + [anon_sym_e_GT_PIPE] = ACTIONS(992), + [anon_sym_o_GT_PIPE] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), + [anon_sym_GT2] = ACTIONS(990), + [anon_sym_DASH2] = ACTIONS(990), + [anon_sym_in2] = ACTIONS(992), + [anon_sym_STAR2] = ACTIONS(990), + [anon_sym_QMARK2] = ACTIONS(992), + [anon_sym_and2] = ACTIONS(992), + [anon_sym_xor2] = ACTIONS(992), + [anon_sym_or2] = ACTIONS(992), + [anon_sym_not_DASHin2] = ACTIONS(992), + [anon_sym_starts_DASHwith2] = ACTIONS(992), + [anon_sym_ends_DASHwith2] = ACTIONS(992), + [anon_sym_EQ_EQ2] = ACTIONS(992), + [anon_sym_BANG_EQ2] = ACTIONS(992), + [anon_sym_LT2] = ACTIONS(990), + [anon_sym_LT_EQ2] = ACTIONS(992), + [anon_sym_GT_EQ2] = ACTIONS(992), + [anon_sym_EQ_TILDE2] = ACTIONS(992), + [anon_sym_BANG_TILDE2] = ACTIONS(992), + [anon_sym_STAR_STAR2] = ACTIONS(992), + [anon_sym_PLUS_PLUS2] = ACTIONS(990), + [anon_sym_SLASH2] = ACTIONS(990), + [anon_sym_mod2] = ACTIONS(992), + [anon_sym_SLASH_SLASH2] = ACTIONS(992), + [anon_sym_PLUS2] = ACTIONS(990), + [anon_sym_bit_DASHshl2] = ACTIONS(992), + [anon_sym_bit_DASHshr2] = ACTIONS(992), + [anon_sym_bit_DASHand2] = ACTIONS(992), + [anon_sym_bit_DASHxor2] = ACTIONS(992), + [anon_sym_bit_DASHor2] = ACTIONS(992), + [anon_sym_DOT_DOT2] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), + [anon_sym_DOT_DOT_LT2] = ACTIONS(992), + [anon_sym_err_GT] = ACTIONS(990), + [anon_sym_out_GT] = ACTIONS(990), + [anon_sym_e_GT] = ACTIONS(990), + [anon_sym_o_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT] = ACTIONS(990), + [anon_sym_err_GT_GT] = ACTIONS(992), + [anon_sym_out_GT_GT] = ACTIONS(992), + [anon_sym_e_GT_GT] = ACTIONS(992), + [anon_sym_o_GT_GT] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(996), }, - [1431] = { - [sym_comment] = STATE(1431), + [1418] = { + [sym_comment] = STATE(1418), [ts_builtin_sym_end] = ACTIONS(996), [anon_sym_EQ] = ACTIONS(994), [anon_sym_PLUS_EQ] = ACTIONS(996), @@ -211303,8 +210683,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), [anon_sym_POUND] = ACTIONS(247), }, - [1432] = { - [sym_comment] = STATE(1432), + [1419] = { + [sym_comment] = STATE(1419), + [ts_builtin_sym_end] = ACTIONS(1000), + [anon_sym_EQ] = ACTIONS(998), + [anon_sym_PLUS_EQ] = ACTIONS(1000), + [anon_sym_DASH_EQ] = ACTIONS(1000), + [anon_sym_STAR_EQ] = ACTIONS(1000), + [anon_sym_SLASH_EQ] = ACTIONS(1000), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1000), + [sym__newline] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_err_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_GT_PIPE] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), + [anon_sym_GT2] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(998), + [anon_sym_in2] = ACTIONS(1000), + [anon_sym_STAR2] = ACTIONS(998), + [anon_sym_QMARK2] = ACTIONS(1000), + [anon_sym_and2] = ACTIONS(1000), + [anon_sym_xor2] = ACTIONS(1000), + [anon_sym_or2] = ACTIONS(1000), + [anon_sym_not_DASHin2] = ACTIONS(1000), + [anon_sym_starts_DASHwith2] = ACTIONS(1000), + [anon_sym_ends_DASHwith2] = ACTIONS(1000), + [anon_sym_EQ_EQ2] = ACTIONS(1000), + [anon_sym_BANG_EQ2] = ACTIONS(1000), + [anon_sym_LT2] = ACTIONS(998), + [anon_sym_LT_EQ2] = ACTIONS(1000), + [anon_sym_GT_EQ2] = ACTIONS(1000), + [anon_sym_EQ_TILDE2] = ACTIONS(1000), + [anon_sym_BANG_TILDE2] = ACTIONS(1000), + [anon_sym_STAR_STAR2] = ACTIONS(1000), + [anon_sym_PLUS_PLUS2] = ACTIONS(998), + [anon_sym_SLASH2] = ACTIONS(998), + [anon_sym_mod2] = ACTIONS(1000), + [anon_sym_SLASH_SLASH2] = ACTIONS(1000), + [anon_sym_PLUS2] = ACTIONS(998), + [anon_sym_bit_DASHshl2] = ACTIONS(1000), + [anon_sym_bit_DASHshr2] = ACTIONS(1000), + [anon_sym_bit_DASHand2] = ACTIONS(1000), + [anon_sym_bit_DASHxor2] = ACTIONS(1000), + [anon_sym_bit_DASHor2] = ACTIONS(1000), + [anon_sym_DOT_DOT2] = ACTIONS(998), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1000), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1000), + [anon_sym_err_GT] = ACTIONS(998), + [anon_sym_out_GT] = ACTIONS(998), + [anon_sym_e_GT] = ACTIONS(998), + [anon_sym_o_GT] = ACTIONS(998), + [anon_sym_err_PLUSout_GT] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT] = ACTIONS(998), + [anon_sym_o_PLUSe_GT] = ACTIONS(998), + [anon_sym_e_PLUSo_GT] = ACTIONS(998), + [anon_sym_err_GT_GT] = ACTIONS(1000), + [anon_sym_out_GT_GT] = ACTIONS(1000), + [anon_sym_e_GT_GT] = ACTIONS(1000), + [anon_sym_o_GT_GT] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(247), + }, + [1420] = { + [sym_comment] = STATE(1420), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_EQ] = ACTIONS(1002), + [anon_sym_PLUS_EQ] = ACTIONS(1004), + [anon_sym_DASH_EQ] = ACTIONS(1004), + [anon_sym_STAR_EQ] = ACTIONS(1004), + [anon_sym_SLASH_EQ] = ACTIONS(1004), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1004), + [sym__newline] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_err_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_GT_PIPE] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_in2] = ACTIONS(1004), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_QMARK2] = ACTIONS(1004), + [anon_sym_and2] = ACTIONS(1004), + [anon_sym_xor2] = ACTIONS(1004), + [anon_sym_or2] = ACTIONS(1004), + [anon_sym_not_DASHin2] = ACTIONS(1004), + [anon_sym_starts_DASHwith2] = ACTIONS(1004), + [anon_sym_ends_DASHwith2] = ACTIONS(1004), + [anon_sym_EQ_EQ2] = ACTIONS(1004), + [anon_sym_BANG_EQ2] = ACTIONS(1004), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1004), + [anon_sym_GT_EQ2] = ACTIONS(1004), + [anon_sym_EQ_TILDE2] = ACTIONS(1004), + [anon_sym_BANG_TILDE2] = ACTIONS(1004), + [anon_sym_STAR_STAR2] = ACTIONS(1004), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1004), + [anon_sym_SLASH_SLASH2] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1004), + [anon_sym_bit_DASHshr2] = ACTIONS(1004), + [anon_sym_bit_DASHand2] = ACTIONS(1004), + [anon_sym_bit_DASHxor2] = ACTIONS(1004), + [anon_sym_bit_DASHor2] = ACTIONS(1004), + [anon_sym_DOT_DOT2] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1004), + [anon_sym_out_GT_GT] = ACTIONS(1004), + [anon_sym_e_GT_GT] = ACTIONS(1004), + [anon_sym_o_GT_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), + [anon_sym_POUND] = ACTIONS(247), + }, + [1421] = { + [sym_comment] = STATE(1421), + [anon_sym_EQ] = ACTIONS(1006), + [anon_sym_PLUS_EQ] = ACTIONS(1008), + [anon_sym_DASH_EQ] = ACTIONS(1008), + [anon_sym_STAR_EQ] = ACTIONS(1008), + [anon_sym_SLASH_EQ] = ACTIONS(1008), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1008), + [sym__newline] = ACTIONS(1006), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [anon_sym_GT2] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(1006), + [anon_sym_in2] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_STAR2] = ACTIONS(1006), + [anon_sym_and2] = ACTIONS(1008), + [anon_sym_xor2] = ACTIONS(1008), + [anon_sym_or2] = ACTIONS(1008), + [anon_sym_not_DASHin2] = ACTIONS(1008), + [anon_sym_starts_DASHwith2] = ACTIONS(1008), + [anon_sym_ends_DASHwith2] = ACTIONS(1008), + [anon_sym_EQ_EQ2] = ACTIONS(1008), + [anon_sym_BANG_EQ2] = ACTIONS(1008), + [anon_sym_LT2] = ACTIONS(1006), + [anon_sym_LT_EQ2] = ACTIONS(1008), + [anon_sym_GT_EQ2] = ACTIONS(1008), + [anon_sym_EQ_TILDE2] = ACTIONS(1008), + [anon_sym_BANG_TILDE2] = ACTIONS(1008), + [anon_sym_STAR_STAR2] = ACTIONS(1008), + [anon_sym_PLUS_PLUS2] = ACTIONS(1006), + [anon_sym_SLASH2] = ACTIONS(1006), + [anon_sym_mod2] = ACTIONS(1008), + [anon_sym_SLASH_SLASH2] = ACTIONS(1008), + [anon_sym_PLUS2] = ACTIONS(1006), + [anon_sym_bit_DASHshl2] = ACTIONS(1008), + [anon_sym_bit_DASHshr2] = ACTIONS(1008), + [anon_sym_bit_DASHand2] = ACTIONS(1008), + [anon_sym_bit_DASHxor2] = ACTIONS(1008), + [anon_sym_bit_DASHor2] = ACTIONS(1008), + [anon_sym_DOT_DOT2] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), + [aux_sym_record_entry_token1] = ACTIONS(1008), + [anon_sym_err_GT] = ACTIONS(1006), + [anon_sym_out_GT] = ACTIONS(1006), + [anon_sym_e_GT] = ACTIONS(1006), + [anon_sym_o_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT] = ACTIONS(1006), + [anon_sym_err_GT_GT] = ACTIONS(1008), + [anon_sym_out_GT_GT] = ACTIONS(1008), + [anon_sym_e_GT_GT] = ACTIONS(1008), + [anon_sym_o_GT_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(247), + }, + [1422] = { + [sym_comment] = STATE(1422), + [sym__newline] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_err_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_GT_PIPE] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), + [anon_sym_RPAREN] = ACTIONS(1575), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1575), + [anon_sym_in2] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_RBRACE] = ACTIONS(1575), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1575), + [anon_sym_xor2] = ACTIONS(1575), + [anon_sym_or2] = ACTIONS(1575), + [anon_sym_not_DASHin2] = ACTIONS(1575), + [anon_sym_starts_DASHwith2] = ACTIONS(1575), + [anon_sym_ends_DASHwith2] = ACTIONS(1575), + [anon_sym_EQ_EQ2] = ACTIONS(1575), + [anon_sym_BANG_EQ2] = ACTIONS(1575), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1575), + [anon_sym_GT_EQ2] = ACTIONS(1575), + [anon_sym_EQ_TILDE2] = ACTIONS(1575), + [anon_sym_BANG_TILDE2] = ACTIONS(1575), + [anon_sym_LPAREN2] = ACTIONS(1575), + [anon_sym_STAR_STAR2] = ACTIONS(1575), + [anon_sym_PLUS_PLUS2] = ACTIONS(1575), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1575), + [anon_sym_SLASH_SLASH2] = ACTIONS(1575), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1575), + [anon_sym_bit_DASHshr2] = ACTIONS(1575), + [anon_sym_bit_DASHand2] = ACTIONS(1575), + [anon_sym_bit_DASHxor2] = ACTIONS(1575), + [anon_sym_bit_DASHor2] = ACTIONS(1575), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT] = ACTIONS(4738), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(4740), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1575), + [anon_sym_out_GT_GT] = ACTIONS(1575), + [anon_sym_e_GT_GT] = ACTIONS(1575), + [anon_sym_o_GT_GT] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), + [aux_sym_unquoted_token2] = ACTIONS(1573), + [anon_sym_POUND] = ACTIONS(247), + }, + [1423] = { + [sym_comment] = STATE(1423), + [sym__newline] = ACTIONS(1587), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_err_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_GT_PIPE] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), + [anon_sym_RPAREN] = ACTIONS(1587), + [anon_sym_GT2] = ACTIONS(1585), + [anon_sym_DASH2] = ACTIONS(1587), + [anon_sym_in2] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1587), + [anon_sym_STAR2] = ACTIONS(1585), + [anon_sym_and2] = ACTIONS(1587), + [anon_sym_xor2] = ACTIONS(1587), + [anon_sym_or2] = ACTIONS(1587), + [anon_sym_not_DASHin2] = ACTIONS(1587), + [anon_sym_starts_DASHwith2] = ACTIONS(1587), + [anon_sym_ends_DASHwith2] = ACTIONS(1587), + [anon_sym_EQ_EQ2] = ACTIONS(1587), + [anon_sym_BANG_EQ2] = ACTIONS(1587), + [anon_sym_LT2] = ACTIONS(1585), + [anon_sym_LT_EQ2] = ACTIONS(1587), + [anon_sym_GT_EQ2] = ACTIONS(1587), + [anon_sym_EQ_TILDE2] = ACTIONS(1587), + [anon_sym_BANG_TILDE2] = ACTIONS(1587), + [anon_sym_LPAREN2] = ACTIONS(1587), + [anon_sym_STAR_STAR2] = ACTIONS(1587), + [anon_sym_PLUS_PLUS2] = ACTIONS(1587), + [anon_sym_SLASH2] = ACTIONS(1585), + [anon_sym_mod2] = ACTIONS(1587), + [anon_sym_SLASH_SLASH2] = ACTIONS(1587), + [anon_sym_PLUS2] = ACTIONS(1585), + [anon_sym_bit_DASHshl2] = ACTIONS(1587), + [anon_sym_bit_DASHshr2] = ACTIONS(1587), + [anon_sym_bit_DASHand2] = ACTIONS(1587), + [anon_sym_bit_DASHxor2] = ACTIONS(1587), + [anon_sym_bit_DASHor2] = ACTIONS(1587), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [aux_sym__immediate_decimal_token1] = ACTIONS(4742), + [aux_sym__immediate_decimal_token2] = ACTIONS(4744), + [sym_filesize_unit] = ACTIONS(1585), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1587), + [anon_sym_out_GT_GT] = ACTIONS(1587), + [anon_sym_e_GT_GT] = ACTIONS(1587), + [anon_sym_o_GT_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [aux_sym_unquoted_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(247), + }, + [1424] = { + [sym_comment] = STATE(1424), [anon_sym_EQ] = ACTIONS(1010), [anon_sym_PLUS_EQ] = ACTIONS(1012), [anon_sym_DASH_EQ] = ACTIONS(1012), @@ -211374,8 +211109,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), [anon_sym_POUND] = ACTIONS(247), }, - [1433] = { - [sym_comment] = STATE(1433), + [1425] = { + [sym_comment] = STATE(1425), [anon_sym_EQ] = ACTIONS(1014), [anon_sym_PLUS_EQ] = ACTIONS(1016), [anon_sym_DASH_EQ] = ACTIONS(1016), @@ -211445,157 +211180,1357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), [anon_sym_POUND] = ACTIONS(247), }, + [1426] = { + [sym_comment] = STATE(1426), + [sym__newline] = ACTIONS(1828), + [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_PIPE] = ACTIONS(1828), + [anon_sym_err_GT_PIPE] = ACTIONS(1828), + [anon_sym_out_GT_PIPE] = ACTIONS(1828), + [anon_sym_e_GT_PIPE] = ACTIONS(1828), + [anon_sym_o_GT_PIPE] = ACTIONS(1828), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1828), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1828), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1828), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1828), + [anon_sym_LBRACK] = ACTIONS(1828), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_RPAREN] = ACTIONS(1828), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_DASH_DASH] = ACTIONS(1828), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_LBRACE] = ACTIONS(1828), + [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_LPAREN2] = ACTIONS(1822), + [anon_sym_DOT_DOT2] = ACTIONS(4746), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1820), + [anon_sym_DOT_DOT_LT] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4748), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4748), + [anon_sym_null] = ACTIONS(1828), + [anon_sym_true] = ACTIONS(1828), + [anon_sym_false] = ACTIONS(1828), + [aux_sym__val_number_decimal_token1] = ACTIONS(1820), + [aux_sym__val_number_decimal_token2] = ACTIONS(1828), + [aux_sym__val_number_decimal_token3] = ACTIONS(1828), + [aux_sym__val_number_decimal_token4] = ACTIONS(1828), + [aux_sym__val_number_token1] = ACTIONS(1828), + [aux_sym__val_number_token2] = ACTIONS(1828), + [aux_sym__val_number_token3] = ACTIONS(1828), + [aux_sym__val_number_token4] = ACTIONS(1828), + [aux_sym__val_number_token5] = ACTIONS(1828), + [aux_sym__val_number_token6] = ACTIONS(1828), + [anon_sym_0b] = ACTIONS(1820), + [anon_sym_0o] = ACTIONS(1820), + [anon_sym_0x] = ACTIONS(1820), + [sym_val_date] = ACTIONS(1828), + [anon_sym_DQUOTE] = ACTIONS(1828), + [sym__str_single_quotes] = ACTIONS(1828), + [sym__str_back_ticks] = ACTIONS(1828), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1828), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1828), + [anon_sym_err_GT] = ACTIONS(1820), + [anon_sym_out_GT] = ACTIONS(1820), + [anon_sym_e_GT] = ACTIONS(1820), + [anon_sym_o_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT] = ACTIONS(1820), + [anon_sym_err_GT_GT] = ACTIONS(1828), + [anon_sym_out_GT_GT] = ACTIONS(1828), + [anon_sym_e_GT_GT] = ACTIONS(1828), + [anon_sym_o_GT_GT] = ACTIONS(1828), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1828), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1828), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1828), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1828), + [aux_sym_unquoted_token1] = ACTIONS(1820), + [aux_sym_unquoted_token2] = ACTIONS(1559), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1828), + }, + [1427] = { + [sym_comment] = STATE(1427), + [sym__newline] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_PIPE] = ACTIONS(1810), + [anon_sym_err_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_GT_PIPE] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1802), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_DOLLAR] = ACTIONS(1802), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_DASH2] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_DOT_DOT] = ACTIONS(1802), + [anon_sym_LPAREN2] = ACTIONS(1804), + [anon_sym_DOT_DOT2] = ACTIONS(4750), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1802), + [anon_sym_DOT_DOT_LT] = ACTIONS(1802), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4752), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4752), + [anon_sym_null] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1810), + [anon_sym_false] = ACTIONS(1810), + [aux_sym__val_number_decimal_token1] = ACTIONS(1802), + [aux_sym__val_number_decimal_token2] = ACTIONS(1810), + [aux_sym__val_number_decimal_token3] = ACTIONS(1810), + [aux_sym__val_number_decimal_token4] = ACTIONS(1810), + [aux_sym__val_number_token1] = ACTIONS(1810), + [aux_sym__val_number_token2] = ACTIONS(1810), + [aux_sym__val_number_token3] = ACTIONS(1810), + [aux_sym__val_number_token4] = ACTIONS(1810), + [aux_sym__val_number_token5] = ACTIONS(1810), + [aux_sym__val_number_token6] = ACTIONS(1810), + [anon_sym_0b] = ACTIONS(1802), + [anon_sym_0o] = ACTIONS(1802), + [anon_sym_0x] = ACTIONS(1802), + [sym_val_date] = ACTIONS(1810), + [anon_sym_DQUOTE] = ACTIONS(1810), + [sym__str_single_quotes] = ACTIONS(1810), + [sym__str_back_ticks] = ACTIONS(1810), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1810), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1810), + [anon_sym_err_GT] = ACTIONS(1802), + [anon_sym_out_GT] = ACTIONS(1802), + [anon_sym_e_GT] = ACTIONS(1802), + [anon_sym_o_GT] = ACTIONS(1802), + [anon_sym_err_PLUSout_GT] = ACTIONS(1802), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1802), + [anon_sym_o_PLUSe_GT] = ACTIONS(1802), + [anon_sym_e_PLUSo_GT] = ACTIONS(1802), + [anon_sym_err_GT_GT] = ACTIONS(1810), + [anon_sym_out_GT_GT] = ACTIONS(1810), + [anon_sym_e_GT_GT] = ACTIONS(1810), + [anon_sym_o_GT_GT] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), + [aux_sym_unquoted_token1] = ACTIONS(1802), + [aux_sym_unquoted_token2] = ACTIONS(1812), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1810), + }, + [1428] = { + [sym_comment] = STATE(1428), + [sym__newline] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_err_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_GT_PIPE] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1767), + [anon_sym_RPAREN] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_DOT_DOT] = ACTIONS(1765), + [anon_sym_DOT_DOT2] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(4754), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1765), + [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(4756), + [anon_sym_null] = ACTIONS(1767), + [anon_sym_true] = ACTIONS(1767), + [anon_sym_false] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1767), + [aux_sym__val_number_token5] = ACTIONS(1767), + [aux_sym__val_number_token6] = ACTIONS(1767), + [anon_sym_0b] = ACTIONS(1765), + [anon_sym_0o] = ACTIONS(1765), + [anon_sym_0x] = ACTIONS(1765), + [sym_val_date] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), + [anon_sym_err_GT] = ACTIONS(1765), + [anon_sym_out_GT] = ACTIONS(1765), + [anon_sym_e_GT] = ACTIONS(1765), + [anon_sym_o_GT] = ACTIONS(1765), + [anon_sym_err_PLUSout_GT] = ACTIONS(1765), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), + [anon_sym_o_PLUSe_GT] = ACTIONS(1765), + [anon_sym_e_PLUSo_GT] = ACTIONS(1765), + [anon_sym_err_GT_GT] = ACTIONS(1767), + [anon_sym_out_GT_GT] = ACTIONS(1767), + [anon_sym_e_GT_GT] = ACTIONS(1767), + [anon_sym_o_GT_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), + [aux_sym_unquoted_token1] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1767), + }, + [1429] = { + [sym_comment] = STATE(1429), + [ts_builtin_sym_end] = ACTIONS(1719), + [sym__newline] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_PIPE] = ACTIONS(1719), + [anon_sym_err_GT_PIPE] = ACTIONS(1719), + [anon_sym_out_GT_PIPE] = ACTIONS(1719), + [anon_sym_e_GT_PIPE] = ACTIONS(1719), + [anon_sym_o_GT_PIPE] = ACTIONS(1719), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1719), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1719), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1719), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1719), + [anon_sym_LBRACK] = ACTIONS(1719), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1719), + [anon_sym_DASH2] = ACTIONS(1707), + [anon_sym_LBRACE] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_DOT_DOT2] = ACTIONS(4722), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1707), + [anon_sym_DOT_DOT_LT] = ACTIONS(1707), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4724), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4724), + [anon_sym_null] = ACTIONS(1719), + [anon_sym_true] = ACTIONS(1719), + [anon_sym_false] = ACTIONS(1719), + [aux_sym__val_number_decimal_token1] = ACTIONS(1707), + [aux_sym__val_number_decimal_token2] = ACTIONS(1719), + [aux_sym__val_number_decimal_token3] = ACTIONS(1719), + [aux_sym__val_number_decimal_token4] = ACTIONS(1719), + [aux_sym__val_number_token1] = ACTIONS(1719), + [aux_sym__val_number_token2] = ACTIONS(1719), + [aux_sym__val_number_token3] = ACTIONS(1719), + [aux_sym__val_number_token4] = ACTIONS(1719), + [aux_sym__val_number_token5] = ACTIONS(1719), + [aux_sym__val_number_token6] = ACTIONS(1719), + [anon_sym_0b] = ACTIONS(1707), + [sym_filesize_unit] = ACTIONS(4758), + [sym_duration_unit] = ACTIONS(4760), + [anon_sym_0o] = ACTIONS(1707), + [anon_sym_0x] = ACTIONS(1707), + [sym_val_date] = ACTIONS(1719), + [anon_sym_DQUOTE] = ACTIONS(1719), + [sym__str_single_quotes] = ACTIONS(1719), + [sym__str_back_ticks] = ACTIONS(1719), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1719), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1719), + [anon_sym_err_GT] = ACTIONS(1707), + [anon_sym_out_GT] = ACTIONS(1707), + [anon_sym_e_GT] = ACTIONS(1707), + [anon_sym_o_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT] = ACTIONS(1707), + [anon_sym_err_GT_GT] = ACTIONS(1719), + [anon_sym_out_GT_GT] = ACTIONS(1719), + [anon_sym_e_GT_GT] = ACTIONS(1719), + [anon_sym_o_GT_GT] = ACTIONS(1719), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1719), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1719), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1719), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1719), + [aux_sym_unquoted_token1] = ACTIONS(1707), + [aux_sym_unquoted_token2] = ACTIONS(4762), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1719), + }, + [1430] = { + [sym_comment] = STATE(1430), + [ts_builtin_sym_end] = ACTIONS(1787), + [sym__newline] = ACTIONS(1787), + [anon_sym_SEMI] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_err_GT_PIPE] = ACTIONS(1787), + [anon_sym_out_GT_PIPE] = ACTIONS(1787), + [anon_sym_e_GT_PIPE] = ACTIONS(1787), + [anon_sym_o_GT_PIPE] = ACTIONS(1787), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1787), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_DOT_DOT2] = ACTIONS(1785), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), + [anon_sym_DOT_DOT_LT] = ACTIONS(1785), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), + [aux_sym__immediate_decimal_token2] = ACTIONS(4764), + [anon_sym_null] = ACTIONS(1787), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [aux_sym__val_number_decimal_token1] = ACTIONS(1785), + [aux_sym__val_number_decimal_token2] = ACTIONS(1787), + [aux_sym__val_number_decimal_token3] = ACTIONS(1787), + [aux_sym__val_number_decimal_token4] = ACTIONS(1787), + [aux_sym__val_number_token1] = ACTIONS(1787), + [aux_sym__val_number_token2] = ACTIONS(1787), + [aux_sym__val_number_token3] = ACTIONS(1787), + [aux_sym__val_number_token4] = ACTIONS(1787), + [aux_sym__val_number_token5] = ACTIONS(1787), + [aux_sym__val_number_token6] = ACTIONS(1787), + [anon_sym_0b] = ACTIONS(1785), + [anon_sym_0o] = ACTIONS(1785), + [anon_sym_0x] = ACTIONS(1785), + [sym_val_date] = ACTIONS(1787), + [anon_sym_DQUOTE] = ACTIONS(1787), + [sym__str_single_quotes] = ACTIONS(1787), + [sym__str_back_ticks] = ACTIONS(1787), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), + [anon_sym_err_GT] = ACTIONS(1785), + [anon_sym_out_GT] = ACTIONS(1785), + [anon_sym_e_GT] = ACTIONS(1785), + [anon_sym_o_GT] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT] = ACTIONS(1785), + [anon_sym_err_GT_GT] = ACTIONS(1787), + [anon_sym_out_GT_GT] = ACTIONS(1787), + [anon_sym_e_GT_GT] = ACTIONS(1787), + [anon_sym_o_GT_GT] = ACTIONS(1787), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), + [aux_sym_unquoted_token1] = ACTIONS(1785), + [aux_sym_unquoted_token2] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1787), + }, + [1431] = { + [sym_path] = STATE(1519), + [sym_comment] = STATE(1431), + [aux_sym_cell_path_repeat1] = STATE(1432), + [ts_builtin_sym_end] = ACTIONS(969), + [sym__newline] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(969), + [anon_sym_err_GT_PIPE] = ACTIONS(969), + [anon_sym_out_GT_PIPE] = ACTIONS(969), + [anon_sym_e_GT_PIPE] = ACTIONS(969), + [anon_sym_o_GT_PIPE] = ACTIONS(969), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(969), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(969), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(969), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_DASH_DASH] = ACTIONS(969), + [anon_sym_DASH2] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_DOT_DOT] = ACTIONS(967), + [anon_sym_DOT_DOT2] = ACTIONS(967), + [anon_sym_DOT] = ACTIONS(4676), + [anon_sym_DOT_DOT_EQ] = ACTIONS(967), + [anon_sym_DOT_DOT_LT] = ACTIONS(967), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(969), + [anon_sym_DOT_DOT_LT2] = ACTIONS(969), + [anon_sym_null] = ACTIONS(969), + [anon_sym_true] = ACTIONS(969), + [anon_sym_false] = ACTIONS(969), + [aux_sym__val_number_decimal_token1] = ACTIONS(967), + [aux_sym__val_number_decimal_token2] = ACTIONS(969), + [aux_sym__val_number_decimal_token3] = ACTIONS(969), + [aux_sym__val_number_decimal_token4] = ACTIONS(969), + [aux_sym__val_number_token1] = ACTIONS(969), + [aux_sym__val_number_token2] = ACTIONS(969), + [aux_sym__val_number_token3] = ACTIONS(969), + [aux_sym__val_number_token4] = ACTIONS(969), + [aux_sym__val_number_token5] = ACTIONS(969), + [aux_sym__val_number_token6] = ACTIONS(969), + [anon_sym_0b] = ACTIONS(967), + [anon_sym_0o] = ACTIONS(967), + [anon_sym_0x] = ACTIONS(967), + [sym_val_date] = ACTIONS(969), + [anon_sym_DQUOTE] = ACTIONS(969), + [sym__str_single_quotes] = ACTIONS(969), + [sym__str_back_ticks] = ACTIONS(969), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(969), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(969), + [anon_sym_err_GT] = ACTIONS(967), + [anon_sym_out_GT] = ACTIONS(967), + [anon_sym_e_GT] = ACTIONS(967), + [anon_sym_o_GT] = ACTIONS(967), + [anon_sym_err_PLUSout_GT] = ACTIONS(967), + [anon_sym_out_PLUSerr_GT] = ACTIONS(967), + [anon_sym_o_PLUSe_GT] = ACTIONS(967), + [anon_sym_e_PLUSo_GT] = ACTIONS(967), + [anon_sym_err_GT_GT] = ACTIONS(969), + [anon_sym_out_GT_GT] = ACTIONS(969), + [anon_sym_e_GT_GT] = ACTIONS(969), + [anon_sym_o_GT_GT] = ACTIONS(969), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(969), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(969), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), + [aux_sym_unquoted_token1] = ACTIONS(967), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(969), + }, + [1432] = { + [sym_path] = STATE(1519), + [sym_comment] = STATE(1432), + [aux_sym_cell_path_repeat1] = STATE(1432), + [ts_builtin_sym_end] = ACTIONS(973), + [sym__newline] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(973), + [anon_sym_err_GT_PIPE] = ACTIONS(973), + [anon_sym_out_GT_PIPE] = ACTIONS(973), + [anon_sym_e_GT_PIPE] = ACTIONS(973), + [anon_sym_o_GT_PIPE] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_DASH2] = ACTIONS(971), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_DOT_DOT] = ACTIONS(971), + [anon_sym_DOT_DOT2] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(4766), + [anon_sym_DOT_DOT_EQ] = ACTIONS(971), + [anon_sym_DOT_DOT_LT] = ACTIONS(971), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(973), + [anon_sym_DOT_DOT_LT2] = ACTIONS(973), + [anon_sym_null] = ACTIONS(973), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(971), + [aux_sym__val_number_decimal_token2] = ACTIONS(973), + [aux_sym__val_number_decimal_token3] = ACTIONS(973), + [aux_sym__val_number_decimal_token4] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(973), + [aux_sym__val_number_token2] = ACTIONS(973), + [aux_sym__val_number_token3] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(973), + [aux_sym__val_number_token5] = ACTIONS(973), + [aux_sym__val_number_token6] = ACTIONS(973), + [anon_sym_0b] = ACTIONS(971), + [anon_sym_0o] = ACTIONS(971), + [anon_sym_0x] = ACTIONS(971), + [sym_val_date] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [sym__str_single_quotes] = ACTIONS(973), + [sym__str_back_ticks] = ACTIONS(973), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(973), + [anon_sym_err_GT] = ACTIONS(971), + [anon_sym_out_GT] = ACTIONS(971), + [anon_sym_e_GT] = ACTIONS(971), + [anon_sym_o_GT] = ACTIONS(971), + [anon_sym_err_PLUSout_GT] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT] = ACTIONS(971), + [anon_sym_o_PLUSe_GT] = ACTIONS(971), + [anon_sym_e_PLUSo_GT] = ACTIONS(971), + [anon_sym_err_GT_GT] = ACTIONS(973), + [anon_sym_out_GT_GT] = ACTIONS(973), + [anon_sym_e_GT_GT] = ACTIONS(973), + [anon_sym_o_GT_GT] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), + [aux_sym_unquoted_token1] = ACTIONS(971), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(973), + }, + [1433] = { + [sym_comment] = STATE(1433), + [sym__newline] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_err_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_GT_PIPE] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_RPAREN] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_DOT_DOT] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1767), + [anon_sym_DOT_DOT2] = ACTIONS(1765), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1765), + [anon_sym_DOT_DOT_LT] = ACTIONS(1765), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), + [anon_sym_null] = ACTIONS(1767), + [anon_sym_true] = ACTIONS(1767), + [anon_sym_false] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1767), + [aux_sym__val_number_token5] = ACTIONS(1767), + [aux_sym__val_number_token6] = ACTIONS(1767), + [anon_sym_0b] = ACTIONS(1765), + [anon_sym_0o] = ACTIONS(1765), + [anon_sym_0x] = ACTIONS(1765), + [sym_val_date] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), + [anon_sym_err_GT] = ACTIONS(1765), + [anon_sym_out_GT] = ACTIONS(1765), + [anon_sym_e_GT] = ACTIONS(1765), + [anon_sym_o_GT] = ACTIONS(1765), + [anon_sym_err_PLUSout_GT] = ACTIONS(1765), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), + [anon_sym_o_PLUSe_GT] = ACTIONS(1765), + [anon_sym_e_PLUSo_GT] = ACTIONS(1765), + [anon_sym_err_GT_GT] = ACTIONS(1767), + [anon_sym_out_GT_GT] = ACTIONS(1767), + [anon_sym_e_GT_GT] = ACTIONS(1767), + [anon_sym_o_GT_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), + [aux_sym_unquoted_token1] = ACTIONS(1765), + [aux_sym_unquoted_token2] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1767), + }, [1434] = { [sym_comment] = STATE(1434), - [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(2214), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_err_GT_PIPE] = ACTIONS(2214), - [anon_sym_out_GT_PIPE] = ACTIONS(2214), - [anon_sym_e_GT_PIPE] = ACTIONS(2214), - [anon_sym_o_GT_PIPE] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2214), - [anon_sym_GT2] = ACTIONS(2214), - [anon_sym_DASH2] = ACTIONS(2214), - [anon_sym_in2] = ACTIONS(2214), - [anon_sym_STAR2] = ACTIONS(2214), - [anon_sym_and2] = ACTIONS(2214), - [anon_sym_xor2] = ACTIONS(2214), - [anon_sym_or2] = ACTIONS(2214), - [anon_sym_not_DASHin2] = ACTIONS(2214), - [anon_sym_starts_DASHwith2] = ACTIONS(2214), - [anon_sym_ends_DASHwith2] = ACTIONS(2214), - [anon_sym_EQ_EQ2] = ACTIONS(2214), - [anon_sym_BANG_EQ2] = ACTIONS(2214), - [anon_sym_LT2] = ACTIONS(2214), - [anon_sym_LT_EQ2] = ACTIONS(2214), - [anon_sym_GT_EQ2] = ACTIONS(2214), - [anon_sym_EQ_TILDE2] = ACTIONS(2214), - [anon_sym_BANG_TILDE2] = ACTIONS(2214), - [anon_sym_STAR_STAR2] = ACTIONS(2214), - [anon_sym_PLUS_PLUS2] = ACTIONS(2214), - [anon_sym_SLASH2] = ACTIONS(2214), - [anon_sym_mod2] = ACTIONS(2214), - [anon_sym_SLASH_SLASH2] = ACTIONS(2214), - [anon_sym_PLUS2] = ACTIONS(2214), - [anon_sym_bit_DASHshl2] = ACTIONS(2214), - [anon_sym_bit_DASHshr2] = ACTIONS(2214), - [anon_sym_bit_DASHand2] = ACTIONS(2214), - [anon_sym_bit_DASHxor2] = ACTIONS(2214), - [anon_sym_bit_DASHor2] = ACTIONS(2214), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(1741), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym_PIPE] = ACTIONS(1741), + [anon_sym_err_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_GT_PIPE] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_RPAREN] = ACTIONS(1741), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_DASH_DASH] = ACTIONS(1741), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1741), + [anon_sym_RBRACE] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_DOT_DOT2] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), + [anon_sym_DOT_DOT_LT] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), + [anon_sym_null] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1741), + [anon_sym_false] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1741), + [aux_sym__val_number_token5] = ACTIONS(1741), + [aux_sym__val_number_token6] = ACTIONS(1741), + [anon_sym_0b] = ACTIONS(1739), + [anon_sym_0o] = ACTIONS(1739), + [anon_sym_0x] = ACTIONS(1739), + [sym_val_date] = ACTIONS(1741), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), + [anon_sym_err_GT] = ACTIONS(1739), + [anon_sym_out_GT] = ACTIONS(1739), + [anon_sym_e_GT] = ACTIONS(1739), + [anon_sym_o_GT] = ACTIONS(1739), + [anon_sym_err_PLUSout_GT] = ACTIONS(1739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), + [anon_sym_o_PLUSe_GT] = ACTIONS(1739), + [anon_sym_e_PLUSo_GT] = ACTIONS(1739), + [anon_sym_err_GT_GT] = ACTIONS(1741), + [anon_sym_out_GT_GT] = ACTIONS(1741), + [anon_sym_e_GT_GT] = ACTIONS(1741), + [anon_sym_o_GT_GT] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), + [aux_sym_unquoted_token1] = ACTIONS(1739), + [aux_sym_unquoted_token2] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), }, [1435] = { [sym_comment] = STATE(1435), - [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(2222), - [anon_sym_PIPE] = ACTIONS(2222), - [anon_sym_err_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_GT_PIPE] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2222), - [anon_sym_GT2] = ACTIONS(2222), - [anon_sym_DASH2] = ACTIONS(2222), - [anon_sym_in2] = ACTIONS(2222), - [anon_sym_STAR2] = ACTIONS(2222), - [anon_sym_and2] = ACTIONS(2222), - [anon_sym_xor2] = ACTIONS(2222), - [anon_sym_or2] = ACTIONS(2222), - [anon_sym_not_DASHin2] = ACTIONS(2222), - [anon_sym_starts_DASHwith2] = ACTIONS(2222), - [anon_sym_ends_DASHwith2] = ACTIONS(2222), - [anon_sym_EQ_EQ2] = ACTIONS(2222), - [anon_sym_BANG_EQ2] = ACTIONS(2222), - [anon_sym_LT2] = ACTIONS(2222), - [anon_sym_LT_EQ2] = ACTIONS(2222), - [anon_sym_GT_EQ2] = ACTIONS(2222), - [anon_sym_EQ_TILDE2] = ACTIONS(2222), - [anon_sym_BANG_TILDE2] = ACTIONS(2222), - [anon_sym_STAR_STAR2] = ACTIONS(2222), - [anon_sym_PLUS_PLUS2] = ACTIONS(2222), - [anon_sym_SLASH2] = ACTIONS(2222), - [anon_sym_mod2] = ACTIONS(2222), - [anon_sym_SLASH_SLASH2] = ACTIONS(2222), - [anon_sym_PLUS2] = ACTIONS(2222), - [anon_sym_bit_DASHshl2] = ACTIONS(2222), - [anon_sym_bit_DASHshr2] = ACTIONS(2222), - [anon_sym_bit_DASHand2] = ACTIONS(2222), - [anon_sym_bit_DASHxor2] = ACTIONS(2222), - [anon_sym_bit_DASHor2] = ACTIONS(2222), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(1787), + [anon_sym_SEMI] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_err_GT_PIPE] = ACTIONS(1787), + [anon_sym_out_GT_PIPE] = ACTIONS(1787), + [anon_sym_e_GT_PIPE] = ACTIONS(1787), + [anon_sym_o_GT_PIPE] = ACTIONS(1787), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_RPAREN] = ACTIONS(1787), + [anon_sym_DOLLAR] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1787), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_RBRACE] = ACTIONS(1787), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_DOT_DOT2] = ACTIONS(1785), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), + [anon_sym_DOT_DOT_LT] = ACTIONS(1785), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), + [anon_sym_null] = ACTIONS(1787), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [aux_sym__val_number_decimal_token1] = ACTIONS(1785), + [aux_sym__val_number_decimal_token2] = ACTIONS(1787), + [aux_sym__val_number_decimal_token3] = ACTIONS(1787), + [aux_sym__val_number_decimal_token4] = ACTIONS(1787), + [aux_sym__val_number_token1] = ACTIONS(1787), + [aux_sym__val_number_token2] = ACTIONS(1787), + [aux_sym__val_number_token3] = ACTIONS(1787), + [aux_sym__val_number_token4] = ACTIONS(1787), + [aux_sym__val_number_token5] = ACTIONS(1787), + [aux_sym__val_number_token6] = ACTIONS(1787), + [anon_sym_0b] = ACTIONS(1785), + [anon_sym_0o] = ACTIONS(1785), + [anon_sym_0x] = ACTIONS(1785), + [sym_val_date] = ACTIONS(1787), + [anon_sym_DQUOTE] = ACTIONS(1787), + [sym__str_single_quotes] = ACTIONS(1787), + [sym__str_back_ticks] = ACTIONS(1787), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), + [anon_sym_err_GT] = ACTIONS(1785), + [anon_sym_out_GT] = ACTIONS(1785), + [anon_sym_e_GT] = ACTIONS(1785), + [anon_sym_o_GT] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT] = ACTIONS(1785), + [anon_sym_err_GT_GT] = ACTIONS(1787), + [anon_sym_out_GT_GT] = ACTIONS(1787), + [anon_sym_e_GT_GT] = ACTIONS(1787), + [anon_sym_o_GT_GT] = ACTIONS(1787), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), + [aux_sym_unquoted_token1] = ACTIONS(1785), + [aux_sym_unquoted_token2] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1787), }, [1436] = { [sym_comment] = STATE(1436), - [ts_builtin_sym_end] = ACTIONS(1000), - [anon_sym_EQ] = ACTIONS(998), - [anon_sym_PLUS_EQ] = ACTIONS(1000), - [anon_sym_DASH_EQ] = ACTIONS(1000), - [anon_sym_STAR_EQ] = ACTIONS(1000), - [anon_sym_SLASH_EQ] = ACTIONS(1000), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1000), + [sym__newline] = ACTIONS(1843), + [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_err_GT_PIPE] = ACTIONS(1843), + [anon_sym_out_GT_PIPE] = ACTIONS(1843), + [anon_sym_e_GT_PIPE] = ACTIONS(1843), + [anon_sym_o_GT_PIPE] = ACTIONS(1843), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1843), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1843), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1843), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_RPAREN] = ACTIONS(1843), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [anon_sym_DASH2] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_RBRACE] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(1843), + [anon_sym_DOT_DOT2] = ACTIONS(1841), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1841), + [anon_sym_DOT_DOT_LT] = ACTIONS(1841), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1843), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1843), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [aux_sym__val_number_decimal_token1] = ACTIONS(1841), + [aux_sym__val_number_decimal_token2] = ACTIONS(1843), + [aux_sym__val_number_decimal_token3] = ACTIONS(1843), + [aux_sym__val_number_decimal_token4] = ACTIONS(1843), + [aux_sym__val_number_token1] = ACTIONS(1843), + [aux_sym__val_number_token2] = ACTIONS(1843), + [aux_sym__val_number_token3] = ACTIONS(1843), + [aux_sym__val_number_token4] = ACTIONS(1843), + [aux_sym__val_number_token5] = ACTIONS(1843), + [aux_sym__val_number_token6] = ACTIONS(1843), + [anon_sym_0b] = ACTIONS(1841), + [anon_sym_0o] = ACTIONS(1841), + [anon_sym_0x] = ACTIONS(1841), + [sym_val_date] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [sym__str_single_quotes] = ACTIONS(1843), + [sym__str_back_ticks] = ACTIONS(1843), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1843), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1843), + [anon_sym_err_GT] = ACTIONS(1841), + [anon_sym_out_GT] = ACTIONS(1841), + [anon_sym_e_GT] = ACTIONS(1841), + [anon_sym_o_GT] = ACTIONS(1841), + [anon_sym_err_PLUSout_GT] = ACTIONS(1841), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1841), + [anon_sym_o_PLUSe_GT] = ACTIONS(1841), + [anon_sym_e_PLUSo_GT] = ACTIONS(1841), + [anon_sym_err_GT_GT] = ACTIONS(1843), + [anon_sym_out_GT_GT] = ACTIONS(1843), + [anon_sym_e_GT_GT] = ACTIONS(1843), + [anon_sym_o_GT_GT] = ACTIONS(1843), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1843), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1843), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1843), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1843), + [aux_sym_unquoted_token1] = ACTIONS(1841), + [aux_sym_unquoted_token2] = ACTIONS(1841), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1843), + }, + [1437] = { + [sym_comment] = STATE(1437), + [sym__newline] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_err_GT_PIPE] = ACTIONS(980), + [anon_sym_out_GT_PIPE] = ACTIONS(980), + [anon_sym_e_GT_PIPE] = ACTIONS(980), + [anon_sym_o_GT_PIPE] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), + [anon_sym_LBRACK] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_RPAREN] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_DASH2] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_DOT_DOT] = ACTIONS(978), + [anon_sym_QMARK2] = ACTIONS(4769), + [anon_sym_DOT_DOT2] = ACTIONS(978), + [anon_sym_DOT] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ] = ACTIONS(978), + [anon_sym_DOT_DOT_LT] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), + [anon_sym_DOT_DOT_LT2] = ACTIONS(980), + [anon_sym_null] = ACTIONS(980), + [anon_sym_true] = ACTIONS(980), + [anon_sym_false] = ACTIONS(980), + [aux_sym__val_number_decimal_token1] = ACTIONS(978), + [aux_sym__val_number_decimal_token2] = ACTIONS(980), + [aux_sym__val_number_decimal_token3] = ACTIONS(980), + [aux_sym__val_number_decimal_token4] = ACTIONS(980), + [aux_sym__val_number_token1] = ACTIONS(980), + [aux_sym__val_number_token2] = ACTIONS(980), + [aux_sym__val_number_token3] = ACTIONS(980), + [aux_sym__val_number_token4] = ACTIONS(980), + [aux_sym__val_number_token5] = ACTIONS(980), + [aux_sym__val_number_token6] = ACTIONS(980), + [anon_sym_0b] = ACTIONS(978), + [anon_sym_0o] = ACTIONS(978), + [anon_sym_0x] = ACTIONS(978), + [sym_val_date] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(980), + [sym__str_single_quotes] = ACTIONS(980), + [sym__str_back_ticks] = ACTIONS(980), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(980), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(980), + [anon_sym_err_GT] = ACTIONS(978), + [anon_sym_out_GT] = ACTIONS(978), + [anon_sym_e_GT] = ACTIONS(978), + [anon_sym_o_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT] = ACTIONS(978), + [anon_sym_err_GT_GT] = ACTIONS(980), + [anon_sym_out_GT_GT] = ACTIONS(980), + [anon_sym_e_GT_GT] = ACTIONS(980), + [anon_sym_o_GT_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), + [aux_sym_unquoted_token1] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(980), + }, + [1438] = { + [sym_comment] = STATE(1438), + [sym__newline] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_PIPE] = ACTIONS(986), + [anon_sym_err_GT_PIPE] = ACTIONS(986), + [anon_sym_out_GT_PIPE] = ACTIONS(986), + [anon_sym_e_GT_PIPE] = ACTIONS(986), + [anon_sym_o_GT_PIPE] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_RPAREN] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_QMARK2] = ACTIONS(4771), + [anon_sym_DOT_DOT2] = ACTIONS(984), + [anon_sym_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(984), + [anon_sym_DOT_DOT_LT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), + [anon_sym_DOT_DOT_LT2] = ACTIONS(986), + [anon_sym_null] = ACTIONS(986), + [anon_sym_true] = ACTIONS(986), + [anon_sym_false] = ACTIONS(986), + [aux_sym__val_number_decimal_token1] = ACTIONS(984), + [aux_sym__val_number_decimal_token2] = ACTIONS(986), + [aux_sym__val_number_decimal_token3] = ACTIONS(986), + [aux_sym__val_number_decimal_token4] = ACTIONS(986), + [aux_sym__val_number_token1] = ACTIONS(986), + [aux_sym__val_number_token2] = ACTIONS(986), + [aux_sym__val_number_token3] = ACTIONS(986), + [aux_sym__val_number_token4] = ACTIONS(986), + [aux_sym__val_number_token5] = ACTIONS(986), + [aux_sym__val_number_token6] = ACTIONS(986), + [anon_sym_0b] = ACTIONS(984), + [anon_sym_0o] = ACTIONS(984), + [anon_sym_0x] = ACTIONS(984), + [sym_val_date] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym__str_single_quotes] = ACTIONS(986), + [sym__str_back_ticks] = ACTIONS(986), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), + [anon_sym_err_GT] = ACTIONS(984), + [anon_sym_out_GT] = ACTIONS(984), + [anon_sym_e_GT] = ACTIONS(984), + [anon_sym_o_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT] = ACTIONS(984), + [anon_sym_err_GT_GT] = ACTIONS(986), + [anon_sym_out_GT_GT] = ACTIONS(986), + [anon_sym_e_GT_GT] = ACTIONS(986), + [anon_sym_o_GT_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), + [aux_sym_unquoted_token1] = ACTIONS(984), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(986), + }, + [1439] = { + [sym_comment] = STATE(1439), + [anon_sym_STAR_STAR] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_SLASH] = ACTIONS(3197), + [anon_sym_mod] = ACTIONS(3195), + [anon_sym_SLASH_SLASH] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_bit_DASHshl] = ACTIONS(3195), + [anon_sym_bit_DASHshr] = ACTIONS(3195), + [anon_sym_EQ_TILDE] = ACTIONS(3195), + [anon_sym_BANG_TILDE] = ACTIONS(3195), + [anon_sym_bit_DASHand] = ACTIONS(3195), + [anon_sym_bit_DASHxor] = ACTIONS(3195), + [anon_sym_bit_DASHor] = ACTIONS(3195), + [anon_sym_and] = ACTIONS(3195), + [anon_sym_xor] = ACTIONS(3195), + [anon_sym_or] = ACTIONS(3195), + [anon_sym_in] = ACTIONS(3195), + [anon_sym_not_DASHin] = ACTIONS(3195), + [anon_sym_starts_DASHwith] = ACTIONS(3195), + [anon_sym_ends_DASHwith] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT] = ACTIONS(3197), + [anon_sym_GT_EQ] = ACTIONS(3195), + [aux_sym_cmd_identifier_token41] = ACTIONS(3199), + [sym__newline] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2246), + [anon_sym_err_GT_PIPE] = ACTIONS(2246), + [anon_sym_out_GT_PIPE] = ACTIONS(2246), + [anon_sym_e_GT_PIPE] = ACTIONS(2246), + [anon_sym_o_GT_PIPE] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2246), + [anon_sym_GT2] = ACTIONS(2246), + [anon_sym_DASH2] = ACTIONS(2246), + [anon_sym_in2] = ACTIONS(2246), + [anon_sym_STAR2] = ACTIONS(2246), + [anon_sym_and2] = ACTIONS(2246), + [anon_sym_xor2] = ACTIONS(2246), + [anon_sym_or2] = ACTIONS(2246), + [anon_sym_not_DASHin2] = ACTIONS(2246), + [anon_sym_starts_DASHwith2] = ACTIONS(2246), + [anon_sym_ends_DASHwith2] = ACTIONS(2246), + [anon_sym_EQ_EQ2] = ACTIONS(2246), + [anon_sym_BANG_EQ2] = ACTIONS(2246), + [anon_sym_LT2] = ACTIONS(2246), + [anon_sym_LT_EQ2] = ACTIONS(2246), + [anon_sym_GT_EQ2] = ACTIONS(2246), + [anon_sym_EQ_TILDE2] = ACTIONS(2246), + [anon_sym_BANG_TILDE2] = ACTIONS(2246), + [anon_sym_STAR_STAR2] = ACTIONS(2246), + [anon_sym_PLUS_PLUS2] = ACTIONS(2246), + [anon_sym_SLASH2] = ACTIONS(2246), + [anon_sym_mod2] = ACTIONS(2246), + [anon_sym_SLASH_SLASH2] = ACTIONS(2246), + [anon_sym_PLUS2] = ACTIONS(2246), + [anon_sym_bit_DASHshl2] = ACTIONS(2246), + [anon_sym_bit_DASHshr2] = ACTIONS(2246), + [anon_sym_bit_DASHand2] = ACTIONS(2246), + [anon_sym_bit_DASHxor2] = ACTIONS(2246), + [anon_sym_bit_DASHor2] = ACTIONS(2246), + [anon_sym_POUND] = ACTIONS(3), + }, + [1440] = { + [sym_comment] = STATE(1440), + [ts_builtin_sym_end] = ACTIONS(1575), + [sym__newline] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_err_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_GT_PIPE] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), + [anon_sym_LBRACK] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_DOLLAR] = ACTIONS(1573), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1573), + [anon_sym_DOT_DOT_LT] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [anon_sym_null] = ACTIONS(1575), + [anon_sym_true] = ACTIONS(1575), + [anon_sym_false] = ACTIONS(1575), + [aux_sym__val_number_decimal_token1] = ACTIONS(1573), + [aux_sym__val_number_decimal_token2] = ACTIONS(1575), + [aux_sym__val_number_decimal_token3] = ACTIONS(1575), + [aux_sym__val_number_decimal_token4] = ACTIONS(1575), + [aux_sym__val_number_token1] = ACTIONS(1575), + [aux_sym__val_number_token2] = ACTIONS(1575), + [aux_sym__val_number_token3] = ACTIONS(1575), + [aux_sym__val_number_token4] = ACTIONS(1575), + [aux_sym__val_number_token5] = ACTIONS(1575), + [aux_sym__val_number_token6] = ACTIONS(1575), + [anon_sym_0b] = ACTIONS(1573), + [sym_filesize_unit] = ACTIONS(1575), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_0o] = ACTIONS(1573), + [anon_sym_0x] = ACTIONS(1573), + [sym_val_date] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [sym__str_single_quotes] = ACTIONS(1575), + [sym__str_back_ticks] = ACTIONS(1575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1575), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1575), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1575), + [anon_sym_out_GT_GT] = ACTIONS(1575), + [anon_sym_e_GT_GT] = ACTIONS(1575), + [anon_sym_o_GT_GT] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), + [aux_sym_unquoted_token1] = ACTIONS(1573), + [aux_sym_unquoted_token2] = ACTIONS(1573), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1575), + }, + [1441] = { + [sym_comment] = STATE(1441), + [anon_sym_STAR_STAR] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_SLASH] = ACTIONS(3197), + [anon_sym_mod] = ACTIONS(3195), + [anon_sym_SLASH_SLASH] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_bit_DASHshl] = ACTIONS(3195), + [anon_sym_bit_DASHshr] = ACTIONS(3195), + [anon_sym_EQ_TILDE] = ACTIONS(3195), + [anon_sym_BANG_TILDE] = ACTIONS(3195), + [anon_sym_bit_DASHand] = ACTIONS(3195), + [anon_sym_bit_DASHxor] = ACTIONS(3195), + [anon_sym_bit_DASHor] = ACTIONS(3195), + [anon_sym_and] = ACTIONS(3195), + [anon_sym_xor] = ACTIONS(3195), + [anon_sym_or] = ACTIONS(3195), + [anon_sym_in] = ACTIONS(3195), + [anon_sym_not_DASHin] = ACTIONS(3195), + [anon_sym_starts_DASHwith] = ACTIONS(3195), + [anon_sym_ends_DASHwith] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT] = ACTIONS(3197), + [anon_sym_GT_EQ] = ACTIONS(3195), + [aux_sym_cmd_identifier_token41] = ACTIONS(3199), + [sym__newline] = ACTIONS(2254), + [anon_sym_PIPE] = ACTIONS(2254), + [anon_sym_err_GT_PIPE] = ACTIONS(2254), + [anon_sym_out_GT_PIPE] = ACTIONS(2254), + [anon_sym_e_GT_PIPE] = ACTIONS(2254), + [anon_sym_o_GT_PIPE] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), + [anon_sym_GT2] = ACTIONS(2254), + [anon_sym_DASH2] = ACTIONS(2254), + [anon_sym_in2] = ACTIONS(2254), + [anon_sym_STAR2] = ACTIONS(2254), + [anon_sym_and2] = ACTIONS(2254), + [anon_sym_xor2] = ACTIONS(2254), + [anon_sym_or2] = ACTIONS(2254), + [anon_sym_not_DASHin2] = ACTIONS(2254), + [anon_sym_starts_DASHwith2] = ACTIONS(2254), + [anon_sym_ends_DASHwith2] = ACTIONS(2254), + [anon_sym_EQ_EQ2] = ACTIONS(2254), + [anon_sym_BANG_EQ2] = ACTIONS(2254), + [anon_sym_LT2] = ACTIONS(2254), + [anon_sym_LT_EQ2] = ACTIONS(2254), + [anon_sym_GT_EQ2] = ACTIONS(2254), + [anon_sym_EQ_TILDE2] = ACTIONS(2254), + [anon_sym_BANG_TILDE2] = ACTIONS(2254), + [anon_sym_STAR_STAR2] = ACTIONS(2254), + [anon_sym_PLUS_PLUS2] = ACTIONS(2254), + [anon_sym_SLASH2] = ACTIONS(2254), + [anon_sym_mod2] = ACTIONS(2254), + [anon_sym_SLASH_SLASH2] = ACTIONS(2254), + [anon_sym_PLUS2] = ACTIONS(2254), + [anon_sym_bit_DASHshl2] = ACTIONS(2254), + [anon_sym_bit_DASHshr2] = ACTIONS(2254), + [anon_sym_bit_DASHand2] = ACTIONS(2254), + [anon_sym_bit_DASHxor2] = ACTIONS(2254), + [anon_sym_bit_DASHor2] = ACTIONS(2254), + [anon_sym_POUND] = ACTIONS(3), + }, + [1442] = { + [sym_comment] = STATE(1442), + [ts_builtin_sym_end] = ACTIONS(1587), + [sym__newline] = ACTIONS(1587), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_err_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_GT_PIPE] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_DOLLAR] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_DASH2] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1585), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), + [anon_sym_DOT_DOT_LT] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [anon_sym_null] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(1587), + [anon_sym_false] = ACTIONS(1587), + [aux_sym__val_number_decimal_token1] = ACTIONS(1585), + [aux_sym__val_number_decimal_token2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1587), + [aux_sym__val_number_token2] = ACTIONS(1587), + [aux_sym__val_number_token3] = ACTIONS(1587), + [aux_sym__val_number_token4] = ACTIONS(1587), + [aux_sym__val_number_token5] = ACTIONS(1587), + [aux_sym__val_number_token6] = ACTIONS(1587), + [anon_sym_0b] = ACTIONS(1585), + [sym_filesize_unit] = ACTIONS(1587), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_0o] = ACTIONS(1585), + [anon_sym_0x] = ACTIONS(1585), + [sym_val_date] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [sym__str_single_quotes] = ACTIONS(1587), + [sym__str_back_ticks] = ACTIONS(1587), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1587), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1587), + [anon_sym_out_GT_GT] = ACTIONS(1587), + [anon_sym_e_GT_GT] = ACTIONS(1587), + [anon_sym_o_GT_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [aux_sym_unquoted_token1] = ACTIONS(1585), + [aux_sym_unquoted_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1587), + }, + [1443] = { + [sym_comment] = STATE(1443), + [ts_builtin_sym_end] = ACTIONS(1683), + [sym__newline] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_err_GT_PIPE] = ACTIONS(1683), + [anon_sym_out_GT_PIPE] = ACTIONS(1683), + [anon_sym_e_GT_PIPE] = ACTIONS(1683), + [anon_sym_o_GT_PIPE] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1683), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1683), + [anon_sym_DOLLAR] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_DASH2] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1683), + [anon_sym_DOT_DOT] = ACTIONS(1681), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1681), + [anon_sym_DOT_DOT_LT] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [anon_sym_null] = ACTIONS(1683), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [aux_sym__val_number_decimal_token1] = ACTIONS(1681), + [aux_sym__val_number_decimal_token2] = ACTIONS(1683), + [aux_sym__val_number_decimal_token3] = ACTIONS(1683), + [aux_sym__val_number_decimal_token4] = ACTIONS(1683), + [aux_sym__val_number_token1] = ACTIONS(1683), + [aux_sym__val_number_token2] = ACTIONS(1683), + [aux_sym__val_number_token3] = ACTIONS(1683), + [aux_sym__val_number_token4] = ACTIONS(1683), + [aux_sym__val_number_token5] = ACTIONS(1683), + [aux_sym__val_number_token6] = ACTIONS(1683), + [anon_sym_0b] = ACTIONS(1681), + [sym_filesize_unit] = ACTIONS(1683), + [sym_duration_unit] = ACTIONS(1683), + [anon_sym_0o] = ACTIONS(1681), + [anon_sym_0x] = ACTIONS(1681), + [sym_val_date] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(1683), + [sym__str_single_quotes] = ACTIONS(1683), + [sym__str_back_ticks] = ACTIONS(1683), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1683), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1683), + [anon_sym_err_GT] = ACTIONS(1681), + [anon_sym_out_GT] = ACTIONS(1681), + [anon_sym_e_GT] = ACTIONS(1681), + [anon_sym_o_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT] = ACTIONS(1681), + [anon_sym_err_GT_GT] = ACTIONS(1683), + [anon_sym_out_GT_GT] = ACTIONS(1683), + [anon_sym_e_GT_GT] = ACTIONS(1683), + [anon_sym_o_GT_GT] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1683), + [aux_sym_unquoted_token1] = ACTIONS(1681), + [aux_sym_unquoted_token2] = ACTIONS(1681), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1683), + }, + [1444] = { + [sym_comment] = STATE(1444), + [ts_builtin_sym_end] = ACTIONS(1763), + [sym__newline] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_err_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_GT_PIPE] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), + [anon_sym_LBRACK] = ACTIONS(1763), + [anon_sym_LPAREN] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1761), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_DASH2] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_DOT_DOT] = ACTIONS(1761), + [anon_sym_DOT_DOT2] = ACTIONS(1761), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1761), + [anon_sym_DOT_DOT_LT] = ACTIONS(1761), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), + [anon_sym_null] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1763), + [anon_sym_false] = ACTIONS(1763), + [aux_sym__val_number_decimal_token1] = ACTIONS(1761), + [aux_sym__val_number_decimal_token2] = ACTIONS(1763), + [aux_sym__val_number_decimal_token3] = ACTIONS(1763), + [aux_sym__val_number_decimal_token4] = ACTIONS(1763), + [aux_sym__val_number_token1] = ACTIONS(1763), + [aux_sym__val_number_token2] = ACTIONS(1763), + [aux_sym__val_number_token3] = ACTIONS(1763), + [aux_sym__val_number_token4] = ACTIONS(1763), + [aux_sym__val_number_token5] = ACTIONS(1763), + [aux_sym__val_number_token6] = ACTIONS(1763), + [anon_sym_0b] = ACTIONS(1761), + [sym_filesize_unit] = ACTIONS(1763), + [sym_duration_unit] = ACTIONS(1763), + [anon_sym_0o] = ACTIONS(1761), + [anon_sym_0x] = ACTIONS(1761), + [sym_val_date] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym__str_single_quotes] = ACTIONS(1763), + [sym__str_back_ticks] = ACTIONS(1763), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1763), + [anon_sym_err_GT] = ACTIONS(1761), + [anon_sym_out_GT] = ACTIONS(1761), + [anon_sym_e_GT] = ACTIONS(1761), + [anon_sym_o_GT] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT] = ACTIONS(1761), + [anon_sym_err_GT_GT] = ACTIONS(1763), + [anon_sym_out_GT_GT] = ACTIONS(1763), + [anon_sym_e_GT_GT] = ACTIONS(1763), + [anon_sym_o_GT_GT] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1763), + [aux_sym_unquoted_token1] = ACTIONS(1761), + [aux_sym_unquoted_token2] = ACTIONS(1761), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1763), + }, + [1445] = { + [sym_comment] = STATE(1445), [sym__newline] = ACTIONS(1000), [anon_sym_SEMI] = ACTIONS(1000), [anon_sym_PIPE] = ACTIONS(1000), @@ -211607,39 +212542,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), - [anon_sym_GT2] = ACTIONS(998), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_RPAREN] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH_DASH] = ACTIONS(1000), [anon_sym_DASH2] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(1000), - [anon_sym_STAR2] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_DOT_DOT] = ACTIONS(998), [anon_sym_QMARK2] = ACTIONS(1000), - [anon_sym_and2] = ACTIONS(1000), - [anon_sym_xor2] = ACTIONS(1000), - [anon_sym_or2] = ACTIONS(1000), - [anon_sym_not_DASHin2] = ACTIONS(1000), - [anon_sym_starts_DASHwith2] = ACTIONS(1000), - [anon_sym_ends_DASHwith2] = ACTIONS(1000), - [anon_sym_EQ_EQ2] = ACTIONS(1000), - [anon_sym_BANG_EQ2] = ACTIONS(1000), - [anon_sym_LT2] = ACTIONS(998), - [anon_sym_LT_EQ2] = ACTIONS(1000), - [anon_sym_GT_EQ2] = ACTIONS(1000), - [anon_sym_EQ_TILDE2] = ACTIONS(1000), - [anon_sym_BANG_TILDE2] = ACTIONS(1000), - [anon_sym_STAR_STAR2] = ACTIONS(1000), - [anon_sym_PLUS_PLUS2] = ACTIONS(998), - [anon_sym_SLASH2] = ACTIONS(998), - [anon_sym_mod2] = ACTIONS(1000), - [anon_sym_SLASH_SLASH2] = ACTIONS(1000), - [anon_sym_PLUS2] = ACTIONS(998), - [anon_sym_bit_DASHshl2] = ACTIONS(1000), - [anon_sym_bit_DASHshr2] = ACTIONS(1000), - [anon_sym_bit_DASHand2] = ACTIONS(1000), - [anon_sym_bit_DASHxor2] = ACTIONS(1000), - [anon_sym_bit_DASHor2] = ACTIONS(1000), [anon_sym_DOT_DOT2] = ACTIONS(998), [anon_sym_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT_EQ] = ACTIONS(998), + [anon_sym_DOT_DOT_LT] = ACTIONS(998), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1000), [anon_sym_DOT_DOT_LT2] = ACTIONS(1000), + [anon_sym_null] = ACTIONS(1000), + [anon_sym_true] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1000), + [aux_sym__val_number_decimal_token1] = ACTIONS(998), + [aux_sym__val_number_decimal_token2] = ACTIONS(1000), + [aux_sym__val_number_decimal_token3] = ACTIONS(1000), + [aux_sym__val_number_decimal_token4] = ACTIONS(1000), + [aux_sym__val_number_token1] = ACTIONS(1000), + [aux_sym__val_number_token2] = ACTIONS(1000), + [aux_sym__val_number_token3] = ACTIONS(1000), + [aux_sym__val_number_token4] = ACTIONS(1000), + [aux_sym__val_number_token5] = ACTIONS(1000), + [aux_sym__val_number_token6] = ACTIONS(1000), + [anon_sym_0b] = ACTIONS(998), + [anon_sym_0o] = ACTIONS(998), + [anon_sym_0x] = ACTIONS(998), + [sym_val_date] = ACTIONS(1000), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym__str_single_quotes] = ACTIONS(1000), + [sym__str_back_ticks] = ACTIONS(1000), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1000), [anon_sym_err_GT] = ACTIONS(998), [anon_sym_out_GT] = ACTIONS(998), [anon_sym_e_GT] = ACTIONS(998), @@ -211656,17 +212596,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), + [aux_sym_unquoted_token1] = ACTIONS(998), [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1000), }, - [1437] = { - [sym_comment] = STATE(1437), - [ts_builtin_sym_end] = ACTIONS(992), - [anon_sym_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(992), - [anon_sym_DASH_EQ] = ACTIONS(992), - [anon_sym_STAR_EQ] = ACTIONS(992), - [anon_sym_SLASH_EQ] = ACTIONS(992), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(992), + [1446] = { + [sym_comment] = STATE(1446), + [sym__newline] = ACTIONS(1741), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym_PIPE] = ACTIONS(1741), + [anon_sym_err_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_GT_PIPE] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_RPAREN] = ACTIONS(1741), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_DASH_DASH] = ACTIONS(1741), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1741), + [anon_sym_RBRACE] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_DOT_DOT2] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), + [anon_sym_DOT_DOT_LT] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), + [aux_sym__immediate_decimal_token1] = ACTIONS(4773), + [aux_sym__immediate_decimal_token2] = ACTIONS(4775), + [anon_sym_null] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1741), + [anon_sym_false] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1741), + [aux_sym__val_number_token5] = ACTIONS(1741), + [aux_sym__val_number_token6] = ACTIONS(1741), + [anon_sym_0b] = ACTIONS(1739), + [anon_sym_0o] = ACTIONS(1739), + [anon_sym_0x] = ACTIONS(1739), + [sym_val_date] = ACTIONS(1741), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), + [anon_sym_err_GT] = ACTIONS(1739), + [anon_sym_out_GT] = ACTIONS(1739), + [anon_sym_e_GT] = ACTIONS(1739), + [anon_sym_o_GT] = ACTIONS(1739), + [anon_sym_err_PLUSout_GT] = ACTIONS(1739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), + [anon_sym_o_PLUSe_GT] = ACTIONS(1739), + [anon_sym_e_PLUSo_GT] = ACTIONS(1739), + [anon_sym_err_GT_GT] = ACTIONS(1741), + [anon_sym_out_GT_GT] = ACTIONS(1741), + [anon_sym_e_GT_GT] = ACTIONS(1741), + [anon_sym_o_GT_GT] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), + [aux_sym_unquoted_token1] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), + }, + [1447] = { + [sym_comment] = STATE(1447), [sym__newline] = ACTIONS(992), [anon_sym_SEMI] = ACTIONS(992), [anon_sym_PIPE] = ACTIONS(992), @@ -211678,39 +212684,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), - [anon_sym_GT2] = ACTIONS(990), + [anon_sym_LBRACK] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_RPAREN] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(992), [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_in2] = ACTIONS(992), - [anon_sym_STAR2] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_DOT_DOT] = ACTIONS(990), [anon_sym_QMARK2] = ACTIONS(992), - [anon_sym_and2] = ACTIONS(992), - [anon_sym_xor2] = ACTIONS(992), - [anon_sym_or2] = ACTIONS(992), - [anon_sym_not_DASHin2] = ACTIONS(992), - [anon_sym_starts_DASHwith2] = ACTIONS(992), - [anon_sym_ends_DASHwith2] = ACTIONS(992), - [anon_sym_EQ_EQ2] = ACTIONS(992), - [anon_sym_BANG_EQ2] = ACTIONS(992), - [anon_sym_LT2] = ACTIONS(990), - [anon_sym_LT_EQ2] = ACTIONS(992), - [anon_sym_GT_EQ2] = ACTIONS(992), - [anon_sym_EQ_TILDE2] = ACTIONS(992), - [anon_sym_BANG_TILDE2] = ACTIONS(992), - [anon_sym_STAR_STAR2] = ACTIONS(992), - [anon_sym_PLUS_PLUS2] = ACTIONS(990), - [anon_sym_SLASH2] = ACTIONS(990), - [anon_sym_mod2] = ACTIONS(992), - [anon_sym_SLASH_SLASH2] = ACTIONS(992), - [anon_sym_PLUS2] = ACTIONS(990), - [anon_sym_bit_DASHshl2] = ACTIONS(992), - [anon_sym_bit_DASHshr2] = ACTIONS(992), - [anon_sym_bit_DASHand2] = ACTIONS(992), - [anon_sym_bit_DASHxor2] = ACTIONS(992), - [anon_sym_bit_DASHor2] = ACTIONS(992), [anon_sym_DOT_DOT2] = ACTIONS(990), [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ] = ACTIONS(990), + [anon_sym_DOT_DOT_LT] = ACTIONS(990), [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), [anon_sym_DOT_DOT_LT2] = ACTIONS(992), + [anon_sym_null] = ACTIONS(992), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = ACTIONS(992), + [aux_sym__val_number_decimal_token4] = ACTIONS(992), + [aux_sym__val_number_token1] = ACTIONS(992), + [aux_sym__val_number_token2] = ACTIONS(992), + [aux_sym__val_number_token3] = ACTIONS(992), + [aux_sym__val_number_token4] = ACTIONS(992), + [aux_sym__val_number_token5] = ACTIONS(992), + [aux_sym__val_number_token6] = ACTIONS(992), + [anon_sym_0b] = ACTIONS(990), + [anon_sym_0o] = ACTIONS(990), + [anon_sym_0x] = ACTIONS(990), + [sym_val_date] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), [anon_sym_err_GT] = ACTIONS(990), [anon_sym_out_GT] = ACTIONS(990), [anon_sym_e_GT] = ACTIONS(990), @@ -211727,365 +212738,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), + [aux_sym_unquoted_token1] = ACTIONS(990), [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(992), }, - [1438] = { - [sym_comment] = STATE(1438), - [ts_builtin_sym_end] = ACTIONS(1004), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_PLUS_EQ] = ACTIONS(1004), - [anon_sym_DASH_EQ] = ACTIONS(1004), - [anon_sym_STAR_EQ] = ACTIONS(1004), - [anon_sym_SLASH_EQ] = ACTIONS(1004), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1004), - [sym__newline] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_err_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_GT_PIPE] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), - [anon_sym_GT2] = ACTIONS(1002), - [anon_sym_DASH2] = ACTIONS(1002), - [anon_sym_in2] = ACTIONS(1004), - [anon_sym_STAR2] = ACTIONS(1002), - [anon_sym_QMARK2] = ACTIONS(1004), - [anon_sym_and2] = ACTIONS(1004), - [anon_sym_xor2] = ACTIONS(1004), - [anon_sym_or2] = ACTIONS(1004), - [anon_sym_not_DASHin2] = ACTIONS(1004), - [anon_sym_starts_DASHwith2] = ACTIONS(1004), - [anon_sym_ends_DASHwith2] = ACTIONS(1004), - [anon_sym_EQ_EQ2] = ACTIONS(1004), - [anon_sym_BANG_EQ2] = ACTIONS(1004), - [anon_sym_LT2] = ACTIONS(1002), - [anon_sym_LT_EQ2] = ACTIONS(1004), - [anon_sym_GT_EQ2] = ACTIONS(1004), - [anon_sym_EQ_TILDE2] = ACTIONS(1004), - [anon_sym_BANG_TILDE2] = ACTIONS(1004), - [anon_sym_STAR_STAR2] = ACTIONS(1004), - [anon_sym_PLUS_PLUS2] = ACTIONS(1002), - [anon_sym_SLASH2] = ACTIONS(1002), - [anon_sym_mod2] = ACTIONS(1004), - [anon_sym_SLASH_SLASH2] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1002), - [anon_sym_bit_DASHshl2] = ACTIONS(1004), - [anon_sym_bit_DASHshr2] = ACTIONS(1004), - [anon_sym_bit_DASHand2] = ACTIONS(1004), - [anon_sym_bit_DASHxor2] = ACTIONS(1004), - [anon_sym_bit_DASHor2] = ACTIONS(1004), - [anon_sym_DOT_DOT2] = ACTIONS(1002), - [anon_sym_DOT] = ACTIONS(1002), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), - [anon_sym_err_GT] = ACTIONS(1002), - [anon_sym_out_GT] = ACTIONS(1002), - [anon_sym_e_GT] = ACTIONS(1002), - [anon_sym_o_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT] = ACTIONS(1002), - [anon_sym_err_GT_GT] = ACTIONS(1004), - [anon_sym_out_GT_GT] = ACTIONS(1004), - [anon_sym_e_GT_GT] = ACTIONS(1004), - [anon_sym_o_GT_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), - [anon_sym_POUND] = ACTIONS(247), - }, - [1439] = { - [sym_comment] = STATE(1439), - [ts_builtin_sym_end] = ACTIONS(986), - [anon_sym_EQ] = ACTIONS(984), - [anon_sym_PLUS_EQ] = ACTIONS(986), - [anon_sym_DASH_EQ] = ACTIONS(986), - [anon_sym_STAR_EQ] = ACTIONS(986), - [anon_sym_SLASH_EQ] = ACTIONS(986), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(986), - [sym__newline] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_err_GT_PIPE] = ACTIONS(986), - [anon_sym_out_GT_PIPE] = ACTIONS(986), - [anon_sym_e_GT_PIPE] = ACTIONS(986), - [anon_sym_o_GT_PIPE] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), - [anon_sym_GT2] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_in2] = ACTIONS(986), - [anon_sym_STAR2] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(4754), - [anon_sym_and2] = ACTIONS(986), - [anon_sym_xor2] = ACTIONS(986), - [anon_sym_or2] = ACTIONS(986), - [anon_sym_not_DASHin2] = ACTIONS(986), - [anon_sym_starts_DASHwith2] = ACTIONS(986), - [anon_sym_ends_DASHwith2] = ACTIONS(986), - [anon_sym_EQ_EQ2] = ACTIONS(986), - [anon_sym_BANG_EQ2] = ACTIONS(986), - [anon_sym_LT2] = ACTIONS(984), - [anon_sym_LT_EQ2] = ACTIONS(986), - [anon_sym_GT_EQ2] = ACTIONS(986), - [anon_sym_EQ_TILDE2] = ACTIONS(986), - [anon_sym_BANG_TILDE2] = ACTIONS(986), - [anon_sym_STAR_STAR2] = ACTIONS(986), - [anon_sym_PLUS_PLUS2] = ACTIONS(984), - [anon_sym_SLASH2] = ACTIONS(984), - [anon_sym_mod2] = ACTIONS(986), - [anon_sym_SLASH_SLASH2] = ACTIONS(986), - [anon_sym_PLUS2] = ACTIONS(984), - [anon_sym_bit_DASHshl2] = ACTIONS(986), - [anon_sym_bit_DASHshr2] = ACTIONS(986), - [anon_sym_bit_DASHand2] = ACTIONS(986), - [anon_sym_bit_DASHxor2] = ACTIONS(986), - [anon_sym_bit_DASHor2] = ACTIONS(986), - [anon_sym_DOT_DOT2] = ACTIONS(984), - [anon_sym_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), - [anon_sym_DOT_DOT_LT2] = ACTIONS(986), - [anon_sym_err_GT] = ACTIONS(984), - [anon_sym_out_GT] = ACTIONS(984), - [anon_sym_e_GT] = ACTIONS(984), - [anon_sym_o_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT] = ACTIONS(984), - [anon_sym_err_GT_GT] = ACTIONS(986), - [anon_sym_out_GT_GT] = ACTIONS(986), - [anon_sym_e_GT_GT] = ACTIONS(986), - [anon_sym_o_GT_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(247), - }, - [1440] = { - [sym_comment] = STATE(1440), - [sym__newline] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_err_GT_PIPE] = ACTIONS(1886), - [anon_sym_out_GT_PIPE] = ACTIONS(1886), - [anon_sym_e_GT_PIPE] = ACTIONS(1886), - [anon_sym_o_GT_PIPE] = ACTIONS(1886), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1886), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1886), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1886), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1886), - [anon_sym_LBRACK] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_RPAREN] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(1878), - [anon_sym_DASH_DASH] = ACTIONS(1886), - [anon_sym_DASH2] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(1886), - [anon_sym_RBRACE] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1878), - [anon_sym_LPAREN2] = ACTIONS(1880), - [anon_sym_DOT_DOT2] = ACTIONS(4756), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1878), - [anon_sym_DOT_DOT_LT] = ACTIONS(1878), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4758), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4758), - [anon_sym_null] = ACTIONS(1886), - [anon_sym_true] = ACTIONS(1886), - [anon_sym_false] = ACTIONS(1886), - [aux_sym__val_number_decimal_token1] = ACTIONS(1878), - [aux_sym__val_number_decimal_token2] = ACTIONS(1886), - [aux_sym__val_number_decimal_token3] = ACTIONS(1886), - [aux_sym__val_number_decimal_token4] = ACTIONS(1886), - [aux_sym__val_number_token1] = ACTIONS(1886), - [aux_sym__val_number_token2] = ACTIONS(1886), - [aux_sym__val_number_token3] = ACTIONS(1886), - [aux_sym__val_number_token4] = ACTIONS(1886), - [aux_sym__val_number_token5] = ACTIONS(1886), - [aux_sym__val_number_token6] = ACTIONS(1886), - [anon_sym_0b] = ACTIONS(1878), - [anon_sym_0o] = ACTIONS(1878), - [anon_sym_0x] = ACTIONS(1878), - [sym_val_date] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(1886), - [sym__str_single_quotes] = ACTIONS(1886), - [sym__str_back_ticks] = ACTIONS(1886), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1886), - [anon_sym_err_GT] = ACTIONS(1878), - [anon_sym_out_GT] = ACTIONS(1878), - [anon_sym_e_GT] = ACTIONS(1878), - [anon_sym_o_GT] = ACTIONS(1878), - [anon_sym_err_PLUSout_GT] = ACTIONS(1878), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1878), - [anon_sym_o_PLUSe_GT] = ACTIONS(1878), - [anon_sym_e_PLUSo_GT] = ACTIONS(1878), - [anon_sym_err_GT_GT] = ACTIONS(1886), - [anon_sym_out_GT_GT] = ACTIONS(1886), - [anon_sym_e_GT_GT] = ACTIONS(1886), - [anon_sym_o_GT_GT] = ACTIONS(1886), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1886), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1886), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1886), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1886), - [aux_sym_unquoted_token1] = ACTIONS(1878), - [aux_sym_unquoted_token2] = ACTIONS(1888), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1886), - }, - [1441] = { - [sym_comment] = STATE(1441), - [ts_builtin_sym_end] = ACTIONS(1721), - [sym__newline] = ACTIONS(1721), - [anon_sym_SEMI] = ACTIONS(1721), - [anon_sym_PIPE] = ACTIONS(1721), - [anon_sym_err_GT_PIPE] = ACTIONS(1721), - [anon_sym_out_GT_PIPE] = ACTIONS(1721), - [anon_sym_e_GT_PIPE] = ACTIONS(1721), - [anon_sym_o_GT_PIPE] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1721), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_DASH_DASH] = ACTIONS(1721), - [anon_sym_DASH2] = ACTIONS(1709), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1709), - [anon_sym_DOT_DOT2] = ACTIONS(4708), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1709), - [anon_sym_DOT_DOT_LT] = ACTIONS(1709), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4710), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4710), - [anon_sym_null] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1709), - [aux_sym__val_number_decimal_token2] = ACTIONS(1721), - [aux_sym__val_number_decimal_token3] = ACTIONS(1721), - [aux_sym__val_number_decimal_token4] = ACTIONS(1721), - [aux_sym__val_number_token1] = ACTIONS(1721), - [aux_sym__val_number_token2] = ACTIONS(1721), - [aux_sym__val_number_token3] = ACTIONS(1721), - [aux_sym__val_number_token4] = ACTIONS(1721), - [aux_sym__val_number_token5] = ACTIONS(1721), - [aux_sym__val_number_token6] = ACTIONS(1721), - [anon_sym_0b] = ACTIONS(1709), - [sym_filesize_unit] = ACTIONS(4760), - [sym_duration_unit] = ACTIONS(4762), - [anon_sym_0o] = ACTIONS(1709), - [anon_sym_0x] = ACTIONS(1709), - [sym_val_date] = ACTIONS(1721), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym__str_single_quotes] = ACTIONS(1721), - [sym__str_back_ticks] = ACTIONS(1721), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1721), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1721), - [anon_sym_err_GT] = ACTIONS(1709), - [anon_sym_out_GT] = ACTIONS(1709), - [anon_sym_e_GT] = ACTIONS(1709), - [anon_sym_o_GT] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT] = ACTIONS(1709), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), - [anon_sym_o_PLUSe_GT] = ACTIONS(1709), - [anon_sym_e_PLUSo_GT] = ACTIONS(1709), - [anon_sym_err_GT_GT] = ACTIONS(1721), - [anon_sym_out_GT_GT] = ACTIONS(1721), - [anon_sym_e_GT_GT] = ACTIONS(1721), - [anon_sym_o_GT_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1721), - [aux_sym_unquoted_token1] = ACTIONS(1709), - [aux_sym_unquoted_token2] = ACTIONS(4764), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1721), - }, - [1442] = { - [sym_comment] = STATE(1442), - [ts_builtin_sym_end] = ACTIONS(1785), - [sym__newline] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_err_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_GT_PIPE] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), - [aux_sym__immediate_decimal_token2] = ACTIONS(4766), - [anon_sym_null] = ACTIONS(1785), - [anon_sym_true] = ACTIONS(1785), - [anon_sym_false] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_0b] = ACTIONS(1783), - [anon_sym_0o] = ACTIONS(1783), - [anon_sym_0x] = ACTIONS(1783), - [sym_val_date] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_err_GT] = ACTIONS(1783), - [anon_sym_out_GT] = ACTIONS(1783), - [anon_sym_e_GT] = ACTIONS(1783), - [anon_sym_o_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT] = ACTIONS(1783), - [anon_sym_err_GT_GT] = ACTIONS(1785), - [anon_sym_out_GT_GT] = ACTIONS(1785), - [anon_sym_e_GT_GT] = ACTIONS(1785), - [anon_sym_o_GT_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), - [aux_sym_unquoted_token1] = ACTIONS(1783), - [aux_sym_unquoted_token2] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1785), + [1448] = { + [sym_comment] = STATE(1448), + [ts_builtin_sym_end] = ACTIONS(1767), + [sym__newline] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_err_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_GT_PIPE] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_DOLLAR] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_DOT_DOT] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1767), + [anon_sym_DOT_DOT2] = ACTIONS(1765), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1765), + [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(4686), + [anon_sym_null] = ACTIONS(1767), + [anon_sym_true] = ACTIONS(1767), + [anon_sym_false] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1767), + [aux_sym__val_number_token5] = ACTIONS(1767), + [aux_sym__val_number_token6] = ACTIONS(1767), + [anon_sym_0b] = ACTIONS(1765), + [anon_sym_0o] = ACTIONS(1765), + [anon_sym_0x] = ACTIONS(1765), + [sym_val_date] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), + [anon_sym_err_GT] = ACTIONS(1765), + [anon_sym_out_GT] = ACTIONS(1765), + [anon_sym_e_GT] = ACTIONS(1765), + [anon_sym_o_GT] = ACTIONS(1765), + [anon_sym_err_PLUSout_GT] = ACTIONS(1765), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), + [anon_sym_o_PLUSe_GT] = ACTIONS(1765), + [anon_sym_e_PLUSo_GT] = ACTIONS(1765), + [anon_sym_err_GT_GT] = ACTIONS(1767), + [anon_sym_out_GT_GT] = ACTIONS(1767), + [anon_sym_e_GT_GT] = ACTIONS(1767), + [anon_sym_o_GT_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), + [aux_sym_unquoted_token1] = ACTIONS(1765), + [aux_sym_unquoted_token2] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1767), }, - [1443] = { - [sym_comment] = STATE(1443), + [1449] = { + [sym_comment] = STATE(1449), + [ts_builtin_sym_end] = ACTIONS(1008), [anon_sym_EQ] = ACTIONS(1006), [anon_sym_PLUS_EQ] = ACTIONS(1008), [anon_sym_DASH_EQ] = ACTIONS(1008), @@ -212103,11 +212833,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_RPAREN] = ACTIONS(1008), [anon_sym_GT2] = ACTIONS(1006), [anon_sym_DASH2] = ACTIONS(1006), [anon_sym_in2] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1008), [anon_sym_STAR2] = ACTIONS(1006), [anon_sym_and2] = ACTIONS(1008), [anon_sym_xor2] = ACTIONS(1008), @@ -212155,86 +212883,1269 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), [anon_sym_POUND] = ACTIONS(247), }, - [1444] = { - [sym_path] = STATE(1510), - [sym_comment] = STATE(1444), - [aux_sym_cell_path_repeat1] = STATE(1446), - [ts_builtin_sym_end] = ACTIONS(969), - [sym__newline] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_err_GT_PIPE] = ACTIONS(969), - [anon_sym_out_GT_PIPE] = ACTIONS(969), - [anon_sym_e_GT_PIPE] = ACTIONS(969), - [anon_sym_o_GT_PIPE] = ACTIONS(969), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(969), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(969), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_DASH2] = ACTIONS(967), - [anon_sym_LBRACE] = ACTIONS(969), - [anon_sym_DOT_DOT] = ACTIONS(967), - [anon_sym_DOT_DOT2] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(4682), - [anon_sym_DOT_DOT_EQ] = ACTIONS(967), - [anon_sym_DOT_DOT_LT] = ACTIONS(967), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(969), - [anon_sym_DOT_DOT_LT2] = ACTIONS(969), - [anon_sym_null] = ACTIONS(969), - [anon_sym_true] = ACTIONS(969), - [anon_sym_false] = ACTIONS(969), - [aux_sym__val_number_decimal_token1] = ACTIONS(967), - [aux_sym__val_number_decimal_token2] = ACTIONS(969), - [aux_sym__val_number_decimal_token3] = ACTIONS(969), - [aux_sym__val_number_decimal_token4] = ACTIONS(969), - [aux_sym__val_number_token1] = ACTIONS(969), - [aux_sym__val_number_token2] = ACTIONS(969), - [aux_sym__val_number_token3] = ACTIONS(969), - [aux_sym__val_number_token4] = ACTIONS(969), - [aux_sym__val_number_token5] = ACTIONS(969), - [aux_sym__val_number_token6] = ACTIONS(969), - [anon_sym_0b] = ACTIONS(967), - [anon_sym_0o] = ACTIONS(967), - [anon_sym_0x] = ACTIONS(967), - [sym_val_date] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(969), - [sym__str_single_quotes] = ACTIONS(969), - [sym__str_back_ticks] = ACTIONS(969), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(969), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(969), - [anon_sym_err_GT] = ACTIONS(967), - [anon_sym_out_GT] = ACTIONS(967), - [anon_sym_e_GT] = ACTIONS(967), - [anon_sym_o_GT] = ACTIONS(967), - [anon_sym_err_PLUSout_GT] = ACTIONS(967), - [anon_sym_out_PLUSerr_GT] = ACTIONS(967), - [anon_sym_o_PLUSe_GT] = ACTIONS(967), - [anon_sym_e_PLUSo_GT] = ACTIONS(967), - [anon_sym_err_GT_GT] = ACTIONS(969), - [anon_sym_out_GT_GT] = ACTIONS(969), - [anon_sym_e_GT_GT] = ACTIONS(969), - [anon_sym_o_GT_GT] = ACTIONS(969), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(969), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(969), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), - [aux_sym_unquoted_token1] = ACTIONS(967), + [1450] = { + [sym_comment] = STATE(1450), + [sym__newline] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_err_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_GT_PIPE] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), + [anon_sym_RPAREN] = ACTIONS(1575), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1575), + [anon_sym_in2] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_RBRACE] = ACTIONS(1575), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1575), + [anon_sym_xor2] = ACTIONS(1575), + [anon_sym_or2] = ACTIONS(1575), + [anon_sym_not_DASHin2] = ACTIONS(1575), + [anon_sym_starts_DASHwith2] = ACTIONS(1575), + [anon_sym_ends_DASHwith2] = ACTIONS(1575), + [anon_sym_EQ_EQ2] = ACTIONS(1575), + [anon_sym_BANG_EQ2] = ACTIONS(1575), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1575), + [anon_sym_GT_EQ2] = ACTIONS(1575), + [anon_sym_EQ_TILDE2] = ACTIONS(1575), + [anon_sym_BANG_TILDE2] = ACTIONS(1575), + [anon_sym_LPAREN2] = ACTIONS(1575), + [anon_sym_STAR_STAR2] = ACTIONS(1575), + [anon_sym_PLUS_PLUS2] = ACTIONS(1575), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1575), + [anon_sym_SLASH_SLASH2] = ACTIONS(1575), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1575), + [anon_sym_bit_DASHshr2] = ACTIONS(1575), + [anon_sym_bit_DASHand2] = ACTIONS(1575), + [anon_sym_bit_DASHxor2] = ACTIONS(1575), + [anon_sym_bit_DASHor2] = ACTIONS(1575), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(4740), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1575), + [anon_sym_out_GT_GT] = ACTIONS(1575), + [anon_sym_e_GT_GT] = ACTIONS(1575), + [anon_sym_o_GT_GT] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), + [aux_sym_unquoted_token2] = ACTIONS(1573), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(969), }, - [1445] = { - [sym_comment] = STATE(1445), + [1451] = { + [sym_cell_path] = STATE(1793), + [sym_path] = STATE(1678), + [sym_comment] = STATE(1451), + [aux_sym_cell_path_repeat1] = STATE(1528), + [sym__newline] = ACTIONS(1944), + [anon_sym_SEMI] = ACTIONS(1944), + [anon_sym_PIPE] = ACTIONS(1944), + [anon_sym_err_GT_PIPE] = ACTIONS(1944), + [anon_sym_out_GT_PIPE] = ACTIONS(1944), + [anon_sym_e_GT_PIPE] = ACTIONS(1944), + [anon_sym_o_GT_PIPE] = ACTIONS(1944), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1944), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1944), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1944), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1944), + [anon_sym_LBRACK] = ACTIONS(1944), + [anon_sym_LPAREN] = ACTIONS(1944), + [anon_sym_RPAREN] = ACTIONS(1944), + [anon_sym_DOLLAR] = ACTIONS(1942), + [anon_sym_DASH_DASH] = ACTIONS(1944), + [anon_sym_DASH2] = ACTIONS(1942), + [anon_sym_LBRACE] = ACTIONS(1944), + [anon_sym_RBRACE] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1942), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1944), + [anon_sym_DOT_DOT_LT] = ACTIONS(1944), + [anon_sym_null] = ACTIONS(1944), + [anon_sym_true] = ACTIONS(1944), + [anon_sym_false] = ACTIONS(1944), + [aux_sym__val_number_decimal_token1] = ACTIONS(1942), + [aux_sym__val_number_decimal_token2] = ACTIONS(1944), + [aux_sym__val_number_decimal_token3] = ACTIONS(1944), + [aux_sym__val_number_decimal_token4] = ACTIONS(1944), + [aux_sym__val_number_token1] = ACTIONS(1944), + [aux_sym__val_number_token2] = ACTIONS(1944), + [aux_sym__val_number_token3] = ACTIONS(1944), + [aux_sym__val_number_token4] = ACTIONS(1944), + [aux_sym__val_number_token5] = ACTIONS(1944), + [aux_sym__val_number_token6] = ACTIONS(1944), + [anon_sym_0b] = ACTIONS(1942), + [anon_sym_0o] = ACTIONS(1942), + [anon_sym_0x] = ACTIONS(1942), + [sym_val_date] = ACTIONS(1944), + [anon_sym_DQUOTE] = ACTIONS(1944), + [sym__str_single_quotes] = ACTIONS(1944), + [sym__str_back_ticks] = ACTIONS(1944), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1944), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1944), + [anon_sym_err_GT] = ACTIONS(1942), + [anon_sym_out_GT] = ACTIONS(1942), + [anon_sym_e_GT] = ACTIONS(1942), + [anon_sym_o_GT] = ACTIONS(1942), + [anon_sym_err_PLUSout_GT] = ACTIONS(1942), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1942), + [anon_sym_o_PLUSe_GT] = ACTIONS(1942), + [anon_sym_e_PLUSo_GT] = ACTIONS(1942), + [anon_sym_err_GT_GT] = ACTIONS(1944), + [anon_sym_out_GT_GT] = ACTIONS(1944), + [anon_sym_e_GT_GT] = ACTIONS(1944), + [anon_sym_o_GT_GT] = ACTIONS(1944), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1944), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1944), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1944), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1944), + [aux_sym_unquoted_token1] = ACTIONS(1942), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1944), + }, + [1452] = { + [sym_cell_path] = STATE(1794), + [sym_path] = STATE(1678), + [sym_comment] = STATE(1452), + [aux_sym_cell_path_repeat1] = STATE(1528), + [sym__newline] = ACTIONS(2028), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_err_GT_PIPE] = ACTIONS(2028), + [anon_sym_out_GT_PIPE] = ACTIONS(2028), + [anon_sym_e_GT_PIPE] = ACTIONS(2028), + [anon_sym_o_GT_PIPE] = ACTIONS(2028), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2028), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2028), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2028), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(2028), + [anon_sym_LPAREN] = ACTIONS(2028), + [anon_sym_RPAREN] = ACTIONS(2028), + [anon_sym_DOLLAR] = ACTIONS(2026), + [anon_sym_DASH_DASH] = ACTIONS(2028), + [anon_sym_DASH2] = ACTIONS(2026), + [anon_sym_LBRACE] = ACTIONS(2028), + [anon_sym_RBRACE] = ACTIONS(2028), + [anon_sym_DOT_DOT] = ACTIONS(2026), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2028), + [anon_sym_DOT_DOT_LT] = ACTIONS(2028), + [anon_sym_null] = ACTIONS(2028), + [anon_sym_true] = ACTIONS(2028), + [anon_sym_false] = ACTIONS(2028), + [aux_sym__val_number_decimal_token1] = ACTIONS(2026), + [aux_sym__val_number_decimal_token2] = ACTIONS(2028), + [aux_sym__val_number_decimal_token3] = ACTIONS(2028), + [aux_sym__val_number_decimal_token4] = ACTIONS(2028), + [aux_sym__val_number_token1] = ACTIONS(2028), + [aux_sym__val_number_token2] = ACTIONS(2028), + [aux_sym__val_number_token3] = ACTIONS(2028), + [aux_sym__val_number_token4] = ACTIONS(2028), + [aux_sym__val_number_token5] = ACTIONS(2028), + [aux_sym__val_number_token6] = ACTIONS(2028), + [anon_sym_0b] = ACTIONS(2026), + [anon_sym_0o] = ACTIONS(2026), + [anon_sym_0x] = ACTIONS(2026), + [sym_val_date] = ACTIONS(2028), + [anon_sym_DQUOTE] = ACTIONS(2028), + [sym__str_single_quotes] = ACTIONS(2028), + [sym__str_back_ticks] = ACTIONS(2028), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2028), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2028), + [anon_sym_err_GT] = ACTIONS(2026), + [anon_sym_out_GT] = ACTIONS(2026), + [anon_sym_e_GT] = ACTIONS(2026), + [anon_sym_o_GT] = ACTIONS(2026), + [anon_sym_err_PLUSout_GT] = ACTIONS(2026), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2026), + [anon_sym_o_PLUSe_GT] = ACTIONS(2026), + [anon_sym_e_PLUSo_GT] = ACTIONS(2026), + [anon_sym_err_GT_GT] = ACTIONS(2028), + [anon_sym_out_GT_GT] = ACTIONS(2028), + [anon_sym_e_GT_GT] = ACTIONS(2028), + [anon_sym_o_GT_GT] = ACTIONS(2028), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2028), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2028), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2028), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2028), + [aux_sym_unquoted_token1] = ACTIONS(2026), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2028), + }, + [1453] = { + [sym_cell_path] = STATE(1809), + [sym_path] = STATE(1678), + [sym_comment] = STATE(1453), + [aux_sym_cell_path_repeat1] = STATE(1528), + [sym__newline] = ACTIONS(2032), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_err_GT_PIPE] = ACTIONS(2032), + [anon_sym_out_GT_PIPE] = ACTIONS(2032), + [anon_sym_e_GT_PIPE] = ACTIONS(2032), + [anon_sym_o_GT_PIPE] = ACTIONS(2032), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2032), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2032), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2032), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2032), + [anon_sym_LBRACK] = ACTIONS(2032), + [anon_sym_LPAREN] = ACTIONS(2032), + [anon_sym_RPAREN] = ACTIONS(2032), + [anon_sym_DOLLAR] = ACTIONS(2030), + [anon_sym_DASH_DASH] = ACTIONS(2032), + [anon_sym_DASH2] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2032), + [anon_sym_RBRACE] = ACTIONS(2032), + [anon_sym_DOT_DOT] = ACTIONS(2030), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2032), + [anon_sym_DOT_DOT_LT] = ACTIONS(2032), + [anon_sym_null] = ACTIONS(2032), + [anon_sym_true] = ACTIONS(2032), + [anon_sym_false] = ACTIONS(2032), + [aux_sym__val_number_decimal_token1] = ACTIONS(2030), + [aux_sym__val_number_decimal_token2] = ACTIONS(2032), + [aux_sym__val_number_decimal_token3] = ACTIONS(2032), + [aux_sym__val_number_decimal_token4] = ACTIONS(2032), + [aux_sym__val_number_token1] = ACTIONS(2032), + [aux_sym__val_number_token2] = ACTIONS(2032), + [aux_sym__val_number_token3] = ACTIONS(2032), + [aux_sym__val_number_token4] = ACTIONS(2032), + [aux_sym__val_number_token5] = ACTIONS(2032), + [aux_sym__val_number_token6] = ACTIONS(2032), + [anon_sym_0b] = ACTIONS(2030), + [anon_sym_0o] = ACTIONS(2030), + [anon_sym_0x] = ACTIONS(2030), + [sym_val_date] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(2032), + [sym__str_single_quotes] = ACTIONS(2032), + [sym__str_back_ticks] = ACTIONS(2032), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2032), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2032), + [anon_sym_err_GT] = ACTIONS(2030), + [anon_sym_out_GT] = ACTIONS(2030), + [anon_sym_e_GT] = ACTIONS(2030), + [anon_sym_o_GT] = ACTIONS(2030), + [anon_sym_err_PLUSout_GT] = ACTIONS(2030), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2030), + [anon_sym_o_PLUSe_GT] = ACTIONS(2030), + [anon_sym_e_PLUSo_GT] = ACTIONS(2030), + [anon_sym_err_GT_GT] = ACTIONS(2032), + [anon_sym_out_GT_GT] = ACTIONS(2032), + [anon_sym_e_GT_GT] = ACTIONS(2032), + [anon_sym_o_GT_GT] = ACTIONS(2032), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2032), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2032), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2032), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2032), + [aux_sym_unquoted_token1] = ACTIONS(2030), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2032), + }, + [1454] = { + [sym_cell_path] = STATE(1819), + [sym_path] = STATE(1678), + [sym_comment] = STATE(1454), + [aux_sym_cell_path_repeat1] = STATE(1528), + [sym__newline] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_PIPE] = ACTIONS(2036), + [anon_sym_err_GT_PIPE] = ACTIONS(2036), + [anon_sym_out_GT_PIPE] = ACTIONS(2036), + [anon_sym_e_GT_PIPE] = ACTIONS(2036), + [anon_sym_o_GT_PIPE] = ACTIONS(2036), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2036), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2036), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2036), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2036), + [anon_sym_LBRACK] = ACTIONS(2036), + [anon_sym_LPAREN] = ACTIONS(2036), + [anon_sym_RPAREN] = ACTIONS(2036), + [anon_sym_DOLLAR] = ACTIONS(2034), + [anon_sym_DASH_DASH] = ACTIONS(2036), + [anon_sym_DASH2] = ACTIONS(2034), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_RBRACE] = ACTIONS(2036), + [anon_sym_DOT_DOT] = ACTIONS(2034), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2036), + [anon_sym_DOT_DOT_LT] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2036), + [anon_sym_true] = ACTIONS(2036), + [anon_sym_false] = ACTIONS(2036), + [aux_sym__val_number_decimal_token1] = ACTIONS(2034), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2036), + [aux_sym__val_number_decimal_token4] = ACTIONS(2036), + [aux_sym__val_number_token1] = ACTIONS(2036), + [aux_sym__val_number_token2] = ACTIONS(2036), + [aux_sym__val_number_token3] = ACTIONS(2036), + [aux_sym__val_number_token4] = ACTIONS(2036), + [aux_sym__val_number_token5] = ACTIONS(2036), + [aux_sym__val_number_token6] = ACTIONS(2036), + [anon_sym_0b] = ACTIONS(2034), + [anon_sym_0o] = ACTIONS(2034), + [anon_sym_0x] = ACTIONS(2034), + [sym_val_date] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym__str_single_quotes] = ACTIONS(2036), + [sym__str_back_ticks] = ACTIONS(2036), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2036), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2036), + [anon_sym_err_GT] = ACTIONS(2034), + [anon_sym_out_GT] = ACTIONS(2034), + [anon_sym_e_GT] = ACTIONS(2034), + [anon_sym_o_GT] = ACTIONS(2034), + [anon_sym_err_PLUSout_GT] = ACTIONS(2034), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2034), + [anon_sym_o_PLUSe_GT] = ACTIONS(2034), + [anon_sym_e_PLUSo_GT] = ACTIONS(2034), + [anon_sym_err_GT_GT] = ACTIONS(2036), + [anon_sym_out_GT_GT] = ACTIONS(2036), + [anon_sym_e_GT_GT] = ACTIONS(2036), + [anon_sym_o_GT_GT] = ACTIONS(2036), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2036), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2036), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2036), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2036), + [aux_sym_unquoted_token1] = ACTIONS(2034), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2036), + }, + [1455] = { + [sym_comment] = STATE(1455), + [sym__newline] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_err_GT_PIPE] = ACTIONS(1683), + [anon_sym_out_GT_PIPE] = ACTIONS(1683), + [anon_sym_e_GT_PIPE] = ACTIONS(1683), + [anon_sym_o_GT_PIPE] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1683), + [anon_sym_RPAREN] = ACTIONS(1683), + [anon_sym_GT2] = ACTIONS(1681), + [anon_sym_DASH2] = ACTIONS(1683), + [anon_sym_in2] = ACTIONS(1683), + [anon_sym_LBRACE] = ACTIONS(1683), + [anon_sym_RBRACE] = ACTIONS(1683), + [anon_sym_STAR2] = ACTIONS(1681), + [anon_sym_and2] = ACTIONS(1683), + [anon_sym_xor2] = ACTIONS(1683), + [anon_sym_or2] = ACTIONS(1683), + [anon_sym_not_DASHin2] = ACTIONS(1683), + [anon_sym_starts_DASHwith2] = ACTIONS(1683), + [anon_sym_ends_DASHwith2] = ACTIONS(1683), + [anon_sym_EQ_EQ2] = ACTIONS(1683), + [anon_sym_BANG_EQ2] = ACTIONS(1683), + [anon_sym_LT2] = ACTIONS(1681), + [anon_sym_LT_EQ2] = ACTIONS(1683), + [anon_sym_GT_EQ2] = ACTIONS(1683), + [anon_sym_EQ_TILDE2] = ACTIONS(1683), + [anon_sym_BANG_TILDE2] = ACTIONS(1683), + [anon_sym_LPAREN2] = ACTIONS(1683), + [anon_sym_STAR_STAR2] = ACTIONS(1683), + [anon_sym_PLUS_PLUS2] = ACTIONS(1683), + [anon_sym_SLASH2] = ACTIONS(1681), + [anon_sym_mod2] = ACTIONS(1683), + [anon_sym_SLASH_SLASH2] = ACTIONS(1683), + [anon_sym_PLUS2] = ACTIONS(1681), + [anon_sym_bit_DASHshl2] = ACTIONS(1683), + [anon_sym_bit_DASHshr2] = ACTIONS(1683), + [anon_sym_bit_DASHand2] = ACTIONS(1683), + [anon_sym_bit_DASHxor2] = ACTIONS(1683), + [anon_sym_bit_DASHor2] = ACTIONS(1683), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [aux_sym__immediate_decimal_token2] = ACTIONS(4779), + [sym_filesize_unit] = ACTIONS(1681), + [sym_duration_unit] = ACTIONS(1683), + [anon_sym_err_GT] = ACTIONS(1681), + [anon_sym_out_GT] = ACTIONS(1681), + [anon_sym_e_GT] = ACTIONS(1681), + [anon_sym_o_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT] = ACTIONS(1681), + [anon_sym_err_GT_GT] = ACTIONS(1683), + [anon_sym_out_GT_GT] = ACTIONS(1683), + [anon_sym_e_GT_GT] = ACTIONS(1683), + [anon_sym_o_GT_GT] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1683), + [aux_sym_unquoted_token2] = ACTIONS(1681), + [anon_sym_POUND] = ACTIONS(247), + }, + [1456] = { + [sym_cell_path] = STATE(1821), + [sym_path] = STATE(1678), + [sym_comment] = STATE(1456), + [aux_sym_cell_path_repeat1] = STATE(1528), + [sym__newline] = ACTIONS(2040), + [anon_sym_SEMI] = ACTIONS(2040), + [anon_sym_PIPE] = ACTIONS(2040), + [anon_sym_err_GT_PIPE] = ACTIONS(2040), + [anon_sym_out_GT_PIPE] = ACTIONS(2040), + [anon_sym_e_GT_PIPE] = ACTIONS(2040), + [anon_sym_o_GT_PIPE] = ACTIONS(2040), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2040), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2040), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2040), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2040), + [anon_sym_LBRACK] = ACTIONS(2040), + [anon_sym_LPAREN] = ACTIONS(2040), + [anon_sym_RPAREN] = ACTIONS(2040), + [anon_sym_DOLLAR] = ACTIONS(2038), + [anon_sym_DASH_DASH] = ACTIONS(2040), + [anon_sym_DASH2] = ACTIONS(2038), + [anon_sym_LBRACE] = ACTIONS(2040), + [anon_sym_RBRACE] = ACTIONS(2040), + [anon_sym_DOT_DOT] = ACTIONS(2038), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2040), + [anon_sym_DOT_DOT_LT] = ACTIONS(2040), + [anon_sym_null] = ACTIONS(2040), + [anon_sym_true] = ACTIONS(2040), + [anon_sym_false] = ACTIONS(2040), + [aux_sym__val_number_decimal_token1] = ACTIONS(2038), + [aux_sym__val_number_decimal_token2] = ACTIONS(2040), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), + [aux_sym__val_number_token1] = ACTIONS(2040), + [aux_sym__val_number_token2] = ACTIONS(2040), + [aux_sym__val_number_token3] = ACTIONS(2040), + [aux_sym__val_number_token4] = ACTIONS(2040), + [aux_sym__val_number_token5] = ACTIONS(2040), + [aux_sym__val_number_token6] = ACTIONS(2040), + [anon_sym_0b] = ACTIONS(2038), + [anon_sym_0o] = ACTIONS(2038), + [anon_sym_0x] = ACTIONS(2038), + [sym_val_date] = ACTIONS(2040), + [anon_sym_DQUOTE] = ACTIONS(2040), + [sym__str_single_quotes] = ACTIONS(2040), + [sym__str_back_ticks] = ACTIONS(2040), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2040), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2040), + [anon_sym_err_GT] = ACTIONS(2038), + [anon_sym_out_GT] = ACTIONS(2038), + [anon_sym_e_GT] = ACTIONS(2038), + [anon_sym_o_GT] = ACTIONS(2038), + [anon_sym_err_PLUSout_GT] = ACTIONS(2038), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2038), + [anon_sym_o_PLUSe_GT] = ACTIONS(2038), + [anon_sym_e_PLUSo_GT] = ACTIONS(2038), + [anon_sym_err_GT_GT] = ACTIONS(2040), + [anon_sym_out_GT_GT] = ACTIONS(2040), + [anon_sym_e_GT_GT] = ACTIONS(2040), + [anon_sym_o_GT_GT] = ACTIONS(2040), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2040), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2040), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2040), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2040), + [aux_sym_unquoted_token1] = ACTIONS(2038), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2040), + }, + [1457] = { + [sym_comment] = STATE(1457), + [ts_builtin_sym_end] = ACTIONS(1767), + [sym__newline] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_err_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_GT_PIPE] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_DOLLAR] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_DOT_DOT] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1767), + [anon_sym_DOT_DOT2] = ACTIONS(1765), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1765), + [anon_sym_DOT_DOT_LT] = ACTIONS(1765), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), + [anon_sym_null] = ACTIONS(1767), + [anon_sym_true] = ACTIONS(1767), + [anon_sym_false] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1767), + [aux_sym__val_number_token5] = ACTIONS(1767), + [aux_sym__val_number_token6] = ACTIONS(1767), + [anon_sym_0b] = ACTIONS(1765), + [anon_sym_0o] = ACTIONS(1765), + [anon_sym_0x] = ACTIONS(1765), + [sym_val_date] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), + [anon_sym_err_GT] = ACTIONS(1765), + [anon_sym_out_GT] = ACTIONS(1765), + [anon_sym_e_GT] = ACTIONS(1765), + [anon_sym_o_GT] = ACTIONS(1765), + [anon_sym_err_PLUSout_GT] = ACTIONS(1765), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), + [anon_sym_o_PLUSe_GT] = ACTIONS(1765), + [anon_sym_e_PLUSo_GT] = ACTIONS(1765), + [anon_sym_err_GT_GT] = ACTIONS(1767), + [anon_sym_out_GT_GT] = ACTIONS(1767), + [anon_sym_e_GT_GT] = ACTIONS(1767), + [anon_sym_o_GT_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), + [aux_sym_unquoted_token1] = ACTIONS(1765), + [aux_sym_unquoted_token2] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1767), + }, + [1458] = { + [sym_cell_path] = STATE(1825), + [sym_path] = STATE(1678), + [sym_comment] = STATE(1458), + [aux_sym_cell_path_repeat1] = STATE(1528), + [sym__newline] = ACTIONS(1933), + [anon_sym_SEMI] = ACTIONS(1933), + [anon_sym_PIPE] = ACTIONS(1933), + [anon_sym_err_GT_PIPE] = ACTIONS(1933), + [anon_sym_out_GT_PIPE] = ACTIONS(1933), + [anon_sym_e_GT_PIPE] = ACTIONS(1933), + [anon_sym_o_GT_PIPE] = ACTIONS(1933), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1933), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1933), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1933), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1933), + [anon_sym_LBRACK] = ACTIONS(1933), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_RPAREN] = ACTIONS(1933), + [anon_sym_DOLLAR] = ACTIONS(1931), + [anon_sym_DASH_DASH] = ACTIONS(1933), + [anon_sym_DASH2] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_RBRACE] = ACTIONS(1933), + [anon_sym_DOT_DOT] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [anon_sym_null] = ACTIONS(1933), + [anon_sym_true] = ACTIONS(1933), + [anon_sym_false] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1931), + [aux_sym__val_number_decimal_token2] = ACTIONS(1933), + [aux_sym__val_number_decimal_token3] = ACTIONS(1933), + [aux_sym__val_number_decimal_token4] = ACTIONS(1933), + [aux_sym__val_number_token1] = ACTIONS(1933), + [aux_sym__val_number_token2] = ACTIONS(1933), + [aux_sym__val_number_token3] = ACTIONS(1933), + [aux_sym__val_number_token4] = ACTIONS(1933), + [aux_sym__val_number_token5] = ACTIONS(1933), + [aux_sym__val_number_token6] = ACTIONS(1933), + [anon_sym_0b] = ACTIONS(1931), + [anon_sym_0o] = ACTIONS(1931), + [anon_sym_0x] = ACTIONS(1931), + [sym_val_date] = ACTIONS(1933), + [anon_sym_DQUOTE] = ACTIONS(1933), + [sym__str_single_quotes] = ACTIONS(1933), + [sym__str_back_ticks] = ACTIONS(1933), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1933), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1933), + [anon_sym_err_GT] = ACTIONS(1931), + [anon_sym_out_GT] = ACTIONS(1931), + [anon_sym_e_GT] = ACTIONS(1931), + [anon_sym_o_GT] = ACTIONS(1931), + [anon_sym_err_PLUSout_GT] = ACTIONS(1931), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1931), + [anon_sym_o_PLUSe_GT] = ACTIONS(1931), + [anon_sym_e_PLUSo_GT] = ACTIONS(1931), + [anon_sym_err_GT_GT] = ACTIONS(1933), + [anon_sym_out_GT_GT] = ACTIONS(1933), + [anon_sym_e_GT_GT] = ACTIONS(1933), + [anon_sym_o_GT_GT] = ACTIONS(1933), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1933), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1933), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1933), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1933), + [aux_sym_unquoted_token1] = ACTIONS(1931), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1933), + }, + [1459] = { + [sym_comment] = STATE(1459), + [ts_builtin_sym_end] = ACTIONS(1741), + [sym__newline] = ACTIONS(1741), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym_PIPE] = ACTIONS(1741), + [anon_sym_err_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_GT_PIPE] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_DASH_DASH] = ACTIONS(1741), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_DOT_DOT2] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), + [anon_sym_DOT_DOT_LT] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), + [anon_sym_null] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1741), + [anon_sym_false] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1741), + [aux_sym__val_number_token5] = ACTIONS(1741), + [aux_sym__val_number_token6] = ACTIONS(1741), + [anon_sym_0b] = ACTIONS(1739), + [anon_sym_0o] = ACTIONS(1739), + [anon_sym_0x] = ACTIONS(1739), + [sym_val_date] = ACTIONS(1741), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), + [anon_sym_err_GT] = ACTIONS(1739), + [anon_sym_out_GT] = ACTIONS(1739), + [anon_sym_e_GT] = ACTIONS(1739), + [anon_sym_o_GT] = ACTIONS(1739), + [anon_sym_err_PLUSout_GT] = ACTIONS(1739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), + [anon_sym_o_PLUSe_GT] = ACTIONS(1739), + [anon_sym_e_PLUSo_GT] = ACTIONS(1739), + [anon_sym_err_GT_GT] = ACTIONS(1741), + [anon_sym_out_GT_GT] = ACTIONS(1741), + [anon_sym_e_GT_GT] = ACTIONS(1741), + [anon_sym_o_GT_GT] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), + [aux_sym_unquoted_token1] = ACTIONS(1739), + [aux_sym_unquoted_token2] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), + }, + [1460] = { + [sym_cell_path] = STATE(1837), + [sym_path] = STATE(1678), + [sym_comment] = STATE(1460), + [aux_sym_cell_path_repeat1] = STATE(1528), + [sym__newline] = ACTIONS(1901), + [anon_sym_SEMI] = ACTIONS(1901), + [anon_sym_PIPE] = ACTIONS(1901), + [anon_sym_err_GT_PIPE] = ACTIONS(1901), + [anon_sym_out_GT_PIPE] = ACTIONS(1901), + [anon_sym_e_GT_PIPE] = ACTIONS(1901), + [anon_sym_o_GT_PIPE] = ACTIONS(1901), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1901), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1901), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1901), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1901), + [anon_sym_LBRACK] = ACTIONS(1901), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_RPAREN] = ACTIONS(1901), + [anon_sym_DOLLAR] = ACTIONS(1899), + [anon_sym_DASH_DASH] = ACTIONS(1901), + [anon_sym_DASH2] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1901), + [anon_sym_RBRACE] = ACTIONS(1901), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1901), + [anon_sym_DOT_DOT_LT] = ACTIONS(1901), + [anon_sym_null] = ACTIONS(1901), + [anon_sym_true] = ACTIONS(1901), + [anon_sym_false] = ACTIONS(1901), + [aux_sym__val_number_decimal_token1] = ACTIONS(1899), + [aux_sym__val_number_decimal_token2] = ACTIONS(1901), + [aux_sym__val_number_decimal_token3] = ACTIONS(1901), + [aux_sym__val_number_decimal_token4] = ACTIONS(1901), + [aux_sym__val_number_token1] = ACTIONS(1901), + [aux_sym__val_number_token2] = ACTIONS(1901), + [aux_sym__val_number_token3] = ACTIONS(1901), + [aux_sym__val_number_token4] = ACTIONS(1901), + [aux_sym__val_number_token5] = ACTIONS(1901), + [aux_sym__val_number_token6] = ACTIONS(1901), + [anon_sym_0b] = ACTIONS(1899), + [anon_sym_0o] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1899), + [sym_val_date] = ACTIONS(1901), + [anon_sym_DQUOTE] = ACTIONS(1901), + [sym__str_single_quotes] = ACTIONS(1901), + [sym__str_back_ticks] = ACTIONS(1901), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1901), + [anon_sym_err_GT] = ACTIONS(1899), + [anon_sym_out_GT] = ACTIONS(1899), + [anon_sym_e_GT] = ACTIONS(1899), + [anon_sym_o_GT] = ACTIONS(1899), + [anon_sym_err_PLUSout_GT] = ACTIONS(1899), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1899), + [anon_sym_o_PLUSe_GT] = ACTIONS(1899), + [anon_sym_e_PLUSo_GT] = ACTIONS(1899), + [anon_sym_err_GT_GT] = ACTIONS(1901), + [anon_sym_out_GT_GT] = ACTIONS(1901), + [anon_sym_e_GT_GT] = ACTIONS(1901), + [anon_sym_o_GT_GT] = ACTIONS(1901), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1901), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1901), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1901), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1901), + [aux_sym_unquoted_token1] = ACTIONS(1899), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1901), + }, + [1461] = { + [sym_cell_path] = STATE(1841), + [sym_path] = STATE(1678), + [sym_comment] = STATE(1461), + [aux_sym_cell_path_repeat1] = STATE(1528), + [sym__newline] = ACTIONS(1909), + [anon_sym_SEMI] = ACTIONS(1909), + [anon_sym_PIPE] = ACTIONS(1909), + [anon_sym_err_GT_PIPE] = ACTIONS(1909), + [anon_sym_out_GT_PIPE] = ACTIONS(1909), + [anon_sym_e_GT_PIPE] = ACTIONS(1909), + [anon_sym_o_GT_PIPE] = ACTIONS(1909), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1909), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1909), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1909), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1909), + [anon_sym_LBRACK] = ACTIONS(1909), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_RPAREN] = ACTIONS(1909), + [anon_sym_DOLLAR] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1909), + [anon_sym_DASH2] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(1909), + [anon_sym_RBRACE] = ACTIONS(1909), + [anon_sym_DOT_DOT] = ACTIONS(1907), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1909), + [anon_sym_DOT_DOT_LT] = ACTIONS(1909), + [anon_sym_null] = ACTIONS(1909), + [anon_sym_true] = ACTIONS(1909), + [anon_sym_false] = ACTIONS(1909), + [aux_sym__val_number_decimal_token1] = ACTIONS(1907), + [aux_sym__val_number_decimal_token2] = ACTIONS(1909), + [aux_sym__val_number_decimal_token3] = ACTIONS(1909), + [aux_sym__val_number_decimal_token4] = ACTIONS(1909), + [aux_sym__val_number_token1] = ACTIONS(1909), + [aux_sym__val_number_token2] = ACTIONS(1909), + [aux_sym__val_number_token3] = ACTIONS(1909), + [aux_sym__val_number_token4] = ACTIONS(1909), + [aux_sym__val_number_token5] = ACTIONS(1909), + [aux_sym__val_number_token6] = ACTIONS(1909), + [anon_sym_0b] = ACTIONS(1907), + [anon_sym_0o] = ACTIONS(1907), + [anon_sym_0x] = ACTIONS(1907), + [sym_val_date] = ACTIONS(1909), + [anon_sym_DQUOTE] = ACTIONS(1909), + [sym__str_single_quotes] = ACTIONS(1909), + [sym__str_back_ticks] = ACTIONS(1909), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1909), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1909), + [anon_sym_err_GT] = ACTIONS(1907), + [anon_sym_out_GT] = ACTIONS(1907), + [anon_sym_e_GT] = ACTIONS(1907), + [anon_sym_o_GT] = ACTIONS(1907), + [anon_sym_err_PLUSout_GT] = ACTIONS(1907), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1907), + [anon_sym_o_PLUSe_GT] = ACTIONS(1907), + [anon_sym_e_PLUSo_GT] = ACTIONS(1907), + [anon_sym_err_GT_GT] = ACTIONS(1909), + [anon_sym_out_GT_GT] = ACTIONS(1909), + [anon_sym_e_GT_GT] = ACTIONS(1909), + [anon_sym_o_GT_GT] = ACTIONS(1909), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1909), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1909), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1909), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1909), + [aux_sym_unquoted_token1] = ACTIONS(1907), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1909), + }, + [1462] = { + [sym_comment] = STATE(1462), + [ts_builtin_sym_end] = ACTIONS(1787), + [sym__newline] = ACTIONS(1787), + [anon_sym_SEMI] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_err_GT_PIPE] = ACTIONS(1787), + [anon_sym_out_GT_PIPE] = ACTIONS(1787), + [anon_sym_e_GT_PIPE] = ACTIONS(1787), + [anon_sym_o_GT_PIPE] = ACTIONS(1787), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1787), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_DOT_DOT2] = ACTIONS(1785), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), + [anon_sym_DOT_DOT_LT] = ACTIONS(1785), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), + [anon_sym_null] = ACTIONS(1787), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [aux_sym__val_number_decimal_token1] = ACTIONS(1785), + [aux_sym__val_number_decimal_token2] = ACTIONS(1787), + [aux_sym__val_number_decimal_token3] = ACTIONS(1787), + [aux_sym__val_number_decimal_token4] = ACTIONS(1787), + [aux_sym__val_number_token1] = ACTIONS(1787), + [aux_sym__val_number_token2] = ACTIONS(1787), + [aux_sym__val_number_token3] = ACTIONS(1787), + [aux_sym__val_number_token4] = ACTIONS(1787), + [aux_sym__val_number_token5] = ACTIONS(1787), + [aux_sym__val_number_token6] = ACTIONS(1787), + [anon_sym_0b] = ACTIONS(1785), + [anon_sym_0o] = ACTIONS(1785), + [anon_sym_0x] = ACTIONS(1785), + [sym_val_date] = ACTIONS(1787), + [anon_sym_DQUOTE] = ACTIONS(1787), + [sym__str_single_quotes] = ACTIONS(1787), + [sym__str_back_ticks] = ACTIONS(1787), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), + [anon_sym_err_GT] = ACTIONS(1785), + [anon_sym_out_GT] = ACTIONS(1785), + [anon_sym_e_GT] = ACTIONS(1785), + [anon_sym_o_GT] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT] = ACTIONS(1785), + [anon_sym_err_GT_GT] = ACTIONS(1787), + [anon_sym_out_GT_GT] = ACTIONS(1787), + [anon_sym_e_GT_GT] = ACTIONS(1787), + [anon_sym_o_GT_GT] = ACTIONS(1787), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), + [aux_sym_unquoted_token1] = ACTIONS(1785), + [aux_sym_unquoted_token2] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1787), + }, + [1463] = { + [sym_comment] = STATE(1463), + [ts_builtin_sym_end] = ACTIONS(1046), + [anon_sym_EQ] = ACTIONS(1044), + [anon_sym_PLUS_EQ] = ACTIONS(1046), + [anon_sym_DASH_EQ] = ACTIONS(1046), + [anon_sym_STAR_EQ] = ACTIONS(1046), + [anon_sym_SLASH_EQ] = ACTIONS(1046), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1046), + [sym__newline] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_err_GT_PIPE] = ACTIONS(1046), + [anon_sym_out_GT_PIPE] = ACTIONS(1046), + [anon_sym_e_GT_PIPE] = ACTIONS(1046), + [anon_sym_o_GT_PIPE] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1046), + [anon_sym_GT2] = ACTIONS(1044), + [anon_sym_DASH2] = ACTIONS(1044), + [anon_sym_in2] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_STAR2] = ACTIONS(1044), + [anon_sym_and2] = ACTIONS(1046), + [anon_sym_xor2] = ACTIONS(1046), + [anon_sym_or2] = ACTIONS(1046), + [anon_sym_not_DASHin2] = ACTIONS(1046), + [anon_sym_starts_DASHwith2] = ACTIONS(1046), + [anon_sym_ends_DASHwith2] = ACTIONS(1046), + [anon_sym_EQ_EQ2] = ACTIONS(1046), + [anon_sym_BANG_EQ2] = ACTIONS(1046), + [anon_sym_LT2] = ACTIONS(1044), + [anon_sym_LT_EQ2] = ACTIONS(1046), + [anon_sym_GT_EQ2] = ACTIONS(1046), + [anon_sym_EQ_TILDE2] = ACTIONS(1046), + [anon_sym_BANG_TILDE2] = ACTIONS(1046), + [anon_sym_STAR_STAR2] = ACTIONS(1046), + [anon_sym_PLUS_PLUS2] = ACTIONS(1044), + [anon_sym_SLASH2] = ACTIONS(1044), + [anon_sym_mod2] = ACTIONS(1046), + [anon_sym_SLASH_SLASH2] = ACTIONS(1046), + [anon_sym_PLUS2] = ACTIONS(1044), + [anon_sym_bit_DASHshl2] = ACTIONS(1046), + [anon_sym_bit_DASHshr2] = ACTIONS(1046), + [anon_sym_bit_DASHand2] = ACTIONS(1046), + [anon_sym_bit_DASHxor2] = ACTIONS(1046), + [anon_sym_bit_DASHor2] = ACTIONS(1046), + [anon_sym_DOT_DOT2] = ACTIONS(1044), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), + [anon_sym_err_GT] = ACTIONS(1044), + [anon_sym_out_GT] = ACTIONS(1044), + [anon_sym_e_GT] = ACTIONS(1044), + [anon_sym_o_GT] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT] = ACTIONS(1044), + [anon_sym_err_GT_GT] = ACTIONS(1046), + [anon_sym_out_GT_GT] = ACTIONS(1046), + [anon_sym_e_GT_GT] = ACTIONS(1046), + [anon_sym_o_GT_GT] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1046), + [anon_sym_POUND] = ACTIONS(247), + }, + [1464] = { + [sym_comment] = STATE(1464), + [ts_builtin_sym_end] = ACTIONS(1843), + [sym__newline] = ACTIONS(1843), + [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_err_GT_PIPE] = ACTIONS(1843), + [anon_sym_out_GT_PIPE] = ACTIONS(1843), + [anon_sym_e_GT_PIPE] = ACTIONS(1843), + [anon_sym_o_GT_PIPE] = ACTIONS(1843), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1843), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1843), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1843), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [anon_sym_DASH2] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(1843), + [anon_sym_DOT_DOT2] = ACTIONS(1841), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1841), + [anon_sym_DOT_DOT_LT] = ACTIONS(1841), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1843), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1843), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [aux_sym__val_number_decimal_token1] = ACTIONS(1841), + [aux_sym__val_number_decimal_token2] = ACTIONS(1843), + [aux_sym__val_number_decimal_token3] = ACTIONS(1843), + [aux_sym__val_number_decimal_token4] = ACTIONS(1843), + [aux_sym__val_number_token1] = ACTIONS(1843), + [aux_sym__val_number_token2] = ACTIONS(1843), + [aux_sym__val_number_token3] = ACTIONS(1843), + [aux_sym__val_number_token4] = ACTIONS(1843), + [aux_sym__val_number_token5] = ACTIONS(1843), + [aux_sym__val_number_token6] = ACTIONS(1843), + [anon_sym_0b] = ACTIONS(1841), + [anon_sym_0o] = ACTIONS(1841), + [anon_sym_0x] = ACTIONS(1841), + [sym_val_date] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [sym__str_single_quotes] = ACTIONS(1843), + [sym__str_back_ticks] = ACTIONS(1843), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1843), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1843), + [anon_sym_err_GT] = ACTIONS(1841), + [anon_sym_out_GT] = ACTIONS(1841), + [anon_sym_e_GT] = ACTIONS(1841), + [anon_sym_o_GT] = ACTIONS(1841), + [anon_sym_err_PLUSout_GT] = ACTIONS(1841), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1841), + [anon_sym_o_PLUSe_GT] = ACTIONS(1841), + [anon_sym_e_PLUSo_GT] = ACTIONS(1841), + [anon_sym_err_GT_GT] = ACTIONS(1843), + [anon_sym_out_GT_GT] = ACTIONS(1843), + [anon_sym_e_GT_GT] = ACTIONS(1843), + [anon_sym_o_GT_GT] = ACTIONS(1843), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1843), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1843), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1843), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1843), + [aux_sym_unquoted_token1] = ACTIONS(1841), + [aux_sym_unquoted_token2] = ACTIONS(1841), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1843), + }, + [1465] = { + [sym_cell_path] = STATE(1750), + [sym_path] = STATE(1678), + [sym_comment] = STATE(1465), + [aux_sym_cell_path_repeat1] = STATE(1528), + [sym__newline] = ACTIONS(963), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_err_GT_PIPE] = ACTIONS(963), + [anon_sym_out_GT_PIPE] = ACTIONS(963), + [anon_sym_e_GT_PIPE] = ACTIONS(963), + [anon_sym_o_GT_PIPE] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), + [anon_sym_LBRACK] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(963), + [anon_sym_RPAREN] = ACTIONS(963), + [anon_sym_DOLLAR] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_DASH2] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_DOT_DOT] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(963), + [anon_sym_DOT_DOT_LT] = ACTIONS(963), + [anon_sym_null] = ACTIONS(963), + [anon_sym_true] = ACTIONS(963), + [anon_sym_false] = ACTIONS(963), + [aux_sym__val_number_decimal_token1] = ACTIONS(961), + [aux_sym__val_number_decimal_token2] = ACTIONS(963), + [aux_sym__val_number_decimal_token3] = ACTIONS(963), + [aux_sym__val_number_decimal_token4] = ACTIONS(963), + [aux_sym__val_number_token1] = ACTIONS(963), + [aux_sym__val_number_token2] = ACTIONS(963), + [aux_sym__val_number_token3] = ACTIONS(963), + [aux_sym__val_number_token4] = ACTIONS(963), + [aux_sym__val_number_token5] = ACTIONS(963), + [aux_sym__val_number_token6] = ACTIONS(963), + [anon_sym_0b] = ACTIONS(961), + [anon_sym_0o] = ACTIONS(961), + [anon_sym_0x] = ACTIONS(961), + [sym_val_date] = ACTIONS(963), + [anon_sym_DQUOTE] = ACTIONS(963), + [sym__str_single_quotes] = ACTIONS(963), + [sym__str_back_ticks] = ACTIONS(963), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(963), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(963), + [anon_sym_err_GT] = ACTIONS(961), + [anon_sym_out_GT] = ACTIONS(961), + [anon_sym_e_GT] = ACTIONS(961), + [anon_sym_o_GT] = ACTIONS(961), + [anon_sym_err_PLUSout_GT] = ACTIONS(961), + [anon_sym_out_PLUSerr_GT] = ACTIONS(961), + [anon_sym_o_PLUSe_GT] = ACTIONS(961), + [anon_sym_e_PLUSo_GT] = ACTIONS(961), + [anon_sym_err_GT_GT] = ACTIONS(963), + [anon_sym_out_GT_GT] = ACTIONS(963), + [anon_sym_e_GT_GT] = ACTIONS(963), + [anon_sym_o_GT_GT] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), + [aux_sym_unquoted_token1] = ACTIONS(961), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(963), + }, + [1466] = { + [sym_comment] = STATE(1466), + [ts_builtin_sym_end] = ACTIONS(1767), + [sym__newline] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_err_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_GT_PIPE] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_DOT_DOT] = ACTIONS(1765), + [anon_sym_DOT_DOT2] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(4781), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1765), + [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(4783), + [anon_sym_null] = ACTIONS(1767), + [anon_sym_true] = ACTIONS(1767), + [anon_sym_false] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1767), + [aux_sym__val_number_token5] = ACTIONS(1767), + [aux_sym__val_number_token6] = ACTIONS(1767), + [anon_sym_0b] = ACTIONS(1765), + [anon_sym_0o] = ACTIONS(1765), + [anon_sym_0x] = ACTIONS(1765), + [sym_val_date] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), + [anon_sym_err_GT] = ACTIONS(1765), + [anon_sym_out_GT] = ACTIONS(1765), + [anon_sym_e_GT] = ACTIONS(1765), + [anon_sym_o_GT] = ACTIONS(1765), + [anon_sym_err_PLUSout_GT] = ACTIONS(1765), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), + [anon_sym_o_PLUSe_GT] = ACTIONS(1765), + [anon_sym_e_PLUSo_GT] = ACTIONS(1765), + [anon_sym_err_GT_GT] = ACTIONS(1767), + [anon_sym_out_GT_GT] = ACTIONS(1767), + [anon_sym_e_GT_GT] = ACTIONS(1767), + [anon_sym_o_GT_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), + [aux_sym_unquoted_token1] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1767), + }, + [1467] = { + [sym_cell_path] = STATE(1775), + [sym_path] = STATE(1678), + [sym_comment] = STATE(1467), + [aux_sym_cell_path_repeat1] = STATE(1528), + [sym__newline] = ACTIONS(1869), + [anon_sym_SEMI] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_err_GT_PIPE] = ACTIONS(1869), + [anon_sym_out_GT_PIPE] = ACTIONS(1869), + [anon_sym_e_GT_PIPE] = ACTIONS(1869), + [anon_sym_o_GT_PIPE] = ACTIONS(1869), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1869), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1869), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1869), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1869), + [anon_sym_LBRACK] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1869), + [anon_sym_RPAREN] = ACTIONS(1869), + [anon_sym_DOLLAR] = ACTIONS(1867), + [anon_sym_DASH_DASH] = ACTIONS(1869), + [anon_sym_DASH2] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1869), + [anon_sym_RBRACE] = ACTIONS(1869), + [anon_sym_DOT_DOT] = ACTIONS(1867), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1869), + [anon_sym_DOT_DOT_LT] = ACTIONS(1869), + [anon_sym_null] = ACTIONS(1869), + [anon_sym_true] = ACTIONS(1869), + [anon_sym_false] = ACTIONS(1869), + [aux_sym__val_number_decimal_token1] = ACTIONS(1867), + [aux_sym__val_number_decimal_token2] = ACTIONS(1869), + [aux_sym__val_number_decimal_token3] = ACTIONS(1869), + [aux_sym__val_number_decimal_token4] = ACTIONS(1869), + [aux_sym__val_number_token1] = ACTIONS(1869), + [aux_sym__val_number_token2] = ACTIONS(1869), + [aux_sym__val_number_token3] = ACTIONS(1869), + [aux_sym__val_number_token4] = ACTIONS(1869), + [aux_sym__val_number_token5] = ACTIONS(1869), + [aux_sym__val_number_token6] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1867), + [anon_sym_0x] = ACTIONS(1867), + [sym_val_date] = ACTIONS(1869), + [anon_sym_DQUOTE] = ACTIONS(1869), + [sym__str_single_quotes] = ACTIONS(1869), + [sym__str_back_ticks] = ACTIONS(1869), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1869), + [anon_sym_err_GT] = ACTIONS(1867), + [anon_sym_out_GT] = ACTIONS(1867), + [anon_sym_e_GT] = ACTIONS(1867), + [anon_sym_o_GT] = ACTIONS(1867), + [anon_sym_err_PLUSout_GT] = ACTIONS(1867), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1867), + [anon_sym_o_PLUSe_GT] = ACTIONS(1867), + [anon_sym_e_PLUSo_GT] = ACTIONS(1867), + [anon_sym_err_GT_GT] = ACTIONS(1869), + [anon_sym_out_GT_GT] = ACTIONS(1869), + [anon_sym_e_GT_GT] = ACTIONS(1869), + [anon_sym_o_GT_GT] = ACTIONS(1869), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1869), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1869), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1869), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1869), + [aux_sym_unquoted_token1] = ACTIONS(1867), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1869), + }, + [1468] = { + [sym_comment] = STATE(1468), [ts_builtin_sym_end] = ACTIONS(980), - [anon_sym_EQ] = ACTIONS(978), - [anon_sym_PLUS_EQ] = ACTIONS(980), - [anon_sym_DASH_EQ] = ACTIONS(980), - [anon_sym_STAR_EQ] = ACTIONS(980), - [anon_sym_SLASH_EQ] = ACTIONS(980), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(980), [sym__newline] = ACTIONS(980), [anon_sym_SEMI] = ACTIONS(980), [anon_sym_PIPE] = ACTIONS(980), @@ -212246,39 +214157,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), - [anon_sym_GT2] = ACTIONS(978), + [anon_sym_LBRACK] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), [anon_sym_DASH2] = ACTIONS(978), - [anon_sym_in2] = ACTIONS(980), - [anon_sym_STAR2] = ACTIONS(978), - [anon_sym_QMARK2] = ACTIONS(4768), - [anon_sym_and2] = ACTIONS(980), - [anon_sym_xor2] = ACTIONS(980), - [anon_sym_or2] = ACTIONS(980), - [anon_sym_not_DASHin2] = ACTIONS(980), - [anon_sym_starts_DASHwith2] = ACTIONS(980), - [anon_sym_ends_DASHwith2] = ACTIONS(980), - [anon_sym_EQ_EQ2] = ACTIONS(980), - [anon_sym_BANG_EQ2] = ACTIONS(980), - [anon_sym_LT2] = ACTIONS(978), - [anon_sym_LT_EQ2] = ACTIONS(980), - [anon_sym_GT_EQ2] = ACTIONS(980), - [anon_sym_EQ_TILDE2] = ACTIONS(980), - [anon_sym_BANG_TILDE2] = ACTIONS(980), - [anon_sym_STAR_STAR2] = ACTIONS(980), - [anon_sym_PLUS_PLUS2] = ACTIONS(978), - [anon_sym_SLASH2] = ACTIONS(978), - [anon_sym_mod2] = ACTIONS(980), - [anon_sym_SLASH_SLASH2] = ACTIONS(980), - [anon_sym_PLUS2] = ACTIONS(978), - [anon_sym_bit_DASHshl2] = ACTIONS(980), - [anon_sym_bit_DASHshr2] = ACTIONS(980), - [anon_sym_bit_DASHand2] = ACTIONS(980), - [anon_sym_bit_DASHxor2] = ACTIONS(980), - [anon_sym_bit_DASHor2] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(980), + [anon_sym_DOT_DOT] = ACTIONS(978), + [anon_sym_QMARK2] = ACTIONS(4785), [anon_sym_DOT_DOT2] = ACTIONS(978), [anon_sym_DOT] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ] = ACTIONS(978), + [anon_sym_DOT_DOT_LT] = ACTIONS(978), [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), [anon_sym_DOT_DOT_LT2] = ACTIONS(980), + [anon_sym_null] = ACTIONS(980), + [anon_sym_true] = ACTIONS(980), + [anon_sym_false] = ACTIONS(980), + [aux_sym__val_number_decimal_token1] = ACTIONS(978), + [aux_sym__val_number_decimal_token2] = ACTIONS(980), + [aux_sym__val_number_decimal_token3] = ACTIONS(980), + [aux_sym__val_number_decimal_token4] = ACTIONS(980), + [aux_sym__val_number_token1] = ACTIONS(980), + [aux_sym__val_number_token2] = ACTIONS(980), + [aux_sym__val_number_token3] = ACTIONS(980), + [aux_sym__val_number_token4] = ACTIONS(980), + [aux_sym__val_number_token5] = ACTIONS(980), + [aux_sym__val_number_token6] = ACTIONS(980), + [anon_sym_0b] = ACTIONS(978), + [anon_sym_0o] = ACTIONS(978), + [anon_sym_0x] = ACTIONS(978), + [sym_val_date] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(980), + [sym__str_single_quotes] = ACTIONS(980), + [sym__str_back_ticks] = ACTIONS(980), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(980), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(980), [anon_sym_err_GT] = ACTIONS(978), [anon_sym_out_GT] = ACTIONS(978), [anon_sym_e_GT] = ACTIONS(978), @@ -212295,363 +214209,502 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), + [aux_sym_unquoted_token1] = ACTIONS(978), [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(980), }, - [1446] = { - [sym_path] = STATE(1510), - [sym_comment] = STATE(1446), - [aux_sym_cell_path_repeat1] = STATE(1446), - [ts_builtin_sym_end] = ACTIONS(973), - [sym__newline] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(973), - [anon_sym_err_GT_PIPE] = ACTIONS(973), - [anon_sym_out_GT_PIPE] = ACTIONS(973), - [anon_sym_e_GT_PIPE] = ACTIONS(973), - [anon_sym_o_GT_PIPE] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), - [anon_sym_LBRACK] = ACTIONS(973), - [anon_sym_LPAREN] = ACTIONS(973), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(973), - [anon_sym_DASH2] = ACTIONS(971), - [anon_sym_LBRACE] = ACTIONS(973), - [anon_sym_DOT_DOT] = ACTIONS(971), - [anon_sym_DOT_DOT2] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(4770), - [anon_sym_DOT_DOT_EQ] = ACTIONS(971), - [anon_sym_DOT_DOT_LT] = ACTIONS(971), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(973), - [anon_sym_DOT_DOT_LT2] = ACTIONS(973), - [anon_sym_null] = ACTIONS(973), - [anon_sym_true] = ACTIONS(973), - [anon_sym_false] = ACTIONS(973), - [aux_sym__val_number_decimal_token1] = ACTIONS(971), - [aux_sym__val_number_decimal_token2] = ACTIONS(973), - [aux_sym__val_number_decimal_token3] = ACTIONS(973), - [aux_sym__val_number_decimal_token4] = ACTIONS(973), - [aux_sym__val_number_token1] = ACTIONS(973), - [aux_sym__val_number_token2] = ACTIONS(973), - [aux_sym__val_number_token3] = ACTIONS(973), - [aux_sym__val_number_token4] = ACTIONS(973), - [aux_sym__val_number_token5] = ACTIONS(973), - [aux_sym__val_number_token6] = ACTIONS(973), - [anon_sym_0b] = ACTIONS(971), - [anon_sym_0o] = ACTIONS(971), - [anon_sym_0x] = ACTIONS(971), - [sym_val_date] = ACTIONS(973), - [anon_sym_DQUOTE] = ACTIONS(973), - [sym__str_single_quotes] = ACTIONS(973), - [sym__str_back_ticks] = ACTIONS(973), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(973), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(973), - [anon_sym_err_GT] = ACTIONS(971), - [anon_sym_out_GT] = ACTIONS(971), - [anon_sym_e_GT] = ACTIONS(971), - [anon_sym_o_GT] = ACTIONS(971), - [anon_sym_err_PLUSout_GT] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT] = ACTIONS(971), - [anon_sym_o_PLUSe_GT] = ACTIONS(971), - [anon_sym_e_PLUSo_GT] = ACTIONS(971), - [anon_sym_err_GT_GT] = ACTIONS(973), - [anon_sym_out_GT_GT] = ACTIONS(973), - [anon_sym_e_GT_GT] = ACTIONS(973), - [anon_sym_o_GT_GT] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), - [aux_sym_unquoted_token1] = ACTIONS(971), + [1469] = { + [sym_comment] = STATE(1469), + [ts_builtin_sym_end] = ACTIONS(986), + [sym__newline] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_PIPE] = ACTIONS(986), + [anon_sym_err_GT_PIPE] = ACTIONS(986), + [anon_sym_out_GT_PIPE] = ACTIONS(986), + [anon_sym_e_GT_PIPE] = ACTIONS(986), + [anon_sym_o_GT_PIPE] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_QMARK2] = ACTIONS(4787), + [anon_sym_DOT_DOT2] = ACTIONS(984), + [anon_sym_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(984), + [anon_sym_DOT_DOT_LT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), + [anon_sym_DOT_DOT_LT2] = ACTIONS(986), + [anon_sym_null] = ACTIONS(986), + [anon_sym_true] = ACTIONS(986), + [anon_sym_false] = ACTIONS(986), + [aux_sym__val_number_decimal_token1] = ACTIONS(984), + [aux_sym__val_number_decimal_token2] = ACTIONS(986), + [aux_sym__val_number_decimal_token3] = ACTIONS(986), + [aux_sym__val_number_decimal_token4] = ACTIONS(986), + [aux_sym__val_number_token1] = ACTIONS(986), + [aux_sym__val_number_token2] = ACTIONS(986), + [aux_sym__val_number_token3] = ACTIONS(986), + [aux_sym__val_number_token4] = ACTIONS(986), + [aux_sym__val_number_token5] = ACTIONS(986), + [aux_sym__val_number_token6] = ACTIONS(986), + [anon_sym_0b] = ACTIONS(984), + [anon_sym_0o] = ACTIONS(984), + [anon_sym_0x] = ACTIONS(984), + [sym_val_date] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym__str_single_quotes] = ACTIONS(986), + [sym__str_back_ticks] = ACTIONS(986), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), + [anon_sym_err_GT] = ACTIONS(984), + [anon_sym_out_GT] = ACTIONS(984), + [anon_sym_e_GT] = ACTIONS(984), + [anon_sym_o_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT] = ACTIONS(984), + [anon_sym_err_GT_GT] = ACTIONS(986), + [anon_sym_out_GT_GT] = ACTIONS(986), + [anon_sym_e_GT_GT] = ACTIONS(986), + [anon_sym_o_GT_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), + [aux_sym_unquoted_token1] = ACTIONS(984), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(973), + [sym_raw_string_begin] = ACTIONS(986), }, - [1447] = { - [sym_comment] = STATE(1447), - [sym__newline] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1000), - [anon_sym_err_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_GT_PIPE] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), - [anon_sym_LBRACK] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(1000), - [anon_sym_RPAREN] = ACTIONS(1000), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_DOT_DOT] = ACTIONS(998), - [anon_sym_QMARK2] = ACTIONS(1000), - [anon_sym_DOT_DOT2] = ACTIONS(998), - [anon_sym_DOT] = ACTIONS(998), - [anon_sym_DOT_DOT_EQ] = ACTIONS(998), - [anon_sym_DOT_DOT_LT] = ACTIONS(998), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1000), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1000), - [anon_sym_null] = ACTIONS(1000), - [anon_sym_true] = ACTIONS(1000), - [anon_sym_false] = ACTIONS(1000), - [aux_sym__val_number_decimal_token1] = ACTIONS(998), - [aux_sym__val_number_decimal_token2] = ACTIONS(1000), - [aux_sym__val_number_decimal_token3] = ACTIONS(1000), - [aux_sym__val_number_decimal_token4] = ACTIONS(1000), - [aux_sym__val_number_token1] = ACTIONS(1000), - [aux_sym__val_number_token2] = ACTIONS(1000), - [aux_sym__val_number_token3] = ACTIONS(1000), - [aux_sym__val_number_token4] = ACTIONS(1000), - [aux_sym__val_number_token5] = ACTIONS(1000), - [aux_sym__val_number_token6] = ACTIONS(1000), - [anon_sym_0b] = ACTIONS(998), - [anon_sym_0o] = ACTIONS(998), - [anon_sym_0x] = ACTIONS(998), - [sym_val_date] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(1000), - [sym__str_single_quotes] = ACTIONS(1000), - [sym__str_back_ticks] = ACTIONS(1000), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1000), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1000), - [anon_sym_err_GT] = ACTIONS(998), - [anon_sym_out_GT] = ACTIONS(998), - [anon_sym_e_GT] = ACTIONS(998), - [anon_sym_o_GT] = ACTIONS(998), - [anon_sym_err_PLUSout_GT] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT] = ACTIONS(998), - [anon_sym_o_PLUSe_GT] = ACTIONS(998), - [anon_sym_e_PLUSo_GT] = ACTIONS(998), - [anon_sym_err_GT_GT] = ACTIONS(1000), - [anon_sym_out_GT_GT] = ACTIONS(1000), - [anon_sym_e_GT_GT] = ACTIONS(1000), - [anon_sym_o_GT_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), - [aux_sym_unquoted_token1] = ACTIONS(998), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1000), + [1470] = { + [sym_cell_path] = STATE(1745), + [sym_path] = STATE(1678), + [sym_comment] = STATE(1470), + [aux_sym_cell_path_repeat1] = STATE(1528), + [sym__newline] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_err_GT_PIPE] = ACTIONS(1873), + [anon_sym_out_GT_PIPE] = ACTIONS(1873), + [anon_sym_e_GT_PIPE] = ACTIONS(1873), + [anon_sym_o_GT_PIPE] = ACTIONS(1873), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1873), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1873), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1873), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1873), + [anon_sym_RPAREN] = ACTIONS(1873), + [anon_sym_DOLLAR] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1873), + [anon_sym_DASH2] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1873), + [anon_sym_DOT_DOT_LT] = ACTIONS(1873), + [anon_sym_null] = ACTIONS(1873), + [anon_sym_true] = ACTIONS(1873), + [anon_sym_false] = ACTIONS(1873), + [aux_sym__val_number_decimal_token1] = ACTIONS(1871), + [aux_sym__val_number_decimal_token2] = ACTIONS(1873), + [aux_sym__val_number_decimal_token3] = ACTIONS(1873), + [aux_sym__val_number_decimal_token4] = ACTIONS(1873), + [aux_sym__val_number_token1] = ACTIONS(1873), + [aux_sym__val_number_token2] = ACTIONS(1873), + [aux_sym__val_number_token3] = ACTIONS(1873), + [aux_sym__val_number_token4] = ACTIONS(1873), + [aux_sym__val_number_token5] = ACTIONS(1873), + [aux_sym__val_number_token6] = ACTIONS(1873), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0o] = ACTIONS(1871), + [anon_sym_0x] = ACTIONS(1871), + [sym_val_date] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1873), + [sym__str_single_quotes] = ACTIONS(1873), + [sym__str_back_ticks] = ACTIONS(1873), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1873), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1873), + [anon_sym_err_GT] = ACTIONS(1871), + [anon_sym_out_GT] = ACTIONS(1871), + [anon_sym_e_GT] = ACTIONS(1871), + [anon_sym_o_GT] = ACTIONS(1871), + [anon_sym_err_PLUSout_GT] = ACTIONS(1871), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1871), + [anon_sym_o_PLUSe_GT] = ACTIONS(1871), + [anon_sym_e_PLUSo_GT] = ACTIONS(1871), + [anon_sym_err_GT_GT] = ACTIONS(1873), + [anon_sym_out_GT_GT] = ACTIONS(1873), + [anon_sym_e_GT_GT] = ACTIONS(1873), + [anon_sym_o_GT_GT] = ACTIONS(1873), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1873), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1873), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1873), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1873), + [aux_sym_unquoted_token1] = ACTIONS(1871), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1873), }, - [1448] = { - [sym_comment] = STATE(1448), - [sym__newline] = ACTIONS(1874), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_err_GT_PIPE] = ACTIONS(1874), - [anon_sym_out_GT_PIPE] = ACTIONS(1874), - [anon_sym_e_GT_PIPE] = ACTIONS(1874), - [anon_sym_o_GT_PIPE] = ACTIONS(1874), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), - [anon_sym_LBRACK] = ACTIONS(1874), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1874), - [anon_sym_DOLLAR] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1874), - [anon_sym_DASH2] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1874), - [anon_sym_RBRACE] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_DOT_DOT2] = ACTIONS(4773), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1866), - [anon_sym_DOT_DOT_LT] = ACTIONS(1866), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4775), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4775), - [anon_sym_null] = ACTIONS(1874), - [anon_sym_true] = ACTIONS(1874), - [anon_sym_false] = ACTIONS(1874), - [aux_sym__val_number_decimal_token1] = ACTIONS(1866), - [aux_sym__val_number_decimal_token2] = ACTIONS(1874), - [aux_sym__val_number_decimal_token3] = ACTIONS(1874), - [aux_sym__val_number_decimal_token4] = ACTIONS(1874), - [aux_sym__val_number_token1] = ACTIONS(1874), - [aux_sym__val_number_token2] = ACTIONS(1874), - [aux_sym__val_number_token3] = ACTIONS(1874), - [aux_sym__val_number_token4] = ACTIONS(1874), - [aux_sym__val_number_token5] = ACTIONS(1874), - [aux_sym__val_number_token6] = ACTIONS(1874), - [anon_sym_0b] = ACTIONS(1866), - [anon_sym_0o] = ACTIONS(1866), - [anon_sym_0x] = ACTIONS(1866), - [sym_val_date] = ACTIONS(1874), - [anon_sym_DQUOTE] = ACTIONS(1874), - [sym__str_single_quotes] = ACTIONS(1874), - [sym__str_back_ticks] = ACTIONS(1874), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1874), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1874), - [anon_sym_err_GT] = ACTIONS(1866), - [anon_sym_out_GT] = ACTIONS(1866), - [anon_sym_e_GT] = ACTIONS(1866), - [anon_sym_o_GT] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT] = ACTIONS(1866), - [anon_sym_err_GT_GT] = ACTIONS(1874), - [anon_sym_out_GT_GT] = ACTIONS(1874), - [anon_sym_e_GT_GT] = ACTIONS(1874), - [anon_sym_o_GT_GT] = ACTIONS(1874), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), - [aux_sym_unquoted_token1] = ACTIONS(1866), - [aux_sym_unquoted_token2] = ACTIONS(1546), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1874), + [1471] = { + [sym_cell_path] = STATE(1744), + [sym_path] = STATE(1678), + [sym_comment] = STATE(1471), + [aux_sym_cell_path_repeat1] = STATE(1528), + [sym__newline] = ACTIONS(1851), + [anon_sym_SEMI] = ACTIONS(1851), + [anon_sym_PIPE] = ACTIONS(1851), + [anon_sym_err_GT_PIPE] = ACTIONS(1851), + [anon_sym_out_GT_PIPE] = ACTIONS(1851), + [anon_sym_e_GT_PIPE] = ACTIONS(1851), + [anon_sym_o_GT_PIPE] = ACTIONS(1851), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1851), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1851), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1851), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1851), + [anon_sym_LBRACK] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1851), + [anon_sym_RPAREN] = ACTIONS(1851), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1851), + [anon_sym_DASH2] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1851), + [anon_sym_RBRACE] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1847), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1851), + [anon_sym_DOT_DOT_LT] = ACTIONS(1851), + [anon_sym_null] = ACTIONS(1851), + [anon_sym_true] = ACTIONS(1851), + [anon_sym_false] = ACTIONS(1851), + [aux_sym__val_number_decimal_token1] = ACTIONS(1847), + [aux_sym__val_number_decimal_token2] = ACTIONS(1851), + [aux_sym__val_number_decimal_token3] = ACTIONS(1851), + [aux_sym__val_number_decimal_token4] = ACTIONS(1851), + [aux_sym__val_number_token1] = ACTIONS(1851), + [aux_sym__val_number_token2] = ACTIONS(1851), + [aux_sym__val_number_token3] = ACTIONS(1851), + [aux_sym__val_number_token4] = ACTIONS(1851), + [aux_sym__val_number_token5] = ACTIONS(1851), + [aux_sym__val_number_token6] = ACTIONS(1851), + [anon_sym_0b] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1847), + [anon_sym_0x] = ACTIONS(1847), + [sym_val_date] = ACTIONS(1851), + [anon_sym_DQUOTE] = ACTIONS(1851), + [sym__str_single_quotes] = ACTIONS(1851), + [sym__str_back_ticks] = ACTIONS(1851), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1851), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1851), + [anon_sym_err_GT] = ACTIONS(1847), + [anon_sym_out_GT] = ACTIONS(1847), + [anon_sym_e_GT] = ACTIONS(1847), + [anon_sym_o_GT] = ACTIONS(1847), + [anon_sym_err_PLUSout_GT] = ACTIONS(1847), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1847), + [anon_sym_o_PLUSe_GT] = ACTIONS(1847), + [anon_sym_e_PLUSo_GT] = ACTIONS(1847), + [anon_sym_err_GT_GT] = ACTIONS(1851), + [anon_sym_out_GT_GT] = ACTIONS(1851), + [anon_sym_e_GT_GT] = ACTIONS(1851), + [anon_sym_o_GT_GT] = ACTIONS(1851), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1851), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1851), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1851), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1851), + [aux_sym_unquoted_token1] = ACTIONS(1847), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1851), }, - [1449] = { - [sym_cell_path] = STATE(1754), - [sym_path] = STATE(1703), - [sym_comment] = STATE(1449), - [aux_sym_cell_path_repeat1] = STATE(1505), - [sym__newline] = ACTIONS(1986), - [anon_sym_SEMI] = ACTIONS(1986), - [anon_sym_PIPE] = ACTIONS(1986), - [anon_sym_err_GT_PIPE] = ACTIONS(1986), - [anon_sym_out_GT_PIPE] = ACTIONS(1986), - [anon_sym_e_GT_PIPE] = ACTIONS(1986), - [anon_sym_o_GT_PIPE] = ACTIONS(1986), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1986), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1986), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1986), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1986), - [anon_sym_LBRACK] = ACTIONS(1986), - [anon_sym_LPAREN] = ACTIONS(1986), - [anon_sym_RPAREN] = ACTIONS(1986), - [anon_sym_DOLLAR] = ACTIONS(1984), - [anon_sym_DASH_DASH] = ACTIONS(1986), - [anon_sym_DASH2] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_RBRACE] = ACTIONS(1986), - [anon_sym_DOT_DOT] = ACTIONS(1984), + [1472] = { + [sym_cell_path] = STATE(1805), + [sym_path] = STATE(1678), + [sym_comment] = STATE(1472), + [aux_sym_cell_path_repeat1] = STATE(1528), + [sym__newline] = ACTIONS(1865), + [anon_sym_SEMI] = ACTIONS(1865), + [anon_sym_PIPE] = ACTIONS(1865), + [anon_sym_err_GT_PIPE] = ACTIONS(1865), + [anon_sym_out_GT_PIPE] = ACTIONS(1865), + [anon_sym_e_GT_PIPE] = ACTIONS(1865), + [anon_sym_o_GT_PIPE] = ACTIONS(1865), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1865), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1865), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1865), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1865), + [anon_sym_LBRACK] = ACTIONS(1865), + [anon_sym_LPAREN] = ACTIONS(1865), + [anon_sym_RPAREN] = ACTIONS(1865), + [anon_sym_DOLLAR] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_DASH2] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_RBRACE] = ACTIONS(1865), + [anon_sym_DOT_DOT] = ACTIONS(1863), [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1986), - [anon_sym_DOT_DOT_LT] = ACTIONS(1986), - [anon_sym_null] = ACTIONS(1986), - [anon_sym_true] = ACTIONS(1986), - [anon_sym_false] = ACTIONS(1986), - [aux_sym__val_number_decimal_token1] = ACTIONS(1984), - [aux_sym__val_number_decimal_token2] = ACTIONS(1986), - [aux_sym__val_number_decimal_token3] = ACTIONS(1986), - [aux_sym__val_number_decimal_token4] = ACTIONS(1986), - [aux_sym__val_number_token1] = ACTIONS(1986), - [aux_sym__val_number_token2] = ACTIONS(1986), - [aux_sym__val_number_token3] = ACTIONS(1986), - [aux_sym__val_number_token4] = ACTIONS(1986), - [aux_sym__val_number_token5] = ACTIONS(1986), - [aux_sym__val_number_token6] = ACTIONS(1986), - [anon_sym_0b] = ACTIONS(1984), - [anon_sym_0o] = ACTIONS(1984), - [anon_sym_0x] = ACTIONS(1984), - [sym_val_date] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1986), - [sym__str_single_quotes] = ACTIONS(1986), - [sym__str_back_ticks] = ACTIONS(1986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1986), - [anon_sym_err_GT] = ACTIONS(1984), - [anon_sym_out_GT] = ACTIONS(1984), - [anon_sym_e_GT] = ACTIONS(1984), - [anon_sym_o_GT] = ACTIONS(1984), - [anon_sym_err_PLUSout_GT] = ACTIONS(1984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1984), - [anon_sym_o_PLUSe_GT] = ACTIONS(1984), - [anon_sym_e_PLUSo_GT] = ACTIONS(1984), - [anon_sym_err_GT_GT] = ACTIONS(1986), - [anon_sym_out_GT_GT] = ACTIONS(1986), - [anon_sym_e_GT_GT] = ACTIONS(1986), - [anon_sym_o_GT_GT] = ACTIONS(1986), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1986), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1986), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1986), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1986), - [aux_sym_unquoted_token1] = ACTIONS(1984), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1986), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1865), + [anon_sym_DOT_DOT_LT] = ACTIONS(1865), + [anon_sym_null] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1865), + [anon_sym_false] = ACTIONS(1865), + [aux_sym__val_number_decimal_token1] = ACTIONS(1863), + [aux_sym__val_number_decimal_token2] = ACTIONS(1865), + [aux_sym__val_number_decimal_token3] = ACTIONS(1865), + [aux_sym__val_number_decimal_token4] = ACTIONS(1865), + [aux_sym__val_number_token1] = ACTIONS(1865), + [aux_sym__val_number_token2] = ACTIONS(1865), + [aux_sym__val_number_token3] = ACTIONS(1865), + [aux_sym__val_number_token4] = ACTIONS(1865), + [aux_sym__val_number_token5] = ACTIONS(1865), + [aux_sym__val_number_token6] = ACTIONS(1865), + [anon_sym_0b] = ACTIONS(1863), + [anon_sym_0o] = ACTIONS(1863), + [anon_sym_0x] = ACTIONS(1863), + [sym_val_date] = ACTIONS(1865), + [anon_sym_DQUOTE] = ACTIONS(1865), + [sym__str_single_quotes] = ACTIONS(1865), + [sym__str_back_ticks] = ACTIONS(1865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1865), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1865), + [anon_sym_err_GT] = ACTIONS(1863), + [anon_sym_out_GT] = ACTIONS(1863), + [anon_sym_e_GT] = ACTIONS(1863), + [anon_sym_o_GT] = ACTIONS(1863), + [anon_sym_err_PLUSout_GT] = ACTIONS(1863), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1863), + [anon_sym_o_PLUSe_GT] = ACTIONS(1863), + [anon_sym_e_PLUSo_GT] = ACTIONS(1863), + [anon_sym_err_GT_GT] = ACTIONS(1865), + [anon_sym_out_GT_GT] = ACTIONS(1865), + [anon_sym_e_GT_GT] = ACTIONS(1865), + [anon_sym_o_GT_GT] = ACTIONS(1865), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1865), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1865), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1865), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1865), + [aux_sym_unquoted_token1] = ACTIONS(1863), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1865), }, - [1450] = { - [sym_comment] = STATE(1450), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_RPAREN] = ACTIONS(1016), - [anon_sym_DOLLAR] = ACTIONS(1014), - [anon_sym_DASH_DASH] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1014), - [anon_sym_LBRACE] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_DOT_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT2] = ACTIONS(1014), - [anon_sym_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1014), - [anon_sym_DOT_DOT_LT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1016), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1016), - [anon_sym_null] = ACTIONS(1016), - [anon_sym_true] = ACTIONS(1016), - [anon_sym_false] = ACTIONS(1016), - [aux_sym__val_number_decimal_token1] = ACTIONS(1014), - [aux_sym__val_number_decimal_token2] = ACTIONS(1016), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), - [aux_sym__val_number_token1] = ACTIONS(1016), - [aux_sym__val_number_token2] = ACTIONS(1016), - [aux_sym__val_number_token3] = ACTIONS(1016), - [aux_sym__val_number_token4] = ACTIONS(1016), - [aux_sym__val_number_token5] = ACTIONS(1016), - [aux_sym__val_number_token6] = ACTIONS(1016), - [anon_sym_0b] = ACTIONS(1014), - [anon_sym_0o] = ACTIONS(1014), - [anon_sym_0x] = ACTIONS(1014), - [sym_val_date] = ACTIONS(1016), - [anon_sym_DQUOTE] = ACTIONS(1016), - [sym__str_single_quotes] = ACTIONS(1016), - [sym__str_back_ticks] = ACTIONS(1016), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1016), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1014), - [anon_sym_out_GT] = ACTIONS(1014), - [anon_sym_e_GT] = ACTIONS(1014), - [anon_sym_o_GT] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT] = ACTIONS(1014), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [aux_sym_unquoted_token1] = ACTIONS(1014), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1016), + [1473] = { + [sym_cell_path] = STATE(1792), + [sym_path] = STATE(1678), + [sym_comment] = STATE(1473), + [aux_sym_cell_path_repeat1] = STATE(1528), + [sym__newline] = ACTIONS(1929), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_err_GT_PIPE] = ACTIONS(1929), + [anon_sym_out_GT_PIPE] = ACTIONS(1929), + [anon_sym_e_GT_PIPE] = ACTIONS(1929), + [anon_sym_o_GT_PIPE] = ACTIONS(1929), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1929), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1929), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1929), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(1929), + [anon_sym_LPAREN] = ACTIONS(1929), + [anon_sym_RPAREN] = ACTIONS(1929), + [anon_sym_DOLLAR] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1929), + [anon_sym_DASH2] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_RBRACE] = ACTIONS(1929), + [anon_sym_DOT_DOT] = ACTIONS(1927), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1929), + [anon_sym_DOT_DOT_LT] = ACTIONS(1929), + [anon_sym_null] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1929), + [anon_sym_false] = ACTIONS(1929), + [aux_sym__val_number_decimal_token1] = ACTIONS(1927), + [aux_sym__val_number_decimal_token2] = ACTIONS(1929), + [aux_sym__val_number_decimal_token3] = ACTIONS(1929), + [aux_sym__val_number_decimal_token4] = ACTIONS(1929), + [aux_sym__val_number_token1] = ACTIONS(1929), + [aux_sym__val_number_token2] = ACTIONS(1929), + [aux_sym__val_number_token3] = ACTIONS(1929), + [aux_sym__val_number_token4] = ACTIONS(1929), + [aux_sym__val_number_token5] = ACTIONS(1929), + [aux_sym__val_number_token6] = ACTIONS(1929), + [anon_sym_0b] = ACTIONS(1927), + [anon_sym_0o] = ACTIONS(1927), + [anon_sym_0x] = ACTIONS(1927), + [sym_val_date] = ACTIONS(1929), + [anon_sym_DQUOTE] = ACTIONS(1929), + [sym__str_single_quotes] = ACTIONS(1929), + [sym__str_back_ticks] = ACTIONS(1929), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1929), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1929), + [anon_sym_err_GT] = ACTIONS(1927), + [anon_sym_out_GT] = ACTIONS(1927), + [anon_sym_e_GT] = ACTIONS(1927), + [anon_sym_o_GT] = ACTIONS(1927), + [anon_sym_err_PLUSout_GT] = ACTIONS(1927), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1927), + [anon_sym_o_PLUSe_GT] = ACTIONS(1927), + [anon_sym_e_PLUSo_GT] = ACTIONS(1927), + [anon_sym_err_GT_GT] = ACTIONS(1929), + [anon_sym_out_GT_GT] = ACTIONS(1929), + [anon_sym_e_GT_GT] = ACTIONS(1929), + [anon_sym_o_GT_GT] = ACTIONS(1929), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1929), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1929), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1929), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1929), + [aux_sym_unquoted_token1] = ACTIONS(1927), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1929), }, - [1451] = { - [sym_comment] = STATE(1451), + [1474] = { + [sym_cell_path] = STATE(1797), + [sym_path] = STATE(1678), + [sym_comment] = STATE(1474), + [aux_sym_cell_path_repeat1] = STATE(1528), + [sym__newline] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(1881), + [anon_sym_err_GT_PIPE] = ACTIONS(1881), + [anon_sym_out_GT_PIPE] = ACTIONS(1881), + [anon_sym_e_GT_PIPE] = ACTIONS(1881), + [anon_sym_o_GT_PIPE] = ACTIONS(1881), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1881), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1881), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1881), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_RPAREN] = ACTIONS(1881), + [anon_sym_DOLLAR] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_DASH2] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1881), + [anon_sym_DOT_DOT_LT] = ACTIONS(1881), + [anon_sym_null] = ACTIONS(1881), + [anon_sym_true] = ACTIONS(1881), + [anon_sym_false] = ACTIONS(1881), + [aux_sym__val_number_decimal_token1] = ACTIONS(1879), + [aux_sym__val_number_decimal_token2] = ACTIONS(1881), + [aux_sym__val_number_decimal_token3] = ACTIONS(1881), + [aux_sym__val_number_decimal_token4] = ACTIONS(1881), + [aux_sym__val_number_token1] = ACTIONS(1881), + [aux_sym__val_number_token2] = ACTIONS(1881), + [aux_sym__val_number_token3] = ACTIONS(1881), + [aux_sym__val_number_token4] = ACTIONS(1881), + [aux_sym__val_number_token5] = ACTIONS(1881), + [aux_sym__val_number_token6] = ACTIONS(1881), + [anon_sym_0b] = ACTIONS(1879), + [anon_sym_0o] = ACTIONS(1879), + [anon_sym_0x] = ACTIONS(1879), + [sym_val_date] = ACTIONS(1881), + [anon_sym_DQUOTE] = ACTIONS(1881), + [sym__str_single_quotes] = ACTIONS(1881), + [sym__str_back_ticks] = ACTIONS(1881), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1881), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1881), + [anon_sym_err_GT] = ACTIONS(1879), + [anon_sym_out_GT] = ACTIONS(1879), + [anon_sym_e_GT] = ACTIONS(1879), + [anon_sym_o_GT] = ACTIONS(1879), + [anon_sym_err_PLUSout_GT] = ACTIONS(1879), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1879), + [anon_sym_o_PLUSe_GT] = ACTIONS(1879), + [anon_sym_e_PLUSo_GT] = ACTIONS(1879), + [anon_sym_err_GT_GT] = ACTIONS(1881), + [anon_sym_out_GT_GT] = ACTIONS(1881), + [anon_sym_e_GT_GT] = ACTIONS(1881), + [anon_sym_o_GT_GT] = ACTIONS(1881), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1881), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1881), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1881), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1881), + [aux_sym_unquoted_token1] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1881), + }, + [1475] = { + [sym_cell_path] = STATE(1787), + [sym_path] = STATE(1678), + [sym_comment] = STATE(1475), + [aux_sym_cell_path_repeat1] = STATE(1528), + [sym__newline] = ACTIONS(1885), + [anon_sym_SEMI] = ACTIONS(1885), + [anon_sym_PIPE] = ACTIONS(1885), + [anon_sym_err_GT_PIPE] = ACTIONS(1885), + [anon_sym_out_GT_PIPE] = ACTIONS(1885), + [anon_sym_e_GT_PIPE] = ACTIONS(1885), + [anon_sym_o_GT_PIPE] = ACTIONS(1885), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1885), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1885), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1885), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1885), + [anon_sym_LBRACK] = ACTIONS(1885), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_RPAREN] = ACTIONS(1885), + [anon_sym_DOLLAR] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1885), + [anon_sym_DASH2] = ACTIONS(1883), + [anon_sym_LBRACE] = ACTIONS(1885), + [anon_sym_RBRACE] = ACTIONS(1885), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1885), + [anon_sym_DOT_DOT_LT] = ACTIONS(1885), + [anon_sym_null] = ACTIONS(1885), + [anon_sym_true] = ACTIONS(1885), + [anon_sym_false] = ACTIONS(1885), + [aux_sym__val_number_decimal_token1] = ACTIONS(1883), + [aux_sym__val_number_decimal_token2] = ACTIONS(1885), + [aux_sym__val_number_decimal_token3] = ACTIONS(1885), + [aux_sym__val_number_decimal_token4] = ACTIONS(1885), + [aux_sym__val_number_token1] = ACTIONS(1885), + [aux_sym__val_number_token2] = ACTIONS(1885), + [aux_sym__val_number_token3] = ACTIONS(1885), + [aux_sym__val_number_token4] = ACTIONS(1885), + [aux_sym__val_number_token5] = ACTIONS(1885), + [aux_sym__val_number_token6] = ACTIONS(1885), + [anon_sym_0b] = ACTIONS(1883), + [anon_sym_0o] = ACTIONS(1883), + [anon_sym_0x] = ACTIONS(1883), + [sym_val_date] = ACTIONS(1885), + [anon_sym_DQUOTE] = ACTIONS(1885), + [sym__str_single_quotes] = ACTIONS(1885), + [sym__str_back_ticks] = ACTIONS(1885), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1885), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1885), + [anon_sym_err_GT] = ACTIONS(1883), + [anon_sym_out_GT] = ACTIONS(1883), + [anon_sym_e_GT] = ACTIONS(1883), + [anon_sym_o_GT] = ACTIONS(1883), + [anon_sym_err_PLUSout_GT] = ACTIONS(1883), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1883), + [anon_sym_o_PLUSe_GT] = ACTIONS(1883), + [anon_sym_e_PLUSo_GT] = ACTIONS(1883), + [anon_sym_err_GT_GT] = ACTIONS(1885), + [anon_sym_out_GT_GT] = ACTIONS(1885), + [anon_sym_e_GT_GT] = ACTIONS(1885), + [anon_sym_o_GT_GT] = ACTIONS(1885), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1885), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1885), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1885), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1885), + [aux_sym_unquoted_token1] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1885), + }, + [1476] = { + [sym_comment] = STATE(1476), [sym__newline] = ACTIONS(1741), [anon_sym_SEMI] = ACTIONS(1741), [anon_sym_PIPE] = ACTIONS(1741), @@ -212675,8 +214728,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN2] = ACTIONS(1741), [anon_sym_DOT_DOT_EQ] = ACTIONS(1741), [anon_sym_DOT_DOT_LT] = ACTIONS(1741), - [aux_sym__immediate_decimal_token1] = ACTIONS(4779), - [aux_sym__immediate_decimal_token2] = ACTIONS(4781), + [aux_sym__immediate_decimal_token1] = ACTIONS(4789), + [aux_sym__immediate_decimal_token2] = ACTIONS(4791), [anon_sym_null] = ACTIONS(1741), [anon_sym_true] = ACTIONS(1741), [anon_sym_false] = ACTIONS(1741), @@ -212718,10 +214771,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(1739), [aux_sym_unquoted_token2] = ACTIONS(1739), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), + [sym_raw_string_begin] = ACTIONS(1741), + }, + [1477] = { + [sym_comment] = STATE(1477), + [ts_builtin_sym_end] = ACTIONS(992), + [sym__newline] = ACTIONS(992), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(992), + [anon_sym_err_GT_PIPE] = ACTIONS(992), + [anon_sym_out_GT_PIPE] = ACTIONS(992), + [anon_sym_e_GT_PIPE] = ACTIONS(992), + [anon_sym_o_GT_PIPE] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), + [anon_sym_LBRACK] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_DASH2] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_DOT_DOT] = ACTIONS(990), + [anon_sym_QMARK2] = ACTIONS(992), + [anon_sym_DOT_DOT2] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ] = ACTIONS(990), + [anon_sym_DOT_DOT_LT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), + [anon_sym_DOT_DOT_LT2] = ACTIONS(992), + [anon_sym_null] = ACTIONS(992), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = ACTIONS(992), + [aux_sym__val_number_decimal_token4] = ACTIONS(992), + [aux_sym__val_number_token1] = ACTIONS(992), + [aux_sym__val_number_token2] = ACTIONS(992), + [aux_sym__val_number_token3] = ACTIONS(992), + [aux_sym__val_number_token4] = ACTIONS(992), + [aux_sym__val_number_token5] = ACTIONS(992), + [aux_sym__val_number_token6] = ACTIONS(992), + [anon_sym_0b] = ACTIONS(990), + [anon_sym_0o] = ACTIONS(990), + [anon_sym_0x] = ACTIONS(990), + [sym_val_date] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), + [anon_sym_err_GT] = ACTIONS(990), + [anon_sym_out_GT] = ACTIONS(990), + [anon_sym_e_GT] = ACTIONS(990), + [anon_sym_o_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT] = ACTIONS(990), + [anon_sym_err_GT_GT] = ACTIONS(992), + [anon_sym_out_GT_GT] = ACTIONS(992), + [anon_sym_e_GT_GT] = ACTIONS(992), + [anon_sym_o_GT_GT] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), + [aux_sym_unquoted_token1] = ACTIONS(990), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(992), + }, + [1478] = { + [sym_comment] = STATE(1478), + [sym__newline] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_err_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_GT_PIPE] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_RPAREN] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_DOT_DOT] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1767), + [anon_sym_DOT] = ACTIONS(4793), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), + [anon_sym_DOT_DOT_LT] = ACTIONS(1767), + [aux_sym__immediate_decimal_token2] = ACTIONS(4795), + [anon_sym_null] = ACTIONS(1767), + [anon_sym_true] = ACTIONS(1767), + [anon_sym_false] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1767), + [aux_sym__val_number_token5] = ACTIONS(1767), + [aux_sym__val_number_token6] = ACTIONS(1767), + [anon_sym_0b] = ACTIONS(1765), + [anon_sym_0o] = ACTIONS(1765), + [anon_sym_0x] = ACTIONS(1765), + [sym_val_date] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), + [anon_sym_err_GT] = ACTIONS(1765), + [anon_sym_out_GT] = ACTIONS(1765), + [anon_sym_e_GT] = ACTIONS(1765), + [anon_sym_o_GT] = ACTIONS(1765), + [anon_sym_err_PLUSout_GT] = ACTIONS(1765), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), + [anon_sym_o_PLUSe_GT] = ACTIONS(1765), + [anon_sym_e_PLUSo_GT] = ACTIONS(1765), + [anon_sym_err_GT_GT] = ACTIONS(1767), + [anon_sym_out_GT_GT] = ACTIONS(1767), + [anon_sym_e_GT_GT] = ACTIONS(1767), + [anon_sym_o_GT_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), + [aux_sym_unquoted_token1] = ACTIONS(1765), + [aux_sym_unquoted_token2] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1767), + }, + [1479] = { + [sym_comment] = STATE(1479), + [ts_builtin_sym_end] = ACTIONS(996), + [sym__newline] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_err_GT_PIPE] = ACTIONS(996), + [anon_sym_out_GT_PIPE] = ACTIONS(996), + [anon_sym_e_GT_PIPE] = ACTIONS(996), + [anon_sym_o_GT_PIPE] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(996), + [anon_sym_DOT_DOT] = ACTIONS(994), + [anon_sym_QMARK2] = ACTIONS(996), + [anon_sym_DOT_DOT2] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ] = ACTIONS(994), + [anon_sym_DOT_DOT_LT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), + [anon_sym_DOT_DOT_LT2] = ACTIONS(996), + [anon_sym_null] = ACTIONS(996), + [anon_sym_true] = ACTIONS(996), + [anon_sym_false] = ACTIONS(996), + [aux_sym__val_number_decimal_token1] = ACTIONS(994), + [aux_sym__val_number_decimal_token2] = ACTIONS(996), + [aux_sym__val_number_decimal_token3] = ACTIONS(996), + [aux_sym__val_number_decimal_token4] = ACTIONS(996), + [aux_sym__val_number_token1] = ACTIONS(996), + [aux_sym__val_number_token2] = ACTIONS(996), + [aux_sym__val_number_token3] = ACTIONS(996), + [aux_sym__val_number_token4] = ACTIONS(996), + [aux_sym__val_number_token5] = ACTIONS(996), + [aux_sym__val_number_token6] = ACTIONS(996), + [anon_sym_0b] = ACTIONS(994), + [anon_sym_0o] = ACTIONS(994), + [anon_sym_0x] = ACTIONS(994), + [sym_val_date] = ACTIONS(996), + [anon_sym_DQUOTE] = ACTIONS(996), + [sym__str_single_quotes] = ACTIONS(996), + [sym__str_back_ticks] = ACTIONS(996), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(996), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(996), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(996), + [anon_sym_out_GT_GT] = ACTIONS(996), + [anon_sym_e_GT_GT] = ACTIONS(996), + [anon_sym_o_GT_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [aux_sym_unquoted_token1] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(996), }, - [1452] = { - [sym_comment] = STATE(1452), + [1480] = { + [sym_comment] = STATE(1480), [ts_builtin_sym_end] = ACTIONS(1000), [sym__newline] = ACTIONS(1000), [anon_sym_SEMI] = ACTIONS(1000), @@ -212790,8 +215053,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1000), }, - [1453] = { - [sym_comment] = STATE(1453), + [1481] = { + [sym_comment] = STATE(1481), + [sym__newline] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1008), + [anon_sym_RPAREN] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1008), + [anon_sym_DASH2] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT2] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), + [anon_sym_null] = ACTIONS(1008), + [anon_sym_true] = ACTIONS(1008), + [anon_sym_false] = ACTIONS(1008), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1008), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_decimal_token4] = ACTIONS(1008), + [aux_sym__val_number_token1] = ACTIONS(1008), + [aux_sym__val_number_token2] = ACTIONS(1008), + [aux_sym__val_number_token3] = ACTIONS(1008), + [aux_sym__val_number_token4] = ACTIONS(1008), + [aux_sym__val_number_token5] = ACTIONS(1008), + [aux_sym__val_number_token6] = ACTIONS(1008), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1008), + [anon_sym_DQUOTE] = ACTIONS(1008), + [sym__str_single_quotes] = ACTIONS(1008), + [sym__str_back_ticks] = ACTIONS(1008), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1008), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1008), + [anon_sym_err_GT] = ACTIONS(1006), + [anon_sym_out_GT] = ACTIONS(1006), + [anon_sym_e_GT] = ACTIONS(1006), + [anon_sym_o_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT] = ACTIONS(1006), + [anon_sym_err_GT_GT] = ACTIONS(1008), + [anon_sym_out_GT_GT] = ACTIONS(1008), + [anon_sym_e_GT_GT] = ACTIONS(1008), + [anon_sym_o_GT_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [aux_sym_unquoted_token1] = ACTIONS(1006), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1008), + }, + [1482] = { + [sym_comment] = STATE(1482), [ts_builtin_sym_end] = ACTIONS(1004), [sym__newline] = ACTIONS(1004), [anon_sym_SEMI] = ACTIONS(1004), @@ -212860,78 +215193,778 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1004), }, - [1454] = { - [sym_comment] = STATE(1454), - [anon_sym_EQ] = ACTIONS(1018), - [anon_sym_PLUS_EQ] = ACTIONS(1020), - [anon_sym_DASH_EQ] = ACTIONS(1020), - [anon_sym_STAR_EQ] = ACTIONS(1020), - [anon_sym_SLASH_EQ] = ACTIONS(1020), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1020), - [sym__newline] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1020), - [anon_sym_PIPE] = ACTIONS(1020), - [anon_sym_err_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_GT_PIPE] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), - [anon_sym_GT2] = ACTIONS(1018), - [anon_sym_DASH2] = ACTIONS(1018), - [anon_sym_in2] = ACTIONS(1020), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_STAR2] = ACTIONS(1018), - [anon_sym_and2] = ACTIONS(1020), - [anon_sym_xor2] = ACTIONS(1020), - [anon_sym_or2] = ACTIONS(1020), - [anon_sym_not_DASHin2] = ACTIONS(1020), - [anon_sym_starts_DASHwith2] = ACTIONS(1020), - [anon_sym_ends_DASHwith2] = ACTIONS(1020), - [anon_sym_EQ_EQ2] = ACTIONS(1020), - [anon_sym_BANG_EQ2] = ACTIONS(1020), - [anon_sym_LT2] = ACTIONS(1018), - [anon_sym_LT_EQ2] = ACTIONS(1020), - [anon_sym_GT_EQ2] = ACTIONS(1020), - [anon_sym_EQ_TILDE2] = ACTIONS(1020), - [anon_sym_BANG_TILDE2] = ACTIONS(1020), - [anon_sym_STAR_STAR2] = ACTIONS(1020), - [anon_sym_PLUS_PLUS2] = ACTIONS(1018), - [anon_sym_SLASH2] = ACTIONS(1018), - [anon_sym_mod2] = ACTIONS(1020), - [anon_sym_SLASH_SLASH2] = ACTIONS(1020), - [anon_sym_PLUS2] = ACTIONS(1018), - [anon_sym_bit_DASHshl2] = ACTIONS(1020), - [anon_sym_bit_DASHshr2] = ACTIONS(1020), - [anon_sym_bit_DASHand2] = ACTIONS(1020), - [anon_sym_bit_DASHxor2] = ACTIONS(1020), - [anon_sym_bit_DASHor2] = ACTIONS(1020), - [anon_sym_DOT_DOT2] = ACTIONS(1018), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1020), - [aux_sym_record_entry_token1] = ACTIONS(1020), - [anon_sym_err_GT] = ACTIONS(1018), - [anon_sym_out_GT] = ACTIONS(1018), - [anon_sym_e_GT] = ACTIONS(1018), - [anon_sym_o_GT] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT] = ACTIONS(1018), - [anon_sym_err_GT_GT] = ACTIONS(1020), - [anon_sym_out_GT_GT] = ACTIONS(1020), - [anon_sym_e_GT_GT] = ACTIONS(1020), - [anon_sym_o_GT_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), + [1483] = { + [sym_cell_path] = STATE(1830), + [sym_path] = STATE(1678), + [sym_comment] = STATE(1483), + [aux_sym_cell_path_repeat1] = STATE(1528), + [sym__newline] = ACTIONS(1889), + [anon_sym_SEMI] = ACTIONS(1889), + [anon_sym_PIPE] = ACTIONS(1889), + [anon_sym_err_GT_PIPE] = ACTIONS(1889), + [anon_sym_out_GT_PIPE] = ACTIONS(1889), + [anon_sym_e_GT_PIPE] = ACTIONS(1889), + [anon_sym_o_GT_PIPE] = ACTIONS(1889), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1889), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1889), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1889), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1889), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1889), + [anon_sym_RPAREN] = ACTIONS(1889), + [anon_sym_DOLLAR] = ACTIONS(1887), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_DASH2] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1889), + [anon_sym_RBRACE] = ACTIONS(1889), + [anon_sym_DOT_DOT] = ACTIONS(1887), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1889), + [anon_sym_DOT_DOT_LT] = ACTIONS(1889), + [anon_sym_null] = ACTIONS(1889), + [anon_sym_true] = ACTIONS(1889), + [anon_sym_false] = ACTIONS(1889), + [aux_sym__val_number_decimal_token1] = ACTIONS(1887), + [aux_sym__val_number_decimal_token2] = ACTIONS(1889), + [aux_sym__val_number_decimal_token3] = ACTIONS(1889), + [aux_sym__val_number_decimal_token4] = ACTIONS(1889), + [aux_sym__val_number_token1] = ACTIONS(1889), + [aux_sym__val_number_token2] = ACTIONS(1889), + [aux_sym__val_number_token3] = ACTIONS(1889), + [aux_sym__val_number_token4] = ACTIONS(1889), + [aux_sym__val_number_token5] = ACTIONS(1889), + [aux_sym__val_number_token6] = ACTIONS(1889), + [anon_sym_0b] = ACTIONS(1887), + [anon_sym_0o] = ACTIONS(1887), + [anon_sym_0x] = ACTIONS(1887), + [sym_val_date] = ACTIONS(1889), + [anon_sym_DQUOTE] = ACTIONS(1889), + [sym__str_single_quotes] = ACTIONS(1889), + [sym__str_back_ticks] = ACTIONS(1889), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1889), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1889), + [anon_sym_err_GT] = ACTIONS(1887), + [anon_sym_out_GT] = ACTIONS(1887), + [anon_sym_e_GT] = ACTIONS(1887), + [anon_sym_o_GT] = ACTIONS(1887), + [anon_sym_err_PLUSout_GT] = ACTIONS(1887), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1887), + [anon_sym_o_PLUSe_GT] = ACTIONS(1887), + [anon_sym_e_PLUSo_GT] = ACTIONS(1887), + [anon_sym_err_GT_GT] = ACTIONS(1889), + [anon_sym_out_GT_GT] = ACTIONS(1889), + [anon_sym_e_GT_GT] = ACTIONS(1889), + [anon_sym_o_GT_GT] = ACTIONS(1889), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1889), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1889), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1889), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1889), + [aux_sym_unquoted_token1] = ACTIONS(1887), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1889), + }, + [1484] = { + [sym_comment] = STATE(1484), + [anon_sym_EQ] = ACTIONS(1044), + [anon_sym_PLUS_EQ] = ACTIONS(1046), + [anon_sym_DASH_EQ] = ACTIONS(1046), + [anon_sym_STAR_EQ] = ACTIONS(1046), + [anon_sym_SLASH_EQ] = ACTIONS(1046), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1046), + [sym__newline] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_err_GT_PIPE] = ACTIONS(1046), + [anon_sym_out_GT_PIPE] = ACTIONS(1046), + [anon_sym_e_GT_PIPE] = ACTIONS(1046), + [anon_sym_o_GT_PIPE] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1046), + [anon_sym_RPAREN] = ACTIONS(1046), + [anon_sym_GT2] = ACTIONS(1044), + [anon_sym_DASH2] = ACTIONS(1044), + [anon_sym_in2] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_STAR2] = ACTIONS(1044), + [anon_sym_and2] = ACTIONS(1046), + [anon_sym_xor2] = ACTIONS(1046), + [anon_sym_or2] = ACTIONS(1046), + [anon_sym_not_DASHin2] = ACTIONS(1046), + [anon_sym_starts_DASHwith2] = ACTIONS(1046), + [anon_sym_ends_DASHwith2] = ACTIONS(1046), + [anon_sym_EQ_EQ2] = ACTIONS(1046), + [anon_sym_BANG_EQ2] = ACTIONS(1046), + [anon_sym_LT2] = ACTIONS(1044), + [anon_sym_LT_EQ2] = ACTIONS(1046), + [anon_sym_GT_EQ2] = ACTIONS(1046), + [anon_sym_EQ_TILDE2] = ACTIONS(1046), + [anon_sym_BANG_TILDE2] = ACTIONS(1046), + [anon_sym_STAR_STAR2] = ACTIONS(1046), + [anon_sym_PLUS_PLUS2] = ACTIONS(1044), + [anon_sym_SLASH2] = ACTIONS(1044), + [anon_sym_mod2] = ACTIONS(1046), + [anon_sym_SLASH_SLASH2] = ACTIONS(1046), + [anon_sym_PLUS2] = ACTIONS(1044), + [anon_sym_bit_DASHshl2] = ACTIONS(1046), + [anon_sym_bit_DASHshr2] = ACTIONS(1046), + [anon_sym_bit_DASHand2] = ACTIONS(1046), + [anon_sym_bit_DASHxor2] = ACTIONS(1046), + [anon_sym_bit_DASHor2] = ACTIONS(1046), + [anon_sym_DOT_DOT2] = ACTIONS(1044), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), + [anon_sym_err_GT] = ACTIONS(1044), + [anon_sym_out_GT] = ACTIONS(1044), + [anon_sym_e_GT] = ACTIONS(1044), + [anon_sym_o_GT] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT] = ACTIONS(1044), + [anon_sym_err_GT_GT] = ACTIONS(1046), + [anon_sym_out_GT_GT] = ACTIONS(1046), + [anon_sym_e_GT_GT] = ACTIONS(1046), + [anon_sym_o_GT_GT] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1046), [anon_sym_POUND] = ACTIONS(247), }, - [1455] = { - [sym_comment] = STATE(1455), + [1485] = { + [sym_comment] = STATE(1485), + [sym__newline] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1012), + [anon_sym_PIPE] = ACTIONS(1012), + [anon_sym_err_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_GT_PIPE] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_LPAREN] = ACTIONS(1012), + [anon_sym_RPAREN] = ACTIONS(1012), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1012), + [anon_sym_DASH2] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_RBRACE] = ACTIONS(1012), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT2] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [anon_sym_DOT_DOT_LT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), + [anon_sym_null] = ACTIONS(1012), + [anon_sym_true] = ACTIONS(1012), + [anon_sym_false] = ACTIONS(1012), + [aux_sym__val_number_decimal_token1] = ACTIONS(1010), + [aux_sym__val_number_decimal_token2] = ACTIONS(1012), + [aux_sym__val_number_decimal_token3] = ACTIONS(1012), + [aux_sym__val_number_decimal_token4] = ACTIONS(1012), + [aux_sym__val_number_token1] = ACTIONS(1012), + [aux_sym__val_number_token2] = ACTIONS(1012), + [aux_sym__val_number_token3] = ACTIONS(1012), + [aux_sym__val_number_token4] = ACTIONS(1012), + [aux_sym__val_number_token5] = ACTIONS(1012), + [aux_sym__val_number_token6] = ACTIONS(1012), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1012), + [anon_sym_DQUOTE] = ACTIONS(1012), + [sym__str_single_quotes] = ACTIONS(1012), + [sym__str_back_ticks] = ACTIONS(1012), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1012), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1012), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [anon_sym_err_GT_GT] = ACTIONS(1012), + [anon_sym_out_GT_GT] = ACTIONS(1012), + [anon_sym_e_GT_GT] = ACTIONS(1012), + [anon_sym_o_GT_GT] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), + [aux_sym_unquoted_token1] = ACTIONS(1010), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1012), + }, + [1486] = { + [sym_comment] = STATE(1486), + [sym__newline] = ACTIONS(1016), + [anon_sym_SEMI] = ACTIONS(1016), + [anon_sym_PIPE] = ACTIONS(1016), + [anon_sym_err_GT_PIPE] = ACTIONS(1016), + [anon_sym_out_GT_PIPE] = ACTIONS(1016), + [anon_sym_e_GT_PIPE] = ACTIONS(1016), + [anon_sym_o_GT_PIPE] = ACTIONS(1016), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(1016), + [anon_sym_LPAREN] = ACTIONS(1016), + [anon_sym_RPAREN] = ACTIONS(1016), + [anon_sym_DOLLAR] = ACTIONS(1014), + [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(1014), + [anon_sym_LBRACE] = ACTIONS(1016), + [anon_sym_RBRACE] = ACTIONS(1016), + [anon_sym_DOT_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT2] = ACTIONS(1014), + [anon_sym_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1014), + [anon_sym_DOT_DOT_LT] = ACTIONS(1014), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1016), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1016), + [anon_sym_null] = ACTIONS(1016), + [anon_sym_true] = ACTIONS(1016), + [anon_sym_false] = ACTIONS(1016), + [aux_sym__val_number_decimal_token1] = ACTIONS(1014), + [aux_sym__val_number_decimal_token2] = ACTIONS(1016), + [aux_sym__val_number_decimal_token3] = ACTIONS(1016), + [aux_sym__val_number_decimal_token4] = ACTIONS(1016), + [aux_sym__val_number_token1] = ACTIONS(1016), + [aux_sym__val_number_token2] = ACTIONS(1016), + [aux_sym__val_number_token3] = ACTIONS(1016), + [aux_sym__val_number_token4] = ACTIONS(1016), + [aux_sym__val_number_token5] = ACTIONS(1016), + [aux_sym__val_number_token6] = ACTIONS(1016), + [anon_sym_0b] = ACTIONS(1014), + [anon_sym_0o] = ACTIONS(1014), + [anon_sym_0x] = ACTIONS(1014), + [sym_val_date] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1016), + [sym__str_single_quotes] = ACTIONS(1016), + [sym__str_back_ticks] = ACTIONS(1016), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1016), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1016), + [anon_sym_err_GT] = ACTIONS(1014), + [anon_sym_out_GT] = ACTIONS(1014), + [anon_sym_e_GT] = ACTIONS(1014), + [anon_sym_o_GT] = ACTIONS(1014), + [anon_sym_err_PLUSout_GT] = ACTIONS(1014), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), + [anon_sym_o_PLUSe_GT] = ACTIONS(1014), + [anon_sym_e_PLUSo_GT] = ACTIONS(1014), + [anon_sym_err_GT_GT] = ACTIONS(1016), + [anon_sym_out_GT_GT] = ACTIONS(1016), + [anon_sym_e_GT_GT] = ACTIONS(1016), + [anon_sym_o_GT_GT] = ACTIONS(1016), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), + [aux_sym_unquoted_token1] = ACTIONS(1014), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1016), + }, + [1487] = { + [sym_cell_path] = STATE(1777), + [sym_path] = STATE(1678), + [sym_comment] = STATE(1487), + [aux_sym_cell_path_repeat1] = STATE(1528), + [sym__newline] = ACTIONS(1893), + [anon_sym_SEMI] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_err_GT_PIPE] = ACTIONS(1893), + [anon_sym_out_GT_PIPE] = ACTIONS(1893), + [anon_sym_e_GT_PIPE] = ACTIONS(1893), + [anon_sym_o_GT_PIPE] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1893), + [anon_sym_LBRACK] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1893), + [anon_sym_RPAREN] = ACTIONS(1893), + [anon_sym_DOLLAR] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1893), + [anon_sym_DASH2] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_RBRACE] = ACTIONS(1893), + [anon_sym_DOT_DOT] = ACTIONS(1891), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1893), + [anon_sym_DOT_DOT_LT] = ACTIONS(1893), + [anon_sym_null] = ACTIONS(1893), + [anon_sym_true] = ACTIONS(1893), + [anon_sym_false] = ACTIONS(1893), + [aux_sym__val_number_decimal_token1] = ACTIONS(1891), + [aux_sym__val_number_decimal_token2] = ACTIONS(1893), + [aux_sym__val_number_decimal_token3] = ACTIONS(1893), + [aux_sym__val_number_decimal_token4] = ACTIONS(1893), + [aux_sym__val_number_token1] = ACTIONS(1893), + [aux_sym__val_number_token2] = ACTIONS(1893), + [aux_sym__val_number_token3] = ACTIONS(1893), + [aux_sym__val_number_token4] = ACTIONS(1893), + [aux_sym__val_number_token5] = ACTIONS(1893), + [aux_sym__val_number_token6] = ACTIONS(1893), + [anon_sym_0b] = ACTIONS(1891), + [anon_sym_0o] = ACTIONS(1891), + [anon_sym_0x] = ACTIONS(1891), + [sym_val_date] = ACTIONS(1893), + [anon_sym_DQUOTE] = ACTIONS(1893), + [sym__str_single_quotes] = ACTIONS(1893), + [sym__str_back_ticks] = ACTIONS(1893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1893), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1893), + [anon_sym_err_GT] = ACTIONS(1891), + [anon_sym_out_GT] = ACTIONS(1891), + [anon_sym_e_GT] = ACTIONS(1891), + [anon_sym_o_GT] = ACTIONS(1891), + [anon_sym_err_PLUSout_GT] = ACTIONS(1891), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1891), + [anon_sym_o_PLUSe_GT] = ACTIONS(1891), + [anon_sym_e_PLUSo_GT] = ACTIONS(1891), + [anon_sym_err_GT_GT] = ACTIONS(1893), + [anon_sym_out_GT_GT] = ACTIONS(1893), + [anon_sym_e_GT_GT] = ACTIONS(1893), + [anon_sym_o_GT_GT] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1893), + [aux_sym_unquoted_token1] = ACTIONS(1891), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1893), + }, + [1488] = { + [sym_comment] = STATE(1488), + [ts_builtin_sym_end] = ACTIONS(1810), + [sym__newline] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_PIPE] = ACTIONS(1810), + [anon_sym_err_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_GT_PIPE] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1802), + [anon_sym_DOLLAR] = ACTIONS(1802), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_DASH2] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_DOT_DOT] = ACTIONS(1802), + [anon_sym_LPAREN2] = ACTIONS(1804), + [anon_sym_DOT_DOT2] = ACTIONS(4797), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1802), + [anon_sym_DOT_DOT_LT] = ACTIONS(1802), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4799), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4799), + [anon_sym_null] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1810), + [anon_sym_false] = ACTIONS(1810), + [aux_sym__val_number_decimal_token1] = ACTIONS(1802), + [aux_sym__val_number_decimal_token2] = ACTIONS(1810), + [aux_sym__val_number_decimal_token3] = ACTIONS(1810), + [aux_sym__val_number_decimal_token4] = ACTIONS(1810), + [aux_sym__val_number_token1] = ACTIONS(1810), + [aux_sym__val_number_token2] = ACTIONS(1810), + [aux_sym__val_number_token3] = ACTIONS(1810), + [aux_sym__val_number_token4] = ACTIONS(1810), + [aux_sym__val_number_token5] = ACTIONS(1810), + [aux_sym__val_number_token6] = ACTIONS(1810), + [anon_sym_0b] = ACTIONS(1802), + [anon_sym_0o] = ACTIONS(1802), + [anon_sym_0x] = ACTIONS(1802), + [sym_val_date] = ACTIONS(1810), + [anon_sym_DQUOTE] = ACTIONS(1810), + [sym__str_single_quotes] = ACTIONS(1810), + [sym__str_back_ticks] = ACTIONS(1810), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1810), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1810), + [anon_sym_err_GT] = ACTIONS(1802), + [anon_sym_out_GT] = ACTIONS(1802), + [anon_sym_e_GT] = ACTIONS(1802), + [anon_sym_o_GT] = ACTIONS(1802), + [anon_sym_err_PLUSout_GT] = ACTIONS(1802), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1802), + [anon_sym_o_PLUSe_GT] = ACTIONS(1802), + [anon_sym_e_PLUSo_GT] = ACTIONS(1802), + [anon_sym_err_GT_GT] = ACTIONS(1810), + [anon_sym_out_GT_GT] = ACTIONS(1810), + [anon_sym_e_GT_GT] = ACTIONS(1810), + [anon_sym_o_GT_GT] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), + [aux_sym_unquoted_token1] = ACTIONS(1802), + [aux_sym_unquoted_token2] = ACTIONS(1812), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1810), + }, + [1489] = { + [sym_cell_path] = STATE(1803), + [sym_path] = STATE(1678), + [sym_comment] = STATE(1489), + [aux_sym_cell_path_repeat1] = STATE(1528), + [sym__newline] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_err_GT_PIPE] = ACTIONS(1897), + [anon_sym_out_GT_PIPE] = ACTIONS(1897), + [anon_sym_e_GT_PIPE] = ACTIONS(1897), + [anon_sym_o_GT_PIPE] = ACTIONS(1897), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1897), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1897), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1897), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_RPAREN] = ACTIONS(1897), + [anon_sym_DOLLAR] = ACTIONS(1895), + [anon_sym_DASH_DASH] = ACTIONS(1897), + [anon_sym_DASH2] = ACTIONS(1895), + [anon_sym_LBRACE] = ACTIONS(1897), + [anon_sym_RBRACE] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1895), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1897), + [anon_sym_DOT_DOT_LT] = ACTIONS(1897), + [anon_sym_null] = ACTIONS(1897), + [anon_sym_true] = ACTIONS(1897), + [anon_sym_false] = ACTIONS(1897), + [aux_sym__val_number_decimal_token1] = ACTIONS(1895), + [aux_sym__val_number_decimal_token2] = ACTIONS(1897), + [aux_sym__val_number_decimal_token3] = ACTIONS(1897), + [aux_sym__val_number_decimal_token4] = ACTIONS(1897), + [aux_sym__val_number_token1] = ACTIONS(1897), + [aux_sym__val_number_token2] = ACTIONS(1897), + [aux_sym__val_number_token3] = ACTIONS(1897), + [aux_sym__val_number_token4] = ACTIONS(1897), + [aux_sym__val_number_token5] = ACTIONS(1897), + [aux_sym__val_number_token6] = ACTIONS(1897), + [anon_sym_0b] = ACTIONS(1895), + [anon_sym_0o] = ACTIONS(1895), + [anon_sym_0x] = ACTIONS(1895), + [sym_val_date] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1897), + [sym__str_single_quotes] = ACTIONS(1897), + [sym__str_back_ticks] = ACTIONS(1897), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1897), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1897), + [anon_sym_err_GT] = ACTIONS(1895), + [anon_sym_out_GT] = ACTIONS(1895), + [anon_sym_e_GT] = ACTIONS(1895), + [anon_sym_o_GT] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT] = ACTIONS(1895), + [anon_sym_err_GT_GT] = ACTIONS(1897), + [anon_sym_out_GT_GT] = ACTIONS(1897), + [anon_sym_e_GT_GT] = ACTIONS(1897), + [anon_sym_o_GT_GT] = ACTIONS(1897), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1897), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1897), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1897), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1897), + [aux_sym_unquoted_token1] = ACTIONS(1895), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1897), + }, + [1490] = { + [sym_cell_path] = STATE(1733), + [sym_path] = STATE(1678), + [sym_comment] = STATE(1490), + [aux_sym_cell_path_repeat1] = STATE(1528), + [sym__newline] = ACTIONS(1913), + [anon_sym_SEMI] = ACTIONS(1913), + [anon_sym_PIPE] = ACTIONS(1913), + [anon_sym_err_GT_PIPE] = ACTIONS(1913), + [anon_sym_out_GT_PIPE] = ACTIONS(1913), + [anon_sym_e_GT_PIPE] = ACTIONS(1913), + [anon_sym_o_GT_PIPE] = ACTIONS(1913), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1913), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1913), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1913), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1913), + [anon_sym_LBRACK] = ACTIONS(1913), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_RPAREN] = ACTIONS(1913), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_DASH_DASH] = ACTIONS(1913), + [anon_sym_DASH2] = ACTIONS(1911), + [anon_sym_LBRACE] = ACTIONS(1913), + [anon_sym_RBRACE] = ACTIONS(1913), + [anon_sym_DOT_DOT] = ACTIONS(1911), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1913), + [anon_sym_DOT_DOT_LT] = ACTIONS(1913), + [anon_sym_null] = ACTIONS(1913), + [anon_sym_true] = ACTIONS(1913), + [anon_sym_false] = ACTIONS(1913), + [aux_sym__val_number_decimal_token1] = ACTIONS(1911), + [aux_sym__val_number_decimal_token2] = ACTIONS(1913), + [aux_sym__val_number_decimal_token3] = ACTIONS(1913), + [aux_sym__val_number_decimal_token4] = ACTIONS(1913), + [aux_sym__val_number_token1] = ACTIONS(1913), + [aux_sym__val_number_token2] = ACTIONS(1913), + [aux_sym__val_number_token3] = ACTIONS(1913), + [aux_sym__val_number_token4] = ACTIONS(1913), + [aux_sym__val_number_token5] = ACTIONS(1913), + [aux_sym__val_number_token6] = ACTIONS(1913), + [anon_sym_0b] = ACTIONS(1911), + [anon_sym_0o] = ACTIONS(1911), + [anon_sym_0x] = ACTIONS(1911), + [sym_val_date] = ACTIONS(1913), + [anon_sym_DQUOTE] = ACTIONS(1913), + [sym__str_single_quotes] = ACTIONS(1913), + [sym__str_back_ticks] = ACTIONS(1913), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1913), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1913), + [anon_sym_err_GT] = ACTIONS(1911), + [anon_sym_out_GT] = ACTIONS(1911), + [anon_sym_e_GT] = ACTIONS(1911), + [anon_sym_o_GT] = ACTIONS(1911), + [anon_sym_err_PLUSout_GT] = ACTIONS(1911), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1911), + [anon_sym_o_PLUSe_GT] = ACTIONS(1911), + [anon_sym_e_PLUSo_GT] = ACTIONS(1911), + [anon_sym_err_GT_GT] = ACTIONS(1913), + [anon_sym_out_GT_GT] = ACTIONS(1913), + [anon_sym_e_GT_GT] = ACTIONS(1913), + [anon_sym_o_GT_GT] = ACTIONS(1913), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1913), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1913), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1913), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1913), + [aux_sym_unquoted_token1] = ACTIONS(1911), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1913), + }, + [1491] = { + [sym_cell_path] = STATE(1776), + [sym_path] = STATE(1678), + [sym_comment] = STATE(1491), + [aux_sym_cell_path_repeat1] = STATE(1528), + [sym__newline] = ACTIONS(1917), + [anon_sym_SEMI] = ACTIONS(1917), + [anon_sym_PIPE] = ACTIONS(1917), + [anon_sym_err_GT_PIPE] = ACTIONS(1917), + [anon_sym_out_GT_PIPE] = ACTIONS(1917), + [anon_sym_e_GT_PIPE] = ACTIONS(1917), + [anon_sym_o_GT_PIPE] = ACTIONS(1917), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1917), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1917), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1917), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1917), + [anon_sym_LBRACK] = ACTIONS(1917), + [anon_sym_LPAREN] = ACTIONS(1917), + [anon_sym_RPAREN] = ACTIONS(1917), + [anon_sym_DOLLAR] = ACTIONS(1915), + [anon_sym_DASH_DASH] = ACTIONS(1917), + [anon_sym_DASH2] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1917), + [anon_sym_RBRACE] = ACTIONS(1917), + [anon_sym_DOT_DOT] = ACTIONS(1915), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1917), + [anon_sym_DOT_DOT_LT] = ACTIONS(1917), + [anon_sym_null] = ACTIONS(1917), + [anon_sym_true] = ACTIONS(1917), + [anon_sym_false] = ACTIONS(1917), + [aux_sym__val_number_decimal_token1] = ACTIONS(1915), + [aux_sym__val_number_decimal_token2] = ACTIONS(1917), + [aux_sym__val_number_decimal_token3] = ACTIONS(1917), + [aux_sym__val_number_decimal_token4] = ACTIONS(1917), + [aux_sym__val_number_token1] = ACTIONS(1917), + [aux_sym__val_number_token2] = ACTIONS(1917), + [aux_sym__val_number_token3] = ACTIONS(1917), + [aux_sym__val_number_token4] = ACTIONS(1917), + [aux_sym__val_number_token5] = ACTIONS(1917), + [aux_sym__val_number_token6] = ACTIONS(1917), + [anon_sym_0b] = ACTIONS(1915), + [anon_sym_0o] = ACTIONS(1915), + [anon_sym_0x] = ACTIONS(1915), + [sym_val_date] = ACTIONS(1917), + [anon_sym_DQUOTE] = ACTIONS(1917), + [sym__str_single_quotes] = ACTIONS(1917), + [sym__str_back_ticks] = ACTIONS(1917), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1917), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1917), + [anon_sym_err_GT] = ACTIONS(1915), + [anon_sym_out_GT] = ACTIONS(1915), + [anon_sym_e_GT] = ACTIONS(1915), + [anon_sym_o_GT] = ACTIONS(1915), + [anon_sym_err_PLUSout_GT] = ACTIONS(1915), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1915), + [anon_sym_o_PLUSe_GT] = ACTIONS(1915), + [anon_sym_e_PLUSo_GT] = ACTIONS(1915), + [anon_sym_err_GT_GT] = ACTIONS(1917), + [anon_sym_out_GT_GT] = ACTIONS(1917), + [anon_sym_e_GT_GT] = ACTIONS(1917), + [anon_sym_o_GT_GT] = ACTIONS(1917), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1917), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1917), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1917), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1917), + [aux_sym_unquoted_token1] = ACTIONS(1915), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1917), + }, + [1492] = { + [sym_comment] = STATE(1492), + [anon_sym_EQ] = ACTIONS(1020), + [anon_sym_PLUS_EQ] = ACTIONS(1022), + [anon_sym_DASH_EQ] = ACTIONS(1022), + [anon_sym_STAR_EQ] = ACTIONS(1022), + [anon_sym_SLASH_EQ] = ACTIONS(1022), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1022), + [sym__newline] = ACTIONS(1026), + [anon_sym_SEMI] = ACTIONS(1028), + [anon_sym_PIPE] = ACTIONS(1028), + [anon_sym_err_GT_PIPE] = ACTIONS(1028), + [anon_sym_out_GT_PIPE] = ACTIONS(1028), + [anon_sym_e_GT_PIPE] = ACTIONS(1028), + [anon_sym_o_GT_PIPE] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), + [anon_sym_GT2] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(1026), + [anon_sym_in2] = ACTIONS(1028), + [anon_sym_RBRACE] = ACTIONS(1028), + [anon_sym_STAR2] = ACTIONS(1026), + [anon_sym_and2] = ACTIONS(1028), + [anon_sym_xor2] = ACTIONS(1028), + [anon_sym_or2] = ACTIONS(1028), + [anon_sym_not_DASHin2] = ACTIONS(1028), + [anon_sym_starts_DASHwith2] = ACTIONS(1028), + [anon_sym_ends_DASHwith2] = ACTIONS(1028), + [anon_sym_EQ_EQ2] = ACTIONS(1028), + [anon_sym_BANG_EQ2] = ACTIONS(1028), + [anon_sym_LT2] = ACTIONS(1026), + [anon_sym_LT_EQ2] = ACTIONS(1028), + [anon_sym_GT_EQ2] = ACTIONS(1028), + [anon_sym_EQ_TILDE2] = ACTIONS(1028), + [anon_sym_BANG_TILDE2] = ACTIONS(1028), + [anon_sym_STAR_STAR2] = ACTIONS(1028), + [anon_sym_PLUS_PLUS2] = ACTIONS(1026), + [anon_sym_SLASH2] = ACTIONS(1026), + [anon_sym_mod2] = ACTIONS(1028), + [anon_sym_SLASH_SLASH2] = ACTIONS(1028), + [anon_sym_PLUS2] = ACTIONS(1026), + [anon_sym_bit_DASHshl2] = ACTIONS(1028), + [anon_sym_bit_DASHshr2] = ACTIONS(1028), + [anon_sym_bit_DASHand2] = ACTIONS(1028), + [anon_sym_bit_DASHxor2] = ACTIONS(1028), + [anon_sym_bit_DASHor2] = ACTIONS(1028), + [anon_sym_DOT_DOT2] = ACTIONS(1038), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), + [aux_sym_record_entry_token1] = ACTIONS(4801), + [anon_sym_err_GT] = ACTIONS(1026), + [anon_sym_out_GT] = ACTIONS(1026), + [anon_sym_e_GT] = ACTIONS(1026), + [anon_sym_o_GT] = ACTIONS(1026), + [anon_sym_err_PLUSout_GT] = ACTIONS(1026), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), + [anon_sym_o_PLUSe_GT] = ACTIONS(1026), + [anon_sym_e_PLUSo_GT] = ACTIONS(1026), + [anon_sym_err_GT_GT] = ACTIONS(1028), + [anon_sym_out_GT_GT] = ACTIONS(1028), + [anon_sym_e_GT_GT] = ACTIONS(1028), + [anon_sym_o_GT_GT] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1028), + [anon_sym_POUND] = ACTIONS(247), + }, + [1493] = { + [sym_comment] = STATE(1493), + [ts_builtin_sym_end] = ACTIONS(1828), + [sym__newline] = ACTIONS(1828), + [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_PIPE] = ACTIONS(1828), + [anon_sym_err_GT_PIPE] = ACTIONS(1828), + [anon_sym_out_GT_PIPE] = ACTIONS(1828), + [anon_sym_e_GT_PIPE] = ACTIONS(1828), + [anon_sym_o_GT_PIPE] = ACTIONS(1828), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1828), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1828), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1828), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1828), + [anon_sym_LBRACK] = ACTIONS(1828), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_DASH_DASH] = ACTIONS(1828), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_LBRACE] = ACTIONS(1828), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_LPAREN2] = ACTIONS(1822), + [anon_sym_DOT_DOT2] = ACTIONS(4803), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1820), + [anon_sym_DOT_DOT_LT] = ACTIONS(1820), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4805), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4805), + [anon_sym_null] = ACTIONS(1828), + [anon_sym_true] = ACTIONS(1828), + [anon_sym_false] = ACTIONS(1828), + [aux_sym__val_number_decimal_token1] = ACTIONS(1820), + [aux_sym__val_number_decimal_token2] = ACTIONS(1828), + [aux_sym__val_number_decimal_token3] = ACTIONS(1828), + [aux_sym__val_number_decimal_token4] = ACTIONS(1828), + [aux_sym__val_number_token1] = ACTIONS(1828), + [aux_sym__val_number_token2] = ACTIONS(1828), + [aux_sym__val_number_token3] = ACTIONS(1828), + [aux_sym__val_number_token4] = ACTIONS(1828), + [aux_sym__val_number_token5] = ACTIONS(1828), + [aux_sym__val_number_token6] = ACTIONS(1828), + [anon_sym_0b] = ACTIONS(1820), + [anon_sym_0o] = ACTIONS(1820), + [anon_sym_0x] = ACTIONS(1820), + [sym_val_date] = ACTIONS(1828), + [anon_sym_DQUOTE] = ACTIONS(1828), + [sym__str_single_quotes] = ACTIONS(1828), + [sym__str_back_ticks] = ACTIONS(1828), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1828), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1828), + [anon_sym_err_GT] = ACTIONS(1820), + [anon_sym_out_GT] = ACTIONS(1820), + [anon_sym_e_GT] = ACTIONS(1820), + [anon_sym_o_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT] = ACTIONS(1820), + [anon_sym_err_GT_GT] = ACTIONS(1828), + [anon_sym_out_GT_GT] = ACTIONS(1828), + [anon_sym_e_GT_GT] = ACTIONS(1828), + [anon_sym_o_GT_GT] = ACTIONS(1828), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1828), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1828), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1828), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1828), + [aux_sym_unquoted_token1] = ACTIONS(1820), + [aux_sym_unquoted_token2] = ACTIONS(1559), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1828), + }, + [1494] = { + [sym_comment] = STATE(1494), [ts_builtin_sym_end] = ACTIONS(1012), [anon_sym_EQ] = ACTIONS(1010), [anon_sym_PLUS_EQ] = ACTIONS(1012), @@ -213000,148 +216033,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), [anon_sym_POUND] = ACTIONS(247), }, - [1456] = { - [sym_comment] = STATE(1456), - [ts_builtin_sym_end] = ACTIONS(1886), - [sym__newline] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_err_GT_PIPE] = ACTIONS(1886), - [anon_sym_out_GT_PIPE] = ACTIONS(1886), - [anon_sym_e_GT_PIPE] = ACTIONS(1886), - [anon_sym_o_GT_PIPE] = ACTIONS(1886), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1886), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1886), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1886), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1886), - [anon_sym_LBRACK] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_DOLLAR] = ACTIONS(1878), - [anon_sym_DASH_DASH] = ACTIONS(1886), - [anon_sym_DASH2] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1878), - [anon_sym_LPAREN2] = ACTIONS(1880), - [anon_sym_DOT_DOT2] = ACTIONS(4783), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1878), - [anon_sym_DOT_DOT_LT] = ACTIONS(1878), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4785), - [anon_sym_null] = ACTIONS(1886), - [anon_sym_true] = ACTIONS(1886), - [anon_sym_false] = ACTIONS(1886), - [aux_sym__val_number_decimal_token1] = ACTIONS(1878), - [aux_sym__val_number_decimal_token2] = ACTIONS(1886), - [aux_sym__val_number_decimal_token3] = ACTIONS(1886), - [aux_sym__val_number_decimal_token4] = ACTIONS(1886), - [aux_sym__val_number_token1] = ACTIONS(1886), - [aux_sym__val_number_token2] = ACTIONS(1886), - [aux_sym__val_number_token3] = ACTIONS(1886), - [aux_sym__val_number_token4] = ACTIONS(1886), - [aux_sym__val_number_token5] = ACTIONS(1886), - [aux_sym__val_number_token6] = ACTIONS(1886), - [anon_sym_0b] = ACTIONS(1878), - [anon_sym_0o] = ACTIONS(1878), - [anon_sym_0x] = ACTIONS(1878), - [sym_val_date] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(1886), - [sym__str_single_quotes] = ACTIONS(1886), - [sym__str_back_ticks] = ACTIONS(1886), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1886), - [anon_sym_err_GT] = ACTIONS(1878), - [anon_sym_out_GT] = ACTIONS(1878), - [anon_sym_e_GT] = ACTIONS(1878), - [anon_sym_o_GT] = ACTIONS(1878), - [anon_sym_err_PLUSout_GT] = ACTIONS(1878), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1878), - [anon_sym_o_PLUSe_GT] = ACTIONS(1878), - [anon_sym_e_PLUSo_GT] = ACTIONS(1878), - [anon_sym_err_GT_GT] = ACTIONS(1886), - [anon_sym_out_GT_GT] = ACTIONS(1886), - [anon_sym_e_GT_GT] = ACTIONS(1886), - [anon_sym_o_GT_GT] = ACTIONS(1886), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1886), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1886), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1886), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1886), - [aux_sym_unquoted_token1] = ACTIONS(1878), - [aux_sym_unquoted_token2] = ACTIONS(1888), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1886), - }, - [1457] = { - [sym_cell_path] = STATE(1750), - [sym_path] = STATE(1703), - [sym_comment] = STATE(1457), - [aux_sym_cell_path_repeat1] = STATE(1505), - [sym__newline] = ACTIONS(1954), - [anon_sym_SEMI] = ACTIONS(1954), - [anon_sym_PIPE] = ACTIONS(1954), - [anon_sym_err_GT_PIPE] = ACTIONS(1954), - [anon_sym_out_GT_PIPE] = ACTIONS(1954), - [anon_sym_e_GT_PIPE] = ACTIONS(1954), - [anon_sym_o_GT_PIPE] = ACTIONS(1954), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1954), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1954), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1954), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(1954), - [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_RPAREN] = ACTIONS(1954), - [anon_sym_DOLLAR] = ACTIONS(1952), - [anon_sym_DASH_DASH] = ACTIONS(1954), - [anon_sym_DASH2] = ACTIONS(1952), - [anon_sym_LBRACE] = ACTIONS(1954), - [anon_sym_RBRACE] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1952), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1954), - [anon_sym_DOT_DOT_LT] = ACTIONS(1954), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1954), - [anon_sym_false] = ACTIONS(1954), - [aux_sym__val_number_decimal_token1] = ACTIONS(1952), - [aux_sym__val_number_decimal_token2] = ACTIONS(1954), - [aux_sym__val_number_decimal_token3] = ACTIONS(1954), - [aux_sym__val_number_decimal_token4] = ACTIONS(1954), - [aux_sym__val_number_token1] = ACTIONS(1954), - [aux_sym__val_number_token2] = ACTIONS(1954), - [aux_sym__val_number_token3] = ACTIONS(1954), - [aux_sym__val_number_token4] = ACTIONS(1954), - [aux_sym__val_number_token5] = ACTIONS(1954), - [aux_sym__val_number_token6] = ACTIONS(1954), - [anon_sym_0b] = ACTIONS(1952), - [anon_sym_0o] = ACTIONS(1952), - [anon_sym_0x] = ACTIONS(1952), - [sym_val_date] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym__str_single_quotes] = ACTIONS(1954), - [sym__str_back_ticks] = ACTIONS(1954), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1954), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1954), - [anon_sym_err_GT] = ACTIONS(1952), - [anon_sym_out_GT] = ACTIONS(1952), - [anon_sym_e_GT] = ACTIONS(1952), - [anon_sym_o_GT] = ACTIONS(1952), - [anon_sym_err_PLUSout_GT] = ACTIONS(1952), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1952), - [anon_sym_o_PLUSe_GT] = ACTIONS(1952), - [anon_sym_e_PLUSo_GT] = ACTIONS(1952), - [anon_sym_err_GT_GT] = ACTIONS(1954), - [anon_sym_out_GT_GT] = ACTIONS(1954), - [anon_sym_e_GT_GT] = ACTIONS(1954), - [anon_sym_o_GT_GT] = ACTIONS(1954), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1954), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1954), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1954), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1954), - [aux_sym_unquoted_token1] = ACTIONS(1952), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1954), + [1495] = { + [sym_comment] = STATE(1495), + [sym__newline] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_err_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_GT_PIPE] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1767), + [anon_sym_RPAREN] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_DOT_DOT] = ACTIONS(1765), + [anon_sym_DOT_DOT2] = ACTIONS(1765), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1765), + [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(4756), + [anon_sym_null] = ACTIONS(1767), + [anon_sym_true] = ACTIONS(1767), + [anon_sym_false] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1767), + [aux_sym__val_number_token5] = ACTIONS(1767), + [aux_sym__val_number_token6] = ACTIONS(1767), + [anon_sym_0b] = ACTIONS(1765), + [anon_sym_0o] = ACTIONS(1765), + [anon_sym_0x] = ACTIONS(1765), + [sym_val_date] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), + [anon_sym_err_GT] = ACTIONS(1765), + [anon_sym_out_GT] = ACTIONS(1765), + [anon_sym_e_GT] = ACTIONS(1765), + [anon_sym_o_GT] = ACTIONS(1765), + [anon_sym_err_PLUSout_GT] = ACTIONS(1765), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), + [anon_sym_o_PLUSe_GT] = ACTIONS(1765), + [anon_sym_e_PLUSo_GT] = ACTIONS(1765), + [anon_sym_err_GT_GT] = ACTIONS(1767), + [anon_sym_out_GT_GT] = ACTIONS(1767), + [anon_sym_e_GT_GT] = ACTIONS(1767), + [anon_sym_o_GT_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), + [aux_sym_unquoted_token1] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1767), }, - [1458] = { - [sym_comment] = STATE(1458), + [1496] = { + [sym_comment] = STATE(1496), [ts_builtin_sym_end] = ACTIONS(1016), [anon_sym_EQ] = ACTIONS(1014), [anon_sym_PLUS_EQ] = ACTIONS(1016), @@ -213210,218 +216173,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), [anon_sym_POUND] = ACTIONS(247), }, - [1459] = { - [sym_cell_path] = STATE(1755), - [sym_path] = STATE(1703), - [sym_comment] = STATE(1459), - [aux_sym_cell_path_repeat1] = STATE(1505), - [sym__newline] = ACTIONS(1990), - [anon_sym_SEMI] = ACTIONS(1990), - [anon_sym_PIPE] = ACTIONS(1990), - [anon_sym_err_GT_PIPE] = ACTIONS(1990), - [anon_sym_out_GT_PIPE] = ACTIONS(1990), - [anon_sym_e_GT_PIPE] = ACTIONS(1990), - [anon_sym_o_GT_PIPE] = ACTIONS(1990), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1990), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1990), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1990), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1990), - [anon_sym_LBRACK] = ACTIONS(1990), - [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_RPAREN] = ACTIONS(1990), - [anon_sym_DOLLAR] = ACTIONS(1988), - [anon_sym_DASH_DASH] = ACTIONS(1990), - [anon_sym_DASH2] = ACTIONS(1988), - [anon_sym_LBRACE] = ACTIONS(1990), - [anon_sym_RBRACE] = ACTIONS(1990), - [anon_sym_DOT_DOT] = ACTIONS(1988), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1990), - [anon_sym_DOT_DOT_LT] = ACTIONS(1990), - [anon_sym_null] = ACTIONS(1990), - [anon_sym_true] = ACTIONS(1990), - [anon_sym_false] = ACTIONS(1990), - [aux_sym__val_number_decimal_token1] = ACTIONS(1988), - [aux_sym__val_number_decimal_token2] = ACTIONS(1990), - [aux_sym__val_number_decimal_token3] = ACTIONS(1990), - [aux_sym__val_number_decimal_token4] = ACTIONS(1990), - [aux_sym__val_number_token1] = ACTIONS(1990), - [aux_sym__val_number_token2] = ACTIONS(1990), - [aux_sym__val_number_token3] = ACTIONS(1990), - [aux_sym__val_number_token4] = ACTIONS(1990), - [aux_sym__val_number_token5] = ACTIONS(1990), - [aux_sym__val_number_token6] = ACTIONS(1990), - [anon_sym_0b] = ACTIONS(1988), - [anon_sym_0o] = ACTIONS(1988), - [anon_sym_0x] = ACTIONS(1988), - [sym_val_date] = ACTIONS(1990), - [anon_sym_DQUOTE] = ACTIONS(1990), - [sym__str_single_quotes] = ACTIONS(1990), - [sym__str_back_ticks] = ACTIONS(1990), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1990), - [anon_sym_err_GT] = ACTIONS(1988), - [anon_sym_out_GT] = ACTIONS(1988), - [anon_sym_e_GT] = ACTIONS(1988), - [anon_sym_o_GT] = ACTIONS(1988), - [anon_sym_err_PLUSout_GT] = ACTIONS(1988), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1988), - [anon_sym_o_PLUSe_GT] = ACTIONS(1988), - [anon_sym_e_PLUSo_GT] = ACTIONS(1988), - [anon_sym_err_GT_GT] = ACTIONS(1990), - [anon_sym_out_GT_GT] = ACTIONS(1990), - [anon_sym_e_GT_GT] = ACTIONS(1990), - [anon_sym_o_GT_GT] = ACTIONS(1990), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1990), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1990), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1990), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1990), - [aux_sym_unquoted_token1] = ACTIONS(1988), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1990), - }, - [1460] = { - [sym_comment] = STATE(1460), - [sym__newline] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_LBRACK] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_RPAREN] = ACTIONS(1008), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), - [anon_sym_null] = ACTIONS(1008), - [anon_sym_true] = ACTIONS(1008), - [anon_sym_false] = ACTIONS(1008), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1008), - [aux_sym__val_number_decimal_token3] = ACTIONS(1008), - [aux_sym__val_number_decimal_token4] = ACTIONS(1008), - [aux_sym__val_number_token1] = ACTIONS(1008), - [aux_sym__val_number_token2] = ACTIONS(1008), - [aux_sym__val_number_token3] = ACTIONS(1008), - [aux_sym__val_number_token4] = ACTIONS(1008), - [aux_sym__val_number_token5] = ACTIONS(1008), - [aux_sym__val_number_token6] = ACTIONS(1008), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1008), - [anon_sym_DQUOTE] = ACTIONS(1008), - [sym__str_single_quotes] = ACTIONS(1008), - [sym__str_back_ticks] = ACTIONS(1008), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1008), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1008), - [anon_sym_err_GT] = ACTIONS(1006), - [anon_sym_out_GT] = ACTIONS(1006), - [anon_sym_e_GT] = ACTIONS(1006), - [anon_sym_o_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT] = ACTIONS(1006), - [anon_sym_err_GT_GT] = ACTIONS(1008), - [anon_sym_out_GT_GT] = ACTIONS(1008), - [anon_sym_e_GT_GT] = ACTIONS(1008), - [anon_sym_o_GT_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), - [aux_sym_unquoted_token1] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1008), + [1497] = { + [sym_comment] = STATE(1497), + [sym__newline] = ACTIONS(1787), + [anon_sym_SEMI] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_err_GT_PIPE] = ACTIONS(1787), + [anon_sym_out_GT_PIPE] = ACTIONS(1787), + [anon_sym_e_GT_PIPE] = ACTIONS(1787), + [anon_sym_o_GT_PIPE] = ACTIONS(1787), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_RPAREN] = ACTIONS(1787), + [anon_sym_DOLLAR] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1787), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_RBRACE] = ACTIONS(1787), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_DOT_DOT2] = ACTIONS(1785), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), + [anon_sym_DOT_DOT_LT] = ACTIONS(1785), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), + [aux_sym__immediate_decimal_token2] = ACTIONS(4807), + [anon_sym_null] = ACTIONS(1787), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [aux_sym__val_number_decimal_token1] = ACTIONS(1785), + [aux_sym__val_number_decimal_token2] = ACTIONS(1787), + [aux_sym__val_number_decimal_token3] = ACTIONS(1787), + [aux_sym__val_number_decimal_token4] = ACTIONS(1787), + [aux_sym__val_number_token1] = ACTIONS(1787), + [aux_sym__val_number_token2] = ACTIONS(1787), + [aux_sym__val_number_token3] = ACTIONS(1787), + [aux_sym__val_number_token4] = ACTIONS(1787), + [aux_sym__val_number_token5] = ACTIONS(1787), + [aux_sym__val_number_token6] = ACTIONS(1787), + [anon_sym_0b] = ACTIONS(1785), + [anon_sym_0o] = ACTIONS(1785), + [anon_sym_0x] = ACTIONS(1785), + [sym_val_date] = ACTIONS(1787), + [anon_sym_DQUOTE] = ACTIONS(1787), + [sym__str_single_quotes] = ACTIONS(1787), + [sym__str_back_ticks] = ACTIONS(1787), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), + [anon_sym_err_GT] = ACTIONS(1785), + [anon_sym_out_GT] = ACTIONS(1785), + [anon_sym_e_GT] = ACTIONS(1785), + [anon_sym_o_GT] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT] = ACTIONS(1785), + [anon_sym_err_GT_GT] = ACTIONS(1787), + [anon_sym_out_GT_GT] = ACTIONS(1787), + [anon_sym_e_GT_GT] = ACTIONS(1787), + [anon_sym_o_GT_GT] = ACTIONS(1787), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), + [aux_sym_unquoted_token1] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1787), }, - [1461] = { - [sym_comment] = STATE(1461), - [sym__newline] = ACTIONS(1609), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_PIPE] = ACTIONS(1609), - [anon_sym_err_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_GT_PIPE] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), - [anon_sym_RPAREN] = ACTIONS(1609), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1609), - [anon_sym_in2] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1609), - [anon_sym_RBRACE] = ACTIONS(1609), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1609), - [anon_sym_xor2] = ACTIONS(1609), - [anon_sym_or2] = ACTIONS(1609), - [anon_sym_not_DASHin2] = ACTIONS(1609), - [anon_sym_starts_DASHwith2] = ACTIONS(1609), - [anon_sym_ends_DASHwith2] = ACTIONS(1609), - [anon_sym_EQ_EQ2] = ACTIONS(1609), - [anon_sym_BANG_EQ2] = ACTIONS(1609), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1609), - [anon_sym_GT_EQ2] = ACTIONS(1609), - [anon_sym_EQ_TILDE2] = ACTIONS(1609), - [anon_sym_BANG_TILDE2] = ACTIONS(1609), - [anon_sym_LPAREN2] = ACTIONS(1609), - [anon_sym_STAR_STAR2] = ACTIONS(1609), - [anon_sym_PLUS_PLUS2] = ACTIONS(1609), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1609), - [anon_sym_SLASH_SLASH2] = ACTIONS(1609), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1609), - [anon_sym_bit_DASHshr2] = ACTIONS(1609), - [anon_sym_bit_DASHand2] = ACTIONS(1609), - [anon_sym_bit_DASHxor2] = ACTIONS(1609), - [anon_sym_bit_DASHor2] = ACTIONS(1609), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(4744), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1609), - [anon_sym_out_GT_GT] = ACTIONS(1609), - [anon_sym_e_GT_GT] = ACTIONS(1609), - [anon_sym_o_GT_GT] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), - [aux_sym_unquoted_token2] = ACTIONS(1607), - [anon_sym_POUND] = ACTIONS(247), + [1498] = { + [sym_cell_path] = STATE(1854), + [sym_path] = STATE(1678), + [sym_comment] = STATE(1498), + [aux_sym_cell_path_repeat1] = STATE(1528), + [sym__newline] = ACTIONS(1861), + [anon_sym_SEMI] = ACTIONS(1861), + [anon_sym_PIPE] = ACTIONS(1861), + [anon_sym_err_GT_PIPE] = ACTIONS(1861), + [anon_sym_out_GT_PIPE] = ACTIONS(1861), + [anon_sym_e_GT_PIPE] = ACTIONS(1861), + [anon_sym_o_GT_PIPE] = ACTIONS(1861), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1861), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1861), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1861), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1861), + [anon_sym_RPAREN] = ACTIONS(1861), + [anon_sym_DOLLAR] = ACTIONS(1859), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_DASH2] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1861), + [anon_sym_RBRACE] = ACTIONS(1861), + [anon_sym_DOT_DOT] = ACTIONS(1859), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1861), + [anon_sym_DOT_DOT_LT] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1861), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [aux_sym__val_number_decimal_token1] = ACTIONS(1859), + [aux_sym__val_number_decimal_token2] = ACTIONS(1861), + [aux_sym__val_number_decimal_token3] = ACTIONS(1861), + [aux_sym__val_number_decimal_token4] = ACTIONS(1861), + [aux_sym__val_number_token1] = ACTIONS(1861), + [aux_sym__val_number_token2] = ACTIONS(1861), + [aux_sym__val_number_token3] = ACTIONS(1861), + [aux_sym__val_number_token4] = ACTIONS(1861), + [aux_sym__val_number_token5] = ACTIONS(1861), + [aux_sym__val_number_token6] = ACTIONS(1861), + [anon_sym_0b] = ACTIONS(1859), + [anon_sym_0o] = ACTIONS(1859), + [anon_sym_0x] = ACTIONS(1859), + [sym_val_date] = ACTIONS(1861), + [anon_sym_DQUOTE] = ACTIONS(1861), + [sym__str_single_quotes] = ACTIONS(1861), + [sym__str_back_ticks] = ACTIONS(1861), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1861), + [anon_sym_err_GT] = ACTIONS(1859), + [anon_sym_out_GT] = ACTIONS(1859), + [anon_sym_e_GT] = ACTIONS(1859), + [anon_sym_o_GT] = ACTIONS(1859), + [anon_sym_err_PLUSout_GT] = ACTIONS(1859), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1859), + [anon_sym_o_PLUSe_GT] = ACTIONS(1859), + [anon_sym_e_PLUSo_GT] = ACTIONS(1859), + [anon_sym_err_GT_GT] = ACTIONS(1861), + [anon_sym_out_GT_GT] = ACTIONS(1861), + [anon_sym_e_GT_GT] = ACTIONS(1861), + [anon_sym_o_GT_GT] = ACTIONS(1861), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1861), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1861), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1861), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1861), + [aux_sym_unquoted_token1] = ACTIONS(1859), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1861), }, - [1462] = { - [sym_comment] = STATE(1462), + [1499] = { + [sym_comment] = STATE(1499), [ts_builtin_sym_end] = ACTIONS(1741), [sym__newline] = ACTIONS(1741), [anon_sym_SEMI] = ACTIONS(1741), @@ -213435,18 +216328,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1741), [anon_sym_DOLLAR] = ACTIONS(1739), [anon_sym_DASH_DASH] = ACTIONS(1741), [anon_sym_DASH2] = ACTIONS(1739), [anon_sym_LBRACE] = ACTIONS(1741), [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(1741), [anon_sym_DOT_DOT2] = ACTIONS(1739), [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), [anon_sym_DOT_DOT_LT] = ACTIONS(1739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), + [aux_sym__immediate_decimal_token1] = ACTIONS(4809), + [aux_sym__immediate_decimal_token2] = ACTIONS(4811), [anon_sym_null] = ACTIONS(1741), [anon_sym_true] = ACTIONS(1741), [anon_sym_false] = ACTIONS(1741), @@ -213486,1693 +216380,703 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), [aux_sym_unquoted_token1] = ACTIONS(1739), - [aux_sym_unquoted_token2] = ACTIONS(1739), [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1741), }, - [1463] = { - [sym_comment] = STATE(1463), - [anon_sym_EQ] = ACTIONS(1018), - [anon_sym_PLUS_EQ] = ACTIONS(1020), - [anon_sym_DASH_EQ] = ACTIONS(1020), - [anon_sym_STAR_EQ] = ACTIONS(1020), - [anon_sym_SLASH_EQ] = ACTIONS(1020), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1020), - [sym__newline] = ACTIONS(1020), - [anon_sym_SEMI] = ACTIONS(1020), - [anon_sym_PIPE] = ACTIONS(1020), - [anon_sym_err_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_GT_PIPE] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), - [anon_sym_RPAREN] = ACTIONS(1020), - [anon_sym_GT2] = ACTIONS(1018), - [anon_sym_DASH2] = ACTIONS(1018), - [anon_sym_in2] = ACTIONS(1020), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_STAR2] = ACTIONS(1018), - [anon_sym_and2] = ACTIONS(1020), - [anon_sym_xor2] = ACTIONS(1020), - [anon_sym_or2] = ACTIONS(1020), - [anon_sym_not_DASHin2] = ACTIONS(1020), - [anon_sym_starts_DASHwith2] = ACTIONS(1020), - [anon_sym_ends_DASHwith2] = ACTIONS(1020), - [anon_sym_EQ_EQ2] = ACTIONS(1020), - [anon_sym_BANG_EQ2] = ACTIONS(1020), - [anon_sym_LT2] = ACTIONS(1018), - [anon_sym_LT_EQ2] = ACTIONS(1020), - [anon_sym_GT_EQ2] = ACTIONS(1020), - [anon_sym_EQ_TILDE2] = ACTIONS(1020), - [anon_sym_BANG_TILDE2] = ACTIONS(1020), - [anon_sym_STAR_STAR2] = ACTIONS(1020), - [anon_sym_PLUS_PLUS2] = ACTIONS(1018), - [anon_sym_SLASH2] = ACTIONS(1018), - [anon_sym_mod2] = ACTIONS(1020), - [anon_sym_SLASH_SLASH2] = ACTIONS(1020), - [anon_sym_PLUS2] = ACTIONS(1018), - [anon_sym_bit_DASHshl2] = ACTIONS(1020), - [anon_sym_bit_DASHshr2] = ACTIONS(1020), - [anon_sym_bit_DASHand2] = ACTIONS(1020), - [anon_sym_bit_DASHxor2] = ACTIONS(1020), - [anon_sym_bit_DASHor2] = ACTIONS(1020), - [anon_sym_DOT_DOT2] = ACTIONS(1018), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1020), - [anon_sym_err_GT] = ACTIONS(1018), - [anon_sym_out_GT] = ACTIONS(1018), - [anon_sym_e_GT] = ACTIONS(1018), - [anon_sym_o_GT] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT] = ACTIONS(1018), - [anon_sym_err_GT_GT] = ACTIONS(1020), - [anon_sym_out_GT_GT] = ACTIONS(1020), - [anon_sym_e_GT_GT] = ACTIONS(1020), - [anon_sym_o_GT_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), - [anon_sym_POUND] = ACTIONS(247), - }, - [1464] = { - [sym_cell_path] = STATE(1753), - [sym_path] = STATE(1703), - [sym_comment] = STATE(1464), - [aux_sym_cell_path_repeat1] = STATE(1505), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_LBRACK] = ACTIONS(1974), - [anon_sym_LPAREN] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_DOLLAR] = ACTIONS(1972), - [anon_sym_DASH_DASH] = ACTIONS(1974), - [anon_sym_DASH2] = ACTIONS(1972), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_DOT_DOT] = ACTIONS(1972), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [anon_sym_null] = ACTIONS(1974), - [anon_sym_true] = ACTIONS(1974), - [anon_sym_false] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1972), - [aux_sym__val_number_decimal_token2] = ACTIONS(1974), - [aux_sym__val_number_decimal_token3] = ACTIONS(1974), - [aux_sym__val_number_decimal_token4] = ACTIONS(1974), - [aux_sym__val_number_token1] = ACTIONS(1974), - [aux_sym__val_number_token2] = ACTIONS(1974), - [aux_sym__val_number_token3] = ACTIONS(1974), - [aux_sym__val_number_token4] = ACTIONS(1974), - [aux_sym__val_number_token5] = ACTIONS(1974), - [aux_sym__val_number_token6] = ACTIONS(1974), - [anon_sym_0b] = ACTIONS(1972), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym__str_single_quotes] = ACTIONS(1974), - [sym__str_back_ticks] = ACTIONS(1974), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1974), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1974), - [anon_sym_err_GT] = ACTIONS(1972), - [anon_sym_out_GT] = ACTIONS(1972), - [anon_sym_e_GT] = ACTIONS(1972), - [anon_sym_o_GT] = ACTIONS(1972), - [anon_sym_err_PLUSout_GT] = ACTIONS(1972), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1972), - [anon_sym_o_PLUSe_GT] = ACTIONS(1972), - [anon_sym_e_PLUSo_GT] = ACTIONS(1972), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), - [aux_sym_unquoted_token1] = ACTIONS(1972), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1974), - }, - [1465] = { - [sym_cell_path] = STATE(1761), - [sym_path] = STATE(1703), - [sym_comment] = STATE(1465), - [aux_sym_cell_path_repeat1] = STATE(1505), - [sym__newline] = ACTIONS(2074), - [anon_sym_SEMI] = ACTIONS(2074), - [anon_sym_PIPE] = ACTIONS(2074), - [anon_sym_err_GT_PIPE] = ACTIONS(2074), - [anon_sym_out_GT_PIPE] = ACTIONS(2074), - [anon_sym_e_GT_PIPE] = ACTIONS(2074), - [anon_sym_o_GT_PIPE] = ACTIONS(2074), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2074), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2074), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2074), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2074), - [anon_sym_LPAREN] = ACTIONS(2074), - [anon_sym_RPAREN] = ACTIONS(2074), - [anon_sym_DOLLAR] = ACTIONS(2072), - [anon_sym_DASH_DASH] = ACTIONS(2074), - [anon_sym_DASH2] = ACTIONS(2072), - [anon_sym_LBRACE] = ACTIONS(2074), - [anon_sym_RBRACE] = ACTIONS(2074), - [anon_sym_DOT_DOT] = ACTIONS(2072), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2074), - [anon_sym_DOT_DOT_LT] = ACTIONS(2074), - [anon_sym_null] = ACTIONS(2074), - [anon_sym_true] = ACTIONS(2074), - [anon_sym_false] = ACTIONS(2074), - [aux_sym__val_number_decimal_token1] = ACTIONS(2072), - [aux_sym__val_number_decimal_token2] = ACTIONS(2074), - [aux_sym__val_number_decimal_token3] = ACTIONS(2074), - [aux_sym__val_number_decimal_token4] = ACTIONS(2074), - [aux_sym__val_number_token1] = ACTIONS(2074), - [aux_sym__val_number_token2] = ACTIONS(2074), - [aux_sym__val_number_token3] = ACTIONS(2074), - [aux_sym__val_number_token4] = ACTIONS(2074), - [aux_sym__val_number_token5] = ACTIONS(2074), - [aux_sym__val_number_token6] = ACTIONS(2074), - [anon_sym_0b] = ACTIONS(2072), - [anon_sym_0o] = ACTIONS(2072), - [anon_sym_0x] = ACTIONS(2072), - [sym_val_date] = ACTIONS(2074), - [anon_sym_DQUOTE] = ACTIONS(2074), - [sym__str_single_quotes] = ACTIONS(2074), - [sym__str_back_ticks] = ACTIONS(2074), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2074), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2074), - [anon_sym_err_GT] = ACTIONS(2072), - [anon_sym_out_GT] = ACTIONS(2072), - [anon_sym_e_GT] = ACTIONS(2072), - [anon_sym_o_GT] = ACTIONS(2072), - [anon_sym_err_PLUSout_GT] = ACTIONS(2072), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2072), - [anon_sym_o_PLUSe_GT] = ACTIONS(2072), - [anon_sym_e_PLUSo_GT] = ACTIONS(2072), - [anon_sym_err_GT_GT] = ACTIONS(2074), - [anon_sym_out_GT_GT] = ACTIONS(2074), - [anon_sym_e_GT_GT] = ACTIONS(2074), - [anon_sym_o_GT_GT] = ACTIONS(2074), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2074), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2074), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2074), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2074), - [aux_sym_unquoted_token1] = ACTIONS(2072), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2074), - }, - [1466] = { - [sym_cell_path] = STATE(1747), - [sym_path] = STATE(1703), - [sym_comment] = STATE(1466), - [aux_sym_cell_path_repeat1] = STATE(1505), - [sym__newline] = ACTIONS(1935), - [anon_sym_SEMI] = ACTIONS(1935), - [anon_sym_PIPE] = ACTIONS(1935), - [anon_sym_err_GT_PIPE] = ACTIONS(1935), - [anon_sym_out_GT_PIPE] = ACTIONS(1935), - [anon_sym_e_GT_PIPE] = ACTIONS(1935), - [anon_sym_o_GT_PIPE] = ACTIONS(1935), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1935), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1935), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1935), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1935), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_RPAREN] = ACTIONS(1935), - [anon_sym_DOLLAR] = ACTIONS(1933), - [anon_sym_DASH_DASH] = ACTIONS(1935), - [anon_sym_DASH2] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1935), - [anon_sym_RBRACE] = ACTIONS(1935), - [anon_sym_DOT_DOT] = ACTIONS(1933), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1935), - [anon_sym_DOT_DOT_LT] = ACTIONS(1935), - [anon_sym_null] = ACTIONS(1935), - [anon_sym_true] = ACTIONS(1935), - [anon_sym_false] = ACTIONS(1935), - [aux_sym__val_number_decimal_token1] = ACTIONS(1933), - [aux_sym__val_number_decimal_token2] = ACTIONS(1935), - [aux_sym__val_number_decimal_token3] = ACTIONS(1935), - [aux_sym__val_number_decimal_token4] = ACTIONS(1935), - [aux_sym__val_number_token1] = ACTIONS(1935), - [aux_sym__val_number_token2] = ACTIONS(1935), - [aux_sym__val_number_token3] = ACTIONS(1935), - [aux_sym__val_number_token4] = ACTIONS(1935), - [aux_sym__val_number_token5] = ACTIONS(1935), - [aux_sym__val_number_token6] = ACTIONS(1935), - [anon_sym_0b] = ACTIONS(1933), - [anon_sym_0o] = ACTIONS(1933), - [anon_sym_0x] = ACTIONS(1933), - [sym_val_date] = ACTIONS(1935), - [anon_sym_DQUOTE] = ACTIONS(1935), - [sym__str_single_quotes] = ACTIONS(1935), - [sym__str_back_ticks] = ACTIONS(1935), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1935), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1935), - [anon_sym_err_GT] = ACTIONS(1933), - [anon_sym_out_GT] = ACTIONS(1933), - [anon_sym_e_GT] = ACTIONS(1933), - [anon_sym_o_GT] = ACTIONS(1933), - [anon_sym_err_PLUSout_GT] = ACTIONS(1933), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1933), - [anon_sym_o_PLUSe_GT] = ACTIONS(1933), - [anon_sym_e_PLUSo_GT] = ACTIONS(1933), - [anon_sym_err_GT_GT] = ACTIONS(1935), - [anon_sym_out_GT_GT] = ACTIONS(1935), - [anon_sym_e_GT_GT] = ACTIONS(1935), - [anon_sym_o_GT_GT] = ACTIONS(1935), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1935), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1935), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1935), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1935), - [aux_sym_unquoted_token1] = ACTIONS(1933), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1935), - }, - [1467] = { - [sym_comment] = STATE(1467), - [ts_builtin_sym_end] = ACTIONS(1757), - [sym__newline] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_err_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_GT_PIPE] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT] = ACTIONS(4787), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), - [anon_sym_DOT_DOT_LT] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(4789), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_0b] = ACTIONS(1755), - [anon_sym_0o] = ACTIONS(1755), - [anon_sym_0x] = ACTIONS(1755), - [sym_val_date] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), - [anon_sym_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [1468] = { - [sym_comment] = STATE(1468), - [ts_builtin_sym_end] = ACTIONS(1874), - [sym__newline] = ACTIONS(1874), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_err_GT_PIPE] = ACTIONS(1874), - [anon_sym_out_GT_PIPE] = ACTIONS(1874), - [anon_sym_e_GT_PIPE] = ACTIONS(1874), - [anon_sym_o_GT_PIPE] = ACTIONS(1874), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), - [anon_sym_LBRACK] = ACTIONS(1874), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1874), - [anon_sym_DASH2] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_DOT_DOT2] = ACTIONS(4791), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1866), - [anon_sym_DOT_DOT_LT] = ACTIONS(1866), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4793), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4793), - [anon_sym_null] = ACTIONS(1874), - [anon_sym_true] = ACTIONS(1874), - [anon_sym_false] = ACTIONS(1874), - [aux_sym__val_number_decimal_token1] = ACTIONS(1866), - [aux_sym__val_number_decimal_token2] = ACTIONS(1874), - [aux_sym__val_number_decimal_token3] = ACTIONS(1874), - [aux_sym__val_number_decimal_token4] = ACTIONS(1874), - [aux_sym__val_number_token1] = ACTIONS(1874), - [aux_sym__val_number_token2] = ACTIONS(1874), - [aux_sym__val_number_token3] = ACTIONS(1874), - [aux_sym__val_number_token4] = ACTIONS(1874), - [aux_sym__val_number_token5] = ACTIONS(1874), - [aux_sym__val_number_token6] = ACTIONS(1874), - [anon_sym_0b] = ACTIONS(1866), - [anon_sym_0o] = ACTIONS(1866), - [anon_sym_0x] = ACTIONS(1866), - [sym_val_date] = ACTIONS(1874), - [anon_sym_DQUOTE] = ACTIONS(1874), - [sym__str_single_quotes] = ACTIONS(1874), - [sym__str_back_ticks] = ACTIONS(1874), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1874), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1874), - [anon_sym_err_GT] = ACTIONS(1866), - [anon_sym_out_GT] = ACTIONS(1866), - [anon_sym_e_GT] = ACTIONS(1866), - [anon_sym_o_GT] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT] = ACTIONS(1866), - [anon_sym_err_GT_GT] = ACTIONS(1874), - [anon_sym_out_GT_GT] = ACTIONS(1874), - [anon_sym_e_GT_GT] = ACTIONS(1874), - [anon_sym_o_GT_GT] = ACTIONS(1874), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), - [aux_sym_unquoted_token1] = ACTIONS(1866), - [aux_sym_unquoted_token2] = ACTIONS(1546), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1874), - }, - [1469] = { - [sym_cell_path] = STATE(1762), - [sym_path] = STATE(1703), - [sym_comment] = STATE(1469), - [aux_sym_cell_path_repeat1] = STATE(1505), - [sym__newline] = ACTIONS(1911), - [anon_sym_SEMI] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_err_GT_PIPE] = ACTIONS(1911), - [anon_sym_out_GT_PIPE] = ACTIONS(1911), - [anon_sym_e_GT_PIPE] = ACTIONS(1911), - [anon_sym_o_GT_PIPE] = ACTIONS(1911), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1911), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1911), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1911), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1911), - [anon_sym_LBRACK] = ACTIONS(1911), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_RPAREN] = ACTIONS(1911), - [anon_sym_DOLLAR] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1911), - [anon_sym_DASH2] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1911), - [anon_sym_RBRACE] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1907), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1911), - [anon_sym_DOT_DOT_LT] = ACTIONS(1911), - [anon_sym_null] = ACTIONS(1911), - [anon_sym_true] = ACTIONS(1911), - [anon_sym_false] = ACTIONS(1911), - [aux_sym__val_number_decimal_token1] = ACTIONS(1907), - [aux_sym__val_number_decimal_token2] = ACTIONS(1911), - [aux_sym__val_number_decimal_token3] = ACTIONS(1911), - [aux_sym__val_number_decimal_token4] = ACTIONS(1911), - [aux_sym__val_number_token1] = ACTIONS(1911), - [aux_sym__val_number_token2] = ACTIONS(1911), - [aux_sym__val_number_token3] = ACTIONS(1911), - [aux_sym__val_number_token4] = ACTIONS(1911), - [aux_sym__val_number_token5] = ACTIONS(1911), - [aux_sym__val_number_token6] = ACTIONS(1911), - [anon_sym_0b] = ACTIONS(1907), - [anon_sym_0o] = ACTIONS(1907), - [anon_sym_0x] = ACTIONS(1907), - [sym_val_date] = ACTIONS(1911), - [anon_sym_DQUOTE] = ACTIONS(1911), - [sym__str_single_quotes] = ACTIONS(1911), - [sym__str_back_ticks] = ACTIONS(1911), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1911), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1911), - [anon_sym_err_GT] = ACTIONS(1907), - [anon_sym_out_GT] = ACTIONS(1907), - [anon_sym_e_GT] = ACTIONS(1907), - [anon_sym_o_GT] = ACTIONS(1907), - [anon_sym_err_PLUSout_GT] = ACTIONS(1907), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1907), - [anon_sym_o_PLUSe_GT] = ACTIONS(1907), - [anon_sym_e_PLUSo_GT] = ACTIONS(1907), - [anon_sym_err_GT_GT] = ACTIONS(1911), - [anon_sym_out_GT_GT] = ACTIONS(1911), - [anon_sym_e_GT_GT] = ACTIONS(1911), - [anon_sym_o_GT_GT] = ACTIONS(1911), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1911), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1911), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1911), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1911), - [aux_sym_unquoted_token1] = ACTIONS(1907), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1911), - }, - [1470] = { - [sym_cell_path] = STATE(1763), - [sym_path] = STATE(1703), - [sym_comment] = STATE(1470), - [aux_sym_cell_path_repeat1] = STATE(1505), - [sym__newline] = ACTIONS(1915), - [anon_sym_SEMI] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1915), - [anon_sym_err_GT_PIPE] = ACTIONS(1915), - [anon_sym_out_GT_PIPE] = ACTIONS(1915), - [anon_sym_e_GT_PIPE] = ACTIONS(1915), - [anon_sym_o_GT_PIPE] = ACTIONS(1915), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1915), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1915), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1915), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_RPAREN] = ACTIONS(1915), - [anon_sym_DOLLAR] = ACTIONS(1913), - [anon_sym_DASH_DASH] = ACTIONS(1915), - [anon_sym_DASH2] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1915), - [anon_sym_RBRACE] = ACTIONS(1915), - [anon_sym_DOT_DOT] = ACTIONS(1913), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1915), - [anon_sym_DOT_DOT_LT] = ACTIONS(1915), - [anon_sym_null] = ACTIONS(1915), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [aux_sym__val_number_decimal_token1] = ACTIONS(1913), - [aux_sym__val_number_decimal_token2] = ACTIONS(1915), - [aux_sym__val_number_decimal_token3] = ACTIONS(1915), - [aux_sym__val_number_decimal_token4] = ACTIONS(1915), - [aux_sym__val_number_token1] = ACTIONS(1915), - [aux_sym__val_number_token2] = ACTIONS(1915), - [aux_sym__val_number_token3] = ACTIONS(1915), - [aux_sym__val_number_token4] = ACTIONS(1915), - [aux_sym__val_number_token5] = ACTIONS(1915), - [aux_sym__val_number_token6] = ACTIONS(1915), - [anon_sym_0b] = ACTIONS(1913), - [anon_sym_0o] = ACTIONS(1913), - [anon_sym_0x] = ACTIONS(1913), - [sym_val_date] = ACTIONS(1915), - [anon_sym_DQUOTE] = ACTIONS(1915), - [sym__str_single_quotes] = ACTIONS(1915), - [sym__str_back_ticks] = ACTIONS(1915), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1915), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1915), - [anon_sym_err_GT] = ACTIONS(1913), - [anon_sym_out_GT] = ACTIONS(1913), - [anon_sym_e_GT] = ACTIONS(1913), - [anon_sym_o_GT] = ACTIONS(1913), - [anon_sym_err_PLUSout_GT] = ACTIONS(1913), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1913), - [anon_sym_o_PLUSe_GT] = ACTIONS(1913), - [anon_sym_e_PLUSo_GT] = ACTIONS(1913), - [anon_sym_err_GT_GT] = ACTIONS(1915), - [anon_sym_out_GT_GT] = ACTIONS(1915), - [anon_sym_e_GT_GT] = ACTIONS(1915), - [anon_sym_o_GT_GT] = ACTIONS(1915), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1915), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1915), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1915), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1915), - [aux_sym_unquoted_token1] = ACTIONS(1913), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1915), - }, - [1471] = { - [sym_comment] = STATE(1471), - [ts_builtin_sym_end] = ACTIONS(1020), - [anon_sym_EQ] = ACTIONS(1018), - [anon_sym_PLUS_EQ] = ACTIONS(1020), - [anon_sym_DASH_EQ] = ACTIONS(1020), - [anon_sym_STAR_EQ] = ACTIONS(1020), - [anon_sym_SLASH_EQ] = ACTIONS(1020), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1020), - [sym__newline] = ACTIONS(1020), - [anon_sym_SEMI] = ACTIONS(1020), - [anon_sym_PIPE] = ACTIONS(1020), - [anon_sym_err_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_GT_PIPE] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), - [anon_sym_GT2] = ACTIONS(1018), - [anon_sym_DASH2] = ACTIONS(1018), - [anon_sym_in2] = ACTIONS(1020), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_STAR2] = ACTIONS(1018), - [anon_sym_and2] = ACTIONS(1020), - [anon_sym_xor2] = ACTIONS(1020), - [anon_sym_or2] = ACTIONS(1020), - [anon_sym_not_DASHin2] = ACTIONS(1020), - [anon_sym_starts_DASHwith2] = ACTIONS(1020), - [anon_sym_ends_DASHwith2] = ACTIONS(1020), - [anon_sym_EQ_EQ2] = ACTIONS(1020), - [anon_sym_BANG_EQ2] = ACTIONS(1020), - [anon_sym_LT2] = ACTIONS(1018), - [anon_sym_LT_EQ2] = ACTIONS(1020), - [anon_sym_GT_EQ2] = ACTIONS(1020), - [anon_sym_EQ_TILDE2] = ACTIONS(1020), - [anon_sym_BANG_TILDE2] = ACTIONS(1020), - [anon_sym_STAR_STAR2] = ACTIONS(1020), - [anon_sym_PLUS_PLUS2] = ACTIONS(1018), - [anon_sym_SLASH2] = ACTIONS(1018), - [anon_sym_mod2] = ACTIONS(1020), - [anon_sym_SLASH_SLASH2] = ACTIONS(1020), - [anon_sym_PLUS2] = ACTIONS(1018), - [anon_sym_bit_DASHshl2] = ACTIONS(1020), - [anon_sym_bit_DASHshr2] = ACTIONS(1020), - [anon_sym_bit_DASHand2] = ACTIONS(1020), - [anon_sym_bit_DASHxor2] = ACTIONS(1020), - [anon_sym_bit_DASHor2] = ACTIONS(1020), - [anon_sym_DOT_DOT2] = ACTIONS(1018), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1020), - [anon_sym_err_GT] = ACTIONS(1018), - [anon_sym_out_GT] = ACTIONS(1018), - [anon_sym_e_GT] = ACTIONS(1018), - [anon_sym_o_GT] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT] = ACTIONS(1018), - [anon_sym_err_GT_GT] = ACTIONS(1020), - [anon_sym_out_GT_GT] = ACTIONS(1020), - [anon_sym_e_GT_GT] = ACTIONS(1020), - [anon_sym_o_GT_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), - [anon_sym_POUND] = ACTIONS(247), - }, - [1472] = { - [sym_comment] = STATE(1472), - [ts_builtin_sym_end] = ACTIONS(992), - [sym__newline] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_err_GT_PIPE] = ACTIONS(992), - [anon_sym_out_GT_PIPE] = ACTIONS(992), - [anon_sym_e_GT_PIPE] = ACTIONS(992), - [anon_sym_o_GT_PIPE] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_DOT_DOT] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(992), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ] = ACTIONS(990), - [anon_sym_DOT_DOT_LT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [anon_sym_null] = ACTIONS(992), - [anon_sym_true] = ACTIONS(992), - [anon_sym_false] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(992), - [aux_sym__val_number_decimal_token3] = ACTIONS(992), - [aux_sym__val_number_decimal_token4] = ACTIONS(992), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [aux_sym__val_number_token4] = ACTIONS(992), - [aux_sym__val_number_token5] = ACTIONS(992), - [aux_sym__val_number_token6] = ACTIONS(992), - [anon_sym_0b] = ACTIONS(990), - [anon_sym_0o] = ACTIONS(990), - [anon_sym_0x] = ACTIONS(990), - [sym_val_date] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), - [aux_sym_unquoted_token1] = ACTIONS(990), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(992), - }, - [1473] = { - [sym_comment] = STATE(1473), - [sym__newline] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_err_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_GT_PIPE] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_RPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_DOT] = ACTIONS(4795), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(4797), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_0b] = ACTIONS(1755), - [anon_sym_0o] = ACTIONS(1755), - [anon_sym_0x] = ACTIONS(1755), - [sym_val_date] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), - [anon_sym_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [aux_sym_unquoted_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [1474] = { - [sym_cell_path] = STATE(1751), - [sym_path] = STATE(1703), - [sym_comment] = STATE(1474), - [aux_sym_cell_path_repeat1] = STATE(1505), - [sym__newline] = ACTIONS(1962), - [anon_sym_SEMI] = ACTIONS(1962), - [anon_sym_PIPE] = ACTIONS(1962), - [anon_sym_err_GT_PIPE] = ACTIONS(1962), - [anon_sym_out_GT_PIPE] = ACTIONS(1962), - [anon_sym_e_GT_PIPE] = ACTIONS(1962), - [anon_sym_o_GT_PIPE] = ACTIONS(1962), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1962), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1962), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1962), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1962), - [anon_sym_LBRACK] = ACTIONS(1962), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_RPAREN] = ACTIONS(1962), - [anon_sym_DOLLAR] = ACTIONS(1960), - [anon_sym_DASH_DASH] = ACTIONS(1962), - [anon_sym_DASH2] = ACTIONS(1960), - [anon_sym_LBRACE] = ACTIONS(1962), - [anon_sym_RBRACE] = ACTIONS(1962), - [anon_sym_DOT_DOT] = ACTIONS(1960), + [1500] = { + [sym_cell_path] = STATE(1785), + [sym_path] = STATE(1678), + [sym_comment] = STATE(1500), + [aux_sym_cell_path_repeat1] = STATE(1528), + [sym__newline] = ACTIONS(1921), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_err_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_GT_PIPE] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_RPAREN] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1919), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(1921), + [anon_sym_DOT_DOT] = ACTIONS(1919), [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1962), - [anon_sym_DOT_DOT_LT] = ACTIONS(1962), - [anon_sym_null] = ACTIONS(1962), - [anon_sym_true] = ACTIONS(1962), - [anon_sym_false] = ACTIONS(1962), - [aux_sym__val_number_decimal_token1] = ACTIONS(1960), - [aux_sym__val_number_decimal_token2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1962), - [aux_sym__val_number_decimal_token4] = ACTIONS(1962), - [aux_sym__val_number_token1] = ACTIONS(1962), - [aux_sym__val_number_token2] = ACTIONS(1962), - [aux_sym__val_number_token3] = ACTIONS(1962), - [aux_sym__val_number_token4] = ACTIONS(1962), - [aux_sym__val_number_token5] = ACTIONS(1962), - [aux_sym__val_number_token6] = ACTIONS(1962), - [anon_sym_0b] = ACTIONS(1960), - [anon_sym_0o] = ACTIONS(1960), - [anon_sym_0x] = ACTIONS(1960), - [sym_val_date] = ACTIONS(1962), - [anon_sym_DQUOTE] = ACTIONS(1962), - [sym__str_single_quotes] = ACTIONS(1962), - [sym__str_back_ticks] = ACTIONS(1962), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1962), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1962), - [anon_sym_err_GT] = ACTIONS(1960), - [anon_sym_out_GT] = ACTIONS(1960), - [anon_sym_e_GT] = ACTIONS(1960), - [anon_sym_o_GT] = ACTIONS(1960), - [anon_sym_err_PLUSout_GT] = ACTIONS(1960), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1960), - [anon_sym_o_PLUSe_GT] = ACTIONS(1960), - [anon_sym_e_PLUSo_GT] = ACTIONS(1960), - [anon_sym_err_GT_GT] = ACTIONS(1962), - [anon_sym_out_GT_GT] = ACTIONS(1962), - [anon_sym_e_GT_GT] = ACTIONS(1962), - [anon_sym_o_GT_GT] = ACTIONS(1962), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1962), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1962), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1962), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1962), - [aux_sym_unquoted_token1] = ACTIONS(1960), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1962), - }, - [1475] = { - [sym_comment] = STATE(1475), - [sym__newline] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_err_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_GT_PIPE] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), - [anon_sym_RPAREN] = ACTIONS(1675), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1675), - [anon_sym_in2] = ACTIONS(1675), - [anon_sym_LBRACE] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1675), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1675), - [anon_sym_xor2] = ACTIONS(1675), - [anon_sym_or2] = ACTIONS(1675), - [anon_sym_not_DASHin2] = ACTIONS(1675), - [anon_sym_starts_DASHwith2] = ACTIONS(1675), - [anon_sym_ends_DASHwith2] = ACTIONS(1675), - [anon_sym_EQ_EQ2] = ACTIONS(1675), - [anon_sym_BANG_EQ2] = ACTIONS(1675), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1675), - [anon_sym_GT_EQ2] = ACTIONS(1675), - [anon_sym_EQ_TILDE2] = ACTIONS(1675), - [anon_sym_BANG_TILDE2] = ACTIONS(1675), - [anon_sym_LPAREN2] = ACTIONS(1675), - [anon_sym_STAR_STAR2] = ACTIONS(1675), - [anon_sym_PLUS_PLUS2] = ACTIONS(1675), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1675), - [anon_sym_SLASH_SLASH2] = ACTIONS(1675), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1675), - [anon_sym_bit_DASHshr2] = ACTIONS(1675), - [anon_sym_bit_DASHand2] = ACTIONS(1675), - [anon_sym_bit_DASHxor2] = ACTIONS(1675), - [anon_sym_bit_DASHor2] = ACTIONS(1675), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [aux_sym__immediate_decimal_token2] = ACTIONS(4799), - [sym_filesize_unit] = ACTIONS(1673), - [sym_duration_unit] = ACTIONS(1675), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1675), - [anon_sym_out_GT_GT] = ACTIONS(1675), - [anon_sym_e_GT_GT] = ACTIONS(1675), - [anon_sym_o_GT_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), - [aux_sym_unquoted_token2] = ACTIONS(1673), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1921), + [anon_sym_DOT_DOT_LT] = ACTIONS(1921), + [anon_sym_null] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1921), + [anon_sym_false] = ACTIONS(1921), + [aux_sym__val_number_decimal_token1] = ACTIONS(1919), + [aux_sym__val_number_decimal_token2] = ACTIONS(1921), + [aux_sym__val_number_decimal_token3] = ACTIONS(1921), + [aux_sym__val_number_decimal_token4] = ACTIONS(1921), + [aux_sym__val_number_token1] = ACTIONS(1921), + [aux_sym__val_number_token2] = ACTIONS(1921), + [aux_sym__val_number_token3] = ACTIONS(1921), + [aux_sym__val_number_token4] = ACTIONS(1921), + [aux_sym__val_number_token5] = ACTIONS(1921), + [aux_sym__val_number_token6] = ACTIONS(1921), + [anon_sym_0b] = ACTIONS(1919), + [anon_sym_0o] = ACTIONS(1919), + [anon_sym_0x] = ACTIONS(1919), + [sym_val_date] = ACTIONS(1921), + [anon_sym_DQUOTE] = ACTIONS(1921), + [sym__str_single_quotes] = ACTIONS(1921), + [sym__str_back_ticks] = ACTIONS(1921), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1921), + [anon_sym_err_GT] = ACTIONS(1919), + [anon_sym_out_GT] = ACTIONS(1919), + [anon_sym_e_GT] = ACTIONS(1919), + [anon_sym_o_GT] = ACTIONS(1919), + [anon_sym_err_PLUSout_GT] = ACTIONS(1919), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1919), + [anon_sym_o_PLUSe_GT] = ACTIONS(1919), + [anon_sym_e_PLUSo_GT] = ACTIONS(1919), + [anon_sym_err_GT_GT] = ACTIONS(1921), + [anon_sym_out_GT_GT] = ACTIONS(1921), + [anon_sym_e_GT_GT] = ACTIONS(1921), + [anon_sym_o_GT_GT] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1921), + [aux_sym_unquoted_token1] = ACTIONS(1919), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1921), }, - [1476] = { - [sym_cell_path] = STATE(1759), - [sym_path] = STATE(1703), - [sym_comment] = STATE(1476), - [aux_sym_cell_path_repeat1] = STATE(1505), - [sym__newline] = ACTIONS(2006), - [anon_sym_SEMI] = ACTIONS(2006), - [anon_sym_PIPE] = ACTIONS(2006), - [anon_sym_err_GT_PIPE] = ACTIONS(2006), - [anon_sym_out_GT_PIPE] = ACTIONS(2006), - [anon_sym_e_GT_PIPE] = ACTIONS(2006), - [anon_sym_o_GT_PIPE] = ACTIONS(2006), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2006), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2006), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2006), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2006), - [anon_sym_LBRACK] = ACTIONS(2006), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_RPAREN] = ACTIONS(2006), - [anon_sym_DOLLAR] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2006), - [anon_sym_DASH2] = ACTIONS(2004), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_RBRACE] = ACTIONS(2006), - [anon_sym_DOT_DOT] = ACTIONS(2004), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2006), - [anon_sym_DOT_DOT_LT] = ACTIONS(2006), - [anon_sym_null] = ACTIONS(2006), - [anon_sym_true] = ACTIONS(2006), - [anon_sym_false] = ACTIONS(2006), - [aux_sym__val_number_decimal_token1] = ACTIONS(2004), - [aux_sym__val_number_decimal_token2] = ACTIONS(2006), - [aux_sym__val_number_decimal_token3] = ACTIONS(2006), - [aux_sym__val_number_decimal_token4] = ACTIONS(2006), - [aux_sym__val_number_token1] = ACTIONS(2006), - [aux_sym__val_number_token2] = ACTIONS(2006), - [aux_sym__val_number_token3] = ACTIONS(2006), - [aux_sym__val_number_token4] = ACTIONS(2006), - [aux_sym__val_number_token5] = ACTIONS(2006), - [aux_sym__val_number_token6] = ACTIONS(2006), - [anon_sym_0b] = ACTIONS(2004), - [anon_sym_0o] = ACTIONS(2004), - [anon_sym_0x] = ACTIONS(2004), - [sym_val_date] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2006), - [sym__str_single_quotes] = ACTIONS(2006), - [sym__str_back_ticks] = ACTIONS(2006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2006), - [anon_sym_err_GT] = ACTIONS(2004), - [anon_sym_out_GT] = ACTIONS(2004), - [anon_sym_e_GT] = ACTIONS(2004), - [anon_sym_o_GT] = ACTIONS(2004), - [anon_sym_err_PLUSout_GT] = ACTIONS(2004), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2004), - [anon_sym_o_PLUSe_GT] = ACTIONS(2004), - [anon_sym_e_PLUSo_GT] = ACTIONS(2004), - [anon_sym_err_GT_GT] = ACTIONS(2006), - [anon_sym_out_GT_GT] = ACTIONS(2006), - [anon_sym_e_GT_GT] = ACTIONS(2006), - [anon_sym_o_GT_GT] = ACTIONS(2006), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2006), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2006), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2006), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2006), - [aux_sym_unquoted_token1] = ACTIONS(2004), + [1501] = { + [sym_comment] = STATE(1501), + [anon_sym_EQ] = ACTIONS(1044), + [anon_sym_PLUS_EQ] = ACTIONS(1046), + [anon_sym_DASH_EQ] = ACTIONS(1046), + [anon_sym_STAR_EQ] = ACTIONS(1046), + [anon_sym_SLASH_EQ] = ACTIONS(1046), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1046), + [sym__newline] = ACTIONS(1044), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_err_GT_PIPE] = ACTIONS(1046), + [anon_sym_out_GT_PIPE] = ACTIONS(1046), + [anon_sym_e_GT_PIPE] = ACTIONS(1046), + [anon_sym_o_GT_PIPE] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1046), + [anon_sym_GT2] = ACTIONS(1044), + [anon_sym_DASH2] = ACTIONS(1044), + [anon_sym_in2] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_STAR2] = ACTIONS(1044), + [anon_sym_and2] = ACTIONS(1046), + [anon_sym_xor2] = ACTIONS(1046), + [anon_sym_or2] = ACTIONS(1046), + [anon_sym_not_DASHin2] = ACTIONS(1046), + [anon_sym_starts_DASHwith2] = ACTIONS(1046), + [anon_sym_ends_DASHwith2] = ACTIONS(1046), + [anon_sym_EQ_EQ2] = ACTIONS(1046), + [anon_sym_BANG_EQ2] = ACTIONS(1046), + [anon_sym_LT2] = ACTIONS(1044), + [anon_sym_LT_EQ2] = ACTIONS(1046), + [anon_sym_GT_EQ2] = ACTIONS(1046), + [anon_sym_EQ_TILDE2] = ACTIONS(1046), + [anon_sym_BANG_TILDE2] = ACTIONS(1046), + [anon_sym_STAR_STAR2] = ACTIONS(1046), + [anon_sym_PLUS_PLUS2] = ACTIONS(1044), + [anon_sym_SLASH2] = ACTIONS(1044), + [anon_sym_mod2] = ACTIONS(1046), + [anon_sym_SLASH_SLASH2] = ACTIONS(1046), + [anon_sym_PLUS2] = ACTIONS(1044), + [anon_sym_bit_DASHshl2] = ACTIONS(1046), + [anon_sym_bit_DASHshr2] = ACTIONS(1046), + [anon_sym_bit_DASHand2] = ACTIONS(1046), + [anon_sym_bit_DASHxor2] = ACTIONS(1046), + [anon_sym_bit_DASHor2] = ACTIONS(1046), + [anon_sym_DOT_DOT2] = ACTIONS(1044), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), + [aux_sym_record_entry_token1] = ACTIONS(1046), + [anon_sym_err_GT] = ACTIONS(1044), + [anon_sym_out_GT] = ACTIONS(1044), + [anon_sym_e_GT] = ACTIONS(1044), + [anon_sym_o_GT] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT] = ACTIONS(1044), + [anon_sym_err_GT_GT] = ACTIONS(1046), + [anon_sym_out_GT_GT] = ACTIONS(1046), + [anon_sym_e_GT_GT] = ACTIONS(1046), + [anon_sym_o_GT_GT] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1046), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2006), - }, - [1477] = { - [sym_cell_path] = STATE(1748), - [sym_path] = STATE(1703), - [sym_comment] = STATE(1477), - [aux_sym_cell_path_repeat1] = STATE(1505), - [sym__newline] = ACTIONS(1946), - [anon_sym_SEMI] = ACTIONS(1946), - [anon_sym_PIPE] = ACTIONS(1946), - [anon_sym_err_GT_PIPE] = ACTIONS(1946), - [anon_sym_out_GT_PIPE] = ACTIONS(1946), - [anon_sym_e_GT_PIPE] = ACTIONS(1946), - [anon_sym_o_GT_PIPE] = ACTIONS(1946), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1946), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1946), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1946), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1946), - [anon_sym_LBRACK] = ACTIONS(1946), - [anon_sym_LPAREN] = ACTIONS(1946), - [anon_sym_RPAREN] = ACTIONS(1946), - [anon_sym_DOLLAR] = ACTIONS(1944), - [anon_sym_DASH_DASH] = ACTIONS(1946), - [anon_sym_DASH2] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_RBRACE] = ACTIONS(1946), - [anon_sym_DOT_DOT] = ACTIONS(1944), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [anon_sym_null] = ACTIONS(1946), - [anon_sym_true] = ACTIONS(1946), - [anon_sym_false] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1944), - [aux_sym__val_number_decimal_token2] = ACTIONS(1946), - [aux_sym__val_number_decimal_token3] = ACTIONS(1946), - [aux_sym__val_number_decimal_token4] = ACTIONS(1946), - [aux_sym__val_number_token1] = ACTIONS(1946), - [aux_sym__val_number_token2] = ACTIONS(1946), - [aux_sym__val_number_token3] = ACTIONS(1946), - [aux_sym__val_number_token4] = ACTIONS(1946), - [aux_sym__val_number_token5] = ACTIONS(1946), - [aux_sym__val_number_token6] = ACTIONS(1946), - [anon_sym_0b] = ACTIONS(1944), - [anon_sym_0o] = ACTIONS(1944), - [anon_sym_0x] = ACTIONS(1944), - [sym_val_date] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1946), - [sym__str_single_quotes] = ACTIONS(1946), - [sym__str_back_ticks] = ACTIONS(1946), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1946), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1946), - [anon_sym_err_GT] = ACTIONS(1944), - [anon_sym_out_GT] = ACTIONS(1944), - [anon_sym_e_GT] = ACTIONS(1944), - [anon_sym_o_GT] = ACTIONS(1944), - [anon_sym_err_PLUSout_GT] = ACTIONS(1944), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1944), - [anon_sym_o_PLUSe_GT] = ACTIONS(1944), - [anon_sym_e_PLUSo_GT] = ACTIONS(1944), - [anon_sym_err_GT_GT] = ACTIONS(1946), - [anon_sym_out_GT_GT] = ACTIONS(1946), - [anon_sym_e_GT_GT] = ACTIONS(1946), - [anon_sym_o_GT_GT] = ACTIONS(1946), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1946), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1946), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1946), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1946), - [aux_sym_unquoted_token1] = ACTIONS(1944), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1946), - }, - [1478] = { - [sym_cell_path] = STATE(1766), - [sym_path] = STATE(1703), - [sym_comment] = STATE(1478), - [aux_sym_cell_path_repeat1] = STATE(1505), - [sym__newline] = ACTIONS(1978), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_err_GT_PIPE] = ACTIONS(1978), - [anon_sym_out_GT_PIPE] = ACTIONS(1978), - [anon_sym_e_GT_PIPE] = ACTIONS(1978), - [anon_sym_o_GT_PIPE] = ACTIONS(1978), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1978), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1978), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1978), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1978), - [anon_sym_LBRACK] = ACTIONS(1978), - [anon_sym_LPAREN] = ACTIONS(1978), - [anon_sym_RPAREN] = ACTIONS(1978), - [anon_sym_DOLLAR] = ACTIONS(1976), - [anon_sym_DASH_DASH] = ACTIONS(1978), - [anon_sym_DASH2] = ACTIONS(1976), - [anon_sym_LBRACE] = ACTIONS(1978), - [anon_sym_RBRACE] = ACTIONS(1978), - [anon_sym_DOT_DOT] = ACTIONS(1976), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1978), - [anon_sym_DOT_DOT_LT] = ACTIONS(1978), - [anon_sym_null] = ACTIONS(1978), - [anon_sym_true] = ACTIONS(1978), - [anon_sym_false] = ACTIONS(1978), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1978), - [aux_sym__val_number_decimal_token4] = ACTIONS(1978), - [aux_sym__val_number_token1] = ACTIONS(1978), - [aux_sym__val_number_token2] = ACTIONS(1978), - [aux_sym__val_number_token3] = ACTIONS(1978), - [aux_sym__val_number_token4] = ACTIONS(1978), - [aux_sym__val_number_token5] = ACTIONS(1978), - [aux_sym__val_number_token6] = ACTIONS(1978), - [anon_sym_0b] = ACTIONS(1976), - [anon_sym_0o] = ACTIONS(1976), - [anon_sym_0x] = ACTIONS(1976), - [sym_val_date] = ACTIONS(1978), - [anon_sym_DQUOTE] = ACTIONS(1978), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1978), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1978), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1978), - [anon_sym_out_GT_GT] = ACTIONS(1978), - [anon_sym_e_GT_GT] = ACTIONS(1978), - [anon_sym_o_GT_GT] = ACTIONS(1978), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1978), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1978), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1978), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1978), - [aux_sym_unquoted_token1] = ACTIONS(1976), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1978), }, - [1479] = { - [sym_comment] = STATE(1479), - [ts_builtin_sym_end] = ACTIONS(1892), - [sym__newline] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_err_GT_PIPE] = ACTIONS(1892), - [anon_sym_out_GT_PIPE] = ACTIONS(1892), - [anon_sym_e_GT_PIPE] = ACTIONS(1892), - [anon_sym_o_GT_PIPE] = ACTIONS(1892), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1892), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1892), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1892), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1892), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(1890), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_DASH2] = ACTIONS(1890), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_DOT_DOT] = ACTIONS(1890), - [anon_sym_LPAREN2] = ACTIONS(1892), - [anon_sym_DOT_DOT2] = ACTIONS(1890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1890), - [anon_sym_DOT_DOT_LT] = ACTIONS(1890), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1892), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [aux_sym__val_number_decimal_token1] = ACTIONS(1890), - [aux_sym__val_number_decimal_token2] = ACTIONS(1892), - [aux_sym__val_number_decimal_token3] = ACTIONS(1892), - [aux_sym__val_number_decimal_token4] = ACTIONS(1892), - [aux_sym__val_number_token1] = ACTIONS(1892), - [aux_sym__val_number_token2] = ACTIONS(1892), - [aux_sym__val_number_token3] = ACTIONS(1892), - [aux_sym__val_number_token4] = ACTIONS(1892), - [aux_sym__val_number_token5] = ACTIONS(1892), - [aux_sym__val_number_token6] = ACTIONS(1892), - [anon_sym_0b] = ACTIONS(1890), - [anon_sym_0o] = ACTIONS(1890), - [anon_sym_0x] = ACTIONS(1890), - [sym_val_date] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [sym__str_single_quotes] = ACTIONS(1892), - [sym__str_back_ticks] = ACTIONS(1892), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1892), - [anon_sym_err_GT] = ACTIONS(1890), - [anon_sym_out_GT] = ACTIONS(1890), - [anon_sym_e_GT] = ACTIONS(1890), - [anon_sym_o_GT] = ACTIONS(1890), - [anon_sym_err_PLUSout_GT] = ACTIONS(1890), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1890), - [anon_sym_o_PLUSe_GT] = ACTIONS(1890), - [anon_sym_e_PLUSo_GT] = ACTIONS(1890), - [anon_sym_err_GT_GT] = ACTIONS(1892), - [anon_sym_out_GT_GT] = ACTIONS(1892), - [anon_sym_e_GT_GT] = ACTIONS(1892), - [anon_sym_o_GT_GT] = ACTIONS(1892), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1892), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1892), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1892), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1892), - [aux_sym_unquoted_token1] = ACTIONS(1890), - [aux_sym_unquoted_token2] = ACTIONS(1890), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1892), + [1502] = { + [sym_comment] = STATE(1502), + [sym__newline] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_err_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_GT_PIPE] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1767), + [anon_sym_RPAREN] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_DOT_DOT] = ACTIONS(1765), + [anon_sym_DOT_DOT2] = ACTIONS(1765), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1765), + [anon_sym_DOT_DOT_LT] = ACTIONS(1765), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), + [anon_sym_null] = ACTIONS(1767), + [anon_sym_true] = ACTIONS(1767), + [anon_sym_false] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1767), + [aux_sym__val_number_token5] = ACTIONS(1767), + [aux_sym__val_number_token6] = ACTIONS(1767), + [anon_sym_0b] = ACTIONS(1765), + [anon_sym_0o] = ACTIONS(1765), + [anon_sym_0x] = ACTIONS(1765), + [sym_val_date] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), + [anon_sym_err_GT] = ACTIONS(1765), + [anon_sym_out_GT] = ACTIONS(1765), + [anon_sym_e_GT] = ACTIONS(1765), + [anon_sym_o_GT] = ACTIONS(1765), + [anon_sym_err_PLUSout_GT] = ACTIONS(1765), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), + [anon_sym_o_PLUSe_GT] = ACTIONS(1765), + [anon_sym_e_PLUSo_GT] = ACTIONS(1765), + [anon_sym_err_GT_GT] = ACTIONS(1767), + [anon_sym_out_GT_GT] = ACTIONS(1767), + [anon_sym_e_GT_GT] = ACTIONS(1767), + [anon_sym_o_GT_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), + [aux_sym_unquoted_token1] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1767), }, - [1480] = { - [sym_cell_path] = STATE(1749), - [sym_path] = STATE(1703), - [sym_comment] = STATE(1480), - [aux_sym_cell_path_repeat1] = STATE(1505), - [sym__newline] = ACTIONS(1950), - [anon_sym_SEMI] = ACTIONS(1950), - [anon_sym_PIPE] = ACTIONS(1950), - [anon_sym_err_GT_PIPE] = ACTIONS(1950), - [anon_sym_out_GT_PIPE] = ACTIONS(1950), - [anon_sym_e_GT_PIPE] = ACTIONS(1950), - [anon_sym_o_GT_PIPE] = ACTIONS(1950), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1950), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1950), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1950), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1950), - [anon_sym_LBRACK] = ACTIONS(1950), - [anon_sym_LPAREN] = ACTIONS(1950), - [anon_sym_RPAREN] = ACTIONS(1950), - [anon_sym_DOLLAR] = ACTIONS(1948), - [anon_sym_DASH_DASH] = ACTIONS(1950), - [anon_sym_DASH2] = ACTIONS(1948), - [anon_sym_LBRACE] = ACTIONS(1950), - [anon_sym_RBRACE] = ACTIONS(1950), - [anon_sym_DOT_DOT] = ACTIONS(1948), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1950), - [anon_sym_DOT_DOT_LT] = ACTIONS(1950), - [anon_sym_null] = ACTIONS(1950), - [anon_sym_true] = ACTIONS(1950), - [anon_sym_false] = ACTIONS(1950), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1950), - [aux_sym__val_number_decimal_token4] = ACTIONS(1950), - [aux_sym__val_number_token1] = ACTIONS(1950), - [aux_sym__val_number_token2] = ACTIONS(1950), - [aux_sym__val_number_token3] = ACTIONS(1950), - [aux_sym__val_number_token4] = ACTIONS(1950), - [aux_sym__val_number_token5] = ACTIONS(1950), - [aux_sym__val_number_token6] = ACTIONS(1950), - [anon_sym_0b] = ACTIONS(1948), - [anon_sym_0o] = ACTIONS(1948), - [anon_sym_0x] = ACTIONS(1948), - [sym_val_date] = ACTIONS(1950), - [anon_sym_DQUOTE] = ACTIONS(1950), - [sym__str_single_quotes] = ACTIONS(1950), - [sym__str_back_ticks] = ACTIONS(1950), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1950), - [anon_sym_err_GT] = ACTIONS(1948), - [anon_sym_out_GT] = ACTIONS(1948), - [anon_sym_e_GT] = ACTIONS(1948), - [anon_sym_o_GT] = ACTIONS(1948), - [anon_sym_err_PLUSout_GT] = ACTIONS(1948), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1948), - [anon_sym_o_PLUSe_GT] = ACTIONS(1948), - [anon_sym_e_PLUSo_GT] = ACTIONS(1948), - [anon_sym_err_GT_GT] = ACTIONS(1950), - [anon_sym_out_GT_GT] = ACTIONS(1950), - [anon_sym_e_GT_GT] = ACTIONS(1950), - [anon_sym_o_GT_GT] = ACTIONS(1950), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1950), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1950), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1950), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1950), - [aux_sym_unquoted_token1] = ACTIONS(1948), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1950), + [1503] = { + [sym_cell_path] = STATE(1924), + [sym_path] = STATE(1823), + [sym_comment] = STATE(1503), + [aux_sym_cell_path_repeat1] = STATE(1574), + [ts_builtin_sym_end] = ACTIONS(1885), + [sym__newline] = ACTIONS(1885), + [anon_sym_SEMI] = ACTIONS(1885), + [anon_sym_PIPE] = ACTIONS(1885), + [anon_sym_err_GT_PIPE] = ACTIONS(1885), + [anon_sym_out_GT_PIPE] = ACTIONS(1885), + [anon_sym_e_GT_PIPE] = ACTIONS(1885), + [anon_sym_o_GT_PIPE] = ACTIONS(1885), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1885), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1885), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1885), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1885), + [anon_sym_LBRACK] = ACTIONS(1885), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_DOLLAR] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1885), + [anon_sym_DASH2] = ACTIONS(1883), + [anon_sym_LBRACE] = ACTIONS(1885), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1885), + [anon_sym_DOT_DOT_LT] = ACTIONS(1885), + [anon_sym_null] = ACTIONS(1885), + [anon_sym_true] = ACTIONS(1885), + [anon_sym_false] = ACTIONS(1885), + [aux_sym__val_number_decimal_token1] = ACTIONS(1883), + [aux_sym__val_number_decimal_token2] = ACTIONS(1885), + [aux_sym__val_number_decimal_token3] = ACTIONS(1885), + [aux_sym__val_number_decimal_token4] = ACTIONS(1885), + [aux_sym__val_number_token1] = ACTIONS(1885), + [aux_sym__val_number_token2] = ACTIONS(1885), + [aux_sym__val_number_token3] = ACTIONS(1885), + [aux_sym__val_number_token4] = ACTIONS(1885), + [aux_sym__val_number_token5] = ACTIONS(1885), + [aux_sym__val_number_token6] = ACTIONS(1885), + [anon_sym_0b] = ACTIONS(1883), + [anon_sym_0o] = ACTIONS(1883), + [anon_sym_0x] = ACTIONS(1883), + [sym_val_date] = ACTIONS(1885), + [anon_sym_DQUOTE] = ACTIONS(1885), + [sym__str_single_quotes] = ACTIONS(1885), + [sym__str_back_ticks] = ACTIONS(1885), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1885), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1885), + [anon_sym_err_GT] = ACTIONS(1883), + [anon_sym_out_GT] = ACTIONS(1883), + [anon_sym_e_GT] = ACTIONS(1883), + [anon_sym_o_GT] = ACTIONS(1883), + [anon_sym_err_PLUSout_GT] = ACTIONS(1883), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1883), + [anon_sym_o_PLUSe_GT] = ACTIONS(1883), + [anon_sym_e_PLUSo_GT] = ACTIONS(1883), + [anon_sym_err_GT_GT] = ACTIONS(1885), + [anon_sym_out_GT_GT] = ACTIONS(1885), + [anon_sym_e_GT_GT] = ACTIONS(1885), + [anon_sym_o_GT_GT] = ACTIONS(1885), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1885), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1885), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1885), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1885), + [aux_sym_unquoted_token1] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1885), }, - [1481] = { - [sym_cell_path] = STATE(1787), - [sym_path] = STATE(1703), - [sym_comment] = STATE(1481), - [aux_sym_cell_path_repeat1] = STATE(1505), - [sym__newline] = ACTIONS(963), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(963), - [anon_sym_err_GT_PIPE] = ACTIONS(963), - [anon_sym_out_GT_PIPE] = ACTIONS(963), - [anon_sym_e_GT_PIPE] = ACTIONS(963), - [anon_sym_o_GT_PIPE] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), - [anon_sym_LBRACK] = ACTIONS(963), - [anon_sym_LPAREN] = ACTIONS(963), - [anon_sym_RPAREN] = ACTIONS(963), - [anon_sym_DOLLAR] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_DASH2] = ACTIONS(961), - [anon_sym_LBRACE] = ACTIONS(963), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_DOT_DOT] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(963), - [anon_sym_DOT_DOT_LT] = ACTIONS(963), - [anon_sym_null] = ACTIONS(963), - [anon_sym_true] = ACTIONS(963), - [anon_sym_false] = ACTIONS(963), - [aux_sym__val_number_decimal_token1] = ACTIONS(961), - [aux_sym__val_number_decimal_token2] = ACTIONS(963), - [aux_sym__val_number_decimal_token3] = ACTIONS(963), - [aux_sym__val_number_decimal_token4] = ACTIONS(963), - [aux_sym__val_number_token1] = ACTIONS(963), - [aux_sym__val_number_token2] = ACTIONS(963), - [aux_sym__val_number_token3] = ACTIONS(963), - [aux_sym__val_number_token4] = ACTIONS(963), - [aux_sym__val_number_token5] = ACTIONS(963), - [aux_sym__val_number_token6] = ACTIONS(963), - [anon_sym_0b] = ACTIONS(961), - [anon_sym_0o] = ACTIONS(961), - [anon_sym_0x] = ACTIONS(961), - [sym_val_date] = ACTIONS(963), - [anon_sym_DQUOTE] = ACTIONS(963), - [sym__str_single_quotes] = ACTIONS(963), - [sym__str_back_ticks] = ACTIONS(963), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(963), - [anon_sym_err_GT] = ACTIONS(961), - [anon_sym_out_GT] = ACTIONS(961), - [anon_sym_e_GT] = ACTIONS(961), - [anon_sym_o_GT] = ACTIONS(961), - [anon_sym_err_PLUSout_GT] = ACTIONS(961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(961), - [anon_sym_o_PLUSe_GT] = ACTIONS(961), - [anon_sym_e_PLUSo_GT] = ACTIONS(961), - [anon_sym_err_GT_GT] = ACTIONS(963), - [anon_sym_out_GT_GT] = ACTIONS(963), - [anon_sym_e_GT_GT] = ACTIONS(963), - [anon_sym_o_GT_GT] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), - [aux_sym_unquoted_token1] = ACTIONS(961), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(963), + [1504] = { + [sym_comment] = STATE(1504), + [sym__newline] = ACTIONS(2128), + [anon_sym_SEMI] = ACTIONS(2128), + [anon_sym_PIPE] = ACTIONS(2128), + [anon_sym_err_GT_PIPE] = ACTIONS(2128), + [anon_sym_out_GT_PIPE] = ACTIONS(2128), + [anon_sym_e_GT_PIPE] = ACTIONS(2128), + [anon_sym_o_GT_PIPE] = ACTIONS(2128), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2128), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2128), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2128), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2128), + [anon_sym_LBRACK] = ACTIONS(2128), + [anon_sym_LPAREN] = ACTIONS(2128), + [anon_sym_RPAREN] = ACTIONS(2128), + [anon_sym_DOLLAR] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2128), + [anon_sym_DASH2] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(2128), + [anon_sym_RBRACE] = ACTIONS(2128), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_DOT_DOT2] = ACTIONS(4815), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2122), + [anon_sym_DOT_DOT_LT] = ACTIONS(2122), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4817), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4817), + [anon_sym_null] = ACTIONS(2128), + [anon_sym_true] = ACTIONS(2128), + [anon_sym_false] = ACTIONS(2128), + [aux_sym__val_number_decimal_token1] = ACTIONS(2122), + [aux_sym__val_number_decimal_token2] = ACTIONS(2128), + [aux_sym__val_number_decimal_token3] = ACTIONS(2128), + [aux_sym__val_number_decimal_token4] = ACTIONS(2128), + [aux_sym__val_number_token1] = ACTIONS(2128), + [aux_sym__val_number_token2] = ACTIONS(2128), + [aux_sym__val_number_token3] = ACTIONS(2128), + [aux_sym__val_number_token4] = ACTIONS(2128), + [aux_sym__val_number_token5] = ACTIONS(2128), + [aux_sym__val_number_token6] = ACTIONS(2128), + [anon_sym_0b] = ACTIONS(2122), + [anon_sym_0o] = ACTIONS(2122), + [anon_sym_0x] = ACTIONS(2122), + [sym_val_date] = ACTIONS(2128), + [anon_sym_DQUOTE] = ACTIONS(2128), + [sym__str_single_quotes] = ACTIONS(2128), + [sym__str_back_ticks] = ACTIONS(2128), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2128), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2128), + [anon_sym_err_GT] = ACTIONS(2122), + [anon_sym_out_GT] = ACTIONS(2122), + [anon_sym_e_GT] = ACTIONS(2122), + [anon_sym_o_GT] = ACTIONS(2122), + [anon_sym_err_PLUSout_GT] = ACTIONS(2122), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2122), + [anon_sym_o_PLUSe_GT] = ACTIONS(2122), + [anon_sym_e_PLUSo_GT] = ACTIONS(2122), + [anon_sym_err_GT_GT] = ACTIONS(2128), + [anon_sym_out_GT_GT] = ACTIONS(2128), + [anon_sym_e_GT_GT] = ACTIONS(2128), + [anon_sym_o_GT_GT] = ACTIONS(2128), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2128), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2128), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2128), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2128), + [aux_sym_unquoted_token1] = ACTIONS(2122), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2128), }, - [1482] = { - [sym_comment] = STATE(1482), - [anon_sym_EQ] = ACTIONS(1024), - [anon_sym_PLUS_EQ] = ACTIONS(1026), - [anon_sym_DASH_EQ] = ACTIONS(1026), - [anon_sym_STAR_EQ] = ACTIONS(1026), - [anon_sym_SLASH_EQ] = ACTIONS(1026), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1026), - [sym__newline] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_err_GT_PIPE] = ACTIONS(1032), - [anon_sym_out_GT_PIPE] = ACTIONS(1032), - [anon_sym_e_GT_PIPE] = ACTIONS(1032), - [anon_sym_o_GT_PIPE] = ACTIONS(1032), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1032), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1032), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1032), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1032), - [anon_sym_GT2] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(1030), - [anon_sym_in2] = ACTIONS(1032), - [anon_sym_RBRACE] = ACTIONS(1032), - [anon_sym_STAR2] = ACTIONS(1030), - [anon_sym_and2] = ACTIONS(1032), - [anon_sym_xor2] = ACTIONS(1032), - [anon_sym_or2] = ACTIONS(1032), - [anon_sym_not_DASHin2] = ACTIONS(1032), - [anon_sym_starts_DASHwith2] = ACTIONS(1032), - [anon_sym_ends_DASHwith2] = ACTIONS(1032), - [anon_sym_EQ_EQ2] = ACTIONS(1032), - [anon_sym_BANG_EQ2] = ACTIONS(1032), - [anon_sym_LT2] = ACTIONS(1030), - [anon_sym_LT_EQ2] = ACTIONS(1032), - [anon_sym_GT_EQ2] = ACTIONS(1032), - [anon_sym_EQ_TILDE2] = ACTIONS(1032), - [anon_sym_BANG_TILDE2] = ACTIONS(1032), - [anon_sym_STAR_STAR2] = ACTIONS(1032), - [anon_sym_PLUS_PLUS2] = ACTIONS(1030), - [anon_sym_SLASH2] = ACTIONS(1030), - [anon_sym_mod2] = ACTIONS(1032), - [anon_sym_SLASH_SLASH2] = ACTIONS(1032), - [anon_sym_PLUS2] = ACTIONS(1030), - [anon_sym_bit_DASHshl2] = ACTIONS(1032), - [anon_sym_bit_DASHshr2] = ACTIONS(1032), - [anon_sym_bit_DASHand2] = ACTIONS(1032), - [anon_sym_bit_DASHxor2] = ACTIONS(1032), - [anon_sym_bit_DASHor2] = ACTIONS(1032), - [anon_sym_DOT_DOT2] = ACTIONS(1042), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), - [aux_sym_record_entry_token1] = ACTIONS(4801), - [anon_sym_err_GT] = ACTIONS(1030), - [anon_sym_out_GT] = ACTIONS(1030), - [anon_sym_e_GT] = ACTIONS(1030), - [anon_sym_o_GT] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT] = ACTIONS(1030), - [anon_sym_err_GT_GT] = ACTIONS(1032), - [anon_sym_out_GT_GT] = ACTIONS(1032), - [anon_sym_e_GT_GT] = ACTIONS(1032), - [anon_sym_o_GT_GT] = ACTIONS(1032), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1032), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1032), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1032), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1032), - [anon_sym_POUND] = ACTIONS(247), + [1505] = { + [sym_comment] = STATE(1505), + [sym__newline] = ACTIONS(2136), + [anon_sym_SEMI] = ACTIONS(2136), + [anon_sym_PIPE] = ACTIONS(2136), + [anon_sym_err_GT_PIPE] = ACTIONS(2136), + [anon_sym_out_GT_PIPE] = ACTIONS(2136), + [anon_sym_e_GT_PIPE] = ACTIONS(2136), + [anon_sym_o_GT_PIPE] = ACTIONS(2136), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), + [anon_sym_LBRACK] = ACTIONS(2136), + [anon_sym_LPAREN] = ACTIONS(2136), + [anon_sym_RPAREN] = ACTIONS(2136), + [anon_sym_DOLLAR] = ACTIONS(2130), + [anon_sym_DASH_DASH] = ACTIONS(2136), + [anon_sym_DASH2] = ACTIONS(2130), + [anon_sym_LBRACE] = ACTIONS(2136), + [anon_sym_RBRACE] = ACTIONS(2136), + [anon_sym_DOT_DOT] = ACTIONS(2130), + [anon_sym_DOT_DOT2] = ACTIONS(4819), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2130), + [anon_sym_DOT_DOT_LT] = ACTIONS(2130), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4821), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4821), + [anon_sym_null] = ACTIONS(2136), + [anon_sym_true] = ACTIONS(2136), + [anon_sym_false] = ACTIONS(2136), + [aux_sym__val_number_decimal_token1] = ACTIONS(2130), + [aux_sym__val_number_decimal_token2] = ACTIONS(2136), + [aux_sym__val_number_decimal_token3] = ACTIONS(2136), + [aux_sym__val_number_decimal_token4] = ACTIONS(2136), + [aux_sym__val_number_token1] = ACTIONS(2136), + [aux_sym__val_number_token2] = ACTIONS(2136), + [aux_sym__val_number_token3] = ACTIONS(2136), + [aux_sym__val_number_token4] = ACTIONS(2136), + [aux_sym__val_number_token5] = ACTIONS(2136), + [aux_sym__val_number_token6] = ACTIONS(2136), + [anon_sym_0b] = ACTIONS(2130), + [anon_sym_0o] = ACTIONS(2130), + [anon_sym_0x] = ACTIONS(2130), + [sym_val_date] = ACTIONS(2136), + [anon_sym_DQUOTE] = ACTIONS(2136), + [sym__str_single_quotes] = ACTIONS(2136), + [sym__str_back_ticks] = ACTIONS(2136), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2136), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2136), + [anon_sym_err_GT] = ACTIONS(2130), + [anon_sym_out_GT] = ACTIONS(2130), + [anon_sym_e_GT] = ACTIONS(2130), + [anon_sym_o_GT] = ACTIONS(2130), + [anon_sym_err_PLUSout_GT] = ACTIONS(2130), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2130), + [anon_sym_o_PLUSe_GT] = ACTIONS(2130), + [anon_sym_e_PLUSo_GT] = ACTIONS(2130), + [anon_sym_err_GT_GT] = ACTIONS(2136), + [anon_sym_out_GT_GT] = ACTIONS(2136), + [anon_sym_e_GT_GT] = ACTIONS(2136), + [anon_sym_o_GT_GT] = ACTIONS(2136), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), + [aux_sym_unquoted_token1] = ACTIONS(2130), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2136), }, - [1483] = { - [sym_cell_path] = STATE(1756), - [sym_path] = STATE(1703), - [sym_comment] = STATE(1483), - [aux_sym_cell_path_repeat1] = STATE(1505), - [sym__newline] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_PIPE] = ACTIONS(1994), - [anon_sym_err_GT_PIPE] = ACTIONS(1994), - [anon_sym_out_GT_PIPE] = ACTIONS(1994), - [anon_sym_e_GT_PIPE] = ACTIONS(1994), - [anon_sym_o_GT_PIPE] = ACTIONS(1994), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1994), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1994), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1994), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1994), - [anon_sym_LBRACK] = ACTIONS(1994), - [anon_sym_LPAREN] = ACTIONS(1994), - [anon_sym_RPAREN] = ACTIONS(1994), - [anon_sym_DOLLAR] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(1994), - [anon_sym_DASH2] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1994), - [anon_sym_RBRACE] = ACTIONS(1994), - [anon_sym_DOT_DOT] = ACTIONS(1992), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1994), - [anon_sym_DOT_DOT_LT] = ACTIONS(1994), - [anon_sym_null] = ACTIONS(1994), - [anon_sym_true] = ACTIONS(1994), - [anon_sym_false] = ACTIONS(1994), - [aux_sym__val_number_decimal_token1] = ACTIONS(1992), - [aux_sym__val_number_decimal_token2] = ACTIONS(1994), - [aux_sym__val_number_decimal_token3] = ACTIONS(1994), - [aux_sym__val_number_decimal_token4] = ACTIONS(1994), - [aux_sym__val_number_token1] = ACTIONS(1994), - [aux_sym__val_number_token2] = ACTIONS(1994), - [aux_sym__val_number_token3] = ACTIONS(1994), - [aux_sym__val_number_token4] = ACTIONS(1994), - [aux_sym__val_number_token5] = ACTIONS(1994), - [aux_sym__val_number_token6] = ACTIONS(1994), - [anon_sym_0b] = ACTIONS(1992), - [anon_sym_0o] = ACTIONS(1992), - [anon_sym_0x] = ACTIONS(1992), - [sym_val_date] = ACTIONS(1994), - [anon_sym_DQUOTE] = ACTIONS(1994), - [sym__str_single_quotes] = ACTIONS(1994), - [sym__str_back_ticks] = ACTIONS(1994), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1994), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1994), - [anon_sym_err_GT] = ACTIONS(1992), - [anon_sym_out_GT] = ACTIONS(1992), - [anon_sym_e_GT] = ACTIONS(1992), - [anon_sym_o_GT] = ACTIONS(1992), - [anon_sym_err_PLUSout_GT] = ACTIONS(1992), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1992), - [anon_sym_o_PLUSe_GT] = ACTIONS(1992), - [anon_sym_e_PLUSo_GT] = ACTIONS(1992), - [anon_sym_err_GT_GT] = ACTIONS(1994), - [anon_sym_out_GT_GT] = ACTIONS(1994), - [anon_sym_e_GT_GT] = ACTIONS(1994), - [anon_sym_o_GT_GT] = ACTIONS(1994), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1994), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1994), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1994), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1994), - [aux_sym_unquoted_token1] = ACTIONS(1992), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1994), + [1506] = { + [sym_comment] = STATE(1506), + [sym__newline] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(2152), + [anon_sym_err_GT_PIPE] = ACTIONS(2152), + [anon_sym_out_GT_PIPE] = ACTIONS(2152), + [anon_sym_e_GT_PIPE] = ACTIONS(2152), + [anon_sym_o_GT_PIPE] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2152), + [anon_sym_LPAREN] = ACTIONS(2152), + [anon_sym_RPAREN] = ACTIONS(2152), + [anon_sym_DOLLAR] = ACTIONS(2146), + [anon_sym_DASH_DASH] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2146), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2152), + [anon_sym_DOT_DOT] = ACTIONS(2146), + [anon_sym_DOT_DOT2] = ACTIONS(4823), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2146), + [anon_sym_DOT_DOT_LT] = ACTIONS(2146), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4825), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4825), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_true] = ACTIONS(2152), + [anon_sym_false] = ACTIONS(2152), + [aux_sym__val_number_decimal_token1] = ACTIONS(2146), + [aux_sym__val_number_decimal_token2] = ACTIONS(2152), + [aux_sym__val_number_decimal_token3] = ACTIONS(2152), + [aux_sym__val_number_decimal_token4] = ACTIONS(2152), + [aux_sym__val_number_token1] = ACTIONS(2152), + [aux_sym__val_number_token2] = ACTIONS(2152), + [aux_sym__val_number_token3] = ACTIONS(2152), + [aux_sym__val_number_token4] = ACTIONS(2152), + [aux_sym__val_number_token5] = ACTIONS(2152), + [aux_sym__val_number_token6] = ACTIONS(2152), + [anon_sym_0b] = ACTIONS(2146), + [anon_sym_0o] = ACTIONS(2146), + [anon_sym_0x] = ACTIONS(2146), + [sym_val_date] = ACTIONS(2152), + [anon_sym_DQUOTE] = ACTIONS(2152), + [sym__str_single_quotes] = ACTIONS(2152), + [sym__str_back_ticks] = ACTIONS(2152), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2152), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2152), + [anon_sym_err_GT] = ACTIONS(2146), + [anon_sym_out_GT] = ACTIONS(2146), + [anon_sym_e_GT] = ACTIONS(2146), + [anon_sym_o_GT] = ACTIONS(2146), + [anon_sym_err_PLUSout_GT] = ACTIONS(2146), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2146), + [anon_sym_o_PLUSe_GT] = ACTIONS(2146), + [anon_sym_e_PLUSo_GT] = ACTIONS(2146), + [anon_sym_err_GT_GT] = ACTIONS(2152), + [anon_sym_out_GT_GT] = ACTIONS(2152), + [anon_sym_e_GT_GT] = ACTIONS(2152), + [anon_sym_o_GT_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2152), + [aux_sym_unquoted_token1] = ACTIONS(2146), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2152), }, - [1484] = { - [sym_cell_path] = STATE(1740), - [sym_path] = STATE(1703), - [sym_comment] = STATE(1484), - [aux_sym_cell_path_repeat1] = STATE(1505), - [sym__newline] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2084), - [anon_sym_PIPE] = ACTIONS(2084), - [anon_sym_err_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_GT_PIPE] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2084), - [anon_sym_LBRACK] = ACTIONS(2084), - [anon_sym_LPAREN] = ACTIONS(2084), - [anon_sym_RPAREN] = ACTIONS(2084), - [anon_sym_DOLLAR] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_RBRACE] = ACTIONS(2084), - [anon_sym_DOT_DOT] = ACTIONS(2082), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), - [anon_sym_DOT_DOT_LT] = ACTIONS(2084), - [anon_sym_null] = ACTIONS(2084), - [anon_sym_true] = ACTIONS(2084), - [anon_sym_false] = ACTIONS(2084), - [aux_sym__val_number_decimal_token1] = ACTIONS(2082), - [aux_sym__val_number_decimal_token2] = ACTIONS(2084), - [aux_sym__val_number_decimal_token3] = ACTIONS(2084), - [aux_sym__val_number_decimal_token4] = ACTIONS(2084), - [aux_sym__val_number_token1] = ACTIONS(2084), - [aux_sym__val_number_token2] = ACTIONS(2084), - [aux_sym__val_number_token3] = ACTIONS(2084), - [aux_sym__val_number_token4] = ACTIONS(2084), - [aux_sym__val_number_token5] = ACTIONS(2084), - [aux_sym__val_number_token6] = ACTIONS(2084), - [anon_sym_0b] = ACTIONS(2082), - [anon_sym_0o] = ACTIONS(2082), - [anon_sym_0x] = ACTIONS(2082), - [sym_val_date] = ACTIONS(2084), - [anon_sym_DQUOTE] = ACTIONS(2084), - [sym__str_single_quotes] = ACTIONS(2084), - [sym__str_back_ticks] = ACTIONS(2084), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2084), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2084), - [anon_sym_err_GT] = ACTIONS(2082), - [anon_sym_out_GT] = ACTIONS(2082), - [anon_sym_e_GT] = ACTIONS(2082), - [anon_sym_o_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT] = ACTIONS(2082), - [anon_sym_err_GT_GT] = ACTIONS(2084), - [anon_sym_out_GT_GT] = ACTIONS(2084), - [anon_sym_e_GT_GT] = ACTIONS(2084), - [anon_sym_o_GT_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2084), - [aux_sym_unquoted_token1] = ACTIONS(2082), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2084), + [1507] = { + [sym_comment] = STATE(1507), + [ts_builtin_sym_end] = ACTIONS(1767), + [sym__newline] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_err_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_GT_PIPE] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_DOT_DOT] = ACTIONS(1765), + [anon_sym_DOT_DOT2] = ACTIONS(1765), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1765), + [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(4783), + [anon_sym_null] = ACTIONS(1767), + [anon_sym_true] = ACTIONS(1767), + [anon_sym_false] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1767), + [aux_sym__val_number_token5] = ACTIONS(1767), + [aux_sym__val_number_token6] = ACTIONS(1767), + [anon_sym_0b] = ACTIONS(1765), + [anon_sym_0o] = ACTIONS(1765), + [anon_sym_0x] = ACTIONS(1765), + [sym_val_date] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), + [anon_sym_err_GT] = ACTIONS(1765), + [anon_sym_out_GT] = ACTIONS(1765), + [anon_sym_e_GT] = ACTIONS(1765), + [anon_sym_o_GT] = ACTIONS(1765), + [anon_sym_err_PLUSout_GT] = ACTIONS(1765), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), + [anon_sym_o_PLUSe_GT] = ACTIONS(1765), + [anon_sym_e_PLUSo_GT] = ACTIONS(1765), + [anon_sym_err_GT_GT] = ACTIONS(1767), + [anon_sym_out_GT_GT] = ACTIONS(1767), + [anon_sym_e_GT_GT] = ACTIONS(1767), + [anon_sym_o_GT_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), + [aux_sym_unquoted_token1] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1767), }, - [1485] = { - [sym_cell_path] = STATE(1760), - [sym_path] = STATE(1703), - [sym_comment] = STATE(1485), - [aux_sym_cell_path_repeat1] = STATE(1505), - [sym__newline] = ACTIONS(2070), - [anon_sym_SEMI] = ACTIONS(2070), - [anon_sym_PIPE] = ACTIONS(2070), - [anon_sym_err_GT_PIPE] = ACTIONS(2070), - [anon_sym_out_GT_PIPE] = ACTIONS(2070), - [anon_sym_e_GT_PIPE] = ACTIONS(2070), - [anon_sym_o_GT_PIPE] = ACTIONS(2070), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2070), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2070), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2070), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2070), - [anon_sym_LBRACK] = ACTIONS(2070), - [anon_sym_LPAREN] = ACTIONS(2070), - [anon_sym_RPAREN] = ACTIONS(2070), - [anon_sym_DOLLAR] = ACTIONS(2068), - [anon_sym_DASH_DASH] = ACTIONS(2070), - [anon_sym_DASH2] = ACTIONS(2068), - [anon_sym_LBRACE] = ACTIONS(2070), - [anon_sym_RBRACE] = ACTIONS(2070), - [anon_sym_DOT_DOT] = ACTIONS(2068), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2070), - [anon_sym_DOT_DOT_LT] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2070), - [anon_sym_true] = ACTIONS(2070), - [anon_sym_false] = ACTIONS(2070), - [aux_sym__val_number_decimal_token1] = ACTIONS(2068), - [aux_sym__val_number_decimal_token2] = ACTIONS(2070), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), - [aux_sym__val_number_token1] = ACTIONS(2070), - [aux_sym__val_number_token2] = ACTIONS(2070), - [aux_sym__val_number_token3] = ACTIONS(2070), - [aux_sym__val_number_token4] = ACTIONS(2070), - [aux_sym__val_number_token5] = ACTIONS(2070), - [aux_sym__val_number_token6] = ACTIONS(2070), - [anon_sym_0b] = ACTIONS(2068), - [anon_sym_0o] = ACTIONS(2068), - [anon_sym_0x] = ACTIONS(2068), - [sym_val_date] = ACTIONS(2070), - [anon_sym_DQUOTE] = ACTIONS(2070), - [sym__str_single_quotes] = ACTIONS(2070), - [sym__str_back_ticks] = ACTIONS(2070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2070), - [anon_sym_err_GT] = ACTIONS(2068), - [anon_sym_out_GT] = ACTIONS(2068), - [anon_sym_e_GT] = ACTIONS(2068), - [anon_sym_o_GT] = ACTIONS(2068), - [anon_sym_err_PLUSout_GT] = ACTIONS(2068), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2068), - [anon_sym_o_PLUSe_GT] = ACTIONS(2068), - [anon_sym_e_PLUSo_GT] = ACTIONS(2068), - [anon_sym_err_GT_GT] = ACTIONS(2070), - [anon_sym_out_GT_GT] = ACTIONS(2070), - [anon_sym_e_GT_GT] = ACTIONS(2070), - [anon_sym_o_GT_GT] = ACTIONS(2070), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2070), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2070), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2070), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2070), - [aux_sym_unquoted_token1] = ACTIONS(2068), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2070), + [1508] = { + [sym_cell_path] = STATE(1925), + [sym_path] = STATE(1823), + [sym_comment] = STATE(1508), + [aux_sym_cell_path_repeat1] = STATE(1574), + [ts_builtin_sym_end] = ACTIONS(1889), + [sym__newline] = ACTIONS(1889), + [anon_sym_SEMI] = ACTIONS(1889), + [anon_sym_PIPE] = ACTIONS(1889), + [anon_sym_err_GT_PIPE] = ACTIONS(1889), + [anon_sym_out_GT_PIPE] = ACTIONS(1889), + [anon_sym_e_GT_PIPE] = ACTIONS(1889), + [anon_sym_o_GT_PIPE] = ACTIONS(1889), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1889), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1889), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1889), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1889), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1889), + [anon_sym_DOLLAR] = ACTIONS(1887), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_DASH2] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1889), + [anon_sym_DOT_DOT] = ACTIONS(1887), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1889), + [anon_sym_DOT_DOT_LT] = ACTIONS(1889), + [anon_sym_null] = ACTIONS(1889), + [anon_sym_true] = ACTIONS(1889), + [anon_sym_false] = ACTIONS(1889), + [aux_sym__val_number_decimal_token1] = ACTIONS(1887), + [aux_sym__val_number_decimal_token2] = ACTIONS(1889), + [aux_sym__val_number_decimal_token3] = ACTIONS(1889), + [aux_sym__val_number_decimal_token4] = ACTIONS(1889), + [aux_sym__val_number_token1] = ACTIONS(1889), + [aux_sym__val_number_token2] = ACTIONS(1889), + [aux_sym__val_number_token3] = ACTIONS(1889), + [aux_sym__val_number_token4] = ACTIONS(1889), + [aux_sym__val_number_token5] = ACTIONS(1889), + [aux_sym__val_number_token6] = ACTIONS(1889), + [anon_sym_0b] = ACTIONS(1887), + [anon_sym_0o] = ACTIONS(1887), + [anon_sym_0x] = ACTIONS(1887), + [sym_val_date] = ACTIONS(1889), + [anon_sym_DQUOTE] = ACTIONS(1889), + [sym__str_single_quotes] = ACTIONS(1889), + [sym__str_back_ticks] = ACTIONS(1889), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1889), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1889), + [anon_sym_err_GT] = ACTIONS(1887), + [anon_sym_out_GT] = ACTIONS(1887), + [anon_sym_e_GT] = ACTIONS(1887), + [anon_sym_o_GT] = ACTIONS(1887), + [anon_sym_err_PLUSout_GT] = ACTIONS(1887), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1887), + [anon_sym_o_PLUSe_GT] = ACTIONS(1887), + [anon_sym_e_PLUSo_GT] = ACTIONS(1887), + [anon_sym_err_GT_GT] = ACTIONS(1889), + [anon_sym_out_GT_GT] = ACTIONS(1889), + [anon_sym_e_GT_GT] = ACTIONS(1889), + [anon_sym_o_GT_GT] = ACTIONS(1889), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1889), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1889), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1889), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1889), + [aux_sym_unquoted_token1] = ACTIONS(1887), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1889), }, - [1486] = { - [sym_comment] = STATE(1486), - [ts_builtin_sym_end] = ACTIONS(1741), - [sym__newline] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_err_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_GT_PIPE] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_DOT_DOT2] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), - [anon_sym_DOT_DOT_LT] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), - [aux_sym__immediate_decimal_token1] = ACTIONS(4803), - [aux_sym__immediate_decimal_token2] = ACTIONS(4805), - [anon_sym_null] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1741), - [aux_sym__val_number_token5] = ACTIONS(1741), - [aux_sym__val_number_token6] = ACTIONS(1741), - [anon_sym_0b] = ACTIONS(1739), - [anon_sym_0o] = ACTIONS(1739), - [anon_sym_0x] = ACTIONS(1739), - [sym_val_date] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), - [anon_sym_err_GT] = ACTIONS(1739), - [anon_sym_out_GT] = ACTIONS(1739), - [anon_sym_e_GT] = ACTIONS(1739), - [anon_sym_o_GT] = ACTIONS(1739), - [anon_sym_err_PLUSout_GT] = ACTIONS(1739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), - [anon_sym_o_PLUSe_GT] = ACTIONS(1739), - [anon_sym_e_PLUSo_GT] = ACTIONS(1739), - [anon_sym_err_GT_GT] = ACTIONS(1741), - [anon_sym_out_GT_GT] = ACTIONS(1741), - [anon_sym_e_GT_GT] = ACTIONS(1741), - [anon_sym_o_GT_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), - [aux_sym_unquoted_token1] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), + [1509] = { + [sym_cell_path] = STATE(1927), + [sym_path] = STATE(1823), + [sym_comment] = STATE(1509), + [aux_sym_cell_path_repeat1] = STATE(1574), + [ts_builtin_sym_end] = ACTIONS(1893), + [sym__newline] = ACTIONS(1893), + [anon_sym_SEMI] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_err_GT_PIPE] = ACTIONS(1893), + [anon_sym_out_GT_PIPE] = ACTIONS(1893), + [anon_sym_e_GT_PIPE] = ACTIONS(1893), + [anon_sym_o_GT_PIPE] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1893), + [anon_sym_LBRACK] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1893), + [anon_sym_DOLLAR] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1893), + [anon_sym_DASH2] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_DOT_DOT] = ACTIONS(1891), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1893), + [anon_sym_DOT_DOT_LT] = ACTIONS(1893), + [anon_sym_null] = ACTIONS(1893), + [anon_sym_true] = ACTIONS(1893), + [anon_sym_false] = ACTIONS(1893), + [aux_sym__val_number_decimal_token1] = ACTIONS(1891), + [aux_sym__val_number_decimal_token2] = ACTIONS(1893), + [aux_sym__val_number_decimal_token3] = ACTIONS(1893), + [aux_sym__val_number_decimal_token4] = ACTIONS(1893), + [aux_sym__val_number_token1] = ACTIONS(1893), + [aux_sym__val_number_token2] = ACTIONS(1893), + [aux_sym__val_number_token3] = ACTIONS(1893), + [aux_sym__val_number_token4] = ACTIONS(1893), + [aux_sym__val_number_token5] = ACTIONS(1893), + [aux_sym__val_number_token6] = ACTIONS(1893), + [anon_sym_0b] = ACTIONS(1891), + [anon_sym_0o] = ACTIONS(1891), + [anon_sym_0x] = ACTIONS(1891), + [sym_val_date] = ACTIONS(1893), + [anon_sym_DQUOTE] = ACTIONS(1893), + [sym__str_single_quotes] = ACTIONS(1893), + [sym__str_back_ticks] = ACTIONS(1893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1893), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1893), + [anon_sym_err_GT] = ACTIONS(1891), + [anon_sym_out_GT] = ACTIONS(1891), + [anon_sym_e_GT] = ACTIONS(1891), + [anon_sym_o_GT] = ACTIONS(1891), + [anon_sym_err_PLUSout_GT] = ACTIONS(1891), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1891), + [anon_sym_o_PLUSe_GT] = ACTIONS(1891), + [anon_sym_e_PLUSo_GT] = ACTIONS(1891), + [anon_sym_err_GT_GT] = ACTIONS(1893), + [anon_sym_out_GT_GT] = ACTIONS(1893), + [anon_sym_e_GT_GT] = ACTIONS(1893), + [anon_sym_o_GT_GT] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1893), + [aux_sym_unquoted_token1] = ACTIONS(1891), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1893), }, - [1487] = { - [sym_comment] = STATE(1487), - [ts_builtin_sym_end] = ACTIONS(980), + [1510] = { + [sym_comment] = STATE(1510), [sym__newline] = ACTIONS(980), [anon_sym_SEMI] = ACTIONS(980), [anon_sym_PIPE] = ACTIONS(980), @@ -215184,42 +217088,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), - [anon_sym_LBRACK] = ACTIONS(980), - [anon_sym_LPAREN] = ACTIONS(980), - [anon_sym_DOLLAR] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_DASH2] = ACTIONS(978), + [anon_sym_RPAREN] = ACTIONS(980), + [anon_sym_GT2] = ACTIONS(978), + [anon_sym_DASH2] = ACTIONS(980), + [anon_sym_in2] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(978), - [anon_sym_QMARK2] = ACTIONS(4807), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_EQ_GT] = ACTIONS(980), + [anon_sym_STAR2] = ACTIONS(978), + [anon_sym_QMARK2] = ACTIONS(4827), + [anon_sym_and2] = ACTIONS(980), + [anon_sym_xor2] = ACTIONS(980), + [anon_sym_or2] = ACTIONS(980), + [anon_sym_not_DASHin2] = ACTIONS(980), + [anon_sym_starts_DASHwith2] = ACTIONS(980), + [anon_sym_ends_DASHwith2] = ACTIONS(980), + [anon_sym_EQ_EQ2] = ACTIONS(980), + [anon_sym_BANG_EQ2] = ACTIONS(980), + [anon_sym_LT2] = ACTIONS(978), + [anon_sym_LT_EQ2] = ACTIONS(980), + [anon_sym_GT_EQ2] = ACTIONS(980), + [anon_sym_EQ_TILDE2] = ACTIONS(980), + [anon_sym_BANG_TILDE2] = ACTIONS(980), + [anon_sym_STAR_STAR2] = ACTIONS(980), + [anon_sym_PLUS_PLUS2] = ACTIONS(980), + [anon_sym_SLASH2] = ACTIONS(978), + [anon_sym_mod2] = ACTIONS(980), + [anon_sym_SLASH_SLASH2] = ACTIONS(980), + [anon_sym_PLUS2] = ACTIONS(978), + [anon_sym_bit_DASHshl2] = ACTIONS(980), + [anon_sym_bit_DASHshr2] = ACTIONS(980), + [anon_sym_bit_DASHand2] = ACTIONS(980), + [anon_sym_bit_DASHxor2] = ACTIONS(980), + [anon_sym_bit_DASHor2] = ACTIONS(980), [anon_sym_DOT_DOT2] = ACTIONS(978), [anon_sym_DOT] = ACTIONS(978), - [anon_sym_DOT_DOT_EQ] = ACTIONS(978), - [anon_sym_DOT_DOT_LT] = ACTIONS(978), [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), [anon_sym_DOT_DOT_LT2] = ACTIONS(980), - [anon_sym_null] = ACTIONS(980), - [anon_sym_true] = ACTIONS(980), - [anon_sym_false] = ACTIONS(980), - [aux_sym__val_number_decimal_token1] = ACTIONS(978), - [aux_sym__val_number_decimal_token2] = ACTIONS(980), - [aux_sym__val_number_decimal_token3] = ACTIONS(980), - [aux_sym__val_number_decimal_token4] = ACTIONS(980), - [aux_sym__val_number_token1] = ACTIONS(980), - [aux_sym__val_number_token2] = ACTIONS(980), - [aux_sym__val_number_token3] = ACTIONS(980), - [aux_sym__val_number_token4] = ACTIONS(980), - [aux_sym__val_number_token5] = ACTIONS(980), - [aux_sym__val_number_token6] = ACTIONS(980), - [anon_sym_0b] = ACTIONS(978), - [anon_sym_0o] = ACTIONS(978), - [anon_sym_0x] = ACTIONS(978), - [sym_val_date] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym__str_single_quotes] = ACTIONS(980), - [sym__str_back_ticks] = ACTIONS(980), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(980), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(980), [anon_sym_err_GT] = ACTIONS(978), [anon_sym_out_GT] = ACTIONS(978), [anon_sym_e_GT] = ACTIONS(978), @@ -215236,62 +217142,609 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), - [aux_sym_unquoted_token1] = ACTIONS(978), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(980), }, - [1488] = { - [sym_comment] = STATE(1488), + [1511] = { + [sym_cell_path] = STATE(1928), + [sym_path] = STATE(1823), + [sym_comment] = STATE(1511), + [aux_sym_cell_path_repeat1] = STATE(1574), + [ts_builtin_sym_end] = ACTIONS(1897), + [sym__newline] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_err_GT_PIPE] = ACTIONS(1897), + [anon_sym_out_GT_PIPE] = ACTIONS(1897), + [anon_sym_e_GT_PIPE] = ACTIONS(1897), + [anon_sym_o_GT_PIPE] = ACTIONS(1897), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1897), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1897), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1897), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_DOLLAR] = ACTIONS(1895), + [anon_sym_DASH_DASH] = ACTIONS(1897), + [anon_sym_DASH2] = ACTIONS(1895), + [anon_sym_LBRACE] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1895), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1897), + [anon_sym_DOT_DOT_LT] = ACTIONS(1897), + [anon_sym_null] = ACTIONS(1897), + [anon_sym_true] = ACTIONS(1897), + [anon_sym_false] = ACTIONS(1897), + [aux_sym__val_number_decimal_token1] = ACTIONS(1895), + [aux_sym__val_number_decimal_token2] = ACTIONS(1897), + [aux_sym__val_number_decimal_token3] = ACTIONS(1897), + [aux_sym__val_number_decimal_token4] = ACTIONS(1897), + [aux_sym__val_number_token1] = ACTIONS(1897), + [aux_sym__val_number_token2] = ACTIONS(1897), + [aux_sym__val_number_token3] = ACTIONS(1897), + [aux_sym__val_number_token4] = ACTIONS(1897), + [aux_sym__val_number_token5] = ACTIONS(1897), + [aux_sym__val_number_token6] = ACTIONS(1897), + [anon_sym_0b] = ACTIONS(1895), + [anon_sym_0o] = ACTIONS(1895), + [anon_sym_0x] = ACTIONS(1895), + [sym_val_date] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1897), + [sym__str_single_quotes] = ACTIONS(1897), + [sym__str_back_ticks] = ACTIONS(1897), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1897), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1897), + [anon_sym_err_GT] = ACTIONS(1895), + [anon_sym_out_GT] = ACTIONS(1895), + [anon_sym_e_GT] = ACTIONS(1895), + [anon_sym_o_GT] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT] = ACTIONS(1895), + [anon_sym_err_GT_GT] = ACTIONS(1897), + [anon_sym_out_GT_GT] = ACTIONS(1897), + [anon_sym_e_GT_GT] = ACTIONS(1897), + [anon_sym_o_GT_GT] = ACTIONS(1897), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1897), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1897), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1897), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1897), + [aux_sym_unquoted_token1] = ACTIONS(1895), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1897), + }, + [1512] = { + [sym_comment] = STATE(1512), + [ts_builtin_sym_end] = ACTIONS(1575), + [sym__newline] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_err_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_GT_PIPE] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1575), + [anon_sym_in2] = ACTIONS(1575), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1575), + [anon_sym_xor2] = ACTIONS(1575), + [anon_sym_or2] = ACTIONS(1575), + [anon_sym_not_DASHin2] = ACTIONS(1575), + [anon_sym_starts_DASHwith2] = ACTIONS(1575), + [anon_sym_ends_DASHwith2] = ACTIONS(1575), + [anon_sym_EQ_EQ2] = ACTIONS(1575), + [anon_sym_BANG_EQ2] = ACTIONS(1575), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1575), + [anon_sym_GT_EQ2] = ACTIONS(1575), + [anon_sym_EQ_TILDE2] = ACTIONS(1575), + [anon_sym_BANG_TILDE2] = ACTIONS(1575), + [anon_sym_LPAREN2] = ACTIONS(1575), + [anon_sym_STAR_STAR2] = ACTIONS(1575), + [anon_sym_PLUS_PLUS2] = ACTIONS(1575), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1575), + [anon_sym_SLASH_SLASH2] = ACTIONS(1575), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1575), + [anon_sym_bit_DASHshr2] = ACTIONS(1575), + [anon_sym_bit_DASHand2] = ACTIONS(1575), + [anon_sym_bit_DASHxor2] = ACTIONS(1575), + [anon_sym_bit_DASHor2] = ACTIONS(1575), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT] = ACTIONS(4829), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(4831), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1575), + [anon_sym_out_GT_GT] = ACTIONS(1575), + [anon_sym_e_GT_GT] = ACTIONS(1575), + [anon_sym_o_GT_GT] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), + [aux_sym_unquoted_token2] = ACTIONS(1573), + [anon_sym_POUND] = ACTIONS(247), + }, + [1513] = { + [sym_cell_path] = STATE(1929), + [sym_path] = STATE(1823), + [sym_comment] = STATE(1513), + [aux_sym_cell_path_repeat1] = STATE(1574), + [ts_builtin_sym_end] = ACTIONS(1913), + [sym__newline] = ACTIONS(1913), + [anon_sym_SEMI] = ACTIONS(1913), + [anon_sym_PIPE] = ACTIONS(1913), + [anon_sym_err_GT_PIPE] = ACTIONS(1913), + [anon_sym_out_GT_PIPE] = ACTIONS(1913), + [anon_sym_e_GT_PIPE] = ACTIONS(1913), + [anon_sym_o_GT_PIPE] = ACTIONS(1913), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1913), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1913), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1913), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1913), + [anon_sym_LBRACK] = ACTIONS(1913), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_DASH_DASH] = ACTIONS(1913), + [anon_sym_DASH2] = ACTIONS(1911), + [anon_sym_LBRACE] = ACTIONS(1913), + [anon_sym_DOT_DOT] = ACTIONS(1911), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1913), + [anon_sym_DOT_DOT_LT] = ACTIONS(1913), + [anon_sym_null] = ACTIONS(1913), + [anon_sym_true] = ACTIONS(1913), + [anon_sym_false] = ACTIONS(1913), + [aux_sym__val_number_decimal_token1] = ACTIONS(1911), + [aux_sym__val_number_decimal_token2] = ACTIONS(1913), + [aux_sym__val_number_decimal_token3] = ACTIONS(1913), + [aux_sym__val_number_decimal_token4] = ACTIONS(1913), + [aux_sym__val_number_token1] = ACTIONS(1913), + [aux_sym__val_number_token2] = ACTIONS(1913), + [aux_sym__val_number_token3] = ACTIONS(1913), + [aux_sym__val_number_token4] = ACTIONS(1913), + [aux_sym__val_number_token5] = ACTIONS(1913), + [aux_sym__val_number_token6] = ACTIONS(1913), + [anon_sym_0b] = ACTIONS(1911), + [anon_sym_0o] = ACTIONS(1911), + [anon_sym_0x] = ACTIONS(1911), + [sym_val_date] = ACTIONS(1913), + [anon_sym_DQUOTE] = ACTIONS(1913), + [sym__str_single_quotes] = ACTIONS(1913), + [sym__str_back_ticks] = ACTIONS(1913), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1913), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1913), + [anon_sym_err_GT] = ACTIONS(1911), + [anon_sym_out_GT] = ACTIONS(1911), + [anon_sym_e_GT] = ACTIONS(1911), + [anon_sym_o_GT] = ACTIONS(1911), + [anon_sym_err_PLUSout_GT] = ACTIONS(1911), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1911), + [anon_sym_o_PLUSe_GT] = ACTIONS(1911), + [anon_sym_e_PLUSo_GT] = ACTIONS(1911), + [anon_sym_err_GT_GT] = ACTIONS(1913), + [anon_sym_out_GT_GT] = ACTIONS(1913), + [anon_sym_e_GT_GT] = ACTIONS(1913), + [anon_sym_o_GT_GT] = ACTIONS(1913), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1913), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1913), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1913), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1913), + [aux_sym_unquoted_token1] = ACTIONS(1911), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1913), + }, + [1514] = { + [sym_cell_path] = STATE(1930), + [sym_path] = STATE(1823), + [sym_comment] = STATE(1514), + [aux_sym_cell_path_repeat1] = STATE(1574), + [ts_builtin_sym_end] = ACTIONS(1917), + [sym__newline] = ACTIONS(1917), + [anon_sym_SEMI] = ACTIONS(1917), + [anon_sym_PIPE] = ACTIONS(1917), + [anon_sym_err_GT_PIPE] = ACTIONS(1917), + [anon_sym_out_GT_PIPE] = ACTIONS(1917), + [anon_sym_e_GT_PIPE] = ACTIONS(1917), + [anon_sym_o_GT_PIPE] = ACTIONS(1917), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1917), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1917), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1917), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1917), + [anon_sym_LBRACK] = ACTIONS(1917), + [anon_sym_LPAREN] = ACTIONS(1917), + [anon_sym_DOLLAR] = ACTIONS(1915), + [anon_sym_DASH_DASH] = ACTIONS(1917), + [anon_sym_DASH2] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1917), + [anon_sym_DOT_DOT] = ACTIONS(1915), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1917), + [anon_sym_DOT_DOT_LT] = ACTIONS(1917), + [anon_sym_null] = ACTIONS(1917), + [anon_sym_true] = ACTIONS(1917), + [anon_sym_false] = ACTIONS(1917), + [aux_sym__val_number_decimal_token1] = ACTIONS(1915), + [aux_sym__val_number_decimal_token2] = ACTIONS(1917), + [aux_sym__val_number_decimal_token3] = ACTIONS(1917), + [aux_sym__val_number_decimal_token4] = ACTIONS(1917), + [aux_sym__val_number_token1] = ACTIONS(1917), + [aux_sym__val_number_token2] = ACTIONS(1917), + [aux_sym__val_number_token3] = ACTIONS(1917), + [aux_sym__val_number_token4] = ACTIONS(1917), + [aux_sym__val_number_token5] = ACTIONS(1917), + [aux_sym__val_number_token6] = ACTIONS(1917), + [anon_sym_0b] = ACTIONS(1915), + [anon_sym_0o] = ACTIONS(1915), + [anon_sym_0x] = ACTIONS(1915), + [sym_val_date] = ACTIONS(1917), + [anon_sym_DQUOTE] = ACTIONS(1917), + [sym__str_single_quotes] = ACTIONS(1917), + [sym__str_back_ticks] = ACTIONS(1917), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1917), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1917), + [anon_sym_err_GT] = ACTIONS(1915), + [anon_sym_out_GT] = ACTIONS(1915), + [anon_sym_e_GT] = ACTIONS(1915), + [anon_sym_o_GT] = ACTIONS(1915), + [anon_sym_err_PLUSout_GT] = ACTIONS(1915), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1915), + [anon_sym_o_PLUSe_GT] = ACTIONS(1915), + [anon_sym_e_PLUSo_GT] = ACTIONS(1915), + [anon_sym_err_GT_GT] = ACTIONS(1917), + [anon_sym_out_GT_GT] = ACTIONS(1917), + [anon_sym_e_GT_GT] = ACTIONS(1917), + [anon_sym_o_GT_GT] = ACTIONS(1917), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1917), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1917), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1917), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1917), + [aux_sym_unquoted_token1] = ACTIONS(1915), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1917), + }, + [1515] = { + [sym_comment] = STATE(1515), + [sym__newline] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1028), + [anon_sym_PIPE] = ACTIONS(1028), + [anon_sym_err_GT_PIPE] = ACTIONS(1028), + [anon_sym_out_GT_PIPE] = ACTIONS(1028), + [anon_sym_e_GT_PIPE] = ACTIONS(1028), + [anon_sym_o_GT_PIPE] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), + [anon_sym_LBRACK] = ACTIONS(1028), + [anon_sym_LPAREN] = ACTIONS(1028), + [anon_sym_RPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [anon_sym_DASH2] = ACTIONS(1026), + [anon_sym_LBRACE] = ACTIONS(1028), + [anon_sym_RBRACE] = ACTIONS(1028), + [anon_sym_DOT_DOT] = ACTIONS(1026), + [anon_sym_DOT_DOT2] = ACTIONS(4833), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT] = ACTIONS(1026), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4835), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4835), + [anon_sym_null] = ACTIONS(1028), + [anon_sym_true] = ACTIONS(1028), + [anon_sym_false] = ACTIONS(1028), + [aux_sym__val_number_decimal_token1] = ACTIONS(1026), + [aux_sym__val_number_decimal_token2] = ACTIONS(1028), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), + [aux_sym__val_number_token1] = ACTIONS(1028), + [aux_sym__val_number_token2] = ACTIONS(1028), + [aux_sym__val_number_token3] = ACTIONS(1028), + [aux_sym__val_number_token4] = ACTIONS(1028), + [aux_sym__val_number_token5] = ACTIONS(1028), + [aux_sym__val_number_token6] = ACTIONS(1028), + [anon_sym_0b] = ACTIONS(1026), + [anon_sym_0o] = ACTIONS(1026), + [anon_sym_0x] = ACTIONS(1026), + [sym_val_date] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(1028), + [sym__str_single_quotes] = ACTIONS(1028), + [sym__str_back_ticks] = ACTIONS(1028), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1028), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1028), + [anon_sym_err_GT] = ACTIONS(1026), + [anon_sym_out_GT] = ACTIONS(1026), + [anon_sym_e_GT] = ACTIONS(1026), + [anon_sym_o_GT] = ACTIONS(1026), + [anon_sym_err_PLUSout_GT] = ACTIONS(1026), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), + [anon_sym_o_PLUSe_GT] = ACTIONS(1026), + [anon_sym_e_PLUSo_GT] = ACTIONS(1026), + [anon_sym_err_GT_GT] = ACTIONS(1028), + [anon_sym_out_GT_GT] = ACTIONS(1028), + [anon_sym_e_GT_GT] = ACTIONS(1028), + [anon_sym_o_GT_GT] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1028), + [aux_sym_unquoted_token1] = ACTIONS(1026), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1028), + }, + [1516] = { + [sym_comment] = STATE(1516), + [sym__newline] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_err_GT_PIPE] = ACTIONS(1046), + [anon_sym_out_GT_PIPE] = ACTIONS(1046), + [anon_sym_e_GT_PIPE] = ACTIONS(1046), + [anon_sym_o_GT_PIPE] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1046), + [anon_sym_LBRACK] = ACTIONS(1046), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_RPAREN] = ACTIONS(1046), + [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_DASH2] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_DOT_DOT] = ACTIONS(1044), + [anon_sym_DOT_DOT2] = ACTIONS(1044), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1044), + [anon_sym_DOT_DOT_LT] = ACTIONS(1044), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), + [anon_sym_null] = ACTIONS(1046), + [anon_sym_true] = ACTIONS(1046), + [anon_sym_false] = ACTIONS(1046), + [aux_sym__val_number_decimal_token1] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1046), + [aux_sym__val_number_decimal_token3] = ACTIONS(1046), + [aux_sym__val_number_decimal_token4] = ACTIONS(1046), + [aux_sym__val_number_token1] = ACTIONS(1046), + [aux_sym__val_number_token2] = ACTIONS(1046), + [aux_sym__val_number_token3] = ACTIONS(1046), + [aux_sym__val_number_token4] = ACTIONS(1046), + [aux_sym__val_number_token5] = ACTIONS(1046), + [aux_sym__val_number_token6] = ACTIONS(1046), + [anon_sym_0b] = ACTIONS(1044), + [anon_sym_0o] = ACTIONS(1044), + [anon_sym_0x] = ACTIONS(1044), + [sym_val_date] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(1046), + [sym__str_single_quotes] = ACTIONS(1046), + [sym__str_back_ticks] = ACTIONS(1046), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1046), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1046), + [anon_sym_err_GT] = ACTIONS(1044), + [anon_sym_out_GT] = ACTIONS(1044), + [anon_sym_e_GT] = ACTIONS(1044), + [anon_sym_o_GT] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT] = ACTIONS(1044), + [anon_sym_err_GT_GT] = ACTIONS(1046), + [anon_sym_out_GT_GT] = ACTIONS(1046), + [anon_sym_e_GT_GT] = ACTIONS(1046), + [anon_sym_o_GT_GT] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1046), + [aux_sym_unquoted_token1] = ACTIONS(1044), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1046), + }, + [1517] = { + [sym_comment] = STATE(1517), + [sym__newline] = ACTIONS(2163), + [anon_sym_SEMI] = ACTIONS(2163), + [anon_sym_PIPE] = ACTIONS(2163), + [anon_sym_err_GT_PIPE] = ACTIONS(2163), + [anon_sym_out_GT_PIPE] = ACTIONS(2163), + [anon_sym_e_GT_PIPE] = ACTIONS(2163), + [anon_sym_o_GT_PIPE] = ACTIONS(2163), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2163), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2163), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2163), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2163), + [anon_sym_LBRACK] = ACTIONS(2163), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_RPAREN] = ACTIONS(2163), + [anon_sym_DOLLAR] = ACTIONS(2157), + [anon_sym_DASH_DASH] = ACTIONS(2163), + [anon_sym_DASH2] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_RBRACE] = ACTIONS(2163), + [anon_sym_DOT_DOT] = ACTIONS(2157), + [anon_sym_DOT_DOT2] = ACTIONS(4837), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2157), + [anon_sym_DOT_DOT_LT] = ACTIONS(2157), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4839), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4839), + [anon_sym_null] = ACTIONS(2163), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [aux_sym__val_number_decimal_token1] = ACTIONS(2157), + [aux_sym__val_number_decimal_token2] = ACTIONS(2163), + [aux_sym__val_number_decimal_token3] = ACTIONS(2163), + [aux_sym__val_number_decimal_token4] = ACTIONS(2163), + [aux_sym__val_number_token1] = ACTIONS(2163), + [aux_sym__val_number_token2] = ACTIONS(2163), + [aux_sym__val_number_token3] = ACTIONS(2163), + [aux_sym__val_number_token4] = ACTIONS(2163), + [aux_sym__val_number_token5] = ACTIONS(2163), + [aux_sym__val_number_token6] = ACTIONS(2163), + [anon_sym_0b] = ACTIONS(2157), + [anon_sym_0o] = ACTIONS(2157), + [anon_sym_0x] = ACTIONS(2157), + [sym_val_date] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym__str_single_quotes] = ACTIONS(2163), + [sym__str_back_ticks] = ACTIONS(2163), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2163), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2163), + [anon_sym_err_GT] = ACTIONS(2157), + [anon_sym_out_GT] = ACTIONS(2157), + [anon_sym_e_GT] = ACTIONS(2157), + [anon_sym_o_GT] = ACTIONS(2157), + [anon_sym_err_PLUSout_GT] = ACTIONS(2157), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2157), + [anon_sym_o_PLUSe_GT] = ACTIONS(2157), + [anon_sym_e_PLUSo_GT] = ACTIONS(2157), + [anon_sym_err_GT_GT] = ACTIONS(2163), + [anon_sym_out_GT_GT] = ACTIONS(2163), + [anon_sym_e_GT_GT] = ACTIONS(2163), + [anon_sym_o_GT_GT] = ACTIONS(2163), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2163), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2163), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2163), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2163), + [aux_sym_unquoted_token1] = ACTIONS(2157), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2163), + }, + [1518] = { + [sym_comment] = STATE(1518), + [ts_builtin_sym_end] = ACTIONS(1587), + [sym__newline] = ACTIONS(1587), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_err_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_GT_PIPE] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), + [anon_sym_GT2] = ACTIONS(1585), + [anon_sym_DASH2] = ACTIONS(1587), + [anon_sym_in2] = ACTIONS(1587), + [anon_sym_STAR2] = ACTIONS(1585), + [anon_sym_and2] = ACTIONS(1587), + [anon_sym_xor2] = ACTIONS(1587), + [anon_sym_or2] = ACTIONS(1587), + [anon_sym_not_DASHin2] = ACTIONS(1587), + [anon_sym_starts_DASHwith2] = ACTIONS(1587), + [anon_sym_ends_DASHwith2] = ACTIONS(1587), + [anon_sym_EQ_EQ2] = ACTIONS(1587), + [anon_sym_BANG_EQ2] = ACTIONS(1587), + [anon_sym_LT2] = ACTIONS(1585), + [anon_sym_LT_EQ2] = ACTIONS(1587), + [anon_sym_GT_EQ2] = ACTIONS(1587), + [anon_sym_EQ_TILDE2] = ACTIONS(1587), + [anon_sym_BANG_TILDE2] = ACTIONS(1587), + [anon_sym_LPAREN2] = ACTIONS(1587), + [anon_sym_STAR_STAR2] = ACTIONS(1587), + [anon_sym_PLUS_PLUS2] = ACTIONS(1587), + [anon_sym_SLASH2] = ACTIONS(1585), + [anon_sym_mod2] = ACTIONS(1587), + [anon_sym_SLASH_SLASH2] = ACTIONS(1587), + [anon_sym_PLUS2] = ACTIONS(1585), + [anon_sym_bit_DASHshl2] = ACTIONS(1587), + [anon_sym_bit_DASHshr2] = ACTIONS(1587), + [anon_sym_bit_DASHand2] = ACTIONS(1587), + [anon_sym_bit_DASHxor2] = ACTIONS(1587), + [anon_sym_bit_DASHor2] = ACTIONS(1587), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [aux_sym__immediate_decimal_token1] = ACTIONS(4841), + [aux_sym__immediate_decimal_token2] = ACTIONS(4843), + [sym_filesize_unit] = ACTIONS(1585), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1587), + [anon_sym_out_GT_GT] = ACTIONS(1587), + [anon_sym_e_GT_GT] = ACTIONS(1587), + [anon_sym_o_GT_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [aux_sym_unquoted_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(247), + }, + [1519] = { + [sym_comment] = STATE(1519), [ts_builtin_sym_end] = ACTIONS(1008), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_PLUS_EQ] = ACTIONS(1008), - [anon_sym_DASH_EQ] = ACTIONS(1008), - [anon_sym_STAR_EQ] = ACTIONS(1008), - [anon_sym_SLASH_EQ] = ACTIONS(1008), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1008), - [sym__newline] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_GT2] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(1006), - [anon_sym_in2] = ACTIONS(1008), - [anon_sym_STAR2] = ACTIONS(1006), - [anon_sym_and2] = ACTIONS(1008), - [anon_sym_xor2] = ACTIONS(1008), - [anon_sym_or2] = ACTIONS(1008), - [anon_sym_not_DASHin2] = ACTIONS(1008), - [anon_sym_starts_DASHwith2] = ACTIONS(1008), - [anon_sym_ends_DASHwith2] = ACTIONS(1008), - [anon_sym_EQ_EQ2] = ACTIONS(1008), - [anon_sym_BANG_EQ2] = ACTIONS(1008), - [anon_sym_LT2] = ACTIONS(1006), - [anon_sym_LT_EQ2] = ACTIONS(1008), - [anon_sym_GT_EQ2] = ACTIONS(1008), - [anon_sym_EQ_TILDE2] = ACTIONS(1008), - [anon_sym_BANG_TILDE2] = ACTIONS(1008), - [anon_sym_STAR_STAR2] = ACTIONS(1008), - [anon_sym_PLUS_PLUS2] = ACTIONS(1006), - [anon_sym_SLASH2] = ACTIONS(1006), - [anon_sym_mod2] = ACTIONS(1008), - [anon_sym_SLASH_SLASH2] = ACTIONS(1008), - [anon_sym_PLUS2] = ACTIONS(1006), - [anon_sym_bit_DASHshl2] = ACTIONS(1008), - [anon_sym_bit_DASHshr2] = ACTIONS(1008), - [anon_sym_bit_DASHand2] = ACTIONS(1008), - [anon_sym_bit_DASHxor2] = ACTIONS(1008), - [anon_sym_bit_DASHor2] = ACTIONS(1008), + [sym__newline] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1008), + [anon_sym_DASH2] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_DOT_DOT] = ACTIONS(1006), [anon_sym_DOT_DOT2] = ACTIONS(1006), [anon_sym_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), + [anon_sym_DOT_DOT_LT] = ACTIONS(1006), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), + [anon_sym_null] = ACTIONS(1008), + [anon_sym_true] = ACTIONS(1008), + [anon_sym_false] = ACTIONS(1008), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1008), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_decimal_token4] = ACTIONS(1008), + [aux_sym__val_number_token1] = ACTIONS(1008), + [aux_sym__val_number_token2] = ACTIONS(1008), + [aux_sym__val_number_token3] = ACTIONS(1008), + [aux_sym__val_number_token4] = ACTIONS(1008), + [aux_sym__val_number_token5] = ACTIONS(1008), + [aux_sym__val_number_token6] = ACTIONS(1008), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1008), + [anon_sym_DQUOTE] = ACTIONS(1008), + [sym__str_single_quotes] = ACTIONS(1008), + [sym__str_back_ticks] = ACTIONS(1008), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1008), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1008), [anon_sym_err_GT] = ACTIONS(1006), [anon_sym_out_GT] = ACTIONS(1006), [anon_sym_e_GT] = ACTIONS(1006), @@ -215308,570 +217761,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [aux_sym_unquoted_token1] = ACTIONS(1006), [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1008), }, - [1489] = { - [sym_cell_path] = STATE(1757), - [sym_path] = STATE(1703), - [sym_comment] = STATE(1489), - [aux_sym_cell_path_repeat1] = STATE(1505), - [sym__newline] = ACTIONS(1998), - [anon_sym_SEMI] = ACTIONS(1998), - [anon_sym_PIPE] = ACTIONS(1998), - [anon_sym_err_GT_PIPE] = ACTIONS(1998), - [anon_sym_out_GT_PIPE] = ACTIONS(1998), - [anon_sym_e_GT_PIPE] = ACTIONS(1998), - [anon_sym_o_GT_PIPE] = ACTIONS(1998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_LPAREN] = ACTIONS(1998), - [anon_sym_RPAREN] = ACTIONS(1998), - [anon_sym_DOLLAR] = ACTIONS(1996), - [anon_sym_DASH_DASH] = ACTIONS(1998), - [anon_sym_DASH2] = ACTIONS(1996), - [anon_sym_LBRACE] = ACTIONS(1998), - [anon_sym_RBRACE] = ACTIONS(1998), - [anon_sym_DOT_DOT] = ACTIONS(1996), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1998), - [anon_sym_DOT_DOT_LT] = ACTIONS(1998), - [anon_sym_null] = ACTIONS(1998), - [anon_sym_true] = ACTIONS(1998), - [anon_sym_false] = ACTIONS(1998), - [aux_sym__val_number_decimal_token1] = ACTIONS(1996), - [aux_sym__val_number_decimal_token2] = ACTIONS(1998), - [aux_sym__val_number_decimal_token3] = ACTIONS(1998), - [aux_sym__val_number_decimal_token4] = ACTIONS(1998), - [aux_sym__val_number_token1] = ACTIONS(1998), - [aux_sym__val_number_token2] = ACTIONS(1998), - [aux_sym__val_number_token3] = ACTIONS(1998), - [aux_sym__val_number_token4] = ACTIONS(1998), - [aux_sym__val_number_token5] = ACTIONS(1998), - [aux_sym__val_number_token6] = ACTIONS(1998), - [anon_sym_0b] = ACTIONS(1996), - [anon_sym_0o] = ACTIONS(1996), - [anon_sym_0x] = ACTIONS(1996), - [sym_val_date] = ACTIONS(1998), - [anon_sym_DQUOTE] = ACTIONS(1998), - [sym__str_single_quotes] = ACTIONS(1998), - [sym__str_back_ticks] = ACTIONS(1998), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1998), - [anon_sym_err_GT] = ACTIONS(1996), - [anon_sym_out_GT] = ACTIONS(1996), - [anon_sym_e_GT] = ACTIONS(1996), - [anon_sym_o_GT] = ACTIONS(1996), - [anon_sym_err_PLUSout_GT] = ACTIONS(1996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1996), - [anon_sym_o_PLUSe_GT] = ACTIONS(1996), - [anon_sym_e_PLUSo_GT] = ACTIONS(1996), - [anon_sym_err_GT_GT] = ACTIONS(1998), - [anon_sym_out_GT_GT] = ACTIONS(1998), - [anon_sym_e_GT_GT] = ACTIONS(1998), - [anon_sym_o_GT_GT] = ACTIONS(1998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1998), - [aux_sym_unquoted_token1] = ACTIONS(1996), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1998), - }, - [1490] = { - [sym_comment] = STATE(1490), - [ts_builtin_sym_end] = ACTIONS(986), - [sym__newline] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_err_GT_PIPE] = ACTIONS(986), - [anon_sym_out_GT_PIPE] = ACTIONS(986), - [anon_sym_e_GT_PIPE] = ACTIONS(986), - [anon_sym_o_GT_PIPE] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_DOT_DOT] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(4809), - [anon_sym_DOT_DOT2] = ACTIONS(984), - [anon_sym_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ] = ACTIONS(984), - [anon_sym_DOT_DOT_LT] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), - [anon_sym_DOT_DOT_LT2] = ACTIONS(986), - [anon_sym_null] = ACTIONS(986), - [anon_sym_true] = ACTIONS(986), - [anon_sym_false] = ACTIONS(986), - [aux_sym__val_number_decimal_token1] = ACTIONS(984), - [aux_sym__val_number_decimal_token2] = ACTIONS(986), - [aux_sym__val_number_decimal_token3] = ACTIONS(986), - [aux_sym__val_number_decimal_token4] = ACTIONS(986), - [aux_sym__val_number_token1] = ACTIONS(986), - [aux_sym__val_number_token2] = ACTIONS(986), - [aux_sym__val_number_token3] = ACTIONS(986), - [aux_sym__val_number_token4] = ACTIONS(986), - [aux_sym__val_number_token5] = ACTIONS(986), - [aux_sym__val_number_token6] = ACTIONS(986), - [anon_sym_0b] = ACTIONS(984), - [anon_sym_0o] = ACTIONS(984), - [anon_sym_0x] = ACTIONS(984), - [sym_val_date] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), - [anon_sym_err_GT] = ACTIONS(984), - [anon_sym_out_GT] = ACTIONS(984), - [anon_sym_e_GT] = ACTIONS(984), - [anon_sym_o_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT] = ACTIONS(984), - [anon_sym_err_GT_GT] = ACTIONS(986), - [anon_sym_out_GT_GT] = ACTIONS(986), - [anon_sym_e_GT_GT] = ACTIONS(986), - [anon_sym_o_GT_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), - [aux_sym_unquoted_token1] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(986), - }, - [1491] = { - [sym_cell_path] = STATE(1767), - [sym_path] = STATE(1703), - [sym_comment] = STATE(1491), - [aux_sym_cell_path_repeat1] = STATE(1505), - [sym__newline] = ACTIONS(2096), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_err_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_GT_PIPE] = ACTIONS(2096), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2096), - [anon_sym_LPAREN] = ACTIONS(2096), - [anon_sym_RPAREN] = ACTIONS(2096), - [anon_sym_DOLLAR] = ACTIONS(2094), - [anon_sym_DASH_DASH] = ACTIONS(2096), - [anon_sym_DASH2] = ACTIONS(2094), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_RBRACE] = ACTIONS(2096), - [anon_sym_DOT_DOT] = ACTIONS(2094), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2096), - [anon_sym_DOT_DOT_LT] = ACTIONS(2096), - [anon_sym_null] = ACTIONS(2096), - [anon_sym_true] = ACTIONS(2096), - [anon_sym_false] = ACTIONS(2096), - [aux_sym__val_number_decimal_token1] = ACTIONS(2094), - [aux_sym__val_number_decimal_token2] = ACTIONS(2096), - [aux_sym__val_number_decimal_token3] = ACTIONS(2096), - [aux_sym__val_number_decimal_token4] = ACTIONS(2096), - [aux_sym__val_number_token1] = ACTIONS(2096), - [aux_sym__val_number_token2] = ACTIONS(2096), - [aux_sym__val_number_token3] = ACTIONS(2096), - [aux_sym__val_number_token4] = ACTIONS(2096), - [aux_sym__val_number_token5] = ACTIONS(2096), - [aux_sym__val_number_token6] = ACTIONS(2096), - [anon_sym_0b] = ACTIONS(2094), - [anon_sym_0o] = ACTIONS(2094), - [anon_sym_0x] = ACTIONS(2094), - [sym_val_date] = ACTIONS(2096), - [anon_sym_DQUOTE] = ACTIONS(2096), - [sym__str_single_quotes] = ACTIONS(2096), - [sym__str_back_ticks] = ACTIONS(2096), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2096), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2096), - [anon_sym_err_GT] = ACTIONS(2094), - [anon_sym_out_GT] = ACTIONS(2094), - [anon_sym_e_GT] = ACTIONS(2094), - [anon_sym_o_GT] = ACTIONS(2094), - [anon_sym_err_PLUSout_GT] = ACTIONS(2094), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2094), - [anon_sym_o_PLUSe_GT] = ACTIONS(2094), - [anon_sym_e_PLUSo_GT] = ACTIONS(2094), - [anon_sym_err_GT_GT] = ACTIONS(2096), - [anon_sym_out_GT_GT] = ACTIONS(2096), - [anon_sym_e_GT_GT] = ACTIONS(2096), - [anon_sym_o_GT_GT] = ACTIONS(2096), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2096), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2096), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2096), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2096), - [aux_sym_unquoted_token1] = ACTIONS(2094), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2096), - }, - [1492] = { - [sym_cell_path] = STATE(1752), - [sym_path] = STATE(1703), - [sym_comment] = STATE(1492), - [aux_sym_cell_path_repeat1] = STATE(1505), - [sym__newline] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_err_GT_PIPE] = ACTIONS(1970), - [anon_sym_out_GT_PIPE] = ACTIONS(1970), - [anon_sym_e_GT_PIPE] = ACTIONS(1970), - [anon_sym_o_GT_PIPE] = ACTIONS(1970), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1970), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1970), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1970), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1970), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_LPAREN] = ACTIONS(1970), - [anon_sym_RPAREN] = ACTIONS(1970), - [anon_sym_DOLLAR] = ACTIONS(1968), - [anon_sym_DASH_DASH] = ACTIONS(1970), - [anon_sym_DASH2] = ACTIONS(1968), - [anon_sym_LBRACE] = ACTIONS(1970), - [anon_sym_RBRACE] = ACTIONS(1970), - [anon_sym_DOT_DOT] = ACTIONS(1968), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1970), - [anon_sym_DOT_DOT_LT] = ACTIONS(1970), - [anon_sym_null] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(1970), - [anon_sym_false] = ACTIONS(1970), - [aux_sym__val_number_decimal_token1] = ACTIONS(1968), - [aux_sym__val_number_decimal_token2] = ACTIONS(1970), - [aux_sym__val_number_decimal_token3] = ACTIONS(1970), - [aux_sym__val_number_decimal_token4] = ACTIONS(1970), - [aux_sym__val_number_token1] = ACTIONS(1970), - [aux_sym__val_number_token2] = ACTIONS(1970), - [aux_sym__val_number_token3] = ACTIONS(1970), - [aux_sym__val_number_token4] = ACTIONS(1970), - [aux_sym__val_number_token5] = ACTIONS(1970), - [aux_sym__val_number_token6] = ACTIONS(1970), - [anon_sym_0b] = ACTIONS(1968), - [anon_sym_0o] = ACTIONS(1968), - [anon_sym_0x] = ACTIONS(1968), - [sym_val_date] = ACTIONS(1970), - [anon_sym_DQUOTE] = ACTIONS(1970), - [sym__str_single_quotes] = ACTIONS(1970), - [sym__str_back_ticks] = ACTIONS(1970), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1970), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1970), - [anon_sym_err_GT] = ACTIONS(1968), - [anon_sym_out_GT] = ACTIONS(1968), - [anon_sym_e_GT] = ACTIONS(1968), - [anon_sym_o_GT] = ACTIONS(1968), - [anon_sym_err_PLUSout_GT] = ACTIONS(1968), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1968), - [anon_sym_o_PLUSe_GT] = ACTIONS(1968), - [anon_sym_e_PLUSo_GT] = ACTIONS(1968), - [anon_sym_err_GT_GT] = ACTIONS(1970), - [anon_sym_out_GT_GT] = ACTIONS(1970), - [anon_sym_e_GT_GT] = ACTIONS(1970), - [anon_sym_o_GT_GT] = ACTIONS(1970), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1970), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1970), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1970), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1970), - [aux_sym_unquoted_token1] = ACTIONS(1968), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1970), - }, - [1493] = { - [sym_cell_path] = STATE(1758), - [sym_path] = STATE(1703), - [sym_comment] = STATE(1493), - [aux_sym_cell_path_repeat1] = STATE(1505), - [sym__newline] = ACTIONS(2002), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_PIPE] = ACTIONS(2002), - [anon_sym_err_GT_PIPE] = ACTIONS(2002), - [anon_sym_out_GT_PIPE] = ACTIONS(2002), - [anon_sym_e_GT_PIPE] = ACTIONS(2002), - [anon_sym_o_GT_PIPE] = ACTIONS(2002), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2002), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2002), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2002), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2002), - [anon_sym_LBRACK] = ACTIONS(2002), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_RPAREN] = ACTIONS(2002), - [anon_sym_DOLLAR] = ACTIONS(2000), - [anon_sym_DASH_DASH] = ACTIONS(2002), - [anon_sym_DASH2] = ACTIONS(2000), - [anon_sym_LBRACE] = ACTIONS(2002), - [anon_sym_RBRACE] = ACTIONS(2002), - [anon_sym_DOT_DOT] = ACTIONS(2000), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2002), - [anon_sym_DOT_DOT_LT] = ACTIONS(2002), - [anon_sym_null] = ACTIONS(2002), - [anon_sym_true] = ACTIONS(2002), - [anon_sym_false] = ACTIONS(2002), - [aux_sym__val_number_decimal_token1] = ACTIONS(2000), - [aux_sym__val_number_decimal_token2] = ACTIONS(2002), - [aux_sym__val_number_decimal_token3] = ACTIONS(2002), - [aux_sym__val_number_decimal_token4] = ACTIONS(2002), - [aux_sym__val_number_token1] = ACTIONS(2002), - [aux_sym__val_number_token2] = ACTIONS(2002), - [aux_sym__val_number_token3] = ACTIONS(2002), - [aux_sym__val_number_token4] = ACTIONS(2002), - [aux_sym__val_number_token5] = ACTIONS(2002), - [aux_sym__val_number_token6] = ACTIONS(2002), - [anon_sym_0b] = ACTIONS(2000), - [anon_sym_0o] = ACTIONS(2000), - [anon_sym_0x] = ACTIONS(2000), - [sym_val_date] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym__str_single_quotes] = ACTIONS(2002), - [sym__str_back_ticks] = ACTIONS(2002), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2002), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2002), - [anon_sym_err_GT] = ACTIONS(2000), - [anon_sym_out_GT] = ACTIONS(2000), - [anon_sym_e_GT] = ACTIONS(2000), - [anon_sym_o_GT] = ACTIONS(2000), - [anon_sym_err_PLUSout_GT] = ACTIONS(2000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2000), - [anon_sym_o_PLUSe_GT] = ACTIONS(2000), - [anon_sym_e_PLUSo_GT] = ACTIONS(2000), - [anon_sym_err_GT_GT] = ACTIONS(2002), - [anon_sym_out_GT_GT] = ACTIONS(2002), - [anon_sym_e_GT_GT] = ACTIONS(2002), - [anon_sym_o_GT_GT] = ACTIONS(2002), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2002), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2002), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2002), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2002), - [aux_sym_unquoted_token1] = ACTIONS(2000), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2002), + [1520] = { + [sym_cell_path] = STATE(1931), + [sym_path] = STATE(1823), + [sym_comment] = STATE(1520), + [aux_sym_cell_path_repeat1] = STATE(1574), + [ts_builtin_sym_end] = ACTIONS(1921), + [sym__newline] = ACTIONS(1921), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_err_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_GT_PIPE] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1919), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_DASH2] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_DOT_DOT] = ACTIONS(1919), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1921), + [anon_sym_DOT_DOT_LT] = ACTIONS(1921), + [anon_sym_null] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1921), + [anon_sym_false] = ACTIONS(1921), + [aux_sym__val_number_decimal_token1] = ACTIONS(1919), + [aux_sym__val_number_decimal_token2] = ACTIONS(1921), + [aux_sym__val_number_decimal_token3] = ACTIONS(1921), + [aux_sym__val_number_decimal_token4] = ACTIONS(1921), + [aux_sym__val_number_token1] = ACTIONS(1921), + [aux_sym__val_number_token2] = ACTIONS(1921), + [aux_sym__val_number_token3] = ACTIONS(1921), + [aux_sym__val_number_token4] = ACTIONS(1921), + [aux_sym__val_number_token5] = ACTIONS(1921), + [aux_sym__val_number_token6] = ACTIONS(1921), + [anon_sym_0b] = ACTIONS(1919), + [anon_sym_0o] = ACTIONS(1919), + [anon_sym_0x] = ACTIONS(1919), + [sym_val_date] = ACTIONS(1921), + [anon_sym_DQUOTE] = ACTIONS(1921), + [sym__str_single_quotes] = ACTIONS(1921), + [sym__str_back_ticks] = ACTIONS(1921), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1921), + [anon_sym_err_GT] = ACTIONS(1919), + [anon_sym_out_GT] = ACTIONS(1919), + [anon_sym_e_GT] = ACTIONS(1919), + [anon_sym_o_GT] = ACTIONS(1919), + [anon_sym_err_PLUSout_GT] = ACTIONS(1919), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1919), + [anon_sym_o_PLUSe_GT] = ACTIONS(1919), + [anon_sym_e_PLUSo_GT] = ACTIONS(1919), + [anon_sym_err_GT_GT] = ACTIONS(1921), + [anon_sym_out_GT_GT] = ACTIONS(1921), + [anon_sym_e_GT_GT] = ACTIONS(1921), + [anon_sym_o_GT_GT] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1921), + [aux_sym_unquoted_token1] = ACTIONS(1919), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1921), }, - [1494] = { - [sym_comment] = STATE(1494), - [ts_builtin_sym_end] = ACTIONS(996), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_LBRACK] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(994), - [anon_sym_DASH_DASH] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_LBRACE] = ACTIONS(996), - [anon_sym_DOT_DOT] = ACTIONS(994), - [anon_sym_QMARK2] = ACTIONS(996), - [anon_sym_DOT_DOT2] = ACTIONS(994), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ] = ACTIONS(994), - [anon_sym_DOT_DOT_LT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), - [anon_sym_DOT_DOT_LT2] = ACTIONS(996), - [anon_sym_null] = ACTIONS(996), - [anon_sym_true] = ACTIONS(996), - [anon_sym_false] = ACTIONS(996), - [aux_sym__val_number_decimal_token1] = ACTIONS(994), - [aux_sym__val_number_decimal_token2] = ACTIONS(996), - [aux_sym__val_number_decimal_token3] = ACTIONS(996), - [aux_sym__val_number_decimal_token4] = ACTIONS(996), - [aux_sym__val_number_token1] = ACTIONS(996), - [aux_sym__val_number_token2] = ACTIONS(996), - [aux_sym__val_number_token3] = ACTIONS(996), - [aux_sym__val_number_token4] = ACTIONS(996), - [aux_sym__val_number_token5] = ACTIONS(996), - [aux_sym__val_number_token6] = ACTIONS(996), - [anon_sym_0b] = ACTIONS(994), - [anon_sym_0o] = ACTIONS(994), - [anon_sym_0x] = ACTIONS(994), - [sym_val_date] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(996), - [sym__str_single_quotes] = ACTIONS(996), - [sym__str_back_ticks] = ACTIONS(996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(994), - [anon_sym_out_GT] = ACTIONS(994), - [anon_sym_e_GT] = ACTIONS(994), - [anon_sym_o_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT] = ACTIONS(994), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [aux_sym_unquoted_token1] = ACTIONS(994), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(996), + [1521] = { + [sym_comment] = STATE(1521), + [ts_builtin_sym_end] = ACTIONS(1787), + [sym__newline] = ACTIONS(1787), + [anon_sym_SEMI] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_err_GT_PIPE] = ACTIONS(1787), + [anon_sym_out_GT_PIPE] = ACTIONS(1787), + [anon_sym_e_GT_PIPE] = ACTIONS(1787), + [anon_sym_o_GT_PIPE] = ACTIONS(1787), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_DOLLAR] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1787), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_DOT_DOT2] = ACTIONS(1785), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), + [anon_sym_DOT_DOT_LT] = ACTIONS(1785), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), + [aux_sym__immediate_decimal_token2] = ACTIONS(4845), + [anon_sym_null] = ACTIONS(1787), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [aux_sym__val_number_decimal_token1] = ACTIONS(1785), + [aux_sym__val_number_decimal_token2] = ACTIONS(1787), + [aux_sym__val_number_decimal_token3] = ACTIONS(1787), + [aux_sym__val_number_decimal_token4] = ACTIONS(1787), + [aux_sym__val_number_token1] = ACTIONS(1787), + [aux_sym__val_number_token2] = ACTIONS(1787), + [aux_sym__val_number_token3] = ACTIONS(1787), + [aux_sym__val_number_token4] = ACTIONS(1787), + [aux_sym__val_number_token5] = ACTIONS(1787), + [aux_sym__val_number_token6] = ACTIONS(1787), + [anon_sym_0b] = ACTIONS(1785), + [anon_sym_0o] = ACTIONS(1785), + [anon_sym_0x] = ACTIONS(1785), + [sym_val_date] = ACTIONS(1787), + [anon_sym_DQUOTE] = ACTIONS(1787), + [sym__str_single_quotes] = ACTIONS(1787), + [sym__str_back_ticks] = ACTIONS(1787), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), + [anon_sym_err_GT] = ACTIONS(1785), + [anon_sym_out_GT] = ACTIONS(1785), + [anon_sym_e_GT] = ACTIONS(1785), + [anon_sym_o_GT] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT] = ACTIONS(1785), + [anon_sym_err_GT_GT] = ACTIONS(1787), + [anon_sym_out_GT_GT] = ACTIONS(1787), + [anon_sym_e_GT_GT] = ACTIONS(1787), + [anon_sym_o_GT_GT] = ACTIONS(1787), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), + [aux_sym_unquoted_token1] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1787), }, - [1495] = { - [sym_comment] = STATE(1495), - [sym__newline] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_err_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_GT_PIPE] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_RPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1783), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), - [aux_sym__immediate_decimal_token2] = ACTIONS(4811), - [anon_sym_null] = ACTIONS(1785), - [anon_sym_true] = ACTIONS(1785), - [anon_sym_false] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_0b] = ACTIONS(1783), - [anon_sym_0o] = ACTIONS(1783), - [anon_sym_0x] = ACTIONS(1783), - [sym_val_date] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_err_GT] = ACTIONS(1783), - [anon_sym_out_GT] = ACTIONS(1783), - [anon_sym_e_GT] = ACTIONS(1783), - [anon_sym_o_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT] = ACTIONS(1783), - [anon_sym_err_GT_GT] = ACTIONS(1785), - [anon_sym_out_GT_GT] = ACTIONS(1785), - [anon_sym_e_GT_GT] = ACTIONS(1785), - [anon_sym_o_GT_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), - [aux_sym_unquoted_token1] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1785), + [1522] = { + [sym_cell_path] = STATE(1932), + [sym_path] = STATE(1823), + [sym_comment] = STATE(1522), + [aux_sym_cell_path_repeat1] = STATE(1574), + [ts_builtin_sym_end] = ACTIONS(1929), + [sym__newline] = ACTIONS(1929), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_err_GT_PIPE] = ACTIONS(1929), + [anon_sym_out_GT_PIPE] = ACTIONS(1929), + [anon_sym_e_GT_PIPE] = ACTIONS(1929), + [anon_sym_o_GT_PIPE] = ACTIONS(1929), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1929), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1929), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1929), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(1929), + [anon_sym_LPAREN] = ACTIONS(1929), + [anon_sym_DOLLAR] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1929), + [anon_sym_DASH2] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_DOT_DOT] = ACTIONS(1927), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1929), + [anon_sym_DOT_DOT_LT] = ACTIONS(1929), + [anon_sym_null] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1929), + [anon_sym_false] = ACTIONS(1929), + [aux_sym__val_number_decimal_token1] = ACTIONS(1927), + [aux_sym__val_number_decimal_token2] = ACTIONS(1929), + [aux_sym__val_number_decimal_token3] = ACTIONS(1929), + [aux_sym__val_number_decimal_token4] = ACTIONS(1929), + [aux_sym__val_number_token1] = ACTIONS(1929), + [aux_sym__val_number_token2] = ACTIONS(1929), + [aux_sym__val_number_token3] = ACTIONS(1929), + [aux_sym__val_number_token4] = ACTIONS(1929), + [aux_sym__val_number_token5] = ACTIONS(1929), + [aux_sym__val_number_token6] = ACTIONS(1929), + [anon_sym_0b] = ACTIONS(1927), + [anon_sym_0o] = ACTIONS(1927), + [anon_sym_0x] = ACTIONS(1927), + [sym_val_date] = ACTIONS(1929), + [anon_sym_DQUOTE] = ACTIONS(1929), + [sym__str_single_quotes] = ACTIONS(1929), + [sym__str_back_ticks] = ACTIONS(1929), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1929), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1929), + [anon_sym_err_GT] = ACTIONS(1927), + [anon_sym_out_GT] = ACTIONS(1927), + [anon_sym_e_GT] = ACTIONS(1927), + [anon_sym_o_GT] = ACTIONS(1927), + [anon_sym_err_PLUSout_GT] = ACTIONS(1927), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1927), + [anon_sym_o_PLUSe_GT] = ACTIONS(1927), + [anon_sym_e_PLUSo_GT] = ACTIONS(1927), + [anon_sym_err_GT_GT] = ACTIONS(1929), + [anon_sym_out_GT_GT] = ACTIONS(1929), + [anon_sym_e_GT_GT] = ACTIONS(1929), + [anon_sym_o_GT_GT] = ACTIONS(1929), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1929), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1929), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1929), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1929), + [aux_sym_unquoted_token1] = ACTIONS(1927), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1929), }, - [1496] = { - [sym_comment] = STATE(1496), - [ts_builtin_sym_end] = ACTIONS(1785), - [sym__newline] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_err_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_GT_PIPE] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), - [anon_sym_null] = ACTIONS(1785), - [anon_sym_true] = ACTIONS(1785), - [anon_sym_false] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_0b] = ACTIONS(1783), - [anon_sym_0o] = ACTIONS(1783), - [anon_sym_0x] = ACTIONS(1783), - [sym_val_date] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_err_GT] = ACTIONS(1783), - [anon_sym_out_GT] = ACTIONS(1783), - [anon_sym_e_GT] = ACTIONS(1783), - [anon_sym_o_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT] = ACTIONS(1783), - [anon_sym_err_GT_GT] = ACTIONS(1785), - [anon_sym_out_GT_GT] = ACTIONS(1785), - [anon_sym_e_GT_GT] = ACTIONS(1785), - [anon_sym_o_GT_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), - [aux_sym_unquoted_token1] = ACTIONS(1783), - [aux_sym_unquoted_token2] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1785), + [1523] = { + [sym_cell_path] = STATE(1933), + [sym_path] = STATE(1823), + [sym_comment] = STATE(1523), + [aux_sym_cell_path_repeat1] = STATE(1574), + [ts_builtin_sym_end] = ACTIONS(1944), + [sym__newline] = ACTIONS(1944), + [anon_sym_SEMI] = ACTIONS(1944), + [anon_sym_PIPE] = ACTIONS(1944), + [anon_sym_err_GT_PIPE] = ACTIONS(1944), + [anon_sym_out_GT_PIPE] = ACTIONS(1944), + [anon_sym_e_GT_PIPE] = ACTIONS(1944), + [anon_sym_o_GT_PIPE] = ACTIONS(1944), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1944), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1944), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1944), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1944), + [anon_sym_LBRACK] = ACTIONS(1944), + [anon_sym_LPAREN] = ACTIONS(1944), + [anon_sym_DOLLAR] = ACTIONS(1942), + [anon_sym_DASH_DASH] = ACTIONS(1944), + [anon_sym_DASH2] = ACTIONS(1942), + [anon_sym_LBRACE] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1942), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1944), + [anon_sym_DOT_DOT_LT] = ACTIONS(1944), + [anon_sym_null] = ACTIONS(1944), + [anon_sym_true] = ACTIONS(1944), + [anon_sym_false] = ACTIONS(1944), + [aux_sym__val_number_decimal_token1] = ACTIONS(1942), + [aux_sym__val_number_decimal_token2] = ACTIONS(1944), + [aux_sym__val_number_decimal_token3] = ACTIONS(1944), + [aux_sym__val_number_decimal_token4] = ACTIONS(1944), + [aux_sym__val_number_token1] = ACTIONS(1944), + [aux_sym__val_number_token2] = ACTIONS(1944), + [aux_sym__val_number_token3] = ACTIONS(1944), + [aux_sym__val_number_token4] = ACTIONS(1944), + [aux_sym__val_number_token5] = ACTIONS(1944), + [aux_sym__val_number_token6] = ACTIONS(1944), + [anon_sym_0b] = ACTIONS(1942), + [anon_sym_0o] = ACTIONS(1942), + [anon_sym_0x] = ACTIONS(1942), + [sym_val_date] = ACTIONS(1944), + [anon_sym_DQUOTE] = ACTIONS(1944), + [sym__str_single_quotes] = ACTIONS(1944), + [sym__str_back_ticks] = ACTIONS(1944), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1944), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1944), + [anon_sym_err_GT] = ACTIONS(1942), + [anon_sym_out_GT] = ACTIONS(1942), + [anon_sym_e_GT] = ACTIONS(1942), + [anon_sym_o_GT] = ACTIONS(1942), + [anon_sym_err_PLUSout_GT] = ACTIONS(1942), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1942), + [anon_sym_o_PLUSe_GT] = ACTIONS(1942), + [anon_sym_e_PLUSo_GT] = ACTIONS(1942), + [anon_sym_err_GT_GT] = ACTIONS(1944), + [anon_sym_out_GT_GT] = ACTIONS(1944), + [anon_sym_e_GT_GT] = ACTIONS(1944), + [anon_sym_o_GT_GT] = ACTIONS(1944), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1944), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1944), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1944), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1944), + [aux_sym_unquoted_token1] = ACTIONS(1942), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1944), }, - [1497] = { - [sym_comment] = STATE(1497), + [1524] = { + [sym_comment] = STATE(1524), + [ts_builtin_sym_end] = ACTIONS(1012), [sym__newline] = ACTIONS(1012), [anon_sym_SEMI] = ACTIONS(1012), [anon_sym_PIPE] = ACTIONS(1012), @@ -215885,12 +218057,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), [anon_sym_LBRACK] = ACTIONS(1012), [anon_sym_LPAREN] = ACTIONS(1012), - [anon_sym_RPAREN] = ACTIONS(1012), [anon_sym_DOLLAR] = ACTIONS(1010), [anon_sym_DASH_DASH] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(1010), [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_RBRACE] = ACTIONS(1012), [anon_sym_DOT_DOT] = ACTIONS(1010), [anon_sym_DOT_DOT2] = ACTIONS(1010), [anon_sym_DOT] = ACTIONS(1010), @@ -215940,288 +218110,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1012), }, - [1498] = { - [sym_comment] = STATE(1498), - [ts_builtin_sym_end] = ACTIONS(1757), - [sym__newline] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_err_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_GT_PIPE] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), - [anon_sym_DOT_DOT_LT] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_0b] = ACTIONS(1755), - [anon_sym_0o] = ACTIONS(1755), - [anon_sym_0x] = ACTIONS(1755), - [sym_val_date] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), - [anon_sym_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [aux_sym_unquoted_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [1499] = { - [sym_cell_path] = STATE(1744), - [sym_path] = STATE(1703), - [sym_comment] = STATE(1499), - [aux_sym_cell_path_repeat1] = STATE(1505), - [sym__newline] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2092), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_err_GT_PIPE] = ACTIONS(2092), - [anon_sym_out_GT_PIPE] = ACTIONS(2092), - [anon_sym_e_GT_PIPE] = ACTIONS(2092), - [anon_sym_o_GT_PIPE] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2092), - [anon_sym_LPAREN] = ACTIONS(2092), - [anon_sym_RPAREN] = ACTIONS(2092), - [anon_sym_DOLLAR] = ACTIONS(2090), - [anon_sym_DASH_DASH] = ACTIONS(2092), - [anon_sym_DASH2] = ACTIONS(2090), - [anon_sym_LBRACE] = ACTIONS(2092), - [anon_sym_RBRACE] = ACTIONS(2092), - [anon_sym_DOT_DOT] = ACTIONS(2090), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2092), - [anon_sym_DOT_DOT_LT] = ACTIONS(2092), - [anon_sym_null] = ACTIONS(2092), - [anon_sym_true] = ACTIONS(2092), - [anon_sym_false] = ACTIONS(2092), - [aux_sym__val_number_decimal_token1] = ACTIONS(2090), - [aux_sym__val_number_decimal_token2] = ACTIONS(2092), - [aux_sym__val_number_decimal_token3] = ACTIONS(2092), - [aux_sym__val_number_decimal_token4] = ACTIONS(2092), - [aux_sym__val_number_token1] = ACTIONS(2092), - [aux_sym__val_number_token2] = ACTIONS(2092), - [aux_sym__val_number_token3] = ACTIONS(2092), - [aux_sym__val_number_token4] = ACTIONS(2092), - [aux_sym__val_number_token5] = ACTIONS(2092), - [aux_sym__val_number_token6] = ACTIONS(2092), - [anon_sym_0b] = ACTIONS(2090), - [anon_sym_0o] = ACTIONS(2090), - [anon_sym_0x] = ACTIONS(2090), - [sym_val_date] = ACTIONS(2092), - [anon_sym_DQUOTE] = ACTIONS(2092), - [sym__str_single_quotes] = ACTIONS(2092), - [sym__str_back_ticks] = ACTIONS(2092), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2092), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2092), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2092), - [anon_sym_out_GT_GT] = ACTIONS(2092), - [anon_sym_e_GT_GT] = ACTIONS(2092), - [anon_sym_o_GT_GT] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2092), - [aux_sym_unquoted_token1] = ACTIONS(2090), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2092), - }, - [1500] = { - [sym_cell_path] = STATE(1746), - [sym_path] = STATE(1703), - [sym_comment] = STATE(1500), - [aux_sym_cell_path_repeat1] = STATE(1505), - [sym__newline] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1927), - [anon_sym_err_GT_PIPE] = ACTIONS(1927), - [anon_sym_out_GT_PIPE] = ACTIONS(1927), - [anon_sym_e_GT_PIPE] = ACTIONS(1927), - [anon_sym_o_GT_PIPE] = ACTIONS(1927), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1927), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1927), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1927), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1927), - [anon_sym_LBRACK] = ACTIONS(1927), - [anon_sym_LPAREN] = ACTIONS(1927), - [anon_sym_RPAREN] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1927), - [anon_sym_DASH2] = ACTIONS(1925), - [anon_sym_LBRACE] = ACTIONS(1927), - [anon_sym_RBRACE] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1925), - [anon_sym_DOT] = ACTIONS(4777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1927), - [anon_sym_DOT_DOT_LT] = ACTIONS(1927), - [anon_sym_null] = ACTIONS(1927), - [anon_sym_true] = ACTIONS(1927), - [anon_sym_false] = ACTIONS(1927), - [aux_sym__val_number_decimal_token1] = ACTIONS(1925), - [aux_sym__val_number_decimal_token2] = ACTIONS(1927), - [aux_sym__val_number_decimal_token3] = ACTIONS(1927), - [aux_sym__val_number_decimal_token4] = ACTIONS(1927), - [aux_sym__val_number_token1] = ACTIONS(1927), - [aux_sym__val_number_token2] = ACTIONS(1927), - [aux_sym__val_number_token3] = ACTIONS(1927), - [aux_sym__val_number_token4] = ACTIONS(1927), - [aux_sym__val_number_token5] = ACTIONS(1927), - [aux_sym__val_number_token6] = ACTIONS(1927), - [anon_sym_0b] = ACTIONS(1925), - [anon_sym_0o] = ACTIONS(1925), - [anon_sym_0x] = ACTIONS(1925), - [sym_val_date] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1927), - [sym__str_single_quotes] = ACTIONS(1927), - [sym__str_back_ticks] = ACTIONS(1927), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1927), - [anon_sym_err_GT] = ACTIONS(1925), - [anon_sym_out_GT] = ACTIONS(1925), - [anon_sym_e_GT] = ACTIONS(1925), - [anon_sym_o_GT] = ACTIONS(1925), - [anon_sym_err_PLUSout_GT] = ACTIONS(1925), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1925), - [anon_sym_o_PLUSe_GT] = ACTIONS(1925), - [anon_sym_e_PLUSo_GT] = ACTIONS(1925), - [anon_sym_err_GT_GT] = ACTIONS(1927), - [anon_sym_out_GT_GT] = ACTIONS(1927), - [anon_sym_e_GT_GT] = ACTIONS(1927), - [anon_sym_o_GT_GT] = ACTIONS(1927), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1927), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1927), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1927), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1927), - [aux_sym_unquoted_token1] = ACTIONS(1925), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1927), - }, - [1501] = { - [sym_comment] = STATE(1501), - [sym__newline] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_err_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_GT_PIPE] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_RPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), - [anon_sym_DOT_DOT_LT] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(4752), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_0b] = ACTIONS(1755), - [anon_sym_0o] = ACTIONS(1755), - [anon_sym_0x] = ACTIONS(1755), - [sym_val_date] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), - [anon_sym_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [1502] = { - [sym_comment] = STATE(1502), + [1525] = { + [sym_comment] = STATE(1525), [ts_builtin_sym_end] = ACTIONS(1016), [sym__newline] = ACTIONS(1016), [anon_sym_SEMI] = ACTIONS(1016), @@ -216289,148 +218179,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1016), }, - [1503] = { - [sym_cell_path] = STATE(1960), - [sym_path] = STATE(1774), - [sym_comment] = STATE(1503), - [aux_sym_cell_path_repeat1] = STATE(1634), - [ts_builtin_sym_end] = ACTIONS(963), - [sym__newline] = ACTIONS(963), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(963), - [anon_sym_err_GT_PIPE] = ACTIONS(963), - [anon_sym_out_GT_PIPE] = ACTIONS(963), - [anon_sym_e_GT_PIPE] = ACTIONS(963), - [anon_sym_o_GT_PIPE] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), - [anon_sym_LBRACK] = ACTIONS(963), - [anon_sym_LPAREN] = ACTIONS(963), - [anon_sym_DOLLAR] = ACTIONS(961), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_DASH2] = ACTIONS(961), - [anon_sym_LBRACE] = ACTIONS(963), - [anon_sym_DOT_DOT] = ACTIONS(961), + [1526] = { + [sym_cell_path] = STATE(1934), + [sym_path] = STATE(1823), + [sym_comment] = STATE(1526), + [aux_sym_cell_path_repeat1] = STATE(1574), + [ts_builtin_sym_end] = ACTIONS(2028), + [sym__newline] = ACTIONS(2028), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_err_GT_PIPE] = ACTIONS(2028), + [anon_sym_out_GT_PIPE] = ACTIONS(2028), + [anon_sym_e_GT_PIPE] = ACTIONS(2028), + [anon_sym_o_GT_PIPE] = ACTIONS(2028), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2028), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2028), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2028), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(2028), + [anon_sym_LPAREN] = ACTIONS(2028), + [anon_sym_DOLLAR] = ACTIONS(2026), + [anon_sym_DASH_DASH] = ACTIONS(2028), + [anon_sym_DASH2] = ACTIONS(2026), + [anon_sym_LBRACE] = ACTIONS(2028), + [anon_sym_DOT_DOT] = ACTIONS(2026), [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(963), - [anon_sym_DOT_DOT_LT] = ACTIONS(963), - [anon_sym_null] = ACTIONS(963), - [anon_sym_true] = ACTIONS(963), - [anon_sym_false] = ACTIONS(963), - [aux_sym__val_number_decimal_token1] = ACTIONS(961), - [aux_sym__val_number_decimal_token2] = ACTIONS(963), - [aux_sym__val_number_decimal_token3] = ACTIONS(963), - [aux_sym__val_number_decimal_token4] = ACTIONS(963), - [aux_sym__val_number_token1] = ACTIONS(963), - [aux_sym__val_number_token2] = ACTIONS(963), - [aux_sym__val_number_token3] = ACTIONS(963), - [aux_sym__val_number_token4] = ACTIONS(963), - [aux_sym__val_number_token5] = ACTIONS(963), - [aux_sym__val_number_token6] = ACTIONS(963), - [anon_sym_0b] = ACTIONS(961), - [anon_sym_0o] = ACTIONS(961), - [anon_sym_0x] = ACTIONS(961), - [sym_val_date] = ACTIONS(963), - [anon_sym_DQUOTE] = ACTIONS(963), - [sym__str_single_quotes] = ACTIONS(963), - [sym__str_back_ticks] = ACTIONS(963), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(963), - [anon_sym_err_GT] = ACTIONS(961), - [anon_sym_out_GT] = ACTIONS(961), - [anon_sym_e_GT] = ACTIONS(961), - [anon_sym_o_GT] = ACTIONS(961), - [anon_sym_err_PLUSout_GT] = ACTIONS(961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(961), - [anon_sym_o_PLUSe_GT] = ACTIONS(961), - [anon_sym_e_PLUSo_GT] = ACTIONS(961), - [anon_sym_err_GT_GT] = ACTIONS(963), - [anon_sym_out_GT_GT] = ACTIONS(963), - [anon_sym_e_GT_GT] = ACTIONS(963), - [anon_sym_o_GT_GT] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), - [aux_sym_unquoted_token1] = ACTIONS(961), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(963), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2028), + [anon_sym_DOT_DOT_LT] = ACTIONS(2028), + [anon_sym_null] = ACTIONS(2028), + [anon_sym_true] = ACTIONS(2028), + [anon_sym_false] = ACTIONS(2028), + [aux_sym__val_number_decimal_token1] = ACTIONS(2026), + [aux_sym__val_number_decimal_token2] = ACTIONS(2028), + [aux_sym__val_number_decimal_token3] = ACTIONS(2028), + [aux_sym__val_number_decimal_token4] = ACTIONS(2028), + [aux_sym__val_number_token1] = ACTIONS(2028), + [aux_sym__val_number_token2] = ACTIONS(2028), + [aux_sym__val_number_token3] = ACTIONS(2028), + [aux_sym__val_number_token4] = ACTIONS(2028), + [aux_sym__val_number_token5] = ACTIONS(2028), + [aux_sym__val_number_token6] = ACTIONS(2028), + [anon_sym_0b] = ACTIONS(2026), + [anon_sym_0o] = ACTIONS(2026), + [anon_sym_0x] = ACTIONS(2026), + [sym_val_date] = ACTIONS(2028), + [anon_sym_DQUOTE] = ACTIONS(2028), + [sym__str_single_quotes] = ACTIONS(2028), + [sym__str_back_ticks] = ACTIONS(2028), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2028), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2028), + [anon_sym_err_GT] = ACTIONS(2026), + [anon_sym_out_GT] = ACTIONS(2026), + [anon_sym_e_GT] = ACTIONS(2026), + [anon_sym_o_GT] = ACTIONS(2026), + [anon_sym_err_PLUSout_GT] = ACTIONS(2026), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2026), + [anon_sym_o_PLUSe_GT] = ACTIONS(2026), + [anon_sym_e_PLUSo_GT] = ACTIONS(2026), + [anon_sym_err_GT_GT] = ACTIONS(2028), + [anon_sym_out_GT_GT] = ACTIONS(2028), + [anon_sym_e_GT_GT] = ACTIONS(2028), + [anon_sym_o_GT_GT] = ACTIONS(2028), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2028), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2028), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2028), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2028), + [aux_sym_unquoted_token1] = ACTIONS(2026), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2028), }, - [1504] = { - [sym_cell_path] = STATE(1905), - [sym_path] = STATE(1774), - [sym_comment] = STATE(1504), - [aux_sym_cell_path_repeat1] = STATE(1634), - [ts_builtin_sym_end] = ACTIONS(2092), - [sym__newline] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2092), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_err_GT_PIPE] = ACTIONS(2092), - [anon_sym_out_GT_PIPE] = ACTIONS(2092), - [anon_sym_e_GT_PIPE] = ACTIONS(2092), - [anon_sym_o_GT_PIPE] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2092), - [anon_sym_LPAREN] = ACTIONS(2092), - [anon_sym_DOLLAR] = ACTIONS(2090), - [anon_sym_DASH_DASH] = ACTIONS(2092), - [anon_sym_DASH2] = ACTIONS(2090), - [anon_sym_LBRACE] = ACTIONS(2092), - [anon_sym_DOT_DOT] = ACTIONS(2090), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2092), - [anon_sym_DOT_DOT_LT] = ACTIONS(2092), - [anon_sym_null] = ACTIONS(2092), - [anon_sym_true] = ACTIONS(2092), - [anon_sym_false] = ACTIONS(2092), - [aux_sym__val_number_decimal_token1] = ACTIONS(2090), - [aux_sym__val_number_decimal_token2] = ACTIONS(2092), - [aux_sym__val_number_decimal_token3] = ACTIONS(2092), - [aux_sym__val_number_decimal_token4] = ACTIONS(2092), - [aux_sym__val_number_token1] = ACTIONS(2092), - [aux_sym__val_number_token2] = ACTIONS(2092), - [aux_sym__val_number_token3] = ACTIONS(2092), - [aux_sym__val_number_token4] = ACTIONS(2092), - [aux_sym__val_number_token5] = ACTIONS(2092), - [aux_sym__val_number_token6] = ACTIONS(2092), - [anon_sym_0b] = ACTIONS(2090), - [anon_sym_0o] = ACTIONS(2090), - [anon_sym_0x] = ACTIONS(2090), - [sym_val_date] = ACTIONS(2092), - [anon_sym_DQUOTE] = ACTIONS(2092), - [sym__str_single_quotes] = ACTIONS(2092), - [sym__str_back_ticks] = ACTIONS(2092), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2092), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2092), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2092), - [anon_sym_out_GT_GT] = ACTIONS(2092), - [anon_sym_e_GT_GT] = ACTIONS(2092), - [anon_sym_o_GT_GT] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2092), - [aux_sym_unquoted_token1] = ACTIONS(2090), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2092), + [1527] = { + [sym_cell_path] = STATE(1652), + [sym_path] = STATE(1615), + [sym_comment] = STATE(1527), + [aux_sym_cell_path_repeat1] = STATE(1643), + [sym__newline] = ACTIONS(1749), + [anon_sym_SEMI] = ACTIONS(1749), + [anon_sym_PIPE] = ACTIONS(1749), + [anon_sym_err_GT_PIPE] = ACTIONS(1749), + [anon_sym_out_GT_PIPE] = ACTIONS(1749), + [anon_sym_e_GT_PIPE] = ACTIONS(1749), + [anon_sym_o_GT_PIPE] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1749), + [anon_sym_RPAREN] = ACTIONS(1749), + [anon_sym_GT2] = ACTIONS(1747), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_in2] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1749), + [anon_sym_STAR2] = ACTIONS(1747), + [anon_sym_and2] = ACTIONS(1749), + [anon_sym_xor2] = ACTIONS(1749), + [anon_sym_or2] = ACTIONS(1749), + [anon_sym_not_DASHin2] = ACTIONS(1749), + [anon_sym_starts_DASHwith2] = ACTIONS(1749), + [anon_sym_ends_DASHwith2] = ACTIONS(1749), + [anon_sym_EQ_EQ2] = ACTIONS(1749), + [anon_sym_BANG_EQ2] = ACTIONS(1749), + [anon_sym_LT2] = ACTIONS(1747), + [anon_sym_LT_EQ2] = ACTIONS(1749), + [anon_sym_GT_EQ2] = ACTIONS(1749), + [anon_sym_EQ_TILDE2] = ACTIONS(1749), + [anon_sym_BANG_TILDE2] = ACTIONS(1749), + [anon_sym_STAR_STAR2] = ACTIONS(1749), + [anon_sym_PLUS_PLUS2] = ACTIONS(1749), + [anon_sym_SLASH2] = ACTIONS(1747), + [anon_sym_mod2] = ACTIONS(1749), + [anon_sym_SLASH_SLASH2] = ACTIONS(1749), + [anon_sym_PLUS2] = ACTIONS(1747), + [anon_sym_bit_DASHshl2] = ACTIONS(1749), + [anon_sym_bit_DASHshr2] = ACTIONS(1749), + [anon_sym_bit_DASHand2] = ACTIONS(1749), + [anon_sym_bit_DASHxor2] = ACTIONS(1749), + [anon_sym_bit_DASHor2] = ACTIONS(1749), + [anon_sym_DOT_DOT2] = ACTIONS(1747), + [anon_sym_DOT] = ACTIONS(4847), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1749), + [anon_sym_err_GT] = ACTIONS(1747), + [anon_sym_out_GT] = ACTIONS(1747), + [anon_sym_e_GT] = ACTIONS(1747), + [anon_sym_o_GT] = ACTIONS(1747), + [anon_sym_err_PLUSout_GT] = ACTIONS(1747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1747), + [anon_sym_o_PLUSe_GT] = ACTIONS(1747), + [anon_sym_e_PLUSo_GT] = ACTIONS(1747), + [anon_sym_err_GT_GT] = ACTIONS(1749), + [anon_sym_out_GT_GT] = ACTIONS(1749), + [anon_sym_e_GT_GT] = ACTIONS(1749), + [anon_sym_o_GT_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(247), }, - [1505] = { - [sym_path] = STATE(1703), - [sym_comment] = STATE(1505), - [aux_sym_cell_path_repeat1] = STATE(1509), + [1528] = { + [sym_path] = STATE(1678), + [sym_comment] = STATE(1528), + [aux_sym_cell_path_repeat1] = STATE(1530), [sym__newline] = ACTIONS(969), [anon_sym_SEMI] = ACTIONS(969), [anon_sym_PIPE] = ACTIONS(969), @@ -216496,217 +218386,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(969), }, - [1506] = { - [sym_cell_path] = STATE(1895), - [sym_path] = STATE(1774), - [sym_comment] = STATE(1506), - [aux_sym_cell_path_repeat1] = STATE(1634), - [ts_builtin_sym_end] = ACTIONS(2084), - [sym__newline] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2084), - [anon_sym_PIPE] = ACTIONS(2084), - [anon_sym_err_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_GT_PIPE] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2084), - [anon_sym_LBRACK] = ACTIONS(2084), - [anon_sym_LPAREN] = ACTIONS(2084), - [anon_sym_DOLLAR] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_DOT_DOT] = ACTIONS(2082), + [1529] = { + [sym_cell_path] = STATE(1937), + [sym_path] = STATE(1823), + [sym_comment] = STATE(1529), + [aux_sym_cell_path_repeat1] = STATE(1574), + [ts_builtin_sym_end] = ACTIONS(2032), + [sym__newline] = ACTIONS(2032), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_err_GT_PIPE] = ACTIONS(2032), + [anon_sym_out_GT_PIPE] = ACTIONS(2032), + [anon_sym_e_GT_PIPE] = ACTIONS(2032), + [anon_sym_o_GT_PIPE] = ACTIONS(2032), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2032), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2032), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2032), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2032), + [anon_sym_LBRACK] = ACTIONS(2032), + [anon_sym_LPAREN] = ACTIONS(2032), + [anon_sym_DOLLAR] = ACTIONS(2030), + [anon_sym_DASH_DASH] = ACTIONS(2032), + [anon_sym_DASH2] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2032), + [anon_sym_DOT_DOT] = ACTIONS(2030), [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2084), - [anon_sym_DOT_DOT_LT] = ACTIONS(2084), - [anon_sym_null] = ACTIONS(2084), - [anon_sym_true] = ACTIONS(2084), - [anon_sym_false] = ACTIONS(2084), - [aux_sym__val_number_decimal_token1] = ACTIONS(2082), - [aux_sym__val_number_decimal_token2] = ACTIONS(2084), - [aux_sym__val_number_decimal_token3] = ACTIONS(2084), - [aux_sym__val_number_decimal_token4] = ACTIONS(2084), - [aux_sym__val_number_token1] = ACTIONS(2084), - [aux_sym__val_number_token2] = ACTIONS(2084), - [aux_sym__val_number_token3] = ACTIONS(2084), - [aux_sym__val_number_token4] = ACTIONS(2084), - [aux_sym__val_number_token5] = ACTIONS(2084), - [aux_sym__val_number_token6] = ACTIONS(2084), - [anon_sym_0b] = ACTIONS(2082), - [anon_sym_0o] = ACTIONS(2082), - [anon_sym_0x] = ACTIONS(2082), - [sym_val_date] = ACTIONS(2084), - [anon_sym_DQUOTE] = ACTIONS(2084), - [sym__str_single_quotes] = ACTIONS(2084), - [sym__str_back_ticks] = ACTIONS(2084), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2084), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2084), - [anon_sym_err_GT] = ACTIONS(2082), - [anon_sym_out_GT] = ACTIONS(2082), - [anon_sym_e_GT] = ACTIONS(2082), - [anon_sym_o_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT] = ACTIONS(2082), - [anon_sym_err_GT_GT] = ACTIONS(2084), - [anon_sym_out_GT_GT] = ACTIONS(2084), - [anon_sym_e_GT_GT] = ACTIONS(2084), - [anon_sym_o_GT_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2084), - [aux_sym_unquoted_token1] = ACTIONS(2082), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2084), - }, - [1507] = { - [sym_comment] = STATE(1507), - [anon_sym_EQ] = ACTIONS(1024), - [anon_sym_PLUS_EQ] = ACTIONS(1026), - [anon_sym_DASH_EQ] = ACTIONS(1026), - [anon_sym_STAR_EQ] = ACTIONS(1026), - [anon_sym_SLASH_EQ] = ACTIONS(1026), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1026), - [sym__newline] = ACTIONS(1032), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_err_GT_PIPE] = ACTIONS(1032), - [anon_sym_out_GT_PIPE] = ACTIONS(1032), - [anon_sym_e_GT_PIPE] = ACTIONS(1032), - [anon_sym_o_GT_PIPE] = ACTIONS(1032), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1032), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1032), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1032), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1032), - [anon_sym_GT2] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(1030), - [anon_sym_in2] = ACTIONS(1032), - [anon_sym_RBRACE] = ACTIONS(1032), - [anon_sym_STAR2] = ACTIONS(1030), - [anon_sym_and2] = ACTIONS(1032), - [anon_sym_xor2] = ACTIONS(1032), - [anon_sym_or2] = ACTIONS(1032), - [anon_sym_not_DASHin2] = ACTIONS(1032), - [anon_sym_starts_DASHwith2] = ACTIONS(1032), - [anon_sym_ends_DASHwith2] = ACTIONS(1032), - [anon_sym_EQ_EQ2] = ACTIONS(1032), - [anon_sym_BANG_EQ2] = ACTIONS(1032), - [anon_sym_LT2] = ACTIONS(1030), - [anon_sym_LT_EQ2] = ACTIONS(1032), - [anon_sym_GT_EQ2] = ACTIONS(1032), - [anon_sym_EQ_TILDE2] = ACTIONS(1032), - [anon_sym_BANG_TILDE2] = ACTIONS(1032), - [anon_sym_STAR_STAR2] = ACTIONS(1032), - [anon_sym_PLUS_PLUS2] = ACTIONS(1030), - [anon_sym_SLASH2] = ACTIONS(1030), - [anon_sym_mod2] = ACTIONS(1032), - [anon_sym_SLASH_SLASH2] = ACTIONS(1032), - [anon_sym_PLUS2] = ACTIONS(1030), - [anon_sym_bit_DASHshl2] = ACTIONS(1032), - [anon_sym_bit_DASHshr2] = ACTIONS(1032), - [anon_sym_bit_DASHand2] = ACTIONS(1032), - [anon_sym_bit_DASHxor2] = ACTIONS(1032), - [anon_sym_bit_DASHor2] = ACTIONS(1032), - [anon_sym_DOT_DOT2] = ACTIONS(1042), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), - [anon_sym_err_GT] = ACTIONS(1030), - [anon_sym_out_GT] = ACTIONS(1030), - [anon_sym_e_GT] = ACTIONS(1030), - [anon_sym_o_GT] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT] = ACTIONS(1030), - [anon_sym_err_GT_GT] = ACTIONS(1032), - [anon_sym_out_GT_GT] = ACTIONS(1032), - [anon_sym_e_GT_GT] = ACTIONS(1032), - [anon_sym_o_GT_GT] = ACTIONS(1032), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1032), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1032), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1032), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1032), - [anon_sym_POUND] = ACTIONS(247), - }, - [1508] = { - [sym_comment] = STATE(1508), - [ts_builtin_sym_end] = ACTIONS(1032), - [anon_sym_EQ] = ACTIONS(4815), - [anon_sym_PLUS_EQ] = ACTIONS(4817), - [anon_sym_DASH_EQ] = ACTIONS(4817), - [anon_sym_STAR_EQ] = ACTIONS(4817), - [anon_sym_SLASH_EQ] = ACTIONS(4817), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4817), - [sym__newline] = ACTIONS(1032), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_err_GT_PIPE] = ACTIONS(1032), - [anon_sym_out_GT_PIPE] = ACTIONS(1032), - [anon_sym_e_GT_PIPE] = ACTIONS(1032), - [anon_sym_o_GT_PIPE] = ACTIONS(1032), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1032), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1032), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1032), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1032), - [anon_sym_GT2] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(1030), - [anon_sym_in2] = ACTIONS(1032), - [anon_sym_STAR2] = ACTIONS(1030), - [anon_sym_and2] = ACTIONS(1032), - [anon_sym_xor2] = ACTIONS(1032), - [anon_sym_or2] = ACTIONS(1032), - [anon_sym_not_DASHin2] = ACTIONS(1032), - [anon_sym_starts_DASHwith2] = ACTIONS(1032), - [anon_sym_ends_DASHwith2] = ACTIONS(1032), - [anon_sym_EQ_EQ2] = ACTIONS(1032), - [anon_sym_BANG_EQ2] = ACTIONS(1032), - [anon_sym_LT2] = ACTIONS(1030), - [anon_sym_LT_EQ2] = ACTIONS(1032), - [anon_sym_GT_EQ2] = ACTIONS(1032), - [anon_sym_EQ_TILDE2] = ACTIONS(1032), - [anon_sym_BANG_TILDE2] = ACTIONS(1032), - [anon_sym_STAR_STAR2] = ACTIONS(1032), - [anon_sym_PLUS_PLUS2] = ACTIONS(1030), - [anon_sym_SLASH2] = ACTIONS(1030), - [anon_sym_mod2] = ACTIONS(1032), - [anon_sym_SLASH_SLASH2] = ACTIONS(1032), - [anon_sym_PLUS2] = ACTIONS(1030), - [anon_sym_bit_DASHshl2] = ACTIONS(1032), - [anon_sym_bit_DASHshr2] = ACTIONS(1032), - [anon_sym_bit_DASHand2] = ACTIONS(1032), - [anon_sym_bit_DASHxor2] = ACTIONS(1032), - [anon_sym_bit_DASHor2] = ACTIONS(1032), - [anon_sym_DOT_DOT2] = ACTIONS(4819), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4821), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4821), - [anon_sym_err_GT] = ACTIONS(1030), - [anon_sym_out_GT] = ACTIONS(1030), - [anon_sym_e_GT] = ACTIONS(1030), - [anon_sym_o_GT] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT] = ACTIONS(1030), - [anon_sym_err_GT_GT] = ACTIONS(1032), - [anon_sym_out_GT_GT] = ACTIONS(1032), - [anon_sym_e_GT_GT] = ACTIONS(1032), - [anon_sym_o_GT_GT] = ACTIONS(1032), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1032), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1032), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1032), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1032), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2032), + [anon_sym_DOT_DOT_LT] = ACTIONS(2032), + [anon_sym_null] = ACTIONS(2032), + [anon_sym_true] = ACTIONS(2032), + [anon_sym_false] = ACTIONS(2032), + [aux_sym__val_number_decimal_token1] = ACTIONS(2030), + [aux_sym__val_number_decimal_token2] = ACTIONS(2032), + [aux_sym__val_number_decimal_token3] = ACTIONS(2032), + [aux_sym__val_number_decimal_token4] = ACTIONS(2032), + [aux_sym__val_number_token1] = ACTIONS(2032), + [aux_sym__val_number_token2] = ACTIONS(2032), + [aux_sym__val_number_token3] = ACTIONS(2032), + [aux_sym__val_number_token4] = ACTIONS(2032), + [aux_sym__val_number_token5] = ACTIONS(2032), + [aux_sym__val_number_token6] = ACTIONS(2032), + [anon_sym_0b] = ACTIONS(2030), + [anon_sym_0o] = ACTIONS(2030), + [anon_sym_0x] = ACTIONS(2030), + [sym_val_date] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(2032), + [sym__str_single_quotes] = ACTIONS(2032), + [sym__str_back_ticks] = ACTIONS(2032), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2032), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2032), + [anon_sym_err_GT] = ACTIONS(2030), + [anon_sym_out_GT] = ACTIONS(2030), + [anon_sym_e_GT] = ACTIONS(2030), + [anon_sym_o_GT] = ACTIONS(2030), + [anon_sym_err_PLUSout_GT] = ACTIONS(2030), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2030), + [anon_sym_o_PLUSe_GT] = ACTIONS(2030), + [anon_sym_e_PLUSo_GT] = ACTIONS(2030), + [anon_sym_err_GT_GT] = ACTIONS(2032), + [anon_sym_out_GT_GT] = ACTIONS(2032), + [anon_sym_e_GT_GT] = ACTIONS(2032), + [anon_sym_o_GT_GT] = ACTIONS(2032), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2032), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2032), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2032), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2032), + [aux_sym_unquoted_token1] = ACTIONS(2030), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2032), }, - [1509] = { - [sym_path] = STATE(1703), - [sym_comment] = STATE(1509), - [aux_sym_cell_path_repeat1] = STATE(1509), + [1530] = { + [sym_path] = STATE(1678), + [sym_comment] = STATE(1530), + [aux_sym_cell_path_repeat1] = STATE(1530), [sym__newline] = ACTIONS(973), [anon_sym_SEMI] = ACTIONS(973), [anon_sym_PIPE] = ACTIONS(973), @@ -216727,7 +218479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(973), [anon_sym_RBRACE] = ACTIONS(973), [anon_sym_DOT_DOT] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(4823), + [anon_sym_DOT] = ACTIONS(4849), [anon_sym_DOT_DOT_EQ] = ACTIONS(973), [anon_sym_DOT_DOT_LT] = ACTIONS(973), [anon_sym_null] = ACTIONS(973), @@ -216772,1940 +218524,698 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(973), }, - [1510] = { - [sym_comment] = STATE(1510), - [ts_builtin_sym_end] = ACTIONS(1008), - [sym__newline] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_LBRACK] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1008), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), - [anon_sym_null] = ACTIONS(1008), - [anon_sym_true] = ACTIONS(1008), - [anon_sym_false] = ACTIONS(1008), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1008), - [aux_sym__val_number_decimal_token3] = ACTIONS(1008), - [aux_sym__val_number_decimal_token4] = ACTIONS(1008), - [aux_sym__val_number_token1] = ACTIONS(1008), - [aux_sym__val_number_token2] = ACTIONS(1008), - [aux_sym__val_number_token3] = ACTIONS(1008), - [aux_sym__val_number_token4] = ACTIONS(1008), - [aux_sym__val_number_token5] = ACTIONS(1008), - [aux_sym__val_number_token6] = ACTIONS(1008), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1008), - [anon_sym_DQUOTE] = ACTIONS(1008), - [sym__str_single_quotes] = ACTIONS(1008), - [sym__str_back_ticks] = ACTIONS(1008), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1008), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1008), - [anon_sym_err_GT] = ACTIONS(1006), - [anon_sym_out_GT] = ACTIONS(1006), - [anon_sym_e_GT] = ACTIONS(1006), - [anon_sym_o_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT] = ACTIONS(1006), - [anon_sym_err_GT_GT] = ACTIONS(1008), - [anon_sym_out_GT_GT] = ACTIONS(1008), - [anon_sym_e_GT_GT] = ACTIONS(1008), - [anon_sym_o_GT_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), - [aux_sym_unquoted_token1] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1008), - }, - [1511] = { - [sym_cell_path] = STATE(1925), - [sym_path] = STATE(1774), - [sym_comment] = STATE(1511), - [aux_sym_cell_path_repeat1] = STATE(1634), - [ts_builtin_sym_end] = ACTIONS(1935), - [sym__newline] = ACTIONS(1935), - [anon_sym_SEMI] = ACTIONS(1935), - [anon_sym_PIPE] = ACTIONS(1935), - [anon_sym_err_GT_PIPE] = ACTIONS(1935), - [anon_sym_out_GT_PIPE] = ACTIONS(1935), - [anon_sym_e_GT_PIPE] = ACTIONS(1935), - [anon_sym_o_GT_PIPE] = ACTIONS(1935), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1935), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1935), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1935), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1935), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_DOLLAR] = ACTIONS(1933), - [anon_sym_DASH_DASH] = ACTIONS(1935), - [anon_sym_DASH2] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1935), - [anon_sym_DOT_DOT] = ACTIONS(1933), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1935), - [anon_sym_DOT_DOT_LT] = ACTIONS(1935), - [anon_sym_null] = ACTIONS(1935), - [anon_sym_true] = ACTIONS(1935), - [anon_sym_false] = ACTIONS(1935), - [aux_sym__val_number_decimal_token1] = ACTIONS(1933), - [aux_sym__val_number_decimal_token2] = ACTIONS(1935), - [aux_sym__val_number_decimal_token3] = ACTIONS(1935), - [aux_sym__val_number_decimal_token4] = ACTIONS(1935), - [aux_sym__val_number_token1] = ACTIONS(1935), - [aux_sym__val_number_token2] = ACTIONS(1935), - [aux_sym__val_number_token3] = ACTIONS(1935), - [aux_sym__val_number_token4] = ACTIONS(1935), - [aux_sym__val_number_token5] = ACTIONS(1935), - [aux_sym__val_number_token6] = ACTIONS(1935), - [anon_sym_0b] = ACTIONS(1933), - [anon_sym_0o] = ACTIONS(1933), - [anon_sym_0x] = ACTIONS(1933), - [sym_val_date] = ACTIONS(1935), - [anon_sym_DQUOTE] = ACTIONS(1935), - [sym__str_single_quotes] = ACTIONS(1935), - [sym__str_back_ticks] = ACTIONS(1935), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1935), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1935), - [anon_sym_err_GT] = ACTIONS(1933), - [anon_sym_out_GT] = ACTIONS(1933), - [anon_sym_e_GT] = ACTIONS(1933), - [anon_sym_o_GT] = ACTIONS(1933), - [anon_sym_err_PLUSout_GT] = ACTIONS(1933), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1933), - [anon_sym_o_PLUSe_GT] = ACTIONS(1933), - [anon_sym_e_PLUSo_GT] = ACTIONS(1933), - [anon_sym_err_GT_GT] = ACTIONS(1935), - [anon_sym_out_GT_GT] = ACTIONS(1935), - [anon_sym_e_GT_GT] = ACTIONS(1935), - [anon_sym_o_GT_GT] = ACTIONS(1935), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1935), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1935), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1935), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1935), - [aux_sym_unquoted_token1] = ACTIONS(1933), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1935), - }, - [1512] = { - [sym_cell_path] = STATE(1926), - [sym_path] = STATE(1774), - [sym_comment] = STATE(1512), - [aux_sym_cell_path_repeat1] = STATE(1634), - [ts_builtin_sym_end] = ACTIONS(1946), - [sym__newline] = ACTIONS(1946), - [anon_sym_SEMI] = ACTIONS(1946), - [anon_sym_PIPE] = ACTIONS(1946), - [anon_sym_err_GT_PIPE] = ACTIONS(1946), - [anon_sym_out_GT_PIPE] = ACTIONS(1946), - [anon_sym_e_GT_PIPE] = ACTIONS(1946), - [anon_sym_o_GT_PIPE] = ACTIONS(1946), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1946), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1946), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1946), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1946), - [anon_sym_LBRACK] = ACTIONS(1946), - [anon_sym_LPAREN] = ACTIONS(1946), - [anon_sym_DOLLAR] = ACTIONS(1944), - [anon_sym_DASH_DASH] = ACTIONS(1946), - [anon_sym_DASH2] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_DOT_DOT] = ACTIONS(1944), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1946), - [anon_sym_DOT_DOT_LT] = ACTIONS(1946), - [anon_sym_null] = ACTIONS(1946), - [anon_sym_true] = ACTIONS(1946), - [anon_sym_false] = ACTIONS(1946), - [aux_sym__val_number_decimal_token1] = ACTIONS(1944), - [aux_sym__val_number_decimal_token2] = ACTIONS(1946), - [aux_sym__val_number_decimal_token3] = ACTIONS(1946), - [aux_sym__val_number_decimal_token4] = ACTIONS(1946), - [aux_sym__val_number_token1] = ACTIONS(1946), - [aux_sym__val_number_token2] = ACTIONS(1946), - [aux_sym__val_number_token3] = ACTIONS(1946), - [aux_sym__val_number_token4] = ACTIONS(1946), - [aux_sym__val_number_token5] = ACTIONS(1946), - [aux_sym__val_number_token6] = ACTIONS(1946), - [anon_sym_0b] = ACTIONS(1944), - [anon_sym_0o] = ACTIONS(1944), - [anon_sym_0x] = ACTIONS(1944), - [sym_val_date] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1946), - [sym__str_single_quotes] = ACTIONS(1946), - [sym__str_back_ticks] = ACTIONS(1946), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1946), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1946), - [anon_sym_err_GT] = ACTIONS(1944), - [anon_sym_out_GT] = ACTIONS(1944), - [anon_sym_e_GT] = ACTIONS(1944), - [anon_sym_o_GT] = ACTIONS(1944), - [anon_sym_err_PLUSout_GT] = ACTIONS(1944), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1944), - [anon_sym_o_PLUSe_GT] = ACTIONS(1944), - [anon_sym_e_PLUSo_GT] = ACTIONS(1944), - [anon_sym_err_GT_GT] = ACTIONS(1946), - [anon_sym_out_GT_GT] = ACTIONS(1946), - [anon_sym_e_GT_GT] = ACTIONS(1946), - [anon_sym_o_GT_GT] = ACTIONS(1946), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1946), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1946), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1946), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1946), - [aux_sym_unquoted_token1] = ACTIONS(1944), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1946), - }, - [1513] = { - [sym_cell_path] = STATE(1927), - [sym_path] = STATE(1774), - [sym_comment] = STATE(1513), - [aux_sym_cell_path_repeat1] = STATE(1634), - [ts_builtin_sym_end] = ACTIONS(1950), - [sym__newline] = ACTIONS(1950), - [anon_sym_SEMI] = ACTIONS(1950), - [anon_sym_PIPE] = ACTIONS(1950), - [anon_sym_err_GT_PIPE] = ACTIONS(1950), - [anon_sym_out_GT_PIPE] = ACTIONS(1950), - [anon_sym_e_GT_PIPE] = ACTIONS(1950), - [anon_sym_o_GT_PIPE] = ACTIONS(1950), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1950), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1950), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1950), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1950), - [anon_sym_LBRACK] = ACTIONS(1950), - [anon_sym_LPAREN] = ACTIONS(1950), - [anon_sym_DOLLAR] = ACTIONS(1948), - [anon_sym_DASH_DASH] = ACTIONS(1950), - [anon_sym_DASH2] = ACTIONS(1948), - [anon_sym_LBRACE] = ACTIONS(1950), - [anon_sym_DOT_DOT] = ACTIONS(1948), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1950), - [anon_sym_DOT_DOT_LT] = ACTIONS(1950), - [anon_sym_null] = ACTIONS(1950), - [anon_sym_true] = ACTIONS(1950), - [anon_sym_false] = ACTIONS(1950), - [aux_sym__val_number_decimal_token1] = ACTIONS(1948), - [aux_sym__val_number_decimal_token2] = ACTIONS(1950), - [aux_sym__val_number_decimal_token3] = ACTIONS(1950), - [aux_sym__val_number_decimal_token4] = ACTIONS(1950), - [aux_sym__val_number_token1] = ACTIONS(1950), - [aux_sym__val_number_token2] = ACTIONS(1950), - [aux_sym__val_number_token3] = ACTIONS(1950), - [aux_sym__val_number_token4] = ACTIONS(1950), - [aux_sym__val_number_token5] = ACTIONS(1950), - [aux_sym__val_number_token6] = ACTIONS(1950), - [anon_sym_0b] = ACTIONS(1948), - [anon_sym_0o] = ACTIONS(1948), - [anon_sym_0x] = ACTIONS(1948), - [sym_val_date] = ACTIONS(1950), - [anon_sym_DQUOTE] = ACTIONS(1950), - [sym__str_single_quotes] = ACTIONS(1950), - [sym__str_back_ticks] = ACTIONS(1950), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1950), - [anon_sym_err_GT] = ACTIONS(1948), - [anon_sym_out_GT] = ACTIONS(1948), - [anon_sym_e_GT] = ACTIONS(1948), - [anon_sym_o_GT] = ACTIONS(1948), - [anon_sym_err_PLUSout_GT] = ACTIONS(1948), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1948), - [anon_sym_o_PLUSe_GT] = ACTIONS(1948), - [anon_sym_e_PLUSo_GT] = ACTIONS(1948), - [anon_sym_err_GT_GT] = ACTIONS(1950), - [anon_sym_out_GT_GT] = ACTIONS(1950), - [anon_sym_e_GT_GT] = ACTIONS(1950), - [anon_sym_o_GT_GT] = ACTIONS(1950), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1950), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1950), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1950), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1950), - [aux_sym_unquoted_token1] = ACTIONS(1948), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1950), - }, - [1514] = { - [sym_comment] = STATE(1514), - [ts_builtin_sym_end] = ACTIONS(1757), - [sym__newline] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_err_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_GT_PIPE] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), - [anon_sym_DOT_DOT_LT] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(4789), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_0b] = ACTIONS(1755), - [anon_sym_0o] = ACTIONS(1755), - [anon_sym_0x] = ACTIONS(1755), - [sym_val_date] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), - [anon_sym_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [1515] = { - [sym_cell_path] = STATE(1928), - [sym_path] = STATE(1774), - [sym_comment] = STATE(1515), - [aux_sym_cell_path_repeat1] = STATE(1634), - [ts_builtin_sym_end] = ACTIONS(1954), - [sym__newline] = ACTIONS(1954), - [anon_sym_SEMI] = ACTIONS(1954), - [anon_sym_PIPE] = ACTIONS(1954), - [anon_sym_err_GT_PIPE] = ACTIONS(1954), - [anon_sym_out_GT_PIPE] = ACTIONS(1954), - [anon_sym_e_GT_PIPE] = ACTIONS(1954), - [anon_sym_o_GT_PIPE] = ACTIONS(1954), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1954), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1954), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1954), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(1954), - [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_DOLLAR] = ACTIONS(1952), - [anon_sym_DASH_DASH] = ACTIONS(1954), - [anon_sym_DASH2] = ACTIONS(1952), - [anon_sym_LBRACE] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1952), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1954), - [anon_sym_DOT_DOT_LT] = ACTIONS(1954), - [anon_sym_null] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1954), - [anon_sym_false] = ACTIONS(1954), - [aux_sym__val_number_decimal_token1] = ACTIONS(1952), - [aux_sym__val_number_decimal_token2] = ACTIONS(1954), - [aux_sym__val_number_decimal_token3] = ACTIONS(1954), - [aux_sym__val_number_decimal_token4] = ACTIONS(1954), - [aux_sym__val_number_token1] = ACTIONS(1954), - [aux_sym__val_number_token2] = ACTIONS(1954), - [aux_sym__val_number_token3] = ACTIONS(1954), - [aux_sym__val_number_token4] = ACTIONS(1954), - [aux_sym__val_number_token5] = ACTIONS(1954), - [aux_sym__val_number_token6] = ACTIONS(1954), - [anon_sym_0b] = ACTIONS(1952), - [anon_sym_0o] = ACTIONS(1952), - [anon_sym_0x] = ACTIONS(1952), - [sym_val_date] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym__str_single_quotes] = ACTIONS(1954), - [sym__str_back_ticks] = ACTIONS(1954), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1954), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1954), - [anon_sym_err_GT] = ACTIONS(1952), - [anon_sym_out_GT] = ACTIONS(1952), - [anon_sym_e_GT] = ACTIONS(1952), - [anon_sym_o_GT] = ACTIONS(1952), - [anon_sym_err_PLUSout_GT] = ACTIONS(1952), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1952), - [anon_sym_o_PLUSe_GT] = ACTIONS(1952), - [anon_sym_e_PLUSo_GT] = ACTIONS(1952), - [anon_sym_err_GT_GT] = ACTIONS(1954), - [anon_sym_out_GT_GT] = ACTIONS(1954), - [anon_sym_e_GT_GT] = ACTIONS(1954), - [anon_sym_o_GT_GT] = ACTIONS(1954), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1954), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1954), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1954), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1954), - [aux_sym_unquoted_token1] = ACTIONS(1952), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1954), - }, - [1516] = { - [sym_cell_path] = STATE(1929), - [sym_path] = STATE(1774), - [sym_comment] = STATE(1516), - [aux_sym_cell_path_repeat1] = STATE(1634), - [ts_builtin_sym_end] = ACTIONS(1962), - [sym__newline] = ACTIONS(1962), - [anon_sym_SEMI] = ACTIONS(1962), - [anon_sym_PIPE] = ACTIONS(1962), - [anon_sym_err_GT_PIPE] = ACTIONS(1962), - [anon_sym_out_GT_PIPE] = ACTIONS(1962), - [anon_sym_e_GT_PIPE] = ACTIONS(1962), - [anon_sym_o_GT_PIPE] = ACTIONS(1962), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1962), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1962), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1962), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1962), - [anon_sym_LBRACK] = ACTIONS(1962), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_DOLLAR] = ACTIONS(1960), - [anon_sym_DASH_DASH] = ACTIONS(1962), - [anon_sym_DASH2] = ACTIONS(1960), - [anon_sym_LBRACE] = ACTIONS(1962), - [anon_sym_DOT_DOT] = ACTIONS(1960), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1962), - [anon_sym_DOT_DOT_LT] = ACTIONS(1962), - [anon_sym_null] = ACTIONS(1962), - [anon_sym_true] = ACTIONS(1962), - [anon_sym_false] = ACTIONS(1962), - [aux_sym__val_number_decimal_token1] = ACTIONS(1960), - [aux_sym__val_number_decimal_token2] = ACTIONS(1962), - [aux_sym__val_number_decimal_token3] = ACTIONS(1962), - [aux_sym__val_number_decimal_token4] = ACTIONS(1962), - [aux_sym__val_number_token1] = ACTIONS(1962), - [aux_sym__val_number_token2] = ACTIONS(1962), - [aux_sym__val_number_token3] = ACTIONS(1962), - [aux_sym__val_number_token4] = ACTIONS(1962), - [aux_sym__val_number_token5] = ACTIONS(1962), - [aux_sym__val_number_token6] = ACTIONS(1962), - [anon_sym_0b] = ACTIONS(1960), - [anon_sym_0o] = ACTIONS(1960), - [anon_sym_0x] = ACTIONS(1960), - [sym_val_date] = ACTIONS(1962), - [anon_sym_DQUOTE] = ACTIONS(1962), - [sym__str_single_quotes] = ACTIONS(1962), - [sym__str_back_ticks] = ACTIONS(1962), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1962), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1962), - [anon_sym_err_GT] = ACTIONS(1960), - [anon_sym_out_GT] = ACTIONS(1960), - [anon_sym_e_GT] = ACTIONS(1960), - [anon_sym_o_GT] = ACTIONS(1960), - [anon_sym_err_PLUSout_GT] = ACTIONS(1960), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1960), - [anon_sym_o_PLUSe_GT] = ACTIONS(1960), - [anon_sym_e_PLUSo_GT] = ACTIONS(1960), - [anon_sym_err_GT_GT] = ACTIONS(1962), - [anon_sym_out_GT_GT] = ACTIONS(1962), - [anon_sym_e_GT_GT] = ACTIONS(1962), - [anon_sym_o_GT_GT] = ACTIONS(1962), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1962), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1962), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1962), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1962), - [aux_sym_unquoted_token1] = ACTIONS(1960), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1962), - }, - [1517] = { - [sym_cell_path] = STATE(1930), - [sym_path] = STATE(1774), - [sym_comment] = STATE(1517), - [aux_sym_cell_path_repeat1] = STATE(1634), - [ts_builtin_sym_end] = ACTIONS(1970), - [sym__newline] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_err_GT_PIPE] = ACTIONS(1970), - [anon_sym_out_GT_PIPE] = ACTIONS(1970), - [anon_sym_e_GT_PIPE] = ACTIONS(1970), - [anon_sym_o_GT_PIPE] = ACTIONS(1970), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1970), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1970), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1970), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1970), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_LPAREN] = ACTIONS(1970), - [anon_sym_DOLLAR] = ACTIONS(1968), - [anon_sym_DASH_DASH] = ACTIONS(1970), - [anon_sym_DASH2] = ACTIONS(1968), - [anon_sym_LBRACE] = ACTIONS(1970), - [anon_sym_DOT_DOT] = ACTIONS(1968), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1970), - [anon_sym_DOT_DOT_LT] = ACTIONS(1970), - [anon_sym_null] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(1970), - [anon_sym_false] = ACTIONS(1970), - [aux_sym__val_number_decimal_token1] = ACTIONS(1968), - [aux_sym__val_number_decimal_token2] = ACTIONS(1970), - [aux_sym__val_number_decimal_token3] = ACTIONS(1970), - [aux_sym__val_number_decimal_token4] = ACTIONS(1970), - [aux_sym__val_number_token1] = ACTIONS(1970), - [aux_sym__val_number_token2] = ACTIONS(1970), - [aux_sym__val_number_token3] = ACTIONS(1970), - [aux_sym__val_number_token4] = ACTIONS(1970), - [aux_sym__val_number_token5] = ACTIONS(1970), - [aux_sym__val_number_token6] = ACTIONS(1970), - [anon_sym_0b] = ACTIONS(1968), - [anon_sym_0o] = ACTIONS(1968), - [anon_sym_0x] = ACTIONS(1968), - [sym_val_date] = ACTIONS(1970), - [anon_sym_DQUOTE] = ACTIONS(1970), - [sym__str_single_quotes] = ACTIONS(1970), - [sym__str_back_ticks] = ACTIONS(1970), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1970), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1970), - [anon_sym_err_GT] = ACTIONS(1968), - [anon_sym_out_GT] = ACTIONS(1968), - [anon_sym_e_GT] = ACTIONS(1968), - [anon_sym_o_GT] = ACTIONS(1968), - [anon_sym_err_PLUSout_GT] = ACTIONS(1968), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1968), - [anon_sym_o_PLUSe_GT] = ACTIONS(1968), - [anon_sym_e_PLUSo_GT] = ACTIONS(1968), - [anon_sym_err_GT_GT] = ACTIONS(1970), - [anon_sym_out_GT_GT] = ACTIONS(1970), - [anon_sym_e_GT_GT] = ACTIONS(1970), - [anon_sym_o_GT_GT] = ACTIONS(1970), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1970), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1970), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1970), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1970), - [aux_sym_unquoted_token1] = ACTIONS(1968), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1970), - }, - [1518] = { - [sym_comment] = STATE(1518), - [sym__newline] = ACTIONS(4826), - [anon_sym_SEMI] = ACTIONS(4826), - [anon_sym_PIPE] = ACTIONS(4826), - [anon_sym_err_GT_PIPE] = ACTIONS(4826), - [anon_sym_out_GT_PIPE] = ACTIONS(4826), - [anon_sym_e_GT_PIPE] = ACTIONS(4826), - [anon_sym_o_GT_PIPE] = ACTIONS(4826), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4826), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4826), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4826), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4826), - [anon_sym_LBRACK] = ACTIONS(4826), - [anon_sym_LPAREN] = ACTIONS(4826), - [anon_sym_RPAREN] = ACTIONS(4826), - [anon_sym_DOLLAR] = ACTIONS(4828), - [anon_sym_DASH_DASH] = ACTIONS(4826), - [anon_sym_DASH2] = ACTIONS(4828), - [anon_sym_LBRACE] = ACTIONS(4826), - [anon_sym_RBRACE] = ACTIONS(4826), - [anon_sym_DOT_DOT] = ACTIONS(4828), - [anon_sym_DOT_DOT2] = ACTIONS(4830), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4828), - [anon_sym_DOT_DOT_LT] = ACTIONS(4828), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4832), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4832), - [anon_sym_null] = ACTIONS(4826), - [anon_sym_true] = ACTIONS(4826), - [anon_sym_false] = ACTIONS(4826), - [aux_sym__val_number_decimal_token1] = ACTIONS(4828), - [aux_sym__val_number_decimal_token2] = ACTIONS(4826), - [aux_sym__val_number_decimal_token3] = ACTIONS(4826), - [aux_sym__val_number_decimal_token4] = ACTIONS(4826), - [aux_sym__val_number_token1] = ACTIONS(4826), - [aux_sym__val_number_token2] = ACTIONS(4826), - [aux_sym__val_number_token3] = ACTIONS(4826), - [aux_sym__val_number_token4] = ACTIONS(4826), - [aux_sym__val_number_token5] = ACTIONS(4826), - [aux_sym__val_number_token6] = ACTIONS(4826), - [anon_sym_0b] = ACTIONS(4828), - [anon_sym_0o] = ACTIONS(4828), - [anon_sym_0x] = ACTIONS(4828), - [sym_val_date] = ACTIONS(4826), - [anon_sym_DQUOTE] = ACTIONS(4826), - [sym__str_single_quotes] = ACTIONS(4826), - [sym__str_back_ticks] = ACTIONS(4826), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4826), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4826), - [anon_sym_err_GT] = ACTIONS(4828), - [anon_sym_out_GT] = ACTIONS(4828), - [anon_sym_e_GT] = ACTIONS(4828), - [anon_sym_o_GT] = ACTIONS(4828), - [anon_sym_err_PLUSout_GT] = ACTIONS(4828), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4828), - [anon_sym_o_PLUSe_GT] = ACTIONS(4828), - [anon_sym_e_PLUSo_GT] = ACTIONS(4828), - [anon_sym_err_GT_GT] = ACTIONS(4826), - [anon_sym_out_GT_GT] = ACTIONS(4826), - [anon_sym_e_GT_GT] = ACTIONS(4826), - [anon_sym_o_GT_GT] = ACTIONS(4826), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4826), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4826), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4826), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4826), - [aux_sym_unquoted_token1] = ACTIONS(4828), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4826), - }, - [1519] = { - [sym_cell_path] = STATE(1931), - [sym_path] = STATE(1774), - [sym_comment] = STATE(1519), - [aux_sym_cell_path_repeat1] = STATE(1634), - [ts_builtin_sym_end] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_LBRACK] = ACTIONS(1974), - [anon_sym_LPAREN] = ACTIONS(1974), - [anon_sym_DOLLAR] = ACTIONS(1972), - [anon_sym_DASH_DASH] = ACTIONS(1974), - [anon_sym_DASH2] = ACTIONS(1972), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_DOT_DOT] = ACTIONS(1972), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [anon_sym_null] = ACTIONS(1974), - [anon_sym_true] = ACTIONS(1974), - [anon_sym_false] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1972), - [aux_sym__val_number_decimal_token2] = ACTIONS(1974), - [aux_sym__val_number_decimal_token3] = ACTIONS(1974), - [aux_sym__val_number_decimal_token4] = ACTIONS(1974), - [aux_sym__val_number_token1] = ACTIONS(1974), - [aux_sym__val_number_token2] = ACTIONS(1974), - [aux_sym__val_number_token3] = ACTIONS(1974), - [aux_sym__val_number_token4] = ACTIONS(1974), - [aux_sym__val_number_token5] = ACTIONS(1974), - [aux_sym__val_number_token6] = ACTIONS(1974), - [anon_sym_0b] = ACTIONS(1972), - [anon_sym_0o] = ACTIONS(1972), - [anon_sym_0x] = ACTIONS(1972), - [sym_val_date] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1974), - [sym__str_single_quotes] = ACTIONS(1974), - [sym__str_back_ticks] = ACTIONS(1974), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1974), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1974), - [anon_sym_err_GT] = ACTIONS(1972), - [anon_sym_out_GT] = ACTIONS(1972), - [anon_sym_e_GT] = ACTIONS(1972), - [anon_sym_o_GT] = ACTIONS(1972), - [anon_sym_err_PLUSout_GT] = ACTIONS(1972), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1972), - [anon_sym_o_PLUSe_GT] = ACTIONS(1972), - [anon_sym_e_PLUSo_GT] = ACTIONS(1972), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), - [aux_sym_unquoted_token1] = ACTIONS(1972), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1974), - }, - [1520] = { - [sym_cell_path] = STATE(1932), - [sym_path] = STATE(1774), - [sym_comment] = STATE(1520), - [aux_sym_cell_path_repeat1] = STATE(1634), - [ts_builtin_sym_end] = ACTIONS(1986), - [sym__newline] = ACTIONS(1986), - [anon_sym_SEMI] = ACTIONS(1986), - [anon_sym_PIPE] = ACTIONS(1986), - [anon_sym_err_GT_PIPE] = ACTIONS(1986), - [anon_sym_out_GT_PIPE] = ACTIONS(1986), - [anon_sym_e_GT_PIPE] = ACTIONS(1986), - [anon_sym_o_GT_PIPE] = ACTIONS(1986), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1986), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1986), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1986), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1986), - [anon_sym_LBRACK] = ACTIONS(1986), - [anon_sym_LPAREN] = ACTIONS(1986), - [anon_sym_DOLLAR] = ACTIONS(1984), - [anon_sym_DASH_DASH] = ACTIONS(1986), - [anon_sym_DASH2] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_DOT_DOT] = ACTIONS(1984), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1986), - [anon_sym_DOT_DOT_LT] = ACTIONS(1986), - [anon_sym_null] = ACTIONS(1986), - [anon_sym_true] = ACTIONS(1986), - [anon_sym_false] = ACTIONS(1986), - [aux_sym__val_number_decimal_token1] = ACTIONS(1984), - [aux_sym__val_number_decimal_token2] = ACTIONS(1986), - [aux_sym__val_number_decimal_token3] = ACTIONS(1986), - [aux_sym__val_number_decimal_token4] = ACTIONS(1986), - [aux_sym__val_number_token1] = ACTIONS(1986), - [aux_sym__val_number_token2] = ACTIONS(1986), - [aux_sym__val_number_token3] = ACTIONS(1986), - [aux_sym__val_number_token4] = ACTIONS(1986), - [aux_sym__val_number_token5] = ACTIONS(1986), - [aux_sym__val_number_token6] = ACTIONS(1986), - [anon_sym_0b] = ACTIONS(1984), - [anon_sym_0o] = ACTIONS(1984), - [anon_sym_0x] = ACTIONS(1984), - [sym_val_date] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1986), - [sym__str_single_quotes] = ACTIONS(1986), - [sym__str_back_ticks] = ACTIONS(1986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1986), - [anon_sym_err_GT] = ACTIONS(1984), - [anon_sym_out_GT] = ACTIONS(1984), - [anon_sym_e_GT] = ACTIONS(1984), - [anon_sym_o_GT] = ACTIONS(1984), - [anon_sym_err_PLUSout_GT] = ACTIONS(1984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1984), - [anon_sym_o_PLUSe_GT] = ACTIONS(1984), - [anon_sym_e_PLUSo_GT] = ACTIONS(1984), - [anon_sym_err_GT_GT] = ACTIONS(1986), - [anon_sym_out_GT_GT] = ACTIONS(1986), - [anon_sym_e_GT_GT] = ACTIONS(1986), - [anon_sym_o_GT_GT] = ACTIONS(1986), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1986), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1986), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1986), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1986), - [aux_sym_unquoted_token1] = ACTIONS(1984), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1986), - }, - [1521] = { - [sym_comment] = STATE(1521), - [sym__newline] = ACTIONS(2173), - [anon_sym_SEMI] = ACTIONS(2173), - [anon_sym_PIPE] = ACTIONS(2173), - [anon_sym_err_GT_PIPE] = ACTIONS(2173), - [anon_sym_out_GT_PIPE] = ACTIONS(2173), - [anon_sym_e_GT_PIPE] = ACTIONS(2173), - [anon_sym_o_GT_PIPE] = ACTIONS(2173), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2173), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2173), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2173), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2173), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2173), - [anon_sym_RPAREN] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2173), - [anon_sym_DASH2] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2173), - [anon_sym_RBRACE] = ACTIONS(2173), - [anon_sym_DOT_DOT] = ACTIONS(2167), - [anon_sym_DOT_DOT2] = ACTIONS(4834), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2167), - [anon_sym_DOT_DOT_LT] = ACTIONS(2167), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4836), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4836), - [anon_sym_null] = ACTIONS(2173), - [anon_sym_true] = ACTIONS(2173), - [anon_sym_false] = ACTIONS(2173), - [aux_sym__val_number_decimal_token1] = ACTIONS(2167), - [aux_sym__val_number_decimal_token2] = ACTIONS(2173), - [aux_sym__val_number_decimal_token3] = ACTIONS(2173), - [aux_sym__val_number_decimal_token4] = ACTIONS(2173), - [aux_sym__val_number_token1] = ACTIONS(2173), - [aux_sym__val_number_token2] = ACTIONS(2173), - [aux_sym__val_number_token3] = ACTIONS(2173), - [aux_sym__val_number_token4] = ACTIONS(2173), - [aux_sym__val_number_token5] = ACTIONS(2173), - [aux_sym__val_number_token6] = ACTIONS(2173), - [anon_sym_0b] = ACTIONS(2167), - [anon_sym_0o] = ACTIONS(2167), - [anon_sym_0x] = ACTIONS(2167), - [sym_val_date] = ACTIONS(2173), - [anon_sym_DQUOTE] = ACTIONS(2173), - [sym__str_single_quotes] = ACTIONS(2173), - [sym__str_back_ticks] = ACTIONS(2173), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2173), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2173), - [anon_sym_err_GT] = ACTIONS(2167), - [anon_sym_out_GT] = ACTIONS(2167), - [anon_sym_e_GT] = ACTIONS(2167), - [anon_sym_o_GT] = ACTIONS(2167), - [anon_sym_err_PLUSout_GT] = ACTIONS(2167), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2167), - [anon_sym_o_PLUSe_GT] = ACTIONS(2167), - [anon_sym_e_PLUSo_GT] = ACTIONS(2167), - [anon_sym_err_GT_GT] = ACTIONS(2173), - [anon_sym_out_GT_GT] = ACTIONS(2173), - [anon_sym_e_GT_GT] = ACTIONS(2173), - [anon_sym_o_GT_GT] = ACTIONS(2173), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2173), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2173), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2173), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2173), - [aux_sym_unquoted_token1] = ACTIONS(2167), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2173), - }, - [1522] = { - [sym_comment] = STATE(1522), - [sym__newline] = ACTIONS(2181), - [anon_sym_SEMI] = ACTIONS(2181), - [anon_sym_PIPE] = ACTIONS(2181), - [anon_sym_err_GT_PIPE] = ACTIONS(2181), - [anon_sym_out_GT_PIPE] = ACTIONS(2181), - [anon_sym_e_GT_PIPE] = ACTIONS(2181), - [anon_sym_o_GT_PIPE] = ACTIONS(2181), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2181), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2181), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2181), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_RPAREN] = ACTIONS(2181), - [anon_sym_DOLLAR] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2181), - [anon_sym_DASH2] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2181), - [anon_sym_DOT_DOT] = ACTIONS(2175), - [anon_sym_DOT_DOT2] = ACTIONS(4838), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2175), - [anon_sym_DOT_DOT_LT] = ACTIONS(2175), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4840), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4840), - [anon_sym_null] = ACTIONS(2181), - [anon_sym_true] = ACTIONS(2181), - [anon_sym_false] = ACTIONS(2181), - [aux_sym__val_number_decimal_token1] = ACTIONS(2175), - [aux_sym__val_number_decimal_token2] = ACTIONS(2181), - [aux_sym__val_number_decimal_token3] = ACTIONS(2181), - [aux_sym__val_number_decimal_token4] = ACTIONS(2181), - [aux_sym__val_number_token1] = ACTIONS(2181), - [aux_sym__val_number_token2] = ACTIONS(2181), - [aux_sym__val_number_token3] = ACTIONS(2181), - [aux_sym__val_number_token4] = ACTIONS(2181), - [aux_sym__val_number_token5] = ACTIONS(2181), - [aux_sym__val_number_token6] = ACTIONS(2181), - [anon_sym_0b] = ACTIONS(2175), - [anon_sym_0o] = ACTIONS(2175), - [anon_sym_0x] = ACTIONS(2175), - [sym_val_date] = ACTIONS(2181), - [anon_sym_DQUOTE] = ACTIONS(2181), - [sym__str_single_quotes] = ACTIONS(2181), - [sym__str_back_ticks] = ACTIONS(2181), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2181), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2181), - [anon_sym_err_GT] = ACTIONS(2175), - [anon_sym_out_GT] = ACTIONS(2175), - [anon_sym_e_GT] = ACTIONS(2175), - [anon_sym_o_GT] = ACTIONS(2175), - [anon_sym_err_PLUSout_GT] = ACTIONS(2175), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2175), - [anon_sym_o_PLUSe_GT] = ACTIONS(2175), - [anon_sym_e_PLUSo_GT] = ACTIONS(2175), - [anon_sym_err_GT_GT] = ACTIONS(2181), - [anon_sym_out_GT_GT] = ACTIONS(2181), - [anon_sym_e_GT_GT] = ACTIONS(2181), - [anon_sym_o_GT_GT] = ACTIONS(2181), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2181), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2181), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2181), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2181), - [aux_sym_unquoted_token1] = ACTIONS(2175), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2181), - }, - [1523] = { - [sym_comment] = STATE(1523), - [sym__newline] = ACTIONS(1020), - [anon_sym_SEMI] = ACTIONS(1020), - [anon_sym_PIPE] = ACTIONS(1020), - [anon_sym_err_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_GT_PIPE] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1020), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_RPAREN] = ACTIONS(1020), - [anon_sym_DOLLAR] = ACTIONS(1018), - [anon_sym_DASH_DASH] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_DOT_DOT] = ACTIONS(1018), - [anon_sym_DOT_DOT2] = ACTIONS(1018), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1018), - [anon_sym_DOT_DOT_LT] = ACTIONS(1018), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1020), - [anon_sym_null] = ACTIONS(1020), - [anon_sym_true] = ACTIONS(1020), - [anon_sym_false] = ACTIONS(1020), - [aux_sym__val_number_decimal_token1] = ACTIONS(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1020), - [aux_sym__val_number_decimal_token3] = ACTIONS(1020), - [aux_sym__val_number_decimal_token4] = ACTIONS(1020), - [aux_sym__val_number_token1] = ACTIONS(1020), - [aux_sym__val_number_token2] = ACTIONS(1020), - [aux_sym__val_number_token3] = ACTIONS(1020), - [aux_sym__val_number_token4] = ACTIONS(1020), - [aux_sym__val_number_token5] = ACTIONS(1020), - [aux_sym__val_number_token6] = ACTIONS(1020), - [anon_sym_0b] = ACTIONS(1018), - [anon_sym_0o] = ACTIONS(1018), - [anon_sym_0x] = ACTIONS(1018), - [sym_val_date] = ACTIONS(1020), - [anon_sym_DQUOTE] = ACTIONS(1020), - [sym__str_single_quotes] = ACTIONS(1020), - [sym__str_back_ticks] = ACTIONS(1020), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1020), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1020), - [anon_sym_err_GT] = ACTIONS(1018), - [anon_sym_out_GT] = ACTIONS(1018), - [anon_sym_e_GT] = ACTIONS(1018), - [anon_sym_o_GT] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT] = ACTIONS(1018), - [anon_sym_err_GT_GT] = ACTIONS(1020), - [anon_sym_out_GT_GT] = ACTIONS(1020), - [anon_sym_e_GT_GT] = ACTIONS(1020), - [anon_sym_o_GT_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), - [aux_sym_unquoted_token1] = ACTIONS(1018), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1020), - }, - [1524] = { - [sym_comment] = STATE(1524), - [sym__newline] = ACTIONS(2139), - [anon_sym_SEMI] = ACTIONS(2139), - [anon_sym_PIPE] = ACTIONS(2139), - [anon_sym_err_GT_PIPE] = ACTIONS(2139), - [anon_sym_out_GT_PIPE] = ACTIONS(2139), - [anon_sym_e_GT_PIPE] = ACTIONS(2139), - [anon_sym_o_GT_PIPE] = ACTIONS(2139), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2139), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2139), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2139), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_RPAREN] = ACTIONS(2139), - [anon_sym_DOLLAR] = ACTIONS(2133), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [anon_sym_DASH2] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_RBRACE] = ACTIONS(2139), - [anon_sym_DOT_DOT] = ACTIONS(2133), - [anon_sym_DOT_DOT2] = ACTIONS(4842), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2133), - [anon_sym_DOT_DOT_LT] = ACTIONS(2133), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4844), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4844), - [anon_sym_null] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2139), - [anon_sym_false] = ACTIONS(2139), - [aux_sym__val_number_decimal_token1] = ACTIONS(2133), - [aux_sym__val_number_decimal_token2] = ACTIONS(2139), - [aux_sym__val_number_decimal_token3] = ACTIONS(2139), - [aux_sym__val_number_decimal_token4] = ACTIONS(2139), - [aux_sym__val_number_token1] = ACTIONS(2139), - [aux_sym__val_number_token2] = ACTIONS(2139), - [aux_sym__val_number_token3] = ACTIONS(2139), - [aux_sym__val_number_token4] = ACTIONS(2139), - [aux_sym__val_number_token5] = ACTIONS(2139), - [aux_sym__val_number_token6] = ACTIONS(2139), - [anon_sym_0b] = ACTIONS(2133), - [anon_sym_0o] = ACTIONS(2133), - [anon_sym_0x] = ACTIONS(2133), - [sym_val_date] = ACTIONS(2139), - [anon_sym_DQUOTE] = ACTIONS(2139), - [sym__str_single_quotes] = ACTIONS(2139), - [sym__str_back_ticks] = ACTIONS(2139), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2139), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2139), - [anon_sym_err_GT] = ACTIONS(2133), - [anon_sym_out_GT] = ACTIONS(2133), - [anon_sym_e_GT] = ACTIONS(2133), - [anon_sym_o_GT] = ACTIONS(2133), - [anon_sym_err_PLUSout_GT] = ACTIONS(2133), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2133), - [anon_sym_o_PLUSe_GT] = ACTIONS(2133), - [anon_sym_e_PLUSo_GT] = ACTIONS(2133), - [anon_sym_err_GT_GT] = ACTIONS(2139), - [anon_sym_out_GT_GT] = ACTIONS(2139), - [anon_sym_e_GT_GT] = ACTIONS(2139), - [anon_sym_o_GT_GT] = ACTIONS(2139), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2139), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2139), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2139), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2139), - [aux_sym_unquoted_token1] = ACTIONS(2133), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2139), - }, - [1525] = { - [sym_comment] = STATE(1525), - [ts_builtin_sym_end] = ACTIONS(1757), - [sym__newline] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_err_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_GT_PIPE] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_DOT] = ACTIONS(4846), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(4848), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_0b] = ACTIONS(1755), - [anon_sym_0o] = ACTIONS(1755), - [anon_sym_0x] = ACTIONS(1755), - [sym_val_date] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), - [anon_sym_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [aux_sym_unquoted_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [1526] = { - [sym_cell_path] = STATE(1933), - [sym_path] = STATE(1774), - [sym_comment] = STATE(1526), - [aux_sym_cell_path_repeat1] = STATE(1634), - [ts_builtin_sym_end] = ACTIONS(1990), - [sym__newline] = ACTIONS(1990), - [anon_sym_SEMI] = ACTIONS(1990), - [anon_sym_PIPE] = ACTIONS(1990), - [anon_sym_err_GT_PIPE] = ACTIONS(1990), - [anon_sym_out_GT_PIPE] = ACTIONS(1990), - [anon_sym_e_GT_PIPE] = ACTIONS(1990), - [anon_sym_o_GT_PIPE] = ACTIONS(1990), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1990), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1990), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1990), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1990), - [anon_sym_LBRACK] = ACTIONS(1990), - [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_DOLLAR] = ACTIONS(1988), - [anon_sym_DASH_DASH] = ACTIONS(1990), - [anon_sym_DASH2] = ACTIONS(1988), - [anon_sym_LBRACE] = ACTIONS(1990), - [anon_sym_DOT_DOT] = ACTIONS(1988), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1990), - [anon_sym_DOT_DOT_LT] = ACTIONS(1990), - [anon_sym_null] = ACTIONS(1990), - [anon_sym_true] = ACTIONS(1990), - [anon_sym_false] = ACTIONS(1990), - [aux_sym__val_number_decimal_token1] = ACTIONS(1988), - [aux_sym__val_number_decimal_token2] = ACTIONS(1990), - [aux_sym__val_number_decimal_token3] = ACTIONS(1990), - [aux_sym__val_number_decimal_token4] = ACTIONS(1990), - [aux_sym__val_number_token1] = ACTIONS(1990), - [aux_sym__val_number_token2] = ACTIONS(1990), - [aux_sym__val_number_token3] = ACTIONS(1990), - [aux_sym__val_number_token4] = ACTIONS(1990), - [aux_sym__val_number_token5] = ACTIONS(1990), - [aux_sym__val_number_token6] = ACTIONS(1990), - [anon_sym_0b] = ACTIONS(1988), - [anon_sym_0o] = ACTIONS(1988), - [anon_sym_0x] = ACTIONS(1988), - [sym_val_date] = ACTIONS(1990), - [anon_sym_DQUOTE] = ACTIONS(1990), - [sym__str_single_quotes] = ACTIONS(1990), - [sym__str_back_ticks] = ACTIONS(1990), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1990), - [anon_sym_err_GT] = ACTIONS(1988), - [anon_sym_out_GT] = ACTIONS(1988), - [anon_sym_e_GT] = ACTIONS(1988), - [anon_sym_o_GT] = ACTIONS(1988), - [anon_sym_err_PLUSout_GT] = ACTIONS(1988), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1988), - [anon_sym_o_PLUSe_GT] = ACTIONS(1988), - [anon_sym_e_PLUSo_GT] = ACTIONS(1988), - [anon_sym_err_GT_GT] = ACTIONS(1990), - [anon_sym_out_GT_GT] = ACTIONS(1990), - [anon_sym_e_GT_GT] = ACTIONS(1990), - [anon_sym_o_GT_GT] = ACTIONS(1990), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1990), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1990), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1990), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1990), - [aux_sym_unquoted_token1] = ACTIONS(1988), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1990), - }, - [1527] = { - [sym_comment] = STATE(1527), - [sym__newline] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_err_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_GT_PIPE] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_LPAREN] = ACTIONS(1737), - [anon_sym_RPAREN] = ACTIONS(1737), - [anon_sym_DOLLAR] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1737), - [anon_sym_DASH2] = ACTIONS(1735), - [anon_sym_LBRACE] = ACTIONS(1737), - [anon_sym_RBRACE] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1735), - [anon_sym_DOT_DOT2] = ACTIONS(1735), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1735), - [anon_sym_DOT_DOT_LT] = ACTIONS(1735), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), - [anon_sym_null] = ACTIONS(1737), - [anon_sym_true] = ACTIONS(1737), - [anon_sym_false] = ACTIONS(1737), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1737), - [aux_sym__val_number_decimal_token4] = ACTIONS(1737), - [aux_sym__val_number_token1] = ACTIONS(1737), - [aux_sym__val_number_token2] = ACTIONS(1737), - [aux_sym__val_number_token3] = ACTIONS(1737), - [aux_sym__val_number_token4] = ACTIONS(1737), - [aux_sym__val_number_token5] = ACTIONS(1737), - [aux_sym__val_number_token6] = ACTIONS(1737), - [anon_sym_0b] = ACTIONS(1735), - [anon_sym_0o] = ACTIONS(1735), - [anon_sym_0x] = ACTIONS(1735), - [sym_val_date] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1737), - [sym__str_single_quotes] = ACTIONS(1737), - [sym__str_back_ticks] = ACTIONS(1737), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), - [anon_sym_err_GT] = ACTIONS(1735), - [anon_sym_out_GT] = ACTIONS(1735), - [anon_sym_e_GT] = ACTIONS(1735), - [anon_sym_o_GT] = ACTIONS(1735), - [anon_sym_err_PLUSout_GT] = ACTIONS(1735), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), - [anon_sym_o_PLUSe_GT] = ACTIONS(1735), - [anon_sym_e_PLUSo_GT] = ACTIONS(1735), - [anon_sym_err_GT_GT] = ACTIONS(1737), - [anon_sym_out_GT_GT] = ACTIONS(1737), - [anon_sym_e_GT_GT] = ACTIONS(1737), - [anon_sym_o_GT_GT] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), - [aux_sym_unquoted_token1] = ACTIONS(1735), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1737), - }, - [1528] = { - [sym_comment] = STATE(1528), - [sym__newline] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_err_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_GT_PIPE] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_RPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), - [anon_sym_DOT_DOT_LT] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_0b] = ACTIONS(1755), - [anon_sym_0o] = ACTIONS(1755), - [anon_sym_0x] = ACTIONS(1755), - [sym_val_date] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), - [anon_sym_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [1529] = { - [sym_comment] = STATE(1529), - [sym__newline] = ACTIONS(2131), - [anon_sym_SEMI] = ACTIONS(2131), - [anon_sym_PIPE] = ACTIONS(2131), - [anon_sym_err_GT_PIPE] = ACTIONS(2131), - [anon_sym_out_GT_PIPE] = ACTIONS(2131), - [anon_sym_e_GT_PIPE] = ACTIONS(2131), - [anon_sym_o_GT_PIPE] = ACTIONS(2131), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2131), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2131), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2131), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2131), - [anon_sym_LBRACK] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_RPAREN] = ACTIONS(2131), - [anon_sym_DOLLAR] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2131), - [anon_sym_DASH2] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2131), - [anon_sym_RBRACE] = ACTIONS(2131), - [anon_sym_DOT_DOT] = ACTIONS(2129), - [anon_sym_DOT_DOT2] = ACTIONS(2129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2129), - [anon_sym_DOT_DOT_LT] = ACTIONS(2129), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2131), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2131), - [anon_sym_null] = ACTIONS(2131), - [anon_sym_true] = ACTIONS(2131), - [anon_sym_false] = ACTIONS(2131), - [aux_sym__val_number_decimal_token1] = ACTIONS(2129), - [aux_sym__val_number_decimal_token2] = ACTIONS(2131), - [aux_sym__val_number_decimal_token3] = ACTIONS(2131), - [aux_sym__val_number_decimal_token4] = ACTIONS(2131), - [aux_sym__val_number_token1] = ACTIONS(2131), - [aux_sym__val_number_token2] = ACTIONS(2131), - [aux_sym__val_number_token3] = ACTIONS(2131), - [aux_sym__val_number_token4] = ACTIONS(2131), - [aux_sym__val_number_token5] = ACTIONS(2131), - [aux_sym__val_number_token6] = ACTIONS(2131), - [anon_sym_0b] = ACTIONS(2129), - [anon_sym_0o] = ACTIONS(2129), - [anon_sym_0x] = ACTIONS(2129), - [sym_val_date] = ACTIONS(2131), - [anon_sym_DQUOTE] = ACTIONS(2131), - [sym__str_single_quotes] = ACTIONS(2131), - [sym__str_back_ticks] = ACTIONS(2131), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2131), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2131), - [anon_sym_err_GT] = ACTIONS(2129), - [anon_sym_out_GT] = ACTIONS(2129), - [anon_sym_e_GT] = ACTIONS(2129), - [anon_sym_o_GT] = ACTIONS(2129), - [anon_sym_err_PLUSout_GT] = ACTIONS(2129), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2129), - [anon_sym_o_PLUSe_GT] = ACTIONS(2129), - [anon_sym_e_PLUSo_GT] = ACTIONS(2129), - [anon_sym_err_GT_GT] = ACTIONS(2131), - [anon_sym_out_GT_GT] = ACTIONS(2131), - [anon_sym_e_GT_GT] = ACTIONS(2131), - [anon_sym_o_GT_GT] = ACTIONS(2131), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2131), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2131), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2131), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2131), - [aux_sym_unquoted_token1] = ACTIONS(2129), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2131), - }, - [1530] = { - [sym_comment] = STATE(1530), - [ts_builtin_sym_end] = ACTIONS(1609), - [sym__newline] = ACTIONS(1609), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_PIPE] = ACTIONS(1609), - [anon_sym_err_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_GT_PIPE] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1609), - [anon_sym_in2] = ACTIONS(1609), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1609), - [anon_sym_xor2] = ACTIONS(1609), - [anon_sym_or2] = ACTIONS(1609), - [anon_sym_not_DASHin2] = ACTIONS(1609), - [anon_sym_starts_DASHwith2] = ACTIONS(1609), - [anon_sym_ends_DASHwith2] = ACTIONS(1609), - [anon_sym_EQ_EQ2] = ACTIONS(1609), - [anon_sym_BANG_EQ2] = ACTIONS(1609), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1609), - [anon_sym_GT_EQ2] = ACTIONS(1609), - [anon_sym_EQ_TILDE2] = ACTIONS(1609), - [anon_sym_BANG_TILDE2] = ACTIONS(1609), - [anon_sym_LPAREN2] = ACTIONS(1609), - [anon_sym_STAR_STAR2] = ACTIONS(1609), - [anon_sym_PLUS_PLUS2] = ACTIONS(1609), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1609), - [anon_sym_SLASH_SLASH2] = ACTIONS(1609), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1609), - [anon_sym_bit_DASHshr2] = ACTIONS(1609), - [anon_sym_bit_DASHand2] = ACTIONS(1609), - [anon_sym_bit_DASHxor2] = ACTIONS(1609), - [anon_sym_bit_DASHor2] = ACTIONS(1609), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT] = ACTIONS(4850), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(4852), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1609), - [anon_sym_out_GT_GT] = ACTIONS(1609), - [anon_sym_e_GT_GT] = ACTIONS(1609), - [anon_sym_o_GT_GT] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), - [aux_sym_unquoted_token2] = ACTIONS(1607), - [anon_sym_POUND] = ACTIONS(247), - }, [1531] = { + [sym_cell_path] = STATE(1938), + [sym_path] = STATE(1823), [sym_comment] = STATE(1531), - [ts_builtin_sym_end] = ACTIONS(1785), - [sym__newline] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_err_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_GT_PIPE] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1783), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), - [aux_sym__immediate_decimal_token2] = ACTIONS(4854), - [anon_sym_null] = ACTIONS(1785), - [anon_sym_true] = ACTIONS(1785), - [anon_sym_false] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_0b] = ACTIONS(1783), - [anon_sym_0o] = ACTIONS(1783), - [anon_sym_0x] = ACTIONS(1783), - [sym_val_date] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_err_GT] = ACTIONS(1783), - [anon_sym_out_GT] = ACTIONS(1783), - [anon_sym_e_GT] = ACTIONS(1783), - [anon_sym_o_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT] = ACTIONS(1783), - [anon_sym_err_GT_GT] = ACTIONS(1785), - [anon_sym_out_GT_GT] = ACTIONS(1785), - [anon_sym_e_GT_GT] = ACTIONS(1785), - [anon_sym_o_GT_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), - [aux_sym_unquoted_token1] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1785), + [aux_sym_cell_path_repeat1] = STATE(1574), + [ts_builtin_sym_end] = ACTIONS(2036), + [sym__newline] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_PIPE] = ACTIONS(2036), + [anon_sym_err_GT_PIPE] = ACTIONS(2036), + [anon_sym_out_GT_PIPE] = ACTIONS(2036), + [anon_sym_e_GT_PIPE] = ACTIONS(2036), + [anon_sym_o_GT_PIPE] = ACTIONS(2036), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2036), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2036), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2036), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2036), + [anon_sym_LBRACK] = ACTIONS(2036), + [anon_sym_LPAREN] = ACTIONS(2036), + [anon_sym_DOLLAR] = ACTIONS(2034), + [anon_sym_DASH_DASH] = ACTIONS(2036), + [anon_sym_DASH2] = ACTIONS(2034), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_DOT_DOT] = ACTIONS(2034), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2036), + [anon_sym_DOT_DOT_LT] = ACTIONS(2036), + [anon_sym_null] = ACTIONS(2036), + [anon_sym_true] = ACTIONS(2036), + [anon_sym_false] = ACTIONS(2036), + [aux_sym__val_number_decimal_token1] = ACTIONS(2034), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2036), + [aux_sym__val_number_decimal_token4] = ACTIONS(2036), + [aux_sym__val_number_token1] = ACTIONS(2036), + [aux_sym__val_number_token2] = ACTIONS(2036), + [aux_sym__val_number_token3] = ACTIONS(2036), + [aux_sym__val_number_token4] = ACTIONS(2036), + [aux_sym__val_number_token5] = ACTIONS(2036), + [aux_sym__val_number_token6] = ACTIONS(2036), + [anon_sym_0b] = ACTIONS(2034), + [anon_sym_0o] = ACTIONS(2034), + [anon_sym_0x] = ACTIONS(2034), + [sym_val_date] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [sym__str_single_quotes] = ACTIONS(2036), + [sym__str_back_ticks] = ACTIONS(2036), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2036), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2036), + [anon_sym_err_GT] = ACTIONS(2034), + [anon_sym_out_GT] = ACTIONS(2034), + [anon_sym_e_GT] = ACTIONS(2034), + [anon_sym_o_GT] = ACTIONS(2034), + [anon_sym_err_PLUSout_GT] = ACTIONS(2034), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2034), + [anon_sym_o_PLUSe_GT] = ACTIONS(2034), + [anon_sym_e_PLUSo_GT] = ACTIONS(2034), + [anon_sym_err_GT_GT] = ACTIONS(2036), + [anon_sym_out_GT_GT] = ACTIONS(2036), + [anon_sym_e_GT_GT] = ACTIONS(2036), + [anon_sym_o_GT_GT] = ACTIONS(2036), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2036), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2036), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2036), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2036), + [aux_sym_unquoted_token1] = ACTIONS(2034), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2036), }, [1532] = { [sym_comment] = STATE(1532), - [sym__newline] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_err_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_GT_PIPE] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_RPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(4797), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_0b] = ACTIONS(1755), - [anon_sym_0o] = ACTIONS(1755), - [anon_sym_0x] = ACTIONS(1755), - [sym_val_date] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), - [anon_sym_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [aux_sym_unquoted_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1757), + [ts_builtin_sym_end] = ACTIONS(1741), + [sym__newline] = ACTIONS(1741), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym_PIPE] = ACTIONS(1741), + [anon_sym_err_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_GT_PIPE] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_DASH_DASH] = ACTIONS(1741), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT] = ACTIONS(1741), + [aux_sym__immediate_decimal_token1] = ACTIONS(4852), + [aux_sym__immediate_decimal_token2] = ACTIONS(4854), + [anon_sym_null] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1741), + [anon_sym_false] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1741), + [aux_sym__val_number_token5] = ACTIONS(1741), + [aux_sym__val_number_token6] = ACTIONS(1741), + [anon_sym_0b] = ACTIONS(1739), + [anon_sym_0o] = ACTIONS(1739), + [anon_sym_0x] = ACTIONS(1739), + [sym_val_date] = ACTIONS(1741), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), + [anon_sym_err_GT] = ACTIONS(1739), + [anon_sym_out_GT] = ACTIONS(1739), + [anon_sym_e_GT] = ACTIONS(1739), + [anon_sym_o_GT] = ACTIONS(1739), + [anon_sym_err_PLUSout_GT] = ACTIONS(1739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), + [anon_sym_o_PLUSe_GT] = ACTIONS(1739), + [anon_sym_e_PLUSo_GT] = ACTIONS(1739), + [anon_sym_err_GT_GT] = ACTIONS(1741), + [anon_sym_out_GT_GT] = ACTIONS(1741), + [anon_sym_e_GT_GT] = ACTIONS(1741), + [anon_sym_o_GT_GT] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), + [aux_sym_unquoted_token1] = ACTIONS(1739), + [aux_sym_unquoted_token2] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), }, [1533] = { - [sym__expr_parenthesized_immediate] = STATE(7503), + [sym_cell_path] = STATE(1939), + [sym_path] = STATE(1823), [sym_comment] = STATE(1533), - [sym__newline] = ACTIONS(1721), - [anon_sym_SEMI] = ACTIONS(1721), - [anon_sym_PIPE] = ACTIONS(1721), - [anon_sym_err_GT_PIPE] = ACTIONS(1721), - [anon_sym_out_GT_PIPE] = ACTIONS(1721), - [anon_sym_e_GT_PIPE] = ACTIONS(1721), - [anon_sym_o_GT_PIPE] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1721), - [anon_sym_RPAREN] = ACTIONS(1721), - [anon_sym_GT2] = ACTIONS(1709), - [anon_sym_DASH2] = ACTIONS(1721), - [anon_sym_in2] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_STAR2] = ACTIONS(1709), - [anon_sym_and2] = ACTIONS(1721), - [anon_sym_xor2] = ACTIONS(1721), - [anon_sym_or2] = ACTIONS(1721), - [anon_sym_not_DASHin2] = ACTIONS(1721), - [anon_sym_starts_DASHwith2] = ACTIONS(1721), - [anon_sym_ends_DASHwith2] = ACTIONS(1721), - [anon_sym_EQ_EQ2] = ACTIONS(1721), - [anon_sym_BANG_EQ2] = ACTIONS(1721), - [anon_sym_LT2] = ACTIONS(1709), - [anon_sym_LT_EQ2] = ACTIONS(1721), - [anon_sym_GT_EQ2] = ACTIONS(1721), - [anon_sym_EQ_TILDE2] = ACTIONS(1721), - [anon_sym_BANG_TILDE2] = ACTIONS(1721), - [anon_sym_LPAREN2] = ACTIONS(4249), - [anon_sym_STAR_STAR2] = ACTIONS(1721), - [anon_sym_PLUS_PLUS2] = ACTIONS(1721), - [anon_sym_SLASH2] = ACTIONS(1709), - [anon_sym_mod2] = ACTIONS(1721), - [anon_sym_SLASH_SLASH2] = ACTIONS(1721), - [anon_sym_PLUS2] = ACTIONS(1709), - [anon_sym_bit_DASHshl2] = ACTIONS(1721), - [anon_sym_bit_DASHshr2] = ACTIONS(1721), - [anon_sym_bit_DASHand2] = ACTIONS(1721), - [anon_sym_bit_DASHxor2] = ACTIONS(1721), - [anon_sym_bit_DASHor2] = ACTIONS(1721), - [anon_sym_DOT_DOT2] = ACTIONS(4856), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4858), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4858), - [sym_filesize_unit] = ACTIONS(4860), - [sym_duration_unit] = ACTIONS(4862), - [anon_sym_err_GT] = ACTIONS(1709), - [anon_sym_out_GT] = ACTIONS(1709), - [anon_sym_e_GT] = ACTIONS(1709), - [anon_sym_o_GT] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT] = ACTIONS(1709), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), - [anon_sym_o_PLUSe_GT] = ACTIONS(1709), - [anon_sym_e_PLUSo_GT] = ACTIONS(1709), - [anon_sym_err_GT_GT] = ACTIONS(1721), - [anon_sym_out_GT_GT] = ACTIONS(1721), - [anon_sym_e_GT_GT] = ACTIONS(1721), - [anon_sym_o_GT_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1721), - [aux_sym_unquoted_token2] = ACTIONS(4864), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1574), + [ts_builtin_sym_end] = ACTIONS(2040), + [sym__newline] = ACTIONS(2040), + [anon_sym_SEMI] = ACTIONS(2040), + [anon_sym_PIPE] = ACTIONS(2040), + [anon_sym_err_GT_PIPE] = ACTIONS(2040), + [anon_sym_out_GT_PIPE] = ACTIONS(2040), + [anon_sym_e_GT_PIPE] = ACTIONS(2040), + [anon_sym_o_GT_PIPE] = ACTIONS(2040), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2040), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2040), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2040), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2040), + [anon_sym_LBRACK] = ACTIONS(2040), + [anon_sym_LPAREN] = ACTIONS(2040), + [anon_sym_DOLLAR] = ACTIONS(2038), + [anon_sym_DASH_DASH] = ACTIONS(2040), + [anon_sym_DASH2] = ACTIONS(2038), + [anon_sym_LBRACE] = ACTIONS(2040), + [anon_sym_DOT_DOT] = ACTIONS(2038), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2040), + [anon_sym_DOT_DOT_LT] = ACTIONS(2040), + [anon_sym_null] = ACTIONS(2040), + [anon_sym_true] = ACTIONS(2040), + [anon_sym_false] = ACTIONS(2040), + [aux_sym__val_number_decimal_token1] = ACTIONS(2038), + [aux_sym__val_number_decimal_token2] = ACTIONS(2040), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), + [aux_sym__val_number_token1] = ACTIONS(2040), + [aux_sym__val_number_token2] = ACTIONS(2040), + [aux_sym__val_number_token3] = ACTIONS(2040), + [aux_sym__val_number_token4] = ACTIONS(2040), + [aux_sym__val_number_token5] = ACTIONS(2040), + [aux_sym__val_number_token6] = ACTIONS(2040), + [anon_sym_0b] = ACTIONS(2038), + [anon_sym_0o] = ACTIONS(2038), + [anon_sym_0x] = ACTIONS(2038), + [sym_val_date] = ACTIONS(2040), + [anon_sym_DQUOTE] = ACTIONS(2040), + [sym__str_single_quotes] = ACTIONS(2040), + [sym__str_back_ticks] = ACTIONS(2040), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2040), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2040), + [anon_sym_err_GT] = ACTIONS(2038), + [anon_sym_out_GT] = ACTIONS(2038), + [anon_sym_e_GT] = ACTIONS(2038), + [anon_sym_o_GT] = ACTIONS(2038), + [anon_sym_err_PLUSout_GT] = ACTIONS(2038), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2038), + [anon_sym_o_PLUSe_GT] = ACTIONS(2038), + [anon_sym_e_PLUSo_GT] = ACTIONS(2038), + [anon_sym_err_GT_GT] = ACTIONS(2040), + [anon_sym_out_GT_GT] = ACTIONS(2040), + [anon_sym_e_GT_GT] = ACTIONS(2040), + [anon_sym_o_GT_GT] = ACTIONS(2040), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2040), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2040), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2040), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2040), + [aux_sym_unquoted_token1] = ACTIONS(2038), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2040), }, [1534] = { - [sym_cell_path] = STATE(1934), - [sym_path] = STATE(1774), + [sym_cell_path] = STATE(1940), + [sym_path] = STATE(1823), [sym_comment] = STATE(1534), - [aux_sym_cell_path_repeat1] = STATE(1634), - [ts_builtin_sym_end] = ACTIONS(1994), - [sym__newline] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_PIPE] = ACTIONS(1994), - [anon_sym_err_GT_PIPE] = ACTIONS(1994), - [anon_sym_out_GT_PIPE] = ACTIONS(1994), - [anon_sym_e_GT_PIPE] = ACTIONS(1994), - [anon_sym_o_GT_PIPE] = ACTIONS(1994), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1994), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1994), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1994), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1994), - [anon_sym_LBRACK] = ACTIONS(1994), - [anon_sym_LPAREN] = ACTIONS(1994), - [anon_sym_DOLLAR] = ACTIONS(1992), - [anon_sym_DASH_DASH] = ACTIONS(1994), - [anon_sym_DASH2] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1994), - [anon_sym_DOT_DOT] = ACTIONS(1992), + [aux_sym_cell_path_repeat1] = STATE(1574), + [ts_builtin_sym_end] = ACTIONS(1933), + [sym__newline] = ACTIONS(1933), + [anon_sym_SEMI] = ACTIONS(1933), + [anon_sym_PIPE] = ACTIONS(1933), + [anon_sym_err_GT_PIPE] = ACTIONS(1933), + [anon_sym_out_GT_PIPE] = ACTIONS(1933), + [anon_sym_e_GT_PIPE] = ACTIONS(1933), + [anon_sym_o_GT_PIPE] = ACTIONS(1933), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1933), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1933), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1933), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1933), + [anon_sym_LBRACK] = ACTIONS(1933), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_DOLLAR] = ACTIONS(1931), + [anon_sym_DASH_DASH] = ACTIONS(1933), + [anon_sym_DASH2] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_DOT_DOT] = ACTIONS(1931), [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1994), - [anon_sym_DOT_DOT_LT] = ACTIONS(1994), - [anon_sym_null] = ACTIONS(1994), - [anon_sym_true] = ACTIONS(1994), - [anon_sym_false] = ACTIONS(1994), - [aux_sym__val_number_decimal_token1] = ACTIONS(1992), - [aux_sym__val_number_decimal_token2] = ACTIONS(1994), - [aux_sym__val_number_decimal_token3] = ACTIONS(1994), - [aux_sym__val_number_decimal_token4] = ACTIONS(1994), - [aux_sym__val_number_token1] = ACTIONS(1994), - [aux_sym__val_number_token2] = ACTIONS(1994), - [aux_sym__val_number_token3] = ACTIONS(1994), - [aux_sym__val_number_token4] = ACTIONS(1994), - [aux_sym__val_number_token5] = ACTIONS(1994), - [aux_sym__val_number_token6] = ACTIONS(1994), - [anon_sym_0b] = ACTIONS(1992), - [anon_sym_0o] = ACTIONS(1992), - [anon_sym_0x] = ACTIONS(1992), - [sym_val_date] = ACTIONS(1994), - [anon_sym_DQUOTE] = ACTIONS(1994), - [sym__str_single_quotes] = ACTIONS(1994), - [sym__str_back_ticks] = ACTIONS(1994), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1994), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1994), - [anon_sym_err_GT] = ACTIONS(1992), - [anon_sym_out_GT] = ACTIONS(1992), - [anon_sym_e_GT] = ACTIONS(1992), - [anon_sym_o_GT] = ACTIONS(1992), - [anon_sym_err_PLUSout_GT] = ACTIONS(1992), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1992), - [anon_sym_o_PLUSe_GT] = ACTIONS(1992), - [anon_sym_e_PLUSo_GT] = ACTIONS(1992), - [anon_sym_err_GT_GT] = ACTIONS(1994), - [anon_sym_out_GT_GT] = ACTIONS(1994), - [anon_sym_e_GT_GT] = ACTIONS(1994), - [anon_sym_o_GT_GT] = ACTIONS(1994), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1994), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1994), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1994), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1994), - [aux_sym_unquoted_token1] = ACTIONS(1992), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1994), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [anon_sym_null] = ACTIONS(1933), + [anon_sym_true] = ACTIONS(1933), + [anon_sym_false] = ACTIONS(1933), + [aux_sym__val_number_decimal_token1] = ACTIONS(1931), + [aux_sym__val_number_decimal_token2] = ACTIONS(1933), + [aux_sym__val_number_decimal_token3] = ACTIONS(1933), + [aux_sym__val_number_decimal_token4] = ACTIONS(1933), + [aux_sym__val_number_token1] = ACTIONS(1933), + [aux_sym__val_number_token2] = ACTIONS(1933), + [aux_sym__val_number_token3] = ACTIONS(1933), + [aux_sym__val_number_token4] = ACTIONS(1933), + [aux_sym__val_number_token5] = ACTIONS(1933), + [aux_sym__val_number_token6] = ACTIONS(1933), + [anon_sym_0b] = ACTIONS(1931), + [anon_sym_0o] = ACTIONS(1931), + [anon_sym_0x] = ACTIONS(1931), + [sym_val_date] = ACTIONS(1933), + [anon_sym_DQUOTE] = ACTIONS(1933), + [sym__str_single_quotes] = ACTIONS(1933), + [sym__str_back_ticks] = ACTIONS(1933), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1933), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1933), + [anon_sym_err_GT] = ACTIONS(1931), + [anon_sym_out_GT] = ACTIONS(1931), + [anon_sym_e_GT] = ACTIONS(1931), + [anon_sym_o_GT] = ACTIONS(1931), + [anon_sym_err_PLUSout_GT] = ACTIONS(1931), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1931), + [anon_sym_o_PLUSe_GT] = ACTIONS(1931), + [anon_sym_e_PLUSo_GT] = ACTIONS(1931), + [anon_sym_err_GT_GT] = ACTIONS(1933), + [anon_sym_out_GT_GT] = ACTIONS(1933), + [anon_sym_e_GT_GT] = ACTIONS(1933), + [anon_sym_o_GT_GT] = ACTIONS(1933), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1933), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1933), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1933), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1933), + [aux_sym_unquoted_token1] = ACTIONS(1931), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1933), }, [1535] = { - [sym_cell_path] = STATE(1935), - [sym_path] = STATE(1774), [sym_comment] = STATE(1535), - [aux_sym_cell_path_repeat1] = STATE(1634), - [ts_builtin_sym_end] = ACTIONS(1998), - [sym__newline] = ACTIONS(1998), - [anon_sym_SEMI] = ACTIONS(1998), - [anon_sym_PIPE] = ACTIONS(1998), - [anon_sym_err_GT_PIPE] = ACTIONS(1998), - [anon_sym_out_GT_PIPE] = ACTIONS(1998), - [anon_sym_e_GT_PIPE] = ACTIONS(1998), - [anon_sym_o_GT_PIPE] = ACTIONS(1998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_LPAREN] = ACTIONS(1998), - [anon_sym_DOLLAR] = ACTIONS(1996), - [anon_sym_DASH_DASH] = ACTIONS(1998), - [anon_sym_DASH2] = ACTIONS(1996), - [anon_sym_LBRACE] = ACTIONS(1998), - [anon_sym_DOT_DOT] = ACTIONS(1996), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1998), - [anon_sym_DOT_DOT_LT] = ACTIONS(1998), - [anon_sym_null] = ACTIONS(1998), - [anon_sym_true] = ACTIONS(1998), - [anon_sym_false] = ACTIONS(1998), - [aux_sym__val_number_decimal_token1] = ACTIONS(1996), - [aux_sym__val_number_decimal_token2] = ACTIONS(1998), - [aux_sym__val_number_decimal_token3] = ACTIONS(1998), - [aux_sym__val_number_decimal_token4] = ACTIONS(1998), - [aux_sym__val_number_token1] = ACTIONS(1998), - [aux_sym__val_number_token2] = ACTIONS(1998), - [aux_sym__val_number_token3] = ACTIONS(1998), - [aux_sym__val_number_token4] = ACTIONS(1998), - [aux_sym__val_number_token5] = ACTIONS(1998), - [aux_sym__val_number_token6] = ACTIONS(1998), - [anon_sym_0b] = ACTIONS(1996), - [anon_sym_0o] = ACTIONS(1996), - [anon_sym_0x] = ACTIONS(1996), - [sym_val_date] = ACTIONS(1998), - [anon_sym_DQUOTE] = ACTIONS(1998), - [sym__str_single_quotes] = ACTIONS(1998), - [sym__str_back_ticks] = ACTIONS(1998), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1998), - [anon_sym_err_GT] = ACTIONS(1996), - [anon_sym_out_GT] = ACTIONS(1996), - [anon_sym_e_GT] = ACTIONS(1996), - [anon_sym_o_GT] = ACTIONS(1996), - [anon_sym_err_PLUSout_GT] = ACTIONS(1996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1996), - [anon_sym_o_PLUSe_GT] = ACTIONS(1996), - [anon_sym_e_PLUSo_GT] = ACTIONS(1996), - [anon_sym_err_GT_GT] = ACTIONS(1998), - [anon_sym_out_GT_GT] = ACTIONS(1998), - [anon_sym_e_GT_GT] = ACTIONS(1998), - [anon_sym_o_GT_GT] = ACTIONS(1998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1998), - [aux_sym_unquoted_token1] = ACTIONS(1996), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1998), + [sym__newline] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_err_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_GT_PIPE] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_RPAREN] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_DOT_DOT] = ACTIONS(1765), + [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(4795), + [anon_sym_null] = ACTIONS(1767), + [anon_sym_true] = ACTIONS(1767), + [anon_sym_false] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1767), + [aux_sym__val_number_token5] = ACTIONS(1767), + [aux_sym__val_number_token6] = ACTIONS(1767), + [anon_sym_0b] = ACTIONS(1765), + [anon_sym_0o] = ACTIONS(1765), + [anon_sym_0x] = ACTIONS(1765), + [sym_val_date] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), + [anon_sym_err_GT] = ACTIONS(1765), + [anon_sym_out_GT] = ACTIONS(1765), + [anon_sym_e_GT] = ACTIONS(1765), + [anon_sym_o_GT] = ACTIONS(1765), + [anon_sym_err_PLUSout_GT] = ACTIONS(1765), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), + [anon_sym_o_PLUSe_GT] = ACTIONS(1765), + [anon_sym_e_PLUSo_GT] = ACTIONS(1765), + [anon_sym_err_GT_GT] = ACTIONS(1767), + [anon_sym_out_GT_GT] = ACTIONS(1767), + [anon_sym_e_GT_GT] = ACTIONS(1767), + [anon_sym_o_GT_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), + [aux_sym_unquoted_token1] = ACTIONS(1765), + [aux_sym_unquoted_token2] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1767), }, [1536] = { + [sym_cell_path] = STATE(1941), + [sym_path] = STATE(1823), [sym_comment] = STATE(1536), - [sym__newline] = ACTIONS(1032), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_err_GT_PIPE] = ACTIONS(1032), - [anon_sym_out_GT_PIPE] = ACTIONS(1032), - [anon_sym_e_GT_PIPE] = ACTIONS(1032), - [anon_sym_o_GT_PIPE] = ACTIONS(1032), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1032), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1032), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1032), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1032), - [anon_sym_LBRACK] = ACTIONS(1032), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_RPAREN] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH_DASH] = ACTIONS(1032), - [anon_sym_DASH2] = ACTIONS(1030), - [anon_sym_LBRACE] = ACTIONS(1032), - [anon_sym_RBRACE] = ACTIONS(1032), - [anon_sym_DOT_DOT] = ACTIONS(1030), - [anon_sym_DOT_DOT2] = ACTIONS(4830), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1030), - [anon_sym_DOT_DOT_LT] = ACTIONS(1030), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4832), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4832), - [anon_sym_null] = ACTIONS(1032), - [anon_sym_true] = ACTIONS(1032), - [anon_sym_false] = ACTIONS(1032), - [aux_sym__val_number_decimal_token1] = ACTIONS(1030), - [aux_sym__val_number_decimal_token2] = ACTIONS(1032), - [aux_sym__val_number_decimal_token3] = ACTIONS(1032), - [aux_sym__val_number_decimal_token4] = ACTIONS(1032), - [aux_sym__val_number_token1] = ACTIONS(1032), - [aux_sym__val_number_token2] = ACTIONS(1032), - [aux_sym__val_number_token3] = ACTIONS(1032), - [aux_sym__val_number_token4] = ACTIONS(1032), - [aux_sym__val_number_token5] = ACTIONS(1032), - [aux_sym__val_number_token6] = ACTIONS(1032), - [anon_sym_0b] = ACTIONS(1030), - [anon_sym_0o] = ACTIONS(1030), - [anon_sym_0x] = ACTIONS(1030), - [sym_val_date] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [sym__str_single_quotes] = ACTIONS(1032), - [sym__str_back_ticks] = ACTIONS(1032), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1032), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1032), - [anon_sym_err_GT] = ACTIONS(1030), - [anon_sym_out_GT] = ACTIONS(1030), - [anon_sym_e_GT] = ACTIONS(1030), - [anon_sym_o_GT] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT] = ACTIONS(1030), - [anon_sym_err_GT_GT] = ACTIONS(1032), - [anon_sym_out_GT_GT] = ACTIONS(1032), - [anon_sym_e_GT_GT] = ACTIONS(1032), - [anon_sym_o_GT_GT] = ACTIONS(1032), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1032), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1032), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1032), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1032), - [aux_sym_unquoted_token1] = ACTIONS(1030), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1032), + [aux_sym_cell_path_repeat1] = STATE(1574), + [ts_builtin_sym_end] = ACTIONS(1901), + [sym__newline] = ACTIONS(1901), + [anon_sym_SEMI] = ACTIONS(1901), + [anon_sym_PIPE] = ACTIONS(1901), + [anon_sym_err_GT_PIPE] = ACTIONS(1901), + [anon_sym_out_GT_PIPE] = ACTIONS(1901), + [anon_sym_e_GT_PIPE] = ACTIONS(1901), + [anon_sym_o_GT_PIPE] = ACTIONS(1901), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1901), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1901), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1901), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1901), + [anon_sym_LBRACK] = ACTIONS(1901), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_DOLLAR] = ACTIONS(1899), + [anon_sym_DASH_DASH] = ACTIONS(1901), + [anon_sym_DASH2] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1901), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1901), + [anon_sym_DOT_DOT_LT] = ACTIONS(1901), + [anon_sym_null] = ACTIONS(1901), + [anon_sym_true] = ACTIONS(1901), + [anon_sym_false] = ACTIONS(1901), + [aux_sym__val_number_decimal_token1] = ACTIONS(1899), + [aux_sym__val_number_decimal_token2] = ACTIONS(1901), + [aux_sym__val_number_decimal_token3] = ACTIONS(1901), + [aux_sym__val_number_decimal_token4] = ACTIONS(1901), + [aux_sym__val_number_token1] = ACTIONS(1901), + [aux_sym__val_number_token2] = ACTIONS(1901), + [aux_sym__val_number_token3] = ACTIONS(1901), + [aux_sym__val_number_token4] = ACTIONS(1901), + [aux_sym__val_number_token5] = ACTIONS(1901), + [aux_sym__val_number_token6] = ACTIONS(1901), + [anon_sym_0b] = ACTIONS(1899), + [anon_sym_0o] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1899), + [sym_val_date] = ACTIONS(1901), + [anon_sym_DQUOTE] = ACTIONS(1901), + [sym__str_single_quotes] = ACTIONS(1901), + [sym__str_back_ticks] = ACTIONS(1901), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1901), + [anon_sym_err_GT] = ACTIONS(1899), + [anon_sym_out_GT] = ACTIONS(1899), + [anon_sym_e_GT] = ACTIONS(1899), + [anon_sym_o_GT] = ACTIONS(1899), + [anon_sym_err_PLUSout_GT] = ACTIONS(1899), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1899), + [anon_sym_o_PLUSe_GT] = ACTIONS(1899), + [anon_sym_e_PLUSo_GT] = ACTIONS(1899), + [anon_sym_err_GT_GT] = ACTIONS(1901), + [anon_sym_out_GT_GT] = ACTIONS(1901), + [anon_sym_e_GT_GT] = ACTIONS(1901), + [anon_sym_o_GT_GT] = ACTIONS(1901), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1901), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1901), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1901), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1901), + [aux_sym_unquoted_token1] = ACTIONS(1899), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1901), }, [1537] = { - [sym_cell_path] = STATE(1936), - [sym_path] = STATE(1774), [sym_comment] = STATE(1537), - [aux_sym_cell_path_repeat1] = STATE(1634), - [ts_builtin_sym_end] = ACTIONS(2002), - [sym__newline] = ACTIONS(2002), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_PIPE] = ACTIONS(2002), - [anon_sym_err_GT_PIPE] = ACTIONS(2002), - [anon_sym_out_GT_PIPE] = ACTIONS(2002), - [anon_sym_e_GT_PIPE] = ACTIONS(2002), - [anon_sym_o_GT_PIPE] = ACTIONS(2002), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2002), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2002), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2002), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2002), - [anon_sym_LBRACK] = ACTIONS(2002), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_DOLLAR] = ACTIONS(2000), - [anon_sym_DASH_DASH] = ACTIONS(2002), - [anon_sym_DASH2] = ACTIONS(2000), - [anon_sym_LBRACE] = ACTIONS(2002), - [anon_sym_DOT_DOT] = ACTIONS(2000), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2002), - [anon_sym_DOT_DOT_LT] = ACTIONS(2002), - [anon_sym_null] = ACTIONS(2002), - [anon_sym_true] = ACTIONS(2002), - [anon_sym_false] = ACTIONS(2002), - [aux_sym__val_number_decimal_token1] = ACTIONS(2000), - [aux_sym__val_number_decimal_token2] = ACTIONS(2002), - [aux_sym__val_number_decimal_token3] = ACTIONS(2002), - [aux_sym__val_number_decimal_token4] = ACTIONS(2002), - [aux_sym__val_number_token1] = ACTIONS(2002), - [aux_sym__val_number_token2] = ACTIONS(2002), - [aux_sym__val_number_token3] = ACTIONS(2002), - [aux_sym__val_number_token4] = ACTIONS(2002), - [aux_sym__val_number_token5] = ACTIONS(2002), - [aux_sym__val_number_token6] = ACTIONS(2002), - [anon_sym_0b] = ACTIONS(2000), - [anon_sym_0o] = ACTIONS(2000), - [anon_sym_0x] = ACTIONS(2000), - [sym_val_date] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [sym__str_single_quotes] = ACTIONS(2002), - [sym__str_back_ticks] = ACTIONS(2002), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2002), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2002), - [anon_sym_err_GT] = ACTIONS(2000), - [anon_sym_out_GT] = ACTIONS(2000), - [anon_sym_e_GT] = ACTIONS(2000), - [anon_sym_o_GT] = ACTIONS(2000), - [anon_sym_err_PLUSout_GT] = ACTIONS(2000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2000), - [anon_sym_o_PLUSe_GT] = ACTIONS(2000), - [anon_sym_e_PLUSo_GT] = ACTIONS(2000), - [anon_sym_err_GT_GT] = ACTIONS(2002), - [anon_sym_out_GT_GT] = ACTIONS(2002), - [anon_sym_e_GT_GT] = ACTIONS(2002), - [anon_sym_o_GT_GT] = ACTIONS(2002), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2002), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2002), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2002), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2002), - [aux_sym_unquoted_token1] = ACTIONS(2000), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2002), + [sym__newline] = ACTIONS(1787), + [anon_sym_SEMI] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_err_GT_PIPE] = ACTIONS(1787), + [anon_sym_out_GT_PIPE] = ACTIONS(1787), + [anon_sym_e_GT_PIPE] = ACTIONS(1787), + [anon_sym_o_GT_PIPE] = ACTIONS(1787), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_RPAREN] = ACTIONS(1787), + [anon_sym_DOLLAR] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1787), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_RBRACE] = ACTIONS(1787), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1787), + [anon_sym_DOT_DOT_LT] = ACTIONS(1787), + [aux_sym__immediate_decimal_token2] = ACTIONS(4856), + [anon_sym_null] = ACTIONS(1787), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [aux_sym__val_number_decimal_token1] = ACTIONS(1785), + [aux_sym__val_number_decimal_token2] = ACTIONS(1787), + [aux_sym__val_number_decimal_token3] = ACTIONS(1787), + [aux_sym__val_number_decimal_token4] = ACTIONS(1787), + [aux_sym__val_number_token1] = ACTIONS(1787), + [aux_sym__val_number_token2] = ACTIONS(1787), + [aux_sym__val_number_token3] = ACTIONS(1787), + [aux_sym__val_number_token4] = ACTIONS(1787), + [aux_sym__val_number_token5] = ACTIONS(1787), + [aux_sym__val_number_token6] = ACTIONS(1787), + [anon_sym_0b] = ACTIONS(1785), + [anon_sym_0o] = ACTIONS(1785), + [anon_sym_0x] = ACTIONS(1785), + [sym_val_date] = ACTIONS(1787), + [anon_sym_DQUOTE] = ACTIONS(1787), + [sym__str_single_quotes] = ACTIONS(1787), + [sym__str_back_ticks] = ACTIONS(1787), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), + [anon_sym_err_GT] = ACTIONS(1785), + [anon_sym_out_GT] = ACTIONS(1785), + [anon_sym_e_GT] = ACTIONS(1785), + [anon_sym_o_GT] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT] = ACTIONS(1785), + [anon_sym_err_GT_GT] = ACTIONS(1787), + [anon_sym_out_GT_GT] = ACTIONS(1787), + [anon_sym_e_GT_GT] = ACTIONS(1787), + [anon_sym_o_GT_GT] = ACTIONS(1787), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), + [aux_sym_unquoted_token1] = ACTIONS(1785), + [aux_sym_unquoted_token2] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1787), }, [1538] = { + [sym__expr_parenthesized_immediate] = STATE(7707), [sym_comment] = STATE(1538), + [sym__newline] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_PIPE] = ACTIONS(1719), + [anon_sym_err_GT_PIPE] = ACTIONS(1719), + [anon_sym_out_GT_PIPE] = ACTIONS(1719), + [anon_sym_e_GT_PIPE] = ACTIONS(1719), + [anon_sym_o_GT_PIPE] = ACTIONS(1719), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1719), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1719), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1719), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1719), + [anon_sym_RPAREN] = ACTIONS(1719), + [anon_sym_GT2] = ACTIONS(1707), + [anon_sym_DASH2] = ACTIONS(1719), + [anon_sym_in2] = ACTIONS(1719), + [anon_sym_RBRACE] = ACTIONS(1719), + [anon_sym_STAR2] = ACTIONS(1707), + [anon_sym_and2] = ACTIONS(1719), + [anon_sym_xor2] = ACTIONS(1719), + [anon_sym_or2] = ACTIONS(1719), + [anon_sym_not_DASHin2] = ACTIONS(1719), + [anon_sym_starts_DASHwith2] = ACTIONS(1719), + [anon_sym_ends_DASHwith2] = ACTIONS(1719), + [anon_sym_EQ_EQ2] = ACTIONS(1719), + [anon_sym_BANG_EQ2] = ACTIONS(1719), + [anon_sym_LT2] = ACTIONS(1707), + [anon_sym_LT_EQ2] = ACTIONS(1719), + [anon_sym_GT_EQ2] = ACTIONS(1719), + [anon_sym_EQ_TILDE2] = ACTIONS(1719), + [anon_sym_BANG_TILDE2] = ACTIONS(1719), + [anon_sym_LPAREN2] = ACTIONS(4543), + [anon_sym_STAR_STAR2] = ACTIONS(1719), + [anon_sym_PLUS_PLUS2] = ACTIONS(1719), + [anon_sym_SLASH2] = ACTIONS(1707), + [anon_sym_mod2] = ACTIONS(1719), + [anon_sym_SLASH_SLASH2] = ACTIONS(1719), + [anon_sym_PLUS2] = ACTIONS(1707), + [anon_sym_bit_DASHshl2] = ACTIONS(1719), + [anon_sym_bit_DASHshr2] = ACTIONS(1719), + [anon_sym_bit_DASHand2] = ACTIONS(1719), + [anon_sym_bit_DASHxor2] = ACTIONS(1719), + [anon_sym_bit_DASHor2] = ACTIONS(1719), + [anon_sym_DOT_DOT2] = ACTIONS(4858), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4860), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4860), + [sym_filesize_unit] = ACTIONS(4862), + [sym_duration_unit] = ACTIONS(4864), + [anon_sym_err_GT] = ACTIONS(1707), + [anon_sym_out_GT] = ACTIONS(1707), + [anon_sym_e_GT] = ACTIONS(1707), + [anon_sym_o_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT] = ACTIONS(1707), + [anon_sym_err_GT_GT] = ACTIONS(1719), + [anon_sym_out_GT_GT] = ACTIONS(1719), + [anon_sym_e_GT_GT] = ACTIONS(1719), + [anon_sym_o_GT_GT] = ACTIONS(1719), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1719), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1719), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1719), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1719), + [aux_sym_unquoted_token2] = ACTIONS(4866), + [anon_sym_POUND] = ACTIONS(247), + }, + [1539] = { + [sym_comment] = STATE(1539), + [ts_builtin_sym_end] = ACTIONS(1767), + [sym__newline] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_err_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_GT_PIPE] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_DOLLAR] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_DOT_DOT] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1767), + [anon_sym_DOT] = ACTIONS(4868), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), + [anon_sym_DOT_DOT_LT] = ACTIONS(1767), + [aux_sym__immediate_decimal_token2] = ACTIONS(4870), + [anon_sym_null] = ACTIONS(1767), + [anon_sym_true] = ACTIONS(1767), + [anon_sym_false] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1767), + [aux_sym__val_number_token5] = ACTIONS(1767), + [aux_sym__val_number_token6] = ACTIONS(1767), + [anon_sym_0b] = ACTIONS(1765), + [anon_sym_0o] = ACTIONS(1765), + [anon_sym_0x] = ACTIONS(1765), + [sym_val_date] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), + [anon_sym_err_GT] = ACTIONS(1765), + [anon_sym_out_GT] = ACTIONS(1765), + [anon_sym_e_GT] = ACTIONS(1765), + [anon_sym_o_GT] = ACTIONS(1765), + [anon_sym_err_PLUSout_GT] = ACTIONS(1765), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), + [anon_sym_o_PLUSe_GT] = ACTIONS(1765), + [anon_sym_e_PLUSo_GT] = ACTIONS(1765), + [anon_sym_err_GT_GT] = ACTIONS(1767), + [anon_sym_out_GT_GT] = ACTIONS(1767), + [anon_sym_e_GT_GT] = ACTIONS(1767), + [anon_sym_o_GT_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), + [aux_sym_unquoted_token1] = ACTIONS(1765), + [aux_sym_unquoted_token2] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1767), + }, + [1540] = { + [sym_cell_path] = STATE(1942), + [sym_path] = STATE(1823), + [sym_comment] = STATE(1540), + [aux_sym_cell_path_repeat1] = STATE(1574), + [ts_builtin_sym_end] = ACTIONS(1909), + [sym__newline] = ACTIONS(1909), + [anon_sym_SEMI] = ACTIONS(1909), + [anon_sym_PIPE] = ACTIONS(1909), + [anon_sym_err_GT_PIPE] = ACTIONS(1909), + [anon_sym_out_GT_PIPE] = ACTIONS(1909), + [anon_sym_e_GT_PIPE] = ACTIONS(1909), + [anon_sym_o_GT_PIPE] = ACTIONS(1909), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1909), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1909), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1909), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1909), + [anon_sym_LBRACK] = ACTIONS(1909), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_DOLLAR] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1909), + [anon_sym_DASH2] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(1909), + [anon_sym_DOT_DOT] = ACTIONS(1907), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1909), + [anon_sym_DOT_DOT_LT] = ACTIONS(1909), + [anon_sym_null] = ACTIONS(1909), + [anon_sym_true] = ACTIONS(1909), + [anon_sym_false] = ACTIONS(1909), + [aux_sym__val_number_decimal_token1] = ACTIONS(1907), + [aux_sym__val_number_decimal_token2] = ACTIONS(1909), + [aux_sym__val_number_decimal_token3] = ACTIONS(1909), + [aux_sym__val_number_decimal_token4] = ACTIONS(1909), + [aux_sym__val_number_token1] = ACTIONS(1909), + [aux_sym__val_number_token2] = ACTIONS(1909), + [aux_sym__val_number_token3] = ACTIONS(1909), + [aux_sym__val_number_token4] = ACTIONS(1909), + [aux_sym__val_number_token5] = ACTIONS(1909), + [aux_sym__val_number_token6] = ACTIONS(1909), + [anon_sym_0b] = ACTIONS(1907), + [anon_sym_0o] = ACTIONS(1907), + [anon_sym_0x] = ACTIONS(1907), + [sym_val_date] = ACTIONS(1909), + [anon_sym_DQUOTE] = ACTIONS(1909), + [sym__str_single_quotes] = ACTIONS(1909), + [sym__str_back_ticks] = ACTIONS(1909), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1909), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1909), + [anon_sym_err_GT] = ACTIONS(1907), + [anon_sym_out_GT] = ACTIONS(1907), + [anon_sym_e_GT] = ACTIONS(1907), + [anon_sym_o_GT] = ACTIONS(1907), + [anon_sym_err_PLUSout_GT] = ACTIONS(1907), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1907), + [anon_sym_o_PLUSe_GT] = ACTIONS(1907), + [anon_sym_e_PLUSo_GT] = ACTIONS(1907), + [anon_sym_err_GT_GT] = ACTIONS(1909), + [anon_sym_out_GT_GT] = ACTIONS(1909), + [anon_sym_e_GT_GT] = ACTIONS(1909), + [anon_sym_o_GT_GT] = ACTIONS(1909), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1909), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1909), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1909), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1909), + [aux_sym_unquoted_token1] = ACTIONS(1907), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1909), + }, + [1541] = { + [sym_comment] = STATE(1541), [sym__newline] = ACTIONS(986), [anon_sym_SEMI] = ACTIONS(986), [anon_sym_PIPE] = ACTIONS(986), @@ -218726,7 +219236,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(986), [anon_sym_EQ_GT] = ACTIONS(986), [anon_sym_STAR2] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(4866), + [anon_sym_QMARK2] = ACTIONS(4872), [anon_sym_and2] = ACTIONS(986), [anon_sym_xor2] = ACTIONS(986), [anon_sym_or2] = ACTIONS(986), @@ -218773,836 +219283,698 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), [anon_sym_POUND] = ACTIONS(247), }, - [1539] = { - [sym_cell_path] = STATE(1937), - [sym_path] = STATE(1774), - [sym_comment] = STATE(1539), - [aux_sym_cell_path_repeat1] = STATE(1634), - [ts_builtin_sym_end] = ACTIONS(2006), - [sym__newline] = ACTIONS(2006), - [anon_sym_SEMI] = ACTIONS(2006), - [anon_sym_PIPE] = ACTIONS(2006), - [anon_sym_err_GT_PIPE] = ACTIONS(2006), - [anon_sym_out_GT_PIPE] = ACTIONS(2006), - [anon_sym_e_GT_PIPE] = ACTIONS(2006), - [anon_sym_o_GT_PIPE] = ACTIONS(2006), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2006), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2006), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2006), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2006), - [anon_sym_LBRACK] = ACTIONS(2006), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_DOLLAR] = ACTIONS(2004), - [anon_sym_DASH_DASH] = ACTIONS(2006), - [anon_sym_DASH2] = ACTIONS(2004), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_DOT_DOT] = ACTIONS(2004), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2006), - [anon_sym_DOT_DOT_LT] = ACTIONS(2006), - [anon_sym_null] = ACTIONS(2006), - [anon_sym_true] = ACTIONS(2006), - [anon_sym_false] = ACTIONS(2006), - [aux_sym__val_number_decimal_token1] = ACTIONS(2004), - [aux_sym__val_number_decimal_token2] = ACTIONS(2006), - [aux_sym__val_number_decimal_token3] = ACTIONS(2006), - [aux_sym__val_number_decimal_token4] = ACTIONS(2006), - [aux_sym__val_number_token1] = ACTIONS(2006), - [aux_sym__val_number_token2] = ACTIONS(2006), - [aux_sym__val_number_token3] = ACTIONS(2006), - [aux_sym__val_number_token4] = ACTIONS(2006), - [aux_sym__val_number_token5] = ACTIONS(2006), - [aux_sym__val_number_token6] = ACTIONS(2006), - [anon_sym_0b] = ACTIONS(2004), - [anon_sym_0o] = ACTIONS(2004), - [anon_sym_0x] = ACTIONS(2004), - [sym_val_date] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2006), - [sym__str_single_quotes] = ACTIONS(2006), - [sym__str_back_ticks] = ACTIONS(2006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2006), - [anon_sym_err_GT] = ACTIONS(2004), - [anon_sym_out_GT] = ACTIONS(2004), - [anon_sym_e_GT] = ACTIONS(2004), - [anon_sym_o_GT] = ACTIONS(2004), - [anon_sym_err_PLUSout_GT] = ACTIONS(2004), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2004), - [anon_sym_o_PLUSe_GT] = ACTIONS(2004), - [anon_sym_e_PLUSo_GT] = ACTIONS(2004), - [anon_sym_err_GT_GT] = ACTIONS(2006), - [anon_sym_out_GT_GT] = ACTIONS(2006), - [anon_sym_e_GT_GT] = ACTIONS(2006), - [anon_sym_o_GT_GT] = ACTIONS(2006), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2006), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2006), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2006), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2006), - [aux_sym_unquoted_token1] = ACTIONS(2004), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2006), - }, - [1540] = { - [sym_comment] = STATE(1540), - [ts_builtin_sym_end] = ACTIONS(1012), - [sym__newline] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(1012), - [anon_sym_err_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_GT_PIPE] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), - [anon_sym_LBRACK] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1012), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(1012), - [anon_sym_DASH2] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_DOT_DOT] = ACTIONS(1010), - [anon_sym_DOT_DOT2] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(1010), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(1010), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), - [anon_sym_null] = ACTIONS(1012), - [anon_sym_true] = ACTIONS(1012), - [anon_sym_false] = ACTIONS(1012), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1012), - [aux_sym__val_number_decimal_token3] = ACTIONS(1012), - [aux_sym__val_number_decimal_token4] = ACTIONS(1012), - [aux_sym__val_number_token1] = ACTIONS(1012), - [aux_sym__val_number_token2] = ACTIONS(1012), - [aux_sym__val_number_token3] = ACTIONS(1012), - [aux_sym__val_number_token4] = ACTIONS(1012), - [aux_sym__val_number_token5] = ACTIONS(1012), - [aux_sym__val_number_token6] = ACTIONS(1012), - [anon_sym_0b] = ACTIONS(1010), - [anon_sym_0o] = ACTIONS(1010), - [anon_sym_0x] = ACTIONS(1010), - [sym_val_date] = ACTIONS(1012), - [anon_sym_DQUOTE] = ACTIONS(1012), - [sym__str_single_quotes] = ACTIONS(1012), - [sym__str_back_ticks] = ACTIONS(1012), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1012), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1012), - [anon_sym_err_GT] = ACTIONS(1010), - [anon_sym_out_GT] = ACTIONS(1010), - [anon_sym_e_GT] = ACTIONS(1010), - [anon_sym_o_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT] = ACTIONS(1010), - [anon_sym_err_GT_GT] = ACTIONS(1012), - [anon_sym_out_GT_GT] = ACTIONS(1012), - [anon_sym_e_GT_GT] = ACTIONS(1012), - [anon_sym_o_GT_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), - [aux_sym_unquoted_token1] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1012), - }, - [1541] = { - [sym_comment] = STATE(1541), - [sym__newline] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_err_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_GT_PIPE] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_RPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1783), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), - [anon_sym_null] = ACTIONS(1785), - [anon_sym_true] = ACTIONS(1785), - [anon_sym_false] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_0b] = ACTIONS(1783), - [anon_sym_0o] = ACTIONS(1783), - [anon_sym_0x] = ACTIONS(1783), - [sym_val_date] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_err_GT] = ACTIONS(1783), - [anon_sym_out_GT] = ACTIONS(1783), - [anon_sym_e_GT] = ACTIONS(1783), - [anon_sym_o_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT] = ACTIONS(1783), - [anon_sym_err_GT_GT] = ACTIONS(1785), - [anon_sym_out_GT_GT] = ACTIONS(1785), - [anon_sym_e_GT_GT] = ACTIONS(1785), - [anon_sym_o_GT_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), - [aux_sym_unquoted_token1] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1785), - }, [1542] = { - [sym_cell_path] = STATE(1657), - [sym_path] = STATE(1642), [sym_comment] = STATE(1542), - [aux_sym_cell_path_repeat1] = STATE(1645), - [sym__newline] = ACTIONS(1771), - [anon_sym_SEMI] = ACTIONS(1771), - [anon_sym_PIPE] = ACTIONS(1771), - [anon_sym_err_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_GT_PIPE] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), - [anon_sym_RPAREN] = ACTIONS(1771), - [anon_sym_GT2] = ACTIONS(1769), - [anon_sym_DASH2] = ACTIONS(1771), - [anon_sym_in2] = ACTIONS(1771), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_RBRACE] = ACTIONS(1771), - [anon_sym_STAR2] = ACTIONS(1769), - [anon_sym_and2] = ACTIONS(1771), - [anon_sym_xor2] = ACTIONS(1771), - [anon_sym_or2] = ACTIONS(1771), - [anon_sym_not_DASHin2] = ACTIONS(1771), - [anon_sym_starts_DASHwith2] = ACTIONS(1771), - [anon_sym_ends_DASHwith2] = ACTIONS(1771), - [anon_sym_EQ_EQ2] = ACTIONS(1771), - [anon_sym_BANG_EQ2] = ACTIONS(1771), - [anon_sym_LT2] = ACTIONS(1769), - [anon_sym_LT_EQ2] = ACTIONS(1771), - [anon_sym_GT_EQ2] = ACTIONS(1771), - [anon_sym_EQ_TILDE2] = ACTIONS(1771), - [anon_sym_BANG_TILDE2] = ACTIONS(1771), - [anon_sym_STAR_STAR2] = ACTIONS(1771), - [anon_sym_PLUS_PLUS2] = ACTIONS(1771), - [anon_sym_SLASH2] = ACTIONS(1769), - [anon_sym_mod2] = ACTIONS(1771), - [anon_sym_SLASH_SLASH2] = ACTIONS(1771), - [anon_sym_PLUS2] = ACTIONS(1769), - [anon_sym_bit_DASHshl2] = ACTIONS(1771), - [anon_sym_bit_DASHshr2] = ACTIONS(1771), - [anon_sym_bit_DASHand2] = ACTIONS(1771), - [anon_sym_bit_DASHxor2] = ACTIONS(1771), - [anon_sym_bit_DASHor2] = ACTIONS(1771), - [anon_sym_DOT_DOT2] = ACTIONS(1769), - [anon_sym_DOT] = ACTIONS(4868), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), - [anon_sym_err_GT] = ACTIONS(1769), - [anon_sym_out_GT] = ACTIONS(1769), - [anon_sym_e_GT] = ACTIONS(1769), - [anon_sym_o_GT] = ACTIONS(1769), - [anon_sym_err_PLUSout_GT] = ACTIONS(1769), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), - [anon_sym_o_PLUSe_GT] = ACTIONS(1769), - [anon_sym_e_PLUSo_GT] = ACTIONS(1769), - [anon_sym_err_GT_GT] = ACTIONS(1771), - [anon_sym_out_GT_GT] = ACTIONS(1771), - [anon_sym_e_GT_GT] = ACTIONS(1771), - [anon_sym_o_GT_GT] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), + [sym__newline] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_err_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_GT_PIPE] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), + [anon_sym_RPAREN] = ACTIONS(1575), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1575), + [anon_sym_in2] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_RBRACE] = ACTIONS(1575), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1575), + [anon_sym_xor2] = ACTIONS(1575), + [anon_sym_or2] = ACTIONS(1575), + [anon_sym_not_DASHin2] = ACTIONS(1575), + [anon_sym_starts_DASHwith2] = ACTIONS(1575), + [anon_sym_ends_DASHwith2] = ACTIONS(1575), + [anon_sym_EQ_EQ2] = ACTIONS(1575), + [anon_sym_BANG_EQ2] = ACTIONS(1575), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1575), + [anon_sym_GT_EQ2] = ACTIONS(1575), + [anon_sym_EQ_TILDE2] = ACTIONS(1575), + [anon_sym_BANG_TILDE2] = ACTIONS(1575), + [anon_sym_LPAREN2] = ACTIONS(1575), + [anon_sym_STAR_STAR2] = ACTIONS(1575), + [anon_sym_PLUS_PLUS2] = ACTIONS(1575), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1575), + [anon_sym_SLASH_SLASH2] = ACTIONS(1575), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1575), + [anon_sym_bit_DASHshr2] = ACTIONS(1575), + [anon_sym_bit_DASHand2] = ACTIONS(1575), + [anon_sym_bit_DASHxor2] = ACTIONS(1575), + [anon_sym_bit_DASHor2] = ACTIONS(1575), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1575), + [anon_sym_out_GT_GT] = ACTIONS(1575), + [anon_sym_e_GT_GT] = ACTIONS(1575), + [anon_sym_o_GT_GT] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), + [aux_sym_unquoted_token2] = ACTIONS(1573), [anon_sym_POUND] = ACTIONS(247), }, [1543] = { [sym_comment] = STATE(1543), - [sym__newline] = ACTIONS(2165), - [anon_sym_SEMI] = ACTIONS(2165), - [anon_sym_PIPE] = ACTIONS(2165), - [anon_sym_err_GT_PIPE] = ACTIONS(2165), - [anon_sym_out_GT_PIPE] = ACTIONS(2165), - [anon_sym_e_GT_PIPE] = ACTIONS(2165), - [anon_sym_o_GT_PIPE] = ACTIONS(2165), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2165), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2165), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2165), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_LPAREN] = ACTIONS(2165), - [anon_sym_RPAREN] = ACTIONS(2165), - [anon_sym_DOLLAR] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2165), - [anon_sym_DASH2] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_RBRACE] = ACTIONS(2165), - [anon_sym_DOT_DOT] = ACTIONS(2159), - [anon_sym_DOT_DOT2] = ACTIONS(4870), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2159), - [anon_sym_DOT_DOT_LT] = ACTIONS(2159), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4872), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4872), - [anon_sym_null] = ACTIONS(2165), - [anon_sym_true] = ACTIONS(2165), - [anon_sym_false] = ACTIONS(2165), - [aux_sym__val_number_decimal_token1] = ACTIONS(2159), - [aux_sym__val_number_decimal_token2] = ACTIONS(2165), - [aux_sym__val_number_decimal_token3] = ACTIONS(2165), - [aux_sym__val_number_decimal_token4] = ACTIONS(2165), - [aux_sym__val_number_token1] = ACTIONS(2165), - [aux_sym__val_number_token2] = ACTIONS(2165), - [aux_sym__val_number_token3] = ACTIONS(2165), - [aux_sym__val_number_token4] = ACTIONS(2165), - [aux_sym__val_number_token5] = ACTIONS(2165), - [aux_sym__val_number_token6] = ACTIONS(2165), - [anon_sym_0b] = ACTIONS(2159), - [anon_sym_0o] = ACTIONS(2159), - [anon_sym_0x] = ACTIONS(2159), - [sym_val_date] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2165), - [sym__str_single_quotes] = ACTIONS(2165), - [sym__str_back_ticks] = ACTIONS(2165), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2165), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2165), - [anon_sym_err_GT] = ACTIONS(2159), - [anon_sym_out_GT] = ACTIONS(2159), - [anon_sym_e_GT] = ACTIONS(2159), - [anon_sym_o_GT] = ACTIONS(2159), - [anon_sym_err_PLUSout_GT] = ACTIONS(2159), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2159), - [anon_sym_o_PLUSe_GT] = ACTIONS(2159), - [anon_sym_e_PLUSo_GT] = ACTIONS(2159), - [anon_sym_err_GT_GT] = ACTIONS(2165), - [anon_sym_out_GT_GT] = ACTIONS(2165), - [anon_sym_e_GT_GT] = ACTIONS(2165), - [anon_sym_o_GT_GT] = ACTIONS(2165), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2165), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2165), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2165), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2165), - [aux_sym_unquoted_token1] = ACTIONS(2159), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2165), + [sym__newline] = ACTIONS(2054), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_PIPE] = ACTIONS(2054), + [anon_sym_err_GT_PIPE] = ACTIONS(2054), + [anon_sym_out_GT_PIPE] = ACTIONS(2054), + [anon_sym_e_GT_PIPE] = ACTIONS(2054), + [anon_sym_o_GT_PIPE] = ACTIONS(2054), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2054), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2054), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2054), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2054), + [anon_sym_LBRACK] = ACTIONS(2054), + [anon_sym_LPAREN] = ACTIONS(2054), + [anon_sym_RPAREN] = ACTIONS(2054), + [anon_sym_DOLLAR] = ACTIONS(2052), + [anon_sym_DASH_DASH] = ACTIONS(2054), + [anon_sym_DASH2] = ACTIONS(2052), + [anon_sym_LBRACE] = ACTIONS(2054), + [anon_sym_RBRACE] = ACTIONS(2054), + [anon_sym_DOT_DOT] = ACTIONS(2052), + [anon_sym_DOT_DOT2] = ACTIONS(2052), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2054), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2054), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [aux_sym__val_number_decimal_token1] = ACTIONS(2052), + [aux_sym__val_number_decimal_token2] = ACTIONS(2054), + [aux_sym__val_number_decimal_token3] = ACTIONS(2054), + [aux_sym__val_number_decimal_token4] = ACTIONS(2054), + [aux_sym__val_number_token1] = ACTIONS(2054), + [aux_sym__val_number_token2] = ACTIONS(2054), + [aux_sym__val_number_token3] = ACTIONS(2054), + [aux_sym__val_number_token4] = ACTIONS(2054), + [aux_sym__val_number_token5] = ACTIONS(2054), + [aux_sym__val_number_token6] = ACTIONS(2054), + [anon_sym_0b] = ACTIONS(2052), + [anon_sym_0o] = ACTIONS(2052), + [anon_sym_0x] = ACTIONS(2052), + [sym_val_date] = ACTIONS(2054), + [anon_sym_DQUOTE] = ACTIONS(2054), + [sym__str_single_quotes] = ACTIONS(2054), + [sym__str_back_ticks] = ACTIONS(2054), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2054), + [anon_sym_err_GT] = ACTIONS(2052), + [anon_sym_out_GT] = ACTIONS(2052), + [anon_sym_e_GT] = ACTIONS(2052), + [anon_sym_o_GT] = ACTIONS(2052), + [anon_sym_err_PLUSout_GT] = ACTIONS(2052), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2052), + [anon_sym_o_PLUSe_GT] = ACTIONS(2052), + [anon_sym_e_PLUSo_GT] = ACTIONS(2052), + [anon_sym_err_GT_GT] = ACTIONS(2054), + [anon_sym_out_GT_GT] = ACTIONS(2054), + [anon_sym_e_GT_GT] = ACTIONS(2054), + [anon_sym_o_GT_GT] = ACTIONS(2054), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2054), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2054), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2054), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2054), + [aux_sym_unquoted_token1] = ACTIONS(2052), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2054), }, [1544] = { [sym_comment] = STATE(1544), - [ts_builtin_sym_end] = ACTIONS(1623), - [sym__newline] = ACTIONS(1623), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1623), - [anon_sym_err_GT_PIPE] = ACTIONS(1623), - [anon_sym_out_GT_PIPE] = ACTIONS(1623), - [anon_sym_e_GT_PIPE] = ACTIONS(1623), - [anon_sym_o_GT_PIPE] = ACTIONS(1623), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), - [anon_sym_GT2] = ACTIONS(1621), - [anon_sym_DASH2] = ACTIONS(1623), - [anon_sym_in2] = ACTIONS(1623), - [anon_sym_STAR2] = ACTIONS(1621), - [anon_sym_and2] = ACTIONS(1623), - [anon_sym_xor2] = ACTIONS(1623), - [anon_sym_or2] = ACTIONS(1623), - [anon_sym_not_DASHin2] = ACTIONS(1623), - [anon_sym_starts_DASHwith2] = ACTIONS(1623), - [anon_sym_ends_DASHwith2] = ACTIONS(1623), - [anon_sym_EQ_EQ2] = ACTIONS(1623), - [anon_sym_BANG_EQ2] = ACTIONS(1623), - [anon_sym_LT2] = ACTIONS(1621), - [anon_sym_LT_EQ2] = ACTIONS(1623), - [anon_sym_GT_EQ2] = ACTIONS(1623), - [anon_sym_EQ_TILDE2] = ACTIONS(1623), - [anon_sym_BANG_TILDE2] = ACTIONS(1623), - [anon_sym_LPAREN2] = ACTIONS(1623), - [anon_sym_STAR_STAR2] = ACTIONS(1623), - [anon_sym_PLUS_PLUS2] = ACTIONS(1623), - [anon_sym_SLASH2] = ACTIONS(1621), - [anon_sym_mod2] = ACTIONS(1623), - [anon_sym_SLASH_SLASH2] = ACTIONS(1623), - [anon_sym_PLUS2] = ACTIONS(1621), - [anon_sym_bit_DASHshl2] = ACTIONS(1623), - [anon_sym_bit_DASHshr2] = ACTIONS(1623), - [anon_sym_bit_DASHand2] = ACTIONS(1623), - [anon_sym_bit_DASHxor2] = ACTIONS(1623), - [anon_sym_bit_DASHor2] = ACTIONS(1623), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [aux_sym__immediate_decimal_token1] = ACTIONS(4874), - [aux_sym__immediate_decimal_token2] = ACTIONS(4876), - [sym_filesize_unit] = ACTIONS(1621), - [sym_duration_unit] = ACTIONS(1623), - [anon_sym_err_GT] = ACTIONS(1621), - [anon_sym_out_GT] = ACTIONS(1621), - [anon_sym_e_GT] = ACTIONS(1621), - [anon_sym_o_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT] = ACTIONS(1621), - [anon_sym_err_GT_GT] = ACTIONS(1623), - [anon_sym_out_GT_GT] = ACTIONS(1623), - [anon_sym_e_GT_GT] = ACTIONS(1623), - [anon_sym_o_GT_GT] = ACTIONS(1623), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), - [aux_sym_unquoted_token2] = ACTIONS(1621), + [sym__newline] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(992), + [anon_sym_err_GT_PIPE] = ACTIONS(992), + [anon_sym_out_GT_PIPE] = ACTIONS(992), + [anon_sym_e_GT_PIPE] = ACTIONS(992), + [anon_sym_o_GT_PIPE] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), + [anon_sym_GT2] = ACTIONS(990), + [anon_sym_DASH2] = ACTIONS(992), + [anon_sym_in2] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_EQ_GT] = ACTIONS(992), + [anon_sym_STAR2] = ACTIONS(990), + [anon_sym_QMARK2] = ACTIONS(992), + [anon_sym_and2] = ACTIONS(992), + [anon_sym_xor2] = ACTIONS(992), + [anon_sym_or2] = ACTIONS(992), + [anon_sym_not_DASHin2] = ACTIONS(992), + [anon_sym_starts_DASHwith2] = ACTIONS(992), + [anon_sym_ends_DASHwith2] = ACTIONS(992), + [anon_sym_EQ_EQ2] = ACTIONS(992), + [anon_sym_BANG_EQ2] = ACTIONS(992), + [anon_sym_LT2] = ACTIONS(990), + [anon_sym_LT_EQ2] = ACTIONS(992), + [anon_sym_GT_EQ2] = ACTIONS(992), + [anon_sym_EQ_TILDE2] = ACTIONS(992), + [anon_sym_BANG_TILDE2] = ACTIONS(992), + [anon_sym_STAR_STAR2] = ACTIONS(992), + [anon_sym_PLUS_PLUS2] = ACTIONS(992), + [anon_sym_SLASH2] = ACTIONS(990), + [anon_sym_mod2] = ACTIONS(992), + [anon_sym_SLASH_SLASH2] = ACTIONS(992), + [anon_sym_PLUS2] = ACTIONS(990), + [anon_sym_bit_DASHshl2] = ACTIONS(992), + [anon_sym_bit_DASHshr2] = ACTIONS(992), + [anon_sym_bit_DASHand2] = ACTIONS(992), + [anon_sym_bit_DASHxor2] = ACTIONS(992), + [anon_sym_bit_DASHor2] = ACTIONS(992), + [anon_sym_DOT_DOT2] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), + [anon_sym_DOT_DOT_LT2] = ACTIONS(992), + [aux_sym_record_entry_token1] = ACTIONS(992), + [anon_sym_err_GT] = ACTIONS(990), + [anon_sym_out_GT] = ACTIONS(990), + [anon_sym_e_GT] = ACTIONS(990), + [anon_sym_o_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT] = ACTIONS(990), + [anon_sym_err_GT_GT] = ACTIONS(992), + [anon_sym_out_GT_GT] = ACTIONS(992), + [anon_sym_e_GT_GT] = ACTIONS(992), + [anon_sym_o_GT_GT] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(247), + }, + [1545] = { + [sym_cell_path] = STATE(1959), + [sym_path] = STATE(1823), + [sym_comment] = STATE(1545), + [aux_sym_cell_path_repeat1] = STATE(1574), + [ts_builtin_sym_end] = ACTIONS(1869), + [sym__newline] = ACTIONS(1869), + [anon_sym_SEMI] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_err_GT_PIPE] = ACTIONS(1869), + [anon_sym_out_GT_PIPE] = ACTIONS(1869), + [anon_sym_e_GT_PIPE] = ACTIONS(1869), + [anon_sym_o_GT_PIPE] = ACTIONS(1869), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1869), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1869), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1869), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1869), + [anon_sym_LBRACK] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1869), + [anon_sym_DOLLAR] = ACTIONS(1867), + [anon_sym_DASH_DASH] = ACTIONS(1869), + [anon_sym_DASH2] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1869), + [anon_sym_DOT_DOT] = ACTIONS(1867), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1869), + [anon_sym_DOT_DOT_LT] = ACTIONS(1869), + [anon_sym_null] = ACTIONS(1869), + [anon_sym_true] = ACTIONS(1869), + [anon_sym_false] = ACTIONS(1869), + [aux_sym__val_number_decimal_token1] = ACTIONS(1867), + [aux_sym__val_number_decimal_token2] = ACTIONS(1869), + [aux_sym__val_number_decimal_token3] = ACTIONS(1869), + [aux_sym__val_number_decimal_token4] = ACTIONS(1869), + [aux_sym__val_number_token1] = ACTIONS(1869), + [aux_sym__val_number_token2] = ACTIONS(1869), + [aux_sym__val_number_token3] = ACTIONS(1869), + [aux_sym__val_number_token4] = ACTIONS(1869), + [aux_sym__val_number_token5] = ACTIONS(1869), + [aux_sym__val_number_token6] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1867), + [anon_sym_0x] = ACTIONS(1867), + [sym_val_date] = ACTIONS(1869), + [anon_sym_DQUOTE] = ACTIONS(1869), + [sym__str_single_quotes] = ACTIONS(1869), + [sym__str_back_ticks] = ACTIONS(1869), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1869), + [anon_sym_err_GT] = ACTIONS(1867), + [anon_sym_out_GT] = ACTIONS(1867), + [anon_sym_e_GT] = ACTIONS(1867), + [anon_sym_o_GT] = ACTIONS(1867), + [anon_sym_err_PLUSout_GT] = ACTIONS(1867), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1867), + [anon_sym_o_PLUSe_GT] = ACTIONS(1867), + [anon_sym_e_PLUSo_GT] = ACTIONS(1867), + [anon_sym_err_GT_GT] = ACTIONS(1869), + [anon_sym_out_GT_GT] = ACTIONS(1869), + [anon_sym_e_GT_GT] = ACTIONS(1869), + [anon_sym_o_GT_GT] = ACTIONS(1869), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1869), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1869), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1869), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1869), + [aux_sym_unquoted_token1] = ACTIONS(1867), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1869), + }, + [1546] = { + [sym_comment] = STATE(1546), + [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(1028), + [anon_sym_SEMI] = ACTIONS(1028), + [anon_sym_PIPE] = ACTIONS(1028), + [anon_sym_err_GT_PIPE] = ACTIONS(1028), + [anon_sym_out_GT_PIPE] = ACTIONS(1028), + [anon_sym_e_GT_PIPE] = ACTIONS(1028), + [anon_sym_o_GT_PIPE] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), + [anon_sym_RPAREN] = ACTIONS(1028), + [anon_sym_GT2] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(1026), + [anon_sym_in2] = ACTIONS(1028), + [anon_sym_STAR2] = ACTIONS(1026), + [anon_sym_and2] = ACTIONS(1028), + [anon_sym_xor2] = ACTIONS(1028), + [anon_sym_or2] = ACTIONS(1028), + [anon_sym_not_DASHin2] = ACTIONS(1028), + [anon_sym_starts_DASHwith2] = ACTIONS(1028), + [anon_sym_ends_DASHwith2] = ACTIONS(1028), + [anon_sym_EQ_EQ2] = ACTIONS(1028), + [anon_sym_BANG_EQ2] = ACTIONS(1028), + [anon_sym_LT2] = ACTIONS(1026), + [anon_sym_LT_EQ2] = ACTIONS(1028), + [anon_sym_GT_EQ2] = ACTIONS(1028), + [anon_sym_EQ_TILDE2] = ACTIONS(1028), + [anon_sym_BANG_TILDE2] = ACTIONS(1028), + [anon_sym_STAR_STAR2] = ACTIONS(1028), + [anon_sym_PLUS_PLUS2] = ACTIONS(1026), + [anon_sym_SLASH2] = ACTIONS(1026), + [anon_sym_mod2] = ACTIONS(1028), + [anon_sym_SLASH_SLASH2] = ACTIONS(1028), + [anon_sym_PLUS2] = ACTIONS(1026), + [anon_sym_bit_DASHshl2] = ACTIONS(1028), + [anon_sym_bit_DASHshr2] = ACTIONS(1028), + [anon_sym_bit_DASHand2] = ACTIONS(1028), + [anon_sym_bit_DASHxor2] = ACTIONS(1028), + [anon_sym_bit_DASHor2] = ACTIONS(1028), + [anon_sym_DOT_DOT2] = ACTIONS(1038), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), + [anon_sym_err_GT] = ACTIONS(1026), + [anon_sym_out_GT] = ACTIONS(1026), + [anon_sym_e_GT] = ACTIONS(1026), + [anon_sym_o_GT] = ACTIONS(1026), + [anon_sym_err_PLUSout_GT] = ACTIONS(1026), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), + [anon_sym_o_PLUSe_GT] = ACTIONS(1026), + [anon_sym_e_PLUSo_GT] = ACTIONS(1026), + [anon_sym_err_GT_GT] = ACTIONS(1028), + [anon_sym_out_GT_GT] = ACTIONS(1028), + [anon_sym_e_GT_GT] = ACTIONS(1028), + [anon_sym_o_GT_GT] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1028), + [anon_sym_POUND] = ACTIONS(247), + }, + [1547] = { + [sym_comment] = STATE(1547), + [sym__newline] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2185), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_err_GT_PIPE] = ACTIONS(2185), + [anon_sym_out_GT_PIPE] = ACTIONS(2185), + [anon_sym_e_GT_PIPE] = ACTIONS(2185), + [anon_sym_o_GT_PIPE] = ACTIONS(2185), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2185), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2185), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2185), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_RPAREN] = ACTIONS(2185), + [anon_sym_DOLLAR] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2185), + [anon_sym_DASH2] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_RBRACE] = ACTIONS(2185), + [anon_sym_DOT_DOT] = ACTIONS(2183), + [anon_sym_DOT_DOT2] = ACTIONS(2183), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2183), + [anon_sym_DOT_DOT_LT] = ACTIONS(2183), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2185), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2185), + [anon_sym_null] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2185), + [anon_sym_false] = ACTIONS(2185), + [aux_sym__val_number_decimal_token1] = ACTIONS(2183), + [aux_sym__val_number_decimal_token2] = ACTIONS(2185), + [aux_sym__val_number_decimal_token3] = ACTIONS(2185), + [aux_sym__val_number_decimal_token4] = ACTIONS(2185), + [aux_sym__val_number_token1] = ACTIONS(2185), + [aux_sym__val_number_token2] = ACTIONS(2185), + [aux_sym__val_number_token3] = ACTIONS(2185), + [aux_sym__val_number_token4] = ACTIONS(2185), + [aux_sym__val_number_token5] = ACTIONS(2185), + [aux_sym__val_number_token6] = ACTIONS(2185), + [anon_sym_0b] = ACTIONS(2183), + [anon_sym_0o] = ACTIONS(2183), + [anon_sym_0x] = ACTIONS(2183), + [sym_val_date] = ACTIONS(2185), + [anon_sym_DQUOTE] = ACTIONS(2185), + [sym__str_single_quotes] = ACTIONS(2185), + [sym__str_back_ticks] = ACTIONS(2185), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2185), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2185), + [anon_sym_err_GT] = ACTIONS(2183), + [anon_sym_out_GT] = ACTIONS(2183), + [anon_sym_e_GT] = ACTIONS(2183), + [anon_sym_o_GT] = ACTIONS(2183), + [anon_sym_err_PLUSout_GT] = ACTIONS(2183), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2183), + [anon_sym_o_PLUSe_GT] = ACTIONS(2183), + [anon_sym_e_PLUSo_GT] = ACTIONS(2183), + [anon_sym_err_GT_GT] = ACTIONS(2185), + [anon_sym_out_GT_GT] = ACTIONS(2185), + [anon_sym_e_GT_GT] = ACTIONS(2185), + [anon_sym_o_GT_GT] = ACTIONS(2185), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2185), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2185), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2185), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2185), + [aux_sym_unquoted_token1] = ACTIONS(2183), [anon_sym_POUND] = ACTIONS(247), - }, - [1545] = { - [sym_comment] = STATE(1545), - [sym__newline] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_err_GT_PIPE] = ACTIONS(1892), - [anon_sym_out_GT_PIPE] = ACTIONS(1892), - [anon_sym_e_GT_PIPE] = ACTIONS(1892), - [anon_sym_o_GT_PIPE] = ACTIONS(1892), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1892), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1892), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1892), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1892), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_LPAREN] = ACTIONS(1892), - [anon_sym_RPAREN] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1890), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_DASH2] = ACTIONS(1890), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_RBRACE] = ACTIONS(1892), - [anon_sym_DOT_DOT] = ACTIONS(1890), - [anon_sym_DOT_DOT2] = ACTIONS(1890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1890), - [anon_sym_DOT_DOT_LT] = ACTIONS(1890), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1892), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [aux_sym__val_number_decimal_token1] = ACTIONS(1890), - [aux_sym__val_number_decimal_token2] = ACTIONS(1892), - [aux_sym__val_number_decimal_token3] = ACTIONS(1892), - [aux_sym__val_number_decimal_token4] = ACTIONS(1892), - [aux_sym__val_number_token1] = ACTIONS(1892), - [aux_sym__val_number_token2] = ACTIONS(1892), - [aux_sym__val_number_token3] = ACTIONS(1892), - [aux_sym__val_number_token4] = ACTIONS(1892), - [aux_sym__val_number_token5] = ACTIONS(1892), - [aux_sym__val_number_token6] = ACTIONS(1892), - [anon_sym_0b] = ACTIONS(1890), - [anon_sym_0o] = ACTIONS(1890), - [anon_sym_0x] = ACTIONS(1890), - [sym_val_date] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [sym__str_single_quotes] = ACTIONS(1892), - [sym__str_back_ticks] = ACTIONS(1892), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1892), - [anon_sym_err_GT] = ACTIONS(1890), - [anon_sym_out_GT] = ACTIONS(1890), - [anon_sym_e_GT] = ACTIONS(1890), - [anon_sym_o_GT] = ACTIONS(1890), - [anon_sym_err_PLUSout_GT] = ACTIONS(1890), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1890), - [anon_sym_o_PLUSe_GT] = ACTIONS(1890), - [anon_sym_e_PLUSo_GT] = ACTIONS(1890), - [anon_sym_err_GT_GT] = ACTIONS(1892), - [anon_sym_out_GT_GT] = ACTIONS(1892), - [anon_sym_e_GT_GT] = ACTIONS(1892), - [anon_sym_o_GT_GT] = ACTIONS(1892), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1892), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1892), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1892), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1892), - [aux_sym_unquoted_token1] = ACTIONS(1890), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1892), - }, - [1546] = { - [sym_cell_path] = STATE(1938), - [sym_path] = STATE(1774), - [sym_comment] = STATE(1546), - [aux_sym_cell_path_repeat1] = STATE(1634), - [ts_builtin_sym_end] = ACTIONS(2070), - [sym__newline] = ACTIONS(2070), - [anon_sym_SEMI] = ACTIONS(2070), - [anon_sym_PIPE] = ACTIONS(2070), - [anon_sym_err_GT_PIPE] = ACTIONS(2070), - [anon_sym_out_GT_PIPE] = ACTIONS(2070), - [anon_sym_e_GT_PIPE] = ACTIONS(2070), - [anon_sym_o_GT_PIPE] = ACTIONS(2070), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2070), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2070), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2070), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2070), - [anon_sym_LBRACK] = ACTIONS(2070), - [anon_sym_LPAREN] = ACTIONS(2070), - [anon_sym_DOLLAR] = ACTIONS(2068), - [anon_sym_DASH_DASH] = ACTIONS(2070), - [anon_sym_DASH2] = ACTIONS(2068), - [anon_sym_LBRACE] = ACTIONS(2070), - [anon_sym_DOT_DOT] = ACTIONS(2068), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2070), - [anon_sym_DOT_DOT_LT] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2070), - [anon_sym_true] = ACTIONS(2070), - [anon_sym_false] = ACTIONS(2070), - [aux_sym__val_number_decimal_token1] = ACTIONS(2068), - [aux_sym__val_number_decimal_token2] = ACTIONS(2070), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), - [aux_sym__val_number_token1] = ACTIONS(2070), - [aux_sym__val_number_token2] = ACTIONS(2070), - [aux_sym__val_number_token3] = ACTIONS(2070), - [aux_sym__val_number_token4] = ACTIONS(2070), - [aux_sym__val_number_token5] = ACTIONS(2070), - [aux_sym__val_number_token6] = ACTIONS(2070), - [anon_sym_0b] = ACTIONS(2068), - [anon_sym_0o] = ACTIONS(2068), - [anon_sym_0x] = ACTIONS(2068), - [sym_val_date] = ACTIONS(2070), - [anon_sym_DQUOTE] = ACTIONS(2070), - [sym__str_single_quotes] = ACTIONS(2070), - [sym__str_back_ticks] = ACTIONS(2070), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2070), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2070), - [anon_sym_err_GT] = ACTIONS(2068), - [anon_sym_out_GT] = ACTIONS(2068), - [anon_sym_e_GT] = ACTIONS(2068), - [anon_sym_o_GT] = ACTIONS(2068), - [anon_sym_err_PLUSout_GT] = ACTIONS(2068), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2068), - [anon_sym_o_PLUSe_GT] = ACTIONS(2068), - [anon_sym_e_PLUSo_GT] = ACTIONS(2068), - [anon_sym_err_GT_GT] = ACTIONS(2070), - [anon_sym_out_GT_GT] = ACTIONS(2070), - [anon_sym_e_GT_GT] = ACTIONS(2070), - [anon_sym_o_GT_GT] = ACTIONS(2070), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2070), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2070), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2070), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2070), - [aux_sym_unquoted_token1] = ACTIONS(2068), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2070), - }, - [1547] = { - [sym_cell_path] = STATE(1939), - [sym_path] = STATE(1774), - [sym_comment] = STATE(1547), - [aux_sym_cell_path_repeat1] = STATE(1634), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym__newline] = ACTIONS(2074), - [anon_sym_SEMI] = ACTIONS(2074), - [anon_sym_PIPE] = ACTIONS(2074), - [anon_sym_err_GT_PIPE] = ACTIONS(2074), - [anon_sym_out_GT_PIPE] = ACTIONS(2074), - [anon_sym_e_GT_PIPE] = ACTIONS(2074), - [anon_sym_o_GT_PIPE] = ACTIONS(2074), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2074), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2074), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2074), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2074), - [anon_sym_LPAREN] = ACTIONS(2074), - [anon_sym_DOLLAR] = ACTIONS(2072), - [anon_sym_DASH_DASH] = ACTIONS(2074), - [anon_sym_DASH2] = ACTIONS(2072), - [anon_sym_LBRACE] = ACTIONS(2074), - [anon_sym_DOT_DOT] = ACTIONS(2072), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2074), - [anon_sym_DOT_DOT_LT] = ACTIONS(2074), - [anon_sym_null] = ACTIONS(2074), - [anon_sym_true] = ACTIONS(2074), - [anon_sym_false] = ACTIONS(2074), - [aux_sym__val_number_decimal_token1] = ACTIONS(2072), - [aux_sym__val_number_decimal_token2] = ACTIONS(2074), - [aux_sym__val_number_decimal_token3] = ACTIONS(2074), - [aux_sym__val_number_decimal_token4] = ACTIONS(2074), - [aux_sym__val_number_token1] = ACTIONS(2074), - [aux_sym__val_number_token2] = ACTIONS(2074), - [aux_sym__val_number_token3] = ACTIONS(2074), - [aux_sym__val_number_token4] = ACTIONS(2074), - [aux_sym__val_number_token5] = ACTIONS(2074), - [aux_sym__val_number_token6] = ACTIONS(2074), - [anon_sym_0b] = ACTIONS(2072), - [anon_sym_0o] = ACTIONS(2072), - [anon_sym_0x] = ACTIONS(2072), - [sym_val_date] = ACTIONS(2074), - [anon_sym_DQUOTE] = ACTIONS(2074), - [sym__str_single_quotes] = ACTIONS(2074), - [sym__str_back_ticks] = ACTIONS(2074), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2074), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2074), - [anon_sym_err_GT] = ACTIONS(2072), - [anon_sym_out_GT] = ACTIONS(2072), - [anon_sym_e_GT] = ACTIONS(2072), - [anon_sym_o_GT] = ACTIONS(2072), - [anon_sym_err_PLUSout_GT] = ACTIONS(2072), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2072), - [anon_sym_o_PLUSe_GT] = ACTIONS(2072), - [anon_sym_e_PLUSo_GT] = ACTIONS(2072), - [anon_sym_err_GT_GT] = ACTIONS(2074), - [anon_sym_out_GT_GT] = ACTIONS(2074), - [anon_sym_e_GT_GT] = ACTIONS(2074), - [anon_sym_o_GT_GT] = ACTIONS(2074), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2074), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2074), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2074), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2074), - [aux_sym_unquoted_token1] = ACTIONS(2072), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2074), + [sym_raw_string_begin] = ACTIONS(2185), }, [1548] = { - [sym_cell_path] = STATE(1940), - [sym_path] = STATE(1774), + [sym_cell_path] = STATE(1914), + [sym_path] = STATE(1823), [sym_comment] = STATE(1548), - [aux_sym_cell_path_repeat1] = STATE(1634), - [ts_builtin_sym_end] = ACTIONS(1911), - [sym__newline] = ACTIONS(1911), - [anon_sym_SEMI] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_err_GT_PIPE] = ACTIONS(1911), - [anon_sym_out_GT_PIPE] = ACTIONS(1911), - [anon_sym_e_GT_PIPE] = ACTIONS(1911), - [anon_sym_o_GT_PIPE] = ACTIONS(1911), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1911), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1911), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1911), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1911), - [anon_sym_LBRACK] = ACTIONS(1911), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_DOLLAR] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1911), - [anon_sym_DASH2] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1907), + [aux_sym_cell_path_repeat1] = STATE(1574), + [ts_builtin_sym_end] = ACTIONS(1873), + [sym__newline] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_err_GT_PIPE] = ACTIONS(1873), + [anon_sym_out_GT_PIPE] = ACTIONS(1873), + [anon_sym_e_GT_PIPE] = ACTIONS(1873), + [anon_sym_o_GT_PIPE] = ACTIONS(1873), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1873), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1873), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1873), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1873), + [anon_sym_DOLLAR] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1873), + [anon_sym_DASH2] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DOT_DOT] = ACTIONS(1871), [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1911), - [anon_sym_DOT_DOT_LT] = ACTIONS(1911), - [anon_sym_null] = ACTIONS(1911), - [anon_sym_true] = ACTIONS(1911), - [anon_sym_false] = ACTIONS(1911), - [aux_sym__val_number_decimal_token1] = ACTIONS(1907), - [aux_sym__val_number_decimal_token2] = ACTIONS(1911), - [aux_sym__val_number_decimal_token3] = ACTIONS(1911), - [aux_sym__val_number_decimal_token4] = ACTIONS(1911), - [aux_sym__val_number_token1] = ACTIONS(1911), - [aux_sym__val_number_token2] = ACTIONS(1911), - [aux_sym__val_number_token3] = ACTIONS(1911), - [aux_sym__val_number_token4] = ACTIONS(1911), - [aux_sym__val_number_token5] = ACTIONS(1911), - [aux_sym__val_number_token6] = ACTIONS(1911), - [anon_sym_0b] = ACTIONS(1907), - [anon_sym_0o] = ACTIONS(1907), - [anon_sym_0x] = ACTIONS(1907), - [sym_val_date] = ACTIONS(1911), - [anon_sym_DQUOTE] = ACTIONS(1911), - [sym__str_single_quotes] = ACTIONS(1911), - [sym__str_back_ticks] = ACTIONS(1911), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1911), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1911), - [anon_sym_err_GT] = ACTIONS(1907), - [anon_sym_out_GT] = ACTIONS(1907), - [anon_sym_e_GT] = ACTIONS(1907), - [anon_sym_o_GT] = ACTIONS(1907), - [anon_sym_err_PLUSout_GT] = ACTIONS(1907), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1907), - [anon_sym_o_PLUSe_GT] = ACTIONS(1907), - [anon_sym_e_PLUSo_GT] = ACTIONS(1907), - [anon_sym_err_GT_GT] = ACTIONS(1911), - [anon_sym_out_GT_GT] = ACTIONS(1911), - [anon_sym_e_GT_GT] = ACTIONS(1911), - [anon_sym_o_GT_GT] = ACTIONS(1911), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1911), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1911), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1911), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1911), - [aux_sym_unquoted_token1] = ACTIONS(1907), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1911), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1873), + [anon_sym_DOT_DOT_LT] = ACTIONS(1873), + [anon_sym_null] = ACTIONS(1873), + [anon_sym_true] = ACTIONS(1873), + [anon_sym_false] = ACTIONS(1873), + [aux_sym__val_number_decimal_token1] = ACTIONS(1871), + [aux_sym__val_number_decimal_token2] = ACTIONS(1873), + [aux_sym__val_number_decimal_token3] = ACTIONS(1873), + [aux_sym__val_number_decimal_token4] = ACTIONS(1873), + [aux_sym__val_number_token1] = ACTIONS(1873), + [aux_sym__val_number_token2] = ACTIONS(1873), + [aux_sym__val_number_token3] = ACTIONS(1873), + [aux_sym__val_number_token4] = ACTIONS(1873), + [aux_sym__val_number_token5] = ACTIONS(1873), + [aux_sym__val_number_token6] = ACTIONS(1873), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0o] = ACTIONS(1871), + [anon_sym_0x] = ACTIONS(1871), + [sym_val_date] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1873), + [sym__str_single_quotes] = ACTIONS(1873), + [sym__str_back_ticks] = ACTIONS(1873), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1873), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1873), + [anon_sym_err_GT] = ACTIONS(1871), + [anon_sym_out_GT] = ACTIONS(1871), + [anon_sym_e_GT] = ACTIONS(1871), + [anon_sym_o_GT] = ACTIONS(1871), + [anon_sym_err_PLUSout_GT] = ACTIONS(1871), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1871), + [anon_sym_o_PLUSe_GT] = ACTIONS(1871), + [anon_sym_e_PLUSo_GT] = ACTIONS(1871), + [anon_sym_err_GT_GT] = ACTIONS(1873), + [anon_sym_out_GT_GT] = ACTIONS(1873), + [anon_sym_e_GT_GT] = ACTIONS(1873), + [anon_sym_o_GT_GT] = ACTIONS(1873), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1873), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1873), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1873), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1873), + [aux_sym_unquoted_token1] = ACTIONS(1871), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1873), }, [1549] = { - [sym_cell_path] = STATE(1941), - [sym_path] = STATE(1774), [sym_comment] = STATE(1549), - [aux_sym_cell_path_repeat1] = STATE(1634), - [ts_builtin_sym_end] = ACTIONS(1915), - [sym__newline] = ACTIONS(1915), - [anon_sym_SEMI] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1915), - [anon_sym_err_GT_PIPE] = ACTIONS(1915), - [anon_sym_out_GT_PIPE] = ACTIONS(1915), - [anon_sym_e_GT_PIPE] = ACTIONS(1915), - [anon_sym_o_GT_PIPE] = ACTIONS(1915), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1915), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1915), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1915), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1915), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_DOLLAR] = ACTIONS(1913), - [anon_sym_DASH_DASH] = ACTIONS(1915), - [anon_sym_DASH2] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1915), - [anon_sym_DOT_DOT] = ACTIONS(1913), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1915), - [anon_sym_DOT_DOT_LT] = ACTIONS(1915), - [anon_sym_null] = ACTIONS(1915), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [aux_sym__val_number_decimal_token1] = ACTIONS(1913), - [aux_sym__val_number_decimal_token2] = ACTIONS(1915), - [aux_sym__val_number_decimal_token3] = ACTIONS(1915), - [aux_sym__val_number_decimal_token4] = ACTIONS(1915), - [aux_sym__val_number_token1] = ACTIONS(1915), - [aux_sym__val_number_token2] = ACTIONS(1915), - [aux_sym__val_number_token3] = ACTIONS(1915), - [aux_sym__val_number_token4] = ACTIONS(1915), - [aux_sym__val_number_token5] = ACTIONS(1915), - [aux_sym__val_number_token6] = ACTIONS(1915), - [anon_sym_0b] = ACTIONS(1913), - [anon_sym_0o] = ACTIONS(1913), - [anon_sym_0x] = ACTIONS(1913), - [sym_val_date] = ACTIONS(1915), - [anon_sym_DQUOTE] = ACTIONS(1915), - [sym__str_single_quotes] = ACTIONS(1915), - [sym__str_back_ticks] = ACTIONS(1915), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1915), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1915), - [anon_sym_err_GT] = ACTIONS(1913), - [anon_sym_out_GT] = ACTIONS(1913), - [anon_sym_e_GT] = ACTIONS(1913), - [anon_sym_o_GT] = ACTIONS(1913), - [anon_sym_err_PLUSout_GT] = ACTIONS(1913), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1913), - [anon_sym_o_PLUSe_GT] = ACTIONS(1913), - [anon_sym_e_PLUSo_GT] = ACTIONS(1913), - [anon_sym_err_GT_GT] = ACTIONS(1915), - [anon_sym_out_GT_GT] = ACTIONS(1915), - [anon_sym_e_GT_GT] = ACTIONS(1915), - [anon_sym_o_GT_GT] = ACTIONS(1915), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1915), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1915), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1915), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1915), - [aux_sym_unquoted_token1] = ACTIONS(1913), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1915), + [anon_sym_EQ] = ACTIONS(4878), + [anon_sym_PLUS_EQ] = ACTIONS(4880), + [anon_sym_DASH_EQ] = ACTIONS(4880), + [anon_sym_STAR_EQ] = ACTIONS(4880), + [anon_sym_SLASH_EQ] = ACTIONS(4880), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4880), + [sym__newline] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1028), + [anon_sym_PIPE] = ACTIONS(1028), + [anon_sym_err_GT_PIPE] = ACTIONS(1028), + [anon_sym_out_GT_PIPE] = ACTIONS(1028), + [anon_sym_e_GT_PIPE] = ACTIONS(1028), + [anon_sym_o_GT_PIPE] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), + [anon_sym_RPAREN] = ACTIONS(1028), + [anon_sym_GT2] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(1026), + [anon_sym_in2] = ACTIONS(1028), + [anon_sym_STAR2] = ACTIONS(1026), + [anon_sym_and2] = ACTIONS(1028), + [anon_sym_xor2] = ACTIONS(1028), + [anon_sym_or2] = ACTIONS(1028), + [anon_sym_not_DASHin2] = ACTIONS(1028), + [anon_sym_starts_DASHwith2] = ACTIONS(1028), + [anon_sym_ends_DASHwith2] = ACTIONS(1028), + [anon_sym_EQ_EQ2] = ACTIONS(1028), + [anon_sym_BANG_EQ2] = ACTIONS(1028), + [anon_sym_LT2] = ACTIONS(1026), + [anon_sym_LT_EQ2] = ACTIONS(1028), + [anon_sym_GT_EQ2] = ACTIONS(1028), + [anon_sym_EQ_TILDE2] = ACTIONS(1028), + [anon_sym_BANG_TILDE2] = ACTIONS(1028), + [anon_sym_STAR_STAR2] = ACTIONS(1028), + [anon_sym_PLUS_PLUS2] = ACTIONS(1026), + [anon_sym_SLASH2] = ACTIONS(1026), + [anon_sym_mod2] = ACTIONS(1028), + [anon_sym_SLASH_SLASH2] = ACTIONS(1028), + [anon_sym_PLUS2] = ACTIONS(1026), + [anon_sym_bit_DASHshl2] = ACTIONS(1028), + [anon_sym_bit_DASHshr2] = ACTIONS(1028), + [anon_sym_bit_DASHand2] = ACTIONS(1028), + [anon_sym_bit_DASHxor2] = ACTIONS(1028), + [anon_sym_bit_DASHor2] = ACTIONS(1028), + [anon_sym_DOT_DOT2] = ACTIONS(1038), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), + [anon_sym_err_GT] = ACTIONS(1026), + [anon_sym_out_GT] = ACTIONS(1026), + [anon_sym_e_GT] = ACTIONS(1026), + [anon_sym_o_GT] = ACTIONS(1026), + [anon_sym_err_PLUSout_GT] = ACTIONS(1026), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), + [anon_sym_o_PLUSe_GT] = ACTIONS(1026), + [anon_sym_e_PLUSo_GT] = ACTIONS(1026), + [anon_sym_err_GT_GT] = ACTIONS(1028), + [anon_sym_out_GT_GT] = ACTIONS(1028), + [anon_sym_e_GT_GT] = ACTIONS(1028), + [anon_sym_o_GT_GT] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1028), + [anon_sym_POUND] = ACTIONS(247), }, [1550] = { + [sym_cell_path] = STATE(1705), + [sym_path] = STATE(1615), [sym_comment] = STATE(1550), - [sym__newline] = ACTIONS(1609), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_PIPE] = ACTIONS(1609), - [anon_sym_err_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_GT_PIPE] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), - [anon_sym_RPAREN] = ACTIONS(1609), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1609), - [anon_sym_in2] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1609), - [anon_sym_RBRACE] = ACTIONS(1609), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1609), - [anon_sym_xor2] = ACTIONS(1609), - [anon_sym_or2] = ACTIONS(1609), - [anon_sym_not_DASHin2] = ACTIONS(1609), - [anon_sym_starts_DASHwith2] = ACTIONS(1609), - [anon_sym_ends_DASHwith2] = ACTIONS(1609), - [anon_sym_EQ_EQ2] = ACTIONS(1609), - [anon_sym_BANG_EQ2] = ACTIONS(1609), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1609), - [anon_sym_GT_EQ2] = ACTIONS(1609), - [anon_sym_EQ_TILDE2] = ACTIONS(1609), - [anon_sym_BANG_TILDE2] = ACTIONS(1609), - [anon_sym_LPAREN2] = ACTIONS(1609), - [anon_sym_STAR_STAR2] = ACTIONS(1609), - [anon_sym_PLUS_PLUS2] = ACTIONS(1609), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1609), - [anon_sym_SLASH_SLASH2] = ACTIONS(1609), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1609), - [anon_sym_bit_DASHshr2] = ACTIONS(1609), - [anon_sym_bit_DASHand2] = ACTIONS(1609), - [anon_sym_bit_DASHxor2] = ACTIONS(1609), - [anon_sym_bit_DASHor2] = ACTIONS(1609), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1609), - [anon_sym_out_GT_GT] = ACTIONS(1609), - [anon_sym_e_GT_GT] = ACTIONS(1609), - [anon_sym_o_GT_GT] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), - [aux_sym_unquoted_token2] = ACTIONS(1607), + [aux_sym_cell_path_repeat1] = STATE(1643), + [sym__newline] = ACTIONS(963), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_err_GT_PIPE] = ACTIONS(963), + [anon_sym_out_GT_PIPE] = ACTIONS(963), + [anon_sym_e_GT_PIPE] = ACTIONS(963), + [anon_sym_o_GT_PIPE] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), + [anon_sym_RPAREN] = ACTIONS(963), + [anon_sym_GT2] = ACTIONS(961), + [anon_sym_DASH2] = ACTIONS(963), + [anon_sym_in2] = ACTIONS(963), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_STAR2] = ACTIONS(961), + [anon_sym_and2] = ACTIONS(963), + [anon_sym_xor2] = ACTIONS(963), + [anon_sym_or2] = ACTIONS(963), + [anon_sym_not_DASHin2] = ACTIONS(963), + [anon_sym_starts_DASHwith2] = ACTIONS(963), + [anon_sym_ends_DASHwith2] = ACTIONS(963), + [anon_sym_EQ_EQ2] = ACTIONS(963), + [anon_sym_BANG_EQ2] = ACTIONS(963), + [anon_sym_LT2] = ACTIONS(961), + [anon_sym_LT_EQ2] = ACTIONS(963), + [anon_sym_GT_EQ2] = ACTIONS(963), + [anon_sym_EQ_TILDE2] = ACTIONS(963), + [anon_sym_BANG_TILDE2] = ACTIONS(963), + [anon_sym_STAR_STAR2] = ACTIONS(963), + [anon_sym_PLUS_PLUS2] = ACTIONS(963), + [anon_sym_SLASH2] = ACTIONS(961), + [anon_sym_mod2] = ACTIONS(963), + [anon_sym_SLASH_SLASH2] = ACTIONS(963), + [anon_sym_PLUS2] = ACTIONS(961), + [anon_sym_bit_DASHshl2] = ACTIONS(963), + [anon_sym_bit_DASHshr2] = ACTIONS(963), + [anon_sym_bit_DASHand2] = ACTIONS(963), + [anon_sym_bit_DASHxor2] = ACTIONS(963), + [anon_sym_bit_DASHor2] = ACTIONS(963), + [anon_sym_DOT_DOT2] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(4847), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), + [anon_sym_DOT_DOT_LT2] = ACTIONS(963), + [anon_sym_err_GT] = ACTIONS(961), + [anon_sym_out_GT] = ACTIONS(961), + [anon_sym_e_GT] = ACTIONS(961), + [anon_sym_o_GT] = ACTIONS(961), + [anon_sym_err_PLUSout_GT] = ACTIONS(961), + [anon_sym_out_PLUSerr_GT] = ACTIONS(961), + [anon_sym_o_PLUSe_GT] = ACTIONS(961), + [anon_sym_e_PLUSo_GT] = ACTIONS(961), + [anon_sym_err_GT_GT] = ACTIONS(963), + [anon_sym_out_GT_GT] = ACTIONS(963), + [anon_sym_e_GT_GT] = ACTIONS(963), + [anon_sym_o_GT_GT] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), [anon_sym_POUND] = ACTIONS(247), }, [1551] = { [sym_comment] = STATE(1551), + [sym__newline] = ACTIONS(1587), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_err_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_GT_PIPE] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), + [anon_sym_RPAREN] = ACTIONS(1587), + [anon_sym_GT2] = ACTIONS(1585), + [anon_sym_DASH2] = ACTIONS(1587), + [anon_sym_in2] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1587), + [anon_sym_STAR2] = ACTIONS(1585), + [anon_sym_and2] = ACTIONS(1587), + [anon_sym_xor2] = ACTIONS(1587), + [anon_sym_or2] = ACTIONS(1587), + [anon_sym_not_DASHin2] = ACTIONS(1587), + [anon_sym_starts_DASHwith2] = ACTIONS(1587), + [anon_sym_ends_DASHwith2] = ACTIONS(1587), + [anon_sym_EQ_EQ2] = ACTIONS(1587), + [anon_sym_BANG_EQ2] = ACTIONS(1587), + [anon_sym_LT2] = ACTIONS(1585), + [anon_sym_LT_EQ2] = ACTIONS(1587), + [anon_sym_GT_EQ2] = ACTIONS(1587), + [anon_sym_EQ_TILDE2] = ACTIONS(1587), + [anon_sym_BANG_TILDE2] = ACTIONS(1587), + [anon_sym_LPAREN2] = ACTIONS(1587), + [anon_sym_STAR_STAR2] = ACTIONS(1587), + [anon_sym_PLUS_PLUS2] = ACTIONS(1587), + [anon_sym_SLASH2] = ACTIONS(1585), + [anon_sym_mod2] = ACTIONS(1587), + [anon_sym_SLASH_SLASH2] = ACTIONS(1587), + [anon_sym_PLUS2] = ACTIONS(1585), + [anon_sym_bit_DASHshl2] = ACTIONS(1587), + [anon_sym_bit_DASHshr2] = ACTIONS(1587), + [anon_sym_bit_DASHand2] = ACTIONS(1587), + [anon_sym_bit_DASHxor2] = ACTIONS(1587), + [anon_sym_bit_DASHor2] = ACTIONS(1587), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [sym_filesize_unit] = ACTIONS(1585), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1587), + [anon_sym_out_GT_GT] = ACTIONS(1587), + [anon_sym_e_GT_GT] = ACTIONS(1587), + [anon_sym_o_GT_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [aux_sym_unquoted_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(247), + }, + [1552] = { + [sym_comment] = STATE(1552), [sym__newline] = ACTIONS(994), [anon_sym_SEMI] = ACTIONS(996), [anon_sym_PIPE] = ACTIONS(996), @@ -219670,284 +220042,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), [anon_sym_POUND] = ACTIONS(247), }, - [1552] = { - [sym_comment] = STATE(1552), - [ts_builtin_sym_end] = ACTIONS(1741), - [sym__newline] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_err_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_GT_PIPE] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(1741), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT] = ACTIONS(1741), - [aux_sym__immediate_decimal_token1] = ACTIONS(4878), - [aux_sym__immediate_decimal_token2] = ACTIONS(4880), - [anon_sym_null] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1741), - [aux_sym__val_number_token5] = ACTIONS(1741), - [aux_sym__val_number_token6] = ACTIONS(1741), - [anon_sym_0b] = ACTIONS(1739), - [anon_sym_0o] = ACTIONS(1739), - [anon_sym_0x] = ACTIONS(1739), - [sym_val_date] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), - [anon_sym_err_GT] = ACTIONS(1739), - [anon_sym_out_GT] = ACTIONS(1739), - [anon_sym_e_GT] = ACTIONS(1739), - [anon_sym_o_GT] = ACTIONS(1739), - [anon_sym_err_PLUSout_GT] = ACTIONS(1739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), - [anon_sym_o_PLUSe_GT] = ACTIONS(1739), - [anon_sym_e_PLUSo_GT] = ACTIONS(1739), - [anon_sym_err_GT_GT] = ACTIONS(1741), - [anon_sym_out_GT_GT] = ACTIONS(1741), - [anon_sym_e_GT_GT] = ACTIONS(1741), - [anon_sym_o_GT_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), - [aux_sym_unquoted_token1] = ACTIONS(1739), - [aux_sym_unquoted_token2] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), - }, [1553] = { - [sym_cell_path] = STATE(1946), - [sym_path] = STATE(1774), [sym_comment] = STATE(1553), - [aux_sym_cell_path_repeat1] = STATE(1634), - [ts_builtin_sym_end] = ACTIONS(1978), - [sym__newline] = ACTIONS(1978), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_err_GT_PIPE] = ACTIONS(1978), - [anon_sym_out_GT_PIPE] = ACTIONS(1978), - [anon_sym_e_GT_PIPE] = ACTIONS(1978), - [anon_sym_o_GT_PIPE] = ACTIONS(1978), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1978), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1978), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1978), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1978), - [anon_sym_LBRACK] = ACTIONS(1978), - [anon_sym_LPAREN] = ACTIONS(1978), - [anon_sym_DOLLAR] = ACTIONS(1976), - [anon_sym_DASH_DASH] = ACTIONS(1978), - [anon_sym_DASH2] = ACTIONS(1976), - [anon_sym_LBRACE] = ACTIONS(1978), - [anon_sym_DOT_DOT] = ACTIONS(1976), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1978), - [anon_sym_DOT_DOT_LT] = ACTIONS(1978), - [anon_sym_null] = ACTIONS(1978), - [anon_sym_true] = ACTIONS(1978), - [anon_sym_false] = ACTIONS(1978), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1978), - [aux_sym__val_number_decimal_token4] = ACTIONS(1978), - [aux_sym__val_number_token1] = ACTIONS(1978), - [aux_sym__val_number_token2] = ACTIONS(1978), - [aux_sym__val_number_token3] = ACTIONS(1978), - [aux_sym__val_number_token4] = ACTIONS(1978), - [aux_sym__val_number_token5] = ACTIONS(1978), - [aux_sym__val_number_token6] = ACTIONS(1978), - [anon_sym_0b] = ACTIONS(1976), - [anon_sym_0o] = ACTIONS(1976), - [anon_sym_0x] = ACTIONS(1976), - [sym_val_date] = ACTIONS(1978), - [anon_sym_DQUOTE] = ACTIONS(1978), - [sym__str_single_quotes] = ACTIONS(1978), - [sym__str_back_ticks] = ACTIONS(1978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1978), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1978), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1978), - [anon_sym_out_GT_GT] = ACTIONS(1978), - [anon_sym_e_GT_GT] = ACTIONS(1978), - [anon_sym_o_GT_GT] = ACTIONS(1978), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1978), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1978), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1978), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1978), - [aux_sym_unquoted_token1] = ACTIONS(1976), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1978), - }, - [1554] = { - [sym_cell_path] = STATE(1679), - [sym_path] = STATE(1642), - [sym_comment] = STATE(1554), - [aux_sym_cell_path_repeat1] = STATE(1645), - [sym__newline] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_err_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_GT_PIPE] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), - [anon_sym_RPAREN] = ACTIONS(1737), - [anon_sym_GT2] = ACTIONS(1735), - [anon_sym_DASH2] = ACTIONS(1737), - [anon_sym_in2] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1737), - [anon_sym_RBRACE] = ACTIONS(1737), - [anon_sym_STAR2] = ACTIONS(1735), - [anon_sym_and2] = ACTIONS(1737), - [anon_sym_xor2] = ACTIONS(1737), - [anon_sym_or2] = ACTIONS(1737), - [anon_sym_not_DASHin2] = ACTIONS(1737), - [anon_sym_starts_DASHwith2] = ACTIONS(1737), - [anon_sym_ends_DASHwith2] = ACTIONS(1737), - [anon_sym_EQ_EQ2] = ACTIONS(1737), - [anon_sym_BANG_EQ2] = ACTIONS(1737), - [anon_sym_LT2] = ACTIONS(1735), - [anon_sym_LT_EQ2] = ACTIONS(1737), - [anon_sym_GT_EQ2] = ACTIONS(1737), - [anon_sym_EQ_TILDE2] = ACTIONS(1737), - [anon_sym_BANG_TILDE2] = ACTIONS(1737), - [anon_sym_STAR_STAR2] = ACTIONS(1737), - [anon_sym_PLUS_PLUS2] = ACTIONS(1737), - [anon_sym_SLASH2] = ACTIONS(1735), - [anon_sym_mod2] = ACTIONS(1737), - [anon_sym_SLASH_SLASH2] = ACTIONS(1737), - [anon_sym_PLUS2] = ACTIONS(1735), - [anon_sym_bit_DASHshl2] = ACTIONS(1737), - [anon_sym_bit_DASHshr2] = ACTIONS(1737), - [anon_sym_bit_DASHand2] = ACTIONS(1737), - [anon_sym_bit_DASHxor2] = ACTIONS(1737), - [anon_sym_bit_DASHor2] = ACTIONS(1737), - [anon_sym_DOT_DOT2] = ACTIONS(1735), - [anon_sym_DOT] = ACTIONS(4868), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), - [anon_sym_err_GT] = ACTIONS(1735), - [anon_sym_out_GT] = ACTIONS(1735), - [anon_sym_e_GT] = ACTIONS(1735), - [anon_sym_o_GT] = ACTIONS(1735), - [anon_sym_err_PLUSout_GT] = ACTIONS(1735), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), - [anon_sym_o_PLUSe_GT] = ACTIONS(1735), - [anon_sym_e_PLUSo_GT] = ACTIONS(1735), - [anon_sym_err_GT_GT] = ACTIONS(1737), - [anon_sym_out_GT_GT] = ACTIONS(1737), - [anon_sym_e_GT_GT] = ACTIONS(1737), - [anon_sym_o_GT_GT] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), - [anon_sym_POUND] = ACTIONS(247), - }, - [1555] = { - [sym_comment] = STATE(1555), - [sym__newline] = ACTIONS(1623), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1623), - [anon_sym_err_GT_PIPE] = ACTIONS(1623), - [anon_sym_out_GT_PIPE] = ACTIONS(1623), - [anon_sym_e_GT_PIPE] = ACTIONS(1623), - [anon_sym_o_GT_PIPE] = ACTIONS(1623), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), - [anon_sym_RPAREN] = ACTIONS(1623), - [anon_sym_GT2] = ACTIONS(1621), - [anon_sym_DASH2] = ACTIONS(1623), - [anon_sym_in2] = ACTIONS(1623), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_RBRACE] = ACTIONS(1623), - [anon_sym_STAR2] = ACTIONS(1621), - [anon_sym_and2] = ACTIONS(1623), - [anon_sym_xor2] = ACTIONS(1623), - [anon_sym_or2] = ACTIONS(1623), - [anon_sym_not_DASHin2] = ACTIONS(1623), - [anon_sym_starts_DASHwith2] = ACTIONS(1623), - [anon_sym_ends_DASHwith2] = ACTIONS(1623), - [anon_sym_EQ_EQ2] = ACTIONS(1623), - [anon_sym_BANG_EQ2] = ACTIONS(1623), - [anon_sym_LT2] = ACTIONS(1621), - [anon_sym_LT_EQ2] = ACTIONS(1623), - [anon_sym_GT_EQ2] = ACTIONS(1623), - [anon_sym_EQ_TILDE2] = ACTIONS(1623), - [anon_sym_BANG_TILDE2] = ACTIONS(1623), - [anon_sym_LPAREN2] = ACTIONS(1623), - [anon_sym_STAR_STAR2] = ACTIONS(1623), - [anon_sym_PLUS_PLUS2] = ACTIONS(1623), - [anon_sym_SLASH2] = ACTIONS(1621), - [anon_sym_mod2] = ACTIONS(1623), - [anon_sym_SLASH_SLASH2] = ACTIONS(1623), - [anon_sym_PLUS2] = ACTIONS(1621), - [anon_sym_bit_DASHshl2] = ACTIONS(1623), - [anon_sym_bit_DASHshr2] = ACTIONS(1623), - [anon_sym_bit_DASHand2] = ACTIONS(1623), - [anon_sym_bit_DASHxor2] = ACTIONS(1623), - [anon_sym_bit_DASHor2] = ACTIONS(1623), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [sym_filesize_unit] = ACTIONS(1621), - [sym_duration_unit] = ACTIONS(1623), - [anon_sym_err_GT] = ACTIONS(1621), - [anon_sym_out_GT] = ACTIONS(1621), - [anon_sym_e_GT] = ACTIONS(1621), - [anon_sym_o_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT] = ACTIONS(1621), - [anon_sym_err_GT_GT] = ACTIONS(1623), - [anon_sym_out_GT_GT] = ACTIONS(1623), - [anon_sym_e_GT_GT] = ACTIONS(1623), - [anon_sym_o_GT_GT] = ACTIONS(1623), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), - [aux_sym_unquoted_token2] = ACTIONS(1621), - [anon_sym_POUND] = ACTIONS(247), - }, - [1556] = { - [sym_comment] = STATE(1556), [sym__newline] = ACTIONS(998), [anon_sym_SEMI] = ACTIONS(1000), [anon_sym_PIPE] = ACTIONS(1000), @@ -220015,74 +220111,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), [anon_sym_POUND] = ACTIONS(247), }, + [1554] = { + [sym_comment] = STATE(1554), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_RPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1733), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_DASH2] = ACTIONS(1733), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_DOT_DOT] = ACTIONS(1733), + [anon_sym_DOT_DOT2] = ACTIONS(1733), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1733), + [anon_sym_DOT_DOT_LT] = ACTIONS(1733), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [anon_sym_null] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(1737), + [anon_sym_false] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1733), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1737), + [aux_sym__val_number_token5] = ACTIONS(1737), + [aux_sym__val_number_token6] = ACTIONS(1737), + [anon_sym_0b] = ACTIONS(1733), + [anon_sym_0o] = ACTIONS(1733), + [anon_sym_0x] = ACTIONS(1733), + [sym_val_date] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1733), + [anon_sym_out_GT] = ACTIONS(1733), + [anon_sym_e_GT] = ACTIONS(1733), + [anon_sym_o_GT] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT] = ACTIONS(1733), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [aux_sym_unquoted_token1] = ACTIONS(1733), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1737), + }, + [1555] = { + [sym_cell_path] = STATE(1972), + [sym_path] = STATE(1823), + [sym_comment] = STATE(1555), + [aux_sym_cell_path_repeat1] = STATE(1574), + [ts_builtin_sym_end] = ACTIONS(1851), + [sym__newline] = ACTIONS(1851), + [anon_sym_SEMI] = ACTIONS(1851), + [anon_sym_PIPE] = ACTIONS(1851), + [anon_sym_err_GT_PIPE] = ACTIONS(1851), + [anon_sym_out_GT_PIPE] = ACTIONS(1851), + [anon_sym_e_GT_PIPE] = ACTIONS(1851), + [anon_sym_o_GT_PIPE] = ACTIONS(1851), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1851), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1851), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1851), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1851), + [anon_sym_LBRACK] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1851), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1851), + [anon_sym_DASH2] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1847), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1851), + [anon_sym_DOT_DOT_LT] = ACTIONS(1851), + [anon_sym_null] = ACTIONS(1851), + [anon_sym_true] = ACTIONS(1851), + [anon_sym_false] = ACTIONS(1851), + [aux_sym__val_number_decimal_token1] = ACTIONS(1847), + [aux_sym__val_number_decimal_token2] = ACTIONS(1851), + [aux_sym__val_number_decimal_token3] = ACTIONS(1851), + [aux_sym__val_number_decimal_token4] = ACTIONS(1851), + [aux_sym__val_number_token1] = ACTIONS(1851), + [aux_sym__val_number_token2] = ACTIONS(1851), + [aux_sym__val_number_token3] = ACTIONS(1851), + [aux_sym__val_number_token4] = ACTIONS(1851), + [aux_sym__val_number_token5] = ACTIONS(1851), + [aux_sym__val_number_token6] = ACTIONS(1851), + [anon_sym_0b] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1847), + [anon_sym_0x] = ACTIONS(1847), + [sym_val_date] = ACTIONS(1851), + [anon_sym_DQUOTE] = ACTIONS(1851), + [sym__str_single_quotes] = ACTIONS(1851), + [sym__str_back_ticks] = ACTIONS(1851), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1851), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1851), + [anon_sym_err_GT] = ACTIONS(1847), + [anon_sym_out_GT] = ACTIONS(1847), + [anon_sym_e_GT] = ACTIONS(1847), + [anon_sym_o_GT] = ACTIONS(1847), + [anon_sym_err_PLUSout_GT] = ACTIONS(1847), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1847), + [anon_sym_o_PLUSe_GT] = ACTIONS(1847), + [anon_sym_e_PLUSo_GT] = ACTIONS(1847), + [anon_sym_err_GT_GT] = ACTIONS(1851), + [anon_sym_out_GT_GT] = ACTIONS(1851), + [anon_sym_e_GT_GT] = ACTIONS(1851), + [anon_sym_o_GT_GT] = ACTIONS(1851), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1851), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1851), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1851), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1851), + [aux_sym_unquoted_token1] = ACTIONS(1847), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1851), + }, + [1556] = { + [sym_comment] = STATE(1556), + [sym__newline] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2120), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_err_GT_PIPE] = ACTIONS(2120), + [anon_sym_out_GT_PIPE] = ACTIONS(2120), + [anon_sym_e_GT_PIPE] = ACTIONS(2120), + [anon_sym_o_GT_PIPE] = ACTIONS(2120), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2120), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2120), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2120), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2120), + [anon_sym_LBRACK] = ACTIONS(2120), + [anon_sym_LPAREN] = ACTIONS(2120), + [anon_sym_RPAREN] = ACTIONS(2120), + [anon_sym_DOLLAR] = ACTIONS(2118), + [anon_sym_DASH_DASH] = ACTIONS(2120), + [anon_sym_DASH2] = ACTIONS(2118), + [anon_sym_LBRACE] = ACTIONS(2120), + [anon_sym_RBRACE] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2118), + [anon_sym_DOT_DOT2] = ACTIONS(2118), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2118), + [anon_sym_DOT_DOT_LT] = ACTIONS(2118), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2120), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2120), + [anon_sym_null] = ACTIONS(2120), + [anon_sym_true] = ACTIONS(2120), + [anon_sym_false] = ACTIONS(2120), + [aux_sym__val_number_decimal_token1] = ACTIONS(2118), + [aux_sym__val_number_decimal_token2] = ACTIONS(2120), + [aux_sym__val_number_decimal_token3] = ACTIONS(2120), + [aux_sym__val_number_decimal_token4] = ACTIONS(2120), + [aux_sym__val_number_token1] = ACTIONS(2120), + [aux_sym__val_number_token2] = ACTIONS(2120), + [aux_sym__val_number_token3] = ACTIONS(2120), + [aux_sym__val_number_token4] = ACTIONS(2120), + [aux_sym__val_number_token5] = ACTIONS(2120), + [aux_sym__val_number_token6] = ACTIONS(2120), + [anon_sym_0b] = ACTIONS(2118), + [anon_sym_0o] = ACTIONS(2118), + [anon_sym_0x] = ACTIONS(2118), + [sym_val_date] = ACTIONS(2120), + [anon_sym_DQUOTE] = ACTIONS(2120), + [sym__str_single_quotes] = ACTIONS(2120), + [sym__str_back_ticks] = ACTIONS(2120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2120), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2120), + [anon_sym_err_GT] = ACTIONS(2118), + [anon_sym_out_GT] = ACTIONS(2118), + [anon_sym_e_GT] = ACTIONS(2118), + [anon_sym_o_GT] = ACTIONS(2118), + [anon_sym_err_PLUSout_GT] = ACTIONS(2118), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2118), + [anon_sym_o_PLUSe_GT] = ACTIONS(2118), + [anon_sym_e_PLUSo_GT] = ACTIONS(2118), + [anon_sym_err_GT_GT] = ACTIONS(2120), + [anon_sym_out_GT_GT] = ACTIONS(2120), + [anon_sym_e_GT_GT] = ACTIONS(2120), + [anon_sym_o_GT_GT] = ACTIONS(2120), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2120), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2120), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2120), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2120), + [aux_sym_unquoted_token1] = ACTIONS(2118), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2120), + }, [1557] = { [sym_comment] = STATE(1557), - [sym__newline] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_err_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_GT_PIPE] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_RPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT] = ACTIONS(1785), - [aux_sym__immediate_decimal_token2] = ACTIONS(4882), - [anon_sym_null] = ACTIONS(1785), - [anon_sym_true] = ACTIONS(1785), - [anon_sym_false] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_0b] = ACTIONS(1783), - [anon_sym_0o] = ACTIONS(1783), - [anon_sym_0x] = ACTIONS(1783), - [sym_val_date] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_err_GT] = ACTIONS(1783), - [anon_sym_out_GT] = ACTIONS(1783), - [anon_sym_e_GT] = ACTIONS(1783), - [anon_sym_o_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT] = ACTIONS(1783), - [anon_sym_err_GT_GT] = ACTIONS(1785), - [anon_sym_out_GT_GT] = ACTIONS(1785), - [anon_sym_e_GT_GT] = ACTIONS(1785), - [anon_sym_o_GT_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), - [aux_sym_unquoted_token1] = ACTIONS(1783), - [aux_sym_unquoted_token2] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1785), + [sym__newline] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_err_GT_PIPE] = ACTIONS(1683), + [anon_sym_out_GT_PIPE] = ACTIONS(1683), + [anon_sym_e_GT_PIPE] = ACTIONS(1683), + [anon_sym_o_GT_PIPE] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1683), + [anon_sym_RPAREN] = ACTIONS(1683), + [anon_sym_GT2] = ACTIONS(1681), + [anon_sym_DASH2] = ACTIONS(1683), + [anon_sym_in2] = ACTIONS(1683), + [anon_sym_LBRACE] = ACTIONS(1683), + [anon_sym_RBRACE] = ACTIONS(1683), + [anon_sym_STAR2] = ACTIONS(1681), + [anon_sym_and2] = ACTIONS(1683), + [anon_sym_xor2] = ACTIONS(1683), + [anon_sym_or2] = ACTIONS(1683), + [anon_sym_not_DASHin2] = ACTIONS(1683), + [anon_sym_starts_DASHwith2] = ACTIONS(1683), + [anon_sym_ends_DASHwith2] = ACTIONS(1683), + [anon_sym_EQ_EQ2] = ACTIONS(1683), + [anon_sym_BANG_EQ2] = ACTIONS(1683), + [anon_sym_LT2] = ACTIONS(1681), + [anon_sym_LT_EQ2] = ACTIONS(1683), + [anon_sym_GT_EQ2] = ACTIONS(1683), + [anon_sym_EQ_TILDE2] = ACTIONS(1683), + [anon_sym_BANG_TILDE2] = ACTIONS(1683), + [anon_sym_LPAREN2] = ACTIONS(1683), + [anon_sym_STAR_STAR2] = ACTIONS(1683), + [anon_sym_PLUS_PLUS2] = ACTIONS(1683), + [anon_sym_SLASH2] = ACTIONS(1681), + [anon_sym_mod2] = ACTIONS(1683), + [anon_sym_SLASH_SLASH2] = ACTIONS(1683), + [anon_sym_PLUS2] = ACTIONS(1681), + [anon_sym_bit_DASHshl2] = ACTIONS(1683), + [anon_sym_bit_DASHshr2] = ACTIONS(1683), + [anon_sym_bit_DASHand2] = ACTIONS(1683), + [anon_sym_bit_DASHxor2] = ACTIONS(1683), + [anon_sym_bit_DASHor2] = ACTIONS(1683), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [sym_filesize_unit] = ACTIONS(1681), + [sym_duration_unit] = ACTIONS(1683), + [anon_sym_err_GT] = ACTIONS(1681), + [anon_sym_out_GT] = ACTIONS(1681), + [anon_sym_e_GT] = ACTIONS(1681), + [anon_sym_o_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT] = ACTIONS(1681), + [anon_sym_err_GT_GT] = ACTIONS(1683), + [anon_sym_out_GT_GT] = ACTIONS(1683), + [anon_sym_e_GT_GT] = ACTIONS(1683), + [anon_sym_o_GT_GT] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1683), + [aux_sym_unquoted_token2] = ACTIONS(1681), + [anon_sym_POUND] = ACTIONS(247), }, [1558] = { [sym_comment] = STATE(1558), @@ -220154,148 +220457,494 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), }, [1559] = { - [sym_cell_path] = STATE(1915), - [sym_path] = STATE(1774), + [sym_cell_path] = STATE(1885), + [sym_path] = STATE(1823), [sym_comment] = STATE(1559), - [aux_sym_cell_path_repeat1] = STATE(1634), - [ts_builtin_sym_end] = ACTIONS(1927), - [sym__newline] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1927), - [anon_sym_err_GT_PIPE] = ACTIONS(1927), - [anon_sym_out_GT_PIPE] = ACTIONS(1927), - [anon_sym_e_GT_PIPE] = ACTIONS(1927), - [anon_sym_o_GT_PIPE] = ACTIONS(1927), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1927), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1927), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1927), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1927), - [anon_sym_LBRACK] = ACTIONS(1927), - [anon_sym_LPAREN] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1927), - [anon_sym_DASH2] = ACTIONS(1925), - [anon_sym_LBRACE] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1925), + [aux_sym_cell_path_repeat1] = STATE(1574), + [ts_builtin_sym_end] = ACTIONS(1861), + [sym__newline] = ACTIONS(1861), + [anon_sym_SEMI] = ACTIONS(1861), + [anon_sym_PIPE] = ACTIONS(1861), + [anon_sym_err_GT_PIPE] = ACTIONS(1861), + [anon_sym_out_GT_PIPE] = ACTIONS(1861), + [anon_sym_e_GT_PIPE] = ACTIONS(1861), + [anon_sym_o_GT_PIPE] = ACTIONS(1861), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1861), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1861), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1861), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1861), + [anon_sym_DOLLAR] = ACTIONS(1859), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_DASH2] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1861), + [anon_sym_DOT_DOT] = ACTIONS(1859), [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1927), - [anon_sym_DOT_DOT_LT] = ACTIONS(1927), - [anon_sym_null] = ACTIONS(1927), - [anon_sym_true] = ACTIONS(1927), - [anon_sym_false] = ACTIONS(1927), - [aux_sym__val_number_decimal_token1] = ACTIONS(1925), - [aux_sym__val_number_decimal_token2] = ACTIONS(1927), - [aux_sym__val_number_decimal_token3] = ACTIONS(1927), - [aux_sym__val_number_decimal_token4] = ACTIONS(1927), - [aux_sym__val_number_token1] = ACTIONS(1927), - [aux_sym__val_number_token2] = ACTIONS(1927), - [aux_sym__val_number_token3] = ACTIONS(1927), - [aux_sym__val_number_token4] = ACTIONS(1927), - [aux_sym__val_number_token5] = ACTIONS(1927), - [aux_sym__val_number_token6] = ACTIONS(1927), - [anon_sym_0b] = ACTIONS(1925), - [anon_sym_0o] = ACTIONS(1925), - [anon_sym_0x] = ACTIONS(1925), - [sym_val_date] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1927), - [sym__str_single_quotes] = ACTIONS(1927), - [sym__str_back_ticks] = ACTIONS(1927), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1927), - [anon_sym_err_GT] = ACTIONS(1925), - [anon_sym_out_GT] = ACTIONS(1925), - [anon_sym_e_GT] = ACTIONS(1925), - [anon_sym_o_GT] = ACTIONS(1925), - [anon_sym_err_PLUSout_GT] = ACTIONS(1925), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1925), - [anon_sym_o_PLUSe_GT] = ACTIONS(1925), - [anon_sym_e_PLUSo_GT] = ACTIONS(1925), - [anon_sym_err_GT_GT] = ACTIONS(1927), - [anon_sym_out_GT_GT] = ACTIONS(1927), - [anon_sym_e_GT_GT] = ACTIONS(1927), - [anon_sym_o_GT_GT] = ACTIONS(1927), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1927), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1927), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1927), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1927), - [aux_sym_unquoted_token1] = ACTIONS(1925), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1861), + [anon_sym_DOT_DOT_LT] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1861), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [aux_sym__val_number_decimal_token1] = ACTIONS(1859), + [aux_sym__val_number_decimal_token2] = ACTIONS(1861), + [aux_sym__val_number_decimal_token3] = ACTIONS(1861), + [aux_sym__val_number_decimal_token4] = ACTIONS(1861), + [aux_sym__val_number_token1] = ACTIONS(1861), + [aux_sym__val_number_token2] = ACTIONS(1861), + [aux_sym__val_number_token3] = ACTIONS(1861), + [aux_sym__val_number_token4] = ACTIONS(1861), + [aux_sym__val_number_token5] = ACTIONS(1861), + [aux_sym__val_number_token6] = ACTIONS(1861), + [anon_sym_0b] = ACTIONS(1859), + [anon_sym_0o] = ACTIONS(1859), + [anon_sym_0x] = ACTIONS(1859), + [sym_val_date] = ACTIONS(1861), + [anon_sym_DQUOTE] = ACTIONS(1861), + [sym__str_single_quotes] = ACTIONS(1861), + [sym__str_back_ticks] = ACTIONS(1861), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1861), + [anon_sym_err_GT] = ACTIONS(1859), + [anon_sym_out_GT] = ACTIONS(1859), + [anon_sym_e_GT] = ACTIONS(1859), + [anon_sym_o_GT] = ACTIONS(1859), + [anon_sym_err_PLUSout_GT] = ACTIONS(1859), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1859), + [anon_sym_o_PLUSe_GT] = ACTIONS(1859), + [anon_sym_e_PLUSo_GT] = ACTIONS(1859), + [anon_sym_err_GT_GT] = ACTIONS(1861), + [anon_sym_out_GT_GT] = ACTIONS(1861), + [anon_sym_e_GT_GT] = ACTIONS(1861), + [anon_sym_o_GT_GT] = ACTIONS(1861), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1861), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1861), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1861), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1861), + [aux_sym_unquoted_token1] = ACTIONS(1859), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1861), }, [1560] = { + [sym_cell_path] = STATE(1722), + [sym_path] = STATE(1615), [sym_comment] = STATE(1560), - [anon_sym_EQ] = ACTIONS(4884), - [anon_sym_PLUS_EQ] = ACTIONS(4886), - [anon_sym_DASH_EQ] = ACTIONS(4886), - [anon_sym_STAR_EQ] = ACTIONS(4886), - [anon_sym_SLASH_EQ] = ACTIONS(4886), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4886), - [sym__newline] = ACTIONS(1032), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_err_GT_PIPE] = ACTIONS(1032), - [anon_sym_out_GT_PIPE] = ACTIONS(1032), - [anon_sym_e_GT_PIPE] = ACTIONS(1032), - [anon_sym_o_GT_PIPE] = ACTIONS(1032), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1032), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1032), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1032), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1032), - [anon_sym_RPAREN] = ACTIONS(1032), - [anon_sym_GT2] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(1030), - [anon_sym_in2] = ACTIONS(1032), - [anon_sym_STAR2] = ACTIONS(1030), - [anon_sym_and2] = ACTIONS(1032), - [anon_sym_xor2] = ACTIONS(1032), - [anon_sym_or2] = ACTIONS(1032), - [anon_sym_not_DASHin2] = ACTIONS(1032), - [anon_sym_starts_DASHwith2] = ACTIONS(1032), - [anon_sym_ends_DASHwith2] = ACTIONS(1032), - [anon_sym_EQ_EQ2] = ACTIONS(1032), - [anon_sym_BANG_EQ2] = ACTIONS(1032), - [anon_sym_LT2] = ACTIONS(1030), - [anon_sym_LT_EQ2] = ACTIONS(1032), - [anon_sym_GT_EQ2] = ACTIONS(1032), - [anon_sym_EQ_TILDE2] = ACTIONS(1032), - [anon_sym_BANG_TILDE2] = ACTIONS(1032), - [anon_sym_STAR_STAR2] = ACTIONS(1032), - [anon_sym_PLUS_PLUS2] = ACTIONS(1030), - [anon_sym_SLASH2] = ACTIONS(1030), - [anon_sym_mod2] = ACTIONS(1032), - [anon_sym_SLASH_SLASH2] = ACTIONS(1032), - [anon_sym_PLUS2] = ACTIONS(1030), - [anon_sym_bit_DASHshl2] = ACTIONS(1032), - [anon_sym_bit_DASHshr2] = ACTIONS(1032), - [anon_sym_bit_DASHand2] = ACTIONS(1032), - [anon_sym_bit_DASHxor2] = ACTIONS(1032), - [anon_sym_bit_DASHor2] = ACTIONS(1032), - [anon_sym_DOT_DOT2] = ACTIONS(1042), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), - [anon_sym_err_GT] = ACTIONS(1030), - [anon_sym_out_GT] = ACTIONS(1030), - [anon_sym_e_GT] = ACTIONS(1030), - [anon_sym_o_GT] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT] = ACTIONS(1030), - [anon_sym_err_GT_GT] = ACTIONS(1032), - [anon_sym_out_GT_GT] = ACTIONS(1032), - [anon_sym_e_GT_GT] = ACTIONS(1032), - [anon_sym_o_GT_GT] = ACTIONS(1032), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1032), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1032), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1032), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1032), + [aux_sym_cell_path_repeat1] = STATE(1643), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_RPAREN] = ACTIONS(1737), + [anon_sym_GT2] = ACTIONS(1733), + [anon_sym_DASH2] = ACTIONS(1737), + [anon_sym_in2] = ACTIONS(1737), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_STAR2] = ACTIONS(1733), + [anon_sym_and2] = ACTIONS(1737), + [anon_sym_xor2] = ACTIONS(1737), + [anon_sym_or2] = ACTIONS(1737), + [anon_sym_not_DASHin2] = ACTIONS(1737), + [anon_sym_starts_DASHwith2] = ACTIONS(1737), + [anon_sym_ends_DASHwith2] = ACTIONS(1737), + [anon_sym_EQ_EQ2] = ACTIONS(1737), + [anon_sym_BANG_EQ2] = ACTIONS(1737), + [anon_sym_LT2] = ACTIONS(1733), + [anon_sym_LT_EQ2] = ACTIONS(1737), + [anon_sym_GT_EQ2] = ACTIONS(1737), + [anon_sym_EQ_TILDE2] = ACTIONS(1737), + [anon_sym_BANG_TILDE2] = ACTIONS(1737), + [anon_sym_STAR_STAR2] = ACTIONS(1737), + [anon_sym_PLUS_PLUS2] = ACTIONS(1737), + [anon_sym_SLASH2] = ACTIONS(1733), + [anon_sym_mod2] = ACTIONS(1737), + [anon_sym_SLASH_SLASH2] = ACTIONS(1737), + [anon_sym_PLUS2] = ACTIONS(1733), + [anon_sym_bit_DASHshl2] = ACTIONS(1737), + [anon_sym_bit_DASHshr2] = ACTIONS(1737), + [anon_sym_bit_DASHand2] = ACTIONS(1737), + [anon_sym_bit_DASHxor2] = ACTIONS(1737), + [anon_sym_bit_DASHor2] = ACTIONS(1737), + [anon_sym_DOT_DOT2] = ACTIONS(1733), + [anon_sym_DOT] = ACTIONS(4847), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1733), + [anon_sym_out_GT] = ACTIONS(1733), + [anon_sym_e_GT] = ACTIONS(1733), + [anon_sym_o_GT] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT] = ACTIONS(1733), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), [anon_sym_POUND] = ACTIONS(247), }, [1561] = { - [sym_cell_path] = STATE(1688), - [sym_path] = STATE(1642), [sym_comment] = STATE(1561), - [aux_sym_cell_path_repeat1] = STATE(1645), + [sym__newline] = ACTIONS(4882), + [anon_sym_SEMI] = ACTIONS(4882), + [anon_sym_PIPE] = ACTIONS(4882), + [anon_sym_err_GT_PIPE] = ACTIONS(4882), + [anon_sym_out_GT_PIPE] = ACTIONS(4882), + [anon_sym_e_GT_PIPE] = ACTIONS(4882), + [anon_sym_o_GT_PIPE] = ACTIONS(4882), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4882), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4882), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4882), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4882), + [anon_sym_LBRACK] = ACTIONS(4882), + [anon_sym_LPAREN] = ACTIONS(4882), + [anon_sym_RPAREN] = ACTIONS(4882), + [anon_sym_DOLLAR] = ACTIONS(4884), + [anon_sym_DASH_DASH] = ACTIONS(4882), + [anon_sym_DASH2] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4882), + [anon_sym_RBRACE] = ACTIONS(4882), + [anon_sym_DOT_DOT] = ACTIONS(4884), + [anon_sym_DOT_DOT2] = ACTIONS(4833), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4884), + [anon_sym_DOT_DOT_LT] = ACTIONS(4884), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4835), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4835), + [anon_sym_null] = ACTIONS(4882), + [anon_sym_true] = ACTIONS(4882), + [anon_sym_false] = ACTIONS(4882), + [aux_sym__val_number_decimal_token1] = ACTIONS(4884), + [aux_sym__val_number_decimal_token2] = ACTIONS(4882), + [aux_sym__val_number_decimal_token3] = ACTIONS(4882), + [aux_sym__val_number_decimal_token4] = ACTIONS(4882), + [aux_sym__val_number_token1] = ACTIONS(4882), + [aux_sym__val_number_token2] = ACTIONS(4882), + [aux_sym__val_number_token3] = ACTIONS(4882), + [aux_sym__val_number_token4] = ACTIONS(4882), + [aux_sym__val_number_token5] = ACTIONS(4882), + [aux_sym__val_number_token6] = ACTIONS(4882), + [anon_sym_0b] = ACTIONS(4884), + [anon_sym_0o] = ACTIONS(4884), + [anon_sym_0x] = ACTIONS(4884), + [sym_val_date] = ACTIONS(4882), + [anon_sym_DQUOTE] = ACTIONS(4882), + [sym__str_single_quotes] = ACTIONS(4882), + [sym__str_back_ticks] = ACTIONS(4882), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4882), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4882), + [anon_sym_err_GT] = ACTIONS(4884), + [anon_sym_out_GT] = ACTIONS(4884), + [anon_sym_e_GT] = ACTIONS(4884), + [anon_sym_o_GT] = ACTIONS(4884), + [anon_sym_err_PLUSout_GT] = ACTIONS(4884), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4884), + [anon_sym_o_PLUSe_GT] = ACTIONS(4884), + [anon_sym_e_PLUSo_GT] = ACTIONS(4884), + [anon_sym_err_GT_GT] = ACTIONS(4882), + [anon_sym_out_GT_GT] = ACTIONS(4882), + [anon_sym_e_GT_GT] = ACTIONS(4882), + [anon_sym_o_GT_GT] = ACTIONS(4882), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4882), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4882), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4882), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4882), + [aux_sym_unquoted_token1] = ACTIONS(4884), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4882), + }, + [1562] = { + [sym_comment] = STATE(1562), + [sym__newline] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_err_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_GT_PIPE] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), + [anon_sym_RPAREN] = ACTIONS(1763), + [anon_sym_GT2] = ACTIONS(1761), + [anon_sym_DASH2] = ACTIONS(1763), + [anon_sym_in2] = ACTIONS(1763), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_STAR2] = ACTIONS(1761), + [anon_sym_and2] = ACTIONS(1763), + [anon_sym_xor2] = ACTIONS(1763), + [anon_sym_or2] = ACTIONS(1763), + [anon_sym_not_DASHin2] = ACTIONS(1763), + [anon_sym_starts_DASHwith2] = ACTIONS(1763), + [anon_sym_ends_DASHwith2] = ACTIONS(1763), + [anon_sym_EQ_EQ2] = ACTIONS(1763), + [anon_sym_BANG_EQ2] = ACTIONS(1763), + [anon_sym_LT2] = ACTIONS(1761), + [anon_sym_LT_EQ2] = ACTIONS(1763), + [anon_sym_GT_EQ2] = ACTIONS(1763), + [anon_sym_EQ_TILDE2] = ACTIONS(1763), + [anon_sym_BANG_TILDE2] = ACTIONS(1763), + [anon_sym_LPAREN2] = ACTIONS(1763), + [anon_sym_STAR_STAR2] = ACTIONS(1763), + [anon_sym_PLUS_PLUS2] = ACTIONS(1763), + [anon_sym_SLASH2] = ACTIONS(1761), + [anon_sym_mod2] = ACTIONS(1763), + [anon_sym_SLASH_SLASH2] = ACTIONS(1763), + [anon_sym_PLUS2] = ACTIONS(1761), + [anon_sym_bit_DASHshl2] = ACTIONS(1763), + [anon_sym_bit_DASHshr2] = ACTIONS(1763), + [anon_sym_bit_DASHand2] = ACTIONS(1763), + [anon_sym_bit_DASHxor2] = ACTIONS(1763), + [anon_sym_bit_DASHor2] = ACTIONS(1763), + [anon_sym_DOT_DOT2] = ACTIONS(1761), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), + [sym_filesize_unit] = ACTIONS(1761), + [sym_duration_unit] = ACTIONS(1763), + [anon_sym_err_GT] = ACTIONS(1761), + [anon_sym_out_GT] = ACTIONS(1761), + [anon_sym_e_GT] = ACTIONS(1761), + [anon_sym_o_GT] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT] = ACTIONS(1761), + [anon_sym_err_GT_GT] = ACTIONS(1763), + [anon_sym_out_GT_GT] = ACTIONS(1763), + [anon_sym_e_GT_GT] = ACTIONS(1763), + [anon_sym_o_GT_GT] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1763), + [aux_sym_unquoted_token2] = ACTIONS(1761), + [anon_sym_POUND] = ACTIONS(247), + }, + [1563] = { + [sym_comment] = STATE(1563), + [sym__newline] = ACTIONS(1741), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym_PIPE] = ACTIONS(1741), + [anon_sym_err_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_GT_PIPE] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_RPAREN] = ACTIONS(1741), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_DASH_DASH] = ACTIONS(1741), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1741), + [anon_sym_RBRACE] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_DOT_DOT2] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), + [anon_sym_DOT_DOT_LT] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), + [anon_sym_null] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1741), + [anon_sym_false] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1741), + [aux_sym__val_number_token5] = ACTIONS(1741), + [aux_sym__val_number_token6] = ACTIONS(1741), + [anon_sym_0b] = ACTIONS(1739), + [anon_sym_0o] = ACTIONS(1739), + [anon_sym_0x] = ACTIONS(1739), + [sym_val_date] = ACTIONS(1741), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), + [anon_sym_err_GT] = ACTIONS(1739), + [anon_sym_out_GT] = ACTIONS(1739), + [anon_sym_e_GT] = ACTIONS(1739), + [anon_sym_o_GT] = ACTIONS(1739), + [anon_sym_err_PLUSout_GT] = ACTIONS(1739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), + [anon_sym_o_PLUSe_GT] = ACTIONS(1739), + [anon_sym_e_PLUSo_GT] = ACTIONS(1739), + [anon_sym_err_GT_GT] = ACTIONS(1741), + [anon_sym_out_GT_GT] = ACTIONS(1741), + [anon_sym_e_GT_GT] = ACTIONS(1741), + [anon_sym_o_GT_GT] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), + [aux_sym_unquoted_token1] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), + }, + [1564] = { + [sym_comment] = STATE(1564), + [ts_builtin_sym_end] = ACTIONS(1028), + [anon_sym_EQ] = ACTIONS(4886), + [anon_sym_PLUS_EQ] = ACTIONS(4888), + [anon_sym_DASH_EQ] = ACTIONS(4888), + [anon_sym_STAR_EQ] = ACTIONS(4888), + [anon_sym_SLASH_EQ] = ACTIONS(4888), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4888), + [sym__newline] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1028), + [anon_sym_PIPE] = ACTIONS(1028), + [anon_sym_err_GT_PIPE] = ACTIONS(1028), + [anon_sym_out_GT_PIPE] = ACTIONS(1028), + [anon_sym_e_GT_PIPE] = ACTIONS(1028), + [anon_sym_o_GT_PIPE] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), + [anon_sym_GT2] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(1026), + [anon_sym_in2] = ACTIONS(1028), + [anon_sym_STAR2] = ACTIONS(1026), + [anon_sym_and2] = ACTIONS(1028), + [anon_sym_xor2] = ACTIONS(1028), + [anon_sym_or2] = ACTIONS(1028), + [anon_sym_not_DASHin2] = ACTIONS(1028), + [anon_sym_starts_DASHwith2] = ACTIONS(1028), + [anon_sym_ends_DASHwith2] = ACTIONS(1028), + [anon_sym_EQ_EQ2] = ACTIONS(1028), + [anon_sym_BANG_EQ2] = ACTIONS(1028), + [anon_sym_LT2] = ACTIONS(1026), + [anon_sym_LT_EQ2] = ACTIONS(1028), + [anon_sym_GT_EQ2] = ACTIONS(1028), + [anon_sym_EQ_TILDE2] = ACTIONS(1028), + [anon_sym_BANG_TILDE2] = ACTIONS(1028), + [anon_sym_STAR_STAR2] = ACTIONS(1028), + [anon_sym_PLUS_PLUS2] = ACTIONS(1026), + [anon_sym_SLASH2] = ACTIONS(1026), + [anon_sym_mod2] = ACTIONS(1028), + [anon_sym_SLASH_SLASH2] = ACTIONS(1028), + [anon_sym_PLUS2] = ACTIONS(1026), + [anon_sym_bit_DASHshl2] = ACTIONS(1028), + [anon_sym_bit_DASHshr2] = ACTIONS(1028), + [anon_sym_bit_DASHand2] = ACTIONS(1028), + [anon_sym_bit_DASHxor2] = ACTIONS(1028), + [anon_sym_bit_DASHor2] = ACTIONS(1028), + [anon_sym_DOT_DOT2] = ACTIONS(4890), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4892), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4892), + [anon_sym_err_GT] = ACTIONS(1026), + [anon_sym_out_GT] = ACTIONS(1026), + [anon_sym_e_GT] = ACTIONS(1026), + [anon_sym_o_GT] = ACTIONS(1026), + [anon_sym_err_PLUSout_GT] = ACTIONS(1026), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), + [anon_sym_o_PLUSe_GT] = ACTIONS(1026), + [anon_sym_e_PLUSo_GT] = ACTIONS(1026), + [anon_sym_err_GT_GT] = ACTIONS(1028), + [anon_sym_out_GT_GT] = ACTIONS(1028), + [anon_sym_e_GT_GT] = ACTIONS(1028), + [anon_sym_o_GT_GT] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1028), + [anon_sym_POUND] = ACTIONS(247), + }, + [1565] = { + [sym_comment] = STATE(1565), + [sym__newline] = ACTIONS(1787), + [anon_sym_SEMI] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_err_GT_PIPE] = ACTIONS(1787), + [anon_sym_out_GT_PIPE] = ACTIONS(1787), + [anon_sym_e_GT_PIPE] = ACTIONS(1787), + [anon_sym_o_GT_PIPE] = ACTIONS(1787), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_RPAREN] = ACTIONS(1787), + [anon_sym_DOLLAR] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1787), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_RBRACE] = ACTIONS(1787), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_DOT_DOT2] = ACTIONS(1785), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), + [anon_sym_DOT_DOT_LT] = ACTIONS(1785), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), + [anon_sym_null] = ACTIONS(1787), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [aux_sym__val_number_decimal_token1] = ACTIONS(1785), + [aux_sym__val_number_decimal_token2] = ACTIONS(1787), + [aux_sym__val_number_decimal_token3] = ACTIONS(1787), + [aux_sym__val_number_decimal_token4] = ACTIONS(1787), + [aux_sym__val_number_token1] = ACTIONS(1787), + [aux_sym__val_number_token2] = ACTIONS(1787), + [aux_sym__val_number_token3] = ACTIONS(1787), + [aux_sym__val_number_token4] = ACTIONS(1787), + [aux_sym__val_number_token5] = ACTIONS(1787), + [aux_sym__val_number_token6] = ACTIONS(1787), + [anon_sym_0b] = ACTIONS(1785), + [anon_sym_0o] = ACTIONS(1785), + [anon_sym_0x] = ACTIONS(1785), + [sym_val_date] = ACTIONS(1787), + [anon_sym_DQUOTE] = ACTIONS(1787), + [sym__str_single_quotes] = ACTIONS(1787), + [sym__str_back_ticks] = ACTIONS(1787), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), + [anon_sym_err_GT] = ACTIONS(1785), + [anon_sym_out_GT] = ACTIONS(1785), + [anon_sym_e_GT] = ACTIONS(1785), + [anon_sym_o_GT] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT] = ACTIONS(1785), + [anon_sym_err_GT_GT] = ACTIONS(1787), + [anon_sym_out_GT_GT] = ACTIONS(1787), + [anon_sym_e_GT_GT] = ACTIONS(1787), + [anon_sym_o_GT_GT] = ACTIONS(1787), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), + [aux_sym_unquoted_token1] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1787), + }, + [1566] = { + [sym_cell_path] = STATE(1898), + [sym_path] = STATE(1823), + [sym_comment] = STATE(1566), + [aux_sym_cell_path_repeat1] = STATE(1574), + [ts_builtin_sym_end] = ACTIONS(963), [sym__newline] = ACTIONS(963), [anon_sym_SEMI] = ACTIONS(963), [anon_sym_PIPE] = ACTIONS(963), @@ -220307,41 +220956,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), - [anon_sym_RPAREN] = ACTIONS(963), - [anon_sym_GT2] = ACTIONS(961), - [anon_sym_DASH2] = ACTIONS(963), - [anon_sym_in2] = ACTIONS(963), + [anon_sym_LBRACK] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(963), + [anon_sym_DOLLAR] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_DASH2] = ACTIONS(961), [anon_sym_LBRACE] = ACTIONS(963), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_STAR2] = ACTIONS(961), - [anon_sym_and2] = ACTIONS(963), - [anon_sym_xor2] = ACTIONS(963), - [anon_sym_or2] = ACTIONS(963), - [anon_sym_not_DASHin2] = ACTIONS(963), - [anon_sym_starts_DASHwith2] = ACTIONS(963), - [anon_sym_ends_DASHwith2] = ACTIONS(963), - [anon_sym_EQ_EQ2] = ACTIONS(963), - [anon_sym_BANG_EQ2] = ACTIONS(963), - [anon_sym_LT2] = ACTIONS(961), - [anon_sym_LT_EQ2] = ACTIONS(963), - [anon_sym_GT_EQ2] = ACTIONS(963), - [anon_sym_EQ_TILDE2] = ACTIONS(963), - [anon_sym_BANG_TILDE2] = ACTIONS(963), - [anon_sym_STAR_STAR2] = ACTIONS(963), - [anon_sym_PLUS_PLUS2] = ACTIONS(963), - [anon_sym_SLASH2] = ACTIONS(961), - [anon_sym_mod2] = ACTIONS(963), - [anon_sym_SLASH_SLASH2] = ACTIONS(963), - [anon_sym_PLUS2] = ACTIONS(961), - [anon_sym_bit_DASHshl2] = ACTIONS(963), - [anon_sym_bit_DASHshr2] = ACTIONS(963), - [anon_sym_bit_DASHand2] = ACTIONS(963), - [anon_sym_bit_DASHxor2] = ACTIONS(963), - [anon_sym_bit_DASHor2] = ACTIONS(963), - [anon_sym_DOT_DOT2] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(4868), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), - [anon_sym_DOT_DOT_LT2] = ACTIONS(963), + [anon_sym_DOT_DOT] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(963), + [anon_sym_DOT_DOT_LT] = ACTIONS(963), + [anon_sym_null] = ACTIONS(963), + [anon_sym_true] = ACTIONS(963), + [anon_sym_false] = ACTIONS(963), + [aux_sym__val_number_decimal_token1] = ACTIONS(961), + [aux_sym__val_number_decimal_token2] = ACTIONS(963), + [aux_sym__val_number_decimal_token3] = ACTIONS(963), + [aux_sym__val_number_decimal_token4] = ACTIONS(963), + [aux_sym__val_number_token1] = ACTIONS(963), + [aux_sym__val_number_token2] = ACTIONS(963), + [aux_sym__val_number_token3] = ACTIONS(963), + [aux_sym__val_number_token4] = ACTIONS(963), + [aux_sym__val_number_token5] = ACTIONS(963), + [aux_sym__val_number_token6] = ACTIONS(963), + [anon_sym_0b] = ACTIONS(961), + [anon_sym_0o] = ACTIONS(961), + [anon_sym_0x] = ACTIONS(961), + [sym_val_date] = ACTIONS(963), + [anon_sym_DQUOTE] = ACTIONS(963), + [sym__str_single_quotes] = ACTIONS(963), + [sym__str_back_ticks] = ACTIONS(963), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(963), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(963), [anon_sym_err_GT] = ACTIONS(961), [anon_sym_out_GT] = ACTIONS(961), [anon_sym_e_GT] = ACTIONS(961), @@ -220358,424 +221004,1241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), + [aux_sym_unquoted_token1] = ACTIONS(961), [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(963), }, - [1562] = { - [sym_cell_path] = STATE(1947), - [sym_path] = STATE(1774), - [sym_comment] = STATE(1562), - [aux_sym_cell_path_repeat1] = STATE(1634), - [ts_builtin_sym_end] = ACTIONS(2096), - [sym__newline] = ACTIONS(2096), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_err_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_GT_PIPE] = ACTIONS(2096), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2096), - [anon_sym_LPAREN] = ACTIONS(2096), - [anon_sym_DOLLAR] = ACTIONS(2094), - [anon_sym_DASH_DASH] = ACTIONS(2096), - [anon_sym_DASH2] = ACTIONS(2094), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_DOT_DOT] = ACTIONS(2094), + [1567] = { + [sym_comment] = STATE(1567), + [sym__newline] = ACTIONS(1843), + [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_err_GT_PIPE] = ACTIONS(1843), + [anon_sym_out_GT_PIPE] = ACTIONS(1843), + [anon_sym_e_GT_PIPE] = ACTIONS(1843), + [anon_sym_o_GT_PIPE] = ACTIONS(1843), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1843), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1843), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1843), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1843), + [anon_sym_RPAREN] = ACTIONS(1843), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [anon_sym_DASH2] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_RBRACE] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1841), + [anon_sym_DOT_DOT2] = ACTIONS(1841), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1841), + [anon_sym_DOT_DOT_LT] = ACTIONS(1841), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1843), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1843), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [aux_sym__val_number_decimal_token1] = ACTIONS(1841), + [aux_sym__val_number_decimal_token2] = ACTIONS(1843), + [aux_sym__val_number_decimal_token3] = ACTIONS(1843), + [aux_sym__val_number_decimal_token4] = ACTIONS(1843), + [aux_sym__val_number_token1] = ACTIONS(1843), + [aux_sym__val_number_token2] = ACTIONS(1843), + [aux_sym__val_number_token3] = ACTIONS(1843), + [aux_sym__val_number_token4] = ACTIONS(1843), + [aux_sym__val_number_token5] = ACTIONS(1843), + [aux_sym__val_number_token6] = ACTIONS(1843), + [anon_sym_0b] = ACTIONS(1841), + [anon_sym_0o] = ACTIONS(1841), + [anon_sym_0x] = ACTIONS(1841), + [sym_val_date] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [sym__str_single_quotes] = ACTIONS(1843), + [sym__str_back_ticks] = ACTIONS(1843), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1843), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1843), + [anon_sym_err_GT] = ACTIONS(1841), + [anon_sym_out_GT] = ACTIONS(1841), + [anon_sym_e_GT] = ACTIONS(1841), + [anon_sym_o_GT] = ACTIONS(1841), + [anon_sym_err_PLUSout_GT] = ACTIONS(1841), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1841), + [anon_sym_o_PLUSe_GT] = ACTIONS(1841), + [anon_sym_e_PLUSo_GT] = ACTIONS(1841), + [anon_sym_err_GT_GT] = ACTIONS(1843), + [anon_sym_out_GT_GT] = ACTIONS(1843), + [anon_sym_e_GT_GT] = ACTIONS(1843), + [anon_sym_o_GT_GT] = ACTIONS(1843), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1843), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1843), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1843), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1843), + [aux_sym_unquoted_token1] = ACTIONS(1841), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1843), + }, + [1568] = { + [sym_cell_path] = STATE(1903), + [sym_path] = STATE(1823), + [sym_comment] = STATE(1568), + [aux_sym_cell_path_repeat1] = STATE(1574), + [ts_builtin_sym_end] = ACTIONS(1865), + [sym__newline] = ACTIONS(1865), + [anon_sym_SEMI] = ACTIONS(1865), + [anon_sym_PIPE] = ACTIONS(1865), + [anon_sym_err_GT_PIPE] = ACTIONS(1865), + [anon_sym_out_GT_PIPE] = ACTIONS(1865), + [anon_sym_e_GT_PIPE] = ACTIONS(1865), + [anon_sym_o_GT_PIPE] = ACTIONS(1865), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1865), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1865), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1865), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1865), + [anon_sym_LBRACK] = ACTIONS(1865), + [anon_sym_LPAREN] = ACTIONS(1865), + [anon_sym_DOLLAR] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_DASH2] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_DOT_DOT] = ACTIONS(1863), [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2096), - [anon_sym_DOT_DOT_LT] = ACTIONS(2096), - [anon_sym_null] = ACTIONS(2096), - [anon_sym_true] = ACTIONS(2096), - [anon_sym_false] = ACTIONS(2096), - [aux_sym__val_number_decimal_token1] = ACTIONS(2094), - [aux_sym__val_number_decimal_token2] = ACTIONS(2096), - [aux_sym__val_number_decimal_token3] = ACTIONS(2096), - [aux_sym__val_number_decimal_token4] = ACTIONS(2096), - [aux_sym__val_number_token1] = ACTIONS(2096), - [aux_sym__val_number_token2] = ACTIONS(2096), - [aux_sym__val_number_token3] = ACTIONS(2096), - [aux_sym__val_number_token4] = ACTIONS(2096), - [aux_sym__val_number_token5] = ACTIONS(2096), - [aux_sym__val_number_token6] = ACTIONS(2096), - [anon_sym_0b] = ACTIONS(2094), - [anon_sym_0o] = ACTIONS(2094), - [anon_sym_0x] = ACTIONS(2094), - [sym_val_date] = ACTIONS(2096), - [anon_sym_DQUOTE] = ACTIONS(2096), - [sym__str_single_quotes] = ACTIONS(2096), - [sym__str_back_ticks] = ACTIONS(2096), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2096), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2096), - [anon_sym_err_GT] = ACTIONS(2094), - [anon_sym_out_GT] = ACTIONS(2094), - [anon_sym_e_GT] = ACTIONS(2094), - [anon_sym_o_GT] = ACTIONS(2094), - [anon_sym_err_PLUSout_GT] = ACTIONS(2094), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2094), - [anon_sym_o_PLUSe_GT] = ACTIONS(2094), - [anon_sym_e_PLUSo_GT] = ACTIONS(2094), - [anon_sym_err_GT_GT] = ACTIONS(2096), - [anon_sym_out_GT_GT] = ACTIONS(2096), - [anon_sym_e_GT_GT] = ACTIONS(2096), - [anon_sym_o_GT_GT] = ACTIONS(2096), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2096), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2096), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2096), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2096), - [aux_sym_unquoted_token1] = ACTIONS(2094), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2096), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1865), + [anon_sym_DOT_DOT_LT] = ACTIONS(1865), + [anon_sym_null] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1865), + [anon_sym_false] = ACTIONS(1865), + [aux_sym__val_number_decimal_token1] = ACTIONS(1863), + [aux_sym__val_number_decimal_token2] = ACTIONS(1865), + [aux_sym__val_number_decimal_token3] = ACTIONS(1865), + [aux_sym__val_number_decimal_token4] = ACTIONS(1865), + [aux_sym__val_number_token1] = ACTIONS(1865), + [aux_sym__val_number_token2] = ACTIONS(1865), + [aux_sym__val_number_token3] = ACTIONS(1865), + [aux_sym__val_number_token4] = ACTIONS(1865), + [aux_sym__val_number_token5] = ACTIONS(1865), + [aux_sym__val_number_token6] = ACTIONS(1865), + [anon_sym_0b] = ACTIONS(1863), + [anon_sym_0o] = ACTIONS(1863), + [anon_sym_0x] = ACTIONS(1863), + [sym_val_date] = ACTIONS(1865), + [anon_sym_DQUOTE] = ACTIONS(1865), + [sym__str_single_quotes] = ACTIONS(1865), + [sym__str_back_ticks] = ACTIONS(1865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1865), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1865), + [anon_sym_err_GT] = ACTIONS(1863), + [anon_sym_out_GT] = ACTIONS(1863), + [anon_sym_e_GT] = ACTIONS(1863), + [anon_sym_o_GT] = ACTIONS(1863), + [anon_sym_err_PLUSout_GT] = ACTIONS(1863), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1863), + [anon_sym_o_PLUSe_GT] = ACTIONS(1863), + [anon_sym_e_PLUSo_GT] = ACTIONS(1863), + [anon_sym_err_GT_GT] = ACTIONS(1865), + [anon_sym_out_GT_GT] = ACTIONS(1865), + [anon_sym_e_GT_GT] = ACTIONS(1865), + [anon_sym_o_GT_GT] = ACTIONS(1865), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1865), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1865), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1865), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1865), + [aux_sym_unquoted_token1] = ACTIONS(1863), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1865), }, - [1563] = { - [sym_comment] = STATE(1563), - [sym__newline] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_err_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_GT_PIPE] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), - [anon_sym_RPAREN] = ACTIONS(1675), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1675), - [anon_sym_in2] = ACTIONS(1675), - [anon_sym_LBRACE] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1675), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1675), - [anon_sym_xor2] = ACTIONS(1675), - [anon_sym_or2] = ACTIONS(1675), - [anon_sym_not_DASHin2] = ACTIONS(1675), - [anon_sym_starts_DASHwith2] = ACTIONS(1675), - [anon_sym_ends_DASHwith2] = ACTIONS(1675), - [anon_sym_EQ_EQ2] = ACTIONS(1675), - [anon_sym_BANG_EQ2] = ACTIONS(1675), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1675), - [anon_sym_GT_EQ2] = ACTIONS(1675), - [anon_sym_EQ_TILDE2] = ACTIONS(1675), - [anon_sym_BANG_TILDE2] = ACTIONS(1675), - [anon_sym_LPAREN2] = ACTIONS(1675), - [anon_sym_STAR_STAR2] = ACTIONS(1675), - [anon_sym_PLUS_PLUS2] = ACTIONS(1675), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1675), - [anon_sym_SLASH_SLASH2] = ACTIONS(1675), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1675), - [anon_sym_bit_DASHshr2] = ACTIONS(1675), - [anon_sym_bit_DASHand2] = ACTIONS(1675), - [anon_sym_bit_DASHxor2] = ACTIONS(1675), - [anon_sym_bit_DASHor2] = ACTIONS(1675), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [sym_filesize_unit] = ACTIONS(1673), - [sym_duration_unit] = ACTIONS(1675), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1675), - [anon_sym_out_GT_GT] = ACTIONS(1675), - [anon_sym_e_GT_GT] = ACTIONS(1675), - [anon_sym_o_GT_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), - [aux_sym_unquoted_token2] = ACTIONS(1673), + [1569] = { + [sym_cell_path] = STATE(1923), + [sym_path] = STATE(1823), + [sym_comment] = STATE(1569), + [aux_sym_cell_path_repeat1] = STATE(1574), + [ts_builtin_sym_end] = ACTIONS(1881), + [sym__newline] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(1881), + [anon_sym_err_GT_PIPE] = ACTIONS(1881), + [anon_sym_out_GT_PIPE] = ACTIONS(1881), + [anon_sym_e_GT_PIPE] = ACTIONS(1881), + [anon_sym_o_GT_PIPE] = ACTIONS(1881), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1881), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1881), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1881), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_DOLLAR] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_DASH2] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1881), + [anon_sym_DOT_DOT_LT] = ACTIONS(1881), + [anon_sym_null] = ACTIONS(1881), + [anon_sym_true] = ACTIONS(1881), + [anon_sym_false] = ACTIONS(1881), + [aux_sym__val_number_decimal_token1] = ACTIONS(1879), + [aux_sym__val_number_decimal_token2] = ACTIONS(1881), + [aux_sym__val_number_decimal_token3] = ACTIONS(1881), + [aux_sym__val_number_decimal_token4] = ACTIONS(1881), + [aux_sym__val_number_token1] = ACTIONS(1881), + [aux_sym__val_number_token2] = ACTIONS(1881), + [aux_sym__val_number_token3] = ACTIONS(1881), + [aux_sym__val_number_token4] = ACTIONS(1881), + [aux_sym__val_number_token5] = ACTIONS(1881), + [aux_sym__val_number_token6] = ACTIONS(1881), + [anon_sym_0b] = ACTIONS(1879), + [anon_sym_0o] = ACTIONS(1879), + [anon_sym_0x] = ACTIONS(1879), + [sym_val_date] = ACTIONS(1881), + [anon_sym_DQUOTE] = ACTIONS(1881), + [sym__str_single_quotes] = ACTIONS(1881), + [sym__str_back_ticks] = ACTIONS(1881), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1881), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1881), + [anon_sym_err_GT] = ACTIONS(1879), + [anon_sym_out_GT] = ACTIONS(1879), + [anon_sym_e_GT] = ACTIONS(1879), + [anon_sym_o_GT] = ACTIONS(1879), + [anon_sym_err_PLUSout_GT] = ACTIONS(1879), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1879), + [anon_sym_o_PLUSe_GT] = ACTIONS(1879), + [anon_sym_e_PLUSo_GT] = ACTIONS(1879), + [anon_sym_err_GT_GT] = ACTIONS(1881), + [anon_sym_out_GT_GT] = ACTIONS(1881), + [anon_sym_e_GT_GT] = ACTIONS(1881), + [anon_sym_o_GT_GT] = ACTIONS(1881), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1881), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1881), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1881), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1881), + [aux_sym_unquoted_token1] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1881), + }, + [1570] = { + [sym_comment] = STATE(1570), + [anon_sym_EQ] = ACTIONS(1020), + [anon_sym_PLUS_EQ] = ACTIONS(1022), + [anon_sym_DASH_EQ] = ACTIONS(1022), + [anon_sym_STAR_EQ] = ACTIONS(1022), + [anon_sym_SLASH_EQ] = ACTIONS(1022), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1022), + [sym__newline] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1028), + [anon_sym_PIPE] = ACTIONS(1028), + [anon_sym_err_GT_PIPE] = ACTIONS(1028), + [anon_sym_out_GT_PIPE] = ACTIONS(1028), + [anon_sym_e_GT_PIPE] = ACTIONS(1028), + [anon_sym_o_GT_PIPE] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), + [anon_sym_GT2] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(1026), + [anon_sym_in2] = ACTIONS(1028), + [anon_sym_RBRACE] = ACTIONS(1028), + [anon_sym_STAR2] = ACTIONS(1026), + [anon_sym_and2] = ACTIONS(1028), + [anon_sym_xor2] = ACTIONS(1028), + [anon_sym_or2] = ACTIONS(1028), + [anon_sym_not_DASHin2] = ACTIONS(1028), + [anon_sym_starts_DASHwith2] = ACTIONS(1028), + [anon_sym_ends_DASHwith2] = ACTIONS(1028), + [anon_sym_EQ_EQ2] = ACTIONS(1028), + [anon_sym_BANG_EQ2] = ACTIONS(1028), + [anon_sym_LT2] = ACTIONS(1026), + [anon_sym_LT_EQ2] = ACTIONS(1028), + [anon_sym_GT_EQ2] = ACTIONS(1028), + [anon_sym_EQ_TILDE2] = ACTIONS(1028), + [anon_sym_BANG_TILDE2] = ACTIONS(1028), + [anon_sym_STAR_STAR2] = ACTIONS(1028), + [anon_sym_PLUS_PLUS2] = ACTIONS(1026), + [anon_sym_SLASH2] = ACTIONS(1026), + [anon_sym_mod2] = ACTIONS(1028), + [anon_sym_SLASH_SLASH2] = ACTIONS(1028), + [anon_sym_PLUS2] = ACTIONS(1026), + [anon_sym_bit_DASHshl2] = ACTIONS(1028), + [anon_sym_bit_DASHshr2] = ACTIONS(1028), + [anon_sym_bit_DASHand2] = ACTIONS(1028), + [anon_sym_bit_DASHxor2] = ACTIONS(1028), + [anon_sym_bit_DASHor2] = ACTIONS(1028), + [anon_sym_DOT_DOT2] = ACTIONS(1038), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), + [anon_sym_err_GT] = ACTIONS(1026), + [anon_sym_out_GT] = ACTIONS(1026), + [anon_sym_e_GT] = ACTIONS(1026), + [anon_sym_o_GT] = ACTIONS(1026), + [anon_sym_err_PLUSout_GT] = ACTIONS(1026), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), + [anon_sym_o_PLUSe_GT] = ACTIONS(1026), + [anon_sym_e_PLUSo_GT] = ACTIONS(1026), + [anon_sym_err_GT_GT] = ACTIONS(1028), + [anon_sym_out_GT_GT] = ACTIONS(1028), + [anon_sym_e_GT_GT] = ACTIONS(1028), + [anon_sym_o_GT_GT] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1028), [anon_sym_POUND] = ACTIONS(247), }, - [1564] = { - [sym_comment] = STATE(1564), - [sym__newline] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_err_GT_PIPE] = ACTIONS(992), - [anon_sym_out_GT_PIPE] = ACTIONS(992), - [anon_sym_e_GT_PIPE] = ACTIONS(992), - [anon_sym_o_GT_PIPE] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), - [anon_sym_GT2] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(992), - [anon_sym_in2] = ACTIONS(992), - [anon_sym_if] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_EQ_GT] = ACTIONS(992), - [anon_sym_STAR2] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(992), - [anon_sym_and2] = ACTIONS(992), - [anon_sym_xor2] = ACTIONS(992), - [anon_sym_or2] = ACTIONS(992), - [anon_sym_not_DASHin2] = ACTIONS(992), - [anon_sym_starts_DASHwith2] = ACTIONS(992), - [anon_sym_ends_DASHwith2] = ACTIONS(992), - [anon_sym_EQ_EQ2] = ACTIONS(992), - [anon_sym_BANG_EQ2] = ACTIONS(992), - [anon_sym_LT2] = ACTIONS(990), - [anon_sym_LT_EQ2] = ACTIONS(992), - [anon_sym_GT_EQ2] = ACTIONS(992), - [anon_sym_EQ_TILDE2] = ACTIONS(992), - [anon_sym_BANG_TILDE2] = ACTIONS(992), - [anon_sym_STAR_STAR2] = ACTIONS(992), - [anon_sym_PLUS_PLUS2] = ACTIONS(992), - [anon_sym_SLASH2] = ACTIONS(990), - [anon_sym_mod2] = ACTIONS(992), - [anon_sym_SLASH_SLASH2] = ACTIONS(992), - [anon_sym_PLUS2] = ACTIONS(990), - [anon_sym_bit_DASHshl2] = ACTIONS(992), - [anon_sym_bit_DASHshr2] = ACTIONS(992), - [anon_sym_bit_DASHand2] = ACTIONS(992), - [anon_sym_bit_DASHxor2] = ACTIONS(992), - [anon_sym_bit_DASHor2] = ACTIONS(992), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [aux_sym_record_entry_token1] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), + [1571] = { + [sym_cell_path] = STATE(2001), + [sym_path] = STATE(1882), + [sym_comment] = STATE(1571), + [aux_sym_cell_path_repeat1] = STATE(1690), + [sym__newline] = ACTIONS(1921), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_err_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_GT_PIPE] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1921), + [anon_sym_RPAREN] = ACTIONS(1921), + [anon_sym_GT2] = ACTIONS(1919), + [anon_sym_DASH2] = ACTIONS(1921), + [anon_sym_in2] = ACTIONS(1921), + [anon_sym_if] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(1921), + [anon_sym_EQ_GT] = ACTIONS(1921), + [anon_sym_STAR2] = ACTIONS(1919), + [anon_sym_and2] = ACTIONS(1921), + [anon_sym_xor2] = ACTIONS(1921), + [anon_sym_or2] = ACTIONS(1921), + [anon_sym_not_DASHin2] = ACTIONS(1921), + [anon_sym_starts_DASHwith2] = ACTIONS(1921), + [anon_sym_ends_DASHwith2] = ACTIONS(1921), + [anon_sym_EQ_EQ2] = ACTIONS(1921), + [anon_sym_BANG_EQ2] = ACTIONS(1921), + [anon_sym_LT2] = ACTIONS(1919), + [anon_sym_LT_EQ2] = ACTIONS(1921), + [anon_sym_GT_EQ2] = ACTIONS(1921), + [anon_sym_EQ_TILDE2] = ACTIONS(1921), + [anon_sym_BANG_TILDE2] = ACTIONS(1921), + [anon_sym_STAR_STAR2] = ACTIONS(1921), + [anon_sym_PLUS_PLUS2] = ACTIONS(1921), + [anon_sym_SLASH2] = ACTIONS(1919), + [anon_sym_mod2] = ACTIONS(1921), + [anon_sym_SLASH_SLASH2] = ACTIONS(1921), + [anon_sym_PLUS2] = ACTIONS(1919), + [anon_sym_bit_DASHshl2] = ACTIONS(1921), + [anon_sym_bit_DASHshr2] = ACTIONS(1921), + [anon_sym_bit_DASHand2] = ACTIONS(1921), + [anon_sym_bit_DASHxor2] = ACTIONS(1921), + [anon_sym_bit_DASHor2] = ACTIONS(1921), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_err_GT] = ACTIONS(1919), + [anon_sym_out_GT] = ACTIONS(1919), + [anon_sym_e_GT] = ACTIONS(1919), + [anon_sym_o_GT] = ACTIONS(1919), + [anon_sym_err_PLUSout_GT] = ACTIONS(1919), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1919), + [anon_sym_o_PLUSe_GT] = ACTIONS(1919), + [anon_sym_e_PLUSo_GT] = ACTIONS(1919), + [anon_sym_err_GT_GT] = ACTIONS(1921), + [anon_sym_out_GT_GT] = ACTIONS(1921), + [anon_sym_e_GT_GT] = ACTIONS(1921), + [anon_sym_o_GT_GT] = ACTIONS(1921), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1921), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1921), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1921), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1921), [anon_sym_POUND] = ACTIONS(247), }, - [1565] = { - [sym_comment] = STATE(1565), - [anon_sym_EQ] = ACTIONS(4888), - [anon_sym_PLUS_EQ] = ACTIONS(4890), - [anon_sym_DASH_EQ] = ACTIONS(4890), - [anon_sym_STAR_EQ] = ACTIONS(4890), - [anon_sym_SLASH_EQ] = ACTIONS(4890), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4890), - [sym__newline] = ACTIONS(1032), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_err_GT_PIPE] = ACTIONS(1032), - [anon_sym_out_GT_PIPE] = ACTIONS(1032), - [anon_sym_e_GT_PIPE] = ACTIONS(1032), - [anon_sym_o_GT_PIPE] = ACTIONS(1032), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1032), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1032), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1032), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1032), - [anon_sym_RPAREN] = ACTIONS(1032), - [anon_sym_GT2] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(1030), - [anon_sym_in2] = ACTIONS(1032), - [anon_sym_STAR2] = ACTIONS(1030), - [anon_sym_and2] = ACTIONS(1032), - [anon_sym_xor2] = ACTIONS(1032), - [anon_sym_or2] = ACTIONS(1032), - [anon_sym_not_DASHin2] = ACTIONS(1032), - [anon_sym_starts_DASHwith2] = ACTIONS(1032), - [anon_sym_ends_DASHwith2] = ACTIONS(1032), - [anon_sym_EQ_EQ2] = ACTIONS(1032), - [anon_sym_BANG_EQ2] = ACTIONS(1032), - [anon_sym_LT2] = ACTIONS(1030), - [anon_sym_LT_EQ2] = ACTIONS(1032), - [anon_sym_GT_EQ2] = ACTIONS(1032), - [anon_sym_EQ_TILDE2] = ACTIONS(1032), - [anon_sym_BANG_TILDE2] = ACTIONS(1032), - [anon_sym_STAR_STAR2] = ACTIONS(1032), - [anon_sym_PLUS_PLUS2] = ACTIONS(1030), - [anon_sym_SLASH2] = ACTIONS(1030), - [anon_sym_mod2] = ACTIONS(1032), - [anon_sym_SLASH_SLASH2] = ACTIONS(1032), - [anon_sym_PLUS2] = ACTIONS(1030), - [anon_sym_bit_DASHshl2] = ACTIONS(1032), - [anon_sym_bit_DASHshr2] = ACTIONS(1032), - [anon_sym_bit_DASHand2] = ACTIONS(1032), - [anon_sym_bit_DASHxor2] = ACTIONS(1032), - [anon_sym_bit_DASHor2] = ACTIONS(1032), - [anon_sym_DOT_DOT2] = ACTIONS(1042), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), - [anon_sym_err_GT] = ACTIONS(1030), - [anon_sym_out_GT] = ACTIONS(1030), - [anon_sym_e_GT] = ACTIONS(1030), - [anon_sym_o_GT] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT] = ACTIONS(1030), - [anon_sym_err_GT_GT] = ACTIONS(1032), - [anon_sym_out_GT_GT] = ACTIONS(1032), - [anon_sym_e_GT_GT] = ACTIONS(1032), - [anon_sym_o_GT_GT] = ACTIONS(1032), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1032), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1032), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1032), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1032), + [1572] = { + [sym_comment] = STATE(1572), + [sym__newline] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1012), + [anon_sym_PIPE] = ACTIONS(1012), + [anon_sym_err_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_GT_PIPE] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), + [anon_sym_RPAREN] = ACTIONS(1012), + [anon_sym_GT2] = ACTIONS(1010), + [anon_sym_DASH2] = ACTIONS(1012), + [anon_sym_in2] = ACTIONS(1012), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_RBRACE] = ACTIONS(1012), + [anon_sym_EQ_GT] = ACTIONS(1012), + [anon_sym_STAR2] = ACTIONS(1010), + [anon_sym_and2] = ACTIONS(1012), + [anon_sym_xor2] = ACTIONS(1012), + [anon_sym_or2] = ACTIONS(1012), + [anon_sym_not_DASHin2] = ACTIONS(1012), + [anon_sym_starts_DASHwith2] = ACTIONS(1012), + [anon_sym_ends_DASHwith2] = ACTIONS(1012), + [anon_sym_EQ_EQ2] = ACTIONS(1012), + [anon_sym_BANG_EQ2] = ACTIONS(1012), + [anon_sym_LT2] = ACTIONS(1010), + [anon_sym_LT_EQ2] = ACTIONS(1012), + [anon_sym_GT_EQ2] = ACTIONS(1012), + [anon_sym_EQ_TILDE2] = ACTIONS(1012), + [anon_sym_BANG_TILDE2] = ACTIONS(1012), + [anon_sym_STAR_STAR2] = ACTIONS(1012), + [anon_sym_PLUS_PLUS2] = ACTIONS(1012), + [anon_sym_SLASH2] = ACTIONS(1010), + [anon_sym_mod2] = ACTIONS(1012), + [anon_sym_SLASH_SLASH2] = ACTIONS(1012), + [anon_sym_PLUS2] = ACTIONS(1010), + [anon_sym_bit_DASHshl2] = ACTIONS(1012), + [anon_sym_bit_DASHshr2] = ACTIONS(1012), + [anon_sym_bit_DASHand2] = ACTIONS(1012), + [anon_sym_bit_DASHxor2] = ACTIONS(1012), + [anon_sym_bit_DASHor2] = ACTIONS(1012), + [anon_sym_DOT_DOT2] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [anon_sym_err_GT_GT] = ACTIONS(1012), + [anon_sym_out_GT_GT] = ACTIONS(1012), + [anon_sym_e_GT_GT] = ACTIONS(1012), + [anon_sym_o_GT_GT] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), [anon_sym_POUND] = ACTIONS(247), }, - [1566] = { - [sym_comment] = STATE(1566), - [sym__newline] = ACTIONS(1765), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_err_GT_PIPE] = ACTIONS(1765), - [anon_sym_out_GT_PIPE] = ACTIONS(1765), - [anon_sym_e_GT_PIPE] = ACTIONS(1765), - [anon_sym_o_GT_PIPE] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1765), - [anon_sym_GT2] = ACTIONS(1763), + [1573] = { + [sym_comment] = STATE(1573), + [ts_builtin_sym_end] = ACTIONS(1767), + [sym__newline] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_err_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_GT_PIPE] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_DOLLAR] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1767), [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_STAR2] = ACTIONS(1763), - [anon_sym_and2] = ACTIONS(1765), - [anon_sym_xor2] = ACTIONS(1765), - [anon_sym_or2] = ACTIONS(1765), - [anon_sym_not_DASHin2] = ACTIONS(1765), - [anon_sym_starts_DASHwith2] = ACTIONS(1765), - [anon_sym_ends_DASHwith2] = ACTIONS(1765), - [anon_sym_EQ_EQ2] = ACTIONS(1765), - [anon_sym_BANG_EQ2] = ACTIONS(1765), - [anon_sym_LT2] = ACTIONS(1763), - [anon_sym_LT_EQ2] = ACTIONS(1765), - [anon_sym_GT_EQ2] = ACTIONS(1765), - [anon_sym_EQ_TILDE2] = ACTIONS(1765), - [anon_sym_BANG_TILDE2] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1765), - [anon_sym_STAR_STAR2] = ACTIONS(1765), - [anon_sym_PLUS_PLUS2] = ACTIONS(1765), - [anon_sym_SLASH2] = ACTIONS(1763), - [anon_sym_mod2] = ACTIONS(1765), - [anon_sym_SLASH_SLASH2] = ACTIONS(1765), - [anon_sym_PLUS2] = ACTIONS(1763), - [anon_sym_bit_DASHshl2] = ACTIONS(1765), - [anon_sym_bit_DASHshr2] = ACTIONS(1765), - [anon_sym_bit_DASHand2] = ACTIONS(1765), - [anon_sym_bit_DASHxor2] = ACTIONS(1765), - [anon_sym_bit_DASHor2] = ACTIONS(1765), - [anon_sym_DOT_DOT2] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), - [sym_filesize_unit] = ACTIONS(1763), - [sym_duration_unit] = ACTIONS(1765), - [anon_sym_err_GT] = ACTIONS(1763), - [anon_sym_out_GT] = ACTIONS(1763), - [anon_sym_e_GT] = ACTIONS(1763), - [anon_sym_o_GT] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT] = ACTIONS(1763), - [anon_sym_err_GT_GT] = ACTIONS(1765), - [anon_sym_out_GT_GT] = ACTIONS(1765), - [anon_sym_e_GT_GT] = ACTIONS(1765), - [anon_sym_o_GT_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1765), - [aux_sym_unquoted_token2] = ACTIONS(1763), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_DOT_DOT] = ACTIONS(1765), + [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(4870), + [anon_sym_null] = ACTIONS(1767), + [anon_sym_true] = ACTIONS(1767), + [anon_sym_false] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1767), + [aux_sym__val_number_token5] = ACTIONS(1767), + [aux_sym__val_number_token6] = ACTIONS(1767), + [anon_sym_0b] = ACTIONS(1765), + [anon_sym_0o] = ACTIONS(1765), + [anon_sym_0x] = ACTIONS(1765), + [sym_val_date] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), + [anon_sym_err_GT] = ACTIONS(1765), + [anon_sym_out_GT] = ACTIONS(1765), + [anon_sym_e_GT] = ACTIONS(1765), + [anon_sym_o_GT] = ACTIONS(1765), + [anon_sym_err_PLUSout_GT] = ACTIONS(1765), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), + [anon_sym_o_PLUSe_GT] = ACTIONS(1765), + [anon_sym_e_PLUSo_GT] = ACTIONS(1765), + [anon_sym_err_GT_GT] = ACTIONS(1767), + [anon_sym_out_GT_GT] = ACTIONS(1767), + [anon_sym_e_GT_GT] = ACTIONS(1767), + [anon_sym_o_GT_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), + [aux_sym_unquoted_token1] = ACTIONS(1765), + [aux_sym_unquoted_token2] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1767), + }, + [1574] = { + [sym_path] = STATE(1823), + [sym_comment] = STATE(1574), + [aux_sym_cell_path_repeat1] = STATE(1593), + [ts_builtin_sym_end] = ACTIONS(969), + [sym__newline] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(969), + [anon_sym_err_GT_PIPE] = ACTIONS(969), + [anon_sym_out_GT_PIPE] = ACTIONS(969), + [anon_sym_e_GT_PIPE] = ACTIONS(969), + [anon_sym_o_GT_PIPE] = ACTIONS(969), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(969), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(969), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(969), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_DASH_DASH] = ACTIONS(969), + [anon_sym_DASH2] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_DOT_DOT] = ACTIONS(967), + [anon_sym_DOT] = ACTIONS(4813), + [anon_sym_DOT_DOT_EQ] = ACTIONS(969), + [anon_sym_DOT_DOT_LT] = ACTIONS(969), + [anon_sym_null] = ACTIONS(969), + [anon_sym_true] = ACTIONS(969), + [anon_sym_false] = ACTIONS(969), + [aux_sym__val_number_decimal_token1] = ACTIONS(967), + [aux_sym__val_number_decimal_token2] = ACTIONS(969), + [aux_sym__val_number_decimal_token3] = ACTIONS(969), + [aux_sym__val_number_decimal_token4] = ACTIONS(969), + [aux_sym__val_number_token1] = ACTIONS(969), + [aux_sym__val_number_token2] = ACTIONS(969), + [aux_sym__val_number_token3] = ACTIONS(969), + [aux_sym__val_number_token4] = ACTIONS(969), + [aux_sym__val_number_token5] = ACTIONS(969), + [aux_sym__val_number_token6] = ACTIONS(969), + [anon_sym_0b] = ACTIONS(967), + [anon_sym_0o] = ACTIONS(967), + [anon_sym_0x] = ACTIONS(967), + [sym_val_date] = ACTIONS(969), + [anon_sym_DQUOTE] = ACTIONS(969), + [sym__str_single_quotes] = ACTIONS(969), + [sym__str_back_ticks] = ACTIONS(969), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(969), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(969), + [anon_sym_err_GT] = ACTIONS(967), + [anon_sym_out_GT] = ACTIONS(967), + [anon_sym_e_GT] = ACTIONS(967), + [anon_sym_o_GT] = ACTIONS(967), + [anon_sym_err_PLUSout_GT] = ACTIONS(967), + [anon_sym_out_PLUSerr_GT] = ACTIONS(967), + [anon_sym_o_PLUSe_GT] = ACTIONS(967), + [anon_sym_e_PLUSo_GT] = ACTIONS(967), + [anon_sym_err_GT_GT] = ACTIONS(969), + [anon_sym_out_GT_GT] = ACTIONS(969), + [anon_sym_e_GT_GT] = ACTIONS(969), + [anon_sym_o_GT_GT] = ACTIONS(969), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(969), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(969), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(969), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), + [aux_sym_unquoted_token1] = ACTIONS(967), [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(969), }, - [1567] = { - [sym_comment] = STATE(1567), - [sym__newline] = ACTIONS(2127), - [anon_sym_SEMI] = ACTIONS(2127), - [anon_sym_PIPE] = ACTIONS(2127), - [anon_sym_err_GT_PIPE] = ACTIONS(2127), - [anon_sym_out_GT_PIPE] = ACTIONS(2127), - [anon_sym_e_GT_PIPE] = ACTIONS(2127), - [anon_sym_o_GT_PIPE] = ACTIONS(2127), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2127), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2127), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2127), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2127), - [anon_sym_LBRACK] = ACTIONS(2127), - [anon_sym_LPAREN] = ACTIONS(2127), - [anon_sym_RPAREN] = ACTIONS(2127), - [anon_sym_DOLLAR] = ACTIONS(2125), - [anon_sym_DASH_DASH] = ACTIONS(2127), - [anon_sym_DASH2] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2127), - [anon_sym_RBRACE] = ACTIONS(2127), - [anon_sym_DOT_DOT] = ACTIONS(2125), - [anon_sym_DOT_DOT2] = ACTIONS(2125), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2125), - [anon_sym_DOT_DOT_LT] = ACTIONS(2125), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2127), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2127), - [anon_sym_null] = ACTIONS(2127), - [anon_sym_true] = ACTIONS(2127), - [anon_sym_false] = ACTIONS(2127), - [aux_sym__val_number_decimal_token1] = ACTIONS(2125), - [aux_sym__val_number_decimal_token2] = ACTIONS(2127), - [aux_sym__val_number_decimal_token3] = ACTIONS(2127), - [aux_sym__val_number_decimal_token4] = ACTIONS(2127), - [aux_sym__val_number_token1] = ACTIONS(2127), - [aux_sym__val_number_token2] = ACTIONS(2127), - [aux_sym__val_number_token3] = ACTIONS(2127), - [aux_sym__val_number_token4] = ACTIONS(2127), - [aux_sym__val_number_token5] = ACTIONS(2127), - [aux_sym__val_number_token6] = ACTIONS(2127), - [anon_sym_0b] = ACTIONS(2125), - [anon_sym_0o] = ACTIONS(2125), - [anon_sym_0x] = ACTIONS(2125), - [sym_val_date] = ACTIONS(2127), - [anon_sym_DQUOTE] = ACTIONS(2127), - [sym__str_single_quotes] = ACTIONS(2127), - [sym__str_back_ticks] = ACTIONS(2127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2127), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2127), - [anon_sym_err_GT] = ACTIONS(2125), - [anon_sym_out_GT] = ACTIONS(2125), - [anon_sym_e_GT] = ACTIONS(2125), - [anon_sym_o_GT] = ACTIONS(2125), - [anon_sym_err_PLUSout_GT] = ACTIONS(2125), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2125), - [anon_sym_o_PLUSe_GT] = ACTIONS(2125), - [anon_sym_e_PLUSo_GT] = ACTIONS(2125), - [anon_sym_err_GT_GT] = ACTIONS(2127), - [anon_sym_out_GT_GT] = ACTIONS(2127), - [anon_sym_e_GT_GT] = ACTIONS(2127), - [anon_sym_o_GT_GT] = ACTIONS(2127), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2127), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2127), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2127), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2127), - [aux_sym_unquoted_token1] = ACTIONS(2125), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2127), + [1575] = { + [sym_comment] = STATE(1575), + [sym__newline] = ACTIONS(4896), + [anon_sym_SEMI] = ACTIONS(4896), + [anon_sym_PIPE] = ACTIONS(4896), + [anon_sym_err_GT_PIPE] = ACTIONS(4896), + [anon_sym_out_GT_PIPE] = ACTIONS(4896), + [anon_sym_e_GT_PIPE] = ACTIONS(4896), + [anon_sym_o_GT_PIPE] = ACTIONS(4896), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4896), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4896), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4896), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4896), + [anon_sym_LBRACK] = ACTIONS(4896), + [anon_sym_LPAREN] = ACTIONS(4896), + [anon_sym_RPAREN] = ACTIONS(4896), + [anon_sym_DOLLAR] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4896), + [anon_sym_DASH2] = ACTIONS(4898), + [anon_sym_LBRACE] = ACTIONS(4896), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_DOT_DOT2] = ACTIONS(4833), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4898), + [anon_sym_DOT_DOT_LT] = ACTIONS(4898), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4835), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4835), + [anon_sym_null] = ACTIONS(4896), + [anon_sym_true] = ACTIONS(4896), + [anon_sym_false] = ACTIONS(4896), + [aux_sym__val_number_decimal_token1] = ACTIONS(4898), + [aux_sym__val_number_decimal_token2] = ACTIONS(4896), + [aux_sym__val_number_decimal_token3] = ACTIONS(4896), + [aux_sym__val_number_decimal_token4] = ACTIONS(4896), + [aux_sym__val_number_token1] = ACTIONS(4896), + [aux_sym__val_number_token2] = ACTIONS(4896), + [aux_sym__val_number_token3] = ACTIONS(4896), + [aux_sym__val_number_token4] = ACTIONS(4896), + [aux_sym__val_number_token5] = ACTIONS(4896), + [aux_sym__val_number_token6] = ACTIONS(4896), + [anon_sym_0b] = ACTIONS(4898), + [anon_sym_0o] = ACTIONS(4898), + [anon_sym_0x] = ACTIONS(4898), + [sym_val_date] = ACTIONS(4896), + [anon_sym_DQUOTE] = ACTIONS(4896), + [sym__str_single_quotes] = ACTIONS(4896), + [sym__str_back_ticks] = ACTIONS(4896), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4896), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4896), + [anon_sym_err_GT] = ACTIONS(4898), + [anon_sym_out_GT] = ACTIONS(4898), + [anon_sym_e_GT] = ACTIONS(4898), + [anon_sym_o_GT] = ACTIONS(4898), + [anon_sym_err_PLUSout_GT] = ACTIONS(4898), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4898), + [anon_sym_o_PLUSe_GT] = ACTIONS(4898), + [anon_sym_e_PLUSo_GT] = ACTIONS(4898), + [anon_sym_err_GT_GT] = ACTIONS(4896), + [anon_sym_out_GT_GT] = ACTIONS(4896), + [anon_sym_e_GT_GT] = ACTIONS(4896), + [anon_sym_o_GT_GT] = ACTIONS(4896), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4896), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4896), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4896), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4896), + [aux_sym_unquoted_token1] = ACTIONS(4898), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4896), }, - [1568] = { - [sym_comment] = STATE(1568), + [1576] = { + [sym_cell_path] = STATE(1991), + [sym_path] = STATE(1882), + [sym_comment] = STATE(1576), + [aux_sym_cell_path_repeat1] = STATE(1690), + [sym__newline] = ACTIONS(1889), + [anon_sym_SEMI] = ACTIONS(1889), + [anon_sym_PIPE] = ACTIONS(1889), + [anon_sym_err_GT_PIPE] = ACTIONS(1889), + [anon_sym_out_GT_PIPE] = ACTIONS(1889), + [anon_sym_e_GT_PIPE] = ACTIONS(1889), + [anon_sym_o_GT_PIPE] = ACTIONS(1889), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1889), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1889), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1889), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1889), + [anon_sym_RPAREN] = ACTIONS(1889), + [anon_sym_GT2] = ACTIONS(1887), + [anon_sym_DASH2] = ACTIONS(1889), + [anon_sym_in2] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(1889), + [anon_sym_RBRACE] = ACTIONS(1889), + [anon_sym_EQ_GT] = ACTIONS(1889), + [anon_sym_STAR2] = ACTIONS(1887), + [anon_sym_and2] = ACTIONS(1889), + [anon_sym_xor2] = ACTIONS(1889), + [anon_sym_or2] = ACTIONS(1889), + [anon_sym_not_DASHin2] = ACTIONS(1889), + [anon_sym_starts_DASHwith2] = ACTIONS(1889), + [anon_sym_ends_DASHwith2] = ACTIONS(1889), + [anon_sym_EQ_EQ2] = ACTIONS(1889), + [anon_sym_BANG_EQ2] = ACTIONS(1889), + [anon_sym_LT2] = ACTIONS(1887), + [anon_sym_LT_EQ2] = ACTIONS(1889), + [anon_sym_GT_EQ2] = ACTIONS(1889), + [anon_sym_EQ_TILDE2] = ACTIONS(1889), + [anon_sym_BANG_TILDE2] = ACTIONS(1889), + [anon_sym_STAR_STAR2] = ACTIONS(1889), + [anon_sym_PLUS_PLUS2] = ACTIONS(1889), + [anon_sym_SLASH2] = ACTIONS(1887), + [anon_sym_mod2] = ACTIONS(1889), + [anon_sym_SLASH_SLASH2] = ACTIONS(1889), + [anon_sym_PLUS2] = ACTIONS(1887), + [anon_sym_bit_DASHshl2] = ACTIONS(1889), + [anon_sym_bit_DASHshr2] = ACTIONS(1889), + [anon_sym_bit_DASHand2] = ACTIONS(1889), + [anon_sym_bit_DASHxor2] = ACTIONS(1889), + [anon_sym_bit_DASHor2] = ACTIONS(1889), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_err_GT] = ACTIONS(1887), + [anon_sym_out_GT] = ACTIONS(1887), + [anon_sym_e_GT] = ACTIONS(1887), + [anon_sym_o_GT] = ACTIONS(1887), + [anon_sym_err_PLUSout_GT] = ACTIONS(1887), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1887), + [anon_sym_o_PLUSe_GT] = ACTIONS(1887), + [anon_sym_e_PLUSo_GT] = ACTIONS(1887), + [anon_sym_err_GT_GT] = ACTIONS(1889), + [anon_sym_out_GT_GT] = ACTIONS(1889), + [anon_sym_e_GT_GT] = ACTIONS(1889), + [anon_sym_o_GT_GT] = ACTIONS(1889), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1889), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1889), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1889), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1889), + [anon_sym_POUND] = ACTIONS(247), + }, + [1577] = { + [sym_comment] = STATE(1577), + [ts_builtin_sym_end] = ACTIONS(1028), + [sym__newline] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1028), + [anon_sym_PIPE] = ACTIONS(1028), + [anon_sym_err_GT_PIPE] = ACTIONS(1028), + [anon_sym_out_GT_PIPE] = ACTIONS(1028), + [anon_sym_e_GT_PIPE] = ACTIONS(1028), + [anon_sym_o_GT_PIPE] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), + [anon_sym_LBRACK] = ACTIONS(1028), + [anon_sym_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [anon_sym_DASH2] = ACTIONS(1026), + [anon_sym_LBRACE] = ACTIONS(1028), + [anon_sym_DOT_DOT] = ACTIONS(1026), + [anon_sym_DOT_DOT2] = ACTIONS(4900), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT] = ACTIONS(1026), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4902), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4902), + [anon_sym_null] = ACTIONS(1028), + [anon_sym_true] = ACTIONS(1028), + [anon_sym_false] = ACTIONS(1028), + [aux_sym__val_number_decimal_token1] = ACTIONS(1026), + [aux_sym__val_number_decimal_token2] = ACTIONS(1028), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), + [aux_sym__val_number_token1] = ACTIONS(1028), + [aux_sym__val_number_token2] = ACTIONS(1028), + [aux_sym__val_number_token3] = ACTIONS(1028), + [aux_sym__val_number_token4] = ACTIONS(1028), + [aux_sym__val_number_token5] = ACTIONS(1028), + [aux_sym__val_number_token6] = ACTIONS(1028), + [anon_sym_0b] = ACTIONS(1026), + [anon_sym_0o] = ACTIONS(1026), + [anon_sym_0x] = ACTIONS(1026), + [sym_val_date] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(1028), + [sym__str_single_quotes] = ACTIONS(1028), + [sym__str_back_ticks] = ACTIONS(1028), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1028), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1028), + [anon_sym_err_GT] = ACTIONS(1026), + [anon_sym_out_GT] = ACTIONS(1026), + [anon_sym_e_GT] = ACTIONS(1026), + [anon_sym_o_GT] = ACTIONS(1026), + [anon_sym_err_PLUSout_GT] = ACTIONS(1026), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), + [anon_sym_o_PLUSe_GT] = ACTIONS(1026), + [anon_sym_e_PLUSo_GT] = ACTIONS(1026), + [anon_sym_err_GT_GT] = ACTIONS(1028), + [anon_sym_out_GT_GT] = ACTIONS(1028), + [anon_sym_e_GT_GT] = ACTIONS(1028), + [anon_sym_o_GT_GT] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1028), + [aux_sym_unquoted_token1] = ACTIONS(1026), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1028), + }, + [1578] = { + [sym_cell_path] = STATE(1983), + [sym_path] = STATE(1882), + [sym_comment] = STATE(1578), + [aux_sym_cell_path_repeat1] = STATE(1690), + [sym__newline] = ACTIONS(1893), + [anon_sym_SEMI] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_err_GT_PIPE] = ACTIONS(1893), + [anon_sym_out_GT_PIPE] = ACTIONS(1893), + [anon_sym_e_GT_PIPE] = ACTIONS(1893), + [anon_sym_o_GT_PIPE] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1893), + [anon_sym_RPAREN] = ACTIONS(1893), + [anon_sym_GT2] = ACTIONS(1891), + [anon_sym_DASH2] = ACTIONS(1893), + [anon_sym_in2] = ACTIONS(1893), + [anon_sym_if] = ACTIONS(1893), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_RBRACE] = ACTIONS(1893), + [anon_sym_EQ_GT] = ACTIONS(1893), + [anon_sym_STAR2] = ACTIONS(1891), + [anon_sym_and2] = ACTIONS(1893), + [anon_sym_xor2] = ACTIONS(1893), + [anon_sym_or2] = ACTIONS(1893), + [anon_sym_not_DASHin2] = ACTIONS(1893), + [anon_sym_starts_DASHwith2] = ACTIONS(1893), + [anon_sym_ends_DASHwith2] = ACTIONS(1893), + [anon_sym_EQ_EQ2] = ACTIONS(1893), + [anon_sym_BANG_EQ2] = ACTIONS(1893), + [anon_sym_LT2] = ACTIONS(1891), + [anon_sym_LT_EQ2] = ACTIONS(1893), + [anon_sym_GT_EQ2] = ACTIONS(1893), + [anon_sym_EQ_TILDE2] = ACTIONS(1893), + [anon_sym_BANG_TILDE2] = ACTIONS(1893), + [anon_sym_STAR_STAR2] = ACTIONS(1893), + [anon_sym_PLUS_PLUS2] = ACTIONS(1893), + [anon_sym_SLASH2] = ACTIONS(1891), + [anon_sym_mod2] = ACTIONS(1893), + [anon_sym_SLASH_SLASH2] = ACTIONS(1893), + [anon_sym_PLUS2] = ACTIONS(1891), + [anon_sym_bit_DASHshl2] = ACTIONS(1893), + [anon_sym_bit_DASHshr2] = ACTIONS(1893), + [anon_sym_bit_DASHand2] = ACTIONS(1893), + [anon_sym_bit_DASHxor2] = ACTIONS(1893), + [anon_sym_bit_DASHor2] = ACTIONS(1893), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_err_GT] = ACTIONS(1891), + [anon_sym_out_GT] = ACTIONS(1891), + [anon_sym_e_GT] = ACTIONS(1891), + [anon_sym_o_GT] = ACTIONS(1891), + [anon_sym_err_PLUSout_GT] = ACTIONS(1891), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1891), + [anon_sym_o_PLUSe_GT] = ACTIONS(1891), + [anon_sym_e_PLUSo_GT] = ACTIONS(1891), + [anon_sym_err_GT_GT] = ACTIONS(1893), + [anon_sym_out_GT_GT] = ACTIONS(1893), + [anon_sym_e_GT_GT] = ACTIONS(1893), + [anon_sym_o_GT_GT] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1893), + [anon_sym_POUND] = ACTIONS(247), + }, + [1579] = { + [sym_comment] = STATE(1579), + [ts_builtin_sym_end] = ACTIONS(4882), + [sym__newline] = ACTIONS(4882), + [anon_sym_SEMI] = ACTIONS(4882), + [anon_sym_PIPE] = ACTIONS(4882), + [anon_sym_err_GT_PIPE] = ACTIONS(4882), + [anon_sym_out_GT_PIPE] = ACTIONS(4882), + [anon_sym_e_GT_PIPE] = ACTIONS(4882), + [anon_sym_o_GT_PIPE] = ACTIONS(4882), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4882), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4882), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4882), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4882), + [anon_sym_LBRACK] = ACTIONS(4882), + [anon_sym_LPAREN] = ACTIONS(4882), + [anon_sym_DOLLAR] = ACTIONS(4884), + [anon_sym_DASH_DASH] = ACTIONS(4882), + [anon_sym_DASH2] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4882), + [anon_sym_DOT_DOT] = ACTIONS(4884), + [anon_sym_DOT_DOT2] = ACTIONS(4900), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4884), + [anon_sym_DOT_DOT_LT] = ACTIONS(4884), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4902), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4902), + [anon_sym_null] = ACTIONS(4882), + [anon_sym_true] = ACTIONS(4882), + [anon_sym_false] = ACTIONS(4882), + [aux_sym__val_number_decimal_token1] = ACTIONS(4884), + [aux_sym__val_number_decimal_token2] = ACTIONS(4882), + [aux_sym__val_number_decimal_token3] = ACTIONS(4882), + [aux_sym__val_number_decimal_token4] = ACTIONS(4882), + [aux_sym__val_number_token1] = ACTIONS(4882), + [aux_sym__val_number_token2] = ACTIONS(4882), + [aux_sym__val_number_token3] = ACTIONS(4882), + [aux_sym__val_number_token4] = ACTIONS(4882), + [aux_sym__val_number_token5] = ACTIONS(4882), + [aux_sym__val_number_token6] = ACTIONS(4882), + [anon_sym_0b] = ACTIONS(4884), + [anon_sym_0o] = ACTIONS(4884), + [anon_sym_0x] = ACTIONS(4884), + [sym_val_date] = ACTIONS(4882), + [anon_sym_DQUOTE] = ACTIONS(4882), + [sym__str_single_quotes] = ACTIONS(4882), + [sym__str_back_ticks] = ACTIONS(4882), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4882), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4882), + [anon_sym_err_GT] = ACTIONS(4884), + [anon_sym_out_GT] = ACTIONS(4884), + [anon_sym_e_GT] = ACTIONS(4884), + [anon_sym_o_GT] = ACTIONS(4884), + [anon_sym_err_PLUSout_GT] = ACTIONS(4884), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4884), + [anon_sym_o_PLUSe_GT] = ACTIONS(4884), + [anon_sym_e_PLUSo_GT] = ACTIONS(4884), + [anon_sym_err_GT_GT] = ACTIONS(4882), + [anon_sym_out_GT_GT] = ACTIONS(4882), + [anon_sym_e_GT_GT] = ACTIONS(4882), + [anon_sym_o_GT_GT] = ACTIONS(4882), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4882), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4882), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4882), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4882), + [aux_sym_unquoted_token1] = ACTIONS(4884), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4882), + }, + [1580] = { + [sym_comment] = STATE(1580), + [sym__newline] = ACTIONS(1016), + [anon_sym_SEMI] = ACTIONS(1016), + [anon_sym_PIPE] = ACTIONS(1016), + [anon_sym_err_GT_PIPE] = ACTIONS(1016), + [anon_sym_out_GT_PIPE] = ACTIONS(1016), + [anon_sym_e_GT_PIPE] = ACTIONS(1016), + [anon_sym_o_GT_PIPE] = ACTIONS(1016), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), + [anon_sym_RPAREN] = ACTIONS(1016), + [anon_sym_GT2] = ACTIONS(1014), + [anon_sym_DASH2] = ACTIONS(1016), + [anon_sym_in2] = ACTIONS(1016), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1016), + [anon_sym_RBRACE] = ACTIONS(1016), + [anon_sym_EQ_GT] = ACTIONS(1016), + [anon_sym_STAR2] = ACTIONS(1014), + [anon_sym_and2] = ACTIONS(1016), + [anon_sym_xor2] = ACTIONS(1016), + [anon_sym_or2] = ACTIONS(1016), + [anon_sym_not_DASHin2] = ACTIONS(1016), + [anon_sym_starts_DASHwith2] = ACTIONS(1016), + [anon_sym_ends_DASHwith2] = ACTIONS(1016), + [anon_sym_EQ_EQ2] = ACTIONS(1016), + [anon_sym_BANG_EQ2] = ACTIONS(1016), + [anon_sym_LT2] = ACTIONS(1014), + [anon_sym_LT_EQ2] = ACTIONS(1016), + [anon_sym_GT_EQ2] = ACTIONS(1016), + [anon_sym_EQ_TILDE2] = ACTIONS(1016), + [anon_sym_BANG_TILDE2] = ACTIONS(1016), + [anon_sym_STAR_STAR2] = ACTIONS(1016), + [anon_sym_PLUS_PLUS2] = ACTIONS(1016), + [anon_sym_SLASH2] = ACTIONS(1014), + [anon_sym_mod2] = ACTIONS(1016), + [anon_sym_SLASH_SLASH2] = ACTIONS(1016), + [anon_sym_PLUS2] = ACTIONS(1014), + [anon_sym_bit_DASHshl2] = ACTIONS(1016), + [anon_sym_bit_DASHshr2] = ACTIONS(1016), + [anon_sym_bit_DASHand2] = ACTIONS(1016), + [anon_sym_bit_DASHxor2] = ACTIONS(1016), + [anon_sym_bit_DASHor2] = ACTIONS(1016), + [anon_sym_DOT_DOT2] = ACTIONS(1014), + [anon_sym_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1016), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1016), + [anon_sym_err_GT] = ACTIONS(1014), + [anon_sym_out_GT] = ACTIONS(1014), + [anon_sym_e_GT] = ACTIONS(1014), + [anon_sym_o_GT] = ACTIONS(1014), + [anon_sym_err_PLUSout_GT] = ACTIONS(1014), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), + [anon_sym_o_PLUSe_GT] = ACTIONS(1014), + [anon_sym_e_PLUSo_GT] = ACTIONS(1014), + [anon_sym_err_GT_GT] = ACTIONS(1016), + [anon_sym_out_GT_GT] = ACTIONS(1016), + [anon_sym_e_GT_GT] = ACTIONS(1016), + [anon_sym_o_GT_GT] = ACTIONS(1016), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), + [anon_sym_POUND] = ACTIONS(247), + }, + [1581] = { + [sym_comment] = STATE(1581), + [sym__newline] = ACTIONS(1828), + [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_PIPE] = ACTIONS(1828), + [anon_sym_err_GT_PIPE] = ACTIONS(1828), + [anon_sym_out_GT_PIPE] = ACTIONS(1828), + [anon_sym_e_GT_PIPE] = ACTIONS(1828), + [anon_sym_o_GT_PIPE] = ACTIONS(1828), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1828), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1828), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1828), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1828), + [anon_sym_LBRACK] = ACTIONS(1828), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_RPAREN] = ACTIONS(1828), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_DASH_DASH] = ACTIONS(1828), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_LBRACE] = ACTIONS(1828), + [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_LPAREN2] = ACTIONS(1822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1828), + [anon_sym_DOT_DOT_LT] = ACTIONS(1828), + [anon_sym_null] = ACTIONS(1828), + [anon_sym_true] = ACTIONS(1828), + [anon_sym_false] = ACTIONS(1828), + [aux_sym__val_number_decimal_token1] = ACTIONS(1820), + [aux_sym__val_number_decimal_token2] = ACTIONS(1828), + [aux_sym__val_number_decimal_token3] = ACTIONS(1828), + [aux_sym__val_number_decimal_token4] = ACTIONS(1828), + [aux_sym__val_number_token1] = ACTIONS(1828), + [aux_sym__val_number_token2] = ACTIONS(1828), + [aux_sym__val_number_token3] = ACTIONS(1828), + [aux_sym__val_number_token4] = ACTIONS(1828), + [aux_sym__val_number_token5] = ACTIONS(1828), + [aux_sym__val_number_token6] = ACTIONS(1828), + [anon_sym_0b] = ACTIONS(1820), + [anon_sym_0o] = ACTIONS(1820), + [anon_sym_0x] = ACTIONS(1820), + [sym_val_date] = ACTIONS(1828), + [anon_sym_DQUOTE] = ACTIONS(1828), + [sym__str_single_quotes] = ACTIONS(1828), + [sym__str_back_ticks] = ACTIONS(1828), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1828), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1828), + [anon_sym_err_GT] = ACTIONS(1820), + [anon_sym_out_GT] = ACTIONS(1820), + [anon_sym_e_GT] = ACTIONS(1820), + [anon_sym_o_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT] = ACTIONS(1820), + [anon_sym_err_GT_GT] = ACTIONS(1828), + [anon_sym_out_GT_GT] = ACTIONS(1828), + [anon_sym_e_GT_GT] = ACTIONS(1828), + [anon_sym_o_GT_GT] = ACTIONS(1828), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1828), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1828), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1828), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1828), + [aux_sym_unquoted_token1] = ACTIONS(1820), + [aux_sym_unquoted_token2] = ACTIONS(1559), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1828), + }, + [1582] = { + [sym_cell_path] = STATE(2003), + [sym_path] = STATE(1882), + [sym_comment] = STATE(1582), + [aux_sym_cell_path_repeat1] = STATE(1690), + [sym__newline] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_err_GT_PIPE] = ACTIONS(1897), + [anon_sym_out_GT_PIPE] = ACTIONS(1897), + [anon_sym_e_GT_PIPE] = ACTIONS(1897), + [anon_sym_o_GT_PIPE] = ACTIONS(1897), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1897), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1897), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1897), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1897), + [anon_sym_RPAREN] = ACTIONS(1897), + [anon_sym_GT2] = ACTIONS(1895), + [anon_sym_DASH2] = ACTIONS(1897), + [anon_sym_in2] = ACTIONS(1897), + [anon_sym_if] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1897), + [anon_sym_RBRACE] = ACTIONS(1897), + [anon_sym_EQ_GT] = ACTIONS(1897), + [anon_sym_STAR2] = ACTIONS(1895), + [anon_sym_and2] = ACTIONS(1897), + [anon_sym_xor2] = ACTIONS(1897), + [anon_sym_or2] = ACTIONS(1897), + [anon_sym_not_DASHin2] = ACTIONS(1897), + [anon_sym_starts_DASHwith2] = ACTIONS(1897), + [anon_sym_ends_DASHwith2] = ACTIONS(1897), + [anon_sym_EQ_EQ2] = ACTIONS(1897), + [anon_sym_BANG_EQ2] = ACTIONS(1897), + [anon_sym_LT2] = ACTIONS(1895), + [anon_sym_LT_EQ2] = ACTIONS(1897), + [anon_sym_GT_EQ2] = ACTIONS(1897), + [anon_sym_EQ_TILDE2] = ACTIONS(1897), + [anon_sym_BANG_TILDE2] = ACTIONS(1897), + [anon_sym_STAR_STAR2] = ACTIONS(1897), + [anon_sym_PLUS_PLUS2] = ACTIONS(1897), + [anon_sym_SLASH2] = ACTIONS(1895), + [anon_sym_mod2] = ACTIONS(1897), + [anon_sym_SLASH_SLASH2] = ACTIONS(1897), + [anon_sym_PLUS2] = ACTIONS(1895), + [anon_sym_bit_DASHshl2] = ACTIONS(1897), + [anon_sym_bit_DASHshr2] = ACTIONS(1897), + [anon_sym_bit_DASHand2] = ACTIONS(1897), + [anon_sym_bit_DASHxor2] = ACTIONS(1897), + [anon_sym_bit_DASHor2] = ACTIONS(1897), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_err_GT] = ACTIONS(1895), + [anon_sym_out_GT] = ACTIONS(1895), + [anon_sym_e_GT] = ACTIONS(1895), + [anon_sym_o_GT] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT] = ACTIONS(1895), + [anon_sym_err_GT_GT] = ACTIONS(1897), + [anon_sym_out_GT_GT] = ACTIONS(1897), + [anon_sym_e_GT_GT] = ACTIONS(1897), + [anon_sym_o_GT_GT] = ACTIONS(1897), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1897), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1897), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1897), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1897), + [anon_sym_POUND] = ACTIONS(247), + }, + [1583] = { + [sym_cell_path] = STATE(2057), + [sym_path] = STATE(1882), + [sym_comment] = STATE(1583), + [aux_sym_cell_path_repeat1] = STATE(1690), + [sym__newline] = ACTIONS(1913), + [anon_sym_SEMI] = ACTIONS(1913), + [anon_sym_PIPE] = ACTIONS(1913), + [anon_sym_err_GT_PIPE] = ACTIONS(1913), + [anon_sym_out_GT_PIPE] = ACTIONS(1913), + [anon_sym_e_GT_PIPE] = ACTIONS(1913), + [anon_sym_o_GT_PIPE] = ACTIONS(1913), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1913), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1913), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1913), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1913), + [anon_sym_RPAREN] = ACTIONS(1913), + [anon_sym_GT2] = ACTIONS(1911), + [anon_sym_DASH2] = ACTIONS(1913), + [anon_sym_in2] = ACTIONS(1913), + [anon_sym_if] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(1913), + [anon_sym_RBRACE] = ACTIONS(1913), + [anon_sym_EQ_GT] = ACTIONS(1913), + [anon_sym_STAR2] = ACTIONS(1911), + [anon_sym_and2] = ACTIONS(1913), + [anon_sym_xor2] = ACTIONS(1913), + [anon_sym_or2] = ACTIONS(1913), + [anon_sym_not_DASHin2] = ACTIONS(1913), + [anon_sym_starts_DASHwith2] = ACTIONS(1913), + [anon_sym_ends_DASHwith2] = ACTIONS(1913), + [anon_sym_EQ_EQ2] = ACTIONS(1913), + [anon_sym_BANG_EQ2] = ACTIONS(1913), + [anon_sym_LT2] = ACTIONS(1911), + [anon_sym_LT_EQ2] = ACTIONS(1913), + [anon_sym_GT_EQ2] = ACTIONS(1913), + [anon_sym_EQ_TILDE2] = ACTIONS(1913), + [anon_sym_BANG_TILDE2] = ACTIONS(1913), + [anon_sym_STAR_STAR2] = ACTIONS(1913), + [anon_sym_PLUS_PLUS2] = ACTIONS(1913), + [anon_sym_SLASH2] = ACTIONS(1911), + [anon_sym_mod2] = ACTIONS(1913), + [anon_sym_SLASH_SLASH2] = ACTIONS(1913), + [anon_sym_PLUS2] = ACTIONS(1911), + [anon_sym_bit_DASHshl2] = ACTIONS(1913), + [anon_sym_bit_DASHshr2] = ACTIONS(1913), + [anon_sym_bit_DASHand2] = ACTIONS(1913), + [anon_sym_bit_DASHxor2] = ACTIONS(1913), + [anon_sym_bit_DASHor2] = ACTIONS(1913), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_err_GT] = ACTIONS(1911), + [anon_sym_out_GT] = ACTIONS(1911), + [anon_sym_e_GT] = ACTIONS(1911), + [anon_sym_o_GT] = ACTIONS(1911), + [anon_sym_err_PLUSout_GT] = ACTIONS(1911), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1911), + [anon_sym_o_PLUSe_GT] = ACTIONS(1911), + [anon_sym_e_PLUSo_GT] = ACTIONS(1911), + [anon_sym_err_GT_GT] = ACTIONS(1913), + [anon_sym_out_GT_GT] = ACTIONS(1913), + [anon_sym_e_GT_GT] = ACTIONS(1913), + [anon_sym_o_GT_GT] = ACTIONS(1913), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1913), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1913), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1913), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1913), + [anon_sym_POUND] = ACTIONS(247), + }, + [1584] = { + [sym_comment] = STATE(1584), + [ts_builtin_sym_end] = ACTIONS(1787), + [sym__newline] = ACTIONS(1787), + [anon_sym_SEMI] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_err_GT_PIPE] = ACTIONS(1787), + [anon_sym_out_GT_PIPE] = ACTIONS(1787), + [anon_sym_e_GT_PIPE] = ACTIONS(1787), + [anon_sym_o_GT_PIPE] = ACTIONS(1787), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_DOLLAR] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1787), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_DOT_DOT2] = ACTIONS(1785), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), + [anon_sym_DOT_DOT_LT] = ACTIONS(1785), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1787), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1787), + [anon_sym_null] = ACTIONS(1787), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [aux_sym__val_number_decimal_token1] = ACTIONS(1785), + [aux_sym__val_number_decimal_token2] = ACTIONS(1787), + [aux_sym__val_number_decimal_token3] = ACTIONS(1787), + [aux_sym__val_number_decimal_token4] = ACTIONS(1787), + [aux_sym__val_number_token1] = ACTIONS(1787), + [aux_sym__val_number_token2] = ACTIONS(1787), + [aux_sym__val_number_token3] = ACTIONS(1787), + [aux_sym__val_number_token4] = ACTIONS(1787), + [aux_sym__val_number_token5] = ACTIONS(1787), + [aux_sym__val_number_token6] = ACTIONS(1787), + [anon_sym_0b] = ACTIONS(1785), + [anon_sym_0o] = ACTIONS(1785), + [anon_sym_0x] = ACTIONS(1785), + [sym_val_date] = ACTIONS(1787), + [anon_sym_DQUOTE] = ACTIONS(1787), + [sym__str_single_quotes] = ACTIONS(1787), + [sym__str_back_ticks] = ACTIONS(1787), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), + [anon_sym_err_GT] = ACTIONS(1785), + [anon_sym_out_GT] = ACTIONS(1785), + [anon_sym_e_GT] = ACTIONS(1785), + [anon_sym_o_GT] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT] = ACTIONS(1785), + [anon_sym_err_GT_GT] = ACTIONS(1787), + [anon_sym_out_GT_GT] = ACTIONS(1787), + [anon_sym_e_GT_GT] = ACTIONS(1787), + [anon_sym_o_GT_GT] = ACTIONS(1787), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), + [aux_sym_unquoted_token1] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1787), + }, + [1585] = { + [sym_comment] = STATE(1585), + [ts_builtin_sym_end] = ACTIONS(2185), [sym__newline] = ACTIONS(2185), [anon_sym_SEMI] = ACTIONS(2185), [anon_sym_PIPE] = ACTIONS(2185), @@ -220789,12 +222252,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2185), [anon_sym_LBRACK] = ACTIONS(2185), [anon_sym_LPAREN] = ACTIONS(2185), - [anon_sym_RPAREN] = ACTIONS(2185), [anon_sym_DOLLAR] = ACTIONS(2183), [anon_sym_DASH_DASH] = ACTIONS(2185), [anon_sym_DASH2] = ACTIONS(2183), [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_RBRACE] = ACTIONS(2185), [anon_sym_DOT_DOT] = ACTIONS(2183), [anon_sym_DOT_DOT2] = ACTIONS(2183), [anon_sym_DOT_DOT_EQ] = ACTIONS(2183), @@ -220843,8 +222304,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(2185), }, - [1569] = { - [sym_comment] = STATE(1569), + [1586] = { + [sym_path] = STATE(1615), + [sym_comment] = STATE(1586), + [aux_sym_cell_path_repeat1] = STATE(1586), + [sym__newline] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(973), + [anon_sym_err_GT_PIPE] = ACTIONS(973), + [anon_sym_out_GT_PIPE] = ACTIONS(973), + [anon_sym_e_GT_PIPE] = ACTIONS(973), + [anon_sym_o_GT_PIPE] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), + [anon_sym_RPAREN] = ACTIONS(973), + [anon_sym_GT2] = ACTIONS(971), + [anon_sym_DASH2] = ACTIONS(973), + [anon_sym_in2] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_STAR2] = ACTIONS(971), + [anon_sym_and2] = ACTIONS(973), + [anon_sym_xor2] = ACTIONS(973), + [anon_sym_or2] = ACTIONS(973), + [anon_sym_not_DASHin2] = ACTIONS(973), + [anon_sym_starts_DASHwith2] = ACTIONS(973), + [anon_sym_ends_DASHwith2] = ACTIONS(973), + [anon_sym_EQ_EQ2] = ACTIONS(973), + [anon_sym_BANG_EQ2] = ACTIONS(973), + [anon_sym_LT2] = ACTIONS(971), + [anon_sym_LT_EQ2] = ACTIONS(973), + [anon_sym_GT_EQ2] = ACTIONS(973), + [anon_sym_EQ_TILDE2] = ACTIONS(973), + [anon_sym_BANG_TILDE2] = ACTIONS(973), + [anon_sym_STAR_STAR2] = ACTIONS(973), + [anon_sym_PLUS_PLUS2] = ACTIONS(973), + [anon_sym_SLASH2] = ACTIONS(971), + [anon_sym_mod2] = ACTIONS(973), + [anon_sym_SLASH_SLASH2] = ACTIONS(973), + [anon_sym_PLUS2] = ACTIONS(971), + [anon_sym_bit_DASHshl2] = ACTIONS(973), + [anon_sym_bit_DASHshr2] = ACTIONS(973), + [anon_sym_bit_DASHand2] = ACTIONS(973), + [anon_sym_bit_DASHxor2] = ACTIONS(973), + [anon_sym_bit_DASHor2] = ACTIONS(973), + [anon_sym_DOT_DOT2] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(4904), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(973), + [anon_sym_DOT_DOT_LT2] = ACTIONS(973), + [anon_sym_err_GT] = ACTIONS(971), + [anon_sym_out_GT] = ACTIONS(971), + [anon_sym_e_GT] = ACTIONS(971), + [anon_sym_o_GT] = ACTIONS(971), + [anon_sym_err_PLUSout_GT] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT] = ACTIONS(971), + [anon_sym_o_PLUSe_GT] = ACTIONS(971), + [anon_sym_e_PLUSo_GT] = ACTIONS(971), + [anon_sym_err_GT_GT] = ACTIONS(973), + [anon_sym_out_GT_GT] = ACTIONS(973), + [anon_sym_e_GT_GT] = ACTIONS(973), + [anon_sym_o_GT_GT] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(247), + }, + [1587] = { + [sym_comment] = STATE(1587), + [ts_builtin_sym_end] = ACTIONS(1843), + [sym__newline] = ACTIONS(1843), + [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_err_GT_PIPE] = ACTIONS(1843), + [anon_sym_out_GT_PIPE] = ACTIONS(1843), + [anon_sym_e_GT_PIPE] = ACTIONS(1843), + [anon_sym_o_GT_PIPE] = ACTIONS(1843), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1843), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1843), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1843), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1843), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [anon_sym_DASH2] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1841), + [anon_sym_DOT_DOT2] = ACTIONS(1841), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1841), + [anon_sym_DOT_DOT_LT] = ACTIONS(1841), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1843), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1843), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [aux_sym__val_number_decimal_token1] = ACTIONS(1841), + [aux_sym__val_number_decimal_token2] = ACTIONS(1843), + [aux_sym__val_number_decimal_token3] = ACTIONS(1843), + [aux_sym__val_number_decimal_token4] = ACTIONS(1843), + [aux_sym__val_number_token1] = ACTIONS(1843), + [aux_sym__val_number_token2] = ACTIONS(1843), + [aux_sym__val_number_token3] = ACTIONS(1843), + [aux_sym__val_number_token4] = ACTIONS(1843), + [aux_sym__val_number_token5] = ACTIONS(1843), + [aux_sym__val_number_token6] = ACTIONS(1843), + [anon_sym_0b] = ACTIONS(1841), + [anon_sym_0o] = ACTIONS(1841), + [anon_sym_0x] = ACTIONS(1841), + [sym_val_date] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [sym__str_single_quotes] = ACTIONS(1843), + [sym__str_back_ticks] = ACTIONS(1843), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1843), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1843), + [anon_sym_err_GT] = ACTIONS(1841), + [anon_sym_out_GT] = ACTIONS(1841), + [anon_sym_e_GT] = ACTIONS(1841), + [anon_sym_o_GT] = ACTIONS(1841), + [anon_sym_err_PLUSout_GT] = ACTIONS(1841), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1841), + [anon_sym_o_PLUSe_GT] = ACTIONS(1841), + [anon_sym_e_PLUSo_GT] = ACTIONS(1841), + [anon_sym_err_GT_GT] = ACTIONS(1843), + [anon_sym_out_GT_GT] = ACTIONS(1843), + [anon_sym_e_GT_GT] = ACTIONS(1843), + [anon_sym_o_GT_GT] = ACTIONS(1843), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1843), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1843), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1843), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1843), + [aux_sym_unquoted_token1] = ACTIONS(1841), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1843), + }, + [1588] = { + [sym_comment] = STATE(1588), + [sym__newline] = ACTIONS(2232), + [anon_sym_SEMI] = ACTIONS(2232), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_err_GT_PIPE] = ACTIONS(2232), + [anon_sym_out_GT_PIPE] = ACTIONS(2232), + [anon_sym_e_GT_PIPE] = ACTIONS(2232), + [anon_sym_o_GT_PIPE] = ACTIONS(2232), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2232), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2232), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2232), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2232), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_RPAREN] = ACTIONS(2232), + [anon_sym_DOLLAR] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2232), + [anon_sym_DASH2] = ACTIONS(2230), + [anon_sym_LBRACE] = ACTIONS(2232), + [anon_sym_RBRACE] = ACTIONS(2232), + [anon_sym_DOT_DOT] = ACTIONS(2230), + [anon_sym_LPAREN2] = ACTIONS(1804), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2232), + [anon_sym_DOT_DOT_LT] = ACTIONS(2232), + [anon_sym_null] = ACTIONS(2232), + [anon_sym_true] = ACTIONS(2232), + [anon_sym_false] = ACTIONS(2232), + [aux_sym__val_number_decimal_token1] = ACTIONS(2230), + [aux_sym__val_number_decimal_token2] = ACTIONS(2232), + [aux_sym__val_number_decimal_token3] = ACTIONS(2232), + [aux_sym__val_number_decimal_token4] = ACTIONS(2232), + [aux_sym__val_number_token1] = ACTIONS(2232), + [aux_sym__val_number_token2] = ACTIONS(2232), + [aux_sym__val_number_token3] = ACTIONS(2232), + [aux_sym__val_number_token4] = ACTIONS(2232), + [aux_sym__val_number_token5] = ACTIONS(2232), + [aux_sym__val_number_token6] = ACTIONS(2232), + [anon_sym_0b] = ACTIONS(2230), + [anon_sym_0o] = ACTIONS(2230), + [anon_sym_0x] = ACTIONS(2230), + [sym_val_date] = ACTIONS(2232), + [anon_sym_DQUOTE] = ACTIONS(2232), + [sym__str_single_quotes] = ACTIONS(2232), + [sym__str_back_ticks] = ACTIONS(2232), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2232), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2232), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2232), + [anon_sym_out_GT_GT] = ACTIONS(2232), + [anon_sym_e_GT_GT] = ACTIONS(2232), + [anon_sym_o_GT_GT] = ACTIONS(2232), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2232), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2232), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2232), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2232), + [aux_sym_unquoted_token1] = ACTIONS(2230), + [aux_sym_unquoted_token2] = ACTIONS(1812), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2232), + }, + [1589] = { + [sym_comment] = STATE(1589), [sym__newline] = ACTIONS(980), [anon_sym_SEMI] = ACTIONS(980), [anon_sym_PIPE] = ACTIONS(980), @@ -220856,44 +222521,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), + [anon_sym_LBRACK] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(980), [anon_sym_RPAREN] = ACTIONS(980), - [anon_sym_GT2] = ACTIONS(978), - [anon_sym_DASH2] = ACTIONS(980), - [anon_sym_in2] = ACTIONS(980), - [anon_sym_if] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_DASH2] = ACTIONS(978), [anon_sym_LBRACE] = ACTIONS(980), [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_EQ_GT] = ACTIONS(980), - [anon_sym_STAR2] = ACTIONS(978), - [anon_sym_QMARK2] = ACTIONS(4892), - [anon_sym_and2] = ACTIONS(980), - [anon_sym_xor2] = ACTIONS(980), - [anon_sym_or2] = ACTIONS(980), - [anon_sym_not_DASHin2] = ACTIONS(980), - [anon_sym_starts_DASHwith2] = ACTIONS(980), - [anon_sym_ends_DASHwith2] = ACTIONS(980), - [anon_sym_EQ_EQ2] = ACTIONS(980), - [anon_sym_BANG_EQ2] = ACTIONS(980), - [anon_sym_LT2] = ACTIONS(978), - [anon_sym_LT_EQ2] = ACTIONS(980), - [anon_sym_GT_EQ2] = ACTIONS(980), - [anon_sym_EQ_TILDE2] = ACTIONS(980), - [anon_sym_BANG_TILDE2] = ACTIONS(980), - [anon_sym_STAR_STAR2] = ACTIONS(980), - [anon_sym_PLUS_PLUS2] = ACTIONS(980), - [anon_sym_SLASH2] = ACTIONS(978), - [anon_sym_mod2] = ACTIONS(980), - [anon_sym_SLASH_SLASH2] = ACTIONS(980), - [anon_sym_PLUS2] = ACTIONS(978), - [anon_sym_bit_DASHshl2] = ACTIONS(980), - [anon_sym_bit_DASHshr2] = ACTIONS(980), - [anon_sym_bit_DASHand2] = ACTIONS(980), - [anon_sym_bit_DASHxor2] = ACTIONS(980), - [anon_sym_bit_DASHor2] = ACTIONS(980), - [anon_sym_DOT_DOT2] = ACTIONS(978), + [anon_sym_DOT_DOT] = ACTIONS(978), + [anon_sym_QMARK2] = ACTIONS(4907), [anon_sym_DOT] = ACTIONS(978), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), - [anon_sym_DOT_DOT_LT2] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(980), + [anon_sym_DOT_DOT_LT] = ACTIONS(980), + [anon_sym_null] = ACTIONS(980), + [anon_sym_true] = ACTIONS(980), + [anon_sym_false] = ACTIONS(980), + [aux_sym__val_number_decimal_token1] = ACTIONS(978), + [aux_sym__val_number_decimal_token2] = ACTIONS(980), + [aux_sym__val_number_decimal_token3] = ACTIONS(980), + [aux_sym__val_number_decimal_token4] = ACTIONS(980), + [aux_sym__val_number_token1] = ACTIONS(980), + [aux_sym__val_number_token2] = ACTIONS(980), + [aux_sym__val_number_token3] = ACTIONS(980), + [aux_sym__val_number_token4] = ACTIONS(980), + [aux_sym__val_number_token5] = ACTIONS(980), + [aux_sym__val_number_token6] = ACTIONS(980), + [anon_sym_0b] = ACTIONS(978), + [anon_sym_0o] = ACTIONS(978), + [anon_sym_0x] = ACTIONS(978), + [sym_val_date] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(980), + [sym__str_single_quotes] = ACTIONS(980), + [sym__str_back_ticks] = ACTIONS(980), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(980), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(980), [anon_sym_err_GT] = ACTIONS(978), [anon_sym_out_GT] = ACTIONS(978), [anon_sym_e_GT] = ACTIONS(978), @@ -220910,1371 +222572,692 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), + [aux_sym_unquoted_token1] = ACTIONS(978), [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(980), }, - [1570] = { - [sym_comment] = STATE(1570), - [sym__newline] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_err_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_GT_PIPE] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_RPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_DOT_DOT2] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), - [anon_sym_DOT_DOT_LT] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), - [anon_sym_null] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1741), - [aux_sym__val_number_token5] = ACTIONS(1741), - [aux_sym__val_number_token6] = ACTIONS(1741), - [anon_sym_0b] = ACTIONS(1739), - [anon_sym_0o] = ACTIONS(1739), - [anon_sym_0x] = ACTIONS(1739), - [sym_val_date] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), - [anon_sym_err_GT] = ACTIONS(1739), - [anon_sym_out_GT] = ACTIONS(1739), - [anon_sym_e_GT] = ACTIONS(1739), - [anon_sym_o_GT] = ACTIONS(1739), - [anon_sym_err_PLUSout_GT] = ACTIONS(1739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), - [anon_sym_o_PLUSe_GT] = ACTIONS(1739), - [anon_sym_e_PLUSo_GT] = ACTIONS(1739), - [anon_sym_err_GT_GT] = ACTIONS(1741), - [anon_sym_out_GT_GT] = ACTIONS(1741), - [anon_sym_e_GT_GT] = ACTIONS(1741), - [anon_sym_o_GT_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), - [aux_sym_unquoted_token1] = ACTIONS(1739), + [1590] = { + [sym_comment] = STATE(1590), + [sym__newline] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_PIPE] = ACTIONS(986), + [anon_sym_err_GT_PIPE] = ACTIONS(986), + [anon_sym_out_GT_PIPE] = ACTIONS(986), + [anon_sym_e_GT_PIPE] = ACTIONS(986), + [anon_sym_o_GT_PIPE] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_RPAREN] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_QMARK2] = ACTIONS(4909), + [anon_sym_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(986), + [anon_sym_DOT_DOT_LT] = ACTIONS(986), + [anon_sym_null] = ACTIONS(986), + [anon_sym_true] = ACTIONS(986), + [anon_sym_false] = ACTIONS(986), + [aux_sym__val_number_decimal_token1] = ACTIONS(984), + [aux_sym__val_number_decimal_token2] = ACTIONS(986), + [aux_sym__val_number_decimal_token3] = ACTIONS(986), + [aux_sym__val_number_decimal_token4] = ACTIONS(986), + [aux_sym__val_number_token1] = ACTIONS(986), + [aux_sym__val_number_token2] = ACTIONS(986), + [aux_sym__val_number_token3] = ACTIONS(986), + [aux_sym__val_number_token4] = ACTIONS(986), + [aux_sym__val_number_token5] = ACTIONS(986), + [aux_sym__val_number_token6] = ACTIONS(986), + [anon_sym_0b] = ACTIONS(984), + [anon_sym_0o] = ACTIONS(984), + [anon_sym_0x] = ACTIONS(984), + [sym_val_date] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym__str_single_quotes] = ACTIONS(986), + [sym__str_back_ticks] = ACTIONS(986), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), + [anon_sym_err_GT] = ACTIONS(984), + [anon_sym_out_GT] = ACTIONS(984), + [anon_sym_e_GT] = ACTIONS(984), + [anon_sym_o_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT] = ACTIONS(984), + [anon_sym_err_GT_GT] = ACTIONS(986), + [anon_sym_out_GT_GT] = ACTIONS(986), + [anon_sym_e_GT_GT] = ACTIONS(986), + [anon_sym_o_GT_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), + [aux_sym_unquoted_token1] = ACTIONS(984), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), - }, - [1571] = { - [sym_comment] = STATE(1571), - [ts_builtin_sym_end] = ACTIONS(1785), - [sym__newline] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_err_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_GT_PIPE] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT] = ACTIONS(1785), - [aux_sym__immediate_decimal_token2] = ACTIONS(4894), - [anon_sym_null] = ACTIONS(1785), - [anon_sym_true] = ACTIONS(1785), - [anon_sym_false] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_0b] = ACTIONS(1783), - [anon_sym_0o] = ACTIONS(1783), - [anon_sym_0x] = ACTIONS(1783), - [sym_val_date] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_err_GT] = ACTIONS(1783), - [anon_sym_out_GT] = ACTIONS(1783), - [anon_sym_e_GT] = ACTIONS(1783), - [anon_sym_o_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT] = ACTIONS(1783), - [anon_sym_err_GT_GT] = ACTIONS(1785), - [anon_sym_out_GT_GT] = ACTIONS(1785), - [anon_sym_e_GT_GT] = ACTIONS(1785), - [anon_sym_o_GT_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), - [aux_sym_unquoted_token1] = ACTIONS(1783), - [aux_sym_unquoted_token2] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1785), - }, - [1572] = { - [sym_comment] = STATE(1572), - [sym__newline] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_err_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_GT_PIPE] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_RPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT] = ACTIONS(1757), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_0b] = ACTIONS(1755), - [anon_sym_0o] = ACTIONS(1755), - [anon_sym_0x] = ACTIONS(1755), - [sym_val_date] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), - [anon_sym_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [aux_sym_unquoted_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1757), + [sym_raw_string_begin] = ACTIONS(986), }, - [1573] = { - [sym__expr_parenthesized_immediate] = STATE(7384), - [sym_comment] = STATE(1573), - [ts_builtin_sym_end] = ACTIONS(1721), - [sym__newline] = ACTIONS(1721), - [anon_sym_SEMI] = ACTIONS(1721), - [anon_sym_PIPE] = ACTIONS(1721), - [anon_sym_err_GT_PIPE] = ACTIONS(1721), - [anon_sym_out_GT_PIPE] = ACTIONS(1721), - [anon_sym_e_GT_PIPE] = ACTIONS(1721), - [anon_sym_o_GT_PIPE] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1721), - [anon_sym_GT2] = ACTIONS(1709), - [anon_sym_DASH2] = ACTIONS(1721), - [anon_sym_in2] = ACTIONS(1721), - [anon_sym_STAR2] = ACTIONS(1709), - [anon_sym_and2] = ACTIONS(1721), - [anon_sym_xor2] = ACTIONS(1721), - [anon_sym_or2] = ACTIONS(1721), - [anon_sym_not_DASHin2] = ACTIONS(1721), - [anon_sym_starts_DASHwith2] = ACTIONS(1721), - [anon_sym_ends_DASHwith2] = ACTIONS(1721), - [anon_sym_EQ_EQ2] = ACTIONS(1721), - [anon_sym_BANG_EQ2] = ACTIONS(1721), - [anon_sym_LT2] = ACTIONS(1709), - [anon_sym_LT_EQ2] = ACTIONS(1721), - [anon_sym_GT_EQ2] = ACTIONS(1721), - [anon_sym_EQ_TILDE2] = ACTIONS(1721), - [anon_sym_BANG_TILDE2] = ACTIONS(1721), - [anon_sym_LPAREN2] = ACTIONS(4249), - [anon_sym_STAR_STAR2] = ACTIONS(1721), - [anon_sym_PLUS_PLUS2] = ACTIONS(1721), - [anon_sym_SLASH2] = ACTIONS(1709), - [anon_sym_mod2] = ACTIONS(1721), - [anon_sym_SLASH_SLASH2] = ACTIONS(1721), - [anon_sym_PLUS2] = ACTIONS(1709), - [anon_sym_bit_DASHshl2] = ACTIONS(1721), - [anon_sym_bit_DASHshr2] = ACTIONS(1721), - [anon_sym_bit_DASHand2] = ACTIONS(1721), - [anon_sym_bit_DASHxor2] = ACTIONS(1721), - [anon_sym_bit_DASHor2] = ACTIONS(1721), - [anon_sym_DOT_DOT2] = ACTIONS(4856), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4858), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4858), - [sym_filesize_unit] = ACTIONS(4896), - [sym_duration_unit] = ACTIONS(4898), - [anon_sym_err_GT] = ACTIONS(1709), - [anon_sym_out_GT] = ACTIONS(1709), - [anon_sym_e_GT] = ACTIONS(1709), - [anon_sym_o_GT] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT] = ACTIONS(1709), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), - [anon_sym_o_PLUSe_GT] = ACTIONS(1709), - [anon_sym_e_PLUSo_GT] = ACTIONS(1709), - [anon_sym_err_GT_GT] = ACTIONS(1721), - [anon_sym_out_GT_GT] = ACTIONS(1721), - [anon_sym_e_GT_GT] = ACTIONS(1721), - [anon_sym_o_GT_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1721), - [aux_sym_unquoted_token2] = ACTIONS(4900), + [1591] = { + [sym_cell_path] = STATE(2089), + [sym_path] = STATE(1947), + [sym_comment] = STATE(1591), + [aux_sym_cell_path_repeat1] = STATE(1659), + [sym__newline] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_GT2] = ACTIONS(1733), + [anon_sym_DASH2] = ACTIONS(1737), + [anon_sym_in2] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_STAR2] = ACTIONS(1733), + [anon_sym_and2] = ACTIONS(1737), + [anon_sym_xor2] = ACTIONS(1737), + [anon_sym_or2] = ACTIONS(1737), + [anon_sym_not_DASHin2] = ACTIONS(1737), + [anon_sym_starts_DASHwith2] = ACTIONS(1737), + [anon_sym_ends_DASHwith2] = ACTIONS(1737), + [anon_sym_EQ_EQ2] = ACTIONS(1737), + [anon_sym_BANG_EQ2] = ACTIONS(1737), + [anon_sym_LT2] = ACTIONS(1733), + [anon_sym_LT_EQ2] = ACTIONS(1737), + [anon_sym_GT_EQ2] = ACTIONS(1737), + [anon_sym_EQ_TILDE2] = ACTIONS(1737), + [anon_sym_BANG_TILDE2] = ACTIONS(1737), + [anon_sym_STAR_STAR2] = ACTIONS(1737), + [anon_sym_PLUS_PLUS2] = ACTIONS(1737), + [anon_sym_SLASH2] = ACTIONS(1733), + [anon_sym_mod2] = ACTIONS(1737), + [anon_sym_SLASH_SLASH2] = ACTIONS(1737), + [anon_sym_PLUS2] = ACTIONS(1733), + [anon_sym_bit_DASHshl2] = ACTIONS(1737), + [anon_sym_bit_DASHshr2] = ACTIONS(1737), + [anon_sym_bit_DASHand2] = ACTIONS(1737), + [anon_sym_bit_DASHxor2] = ACTIONS(1737), + [anon_sym_bit_DASHor2] = ACTIONS(1737), + [anon_sym_DOT_DOT2] = ACTIONS(1733), + [anon_sym_DOT] = ACTIONS(4911), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [aux_sym_record_entry_token1] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1733), + [anon_sym_out_GT] = ACTIONS(1733), + [anon_sym_e_GT] = ACTIONS(1733), + [anon_sym_o_GT] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT] = ACTIONS(1733), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), [anon_sym_POUND] = ACTIONS(247), }, - [1574] = { - [sym_cell_path] = STATE(2012), - [sym_path] = STATE(1894), - [sym_comment] = STATE(1574), - [aux_sym_cell_path_repeat1] = STATE(1702), - [sym__newline] = ACTIONS(1915), - [anon_sym_SEMI] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1915), - [anon_sym_err_GT_PIPE] = ACTIONS(1915), - [anon_sym_out_GT_PIPE] = ACTIONS(1915), - [anon_sym_e_GT_PIPE] = ACTIONS(1915), - [anon_sym_o_GT_PIPE] = ACTIONS(1915), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1915), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1915), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1915), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1915), - [anon_sym_RPAREN] = ACTIONS(1915), - [anon_sym_GT2] = ACTIONS(1913), - [anon_sym_DASH2] = ACTIONS(1915), - [anon_sym_in2] = ACTIONS(1915), - [anon_sym_if] = ACTIONS(1915), - [anon_sym_LBRACE] = ACTIONS(1915), - [anon_sym_RBRACE] = ACTIONS(1915), - [anon_sym_EQ_GT] = ACTIONS(1915), - [anon_sym_STAR2] = ACTIONS(1913), - [anon_sym_and2] = ACTIONS(1915), - [anon_sym_xor2] = ACTIONS(1915), - [anon_sym_or2] = ACTIONS(1915), - [anon_sym_not_DASHin2] = ACTIONS(1915), - [anon_sym_starts_DASHwith2] = ACTIONS(1915), - [anon_sym_ends_DASHwith2] = ACTIONS(1915), - [anon_sym_EQ_EQ2] = ACTIONS(1915), - [anon_sym_BANG_EQ2] = ACTIONS(1915), - [anon_sym_LT2] = ACTIONS(1913), - [anon_sym_LT_EQ2] = ACTIONS(1915), - [anon_sym_GT_EQ2] = ACTIONS(1915), - [anon_sym_EQ_TILDE2] = ACTIONS(1915), - [anon_sym_BANG_TILDE2] = ACTIONS(1915), - [anon_sym_STAR_STAR2] = ACTIONS(1915), - [anon_sym_PLUS_PLUS2] = ACTIONS(1915), - [anon_sym_SLASH2] = ACTIONS(1913), - [anon_sym_mod2] = ACTIONS(1915), - [anon_sym_SLASH_SLASH2] = ACTIONS(1915), - [anon_sym_PLUS2] = ACTIONS(1913), - [anon_sym_bit_DASHshl2] = ACTIONS(1915), - [anon_sym_bit_DASHshr2] = ACTIONS(1915), - [anon_sym_bit_DASHand2] = ACTIONS(1915), - [anon_sym_bit_DASHxor2] = ACTIONS(1915), - [anon_sym_bit_DASHor2] = ACTIONS(1915), - [anon_sym_DOT] = ACTIONS(4902), - [anon_sym_err_GT] = ACTIONS(1913), - [anon_sym_out_GT] = ACTIONS(1913), - [anon_sym_e_GT] = ACTIONS(1913), - [anon_sym_o_GT] = ACTIONS(1913), - [anon_sym_err_PLUSout_GT] = ACTIONS(1913), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1913), - [anon_sym_o_PLUSe_GT] = ACTIONS(1913), - [anon_sym_e_PLUSo_GT] = ACTIONS(1913), - [anon_sym_err_GT_GT] = ACTIONS(1915), - [anon_sym_out_GT_GT] = ACTIONS(1915), - [anon_sym_e_GT_GT] = ACTIONS(1915), - [anon_sym_o_GT_GT] = ACTIONS(1915), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1915), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1915), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1915), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1915), - [anon_sym_POUND] = ACTIONS(247), + [1592] = { + [sym_comment] = STATE(1592), + [sym__newline] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_PIPE] = ACTIONS(1810), + [anon_sym_err_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_GT_PIPE] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1802), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_DOLLAR] = ACTIONS(1802), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_DASH2] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_DOT_DOT] = ACTIONS(1802), + [anon_sym_LPAREN2] = ACTIONS(1804), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1810), + [anon_sym_DOT_DOT_LT] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1810), + [anon_sym_false] = ACTIONS(1810), + [aux_sym__val_number_decimal_token1] = ACTIONS(1802), + [aux_sym__val_number_decimal_token2] = ACTIONS(1810), + [aux_sym__val_number_decimal_token3] = ACTIONS(1810), + [aux_sym__val_number_decimal_token4] = ACTIONS(1810), + [aux_sym__val_number_token1] = ACTIONS(1810), + [aux_sym__val_number_token2] = ACTIONS(1810), + [aux_sym__val_number_token3] = ACTIONS(1810), + [aux_sym__val_number_token4] = ACTIONS(1810), + [aux_sym__val_number_token5] = ACTIONS(1810), + [aux_sym__val_number_token6] = ACTIONS(1810), + [anon_sym_0b] = ACTIONS(1802), + [anon_sym_0o] = ACTIONS(1802), + [anon_sym_0x] = ACTIONS(1802), + [sym_val_date] = ACTIONS(1810), + [anon_sym_DQUOTE] = ACTIONS(1810), + [sym__str_single_quotes] = ACTIONS(1810), + [sym__str_back_ticks] = ACTIONS(1810), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1810), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1810), + [anon_sym_err_GT] = ACTIONS(1802), + [anon_sym_out_GT] = ACTIONS(1802), + [anon_sym_e_GT] = ACTIONS(1802), + [anon_sym_o_GT] = ACTIONS(1802), + [anon_sym_err_PLUSout_GT] = ACTIONS(1802), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1802), + [anon_sym_o_PLUSe_GT] = ACTIONS(1802), + [anon_sym_e_PLUSo_GT] = ACTIONS(1802), + [anon_sym_err_GT_GT] = ACTIONS(1810), + [anon_sym_out_GT_GT] = ACTIONS(1810), + [anon_sym_e_GT_GT] = ACTIONS(1810), + [anon_sym_o_GT_GT] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), + [aux_sym_unquoted_token1] = ACTIONS(1802), + [aux_sym_unquoted_token2] = ACTIONS(1812), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1810), }, - [1575] = { - [sym_comment] = STATE(1575), - [sym__newline] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(1012), - [anon_sym_err_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_GT_PIPE] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), - [anon_sym_RPAREN] = ACTIONS(1012), - [anon_sym_GT2] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(1012), - [anon_sym_in2] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym_EQ_GT] = ACTIONS(1012), - [anon_sym_STAR2] = ACTIONS(1010), - [anon_sym_and2] = ACTIONS(1012), - [anon_sym_xor2] = ACTIONS(1012), - [anon_sym_or2] = ACTIONS(1012), - [anon_sym_not_DASHin2] = ACTIONS(1012), - [anon_sym_starts_DASHwith2] = ACTIONS(1012), - [anon_sym_ends_DASHwith2] = ACTIONS(1012), - [anon_sym_EQ_EQ2] = ACTIONS(1012), - [anon_sym_BANG_EQ2] = ACTIONS(1012), - [anon_sym_LT2] = ACTIONS(1010), - [anon_sym_LT_EQ2] = ACTIONS(1012), - [anon_sym_GT_EQ2] = ACTIONS(1012), - [anon_sym_EQ_TILDE2] = ACTIONS(1012), - [anon_sym_BANG_TILDE2] = ACTIONS(1012), - [anon_sym_STAR_STAR2] = ACTIONS(1012), - [anon_sym_PLUS_PLUS2] = ACTIONS(1012), - [anon_sym_SLASH2] = ACTIONS(1010), - [anon_sym_mod2] = ACTIONS(1012), - [anon_sym_SLASH_SLASH2] = ACTIONS(1012), - [anon_sym_PLUS2] = ACTIONS(1010), - [anon_sym_bit_DASHshl2] = ACTIONS(1012), - [anon_sym_bit_DASHshr2] = ACTIONS(1012), - [anon_sym_bit_DASHand2] = ACTIONS(1012), - [anon_sym_bit_DASHxor2] = ACTIONS(1012), - [anon_sym_bit_DASHor2] = ACTIONS(1012), - [anon_sym_DOT_DOT2] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(1010), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1012), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1012), - [anon_sym_err_GT] = ACTIONS(1010), - [anon_sym_out_GT] = ACTIONS(1010), - [anon_sym_e_GT] = ACTIONS(1010), - [anon_sym_o_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT] = ACTIONS(1010), - [anon_sym_err_GT_GT] = ACTIONS(1012), - [anon_sym_out_GT_GT] = ACTIONS(1012), - [anon_sym_e_GT_GT] = ACTIONS(1012), - [anon_sym_o_GT_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), + [1593] = { + [sym_path] = STATE(1823), + [sym_comment] = STATE(1593), + [aux_sym_cell_path_repeat1] = STATE(1593), + [ts_builtin_sym_end] = ACTIONS(973), + [sym__newline] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(973), + [anon_sym_err_GT_PIPE] = ACTIONS(973), + [anon_sym_out_GT_PIPE] = ACTIONS(973), + [anon_sym_e_GT_PIPE] = ACTIONS(973), + [anon_sym_o_GT_PIPE] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_DASH2] = ACTIONS(971), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_DOT_DOT] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(4913), + [anon_sym_DOT_DOT_EQ] = ACTIONS(973), + [anon_sym_DOT_DOT_LT] = ACTIONS(973), + [anon_sym_null] = ACTIONS(973), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(971), + [aux_sym__val_number_decimal_token2] = ACTIONS(973), + [aux_sym__val_number_decimal_token3] = ACTIONS(973), + [aux_sym__val_number_decimal_token4] = ACTIONS(973), + [aux_sym__val_number_token1] = ACTIONS(973), + [aux_sym__val_number_token2] = ACTIONS(973), + [aux_sym__val_number_token3] = ACTIONS(973), + [aux_sym__val_number_token4] = ACTIONS(973), + [aux_sym__val_number_token5] = ACTIONS(973), + [aux_sym__val_number_token6] = ACTIONS(973), + [anon_sym_0b] = ACTIONS(971), + [anon_sym_0o] = ACTIONS(971), + [anon_sym_0x] = ACTIONS(971), + [sym_val_date] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(973), + [sym__str_single_quotes] = ACTIONS(973), + [sym__str_back_ticks] = ACTIONS(973), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(973), + [anon_sym_err_GT] = ACTIONS(971), + [anon_sym_out_GT] = ACTIONS(971), + [anon_sym_e_GT] = ACTIONS(971), + [anon_sym_o_GT] = ACTIONS(971), + [anon_sym_err_PLUSout_GT] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT] = ACTIONS(971), + [anon_sym_o_PLUSe_GT] = ACTIONS(971), + [anon_sym_e_PLUSo_GT] = ACTIONS(971), + [anon_sym_err_GT_GT] = ACTIONS(973), + [anon_sym_out_GT_GT] = ACTIONS(973), + [anon_sym_e_GT_GT] = ACTIONS(973), + [anon_sym_o_GT_GT] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), + [aux_sym_unquoted_token1] = ACTIONS(971), [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(973), }, - [1576] = { - [sym_comment] = STATE(1576), - [ts_builtin_sym_end] = ACTIONS(2139), - [sym__newline] = ACTIONS(2139), - [anon_sym_SEMI] = ACTIONS(2139), - [anon_sym_PIPE] = ACTIONS(2139), - [anon_sym_err_GT_PIPE] = ACTIONS(2139), - [anon_sym_out_GT_PIPE] = ACTIONS(2139), - [anon_sym_e_GT_PIPE] = ACTIONS(2139), - [anon_sym_o_GT_PIPE] = ACTIONS(2139), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2139), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2139), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2139), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_DOLLAR] = ACTIONS(2133), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [anon_sym_DASH2] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_DOT_DOT] = ACTIONS(2133), - [anon_sym_DOT_DOT2] = ACTIONS(4904), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2133), - [anon_sym_DOT_DOT_LT] = ACTIONS(2133), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4906), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4906), - [anon_sym_null] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2139), - [anon_sym_false] = ACTIONS(2139), - [aux_sym__val_number_decimal_token1] = ACTIONS(2133), - [aux_sym__val_number_decimal_token2] = ACTIONS(2139), - [aux_sym__val_number_decimal_token3] = ACTIONS(2139), - [aux_sym__val_number_decimal_token4] = ACTIONS(2139), - [aux_sym__val_number_token1] = ACTIONS(2139), - [aux_sym__val_number_token2] = ACTIONS(2139), - [aux_sym__val_number_token3] = ACTIONS(2139), - [aux_sym__val_number_token4] = ACTIONS(2139), - [aux_sym__val_number_token5] = ACTIONS(2139), - [aux_sym__val_number_token6] = ACTIONS(2139), - [anon_sym_0b] = ACTIONS(2133), - [anon_sym_0o] = ACTIONS(2133), - [anon_sym_0x] = ACTIONS(2133), - [sym_val_date] = ACTIONS(2139), - [anon_sym_DQUOTE] = ACTIONS(2139), - [sym__str_single_quotes] = ACTIONS(2139), - [sym__str_back_ticks] = ACTIONS(2139), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2139), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2139), - [anon_sym_err_GT] = ACTIONS(2133), - [anon_sym_out_GT] = ACTIONS(2133), - [anon_sym_e_GT] = ACTIONS(2133), - [anon_sym_o_GT] = ACTIONS(2133), - [anon_sym_err_PLUSout_GT] = ACTIONS(2133), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2133), - [anon_sym_o_PLUSe_GT] = ACTIONS(2133), - [anon_sym_e_PLUSo_GT] = ACTIONS(2133), - [anon_sym_err_GT_GT] = ACTIONS(2139), - [anon_sym_out_GT_GT] = ACTIONS(2139), - [anon_sym_e_GT_GT] = ACTIONS(2139), - [anon_sym_o_GT_GT] = ACTIONS(2139), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2139), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2139), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2139), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2139), - [aux_sym_unquoted_token1] = ACTIONS(2133), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2139), - }, - [1577] = { - [sym_comment] = STATE(1577), - [ts_builtin_sym_end] = ACTIONS(2131), - [sym__newline] = ACTIONS(2131), - [anon_sym_SEMI] = ACTIONS(2131), - [anon_sym_PIPE] = ACTIONS(2131), - [anon_sym_err_GT_PIPE] = ACTIONS(2131), - [anon_sym_out_GT_PIPE] = ACTIONS(2131), - [anon_sym_e_GT_PIPE] = ACTIONS(2131), - [anon_sym_o_GT_PIPE] = ACTIONS(2131), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2131), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2131), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2131), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2131), - [anon_sym_LBRACK] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_DOLLAR] = ACTIONS(2129), - [anon_sym_DASH_DASH] = ACTIONS(2131), - [anon_sym_DASH2] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2131), - [anon_sym_DOT_DOT] = ACTIONS(2129), - [anon_sym_DOT_DOT2] = ACTIONS(2129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2129), - [anon_sym_DOT_DOT_LT] = ACTIONS(2129), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2131), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2131), - [anon_sym_null] = ACTIONS(2131), - [anon_sym_true] = ACTIONS(2131), - [anon_sym_false] = ACTIONS(2131), - [aux_sym__val_number_decimal_token1] = ACTIONS(2129), - [aux_sym__val_number_decimal_token2] = ACTIONS(2131), - [aux_sym__val_number_decimal_token3] = ACTIONS(2131), - [aux_sym__val_number_decimal_token4] = ACTIONS(2131), - [aux_sym__val_number_token1] = ACTIONS(2131), - [aux_sym__val_number_token2] = ACTIONS(2131), - [aux_sym__val_number_token3] = ACTIONS(2131), - [aux_sym__val_number_token4] = ACTIONS(2131), - [aux_sym__val_number_token5] = ACTIONS(2131), - [aux_sym__val_number_token6] = ACTIONS(2131), - [anon_sym_0b] = ACTIONS(2129), - [anon_sym_0o] = ACTIONS(2129), - [anon_sym_0x] = ACTIONS(2129), - [sym_val_date] = ACTIONS(2131), - [anon_sym_DQUOTE] = ACTIONS(2131), - [sym__str_single_quotes] = ACTIONS(2131), - [sym__str_back_ticks] = ACTIONS(2131), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2131), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2131), - [anon_sym_err_GT] = ACTIONS(2129), - [anon_sym_out_GT] = ACTIONS(2129), - [anon_sym_e_GT] = ACTIONS(2129), - [anon_sym_o_GT] = ACTIONS(2129), - [anon_sym_err_PLUSout_GT] = ACTIONS(2129), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2129), - [anon_sym_o_PLUSe_GT] = ACTIONS(2129), - [anon_sym_e_PLUSo_GT] = ACTIONS(2129), - [anon_sym_err_GT_GT] = ACTIONS(2131), - [anon_sym_out_GT_GT] = ACTIONS(2131), - [anon_sym_e_GT_GT] = ACTIONS(2131), - [anon_sym_o_GT_GT] = ACTIONS(2131), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2131), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2131), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2131), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2131), - [aux_sym_unquoted_token1] = ACTIONS(2129), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2131), - }, - [1578] = { - [sym_cell_path] = STATE(1992), - [sym_path] = STATE(1894), - [sym_comment] = STATE(1578), - [aux_sym_cell_path_repeat1] = STATE(1702), - [sym__newline] = ACTIONS(1954), - [anon_sym_SEMI] = ACTIONS(1954), - [anon_sym_PIPE] = ACTIONS(1954), - [anon_sym_err_GT_PIPE] = ACTIONS(1954), - [anon_sym_out_GT_PIPE] = ACTIONS(1954), - [anon_sym_e_GT_PIPE] = ACTIONS(1954), - [anon_sym_o_GT_PIPE] = ACTIONS(1954), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1954), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1954), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1954), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1954), - [anon_sym_RPAREN] = ACTIONS(1954), - [anon_sym_GT2] = ACTIONS(1952), - [anon_sym_DASH2] = ACTIONS(1954), - [anon_sym_in2] = ACTIONS(1954), - [anon_sym_if] = ACTIONS(1954), - [anon_sym_LBRACE] = ACTIONS(1954), - [anon_sym_RBRACE] = ACTIONS(1954), - [anon_sym_EQ_GT] = ACTIONS(1954), - [anon_sym_STAR2] = ACTIONS(1952), - [anon_sym_and2] = ACTIONS(1954), - [anon_sym_xor2] = ACTIONS(1954), - [anon_sym_or2] = ACTIONS(1954), - [anon_sym_not_DASHin2] = ACTIONS(1954), - [anon_sym_starts_DASHwith2] = ACTIONS(1954), - [anon_sym_ends_DASHwith2] = ACTIONS(1954), - [anon_sym_EQ_EQ2] = ACTIONS(1954), - [anon_sym_BANG_EQ2] = ACTIONS(1954), - [anon_sym_LT2] = ACTIONS(1952), - [anon_sym_LT_EQ2] = ACTIONS(1954), - [anon_sym_GT_EQ2] = ACTIONS(1954), - [anon_sym_EQ_TILDE2] = ACTIONS(1954), - [anon_sym_BANG_TILDE2] = ACTIONS(1954), - [anon_sym_STAR_STAR2] = ACTIONS(1954), - [anon_sym_PLUS_PLUS2] = ACTIONS(1954), - [anon_sym_SLASH2] = ACTIONS(1952), - [anon_sym_mod2] = ACTIONS(1954), - [anon_sym_SLASH_SLASH2] = ACTIONS(1954), - [anon_sym_PLUS2] = ACTIONS(1952), - [anon_sym_bit_DASHshl2] = ACTIONS(1954), - [anon_sym_bit_DASHshr2] = ACTIONS(1954), - [anon_sym_bit_DASHand2] = ACTIONS(1954), - [anon_sym_bit_DASHxor2] = ACTIONS(1954), - [anon_sym_bit_DASHor2] = ACTIONS(1954), - [anon_sym_DOT] = ACTIONS(4902), - [anon_sym_err_GT] = ACTIONS(1952), - [anon_sym_out_GT] = ACTIONS(1952), - [anon_sym_e_GT] = ACTIONS(1952), - [anon_sym_o_GT] = ACTIONS(1952), - [anon_sym_err_PLUSout_GT] = ACTIONS(1952), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1952), - [anon_sym_o_PLUSe_GT] = ACTIONS(1952), - [anon_sym_e_PLUSo_GT] = ACTIONS(1952), - [anon_sym_err_GT_GT] = ACTIONS(1954), - [anon_sym_out_GT_GT] = ACTIONS(1954), - [anon_sym_e_GT_GT] = ACTIONS(1954), - [anon_sym_o_GT_GT] = ACTIONS(1954), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1954), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1954), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1954), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1954), - [anon_sym_POUND] = ACTIONS(247), + [1594] = { + [sym_comment] = STATE(1594), + [sym__newline] = ACTIONS(2262), + [anon_sym_SEMI] = ACTIONS(2262), + [anon_sym_PIPE] = ACTIONS(2262), + [anon_sym_err_GT_PIPE] = ACTIONS(2262), + [anon_sym_out_GT_PIPE] = ACTIONS(2262), + [anon_sym_e_GT_PIPE] = ACTIONS(2262), + [anon_sym_o_GT_PIPE] = ACTIONS(2262), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2262), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2262), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2262), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2262), + [anon_sym_LBRACK] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2258), + [anon_sym_RPAREN] = ACTIONS(2262), + [anon_sym_DOLLAR] = ACTIONS(2258), + [anon_sym_DASH_DASH] = ACTIONS(2262), + [anon_sym_DASH2] = ACTIONS(2258), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_RBRACE] = ACTIONS(2262), + [anon_sym_DOT_DOT] = ACTIONS(2258), + [anon_sym_LPAREN2] = ACTIONS(2260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2262), + [anon_sym_DOT_DOT_LT] = ACTIONS(2262), + [anon_sym_null] = ACTIONS(2262), + [anon_sym_true] = ACTIONS(2262), + [anon_sym_false] = ACTIONS(2262), + [aux_sym__val_number_decimal_token1] = ACTIONS(2258), + [aux_sym__val_number_decimal_token2] = ACTIONS(2262), + [aux_sym__val_number_decimal_token3] = ACTIONS(2262), + [aux_sym__val_number_decimal_token4] = ACTIONS(2262), + [aux_sym__val_number_token1] = ACTIONS(2262), + [aux_sym__val_number_token2] = ACTIONS(2262), + [aux_sym__val_number_token3] = ACTIONS(2262), + [aux_sym__val_number_token4] = ACTIONS(2262), + [aux_sym__val_number_token5] = ACTIONS(2262), + [aux_sym__val_number_token6] = ACTIONS(2262), + [anon_sym_0b] = ACTIONS(2258), + [anon_sym_0o] = ACTIONS(2258), + [anon_sym_0x] = ACTIONS(2258), + [sym_val_date] = ACTIONS(2262), + [anon_sym_DQUOTE] = ACTIONS(2262), + [sym__str_single_quotes] = ACTIONS(2262), + [sym__str_back_ticks] = ACTIONS(2262), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2262), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2262), + [anon_sym_err_GT] = ACTIONS(2258), + [anon_sym_out_GT] = ACTIONS(2258), + [anon_sym_e_GT] = ACTIONS(2258), + [anon_sym_o_GT] = ACTIONS(2258), + [anon_sym_err_PLUSout_GT] = ACTIONS(2258), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2258), + [anon_sym_o_PLUSe_GT] = ACTIONS(2258), + [anon_sym_e_PLUSo_GT] = ACTIONS(2258), + [anon_sym_err_GT_GT] = ACTIONS(2262), + [anon_sym_out_GT_GT] = ACTIONS(2262), + [anon_sym_e_GT_GT] = ACTIONS(2262), + [anon_sym_o_GT_GT] = ACTIONS(2262), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2262), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2262), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2262), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2262), + [aux_sym_unquoted_token1] = ACTIONS(2258), + [aux_sym_unquoted_token2] = ACTIONS(1661), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2262), }, - [1579] = { - [sym_comment] = STATE(1579), - [ts_builtin_sym_end] = ACTIONS(1892), - [sym__newline] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_err_GT_PIPE] = ACTIONS(1892), - [anon_sym_out_GT_PIPE] = ACTIONS(1892), - [anon_sym_e_GT_PIPE] = ACTIONS(1892), - [anon_sym_o_GT_PIPE] = ACTIONS(1892), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1892), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1892), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1892), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1892), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_LPAREN] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1890), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_DASH2] = ACTIONS(1890), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_DOT_DOT] = ACTIONS(1890), - [anon_sym_DOT_DOT2] = ACTIONS(1890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1890), - [anon_sym_DOT_DOT_LT] = ACTIONS(1890), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1892), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1892), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [aux_sym__val_number_decimal_token1] = ACTIONS(1890), - [aux_sym__val_number_decimal_token2] = ACTIONS(1892), - [aux_sym__val_number_decimal_token3] = ACTIONS(1892), - [aux_sym__val_number_decimal_token4] = ACTIONS(1892), - [aux_sym__val_number_token1] = ACTIONS(1892), - [aux_sym__val_number_token2] = ACTIONS(1892), - [aux_sym__val_number_token3] = ACTIONS(1892), - [aux_sym__val_number_token4] = ACTIONS(1892), - [aux_sym__val_number_token5] = ACTIONS(1892), - [aux_sym__val_number_token6] = ACTIONS(1892), - [anon_sym_0b] = ACTIONS(1890), - [anon_sym_0o] = ACTIONS(1890), - [anon_sym_0x] = ACTIONS(1890), - [sym_val_date] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [sym__str_single_quotes] = ACTIONS(1892), - [sym__str_back_ticks] = ACTIONS(1892), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1892), - [anon_sym_err_GT] = ACTIONS(1890), - [anon_sym_out_GT] = ACTIONS(1890), - [anon_sym_e_GT] = ACTIONS(1890), - [anon_sym_o_GT] = ACTIONS(1890), - [anon_sym_err_PLUSout_GT] = ACTIONS(1890), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1890), - [anon_sym_o_PLUSe_GT] = ACTIONS(1890), - [anon_sym_e_PLUSo_GT] = ACTIONS(1890), - [anon_sym_err_GT_GT] = ACTIONS(1892), - [anon_sym_out_GT_GT] = ACTIONS(1892), - [anon_sym_e_GT_GT] = ACTIONS(1892), - [anon_sym_o_GT_GT] = ACTIONS(1892), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1892), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1892), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1892), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1892), - [aux_sym_unquoted_token1] = ACTIONS(1890), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1892), + [1595] = { + [sym_comment] = STATE(1595), + [sym__newline] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_err_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_GT_PIPE] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1767), + [anon_sym_RPAREN] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_DOT_DOT] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(4916), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), + [anon_sym_DOT_DOT_LT] = ACTIONS(1767), + [aux_sym__immediate_decimal_token2] = ACTIONS(4918), + [anon_sym_null] = ACTIONS(1767), + [anon_sym_true] = ACTIONS(1767), + [anon_sym_false] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1767), + [aux_sym__val_number_token5] = ACTIONS(1767), + [aux_sym__val_number_token6] = ACTIONS(1767), + [anon_sym_0b] = ACTIONS(1765), + [anon_sym_0o] = ACTIONS(1765), + [anon_sym_0x] = ACTIONS(1765), + [sym_val_date] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), + [anon_sym_err_GT] = ACTIONS(1765), + [anon_sym_out_GT] = ACTIONS(1765), + [anon_sym_e_GT] = ACTIONS(1765), + [anon_sym_o_GT] = ACTIONS(1765), + [anon_sym_err_PLUSout_GT] = ACTIONS(1765), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), + [anon_sym_o_PLUSe_GT] = ACTIONS(1765), + [anon_sym_e_PLUSo_GT] = ACTIONS(1765), + [anon_sym_err_GT_GT] = ACTIONS(1767), + [anon_sym_out_GT_GT] = ACTIONS(1767), + [anon_sym_e_GT_GT] = ACTIONS(1767), + [anon_sym_o_GT_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), + [aux_sym_unquoted_token1] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1767), }, - [1580] = { - [sym_comment] = STATE(1580), - [sym__newline] = ACTIONS(2767), - [anon_sym_SEMI] = ACTIONS(2767), - [anon_sym_PIPE] = ACTIONS(2767), - [anon_sym_err_GT_PIPE] = ACTIONS(2767), - [anon_sym_out_GT_PIPE] = ACTIONS(2767), - [anon_sym_e_GT_PIPE] = ACTIONS(2767), - [anon_sym_o_GT_PIPE] = ACTIONS(2767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2767), - [anon_sym_LBRACK] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2767), - [anon_sym_RPAREN] = ACTIONS(2767), - [anon_sym_DOLLAR] = ACTIONS(4908), - [anon_sym_DASH_DASH] = ACTIONS(2767), - [anon_sym_DASH2] = ACTIONS(4908), - [anon_sym_LBRACE] = ACTIONS(2767), - [anon_sym_DOT_DOT] = ACTIONS(4908), - [anon_sym_DOT_DOT2] = ACTIONS(4830), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4908), - [anon_sym_DOT_DOT_LT] = ACTIONS(4908), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4832), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4832), - [anon_sym_null] = ACTIONS(2767), - [anon_sym_true] = ACTIONS(2767), - [anon_sym_false] = ACTIONS(2767), - [aux_sym__val_number_decimal_token1] = ACTIONS(4908), - [aux_sym__val_number_decimal_token2] = ACTIONS(2767), - [aux_sym__val_number_decimal_token3] = ACTIONS(2767), - [aux_sym__val_number_decimal_token4] = ACTIONS(2767), - [aux_sym__val_number_token1] = ACTIONS(2767), - [aux_sym__val_number_token2] = ACTIONS(2767), - [aux_sym__val_number_token3] = ACTIONS(2767), - [aux_sym__val_number_token4] = ACTIONS(2767), - [aux_sym__val_number_token5] = ACTIONS(2767), - [aux_sym__val_number_token6] = ACTIONS(2767), - [anon_sym_0b] = ACTIONS(4908), - [anon_sym_0o] = ACTIONS(4908), - [anon_sym_0x] = ACTIONS(4908), - [sym_val_date] = ACTIONS(2767), - [anon_sym_DQUOTE] = ACTIONS(2767), - [sym__str_single_quotes] = ACTIONS(2767), - [sym__str_back_ticks] = ACTIONS(2767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2767), - [anon_sym_err_GT] = ACTIONS(4908), - [anon_sym_out_GT] = ACTIONS(4908), - [anon_sym_e_GT] = ACTIONS(4908), - [anon_sym_o_GT] = ACTIONS(4908), - [anon_sym_err_PLUSout_GT] = ACTIONS(4908), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4908), - [anon_sym_o_PLUSe_GT] = ACTIONS(4908), - [anon_sym_e_PLUSo_GT] = ACTIONS(4908), - [anon_sym_err_GT_GT] = ACTIONS(2767), - [anon_sym_out_GT_GT] = ACTIONS(2767), - [anon_sym_e_GT_GT] = ACTIONS(2767), - [anon_sym_o_GT_GT] = ACTIONS(2767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2767), - [aux_sym_unquoted_token1] = ACTIONS(4908), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2767), + [1596] = { + [sym_comment] = STATE(1596), + [sym__newline] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_err_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_GT_PIPE] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_RPAREN] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_DOT_DOT] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1767), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), + [anon_sym_DOT_DOT_LT] = ACTIONS(1767), + [anon_sym_null] = ACTIONS(1767), + [anon_sym_true] = ACTIONS(1767), + [anon_sym_false] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1767), + [aux_sym__val_number_token5] = ACTIONS(1767), + [aux_sym__val_number_token6] = ACTIONS(1767), + [anon_sym_0b] = ACTIONS(1765), + [anon_sym_0o] = ACTIONS(1765), + [anon_sym_0x] = ACTIONS(1765), + [sym_val_date] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), + [anon_sym_err_GT] = ACTIONS(1765), + [anon_sym_out_GT] = ACTIONS(1765), + [anon_sym_e_GT] = ACTIONS(1765), + [anon_sym_o_GT] = ACTIONS(1765), + [anon_sym_err_PLUSout_GT] = ACTIONS(1765), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), + [anon_sym_o_PLUSe_GT] = ACTIONS(1765), + [anon_sym_e_PLUSo_GT] = ACTIONS(1765), + [anon_sym_err_GT_GT] = ACTIONS(1767), + [anon_sym_out_GT_GT] = ACTIONS(1767), + [anon_sym_e_GT_GT] = ACTIONS(1767), + [anon_sym_o_GT_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), + [aux_sym_unquoted_token1] = ACTIONS(1765), + [aux_sym_unquoted_token2] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1767), }, - [1581] = { - [sym_cell_path] = STATE(2000), - [sym_path] = STATE(1894), - [sym_comment] = STATE(1581), - [aux_sym_cell_path_repeat1] = STATE(1702), - [sym__newline] = ACTIONS(1994), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_PIPE] = ACTIONS(1994), - [anon_sym_err_GT_PIPE] = ACTIONS(1994), - [anon_sym_out_GT_PIPE] = ACTIONS(1994), - [anon_sym_e_GT_PIPE] = ACTIONS(1994), - [anon_sym_o_GT_PIPE] = ACTIONS(1994), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1994), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1994), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1994), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1994), - [anon_sym_RPAREN] = ACTIONS(1994), - [anon_sym_GT2] = ACTIONS(1992), - [anon_sym_DASH2] = ACTIONS(1994), - [anon_sym_in2] = ACTIONS(1994), - [anon_sym_if] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1994), - [anon_sym_RBRACE] = ACTIONS(1994), - [anon_sym_EQ_GT] = ACTIONS(1994), - [anon_sym_STAR2] = ACTIONS(1992), - [anon_sym_and2] = ACTIONS(1994), - [anon_sym_xor2] = ACTIONS(1994), - [anon_sym_or2] = ACTIONS(1994), - [anon_sym_not_DASHin2] = ACTIONS(1994), - [anon_sym_starts_DASHwith2] = ACTIONS(1994), - [anon_sym_ends_DASHwith2] = ACTIONS(1994), - [anon_sym_EQ_EQ2] = ACTIONS(1994), - [anon_sym_BANG_EQ2] = ACTIONS(1994), - [anon_sym_LT2] = ACTIONS(1992), - [anon_sym_LT_EQ2] = ACTIONS(1994), - [anon_sym_GT_EQ2] = ACTIONS(1994), - [anon_sym_EQ_TILDE2] = ACTIONS(1994), - [anon_sym_BANG_TILDE2] = ACTIONS(1994), - [anon_sym_STAR_STAR2] = ACTIONS(1994), - [anon_sym_PLUS_PLUS2] = ACTIONS(1994), - [anon_sym_SLASH2] = ACTIONS(1992), - [anon_sym_mod2] = ACTIONS(1994), - [anon_sym_SLASH_SLASH2] = ACTIONS(1994), - [anon_sym_PLUS2] = ACTIONS(1992), - [anon_sym_bit_DASHshl2] = ACTIONS(1994), - [anon_sym_bit_DASHshr2] = ACTIONS(1994), - [anon_sym_bit_DASHand2] = ACTIONS(1994), - [anon_sym_bit_DASHxor2] = ACTIONS(1994), - [anon_sym_bit_DASHor2] = ACTIONS(1994), - [anon_sym_DOT] = ACTIONS(4902), - [anon_sym_err_GT] = ACTIONS(1992), - [anon_sym_out_GT] = ACTIONS(1992), - [anon_sym_e_GT] = ACTIONS(1992), - [anon_sym_o_GT] = ACTIONS(1992), - [anon_sym_err_PLUSout_GT] = ACTIONS(1992), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1992), - [anon_sym_o_PLUSe_GT] = ACTIONS(1992), - [anon_sym_e_PLUSo_GT] = ACTIONS(1992), - [anon_sym_err_GT_GT] = ACTIONS(1994), - [anon_sym_out_GT_GT] = ACTIONS(1994), - [anon_sym_e_GT_GT] = ACTIONS(1994), - [anon_sym_o_GT_GT] = ACTIONS(1994), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1994), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1994), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1994), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1994), - [anon_sym_POUND] = ACTIONS(247), + [1597] = { + [sym__expr_parenthesized_immediate] = STATE(8105), + [sym_comment] = STATE(1597), + [sym__newline] = ACTIONS(4920), + [anon_sym_SEMI] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4920), + [anon_sym_err_GT_PIPE] = ACTIONS(4920), + [anon_sym_out_GT_PIPE] = ACTIONS(4920), + [anon_sym_e_GT_PIPE] = ACTIONS(4920), + [anon_sym_o_GT_PIPE] = ACTIONS(4920), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4920), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4920), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4920), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4920), + [anon_sym_LPAREN] = ACTIONS(4922), + [anon_sym_RPAREN] = ACTIONS(4920), + [anon_sym_DOLLAR] = ACTIONS(4922), + [anon_sym_DASH_DASH] = ACTIONS(4920), + [anon_sym_DASH2] = ACTIONS(4922), + [anon_sym_LBRACE] = ACTIONS(4920), + [anon_sym_RBRACE] = ACTIONS(4920), + [anon_sym_DOT_DOT] = ACTIONS(4922), + [anon_sym_LPAREN2] = ACTIONS(4543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4920), + [anon_sym_DOT_DOT_LT] = ACTIONS(4920), + [anon_sym_null] = ACTIONS(4920), + [anon_sym_true] = ACTIONS(4920), + [anon_sym_false] = ACTIONS(4920), + [aux_sym__val_number_decimal_token1] = ACTIONS(4922), + [aux_sym__val_number_decimal_token2] = ACTIONS(4920), + [aux_sym__val_number_decimal_token3] = ACTIONS(4920), + [aux_sym__val_number_decimal_token4] = ACTIONS(4920), + [aux_sym__val_number_token1] = ACTIONS(4920), + [aux_sym__val_number_token2] = ACTIONS(4920), + [aux_sym__val_number_token3] = ACTIONS(4920), + [aux_sym__val_number_token4] = ACTIONS(4920), + [aux_sym__val_number_token5] = ACTIONS(4920), + [aux_sym__val_number_token6] = ACTIONS(4920), + [anon_sym_0b] = ACTIONS(4922), + [anon_sym_0o] = ACTIONS(4922), + [anon_sym_0x] = ACTIONS(4922), + [sym_val_date] = ACTIONS(4920), + [anon_sym_DQUOTE] = ACTIONS(4920), + [sym__str_single_quotes] = ACTIONS(4920), + [sym__str_back_ticks] = ACTIONS(4920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4920), + [anon_sym_err_GT] = ACTIONS(4922), + [anon_sym_out_GT] = ACTIONS(4922), + [anon_sym_e_GT] = ACTIONS(4922), + [anon_sym_o_GT] = ACTIONS(4922), + [anon_sym_err_PLUSout_GT] = ACTIONS(4922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4922), + [anon_sym_o_PLUSe_GT] = ACTIONS(4922), + [anon_sym_e_PLUSo_GT] = ACTIONS(4922), + [anon_sym_err_GT_GT] = ACTIONS(4920), + [anon_sym_out_GT_GT] = ACTIONS(4920), + [anon_sym_e_GT_GT] = ACTIONS(4920), + [anon_sym_o_GT_GT] = ACTIONS(4920), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4920), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4920), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4920), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4920), + [aux_sym_unquoted_token1] = ACTIONS(4922), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4920), }, - [1582] = { - [sym_cell_path] = STATE(1988), - [sym_path] = STATE(1894), - [sym_comment] = STATE(1582), - [aux_sym_cell_path_repeat1] = STATE(1702), - [sym__newline] = ACTIONS(1935), - [anon_sym_SEMI] = ACTIONS(1935), - [anon_sym_PIPE] = ACTIONS(1935), - [anon_sym_err_GT_PIPE] = ACTIONS(1935), - [anon_sym_out_GT_PIPE] = ACTIONS(1935), - [anon_sym_e_GT_PIPE] = ACTIONS(1935), - [anon_sym_o_GT_PIPE] = ACTIONS(1935), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1935), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1935), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1935), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1935), - [anon_sym_RPAREN] = ACTIONS(1935), - [anon_sym_GT2] = ACTIONS(1933), - [anon_sym_DASH2] = ACTIONS(1935), - [anon_sym_in2] = ACTIONS(1935), - [anon_sym_if] = ACTIONS(1935), - [anon_sym_LBRACE] = ACTIONS(1935), - [anon_sym_RBRACE] = ACTIONS(1935), - [anon_sym_EQ_GT] = ACTIONS(1935), - [anon_sym_STAR2] = ACTIONS(1933), - [anon_sym_and2] = ACTIONS(1935), - [anon_sym_xor2] = ACTIONS(1935), - [anon_sym_or2] = ACTIONS(1935), - [anon_sym_not_DASHin2] = ACTIONS(1935), - [anon_sym_starts_DASHwith2] = ACTIONS(1935), - [anon_sym_ends_DASHwith2] = ACTIONS(1935), - [anon_sym_EQ_EQ2] = ACTIONS(1935), - [anon_sym_BANG_EQ2] = ACTIONS(1935), - [anon_sym_LT2] = ACTIONS(1933), - [anon_sym_LT_EQ2] = ACTIONS(1935), - [anon_sym_GT_EQ2] = ACTIONS(1935), - [anon_sym_EQ_TILDE2] = ACTIONS(1935), - [anon_sym_BANG_TILDE2] = ACTIONS(1935), - [anon_sym_STAR_STAR2] = ACTIONS(1935), - [anon_sym_PLUS_PLUS2] = ACTIONS(1935), - [anon_sym_SLASH2] = ACTIONS(1933), - [anon_sym_mod2] = ACTIONS(1935), - [anon_sym_SLASH_SLASH2] = ACTIONS(1935), - [anon_sym_PLUS2] = ACTIONS(1933), - [anon_sym_bit_DASHshl2] = ACTIONS(1935), - [anon_sym_bit_DASHshr2] = ACTIONS(1935), - [anon_sym_bit_DASHand2] = ACTIONS(1935), - [anon_sym_bit_DASHxor2] = ACTIONS(1935), - [anon_sym_bit_DASHor2] = ACTIONS(1935), - [anon_sym_DOT] = ACTIONS(4902), - [anon_sym_err_GT] = ACTIONS(1933), - [anon_sym_out_GT] = ACTIONS(1933), - [anon_sym_e_GT] = ACTIONS(1933), - [anon_sym_o_GT] = ACTIONS(1933), - [anon_sym_err_PLUSout_GT] = ACTIONS(1933), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1933), - [anon_sym_o_PLUSe_GT] = ACTIONS(1933), - [anon_sym_e_PLUSo_GT] = ACTIONS(1933), - [anon_sym_err_GT_GT] = ACTIONS(1935), - [anon_sym_out_GT_GT] = ACTIONS(1935), - [anon_sym_e_GT_GT] = ACTIONS(1935), - [anon_sym_o_GT_GT] = ACTIONS(1935), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1935), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1935), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1935), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1935), + [1598] = { + [sym_comment] = STATE(1598), + [ts_builtin_sym_end] = ACTIONS(1683), + [sym__newline] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_err_GT_PIPE] = ACTIONS(1683), + [anon_sym_out_GT_PIPE] = ACTIONS(1683), + [anon_sym_e_GT_PIPE] = ACTIONS(1683), + [anon_sym_o_GT_PIPE] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1683), + [anon_sym_GT2] = ACTIONS(1681), + [anon_sym_DASH2] = ACTIONS(1683), + [anon_sym_in2] = ACTIONS(1683), + [anon_sym_STAR2] = ACTIONS(1681), + [anon_sym_and2] = ACTIONS(1683), + [anon_sym_xor2] = ACTIONS(1683), + [anon_sym_or2] = ACTIONS(1683), + [anon_sym_not_DASHin2] = ACTIONS(1683), + [anon_sym_starts_DASHwith2] = ACTIONS(1683), + [anon_sym_ends_DASHwith2] = ACTIONS(1683), + [anon_sym_EQ_EQ2] = ACTIONS(1683), + [anon_sym_BANG_EQ2] = ACTIONS(1683), + [anon_sym_LT2] = ACTIONS(1681), + [anon_sym_LT_EQ2] = ACTIONS(1683), + [anon_sym_GT_EQ2] = ACTIONS(1683), + [anon_sym_EQ_TILDE2] = ACTIONS(1683), + [anon_sym_BANG_TILDE2] = ACTIONS(1683), + [anon_sym_LPAREN2] = ACTIONS(1683), + [anon_sym_STAR_STAR2] = ACTIONS(1683), + [anon_sym_PLUS_PLUS2] = ACTIONS(1683), + [anon_sym_SLASH2] = ACTIONS(1681), + [anon_sym_mod2] = ACTIONS(1683), + [anon_sym_SLASH_SLASH2] = ACTIONS(1683), + [anon_sym_PLUS2] = ACTIONS(1681), + [anon_sym_bit_DASHshl2] = ACTIONS(1683), + [anon_sym_bit_DASHshr2] = ACTIONS(1683), + [anon_sym_bit_DASHand2] = ACTIONS(1683), + [anon_sym_bit_DASHxor2] = ACTIONS(1683), + [anon_sym_bit_DASHor2] = ACTIONS(1683), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [aux_sym__immediate_decimal_token2] = ACTIONS(4924), + [sym_filesize_unit] = ACTIONS(1681), + [sym_duration_unit] = ACTIONS(1683), + [anon_sym_err_GT] = ACTIONS(1681), + [anon_sym_out_GT] = ACTIONS(1681), + [anon_sym_e_GT] = ACTIONS(1681), + [anon_sym_o_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT] = ACTIONS(1681), + [anon_sym_err_GT_GT] = ACTIONS(1683), + [anon_sym_out_GT_GT] = ACTIONS(1683), + [anon_sym_e_GT_GT] = ACTIONS(1683), + [anon_sym_o_GT_GT] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1683), + [aux_sym_unquoted_token2] = ACTIONS(1681), [anon_sym_POUND] = ACTIONS(247), }, - [1583] = { - [sym_comment] = STATE(1583), - [ts_builtin_sym_end] = ACTIONS(1032), - [sym__newline] = ACTIONS(1032), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_err_GT_PIPE] = ACTIONS(1032), - [anon_sym_out_GT_PIPE] = ACTIONS(1032), - [anon_sym_e_GT_PIPE] = ACTIONS(1032), - [anon_sym_o_GT_PIPE] = ACTIONS(1032), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1032), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1032), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1032), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1032), - [anon_sym_LBRACK] = ACTIONS(1032), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH_DASH] = ACTIONS(1032), - [anon_sym_DASH2] = ACTIONS(1030), - [anon_sym_LBRACE] = ACTIONS(1032), - [anon_sym_DOT_DOT] = ACTIONS(1030), - [anon_sym_DOT_DOT2] = ACTIONS(4910), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1030), - [anon_sym_DOT_DOT_LT] = ACTIONS(1030), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4912), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4912), - [anon_sym_null] = ACTIONS(1032), - [anon_sym_true] = ACTIONS(1032), - [anon_sym_false] = ACTIONS(1032), - [aux_sym__val_number_decimal_token1] = ACTIONS(1030), - [aux_sym__val_number_decimal_token2] = ACTIONS(1032), - [aux_sym__val_number_decimal_token3] = ACTIONS(1032), - [aux_sym__val_number_decimal_token4] = ACTIONS(1032), - [aux_sym__val_number_token1] = ACTIONS(1032), - [aux_sym__val_number_token2] = ACTIONS(1032), - [aux_sym__val_number_token3] = ACTIONS(1032), - [aux_sym__val_number_token4] = ACTIONS(1032), - [aux_sym__val_number_token5] = ACTIONS(1032), - [aux_sym__val_number_token6] = ACTIONS(1032), - [anon_sym_0b] = ACTIONS(1030), - [anon_sym_0o] = ACTIONS(1030), - [anon_sym_0x] = ACTIONS(1030), - [sym_val_date] = ACTIONS(1032), - [anon_sym_DQUOTE] = ACTIONS(1032), - [sym__str_single_quotes] = ACTIONS(1032), - [sym__str_back_ticks] = ACTIONS(1032), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1032), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1032), - [anon_sym_err_GT] = ACTIONS(1030), - [anon_sym_out_GT] = ACTIONS(1030), - [anon_sym_e_GT] = ACTIONS(1030), - [anon_sym_o_GT] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT] = ACTIONS(1030), - [anon_sym_err_GT_GT] = ACTIONS(1032), - [anon_sym_out_GT_GT] = ACTIONS(1032), - [anon_sym_e_GT_GT] = ACTIONS(1032), - [anon_sym_o_GT_GT] = ACTIONS(1032), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1032), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1032), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1032), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1032), - [aux_sym_unquoted_token1] = ACTIONS(1030), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1032), - }, - [1584] = { - [sym_comment] = STATE(1584), - [sym__newline] = ACTIONS(2210), - [anon_sym_SEMI] = ACTIONS(2210), - [anon_sym_PIPE] = ACTIONS(2210), - [anon_sym_err_GT_PIPE] = ACTIONS(2210), - [anon_sym_out_GT_PIPE] = ACTIONS(2210), - [anon_sym_e_GT_PIPE] = ACTIONS(2210), - [anon_sym_o_GT_PIPE] = ACTIONS(2210), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2210), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2210), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2210), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2210), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_LPAREN] = ACTIONS(2206), - [anon_sym_RPAREN] = ACTIONS(2210), - [anon_sym_DOLLAR] = ACTIONS(2206), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_DASH2] = ACTIONS(2206), - [anon_sym_LBRACE] = ACTIONS(2210), - [anon_sym_RBRACE] = ACTIONS(2210), - [anon_sym_DOT_DOT] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(2208), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2206), - [anon_sym_DOT_DOT_LT] = ACTIONS(2206), - [anon_sym_null] = ACTIONS(2206), - [anon_sym_true] = ACTIONS(2206), - [anon_sym_false] = ACTIONS(2206), - [aux_sym__val_number_decimal_token1] = ACTIONS(2206), - [aux_sym__val_number_decimal_token2] = ACTIONS(2206), - [aux_sym__val_number_decimal_token3] = ACTIONS(2206), - [aux_sym__val_number_decimal_token4] = ACTIONS(2206), - [aux_sym__val_number_token1] = ACTIONS(2206), - [aux_sym__val_number_token2] = ACTIONS(2206), - [aux_sym__val_number_token3] = ACTIONS(2206), - [aux_sym__val_number_token4] = ACTIONS(2206), - [aux_sym__val_number_token5] = ACTIONS(2206), - [aux_sym__val_number_token6] = ACTIONS(2206), - [anon_sym_0b] = ACTIONS(2206), - [anon_sym_0o] = ACTIONS(2206), - [anon_sym_0x] = ACTIONS(2206), - [sym_val_date] = ACTIONS(2206), - [anon_sym_DQUOTE] = ACTIONS(2210), - [sym__str_single_quotes] = ACTIONS(2210), - [sym__str_back_ticks] = ACTIONS(2210), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2210), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2210), - [anon_sym_err_GT] = ACTIONS(2206), - [anon_sym_out_GT] = ACTIONS(2206), - [anon_sym_e_GT] = ACTIONS(2206), - [anon_sym_o_GT] = ACTIONS(2206), - [anon_sym_err_PLUSout_GT] = ACTIONS(2206), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2206), - [anon_sym_o_PLUSe_GT] = ACTIONS(2206), - [anon_sym_e_PLUSo_GT] = ACTIONS(2206), - [anon_sym_err_GT_GT] = ACTIONS(2206), - [anon_sym_out_GT_GT] = ACTIONS(2206), - [anon_sym_e_GT_GT] = ACTIONS(2206), - [anon_sym_o_GT_GT] = ACTIONS(2206), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2206), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2206), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2206), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2206), - [aux_sym_unquoted_token1] = ACTIONS(2206), - [aux_sym_unquoted_token4] = ACTIONS(2212), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2210), - }, - [1585] = { - [sym_cell_path] = STATE(2001), - [sym_path] = STATE(1894), - [sym_comment] = STATE(1585), - [aux_sym_cell_path_repeat1] = STATE(1702), - [sym__newline] = ACTIONS(1998), - [anon_sym_SEMI] = ACTIONS(1998), - [anon_sym_PIPE] = ACTIONS(1998), - [anon_sym_err_GT_PIPE] = ACTIONS(1998), - [anon_sym_out_GT_PIPE] = ACTIONS(1998), - [anon_sym_e_GT_PIPE] = ACTIONS(1998), - [anon_sym_o_GT_PIPE] = ACTIONS(1998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1998), - [anon_sym_RPAREN] = ACTIONS(1998), - [anon_sym_GT2] = ACTIONS(1996), - [anon_sym_DASH2] = ACTIONS(1998), - [anon_sym_in2] = ACTIONS(1998), - [anon_sym_if] = ACTIONS(1998), - [anon_sym_LBRACE] = ACTIONS(1998), - [anon_sym_RBRACE] = ACTIONS(1998), - [anon_sym_EQ_GT] = ACTIONS(1998), - [anon_sym_STAR2] = ACTIONS(1996), - [anon_sym_and2] = ACTIONS(1998), - [anon_sym_xor2] = ACTIONS(1998), - [anon_sym_or2] = ACTIONS(1998), - [anon_sym_not_DASHin2] = ACTIONS(1998), - [anon_sym_starts_DASHwith2] = ACTIONS(1998), - [anon_sym_ends_DASHwith2] = ACTIONS(1998), - [anon_sym_EQ_EQ2] = ACTIONS(1998), - [anon_sym_BANG_EQ2] = ACTIONS(1998), - [anon_sym_LT2] = ACTIONS(1996), - [anon_sym_LT_EQ2] = ACTIONS(1998), - [anon_sym_GT_EQ2] = ACTIONS(1998), - [anon_sym_EQ_TILDE2] = ACTIONS(1998), - [anon_sym_BANG_TILDE2] = ACTIONS(1998), - [anon_sym_STAR_STAR2] = ACTIONS(1998), - [anon_sym_PLUS_PLUS2] = ACTIONS(1998), - [anon_sym_SLASH2] = ACTIONS(1996), - [anon_sym_mod2] = ACTIONS(1998), - [anon_sym_SLASH_SLASH2] = ACTIONS(1998), - [anon_sym_PLUS2] = ACTIONS(1996), - [anon_sym_bit_DASHshl2] = ACTIONS(1998), - [anon_sym_bit_DASHshr2] = ACTIONS(1998), - [anon_sym_bit_DASHand2] = ACTIONS(1998), - [anon_sym_bit_DASHxor2] = ACTIONS(1998), - [anon_sym_bit_DASHor2] = ACTIONS(1998), - [anon_sym_DOT] = ACTIONS(4902), - [anon_sym_err_GT] = ACTIONS(1996), - [anon_sym_out_GT] = ACTIONS(1996), - [anon_sym_e_GT] = ACTIONS(1996), - [anon_sym_o_GT] = ACTIONS(1996), - [anon_sym_err_PLUSout_GT] = ACTIONS(1996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1996), - [anon_sym_o_PLUSe_GT] = ACTIONS(1996), - [anon_sym_e_PLUSo_GT] = ACTIONS(1996), - [anon_sym_err_GT_GT] = ACTIONS(1998), - [anon_sym_out_GT_GT] = ACTIONS(1998), - [anon_sym_e_GT_GT] = ACTIONS(1998), - [anon_sym_o_GT_GT] = ACTIONS(1998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1998), + [1599] = { + [sym__expr_parenthesized_immediate] = STATE(8105), + [sym_comment] = STATE(1599), + [sym__newline] = ACTIONS(4926), + [anon_sym_SEMI] = ACTIONS(4926), + [anon_sym_PIPE] = ACTIONS(4926), + [anon_sym_err_GT_PIPE] = ACTIONS(4926), + [anon_sym_out_GT_PIPE] = ACTIONS(4926), + [anon_sym_e_GT_PIPE] = ACTIONS(4926), + [anon_sym_o_GT_PIPE] = ACTIONS(4926), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4926), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4926), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4926), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4926), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_LPAREN] = ACTIONS(4928), + [anon_sym_RPAREN] = ACTIONS(4926), + [anon_sym_DOLLAR] = ACTIONS(4928), + [anon_sym_DASH_DASH] = ACTIONS(4926), + [anon_sym_DASH2] = ACTIONS(4928), + [anon_sym_LBRACE] = ACTIONS(4926), + [anon_sym_RBRACE] = ACTIONS(4926), + [anon_sym_DOT_DOT] = ACTIONS(4928), + [anon_sym_LPAREN2] = ACTIONS(4543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4926), + [anon_sym_DOT_DOT_LT] = ACTIONS(4926), + [anon_sym_null] = ACTIONS(4926), + [anon_sym_true] = ACTIONS(4926), + [anon_sym_false] = ACTIONS(4926), + [aux_sym__val_number_decimal_token1] = ACTIONS(4928), + [aux_sym__val_number_decimal_token2] = ACTIONS(4926), + [aux_sym__val_number_decimal_token3] = ACTIONS(4926), + [aux_sym__val_number_decimal_token4] = ACTIONS(4926), + [aux_sym__val_number_token1] = ACTIONS(4926), + [aux_sym__val_number_token2] = ACTIONS(4926), + [aux_sym__val_number_token3] = ACTIONS(4926), + [aux_sym__val_number_token4] = ACTIONS(4926), + [aux_sym__val_number_token5] = ACTIONS(4926), + [aux_sym__val_number_token6] = ACTIONS(4926), + [anon_sym_0b] = ACTIONS(4928), + [anon_sym_0o] = ACTIONS(4928), + [anon_sym_0x] = ACTIONS(4928), + [sym_val_date] = ACTIONS(4926), + [anon_sym_DQUOTE] = ACTIONS(4926), + [sym__str_single_quotes] = ACTIONS(4926), + [sym__str_back_ticks] = ACTIONS(4926), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4926), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4926), + [anon_sym_err_GT] = ACTIONS(4928), + [anon_sym_out_GT] = ACTIONS(4928), + [anon_sym_e_GT] = ACTIONS(4928), + [anon_sym_o_GT] = ACTIONS(4928), + [anon_sym_err_PLUSout_GT] = ACTIONS(4928), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4928), + [anon_sym_o_PLUSe_GT] = ACTIONS(4928), + [anon_sym_e_PLUSo_GT] = ACTIONS(4928), + [anon_sym_err_GT_GT] = ACTIONS(4926), + [anon_sym_out_GT_GT] = ACTIONS(4926), + [anon_sym_e_GT_GT] = ACTIONS(4926), + [anon_sym_o_GT_GT] = ACTIONS(4926), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4926), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4926), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4926), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4926), + [aux_sym_unquoted_token1] = ACTIONS(4928), [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4926), }, - [1586] = { - [sym_comment] = STATE(1586), - [ts_builtin_sym_end] = ACTIONS(1757), - [sym__newline] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_err_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_GT_PIPE] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(4848), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_0b] = ACTIONS(1755), - [anon_sym_0o] = ACTIONS(1755), - [anon_sym_0x] = ACTIONS(1755), - [sym_val_date] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), - [anon_sym_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [aux_sym_unquoted_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [1587] = { - [sym_comment] = STATE(1587), - [sym__newline] = ACTIONS(1032), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_err_GT_PIPE] = ACTIONS(1032), - [anon_sym_out_GT_PIPE] = ACTIONS(1032), - [anon_sym_e_GT_PIPE] = ACTIONS(1032), - [anon_sym_o_GT_PIPE] = ACTIONS(1032), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1032), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1032), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1032), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1032), - [anon_sym_LBRACK] = ACTIONS(1032), - [anon_sym_LPAREN] = ACTIONS(1030), - [anon_sym_RPAREN] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH_DASH] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(1030), - [anon_sym_LBRACE] = ACTIONS(1032), - [anon_sym_RBRACE] = ACTIONS(1032), - [anon_sym_DOT_DOT] = ACTIONS(1030), - [anon_sym_LPAREN2] = ACTIONS(2202), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1030), - [anon_sym_DOT_DOT_LT] = ACTIONS(1030), - [anon_sym_null] = ACTIONS(1030), - [anon_sym_true] = ACTIONS(1030), - [anon_sym_false] = ACTIONS(1030), - [aux_sym__val_number_decimal_token1] = ACTIONS(1030), - [aux_sym__val_number_decimal_token2] = ACTIONS(1030), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), - [aux_sym__val_number_token1] = ACTIONS(1030), - [aux_sym__val_number_token2] = ACTIONS(1030), - [aux_sym__val_number_token3] = ACTIONS(1030), - [aux_sym__val_number_token4] = ACTIONS(1030), - [aux_sym__val_number_token5] = ACTIONS(1030), - [aux_sym__val_number_token6] = ACTIONS(1030), - [anon_sym_0b] = ACTIONS(1030), - [anon_sym_0o] = ACTIONS(1030), - [anon_sym_0x] = ACTIONS(1030), - [sym_val_date] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1032), - [sym__str_single_quotes] = ACTIONS(1032), - [sym__str_back_ticks] = ACTIONS(1032), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1032), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1032), - [anon_sym_err_GT] = ACTIONS(1030), - [anon_sym_out_GT] = ACTIONS(1030), - [anon_sym_e_GT] = ACTIONS(1030), - [anon_sym_o_GT] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT] = ACTIONS(1030), - [anon_sym_err_GT_GT] = ACTIONS(1030), - [anon_sym_out_GT_GT] = ACTIONS(1030), - [anon_sym_e_GT_GT] = ACTIONS(1030), - [anon_sym_o_GT_GT] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), - [aux_sym_unquoted_token1] = ACTIONS(1030), - [aux_sym_unquoted_token4] = ACTIONS(2204), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1032), - }, - [1588] = { - [sym_comment] = STATE(1588), - [ts_builtin_sym_end] = ACTIONS(1757), - [sym__newline] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_err_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_GT_PIPE] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_DOT_DOT2] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1755), - [anon_sym_DOT_DOT_LT] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1757), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_0b] = ACTIONS(1755), - [anon_sym_0o] = ACTIONS(1755), - [anon_sym_0x] = ACTIONS(1755), - [sym_val_date] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), - [anon_sym_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [1589] = { - [sym__expr_parenthesized_immediate] = STATE(7505), - [sym_comment] = STATE(1589), - [sym__newline] = ACTIONS(4914), - [anon_sym_SEMI] = ACTIONS(4914), - [anon_sym_PIPE] = ACTIONS(4914), - [anon_sym_err_GT_PIPE] = ACTIONS(4914), - [anon_sym_out_GT_PIPE] = ACTIONS(4914), - [anon_sym_e_GT_PIPE] = ACTIONS(4914), - [anon_sym_o_GT_PIPE] = ACTIONS(4914), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4914), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4914), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4914), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4914), - [anon_sym_LBRACK] = ACTIONS(4914), - [anon_sym_LPAREN] = ACTIONS(4916), - [anon_sym_RPAREN] = ACTIONS(4914), - [anon_sym_DOLLAR] = ACTIONS(4916), - [anon_sym_DASH_DASH] = ACTIONS(4914), - [anon_sym_DASH2] = ACTIONS(4916), - [anon_sym_LBRACE] = ACTIONS(4914), - [anon_sym_RBRACE] = ACTIONS(4914), - [anon_sym_DOT_DOT] = ACTIONS(4916), - [anon_sym_LPAREN2] = ACTIONS(4249), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4914), - [anon_sym_DOT_DOT_LT] = ACTIONS(4914), - [anon_sym_null] = ACTIONS(4914), - [anon_sym_true] = ACTIONS(4914), - [anon_sym_false] = ACTIONS(4914), - [aux_sym__val_number_decimal_token1] = ACTIONS(4916), - [aux_sym__val_number_decimal_token2] = ACTIONS(4914), - [aux_sym__val_number_decimal_token3] = ACTIONS(4914), - [aux_sym__val_number_decimal_token4] = ACTIONS(4914), - [aux_sym__val_number_token1] = ACTIONS(4914), - [aux_sym__val_number_token2] = ACTIONS(4914), - [aux_sym__val_number_token3] = ACTIONS(4914), - [aux_sym__val_number_token4] = ACTIONS(4914), - [aux_sym__val_number_token5] = ACTIONS(4914), - [aux_sym__val_number_token6] = ACTIONS(4914), - [anon_sym_0b] = ACTIONS(4916), - [anon_sym_0o] = ACTIONS(4916), - [anon_sym_0x] = ACTIONS(4916), - [sym_val_date] = ACTIONS(4914), - [anon_sym_DQUOTE] = ACTIONS(4914), - [sym__str_single_quotes] = ACTIONS(4914), - [sym__str_back_ticks] = ACTIONS(4914), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4914), - [anon_sym_err_GT] = ACTIONS(4916), - [anon_sym_out_GT] = ACTIONS(4916), - [anon_sym_e_GT] = ACTIONS(4916), - [anon_sym_o_GT] = ACTIONS(4916), - [anon_sym_err_PLUSout_GT] = ACTIONS(4916), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4916), - [anon_sym_o_PLUSe_GT] = ACTIONS(4916), - [anon_sym_e_PLUSo_GT] = ACTIONS(4916), - [anon_sym_err_GT_GT] = ACTIONS(4914), - [anon_sym_out_GT_GT] = ACTIONS(4914), - [anon_sym_e_GT_GT] = ACTIONS(4914), - [anon_sym_o_GT_GT] = ACTIONS(4914), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4914), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4914), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4914), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4914), - [aux_sym_unquoted_token1] = ACTIONS(4916), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4914), - }, - [1590] = { - [sym_comment] = STATE(1590), + [1600] = { + [sym_comment] = STATE(1600), [sym__newline] = ACTIONS(1741), [anon_sym_SEMI] = ACTIONS(1741), [anon_sym_PIPE] = ACTIONS(1741), @@ -222341,416 +223324,1300 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1741), }, - [1591] = { - [sym_comment] = STATE(1591), - [sym__newline] = ACTIONS(2218), - [anon_sym_SEMI] = ACTIONS(2218), - [anon_sym_PIPE] = ACTIONS(2218), - [anon_sym_err_GT_PIPE] = ACTIONS(2218), - [anon_sym_out_GT_PIPE] = ACTIONS(2218), - [anon_sym_e_GT_PIPE] = ACTIONS(2218), - [anon_sym_o_GT_PIPE] = ACTIONS(2218), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), - [anon_sym_LBRACK] = ACTIONS(2218), - [anon_sym_LPAREN] = ACTIONS(2214), - [anon_sym_RPAREN] = ACTIONS(2218), - [anon_sym_DOLLAR] = ACTIONS(2214), - [anon_sym_DASH_DASH] = ACTIONS(2214), - [anon_sym_DASH2] = ACTIONS(2214), - [anon_sym_LBRACE] = ACTIONS(2218), - [anon_sym_RBRACE] = ACTIONS(2218), - [anon_sym_DOT_DOT] = ACTIONS(2214), - [anon_sym_LPAREN2] = ACTIONS(2216), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2214), - [anon_sym_DOT_DOT_LT] = ACTIONS(2214), - [anon_sym_null] = ACTIONS(2214), - [anon_sym_true] = ACTIONS(2214), - [anon_sym_false] = ACTIONS(2214), - [aux_sym__val_number_decimal_token1] = ACTIONS(2214), - [aux_sym__val_number_decimal_token2] = ACTIONS(2214), - [aux_sym__val_number_decimal_token3] = ACTIONS(2214), - [aux_sym__val_number_decimal_token4] = ACTIONS(2214), - [aux_sym__val_number_token1] = ACTIONS(2214), - [aux_sym__val_number_token2] = ACTIONS(2214), - [aux_sym__val_number_token3] = ACTIONS(2214), - [aux_sym__val_number_token4] = ACTIONS(2214), - [aux_sym__val_number_token5] = ACTIONS(2214), - [aux_sym__val_number_token6] = ACTIONS(2214), - [anon_sym_0b] = ACTIONS(2214), - [anon_sym_0o] = ACTIONS(2214), - [anon_sym_0x] = ACTIONS(2214), - [sym_val_date] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2218), - [sym__str_single_quotes] = ACTIONS(2218), - [sym__str_back_ticks] = ACTIONS(2218), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2218), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2218), - [anon_sym_err_GT] = ACTIONS(2214), - [anon_sym_out_GT] = ACTIONS(2214), - [anon_sym_e_GT] = ACTIONS(2214), - [anon_sym_o_GT] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT] = ACTIONS(2214), - [anon_sym_err_GT_GT] = ACTIONS(2214), - [anon_sym_out_GT_GT] = ACTIONS(2214), - [anon_sym_e_GT_GT] = ACTIONS(2214), - [anon_sym_o_GT_GT] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2214), - [aux_sym_unquoted_token1] = ACTIONS(2214), - [aux_sym_unquoted_token4] = ACTIONS(2220), + [1601] = { + [sym_comment] = STATE(1601), + [sym__newline] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_PIPE] = ACTIONS(2276), + [anon_sym_err_GT_PIPE] = ACTIONS(2276), + [anon_sym_out_GT_PIPE] = ACTIONS(2276), + [anon_sym_e_GT_PIPE] = ACTIONS(2276), + [anon_sym_o_GT_PIPE] = ACTIONS(2276), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2276), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2276), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2276), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2272), + [anon_sym_RPAREN] = ACTIONS(2276), + [anon_sym_DOLLAR] = ACTIONS(2272), + [anon_sym_DASH_DASH] = ACTIONS(2276), + [anon_sym_DASH2] = ACTIONS(2272), + [anon_sym_LBRACE] = ACTIONS(2276), + [anon_sym_RBRACE] = ACTIONS(2276), + [anon_sym_DOT_DOT] = ACTIONS(2272), + [anon_sym_LPAREN2] = ACTIONS(2274), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2276), + [anon_sym_DOT_DOT_LT] = ACTIONS(2276), + [anon_sym_null] = ACTIONS(2276), + [anon_sym_true] = ACTIONS(2276), + [anon_sym_false] = ACTIONS(2276), + [aux_sym__val_number_decimal_token1] = ACTIONS(2272), + [aux_sym__val_number_decimal_token2] = ACTIONS(2276), + [aux_sym__val_number_decimal_token3] = ACTIONS(2276), + [aux_sym__val_number_decimal_token4] = ACTIONS(2276), + [aux_sym__val_number_token1] = ACTIONS(2276), + [aux_sym__val_number_token2] = ACTIONS(2276), + [aux_sym__val_number_token3] = ACTIONS(2276), + [aux_sym__val_number_token4] = ACTIONS(2276), + [aux_sym__val_number_token5] = ACTIONS(2276), + [aux_sym__val_number_token6] = ACTIONS(2276), + [anon_sym_0b] = ACTIONS(2272), + [anon_sym_0o] = ACTIONS(2272), + [anon_sym_0x] = ACTIONS(2272), + [sym_val_date] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [sym__str_single_quotes] = ACTIONS(2276), + [sym__str_back_ticks] = ACTIONS(2276), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2276), + [anon_sym_err_GT] = ACTIONS(2272), + [anon_sym_out_GT] = ACTIONS(2272), + [anon_sym_e_GT] = ACTIONS(2272), + [anon_sym_o_GT] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT] = ACTIONS(2272), + [anon_sym_err_GT_GT] = ACTIONS(2276), + [anon_sym_out_GT_GT] = ACTIONS(2276), + [anon_sym_e_GT_GT] = ACTIONS(2276), + [anon_sym_o_GT_GT] = ACTIONS(2276), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2276), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2276), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2276), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2276), + [aux_sym_unquoted_token1] = ACTIONS(2272), + [aux_sym_unquoted_token2] = ACTIONS(2278), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2276), + }, + [1602] = { + [sym_comment] = STATE(1602), + [sym__newline] = ACTIONS(1787), + [anon_sym_SEMI] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_err_GT_PIPE] = ACTIONS(1787), + [anon_sym_out_GT_PIPE] = ACTIONS(1787), + [anon_sym_e_GT_PIPE] = ACTIONS(1787), + [anon_sym_o_GT_PIPE] = ACTIONS(1787), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_RPAREN] = ACTIONS(1787), + [anon_sym_DOLLAR] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1787), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_RBRACE] = ACTIONS(1787), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1787), + [anon_sym_DOT_DOT_LT] = ACTIONS(1787), + [anon_sym_null] = ACTIONS(1787), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [aux_sym__val_number_decimal_token1] = ACTIONS(1785), + [aux_sym__val_number_decimal_token2] = ACTIONS(1787), + [aux_sym__val_number_decimal_token3] = ACTIONS(1787), + [aux_sym__val_number_decimal_token4] = ACTIONS(1787), + [aux_sym__val_number_token1] = ACTIONS(1787), + [aux_sym__val_number_token2] = ACTIONS(1787), + [aux_sym__val_number_token3] = ACTIONS(1787), + [aux_sym__val_number_token4] = ACTIONS(1787), + [aux_sym__val_number_token5] = ACTIONS(1787), + [aux_sym__val_number_token6] = ACTIONS(1787), + [anon_sym_0b] = ACTIONS(1785), + [anon_sym_0o] = ACTIONS(1785), + [anon_sym_0x] = ACTIONS(1785), + [sym_val_date] = ACTIONS(1787), + [anon_sym_DQUOTE] = ACTIONS(1787), + [sym__str_single_quotes] = ACTIONS(1787), + [sym__str_back_ticks] = ACTIONS(1787), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), + [anon_sym_err_GT] = ACTIONS(1785), + [anon_sym_out_GT] = ACTIONS(1785), + [anon_sym_e_GT] = ACTIONS(1785), + [anon_sym_o_GT] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT] = ACTIONS(1785), + [anon_sym_err_GT_GT] = ACTIONS(1787), + [anon_sym_out_GT_GT] = ACTIONS(1787), + [anon_sym_e_GT_GT] = ACTIONS(1787), + [anon_sym_o_GT_GT] = ACTIONS(1787), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), + [aux_sym_unquoted_token1] = ACTIONS(1785), + [aux_sym_unquoted_token2] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1787), + }, + [1603] = { + [sym_comment] = STATE(1603), + [sym__newline] = ACTIONS(1843), + [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_err_GT_PIPE] = ACTIONS(1843), + [anon_sym_out_GT_PIPE] = ACTIONS(1843), + [anon_sym_e_GT_PIPE] = ACTIONS(1843), + [anon_sym_o_GT_PIPE] = ACTIONS(1843), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1843), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1843), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1843), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_RPAREN] = ACTIONS(1843), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [anon_sym_DASH2] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_RBRACE] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(1843), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1843), + [anon_sym_DOT_DOT_LT] = ACTIONS(1843), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [aux_sym__val_number_decimal_token1] = ACTIONS(1841), + [aux_sym__val_number_decimal_token2] = ACTIONS(1843), + [aux_sym__val_number_decimal_token3] = ACTIONS(1843), + [aux_sym__val_number_decimal_token4] = ACTIONS(1843), + [aux_sym__val_number_token1] = ACTIONS(1843), + [aux_sym__val_number_token2] = ACTIONS(1843), + [aux_sym__val_number_token3] = ACTIONS(1843), + [aux_sym__val_number_token4] = ACTIONS(1843), + [aux_sym__val_number_token5] = ACTIONS(1843), + [aux_sym__val_number_token6] = ACTIONS(1843), + [anon_sym_0b] = ACTIONS(1841), + [anon_sym_0o] = ACTIONS(1841), + [anon_sym_0x] = ACTIONS(1841), + [sym_val_date] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [sym__str_single_quotes] = ACTIONS(1843), + [sym__str_back_ticks] = ACTIONS(1843), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1843), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1843), + [anon_sym_err_GT] = ACTIONS(1841), + [anon_sym_out_GT] = ACTIONS(1841), + [anon_sym_e_GT] = ACTIONS(1841), + [anon_sym_o_GT] = ACTIONS(1841), + [anon_sym_err_PLUSout_GT] = ACTIONS(1841), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1841), + [anon_sym_o_PLUSe_GT] = ACTIONS(1841), + [anon_sym_e_PLUSo_GT] = ACTIONS(1841), + [anon_sym_err_GT_GT] = ACTIONS(1843), + [anon_sym_out_GT_GT] = ACTIONS(1843), + [anon_sym_e_GT_GT] = ACTIONS(1843), + [anon_sym_o_GT_GT] = ACTIONS(1843), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1843), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1843), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1843), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1843), + [aux_sym_unquoted_token1] = ACTIONS(1841), + [aux_sym_unquoted_token2] = ACTIONS(1841), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1843), + }, + [1604] = { + [sym_comment] = STATE(1604), + [ts_builtin_sym_end] = ACTIONS(1787), + [sym__newline] = ACTIONS(1787), + [anon_sym_SEMI] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_err_GT_PIPE] = ACTIONS(1787), + [anon_sym_out_GT_PIPE] = ACTIONS(1787), + [anon_sym_e_GT_PIPE] = ACTIONS(1787), + [anon_sym_o_GT_PIPE] = ACTIONS(1787), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1787), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1787), + [anon_sym_DOT_DOT_LT] = ACTIONS(1787), + [aux_sym__immediate_decimal_token2] = ACTIONS(4930), + [anon_sym_null] = ACTIONS(1787), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [aux_sym__val_number_decimal_token1] = ACTIONS(1785), + [aux_sym__val_number_decimal_token2] = ACTIONS(1787), + [aux_sym__val_number_decimal_token3] = ACTIONS(1787), + [aux_sym__val_number_decimal_token4] = ACTIONS(1787), + [aux_sym__val_number_token1] = ACTIONS(1787), + [aux_sym__val_number_token2] = ACTIONS(1787), + [aux_sym__val_number_token3] = ACTIONS(1787), + [aux_sym__val_number_token4] = ACTIONS(1787), + [aux_sym__val_number_token5] = ACTIONS(1787), + [aux_sym__val_number_token6] = ACTIONS(1787), + [anon_sym_0b] = ACTIONS(1785), + [anon_sym_0o] = ACTIONS(1785), + [anon_sym_0x] = ACTIONS(1785), + [sym_val_date] = ACTIONS(1787), + [anon_sym_DQUOTE] = ACTIONS(1787), + [sym__str_single_quotes] = ACTIONS(1787), + [sym__str_back_ticks] = ACTIONS(1787), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), + [anon_sym_err_GT] = ACTIONS(1785), + [anon_sym_out_GT] = ACTIONS(1785), + [anon_sym_e_GT] = ACTIONS(1785), + [anon_sym_o_GT] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT] = ACTIONS(1785), + [anon_sym_err_GT_GT] = ACTIONS(1787), + [anon_sym_out_GT_GT] = ACTIONS(1787), + [anon_sym_e_GT_GT] = ACTIONS(1787), + [anon_sym_o_GT_GT] = ACTIONS(1787), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), + [aux_sym_unquoted_token1] = ACTIONS(1785), + [aux_sym_unquoted_token2] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1787), + }, + [1605] = { + [sym__expr_parenthesized_immediate] = STATE(8105), + [sym_comment] = STATE(1605), + [sym__newline] = ACTIONS(4932), + [anon_sym_SEMI] = ACTIONS(4932), + [anon_sym_PIPE] = ACTIONS(4932), + [anon_sym_err_GT_PIPE] = ACTIONS(4932), + [anon_sym_out_GT_PIPE] = ACTIONS(4932), + [anon_sym_e_GT_PIPE] = ACTIONS(4932), + [anon_sym_o_GT_PIPE] = ACTIONS(4932), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4932), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4932), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4932), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4932), + [anon_sym_LPAREN] = ACTIONS(4934), + [anon_sym_RPAREN] = ACTIONS(4932), + [anon_sym_DOLLAR] = ACTIONS(4934), + [anon_sym_DASH_DASH] = ACTIONS(4932), + [anon_sym_DASH2] = ACTIONS(4934), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_RBRACE] = ACTIONS(4932), + [anon_sym_DOT_DOT] = ACTIONS(4934), + [anon_sym_LPAREN2] = ACTIONS(4543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4932), + [anon_sym_DOT_DOT_LT] = ACTIONS(4932), + [anon_sym_null] = ACTIONS(4932), + [anon_sym_true] = ACTIONS(4932), + [anon_sym_false] = ACTIONS(4932), + [aux_sym__val_number_decimal_token1] = ACTIONS(4934), + [aux_sym__val_number_decimal_token2] = ACTIONS(4932), + [aux_sym__val_number_decimal_token3] = ACTIONS(4932), + [aux_sym__val_number_decimal_token4] = ACTIONS(4932), + [aux_sym__val_number_token1] = ACTIONS(4932), + [aux_sym__val_number_token2] = ACTIONS(4932), + [aux_sym__val_number_token3] = ACTIONS(4932), + [aux_sym__val_number_token4] = ACTIONS(4932), + [aux_sym__val_number_token5] = ACTIONS(4932), + [aux_sym__val_number_token6] = ACTIONS(4932), + [anon_sym_0b] = ACTIONS(4934), + [anon_sym_0o] = ACTIONS(4934), + [anon_sym_0x] = ACTIONS(4934), + [sym_val_date] = ACTIONS(4932), + [anon_sym_DQUOTE] = ACTIONS(4932), + [sym__str_single_quotes] = ACTIONS(4932), + [sym__str_back_ticks] = ACTIONS(4932), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4932), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4932), + [anon_sym_err_GT] = ACTIONS(4934), + [anon_sym_out_GT] = ACTIONS(4934), + [anon_sym_e_GT] = ACTIONS(4934), + [anon_sym_o_GT] = ACTIONS(4934), + [anon_sym_err_PLUSout_GT] = ACTIONS(4934), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4934), + [anon_sym_o_PLUSe_GT] = ACTIONS(4934), + [anon_sym_e_PLUSo_GT] = ACTIONS(4934), + [anon_sym_err_GT_GT] = ACTIONS(4932), + [anon_sym_out_GT_GT] = ACTIONS(4932), + [anon_sym_e_GT_GT] = ACTIONS(4932), + [anon_sym_o_GT_GT] = ACTIONS(4932), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4932), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4932), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4932), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4932), + [aux_sym_unquoted_token1] = ACTIONS(4934), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4932), + }, + [1606] = { + [sym__expr_parenthesized_immediate] = STATE(8105), + [sym_comment] = STATE(1606), + [sym__newline] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(4936), + [anon_sym_PIPE] = ACTIONS(4936), + [anon_sym_err_GT_PIPE] = ACTIONS(4936), + [anon_sym_out_GT_PIPE] = ACTIONS(4936), + [anon_sym_e_GT_PIPE] = ACTIONS(4936), + [anon_sym_o_GT_PIPE] = ACTIONS(4936), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4936), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4936), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4936), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4936), + [anon_sym_LBRACK] = ACTIONS(4936), + [anon_sym_LPAREN] = ACTIONS(4938), + [anon_sym_RPAREN] = ACTIONS(4936), + [anon_sym_DOLLAR] = ACTIONS(4938), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_DASH2] = ACTIONS(4938), + [anon_sym_LBRACE] = ACTIONS(4936), + [anon_sym_RBRACE] = ACTIONS(4936), + [anon_sym_DOT_DOT] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4936), + [anon_sym_DOT_DOT_LT] = ACTIONS(4936), + [anon_sym_null] = ACTIONS(4936), + [anon_sym_true] = ACTIONS(4936), + [anon_sym_false] = ACTIONS(4936), + [aux_sym__val_number_decimal_token1] = ACTIONS(4938), + [aux_sym__val_number_decimal_token2] = ACTIONS(4936), + [aux_sym__val_number_decimal_token3] = ACTIONS(4936), + [aux_sym__val_number_decimal_token4] = ACTIONS(4936), + [aux_sym__val_number_token1] = ACTIONS(4936), + [aux_sym__val_number_token2] = ACTIONS(4936), + [aux_sym__val_number_token3] = ACTIONS(4936), + [aux_sym__val_number_token4] = ACTIONS(4936), + [aux_sym__val_number_token5] = ACTIONS(4936), + [aux_sym__val_number_token6] = ACTIONS(4936), + [anon_sym_0b] = ACTIONS(4938), + [anon_sym_0o] = ACTIONS(4938), + [anon_sym_0x] = ACTIONS(4938), + [sym_val_date] = ACTIONS(4936), + [anon_sym_DQUOTE] = ACTIONS(4936), + [sym__str_single_quotes] = ACTIONS(4936), + [sym__str_back_ticks] = ACTIONS(4936), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4936), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4936), + [anon_sym_err_GT] = ACTIONS(4938), + [anon_sym_out_GT] = ACTIONS(4938), + [anon_sym_e_GT] = ACTIONS(4938), + [anon_sym_o_GT] = ACTIONS(4938), + [anon_sym_err_PLUSout_GT] = ACTIONS(4938), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4938), + [anon_sym_o_PLUSe_GT] = ACTIONS(4938), + [anon_sym_e_PLUSo_GT] = ACTIONS(4938), + [anon_sym_err_GT_GT] = ACTIONS(4936), + [anon_sym_out_GT_GT] = ACTIONS(4936), + [anon_sym_e_GT_GT] = ACTIONS(4936), + [anon_sym_o_GT_GT] = ACTIONS(4936), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4936), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4936), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4936), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4936), + [aux_sym_unquoted_token1] = ACTIONS(4938), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4936), + }, + [1607] = { + [sym_comment] = STATE(1607), + [anon_sym_EQ] = ACTIONS(4940), + [anon_sym_PLUS_EQ] = ACTIONS(4942), + [anon_sym_DASH_EQ] = ACTIONS(4942), + [anon_sym_STAR_EQ] = ACTIONS(4942), + [anon_sym_SLASH_EQ] = ACTIONS(4942), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4942), + [sym__newline] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1028), + [anon_sym_PIPE] = ACTIONS(1028), + [anon_sym_err_GT_PIPE] = ACTIONS(1028), + [anon_sym_out_GT_PIPE] = ACTIONS(1028), + [anon_sym_e_GT_PIPE] = ACTIONS(1028), + [anon_sym_o_GT_PIPE] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), + [anon_sym_GT2] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(1026), + [anon_sym_in2] = ACTIONS(1028), + [anon_sym_STAR2] = ACTIONS(1026), + [anon_sym_and2] = ACTIONS(1028), + [anon_sym_xor2] = ACTIONS(1028), + [anon_sym_or2] = ACTIONS(1028), + [anon_sym_not_DASHin2] = ACTIONS(1028), + [anon_sym_starts_DASHwith2] = ACTIONS(1028), + [anon_sym_ends_DASHwith2] = ACTIONS(1028), + [anon_sym_EQ_EQ2] = ACTIONS(1028), + [anon_sym_BANG_EQ2] = ACTIONS(1028), + [anon_sym_LT2] = ACTIONS(1026), + [anon_sym_LT_EQ2] = ACTIONS(1028), + [anon_sym_GT_EQ2] = ACTIONS(1028), + [anon_sym_EQ_TILDE2] = ACTIONS(1028), + [anon_sym_BANG_TILDE2] = ACTIONS(1028), + [anon_sym_STAR_STAR2] = ACTIONS(1028), + [anon_sym_PLUS_PLUS2] = ACTIONS(1026), + [anon_sym_SLASH2] = ACTIONS(1026), + [anon_sym_mod2] = ACTIONS(1028), + [anon_sym_SLASH_SLASH2] = ACTIONS(1028), + [anon_sym_PLUS2] = ACTIONS(1026), + [anon_sym_bit_DASHshl2] = ACTIONS(1028), + [anon_sym_bit_DASHshr2] = ACTIONS(1028), + [anon_sym_bit_DASHand2] = ACTIONS(1028), + [anon_sym_bit_DASHxor2] = ACTIONS(1028), + [anon_sym_bit_DASHor2] = ACTIONS(1028), + [anon_sym_DOT_DOT2] = ACTIONS(1038), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), + [anon_sym_err_GT] = ACTIONS(1026), + [anon_sym_out_GT] = ACTIONS(1026), + [anon_sym_e_GT] = ACTIONS(1026), + [anon_sym_o_GT] = ACTIONS(1026), + [anon_sym_err_PLUSout_GT] = ACTIONS(1026), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), + [anon_sym_o_PLUSe_GT] = ACTIONS(1026), + [anon_sym_e_PLUSo_GT] = ACTIONS(1026), + [anon_sym_err_GT_GT] = ACTIONS(1028), + [anon_sym_out_GT_GT] = ACTIONS(1028), + [anon_sym_e_GT_GT] = ACTIONS(1028), + [anon_sym_o_GT_GT] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1028), + [anon_sym_POUND] = ACTIONS(247), + }, + [1608] = { + [sym_cell_path] = STATE(1992), + [sym_path] = STATE(1882), + [sym_comment] = STATE(1608), + [aux_sym_cell_path_repeat1] = STATE(1690), + [sym__newline] = ACTIONS(1917), + [anon_sym_SEMI] = ACTIONS(1917), + [anon_sym_PIPE] = ACTIONS(1917), + [anon_sym_err_GT_PIPE] = ACTIONS(1917), + [anon_sym_out_GT_PIPE] = ACTIONS(1917), + [anon_sym_e_GT_PIPE] = ACTIONS(1917), + [anon_sym_o_GT_PIPE] = ACTIONS(1917), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1917), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1917), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1917), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1917), + [anon_sym_RPAREN] = ACTIONS(1917), + [anon_sym_GT2] = ACTIONS(1915), + [anon_sym_DASH2] = ACTIONS(1917), + [anon_sym_in2] = ACTIONS(1917), + [anon_sym_if] = ACTIONS(1917), + [anon_sym_LBRACE] = ACTIONS(1917), + [anon_sym_RBRACE] = ACTIONS(1917), + [anon_sym_EQ_GT] = ACTIONS(1917), + [anon_sym_STAR2] = ACTIONS(1915), + [anon_sym_and2] = ACTIONS(1917), + [anon_sym_xor2] = ACTIONS(1917), + [anon_sym_or2] = ACTIONS(1917), + [anon_sym_not_DASHin2] = ACTIONS(1917), + [anon_sym_starts_DASHwith2] = ACTIONS(1917), + [anon_sym_ends_DASHwith2] = ACTIONS(1917), + [anon_sym_EQ_EQ2] = ACTIONS(1917), + [anon_sym_BANG_EQ2] = ACTIONS(1917), + [anon_sym_LT2] = ACTIONS(1915), + [anon_sym_LT_EQ2] = ACTIONS(1917), + [anon_sym_GT_EQ2] = ACTIONS(1917), + [anon_sym_EQ_TILDE2] = ACTIONS(1917), + [anon_sym_BANG_TILDE2] = ACTIONS(1917), + [anon_sym_STAR_STAR2] = ACTIONS(1917), + [anon_sym_PLUS_PLUS2] = ACTIONS(1917), + [anon_sym_SLASH2] = ACTIONS(1915), + [anon_sym_mod2] = ACTIONS(1917), + [anon_sym_SLASH_SLASH2] = ACTIONS(1917), + [anon_sym_PLUS2] = ACTIONS(1915), + [anon_sym_bit_DASHshl2] = ACTIONS(1917), + [anon_sym_bit_DASHshr2] = ACTIONS(1917), + [anon_sym_bit_DASHand2] = ACTIONS(1917), + [anon_sym_bit_DASHxor2] = ACTIONS(1917), + [anon_sym_bit_DASHor2] = ACTIONS(1917), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_err_GT] = ACTIONS(1915), + [anon_sym_out_GT] = ACTIONS(1915), + [anon_sym_e_GT] = ACTIONS(1915), + [anon_sym_o_GT] = ACTIONS(1915), + [anon_sym_err_PLUSout_GT] = ACTIONS(1915), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1915), + [anon_sym_o_PLUSe_GT] = ACTIONS(1915), + [anon_sym_e_PLUSo_GT] = ACTIONS(1915), + [anon_sym_err_GT_GT] = ACTIONS(1917), + [anon_sym_out_GT_GT] = ACTIONS(1917), + [anon_sym_e_GT_GT] = ACTIONS(1917), + [anon_sym_o_GT_GT] = ACTIONS(1917), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1917), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1917), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1917), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1917), + [anon_sym_POUND] = ACTIONS(247), + }, + [1609] = { + [sym_comment] = STATE(1609), + [ts_builtin_sym_end] = ACTIONS(2152), + [sym__newline] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(2152), + [anon_sym_err_GT_PIPE] = ACTIONS(2152), + [anon_sym_out_GT_PIPE] = ACTIONS(2152), + [anon_sym_e_GT_PIPE] = ACTIONS(2152), + [anon_sym_o_GT_PIPE] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2152), + [anon_sym_LPAREN] = ACTIONS(2152), + [anon_sym_DOLLAR] = ACTIONS(2146), + [anon_sym_DASH_DASH] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2146), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_DOT_DOT] = ACTIONS(2146), + [anon_sym_DOT_DOT2] = ACTIONS(4944), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2146), + [anon_sym_DOT_DOT_LT] = ACTIONS(2146), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4946), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4946), + [anon_sym_null] = ACTIONS(2152), + [anon_sym_true] = ACTIONS(2152), + [anon_sym_false] = ACTIONS(2152), + [aux_sym__val_number_decimal_token1] = ACTIONS(2146), + [aux_sym__val_number_decimal_token2] = ACTIONS(2152), + [aux_sym__val_number_decimal_token3] = ACTIONS(2152), + [aux_sym__val_number_decimal_token4] = ACTIONS(2152), + [aux_sym__val_number_token1] = ACTIONS(2152), + [aux_sym__val_number_token2] = ACTIONS(2152), + [aux_sym__val_number_token3] = ACTIONS(2152), + [aux_sym__val_number_token4] = ACTIONS(2152), + [aux_sym__val_number_token5] = ACTIONS(2152), + [aux_sym__val_number_token6] = ACTIONS(2152), + [anon_sym_0b] = ACTIONS(2146), + [anon_sym_0o] = ACTIONS(2146), + [anon_sym_0x] = ACTIONS(2146), + [sym_val_date] = ACTIONS(2152), + [anon_sym_DQUOTE] = ACTIONS(2152), + [sym__str_single_quotes] = ACTIONS(2152), + [sym__str_back_ticks] = ACTIONS(2152), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2152), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2152), + [anon_sym_err_GT] = ACTIONS(2146), + [anon_sym_out_GT] = ACTIONS(2146), + [anon_sym_e_GT] = ACTIONS(2146), + [anon_sym_o_GT] = ACTIONS(2146), + [anon_sym_err_PLUSout_GT] = ACTIONS(2146), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2146), + [anon_sym_o_PLUSe_GT] = ACTIONS(2146), + [anon_sym_e_PLUSo_GT] = ACTIONS(2146), + [anon_sym_err_GT_GT] = ACTIONS(2152), + [anon_sym_out_GT_GT] = ACTIONS(2152), + [anon_sym_e_GT_GT] = ACTIONS(2152), + [anon_sym_o_GT_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2152), + [aux_sym_unquoted_token1] = ACTIONS(2146), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2152), + }, + [1610] = { + [sym_cell_path] = STATE(2010), + [sym_path] = STATE(1882), + [sym_comment] = STATE(1610), + [aux_sym_cell_path_repeat1] = STATE(1690), + [sym__newline] = ACTIONS(1929), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_err_GT_PIPE] = ACTIONS(1929), + [anon_sym_out_GT_PIPE] = ACTIONS(1929), + [anon_sym_e_GT_PIPE] = ACTIONS(1929), + [anon_sym_o_GT_PIPE] = ACTIONS(1929), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1929), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1929), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1929), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1929), + [anon_sym_RPAREN] = ACTIONS(1929), + [anon_sym_GT2] = ACTIONS(1927), + [anon_sym_DASH2] = ACTIONS(1929), + [anon_sym_in2] = ACTIONS(1929), + [anon_sym_if] = ACTIONS(1929), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_RBRACE] = ACTIONS(1929), + [anon_sym_EQ_GT] = ACTIONS(1929), + [anon_sym_STAR2] = ACTIONS(1927), + [anon_sym_and2] = ACTIONS(1929), + [anon_sym_xor2] = ACTIONS(1929), + [anon_sym_or2] = ACTIONS(1929), + [anon_sym_not_DASHin2] = ACTIONS(1929), + [anon_sym_starts_DASHwith2] = ACTIONS(1929), + [anon_sym_ends_DASHwith2] = ACTIONS(1929), + [anon_sym_EQ_EQ2] = ACTIONS(1929), + [anon_sym_BANG_EQ2] = ACTIONS(1929), + [anon_sym_LT2] = ACTIONS(1927), + [anon_sym_LT_EQ2] = ACTIONS(1929), + [anon_sym_GT_EQ2] = ACTIONS(1929), + [anon_sym_EQ_TILDE2] = ACTIONS(1929), + [anon_sym_BANG_TILDE2] = ACTIONS(1929), + [anon_sym_STAR_STAR2] = ACTIONS(1929), + [anon_sym_PLUS_PLUS2] = ACTIONS(1929), + [anon_sym_SLASH2] = ACTIONS(1927), + [anon_sym_mod2] = ACTIONS(1929), + [anon_sym_SLASH_SLASH2] = ACTIONS(1929), + [anon_sym_PLUS2] = ACTIONS(1927), + [anon_sym_bit_DASHshl2] = ACTIONS(1929), + [anon_sym_bit_DASHshr2] = ACTIONS(1929), + [anon_sym_bit_DASHand2] = ACTIONS(1929), + [anon_sym_bit_DASHxor2] = ACTIONS(1929), + [anon_sym_bit_DASHor2] = ACTIONS(1929), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_err_GT] = ACTIONS(1927), + [anon_sym_out_GT] = ACTIONS(1927), + [anon_sym_e_GT] = ACTIONS(1927), + [anon_sym_o_GT] = ACTIONS(1927), + [anon_sym_err_PLUSout_GT] = ACTIONS(1927), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1927), + [anon_sym_o_PLUSe_GT] = ACTIONS(1927), + [anon_sym_e_PLUSo_GT] = ACTIONS(1927), + [anon_sym_err_GT_GT] = ACTIONS(1929), + [anon_sym_out_GT_GT] = ACTIONS(1929), + [anon_sym_e_GT_GT] = ACTIONS(1929), + [anon_sym_o_GT_GT] = ACTIONS(1929), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1929), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1929), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1929), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1929), + [anon_sym_POUND] = ACTIONS(247), + }, + [1611] = { + [sym_cell_path] = STATE(2011), + [sym_path] = STATE(1882), + [sym_comment] = STATE(1611), + [aux_sym_cell_path_repeat1] = STATE(1690), + [sym__newline] = ACTIONS(1944), + [anon_sym_SEMI] = ACTIONS(1944), + [anon_sym_PIPE] = ACTIONS(1944), + [anon_sym_err_GT_PIPE] = ACTIONS(1944), + [anon_sym_out_GT_PIPE] = ACTIONS(1944), + [anon_sym_e_GT_PIPE] = ACTIONS(1944), + [anon_sym_o_GT_PIPE] = ACTIONS(1944), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1944), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1944), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1944), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1944), + [anon_sym_RPAREN] = ACTIONS(1944), + [anon_sym_GT2] = ACTIONS(1942), + [anon_sym_DASH2] = ACTIONS(1944), + [anon_sym_in2] = ACTIONS(1944), + [anon_sym_if] = ACTIONS(1944), + [anon_sym_LBRACE] = ACTIONS(1944), + [anon_sym_RBRACE] = ACTIONS(1944), + [anon_sym_EQ_GT] = ACTIONS(1944), + [anon_sym_STAR2] = ACTIONS(1942), + [anon_sym_and2] = ACTIONS(1944), + [anon_sym_xor2] = ACTIONS(1944), + [anon_sym_or2] = ACTIONS(1944), + [anon_sym_not_DASHin2] = ACTIONS(1944), + [anon_sym_starts_DASHwith2] = ACTIONS(1944), + [anon_sym_ends_DASHwith2] = ACTIONS(1944), + [anon_sym_EQ_EQ2] = ACTIONS(1944), + [anon_sym_BANG_EQ2] = ACTIONS(1944), + [anon_sym_LT2] = ACTIONS(1942), + [anon_sym_LT_EQ2] = ACTIONS(1944), + [anon_sym_GT_EQ2] = ACTIONS(1944), + [anon_sym_EQ_TILDE2] = ACTIONS(1944), + [anon_sym_BANG_TILDE2] = ACTIONS(1944), + [anon_sym_STAR_STAR2] = ACTIONS(1944), + [anon_sym_PLUS_PLUS2] = ACTIONS(1944), + [anon_sym_SLASH2] = ACTIONS(1942), + [anon_sym_mod2] = ACTIONS(1944), + [anon_sym_SLASH_SLASH2] = ACTIONS(1944), + [anon_sym_PLUS2] = ACTIONS(1942), + [anon_sym_bit_DASHshl2] = ACTIONS(1944), + [anon_sym_bit_DASHshr2] = ACTIONS(1944), + [anon_sym_bit_DASHand2] = ACTIONS(1944), + [anon_sym_bit_DASHxor2] = ACTIONS(1944), + [anon_sym_bit_DASHor2] = ACTIONS(1944), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_err_GT] = ACTIONS(1942), + [anon_sym_out_GT] = ACTIONS(1942), + [anon_sym_e_GT] = ACTIONS(1942), + [anon_sym_o_GT] = ACTIONS(1942), + [anon_sym_err_PLUSout_GT] = ACTIONS(1942), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1942), + [anon_sym_o_PLUSe_GT] = ACTIONS(1942), + [anon_sym_e_PLUSo_GT] = ACTIONS(1942), + [anon_sym_err_GT_GT] = ACTIONS(1944), + [anon_sym_out_GT_GT] = ACTIONS(1944), + [anon_sym_e_GT_GT] = ACTIONS(1944), + [anon_sym_o_GT_GT] = ACTIONS(1944), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1944), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1944), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1944), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1944), + [anon_sym_POUND] = ACTIONS(247), + }, + [1612] = { + [sym_comment] = STATE(1612), + [sym__newline] = ACTIONS(2242), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_PIPE] = ACTIONS(2242), + [anon_sym_err_GT_PIPE] = ACTIONS(2242), + [anon_sym_out_GT_PIPE] = ACTIONS(2242), + [anon_sym_e_GT_PIPE] = ACTIONS(2242), + [anon_sym_o_GT_PIPE] = ACTIONS(2242), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2242), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2242), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2242), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(2242), + [anon_sym_LPAREN] = ACTIONS(2238), + [anon_sym_RPAREN] = ACTIONS(2242), + [anon_sym_DOLLAR] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2238), + [anon_sym_DASH2] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2242), + [anon_sym_RBRACE] = ACTIONS(2242), + [anon_sym_DOT_DOT] = ACTIONS(2238), + [anon_sym_LPAREN2] = ACTIONS(2240), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2238), + [anon_sym_DOT_DOT_LT] = ACTIONS(2238), + [anon_sym_null] = ACTIONS(2238), + [anon_sym_true] = ACTIONS(2238), + [anon_sym_false] = ACTIONS(2238), + [aux_sym__val_number_decimal_token1] = ACTIONS(2238), + [aux_sym__val_number_decimal_token2] = ACTIONS(2238), + [aux_sym__val_number_decimal_token3] = ACTIONS(2238), + [aux_sym__val_number_decimal_token4] = ACTIONS(2238), + [aux_sym__val_number_token1] = ACTIONS(2238), + [aux_sym__val_number_token2] = ACTIONS(2238), + [aux_sym__val_number_token3] = ACTIONS(2238), + [aux_sym__val_number_token4] = ACTIONS(2238), + [aux_sym__val_number_token5] = ACTIONS(2238), + [aux_sym__val_number_token6] = ACTIONS(2238), + [anon_sym_0b] = ACTIONS(2238), + [anon_sym_0o] = ACTIONS(2238), + [anon_sym_0x] = ACTIONS(2238), + [sym_val_date] = ACTIONS(2238), + [anon_sym_DQUOTE] = ACTIONS(2242), + [sym__str_single_quotes] = ACTIONS(2242), + [sym__str_back_ticks] = ACTIONS(2242), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2242), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2242), + [anon_sym_err_GT] = ACTIONS(2238), + [anon_sym_out_GT] = ACTIONS(2238), + [anon_sym_e_GT] = ACTIONS(2238), + [anon_sym_o_GT] = ACTIONS(2238), + [anon_sym_err_PLUSout_GT] = ACTIONS(2238), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2238), + [anon_sym_o_PLUSe_GT] = ACTIONS(2238), + [anon_sym_e_PLUSo_GT] = ACTIONS(2238), + [anon_sym_err_GT_GT] = ACTIONS(2238), + [anon_sym_out_GT_GT] = ACTIONS(2238), + [anon_sym_e_GT_GT] = ACTIONS(2238), + [anon_sym_o_GT_GT] = ACTIONS(2238), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2238), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2238), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2238), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2238), + [aux_sym_unquoted_token1] = ACTIONS(2238), + [aux_sym_unquoted_token4] = ACTIONS(2244), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2218), + [sym_raw_string_begin] = ACTIONS(2242), }, - [1592] = { - [sym_comment] = STATE(1592), - [sym__newline] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_err_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_GT_PIPE] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_RPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT] = ACTIONS(1741), - [aux_sym__immediate_decimal_token1] = ACTIONS(4918), - [aux_sym__immediate_decimal_token2] = ACTIONS(4920), - [anon_sym_null] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1741), - [aux_sym__val_number_token5] = ACTIONS(1741), - [aux_sym__val_number_token6] = ACTIONS(1741), - [anon_sym_0b] = ACTIONS(1739), - [anon_sym_0o] = ACTIONS(1739), - [anon_sym_0x] = ACTIONS(1739), - [sym_val_date] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), - [anon_sym_err_GT] = ACTIONS(1739), - [anon_sym_out_GT] = ACTIONS(1739), - [anon_sym_e_GT] = ACTIONS(1739), - [anon_sym_o_GT] = ACTIONS(1739), - [anon_sym_err_PLUSout_GT] = ACTIONS(1739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), - [anon_sym_o_PLUSe_GT] = ACTIONS(1739), - [anon_sym_e_PLUSo_GT] = ACTIONS(1739), - [anon_sym_err_GT_GT] = ACTIONS(1741), - [anon_sym_out_GT_GT] = ACTIONS(1741), - [anon_sym_e_GT_GT] = ACTIONS(1741), - [anon_sym_o_GT_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), - [aux_sym_unquoted_token1] = ACTIONS(1739), + [1613] = { + [sym_cell_path] = STATE(2076), + [sym_path] = STATE(1882), + [sym_comment] = STATE(1613), + [aux_sym_cell_path_repeat1] = STATE(1690), + [sym__newline] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(1881), + [anon_sym_err_GT_PIPE] = ACTIONS(1881), + [anon_sym_out_GT_PIPE] = ACTIONS(1881), + [anon_sym_e_GT_PIPE] = ACTIONS(1881), + [anon_sym_o_GT_PIPE] = ACTIONS(1881), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1881), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1881), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1881), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1881), + [anon_sym_RPAREN] = ACTIONS(1881), + [anon_sym_GT2] = ACTIONS(1879), + [anon_sym_DASH2] = ACTIONS(1881), + [anon_sym_in2] = ACTIONS(1881), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym_EQ_GT] = ACTIONS(1881), + [anon_sym_STAR2] = ACTIONS(1879), + [anon_sym_and2] = ACTIONS(1881), + [anon_sym_xor2] = ACTIONS(1881), + [anon_sym_or2] = ACTIONS(1881), + [anon_sym_not_DASHin2] = ACTIONS(1881), + [anon_sym_starts_DASHwith2] = ACTIONS(1881), + [anon_sym_ends_DASHwith2] = ACTIONS(1881), + [anon_sym_EQ_EQ2] = ACTIONS(1881), + [anon_sym_BANG_EQ2] = ACTIONS(1881), + [anon_sym_LT2] = ACTIONS(1879), + [anon_sym_LT_EQ2] = ACTIONS(1881), + [anon_sym_GT_EQ2] = ACTIONS(1881), + [anon_sym_EQ_TILDE2] = ACTIONS(1881), + [anon_sym_BANG_TILDE2] = ACTIONS(1881), + [anon_sym_STAR_STAR2] = ACTIONS(1881), + [anon_sym_PLUS_PLUS2] = ACTIONS(1881), + [anon_sym_SLASH2] = ACTIONS(1879), + [anon_sym_mod2] = ACTIONS(1881), + [anon_sym_SLASH_SLASH2] = ACTIONS(1881), + [anon_sym_PLUS2] = ACTIONS(1879), + [anon_sym_bit_DASHshl2] = ACTIONS(1881), + [anon_sym_bit_DASHshr2] = ACTIONS(1881), + [anon_sym_bit_DASHand2] = ACTIONS(1881), + [anon_sym_bit_DASHxor2] = ACTIONS(1881), + [anon_sym_bit_DASHor2] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_err_GT] = ACTIONS(1879), + [anon_sym_out_GT] = ACTIONS(1879), + [anon_sym_e_GT] = ACTIONS(1879), + [anon_sym_o_GT] = ACTIONS(1879), + [anon_sym_err_PLUSout_GT] = ACTIONS(1879), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1879), + [anon_sym_o_PLUSe_GT] = ACTIONS(1879), + [anon_sym_e_PLUSo_GT] = ACTIONS(1879), + [anon_sym_err_GT_GT] = ACTIONS(1881), + [anon_sym_out_GT_GT] = ACTIONS(1881), + [anon_sym_e_GT_GT] = ACTIONS(1881), + [anon_sym_o_GT_GT] = ACTIONS(1881), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1881), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1881), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1881), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1881), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), }, - [1593] = { - [sym_comment] = STATE(1593), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_RPAREN] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1014), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_in2] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_EQ_GT] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1014), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1014), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1014), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1014), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_DOT_DOT2] = ACTIONS(1014), - [anon_sym_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1016), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1014), - [anon_sym_out_GT] = ACTIONS(1014), - [anon_sym_e_GT] = ACTIONS(1014), - [anon_sym_o_GT] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT] = ACTIONS(1014), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), + [1614] = { + [sym_cell_path] = STATE(2083), + [sym_path] = STATE(1882), + [sym_comment] = STATE(1614), + [aux_sym_cell_path_repeat1] = STATE(1690), + [sym__newline] = ACTIONS(1885), + [anon_sym_SEMI] = ACTIONS(1885), + [anon_sym_PIPE] = ACTIONS(1885), + [anon_sym_err_GT_PIPE] = ACTIONS(1885), + [anon_sym_out_GT_PIPE] = ACTIONS(1885), + [anon_sym_e_GT_PIPE] = ACTIONS(1885), + [anon_sym_o_GT_PIPE] = ACTIONS(1885), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1885), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1885), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1885), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1885), + [anon_sym_RPAREN] = ACTIONS(1885), + [anon_sym_GT2] = ACTIONS(1883), + [anon_sym_DASH2] = ACTIONS(1885), + [anon_sym_in2] = ACTIONS(1885), + [anon_sym_if] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(1885), + [anon_sym_RBRACE] = ACTIONS(1885), + [anon_sym_EQ_GT] = ACTIONS(1885), + [anon_sym_STAR2] = ACTIONS(1883), + [anon_sym_and2] = ACTIONS(1885), + [anon_sym_xor2] = ACTIONS(1885), + [anon_sym_or2] = ACTIONS(1885), + [anon_sym_not_DASHin2] = ACTIONS(1885), + [anon_sym_starts_DASHwith2] = ACTIONS(1885), + [anon_sym_ends_DASHwith2] = ACTIONS(1885), + [anon_sym_EQ_EQ2] = ACTIONS(1885), + [anon_sym_BANG_EQ2] = ACTIONS(1885), + [anon_sym_LT2] = ACTIONS(1883), + [anon_sym_LT_EQ2] = ACTIONS(1885), + [anon_sym_GT_EQ2] = ACTIONS(1885), + [anon_sym_EQ_TILDE2] = ACTIONS(1885), + [anon_sym_BANG_TILDE2] = ACTIONS(1885), + [anon_sym_STAR_STAR2] = ACTIONS(1885), + [anon_sym_PLUS_PLUS2] = ACTIONS(1885), + [anon_sym_SLASH2] = ACTIONS(1883), + [anon_sym_mod2] = ACTIONS(1885), + [anon_sym_SLASH_SLASH2] = ACTIONS(1885), + [anon_sym_PLUS2] = ACTIONS(1883), + [anon_sym_bit_DASHshl2] = ACTIONS(1885), + [anon_sym_bit_DASHshr2] = ACTIONS(1885), + [anon_sym_bit_DASHand2] = ACTIONS(1885), + [anon_sym_bit_DASHxor2] = ACTIONS(1885), + [anon_sym_bit_DASHor2] = ACTIONS(1885), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_err_GT] = ACTIONS(1883), + [anon_sym_out_GT] = ACTIONS(1883), + [anon_sym_e_GT] = ACTIONS(1883), + [anon_sym_o_GT] = ACTIONS(1883), + [anon_sym_err_PLUSout_GT] = ACTIONS(1883), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1883), + [anon_sym_o_PLUSe_GT] = ACTIONS(1883), + [anon_sym_e_PLUSo_GT] = ACTIONS(1883), + [anon_sym_err_GT_GT] = ACTIONS(1885), + [anon_sym_out_GT_GT] = ACTIONS(1885), + [anon_sym_e_GT_GT] = ACTIONS(1885), + [anon_sym_o_GT_GT] = ACTIONS(1885), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1885), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1885), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1885), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1885), [anon_sym_POUND] = ACTIONS(247), }, - [1594] = { - [sym_cell_path] = STATE(2007), - [sym_path] = STATE(1894), - [sym_comment] = STATE(1594), - [aux_sym_cell_path_repeat1] = STATE(1702), - [sym__newline] = ACTIONS(2070), - [anon_sym_SEMI] = ACTIONS(2070), - [anon_sym_PIPE] = ACTIONS(2070), - [anon_sym_err_GT_PIPE] = ACTIONS(2070), - [anon_sym_out_GT_PIPE] = ACTIONS(2070), - [anon_sym_e_GT_PIPE] = ACTIONS(2070), - [anon_sym_o_GT_PIPE] = ACTIONS(2070), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2070), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2070), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2070), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2070), - [anon_sym_RPAREN] = ACTIONS(2070), - [anon_sym_GT2] = ACTIONS(2068), - [anon_sym_DASH2] = ACTIONS(2070), - [anon_sym_in2] = ACTIONS(2070), - [anon_sym_if] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2070), - [anon_sym_RBRACE] = ACTIONS(2070), - [anon_sym_EQ_GT] = ACTIONS(2070), - [anon_sym_STAR2] = ACTIONS(2068), - [anon_sym_and2] = ACTIONS(2070), - [anon_sym_xor2] = ACTIONS(2070), - [anon_sym_or2] = ACTIONS(2070), - [anon_sym_not_DASHin2] = ACTIONS(2070), - [anon_sym_starts_DASHwith2] = ACTIONS(2070), - [anon_sym_ends_DASHwith2] = ACTIONS(2070), - [anon_sym_EQ_EQ2] = ACTIONS(2070), - [anon_sym_BANG_EQ2] = ACTIONS(2070), - [anon_sym_LT2] = ACTIONS(2068), - [anon_sym_LT_EQ2] = ACTIONS(2070), - [anon_sym_GT_EQ2] = ACTIONS(2070), - [anon_sym_EQ_TILDE2] = ACTIONS(2070), - [anon_sym_BANG_TILDE2] = ACTIONS(2070), - [anon_sym_STAR_STAR2] = ACTIONS(2070), - [anon_sym_PLUS_PLUS2] = ACTIONS(2070), - [anon_sym_SLASH2] = ACTIONS(2068), - [anon_sym_mod2] = ACTIONS(2070), - [anon_sym_SLASH_SLASH2] = ACTIONS(2070), - [anon_sym_PLUS2] = ACTIONS(2068), - [anon_sym_bit_DASHshl2] = ACTIONS(2070), - [anon_sym_bit_DASHshr2] = ACTIONS(2070), - [anon_sym_bit_DASHand2] = ACTIONS(2070), - [anon_sym_bit_DASHxor2] = ACTIONS(2070), - [anon_sym_bit_DASHor2] = ACTIONS(2070), - [anon_sym_DOT] = ACTIONS(4902), - [anon_sym_err_GT] = ACTIONS(2068), - [anon_sym_out_GT] = ACTIONS(2068), - [anon_sym_e_GT] = ACTIONS(2068), - [anon_sym_o_GT] = ACTIONS(2068), - [anon_sym_err_PLUSout_GT] = ACTIONS(2068), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2068), - [anon_sym_o_PLUSe_GT] = ACTIONS(2068), - [anon_sym_e_PLUSo_GT] = ACTIONS(2068), - [anon_sym_err_GT_GT] = ACTIONS(2070), - [anon_sym_out_GT_GT] = ACTIONS(2070), - [anon_sym_e_GT_GT] = ACTIONS(2070), - [anon_sym_o_GT_GT] = ACTIONS(2070), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2070), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2070), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2070), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2070), + [1615] = { + [sym_comment] = STATE(1615), + [sym__newline] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [anon_sym_RPAREN] = ACTIONS(1008), + [anon_sym_GT2] = ACTIONS(1006), + [anon_sym_DASH2] = ACTIONS(1008), + [anon_sym_in2] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_EQ_GT] = ACTIONS(1008), + [anon_sym_STAR2] = ACTIONS(1006), + [anon_sym_and2] = ACTIONS(1008), + [anon_sym_xor2] = ACTIONS(1008), + [anon_sym_or2] = ACTIONS(1008), + [anon_sym_not_DASHin2] = ACTIONS(1008), + [anon_sym_starts_DASHwith2] = ACTIONS(1008), + [anon_sym_ends_DASHwith2] = ACTIONS(1008), + [anon_sym_EQ_EQ2] = ACTIONS(1008), + [anon_sym_BANG_EQ2] = ACTIONS(1008), + [anon_sym_LT2] = ACTIONS(1006), + [anon_sym_LT_EQ2] = ACTIONS(1008), + [anon_sym_GT_EQ2] = ACTIONS(1008), + [anon_sym_EQ_TILDE2] = ACTIONS(1008), + [anon_sym_BANG_TILDE2] = ACTIONS(1008), + [anon_sym_STAR_STAR2] = ACTIONS(1008), + [anon_sym_PLUS_PLUS2] = ACTIONS(1008), + [anon_sym_SLASH2] = ACTIONS(1006), + [anon_sym_mod2] = ACTIONS(1008), + [anon_sym_SLASH_SLASH2] = ACTIONS(1008), + [anon_sym_PLUS2] = ACTIONS(1006), + [anon_sym_bit_DASHshl2] = ACTIONS(1008), + [anon_sym_bit_DASHshr2] = ACTIONS(1008), + [anon_sym_bit_DASHand2] = ACTIONS(1008), + [anon_sym_bit_DASHxor2] = ACTIONS(1008), + [anon_sym_bit_DASHor2] = ACTIONS(1008), + [anon_sym_DOT_DOT2] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), + [anon_sym_err_GT] = ACTIONS(1006), + [anon_sym_out_GT] = ACTIONS(1006), + [anon_sym_e_GT] = ACTIONS(1006), + [anon_sym_o_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT] = ACTIONS(1006), + [anon_sym_err_GT_GT] = ACTIONS(1008), + [anon_sym_out_GT_GT] = ACTIONS(1008), + [anon_sym_e_GT_GT] = ACTIONS(1008), + [anon_sym_o_GT_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [anon_sym_POUND] = ACTIONS(247), + }, + [1616] = { + [sym_cell_path] = STATE(2015), + [sym_path] = STATE(1882), + [sym_comment] = STATE(1616), + [aux_sym_cell_path_repeat1] = STATE(1690), + [sym__newline] = ACTIONS(2032), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_err_GT_PIPE] = ACTIONS(2032), + [anon_sym_out_GT_PIPE] = ACTIONS(2032), + [anon_sym_e_GT_PIPE] = ACTIONS(2032), + [anon_sym_o_GT_PIPE] = ACTIONS(2032), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2032), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2032), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2032), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2032), + [anon_sym_RPAREN] = ACTIONS(2032), + [anon_sym_GT2] = ACTIONS(2030), + [anon_sym_DASH2] = ACTIONS(2032), + [anon_sym_in2] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2032), + [anon_sym_RBRACE] = ACTIONS(2032), + [anon_sym_EQ_GT] = ACTIONS(2032), + [anon_sym_STAR2] = ACTIONS(2030), + [anon_sym_and2] = ACTIONS(2032), + [anon_sym_xor2] = ACTIONS(2032), + [anon_sym_or2] = ACTIONS(2032), + [anon_sym_not_DASHin2] = ACTIONS(2032), + [anon_sym_starts_DASHwith2] = ACTIONS(2032), + [anon_sym_ends_DASHwith2] = ACTIONS(2032), + [anon_sym_EQ_EQ2] = ACTIONS(2032), + [anon_sym_BANG_EQ2] = ACTIONS(2032), + [anon_sym_LT2] = ACTIONS(2030), + [anon_sym_LT_EQ2] = ACTIONS(2032), + [anon_sym_GT_EQ2] = ACTIONS(2032), + [anon_sym_EQ_TILDE2] = ACTIONS(2032), + [anon_sym_BANG_TILDE2] = ACTIONS(2032), + [anon_sym_STAR_STAR2] = ACTIONS(2032), + [anon_sym_PLUS_PLUS2] = ACTIONS(2032), + [anon_sym_SLASH2] = ACTIONS(2030), + [anon_sym_mod2] = ACTIONS(2032), + [anon_sym_SLASH_SLASH2] = ACTIONS(2032), + [anon_sym_PLUS2] = ACTIONS(2030), + [anon_sym_bit_DASHshl2] = ACTIONS(2032), + [anon_sym_bit_DASHshr2] = ACTIONS(2032), + [anon_sym_bit_DASHand2] = ACTIONS(2032), + [anon_sym_bit_DASHxor2] = ACTIONS(2032), + [anon_sym_bit_DASHor2] = ACTIONS(2032), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_err_GT] = ACTIONS(2030), + [anon_sym_out_GT] = ACTIONS(2030), + [anon_sym_e_GT] = ACTIONS(2030), + [anon_sym_o_GT] = ACTIONS(2030), + [anon_sym_err_PLUSout_GT] = ACTIONS(2030), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2030), + [anon_sym_o_PLUSe_GT] = ACTIONS(2030), + [anon_sym_e_PLUSo_GT] = ACTIONS(2030), + [anon_sym_err_GT_GT] = ACTIONS(2032), + [anon_sym_out_GT_GT] = ACTIONS(2032), + [anon_sym_e_GT_GT] = ACTIONS(2032), + [anon_sym_o_GT_GT] = ACTIONS(2032), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2032), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2032), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2032), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2032), + [anon_sym_POUND] = ACTIONS(247), + }, + [1617] = { + [sym_cell_path] = STATE(1705), + [sym_path] = STATE(1882), + [sym_comment] = STATE(1617), + [aux_sym_cell_path_repeat1] = STATE(1690), + [sym__newline] = ACTIONS(963), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_err_GT_PIPE] = ACTIONS(963), + [anon_sym_out_GT_PIPE] = ACTIONS(963), + [anon_sym_e_GT_PIPE] = ACTIONS(963), + [anon_sym_o_GT_PIPE] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), + [anon_sym_RPAREN] = ACTIONS(963), + [anon_sym_GT2] = ACTIONS(961), + [anon_sym_DASH2] = ACTIONS(963), + [anon_sym_in2] = ACTIONS(963), + [anon_sym_if] = ACTIONS(963), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_EQ_GT] = ACTIONS(963), + [anon_sym_STAR2] = ACTIONS(961), + [anon_sym_and2] = ACTIONS(963), + [anon_sym_xor2] = ACTIONS(963), + [anon_sym_or2] = ACTIONS(963), + [anon_sym_not_DASHin2] = ACTIONS(963), + [anon_sym_starts_DASHwith2] = ACTIONS(963), + [anon_sym_ends_DASHwith2] = ACTIONS(963), + [anon_sym_EQ_EQ2] = ACTIONS(963), + [anon_sym_BANG_EQ2] = ACTIONS(963), + [anon_sym_LT2] = ACTIONS(961), + [anon_sym_LT_EQ2] = ACTIONS(963), + [anon_sym_GT_EQ2] = ACTIONS(963), + [anon_sym_EQ_TILDE2] = ACTIONS(963), + [anon_sym_BANG_TILDE2] = ACTIONS(963), + [anon_sym_STAR_STAR2] = ACTIONS(963), + [anon_sym_PLUS_PLUS2] = ACTIONS(963), + [anon_sym_SLASH2] = ACTIONS(961), + [anon_sym_mod2] = ACTIONS(963), + [anon_sym_SLASH_SLASH2] = ACTIONS(963), + [anon_sym_PLUS2] = ACTIONS(961), + [anon_sym_bit_DASHshl2] = ACTIONS(963), + [anon_sym_bit_DASHshr2] = ACTIONS(963), + [anon_sym_bit_DASHand2] = ACTIONS(963), + [anon_sym_bit_DASHxor2] = ACTIONS(963), + [anon_sym_bit_DASHor2] = ACTIONS(963), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_err_GT] = ACTIONS(961), + [anon_sym_out_GT] = ACTIONS(961), + [anon_sym_e_GT] = ACTIONS(961), + [anon_sym_o_GT] = ACTIONS(961), + [anon_sym_err_PLUSout_GT] = ACTIONS(961), + [anon_sym_out_PLUSerr_GT] = ACTIONS(961), + [anon_sym_o_PLUSe_GT] = ACTIONS(961), + [anon_sym_e_PLUSo_GT] = ACTIONS(961), + [anon_sym_err_GT_GT] = ACTIONS(963), + [anon_sym_out_GT_GT] = ACTIONS(963), + [anon_sym_e_GT_GT] = ACTIONS(963), + [anon_sym_o_GT_GT] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), + [anon_sym_POUND] = ACTIONS(247), + }, + [1618] = { + [sym_cell_path] = STATE(2016), + [sym_path] = STATE(1882), + [sym_comment] = STATE(1618), + [aux_sym_cell_path_repeat1] = STATE(1690), + [sym__newline] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_PIPE] = ACTIONS(2036), + [anon_sym_err_GT_PIPE] = ACTIONS(2036), + [anon_sym_out_GT_PIPE] = ACTIONS(2036), + [anon_sym_e_GT_PIPE] = ACTIONS(2036), + [anon_sym_o_GT_PIPE] = ACTIONS(2036), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2036), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2036), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2036), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2036), + [anon_sym_RPAREN] = ACTIONS(2036), + [anon_sym_GT2] = ACTIONS(2034), + [anon_sym_DASH2] = ACTIONS(2036), + [anon_sym_in2] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_RBRACE] = ACTIONS(2036), + [anon_sym_EQ_GT] = ACTIONS(2036), + [anon_sym_STAR2] = ACTIONS(2034), + [anon_sym_and2] = ACTIONS(2036), + [anon_sym_xor2] = ACTIONS(2036), + [anon_sym_or2] = ACTIONS(2036), + [anon_sym_not_DASHin2] = ACTIONS(2036), + [anon_sym_starts_DASHwith2] = ACTIONS(2036), + [anon_sym_ends_DASHwith2] = ACTIONS(2036), + [anon_sym_EQ_EQ2] = ACTIONS(2036), + [anon_sym_BANG_EQ2] = ACTIONS(2036), + [anon_sym_LT2] = ACTIONS(2034), + [anon_sym_LT_EQ2] = ACTIONS(2036), + [anon_sym_GT_EQ2] = ACTIONS(2036), + [anon_sym_EQ_TILDE2] = ACTIONS(2036), + [anon_sym_BANG_TILDE2] = ACTIONS(2036), + [anon_sym_STAR_STAR2] = ACTIONS(2036), + [anon_sym_PLUS_PLUS2] = ACTIONS(2036), + [anon_sym_SLASH2] = ACTIONS(2034), + [anon_sym_mod2] = ACTIONS(2036), + [anon_sym_SLASH_SLASH2] = ACTIONS(2036), + [anon_sym_PLUS2] = ACTIONS(2034), + [anon_sym_bit_DASHshl2] = ACTIONS(2036), + [anon_sym_bit_DASHshr2] = ACTIONS(2036), + [anon_sym_bit_DASHand2] = ACTIONS(2036), + [anon_sym_bit_DASHxor2] = ACTIONS(2036), + [anon_sym_bit_DASHor2] = ACTIONS(2036), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_err_GT] = ACTIONS(2034), + [anon_sym_out_GT] = ACTIONS(2034), + [anon_sym_e_GT] = ACTIONS(2034), + [anon_sym_o_GT] = ACTIONS(2034), + [anon_sym_err_PLUSout_GT] = ACTIONS(2034), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2034), + [anon_sym_o_PLUSe_GT] = ACTIONS(2034), + [anon_sym_e_PLUSo_GT] = ACTIONS(2034), + [anon_sym_err_GT_GT] = ACTIONS(2036), + [anon_sym_out_GT_GT] = ACTIONS(2036), + [anon_sym_e_GT_GT] = ACTIONS(2036), + [anon_sym_o_GT_GT] = ACTIONS(2036), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2036), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2036), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2036), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2036), [anon_sym_POUND] = ACTIONS(247), }, - [1595] = { - [sym_comment] = STATE(1595), - [sym__newline] = ACTIONS(2224), - [anon_sym_SEMI] = ACTIONS(2224), - [anon_sym_PIPE] = ACTIONS(2224), - [anon_sym_err_GT_PIPE] = ACTIONS(2224), - [anon_sym_out_GT_PIPE] = ACTIONS(2224), - [anon_sym_e_GT_PIPE] = ACTIONS(2224), - [anon_sym_o_GT_PIPE] = ACTIONS(2224), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2224), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2224), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2224), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2224), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_RPAREN] = ACTIONS(2224), - [anon_sym_DOLLAR] = ACTIONS(2222), - [anon_sym_DASH_DASH] = ACTIONS(2222), - [anon_sym_DASH2] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2224), - [anon_sym_RBRACE] = ACTIONS(2224), - [anon_sym_DOT_DOT] = ACTIONS(2222), - [anon_sym_LPAREN2] = ACTIONS(2216), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2222), - [anon_sym_DOT_DOT_LT] = ACTIONS(2222), - [anon_sym_null] = ACTIONS(2222), - [anon_sym_true] = ACTIONS(2222), - [anon_sym_false] = ACTIONS(2222), - [aux_sym__val_number_decimal_token1] = ACTIONS(2222), - [aux_sym__val_number_decimal_token2] = ACTIONS(2222), - [aux_sym__val_number_decimal_token3] = ACTIONS(2222), - [aux_sym__val_number_decimal_token4] = ACTIONS(2222), - [aux_sym__val_number_token1] = ACTIONS(2222), - [aux_sym__val_number_token2] = ACTIONS(2222), - [aux_sym__val_number_token3] = ACTIONS(2222), - [aux_sym__val_number_token4] = ACTIONS(2222), - [aux_sym__val_number_token5] = ACTIONS(2222), - [aux_sym__val_number_token6] = ACTIONS(2222), - [anon_sym_0b] = ACTIONS(2222), - [anon_sym_0o] = ACTIONS(2222), - [anon_sym_0x] = ACTIONS(2222), - [sym_val_date] = ACTIONS(2222), - [anon_sym_DQUOTE] = ACTIONS(2224), - [sym__str_single_quotes] = ACTIONS(2224), - [sym__str_back_ticks] = ACTIONS(2224), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2224), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2224), - [anon_sym_err_GT] = ACTIONS(2222), - [anon_sym_out_GT] = ACTIONS(2222), - [anon_sym_e_GT] = ACTIONS(2222), - [anon_sym_o_GT] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT] = ACTIONS(2222), - [anon_sym_err_GT_GT] = ACTIONS(2222), - [anon_sym_out_GT_GT] = ACTIONS(2222), - [anon_sym_e_GT_GT] = ACTIONS(2222), - [anon_sym_o_GT_GT] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2222), - [aux_sym_unquoted_token1] = ACTIONS(2222), - [aux_sym_unquoted_token4] = ACTIONS(2220), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2224), - }, - [1596] = { - [sym_comment] = STATE(1596), - [ts_builtin_sym_end] = ACTIONS(1020), - [sym__newline] = ACTIONS(1020), - [anon_sym_SEMI] = ACTIONS(1020), - [anon_sym_PIPE] = ACTIONS(1020), - [anon_sym_err_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_GT_PIPE] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1020), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_DOLLAR] = ACTIONS(1018), - [anon_sym_DASH_DASH] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_DOT_DOT] = ACTIONS(1018), - [anon_sym_DOT_DOT2] = ACTIONS(1018), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1018), - [anon_sym_DOT_DOT_LT] = ACTIONS(1018), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1020), - [anon_sym_null] = ACTIONS(1020), - [anon_sym_true] = ACTIONS(1020), - [anon_sym_false] = ACTIONS(1020), - [aux_sym__val_number_decimal_token1] = ACTIONS(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1020), - [aux_sym__val_number_decimal_token3] = ACTIONS(1020), - [aux_sym__val_number_decimal_token4] = ACTIONS(1020), - [aux_sym__val_number_token1] = ACTIONS(1020), - [aux_sym__val_number_token2] = ACTIONS(1020), - [aux_sym__val_number_token3] = ACTIONS(1020), - [aux_sym__val_number_token4] = ACTIONS(1020), - [aux_sym__val_number_token5] = ACTIONS(1020), - [aux_sym__val_number_token6] = ACTIONS(1020), - [anon_sym_0b] = ACTIONS(1018), - [anon_sym_0o] = ACTIONS(1018), - [anon_sym_0x] = ACTIONS(1018), - [sym_val_date] = ACTIONS(1020), - [anon_sym_DQUOTE] = ACTIONS(1020), - [sym__str_single_quotes] = ACTIONS(1020), - [sym__str_back_ticks] = ACTIONS(1020), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1020), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1020), - [anon_sym_err_GT] = ACTIONS(1018), - [anon_sym_out_GT] = ACTIONS(1018), - [anon_sym_e_GT] = ACTIONS(1018), - [anon_sym_o_GT] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT] = ACTIONS(1018), - [anon_sym_err_GT_GT] = ACTIONS(1020), - [anon_sym_out_GT_GT] = ACTIONS(1020), - [anon_sym_e_GT_GT] = ACTIONS(1020), - [anon_sym_o_GT_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), - [aux_sym_unquoted_token1] = ACTIONS(1018), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1020), + [1619] = { + [sym_comment] = STATE(1619), + [sym__newline] = ACTIONS(992), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(992), + [anon_sym_err_GT_PIPE] = ACTIONS(992), + [anon_sym_out_GT_PIPE] = ACTIONS(992), + [anon_sym_e_GT_PIPE] = ACTIONS(992), + [anon_sym_o_GT_PIPE] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), + [anon_sym_LBRACK] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_RPAREN] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_DASH2] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_DOT_DOT] = ACTIONS(990), + [anon_sym_QMARK2] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ] = ACTIONS(992), + [anon_sym_DOT_DOT_LT] = ACTIONS(992), + [anon_sym_null] = ACTIONS(992), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(990), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = ACTIONS(992), + [aux_sym__val_number_decimal_token4] = ACTIONS(992), + [aux_sym__val_number_token1] = ACTIONS(992), + [aux_sym__val_number_token2] = ACTIONS(992), + [aux_sym__val_number_token3] = ACTIONS(992), + [aux_sym__val_number_token4] = ACTIONS(992), + [aux_sym__val_number_token5] = ACTIONS(992), + [aux_sym__val_number_token6] = ACTIONS(992), + [anon_sym_0b] = ACTIONS(990), + [anon_sym_0o] = ACTIONS(990), + [anon_sym_0x] = ACTIONS(990), + [sym_val_date] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), + [anon_sym_err_GT] = ACTIONS(990), + [anon_sym_out_GT] = ACTIONS(990), + [anon_sym_e_GT] = ACTIONS(990), + [anon_sym_o_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT] = ACTIONS(990), + [anon_sym_err_GT_GT] = ACTIONS(992), + [anon_sym_out_GT_GT] = ACTIONS(992), + [anon_sym_e_GT_GT] = ACTIONS(992), + [anon_sym_o_GT_GT] = ACTIONS(992), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), + [aux_sym_unquoted_token1] = ACTIONS(990), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(992), }, - [1597] = { - [sym_comment] = STATE(1597), + [1620] = { + [sym_comment] = STATE(1620), [sym__newline] = ACTIONS(996), [anon_sym_SEMI] = ACTIONS(996), [anon_sym_PIPE] = ACTIONS(996), @@ -222817,76 +224684,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(996), }, - [1598] = { - [sym_comment] = STATE(1598), - [ts_builtin_sym_end] = ACTIONS(2173), - [sym__newline] = ACTIONS(2173), - [anon_sym_SEMI] = ACTIONS(2173), - [anon_sym_PIPE] = ACTIONS(2173), - [anon_sym_err_GT_PIPE] = ACTIONS(2173), - [anon_sym_out_GT_PIPE] = ACTIONS(2173), - [anon_sym_e_GT_PIPE] = ACTIONS(2173), - [anon_sym_o_GT_PIPE] = ACTIONS(2173), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2173), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2173), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2173), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2173), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2173), - [anon_sym_DASH2] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2173), - [anon_sym_DOT_DOT] = ACTIONS(2167), - [anon_sym_DOT_DOT2] = ACTIONS(4922), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2167), - [anon_sym_DOT_DOT_LT] = ACTIONS(2167), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4924), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4924), - [anon_sym_null] = ACTIONS(2173), - [anon_sym_true] = ACTIONS(2173), - [anon_sym_false] = ACTIONS(2173), - [aux_sym__val_number_decimal_token1] = ACTIONS(2167), - [aux_sym__val_number_decimal_token2] = ACTIONS(2173), - [aux_sym__val_number_decimal_token3] = ACTIONS(2173), - [aux_sym__val_number_decimal_token4] = ACTIONS(2173), - [aux_sym__val_number_token1] = ACTIONS(2173), - [aux_sym__val_number_token2] = ACTIONS(2173), - [aux_sym__val_number_token3] = ACTIONS(2173), - [aux_sym__val_number_token4] = ACTIONS(2173), - [aux_sym__val_number_token5] = ACTIONS(2173), - [aux_sym__val_number_token6] = ACTIONS(2173), - [anon_sym_0b] = ACTIONS(2167), - [anon_sym_0o] = ACTIONS(2167), - [anon_sym_0x] = ACTIONS(2167), - [sym_val_date] = ACTIONS(2173), - [anon_sym_DQUOTE] = ACTIONS(2173), - [sym__str_single_quotes] = ACTIONS(2173), - [sym__str_back_ticks] = ACTIONS(2173), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2173), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2173), - [anon_sym_err_GT] = ACTIONS(2167), - [anon_sym_out_GT] = ACTIONS(2167), - [anon_sym_e_GT] = ACTIONS(2167), - [anon_sym_o_GT] = ACTIONS(2167), - [anon_sym_err_PLUSout_GT] = ACTIONS(2167), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2167), - [anon_sym_o_PLUSe_GT] = ACTIONS(2167), - [anon_sym_e_PLUSo_GT] = ACTIONS(2167), - [anon_sym_err_GT_GT] = ACTIONS(2173), - [anon_sym_out_GT_GT] = ACTIONS(2173), - [anon_sym_e_GT_GT] = ACTIONS(2173), - [anon_sym_o_GT_GT] = ACTIONS(2173), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2173), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2173), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2173), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2173), - [aux_sym_unquoted_token1] = ACTIONS(2167), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2173), - }, - [1599] = { - [sym_comment] = STATE(1599), + [1621] = { + [sym_comment] = STATE(1621), [sym__newline] = ACTIONS(1000), [anon_sym_SEMI] = ACTIONS(1000), [anon_sym_PIPE] = ACTIONS(1000), @@ -222953,348 +224752,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1000), }, - [1600] = { - [sym_cell_path] = STATE(1990), - [sym_path] = STATE(1894), - [sym_comment] = STATE(1600), - [aux_sym_cell_path_repeat1] = STATE(1702), - [sym__newline] = ACTIONS(1946), - [anon_sym_SEMI] = ACTIONS(1946), - [anon_sym_PIPE] = ACTIONS(1946), - [anon_sym_err_GT_PIPE] = ACTIONS(1946), - [anon_sym_out_GT_PIPE] = ACTIONS(1946), - [anon_sym_e_GT_PIPE] = ACTIONS(1946), - [anon_sym_o_GT_PIPE] = ACTIONS(1946), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1946), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1946), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1946), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1946), - [anon_sym_RPAREN] = ACTIONS(1946), - [anon_sym_GT2] = ACTIONS(1944), - [anon_sym_DASH2] = ACTIONS(1946), - [anon_sym_in2] = ACTIONS(1946), - [anon_sym_if] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_RBRACE] = ACTIONS(1946), - [anon_sym_EQ_GT] = ACTIONS(1946), - [anon_sym_STAR2] = ACTIONS(1944), - [anon_sym_and2] = ACTIONS(1946), - [anon_sym_xor2] = ACTIONS(1946), - [anon_sym_or2] = ACTIONS(1946), - [anon_sym_not_DASHin2] = ACTIONS(1946), - [anon_sym_starts_DASHwith2] = ACTIONS(1946), - [anon_sym_ends_DASHwith2] = ACTIONS(1946), - [anon_sym_EQ_EQ2] = ACTIONS(1946), - [anon_sym_BANG_EQ2] = ACTIONS(1946), - [anon_sym_LT2] = ACTIONS(1944), - [anon_sym_LT_EQ2] = ACTIONS(1946), - [anon_sym_GT_EQ2] = ACTIONS(1946), - [anon_sym_EQ_TILDE2] = ACTIONS(1946), - [anon_sym_BANG_TILDE2] = ACTIONS(1946), - [anon_sym_STAR_STAR2] = ACTIONS(1946), - [anon_sym_PLUS_PLUS2] = ACTIONS(1946), - [anon_sym_SLASH2] = ACTIONS(1944), - [anon_sym_mod2] = ACTIONS(1946), - [anon_sym_SLASH_SLASH2] = ACTIONS(1946), - [anon_sym_PLUS2] = ACTIONS(1944), - [anon_sym_bit_DASHshl2] = ACTIONS(1946), - [anon_sym_bit_DASHshr2] = ACTIONS(1946), - [anon_sym_bit_DASHand2] = ACTIONS(1946), - [anon_sym_bit_DASHxor2] = ACTIONS(1946), - [anon_sym_bit_DASHor2] = ACTIONS(1946), - [anon_sym_DOT] = ACTIONS(4902), - [anon_sym_err_GT] = ACTIONS(1944), - [anon_sym_out_GT] = ACTIONS(1944), - [anon_sym_e_GT] = ACTIONS(1944), - [anon_sym_o_GT] = ACTIONS(1944), - [anon_sym_err_PLUSout_GT] = ACTIONS(1944), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1944), - [anon_sym_o_PLUSe_GT] = ACTIONS(1944), - [anon_sym_e_PLUSo_GT] = ACTIONS(1944), - [anon_sym_err_GT_GT] = ACTIONS(1946), - [anon_sym_out_GT_GT] = ACTIONS(1946), - [anon_sym_e_GT_GT] = ACTIONS(1946), - [anon_sym_o_GT_GT] = ACTIONS(1946), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1946), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1946), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1946), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1946), - [anon_sym_POUND] = ACTIONS(247), - }, - [1601] = { - [sym_comment] = STATE(1601), - [sym__newline] = ACTIONS(4926), - [anon_sym_SEMI] = ACTIONS(4926), - [anon_sym_PIPE] = ACTIONS(4926), - [anon_sym_err_GT_PIPE] = ACTIONS(4926), - [anon_sym_out_GT_PIPE] = ACTIONS(4926), - [anon_sym_e_GT_PIPE] = ACTIONS(4926), - [anon_sym_o_GT_PIPE] = ACTIONS(4926), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4926), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4926), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4926), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4926), - [anon_sym_DOLLAR] = ACTIONS(4928), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_DASH2] = ACTIONS(4928), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4928), - [anon_sym_DOT_DOT2] = ACTIONS(4830), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4928), - [anon_sym_DOT_DOT_LT] = ACTIONS(4928), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4832), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4832), - [anon_sym_null] = ACTIONS(4926), - [anon_sym_true] = ACTIONS(4926), - [anon_sym_false] = ACTIONS(4926), - [aux_sym__val_number_decimal_token1] = ACTIONS(4928), - [aux_sym__val_number_decimal_token2] = ACTIONS(4926), - [aux_sym__val_number_decimal_token3] = ACTIONS(4926), - [aux_sym__val_number_decimal_token4] = ACTIONS(4926), - [aux_sym__val_number_token1] = ACTIONS(4926), - [aux_sym__val_number_token2] = ACTIONS(4926), - [aux_sym__val_number_token3] = ACTIONS(4926), - [aux_sym__val_number_token4] = ACTIONS(4926), - [aux_sym__val_number_token5] = ACTIONS(4926), - [aux_sym__val_number_token6] = ACTIONS(4926), - [anon_sym_0b] = ACTIONS(4928), - [anon_sym_0o] = ACTIONS(4928), - [anon_sym_0x] = ACTIONS(4928), - [sym_val_date] = ACTIONS(4926), - [anon_sym_DQUOTE] = ACTIONS(4926), - [sym__str_single_quotes] = ACTIONS(4926), - [sym__str_back_ticks] = ACTIONS(4926), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4926), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4926), - [anon_sym_err_GT] = ACTIONS(4928), - [anon_sym_out_GT] = ACTIONS(4928), - [anon_sym_e_GT] = ACTIONS(4928), - [anon_sym_o_GT] = ACTIONS(4928), - [anon_sym_err_PLUSout_GT] = ACTIONS(4928), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4928), - [anon_sym_o_PLUSe_GT] = ACTIONS(4928), - [anon_sym_e_PLUSo_GT] = ACTIONS(4928), - [anon_sym_err_GT_GT] = ACTIONS(4926), - [anon_sym_out_GT_GT] = ACTIONS(4926), - [anon_sym_e_GT_GT] = ACTIONS(4926), - [anon_sym_o_GT_GT] = ACTIONS(4926), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4926), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4926), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4926), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4926), - [aux_sym_unquoted_token1] = ACTIONS(4928), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4926), - }, - [1602] = { - [sym_cell_path] = STATE(2008), - [sym_path] = STATE(1894), - [sym_comment] = STATE(1602), - [aux_sym_cell_path_repeat1] = STATE(1702), - [sym__newline] = ACTIONS(2074), - [anon_sym_SEMI] = ACTIONS(2074), - [anon_sym_PIPE] = ACTIONS(2074), - [anon_sym_err_GT_PIPE] = ACTIONS(2074), - [anon_sym_out_GT_PIPE] = ACTIONS(2074), - [anon_sym_e_GT_PIPE] = ACTIONS(2074), - [anon_sym_o_GT_PIPE] = ACTIONS(2074), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2074), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2074), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2074), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2074), - [anon_sym_RPAREN] = ACTIONS(2074), - [anon_sym_GT2] = ACTIONS(2072), - [anon_sym_DASH2] = ACTIONS(2074), - [anon_sym_in2] = ACTIONS(2074), - [anon_sym_if] = ACTIONS(2074), - [anon_sym_LBRACE] = ACTIONS(2074), - [anon_sym_RBRACE] = ACTIONS(2074), - [anon_sym_EQ_GT] = ACTIONS(2074), - [anon_sym_STAR2] = ACTIONS(2072), - [anon_sym_and2] = ACTIONS(2074), - [anon_sym_xor2] = ACTIONS(2074), - [anon_sym_or2] = ACTIONS(2074), - [anon_sym_not_DASHin2] = ACTIONS(2074), - [anon_sym_starts_DASHwith2] = ACTIONS(2074), - [anon_sym_ends_DASHwith2] = ACTIONS(2074), - [anon_sym_EQ_EQ2] = ACTIONS(2074), - [anon_sym_BANG_EQ2] = ACTIONS(2074), - [anon_sym_LT2] = ACTIONS(2072), - [anon_sym_LT_EQ2] = ACTIONS(2074), - [anon_sym_GT_EQ2] = ACTIONS(2074), - [anon_sym_EQ_TILDE2] = ACTIONS(2074), - [anon_sym_BANG_TILDE2] = ACTIONS(2074), - [anon_sym_STAR_STAR2] = ACTIONS(2074), - [anon_sym_PLUS_PLUS2] = ACTIONS(2074), - [anon_sym_SLASH2] = ACTIONS(2072), - [anon_sym_mod2] = ACTIONS(2074), - [anon_sym_SLASH_SLASH2] = ACTIONS(2074), - [anon_sym_PLUS2] = ACTIONS(2072), - [anon_sym_bit_DASHshl2] = ACTIONS(2074), - [anon_sym_bit_DASHshr2] = ACTIONS(2074), - [anon_sym_bit_DASHand2] = ACTIONS(2074), - [anon_sym_bit_DASHxor2] = ACTIONS(2074), - [anon_sym_bit_DASHor2] = ACTIONS(2074), - [anon_sym_DOT] = ACTIONS(4902), - [anon_sym_err_GT] = ACTIONS(2072), - [anon_sym_out_GT] = ACTIONS(2072), - [anon_sym_e_GT] = ACTIONS(2072), - [anon_sym_o_GT] = ACTIONS(2072), - [anon_sym_err_PLUSout_GT] = ACTIONS(2072), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2072), - [anon_sym_o_PLUSe_GT] = ACTIONS(2072), - [anon_sym_e_PLUSo_GT] = ACTIONS(2072), - [anon_sym_err_GT_GT] = ACTIONS(2074), - [anon_sym_out_GT_GT] = ACTIONS(2074), - [anon_sym_e_GT_GT] = ACTIONS(2074), - [anon_sym_o_GT_GT] = ACTIONS(2074), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2074), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2074), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2074), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2074), - [anon_sym_POUND] = ACTIONS(247), - }, - [1603] = { - [sym_cell_path] = STATE(2009), - [sym_path] = STATE(1894), - [sym_comment] = STATE(1603), - [aux_sym_cell_path_repeat1] = STATE(1702), - [sym__newline] = ACTIONS(1911), - [anon_sym_SEMI] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_err_GT_PIPE] = ACTIONS(1911), - [anon_sym_out_GT_PIPE] = ACTIONS(1911), - [anon_sym_e_GT_PIPE] = ACTIONS(1911), - [anon_sym_o_GT_PIPE] = ACTIONS(1911), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1911), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1911), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1911), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1911), - [anon_sym_RPAREN] = ACTIONS(1911), - [anon_sym_GT2] = ACTIONS(1907), - [anon_sym_DASH2] = ACTIONS(1911), - [anon_sym_in2] = ACTIONS(1911), - [anon_sym_if] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1911), - [anon_sym_RBRACE] = ACTIONS(1911), - [anon_sym_EQ_GT] = ACTIONS(1911), - [anon_sym_STAR2] = ACTIONS(1907), - [anon_sym_and2] = ACTIONS(1911), - [anon_sym_xor2] = ACTIONS(1911), - [anon_sym_or2] = ACTIONS(1911), - [anon_sym_not_DASHin2] = ACTIONS(1911), - [anon_sym_starts_DASHwith2] = ACTIONS(1911), - [anon_sym_ends_DASHwith2] = ACTIONS(1911), - [anon_sym_EQ_EQ2] = ACTIONS(1911), - [anon_sym_BANG_EQ2] = ACTIONS(1911), - [anon_sym_LT2] = ACTIONS(1907), - [anon_sym_LT_EQ2] = ACTIONS(1911), - [anon_sym_GT_EQ2] = ACTIONS(1911), - [anon_sym_EQ_TILDE2] = ACTIONS(1911), - [anon_sym_BANG_TILDE2] = ACTIONS(1911), - [anon_sym_STAR_STAR2] = ACTIONS(1911), - [anon_sym_PLUS_PLUS2] = ACTIONS(1911), - [anon_sym_SLASH2] = ACTIONS(1907), - [anon_sym_mod2] = ACTIONS(1911), - [anon_sym_SLASH_SLASH2] = ACTIONS(1911), - [anon_sym_PLUS2] = ACTIONS(1907), - [anon_sym_bit_DASHshl2] = ACTIONS(1911), - [anon_sym_bit_DASHshr2] = ACTIONS(1911), - [anon_sym_bit_DASHand2] = ACTIONS(1911), - [anon_sym_bit_DASHxor2] = ACTIONS(1911), - [anon_sym_bit_DASHor2] = ACTIONS(1911), - [anon_sym_DOT] = ACTIONS(4902), - [anon_sym_err_GT] = ACTIONS(1907), - [anon_sym_out_GT] = ACTIONS(1907), - [anon_sym_e_GT] = ACTIONS(1907), - [anon_sym_o_GT] = ACTIONS(1907), - [anon_sym_err_PLUSout_GT] = ACTIONS(1907), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1907), - [anon_sym_o_PLUSe_GT] = ACTIONS(1907), - [anon_sym_e_PLUSo_GT] = ACTIONS(1907), - [anon_sym_err_GT_GT] = ACTIONS(1911), - [anon_sym_out_GT_GT] = ACTIONS(1911), - [anon_sym_e_GT_GT] = ACTIONS(1911), - [anon_sym_o_GT_GT] = ACTIONS(1911), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1911), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1911), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1911), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1911), - [anon_sym_POUND] = ACTIONS(247), - }, - [1604] = { - [sym_comment] = STATE(1604), - [ts_builtin_sym_end] = ACTIONS(1675), - [sym__newline] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_err_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_GT_PIPE] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1675), - [anon_sym_in2] = ACTIONS(1675), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1675), - [anon_sym_xor2] = ACTIONS(1675), - [anon_sym_or2] = ACTIONS(1675), - [anon_sym_not_DASHin2] = ACTIONS(1675), - [anon_sym_starts_DASHwith2] = ACTIONS(1675), - [anon_sym_ends_DASHwith2] = ACTIONS(1675), - [anon_sym_EQ_EQ2] = ACTIONS(1675), - [anon_sym_BANG_EQ2] = ACTIONS(1675), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1675), - [anon_sym_GT_EQ2] = ACTIONS(1675), - [anon_sym_EQ_TILDE2] = ACTIONS(1675), - [anon_sym_BANG_TILDE2] = ACTIONS(1675), - [anon_sym_LPAREN2] = ACTIONS(1675), - [anon_sym_STAR_STAR2] = ACTIONS(1675), - [anon_sym_PLUS_PLUS2] = ACTIONS(1675), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1675), - [anon_sym_SLASH_SLASH2] = ACTIONS(1675), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1675), - [anon_sym_bit_DASHshr2] = ACTIONS(1675), - [anon_sym_bit_DASHand2] = ACTIONS(1675), - [anon_sym_bit_DASHxor2] = ACTIONS(1675), - [anon_sym_bit_DASHor2] = ACTIONS(1675), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [aux_sym__immediate_decimal_token2] = ACTIONS(4930), - [sym_filesize_unit] = ACTIONS(1673), - [sym_duration_unit] = ACTIONS(1675), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1675), - [anon_sym_out_GT_GT] = ACTIONS(1675), - [anon_sym_e_GT_GT] = ACTIONS(1675), - [anon_sym_o_GT_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), - [aux_sym_unquoted_token2] = ACTIONS(1673), - [anon_sym_POUND] = ACTIONS(247), - }, - [1605] = { - [sym_comment] = STATE(1605), + [1622] = { + [sym_comment] = STATE(1622), [sym__newline] = ACTIONS(1004), [anon_sym_SEMI] = ACTIONS(1004), [anon_sym_PIPE] = ACTIONS(1004), @@ -223361,2320 +224820,892 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(1004), }, - [1606] = { - [sym_cell_path] = STATE(1688), - [sym_path] = STATE(1894), - [sym_comment] = STATE(1606), - [aux_sym_cell_path_repeat1] = STATE(1702), - [sym__newline] = ACTIONS(963), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(963), - [anon_sym_err_GT_PIPE] = ACTIONS(963), - [anon_sym_out_GT_PIPE] = ACTIONS(963), - [anon_sym_e_GT_PIPE] = ACTIONS(963), - [anon_sym_o_GT_PIPE] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), - [anon_sym_RPAREN] = ACTIONS(963), - [anon_sym_GT2] = ACTIONS(961), - [anon_sym_DASH2] = ACTIONS(963), - [anon_sym_in2] = ACTIONS(963), - [anon_sym_if] = ACTIONS(963), - [anon_sym_LBRACE] = ACTIONS(963), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_EQ_GT] = ACTIONS(963), - [anon_sym_STAR2] = ACTIONS(961), - [anon_sym_and2] = ACTIONS(963), - [anon_sym_xor2] = ACTIONS(963), - [anon_sym_or2] = ACTIONS(963), - [anon_sym_not_DASHin2] = ACTIONS(963), - [anon_sym_starts_DASHwith2] = ACTIONS(963), - [anon_sym_ends_DASHwith2] = ACTIONS(963), - [anon_sym_EQ_EQ2] = ACTIONS(963), - [anon_sym_BANG_EQ2] = ACTIONS(963), - [anon_sym_LT2] = ACTIONS(961), - [anon_sym_LT_EQ2] = ACTIONS(963), - [anon_sym_GT_EQ2] = ACTIONS(963), - [anon_sym_EQ_TILDE2] = ACTIONS(963), - [anon_sym_BANG_TILDE2] = ACTIONS(963), - [anon_sym_STAR_STAR2] = ACTIONS(963), - [anon_sym_PLUS_PLUS2] = ACTIONS(963), - [anon_sym_SLASH2] = ACTIONS(961), - [anon_sym_mod2] = ACTIONS(963), - [anon_sym_SLASH_SLASH2] = ACTIONS(963), - [anon_sym_PLUS2] = ACTIONS(961), - [anon_sym_bit_DASHshl2] = ACTIONS(963), - [anon_sym_bit_DASHshr2] = ACTIONS(963), - [anon_sym_bit_DASHand2] = ACTIONS(963), - [anon_sym_bit_DASHxor2] = ACTIONS(963), - [anon_sym_bit_DASHor2] = ACTIONS(963), - [anon_sym_DOT] = ACTIONS(4902), - [anon_sym_err_GT] = ACTIONS(961), - [anon_sym_out_GT] = ACTIONS(961), - [anon_sym_e_GT] = ACTIONS(961), - [anon_sym_o_GT] = ACTIONS(961), - [anon_sym_err_PLUSout_GT] = ACTIONS(961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(961), - [anon_sym_o_PLUSe_GT] = ACTIONS(961), - [anon_sym_e_PLUSo_GT] = ACTIONS(961), - [anon_sym_err_GT_GT] = ACTIONS(963), - [anon_sym_out_GT_GT] = ACTIONS(963), - [anon_sym_e_GT_GT] = ACTIONS(963), - [anon_sym_o_GT_GT] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), - [anon_sym_POUND] = ACTIONS(247), - }, - [1607] = { - [sym_cell_path] = STATE(2004), - [sym_path] = STATE(1894), - [sym_comment] = STATE(1607), - [aux_sym_cell_path_repeat1] = STATE(1702), - [sym__newline] = ACTIONS(2002), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_PIPE] = ACTIONS(2002), - [anon_sym_err_GT_PIPE] = ACTIONS(2002), - [anon_sym_out_GT_PIPE] = ACTIONS(2002), - [anon_sym_e_GT_PIPE] = ACTIONS(2002), - [anon_sym_o_GT_PIPE] = ACTIONS(2002), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2002), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2002), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2002), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2002), - [anon_sym_RPAREN] = ACTIONS(2002), - [anon_sym_GT2] = ACTIONS(2000), - [anon_sym_DASH2] = ACTIONS(2002), - [anon_sym_in2] = ACTIONS(2002), - [anon_sym_if] = ACTIONS(2002), - [anon_sym_LBRACE] = ACTIONS(2002), - [anon_sym_RBRACE] = ACTIONS(2002), - [anon_sym_EQ_GT] = ACTIONS(2002), - [anon_sym_STAR2] = ACTIONS(2000), - [anon_sym_and2] = ACTIONS(2002), - [anon_sym_xor2] = ACTIONS(2002), - [anon_sym_or2] = ACTIONS(2002), - [anon_sym_not_DASHin2] = ACTIONS(2002), - [anon_sym_starts_DASHwith2] = ACTIONS(2002), - [anon_sym_ends_DASHwith2] = ACTIONS(2002), - [anon_sym_EQ_EQ2] = ACTIONS(2002), - [anon_sym_BANG_EQ2] = ACTIONS(2002), - [anon_sym_LT2] = ACTIONS(2000), - [anon_sym_LT_EQ2] = ACTIONS(2002), - [anon_sym_GT_EQ2] = ACTIONS(2002), - [anon_sym_EQ_TILDE2] = ACTIONS(2002), - [anon_sym_BANG_TILDE2] = ACTIONS(2002), - [anon_sym_STAR_STAR2] = ACTIONS(2002), - [anon_sym_PLUS_PLUS2] = ACTIONS(2002), - [anon_sym_SLASH2] = ACTIONS(2000), - [anon_sym_mod2] = ACTIONS(2002), - [anon_sym_SLASH_SLASH2] = ACTIONS(2002), - [anon_sym_PLUS2] = ACTIONS(2000), - [anon_sym_bit_DASHshl2] = ACTIONS(2002), - [anon_sym_bit_DASHshr2] = ACTIONS(2002), - [anon_sym_bit_DASHand2] = ACTIONS(2002), - [anon_sym_bit_DASHxor2] = ACTIONS(2002), - [anon_sym_bit_DASHor2] = ACTIONS(2002), - [anon_sym_DOT] = ACTIONS(4902), - [anon_sym_err_GT] = ACTIONS(2000), - [anon_sym_out_GT] = ACTIONS(2000), - [anon_sym_e_GT] = ACTIONS(2000), - [anon_sym_o_GT] = ACTIONS(2000), - [anon_sym_err_PLUSout_GT] = ACTIONS(2000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2000), - [anon_sym_o_PLUSe_GT] = ACTIONS(2000), - [anon_sym_e_PLUSo_GT] = ACTIONS(2000), - [anon_sym_err_GT_GT] = ACTIONS(2002), - [anon_sym_out_GT_GT] = ACTIONS(2002), - [anon_sym_e_GT_GT] = ACTIONS(2002), - [anon_sym_o_GT_GT] = ACTIONS(2002), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2002), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2002), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2002), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2002), - [anon_sym_POUND] = ACTIONS(247), - }, - [1608] = { - [sym_cell_path] = STATE(1991), - [sym_path] = STATE(1894), - [sym_comment] = STATE(1608), - [aux_sym_cell_path_repeat1] = STATE(1702), - [sym__newline] = ACTIONS(1950), - [anon_sym_SEMI] = ACTIONS(1950), - [anon_sym_PIPE] = ACTIONS(1950), - [anon_sym_err_GT_PIPE] = ACTIONS(1950), - [anon_sym_out_GT_PIPE] = ACTIONS(1950), - [anon_sym_e_GT_PIPE] = ACTIONS(1950), - [anon_sym_o_GT_PIPE] = ACTIONS(1950), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1950), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1950), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1950), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1950), - [anon_sym_RPAREN] = ACTIONS(1950), - [anon_sym_GT2] = ACTIONS(1948), - [anon_sym_DASH2] = ACTIONS(1950), - [anon_sym_in2] = ACTIONS(1950), - [anon_sym_if] = ACTIONS(1950), - [anon_sym_LBRACE] = ACTIONS(1950), - [anon_sym_RBRACE] = ACTIONS(1950), - [anon_sym_EQ_GT] = ACTIONS(1950), - [anon_sym_STAR2] = ACTIONS(1948), - [anon_sym_and2] = ACTIONS(1950), - [anon_sym_xor2] = ACTIONS(1950), - [anon_sym_or2] = ACTIONS(1950), - [anon_sym_not_DASHin2] = ACTIONS(1950), - [anon_sym_starts_DASHwith2] = ACTIONS(1950), - [anon_sym_ends_DASHwith2] = ACTIONS(1950), - [anon_sym_EQ_EQ2] = ACTIONS(1950), - [anon_sym_BANG_EQ2] = ACTIONS(1950), - [anon_sym_LT2] = ACTIONS(1948), - [anon_sym_LT_EQ2] = ACTIONS(1950), - [anon_sym_GT_EQ2] = ACTIONS(1950), - [anon_sym_EQ_TILDE2] = ACTIONS(1950), - [anon_sym_BANG_TILDE2] = ACTIONS(1950), - [anon_sym_STAR_STAR2] = ACTIONS(1950), - [anon_sym_PLUS_PLUS2] = ACTIONS(1950), - [anon_sym_SLASH2] = ACTIONS(1948), - [anon_sym_mod2] = ACTIONS(1950), - [anon_sym_SLASH_SLASH2] = ACTIONS(1950), - [anon_sym_PLUS2] = ACTIONS(1948), - [anon_sym_bit_DASHshl2] = ACTIONS(1950), - [anon_sym_bit_DASHshr2] = ACTIONS(1950), - [anon_sym_bit_DASHand2] = ACTIONS(1950), - [anon_sym_bit_DASHxor2] = ACTIONS(1950), - [anon_sym_bit_DASHor2] = ACTIONS(1950), - [anon_sym_DOT] = ACTIONS(4902), - [anon_sym_err_GT] = ACTIONS(1948), - [anon_sym_out_GT] = ACTIONS(1948), - [anon_sym_e_GT] = ACTIONS(1948), - [anon_sym_o_GT] = ACTIONS(1948), - [anon_sym_err_PLUSout_GT] = ACTIONS(1948), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1948), - [anon_sym_o_PLUSe_GT] = ACTIONS(1948), - [anon_sym_e_PLUSo_GT] = ACTIONS(1948), - [anon_sym_err_GT_GT] = ACTIONS(1950), - [anon_sym_out_GT_GT] = ACTIONS(1950), - [anon_sym_e_GT_GT] = ACTIONS(1950), - [anon_sym_o_GT_GT] = ACTIONS(1950), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1950), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1950), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1950), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1950), - [anon_sym_POUND] = ACTIONS(247), - }, - [1609] = { - [sym_comment] = STATE(1609), - [sym__newline] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(980), - [anon_sym_err_GT_PIPE] = ACTIONS(980), - [anon_sym_out_GT_PIPE] = ACTIONS(980), - [anon_sym_e_GT_PIPE] = ACTIONS(980), - [anon_sym_o_GT_PIPE] = ACTIONS(980), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), - [anon_sym_LBRACK] = ACTIONS(980), - [anon_sym_LPAREN] = ACTIONS(980), - [anon_sym_RPAREN] = ACTIONS(980), - [anon_sym_DOLLAR] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_DASH2] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(978), - [anon_sym_QMARK2] = ACTIONS(4932), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_DOT_DOT_EQ] = ACTIONS(980), - [anon_sym_DOT_DOT_LT] = ACTIONS(980), - [anon_sym_null] = ACTIONS(980), - [anon_sym_true] = ACTIONS(980), - [anon_sym_false] = ACTIONS(980), - [aux_sym__val_number_decimal_token1] = ACTIONS(978), - [aux_sym__val_number_decimal_token2] = ACTIONS(980), - [aux_sym__val_number_decimal_token3] = ACTIONS(980), - [aux_sym__val_number_decimal_token4] = ACTIONS(980), - [aux_sym__val_number_token1] = ACTIONS(980), - [aux_sym__val_number_token2] = ACTIONS(980), - [aux_sym__val_number_token3] = ACTIONS(980), - [aux_sym__val_number_token4] = ACTIONS(980), - [aux_sym__val_number_token5] = ACTIONS(980), - [aux_sym__val_number_token6] = ACTIONS(980), - [anon_sym_0b] = ACTIONS(978), - [anon_sym_0o] = ACTIONS(978), - [anon_sym_0x] = ACTIONS(978), - [sym_val_date] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym__str_single_quotes] = ACTIONS(980), - [sym__str_back_ticks] = ACTIONS(980), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(980), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(980), - [anon_sym_err_GT] = ACTIONS(978), - [anon_sym_out_GT] = ACTIONS(978), - [anon_sym_e_GT] = ACTIONS(978), - [anon_sym_o_GT] = ACTIONS(978), - [anon_sym_err_PLUSout_GT] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT] = ACTIONS(978), - [anon_sym_o_PLUSe_GT] = ACTIONS(978), - [anon_sym_e_PLUSo_GT] = ACTIONS(978), - [anon_sym_err_GT_GT] = ACTIONS(980), - [anon_sym_out_GT_GT] = ACTIONS(980), - [anon_sym_e_GT_GT] = ACTIONS(980), - [anon_sym_o_GT_GT] = ACTIONS(980), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), - [aux_sym_unquoted_token1] = ACTIONS(978), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(980), - }, - [1610] = { - [sym_comment] = STATE(1610), - [sym_long_flag_identifier] = ACTIONS(4934), - [sym__newline] = ACTIONS(4936), - [anon_sym_SEMI] = ACTIONS(4936), - [anon_sym_PIPE] = ACTIONS(4936), - [anon_sym_err_GT_PIPE] = ACTIONS(4936), - [anon_sym_out_GT_PIPE] = ACTIONS(4936), - [anon_sym_e_GT_PIPE] = ACTIONS(4936), - [anon_sym_o_GT_PIPE] = ACTIONS(4936), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4936), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4936), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4936), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4936), - [anon_sym_LBRACK] = ACTIONS(4936), - [anon_sym_LPAREN] = ACTIONS(4936), - [anon_sym_RPAREN] = ACTIONS(4936), - [anon_sym_DOLLAR] = ACTIONS(4938), - [anon_sym_DASH_DASH] = ACTIONS(4936), - [anon_sym_DASH2] = ACTIONS(4938), - [anon_sym_LBRACE] = ACTIONS(4936), - [anon_sym_RBRACE] = ACTIONS(4936), - [anon_sym_DOT_DOT] = ACTIONS(4938), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4936), - [anon_sym_DOT_DOT_LT] = ACTIONS(4936), - [anon_sym_null] = ACTIONS(4938), - [anon_sym_true] = ACTIONS(4938), - [anon_sym_false] = ACTIONS(4938), - [aux_sym__val_number_decimal_token1] = ACTIONS(4938), - [aux_sym__val_number_decimal_token2] = ACTIONS(4936), - [aux_sym__val_number_decimal_token3] = ACTIONS(4936), - [aux_sym__val_number_decimal_token4] = ACTIONS(4936), - [aux_sym__val_number_token1] = ACTIONS(4938), - [aux_sym__val_number_token2] = ACTIONS(4938), - [aux_sym__val_number_token3] = ACTIONS(4938), - [aux_sym__val_number_token4] = ACTIONS(4938), - [aux_sym__val_number_token5] = ACTIONS(4936), - [aux_sym__val_number_token6] = ACTIONS(4938), - [anon_sym_0b] = ACTIONS(4938), - [anon_sym_0o] = ACTIONS(4938), - [anon_sym_0x] = ACTIONS(4938), - [sym_val_date] = ACTIONS(4938), - [anon_sym_DQUOTE] = ACTIONS(4936), - [sym__str_single_quotes] = ACTIONS(4936), - [sym__str_back_ticks] = ACTIONS(4936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4936), - [anon_sym_err_GT] = ACTIONS(4938), - [anon_sym_out_GT] = ACTIONS(4938), - [anon_sym_e_GT] = ACTIONS(4938), - [anon_sym_o_GT] = ACTIONS(4938), - [anon_sym_err_PLUSout_GT] = ACTIONS(4938), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4938), - [anon_sym_o_PLUSe_GT] = ACTIONS(4938), - [anon_sym_e_PLUSo_GT] = ACTIONS(4938), - [anon_sym_err_GT_GT] = ACTIONS(4936), - [anon_sym_out_GT_GT] = ACTIONS(4936), - [anon_sym_e_GT_GT] = ACTIONS(4936), - [anon_sym_o_GT_GT] = ACTIONS(4936), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4936), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4936), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4936), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4936), - [anon_sym_EQ2] = ACTIONS(4940), - [aux_sym_unquoted_token1] = ACTIONS(4938), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4936), - }, - [1611] = { - [sym_cell_path] = STATE(1993), - [sym_path] = STATE(1894), - [sym_comment] = STATE(1611), - [aux_sym_cell_path_repeat1] = STATE(1702), - [sym__newline] = ACTIONS(1962), - [anon_sym_SEMI] = ACTIONS(1962), - [anon_sym_PIPE] = ACTIONS(1962), - [anon_sym_err_GT_PIPE] = ACTIONS(1962), - [anon_sym_out_GT_PIPE] = ACTIONS(1962), - [anon_sym_e_GT_PIPE] = ACTIONS(1962), - [anon_sym_o_GT_PIPE] = ACTIONS(1962), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1962), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1962), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1962), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1962), - [anon_sym_RPAREN] = ACTIONS(1962), - [anon_sym_GT2] = ACTIONS(1960), - [anon_sym_DASH2] = ACTIONS(1962), - [anon_sym_in2] = ACTIONS(1962), - [anon_sym_if] = ACTIONS(1962), - [anon_sym_LBRACE] = ACTIONS(1962), - [anon_sym_RBRACE] = ACTIONS(1962), - [anon_sym_EQ_GT] = ACTIONS(1962), - [anon_sym_STAR2] = ACTIONS(1960), - [anon_sym_and2] = ACTIONS(1962), - [anon_sym_xor2] = ACTIONS(1962), - [anon_sym_or2] = ACTIONS(1962), - [anon_sym_not_DASHin2] = ACTIONS(1962), - [anon_sym_starts_DASHwith2] = ACTIONS(1962), - [anon_sym_ends_DASHwith2] = ACTIONS(1962), - [anon_sym_EQ_EQ2] = ACTIONS(1962), - [anon_sym_BANG_EQ2] = ACTIONS(1962), - [anon_sym_LT2] = ACTIONS(1960), - [anon_sym_LT_EQ2] = ACTIONS(1962), - [anon_sym_GT_EQ2] = ACTIONS(1962), - [anon_sym_EQ_TILDE2] = ACTIONS(1962), - [anon_sym_BANG_TILDE2] = ACTIONS(1962), - [anon_sym_STAR_STAR2] = ACTIONS(1962), - [anon_sym_PLUS_PLUS2] = ACTIONS(1962), - [anon_sym_SLASH2] = ACTIONS(1960), - [anon_sym_mod2] = ACTIONS(1962), - [anon_sym_SLASH_SLASH2] = ACTIONS(1962), - [anon_sym_PLUS2] = ACTIONS(1960), - [anon_sym_bit_DASHshl2] = ACTIONS(1962), - [anon_sym_bit_DASHshr2] = ACTIONS(1962), - [anon_sym_bit_DASHand2] = ACTIONS(1962), - [anon_sym_bit_DASHxor2] = ACTIONS(1962), - [anon_sym_bit_DASHor2] = ACTIONS(1962), - [anon_sym_DOT] = ACTIONS(4902), - [anon_sym_err_GT] = ACTIONS(1960), - [anon_sym_out_GT] = ACTIONS(1960), - [anon_sym_e_GT] = ACTIONS(1960), - [anon_sym_o_GT] = ACTIONS(1960), - [anon_sym_err_PLUSout_GT] = ACTIONS(1960), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1960), - [anon_sym_o_PLUSe_GT] = ACTIONS(1960), - [anon_sym_e_PLUSo_GT] = ACTIONS(1960), - [anon_sym_err_GT_GT] = ACTIONS(1962), - [anon_sym_out_GT_GT] = ACTIONS(1962), - [anon_sym_e_GT_GT] = ACTIONS(1962), - [anon_sym_o_GT_GT] = ACTIONS(1962), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1962), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1962), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1962), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1962), - [anon_sym_POUND] = ACTIONS(247), - }, - [1612] = { - [sym_comment] = STATE(1612), - [anon_sym_EQ] = ACTIONS(4942), - [anon_sym_PLUS_EQ] = ACTIONS(4944), - [anon_sym_DASH_EQ] = ACTIONS(4944), - [anon_sym_STAR_EQ] = ACTIONS(4944), - [anon_sym_SLASH_EQ] = ACTIONS(4944), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4944), - [sym__newline] = ACTIONS(1032), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_err_GT_PIPE] = ACTIONS(1032), - [anon_sym_out_GT_PIPE] = ACTIONS(1032), - [anon_sym_e_GT_PIPE] = ACTIONS(1032), - [anon_sym_o_GT_PIPE] = ACTIONS(1032), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1032), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1032), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1032), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1032), - [anon_sym_GT2] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(1030), - [anon_sym_in2] = ACTIONS(1032), - [anon_sym_STAR2] = ACTIONS(1030), - [anon_sym_and2] = ACTIONS(1032), - [anon_sym_xor2] = ACTIONS(1032), - [anon_sym_or2] = ACTIONS(1032), - [anon_sym_not_DASHin2] = ACTIONS(1032), - [anon_sym_starts_DASHwith2] = ACTIONS(1032), - [anon_sym_ends_DASHwith2] = ACTIONS(1032), - [anon_sym_EQ_EQ2] = ACTIONS(1032), - [anon_sym_BANG_EQ2] = ACTIONS(1032), - [anon_sym_LT2] = ACTIONS(1030), - [anon_sym_LT_EQ2] = ACTIONS(1032), - [anon_sym_GT_EQ2] = ACTIONS(1032), - [anon_sym_EQ_TILDE2] = ACTIONS(1032), - [anon_sym_BANG_TILDE2] = ACTIONS(1032), - [anon_sym_STAR_STAR2] = ACTIONS(1032), - [anon_sym_PLUS_PLUS2] = ACTIONS(1030), - [anon_sym_SLASH2] = ACTIONS(1030), - [anon_sym_mod2] = ACTIONS(1032), - [anon_sym_SLASH_SLASH2] = ACTIONS(1032), - [anon_sym_PLUS2] = ACTIONS(1030), - [anon_sym_bit_DASHshl2] = ACTIONS(1032), - [anon_sym_bit_DASHshr2] = ACTIONS(1032), - [anon_sym_bit_DASHand2] = ACTIONS(1032), - [anon_sym_bit_DASHxor2] = ACTIONS(1032), - [anon_sym_bit_DASHor2] = ACTIONS(1032), - [anon_sym_DOT_DOT2] = ACTIONS(1042), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), - [anon_sym_err_GT] = ACTIONS(1030), - [anon_sym_out_GT] = ACTIONS(1030), - [anon_sym_e_GT] = ACTIONS(1030), - [anon_sym_o_GT] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT] = ACTIONS(1030), - [anon_sym_err_GT_GT] = ACTIONS(1032), - [anon_sym_out_GT_GT] = ACTIONS(1032), - [anon_sym_e_GT_GT] = ACTIONS(1032), - [anon_sym_o_GT_GT] = ACTIONS(1032), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1032), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1032), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1032), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1032), - [anon_sym_POUND] = ACTIONS(247), - }, - [1613] = { - [sym_cell_path] = STATE(1994), - [sym_path] = STATE(1894), - [sym_comment] = STATE(1613), - [aux_sym_cell_path_repeat1] = STATE(1702), - [sym__newline] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_err_GT_PIPE] = ACTIONS(1970), - [anon_sym_out_GT_PIPE] = ACTIONS(1970), - [anon_sym_e_GT_PIPE] = ACTIONS(1970), - [anon_sym_o_GT_PIPE] = ACTIONS(1970), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1970), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1970), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1970), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1970), - [anon_sym_RPAREN] = ACTIONS(1970), - [anon_sym_GT2] = ACTIONS(1968), - [anon_sym_DASH2] = ACTIONS(1970), - [anon_sym_in2] = ACTIONS(1970), - [anon_sym_if] = ACTIONS(1970), - [anon_sym_LBRACE] = ACTIONS(1970), - [anon_sym_RBRACE] = ACTIONS(1970), - [anon_sym_EQ_GT] = ACTIONS(1970), - [anon_sym_STAR2] = ACTIONS(1968), - [anon_sym_and2] = ACTIONS(1970), - [anon_sym_xor2] = ACTIONS(1970), - [anon_sym_or2] = ACTIONS(1970), - [anon_sym_not_DASHin2] = ACTIONS(1970), - [anon_sym_starts_DASHwith2] = ACTIONS(1970), - [anon_sym_ends_DASHwith2] = ACTIONS(1970), - [anon_sym_EQ_EQ2] = ACTIONS(1970), - [anon_sym_BANG_EQ2] = ACTIONS(1970), - [anon_sym_LT2] = ACTIONS(1968), - [anon_sym_LT_EQ2] = ACTIONS(1970), - [anon_sym_GT_EQ2] = ACTIONS(1970), - [anon_sym_EQ_TILDE2] = ACTIONS(1970), - [anon_sym_BANG_TILDE2] = ACTIONS(1970), - [anon_sym_STAR_STAR2] = ACTIONS(1970), - [anon_sym_PLUS_PLUS2] = ACTIONS(1970), - [anon_sym_SLASH2] = ACTIONS(1968), - [anon_sym_mod2] = ACTIONS(1970), - [anon_sym_SLASH_SLASH2] = ACTIONS(1970), - [anon_sym_PLUS2] = ACTIONS(1968), - [anon_sym_bit_DASHshl2] = ACTIONS(1970), - [anon_sym_bit_DASHshr2] = ACTIONS(1970), - [anon_sym_bit_DASHand2] = ACTIONS(1970), - [anon_sym_bit_DASHxor2] = ACTIONS(1970), - [anon_sym_bit_DASHor2] = ACTIONS(1970), - [anon_sym_DOT] = ACTIONS(4902), - [anon_sym_err_GT] = ACTIONS(1968), - [anon_sym_out_GT] = ACTIONS(1968), - [anon_sym_e_GT] = ACTIONS(1968), - [anon_sym_o_GT] = ACTIONS(1968), - [anon_sym_err_PLUSout_GT] = ACTIONS(1968), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1968), - [anon_sym_o_PLUSe_GT] = ACTIONS(1968), - [anon_sym_e_PLUSo_GT] = ACTIONS(1968), - [anon_sym_err_GT_GT] = ACTIONS(1970), - [anon_sym_out_GT_GT] = ACTIONS(1970), - [anon_sym_e_GT_GT] = ACTIONS(1970), - [anon_sym_o_GT_GT] = ACTIONS(1970), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1970), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1970), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1970), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1970), - [anon_sym_POUND] = ACTIONS(247), - }, - [1614] = { - [sym_comment] = STATE(1614), - [sym__newline] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_err_GT_PIPE] = ACTIONS(992), - [anon_sym_out_GT_PIPE] = ACTIONS(992), - [anon_sym_e_GT_PIPE] = ACTIONS(992), - [anon_sym_o_GT_PIPE] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_RPAREN] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_DOT_DOT] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(992), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ] = ACTIONS(992), - [anon_sym_DOT_DOT_LT] = ACTIONS(992), - [anon_sym_null] = ACTIONS(992), - [anon_sym_true] = ACTIONS(992), - [anon_sym_false] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(992), - [aux_sym__val_number_decimal_token3] = ACTIONS(992), - [aux_sym__val_number_decimal_token4] = ACTIONS(992), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [aux_sym__val_number_token4] = ACTIONS(992), - [aux_sym__val_number_token5] = ACTIONS(992), - [aux_sym__val_number_token6] = ACTIONS(992), - [anon_sym_0b] = ACTIONS(990), - [anon_sym_0o] = ACTIONS(990), - [anon_sym_0x] = ACTIONS(990), - [sym_val_date] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), - [aux_sym_unquoted_token1] = ACTIONS(990), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(992), - }, - [1615] = { - [sym_comment] = STATE(1615), - [sym__newline] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(2250), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_err_GT_PIPE] = ACTIONS(2250), - [anon_sym_out_GT_PIPE] = ACTIONS(2250), - [anon_sym_e_GT_PIPE] = ACTIONS(2250), - [anon_sym_o_GT_PIPE] = ACTIONS(2250), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2250), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2250), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2250), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2248), - [anon_sym_RPAREN] = ACTIONS(2250), - [anon_sym_DOLLAR] = ACTIONS(2248), - [anon_sym_DASH_DASH] = ACTIONS(2248), - [anon_sym_DASH2] = ACTIONS(2248), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_DOT_DOT] = ACTIONS(2248), - [anon_sym_LPAREN2] = ACTIONS(2250), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2248), - [anon_sym_DOT_DOT_LT] = ACTIONS(2248), - [anon_sym_null] = ACTIONS(2248), - [anon_sym_true] = ACTIONS(2248), - [anon_sym_false] = ACTIONS(2248), - [aux_sym__val_number_decimal_token1] = ACTIONS(2248), - [aux_sym__val_number_decimal_token2] = ACTIONS(2248), - [aux_sym__val_number_decimal_token3] = ACTIONS(2248), - [aux_sym__val_number_decimal_token4] = ACTIONS(2248), - [aux_sym__val_number_token1] = ACTIONS(2248), - [aux_sym__val_number_token2] = ACTIONS(2248), - [aux_sym__val_number_token3] = ACTIONS(2248), - [aux_sym__val_number_token4] = ACTIONS(2248), - [aux_sym__val_number_token5] = ACTIONS(2248), - [aux_sym__val_number_token6] = ACTIONS(2248), - [anon_sym_0b] = ACTIONS(2248), - [anon_sym_0o] = ACTIONS(2248), - [anon_sym_0x] = ACTIONS(2248), - [sym_val_date] = ACTIONS(2248), - [anon_sym_DQUOTE] = ACTIONS(2250), - [sym__str_single_quotes] = ACTIONS(2250), - [sym__str_back_ticks] = ACTIONS(2250), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2250), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2250), - [anon_sym_err_GT] = ACTIONS(2248), - [anon_sym_out_GT] = ACTIONS(2248), - [anon_sym_e_GT] = ACTIONS(2248), - [anon_sym_o_GT] = ACTIONS(2248), - [anon_sym_err_PLUSout_GT] = ACTIONS(2248), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2248), - [anon_sym_o_PLUSe_GT] = ACTIONS(2248), - [anon_sym_e_PLUSo_GT] = ACTIONS(2248), - [anon_sym_err_GT_GT] = ACTIONS(2248), - [anon_sym_out_GT_GT] = ACTIONS(2248), - [anon_sym_e_GT_GT] = ACTIONS(2248), - [anon_sym_o_GT_GT] = ACTIONS(2248), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2248), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2248), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2248), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2248), - [aux_sym_unquoted_token1] = ACTIONS(2248), - [aux_sym_unquoted_token4] = ACTIONS(2248), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2250), - }, - [1616] = { - [sym_comment] = STATE(1616), - [ts_builtin_sym_end] = ACTIONS(1741), - [sym__newline] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_err_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_GT_PIPE] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_DOT_DOT2] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), - [anon_sym_DOT_DOT_LT] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), - [anon_sym_null] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1741), - [aux_sym__val_number_token5] = ACTIONS(1741), - [aux_sym__val_number_token6] = ACTIONS(1741), - [anon_sym_0b] = ACTIONS(1739), - [anon_sym_0o] = ACTIONS(1739), - [anon_sym_0x] = ACTIONS(1739), - [sym_val_date] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), - [anon_sym_err_GT] = ACTIONS(1739), - [anon_sym_out_GT] = ACTIONS(1739), - [anon_sym_e_GT] = ACTIONS(1739), - [anon_sym_o_GT] = ACTIONS(1739), - [anon_sym_err_PLUSout_GT] = ACTIONS(1739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), - [anon_sym_o_PLUSe_GT] = ACTIONS(1739), - [anon_sym_e_PLUSo_GT] = ACTIONS(1739), - [anon_sym_err_GT_GT] = ACTIONS(1741), - [anon_sym_out_GT_GT] = ACTIONS(1741), - [anon_sym_e_GT_GT] = ACTIONS(1741), - [anon_sym_o_GT_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), - [aux_sym_unquoted_token1] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), - }, - [1617] = { - [sym_comment] = STATE(1617), - [ts_builtin_sym_end] = ACTIONS(1737), - [sym__newline] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_err_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_GT_PIPE] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_LPAREN] = ACTIONS(1737), - [anon_sym_DOLLAR] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1737), - [anon_sym_DASH2] = ACTIONS(1735), - [anon_sym_LBRACE] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1735), - [anon_sym_DOT_DOT2] = ACTIONS(1735), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1735), - [anon_sym_DOT_DOT_LT] = ACTIONS(1735), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), - [anon_sym_null] = ACTIONS(1737), - [anon_sym_true] = ACTIONS(1737), - [anon_sym_false] = ACTIONS(1737), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1737), - [aux_sym__val_number_decimal_token4] = ACTIONS(1737), - [aux_sym__val_number_token1] = ACTIONS(1737), - [aux_sym__val_number_token2] = ACTIONS(1737), - [aux_sym__val_number_token3] = ACTIONS(1737), - [aux_sym__val_number_token4] = ACTIONS(1737), - [aux_sym__val_number_token5] = ACTIONS(1737), - [aux_sym__val_number_token6] = ACTIONS(1737), - [anon_sym_0b] = ACTIONS(1735), - [anon_sym_0o] = ACTIONS(1735), - [anon_sym_0x] = ACTIONS(1735), - [sym_val_date] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1737), - [sym__str_single_quotes] = ACTIONS(1737), - [sym__str_back_ticks] = ACTIONS(1737), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), - [anon_sym_err_GT] = ACTIONS(1735), - [anon_sym_out_GT] = ACTIONS(1735), - [anon_sym_e_GT] = ACTIONS(1735), - [anon_sym_o_GT] = ACTIONS(1735), - [anon_sym_err_PLUSout_GT] = ACTIONS(1735), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), - [anon_sym_o_PLUSe_GT] = ACTIONS(1735), - [anon_sym_e_PLUSo_GT] = ACTIONS(1735), - [anon_sym_err_GT_GT] = ACTIONS(1737), - [anon_sym_out_GT_GT] = ACTIONS(1737), - [anon_sym_e_GT_GT] = ACTIONS(1737), - [anon_sym_o_GT_GT] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), - [aux_sym_unquoted_token1] = ACTIONS(1735), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1737), - }, - [1618] = { - [sym_comment] = STATE(1618), - [sym__newline] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_err_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_GT_PIPE] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_RPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT] = ACTIONS(1785), - [anon_sym_null] = ACTIONS(1785), - [anon_sym_true] = ACTIONS(1785), - [anon_sym_false] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_0b] = ACTIONS(1783), - [anon_sym_0o] = ACTIONS(1783), - [anon_sym_0x] = ACTIONS(1783), - [sym_val_date] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_err_GT] = ACTIONS(1783), - [anon_sym_out_GT] = ACTIONS(1783), - [anon_sym_e_GT] = ACTIONS(1783), - [anon_sym_o_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT] = ACTIONS(1783), - [anon_sym_err_GT_GT] = ACTIONS(1785), - [anon_sym_out_GT_GT] = ACTIONS(1785), - [anon_sym_e_GT_GT] = ACTIONS(1785), - [anon_sym_o_GT_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), - [aux_sym_unquoted_token1] = ACTIONS(1783), - [aux_sym_unquoted_token2] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1785), - }, - [1619] = { - [sym_cell_path] = STATE(2006), - [sym_path] = STATE(1894), - [sym_comment] = STATE(1619), - [aux_sym_cell_path_repeat1] = STATE(1702), - [sym__newline] = ACTIONS(2006), - [anon_sym_SEMI] = ACTIONS(2006), - [anon_sym_PIPE] = ACTIONS(2006), - [anon_sym_err_GT_PIPE] = ACTIONS(2006), - [anon_sym_out_GT_PIPE] = ACTIONS(2006), - [anon_sym_e_GT_PIPE] = ACTIONS(2006), - [anon_sym_o_GT_PIPE] = ACTIONS(2006), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2006), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2006), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2006), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2006), - [anon_sym_RPAREN] = ACTIONS(2006), - [anon_sym_GT2] = ACTIONS(2004), - [anon_sym_DASH2] = ACTIONS(2006), - [anon_sym_in2] = ACTIONS(2006), - [anon_sym_if] = ACTIONS(2006), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_RBRACE] = ACTIONS(2006), - [anon_sym_EQ_GT] = ACTIONS(2006), - [anon_sym_STAR2] = ACTIONS(2004), - [anon_sym_and2] = ACTIONS(2006), - [anon_sym_xor2] = ACTIONS(2006), - [anon_sym_or2] = ACTIONS(2006), - [anon_sym_not_DASHin2] = ACTIONS(2006), - [anon_sym_starts_DASHwith2] = ACTIONS(2006), - [anon_sym_ends_DASHwith2] = ACTIONS(2006), - [anon_sym_EQ_EQ2] = ACTIONS(2006), - [anon_sym_BANG_EQ2] = ACTIONS(2006), - [anon_sym_LT2] = ACTIONS(2004), - [anon_sym_LT_EQ2] = ACTIONS(2006), - [anon_sym_GT_EQ2] = ACTIONS(2006), - [anon_sym_EQ_TILDE2] = ACTIONS(2006), - [anon_sym_BANG_TILDE2] = ACTIONS(2006), - [anon_sym_STAR_STAR2] = ACTIONS(2006), - [anon_sym_PLUS_PLUS2] = ACTIONS(2006), - [anon_sym_SLASH2] = ACTIONS(2004), - [anon_sym_mod2] = ACTIONS(2006), - [anon_sym_SLASH_SLASH2] = ACTIONS(2006), - [anon_sym_PLUS2] = ACTIONS(2004), - [anon_sym_bit_DASHshl2] = ACTIONS(2006), - [anon_sym_bit_DASHshr2] = ACTIONS(2006), - [anon_sym_bit_DASHand2] = ACTIONS(2006), - [anon_sym_bit_DASHxor2] = ACTIONS(2006), - [anon_sym_bit_DASHor2] = ACTIONS(2006), - [anon_sym_DOT] = ACTIONS(4902), - [anon_sym_err_GT] = ACTIONS(2004), - [anon_sym_out_GT] = ACTIONS(2004), - [anon_sym_e_GT] = ACTIONS(2004), - [anon_sym_o_GT] = ACTIONS(2004), - [anon_sym_err_PLUSout_GT] = ACTIONS(2004), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2004), - [anon_sym_o_PLUSe_GT] = ACTIONS(2004), - [anon_sym_e_PLUSo_GT] = ACTIONS(2004), - [anon_sym_err_GT_GT] = ACTIONS(2006), - [anon_sym_out_GT_GT] = ACTIONS(2006), - [anon_sym_e_GT_GT] = ACTIONS(2006), - [anon_sym_o_GT_GT] = ACTIONS(2006), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2006), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2006), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2006), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2006), - [anon_sym_POUND] = ACTIONS(247), - }, - [1620] = { - [sym_comment] = STATE(1620), - [ts_builtin_sym_end] = ACTIONS(2165), - [sym__newline] = ACTIONS(2165), - [anon_sym_SEMI] = ACTIONS(2165), - [anon_sym_PIPE] = ACTIONS(2165), - [anon_sym_err_GT_PIPE] = ACTIONS(2165), - [anon_sym_out_GT_PIPE] = ACTIONS(2165), - [anon_sym_e_GT_PIPE] = ACTIONS(2165), - [anon_sym_o_GT_PIPE] = ACTIONS(2165), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2165), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2165), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2165), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_LPAREN] = ACTIONS(2165), - [anon_sym_DOLLAR] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2165), - [anon_sym_DASH2] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_DOT_DOT] = ACTIONS(2159), - [anon_sym_DOT_DOT2] = ACTIONS(4946), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2159), - [anon_sym_DOT_DOT_LT] = ACTIONS(2159), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4948), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4948), - [anon_sym_null] = ACTIONS(2165), - [anon_sym_true] = ACTIONS(2165), - [anon_sym_false] = ACTIONS(2165), - [aux_sym__val_number_decimal_token1] = ACTIONS(2159), - [aux_sym__val_number_decimal_token2] = ACTIONS(2165), - [aux_sym__val_number_decimal_token3] = ACTIONS(2165), - [aux_sym__val_number_decimal_token4] = ACTIONS(2165), - [aux_sym__val_number_token1] = ACTIONS(2165), - [aux_sym__val_number_token2] = ACTIONS(2165), - [aux_sym__val_number_token3] = ACTIONS(2165), - [aux_sym__val_number_token4] = ACTIONS(2165), - [aux_sym__val_number_token5] = ACTIONS(2165), - [aux_sym__val_number_token6] = ACTIONS(2165), - [anon_sym_0b] = ACTIONS(2159), - [anon_sym_0o] = ACTIONS(2159), - [anon_sym_0x] = ACTIONS(2159), - [sym_val_date] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2165), - [sym__str_single_quotes] = ACTIONS(2165), - [sym__str_back_ticks] = ACTIONS(2165), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2165), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2165), - [anon_sym_err_GT] = ACTIONS(2159), - [anon_sym_out_GT] = ACTIONS(2159), - [anon_sym_e_GT] = ACTIONS(2159), - [anon_sym_o_GT] = ACTIONS(2159), - [anon_sym_err_PLUSout_GT] = ACTIONS(2159), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2159), - [anon_sym_o_PLUSe_GT] = ACTIONS(2159), - [anon_sym_e_PLUSo_GT] = ACTIONS(2159), - [anon_sym_err_GT_GT] = ACTIONS(2165), - [anon_sym_out_GT_GT] = ACTIONS(2165), - [anon_sym_e_GT_GT] = ACTIONS(2165), - [anon_sym_o_GT_GT] = ACTIONS(2165), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2165), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2165), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2165), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2165), - [aux_sym_unquoted_token1] = ACTIONS(2159), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2165), - }, - [1621] = { - [sym_comment] = STATE(1621), - [ts_builtin_sym_end] = ACTIONS(2127), - [sym__newline] = ACTIONS(2127), - [anon_sym_SEMI] = ACTIONS(2127), - [anon_sym_PIPE] = ACTIONS(2127), - [anon_sym_err_GT_PIPE] = ACTIONS(2127), - [anon_sym_out_GT_PIPE] = ACTIONS(2127), - [anon_sym_e_GT_PIPE] = ACTIONS(2127), - [anon_sym_o_GT_PIPE] = ACTIONS(2127), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2127), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2127), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2127), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2127), - [anon_sym_LBRACK] = ACTIONS(2127), - [anon_sym_LPAREN] = ACTIONS(2127), - [anon_sym_DOLLAR] = ACTIONS(2125), - [anon_sym_DASH_DASH] = ACTIONS(2127), - [anon_sym_DASH2] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2127), - [anon_sym_DOT_DOT] = ACTIONS(2125), - [anon_sym_DOT_DOT2] = ACTIONS(2125), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2125), - [anon_sym_DOT_DOT_LT] = ACTIONS(2125), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2127), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2127), - [anon_sym_null] = ACTIONS(2127), - [anon_sym_true] = ACTIONS(2127), - [anon_sym_false] = ACTIONS(2127), - [aux_sym__val_number_decimal_token1] = ACTIONS(2125), - [aux_sym__val_number_decimal_token2] = ACTIONS(2127), - [aux_sym__val_number_decimal_token3] = ACTIONS(2127), - [aux_sym__val_number_decimal_token4] = ACTIONS(2127), - [aux_sym__val_number_token1] = ACTIONS(2127), - [aux_sym__val_number_token2] = ACTIONS(2127), - [aux_sym__val_number_token3] = ACTIONS(2127), - [aux_sym__val_number_token4] = ACTIONS(2127), - [aux_sym__val_number_token5] = ACTIONS(2127), - [aux_sym__val_number_token6] = ACTIONS(2127), - [anon_sym_0b] = ACTIONS(2125), - [anon_sym_0o] = ACTIONS(2125), - [anon_sym_0x] = ACTIONS(2125), - [sym_val_date] = ACTIONS(2127), - [anon_sym_DQUOTE] = ACTIONS(2127), - [sym__str_single_quotes] = ACTIONS(2127), - [sym__str_back_ticks] = ACTIONS(2127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2127), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2127), - [anon_sym_err_GT] = ACTIONS(2125), - [anon_sym_out_GT] = ACTIONS(2125), - [anon_sym_e_GT] = ACTIONS(2125), - [anon_sym_o_GT] = ACTIONS(2125), - [anon_sym_err_PLUSout_GT] = ACTIONS(2125), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2125), - [anon_sym_o_PLUSe_GT] = ACTIONS(2125), - [anon_sym_e_PLUSo_GT] = ACTIONS(2125), - [anon_sym_err_GT_GT] = ACTIONS(2127), - [anon_sym_out_GT_GT] = ACTIONS(2127), - [anon_sym_e_GT_GT] = ACTIONS(2127), - [anon_sym_o_GT_GT] = ACTIONS(2127), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2127), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2127), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2127), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2127), - [aux_sym_unquoted_token1] = ACTIONS(2125), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2127), - }, - [1622] = { - [sym_comment] = STATE(1622), - [sym__newline] = ACTIONS(1874), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_err_GT_PIPE] = ACTIONS(1874), - [anon_sym_out_GT_PIPE] = ACTIONS(1874), - [anon_sym_e_GT_PIPE] = ACTIONS(1874), - [anon_sym_o_GT_PIPE] = ACTIONS(1874), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), - [anon_sym_LBRACK] = ACTIONS(1874), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1874), - [anon_sym_DOLLAR] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1874), - [anon_sym_DASH2] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1874), - [anon_sym_RBRACE] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1874), - [anon_sym_DOT_DOT_LT] = ACTIONS(1874), - [anon_sym_null] = ACTIONS(1874), - [anon_sym_true] = ACTIONS(1874), - [anon_sym_false] = ACTIONS(1874), - [aux_sym__val_number_decimal_token1] = ACTIONS(1866), - [aux_sym__val_number_decimal_token2] = ACTIONS(1874), - [aux_sym__val_number_decimal_token3] = ACTIONS(1874), - [aux_sym__val_number_decimal_token4] = ACTIONS(1874), - [aux_sym__val_number_token1] = ACTIONS(1874), - [aux_sym__val_number_token2] = ACTIONS(1874), - [aux_sym__val_number_token3] = ACTIONS(1874), - [aux_sym__val_number_token4] = ACTIONS(1874), - [aux_sym__val_number_token5] = ACTIONS(1874), - [aux_sym__val_number_token6] = ACTIONS(1874), - [anon_sym_0b] = ACTIONS(1866), - [anon_sym_0o] = ACTIONS(1866), - [anon_sym_0x] = ACTIONS(1866), - [sym_val_date] = ACTIONS(1874), - [anon_sym_DQUOTE] = ACTIONS(1874), - [sym__str_single_quotes] = ACTIONS(1874), - [sym__str_back_ticks] = ACTIONS(1874), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1874), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1874), - [anon_sym_err_GT] = ACTIONS(1866), - [anon_sym_out_GT] = ACTIONS(1866), - [anon_sym_e_GT] = ACTIONS(1866), - [anon_sym_o_GT] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT] = ACTIONS(1866), - [anon_sym_err_GT_GT] = ACTIONS(1874), - [anon_sym_out_GT_GT] = ACTIONS(1874), - [anon_sym_e_GT_GT] = ACTIONS(1874), - [anon_sym_o_GT_GT] = ACTIONS(1874), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), - [aux_sym_unquoted_token1] = ACTIONS(1866), - [aux_sym_unquoted_token2] = ACTIONS(1546), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1874), - }, [1623] = { [sym_comment] = STATE(1623), - [sym__newline] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_err_GT_PIPE] = ACTIONS(1892), - [anon_sym_out_GT_PIPE] = ACTIONS(1892), - [anon_sym_e_GT_PIPE] = ACTIONS(1892), - [anon_sym_o_GT_PIPE] = ACTIONS(1892), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1892), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1892), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1892), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1892), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_RPAREN] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1890), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_DASH2] = ACTIONS(1890), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_RBRACE] = ACTIONS(1892), - [anon_sym_DOT_DOT] = ACTIONS(1890), - [anon_sym_LPAREN2] = ACTIONS(1892), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1892), - [anon_sym_DOT_DOT_LT] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1892), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [aux_sym__val_number_decimal_token1] = ACTIONS(1890), - [aux_sym__val_number_decimal_token2] = ACTIONS(1892), - [aux_sym__val_number_decimal_token3] = ACTIONS(1892), - [aux_sym__val_number_decimal_token4] = ACTIONS(1892), - [aux_sym__val_number_token1] = ACTIONS(1892), - [aux_sym__val_number_token2] = ACTIONS(1892), - [aux_sym__val_number_token3] = ACTIONS(1892), - [aux_sym__val_number_token4] = ACTIONS(1892), - [aux_sym__val_number_token5] = ACTIONS(1892), - [aux_sym__val_number_token6] = ACTIONS(1892), - [anon_sym_0b] = ACTIONS(1890), - [anon_sym_0o] = ACTIONS(1890), - [anon_sym_0x] = ACTIONS(1890), - [sym_val_date] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [sym__str_single_quotes] = ACTIONS(1892), - [sym__str_back_ticks] = ACTIONS(1892), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1892), - [anon_sym_err_GT] = ACTIONS(1890), - [anon_sym_out_GT] = ACTIONS(1890), - [anon_sym_e_GT] = ACTIONS(1890), - [anon_sym_o_GT] = ACTIONS(1890), - [anon_sym_err_PLUSout_GT] = ACTIONS(1890), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1890), - [anon_sym_o_PLUSe_GT] = ACTIONS(1890), - [anon_sym_e_PLUSo_GT] = ACTIONS(1890), - [anon_sym_err_GT_GT] = ACTIONS(1892), - [anon_sym_out_GT_GT] = ACTIONS(1892), - [anon_sym_e_GT_GT] = ACTIONS(1892), - [anon_sym_o_GT_GT] = ACTIONS(1892), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1892), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1892), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1892), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1892), - [aux_sym_unquoted_token1] = ACTIONS(1890), - [aux_sym_unquoted_token2] = ACTIONS(1890), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(4948), + [anon_sym_PLUS_EQ] = ACTIONS(4950), + [anon_sym_DASH_EQ] = ACTIONS(4950), + [anon_sym_STAR_EQ] = ACTIONS(4950), + [anon_sym_SLASH_EQ] = ACTIONS(4950), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4950), + [sym__newline] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1028), + [anon_sym_PIPE] = ACTIONS(1028), + [anon_sym_err_GT_PIPE] = ACTIONS(1028), + [anon_sym_out_GT_PIPE] = ACTIONS(1028), + [anon_sym_e_GT_PIPE] = ACTIONS(1028), + [anon_sym_o_GT_PIPE] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), + [anon_sym_GT2] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(1026), + [anon_sym_in2] = ACTIONS(1028), + [anon_sym_STAR2] = ACTIONS(1026), + [anon_sym_and2] = ACTIONS(1028), + [anon_sym_xor2] = ACTIONS(1028), + [anon_sym_or2] = ACTIONS(1028), + [anon_sym_not_DASHin2] = ACTIONS(1028), + [anon_sym_starts_DASHwith2] = ACTIONS(1028), + [anon_sym_ends_DASHwith2] = ACTIONS(1028), + [anon_sym_EQ_EQ2] = ACTIONS(1028), + [anon_sym_BANG_EQ2] = ACTIONS(1028), + [anon_sym_LT2] = ACTIONS(1026), + [anon_sym_LT_EQ2] = ACTIONS(1028), + [anon_sym_GT_EQ2] = ACTIONS(1028), + [anon_sym_EQ_TILDE2] = ACTIONS(1028), + [anon_sym_BANG_TILDE2] = ACTIONS(1028), + [anon_sym_STAR_STAR2] = ACTIONS(1028), + [anon_sym_PLUS_PLUS2] = ACTIONS(1026), + [anon_sym_SLASH2] = ACTIONS(1026), + [anon_sym_mod2] = ACTIONS(1028), + [anon_sym_SLASH_SLASH2] = ACTIONS(1028), + [anon_sym_PLUS2] = ACTIONS(1026), + [anon_sym_bit_DASHshl2] = ACTIONS(1028), + [anon_sym_bit_DASHshr2] = ACTIONS(1028), + [anon_sym_bit_DASHand2] = ACTIONS(1028), + [anon_sym_bit_DASHxor2] = ACTIONS(1028), + [anon_sym_bit_DASHor2] = ACTIONS(1028), + [anon_sym_DOT_DOT2] = ACTIONS(1038), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), + [anon_sym_err_GT] = ACTIONS(1026), + [anon_sym_out_GT] = ACTIONS(1026), + [anon_sym_e_GT] = ACTIONS(1026), + [anon_sym_o_GT] = ACTIONS(1026), + [anon_sym_err_PLUSout_GT] = ACTIONS(1026), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), + [anon_sym_o_PLUSe_GT] = ACTIONS(1026), + [anon_sym_e_PLUSo_GT] = ACTIONS(1026), + [anon_sym_err_GT_GT] = ACTIONS(1028), + [anon_sym_out_GT_GT] = ACTIONS(1028), + [anon_sym_e_GT_GT] = ACTIONS(1028), + [anon_sym_o_GT_GT] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1028), + [anon_sym_POUND] = ACTIONS(247), }, [1624] = { + [sym_cell_path] = STATE(2018), + [sym_path] = STATE(1882), [sym_comment] = STATE(1624), - [anon_sym_EQ] = ACTIONS(4950), - [anon_sym_PLUS_EQ] = ACTIONS(4952), - [anon_sym_DASH_EQ] = ACTIONS(4952), - [anon_sym_STAR_EQ] = ACTIONS(4952), - [anon_sym_SLASH_EQ] = ACTIONS(4952), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4952), - [sym__newline] = ACTIONS(1032), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_err_GT_PIPE] = ACTIONS(1032), - [anon_sym_out_GT_PIPE] = ACTIONS(1032), - [anon_sym_e_GT_PIPE] = ACTIONS(1032), - [anon_sym_o_GT_PIPE] = ACTIONS(1032), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1032), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1032), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1032), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1032), - [anon_sym_GT2] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(1030), - [anon_sym_in2] = ACTIONS(1032), - [anon_sym_STAR2] = ACTIONS(1030), - [anon_sym_and2] = ACTIONS(1032), - [anon_sym_xor2] = ACTIONS(1032), - [anon_sym_or2] = ACTIONS(1032), - [anon_sym_not_DASHin2] = ACTIONS(1032), - [anon_sym_starts_DASHwith2] = ACTIONS(1032), - [anon_sym_ends_DASHwith2] = ACTIONS(1032), - [anon_sym_EQ_EQ2] = ACTIONS(1032), - [anon_sym_BANG_EQ2] = ACTIONS(1032), - [anon_sym_LT2] = ACTIONS(1030), - [anon_sym_LT_EQ2] = ACTIONS(1032), - [anon_sym_GT_EQ2] = ACTIONS(1032), - [anon_sym_EQ_TILDE2] = ACTIONS(1032), - [anon_sym_BANG_TILDE2] = ACTIONS(1032), - [anon_sym_STAR_STAR2] = ACTIONS(1032), - [anon_sym_PLUS_PLUS2] = ACTIONS(1030), - [anon_sym_SLASH2] = ACTIONS(1030), - [anon_sym_mod2] = ACTIONS(1032), - [anon_sym_SLASH_SLASH2] = ACTIONS(1032), - [anon_sym_PLUS2] = ACTIONS(1030), - [anon_sym_bit_DASHshl2] = ACTIONS(1032), - [anon_sym_bit_DASHshr2] = ACTIONS(1032), - [anon_sym_bit_DASHand2] = ACTIONS(1032), - [anon_sym_bit_DASHxor2] = ACTIONS(1032), - [anon_sym_bit_DASHor2] = ACTIONS(1032), - [anon_sym_DOT_DOT2] = ACTIONS(1042), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), - [anon_sym_err_GT] = ACTIONS(1030), - [anon_sym_out_GT] = ACTIONS(1030), - [anon_sym_e_GT] = ACTIONS(1030), - [anon_sym_o_GT] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT] = ACTIONS(1030), - [anon_sym_err_GT_GT] = ACTIONS(1032), - [anon_sym_out_GT_GT] = ACTIONS(1032), - [anon_sym_e_GT_GT] = ACTIONS(1032), - [anon_sym_o_GT_GT] = ACTIONS(1032), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1032), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1032), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1032), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1032), + [aux_sym_cell_path_repeat1] = STATE(1690), + [sym__newline] = ACTIONS(2040), + [anon_sym_SEMI] = ACTIONS(2040), + [anon_sym_PIPE] = ACTIONS(2040), + [anon_sym_err_GT_PIPE] = ACTIONS(2040), + [anon_sym_out_GT_PIPE] = ACTIONS(2040), + [anon_sym_e_GT_PIPE] = ACTIONS(2040), + [anon_sym_o_GT_PIPE] = ACTIONS(2040), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2040), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2040), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2040), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2040), + [anon_sym_RPAREN] = ACTIONS(2040), + [anon_sym_GT2] = ACTIONS(2038), + [anon_sym_DASH2] = ACTIONS(2040), + [anon_sym_in2] = ACTIONS(2040), + [anon_sym_if] = ACTIONS(2040), + [anon_sym_LBRACE] = ACTIONS(2040), + [anon_sym_RBRACE] = ACTIONS(2040), + [anon_sym_EQ_GT] = ACTIONS(2040), + [anon_sym_STAR2] = ACTIONS(2038), + [anon_sym_and2] = ACTIONS(2040), + [anon_sym_xor2] = ACTIONS(2040), + [anon_sym_or2] = ACTIONS(2040), + [anon_sym_not_DASHin2] = ACTIONS(2040), + [anon_sym_starts_DASHwith2] = ACTIONS(2040), + [anon_sym_ends_DASHwith2] = ACTIONS(2040), + [anon_sym_EQ_EQ2] = ACTIONS(2040), + [anon_sym_BANG_EQ2] = ACTIONS(2040), + [anon_sym_LT2] = ACTIONS(2038), + [anon_sym_LT_EQ2] = ACTIONS(2040), + [anon_sym_GT_EQ2] = ACTIONS(2040), + [anon_sym_EQ_TILDE2] = ACTIONS(2040), + [anon_sym_BANG_TILDE2] = ACTIONS(2040), + [anon_sym_STAR_STAR2] = ACTIONS(2040), + [anon_sym_PLUS_PLUS2] = ACTIONS(2040), + [anon_sym_SLASH2] = ACTIONS(2038), + [anon_sym_mod2] = ACTIONS(2040), + [anon_sym_SLASH_SLASH2] = ACTIONS(2040), + [anon_sym_PLUS2] = ACTIONS(2038), + [anon_sym_bit_DASHshl2] = ACTIONS(2040), + [anon_sym_bit_DASHshr2] = ACTIONS(2040), + [anon_sym_bit_DASHand2] = ACTIONS(2040), + [anon_sym_bit_DASHxor2] = ACTIONS(2040), + [anon_sym_bit_DASHor2] = ACTIONS(2040), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_err_GT] = ACTIONS(2038), + [anon_sym_out_GT] = ACTIONS(2038), + [anon_sym_e_GT] = ACTIONS(2038), + [anon_sym_o_GT] = ACTIONS(2038), + [anon_sym_err_PLUSout_GT] = ACTIONS(2038), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2038), + [anon_sym_o_PLUSe_GT] = ACTIONS(2038), + [anon_sym_e_PLUSo_GT] = ACTIONS(2038), + [anon_sym_err_GT_GT] = ACTIONS(2040), + [anon_sym_out_GT_GT] = ACTIONS(2040), + [anon_sym_e_GT_GT] = ACTIONS(2040), + [anon_sym_o_GT_GT] = ACTIONS(2040), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2040), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2040), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2040), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2040), [anon_sym_POUND] = ACTIONS(247), }, [1625] = { + [sym__expr_parenthesized_immediate] = STATE(7463), [sym_comment] = STATE(1625), - [ts_builtin_sym_end] = ACTIONS(4826), - [sym__newline] = ACTIONS(4826), - [anon_sym_SEMI] = ACTIONS(4826), - [anon_sym_PIPE] = ACTIONS(4826), - [anon_sym_err_GT_PIPE] = ACTIONS(4826), - [anon_sym_out_GT_PIPE] = ACTIONS(4826), - [anon_sym_e_GT_PIPE] = ACTIONS(4826), - [anon_sym_o_GT_PIPE] = ACTIONS(4826), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4826), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4826), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4826), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4826), - [anon_sym_LBRACK] = ACTIONS(4826), - [anon_sym_LPAREN] = ACTIONS(4826), - [anon_sym_DOLLAR] = ACTIONS(4828), - [anon_sym_DASH_DASH] = ACTIONS(4826), - [anon_sym_DASH2] = ACTIONS(4828), - [anon_sym_LBRACE] = ACTIONS(4826), - [anon_sym_DOT_DOT] = ACTIONS(4828), - [anon_sym_DOT_DOT2] = ACTIONS(4910), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4828), - [anon_sym_DOT_DOT_LT] = ACTIONS(4828), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4912), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4912), - [anon_sym_null] = ACTIONS(4826), - [anon_sym_true] = ACTIONS(4826), - [anon_sym_false] = ACTIONS(4826), - [aux_sym__val_number_decimal_token1] = ACTIONS(4828), - [aux_sym__val_number_decimal_token2] = ACTIONS(4826), - [aux_sym__val_number_decimal_token3] = ACTIONS(4826), - [aux_sym__val_number_decimal_token4] = ACTIONS(4826), - [aux_sym__val_number_token1] = ACTIONS(4826), - [aux_sym__val_number_token2] = ACTIONS(4826), - [aux_sym__val_number_token3] = ACTIONS(4826), - [aux_sym__val_number_token4] = ACTIONS(4826), - [aux_sym__val_number_token5] = ACTIONS(4826), - [aux_sym__val_number_token6] = ACTIONS(4826), - [anon_sym_0b] = ACTIONS(4828), - [anon_sym_0o] = ACTIONS(4828), - [anon_sym_0x] = ACTIONS(4828), - [sym_val_date] = ACTIONS(4826), - [anon_sym_DQUOTE] = ACTIONS(4826), - [sym__str_single_quotes] = ACTIONS(4826), - [sym__str_back_ticks] = ACTIONS(4826), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4826), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4826), - [anon_sym_err_GT] = ACTIONS(4828), - [anon_sym_out_GT] = ACTIONS(4828), - [anon_sym_e_GT] = ACTIONS(4828), - [anon_sym_o_GT] = ACTIONS(4828), - [anon_sym_err_PLUSout_GT] = ACTIONS(4828), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4828), - [anon_sym_o_PLUSe_GT] = ACTIONS(4828), - [anon_sym_e_PLUSo_GT] = ACTIONS(4828), - [anon_sym_err_GT_GT] = ACTIONS(4826), - [anon_sym_out_GT_GT] = ACTIONS(4826), - [anon_sym_e_GT_GT] = ACTIONS(4826), - [anon_sym_o_GT_GT] = ACTIONS(4826), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4826), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4826), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4826), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4826), - [aux_sym_unquoted_token1] = ACTIONS(4828), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4826), - }, - [1626] = { - [sym_comment] = STATE(1626), - [sym__newline] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_err_GT_PIPE] = ACTIONS(986), - [anon_sym_out_GT_PIPE] = ACTIONS(986), - [anon_sym_e_GT_PIPE] = ACTIONS(986), - [anon_sym_o_GT_PIPE] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_RPAREN] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_DOT_DOT] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(4954), - [anon_sym_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ] = ACTIONS(986), - [anon_sym_DOT_DOT_LT] = ACTIONS(986), - [anon_sym_null] = ACTIONS(986), - [anon_sym_true] = ACTIONS(986), - [anon_sym_false] = ACTIONS(986), - [aux_sym__val_number_decimal_token1] = ACTIONS(984), - [aux_sym__val_number_decimal_token2] = ACTIONS(986), - [aux_sym__val_number_decimal_token3] = ACTIONS(986), - [aux_sym__val_number_decimal_token4] = ACTIONS(986), - [aux_sym__val_number_token1] = ACTIONS(986), - [aux_sym__val_number_token2] = ACTIONS(986), - [aux_sym__val_number_token3] = ACTIONS(986), - [aux_sym__val_number_token4] = ACTIONS(986), - [aux_sym__val_number_token5] = ACTIONS(986), - [aux_sym__val_number_token6] = ACTIONS(986), - [anon_sym_0b] = ACTIONS(984), - [anon_sym_0o] = ACTIONS(984), - [anon_sym_0x] = ACTIONS(984), - [sym_val_date] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), - [anon_sym_err_GT] = ACTIONS(984), - [anon_sym_out_GT] = ACTIONS(984), - [anon_sym_e_GT] = ACTIONS(984), - [anon_sym_o_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT] = ACTIONS(984), - [anon_sym_err_GT_GT] = ACTIONS(986), - [anon_sym_out_GT_GT] = ACTIONS(986), - [anon_sym_e_GT_GT] = ACTIONS(986), - [anon_sym_o_GT_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), - [aux_sym_unquoted_token1] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(986), - }, - [1627] = { - [sym_comment] = STATE(1627), - [ts_builtin_sym_end] = ACTIONS(2185), - [sym__newline] = ACTIONS(2185), - [anon_sym_SEMI] = ACTIONS(2185), - [anon_sym_PIPE] = ACTIONS(2185), - [anon_sym_err_GT_PIPE] = ACTIONS(2185), - [anon_sym_out_GT_PIPE] = ACTIONS(2185), - [anon_sym_e_GT_PIPE] = ACTIONS(2185), - [anon_sym_o_GT_PIPE] = ACTIONS(2185), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2185), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2185), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2185), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2183), - [anon_sym_DASH_DASH] = ACTIONS(2185), - [anon_sym_DASH2] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_DOT_DOT] = ACTIONS(2183), - [anon_sym_DOT_DOT2] = ACTIONS(2183), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2183), - [anon_sym_DOT_DOT_LT] = ACTIONS(2183), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2185), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2185), - [anon_sym_null] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2185), - [anon_sym_false] = ACTIONS(2185), - [aux_sym__val_number_decimal_token1] = ACTIONS(2183), - [aux_sym__val_number_decimal_token2] = ACTIONS(2185), - [aux_sym__val_number_decimal_token3] = ACTIONS(2185), - [aux_sym__val_number_decimal_token4] = ACTIONS(2185), - [aux_sym__val_number_token1] = ACTIONS(2185), - [aux_sym__val_number_token2] = ACTIONS(2185), - [aux_sym__val_number_token3] = ACTIONS(2185), - [aux_sym__val_number_token4] = ACTIONS(2185), - [aux_sym__val_number_token5] = ACTIONS(2185), - [aux_sym__val_number_token6] = ACTIONS(2185), - [anon_sym_0b] = ACTIONS(2183), - [anon_sym_0o] = ACTIONS(2183), - [anon_sym_0x] = ACTIONS(2183), - [sym_val_date] = ACTIONS(2185), - [anon_sym_DQUOTE] = ACTIONS(2185), - [sym__str_single_quotes] = ACTIONS(2185), - [sym__str_back_ticks] = ACTIONS(2185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2185), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2185), - [anon_sym_err_GT] = ACTIONS(2183), - [anon_sym_out_GT] = ACTIONS(2183), - [anon_sym_e_GT] = ACTIONS(2183), - [anon_sym_o_GT] = ACTIONS(2183), - [anon_sym_err_PLUSout_GT] = ACTIONS(2183), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2183), - [anon_sym_o_PLUSe_GT] = ACTIONS(2183), - [anon_sym_e_PLUSo_GT] = ACTIONS(2183), - [anon_sym_err_GT_GT] = ACTIONS(2185), - [anon_sym_out_GT_GT] = ACTIONS(2185), - [anon_sym_e_GT_GT] = ACTIONS(2185), - [anon_sym_o_GT_GT] = ACTIONS(2185), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2185), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2185), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2185), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2185), - [aux_sym_unquoted_token1] = ACTIONS(2183), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2185), - }, - [1628] = { - [sym_comment] = STATE(1628), - [sym__newline] = ACTIONS(4956), - [anon_sym_SEMI] = ACTIONS(4956), - [anon_sym_PIPE] = ACTIONS(4956), - [anon_sym_err_GT_PIPE] = ACTIONS(4956), - [anon_sym_out_GT_PIPE] = ACTIONS(4956), - [anon_sym_e_GT_PIPE] = ACTIONS(4956), - [anon_sym_o_GT_PIPE] = ACTIONS(4956), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4956), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4956), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4956), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4956), - [anon_sym_LBRACK] = ACTIONS(4956), - [anon_sym_LPAREN] = ACTIONS(4956), - [anon_sym_RPAREN] = ACTIONS(4956), - [anon_sym_DOLLAR] = ACTIONS(4958), - [anon_sym_DASH_DASH] = ACTIONS(4958), - [anon_sym_DASH2] = ACTIONS(4958), - [anon_sym_LBRACE] = ACTIONS(4956), - [anon_sym_RBRACE] = ACTIONS(4956), - [anon_sym_DOT_DOT] = ACTIONS(4958), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4956), - [anon_sym_DOT_DOT_LT] = ACTIONS(4956), - [anon_sym_null] = ACTIONS(4958), - [anon_sym_true] = ACTIONS(4958), - [anon_sym_false] = ACTIONS(4958), - [aux_sym__val_number_decimal_token1] = ACTIONS(4958), - [aux_sym__val_number_decimal_token2] = ACTIONS(4958), - [aux_sym__val_number_decimal_token3] = ACTIONS(4956), - [aux_sym__val_number_decimal_token4] = ACTIONS(4956), - [aux_sym__val_number_token1] = ACTIONS(4958), - [aux_sym__val_number_token2] = ACTIONS(4958), - [aux_sym__val_number_token3] = ACTIONS(4958), - [aux_sym__val_number_token4] = ACTIONS(4958), - [aux_sym__val_number_token5] = ACTIONS(4958), - [aux_sym__val_number_token6] = ACTIONS(4958), - [anon_sym_0b] = ACTIONS(4958), - [anon_sym_0o] = ACTIONS(4958), - [anon_sym_0x] = ACTIONS(4958), - [sym_val_date] = ACTIONS(4958), - [anon_sym_DQUOTE] = ACTIONS(4956), - [sym__str_single_quotes] = ACTIONS(4956), - [sym__str_back_ticks] = ACTIONS(4956), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4956), - [anon_sym_err_GT] = ACTIONS(4958), - [anon_sym_out_GT] = ACTIONS(4958), - [anon_sym_e_GT] = ACTIONS(4958), - [anon_sym_o_GT] = ACTIONS(4958), - [anon_sym_err_PLUSout_GT] = ACTIONS(4958), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4958), - [anon_sym_o_PLUSe_GT] = ACTIONS(4958), - [anon_sym_e_PLUSo_GT] = ACTIONS(4958), - [anon_sym_err_GT_GT] = ACTIONS(4956), - [anon_sym_out_GT_GT] = ACTIONS(4956), - [anon_sym_e_GT_GT] = ACTIONS(4956), - [anon_sym_o_GT_GT] = ACTIONS(4956), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4956), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4956), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4956), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4956), - [anon_sym_EQ2] = ACTIONS(4960), - [sym_short_flag_identifier] = ACTIONS(4962), - [aux_sym_unquoted_token1] = ACTIONS(4958), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4956), - }, - [1629] = { - [sym_comment] = STATE(1629), - [sym__newline] = ACTIONS(2189), - [anon_sym_SEMI] = ACTIONS(2189), - [anon_sym_PIPE] = ACTIONS(2189), - [anon_sym_err_GT_PIPE] = ACTIONS(2189), - [anon_sym_out_GT_PIPE] = ACTIONS(2189), - [anon_sym_e_GT_PIPE] = ACTIONS(2189), - [anon_sym_o_GT_PIPE] = ACTIONS(2189), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2189), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2189), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2189), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2189), - [anon_sym_LBRACK] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2187), - [anon_sym_RPAREN] = ACTIONS(2189), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_DASH_DASH] = ACTIONS(2189), - [anon_sym_DASH2] = ACTIONS(2187), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_RBRACE] = ACTIONS(2189), - [anon_sym_DOT_DOT] = ACTIONS(2187), - [anon_sym_LPAREN2] = ACTIONS(1880), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2189), - [anon_sym_DOT_DOT_LT] = ACTIONS(2189), - [anon_sym_null] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [aux_sym__val_number_decimal_token1] = ACTIONS(2187), - [aux_sym__val_number_decimal_token2] = ACTIONS(2189), - [aux_sym__val_number_decimal_token3] = ACTIONS(2189), - [aux_sym__val_number_decimal_token4] = ACTIONS(2189), - [aux_sym__val_number_token1] = ACTIONS(2189), - [aux_sym__val_number_token2] = ACTIONS(2189), - [aux_sym__val_number_token3] = ACTIONS(2189), - [aux_sym__val_number_token4] = ACTIONS(2189), - [aux_sym__val_number_token5] = ACTIONS(2189), - [aux_sym__val_number_token6] = ACTIONS(2189), - [anon_sym_0b] = ACTIONS(2187), - [anon_sym_0o] = ACTIONS(2187), - [anon_sym_0x] = ACTIONS(2187), - [sym_val_date] = ACTIONS(2189), - [anon_sym_DQUOTE] = ACTIONS(2189), - [sym__str_single_quotes] = ACTIONS(2189), - [sym__str_back_ticks] = ACTIONS(2189), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2189), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2189), - [anon_sym_err_GT] = ACTIONS(2187), - [anon_sym_out_GT] = ACTIONS(2187), - [anon_sym_e_GT] = ACTIONS(2187), - [anon_sym_o_GT] = ACTIONS(2187), - [anon_sym_err_PLUSout_GT] = ACTIONS(2187), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2187), - [anon_sym_o_PLUSe_GT] = ACTIONS(2187), - [anon_sym_e_PLUSo_GT] = ACTIONS(2187), - [anon_sym_err_GT_GT] = ACTIONS(2189), - [anon_sym_out_GT_GT] = ACTIONS(2189), - [anon_sym_e_GT_GT] = ACTIONS(2189), - [anon_sym_o_GT_GT] = ACTIONS(2189), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2189), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2189), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2189), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2189), - [aux_sym_unquoted_token1] = ACTIONS(2187), - [aux_sym_unquoted_token2] = ACTIONS(1888), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2189), - }, - [1630] = { - [sym_comment] = STATE(1630), - [sym__newline] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_err_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_GT_PIPE] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_RPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_DOT] = ACTIONS(4964), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(4966), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_0b] = ACTIONS(1755), - [anon_sym_0o] = ACTIONS(1755), - [anon_sym_0x] = ACTIONS(1755), - [sym_val_date] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), - [anon_sym_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [1631] = { - [sym_comment] = STATE(1631), - [sym__newline] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_err_GT_PIPE] = ACTIONS(1886), - [anon_sym_out_GT_PIPE] = ACTIONS(1886), - [anon_sym_e_GT_PIPE] = ACTIONS(1886), - [anon_sym_o_GT_PIPE] = ACTIONS(1886), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1886), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1886), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1886), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1886), - [anon_sym_LBRACK] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_RPAREN] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(1878), - [anon_sym_DASH_DASH] = ACTIONS(1886), - [anon_sym_DASH2] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(1886), - [anon_sym_RBRACE] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1878), - [anon_sym_LPAREN2] = ACTIONS(1880), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1886), - [anon_sym_DOT_DOT_LT] = ACTIONS(1886), - [anon_sym_null] = ACTIONS(1886), - [anon_sym_true] = ACTIONS(1886), - [anon_sym_false] = ACTIONS(1886), - [aux_sym__val_number_decimal_token1] = ACTIONS(1878), - [aux_sym__val_number_decimal_token2] = ACTIONS(1886), - [aux_sym__val_number_decimal_token3] = ACTIONS(1886), - [aux_sym__val_number_decimal_token4] = ACTIONS(1886), - [aux_sym__val_number_token1] = ACTIONS(1886), - [aux_sym__val_number_token2] = ACTIONS(1886), - [aux_sym__val_number_token3] = ACTIONS(1886), - [aux_sym__val_number_token4] = ACTIONS(1886), - [aux_sym__val_number_token5] = ACTIONS(1886), - [aux_sym__val_number_token6] = ACTIONS(1886), - [anon_sym_0b] = ACTIONS(1878), - [anon_sym_0o] = ACTIONS(1878), - [anon_sym_0x] = ACTIONS(1878), - [sym_val_date] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(1886), - [sym__str_single_quotes] = ACTIONS(1886), - [sym__str_back_ticks] = ACTIONS(1886), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1886), - [anon_sym_err_GT] = ACTIONS(1878), - [anon_sym_out_GT] = ACTIONS(1878), - [anon_sym_e_GT] = ACTIONS(1878), - [anon_sym_o_GT] = ACTIONS(1878), - [anon_sym_err_PLUSout_GT] = ACTIONS(1878), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1878), - [anon_sym_o_PLUSe_GT] = ACTIONS(1878), - [anon_sym_e_PLUSo_GT] = ACTIONS(1878), - [anon_sym_err_GT_GT] = ACTIONS(1886), - [anon_sym_out_GT_GT] = ACTIONS(1886), - [anon_sym_e_GT_GT] = ACTIONS(1886), - [anon_sym_o_GT_GT] = ACTIONS(1886), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1886), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1886), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1886), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1886), - [aux_sym_unquoted_token1] = ACTIONS(1878), - [aux_sym_unquoted_token2] = ACTIONS(1888), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1886), - }, - [1632] = { - [sym_cell_path] = STATE(1984), - [sym_path] = STATE(1894), - [sym_comment] = STATE(1632), - [aux_sym_cell_path_repeat1] = STATE(1702), - [sym__newline] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1927), - [anon_sym_err_GT_PIPE] = ACTIONS(1927), - [anon_sym_out_GT_PIPE] = ACTIONS(1927), - [anon_sym_e_GT_PIPE] = ACTIONS(1927), - [anon_sym_o_GT_PIPE] = ACTIONS(1927), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1927), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1927), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1927), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1927), - [anon_sym_RPAREN] = ACTIONS(1927), - [anon_sym_GT2] = ACTIONS(1925), - [anon_sym_DASH2] = ACTIONS(1927), - [anon_sym_in2] = ACTIONS(1927), - [anon_sym_if] = ACTIONS(1927), - [anon_sym_LBRACE] = ACTIONS(1927), - [anon_sym_RBRACE] = ACTIONS(1927), - [anon_sym_EQ_GT] = ACTIONS(1927), - [anon_sym_STAR2] = ACTIONS(1925), - [anon_sym_and2] = ACTIONS(1927), - [anon_sym_xor2] = ACTIONS(1927), - [anon_sym_or2] = ACTIONS(1927), - [anon_sym_not_DASHin2] = ACTIONS(1927), - [anon_sym_starts_DASHwith2] = ACTIONS(1927), - [anon_sym_ends_DASHwith2] = ACTIONS(1927), - [anon_sym_EQ_EQ2] = ACTIONS(1927), - [anon_sym_BANG_EQ2] = ACTIONS(1927), - [anon_sym_LT2] = ACTIONS(1925), - [anon_sym_LT_EQ2] = ACTIONS(1927), - [anon_sym_GT_EQ2] = ACTIONS(1927), - [anon_sym_EQ_TILDE2] = ACTIONS(1927), - [anon_sym_BANG_TILDE2] = ACTIONS(1927), - [anon_sym_STAR_STAR2] = ACTIONS(1927), - [anon_sym_PLUS_PLUS2] = ACTIONS(1927), - [anon_sym_SLASH2] = ACTIONS(1925), - [anon_sym_mod2] = ACTIONS(1927), - [anon_sym_SLASH_SLASH2] = ACTIONS(1927), - [anon_sym_PLUS2] = ACTIONS(1925), - [anon_sym_bit_DASHshl2] = ACTIONS(1927), - [anon_sym_bit_DASHshr2] = ACTIONS(1927), - [anon_sym_bit_DASHand2] = ACTIONS(1927), - [anon_sym_bit_DASHxor2] = ACTIONS(1927), - [anon_sym_bit_DASHor2] = ACTIONS(1927), - [anon_sym_DOT] = ACTIONS(4902), - [anon_sym_err_GT] = ACTIONS(1925), - [anon_sym_out_GT] = ACTIONS(1925), - [anon_sym_e_GT] = ACTIONS(1925), - [anon_sym_o_GT] = ACTIONS(1925), - [anon_sym_err_PLUSout_GT] = ACTIONS(1925), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1925), - [anon_sym_o_PLUSe_GT] = ACTIONS(1925), - [anon_sym_e_PLUSo_GT] = ACTIONS(1925), - [anon_sym_err_GT_GT] = ACTIONS(1927), - [anon_sym_out_GT_GT] = ACTIONS(1927), - [anon_sym_e_GT_GT] = ACTIONS(1927), - [anon_sym_o_GT_GT] = ACTIONS(1927), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1927), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1927), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1927), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1927), - [anon_sym_POUND] = ACTIONS(247), - }, - [1633] = { - [sym_path] = STATE(1774), - [sym_comment] = STATE(1633), - [aux_sym_cell_path_repeat1] = STATE(1633), - [ts_builtin_sym_end] = ACTIONS(973), - [sym__newline] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(973), - [anon_sym_err_GT_PIPE] = ACTIONS(973), - [anon_sym_out_GT_PIPE] = ACTIONS(973), - [anon_sym_e_GT_PIPE] = ACTIONS(973), - [anon_sym_o_GT_PIPE] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), - [anon_sym_LBRACK] = ACTIONS(973), - [anon_sym_LPAREN] = ACTIONS(973), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(973), - [anon_sym_DASH2] = ACTIONS(971), - [anon_sym_LBRACE] = ACTIONS(973), - [anon_sym_DOT_DOT] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(4968), - [anon_sym_DOT_DOT_EQ] = ACTIONS(973), - [anon_sym_DOT_DOT_LT] = ACTIONS(973), - [anon_sym_null] = ACTIONS(973), - [anon_sym_true] = ACTIONS(973), - [anon_sym_false] = ACTIONS(973), - [aux_sym__val_number_decimal_token1] = ACTIONS(971), - [aux_sym__val_number_decimal_token2] = ACTIONS(973), - [aux_sym__val_number_decimal_token3] = ACTIONS(973), - [aux_sym__val_number_decimal_token4] = ACTIONS(973), - [aux_sym__val_number_token1] = ACTIONS(973), - [aux_sym__val_number_token2] = ACTIONS(973), - [aux_sym__val_number_token3] = ACTIONS(973), - [aux_sym__val_number_token4] = ACTIONS(973), - [aux_sym__val_number_token5] = ACTIONS(973), - [aux_sym__val_number_token6] = ACTIONS(973), - [anon_sym_0b] = ACTIONS(971), - [anon_sym_0o] = ACTIONS(971), - [anon_sym_0x] = ACTIONS(971), - [sym_val_date] = ACTIONS(973), - [anon_sym_DQUOTE] = ACTIONS(973), - [sym__str_single_quotes] = ACTIONS(973), - [sym__str_back_ticks] = ACTIONS(973), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(973), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(973), - [anon_sym_err_GT] = ACTIONS(971), - [anon_sym_out_GT] = ACTIONS(971), - [anon_sym_e_GT] = ACTIONS(971), - [anon_sym_o_GT] = ACTIONS(971), - [anon_sym_err_PLUSout_GT] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT] = ACTIONS(971), - [anon_sym_o_PLUSe_GT] = ACTIONS(971), - [anon_sym_e_PLUSo_GT] = ACTIONS(971), - [anon_sym_err_GT_GT] = ACTIONS(973), - [anon_sym_out_GT_GT] = ACTIONS(973), - [anon_sym_e_GT_GT] = ACTIONS(973), - [anon_sym_o_GT_GT] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), - [aux_sym_unquoted_token1] = ACTIONS(971), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(973), - }, - [1634] = { - [sym_path] = STATE(1774), - [sym_comment] = STATE(1634), - [aux_sym_cell_path_repeat1] = STATE(1633), - [ts_builtin_sym_end] = ACTIONS(969), - [sym__newline] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_err_GT_PIPE] = ACTIONS(969), - [anon_sym_out_GT_PIPE] = ACTIONS(969), - [anon_sym_e_GT_PIPE] = ACTIONS(969), - [anon_sym_o_GT_PIPE] = ACTIONS(969), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(969), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(969), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_DASH2] = ACTIONS(967), - [anon_sym_LBRACE] = ACTIONS(969), - [anon_sym_DOT_DOT] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(969), - [anon_sym_DOT_DOT_LT] = ACTIONS(969), - [anon_sym_null] = ACTIONS(969), - [anon_sym_true] = ACTIONS(969), - [anon_sym_false] = ACTIONS(969), - [aux_sym__val_number_decimal_token1] = ACTIONS(967), - [aux_sym__val_number_decimal_token2] = ACTIONS(969), - [aux_sym__val_number_decimal_token3] = ACTIONS(969), - [aux_sym__val_number_decimal_token4] = ACTIONS(969), - [aux_sym__val_number_token1] = ACTIONS(969), - [aux_sym__val_number_token2] = ACTIONS(969), - [aux_sym__val_number_token3] = ACTIONS(969), - [aux_sym__val_number_token4] = ACTIONS(969), - [aux_sym__val_number_token5] = ACTIONS(969), - [aux_sym__val_number_token6] = ACTIONS(969), - [anon_sym_0b] = ACTIONS(967), - [anon_sym_0o] = ACTIONS(967), - [anon_sym_0x] = ACTIONS(967), - [sym_val_date] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(969), - [sym__str_single_quotes] = ACTIONS(969), - [sym__str_back_ticks] = ACTIONS(969), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(969), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(969), - [anon_sym_err_GT] = ACTIONS(967), - [anon_sym_out_GT] = ACTIONS(967), - [anon_sym_e_GT] = ACTIONS(967), - [anon_sym_o_GT] = ACTIONS(967), - [anon_sym_err_PLUSout_GT] = ACTIONS(967), - [anon_sym_out_PLUSerr_GT] = ACTIONS(967), - [anon_sym_o_PLUSe_GT] = ACTIONS(967), - [anon_sym_e_PLUSo_GT] = ACTIONS(967), - [anon_sym_err_GT_GT] = ACTIONS(969), - [anon_sym_out_GT_GT] = ACTIONS(969), - [anon_sym_e_GT_GT] = ACTIONS(969), - [anon_sym_o_GT_GT] = ACTIONS(969), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(969), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(969), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), - [aux_sym_unquoted_token1] = ACTIONS(967), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(969), - }, - [1635] = { - [sym_comment] = STATE(1635), - [sym__newline] = ACTIONS(2238), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_err_GT_PIPE] = ACTIONS(2238), - [anon_sym_out_GT_PIPE] = ACTIONS(2238), - [anon_sym_e_GT_PIPE] = ACTIONS(2238), - [anon_sym_o_GT_PIPE] = ACTIONS(2238), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2238), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2238), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2238), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2234), - [anon_sym_RPAREN] = ACTIONS(2238), - [anon_sym_DOLLAR] = ACTIONS(2234), - [anon_sym_DASH_DASH] = ACTIONS(2238), - [anon_sym_DASH2] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_DOT_DOT] = ACTIONS(2234), - [anon_sym_LPAREN2] = ACTIONS(2236), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2238), - [anon_sym_DOT_DOT_LT] = ACTIONS(2238), - [anon_sym_null] = ACTIONS(2238), - [anon_sym_true] = ACTIONS(2238), - [anon_sym_false] = ACTIONS(2238), - [aux_sym__val_number_decimal_token1] = ACTIONS(2234), - [aux_sym__val_number_decimal_token2] = ACTIONS(2238), - [aux_sym__val_number_decimal_token3] = ACTIONS(2238), - [aux_sym__val_number_decimal_token4] = ACTIONS(2238), - [aux_sym__val_number_token1] = ACTIONS(2238), - [aux_sym__val_number_token2] = ACTIONS(2238), - [aux_sym__val_number_token3] = ACTIONS(2238), - [aux_sym__val_number_token4] = ACTIONS(2238), - [aux_sym__val_number_token5] = ACTIONS(2238), - [aux_sym__val_number_token6] = ACTIONS(2238), - [anon_sym_0b] = ACTIONS(2234), - [anon_sym_0o] = ACTIONS(2234), - [anon_sym_0x] = ACTIONS(2234), - [sym_val_date] = ACTIONS(2238), - [anon_sym_DQUOTE] = ACTIONS(2238), - [sym__str_single_quotes] = ACTIONS(2238), - [sym__str_back_ticks] = ACTIONS(2238), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2238), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2238), - [anon_sym_err_GT] = ACTIONS(2234), - [anon_sym_out_GT] = ACTIONS(2234), - [anon_sym_e_GT] = ACTIONS(2234), - [anon_sym_o_GT] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT] = ACTIONS(2234), - [anon_sym_err_GT_GT] = ACTIONS(2238), - [anon_sym_out_GT_GT] = ACTIONS(2238), - [anon_sym_e_GT_GT] = ACTIONS(2238), - [anon_sym_o_GT_GT] = ACTIONS(2238), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2238), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2238), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2238), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2238), - [aux_sym_unquoted_token1] = ACTIONS(2234), - [aux_sym_unquoted_token2] = ACTIONS(1579), + [ts_builtin_sym_end] = ACTIONS(1719), + [sym__newline] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_PIPE] = ACTIONS(1719), + [anon_sym_err_GT_PIPE] = ACTIONS(1719), + [anon_sym_out_GT_PIPE] = ACTIONS(1719), + [anon_sym_e_GT_PIPE] = ACTIONS(1719), + [anon_sym_o_GT_PIPE] = ACTIONS(1719), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1719), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1719), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1719), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1719), + [anon_sym_GT2] = ACTIONS(1707), + [anon_sym_DASH2] = ACTIONS(1719), + [anon_sym_in2] = ACTIONS(1719), + [anon_sym_STAR2] = ACTIONS(1707), + [anon_sym_and2] = ACTIONS(1719), + [anon_sym_xor2] = ACTIONS(1719), + [anon_sym_or2] = ACTIONS(1719), + [anon_sym_not_DASHin2] = ACTIONS(1719), + [anon_sym_starts_DASHwith2] = ACTIONS(1719), + [anon_sym_ends_DASHwith2] = ACTIONS(1719), + [anon_sym_EQ_EQ2] = ACTIONS(1719), + [anon_sym_BANG_EQ2] = ACTIONS(1719), + [anon_sym_LT2] = ACTIONS(1707), + [anon_sym_LT_EQ2] = ACTIONS(1719), + [anon_sym_GT_EQ2] = ACTIONS(1719), + [anon_sym_EQ_TILDE2] = ACTIONS(1719), + [anon_sym_BANG_TILDE2] = ACTIONS(1719), + [anon_sym_LPAREN2] = ACTIONS(4543), + [anon_sym_STAR_STAR2] = ACTIONS(1719), + [anon_sym_PLUS_PLUS2] = ACTIONS(1719), + [anon_sym_SLASH2] = ACTIONS(1707), + [anon_sym_mod2] = ACTIONS(1719), + [anon_sym_SLASH_SLASH2] = ACTIONS(1719), + [anon_sym_PLUS2] = ACTIONS(1707), + [anon_sym_bit_DASHshl2] = ACTIONS(1719), + [anon_sym_bit_DASHshr2] = ACTIONS(1719), + [anon_sym_bit_DASHand2] = ACTIONS(1719), + [anon_sym_bit_DASHxor2] = ACTIONS(1719), + [anon_sym_bit_DASHor2] = ACTIONS(1719), + [anon_sym_DOT_DOT2] = ACTIONS(4858), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4860), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4860), + [sym_filesize_unit] = ACTIONS(4952), + [sym_duration_unit] = ACTIONS(4954), + [anon_sym_err_GT] = ACTIONS(1707), + [anon_sym_out_GT] = ACTIONS(1707), + [anon_sym_e_GT] = ACTIONS(1707), + [anon_sym_o_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT] = ACTIONS(1707), + [anon_sym_err_GT_GT] = ACTIONS(1719), + [anon_sym_out_GT_GT] = ACTIONS(1719), + [anon_sym_e_GT_GT] = ACTIONS(1719), + [anon_sym_o_GT_GT] = ACTIONS(1719), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1719), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1719), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1719), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1719), + [aux_sym_unquoted_token2] = ACTIONS(4956), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2238), }, - [1636] = { - [sym_cell_path] = STATE(1997), - [sym_path] = STATE(1894), - [sym_comment] = STATE(1636), - [aux_sym_cell_path_repeat1] = STATE(1702), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1972), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_in2] = ACTIONS(1974), - [anon_sym_if] = ACTIONS(1974), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_EQ_GT] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1972), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1972), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1972), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1972), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_DOT] = ACTIONS(4902), - [anon_sym_err_GT] = ACTIONS(1972), - [anon_sym_out_GT] = ACTIONS(1972), - [anon_sym_e_GT] = ACTIONS(1972), - [anon_sym_o_GT] = ACTIONS(1972), - [anon_sym_err_PLUSout_GT] = ACTIONS(1972), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1972), - [anon_sym_o_PLUSe_GT] = ACTIONS(1972), - [anon_sym_e_PLUSo_GT] = ACTIONS(1972), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), + [1626] = { + [sym_cell_path] = STATE(2023), + [sym_path] = STATE(1882), + [sym_comment] = STATE(1626), + [aux_sym_cell_path_repeat1] = STATE(1690), + [sym__newline] = ACTIONS(1933), + [anon_sym_SEMI] = ACTIONS(1933), + [anon_sym_PIPE] = ACTIONS(1933), + [anon_sym_err_GT_PIPE] = ACTIONS(1933), + [anon_sym_out_GT_PIPE] = ACTIONS(1933), + [anon_sym_e_GT_PIPE] = ACTIONS(1933), + [anon_sym_o_GT_PIPE] = ACTIONS(1933), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1933), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1933), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1933), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1933), + [anon_sym_RPAREN] = ACTIONS(1933), + [anon_sym_GT2] = ACTIONS(1931), + [anon_sym_DASH2] = ACTIONS(1933), + [anon_sym_in2] = ACTIONS(1933), + [anon_sym_if] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_RBRACE] = ACTIONS(1933), + [anon_sym_EQ_GT] = ACTIONS(1933), + [anon_sym_STAR2] = ACTIONS(1931), + [anon_sym_and2] = ACTIONS(1933), + [anon_sym_xor2] = ACTIONS(1933), + [anon_sym_or2] = ACTIONS(1933), + [anon_sym_not_DASHin2] = ACTIONS(1933), + [anon_sym_starts_DASHwith2] = ACTIONS(1933), + [anon_sym_ends_DASHwith2] = ACTIONS(1933), + [anon_sym_EQ_EQ2] = ACTIONS(1933), + [anon_sym_BANG_EQ2] = ACTIONS(1933), + [anon_sym_LT2] = ACTIONS(1931), + [anon_sym_LT_EQ2] = ACTIONS(1933), + [anon_sym_GT_EQ2] = ACTIONS(1933), + [anon_sym_EQ_TILDE2] = ACTIONS(1933), + [anon_sym_BANG_TILDE2] = ACTIONS(1933), + [anon_sym_STAR_STAR2] = ACTIONS(1933), + [anon_sym_PLUS_PLUS2] = ACTIONS(1933), + [anon_sym_SLASH2] = ACTIONS(1931), + [anon_sym_mod2] = ACTIONS(1933), + [anon_sym_SLASH_SLASH2] = ACTIONS(1933), + [anon_sym_PLUS2] = ACTIONS(1931), + [anon_sym_bit_DASHshl2] = ACTIONS(1933), + [anon_sym_bit_DASHshr2] = ACTIONS(1933), + [anon_sym_bit_DASHand2] = ACTIONS(1933), + [anon_sym_bit_DASHxor2] = ACTIONS(1933), + [anon_sym_bit_DASHor2] = ACTIONS(1933), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_err_GT] = ACTIONS(1931), + [anon_sym_out_GT] = ACTIONS(1931), + [anon_sym_e_GT] = ACTIONS(1931), + [anon_sym_o_GT] = ACTIONS(1931), + [anon_sym_err_PLUSout_GT] = ACTIONS(1931), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1931), + [anon_sym_o_PLUSe_GT] = ACTIONS(1931), + [anon_sym_e_PLUSo_GT] = ACTIONS(1931), + [anon_sym_err_GT_GT] = ACTIONS(1933), + [anon_sym_out_GT_GT] = ACTIONS(1933), + [anon_sym_e_GT_GT] = ACTIONS(1933), + [anon_sym_o_GT_GT] = ACTIONS(1933), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1933), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1933), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1933), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1933), [anon_sym_POUND] = ACTIONS(247), }, - [1637] = { - [sym__expr_parenthesized_immediate] = STATE(7999), - [sym_comment] = STATE(1637), - [sym__newline] = ACTIONS(4971), - [anon_sym_SEMI] = ACTIONS(4971), - [anon_sym_PIPE] = ACTIONS(4971), - [anon_sym_err_GT_PIPE] = ACTIONS(4971), - [anon_sym_out_GT_PIPE] = ACTIONS(4971), - [anon_sym_e_GT_PIPE] = ACTIONS(4971), - [anon_sym_o_GT_PIPE] = ACTIONS(4971), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4971), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4971), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4971), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4971), - [anon_sym_LBRACK] = ACTIONS(4971), - [anon_sym_LPAREN] = ACTIONS(4973), - [anon_sym_RPAREN] = ACTIONS(4971), - [anon_sym_DOLLAR] = ACTIONS(4973), - [anon_sym_DASH_DASH] = ACTIONS(4971), - [anon_sym_DASH2] = ACTIONS(4973), - [anon_sym_LBRACE] = ACTIONS(4971), - [anon_sym_RBRACE] = ACTIONS(4971), - [anon_sym_DOT_DOT] = ACTIONS(4973), - [anon_sym_LPAREN2] = ACTIONS(4249), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4971), - [anon_sym_DOT_DOT_LT] = ACTIONS(4971), - [anon_sym_null] = ACTIONS(4971), - [anon_sym_true] = ACTIONS(4971), - [anon_sym_false] = ACTIONS(4971), - [aux_sym__val_number_decimal_token1] = ACTIONS(4973), - [aux_sym__val_number_decimal_token2] = ACTIONS(4971), - [aux_sym__val_number_decimal_token3] = ACTIONS(4971), - [aux_sym__val_number_decimal_token4] = ACTIONS(4971), - [aux_sym__val_number_token1] = ACTIONS(4971), - [aux_sym__val_number_token2] = ACTIONS(4971), - [aux_sym__val_number_token3] = ACTIONS(4971), - [aux_sym__val_number_token4] = ACTIONS(4971), - [aux_sym__val_number_token5] = ACTIONS(4971), - [aux_sym__val_number_token6] = ACTIONS(4971), - [anon_sym_0b] = ACTIONS(4973), - [anon_sym_0o] = ACTIONS(4973), - [anon_sym_0x] = ACTIONS(4973), - [sym_val_date] = ACTIONS(4971), - [anon_sym_DQUOTE] = ACTIONS(4971), - [sym__str_single_quotes] = ACTIONS(4971), - [sym__str_back_ticks] = ACTIONS(4971), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4971), - [anon_sym_err_GT] = ACTIONS(4973), - [anon_sym_out_GT] = ACTIONS(4973), - [anon_sym_e_GT] = ACTIONS(4973), - [anon_sym_o_GT] = ACTIONS(4973), - [anon_sym_err_PLUSout_GT] = ACTIONS(4973), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4973), - [anon_sym_o_PLUSe_GT] = ACTIONS(4973), - [anon_sym_e_PLUSo_GT] = ACTIONS(4973), - [anon_sym_err_GT_GT] = ACTIONS(4971), - [anon_sym_out_GT_GT] = ACTIONS(4971), - [anon_sym_e_GT_GT] = ACTIONS(4971), - [anon_sym_o_GT_GT] = ACTIONS(4971), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4971), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4971), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4971), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4971), - [aux_sym_unquoted_token1] = ACTIONS(4973), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4971), + [1627] = { + [sym_cell_path] = STATE(2074), + [sym_path] = STATE(1947), + [sym_comment] = STATE(1627), + [aux_sym_cell_path_repeat1] = STATE(1659), + [sym__newline] = ACTIONS(1747), + [anon_sym_SEMI] = ACTIONS(1749), + [anon_sym_PIPE] = ACTIONS(1749), + [anon_sym_err_GT_PIPE] = ACTIONS(1749), + [anon_sym_out_GT_PIPE] = ACTIONS(1749), + [anon_sym_e_GT_PIPE] = ACTIONS(1749), + [anon_sym_o_GT_PIPE] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1749), + [anon_sym_GT2] = ACTIONS(1747), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_in2] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1749), + [anon_sym_STAR2] = ACTIONS(1747), + [anon_sym_and2] = ACTIONS(1749), + [anon_sym_xor2] = ACTIONS(1749), + [anon_sym_or2] = ACTIONS(1749), + [anon_sym_not_DASHin2] = ACTIONS(1749), + [anon_sym_starts_DASHwith2] = ACTIONS(1749), + [anon_sym_ends_DASHwith2] = ACTIONS(1749), + [anon_sym_EQ_EQ2] = ACTIONS(1749), + [anon_sym_BANG_EQ2] = ACTIONS(1749), + [anon_sym_LT2] = ACTIONS(1747), + [anon_sym_LT_EQ2] = ACTIONS(1749), + [anon_sym_GT_EQ2] = ACTIONS(1749), + [anon_sym_EQ_TILDE2] = ACTIONS(1749), + [anon_sym_BANG_TILDE2] = ACTIONS(1749), + [anon_sym_STAR_STAR2] = ACTIONS(1749), + [anon_sym_PLUS_PLUS2] = ACTIONS(1749), + [anon_sym_SLASH2] = ACTIONS(1747), + [anon_sym_mod2] = ACTIONS(1749), + [anon_sym_SLASH_SLASH2] = ACTIONS(1749), + [anon_sym_PLUS2] = ACTIONS(1747), + [anon_sym_bit_DASHshl2] = ACTIONS(1749), + [anon_sym_bit_DASHshr2] = ACTIONS(1749), + [anon_sym_bit_DASHand2] = ACTIONS(1749), + [anon_sym_bit_DASHxor2] = ACTIONS(1749), + [anon_sym_bit_DASHor2] = ACTIONS(1749), + [anon_sym_DOT_DOT2] = ACTIONS(1747), + [anon_sym_DOT] = ACTIONS(4911), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1749), + [aux_sym_record_entry_token1] = ACTIONS(1749), + [anon_sym_err_GT] = ACTIONS(1747), + [anon_sym_out_GT] = ACTIONS(1747), + [anon_sym_e_GT] = ACTIONS(1747), + [anon_sym_o_GT] = ACTIONS(1747), + [anon_sym_err_PLUSout_GT] = ACTIONS(1747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1747), + [anon_sym_o_PLUSe_GT] = ACTIONS(1747), + [anon_sym_e_PLUSo_GT] = ACTIONS(1747), + [anon_sym_err_GT_GT] = ACTIONS(1749), + [anon_sym_out_GT_GT] = ACTIONS(1749), + [anon_sym_e_GT_GT] = ACTIONS(1749), + [anon_sym_o_GT_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(247), }, - [1638] = { - [sym__expr_parenthesized_immediate] = STATE(7999), - [sym_comment] = STATE(1638), - [sym__newline] = ACTIONS(4975), - [anon_sym_SEMI] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(4975), - [anon_sym_err_GT_PIPE] = ACTIONS(4975), - [anon_sym_out_GT_PIPE] = ACTIONS(4975), - [anon_sym_e_GT_PIPE] = ACTIONS(4975), - [anon_sym_o_GT_PIPE] = ACTIONS(4975), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4975), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4975), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4975), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4975), - [anon_sym_LBRACK] = ACTIONS(4975), - [anon_sym_LPAREN] = ACTIONS(4977), - [anon_sym_RPAREN] = ACTIONS(4975), - [anon_sym_DOLLAR] = ACTIONS(4977), - [anon_sym_DASH_DASH] = ACTIONS(4975), - [anon_sym_DASH2] = ACTIONS(4977), - [anon_sym_LBRACE] = ACTIONS(4975), - [anon_sym_RBRACE] = ACTIONS(4975), - [anon_sym_DOT_DOT] = ACTIONS(4977), - [anon_sym_LPAREN2] = ACTIONS(4249), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4975), - [anon_sym_DOT_DOT_LT] = ACTIONS(4975), - [anon_sym_null] = ACTIONS(4975), - [anon_sym_true] = ACTIONS(4975), - [anon_sym_false] = ACTIONS(4975), - [aux_sym__val_number_decimal_token1] = ACTIONS(4977), - [aux_sym__val_number_decimal_token2] = ACTIONS(4975), - [aux_sym__val_number_decimal_token3] = ACTIONS(4975), - [aux_sym__val_number_decimal_token4] = ACTIONS(4975), - [aux_sym__val_number_token1] = ACTIONS(4975), - [aux_sym__val_number_token2] = ACTIONS(4975), - [aux_sym__val_number_token3] = ACTIONS(4975), - [aux_sym__val_number_token4] = ACTIONS(4975), - [aux_sym__val_number_token5] = ACTIONS(4975), - [aux_sym__val_number_token6] = ACTIONS(4975), - [anon_sym_0b] = ACTIONS(4977), - [anon_sym_0o] = ACTIONS(4977), - [anon_sym_0x] = ACTIONS(4977), - [sym_val_date] = ACTIONS(4975), - [anon_sym_DQUOTE] = ACTIONS(4975), - [sym__str_single_quotes] = ACTIONS(4975), - [sym__str_back_ticks] = ACTIONS(4975), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4975), - [anon_sym_err_GT] = ACTIONS(4977), - [anon_sym_out_GT] = ACTIONS(4977), - [anon_sym_e_GT] = ACTIONS(4977), - [anon_sym_o_GT] = ACTIONS(4977), - [anon_sym_err_PLUSout_GT] = ACTIONS(4977), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4977), - [anon_sym_o_PLUSe_GT] = ACTIONS(4977), - [anon_sym_e_PLUSo_GT] = ACTIONS(4977), - [anon_sym_err_GT_GT] = ACTIONS(4975), - [anon_sym_out_GT_GT] = ACTIONS(4975), - [anon_sym_e_GT_GT] = ACTIONS(4975), - [anon_sym_o_GT_GT] = ACTIONS(4975), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4975), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4975), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4975), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4975), - [aux_sym_unquoted_token1] = ACTIONS(4977), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4975), + [1628] = { + [sym_cell_path] = STATE(2046), + [sym_path] = STATE(1882), + [sym_comment] = STATE(1628), + [aux_sym_cell_path_repeat1] = STATE(1690), + [sym__newline] = ACTIONS(1901), + [anon_sym_SEMI] = ACTIONS(1901), + [anon_sym_PIPE] = ACTIONS(1901), + [anon_sym_err_GT_PIPE] = ACTIONS(1901), + [anon_sym_out_GT_PIPE] = ACTIONS(1901), + [anon_sym_e_GT_PIPE] = ACTIONS(1901), + [anon_sym_o_GT_PIPE] = ACTIONS(1901), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1901), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1901), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1901), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1901), + [anon_sym_RPAREN] = ACTIONS(1901), + [anon_sym_GT2] = ACTIONS(1899), + [anon_sym_DASH2] = ACTIONS(1901), + [anon_sym_in2] = ACTIONS(1901), + [anon_sym_if] = ACTIONS(1901), + [anon_sym_LBRACE] = ACTIONS(1901), + [anon_sym_RBRACE] = ACTIONS(1901), + [anon_sym_EQ_GT] = ACTIONS(1901), + [anon_sym_STAR2] = ACTIONS(1899), + [anon_sym_and2] = ACTIONS(1901), + [anon_sym_xor2] = ACTIONS(1901), + [anon_sym_or2] = ACTIONS(1901), + [anon_sym_not_DASHin2] = ACTIONS(1901), + [anon_sym_starts_DASHwith2] = ACTIONS(1901), + [anon_sym_ends_DASHwith2] = ACTIONS(1901), + [anon_sym_EQ_EQ2] = ACTIONS(1901), + [anon_sym_BANG_EQ2] = ACTIONS(1901), + [anon_sym_LT2] = ACTIONS(1899), + [anon_sym_LT_EQ2] = ACTIONS(1901), + [anon_sym_GT_EQ2] = ACTIONS(1901), + [anon_sym_EQ_TILDE2] = ACTIONS(1901), + [anon_sym_BANG_TILDE2] = ACTIONS(1901), + [anon_sym_STAR_STAR2] = ACTIONS(1901), + [anon_sym_PLUS_PLUS2] = ACTIONS(1901), + [anon_sym_SLASH2] = ACTIONS(1899), + [anon_sym_mod2] = ACTIONS(1901), + [anon_sym_SLASH_SLASH2] = ACTIONS(1901), + [anon_sym_PLUS2] = ACTIONS(1899), + [anon_sym_bit_DASHshl2] = ACTIONS(1901), + [anon_sym_bit_DASHshr2] = ACTIONS(1901), + [anon_sym_bit_DASHand2] = ACTIONS(1901), + [anon_sym_bit_DASHxor2] = ACTIONS(1901), + [anon_sym_bit_DASHor2] = ACTIONS(1901), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_err_GT] = ACTIONS(1899), + [anon_sym_out_GT] = ACTIONS(1899), + [anon_sym_e_GT] = ACTIONS(1899), + [anon_sym_o_GT] = ACTIONS(1899), + [anon_sym_err_PLUSout_GT] = ACTIONS(1899), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1899), + [anon_sym_o_PLUSe_GT] = ACTIONS(1899), + [anon_sym_e_PLUSo_GT] = ACTIONS(1899), + [anon_sym_err_GT_GT] = ACTIONS(1901), + [anon_sym_out_GT_GT] = ACTIONS(1901), + [anon_sym_e_GT_GT] = ACTIONS(1901), + [anon_sym_o_GT_GT] = ACTIONS(1901), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1901), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1901), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1901), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1901), + [anon_sym_POUND] = ACTIONS(247), }, - [1639] = { - [sym_cell_path] = STATE(1998), - [sym_path] = STATE(1894), - [sym_comment] = STATE(1639), - [aux_sym_cell_path_repeat1] = STATE(1702), - [sym__newline] = ACTIONS(1986), - [anon_sym_SEMI] = ACTIONS(1986), - [anon_sym_PIPE] = ACTIONS(1986), - [anon_sym_err_GT_PIPE] = ACTIONS(1986), - [anon_sym_out_GT_PIPE] = ACTIONS(1986), - [anon_sym_e_GT_PIPE] = ACTIONS(1986), - [anon_sym_o_GT_PIPE] = ACTIONS(1986), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1986), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1986), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1986), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1986), - [anon_sym_RPAREN] = ACTIONS(1986), - [anon_sym_GT2] = ACTIONS(1984), - [anon_sym_DASH2] = ACTIONS(1986), - [anon_sym_in2] = ACTIONS(1986), - [anon_sym_if] = ACTIONS(1986), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_RBRACE] = ACTIONS(1986), - [anon_sym_EQ_GT] = ACTIONS(1986), - [anon_sym_STAR2] = ACTIONS(1984), - [anon_sym_and2] = ACTIONS(1986), - [anon_sym_xor2] = ACTIONS(1986), - [anon_sym_or2] = ACTIONS(1986), - [anon_sym_not_DASHin2] = ACTIONS(1986), - [anon_sym_starts_DASHwith2] = ACTIONS(1986), - [anon_sym_ends_DASHwith2] = ACTIONS(1986), - [anon_sym_EQ_EQ2] = ACTIONS(1986), - [anon_sym_BANG_EQ2] = ACTIONS(1986), - [anon_sym_LT2] = ACTIONS(1984), - [anon_sym_LT_EQ2] = ACTIONS(1986), - [anon_sym_GT_EQ2] = ACTIONS(1986), - [anon_sym_EQ_TILDE2] = ACTIONS(1986), - [anon_sym_BANG_TILDE2] = ACTIONS(1986), - [anon_sym_STAR_STAR2] = ACTIONS(1986), - [anon_sym_PLUS_PLUS2] = ACTIONS(1986), - [anon_sym_SLASH2] = ACTIONS(1984), - [anon_sym_mod2] = ACTIONS(1986), - [anon_sym_SLASH_SLASH2] = ACTIONS(1986), - [anon_sym_PLUS2] = ACTIONS(1984), - [anon_sym_bit_DASHshl2] = ACTIONS(1986), - [anon_sym_bit_DASHshr2] = ACTIONS(1986), - [anon_sym_bit_DASHand2] = ACTIONS(1986), - [anon_sym_bit_DASHxor2] = ACTIONS(1986), - [anon_sym_bit_DASHor2] = ACTIONS(1986), - [anon_sym_DOT] = ACTIONS(4902), - [anon_sym_err_GT] = ACTIONS(1984), - [anon_sym_out_GT] = ACTIONS(1984), - [anon_sym_e_GT] = ACTIONS(1984), - [anon_sym_o_GT] = ACTIONS(1984), - [anon_sym_err_PLUSout_GT] = ACTIONS(1984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1984), - [anon_sym_o_PLUSe_GT] = ACTIONS(1984), - [anon_sym_e_PLUSo_GT] = ACTIONS(1984), - [anon_sym_err_GT_GT] = ACTIONS(1986), - [anon_sym_out_GT_GT] = ACTIONS(1986), - [anon_sym_e_GT_GT] = ACTIONS(1986), - [anon_sym_o_GT_GT] = ACTIONS(1986), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1986), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1986), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1986), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1986), + [1629] = { + [sym_cell_path] = STATE(2049), + [sym_path] = STATE(1882), + [sym_comment] = STATE(1629), + [aux_sym_cell_path_repeat1] = STATE(1690), + [sym__newline] = ACTIONS(1909), + [anon_sym_SEMI] = ACTIONS(1909), + [anon_sym_PIPE] = ACTIONS(1909), + [anon_sym_err_GT_PIPE] = ACTIONS(1909), + [anon_sym_out_GT_PIPE] = ACTIONS(1909), + [anon_sym_e_GT_PIPE] = ACTIONS(1909), + [anon_sym_o_GT_PIPE] = ACTIONS(1909), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1909), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1909), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1909), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1909), + [anon_sym_RPAREN] = ACTIONS(1909), + [anon_sym_GT2] = ACTIONS(1907), + [anon_sym_DASH2] = ACTIONS(1909), + [anon_sym_in2] = ACTIONS(1909), + [anon_sym_if] = ACTIONS(1909), + [anon_sym_LBRACE] = ACTIONS(1909), + [anon_sym_RBRACE] = ACTIONS(1909), + [anon_sym_EQ_GT] = ACTIONS(1909), + [anon_sym_STAR2] = ACTIONS(1907), + [anon_sym_and2] = ACTIONS(1909), + [anon_sym_xor2] = ACTIONS(1909), + [anon_sym_or2] = ACTIONS(1909), + [anon_sym_not_DASHin2] = ACTIONS(1909), + [anon_sym_starts_DASHwith2] = ACTIONS(1909), + [anon_sym_ends_DASHwith2] = ACTIONS(1909), + [anon_sym_EQ_EQ2] = ACTIONS(1909), + [anon_sym_BANG_EQ2] = ACTIONS(1909), + [anon_sym_LT2] = ACTIONS(1907), + [anon_sym_LT_EQ2] = ACTIONS(1909), + [anon_sym_GT_EQ2] = ACTIONS(1909), + [anon_sym_EQ_TILDE2] = ACTIONS(1909), + [anon_sym_BANG_TILDE2] = ACTIONS(1909), + [anon_sym_STAR_STAR2] = ACTIONS(1909), + [anon_sym_PLUS_PLUS2] = ACTIONS(1909), + [anon_sym_SLASH2] = ACTIONS(1907), + [anon_sym_mod2] = ACTIONS(1909), + [anon_sym_SLASH_SLASH2] = ACTIONS(1909), + [anon_sym_PLUS2] = ACTIONS(1907), + [anon_sym_bit_DASHshl2] = ACTIONS(1909), + [anon_sym_bit_DASHshr2] = ACTIONS(1909), + [anon_sym_bit_DASHand2] = ACTIONS(1909), + [anon_sym_bit_DASHxor2] = ACTIONS(1909), + [anon_sym_bit_DASHor2] = ACTIONS(1909), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_err_GT] = ACTIONS(1907), + [anon_sym_out_GT] = ACTIONS(1907), + [anon_sym_e_GT] = ACTIONS(1907), + [anon_sym_o_GT] = ACTIONS(1907), + [anon_sym_err_PLUSout_GT] = ACTIONS(1907), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1907), + [anon_sym_o_PLUSe_GT] = ACTIONS(1907), + [anon_sym_e_PLUSo_GT] = ACTIONS(1907), + [anon_sym_err_GT_GT] = ACTIONS(1909), + [anon_sym_out_GT_GT] = ACTIONS(1909), + [anon_sym_e_GT_GT] = ACTIONS(1909), + [anon_sym_o_GT_GT] = ACTIONS(1909), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1909), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1909), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1909), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1909), [anon_sym_POUND] = ACTIONS(247), }, - [1640] = { - [sym_comment] = STATE(1640), + [1630] = { + [sym_comment] = STATE(1630), + [ts_builtin_sym_end] = ACTIONS(1737), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1733), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_DASH2] = ACTIONS(1733), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_DOT_DOT] = ACTIONS(1733), + [anon_sym_DOT_DOT2] = ACTIONS(1733), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1733), + [anon_sym_DOT_DOT_LT] = ACTIONS(1733), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [anon_sym_null] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(1737), + [anon_sym_false] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1733), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1737), + [aux_sym__val_number_token5] = ACTIONS(1737), + [aux_sym__val_number_token6] = ACTIONS(1737), + [anon_sym_0b] = ACTIONS(1733), + [anon_sym_0o] = ACTIONS(1733), + [anon_sym_0x] = ACTIONS(1733), + [sym_val_date] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1733), + [anon_sym_out_GT] = ACTIONS(1733), + [anon_sym_e_GT] = ACTIONS(1733), + [anon_sym_o_GT] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT] = ACTIONS(1733), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [aux_sym_unquoted_token1] = ACTIONS(1733), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1737), + }, + [1631] = { + [sym_comment] = STATE(1631), + [ts_builtin_sym_end] = ACTIONS(2054), + [sym__newline] = ACTIONS(2054), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_PIPE] = ACTIONS(2054), + [anon_sym_err_GT_PIPE] = ACTIONS(2054), + [anon_sym_out_GT_PIPE] = ACTIONS(2054), + [anon_sym_e_GT_PIPE] = ACTIONS(2054), + [anon_sym_o_GT_PIPE] = ACTIONS(2054), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2054), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2054), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2054), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2054), + [anon_sym_LBRACK] = ACTIONS(2054), + [anon_sym_LPAREN] = ACTIONS(2054), + [anon_sym_DOLLAR] = ACTIONS(2052), + [anon_sym_DASH_DASH] = ACTIONS(2054), + [anon_sym_DASH2] = ACTIONS(2052), + [anon_sym_LBRACE] = ACTIONS(2054), + [anon_sym_DOT_DOT] = ACTIONS(2052), + [anon_sym_DOT_DOT2] = ACTIONS(2052), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2054), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2054), + [anon_sym_null] = ACTIONS(2054), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [aux_sym__val_number_decimal_token1] = ACTIONS(2052), + [aux_sym__val_number_decimal_token2] = ACTIONS(2054), + [aux_sym__val_number_decimal_token3] = ACTIONS(2054), + [aux_sym__val_number_decimal_token4] = ACTIONS(2054), + [aux_sym__val_number_token1] = ACTIONS(2054), + [aux_sym__val_number_token2] = ACTIONS(2054), + [aux_sym__val_number_token3] = ACTIONS(2054), + [aux_sym__val_number_token4] = ACTIONS(2054), + [aux_sym__val_number_token5] = ACTIONS(2054), + [aux_sym__val_number_token6] = ACTIONS(2054), + [anon_sym_0b] = ACTIONS(2052), + [anon_sym_0o] = ACTIONS(2052), + [anon_sym_0x] = ACTIONS(2052), + [sym_val_date] = ACTIONS(2054), + [anon_sym_DQUOTE] = ACTIONS(2054), + [sym__str_single_quotes] = ACTIONS(2054), + [sym__str_back_ticks] = ACTIONS(2054), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2054), + [anon_sym_err_GT] = ACTIONS(2052), + [anon_sym_out_GT] = ACTIONS(2052), + [anon_sym_e_GT] = ACTIONS(2052), + [anon_sym_o_GT] = ACTIONS(2052), + [anon_sym_err_PLUSout_GT] = ACTIONS(2052), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2052), + [anon_sym_o_PLUSe_GT] = ACTIONS(2052), + [anon_sym_e_PLUSo_GT] = ACTIONS(2052), + [anon_sym_err_GT_GT] = ACTIONS(2054), + [anon_sym_out_GT_GT] = ACTIONS(2054), + [anon_sym_e_GT_GT] = ACTIONS(2054), + [anon_sym_o_GT_GT] = ACTIONS(2054), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2054), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2054), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2054), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2054), + [aux_sym_unquoted_token1] = ACTIONS(2052), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2054), + }, + [1632] = { + [sym_comment] = STATE(1632), + [ts_builtin_sym_end] = ACTIONS(2120), + [sym__newline] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2120), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_err_GT_PIPE] = ACTIONS(2120), + [anon_sym_out_GT_PIPE] = ACTIONS(2120), + [anon_sym_e_GT_PIPE] = ACTIONS(2120), + [anon_sym_o_GT_PIPE] = ACTIONS(2120), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2120), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2120), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2120), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2120), + [anon_sym_LBRACK] = ACTIONS(2120), + [anon_sym_LPAREN] = ACTIONS(2120), + [anon_sym_DOLLAR] = ACTIONS(2118), + [anon_sym_DASH_DASH] = ACTIONS(2120), + [anon_sym_DASH2] = ACTIONS(2118), + [anon_sym_LBRACE] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2118), + [anon_sym_DOT_DOT2] = ACTIONS(2118), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2118), + [anon_sym_DOT_DOT_LT] = ACTIONS(2118), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2120), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2120), + [anon_sym_null] = ACTIONS(2120), + [anon_sym_true] = ACTIONS(2120), + [anon_sym_false] = ACTIONS(2120), + [aux_sym__val_number_decimal_token1] = ACTIONS(2118), + [aux_sym__val_number_decimal_token2] = ACTIONS(2120), + [aux_sym__val_number_decimal_token3] = ACTIONS(2120), + [aux_sym__val_number_decimal_token4] = ACTIONS(2120), + [aux_sym__val_number_token1] = ACTIONS(2120), + [aux_sym__val_number_token2] = ACTIONS(2120), + [aux_sym__val_number_token3] = ACTIONS(2120), + [aux_sym__val_number_token4] = ACTIONS(2120), + [aux_sym__val_number_token5] = ACTIONS(2120), + [aux_sym__val_number_token6] = ACTIONS(2120), + [anon_sym_0b] = ACTIONS(2118), + [anon_sym_0o] = ACTIONS(2118), + [anon_sym_0x] = ACTIONS(2118), + [sym_val_date] = ACTIONS(2120), + [anon_sym_DQUOTE] = ACTIONS(2120), + [sym__str_single_quotes] = ACTIONS(2120), + [sym__str_back_ticks] = ACTIONS(2120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2120), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2120), + [anon_sym_err_GT] = ACTIONS(2118), + [anon_sym_out_GT] = ACTIONS(2118), + [anon_sym_e_GT] = ACTIONS(2118), + [anon_sym_o_GT] = ACTIONS(2118), + [anon_sym_err_PLUSout_GT] = ACTIONS(2118), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2118), + [anon_sym_o_PLUSe_GT] = ACTIONS(2118), + [anon_sym_e_PLUSo_GT] = ACTIONS(2118), + [anon_sym_err_GT_GT] = ACTIONS(2120), + [anon_sym_out_GT_GT] = ACTIONS(2120), + [anon_sym_e_GT_GT] = ACTIONS(2120), + [anon_sym_o_GT_GT] = ACTIONS(2120), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2120), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2120), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2120), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2120), + [aux_sym_unquoted_token1] = ACTIONS(2118), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2120), + }, + [1633] = { + [sym_comment] = STATE(1633), + [ts_builtin_sym_end] = ACTIONS(2136), + [sym__newline] = ACTIONS(2136), + [anon_sym_SEMI] = ACTIONS(2136), + [anon_sym_PIPE] = ACTIONS(2136), + [anon_sym_err_GT_PIPE] = ACTIONS(2136), + [anon_sym_out_GT_PIPE] = ACTIONS(2136), + [anon_sym_e_GT_PIPE] = ACTIONS(2136), + [anon_sym_o_GT_PIPE] = ACTIONS(2136), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), + [anon_sym_LBRACK] = ACTIONS(2136), + [anon_sym_LPAREN] = ACTIONS(2136), + [anon_sym_DOLLAR] = ACTIONS(2130), + [anon_sym_DASH_DASH] = ACTIONS(2136), + [anon_sym_DASH2] = ACTIONS(2130), + [anon_sym_LBRACE] = ACTIONS(2136), + [anon_sym_DOT_DOT] = ACTIONS(2130), + [anon_sym_DOT_DOT2] = ACTIONS(4958), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2130), + [anon_sym_DOT_DOT_LT] = ACTIONS(2130), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4960), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4960), + [anon_sym_null] = ACTIONS(2136), + [anon_sym_true] = ACTIONS(2136), + [anon_sym_false] = ACTIONS(2136), + [aux_sym__val_number_decimal_token1] = ACTIONS(2130), + [aux_sym__val_number_decimal_token2] = ACTIONS(2136), + [aux_sym__val_number_decimal_token3] = ACTIONS(2136), + [aux_sym__val_number_decimal_token4] = ACTIONS(2136), + [aux_sym__val_number_token1] = ACTIONS(2136), + [aux_sym__val_number_token2] = ACTIONS(2136), + [aux_sym__val_number_token3] = ACTIONS(2136), + [aux_sym__val_number_token4] = ACTIONS(2136), + [aux_sym__val_number_token5] = ACTIONS(2136), + [aux_sym__val_number_token6] = ACTIONS(2136), + [anon_sym_0b] = ACTIONS(2130), + [anon_sym_0o] = ACTIONS(2130), + [anon_sym_0x] = ACTIONS(2130), + [sym_val_date] = ACTIONS(2136), + [anon_sym_DQUOTE] = ACTIONS(2136), + [sym__str_single_quotes] = ACTIONS(2136), + [sym__str_back_ticks] = ACTIONS(2136), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2136), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2136), + [anon_sym_err_GT] = ACTIONS(2130), + [anon_sym_out_GT] = ACTIONS(2130), + [anon_sym_e_GT] = ACTIONS(2130), + [anon_sym_o_GT] = ACTIONS(2130), + [anon_sym_err_PLUSout_GT] = ACTIONS(2130), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2130), + [anon_sym_o_PLUSe_GT] = ACTIONS(2130), + [anon_sym_e_PLUSo_GT] = ACTIONS(2130), + [anon_sym_err_GT_GT] = ACTIONS(2136), + [anon_sym_out_GT_GT] = ACTIONS(2136), + [anon_sym_e_GT_GT] = ACTIONS(2136), + [anon_sym_o_GT_GT] = ACTIONS(2136), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), + [aux_sym_unquoted_token1] = ACTIONS(2130), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2136), + }, + [1634] = { + [sym_comment] = STATE(1634), + [sym__newline] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1028), + [anon_sym_PIPE] = ACTIONS(1028), + [anon_sym_err_GT_PIPE] = ACTIONS(1028), + [anon_sym_out_GT_PIPE] = ACTIONS(1028), + [anon_sym_e_GT_PIPE] = ACTIONS(1028), + [anon_sym_o_GT_PIPE] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), + [anon_sym_LBRACK] = ACTIONS(1028), + [anon_sym_LPAREN] = ACTIONS(1026), + [anon_sym_RPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH_DASH] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(1026), + [anon_sym_LBRACE] = ACTIONS(1028), + [anon_sym_RBRACE] = ACTIONS(1028), + [anon_sym_DOT_DOT] = ACTIONS(1026), + [anon_sym_LPAREN2] = ACTIONS(2226), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT] = ACTIONS(1026), + [anon_sym_null] = ACTIONS(1026), + [anon_sym_true] = ACTIONS(1026), + [anon_sym_false] = ACTIONS(1026), + [aux_sym__val_number_decimal_token1] = ACTIONS(1026), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1026), + [aux_sym__val_number_decimal_token4] = ACTIONS(1026), + [aux_sym__val_number_token1] = ACTIONS(1026), + [aux_sym__val_number_token2] = ACTIONS(1026), + [aux_sym__val_number_token3] = ACTIONS(1026), + [aux_sym__val_number_token4] = ACTIONS(1026), + [aux_sym__val_number_token5] = ACTIONS(1026), + [aux_sym__val_number_token6] = ACTIONS(1026), + [anon_sym_0b] = ACTIONS(1026), + [anon_sym_0o] = ACTIONS(1026), + [anon_sym_0x] = ACTIONS(1026), + [sym_val_date] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1028), + [sym__str_single_quotes] = ACTIONS(1028), + [sym__str_back_ticks] = ACTIONS(1028), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1028), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1028), + [anon_sym_err_GT] = ACTIONS(1026), + [anon_sym_out_GT] = ACTIONS(1026), + [anon_sym_e_GT] = ACTIONS(1026), + [anon_sym_o_GT] = ACTIONS(1026), + [anon_sym_err_PLUSout_GT] = ACTIONS(1026), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), + [anon_sym_o_PLUSe_GT] = ACTIONS(1026), + [anon_sym_e_PLUSo_GT] = ACTIONS(1026), + [anon_sym_err_GT_GT] = ACTIONS(1026), + [anon_sym_out_GT_GT] = ACTIONS(1026), + [anon_sym_e_GT_GT] = ACTIONS(1026), + [anon_sym_o_GT_GT] = ACTIONS(1026), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1026), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1026), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1026), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1026), + [aux_sym_unquoted_token1] = ACTIONS(1026), + [aux_sym_unquoted_token4] = ACTIONS(2228), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1028), + }, + [1635] = { + [sym_comment] = STATE(1635), + [sym__newline] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2250), + [anon_sym_err_GT_PIPE] = ACTIONS(2250), + [anon_sym_out_GT_PIPE] = ACTIONS(2250), + [anon_sym_e_GT_PIPE] = ACTIONS(2250), + [anon_sym_o_GT_PIPE] = ACTIONS(2250), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2250), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2250), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2250), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2246), + [anon_sym_RPAREN] = ACTIONS(2250), + [anon_sym_DOLLAR] = ACTIONS(2246), + [anon_sym_DASH_DASH] = ACTIONS(2246), + [anon_sym_DASH2] = ACTIONS(2246), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_DOT_DOT] = ACTIONS(2246), + [anon_sym_LPAREN2] = ACTIONS(2248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2246), + [anon_sym_DOT_DOT_LT] = ACTIONS(2246), + [anon_sym_null] = ACTIONS(2246), + [anon_sym_true] = ACTIONS(2246), + [anon_sym_false] = ACTIONS(2246), + [aux_sym__val_number_decimal_token1] = ACTIONS(2246), + [aux_sym__val_number_decimal_token2] = ACTIONS(2246), + [aux_sym__val_number_decimal_token3] = ACTIONS(2246), + [aux_sym__val_number_decimal_token4] = ACTIONS(2246), + [aux_sym__val_number_token1] = ACTIONS(2246), + [aux_sym__val_number_token2] = ACTIONS(2246), + [aux_sym__val_number_token3] = ACTIONS(2246), + [aux_sym__val_number_token4] = ACTIONS(2246), + [aux_sym__val_number_token5] = ACTIONS(2246), + [aux_sym__val_number_token6] = ACTIONS(2246), + [anon_sym_0b] = ACTIONS(2246), + [anon_sym_0o] = ACTIONS(2246), + [anon_sym_0x] = ACTIONS(2246), + [sym_val_date] = ACTIONS(2246), + [anon_sym_DQUOTE] = ACTIONS(2250), + [sym__str_single_quotes] = ACTIONS(2250), + [sym__str_back_ticks] = ACTIONS(2250), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2250), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2250), + [anon_sym_err_GT] = ACTIONS(2246), + [anon_sym_out_GT] = ACTIONS(2246), + [anon_sym_e_GT] = ACTIONS(2246), + [anon_sym_o_GT] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT] = ACTIONS(2246), + [anon_sym_err_GT_GT] = ACTIONS(2246), + [anon_sym_out_GT_GT] = ACTIONS(2246), + [anon_sym_e_GT_GT] = ACTIONS(2246), + [anon_sym_o_GT_GT] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2246), + [aux_sym_unquoted_token1] = ACTIONS(2246), + [aux_sym_unquoted_token4] = ACTIONS(2252), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2250), + }, + [1636] = { + [sym_comment] = STATE(1636), [sym__newline] = ACTIONS(2256), [anon_sym_SEMI] = ACTIONS(2256), [anon_sym_PIPE] = ACTIONS(2256), @@ -225687,336 +225718,472 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2256), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2256), [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2252), + [anon_sym_LPAREN] = ACTIONS(2254), [anon_sym_RPAREN] = ACTIONS(2256), - [anon_sym_DOLLAR] = ACTIONS(2252), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_DASH2] = ACTIONS(2252), + [anon_sym_DOLLAR] = ACTIONS(2254), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_DASH2] = ACTIONS(2254), [anon_sym_LBRACE] = ACTIONS(2256), [anon_sym_RBRACE] = ACTIONS(2256), - [anon_sym_DOT_DOT] = ACTIONS(2252), - [anon_sym_LPAREN2] = ACTIONS(2254), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2256), - [anon_sym_DOT_DOT_LT] = ACTIONS(2256), - [anon_sym_null] = ACTIONS(2256), - [anon_sym_true] = ACTIONS(2256), - [anon_sym_false] = ACTIONS(2256), - [aux_sym__val_number_decimal_token1] = ACTIONS(2252), - [aux_sym__val_number_decimal_token2] = ACTIONS(2256), - [aux_sym__val_number_decimal_token3] = ACTIONS(2256), - [aux_sym__val_number_decimal_token4] = ACTIONS(2256), - [aux_sym__val_number_token1] = ACTIONS(2256), - [aux_sym__val_number_token2] = ACTIONS(2256), - [aux_sym__val_number_token3] = ACTIONS(2256), - [aux_sym__val_number_token4] = ACTIONS(2256), - [aux_sym__val_number_token5] = ACTIONS(2256), - [aux_sym__val_number_token6] = ACTIONS(2256), - [anon_sym_0b] = ACTIONS(2252), - [anon_sym_0o] = ACTIONS(2252), - [anon_sym_0x] = ACTIONS(2252), - [sym_val_date] = ACTIONS(2256), + [anon_sym_DOT_DOT] = ACTIONS(2254), + [anon_sym_LPAREN2] = ACTIONS(2248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2254), + [anon_sym_DOT_DOT_LT] = ACTIONS(2254), + [anon_sym_null] = ACTIONS(2254), + [anon_sym_true] = ACTIONS(2254), + [anon_sym_false] = ACTIONS(2254), + [aux_sym__val_number_decimal_token1] = ACTIONS(2254), + [aux_sym__val_number_decimal_token2] = ACTIONS(2254), + [aux_sym__val_number_decimal_token3] = ACTIONS(2254), + [aux_sym__val_number_decimal_token4] = ACTIONS(2254), + [aux_sym__val_number_token1] = ACTIONS(2254), + [aux_sym__val_number_token2] = ACTIONS(2254), + [aux_sym__val_number_token3] = ACTIONS(2254), + [aux_sym__val_number_token4] = ACTIONS(2254), + [aux_sym__val_number_token5] = ACTIONS(2254), + [aux_sym__val_number_token6] = ACTIONS(2254), + [anon_sym_0b] = ACTIONS(2254), + [anon_sym_0o] = ACTIONS(2254), + [anon_sym_0x] = ACTIONS(2254), + [sym_val_date] = ACTIONS(2254), [anon_sym_DQUOTE] = ACTIONS(2256), [sym__str_single_quotes] = ACTIONS(2256), [sym__str_back_ticks] = ACTIONS(2256), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2256), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2256), - [anon_sym_err_GT] = ACTIONS(2252), - [anon_sym_out_GT] = ACTIONS(2252), - [anon_sym_e_GT] = ACTIONS(2252), - [anon_sym_o_GT] = ACTIONS(2252), - [anon_sym_err_PLUSout_GT] = ACTIONS(2252), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2252), - [anon_sym_o_PLUSe_GT] = ACTIONS(2252), - [anon_sym_e_PLUSo_GT] = ACTIONS(2252), - [anon_sym_err_GT_GT] = ACTIONS(2256), - [anon_sym_out_GT_GT] = ACTIONS(2256), - [anon_sym_e_GT_GT] = ACTIONS(2256), - [anon_sym_o_GT_GT] = ACTIONS(2256), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2256), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2256), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2256), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2256), - [aux_sym_unquoted_token1] = ACTIONS(2252), - [aux_sym_unquoted_token2] = ACTIONS(2258), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_err_GT] = ACTIONS(2254), + [anon_sym_out_GT] = ACTIONS(2254), + [anon_sym_e_GT] = ACTIONS(2254), + [anon_sym_o_GT] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT] = ACTIONS(2254), + [anon_sym_err_GT_GT] = ACTIONS(2254), + [anon_sym_out_GT_GT] = ACTIONS(2254), + [anon_sym_e_GT_GT] = ACTIONS(2254), + [anon_sym_o_GT_GT] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), + [aux_sym_unquoted_token1] = ACTIONS(2254), + [aux_sym_unquoted_token4] = ACTIONS(2252), + [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2256), }, + [1637] = { + [sym_comment] = STATE(1637), + [ts_builtin_sym_end] = ACTIONS(1767), + [sym__newline] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_err_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_GT_PIPE] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_DOT_DOT] = ACTIONS(1765), + [anon_sym_DOT_DOT2] = ACTIONS(1765), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1765), + [anon_sym_DOT_DOT_LT] = ACTIONS(1765), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), + [anon_sym_null] = ACTIONS(1767), + [anon_sym_true] = ACTIONS(1767), + [anon_sym_false] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1767), + [aux_sym__val_number_token5] = ACTIONS(1767), + [aux_sym__val_number_token6] = ACTIONS(1767), + [anon_sym_0b] = ACTIONS(1765), + [anon_sym_0o] = ACTIONS(1765), + [anon_sym_0x] = ACTIONS(1765), + [sym_val_date] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), + [anon_sym_err_GT] = ACTIONS(1765), + [anon_sym_out_GT] = ACTIONS(1765), + [anon_sym_e_GT] = ACTIONS(1765), + [anon_sym_o_GT] = ACTIONS(1765), + [anon_sym_err_PLUSout_GT] = ACTIONS(1765), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), + [anon_sym_o_PLUSe_GT] = ACTIONS(1765), + [anon_sym_e_PLUSo_GT] = ACTIONS(1765), + [anon_sym_err_GT_GT] = ACTIONS(1767), + [anon_sym_out_GT_GT] = ACTIONS(1767), + [anon_sym_e_GT_GT] = ACTIONS(1767), + [anon_sym_o_GT_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), + [aux_sym_unquoted_token1] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1767), + }, + [1638] = { + [sym__expr_parenthesized_immediate] = STATE(7675), + [sym_comment] = STATE(1638), + [sym__newline] = ACTIONS(4962), + [anon_sym_SEMI] = ACTIONS(4962), + [anon_sym_PIPE] = ACTIONS(4962), + [anon_sym_err_GT_PIPE] = ACTIONS(4962), + [anon_sym_out_GT_PIPE] = ACTIONS(4962), + [anon_sym_e_GT_PIPE] = ACTIONS(4962), + [anon_sym_o_GT_PIPE] = ACTIONS(4962), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4962), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4962), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4962), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4962), + [anon_sym_LBRACK] = ACTIONS(4962), + [anon_sym_LPAREN] = ACTIONS(4964), + [anon_sym_RPAREN] = ACTIONS(4962), + [anon_sym_DOLLAR] = ACTIONS(4964), + [anon_sym_DASH_DASH] = ACTIONS(4962), + [anon_sym_DASH2] = ACTIONS(4964), + [anon_sym_LBRACE] = ACTIONS(4962), + [anon_sym_RBRACE] = ACTIONS(4962), + [anon_sym_DOT_DOT] = ACTIONS(4964), + [anon_sym_LPAREN2] = ACTIONS(4543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4962), + [anon_sym_DOT_DOT_LT] = ACTIONS(4962), + [anon_sym_null] = ACTIONS(4962), + [anon_sym_true] = ACTIONS(4962), + [anon_sym_false] = ACTIONS(4962), + [aux_sym__val_number_decimal_token1] = ACTIONS(4964), + [aux_sym__val_number_decimal_token2] = ACTIONS(4962), + [aux_sym__val_number_decimal_token3] = ACTIONS(4962), + [aux_sym__val_number_decimal_token4] = ACTIONS(4962), + [aux_sym__val_number_token1] = ACTIONS(4962), + [aux_sym__val_number_token2] = ACTIONS(4962), + [aux_sym__val_number_token3] = ACTIONS(4962), + [aux_sym__val_number_token4] = ACTIONS(4962), + [aux_sym__val_number_token5] = ACTIONS(4962), + [aux_sym__val_number_token6] = ACTIONS(4962), + [anon_sym_0b] = ACTIONS(4964), + [anon_sym_0o] = ACTIONS(4964), + [anon_sym_0x] = ACTIONS(4964), + [sym_val_date] = ACTIONS(4962), + [anon_sym_DQUOTE] = ACTIONS(4962), + [sym__str_single_quotes] = ACTIONS(4962), + [sym__str_back_ticks] = ACTIONS(4962), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4962), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4962), + [anon_sym_err_GT] = ACTIONS(4964), + [anon_sym_out_GT] = ACTIONS(4964), + [anon_sym_e_GT] = ACTIONS(4964), + [anon_sym_o_GT] = ACTIONS(4964), + [anon_sym_err_PLUSout_GT] = ACTIONS(4964), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4964), + [anon_sym_o_PLUSe_GT] = ACTIONS(4964), + [anon_sym_e_PLUSo_GT] = ACTIONS(4964), + [anon_sym_err_GT_GT] = ACTIONS(4962), + [anon_sym_out_GT_GT] = ACTIONS(4962), + [anon_sym_e_GT_GT] = ACTIONS(4962), + [anon_sym_o_GT_GT] = ACTIONS(4962), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4962), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4962), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4962), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4962), + [aux_sym_unquoted_token1] = ACTIONS(4964), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4962), + }, + [1639] = { + [sym_comment] = STATE(1639), + [sym_long_flag_identifier] = ACTIONS(4966), + [sym__newline] = ACTIONS(4968), + [anon_sym_SEMI] = ACTIONS(4968), + [anon_sym_PIPE] = ACTIONS(4968), + [anon_sym_err_GT_PIPE] = ACTIONS(4968), + [anon_sym_out_GT_PIPE] = ACTIONS(4968), + [anon_sym_e_GT_PIPE] = ACTIONS(4968), + [anon_sym_o_GT_PIPE] = ACTIONS(4968), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4968), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4968), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4968), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4968), + [anon_sym_LPAREN] = ACTIONS(4968), + [anon_sym_RPAREN] = ACTIONS(4968), + [anon_sym_DOLLAR] = ACTIONS(4970), + [anon_sym_DASH_DASH] = ACTIONS(4968), + [anon_sym_DASH2] = ACTIONS(4970), + [anon_sym_LBRACE] = ACTIONS(4968), + [anon_sym_RBRACE] = ACTIONS(4968), + [anon_sym_DOT_DOT] = ACTIONS(4970), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4968), + [anon_sym_DOT_DOT_LT] = ACTIONS(4968), + [anon_sym_null] = ACTIONS(4970), + [anon_sym_true] = ACTIONS(4970), + [anon_sym_false] = ACTIONS(4970), + [aux_sym__val_number_decimal_token1] = ACTIONS(4970), + [aux_sym__val_number_decimal_token2] = ACTIONS(4968), + [aux_sym__val_number_decimal_token3] = ACTIONS(4968), + [aux_sym__val_number_decimal_token4] = ACTIONS(4968), + [aux_sym__val_number_token1] = ACTIONS(4970), + [aux_sym__val_number_token2] = ACTIONS(4970), + [aux_sym__val_number_token3] = ACTIONS(4970), + [aux_sym__val_number_token4] = ACTIONS(4970), + [aux_sym__val_number_token5] = ACTIONS(4968), + [aux_sym__val_number_token6] = ACTIONS(4970), + [anon_sym_0b] = ACTIONS(4970), + [anon_sym_0o] = ACTIONS(4970), + [anon_sym_0x] = ACTIONS(4970), + [sym_val_date] = ACTIONS(4970), + [anon_sym_DQUOTE] = ACTIONS(4968), + [sym__str_single_quotes] = ACTIONS(4968), + [sym__str_back_ticks] = ACTIONS(4968), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4968), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4968), + [anon_sym_err_GT] = ACTIONS(4970), + [anon_sym_out_GT] = ACTIONS(4970), + [anon_sym_e_GT] = ACTIONS(4970), + [anon_sym_o_GT] = ACTIONS(4970), + [anon_sym_err_PLUSout_GT] = ACTIONS(4970), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4970), + [anon_sym_o_PLUSe_GT] = ACTIONS(4970), + [anon_sym_e_PLUSo_GT] = ACTIONS(4970), + [anon_sym_err_GT_GT] = ACTIONS(4968), + [anon_sym_out_GT_GT] = ACTIONS(4968), + [anon_sym_e_GT_GT] = ACTIONS(4968), + [anon_sym_o_GT_GT] = ACTIONS(4968), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4968), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4968), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4968), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4968), + [anon_sym_EQ2] = ACTIONS(4972), + [aux_sym_unquoted_token1] = ACTIONS(4970), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4968), + }, + [1640] = { + [sym_comment] = STATE(1640), + [ts_builtin_sym_end] = ACTIONS(1046), + [sym__newline] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_err_GT_PIPE] = ACTIONS(1046), + [anon_sym_out_GT_PIPE] = ACTIONS(1046), + [anon_sym_e_GT_PIPE] = ACTIONS(1046), + [anon_sym_o_GT_PIPE] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1046), + [anon_sym_LBRACK] = ACTIONS(1046), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_DASH_DASH] = ACTIONS(1046), + [anon_sym_DASH2] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_DOT_DOT] = ACTIONS(1044), + [anon_sym_DOT_DOT2] = ACTIONS(1044), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1044), + [anon_sym_DOT_DOT_LT] = ACTIONS(1044), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), + [anon_sym_null] = ACTIONS(1046), + [anon_sym_true] = ACTIONS(1046), + [anon_sym_false] = ACTIONS(1046), + [aux_sym__val_number_decimal_token1] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1046), + [aux_sym__val_number_decimal_token3] = ACTIONS(1046), + [aux_sym__val_number_decimal_token4] = ACTIONS(1046), + [aux_sym__val_number_token1] = ACTIONS(1046), + [aux_sym__val_number_token2] = ACTIONS(1046), + [aux_sym__val_number_token3] = ACTIONS(1046), + [aux_sym__val_number_token4] = ACTIONS(1046), + [aux_sym__val_number_token5] = ACTIONS(1046), + [aux_sym__val_number_token6] = ACTIONS(1046), + [anon_sym_0b] = ACTIONS(1044), + [anon_sym_0o] = ACTIONS(1044), + [anon_sym_0x] = ACTIONS(1044), + [sym_val_date] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(1046), + [sym__str_single_quotes] = ACTIONS(1046), + [sym__str_back_ticks] = ACTIONS(1046), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1046), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1046), + [anon_sym_err_GT] = ACTIONS(1044), + [anon_sym_out_GT] = ACTIONS(1044), + [anon_sym_e_GT] = ACTIONS(1044), + [anon_sym_o_GT] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT] = ACTIONS(1044), + [anon_sym_err_GT_GT] = ACTIONS(1046), + [anon_sym_out_GT_GT] = ACTIONS(1046), + [anon_sym_e_GT_GT] = ACTIONS(1046), + [anon_sym_o_GT_GT] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1046), + [aux_sym_unquoted_token1] = ACTIONS(1044), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1046), + }, [1641] = { - [sym__expr_parenthesized_immediate] = STATE(7999), [sym_comment] = STATE(1641), - [sym__newline] = ACTIONS(4979), - [anon_sym_SEMI] = ACTIONS(4979), - [anon_sym_PIPE] = ACTIONS(4979), - [anon_sym_err_GT_PIPE] = ACTIONS(4979), - [anon_sym_out_GT_PIPE] = ACTIONS(4979), - [anon_sym_e_GT_PIPE] = ACTIONS(4979), - [anon_sym_o_GT_PIPE] = ACTIONS(4979), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4979), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4979), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4979), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4979), - [anon_sym_LBRACK] = ACTIONS(4979), - [anon_sym_LPAREN] = ACTIONS(4981), - [anon_sym_RPAREN] = ACTIONS(4979), - [anon_sym_DOLLAR] = ACTIONS(4981), - [anon_sym_DASH_DASH] = ACTIONS(4979), - [anon_sym_DASH2] = ACTIONS(4981), - [anon_sym_LBRACE] = ACTIONS(4979), - [anon_sym_RBRACE] = ACTIONS(4979), - [anon_sym_DOT_DOT] = ACTIONS(4981), - [anon_sym_LPAREN2] = ACTIONS(4249), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4979), - [anon_sym_DOT_DOT_LT] = ACTIONS(4979), - [anon_sym_null] = ACTIONS(4979), - [anon_sym_true] = ACTIONS(4979), - [anon_sym_false] = ACTIONS(4979), - [aux_sym__val_number_decimal_token1] = ACTIONS(4981), - [aux_sym__val_number_decimal_token2] = ACTIONS(4979), - [aux_sym__val_number_decimal_token3] = ACTIONS(4979), - [aux_sym__val_number_decimal_token4] = ACTIONS(4979), - [aux_sym__val_number_token1] = ACTIONS(4979), - [aux_sym__val_number_token2] = ACTIONS(4979), - [aux_sym__val_number_token3] = ACTIONS(4979), - [aux_sym__val_number_token4] = ACTIONS(4979), - [aux_sym__val_number_token5] = ACTIONS(4979), - [aux_sym__val_number_token6] = ACTIONS(4979), - [anon_sym_0b] = ACTIONS(4981), - [anon_sym_0o] = ACTIONS(4981), - [anon_sym_0x] = ACTIONS(4981), - [sym_val_date] = ACTIONS(4979), - [anon_sym_DQUOTE] = ACTIONS(4979), - [sym__str_single_quotes] = ACTIONS(4979), - [sym__str_back_ticks] = ACTIONS(4979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4979), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4979), - [anon_sym_err_GT] = ACTIONS(4981), - [anon_sym_out_GT] = ACTIONS(4981), - [anon_sym_e_GT] = ACTIONS(4981), - [anon_sym_o_GT] = ACTIONS(4981), - [anon_sym_err_PLUSout_GT] = ACTIONS(4981), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4981), - [anon_sym_o_PLUSe_GT] = ACTIONS(4981), - [anon_sym_e_PLUSo_GT] = ACTIONS(4981), - [anon_sym_err_GT_GT] = ACTIONS(4979), - [anon_sym_out_GT_GT] = ACTIONS(4979), - [anon_sym_e_GT_GT] = ACTIONS(4979), - [anon_sym_o_GT_GT] = ACTIONS(4979), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4979), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4979), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4979), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4979), - [aux_sym_unquoted_token1] = ACTIONS(4981), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4979), + [sym__newline] = ACTIONS(4974), + [anon_sym_SEMI] = ACTIONS(4974), + [anon_sym_PIPE] = ACTIONS(4974), + [anon_sym_err_GT_PIPE] = ACTIONS(4974), + [anon_sym_out_GT_PIPE] = ACTIONS(4974), + [anon_sym_e_GT_PIPE] = ACTIONS(4974), + [anon_sym_o_GT_PIPE] = ACTIONS(4974), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4974), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4974), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4974), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4974), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_LPAREN] = ACTIONS(4974), + [anon_sym_RPAREN] = ACTIONS(4974), + [anon_sym_DOLLAR] = ACTIONS(4976), + [anon_sym_DASH_DASH] = ACTIONS(4976), + [anon_sym_DASH2] = ACTIONS(4976), + [anon_sym_LBRACE] = ACTIONS(4974), + [anon_sym_RBRACE] = ACTIONS(4974), + [anon_sym_DOT_DOT] = ACTIONS(4976), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4974), + [anon_sym_DOT_DOT_LT] = ACTIONS(4974), + [anon_sym_null] = ACTIONS(4976), + [anon_sym_true] = ACTIONS(4976), + [anon_sym_false] = ACTIONS(4976), + [aux_sym__val_number_decimal_token1] = ACTIONS(4976), + [aux_sym__val_number_decimal_token2] = ACTIONS(4976), + [aux_sym__val_number_decimal_token3] = ACTIONS(4974), + [aux_sym__val_number_decimal_token4] = ACTIONS(4974), + [aux_sym__val_number_token1] = ACTIONS(4976), + [aux_sym__val_number_token2] = ACTIONS(4976), + [aux_sym__val_number_token3] = ACTIONS(4976), + [aux_sym__val_number_token4] = ACTIONS(4976), + [aux_sym__val_number_token5] = ACTIONS(4976), + [aux_sym__val_number_token6] = ACTIONS(4976), + [anon_sym_0b] = ACTIONS(4976), + [anon_sym_0o] = ACTIONS(4976), + [anon_sym_0x] = ACTIONS(4976), + [sym_val_date] = ACTIONS(4976), + [anon_sym_DQUOTE] = ACTIONS(4974), + [sym__str_single_quotes] = ACTIONS(4974), + [sym__str_back_ticks] = ACTIONS(4974), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4974), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4974), + [anon_sym_err_GT] = ACTIONS(4976), + [anon_sym_out_GT] = ACTIONS(4976), + [anon_sym_e_GT] = ACTIONS(4976), + [anon_sym_o_GT] = ACTIONS(4976), + [anon_sym_err_PLUSout_GT] = ACTIONS(4976), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4976), + [anon_sym_o_PLUSe_GT] = ACTIONS(4976), + [anon_sym_e_PLUSo_GT] = ACTIONS(4976), + [anon_sym_err_GT_GT] = ACTIONS(4974), + [anon_sym_out_GT_GT] = ACTIONS(4974), + [anon_sym_e_GT_GT] = ACTIONS(4974), + [anon_sym_o_GT_GT] = ACTIONS(4974), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4974), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4974), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4974), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4974), + [anon_sym_EQ2] = ACTIONS(4978), + [sym_short_flag_identifier] = ACTIONS(4980), + [aux_sym_unquoted_token1] = ACTIONS(4976), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4974), }, [1642] = { [sym_comment] = STATE(1642), - [sym__newline] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_RPAREN] = ACTIONS(1008), - [anon_sym_GT2] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_in2] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym_EQ_GT] = ACTIONS(1008), - [anon_sym_STAR2] = ACTIONS(1006), - [anon_sym_and2] = ACTIONS(1008), - [anon_sym_xor2] = ACTIONS(1008), - [anon_sym_or2] = ACTIONS(1008), - [anon_sym_not_DASHin2] = ACTIONS(1008), - [anon_sym_starts_DASHwith2] = ACTIONS(1008), - [anon_sym_ends_DASHwith2] = ACTIONS(1008), - [anon_sym_EQ_EQ2] = ACTIONS(1008), - [anon_sym_BANG_EQ2] = ACTIONS(1008), - [anon_sym_LT2] = ACTIONS(1006), - [anon_sym_LT_EQ2] = ACTIONS(1008), - [anon_sym_GT_EQ2] = ACTIONS(1008), - [anon_sym_EQ_TILDE2] = ACTIONS(1008), - [anon_sym_BANG_TILDE2] = ACTIONS(1008), - [anon_sym_STAR_STAR2] = ACTIONS(1008), - [anon_sym_PLUS_PLUS2] = ACTIONS(1008), - [anon_sym_SLASH2] = ACTIONS(1006), - [anon_sym_mod2] = ACTIONS(1008), - [anon_sym_SLASH_SLASH2] = ACTIONS(1008), - [anon_sym_PLUS2] = ACTIONS(1006), - [anon_sym_bit_DASHshl2] = ACTIONS(1008), - [anon_sym_bit_DASHshr2] = ACTIONS(1008), - [anon_sym_bit_DASHand2] = ACTIONS(1008), - [anon_sym_bit_DASHxor2] = ACTIONS(1008), - [anon_sym_bit_DASHor2] = ACTIONS(1008), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), - [anon_sym_err_GT] = ACTIONS(1006), - [anon_sym_out_GT] = ACTIONS(1006), - [anon_sym_e_GT] = ACTIONS(1006), - [anon_sym_o_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT] = ACTIONS(1006), - [anon_sym_err_GT_GT] = ACTIONS(1008), - [anon_sym_out_GT_GT] = ACTIONS(1008), - [anon_sym_e_GT_GT] = ACTIONS(1008), - [anon_sym_o_GT_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(2163), + [sym__newline] = ACTIONS(2163), + [anon_sym_SEMI] = ACTIONS(2163), + [anon_sym_PIPE] = ACTIONS(2163), + [anon_sym_err_GT_PIPE] = ACTIONS(2163), + [anon_sym_out_GT_PIPE] = ACTIONS(2163), + [anon_sym_e_GT_PIPE] = ACTIONS(2163), + [anon_sym_o_GT_PIPE] = ACTIONS(2163), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2163), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2163), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2163), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2163), + [anon_sym_LBRACK] = ACTIONS(2163), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_DOLLAR] = ACTIONS(2157), + [anon_sym_DASH_DASH] = ACTIONS(2163), + [anon_sym_DASH2] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_DOT_DOT] = ACTIONS(2157), + [anon_sym_DOT_DOT2] = ACTIONS(4982), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2157), + [anon_sym_DOT_DOT_LT] = ACTIONS(2157), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4984), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4984), + [anon_sym_null] = ACTIONS(2163), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [aux_sym__val_number_decimal_token1] = ACTIONS(2157), + [aux_sym__val_number_decimal_token2] = ACTIONS(2163), + [aux_sym__val_number_decimal_token3] = ACTIONS(2163), + [aux_sym__val_number_decimal_token4] = ACTIONS(2163), + [aux_sym__val_number_token1] = ACTIONS(2163), + [aux_sym__val_number_token2] = ACTIONS(2163), + [aux_sym__val_number_token3] = ACTIONS(2163), + [aux_sym__val_number_token4] = ACTIONS(2163), + [aux_sym__val_number_token5] = ACTIONS(2163), + [aux_sym__val_number_token6] = ACTIONS(2163), + [anon_sym_0b] = ACTIONS(2157), + [anon_sym_0o] = ACTIONS(2157), + [anon_sym_0x] = ACTIONS(2157), + [sym_val_date] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [sym__str_single_quotes] = ACTIONS(2163), + [sym__str_back_ticks] = ACTIONS(2163), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2163), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2163), + [anon_sym_err_GT] = ACTIONS(2157), + [anon_sym_out_GT] = ACTIONS(2157), + [anon_sym_e_GT] = ACTIONS(2157), + [anon_sym_o_GT] = ACTIONS(2157), + [anon_sym_err_PLUSout_GT] = ACTIONS(2157), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2157), + [anon_sym_o_PLUSe_GT] = ACTIONS(2157), + [anon_sym_e_PLUSo_GT] = ACTIONS(2157), + [anon_sym_err_GT_GT] = ACTIONS(2163), + [anon_sym_out_GT_GT] = ACTIONS(2163), + [anon_sym_e_GT_GT] = ACTIONS(2163), + [anon_sym_o_GT_GT] = ACTIONS(2163), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2163), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2163), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2163), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2163), + [aux_sym_unquoted_token1] = ACTIONS(2157), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2163), }, [1643] = { - [sym_cell_path] = STATE(1999), - [sym_path] = STATE(1894), + [sym_path] = STATE(1615), [sym_comment] = STATE(1643), - [aux_sym_cell_path_repeat1] = STATE(1702), - [sym__newline] = ACTIONS(1990), - [anon_sym_SEMI] = ACTIONS(1990), - [anon_sym_PIPE] = ACTIONS(1990), - [anon_sym_err_GT_PIPE] = ACTIONS(1990), - [anon_sym_out_GT_PIPE] = ACTIONS(1990), - [anon_sym_e_GT_PIPE] = ACTIONS(1990), - [anon_sym_o_GT_PIPE] = ACTIONS(1990), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1990), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1990), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1990), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1990), - [anon_sym_RPAREN] = ACTIONS(1990), - [anon_sym_GT2] = ACTIONS(1988), - [anon_sym_DASH2] = ACTIONS(1990), - [anon_sym_in2] = ACTIONS(1990), - [anon_sym_if] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1990), - [anon_sym_RBRACE] = ACTIONS(1990), - [anon_sym_EQ_GT] = ACTIONS(1990), - [anon_sym_STAR2] = ACTIONS(1988), - [anon_sym_and2] = ACTIONS(1990), - [anon_sym_xor2] = ACTIONS(1990), - [anon_sym_or2] = ACTIONS(1990), - [anon_sym_not_DASHin2] = ACTIONS(1990), - [anon_sym_starts_DASHwith2] = ACTIONS(1990), - [anon_sym_ends_DASHwith2] = ACTIONS(1990), - [anon_sym_EQ_EQ2] = ACTIONS(1990), - [anon_sym_BANG_EQ2] = ACTIONS(1990), - [anon_sym_LT2] = ACTIONS(1988), - [anon_sym_LT_EQ2] = ACTIONS(1990), - [anon_sym_GT_EQ2] = ACTIONS(1990), - [anon_sym_EQ_TILDE2] = ACTIONS(1990), - [anon_sym_BANG_TILDE2] = ACTIONS(1990), - [anon_sym_STAR_STAR2] = ACTIONS(1990), - [anon_sym_PLUS_PLUS2] = ACTIONS(1990), - [anon_sym_SLASH2] = ACTIONS(1988), - [anon_sym_mod2] = ACTIONS(1990), - [anon_sym_SLASH_SLASH2] = ACTIONS(1990), - [anon_sym_PLUS2] = ACTIONS(1988), - [anon_sym_bit_DASHshl2] = ACTIONS(1990), - [anon_sym_bit_DASHshr2] = ACTIONS(1990), - [anon_sym_bit_DASHand2] = ACTIONS(1990), - [anon_sym_bit_DASHxor2] = ACTIONS(1990), - [anon_sym_bit_DASHor2] = ACTIONS(1990), - [anon_sym_DOT] = ACTIONS(4902), - [anon_sym_err_GT] = ACTIONS(1988), - [anon_sym_out_GT] = ACTIONS(1988), - [anon_sym_e_GT] = ACTIONS(1988), - [anon_sym_o_GT] = ACTIONS(1988), - [anon_sym_err_PLUSout_GT] = ACTIONS(1988), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1988), - [anon_sym_o_PLUSe_GT] = ACTIONS(1988), - [anon_sym_e_PLUSo_GT] = ACTIONS(1988), - [anon_sym_err_GT_GT] = ACTIONS(1990), - [anon_sym_out_GT_GT] = ACTIONS(1990), - [anon_sym_e_GT_GT] = ACTIONS(1990), - [anon_sym_o_GT_GT] = ACTIONS(1990), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1990), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1990), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1990), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1990), - [anon_sym_POUND] = ACTIONS(247), - }, - [1644] = { - [sym__expr_parenthesized_immediate] = STATE(7999), - [sym_comment] = STATE(1644), - [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_RBRACE] = ACTIONS(4983), - [anon_sym_DOT_DOT] = ACTIONS(4985), - [anon_sym_LPAREN2] = ACTIONS(4249), - [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(247), - [sym_raw_string_begin] = ACTIONS(4983), - }, - [1645] = { - [sym_path] = STATE(1642), - [sym_comment] = STATE(1645), - [aux_sym_cell_path_repeat1] = STATE(1649), + [aux_sym_cell_path_repeat1] = STATE(1586), [sym__newline] = ACTIONS(969), [anon_sym_SEMI] = ACTIONS(969), [anon_sym_PIPE] = ACTIONS(969), @@ -226060,7 +226227,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(969), [anon_sym_bit_DASHor2] = ACTIONS(969), [anon_sym_DOT_DOT2] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(4868), + [anon_sym_DOT] = ACTIONS(4847), [anon_sym_DOT_DOT_EQ2] = ACTIONS(969), [anon_sym_DOT_DOT_LT2] = ACTIONS(969), [anon_sym_err_GT] = ACTIONS(967), @@ -226081,751 +226248,552 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), [anon_sym_POUND] = ACTIONS(247), }, + [1644] = { + [sym_comment] = STATE(1644), + [sym__newline] = ACTIONS(2270), + [anon_sym_SEMI] = ACTIONS(2270), + [anon_sym_PIPE] = ACTIONS(2270), + [anon_sym_err_GT_PIPE] = ACTIONS(2270), + [anon_sym_out_GT_PIPE] = ACTIONS(2270), + [anon_sym_e_GT_PIPE] = ACTIONS(2270), + [anon_sym_o_GT_PIPE] = ACTIONS(2270), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2270), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2270), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2270), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2270), + [anon_sym_LBRACK] = ACTIONS(2270), + [anon_sym_LPAREN] = ACTIONS(2268), + [anon_sym_RPAREN] = ACTIONS(2270), + [anon_sym_DOLLAR] = ACTIONS(2268), + [anon_sym_DASH_DASH] = ACTIONS(2268), + [anon_sym_DASH2] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2270), + [anon_sym_RBRACE] = ACTIONS(2270), + [anon_sym_DOT_DOT] = ACTIONS(2268), + [anon_sym_LPAREN2] = ACTIONS(2270), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2268), + [anon_sym_DOT_DOT_LT] = ACTIONS(2268), + [anon_sym_null] = ACTIONS(2268), + [anon_sym_true] = ACTIONS(2268), + [anon_sym_false] = ACTIONS(2268), + [aux_sym__val_number_decimal_token1] = ACTIONS(2268), + [aux_sym__val_number_decimal_token2] = ACTIONS(2268), + [aux_sym__val_number_decimal_token3] = ACTIONS(2268), + [aux_sym__val_number_decimal_token4] = ACTIONS(2268), + [aux_sym__val_number_token1] = ACTIONS(2268), + [aux_sym__val_number_token2] = ACTIONS(2268), + [aux_sym__val_number_token3] = ACTIONS(2268), + [aux_sym__val_number_token4] = ACTIONS(2268), + [aux_sym__val_number_token5] = ACTIONS(2268), + [aux_sym__val_number_token6] = ACTIONS(2268), + [anon_sym_0b] = ACTIONS(2268), + [anon_sym_0o] = ACTIONS(2268), + [anon_sym_0x] = ACTIONS(2268), + [sym_val_date] = ACTIONS(2268), + [anon_sym_DQUOTE] = ACTIONS(2270), + [sym__str_single_quotes] = ACTIONS(2270), + [sym__str_back_ticks] = ACTIONS(2270), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2270), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2270), + [anon_sym_err_GT] = ACTIONS(2268), + [anon_sym_out_GT] = ACTIONS(2268), + [anon_sym_e_GT] = ACTIONS(2268), + [anon_sym_o_GT] = ACTIONS(2268), + [anon_sym_err_PLUSout_GT] = ACTIONS(2268), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2268), + [anon_sym_o_PLUSe_GT] = ACTIONS(2268), + [anon_sym_e_PLUSo_GT] = ACTIONS(2268), + [anon_sym_err_GT_GT] = ACTIONS(2268), + [anon_sym_out_GT_GT] = ACTIONS(2268), + [anon_sym_e_GT_GT] = ACTIONS(2268), + [anon_sym_o_GT_GT] = ACTIONS(2268), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2268), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2268), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2268), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2268), + [aux_sym_unquoted_token1] = ACTIONS(2268), + [aux_sym_unquoted_token4] = ACTIONS(2268), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2270), + }, + [1645] = { + [sym_comment] = STATE(1645), + [ts_builtin_sym_end] = ACTIONS(1575), + [sym__newline] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_err_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_GT_PIPE] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1575), + [anon_sym_in2] = ACTIONS(1575), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1575), + [anon_sym_xor2] = ACTIONS(1575), + [anon_sym_or2] = ACTIONS(1575), + [anon_sym_not_DASHin2] = ACTIONS(1575), + [anon_sym_starts_DASHwith2] = ACTIONS(1575), + [anon_sym_ends_DASHwith2] = ACTIONS(1575), + [anon_sym_EQ_EQ2] = ACTIONS(1575), + [anon_sym_BANG_EQ2] = ACTIONS(1575), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1575), + [anon_sym_GT_EQ2] = ACTIONS(1575), + [anon_sym_EQ_TILDE2] = ACTIONS(1575), + [anon_sym_BANG_TILDE2] = ACTIONS(1575), + [anon_sym_LPAREN2] = ACTIONS(1575), + [anon_sym_STAR_STAR2] = ACTIONS(1575), + [anon_sym_PLUS_PLUS2] = ACTIONS(1575), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1575), + [anon_sym_SLASH_SLASH2] = ACTIONS(1575), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1575), + [anon_sym_bit_DASHshr2] = ACTIONS(1575), + [anon_sym_bit_DASHand2] = ACTIONS(1575), + [anon_sym_bit_DASHxor2] = ACTIONS(1575), + [anon_sym_bit_DASHor2] = ACTIONS(1575), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [aux_sym__immediate_decimal_token2] = ACTIONS(4831), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1575), + [anon_sym_out_GT_GT] = ACTIONS(1575), + [anon_sym_e_GT_GT] = ACTIONS(1575), + [anon_sym_o_GT_GT] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), + [aux_sym_unquoted_token2] = ACTIONS(1573), + [anon_sym_POUND] = ACTIONS(247), + }, [1646] = { [sym_comment] = STATE(1646), - [ts_builtin_sym_end] = ACTIONS(2181), - [sym__newline] = ACTIONS(2181), - [anon_sym_SEMI] = ACTIONS(2181), - [anon_sym_PIPE] = ACTIONS(2181), - [anon_sym_err_GT_PIPE] = ACTIONS(2181), - [anon_sym_out_GT_PIPE] = ACTIONS(2181), - [anon_sym_e_GT_PIPE] = ACTIONS(2181), - [anon_sym_o_GT_PIPE] = ACTIONS(2181), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2181), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2181), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2181), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_DOLLAR] = ACTIONS(2175), - [anon_sym_DASH_DASH] = ACTIONS(2181), - [anon_sym_DASH2] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_DOT_DOT] = ACTIONS(2175), - [anon_sym_DOT_DOT2] = ACTIONS(4987), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2175), - [anon_sym_DOT_DOT_LT] = ACTIONS(2175), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4989), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4989), - [anon_sym_null] = ACTIONS(2181), - [anon_sym_true] = ACTIONS(2181), - [anon_sym_false] = ACTIONS(2181), - [aux_sym__val_number_decimal_token1] = ACTIONS(2175), - [aux_sym__val_number_decimal_token2] = ACTIONS(2181), - [aux_sym__val_number_decimal_token3] = ACTIONS(2181), - [aux_sym__val_number_decimal_token4] = ACTIONS(2181), - [aux_sym__val_number_token1] = ACTIONS(2181), - [aux_sym__val_number_token2] = ACTIONS(2181), - [aux_sym__val_number_token3] = ACTIONS(2181), - [aux_sym__val_number_token4] = ACTIONS(2181), - [aux_sym__val_number_token5] = ACTIONS(2181), - [aux_sym__val_number_token6] = ACTIONS(2181), - [anon_sym_0b] = ACTIONS(2175), - [anon_sym_0o] = ACTIONS(2175), - [anon_sym_0x] = ACTIONS(2175), - [sym_val_date] = ACTIONS(2181), - [anon_sym_DQUOTE] = ACTIONS(2181), - [sym__str_single_quotes] = ACTIONS(2181), - [sym__str_back_ticks] = ACTIONS(2181), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2181), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2181), - [anon_sym_err_GT] = ACTIONS(2175), - [anon_sym_out_GT] = ACTIONS(2175), - [anon_sym_e_GT] = ACTIONS(2175), - [anon_sym_o_GT] = ACTIONS(2175), - [anon_sym_err_PLUSout_GT] = ACTIONS(2175), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2175), - [anon_sym_o_PLUSe_GT] = ACTIONS(2175), - [anon_sym_e_PLUSo_GT] = ACTIONS(2175), - [anon_sym_err_GT_GT] = ACTIONS(2181), - [anon_sym_out_GT_GT] = ACTIONS(2181), - [anon_sym_e_GT_GT] = ACTIONS(2181), - [anon_sym_o_GT_GT] = ACTIONS(2181), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2181), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2181), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2181), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2181), - [aux_sym_unquoted_token1] = ACTIONS(2175), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2181), + [sym__newline] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(2807), + [anon_sym_PIPE] = ACTIONS(2807), + [anon_sym_err_GT_PIPE] = ACTIONS(2807), + [anon_sym_out_GT_PIPE] = ACTIONS(2807), + [anon_sym_e_GT_PIPE] = ACTIONS(2807), + [anon_sym_o_GT_PIPE] = ACTIONS(2807), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2807), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2807), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2807), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2807), + [anon_sym_LPAREN] = ACTIONS(2807), + [anon_sym_RPAREN] = ACTIONS(2807), + [anon_sym_DOLLAR] = ACTIONS(4986), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_DASH2] = ACTIONS(4986), + [anon_sym_LBRACE] = ACTIONS(2807), + [anon_sym_DOT_DOT] = ACTIONS(4986), + [anon_sym_DOT_DOT2] = ACTIONS(4833), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4986), + [anon_sym_DOT_DOT_LT] = ACTIONS(4986), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4835), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4835), + [anon_sym_null] = ACTIONS(2807), + [anon_sym_true] = ACTIONS(2807), + [anon_sym_false] = ACTIONS(2807), + [aux_sym__val_number_decimal_token1] = ACTIONS(4986), + [aux_sym__val_number_decimal_token2] = ACTIONS(2807), + [aux_sym__val_number_decimal_token3] = ACTIONS(2807), + [aux_sym__val_number_decimal_token4] = ACTIONS(2807), + [aux_sym__val_number_token1] = ACTIONS(2807), + [aux_sym__val_number_token2] = ACTIONS(2807), + [aux_sym__val_number_token3] = ACTIONS(2807), + [aux_sym__val_number_token4] = ACTIONS(2807), + [aux_sym__val_number_token5] = ACTIONS(2807), + [aux_sym__val_number_token6] = ACTIONS(2807), + [anon_sym_0b] = ACTIONS(4986), + [anon_sym_0o] = ACTIONS(4986), + [anon_sym_0x] = ACTIONS(4986), + [sym_val_date] = ACTIONS(2807), + [anon_sym_DQUOTE] = ACTIONS(2807), + [sym__str_single_quotes] = ACTIONS(2807), + [sym__str_back_ticks] = ACTIONS(2807), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2807), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2807), + [anon_sym_err_GT] = ACTIONS(4986), + [anon_sym_out_GT] = ACTIONS(4986), + [anon_sym_e_GT] = ACTIONS(4986), + [anon_sym_o_GT] = ACTIONS(4986), + [anon_sym_err_PLUSout_GT] = ACTIONS(4986), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4986), + [anon_sym_o_PLUSe_GT] = ACTIONS(4986), + [anon_sym_e_PLUSo_GT] = ACTIONS(4986), + [anon_sym_err_GT_GT] = ACTIONS(2807), + [anon_sym_out_GT_GT] = ACTIONS(2807), + [anon_sym_e_GT_GT] = ACTIONS(2807), + [anon_sym_o_GT_GT] = ACTIONS(2807), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2807), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2807), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2807), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2807), + [aux_sym_unquoted_token1] = ACTIONS(4986), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2807), }, [1647] = { - [sym_cell_path] = STATE(2016), - [sym_path] = STATE(1886), [sym_comment] = STATE(1647), - [aux_sym_cell_path_repeat1] = STATE(1664), - [sym__newline] = ACTIONS(1769), - [anon_sym_SEMI] = ACTIONS(1771), - [anon_sym_PIPE] = ACTIONS(1771), - [anon_sym_err_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_GT_PIPE] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), - [anon_sym_GT2] = ACTIONS(1769), - [anon_sym_DASH2] = ACTIONS(1771), - [anon_sym_in2] = ACTIONS(1771), - [anon_sym_RBRACE] = ACTIONS(1771), - [anon_sym_STAR2] = ACTIONS(1769), - [anon_sym_and2] = ACTIONS(1771), - [anon_sym_xor2] = ACTIONS(1771), - [anon_sym_or2] = ACTIONS(1771), - [anon_sym_not_DASHin2] = ACTIONS(1771), - [anon_sym_starts_DASHwith2] = ACTIONS(1771), - [anon_sym_ends_DASHwith2] = ACTIONS(1771), - [anon_sym_EQ_EQ2] = ACTIONS(1771), - [anon_sym_BANG_EQ2] = ACTIONS(1771), - [anon_sym_LT2] = ACTIONS(1769), - [anon_sym_LT_EQ2] = ACTIONS(1771), - [anon_sym_GT_EQ2] = ACTIONS(1771), - [anon_sym_EQ_TILDE2] = ACTIONS(1771), - [anon_sym_BANG_TILDE2] = ACTIONS(1771), - [anon_sym_STAR_STAR2] = ACTIONS(1771), - [anon_sym_PLUS_PLUS2] = ACTIONS(1771), - [anon_sym_SLASH2] = ACTIONS(1769), - [anon_sym_mod2] = ACTIONS(1771), - [anon_sym_SLASH_SLASH2] = ACTIONS(1771), - [anon_sym_PLUS2] = ACTIONS(1769), - [anon_sym_bit_DASHshl2] = ACTIONS(1771), - [anon_sym_bit_DASHshr2] = ACTIONS(1771), - [anon_sym_bit_DASHand2] = ACTIONS(1771), - [anon_sym_bit_DASHxor2] = ACTIONS(1771), - [anon_sym_bit_DASHor2] = ACTIONS(1771), - [anon_sym_DOT_DOT2] = ACTIONS(1769), - [anon_sym_DOT] = ACTIONS(4991), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), - [aux_sym_record_entry_token1] = ACTIONS(1771), - [anon_sym_err_GT] = ACTIONS(1769), - [anon_sym_out_GT] = ACTIONS(1769), - [anon_sym_e_GT] = ACTIONS(1769), - [anon_sym_o_GT] = ACTIONS(1769), - [anon_sym_err_PLUSout_GT] = ACTIONS(1769), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), - [anon_sym_o_PLUSe_GT] = ACTIONS(1769), - [anon_sym_e_PLUSo_GT] = ACTIONS(1769), - [anon_sym_err_GT_GT] = ACTIONS(1771), - [anon_sym_out_GT_GT] = ACTIONS(1771), - [anon_sym_e_GT_GT] = ACTIONS(1771), - [anon_sym_o_GT_GT] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), + [ts_builtin_sym_end] = ACTIONS(1741), + [sym__newline] = ACTIONS(1741), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym_PIPE] = ACTIONS(1741), + [anon_sym_err_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_GT_PIPE] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_DASH_DASH] = ACTIONS(1741), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_DOT_DOT2] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), + [anon_sym_DOT_DOT_LT] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), + [anon_sym_null] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1741), + [anon_sym_false] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1741), + [aux_sym__val_number_token5] = ACTIONS(1741), + [aux_sym__val_number_token6] = ACTIONS(1741), + [anon_sym_0b] = ACTIONS(1739), + [anon_sym_0o] = ACTIONS(1739), + [anon_sym_0x] = ACTIONS(1739), + [sym_val_date] = ACTIONS(1741), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), + [anon_sym_err_GT] = ACTIONS(1739), + [anon_sym_out_GT] = ACTIONS(1739), + [anon_sym_e_GT] = ACTIONS(1739), + [anon_sym_o_GT] = ACTIONS(1739), + [anon_sym_err_PLUSout_GT] = ACTIONS(1739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), + [anon_sym_o_PLUSe_GT] = ACTIONS(1739), + [anon_sym_e_PLUSo_GT] = ACTIONS(1739), + [anon_sym_err_GT_GT] = ACTIONS(1741), + [anon_sym_out_GT_GT] = ACTIONS(1741), + [anon_sym_e_GT_GT] = ACTIONS(1741), + [anon_sym_o_GT_GT] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), + [aux_sym_unquoted_token1] = ACTIONS(1739), [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), }, [1648] = { + [sym_cell_path] = STATE(2050), + [sym_path] = STATE(1882), [sym_comment] = STATE(1648), - [ts_builtin_sym_end] = ACTIONS(1785), - [sym__newline] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_err_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_GT_PIPE] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1783), - [anon_sym_DOT_DOT2] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1785), - [anon_sym_null] = ACTIONS(1785), - [anon_sym_true] = ACTIONS(1785), - [anon_sym_false] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_0b] = ACTIONS(1783), - [anon_sym_0o] = ACTIONS(1783), - [anon_sym_0x] = ACTIONS(1783), - [sym_val_date] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_err_GT] = ACTIONS(1783), - [anon_sym_out_GT] = ACTIONS(1783), - [anon_sym_e_GT] = ACTIONS(1783), - [anon_sym_o_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT] = ACTIONS(1783), - [anon_sym_err_GT_GT] = ACTIONS(1785), - [anon_sym_out_GT_GT] = ACTIONS(1785), - [anon_sym_e_GT_GT] = ACTIONS(1785), - [anon_sym_o_GT_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), - [aux_sym_unquoted_token1] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1785), + [aux_sym_cell_path_repeat1] = STATE(1690), + [sym__newline] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_err_GT_PIPE] = ACTIONS(1873), + [anon_sym_out_GT_PIPE] = ACTIONS(1873), + [anon_sym_e_GT_PIPE] = ACTIONS(1873), + [anon_sym_o_GT_PIPE] = ACTIONS(1873), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1873), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1873), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1873), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1873), + [anon_sym_RPAREN] = ACTIONS(1873), + [anon_sym_GT2] = ACTIONS(1871), + [anon_sym_DASH2] = ACTIONS(1873), + [anon_sym_in2] = ACTIONS(1873), + [anon_sym_if] = ACTIONS(1873), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_EQ_GT] = ACTIONS(1873), + [anon_sym_STAR2] = ACTIONS(1871), + [anon_sym_and2] = ACTIONS(1873), + [anon_sym_xor2] = ACTIONS(1873), + [anon_sym_or2] = ACTIONS(1873), + [anon_sym_not_DASHin2] = ACTIONS(1873), + [anon_sym_starts_DASHwith2] = ACTIONS(1873), + [anon_sym_ends_DASHwith2] = ACTIONS(1873), + [anon_sym_EQ_EQ2] = ACTIONS(1873), + [anon_sym_BANG_EQ2] = ACTIONS(1873), + [anon_sym_LT2] = ACTIONS(1871), + [anon_sym_LT_EQ2] = ACTIONS(1873), + [anon_sym_GT_EQ2] = ACTIONS(1873), + [anon_sym_EQ_TILDE2] = ACTIONS(1873), + [anon_sym_BANG_TILDE2] = ACTIONS(1873), + [anon_sym_STAR_STAR2] = ACTIONS(1873), + [anon_sym_PLUS_PLUS2] = ACTIONS(1873), + [anon_sym_SLASH2] = ACTIONS(1871), + [anon_sym_mod2] = ACTIONS(1873), + [anon_sym_SLASH_SLASH2] = ACTIONS(1873), + [anon_sym_PLUS2] = ACTIONS(1871), + [anon_sym_bit_DASHshl2] = ACTIONS(1873), + [anon_sym_bit_DASHshr2] = ACTIONS(1873), + [anon_sym_bit_DASHand2] = ACTIONS(1873), + [anon_sym_bit_DASHxor2] = ACTIONS(1873), + [anon_sym_bit_DASHor2] = ACTIONS(1873), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_err_GT] = ACTIONS(1871), + [anon_sym_out_GT] = ACTIONS(1871), + [anon_sym_e_GT] = ACTIONS(1871), + [anon_sym_o_GT] = ACTIONS(1871), + [anon_sym_err_PLUSout_GT] = ACTIONS(1871), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1871), + [anon_sym_o_PLUSe_GT] = ACTIONS(1871), + [anon_sym_e_PLUSo_GT] = ACTIONS(1871), + [anon_sym_err_GT_GT] = ACTIONS(1873), + [anon_sym_out_GT_GT] = ACTIONS(1873), + [anon_sym_e_GT_GT] = ACTIONS(1873), + [anon_sym_o_GT_GT] = ACTIONS(1873), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1873), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1873), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1873), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1873), + [anon_sym_POUND] = ACTIONS(247), }, [1649] = { - [sym_path] = STATE(1642), [sym_comment] = STATE(1649), - [aux_sym_cell_path_repeat1] = STATE(1649), - [sym__newline] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(973), - [anon_sym_err_GT_PIPE] = ACTIONS(973), - [anon_sym_out_GT_PIPE] = ACTIONS(973), - [anon_sym_e_GT_PIPE] = ACTIONS(973), - [anon_sym_o_GT_PIPE] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), - [anon_sym_RPAREN] = ACTIONS(973), - [anon_sym_GT2] = ACTIONS(971), - [anon_sym_DASH2] = ACTIONS(973), - [anon_sym_in2] = ACTIONS(973), - [anon_sym_LBRACE] = ACTIONS(973), - [anon_sym_RBRACE] = ACTIONS(973), - [anon_sym_STAR2] = ACTIONS(971), - [anon_sym_and2] = ACTIONS(973), - [anon_sym_xor2] = ACTIONS(973), - [anon_sym_or2] = ACTIONS(973), - [anon_sym_not_DASHin2] = ACTIONS(973), - [anon_sym_starts_DASHwith2] = ACTIONS(973), - [anon_sym_ends_DASHwith2] = ACTIONS(973), - [anon_sym_EQ_EQ2] = ACTIONS(973), - [anon_sym_BANG_EQ2] = ACTIONS(973), - [anon_sym_LT2] = ACTIONS(971), - [anon_sym_LT_EQ2] = ACTIONS(973), - [anon_sym_GT_EQ2] = ACTIONS(973), - [anon_sym_EQ_TILDE2] = ACTIONS(973), - [anon_sym_BANG_TILDE2] = ACTIONS(973), - [anon_sym_STAR_STAR2] = ACTIONS(973), - [anon_sym_PLUS_PLUS2] = ACTIONS(973), - [anon_sym_SLASH2] = ACTIONS(971), - [anon_sym_mod2] = ACTIONS(973), - [anon_sym_SLASH_SLASH2] = ACTIONS(973), - [anon_sym_PLUS2] = ACTIONS(971), - [anon_sym_bit_DASHshl2] = ACTIONS(973), - [anon_sym_bit_DASHshr2] = ACTIONS(973), - [anon_sym_bit_DASHand2] = ACTIONS(973), - [anon_sym_bit_DASHxor2] = ACTIONS(973), - [anon_sym_bit_DASHor2] = ACTIONS(973), - [anon_sym_DOT_DOT2] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(4993), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(973), - [anon_sym_DOT_DOT_LT2] = ACTIONS(973), - [anon_sym_err_GT] = ACTIONS(971), - [anon_sym_out_GT] = ACTIONS(971), - [anon_sym_e_GT] = ACTIONS(971), - [anon_sym_o_GT] = ACTIONS(971), - [anon_sym_err_PLUSout_GT] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT] = ACTIONS(971), - [anon_sym_o_PLUSe_GT] = ACTIONS(971), - [anon_sym_e_PLUSo_GT] = ACTIONS(971), - [anon_sym_err_GT_GT] = ACTIONS(973), - [anon_sym_out_GT_GT] = ACTIONS(973), - [anon_sym_e_GT_GT] = ACTIONS(973), - [anon_sym_o_GT_GT] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), + [sym__newline] = ACTIONS(1741), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym_PIPE] = ACTIONS(1741), + [anon_sym_err_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_GT_PIPE] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_RPAREN] = ACTIONS(1741), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_DASH_DASH] = ACTIONS(1741), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1741), + [anon_sym_RBRACE] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT] = ACTIONS(1741), + [aux_sym__immediate_decimal_token1] = ACTIONS(4988), + [aux_sym__immediate_decimal_token2] = ACTIONS(4990), + [anon_sym_null] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1741), + [anon_sym_false] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1741), + [aux_sym__val_number_token5] = ACTIONS(1741), + [aux_sym__val_number_token6] = ACTIONS(1741), + [anon_sym_0b] = ACTIONS(1739), + [anon_sym_0o] = ACTIONS(1739), + [anon_sym_0x] = ACTIONS(1739), + [sym_val_date] = ACTIONS(1741), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), + [anon_sym_err_GT] = ACTIONS(1739), + [anon_sym_out_GT] = ACTIONS(1739), + [anon_sym_e_GT] = ACTIONS(1739), + [anon_sym_o_GT] = ACTIONS(1739), + [anon_sym_err_PLUSout_GT] = ACTIONS(1739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), + [anon_sym_o_PLUSe_GT] = ACTIONS(1739), + [anon_sym_e_PLUSo_GT] = ACTIONS(1739), + [anon_sym_err_GT_GT] = ACTIONS(1741), + [anon_sym_out_GT_GT] = ACTIONS(1741), + [anon_sym_e_GT_GT] = ACTIONS(1741), + [anon_sym_o_GT_GT] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), + [aux_sym_unquoted_token1] = ACTIONS(1739), [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), }, [1650] = { - [sym_cell_path] = STATE(2022), - [sym_path] = STATE(1886), [sym_comment] = STATE(1650), - [aux_sym_cell_path_repeat1] = STATE(1664), - [sym__newline] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_err_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_GT_PIPE] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), - [anon_sym_GT2] = ACTIONS(1735), - [anon_sym_DASH2] = ACTIONS(1737), - [anon_sym_in2] = ACTIONS(1737), - [anon_sym_RBRACE] = ACTIONS(1737), - [anon_sym_STAR2] = ACTIONS(1735), - [anon_sym_and2] = ACTIONS(1737), - [anon_sym_xor2] = ACTIONS(1737), - [anon_sym_or2] = ACTIONS(1737), - [anon_sym_not_DASHin2] = ACTIONS(1737), - [anon_sym_starts_DASHwith2] = ACTIONS(1737), - [anon_sym_ends_DASHwith2] = ACTIONS(1737), - [anon_sym_EQ_EQ2] = ACTIONS(1737), - [anon_sym_BANG_EQ2] = ACTIONS(1737), - [anon_sym_LT2] = ACTIONS(1735), - [anon_sym_LT_EQ2] = ACTIONS(1737), - [anon_sym_GT_EQ2] = ACTIONS(1737), - [anon_sym_EQ_TILDE2] = ACTIONS(1737), - [anon_sym_BANG_TILDE2] = ACTIONS(1737), - [anon_sym_STAR_STAR2] = ACTIONS(1737), - [anon_sym_PLUS_PLUS2] = ACTIONS(1737), - [anon_sym_SLASH2] = ACTIONS(1735), - [anon_sym_mod2] = ACTIONS(1737), - [anon_sym_SLASH_SLASH2] = ACTIONS(1737), - [anon_sym_PLUS2] = ACTIONS(1735), - [anon_sym_bit_DASHshl2] = ACTIONS(1737), - [anon_sym_bit_DASHshr2] = ACTIONS(1737), - [anon_sym_bit_DASHand2] = ACTIONS(1737), - [anon_sym_bit_DASHxor2] = ACTIONS(1737), - [anon_sym_bit_DASHor2] = ACTIONS(1737), - [anon_sym_DOT_DOT2] = ACTIONS(1735), - [anon_sym_DOT] = ACTIONS(4991), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), - [aux_sym_record_entry_token1] = ACTIONS(1737), - [anon_sym_err_GT] = ACTIONS(1735), - [anon_sym_out_GT] = ACTIONS(1735), - [anon_sym_e_GT] = ACTIONS(1735), - [anon_sym_o_GT] = ACTIONS(1735), - [anon_sym_err_PLUSout_GT] = ACTIONS(1735), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), - [anon_sym_o_PLUSe_GT] = ACTIONS(1735), - [anon_sym_e_PLUSo_GT] = ACTIONS(1735), - [anon_sym_err_GT_GT] = ACTIONS(1737), - [anon_sym_out_GT_GT] = ACTIONS(1737), - [anon_sym_e_GT_GT] = ACTIONS(1737), - [anon_sym_o_GT_GT] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(2128), + [sym__newline] = ACTIONS(2128), + [anon_sym_SEMI] = ACTIONS(2128), + [anon_sym_PIPE] = ACTIONS(2128), + [anon_sym_err_GT_PIPE] = ACTIONS(2128), + [anon_sym_out_GT_PIPE] = ACTIONS(2128), + [anon_sym_e_GT_PIPE] = ACTIONS(2128), + [anon_sym_o_GT_PIPE] = ACTIONS(2128), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2128), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2128), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2128), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2128), + [anon_sym_LBRACK] = ACTIONS(2128), + [anon_sym_LPAREN] = ACTIONS(2128), + [anon_sym_DOLLAR] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2128), + [anon_sym_DASH2] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(2128), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_DOT_DOT2] = ACTIONS(4992), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2122), + [anon_sym_DOT_DOT_LT] = ACTIONS(2122), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4994), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4994), + [anon_sym_null] = ACTIONS(2128), + [anon_sym_true] = ACTIONS(2128), + [anon_sym_false] = ACTIONS(2128), + [aux_sym__val_number_decimal_token1] = ACTIONS(2122), + [aux_sym__val_number_decimal_token2] = ACTIONS(2128), + [aux_sym__val_number_decimal_token3] = ACTIONS(2128), + [aux_sym__val_number_decimal_token4] = ACTIONS(2128), + [aux_sym__val_number_token1] = ACTIONS(2128), + [aux_sym__val_number_token2] = ACTIONS(2128), + [aux_sym__val_number_token3] = ACTIONS(2128), + [aux_sym__val_number_token4] = ACTIONS(2128), + [aux_sym__val_number_token5] = ACTIONS(2128), + [aux_sym__val_number_token6] = ACTIONS(2128), + [anon_sym_0b] = ACTIONS(2122), + [anon_sym_0o] = ACTIONS(2122), + [anon_sym_0x] = ACTIONS(2122), + [sym_val_date] = ACTIONS(2128), + [anon_sym_DQUOTE] = ACTIONS(2128), + [sym__str_single_quotes] = ACTIONS(2128), + [sym__str_back_ticks] = ACTIONS(2128), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2128), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2128), + [anon_sym_err_GT] = ACTIONS(2122), + [anon_sym_out_GT] = ACTIONS(2122), + [anon_sym_e_GT] = ACTIONS(2122), + [anon_sym_o_GT] = ACTIONS(2122), + [anon_sym_err_PLUSout_GT] = ACTIONS(2122), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2122), + [anon_sym_o_PLUSe_GT] = ACTIONS(2122), + [anon_sym_e_PLUSo_GT] = ACTIONS(2122), + [anon_sym_err_GT_GT] = ACTIONS(2128), + [anon_sym_out_GT_GT] = ACTIONS(2128), + [anon_sym_e_GT_GT] = ACTIONS(2128), + [anon_sym_o_GT_GT] = ACTIONS(2128), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2128), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2128), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2128), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2128), + [aux_sym_unquoted_token1] = ACTIONS(2122), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2128), }, [1651] = { + [sym_cell_path] = STATE(2012), + [sym_path] = STATE(1882), [sym_comment] = STATE(1651), - [ts_builtin_sym_end] = ACTIONS(1609), - [sym__newline] = ACTIONS(1609), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_PIPE] = ACTIONS(1609), - [anon_sym_err_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_GT_PIPE] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1609), - [anon_sym_in2] = ACTIONS(1609), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1609), - [anon_sym_xor2] = ACTIONS(1609), - [anon_sym_or2] = ACTIONS(1609), - [anon_sym_not_DASHin2] = ACTIONS(1609), - [anon_sym_starts_DASHwith2] = ACTIONS(1609), - [anon_sym_ends_DASHwith2] = ACTIONS(1609), - [anon_sym_EQ_EQ2] = ACTIONS(1609), - [anon_sym_BANG_EQ2] = ACTIONS(1609), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1609), - [anon_sym_GT_EQ2] = ACTIONS(1609), - [anon_sym_EQ_TILDE2] = ACTIONS(1609), - [anon_sym_BANG_TILDE2] = ACTIONS(1609), - [anon_sym_LPAREN2] = ACTIONS(1609), - [anon_sym_STAR_STAR2] = ACTIONS(1609), - [anon_sym_PLUS_PLUS2] = ACTIONS(1609), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1609), - [anon_sym_SLASH_SLASH2] = ACTIONS(1609), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1609), - [anon_sym_bit_DASHshr2] = ACTIONS(1609), - [anon_sym_bit_DASHand2] = ACTIONS(1609), - [anon_sym_bit_DASHxor2] = ACTIONS(1609), - [anon_sym_bit_DASHor2] = ACTIONS(1609), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [aux_sym__immediate_decimal_token2] = ACTIONS(4852), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1609), - [anon_sym_out_GT_GT] = ACTIONS(1609), - [anon_sym_e_GT_GT] = ACTIONS(1609), - [anon_sym_o_GT_GT] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), - [aux_sym_unquoted_token2] = ACTIONS(1607), + [aux_sym_cell_path_repeat1] = STATE(1690), + [sym__newline] = ACTIONS(2028), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_err_GT_PIPE] = ACTIONS(2028), + [anon_sym_out_GT_PIPE] = ACTIONS(2028), + [anon_sym_e_GT_PIPE] = ACTIONS(2028), + [anon_sym_o_GT_PIPE] = ACTIONS(2028), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2028), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2028), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2028), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2028), + [anon_sym_RPAREN] = ACTIONS(2028), + [anon_sym_GT2] = ACTIONS(2026), + [anon_sym_DASH2] = ACTIONS(2028), + [anon_sym_in2] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2028), + [anon_sym_RBRACE] = ACTIONS(2028), + [anon_sym_EQ_GT] = ACTIONS(2028), + [anon_sym_STAR2] = ACTIONS(2026), + [anon_sym_and2] = ACTIONS(2028), + [anon_sym_xor2] = ACTIONS(2028), + [anon_sym_or2] = ACTIONS(2028), + [anon_sym_not_DASHin2] = ACTIONS(2028), + [anon_sym_starts_DASHwith2] = ACTIONS(2028), + [anon_sym_ends_DASHwith2] = ACTIONS(2028), + [anon_sym_EQ_EQ2] = ACTIONS(2028), + [anon_sym_BANG_EQ2] = ACTIONS(2028), + [anon_sym_LT2] = ACTIONS(2026), + [anon_sym_LT_EQ2] = ACTIONS(2028), + [anon_sym_GT_EQ2] = ACTIONS(2028), + [anon_sym_EQ_TILDE2] = ACTIONS(2028), + [anon_sym_BANG_TILDE2] = ACTIONS(2028), + [anon_sym_STAR_STAR2] = ACTIONS(2028), + [anon_sym_PLUS_PLUS2] = ACTIONS(2028), + [anon_sym_SLASH2] = ACTIONS(2026), + [anon_sym_mod2] = ACTIONS(2028), + [anon_sym_SLASH_SLASH2] = ACTIONS(2028), + [anon_sym_PLUS2] = ACTIONS(2026), + [anon_sym_bit_DASHshl2] = ACTIONS(2028), + [anon_sym_bit_DASHshr2] = ACTIONS(2028), + [anon_sym_bit_DASHand2] = ACTIONS(2028), + [anon_sym_bit_DASHxor2] = ACTIONS(2028), + [anon_sym_bit_DASHor2] = ACTIONS(2028), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_err_GT] = ACTIONS(2026), + [anon_sym_out_GT] = ACTIONS(2026), + [anon_sym_e_GT] = ACTIONS(2026), + [anon_sym_o_GT] = ACTIONS(2026), + [anon_sym_err_PLUSout_GT] = ACTIONS(2026), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2026), + [anon_sym_o_PLUSe_GT] = ACTIONS(2026), + [anon_sym_e_PLUSo_GT] = ACTIONS(2026), + [anon_sym_err_GT_GT] = ACTIONS(2028), + [anon_sym_out_GT_GT] = ACTIONS(2028), + [anon_sym_e_GT_GT] = ACTIONS(2028), + [anon_sym_o_GT_GT] = ACTIONS(2028), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2028), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2028), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2028), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2028), [anon_sym_POUND] = ACTIONS(247), }, [1652] = { - [sym_cell_path] = STATE(1657), - [sym_path] = STATE(1894), [sym_comment] = STATE(1652), - [aux_sym_cell_path_repeat1] = STATE(1702), - [sym__newline] = ACTIONS(1771), - [anon_sym_SEMI] = ACTIONS(1771), - [anon_sym_PIPE] = ACTIONS(1771), - [anon_sym_err_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_GT_PIPE] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), - [anon_sym_RPAREN] = ACTIONS(1771), - [anon_sym_GT2] = ACTIONS(1769), - [anon_sym_DASH2] = ACTIONS(1771), - [anon_sym_in2] = ACTIONS(1771), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_RBRACE] = ACTIONS(1771), - [anon_sym_EQ_GT] = ACTIONS(1771), - [anon_sym_STAR2] = ACTIONS(1769), - [anon_sym_and2] = ACTIONS(1771), - [anon_sym_xor2] = ACTIONS(1771), - [anon_sym_or2] = ACTIONS(1771), - [anon_sym_not_DASHin2] = ACTIONS(1771), - [anon_sym_starts_DASHwith2] = ACTIONS(1771), - [anon_sym_ends_DASHwith2] = ACTIONS(1771), - [anon_sym_EQ_EQ2] = ACTIONS(1771), - [anon_sym_BANG_EQ2] = ACTIONS(1771), - [anon_sym_LT2] = ACTIONS(1769), - [anon_sym_LT_EQ2] = ACTIONS(1771), - [anon_sym_GT_EQ2] = ACTIONS(1771), - [anon_sym_EQ_TILDE2] = ACTIONS(1771), - [anon_sym_BANG_TILDE2] = ACTIONS(1771), - [anon_sym_STAR_STAR2] = ACTIONS(1771), - [anon_sym_PLUS_PLUS2] = ACTIONS(1771), - [anon_sym_SLASH2] = ACTIONS(1769), - [anon_sym_mod2] = ACTIONS(1771), - [anon_sym_SLASH_SLASH2] = ACTIONS(1771), - [anon_sym_PLUS2] = ACTIONS(1769), - [anon_sym_bit_DASHshl2] = ACTIONS(1771), - [anon_sym_bit_DASHshr2] = ACTIONS(1771), - [anon_sym_bit_DASHand2] = ACTIONS(1771), - [anon_sym_bit_DASHxor2] = ACTIONS(1771), - [anon_sym_bit_DASHor2] = ACTIONS(1771), - [anon_sym_DOT] = ACTIONS(4902), - [anon_sym_err_GT] = ACTIONS(1769), - [anon_sym_out_GT] = ACTIONS(1769), - [anon_sym_e_GT] = ACTIONS(1769), - [anon_sym_o_GT] = ACTIONS(1769), - [anon_sym_err_PLUSout_GT] = ACTIONS(1769), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), - [anon_sym_o_PLUSe_GT] = ACTIONS(1769), - [anon_sym_e_PLUSo_GT] = ACTIONS(1769), - [anon_sym_err_GT_GT] = ACTIONS(1771), - [anon_sym_out_GT_GT] = ACTIONS(1771), - [anon_sym_e_GT_GT] = ACTIONS(1771), - [anon_sym_o_GT_GT] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), - [anon_sym_POUND] = ACTIONS(247), - }, - [1653] = { - [sym_comment] = STATE(1653), - [ts_builtin_sym_end] = ACTIONS(1609), - [sym__newline] = ACTIONS(1609), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_PIPE] = ACTIONS(1609), - [anon_sym_err_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_GT_PIPE] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1609), - [anon_sym_GT2] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1609), - [anon_sym_in2] = ACTIONS(1609), - [anon_sym_STAR2] = ACTIONS(1607), - [anon_sym_and2] = ACTIONS(1609), - [anon_sym_xor2] = ACTIONS(1609), - [anon_sym_or2] = ACTIONS(1609), - [anon_sym_not_DASHin2] = ACTIONS(1609), - [anon_sym_starts_DASHwith2] = ACTIONS(1609), - [anon_sym_ends_DASHwith2] = ACTIONS(1609), - [anon_sym_EQ_EQ2] = ACTIONS(1609), - [anon_sym_BANG_EQ2] = ACTIONS(1609), - [anon_sym_LT2] = ACTIONS(1607), - [anon_sym_LT_EQ2] = ACTIONS(1609), - [anon_sym_GT_EQ2] = ACTIONS(1609), - [anon_sym_EQ_TILDE2] = ACTIONS(1609), - [anon_sym_BANG_TILDE2] = ACTIONS(1609), - [anon_sym_LPAREN2] = ACTIONS(1609), - [anon_sym_STAR_STAR2] = ACTIONS(1609), - [anon_sym_PLUS_PLUS2] = ACTIONS(1609), - [anon_sym_SLASH2] = ACTIONS(1607), - [anon_sym_mod2] = ACTIONS(1609), - [anon_sym_SLASH_SLASH2] = ACTIONS(1609), - [anon_sym_PLUS2] = ACTIONS(1607), - [anon_sym_bit_DASHshl2] = ACTIONS(1609), - [anon_sym_bit_DASHshr2] = ACTIONS(1609), - [anon_sym_bit_DASHand2] = ACTIONS(1609), - [anon_sym_bit_DASHxor2] = ACTIONS(1609), - [anon_sym_bit_DASHor2] = ACTIONS(1609), - [anon_sym_DOT_DOT2] = ACTIONS(1607), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1609), - [sym_filesize_unit] = ACTIONS(1607), - [sym_duration_unit] = ACTIONS(1609), - [anon_sym_err_GT] = ACTIONS(1607), - [anon_sym_out_GT] = ACTIONS(1607), - [anon_sym_e_GT] = ACTIONS(1607), - [anon_sym_o_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT] = ACTIONS(1607), - [anon_sym_err_GT_GT] = ACTIONS(1609), - [anon_sym_out_GT_GT] = ACTIONS(1609), - [anon_sym_e_GT_GT] = ACTIONS(1609), - [anon_sym_o_GT_GT] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1609), - [aux_sym_unquoted_token2] = ACTIONS(1607), - [anon_sym_POUND] = ACTIONS(247), - }, - [1654] = { - [sym_comment] = STATE(1654), - [sym__newline] = ACTIONS(2218), - [anon_sym_SEMI] = ACTIONS(2218), - [anon_sym_PIPE] = ACTIONS(2218), - [anon_sym_err_GT_PIPE] = ACTIONS(2218), - [anon_sym_out_GT_PIPE] = ACTIONS(2218), - [anon_sym_e_GT_PIPE] = ACTIONS(2218), - [anon_sym_o_GT_PIPE] = ACTIONS(2218), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), - [anon_sym_LBRACK] = ACTIONS(2218), - [anon_sym_LPAREN] = ACTIONS(2218), - [anon_sym_RPAREN] = ACTIONS(2218), - [anon_sym_DOLLAR] = ACTIONS(2214), - [anon_sym_DASH_DASH] = ACTIONS(2214), - [anon_sym_DASH2] = ACTIONS(2214), - [anon_sym_LBRACE] = ACTIONS(2218), - [anon_sym_RBRACE] = ACTIONS(2218), - [anon_sym_DOT_DOT] = ACTIONS(2214), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2214), - [anon_sym_DOT_DOT_LT] = ACTIONS(2214), - [anon_sym_null] = ACTIONS(2214), - [anon_sym_true] = ACTIONS(2214), - [anon_sym_false] = ACTIONS(2214), - [aux_sym__val_number_decimal_token1] = ACTIONS(2214), - [aux_sym__val_number_decimal_token2] = ACTIONS(2214), - [aux_sym__val_number_decimal_token3] = ACTIONS(2214), - [aux_sym__val_number_decimal_token4] = ACTIONS(2214), - [aux_sym__val_number_token1] = ACTIONS(2214), - [aux_sym__val_number_token2] = ACTIONS(2214), - [aux_sym__val_number_token3] = ACTIONS(2214), - [aux_sym__val_number_token4] = ACTIONS(2214), - [aux_sym__val_number_token5] = ACTIONS(2214), - [aux_sym__val_number_token6] = ACTIONS(2214), - [anon_sym_0b] = ACTIONS(2214), - [anon_sym_0o] = ACTIONS(2214), - [anon_sym_0x] = ACTIONS(2214), - [sym_val_date] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2218), - [sym__str_single_quotes] = ACTIONS(2218), - [sym__str_back_ticks] = ACTIONS(2218), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2218), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2218), - [anon_sym_err_GT] = ACTIONS(2214), - [anon_sym_out_GT] = ACTIONS(2214), - [anon_sym_e_GT] = ACTIONS(2214), - [anon_sym_o_GT] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT] = ACTIONS(2214), - [anon_sym_err_GT_GT] = ACTIONS(2214), - [anon_sym_out_GT_GT] = ACTIONS(2214), - [anon_sym_e_GT_GT] = ACTIONS(2214), - [anon_sym_o_GT_GT] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2214), - [aux_sym_unquoted_token1] = ACTIONS(2214), - [aux_sym_unquoted_token4] = ACTIONS(2220), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2218), - }, - [1655] = { - [sym_comment] = STATE(1655), - [ts_builtin_sym_end] = ACTIONS(1004), - [sym__newline] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_err_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_GT_PIPE] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), - [anon_sym_LBRACK] = ACTIONS(1004), - [anon_sym_LPAREN] = ACTIONS(1004), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_DASH_DASH] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1002), - [anon_sym_LBRACE] = ACTIONS(1004), - [anon_sym_DOT_DOT] = ACTIONS(1002), - [anon_sym_QMARK2] = ACTIONS(1004), - [anon_sym_DOT] = ACTIONS(1002), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1004), - [anon_sym_DOT_DOT_LT] = ACTIONS(1004), - [anon_sym_null] = ACTIONS(1004), - [anon_sym_true] = ACTIONS(1004), - [anon_sym_false] = ACTIONS(1004), - [aux_sym__val_number_decimal_token1] = ACTIONS(1002), - [aux_sym__val_number_decimal_token2] = ACTIONS(1004), - [aux_sym__val_number_decimal_token3] = ACTIONS(1004), - [aux_sym__val_number_decimal_token4] = ACTIONS(1004), - [aux_sym__val_number_token1] = ACTIONS(1004), - [aux_sym__val_number_token2] = ACTIONS(1004), - [aux_sym__val_number_token3] = ACTIONS(1004), - [aux_sym__val_number_token4] = ACTIONS(1004), - [aux_sym__val_number_token5] = ACTIONS(1004), - [aux_sym__val_number_token6] = ACTIONS(1004), - [anon_sym_0b] = ACTIONS(1002), - [anon_sym_0o] = ACTIONS(1002), - [anon_sym_0x] = ACTIONS(1002), - [sym_val_date] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1004), - [sym__str_single_quotes] = ACTIONS(1004), - [sym__str_back_ticks] = ACTIONS(1004), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1004), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1004), - [anon_sym_err_GT] = ACTIONS(1002), - [anon_sym_out_GT] = ACTIONS(1002), - [anon_sym_e_GT] = ACTIONS(1002), - [anon_sym_o_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT] = ACTIONS(1002), - [anon_sym_err_GT_GT] = ACTIONS(1004), - [anon_sym_out_GT_GT] = ACTIONS(1004), - [anon_sym_e_GT_GT] = ACTIONS(1004), - [anon_sym_o_GT_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), - [aux_sym_unquoted_token1] = ACTIONS(1002), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1004), - }, - [1656] = { - [sym__expression] = STATE(5687), - [sym_expr_unary] = STATE(3905), - [sym__expr_unary_minus] = STATE(3850), - [sym_expr_binary] = STATE(3905), - [sym__expr_binary_expression] = STATE(3977), - [sym_expr_parenthesized] = STATE(3599), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(3905), - [sym_val_nothing] = STATE(3532), - [sym_val_bool] = STATE(3532), - [sym_val_variable] = STATE(3594), - [sym_val_number] = STATE(3532), - [sym__val_number_decimal] = STATE(3514), - [sym__val_number] = STATE(3492), - [sym_val_duration] = STATE(3532), - [sym_val_filesize] = STATE(3532), - [sym_val_binary] = STATE(3532), - [sym_val_string] = STATE(3532), - [sym__raw_str] = STATE(3584), - [sym__str_double_quotes] = STATE(3584), - [sym_val_interpolated] = STATE(3532), - [sym__inter_single_quotes] = STATE(3486), - [sym__inter_double_quotes] = STATE(3489), - [sym_val_list] = STATE(3532), - [sym_val_record] = STATE(3532), - [sym_val_table] = STATE(3532), - [sym_val_closure] = STATE(3532), - [sym__flag] = STATE(2146), - [sym_short_flag] = STATE(3624), - [sym_long_flag] = STATE(3624), - [sym_comment] = STATE(1656), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(4996), - [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_DASH_DASH] = ACTIONS(5000), - [anon_sym_DASH2] = ACTIONS(5002), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(5004), - [aux_sym_expr_unary_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5006), - [anon_sym_DOT_DOT_LT] = ACTIONS(5006), - [anon_sym_null] = ACTIONS(5008), - [anon_sym_true] = ACTIONS(5010), - [anon_sym_false] = ACTIONS(5010), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [aux_sym__val_number_token4] = ACTIONS(3467), - [aux_sym__val_number_token5] = ACTIONS(3467), - [aux_sym__val_number_token6] = ACTIONS(3467), - [anon_sym_0b] = ACTIONS(3471), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(5012), - [anon_sym_DQUOTE] = ACTIONS(3477), - [sym__str_single_quotes] = ACTIONS(3479), - [sym__str_back_ticks] = ACTIONS(3479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3487), - }, - [1657] = { - [sym_comment] = STATE(1657), [sym__newline] = ACTIONS(1737), [anon_sym_SEMI] = ACTIONS(1737), [anon_sym_PIPE] = ACTIONS(1737), @@ -226838,14 +226806,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), [anon_sym_RPAREN] = ACTIONS(1737), - [anon_sym_GT2] = ACTIONS(1735), + [anon_sym_GT2] = ACTIONS(1733), [anon_sym_DASH2] = ACTIONS(1737), [anon_sym_in2] = ACTIONS(1737), [anon_sym_if] = ACTIONS(1737), [anon_sym_LBRACE] = ACTIONS(1737), [anon_sym_RBRACE] = ACTIONS(1737), [anon_sym_EQ_GT] = ACTIONS(1737), - [anon_sym_STAR2] = ACTIONS(1735), + [anon_sym_STAR2] = ACTIONS(1733), [anon_sym_and2] = ACTIONS(1737), [anon_sym_xor2] = ACTIONS(1737), [anon_sym_or2] = ACTIONS(1737), @@ -226854,33 +226822,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ends_DASHwith2] = ACTIONS(1737), [anon_sym_EQ_EQ2] = ACTIONS(1737), [anon_sym_BANG_EQ2] = ACTIONS(1737), - [anon_sym_LT2] = ACTIONS(1735), + [anon_sym_LT2] = ACTIONS(1733), [anon_sym_LT_EQ2] = ACTIONS(1737), [anon_sym_GT_EQ2] = ACTIONS(1737), [anon_sym_EQ_TILDE2] = ACTIONS(1737), [anon_sym_BANG_TILDE2] = ACTIONS(1737), [anon_sym_STAR_STAR2] = ACTIONS(1737), [anon_sym_PLUS_PLUS2] = ACTIONS(1737), - [anon_sym_SLASH2] = ACTIONS(1735), + [anon_sym_SLASH2] = ACTIONS(1733), [anon_sym_mod2] = ACTIONS(1737), [anon_sym_SLASH_SLASH2] = ACTIONS(1737), - [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_PLUS2] = ACTIONS(1733), [anon_sym_bit_DASHshl2] = ACTIONS(1737), [anon_sym_bit_DASHshr2] = ACTIONS(1737), [anon_sym_bit_DASHand2] = ACTIONS(1737), [anon_sym_bit_DASHxor2] = ACTIONS(1737), [anon_sym_bit_DASHor2] = ACTIONS(1737), - [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT_DOT2] = ACTIONS(1733), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), - [anon_sym_err_GT] = ACTIONS(1735), - [anon_sym_out_GT] = ACTIONS(1735), - [anon_sym_e_GT] = ACTIONS(1735), - [anon_sym_o_GT] = ACTIONS(1735), - [anon_sym_err_PLUSout_GT] = ACTIONS(1735), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), - [anon_sym_o_PLUSe_GT] = ACTIONS(1735), - [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT] = ACTIONS(1733), + [anon_sym_out_GT] = ACTIONS(1733), + [anon_sym_e_GT] = ACTIONS(1733), + [anon_sym_o_GT] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT] = ACTIONS(1733), [anon_sym_err_GT_GT] = ACTIONS(1737), [anon_sym_out_GT_GT] = ACTIONS(1737), [anon_sym_e_GT_GT] = ACTIONS(1737), @@ -226891,412 +226859,412 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), [anon_sym_POUND] = ACTIONS(247), }, - [1658] = { - [sym_comment] = STATE(1658), - [sym__newline] = ACTIONS(5014), - [anon_sym_SEMI] = ACTIONS(5014), - [anon_sym_PIPE] = ACTIONS(5014), - [anon_sym_err_GT_PIPE] = ACTIONS(5014), - [anon_sym_out_GT_PIPE] = ACTIONS(5014), - [anon_sym_e_GT_PIPE] = ACTIONS(5014), - [anon_sym_o_GT_PIPE] = ACTIONS(5014), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5014), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5014), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5014), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5014), - [anon_sym_LBRACK] = ACTIONS(5014), - [anon_sym_LPAREN] = ACTIONS(5014), - [anon_sym_RPAREN] = ACTIONS(5014), - [anon_sym_DOLLAR] = ACTIONS(5016), - [anon_sym_DASH_DASH] = ACTIONS(5014), - [anon_sym_DASH2] = ACTIONS(5016), - [anon_sym_LBRACE] = ACTIONS(5014), - [anon_sym_RBRACE] = ACTIONS(5014), - [anon_sym_DOT_DOT] = ACTIONS(5016), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5014), - [anon_sym_DOT_DOT_LT] = ACTIONS(5014), - [anon_sym_null] = ACTIONS(5014), - [anon_sym_true] = ACTIONS(5014), - [anon_sym_false] = ACTIONS(5014), - [aux_sym__val_number_decimal_token1] = ACTIONS(5016), - [aux_sym__val_number_decimal_token2] = ACTIONS(5014), - [aux_sym__val_number_decimal_token3] = ACTIONS(5014), - [aux_sym__val_number_decimal_token4] = ACTIONS(5014), - [aux_sym__val_number_token1] = ACTIONS(5014), - [aux_sym__val_number_token2] = ACTIONS(5014), - [aux_sym__val_number_token3] = ACTIONS(5014), - [aux_sym__val_number_token4] = ACTIONS(5014), - [aux_sym__val_number_token5] = ACTIONS(5014), - [aux_sym__val_number_token6] = ACTIONS(5014), - [anon_sym_0b] = ACTIONS(5016), - [anon_sym_0o] = ACTIONS(5016), - [anon_sym_0x] = ACTIONS(5016), - [sym_val_date] = ACTIONS(5014), - [anon_sym_DQUOTE] = ACTIONS(5014), - [sym__str_single_quotes] = ACTIONS(5014), - [sym__str_back_ticks] = ACTIONS(5014), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5014), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5014), - [anon_sym_err_GT] = ACTIONS(5016), - [anon_sym_out_GT] = ACTIONS(5016), - [anon_sym_e_GT] = ACTIONS(5016), - [anon_sym_o_GT] = ACTIONS(5016), - [anon_sym_err_PLUSout_GT] = ACTIONS(5016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5016), - [anon_sym_o_PLUSe_GT] = ACTIONS(5016), - [anon_sym_e_PLUSo_GT] = ACTIONS(5016), - [anon_sym_err_GT_GT] = ACTIONS(5014), - [anon_sym_out_GT_GT] = ACTIONS(5014), - [anon_sym_e_GT_GT] = ACTIONS(5014), - [anon_sym_o_GT_GT] = ACTIONS(5014), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5014), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5014), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5014), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5014), - [anon_sym_EQ2] = ACTIONS(5018), - [aux_sym_unquoted_token1] = ACTIONS(5016), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(5014), + [1653] = { + [sym__expr_parenthesized_immediate] = STATE(8105), + [sym_comment] = STATE(1653), + [ts_builtin_sym_end] = ACTIONS(4932), + [sym__newline] = ACTIONS(4932), + [anon_sym_SEMI] = ACTIONS(4932), + [anon_sym_PIPE] = ACTIONS(4932), + [anon_sym_err_GT_PIPE] = ACTIONS(4932), + [anon_sym_out_GT_PIPE] = ACTIONS(4932), + [anon_sym_e_GT_PIPE] = ACTIONS(4932), + [anon_sym_o_GT_PIPE] = ACTIONS(4932), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4932), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4932), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4932), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4932), + [anon_sym_LPAREN] = ACTIONS(4934), + [anon_sym_DOLLAR] = ACTIONS(4934), + [anon_sym_DASH_DASH] = ACTIONS(4932), + [anon_sym_DASH2] = ACTIONS(4934), + [anon_sym_LBRACE] = ACTIONS(4932), + [anon_sym_DOT_DOT] = ACTIONS(4934), + [anon_sym_LPAREN2] = ACTIONS(4543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4932), + [anon_sym_DOT_DOT_LT] = ACTIONS(4932), + [anon_sym_null] = ACTIONS(4932), + [anon_sym_true] = ACTIONS(4932), + [anon_sym_false] = ACTIONS(4932), + [aux_sym__val_number_decimal_token1] = ACTIONS(4934), + [aux_sym__val_number_decimal_token2] = ACTIONS(4932), + [aux_sym__val_number_decimal_token3] = ACTIONS(4932), + [aux_sym__val_number_decimal_token4] = ACTIONS(4932), + [aux_sym__val_number_token1] = ACTIONS(4932), + [aux_sym__val_number_token2] = ACTIONS(4932), + [aux_sym__val_number_token3] = ACTIONS(4932), + [aux_sym__val_number_token4] = ACTIONS(4932), + [aux_sym__val_number_token5] = ACTIONS(4932), + [aux_sym__val_number_token6] = ACTIONS(4932), + [anon_sym_0b] = ACTIONS(4934), + [anon_sym_0o] = ACTIONS(4934), + [anon_sym_0x] = ACTIONS(4934), + [sym_val_date] = ACTIONS(4932), + [anon_sym_DQUOTE] = ACTIONS(4932), + [sym__str_single_quotes] = ACTIONS(4932), + [sym__str_back_ticks] = ACTIONS(4932), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4932), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4932), + [anon_sym_err_GT] = ACTIONS(4934), + [anon_sym_out_GT] = ACTIONS(4934), + [anon_sym_e_GT] = ACTIONS(4934), + [anon_sym_o_GT] = ACTIONS(4934), + [anon_sym_err_PLUSout_GT] = ACTIONS(4934), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4934), + [anon_sym_o_PLUSe_GT] = ACTIONS(4934), + [anon_sym_e_PLUSo_GT] = ACTIONS(4934), + [anon_sym_err_GT_GT] = ACTIONS(4932), + [anon_sym_out_GT_GT] = ACTIONS(4932), + [anon_sym_e_GT_GT] = ACTIONS(4932), + [anon_sym_o_GT_GT] = ACTIONS(4932), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4932), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4932), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4932), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4932), + [aux_sym_unquoted_token1] = ACTIONS(4934), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4932), }, - [1659] = { - [sym__expression] = STATE(5717), - [sym_expr_unary] = STATE(3905), - [sym__expr_unary_minus] = STATE(3850), - [sym_expr_binary] = STATE(3905), - [sym__expr_binary_expression] = STATE(3977), - [sym_expr_parenthesized] = STATE(3599), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(3905), - [sym_val_nothing] = STATE(3532), - [sym_val_bool] = STATE(3532), - [sym_val_variable] = STATE(3594), - [sym_val_number] = STATE(3532), - [sym__val_number_decimal] = STATE(3514), - [sym__val_number] = STATE(3492), - [sym_val_duration] = STATE(3532), - [sym_val_filesize] = STATE(3532), - [sym_val_binary] = STATE(3532), - [sym_val_string] = STATE(3532), - [sym__raw_str] = STATE(3584), - [sym__str_double_quotes] = STATE(3584), - [sym_val_interpolated] = STATE(3532), - [sym__inter_single_quotes] = STATE(3486), - [sym__inter_double_quotes] = STATE(3489), - [sym_val_list] = STATE(3532), - [sym_val_record] = STATE(3532), - [sym_val_table] = STATE(3532), - [sym_val_closure] = STATE(3532), - [sym__flag] = STATE(2147), - [sym_short_flag] = STATE(3624), - [sym_long_flag] = STATE(3624), - [sym_comment] = STATE(1659), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(4996), - [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_DASH_DASH] = ACTIONS(5000), - [anon_sym_DASH2] = ACTIONS(5002), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(5004), - [aux_sym_expr_unary_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5006), - [anon_sym_DOT_DOT_LT] = ACTIONS(5006), - [anon_sym_null] = ACTIONS(5008), - [anon_sym_true] = ACTIONS(5010), - [anon_sym_false] = ACTIONS(5010), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [aux_sym__val_number_token4] = ACTIONS(3467), - [aux_sym__val_number_token5] = ACTIONS(3467), - [aux_sym__val_number_token6] = ACTIONS(3467), - [anon_sym_0b] = ACTIONS(3471), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(5012), - [anon_sym_DQUOTE] = ACTIONS(3477), - [sym__str_single_quotes] = ACTIONS(3479), - [sym__str_back_ticks] = ACTIONS(3479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3487), + [1654] = { + [sym__expr_parenthesized_immediate] = STATE(8105), + [sym_comment] = STATE(1654), + [ts_builtin_sym_end] = ACTIONS(4936), + [sym__newline] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(4936), + [anon_sym_PIPE] = ACTIONS(4936), + [anon_sym_err_GT_PIPE] = ACTIONS(4936), + [anon_sym_out_GT_PIPE] = ACTIONS(4936), + [anon_sym_e_GT_PIPE] = ACTIONS(4936), + [anon_sym_o_GT_PIPE] = ACTIONS(4936), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4936), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4936), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4936), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4936), + [anon_sym_LBRACK] = ACTIONS(4936), + [anon_sym_LPAREN] = ACTIONS(4938), + [anon_sym_DOLLAR] = ACTIONS(4938), + [anon_sym_DASH_DASH] = ACTIONS(4936), + [anon_sym_DASH2] = ACTIONS(4938), + [anon_sym_LBRACE] = ACTIONS(4936), + [anon_sym_DOT_DOT] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4936), + [anon_sym_DOT_DOT_LT] = ACTIONS(4936), + [anon_sym_null] = ACTIONS(4936), + [anon_sym_true] = ACTIONS(4936), + [anon_sym_false] = ACTIONS(4936), + [aux_sym__val_number_decimal_token1] = ACTIONS(4938), + [aux_sym__val_number_decimal_token2] = ACTIONS(4936), + [aux_sym__val_number_decimal_token3] = ACTIONS(4936), + [aux_sym__val_number_decimal_token4] = ACTIONS(4936), + [aux_sym__val_number_token1] = ACTIONS(4936), + [aux_sym__val_number_token2] = ACTIONS(4936), + [aux_sym__val_number_token3] = ACTIONS(4936), + [aux_sym__val_number_token4] = ACTIONS(4936), + [aux_sym__val_number_token5] = ACTIONS(4936), + [aux_sym__val_number_token6] = ACTIONS(4936), + [anon_sym_0b] = ACTIONS(4938), + [anon_sym_0o] = ACTIONS(4938), + [anon_sym_0x] = ACTIONS(4938), + [sym_val_date] = ACTIONS(4936), + [anon_sym_DQUOTE] = ACTIONS(4936), + [sym__str_single_quotes] = ACTIONS(4936), + [sym__str_back_ticks] = ACTIONS(4936), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4936), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4936), + [anon_sym_err_GT] = ACTIONS(4938), + [anon_sym_out_GT] = ACTIONS(4938), + [anon_sym_e_GT] = ACTIONS(4938), + [anon_sym_o_GT] = ACTIONS(4938), + [anon_sym_err_PLUSout_GT] = ACTIONS(4938), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4938), + [anon_sym_o_PLUSe_GT] = ACTIONS(4938), + [anon_sym_e_PLUSo_GT] = ACTIONS(4938), + [anon_sym_err_GT_GT] = ACTIONS(4936), + [anon_sym_out_GT_GT] = ACTIONS(4936), + [anon_sym_e_GT_GT] = ACTIONS(4936), + [anon_sym_o_GT_GT] = ACTIONS(4936), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4936), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4936), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4936), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4936), + [aux_sym_unquoted_token1] = ACTIONS(4938), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4936), }, - [1660] = { - [sym__expression] = STATE(5718), - [sym_expr_unary] = STATE(3905), - [sym__expr_unary_minus] = STATE(3850), - [sym_expr_binary] = STATE(3905), - [sym__expr_binary_expression] = STATE(3977), - [sym_expr_parenthesized] = STATE(3599), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(3905), - [sym_val_nothing] = STATE(3532), - [sym_val_bool] = STATE(3532), - [sym_val_variable] = STATE(3594), - [sym_val_number] = STATE(3532), - [sym__val_number_decimal] = STATE(3514), - [sym__val_number] = STATE(3492), - [sym_val_duration] = STATE(3532), - [sym_val_filesize] = STATE(3532), - [sym_val_binary] = STATE(3532), - [sym_val_string] = STATE(3532), - [sym__raw_str] = STATE(3584), - [sym__str_double_quotes] = STATE(3584), - [sym_val_interpolated] = STATE(3532), - [sym__inter_single_quotes] = STATE(3486), - [sym__inter_double_quotes] = STATE(3489), - [sym_val_list] = STATE(3532), - [sym_val_record] = STATE(3532), - [sym_val_table] = STATE(3532), - [sym_val_closure] = STATE(3532), - [sym__flag] = STATE(2148), - [sym_short_flag] = STATE(3624), - [sym_long_flag] = STATE(3624), - [sym_comment] = STATE(1660), - [anon_sym_LBRACK] = ACTIONS(3439), + [1655] = { + [sym_comment] = STATE(1655), + [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(4996), + [anon_sym_RPAREN] = ACTIONS(4996), [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_DASH_DASH] = ACTIONS(5000), - [anon_sym_DASH2] = ACTIONS(5002), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(5004), - [aux_sym_expr_unary_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5006), - [anon_sym_DOT_DOT_LT] = ACTIONS(5006), - [anon_sym_null] = ACTIONS(5008), - [anon_sym_true] = ACTIONS(5010), - [anon_sym_false] = ACTIONS(5010), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [aux_sym__val_number_token4] = ACTIONS(3467), - [aux_sym__val_number_token5] = ACTIONS(3467), - [aux_sym__val_number_token6] = ACTIONS(3467), - [anon_sym_0b] = ACTIONS(3471), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(5012), - [anon_sym_DQUOTE] = ACTIONS(3477), - [sym__str_single_quotes] = ACTIONS(3479), - [sym__str_back_ticks] = ACTIONS(3479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3487), + [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_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), + [anon_sym_EQ2] = ACTIONS(5000), + [aux_sym_unquoted_token1] = ACTIONS(4998), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4996), }, - [1661] = { - [sym_comment] = STATE(1661), - [sym__newline] = ACTIONS(5020), - [anon_sym_SEMI] = ACTIONS(5020), - [anon_sym_PIPE] = ACTIONS(5020), - [anon_sym_err_GT_PIPE] = ACTIONS(5020), - [anon_sym_out_GT_PIPE] = ACTIONS(5020), - [anon_sym_e_GT_PIPE] = ACTIONS(5020), - [anon_sym_o_GT_PIPE] = ACTIONS(5020), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5020), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5020), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5020), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5020), - [anon_sym_LBRACK] = ACTIONS(5020), - [anon_sym_LPAREN] = ACTIONS(5022), - [anon_sym_RPAREN] = ACTIONS(5020), - [anon_sym_DOLLAR] = ACTIONS(5022), - [anon_sym_DASH_DASH] = ACTIONS(5020), - [anon_sym_DASH2] = ACTIONS(5022), - [anon_sym_LBRACE] = ACTIONS(5020), - [anon_sym_RBRACE] = ACTIONS(5020), - [anon_sym_DOT_DOT] = ACTIONS(5022), - [anon_sym_LPAREN2] = ACTIONS(5020), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5020), - [anon_sym_DOT_DOT_LT] = ACTIONS(5020), - [anon_sym_null] = ACTIONS(5020), - [anon_sym_true] = ACTIONS(5020), - [anon_sym_false] = ACTIONS(5020), - [aux_sym__val_number_decimal_token1] = ACTIONS(5022), - [aux_sym__val_number_decimal_token2] = ACTIONS(5020), - [aux_sym__val_number_decimal_token3] = ACTIONS(5020), - [aux_sym__val_number_decimal_token4] = ACTIONS(5020), - [aux_sym__val_number_token1] = ACTIONS(5020), - [aux_sym__val_number_token2] = ACTIONS(5020), - [aux_sym__val_number_token3] = ACTIONS(5020), - [aux_sym__val_number_token4] = ACTIONS(5020), - [aux_sym__val_number_token5] = ACTIONS(5020), - [aux_sym__val_number_token6] = ACTIONS(5020), - [anon_sym_0b] = ACTIONS(5022), - [anon_sym_0o] = ACTIONS(5022), - [anon_sym_0x] = ACTIONS(5022), - [sym_val_date] = ACTIONS(5020), - [anon_sym_DQUOTE] = ACTIONS(5020), - [sym__str_single_quotes] = ACTIONS(5020), - [sym__str_back_ticks] = ACTIONS(5020), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5020), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5020), - [anon_sym_err_GT] = ACTIONS(5022), - [anon_sym_out_GT] = ACTIONS(5022), - [anon_sym_e_GT] = ACTIONS(5022), - [anon_sym_o_GT] = ACTIONS(5022), - [anon_sym_err_PLUSout_GT] = ACTIONS(5022), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5022), - [anon_sym_o_PLUSe_GT] = ACTIONS(5022), - [anon_sym_e_PLUSo_GT] = ACTIONS(5022), - [anon_sym_err_GT_GT] = ACTIONS(5020), - [anon_sym_out_GT_GT] = ACTIONS(5020), - [anon_sym_e_GT_GT] = ACTIONS(5020), - [anon_sym_o_GT_GT] = ACTIONS(5020), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5020), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5020), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5020), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5020), - [aux_sym_unquoted_token1] = ACTIONS(5022), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(5020), + [1656] = { + [sym_comment] = STATE(1656), + [ts_builtin_sym_end] = ACTIONS(2270), + [sym__newline] = ACTIONS(2270), + [anon_sym_SEMI] = ACTIONS(2270), + [anon_sym_PIPE] = ACTIONS(2270), + [anon_sym_err_GT_PIPE] = ACTIONS(2270), + [anon_sym_out_GT_PIPE] = ACTIONS(2270), + [anon_sym_e_GT_PIPE] = ACTIONS(2270), + [anon_sym_o_GT_PIPE] = ACTIONS(2270), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2270), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2270), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2270), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2270), + [anon_sym_LBRACK] = ACTIONS(2270), + [anon_sym_LPAREN] = ACTIONS(2268), + [anon_sym_DOLLAR] = ACTIONS(2268), + [anon_sym_DASH_DASH] = ACTIONS(2268), + [anon_sym_DASH2] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2270), + [anon_sym_DOT_DOT] = ACTIONS(2268), + [anon_sym_LPAREN2] = ACTIONS(2270), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2268), + [anon_sym_DOT_DOT_LT] = ACTIONS(2268), + [anon_sym_null] = ACTIONS(2268), + [anon_sym_true] = ACTIONS(2268), + [anon_sym_false] = ACTIONS(2268), + [aux_sym__val_number_decimal_token1] = ACTIONS(2268), + [aux_sym__val_number_decimal_token2] = ACTIONS(2268), + [aux_sym__val_number_decimal_token3] = ACTIONS(2268), + [aux_sym__val_number_decimal_token4] = ACTIONS(2268), + [aux_sym__val_number_token1] = ACTIONS(2268), + [aux_sym__val_number_token2] = ACTIONS(2268), + [aux_sym__val_number_token3] = ACTIONS(2268), + [aux_sym__val_number_token4] = ACTIONS(2268), + [aux_sym__val_number_token5] = ACTIONS(2268), + [aux_sym__val_number_token6] = ACTIONS(2268), + [anon_sym_0b] = ACTIONS(2268), + [anon_sym_0o] = ACTIONS(2268), + [anon_sym_0x] = ACTIONS(2268), + [sym_val_date] = ACTIONS(2268), + [anon_sym_DQUOTE] = ACTIONS(2270), + [sym__str_single_quotes] = ACTIONS(2270), + [sym__str_back_ticks] = ACTIONS(2270), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2270), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2270), + [anon_sym_err_GT] = ACTIONS(2268), + [anon_sym_out_GT] = ACTIONS(2268), + [anon_sym_e_GT] = ACTIONS(2268), + [anon_sym_o_GT] = ACTIONS(2268), + [anon_sym_err_PLUSout_GT] = ACTIONS(2268), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2268), + [anon_sym_o_PLUSe_GT] = ACTIONS(2268), + [anon_sym_e_PLUSo_GT] = ACTIONS(2268), + [anon_sym_err_GT_GT] = ACTIONS(2268), + [anon_sym_out_GT_GT] = ACTIONS(2268), + [anon_sym_e_GT_GT] = ACTIONS(2268), + [anon_sym_o_GT_GT] = ACTIONS(2268), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2268), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2268), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2268), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2268), + [aux_sym_unquoted_token1] = ACTIONS(2268), + [aux_sym_unquoted_token4] = ACTIONS(2268), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2270), }, - [1662] = { - [sym_comment] = STATE(1662), - [sym__newline] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_err_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_GT_PIPE] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_RPAREN] = ACTIONS(1785), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT] = ACTIONS(1785), - [aux_sym__immediate_decimal_token2] = ACTIONS(5024), - [anon_sym_null] = ACTIONS(1785), - [anon_sym_true] = ACTIONS(1785), - [anon_sym_false] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_0b] = ACTIONS(1783), - [anon_sym_0o] = ACTIONS(1783), - [anon_sym_0x] = ACTIONS(1783), - [sym_val_date] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_err_GT] = ACTIONS(1783), - [anon_sym_out_GT] = ACTIONS(1783), - [anon_sym_e_GT] = ACTIONS(1783), - [anon_sym_o_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT] = ACTIONS(1783), - [anon_sym_err_GT_GT] = ACTIONS(1785), - [anon_sym_out_GT_GT] = ACTIONS(1785), - [anon_sym_e_GT_GT] = ACTIONS(1785), - [anon_sym_o_GT_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), - [aux_sym_unquoted_token1] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1785), + [1657] = { + [sym_comment] = STATE(1657), + [ts_builtin_sym_end] = ACTIONS(2256), + [sym__newline] = ACTIONS(2256), + [anon_sym_SEMI] = ACTIONS(2256), + [anon_sym_PIPE] = ACTIONS(2256), + [anon_sym_err_GT_PIPE] = ACTIONS(2256), + [anon_sym_out_GT_PIPE] = ACTIONS(2256), + [anon_sym_e_GT_PIPE] = ACTIONS(2256), + [anon_sym_o_GT_PIPE] = ACTIONS(2256), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2256), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2256), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2256), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2256), + [anon_sym_LBRACK] = ACTIONS(2256), + [anon_sym_LPAREN] = ACTIONS(2254), + [anon_sym_DOLLAR] = ACTIONS(2254), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_DASH2] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(2256), + [anon_sym_DOT_DOT] = ACTIONS(2254), + [anon_sym_LPAREN2] = ACTIONS(2248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2254), + [anon_sym_DOT_DOT_LT] = ACTIONS(2254), + [anon_sym_null] = ACTIONS(2254), + [anon_sym_true] = ACTIONS(2254), + [anon_sym_false] = ACTIONS(2254), + [aux_sym__val_number_decimal_token1] = ACTIONS(2254), + [aux_sym__val_number_decimal_token2] = ACTIONS(2254), + [aux_sym__val_number_decimal_token3] = ACTIONS(2254), + [aux_sym__val_number_decimal_token4] = ACTIONS(2254), + [aux_sym__val_number_token1] = ACTIONS(2254), + [aux_sym__val_number_token2] = ACTIONS(2254), + [aux_sym__val_number_token3] = ACTIONS(2254), + [aux_sym__val_number_token4] = ACTIONS(2254), + [aux_sym__val_number_token5] = ACTIONS(2254), + [aux_sym__val_number_token6] = ACTIONS(2254), + [anon_sym_0b] = ACTIONS(2254), + [anon_sym_0o] = ACTIONS(2254), + [anon_sym_0x] = ACTIONS(2254), + [sym_val_date] = ACTIONS(2254), + [anon_sym_DQUOTE] = ACTIONS(2256), + [sym__str_single_quotes] = ACTIONS(2256), + [sym__str_back_ticks] = ACTIONS(2256), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2256), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2256), + [anon_sym_err_GT] = ACTIONS(2254), + [anon_sym_out_GT] = ACTIONS(2254), + [anon_sym_e_GT] = ACTIONS(2254), + [anon_sym_o_GT] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT] = ACTIONS(2254), + [anon_sym_err_GT_GT] = ACTIONS(2254), + [anon_sym_out_GT_GT] = ACTIONS(2254), + [anon_sym_e_GT_GT] = ACTIONS(2254), + [anon_sym_o_GT_GT] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), + [aux_sym_unquoted_token1] = ACTIONS(2254), + [aux_sym_unquoted_token4] = ACTIONS(2252), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2256), }, - [1663] = { - [sym_comment] = STATE(1663), - [ts_builtin_sym_end] = ACTIONS(1757), - [sym__newline] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_err_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_GT_PIPE] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT] = ACTIONS(1757), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_0b] = ACTIONS(1755), - [anon_sym_0o] = ACTIONS(1755), - [anon_sym_0x] = ACTIONS(1755), - [sym_val_date] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), - [anon_sym_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [aux_sym_unquoted_token2] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1757), + [1658] = { + [sym_cell_path] = STATE(2094), + [sym_path] = STATE(1882), + [sym_comment] = STATE(1658), + [aux_sym_cell_path_repeat1] = STATE(1690), + [sym__newline] = ACTIONS(1851), + [anon_sym_SEMI] = ACTIONS(1851), + [anon_sym_PIPE] = ACTIONS(1851), + [anon_sym_err_GT_PIPE] = ACTIONS(1851), + [anon_sym_out_GT_PIPE] = ACTIONS(1851), + [anon_sym_e_GT_PIPE] = ACTIONS(1851), + [anon_sym_o_GT_PIPE] = ACTIONS(1851), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1851), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1851), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1851), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1851), + [anon_sym_RPAREN] = ACTIONS(1851), + [anon_sym_GT2] = ACTIONS(1847), + [anon_sym_DASH2] = ACTIONS(1851), + [anon_sym_in2] = ACTIONS(1851), + [anon_sym_LBRACE] = ACTIONS(1851), + [anon_sym_RBRACE] = ACTIONS(1851), + [anon_sym_EQ_GT] = ACTIONS(1851), + [anon_sym_STAR2] = ACTIONS(1847), + [anon_sym_and2] = ACTIONS(1851), + [anon_sym_xor2] = ACTIONS(1851), + [anon_sym_or2] = ACTIONS(1851), + [anon_sym_not_DASHin2] = ACTIONS(1851), + [anon_sym_starts_DASHwith2] = ACTIONS(1851), + [anon_sym_ends_DASHwith2] = ACTIONS(1851), + [anon_sym_EQ_EQ2] = ACTIONS(1851), + [anon_sym_BANG_EQ2] = ACTIONS(1851), + [anon_sym_LT2] = ACTIONS(1847), + [anon_sym_LT_EQ2] = ACTIONS(1851), + [anon_sym_GT_EQ2] = ACTIONS(1851), + [anon_sym_EQ_TILDE2] = ACTIONS(1851), + [anon_sym_BANG_TILDE2] = ACTIONS(1851), + [anon_sym_STAR_STAR2] = ACTIONS(1851), + [anon_sym_PLUS_PLUS2] = ACTIONS(1851), + [anon_sym_SLASH2] = ACTIONS(1847), + [anon_sym_mod2] = ACTIONS(1851), + [anon_sym_SLASH_SLASH2] = ACTIONS(1851), + [anon_sym_PLUS2] = ACTIONS(1847), + [anon_sym_bit_DASHshl2] = ACTIONS(1851), + [anon_sym_bit_DASHshr2] = ACTIONS(1851), + [anon_sym_bit_DASHand2] = ACTIONS(1851), + [anon_sym_bit_DASHxor2] = ACTIONS(1851), + [anon_sym_bit_DASHor2] = ACTIONS(1851), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_err_GT] = ACTIONS(1847), + [anon_sym_out_GT] = ACTIONS(1847), + [anon_sym_e_GT] = ACTIONS(1847), + [anon_sym_o_GT] = ACTIONS(1847), + [anon_sym_err_PLUSout_GT] = ACTIONS(1847), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1847), + [anon_sym_o_PLUSe_GT] = ACTIONS(1847), + [anon_sym_e_PLUSo_GT] = ACTIONS(1847), + [anon_sym_err_GT_GT] = ACTIONS(1851), + [anon_sym_out_GT_GT] = ACTIONS(1851), + [anon_sym_e_GT_GT] = ACTIONS(1851), + [anon_sym_o_GT_GT] = ACTIONS(1851), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1851), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1851), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1851), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1851), + [anon_sym_POUND] = ACTIONS(247), }, - [1664] = { - [sym_path] = STATE(1886), - [sym_comment] = STATE(1664), - [aux_sym_cell_path_repeat1] = STATE(1668), + [1659] = { + [sym_path] = STATE(1947), + [sym_comment] = STATE(1659), + [aux_sym_cell_path_repeat1] = STATE(1664), [sym__newline] = ACTIONS(967), [anon_sym_SEMI] = ACTIONS(969), [anon_sym_PIPE] = ACTIONS(969), @@ -227338,7 +227306,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(969), [anon_sym_bit_DASHor2] = ACTIONS(969), [anon_sym_DOT_DOT2] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(4991), + [anon_sym_DOT] = ACTIONS(4911), [anon_sym_DOT_DOT_EQ2] = ACTIONS(969), [anon_sym_DOT_DOT_LT2] = ACTIONS(969), [aux_sym_record_entry_token1] = ACTIONS(969), @@ -227360,211 +227328,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), [anon_sym_POUND] = ACTIONS(247), }, - [1665] = { - [sym__expression] = STATE(5734), - [sym_expr_unary] = STATE(3905), - [sym__expr_unary_minus] = STATE(3850), - [sym_expr_binary] = STATE(3905), - [sym__expr_binary_expression] = STATE(3977), - [sym_expr_parenthesized] = STATE(3599), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(3905), - [sym_val_nothing] = STATE(3532), - [sym_val_bool] = STATE(3532), - [sym_val_variable] = STATE(3594), - [sym_val_number] = STATE(3532), - [sym__val_number_decimal] = STATE(3514), - [sym__val_number] = STATE(3492), - [sym_val_duration] = STATE(3532), - [sym_val_filesize] = STATE(3532), - [sym_val_binary] = STATE(3532), - [sym_val_string] = STATE(3532), - [sym__raw_str] = STATE(3584), - [sym__str_double_quotes] = STATE(3584), - [sym_val_interpolated] = STATE(3532), - [sym__inter_single_quotes] = STATE(3486), - [sym__inter_double_quotes] = STATE(3489), - [sym_val_list] = STATE(3532), - [sym_val_record] = STATE(3532), - [sym_val_table] = STATE(3532), - [sym_val_closure] = STATE(3532), - [sym__flag] = STATE(2149), - [sym_short_flag] = STATE(3624), - [sym_long_flag] = STATE(3624), - [sym_comment] = STATE(1665), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(4996), - [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_DASH_DASH] = ACTIONS(5000), - [anon_sym_DASH2] = ACTIONS(5002), - [anon_sym_LBRACE] = ACTIONS(3447), + [1660] = { + [sym_comment] = STATE(1660), + [ts_builtin_sym_end] = ACTIONS(1575), + [sym__newline] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_err_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_GT_PIPE] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1575), + [anon_sym_GT2] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1575), + [anon_sym_in2] = ACTIONS(1575), + [anon_sym_STAR2] = ACTIONS(1573), + [anon_sym_and2] = ACTIONS(1575), + [anon_sym_xor2] = ACTIONS(1575), + [anon_sym_or2] = ACTIONS(1575), + [anon_sym_not_DASHin2] = ACTIONS(1575), + [anon_sym_starts_DASHwith2] = ACTIONS(1575), + [anon_sym_ends_DASHwith2] = ACTIONS(1575), + [anon_sym_EQ_EQ2] = ACTIONS(1575), + [anon_sym_BANG_EQ2] = ACTIONS(1575), + [anon_sym_LT2] = ACTIONS(1573), + [anon_sym_LT_EQ2] = ACTIONS(1575), + [anon_sym_GT_EQ2] = ACTIONS(1575), + [anon_sym_EQ_TILDE2] = ACTIONS(1575), + [anon_sym_BANG_TILDE2] = ACTIONS(1575), + [anon_sym_LPAREN2] = ACTIONS(1575), + [anon_sym_STAR_STAR2] = ACTIONS(1575), + [anon_sym_PLUS_PLUS2] = ACTIONS(1575), + [anon_sym_SLASH2] = ACTIONS(1573), + [anon_sym_mod2] = ACTIONS(1575), + [anon_sym_SLASH_SLASH2] = ACTIONS(1575), + [anon_sym_PLUS2] = ACTIONS(1573), + [anon_sym_bit_DASHshl2] = ACTIONS(1575), + [anon_sym_bit_DASHshr2] = ACTIONS(1575), + [anon_sym_bit_DASHand2] = ACTIONS(1575), + [anon_sym_bit_DASHxor2] = ACTIONS(1575), + [anon_sym_bit_DASHor2] = ACTIONS(1575), + [anon_sym_DOT_DOT2] = ACTIONS(1573), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1575), + [sym_filesize_unit] = ACTIONS(1573), + [sym_duration_unit] = ACTIONS(1575), + [anon_sym_err_GT] = ACTIONS(1573), + [anon_sym_out_GT] = ACTIONS(1573), + [anon_sym_e_GT] = ACTIONS(1573), + [anon_sym_o_GT] = ACTIONS(1573), + [anon_sym_err_PLUSout_GT] = ACTIONS(1573), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1573), + [anon_sym_o_PLUSe_GT] = ACTIONS(1573), + [anon_sym_e_PLUSo_GT] = ACTIONS(1573), + [anon_sym_err_GT_GT] = ACTIONS(1575), + [anon_sym_out_GT_GT] = ACTIONS(1575), + [anon_sym_e_GT_GT] = ACTIONS(1575), + [anon_sym_o_GT_GT] = ACTIONS(1575), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1575), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1575), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1575), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1575), + [aux_sym_unquoted_token2] = ACTIONS(1573), + [anon_sym_POUND] = ACTIONS(247), + }, + [1661] = { + [sym__expr_parenthesized_immediate] = STATE(7675), + [sym_comment] = STATE(1661), + [sym__newline] = ACTIONS(5002), + [anon_sym_SEMI] = ACTIONS(5002), + [anon_sym_PIPE] = ACTIONS(5002), + [anon_sym_err_GT_PIPE] = ACTIONS(5002), + [anon_sym_out_GT_PIPE] = ACTIONS(5002), + [anon_sym_e_GT_PIPE] = ACTIONS(5002), + [anon_sym_o_GT_PIPE] = ACTIONS(5002), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5002), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5002), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5002), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_LPAREN] = ACTIONS(5004), + [anon_sym_RPAREN] = ACTIONS(5002), + [anon_sym_DOLLAR] = ACTIONS(5004), + [anon_sym_DASH_DASH] = ACTIONS(5002), + [anon_sym_DASH2] = ACTIONS(5004), + [anon_sym_LBRACE] = ACTIONS(5002), [anon_sym_DOT_DOT] = ACTIONS(5004), - [aux_sym_expr_unary_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5006), - [anon_sym_DOT_DOT_LT] = ACTIONS(5006), - [anon_sym_null] = ACTIONS(5008), - [anon_sym_true] = ACTIONS(5010), - [anon_sym_false] = ACTIONS(5010), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [aux_sym__val_number_token4] = ACTIONS(3467), - [aux_sym__val_number_token5] = ACTIONS(3467), - [aux_sym__val_number_token6] = ACTIONS(3467), - [anon_sym_0b] = ACTIONS(3471), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(5012), - [anon_sym_DQUOTE] = ACTIONS(3477), - [sym__str_single_quotes] = ACTIONS(3479), - [sym__str_back_ticks] = ACTIONS(3479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3487), + [anon_sym_LPAREN2] = ACTIONS(4543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5002), + [anon_sym_DOT_DOT_LT] = ACTIONS(5002), + [anon_sym_null] = ACTIONS(5002), + [anon_sym_true] = ACTIONS(5002), + [anon_sym_false] = ACTIONS(5002), + [aux_sym__val_number_decimal_token1] = ACTIONS(5004), + [aux_sym__val_number_decimal_token2] = ACTIONS(5002), + [aux_sym__val_number_decimal_token3] = ACTIONS(5002), + [aux_sym__val_number_decimal_token4] = ACTIONS(5002), + [aux_sym__val_number_token1] = ACTIONS(5002), + [aux_sym__val_number_token2] = ACTIONS(5002), + [aux_sym__val_number_token3] = ACTIONS(5002), + [aux_sym__val_number_token4] = ACTIONS(5002), + [aux_sym__val_number_token5] = ACTIONS(5002), + [aux_sym__val_number_token6] = ACTIONS(5002), + [anon_sym_0b] = ACTIONS(5004), + [anon_sym_0o] = ACTIONS(5004), + [anon_sym_0x] = ACTIONS(5004), + [sym_val_date] = ACTIONS(5002), + [anon_sym_DQUOTE] = ACTIONS(5002), + [sym__str_single_quotes] = ACTIONS(5002), + [sym__str_back_ticks] = ACTIONS(5002), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5002), + [anon_sym_err_GT] = ACTIONS(5004), + [anon_sym_out_GT] = ACTIONS(5004), + [anon_sym_e_GT] = ACTIONS(5004), + [anon_sym_o_GT] = ACTIONS(5004), + [anon_sym_err_PLUSout_GT] = ACTIONS(5004), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5004), + [anon_sym_o_PLUSe_GT] = ACTIONS(5004), + [anon_sym_e_PLUSo_GT] = ACTIONS(5004), + [anon_sym_err_GT_GT] = ACTIONS(5002), + [anon_sym_out_GT_GT] = ACTIONS(5002), + [anon_sym_e_GT_GT] = ACTIONS(5002), + [anon_sym_o_GT_GT] = ACTIONS(5002), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5002), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5002), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5002), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5002), + [aux_sym_unquoted_token1] = ACTIONS(5004), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(5002), }, - [1666] = { - [sym_comment] = STATE(1666), - [ts_builtin_sym_end] = ACTIONS(2189), - [sym__newline] = ACTIONS(2189), - [anon_sym_SEMI] = ACTIONS(2189), - [anon_sym_PIPE] = ACTIONS(2189), - [anon_sym_err_GT_PIPE] = ACTIONS(2189), - [anon_sym_out_GT_PIPE] = ACTIONS(2189), - [anon_sym_e_GT_PIPE] = ACTIONS(2189), - [anon_sym_o_GT_PIPE] = ACTIONS(2189), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2189), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2189), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2189), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2189), - [anon_sym_LBRACK] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2187), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_DASH_DASH] = ACTIONS(2189), - [anon_sym_DASH2] = ACTIONS(2187), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_DOT_DOT] = ACTIONS(2187), - [anon_sym_LPAREN2] = ACTIONS(1880), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2189), - [anon_sym_DOT_DOT_LT] = ACTIONS(2189), - [anon_sym_null] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [aux_sym__val_number_decimal_token1] = ACTIONS(2187), - [aux_sym__val_number_decimal_token2] = ACTIONS(2189), - [aux_sym__val_number_decimal_token3] = ACTIONS(2189), - [aux_sym__val_number_decimal_token4] = ACTIONS(2189), - [aux_sym__val_number_token1] = ACTIONS(2189), - [aux_sym__val_number_token2] = ACTIONS(2189), - [aux_sym__val_number_token3] = ACTIONS(2189), - [aux_sym__val_number_token4] = ACTIONS(2189), - [aux_sym__val_number_token5] = ACTIONS(2189), - [aux_sym__val_number_token6] = ACTIONS(2189), - [anon_sym_0b] = ACTIONS(2187), - [anon_sym_0o] = ACTIONS(2187), - [anon_sym_0x] = ACTIONS(2187), - [sym_val_date] = ACTIONS(2189), - [anon_sym_DQUOTE] = ACTIONS(2189), - [sym__str_single_quotes] = ACTIONS(2189), - [sym__str_back_ticks] = ACTIONS(2189), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2189), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2189), - [anon_sym_err_GT] = ACTIONS(2187), - [anon_sym_out_GT] = ACTIONS(2187), - [anon_sym_e_GT] = ACTIONS(2187), - [anon_sym_o_GT] = ACTIONS(2187), - [anon_sym_err_PLUSout_GT] = ACTIONS(2187), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2187), - [anon_sym_o_PLUSe_GT] = ACTIONS(2187), - [anon_sym_e_PLUSo_GT] = ACTIONS(2187), - [anon_sym_err_GT_GT] = ACTIONS(2189), - [anon_sym_out_GT_GT] = ACTIONS(2189), - [anon_sym_e_GT_GT] = ACTIONS(2189), - [anon_sym_o_GT_GT] = ACTIONS(2189), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2189), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2189), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2189), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2189), - [aux_sym_unquoted_token1] = ACTIONS(2187), - [aux_sym_unquoted_token2] = ACTIONS(1888), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2189), + [1662] = { + [sym_cell_path] = STATE(1722), + [sym_path] = STATE(1882), + [sym_comment] = STATE(1662), + [aux_sym_cell_path_repeat1] = STATE(1690), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_RPAREN] = ACTIONS(1737), + [anon_sym_GT2] = ACTIONS(1733), + [anon_sym_DASH2] = ACTIONS(1737), + [anon_sym_in2] = ACTIONS(1737), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_EQ_GT] = ACTIONS(1737), + [anon_sym_STAR2] = ACTIONS(1733), + [anon_sym_and2] = ACTIONS(1737), + [anon_sym_xor2] = ACTIONS(1737), + [anon_sym_or2] = ACTIONS(1737), + [anon_sym_not_DASHin2] = ACTIONS(1737), + [anon_sym_starts_DASHwith2] = ACTIONS(1737), + [anon_sym_ends_DASHwith2] = ACTIONS(1737), + [anon_sym_EQ_EQ2] = ACTIONS(1737), + [anon_sym_BANG_EQ2] = ACTIONS(1737), + [anon_sym_LT2] = ACTIONS(1733), + [anon_sym_LT_EQ2] = ACTIONS(1737), + [anon_sym_GT_EQ2] = ACTIONS(1737), + [anon_sym_EQ_TILDE2] = ACTIONS(1737), + [anon_sym_BANG_TILDE2] = ACTIONS(1737), + [anon_sym_STAR_STAR2] = ACTIONS(1737), + [anon_sym_PLUS_PLUS2] = ACTIONS(1737), + [anon_sym_SLASH2] = ACTIONS(1733), + [anon_sym_mod2] = ACTIONS(1737), + [anon_sym_SLASH_SLASH2] = ACTIONS(1737), + [anon_sym_PLUS2] = ACTIONS(1733), + [anon_sym_bit_DASHshl2] = ACTIONS(1737), + [anon_sym_bit_DASHshr2] = ACTIONS(1737), + [anon_sym_bit_DASHand2] = ACTIONS(1737), + [anon_sym_bit_DASHxor2] = ACTIONS(1737), + [anon_sym_bit_DASHor2] = ACTIONS(1737), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_err_GT] = ACTIONS(1733), + [anon_sym_out_GT] = ACTIONS(1733), + [anon_sym_e_GT] = ACTIONS(1733), + [anon_sym_o_GT] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT] = ACTIONS(1733), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [anon_sym_POUND] = ACTIONS(247), }, - [1667] = { - [sym_comment] = STATE(1667), - [sym__newline] = ACTIONS(2224), - [anon_sym_SEMI] = ACTIONS(2224), - [anon_sym_PIPE] = ACTIONS(2224), - [anon_sym_err_GT_PIPE] = ACTIONS(2224), - [anon_sym_out_GT_PIPE] = ACTIONS(2224), - [anon_sym_e_GT_PIPE] = ACTIONS(2224), - [anon_sym_o_GT_PIPE] = ACTIONS(2224), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2224), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2224), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2224), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2224), - [anon_sym_LPAREN] = ACTIONS(2224), - [anon_sym_RPAREN] = ACTIONS(2224), - [anon_sym_DOLLAR] = ACTIONS(2222), - [anon_sym_DASH_DASH] = ACTIONS(2222), - [anon_sym_DASH2] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2224), - [anon_sym_RBRACE] = ACTIONS(2224), - [anon_sym_DOT_DOT] = ACTIONS(2222), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2222), - [anon_sym_DOT_DOT_LT] = ACTIONS(2222), - [anon_sym_null] = ACTIONS(2222), - [anon_sym_true] = ACTIONS(2222), - [anon_sym_false] = ACTIONS(2222), - [aux_sym__val_number_decimal_token1] = ACTIONS(2222), - [aux_sym__val_number_decimal_token2] = ACTIONS(2222), - [aux_sym__val_number_decimal_token3] = ACTIONS(2222), - [aux_sym__val_number_decimal_token4] = ACTIONS(2222), - [aux_sym__val_number_token1] = ACTIONS(2222), - [aux_sym__val_number_token2] = ACTIONS(2222), - [aux_sym__val_number_token3] = ACTIONS(2222), - [aux_sym__val_number_token4] = ACTIONS(2222), - [aux_sym__val_number_token5] = ACTIONS(2222), - [aux_sym__val_number_token6] = ACTIONS(2222), - [anon_sym_0b] = ACTIONS(2222), - [anon_sym_0o] = ACTIONS(2222), - [anon_sym_0x] = ACTIONS(2222), - [sym_val_date] = ACTIONS(2222), - [anon_sym_DQUOTE] = ACTIONS(2224), - [sym__str_single_quotes] = ACTIONS(2224), - [sym__str_back_ticks] = ACTIONS(2224), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2224), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2224), - [anon_sym_err_GT] = ACTIONS(2222), - [anon_sym_out_GT] = ACTIONS(2222), - [anon_sym_e_GT] = ACTIONS(2222), - [anon_sym_o_GT] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT] = ACTIONS(2222), - [anon_sym_err_GT_GT] = ACTIONS(2222), - [anon_sym_out_GT_GT] = ACTIONS(2222), - [anon_sym_e_GT_GT] = ACTIONS(2222), - [anon_sym_o_GT_GT] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2222), - [aux_sym_unquoted_token1] = ACTIONS(2222), - [aux_sym_unquoted_token4] = ACTIONS(2220), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2224), + [1663] = { + [sym_comment] = STATE(1663), + [ts_builtin_sym_end] = ACTIONS(1767), + [sym__newline] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_err_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_GT_PIPE] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_DOLLAR] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_DOT_DOT] = ACTIONS(1765), + [anon_sym_LPAREN2] = ACTIONS(1767), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), + [anon_sym_DOT_DOT_LT] = ACTIONS(1767), + [anon_sym_null] = ACTIONS(1767), + [anon_sym_true] = ACTIONS(1767), + [anon_sym_false] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1767), + [aux_sym__val_number_token5] = ACTIONS(1767), + [aux_sym__val_number_token6] = ACTIONS(1767), + [anon_sym_0b] = ACTIONS(1765), + [anon_sym_0o] = ACTIONS(1765), + [anon_sym_0x] = ACTIONS(1765), + [sym_val_date] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), + [anon_sym_err_GT] = ACTIONS(1765), + [anon_sym_out_GT] = ACTIONS(1765), + [anon_sym_e_GT] = ACTIONS(1765), + [anon_sym_o_GT] = ACTIONS(1765), + [anon_sym_err_PLUSout_GT] = ACTIONS(1765), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), + [anon_sym_o_PLUSe_GT] = ACTIONS(1765), + [anon_sym_e_PLUSo_GT] = ACTIONS(1765), + [anon_sym_err_GT_GT] = ACTIONS(1767), + [anon_sym_out_GT_GT] = ACTIONS(1767), + [anon_sym_e_GT_GT] = ACTIONS(1767), + [anon_sym_o_GT_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), + [aux_sym_unquoted_token1] = ACTIONS(1765), + [aux_sym_unquoted_token2] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1767), }, - [1668] = { - [sym_path] = STATE(1886), - [sym_comment] = STATE(1668), - [aux_sym_cell_path_repeat1] = STATE(1668), + [1664] = { + [sym_path] = STATE(1947), + [sym_comment] = STATE(1664), + [aux_sym_cell_path_repeat1] = STATE(1664), [sym__newline] = ACTIONS(971), [anon_sym_SEMI] = ACTIONS(973), [anon_sym_PIPE] = ACTIONS(973), @@ -227606,7 +227641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(973), [anon_sym_bit_DASHor2] = ACTIONS(973), [anon_sym_DOT_DOT2] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(5026), + [anon_sym_DOT] = ACTIONS(5006), [anon_sym_DOT_DOT_EQ2] = ACTIONS(973), [anon_sym_DOT_DOT_LT2] = ACTIONS(973), [aux_sym_record_entry_token1] = ACTIONS(973), @@ -227628,879 +227663,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), [anon_sym_POUND] = ACTIONS(247), }, - [1669] = { - [sym__expr_parenthesized_immediate] = STATE(7505), - [sym_comment] = STATE(1669), - [sym__newline] = ACTIONS(5029), - [anon_sym_SEMI] = ACTIONS(5029), - [anon_sym_PIPE] = ACTIONS(5029), - [anon_sym_err_GT_PIPE] = ACTIONS(5029), - [anon_sym_out_GT_PIPE] = ACTIONS(5029), - [anon_sym_e_GT_PIPE] = ACTIONS(5029), - [anon_sym_o_GT_PIPE] = ACTIONS(5029), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5029), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5029), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5029), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5029), - [anon_sym_LBRACK] = ACTIONS(5029), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_RPAREN] = ACTIONS(5029), - [anon_sym_DOLLAR] = ACTIONS(5031), - [anon_sym_DASH_DASH] = ACTIONS(5029), - [anon_sym_DASH2] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(5029), - [anon_sym_DOT_DOT] = ACTIONS(5031), - [anon_sym_LPAREN2] = ACTIONS(4249), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5029), - [anon_sym_DOT_DOT_LT] = ACTIONS(5029), - [anon_sym_null] = ACTIONS(5029), - [anon_sym_true] = ACTIONS(5029), - [anon_sym_false] = ACTIONS(5029), - [aux_sym__val_number_decimal_token1] = ACTIONS(5031), - [aux_sym__val_number_decimal_token2] = ACTIONS(5029), - [aux_sym__val_number_decimal_token3] = ACTIONS(5029), - [aux_sym__val_number_decimal_token4] = ACTIONS(5029), - [aux_sym__val_number_token1] = ACTIONS(5029), - [aux_sym__val_number_token2] = ACTIONS(5029), - [aux_sym__val_number_token3] = ACTIONS(5029), - [aux_sym__val_number_token4] = ACTIONS(5029), - [aux_sym__val_number_token5] = ACTIONS(5029), - [aux_sym__val_number_token6] = ACTIONS(5029), - [anon_sym_0b] = ACTIONS(5031), - [anon_sym_0o] = ACTIONS(5031), - [anon_sym_0x] = ACTIONS(5031), - [sym_val_date] = ACTIONS(5029), - [anon_sym_DQUOTE] = ACTIONS(5029), - [sym__str_single_quotes] = ACTIONS(5029), - [sym__str_back_ticks] = ACTIONS(5029), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5029), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5029), - [anon_sym_err_GT] = ACTIONS(5031), - [anon_sym_out_GT] = ACTIONS(5031), - [anon_sym_e_GT] = ACTIONS(5031), - [anon_sym_o_GT] = ACTIONS(5031), - [anon_sym_err_PLUSout_GT] = ACTIONS(5031), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5031), - [anon_sym_o_PLUSe_GT] = ACTIONS(5031), - [anon_sym_e_PLUSo_GT] = ACTIONS(5031), - [anon_sym_err_GT_GT] = ACTIONS(5029), - [anon_sym_out_GT_GT] = ACTIONS(5029), - [anon_sym_e_GT_GT] = ACTIONS(5029), - [anon_sym_o_GT_GT] = ACTIONS(5029), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5029), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5029), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5029), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5029), - [aux_sym_unquoted_token1] = ACTIONS(5031), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(5029), - }, - [1670] = { - [sym_comment] = STATE(1670), - [sym__newline] = ACTIONS(1032), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_err_GT_PIPE] = ACTIONS(1032), - [anon_sym_out_GT_PIPE] = ACTIONS(1032), - [anon_sym_e_GT_PIPE] = ACTIONS(1032), - [anon_sym_o_GT_PIPE] = ACTIONS(1032), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1032), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1032), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1032), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1032), - [anon_sym_LBRACK] = ACTIONS(1032), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_RPAREN] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH_DASH] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(1030), - [anon_sym_LBRACE] = ACTIONS(1032), - [anon_sym_RBRACE] = ACTIONS(1032), - [anon_sym_DOT_DOT] = ACTIONS(1030), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1030), - [anon_sym_DOT_DOT_LT] = ACTIONS(1030), - [anon_sym_null] = ACTIONS(1030), - [anon_sym_true] = ACTIONS(1030), - [anon_sym_false] = ACTIONS(1030), - [aux_sym__val_number_decimal_token1] = ACTIONS(1030), - [aux_sym__val_number_decimal_token2] = ACTIONS(1030), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), - [aux_sym__val_number_token1] = ACTIONS(1030), - [aux_sym__val_number_token2] = ACTIONS(1030), - [aux_sym__val_number_token3] = ACTIONS(1030), - [aux_sym__val_number_token4] = ACTIONS(1030), - [aux_sym__val_number_token5] = ACTIONS(1030), - [aux_sym__val_number_token6] = ACTIONS(1030), - [anon_sym_0b] = ACTIONS(1030), - [anon_sym_0o] = ACTIONS(1030), - [anon_sym_0x] = ACTIONS(1030), - [sym_val_date] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1032), - [sym__str_single_quotes] = ACTIONS(1032), - [sym__str_back_ticks] = ACTIONS(1032), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1032), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1032), - [anon_sym_err_GT] = ACTIONS(1030), - [anon_sym_out_GT] = ACTIONS(1030), - [anon_sym_e_GT] = ACTIONS(1030), - [anon_sym_o_GT] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT] = ACTIONS(1030), - [anon_sym_err_GT_GT] = ACTIONS(1030), - [anon_sym_out_GT_GT] = ACTIONS(1030), - [anon_sym_e_GT_GT] = ACTIONS(1030), - [anon_sym_o_GT_GT] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), - [aux_sym_unquoted_token1] = ACTIONS(1030), - [aux_sym_unquoted_token4] = ACTIONS(2204), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1032), - }, - [1671] = { - [sym_comment] = STATE(1671), - [ts_builtin_sym_end] = ACTIONS(2238), - [sym__newline] = ACTIONS(2238), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_err_GT_PIPE] = ACTIONS(2238), - [anon_sym_out_GT_PIPE] = ACTIONS(2238), - [anon_sym_e_GT_PIPE] = ACTIONS(2238), - [anon_sym_o_GT_PIPE] = ACTIONS(2238), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2238), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2238), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2238), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2234), - [anon_sym_DOLLAR] = ACTIONS(2234), - [anon_sym_DASH_DASH] = ACTIONS(2238), - [anon_sym_DASH2] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_DOT_DOT] = ACTIONS(2234), - [anon_sym_LPAREN2] = ACTIONS(2236), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2238), - [anon_sym_DOT_DOT_LT] = ACTIONS(2238), - [anon_sym_null] = ACTIONS(2238), - [anon_sym_true] = ACTIONS(2238), - [anon_sym_false] = ACTIONS(2238), - [aux_sym__val_number_decimal_token1] = ACTIONS(2234), - [aux_sym__val_number_decimal_token2] = ACTIONS(2238), - [aux_sym__val_number_decimal_token3] = ACTIONS(2238), - [aux_sym__val_number_decimal_token4] = ACTIONS(2238), - [aux_sym__val_number_token1] = ACTIONS(2238), - [aux_sym__val_number_token2] = ACTIONS(2238), - [aux_sym__val_number_token3] = ACTIONS(2238), - [aux_sym__val_number_token4] = ACTIONS(2238), - [aux_sym__val_number_token5] = ACTIONS(2238), - [aux_sym__val_number_token6] = ACTIONS(2238), - [anon_sym_0b] = ACTIONS(2234), - [anon_sym_0o] = ACTIONS(2234), - [anon_sym_0x] = ACTIONS(2234), - [sym_val_date] = ACTIONS(2238), - [anon_sym_DQUOTE] = ACTIONS(2238), - [sym__str_single_quotes] = ACTIONS(2238), - [sym__str_back_ticks] = ACTIONS(2238), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2238), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2238), - [anon_sym_err_GT] = ACTIONS(2234), - [anon_sym_out_GT] = ACTIONS(2234), - [anon_sym_e_GT] = ACTIONS(2234), - [anon_sym_o_GT] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT] = ACTIONS(2234), - [anon_sym_err_GT_GT] = ACTIONS(2238), - [anon_sym_out_GT_GT] = ACTIONS(2238), - [anon_sym_e_GT_GT] = ACTIONS(2238), - [anon_sym_o_GT_GT] = ACTIONS(2238), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2238), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2238), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2238), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2238), - [aux_sym_unquoted_token1] = ACTIONS(2234), - [aux_sym_unquoted_token2] = ACTIONS(1579), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2238), - }, - [1672] = { - [sym_comment] = STATE(1672), - [sym__newline] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(2250), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_err_GT_PIPE] = ACTIONS(2250), - [anon_sym_out_GT_PIPE] = ACTIONS(2250), - [anon_sym_e_GT_PIPE] = ACTIONS(2250), - [anon_sym_o_GT_PIPE] = ACTIONS(2250), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2250), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2250), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2250), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_RPAREN] = ACTIONS(2250), - [anon_sym_DOLLAR] = ACTIONS(2248), - [anon_sym_DASH_DASH] = ACTIONS(2248), - [anon_sym_DASH2] = ACTIONS(2248), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_DOT_DOT] = ACTIONS(2248), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2248), - [anon_sym_DOT_DOT_LT] = ACTIONS(2248), - [anon_sym_null] = ACTIONS(2248), - [anon_sym_true] = ACTIONS(2248), - [anon_sym_false] = ACTIONS(2248), - [aux_sym__val_number_decimal_token1] = ACTIONS(2248), - [aux_sym__val_number_decimal_token2] = ACTIONS(2248), - [aux_sym__val_number_decimal_token3] = ACTIONS(2248), - [aux_sym__val_number_decimal_token4] = ACTIONS(2248), - [aux_sym__val_number_token1] = ACTIONS(2248), - [aux_sym__val_number_token2] = ACTIONS(2248), - [aux_sym__val_number_token3] = ACTIONS(2248), - [aux_sym__val_number_token4] = ACTIONS(2248), - [aux_sym__val_number_token5] = ACTIONS(2248), - [aux_sym__val_number_token6] = ACTIONS(2248), - [anon_sym_0b] = ACTIONS(2248), - [anon_sym_0o] = ACTIONS(2248), - [anon_sym_0x] = ACTIONS(2248), - [sym_val_date] = ACTIONS(2248), - [anon_sym_DQUOTE] = ACTIONS(2250), - [sym__str_single_quotes] = ACTIONS(2250), - [sym__str_back_ticks] = ACTIONS(2250), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2250), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2250), - [anon_sym_err_GT] = ACTIONS(2248), - [anon_sym_out_GT] = ACTIONS(2248), - [anon_sym_e_GT] = ACTIONS(2248), - [anon_sym_o_GT] = ACTIONS(2248), - [anon_sym_err_PLUSout_GT] = ACTIONS(2248), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2248), - [anon_sym_o_PLUSe_GT] = ACTIONS(2248), - [anon_sym_e_PLUSo_GT] = ACTIONS(2248), - [anon_sym_err_GT_GT] = ACTIONS(2248), - [anon_sym_out_GT_GT] = ACTIONS(2248), - [anon_sym_e_GT_GT] = ACTIONS(2248), - [anon_sym_o_GT_GT] = ACTIONS(2248), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2248), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2248), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2248), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2248), - [aux_sym_unquoted_token1] = ACTIONS(2248), - [aux_sym_unquoted_token4] = ACTIONS(2248), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2250), - }, - [1673] = { - [sym_cmd_identifier] = STATE(4195), - [sym__command_name] = STATE(6642), - [sym_scope_pattern] = STATE(6690), - [sym_wild_card] = STATE(6698), - [sym_command_list] = STATE(6703), - [sym__val_number_decimal] = STATE(3762), - [sym_val_string] = STATE(4159), - [sym__raw_str] = STATE(4492), - [sym__str_double_quotes] = STATE(4492), - [sym_comment] = STATE(1673), - [aux_sym_cmd_identifier_token1] = ACTIONS(5033), - [aux_sym_cmd_identifier_token2] = ACTIONS(5035), - [aux_sym_cmd_identifier_token3] = ACTIONS(5035), - [aux_sym_cmd_identifier_token4] = ACTIONS(5035), - [aux_sym_cmd_identifier_token5] = ACTIONS(5035), - [aux_sym_cmd_identifier_token6] = ACTIONS(5035), - [aux_sym_cmd_identifier_token7] = ACTIONS(5035), - [aux_sym_cmd_identifier_token8] = ACTIONS(5035), - [aux_sym_cmd_identifier_token9] = ACTIONS(5033), - [aux_sym_cmd_identifier_token10] = ACTIONS(5035), - [aux_sym_cmd_identifier_token11] = ACTIONS(5035), - [aux_sym_cmd_identifier_token12] = ACTIONS(5035), - [aux_sym_cmd_identifier_token13] = ACTIONS(5033), - [aux_sym_cmd_identifier_token14] = ACTIONS(5035), - [aux_sym_cmd_identifier_token15] = ACTIONS(5033), - [aux_sym_cmd_identifier_token16] = ACTIONS(5035), - [aux_sym_cmd_identifier_token17] = ACTIONS(5035), - [aux_sym_cmd_identifier_token18] = ACTIONS(5035), - [aux_sym_cmd_identifier_token19] = ACTIONS(5035), - [aux_sym_cmd_identifier_token20] = ACTIONS(5035), - [aux_sym_cmd_identifier_token21] = ACTIONS(5035), - [aux_sym_cmd_identifier_token22] = ACTIONS(5035), - [aux_sym_cmd_identifier_token23] = ACTIONS(5035), - [aux_sym_cmd_identifier_token24] = ACTIONS(5035), - [aux_sym_cmd_identifier_token25] = ACTIONS(5035), - [aux_sym_cmd_identifier_token26] = ACTIONS(5035), - [aux_sym_cmd_identifier_token27] = ACTIONS(5035), - [aux_sym_cmd_identifier_token28] = ACTIONS(5035), - [aux_sym_cmd_identifier_token29] = ACTIONS(5035), - [aux_sym_cmd_identifier_token30] = ACTIONS(5035), - [aux_sym_cmd_identifier_token31] = ACTIONS(5035), - [aux_sym_cmd_identifier_token32] = ACTIONS(5035), - [aux_sym_cmd_identifier_token33] = ACTIONS(5035), - [aux_sym_cmd_identifier_token34] = ACTIONS(5033), - [aux_sym_cmd_identifier_token35] = ACTIONS(5035), - [aux_sym_cmd_identifier_token36] = ACTIONS(5035), - [aux_sym_cmd_identifier_token37] = ACTIONS(5035), - [aux_sym_cmd_identifier_token38] = ACTIONS(5033), - [aux_sym_cmd_identifier_token39] = ACTIONS(5035), - [aux_sym_cmd_identifier_token40] = ACTIONS(5035), - [sym__newline] = ACTIONS(5037), - [anon_sym_SEMI] = ACTIONS(5037), - [anon_sym_LBRACK] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5037), - [anon_sym_RBRACE] = ACTIONS(5037), - [anon_sym_STAR2] = ACTIONS(5041), - [aux_sym__val_number_decimal_token1] = ACTIONS(5043), - [aux_sym__val_number_decimal_token2] = ACTIONS(5043), - [aux_sym__val_number_decimal_token3] = ACTIONS(5045), - [aux_sym__val_number_decimal_token4] = ACTIONS(5047), - [anon_sym_DQUOTE] = ACTIONS(4009), - [sym__str_single_quotes] = ACTIONS(4011), - [sym__str_back_ticks] = ACTIONS(4011), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4013), - }, - [1674] = { - [sym__expression] = STATE(5647), - [sym_expr_unary] = STATE(3905), - [sym__expr_unary_minus] = STATE(3850), - [sym_expr_binary] = STATE(3905), - [sym__expr_binary_expression] = STATE(3977), - [sym_expr_parenthesized] = STATE(3599), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(3905), - [sym_val_nothing] = STATE(3532), - [sym_val_bool] = STATE(3532), - [sym_val_variable] = STATE(3594), - [sym_val_number] = STATE(3532), - [sym__val_number_decimal] = STATE(3514), - [sym__val_number] = STATE(3492), - [sym_val_duration] = STATE(3532), - [sym_val_filesize] = STATE(3532), - [sym_val_binary] = STATE(3532), - [sym_val_string] = STATE(3532), - [sym__raw_str] = STATE(3584), - [sym__str_double_quotes] = STATE(3584), - [sym_val_interpolated] = STATE(3532), - [sym__inter_single_quotes] = STATE(3486), - [sym__inter_double_quotes] = STATE(3489), - [sym_val_list] = STATE(3532), - [sym_val_record] = STATE(3532), - [sym_val_table] = STATE(3532), - [sym_val_closure] = STATE(3532), - [sym__flag] = STATE(2121), - [sym_short_flag] = STATE(3624), - [sym_long_flag] = STATE(3624), - [sym_comment] = STATE(1674), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(4996), - [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_DASH_DASH] = ACTIONS(5000), - [anon_sym_DASH2] = ACTIONS(5002), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(5004), - [aux_sym_expr_unary_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5006), - [anon_sym_DOT_DOT_LT] = ACTIONS(5006), - [anon_sym_null] = ACTIONS(5008), - [anon_sym_true] = ACTIONS(5010), - [anon_sym_false] = ACTIONS(5010), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [aux_sym__val_number_token4] = ACTIONS(3467), - [aux_sym__val_number_token5] = ACTIONS(3467), - [aux_sym__val_number_token6] = ACTIONS(3467), - [anon_sym_0b] = ACTIONS(3471), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(5012), - [anon_sym_DQUOTE] = ACTIONS(3477), - [sym__str_single_quotes] = ACTIONS(3479), - [sym__str_back_ticks] = ACTIONS(3479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3487), - }, - [1675] = { - [sym_comment] = STATE(1675), - [ts_builtin_sym_end] = ACTIONS(2256), - [sym__newline] = ACTIONS(2256), - [anon_sym_SEMI] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_err_GT_PIPE] = ACTIONS(2256), - [anon_sym_out_GT_PIPE] = ACTIONS(2256), - [anon_sym_e_GT_PIPE] = ACTIONS(2256), - [anon_sym_o_GT_PIPE] = ACTIONS(2256), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2256), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2256), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2256), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2256), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2252), - [anon_sym_DOLLAR] = ACTIONS(2252), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_DASH2] = ACTIONS(2252), - [anon_sym_LBRACE] = ACTIONS(2256), - [anon_sym_DOT_DOT] = ACTIONS(2252), - [anon_sym_LPAREN2] = ACTIONS(2254), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2256), - [anon_sym_DOT_DOT_LT] = ACTIONS(2256), - [anon_sym_null] = ACTIONS(2256), - [anon_sym_true] = ACTIONS(2256), - [anon_sym_false] = ACTIONS(2256), - [aux_sym__val_number_decimal_token1] = ACTIONS(2252), - [aux_sym__val_number_decimal_token2] = ACTIONS(2256), - [aux_sym__val_number_decimal_token3] = ACTIONS(2256), - [aux_sym__val_number_decimal_token4] = ACTIONS(2256), - [aux_sym__val_number_token1] = ACTIONS(2256), - [aux_sym__val_number_token2] = ACTIONS(2256), - [aux_sym__val_number_token3] = ACTIONS(2256), - [aux_sym__val_number_token4] = ACTIONS(2256), - [aux_sym__val_number_token5] = ACTIONS(2256), - [aux_sym__val_number_token6] = ACTIONS(2256), - [anon_sym_0b] = ACTIONS(2252), - [anon_sym_0o] = ACTIONS(2252), - [anon_sym_0x] = ACTIONS(2252), - [sym_val_date] = ACTIONS(2256), - [anon_sym_DQUOTE] = ACTIONS(2256), - [sym__str_single_quotes] = ACTIONS(2256), - [sym__str_back_ticks] = ACTIONS(2256), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2256), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2256), - [anon_sym_err_GT] = ACTIONS(2252), - [anon_sym_out_GT] = ACTIONS(2252), - [anon_sym_e_GT] = ACTIONS(2252), - [anon_sym_o_GT] = ACTIONS(2252), - [anon_sym_err_PLUSout_GT] = ACTIONS(2252), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2252), - [anon_sym_o_PLUSe_GT] = ACTIONS(2252), - [anon_sym_e_PLUSo_GT] = ACTIONS(2252), - [anon_sym_err_GT_GT] = ACTIONS(2256), - [anon_sym_out_GT_GT] = ACTIONS(2256), - [anon_sym_e_GT_GT] = ACTIONS(2256), - [anon_sym_o_GT_GT] = ACTIONS(2256), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2256), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2256), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2256), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2256), - [aux_sym_unquoted_token1] = ACTIONS(2252), - [aux_sym_unquoted_token2] = ACTIONS(2258), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2256), - }, - [1676] = { - [sym_cell_path] = STATE(2124), - [sym_path] = STATE(1978), - [sym_comment] = STATE(1676), - [aux_sym_cell_path_repeat1] = STATE(1796), - [ts_builtin_sym_end] = ACTIONS(1737), - [sym__newline] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_err_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_GT_PIPE] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), - [anon_sym_GT2] = ACTIONS(1735), - [anon_sym_DASH2] = ACTIONS(1737), - [anon_sym_in2] = ACTIONS(1737), - [anon_sym_STAR2] = ACTIONS(1735), - [anon_sym_and2] = ACTIONS(1737), - [anon_sym_xor2] = ACTIONS(1737), - [anon_sym_or2] = ACTIONS(1737), - [anon_sym_not_DASHin2] = ACTIONS(1737), - [anon_sym_starts_DASHwith2] = ACTIONS(1737), - [anon_sym_ends_DASHwith2] = ACTIONS(1737), - [anon_sym_EQ_EQ2] = ACTIONS(1737), - [anon_sym_BANG_EQ2] = ACTIONS(1737), - [anon_sym_LT2] = ACTIONS(1735), - [anon_sym_LT_EQ2] = ACTIONS(1737), - [anon_sym_GT_EQ2] = ACTIONS(1737), - [anon_sym_EQ_TILDE2] = ACTIONS(1737), - [anon_sym_BANG_TILDE2] = ACTIONS(1737), - [anon_sym_STAR_STAR2] = ACTIONS(1737), - [anon_sym_PLUS_PLUS2] = ACTIONS(1737), - [anon_sym_SLASH2] = ACTIONS(1735), - [anon_sym_mod2] = ACTIONS(1737), - [anon_sym_SLASH_SLASH2] = ACTIONS(1737), - [anon_sym_PLUS2] = ACTIONS(1735), - [anon_sym_bit_DASHshl2] = ACTIONS(1737), - [anon_sym_bit_DASHshr2] = ACTIONS(1737), - [anon_sym_bit_DASHand2] = ACTIONS(1737), - [anon_sym_bit_DASHxor2] = ACTIONS(1737), - [anon_sym_bit_DASHor2] = ACTIONS(1737), - [anon_sym_DOT_DOT2] = ACTIONS(1735), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), - [anon_sym_err_GT] = ACTIONS(1735), - [anon_sym_out_GT] = ACTIONS(1735), - [anon_sym_e_GT] = ACTIONS(1735), - [anon_sym_o_GT] = ACTIONS(1735), - [anon_sym_err_PLUSout_GT] = ACTIONS(1735), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), - [anon_sym_o_PLUSe_GT] = ACTIONS(1735), - [anon_sym_e_PLUSo_GT] = ACTIONS(1735), - [anon_sym_err_GT_GT] = ACTIONS(1737), - [anon_sym_out_GT_GT] = ACTIONS(1737), - [anon_sym_e_GT_GT] = ACTIONS(1737), - [anon_sym_o_GT_GT] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), - [anon_sym_POUND] = ACTIONS(247), - }, - [1677] = { - [sym__expression] = STATE(5665), - [sym_expr_unary] = STATE(3905), - [sym__expr_unary_minus] = STATE(3850), - [sym_expr_binary] = STATE(3905), - [sym__expr_binary_expression] = STATE(3977), - [sym_expr_parenthesized] = STATE(3599), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(3905), - [sym_val_nothing] = STATE(3532), - [sym_val_bool] = STATE(3532), - [sym_val_variable] = STATE(3594), - [sym_val_number] = STATE(3532), - [sym__val_number_decimal] = STATE(3514), - [sym__val_number] = STATE(3492), - [sym_val_duration] = STATE(3532), - [sym_val_filesize] = STATE(3532), - [sym_val_binary] = STATE(3532), - [sym_val_string] = STATE(3532), - [sym__raw_str] = STATE(3584), - [sym__str_double_quotes] = STATE(3584), - [sym_val_interpolated] = STATE(3532), - [sym__inter_single_quotes] = STATE(3486), - [sym__inter_double_quotes] = STATE(3489), - [sym_val_list] = STATE(3532), - [sym_val_record] = STATE(3532), - [sym_val_table] = STATE(3532), - [sym_val_closure] = STATE(3532), - [sym__flag] = STATE(2126), - [sym_short_flag] = STATE(3624), - [sym_long_flag] = STATE(3624), - [sym_comment] = STATE(1677), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(4996), - [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_DASH_DASH] = ACTIONS(5000), - [anon_sym_DASH2] = ACTIONS(5002), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(5004), - [aux_sym_expr_unary_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5006), - [anon_sym_DOT_DOT_LT] = ACTIONS(5006), - [anon_sym_null] = ACTIONS(5008), - [anon_sym_true] = ACTIONS(5010), - [anon_sym_false] = ACTIONS(5010), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [aux_sym__val_number_token4] = ACTIONS(3467), - [aux_sym__val_number_token5] = ACTIONS(3467), - [aux_sym__val_number_token6] = ACTIONS(3467), - [anon_sym_0b] = ACTIONS(3471), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(5012), - [anon_sym_DQUOTE] = ACTIONS(3477), - [sym__str_single_quotes] = ACTIONS(3479), - [sym__str_back_ticks] = ACTIONS(3479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3487), - }, - [1678] = { - [sym__expression] = STATE(5649), - [sym_expr_unary] = STATE(3905), - [sym__expr_unary_minus] = STATE(3850), - [sym_expr_binary] = STATE(3905), - [sym__expr_binary_expression] = STATE(3977), - [sym_expr_parenthesized] = STATE(3599), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(3905), - [sym_val_nothing] = STATE(3532), - [sym_val_bool] = STATE(3532), - [sym_val_variable] = STATE(3594), - [sym_val_number] = STATE(3532), - [sym__val_number_decimal] = STATE(3514), - [sym__val_number] = STATE(3492), - [sym_val_duration] = STATE(3532), - [sym_val_filesize] = STATE(3532), - [sym_val_binary] = STATE(3532), - [sym_val_string] = STATE(3532), - [sym__raw_str] = STATE(3584), - [sym__str_double_quotes] = STATE(3584), - [sym_val_interpolated] = STATE(3532), - [sym__inter_single_quotes] = STATE(3486), - [sym__inter_double_quotes] = STATE(3489), - [sym_val_list] = STATE(3532), - [sym_val_record] = STATE(3532), - [sym_val_table] = STATE(3532), - [sym_val_closure] = STATE(3532), - [sym__flag] = STATE(2157), - [sym_short_flag] = STATE(3624), - [sym_long_flag] = STATE(3624), - [sym_comment] = STATE(1678), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(4996), - [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_DASH_DASH] = ACTIONS(5000), - [anon_sym_DASH2] = ACTIONS(5002), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(5004), - [aux_sym_expr_unary_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5006), - [anon_sym_DOT_DOT_LT] = ACTIONS(5006), - [anon_sym_null] = ACTIONS(5008), - [anon_sym_true] = ACTIONS(5010), - [anon_sym_false] = ACTIONS(5010), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [aux_sym__val_number_token4] = ACTIONS(3467), - [aux_sym__val_number_token5] = ACTIONS(3467), - [aux_sym__val_number_token6] = ACTIONS(3467), - [anon_sym_0b] = ACTIONS(3471), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(5012), - [anon_sym_DQUOTE] = ACTIONS(3477), - [sym__str_single_quotes] = ACTIONS(3479), - [sym__str_back_ticks] = ACTIONS(3479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3487), + [1665] = { + [sym__expr_parenthesized_immediate] = STATE(7675), + [sym_comment] = STATE(1665), + [sym__newline] = ACTIONS(5009), + [anon_sym_SEMI] = ACTIONS(5009), + [anon_sym_PIPE] = ACTIONS(5009), + [anon_sym_err_GT_PIPE] = ACTIONS(5009), + [anon_sym_out_GT_PIPE] = ACTIONS(5009), + [anon_sym_e_GT_PIPE] = ACTIONS(5009), + [anon_sym_o_GT_PIPE] = ACTIONS(5009), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5009), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5009), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5009), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5009), + [anon_sym_LBRACK] = ACTIONS(5009), + [anon_sym_LPAREN] = ACTIONS(5011), + [anon_sym_RPAREN] = ACTIONS(5009), + [anon_sym_DOLLAR] = ACTIONS(5011), + [anon_sym_DASH_DASH] = ACTIONS(5009), + [anon_sym_DASH2] = ACTIONS(5011), + [anon_sym_LBRACE] = ACTIONS(5009), + [anon_sym_DOT_DOT] = ACTIONS(5011), + [anon_sym_LPAREN2] = ACTIONS(4543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5009), + [anon_sym_DOT_DOT_LT] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5009), + [anon_sym_true] = ACTIONS(5009), + [anon_sym_false] = ACTIONS(5009), + [aux_sym__val_number_decimal_token1] = ACTIONS(5011), + [aux_sym__val_number_decimal_token2] = ACTIONS(5009), + [aux_sym__val_number_decimal_token3] = ACTIONS(5009), + [aux_sym__val_number_decimal_token4] = ACTIONS(5009), + [aux_sym__val_number_token1] = ACTIONS(5009), + [aux_sym__val_number_token2] = ACTIONS(5009), + [aux_sym__val_number_token3] = ACTIONS(5009), + [aux_sym__val_number_token4] = ACTIONS(5009), + [aux_sym__val_number_token5] = ACTIONS(5009), + [aux_sym__val_number_token6] = ACTIONS(5009), + [anon_sym_0b] = ACTIONS(5011), + [anon_sym_0o] = ACTIONS(5011), + [anon_sym_0x] = ACTIONS(5011), + [sym_val_date] = ACTIONS(5009), + [anon_sym_DQUOTE] = ACTIONS(5009), + [sym__str_single_quotes] = ACTIONS(5009), + [sym__str_back_ticks] = ACTIONS(5009), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5009), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5009), + [anon_sym_err_GT] = ACTIONS(5011), + [anon_sym_out_GT] = ACTIONS(5011), + [anon_sym_e_GT] = ACTIONS(5011), + [anon_sym_o_GT] = ACTIONS(5011), + [anon_sym_err_PLUSout_GT] = ACTIONS(5011), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5011), + [anon_sym_o_PLUSe_GT] = ACTIONS(5011), + [anon_sym_e_PLUSo_GT] = ACTIONS(5011), + [anon_sym_err_GT_GT] = ACTIONS(5009), + [anon_sym_out_GT_GT] = ACTIONS(5009), + [anon_sym_e_GT_GT] = ACTIONS(5009), + [anon_sym_o_GT_GT] = ACTIONS(5009), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5009), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5009), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5009), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5009), + [aux_sym_unquoted_token1] = ACTIONS(5011), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(5009), }, - [1679] = { - [sym_comment] = STATE(1679), - [sym__newline] = ACTIONS(2127), - [anon_sym_SEMI] = ACTIONS(2127), - [anon_sym_PIPE] = ACTIONS(2127), - [anon_sym_err_GT_PIPE] = ACTIONS(2127), - [anon_sym_out_GT_PIPE] = ACTIONS(2127), - [anon_sym_e_GT_PIPE] = ACTIONS(2127), - [anon_sym_o_GT_PIPE] = ACTIONS(2127), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2127), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2127), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2127), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2127), - [anon_sym_RPAREN] = ACTIONS(2127), - [anon_sym_GT2] = ACTIONS(2125), - [anon_sym_DASH2] = ACTIONS(2127), - [anon_sym_in2] = ACTIONS(2127), - [anon_sym_if] = ACTIONS(2127), - [anon_sym_LBRACE] = ACTIONS(2127), - [anon_sym_RBRACE] = ACTIONS(2127), - [anon_sym_EQ_GT] = ACTIONS(2127), - [anon_sym_STAR2] = ACTIONS(2125), - [anon_sym_and2] = ACTIONS(2127), - [anon_sym_xor2] = ACTIONS(2127), - [anon_sym_or2] = ACTIONS(2127), - [anon_sym_not_DASHin2] = ACTIONS(2127), - [anon_sym_starts_DASHwith2] = ACTIONS(2127), - [anon_sym_ends_DASHwith2] = ACTIONS(2127), - [anon_sym_EQ_EQ2] = ACTIONS(2127), - [anon_sym_BANG_EQ2] = ACTIONS(2127), - [anon_sym_LT2] = ACTIONS(2125), - [anon_sym_LT_EQ2] = ACTIONS(2127), - [anon_sym_GT_EQ2] = ACTIONS(2127), - [anon_sym_EQ_TILDE2] = ACTIONS(2127), - [anon_sym_BANG_TILDE2] = ACTIONS(2127), - [anon_sym_STAR_STAR2] = ACTIONS(2127), - [anon_sym_PLUS_PLUS2] = ACTIONS(2127), - [anon_sym_SLASH2] = ACTIONS(2125), - [anon_sym_mod2] = ACTIONS(2127), - [anon_sym_SLASH_SLASH2] = ACTIONS(2127), - [anon_sym_PLUS2] = ACTIONS(2125), - [anon_sym_bit_DASHshl2] = ACTIONS(2127), - [anon_sym_bit_DASHshr2] = ACTIONS(2127), - [anon_sym_bit_DASHand2] = ACTIONS(2127), - [anon_sym_bit_DASHxor2] = ACTIONS(2127), - [anon_sym_bit_DASHor2] = ACTIONS(2127), - [anon_sym_DOT_DOT2] = ACTIONS(2125), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2127), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2127), - [anon_sym_err_GT] = ACTIONS(2125), - [anon_sym_out_GT] = ACTIONS(2125), - [anon_sym_e_GT] = ACTIONS(2125), - [anon_sym_o_GT] = ACTIONS(2125), - [anon_sym_err_PLUSout_GT] = ACTIONS(2125), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2125), - [anon_sym_o_PLUSe_GT] = ACTIONS(2125), - [anon_sym_e_PLUSo_GT] = ACTIONS(2125), - [anon_sym_err_GT_GT] = ACTIONS(2127), - [anon_sym_out_GT_GT] = ACTIONS(2127), - [anon_sym_e_GT_GT] = ACTIONS(2127), - [anon_sym_o_GT_GT] = ACTIONS(2127), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2127), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2127), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2127), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2127), + [1666] = { + [sym_comment] = STATE(1666), + [ts_builtin_sym_end] = ACTIONS(1587), + [sym__newline] = ACTIONS(1587), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_err_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_GT_PIPE] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), + [anon_sym_GT2] = ACTIONS(1585), + [anon_sym_DASH2] = ACTIONS(1587), + [anon_sym_in2] = ACTIONS(1587), + [anon_sym_STAR2] = ACTIONS(1585), + [anon_sym_and2] = ACTIONS(1587), + [anon_sym_xor2] = ACTIONS(1587), + [anon_sym_or2] = ACTIONS(1587), + [anon_sym_not_DASHin2] = ACTIONS(1587), + [anon_sym_starts_DASHwith2] = ACTIONS(1587), + [anon_sym_ends_DASHwith2] = ACTIONS(1587), + [anon_sym_EQ_EQ2] = ACTIONS(1587), + [anon_sym_BANG_EQ2] = ACTIONS(1587), + [anon_sym_LT2] = ACTIONS(1585), + [anon_sym_LT_EQ2] = ACTIONS(1587), + [anon_sym_GT_EQ2] = ACTIONS(1587), + [anon_sym_EQ_TILDE2] = ACTIONS(1587), + [anon_sym_BANG_TILDE2] = ACTIONS(1587), + [anon_sym_LPAREN2] = ACTIONS(1587), + [anon_sym_STAR_STAR2] = ACTIONS(1587), + [anon_sym_PLUS_PLUS2] = ACTIONS(1587), + [anon_sym_SLASH2] = ACTIONS(1585), + [anon_sym_mod2] = ACTIONS(1587), + [anon_sym_SLASH_SLASH2] = ACTIONS(1587), + [anon_sym_PLUS2] = ACTIONS(1585), + [anon_sym_bit_DASHshl2] = ACTIONS(1587), + [anon_sym_bit_DASHshr2] = ACTIONS(1587), + [anon_sym_bit_DASHand2] = ACTIONS(1587), + [anon_sym_bit_DASHxor2] = ACTIONS(1587), + [anon_sym_bit_DASHor2] = ACTIONS(1587), + [anon_sym_DOT_DOT2] = ACTIONS(1585), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1587), + [sym_filesize_unit] = ACTIONS(1585), + [sym_duration_unit] = ACTIONS(1587), + [anon_sym_err_GT] = ACTIONS(1585), + [anon_sym_out_GT] = ACTIONS(1585), + [anon_sym_e_GT] = ACTIONS(1585), + [anon_sym_o_GT] = ACTIONS(1585), + [anon_sym_err_PLUSout_GT] = ACTIONS(1585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1585), + [anon_sym_o_PLUSe_GT] = ACTIONS(1585), + [anon_sym_e_PLUSo_GT] = ACTIONS(1585), + [anon_sym_err_GT_GT] = ACTIONS(1587), + [anon_sym_out_GT_GT] = ACTIONS(1587), + [anon_sym_e_GT_GT] = ACTIONS(1587), + [anon_sym_o_GT_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [aux_sym_unquoted_token2] = ACTIONS(1585), [anon_sym_POUND] = ACTIONS(247), }, - [1680] = { - [sym_comment] = STATE(1680), - [sym__newline] = ACTIONS(5051), - [anon_sym_SEMI] = ACTIONS(5051), - [anon_sym_PIPE] = ACTIONS(5051), - [anon_sym_err_GT_PIPE] = ACTIONS(5051), - [anon_sym_out_GT_PIPE] = ACTIONS(5051), - [anon_sym_e_GT_PIPE] = ACTIONS(5051), - [anon_sym_o_GT_PIPE] = ACTIONS(5051), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5051), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5051), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5051), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_RPAREN] = ACTIONS(5051), - [anon_sym_DOLLAR] = ACTIONS(5053), - [anon_sym_DASH_DASH] = ACTIONS(5051), - [anon_sym_DASH2] = ACTIONS(5053), - [anon_sym_LBRACE] = ACTIONS(5051), - [anon_sym_RBRACE] = ACTIONS(5051), - [anon_sym_DOT_DOT] = ACTIONS(5053), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5051), - [anon_sym_DOT_DOT_LT] = ACTIONS(5051), - [anon_sym_null] = ACTIONS(5051), - [anon_sym_true] = ACTIONS(5051), - [anon_sym_false] = ACTIONS(5051), - [aux_sym__val_number_decimal_token1] = ACTIONS(5053), - [aux_sym__val_number_decimal_token2] = ACTIONS(5051), - [aux_sym__val_number_decimal_token3] = ACTIONS(5051), - [aux_sym__val_number_decimal_token4] = ACTIONS(5051), - [aux_sym__val_number_token1] = ACTIONS(5051), - [aux_sym__val_number_token2] = ACTIONS(5051), - [aux_sym__val_number_token3] = ACTIONS(5051), - [aux_sym__val_number_token4] = ACTIONS(5051), - [aux_sym__val_number_token5] = ACTIONS(5051), - [aux_sym__val_number_token6] = ACTIONS(5051), - [anon_sym_0b] = ACTIONS(5053), - [anon_sym_0o] = ACTIONS(5053), - [anon_sym_0x] = ACTIONS(5053), - [sym_val_date] = ACTIONS(5051), - [anon_sym_DQUOTE] = ACTIONS(5051), - [sym__str_single_quotes] = ACTIONS(5051), - [sym__str_back_ticks] = ACTIONS(5051), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5051), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5051), - [anon_sym_err_GT] = ACTIONS(5053), - [anon_sym_out_GT] = ACTIONS(5053), - [anon_sym_e_GT] = ACTIONS(5053), - [anon_sym_o_GT] = ACTIONS(5053), - [anon_sym_err_PLUSout_GT] = ACTIONS(5053), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5053), - [anon_sym_o_PLUSe_GT] = ACTIONS(5053), - [anon_sym_e_PLUSo_GT] = ACTIONS(5053), - [anon_sym_err_GT_GT] = ACTIONS(5051), - [anon_sym_out_GT_GT] = ACTIONS(5051), - [anon_sym_e_GT_GT] = ACTIONS(5051), - [anon_sym_o_GT_GT] = ACTIONS(5051), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5051), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5051), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5051), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5051), - [anon_sym_EQ2] = ACTIONS(5055), - [aux_sym_unquoted_token1] = ACTIONS(5053), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(5051), - }, - [1681] = { - [sym__expr_parenthesized_immediate] = STATE(7999), - [sym_comment] = STATE(1681), - [ts_builtin_sym_end] = ACTIONS(4971), - [sym__newline] = ACTIONS(4971), - [anon_sym_SEMI] = ACTIONS(4971), - [anon_sym_PIPE] = ACTIONS(4971), - [anon_sym_err_GT_PIPE] = ACTIONS(4971), - [anon_sym_out_GT_PIPE] = ACTIONS(4971), - [anon_sym_e_GT_PIPE] = ACTIONS(4971), - [anon_sym_o_GT_PIPE] = ACTIONS(4971), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4971), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4971), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4971), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4971), - [anon_sym_LBRACK] = ACTIONS(4971), - [anon_sym_LPAREN] = ACTIONS(4973), - [anon_sym_DOLLAR] = ACTIONS(4973), - [anon_sym_DASH_DASH] = ACTIONS(4971), - [anon_sym_DASH2] = ACTIONS(4973), - [anon_sym_LBRACE] = ACTIONS(4971), - [anon_sym_DOT_DOT] = ACTIONS(4973), - [anon_sym_LPAREN2] = ACTIONS(4249), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4971), - [anon_sym_DOT_DOT_LT] = ACTIONS(4971), - [anon_sym_null] = ACTIONS(4971), - [anon_sym_true] = ACTIONS(4971), - [anon_sym_false] = ACTIONS(4971), - [aux_sym__val_number_decimal_token1] = ACTIONS(4973), - [aux_sym__val_number_decimal_token2] = ACTIONS(4971), - [aux_sym__val_number_decimal_token3] = ACTIONS(4971), - [aux_sym__val_number_decimal_token4] = ACTIONS(4971), - [aux_sym__val_number_token1] = ACTIONS(4971), - [aux_sym__val_number_token2] = ACTIONS(4971), - [aux_sym__val_number_token3] = ACTIONS(4971), - [aux_sym__val_number_token4] = ACTIONS(4971), - [aux_sym__val_number_token5] = ACTIONS(4971), - [aux_sym__val_number_token6] = ACTIONS(4971), - [anon_sym_0b] = ACTIONS(4973), - [anon_sym_0o] = ACTIONS(4973), - [anon_sym_0x] = ACTIONS(4973), - [sym_val_date] = ACTIONS(4971), - [anon_sym_DQUOTE] = ACTIONS(4971), - [sym__str_single_quotes] = ACTIONS(4971), - [sym__str_back_ticks] = ACTIONS(4971), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4971), - [anon_sym_err_GT] = ACTIONS(4973), - [anon_sym_out_GT] = ACTIONS(4973), - [anon_sym_e_GT] = ACTIONS(4973), - [anon_sym_o_GT] = ACTIONS(4973), - [anon_sym_err_PLUSout_GT] = ACTIONS(4973), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4973), - [anon_sym_o_PLUSe_GT] = ACTIONS(4973), - [anon_sym_e_PLUSo_GT] = ACTIONS(4973), - [anon_sym_err_GT_GT] = ACTIONS(4971), - [anon_sym_out_GT_GT] = ACTIONS(4971), - [anon_sym_e_GT_GT] = ACTIONS(4971), - [anon_sym_o_GT_GT] = ACTIONS(4971), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4971), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4971), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4971), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4971), - [aux_sym_unquoted_token1] = ACTIONS(4973), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4971), - }, - [1682] = { - [sym_comment] = STATE(1682), + [1667] = { + [sym_comment] = STATE(1667), [ts_builtin_sym_end] = ACTIONS(992), [sym__newline] = ACTIONS(992), [anon_sym_SEMI] = ACTIONS(992), @@ -228566,745 +227864,343 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(992), }, - [1683] = { - [sym_cell_path] = STATE(2115), - [sym_path] = STATE(1894), - [sym_comment] = STATE(1683), - [aux_sym_cell_path_repeat1] = STATE(1702), - [sym__newline] = ACTIONS(1978), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_err_GT_PIPE] = ACTIONS(1978), - [anon_sym_out_GT_PIPE] = ACTIONS(1978), - [anon_sym_e_GT_PIPE] = ACTIONS(1978), - [anon_sym_o_GT_PIPE] = ACTIONS(1978), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1978), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1978), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1978), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1978), - [anon_sym_RPAREN] = ACTIONS(1978), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1978), - [anon_sym_in2] = ACTIONS(1978), - [anon_sym_LBRACE] = ACTIONS(1978), - [anon_sym_RBRACE] = ACTIONS(1978), - [anon_sym_EQ_GT] = ACTIONS(1978), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1978), - [anon_sym_xor2] = ACTIONS(1978), - [anon_sym_or2] = ACTIONS(1978), - [anon_sym_not_DASHin2] = ACTIONS(1978), - [anon_sym_starts_DASHwith2] = ACTIONS(1978), - [anon_sym_ends_DASHwith2] = ACTIONS(1978), - [anon_sym_EQ_EQ2] = ACTIONS(1978), - [anon_sym_BANG_EQ2] = ACTIONS(1978), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1978), - [anon_sym_GT_EQ2] = ACTIONS(1978), - [anon_sym_EQ_TILDE2] = ACTIONS(1978), - [anon_sym_BANG_TILDE2] = ACTIONS(1978), - [anon_sym_STAR_STAR2] = ACTIONS(1978), - [anon_sym_PLUS_PLUS2] = ACTIONS(1978), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1978), - [anon_sym_SLASH_SLASH2] = ACTIONS(1978), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1978), - [anon_sym_bit_DASHshr2] = ACTIONS(1978), - [anon_sym_bit_DASHand2] = ACTIONS(1978), - [anon_sym_bit_DASHxor2] = ACTIONS(1978), - [anon_sym_bit_DASHor2] = ACTIONS(1978), - [anon_sym_DOT] = ACTIONS(4902), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1978), - [anon_sym_out_GT_GT] = ACTIONS(1978), - [anon_sym_e_GT_GT] = ACTIONS(1978), - [anon_sym_o_GT_GT] = ACTIONS(1978), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1978), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1978), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1978), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1978), - [anon_sym_POUND] = ACTIONS(247), - }, - [1684] = { - [sym_comment] = STATE(1684), - [ts_builtin_sym_end] = ACTIONS(2210), - [sym__newline] = ACTIONS(2210), - [anon_sym_SEMI] = ACTIONS(2210), - [anon_sym_PIPE] = ACTIONS(2210), - [anon_sym_err_GT_PIPE] = ACTIONS(2210), - [anon_sym_out_GT_PIPE] = ACTIONS(2210), - [anon_sym_e_GT_PIPE] = ACTIONS(2210), - [anon_sym_o_GT_PIPE] = ACTIONS(2210), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2210), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2210), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2210), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2210), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_LPAREN] = ACTIONS(2206), - [anon_sym_DOLLAR] = ACTIONS(2206), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_DASH2] = ACTIONS(2206), - [anon_sym_LBRACE] = ACTIONS(2210), - [anon_sym_DOT_DOT] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(2208), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2206), - [anon_sym_DOT_DOT_LT] = ACTIONS(2206), - [anon_sym_null] = ACTIONS(2206), - [anon_sym_true] = ACTIONS(2206), - [anon_sym_false] = ACTIONS(2206), - [aux_sym__val_number_decimal_token1] = ACTIONS(2206), - [aux_sym__val_number_decimal_token2] = ACTIONS(2206), - [aux_sym__val_number_decimal_token3] = ACTIONS(2206), - [aux_sym__val_number_decimal_token4] = ACTIONS(2206), - [aux_sym__val_number_token1] = ACTIONS(2206), - [aux_sym__val_number_token2] = ACTIONS(2206), - [aux_sym__val_number_token3] = ACTIONS(2206), - [aux_sym__val_number_token4] = ACTIONS(2206), - [aux_sym__val_number_token5] = ACTIONS(2206), - [aux_sym__val_number_token6] = ACTIONS(2206), - [anon_sym_0b] = ACTIONS(2206), - [anon_sym_0o] = ACTIONS(2206), - [anon_sym_0x] = ACTIONS(2206), - [sym_val_date] = ACTIONS(2206), - [anon_sym_DQUOTE] = ACTIONS(2210), - [sym__str_single_quotes] = ACTIONS(2210), - [sym__str_back_ticks] = ACTIONS(2210), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2210), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2210), - [anon_sym_err_GT] = ACTIONS(2206), - [anon_sym_out_GT] = ACTIONS(2206), - [anon_sym_e_GT] = ACTIONS(2206), - [anon_sym_o_GT] = ACTIONS(2206), - [anon_sym_err_PLUSout_GT] = ACTIONS(2206), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2206), - [anon_sym_o_PLUSe_GT] = ACTIONS(2206), - [anon_sym_e_PLUSo_GT] = ACTIONS(2206), - [anon_sym_err_GT_GT] = ACTIONS(2206), - [anon_sym_out_GT_GT] = ACTIONS(2206), - [anon_sym_e_GT_GT] = ACTIONS(2206), - [anon_sym_o_GT_GT] = ACTIONS(2206), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2206), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2206), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2206), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2206), - [aux_sym_unquoted_token1] = ACTIONS(2206), - [aux_sym_unquoted_token4] = ACTIONS(2212), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2210), - }, - [1685] = { - [sym_comment] = STATE(1685), - [ts_builtin_sym_end] = ACTIONS(1032), - [sym__newline] = ACTIONS(1032), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_PIPE] = ACTIONS(1032), - [anon_sym_err_GT_PIPE] = ACTIONS(1032), - [anon_sym_out_GT_PIPE] = ACTIONS(1032), - [anon_sym_e_GT_PIPE] = ACTIONS(1032), - [anon_sym_o_GT_PIPE] = ACTIONS(1032), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1032), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1032), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1032), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1032), - [anon_sym_LBRACK] = ACTIONS(1032), - [anon_sym_LPAREN] = ACTIONS(1030), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH_DASH] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(1030), - [anon_sym_LBRACE] = ACTIONS(1032), - [anon_sym_DOT_DOT] = ACTIONS(1030), - [anon_sym_LPAREN2] = ACTIONS(2202), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1030), - [anon_sym_DOT_DOT_LT] = ACTIONS(1030), - [anon_sym_null] = ACTIONS(1030), - [anon_sym_true] = ACTIONS(1030), - [anon_sym_false] = ACTIONS(1030), - [aux_sym__val_number_decimal_token1] = ACTIONS(1030), - [aux_sym__val_number_decimal_token2] = ACTIONS(1030), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), - [aux_sym__val_number_token1] = ACTIONS(1030), - [aux_sym__val_number_token2] = ACTIONS(1030), - [aux_sym__val_number_token3] = ACTIONS(1030), - [aux_sym__val_number_token4] = ACTIONS(1030), - [aux_sym__val_number_token5] = ACTIONS(1030), - [aux_sym__val_number_token6] = ACTIONS(1030), - [anon_sym_0b] = ACTIONS(1030), - [anon_sym_0o] = ACTIONS(1030), - [anon_sym_0x] = ACTIONS(1030), - [sym_val_date] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1032), - [sym__str_single_quotes] = ACTIONS(1032), - [sym__str_back_ticks] = ACTIONS(1032), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1032), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1032), - [anon_sym_err_GT] = ACTIONS(1030), - [anon_sym_out_GT] = ACTIONS(1030), - [anon_sym_e_GT] = ACTIONS(1030), - [anon_sym_o_GT] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT] = ACTIONS(1030), - [anon_sym_err_GT_GT] = ACTIONS(1030), - [anon_sym_out_GT_GT] = ACTIONS(1030), - [anon_sym_e_GT_GT] = ACTIONS(1030), - [anon_sym_o_GT_GT] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), - [aux_sym_unquoted_token1] = ACTIONS(1030), - [aux_sym_unquoted_token4] = ACTIONS(2204), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1032), + [1668] = { + [sym_comment] = STATE(1668), + [ts_builtin_sym_end] = ACTIONS(1767), + [sym__newline] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_err_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_GT_PIPE] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_DOT_DOT] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(5013), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), + [anon_sym_DOT_DOT_LT] = ACTIONS(1767), + [aux_sym__immediate_decimal_token2] = ACTIONS(5015), + [anon_sym_null] = ACTIONS(1767), + [anon_sym_true] = ACTIONS(1767), + [anon_sym_false] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1767), + [aux_sym__val_number_token5] = ACTIONS(1767), + [aux_sym__val_number_token6] = ACTIONS(1767), + [anon_sym_0b] = ACTIONS(1765), + [anon_sym_0o] = ACTIONS(1765), + [anon_sym_0x] = ACTIONS(1765), + [sym_val_date] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), + [anon_sym_err_GT] = ACTIONS(1765), + [anon_sym_out_GT] = ACTIONS(1765), + [anon_sym_e_GT] = ACTIONS(1765), + [anon_sym_o_GT] = ACTIONS(1765), + [anon_sym_err_PLUSout_GT] = ACTIONS(1765), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), + [anon_sym_o_PLUSe_GT] = ACTIONS(1765), + [anon_sym_e_PLUSo_GT] = ACTIONS(1765), + [anon_sym_err_GT_GT] = ACTIONS(1767), + [anon_sym_out_GT_GT] = ACTIONS(1767), + [anon_sym_e_GT_GT] = ACTIONS(1767), + [anon_sym_o_GT_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), + [aux_sym_unquoted_token1] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1767), }, - [1686] = { - [sym_cell_path] = STATE(2116), - [sym_path] = STATE(1894), - [sym_comment] = STATE(1686), - [aux_sym_cell_path_repeat1] = STATE(1702), - [sym__newline] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2084), - [anon_sym_PIPE] = ACTIONS(2084), - [anon_sym_err_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_GT_PIPE] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2084), - [anon_sym_RPAREN] = ACTIONS(2084), - [anon_sym_GT2] = ACTIONS(2082), - [anon_sym_DASH2] = ACTIONS(2084), - [anon_sym_in2] = ACTIONS(2084), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_RBRACE] = ACTIONS(2084), - [anon_sym_EQ_GT] = ACTIONS(2084), - [anon_sym_STAR2] = ACTIONS(2082), - [anon_sym_and2] = ACTIONS(2084), - [anon_sym_xor2] = ACTIONS(2084), - [anon_sym_or2] = ACTIONS(2084), - [anon_sym_not_DASHin2] = ACTIONS(2084), - [anon_sym_starts_DASHwith2] = ACTIONS(2084), - [anon_sym_ends_DASHwith2] = ACTIONS(2084), - [anon_sym_EQ_EQ2] = ACTIONS(2084), - [anon_sym_BANG_EQ2] = ACTIONS(2084), - [anon_sym_LT2] = ACTIONS(2082), - [anon_sym_LT_EQ2] = ACTIONS(2084), - [anon_sym_GT_EQ2] = ACTIONS(2084), - [anon_sym_EQ_TILDE2] = ACTIONS(2084), - [anon_sym_BANG_TILDE2] = ACTIONS(2084), - [anon_sym_STAR_STAR2] = ACTIONS(2084), - [anon_sym_PLUS_PLUS2] = ACTIONS(2084), - [anon_sym_SLASH2] = ACTIONS(2082), - [anon_sym_mod2] = ACTIONS(2084), - [anon_sym_SLASH_SLASH2] = ACTIONS(2084), - [anon_sym_PLUS2] = ACTIONS(2082), - [anon_sym_bit_DASHshl2] = ACTIONS(2084), - [anon_sym_bit_DASHshr2] = ACTIONS(2084), - [anon_sym_bit_DASHand2] = ACTIONS(2084), - [anon_sym_bit_DASHxor2] = ACTIONS(2084), - [anon_sym_bit_DASHor2] = ACTIONS(2084), - [anon_sym_DOT] = ACTIONS(4902), - [anon_sym_err_GT] = ACTIONS(2082), - [anon_sym_out_GT] = ACTIONS(2082), - [anon_sym_e_GT] = ACTIONS(2082), - [anon_sym_o_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT] = ACTIONS(2082), - [anon_sym_err_GT_GT] = ACTIONS(2084), - [anon_sym_out_GT_GT] = ACTIONS(2084), - [anon_sym_e_GT_GT] = ACTIONS(2084), - [anon_sym_o_GT_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2084), + [1669] = { + [sym_comment] = STATE(1669), + [ts_builtin_sym_end] = ACTIONS(996), + [sym__newline] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_err_GT_PIPE] = ACTIONS(996), + [anon_sym_out_GT_PIPE] = ACTIONS(996), + [anon_sym_e_GT_PIPE] = ACTIONS(996), + [anon_sym_o_GT_PIPE] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(996), + [anon_sym_DOT_DOT] = ACTIONS(994), + [anon_sym_QMARK2] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ] = ACTIONS(996), + [anon_sym_DOT_DOT_LT] = ACTIONS(996), + [anon_sym_null] = ACTIONS(996), + [anon_sym_true] = ACTIONS(996), + [anon_sym_false] = ACTIONS(996), + [aux_sym__val_number_decimal_token1] = ACTIONS(994), + [aux_sym__val_number_decimal_token2] = ACTIONS(996), + [aux_sym__val_number_decimal_token3] = ACTIONS(996), + [aux_sym__val_number_decimal_token4] = ACTIONS(996), + [aux_sym__val_number_token1] = ACTIONS(996), + [aux_sym__val_number_token2] = ACTIONS(996), + [aux_sym__val_number_token3] = ACTIONS(996), + [aux_sym__val_number_token4] = ACTIONS(996), + [aux_sym__val_number_token5] = ACTIONS(996), + [aux_sym__val_number_token6] = ACTIONS(996), + [anon_sym_0b] = ACTIONS(994), + [anon_sym_0o] = ACTIONS(994), + [anon_sym_0x] = ACTIONS(994), + [sym_val_date] = ACTIONS(996), + [anon_sym_DQUOTE] = ACTIONS(996), + [sym__str_single_quotes] = ACTIONS(996), + [sym__str_back_ticks] = ACTIONS(996), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(996), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(996), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(996), + [anon_sym_out_GT_GT] = ACTIONS(996), + [anon_sym_e_GT_GT] = ACTIONS(996), + [anon_sym_o_GT_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [aux_sym_unquoted_token1] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(996), }, - [1687] = { - [sym_comment] = STATE(1687), - [sym__newline] = ACTIONS(2341), - [anon_sym_SEMI] = ACTIONS(2341), - [anon_sym_PIPE] = ACTIONS(2341), - [anon_sym_err_GT_PIPE] = ACTIONS(2341), - [anon_sym_out_GT_PIPE] = ACTIONS(2341), - [anon_sym_e_GT_PIPE] = ACTIONS(2341), - [anon_sym_o_GT_PIPE] = ACTIONS(2341), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2341), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2341), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2341), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2341), - [anon_sym_LBRACK] = ACTIONS(2337), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_RPAREN] = ACTIONS(2341), - [anon_sym_DOLLAR] = ACTIONS(2337), - [anon_sym_DASH_DASH] = ACTIONS(2341), - [anon_sym_DASH2] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2341), - [anon_sym_RBRACE] = ACTIONS(2341), - [anon_sym_DOT_DOT] = ACTIONS(2337), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2341), - [anon_sym_DOT_DOT_LT] = ACTIONS(2341), - [anon_sym_null] = ACTIONS(2341), - [anon_sym_true] = ACTIONS(2341), - [anon_sym_false] = ACTIONS(2341), - [aux_sym__val_number_decimal_token1] = ACTIONS(2337), - [aux_sym__val_number_decimal_token2] = ACTIONS(2341), - [aux_sym__val_number_decimal_token3] = ACTIONS(2341), - [aux_sym__val_number_decimal_token4] = ACTIONS(2341), - [aux_sym__val_number_token1] = ACTIONS(2341), - [aux_sym__val_number_token2] = ACTIONS(2341), - [aux_sym__val_number_token3] = ACTIONS(2341), - [aux_sym__val_number_token4] = ACTIONS(2341), - [aux_sym__val_number_token5] = ACTIONS(2341), - [aux_sym__val_number_token6] = ACTIONS(2341), - [anon_sym_0b] = ACTIONS(2337), - [anon_sym_0o] = ACTIONS(2337), - [anon_sym_0x] = ACTIONS(2337), - [anon_sym_LBRACK2] = ACTIONS(5057), - [sym_val_date] = ACTIONS(2341), - [anon_sym_DQUOTE] = ACTIONS(2341), - [sym__str_single_quotes] = ACTIONS(2341), - [sym__str_back_ticks] = ACTIONS(2341), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2341), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2341), - [anon_sym_err_GT] = ACTIONS(2337), - [anon_sym_out_GT] = ACTIONS(2337), - [anon_sym_e_GT] = ACTIONS(2337), - [anon_sym_o_GT] = ACTIONS(2337), - [anon_sym_err_PLUSout_GT] = ACTIONS(2337), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2337), - [anon_sym_o_PLUSe_GT] = ACTIONS(2337), - [anon_sym_e_PLUSo_GT] = ACTIONS(2337), - [anon_sym_err_GT_GT] = ACTIONS(2341), - [anon_sym_out_GT_GT] = ACTIONS(2341), - [anon_sym_e_GT_GT] = ACTIONS(2341), - [anon_sym_o_GT_GT] = ACTIONS(2341), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2341), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2341), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2341), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2341), - [aux_sym_unquoted_token1] = ACTIONS(2337), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(2341), - }, - [1688] = { - [sym_comment] = STATE(1688), - [sym__newline] = ACTIONS(1020), - [anon_sym_SEMI] = ACTIONS(1020), - [anon_sym_PIPE] = ACTIONS(1020), - [anon_sym_err_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_GT_PIPE] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), - [anon_sym_RPAREN] = ACTIONS(1020), - [anon_sym_GT2] = ACTIONS(1018), - [anon_sym_DASH2] = ACTIONS(1020), - [anon_sym_in2] = ACTIONS(1020), - [anon_sym_if] = ACTIONS(1020), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_EQ_GT] = ACTIONS(1020), - [anon_sym_STAR2] = ACTIONS(1018), - [anon_sym_and2] = ACTIONS(1020), - [anon_sym_xor2] = ACTIONS(1020), - [anon_sym_or2] = ACTIONS(1020), - [anon_sym_not_DASHin2] = ACTIONS(1020), - [anon_sym_starts_DASHwith2] = ACTIONS(1020), - [anon_sym_ends_DASHwith2] = ACTIONS(1020), - [anon_sym_EQ_EQ2] = ACTIONS(1020), - [anon_sym_BANG_EQ2] = ACTIONS(1020), - [anon_sym_LT2] = ACTIONS(1018), - [anon_sym_LT_EQ2] = ACTIONS(1020), - [anon_sym_GT_EQ2] = ACTIONS(1020), - [anon_sym_EQ_TILDE2] = ACTIONS(1020), - [anon_sym_BANG_TILDE2] = ACTIONS(1020), - [anon_sym_STAR_STAR2] = ACTIONS(1020), - [anon_sym_PLUS_PLUS2] = ACTIONS(1020), - [anon_sym_SLASH2] = ACTIONS(1018), - [anon_sym_mod2] = ACTIONS(1020), - [anon_sym_SLASH_SLASH2] = ACTIONS(1020), - [anon_sym_PLUS2] = ACTIONS(1018), - [anon_sym_bit_DASHshl2] = ACTIONS(1020), - [anon_sym_bit_DASHshr2] = ACTIONS(1020), - [anon_sym_bit_DASHand2] = ACTIONS(1020), - [anon_sym_bit_DASHxor2] = ACTIONS(1020), - [anon_sym_bit_DASHor2] = ACTIONS(1020), - [anon_sym_DOT_DOT2] = ACTIONS(1018), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1020), - [anon_sym_err_GT] = ACTIONS(1018), - [anon_sym_out_GT] = ACTIONS(1018), - [anon_sym_e_GT] = ACTIONS(1018), - [anon_sym_o_GT] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT] = ACTIONS(1018), - [anon_sym_err_GT_GT] = ACTIONS(1020), - [anon_sym_out_GT_GT] = ACTIONS(1020), - [anon_sym_e_GT_GT] = ACTIONS(1020), - [anon_sym_o_GT_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), + [1670] = { + [sym_comment] = STATE(1670), + [ts_builtin_sym_end] = ACTIONS(1000), + [sym__newline] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_err_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_GT_PIPE] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH_DASH] = ACTIONS(1000), + [anon_sym_DASH2] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_DOT_DOT] = ACTIONS(998), + [anon_sym_QMARK2] = ACTIONS(1000), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1000), + [anon_sym_DOT_DOT_LT] = ACTIONS(1000), + [anon_sym_null] = ACTIONS(1000), + [anon_sym_true] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1000), + [aux_sym__val_number_decimal_token1] = ACTIONS(998), + [aux_sym__val_number_decimal_token2] = ACTIONS(1000), + [aux_sym__val_number_decimal_token3] = ACTIONS(1000), + [aux_sym__val_number_decimal_token4] = ACTIONS(1000), + [aux_sym__val_number_token1] = ACTIONS(1000), + [aux_sym__val_number_token2] = ACTIONS(1000), + [aux_sym__val_number_token3] = ACTIONS(1000), + [aux_sym__val_number_token4] = ACTIONS(1000), + [aux_sym__val_number_token5] = ACTIONS(1000), + [aux_sym__val_number_token6] = ACTIONS(1000), + [anon_sym_0b] = ACTIONS(998), + [anon_sym_0o] = ACTIONS(998), + [anon_sym_0x] = ACTIONS(998), + [sym_val_date] = ACTIONS(1000), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym__str_single_quotes] = ACTIONS(1000), + [sym__str_back_ticks] = ACTIONS(1000), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1000), + [anon_sym_err_GT] = ACTIONS(998), + [anon_sym_out_GT] = ACTIONS(998), + [anon_sym_e_GT] = ACTIONS(998), + [anon_sym_o_GT] = ACTIONS(998), + [anon_sym_err_PLUSout_GT] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT] = ACTIONS(998), + [anon_sym_o_PLUSe_GT] = ACTIONS(998), + [anon_sym_e_PLUSo_GT] = ACTIONS(998), + [anon_sym_err_GT_GT] = ACTIONS(1000), + [anon_sym_out_GT_GT] = ACTIONS(1000), + [anon_sym_e_GT_GT] = ACTIONS(1000), + [anon_sym_o_GT_GT] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), + [aux_sym_unquoted_token1] = ACTIONS(998), [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1000), }, - [1689] = { - [sym__expr_parenthesized_immediate] = STATE(7999), - [sym_comment] = STATE(1689), - [ts_builtin_sym_end] = ACTIONS(4975), - [sym__newline] = ACTIONS(4975), - [anon_sym_SEMI] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(4975), - [anon_sym_err_GT_PIPE] = ACTIONS(4975), - [anon_sym_out_GT_PIPE] = ACTIONS(4975), - [anon_sym_e_GT_PIPE] = ACTIONS(4975), - [anon_sym_o_GT_PIPE] = ACTIONS(4975), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4975), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4975), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4975), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4975), - [anon_sym_LBRACK] = ACTIONS(4975), - [anon_sym_LPAREN] = ACTIONS(4977), - [anon_sym_DOLLAR] = ACTIONS(4977), - [anon_sym_DASH_DASH] = ACTIONS(4975), - [anon_sym_DASH2] = ACTIONS(4977), - [anon_sym_LBRACE] = ACTIONS(4975), - [anon_sym_DOT_DOT] = ACTIONS(4977), - [anon_sym_LPAREN2] = ACTIONS(4249), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4975), - [anon_sym_DOT_DOT_LT] = ACTIONS(4975), - [anon_sym_null] = ACTIONS(4975), - [anon_sym_true] = ACTIONS(4975), - [anon_sym_false] = ACTIONS(4975), - [aux_sym__val_number_decimal_token1] = ACTIONS(4977), - [aux_sym__val_number_decimal_token2] = ACTIONS(4975), - [aux_sym__val_number_decimal_token3] = ACTIONS(4975), - [aux_sym__val_number_decimal_token4] = ACTIONS(4975), - [aux_sym__val_number_token1] = ACTIONS(4975), - [aux_sym__val_number_token2] = ACTIONS(4975), - [aux_sym__val_number_token3] = ACTIONS(4975), - [aux_sym__val_number_token4] = ACTIONS(4975), - [aux_sym__val_number_token5] = ACTIONS(4975), - [aux_sym__val_number_token6] = ACTIONS(4975), - [anon_sym_0b] = ACTIONS(4977), - [anon_sym_0o] = ACTIONS(4977), - [anon_sym_0x] = ACTIONS(4977), - [sym_val_date] = ACTIONS(4975), - [anon_sym_DQUOTE] = ACTIONS(4975), - [sym__str_single_quotes] = ACTIONS(4975), - [sym__str_back_ticks] = ACTIONS(4975), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4975), - [anon_sym_err_GT] = ACTIONS(4977), - [anon_sym_out_GT] = ACTIONS(4977), - [anon_sym_e_GT] = ACTIONS(4977), - [anon_sym_o_GT] = ACTIONS(4977), - [anon_sym_err_PLUSout_GT] = ACTIONS(4977), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4977), - [anon_sym_o_PLUSe_GT] = ACTIONS(4977), - [anon_sym_e_PLUSo_GT] = ACTIONS(4977), - [anon_sym_err_GT_GT] = ACTIONS(4975), - [anon_sym_out_GT_GT] = ACTIONS(4975), - [anon_sym_e_GT_GT] = ACTIONS(4975), - [anon_sym_o_GT_GT] = ACTIONS(4975), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4975), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4975), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4975), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4975), - [aux_sym_unquoted_token1] = ACTIONS(4977), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4975), - }, - [1690] = { - [sym_comment] = STATE(1690), - [ts_builtin_sym_end] = ACTIONS(4936), - [sym_long_flag_identifier] = ACTIONS(5059), - [sym__newline] = ACTIONS(4936), - [anon_sym_SEMI] = ACTIONS(4936), - [anon_sym_PIPE] = ACTIONS(4936), - [anon_sym_err_GT_PIPE] = ACTIONS(4936), - [anon_sym_out_GT_PIPE] = ACTIONS(4936), - [anon_sym_e_GT_PIPE] = ACTIONS(4936), - [anon_sym_o_GT_PIPE] = ACTIONS(4936), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4936), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4936), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4936), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4936), - [anon_sym_LBRACK] = ACTIONS(4936), - [anon_sym_LPAREN] = ACTIONS(4936), - [anon_sym_DOLLAR] = ACTIONS(4938), - [anon_sym_DASH_DASH] = ACTIONS(4936), - [anon_sym_DASH2] = ACTIONS(4938), - [anon_sym_LBRACE] = ACTIONS(4936), - [anon_sym_DOT_DOT] = ACTIONS(4938), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4936), - [anon_sym_DOT_DOT_LT] = ACTIONS(4936), - [anon_sym_null] = ACTIONS(4938), - [anon_sym_true] = ACTIONS(4938), - [anon_sym_false] = ACTIONS(4938), - [aux_sym__val_number_decimal_token1] = ACTIONS(4938), - [aux_sym__val_number_decimal_token2] = ACTIONS(4936), - [aux_sym__val_number_decimal_token3] = ACTIONS(4936), - [aux_sym__val_number_decimal_token4] = ACTIONS(4936), - [aux_sym__val_number_token1] = ACTIONS(4938), - [aux_sym__val_number_token2] = ACTIONS(4938), - [aux_sym__val_number_token3] = ACTIONS(4938), - [aux_sym__val_number_token4] = ACTIONS(4938), - [aux_sym__val_number_token5] = ACTIONS(4936), - [aux_sym__val_number_token6] = ACTIONS(4938), - [anon_sym_0b] = ACTIONS(4938), - [anon_sym_0o] = ACTIONS(4938), - [anon_sym_0x] = ACTIONS(4938), - [sym_val_date] = ACTIONS(4938), - [anon_sym_DQUOTE] = ACTIONS(4936), - [sym__str_single_quotes] = ACTIONS(4936), - [sym__str_back_ticks] = ACTIONS(4936), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4936), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4936), - [anon_sym_err_GT] = ACTIONS(4938), - [anon_sym_out_GT] = ACTIONS(4938), - [anon_sym_e_GT] = ACTIONS(4938), - [anon_sym_o_GT] = ACTIONS(4938), - [anon_sym_err_PLUSout_GT] = ACTIONS(4938), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4938), - [anon_sym_o_PLUSe_GT] = ACTIONS(4938), - [anon_sym_e_PLUSo_GT] = ACTIONS(4938), - [anon_sym_err_GT_GT] = ACTIONS(4936), - [anon_sym_out_GT_GT] = ACTIONS(4936), - [anon_sym_e_GT_GT] = ACTIONS(4936), - [anon_sym_o_GT_GT] = ACTIONS(4936), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4936), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4936), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4936), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4936), - [anon_sym_EQ2] = ACTIONS(5061), - [aux_sym_unquoted_token1] = ACTIONS(4938), + [1671] = { + [sym_path] = STATE(1882), + [sym_comment] = STATE(1671), + [aux_sym_cell_path_repeat1] = STATE(1671), + [sym__newline] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(973), + [anon_sym_PIPE] = ACTIONS(973), + [anon_sym_err_GT_PIPE] = ACTIONS(973), + [anon_sym_out_GT_PIPE] = ACTIONS(973), + [anon_sym_e_GT_PIPE] = ACTIONS(973), + [anon_sym_o_GT_PIPE] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), + [anon_sym_RPAREN] = ACTIONS(973), + [anon_sym_GT2] = ACTIONS(971), + [anon_sym_DASH2] = ACTIONS(973), + [anon_sym_in2] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_EQ_GT] = ACTIONS(973), + [anon_sym_STAR2] = ACTIONS(971), + [anon_sym_and2] = ACTIONS(973), + [anon_sym_xor2] = ACTIONS(973), + [anon_sym_or2] = ACTIONS(973), + [anon_sym_not_DASHin2] = ACTIONS(973), + [anon_sym_starts_DASHwith2] = ACTIONS(973), + [anon_sym_ends_DASHwith2] = ACTIONS(973), + [anon_sym_EQ_EQ2] = ACTIONS(973), + [anon_sym_BANG_EQ2] = ACTIONS(973), + [anon_sym_LT2] = ACTIONS(971), + [anon_sym_LT_EQ2] = ACTIONS(973), + [anon_sym_GT_EQ2] = ACTIONS(973), + [anon_sym_EQ_TILDE2] = ACTIONS(973), + [anon_sym_BANG_TILDE2] = ACTIONS(973), + [anon_sym_STAR_STAR2] = ACTIONS(973), + [anon_sym_PLUS_PLUS2] = ACTIONS(973), + [anon_sym_SLASH2] = ACTIONS(971), + [anon_sym_mod2] = ACTIONS(973), + [anon_sym_SLASH_SLASH2] = ACTIONS(973), + [anon_sym_PLUS2] = ACTIONS(971), + [anon_sym_bit_DASHshl2] = ACTIONS(973), + [anon_sym_bit_DASHshr2] = ACTIONS(973), + [anon_sym_bit_DASHand2] = ACTIONS(973), + [anon_sym_bit_DASHxor2] = ACTIONS(973), + [anon_sym_bit_DASHor2] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(5017), + [anon_sym_err_GT] = ACTIONS(971), + [anon_sym_out_GT] = ACTIONS(971), + [anon_sym_e_GT] = ACTIONS(971), + [anon_sym_o_GT] = ACTIONS(971), + [anon_sym_err_PLUSout_GT] = ACTIONS(971), + [anon_sym_out_PLUSerr_GT] = ACTIONS(971), + [anon_sym_o_PLUSe_GT] = ACTIONS(971), + [anon_sym_e_PLUSo_GT] = ACTIONS(971), + [anon_sym_err_GT_GT] = ACTIONS(973), + [anon_sym_out_GT_GT] = ACTIONS(973), + [anon_sym_e_GT_GT] = ACTIONS(973), + [anon_sym_o_GT_GT] = ACTIONS(973), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4936), }, - [1691] = { - [sym_cell_path] = STATE(2127), - [sym_path] = STATE(1978), - [sym_comment] = STATE(1691), - [aux_sym_cell_path_repeat1] = STATE(1796), - [ts_builtin_sym_end] = ACTIONS(1771), - [sym__newline] = ACTIONS(1771), - [anon_sym_SEMI] = ACTIONS(1771), - [anon_sym_PIPE] = ACTIONS(1771), - [anon_sym_err_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_GT_PIPE] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), - [anon_sym_GT2] = ACTIONS(1769), - [anon_sym_DASH2] = ACTIONS(1771), - [anon_sym_in2] = ACTIONS(1771), - [anon_sym_STAR2] = ACTIONS(1769), - [anon_sym_and2] = ACTIONS(1771), - [anon_sym_xor2] = ACTIONS(1771), - [anon_sym_or2] = ACTIONS(1771), - [anon_sym_not_DASHin2] = ACTIONS(1771), - [anon_sym_starts_DASHwith2] = ACTIONS(1771), - [anon_sym_ends_DASHwith2] = ACTIONS(1771), - [anon_sym_EQ_EQ2] = ACTIONS(1771), - [anon_sym_BANG_EQ2] = ACTIONS(1771), - [anon_sym_LT2] = ACTIONS(1769), - [anon_sym_LT_EQ2] = ACTIONS(1771), - [anon_sym_GT_EQ2] = ACTIONS(1771), - [anon_sym_EQ_TILDE2] = ACTIONS(1771), - [anon_sym_BANG_TILDE2] = ACTIONS(1771), - [anon_sym_STAR_STAR2] = ACTIONS(1771), - [anon_sym_PLUS_PLUS2] = ACTIONS(1771), - [anon_sym_SLASH2] = ACTIONS(1769), - [anon_sym_mod2] = ACTIONS(1771), - [anon_sym_SLASH_SLASH2] = ACTIONS(1771), - [anon_sym_PLUS2] = ACTIONS(1769), - [anon_sym_bit_DASHshl2] = ACTIONS(1771), - [anon_sym_bit_DASHshr2] = ACTIONS(1771), - [anon_sym_bit_DASHand2] = ACTIONS(1771), - [anon_sym_bit_DASHxor2] = ACTIONS(1771), - [anon_sym_bit_DASHor2] = ACTIONS(1771), - [anon_sym_DOT_DOT2] = ACTIONS(1769), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), - [anon_sym_err_GT] = ACTIONS(1769), - [anon_sym_out_GT] = ACTIONS(1769), - [anon_sym_e_GT] = ACTIONS(1769), - [anon_sym_o_GT] = ACTIONS(1769), - [anon_sym_err_PLUSout_GT] = ACTIONS(1769), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), - [anon_sym_o_PLUSe_GT] = ACTIONS(1769), - [anon_sym_e_PLUSo_GT] = ACTIONS(1769), - [anon_sym_err_GT_GT] = ACTIONS(1771), - [anon_sym_out_GT_GT] = ACTIONS(1771), - [anon_sym_e_GT_GT] = ACTIONS(1771), - [anon_sym_o_GT_GT] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), + [1672] = { + [sym_comment] = STATE(1672), + [ts_builtin_sym_end] = ACTIONS(1004), + [sym__newline] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_err_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_GT_PIPE] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1004), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_QMARK2] = ACTIONS(1004), + [anon_sym_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT] = ACTIONS(1004), + [anon_sym_null] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1004), + [anon_sym_false] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1002), + [aux_sym__val_number_decimal_token2] = ACTIONS(1004), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_token1] = ACTIONS(1004), + [aux_sym__val_number_token2] = ACTIONS(1004), + [aux_sym__val_number_token3] = ACTIONS(1004), + [aux_sym__val_number_token4] = ACTIONS(1004), + [aux_sym__val_number_token5] = ACTIONS(1004), + [aux_sym__val_number_token6] = ACTIONS(1004), + [anon_sym_0b] = ACTIONS(1002), + [anon_sym_0o] = ACTIONS(1002), + [anon_sym_0x] = ACTIONS(1002), + [sym_val_date] = ACTIONS(1004), + [anon_sym_DQUOTE] = ACTIONS(1004), + [sym__str_single_quotes] = ACTIONS(1004), + [sym__str_back_ticks] = ACTIONS(1004), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1004), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1004), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1004), + [anon_sym_out_GT_GT] = ACTIONS(1004), + [anon_sym_e_GT_GT] = ACTIONS(1004), + [anon_sym_o_GT_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), + [aux_sym_unquoted_token1] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1004), }, - [1692] = { - [sym__expr_parenthesized_immediate] = STATE(7999), - [sym_comment] = STATE(1692), - [ts_builtin_sym_end] = ACTIONS(4979), - [sym__newline] = ACTIONS(4979), - [anon_sym_SEMI] = ACTIONS(4979), - [anon_sym_PIPE] = ACTIONS(4979), - [anon_sym_err_GT_PIPE] = ACTIONS(4979), - [anon_sym_out_GT_PIPE] = ACTIONS(4979), - [anon_sym_e_GT_PIPE] = ACTIONS(4979), - [anon_sym_o_GT_PIPE] = ACTIONS(4979), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4979), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4979), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4979), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4979), - [anon_sym_LBRACK] = ACTIONS(4979), - [anon_sym_LPAREN] = ACTIONS(4981), - [anon_sym_DOLLAR] = ACTIONS(4981), - [anon_sym_DASH_DASH] = ACTIONS(4979), - [anon_sym_DASH2] = ACTIONS(4981), - [anon_sym_LBRACE] = ACTIONS(4979), - [anon_sym_DOT_DOT] = ACTIONS(4981), - [anon_sym_LPAREN2] = ACTIONS(4249), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4979), - [anon_sym_DOT_DOT_LT] = ACTIONS(4979), - [anon_sym_null] = ACTIONS(4979), - [anon_sym_true] = ACTIONS(4979), - [anon_sym_false] = ACTIONS(4979), - [aux_sym__val_number_decimal_token1] = ACTIONS(4981), - [aux_sym__val_number_decimal_token2] = ACTIONS(4979), - [aux_sym__val_number_decimal_token3] = ACTIONS(4979), - [aux_sym__val_number_decimal_token4] = ACTIONS(4979), - [aux_sym__val_number_token1] = ACTIONS(4979), - [aux_sym__val_number_token2] = ACTIONS(4979), - [aux_sym__val_number_token3] = ACTIONS(4979), - [aux_sym__val_number_token4] = ACTIONS(4979), - [aux_sym__val_number_token5] = ACTIONS(4979), - [aux_sym__val_number_token6] = ACTIONS(4979), - [anon_sym_0b] = ACTIONS(4981), - [anon_sym_0o] = ACTIONS(4981), - [anon_sym_0x] = ACTIONS(4981), - [sym_val_date] = ACTIONS(4979), - [anon_sym_DQUOTE] = ACTIONS(4979), - [sym__str_single_quotes] = ACTIONS(4979), - [sym__str_back_ticks] = ACTIONS(4979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4979), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4979), - [anon_sym_err_GT] = ACTIONS(4981), - [anon_sym_out_GT] = ACTIONS(4981), - [anon_sym_e_GT] = ACTIONS(4981), - [anon_sym_o_GT] = ACTIONS(4981), - [anon_sym_err_PLUSout_GT] = ACTIONS(4981), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4981), - [anon_sym_o_PLUSe_GT] = ACTIONS(4981), - [anon_sym_e_PLUSo_GT] = ACTIONS(4981), - [anon_sym_err_GT_GT] = ACTIONS(4979), - [anon_sym_out_GT_GT] = ACTIONS(4979), - [anon_sym_e_GT_GT] = ACTIONS(4979), - [anon_sym_o_GT_GT] = ACTIONS(4979), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4979), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4979), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4979), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4979), - [aux_sym_unquoted_token1] = ACTIONS(4981), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4979), - }, - [1693] = { - [sym_comment] = STATE(1693), - [ts_builtin_sym_end] = ACTIONS(2250), - [sym__newline] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(2250), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_err_GT_PIPE] = ACTIONS(2250), - [anon_sym_out_GT_PIPE] = ACTIONS(2250), - [anon_sym_e_GT_PIPE] = ACTIONS(2250), - [anon_sym_o_GT_PIPE] = ACTIONS(2250), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2250), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2250), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2250), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2248), - [anon_sym_DOLLAR] = ACTIONS(2248), - [anon_sym_DASH_DASH] = ACTIONS(2248), - [anon_sym_DASH2] = ACTIONS(2248), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_DOT_DOT] = ACTIONS(2248), - [anon_sym_LPAREN2] = ACTIONS(2250), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2248), - [anon_sym_DOT_DOT_LT] = ACTIONS(2248), - [anon_sym_null] = ACTIONS(2248), - [anon_sym_true] = ACTIONS(2248), - [anon_sym_false] = ACTIONS(2248), - [aux_sym__val_number_decimal_token1] = ACTIONS(2248), - [aux_sym__val_number_decimal_token2] = ACTIONS(2248), - [aux_sym__val_number_decimal_token3] = ACTIONS(2248), - [aux_sym__val_number_decimal_token4] = ACTIONS(2248), - [aux_sym__val_number_token1] = ACTIONS(2248), - [aux_sym__val_number_token2] = ACTIONS(2248), - [aux_sym__val_number_token3] = ACTIONS(2248), - [aux_sym__val_number_token4] = ACTIONS(2248), - [aux_sym__val_number_token5] = ACTIONS(2248), - [aux_sym__val_number_token6] = ACTIONS(2248), - [anon_sym_0b] = ACTIONS(2248), - [anon_sym_0o] = ACTIONS(2248), - [anon_sym_0x] = ACTIONS(2248), - [sym_val_date] = ACTIONS(2248), - [anon_sym_DQUOTE] = ACTIONS(2250), - [sym__str_single_quotes] = ACTIONS(2250), - [sym__str_back_ticks] = ACTIONS(2250), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2250), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2250), - [anon_sym_err_GT] = ACTIONS(2248), - [anon_sym_out_GT] = ACTIONS(2248), - [anon_sym_e_GT] = ACTIONS(2248), - [anon_sym_o_GT] = ACTIONS(2248), - [anon_sym_err_PLUSout_GT] = ACTIONS(2248), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2248), - [anon_sym_o_PLUSe_GT] = ACTIONS(2248), - [anon_sym_e_PLUSo_GT] = ACTIONS(2248), - [anon_sym_err_GT_GT] = ACTIONS(2248), - [anon_sym_out_GT_GT] = ACTIONS(2248), - [anon_sym_e_GT_GT] = ACTIONS(2248), - [anon_sym_o_GT_GT] = ACTIONS(2248), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2248), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2248), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2248), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2248), - [aux_sym_unquoted_token1] = ACTIONS(2248), - [aux_sym_unquoted_token4] = ACTIONS(2248), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2250), - }, - [1694] = { - [sym_comment] = STATE(1694), + [1673] = { + [sym_comment] = STATE(1673), [sym__newline] = ACTIONS(992), [anon_sym_SEMI] = ACTIONS(992), [anon_sym_PIPE] = ACTIONS(992), @@ -229370,209 +228266,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), [anon_sym_POUND] = ACTIONS(247), }, - [1695] = { - [sym_comment] = STATE(1695), - [sym__newline] = ACTIONS(2210), - [anon_sym_SEMI] = ACTIONS(2210), - [anon_sym_PIPE] = ACTIONS(2210), - [anon_sym_err_GT_PIPE] = ACTIONS(2210), - [anon_sym_out_GT_PIPE] = ACTIONS(2210), - [anon_sym_e_GT_PIPE] = ACTIONS(2210), - [anon_sym_o_GT_PIPE] = ACTIONS(2210), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2210), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2210), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2210), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2210), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_LPAREN] = ACTIONS(2210), - [anon_sym_RPAREN] = ACTIONS(2210), - [anon_sym_DOLLAR] = ACTIONS(2206), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_DASH2] = ACTIONS(2206), - [anon_sym_LBRACE] = ACTIONS(2210), - [anon_sym_RBRACE] = ACTIONS(2210), - [anon_sym_DOT_DOT] = ACTIONS(2206), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2206), - [anon_sym_DOT_DOT_LT] = ACTIONS(2206), - [anon_sym_null] = ACTIONS(2206), - [anon_sym_true] = ACTIONS(2206), - [anon_sym_false] = ACTIONS(2206), - [aux_sym__val_number_decimal_token1] = ACTIONS(2206), - [aux_sym__val_number_decimal_token2] = ACTIONS(2206), - [aux_sym__val_number_decimal_token3] = ACTIONS(2206), - [aux_sym__val_number_decimal_token4] = ACTIONS(2206), - [aux_sym__val_number_token1] = ACTIONS(2206), - [aux_sym__val_number_token2] = ACTIONS(2206), - [aux_sym__val_number_token3] = ACTIONS(2206), - [aux_sym__val_number_token4] = ACTIONS(2206), - [aux_sym__val_number_token5] = ACTIONS(2206), - [aux_sym__val_number_token6] = ACTIONS(2206), - [anon_sym_0b] = ACTIONS(2206), - [anon_sym_0o] = ACTIONS(2206), - [anon_sym_0x] = ACTIONS(2206), - [sym_val_date] = ACTIONS(2206), - [anon_sym_DQUOTE] = ACTIONS(2210), - [sym__str_single_quotes] = ACTIONS(2210), - [sym__str_back_ticks] = ACTIONS(2210), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2210), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2210), - [anon_sym_err_GT] = ACTIONS(2206), - [anon_sym_out_GT] = ACTIONS(2206), - [anon_sym_e_GT] = ACTIONS(2206), - [anon_sym_o_GT] = ACTIONS(2206), - [anon_sym_err_PLUSout_GT] = ACTIONS(2206), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2206), - [anon_sym_o_PLUSe_GT] = ACTIONS(2206), - [anon_sym_e_PLUSo_GT] = ACTIONS(2206), - [anon_sym_err_GT_GT] = ACTIONS(2206), - [anon_sym_out_GT_GT] = ACTIONS(2206), - [anon_sym_e_GT_GT] = ACTIONS(2206), - [anon_sym_o_GT_GT] = ACTIONS(2206), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2206), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2206), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2206), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2206), - [aux_sym_unquoted_token1] = ACTIONS(2206), - [aux_sym_unquoted_token4] = ACTIONS(2212), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2210), - }, - [1696] = { - [sym_cell_path] = STATE(2128), - [sym_path] = STATE(1978), - [sym_comment] = STATE(1696), - [aux_sym_cell_path_repeat1] = STATE(1796), - [ts_builtin_sym_end] = ACTIONS(963), - [sym__newline] = ACTIONS(963), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(963), - [anon_sym_err_GT_PIPE] = ACTIONS(963), - [anon_sym_out_GT_PIPE] = ACTIONS(963), - [anon_sym_e_GT_PIPE] = ACTIONS(963), - [anon_sym_o_GT_PIPE] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), - [anon_sym_GT2] = ACTIONS(961), - [anon_sym_DASH2] = ACTIONS(963), - [anon_sym_in2] = ACTIONS(963), - [anon_sym_STAR2] = ACTIONS(961), - [anon_sym_and2] = ACTIONS(963), - [anon_sym_xor2] = ACTIONS(963), - [anon_sym_or2] = ACTIONS(963), - [anon_sym_not_DASHin2] = ACTIONS(963), - [anon_sym_starts_DASHwith2] = ACTIONS(963), - [anon_sym_ends_DASHwith2] = ACTIONS(963), - [anon_sym_EQ_EQ2] = ACTIONS(963), - [anon_sym_BANG_EQ2] = ACTIONS(963), - [anon_sym_LT2] = ACTIONS(961), - [anon_sym_LT_EQ2] = ACTIONS(963), - [anon_sym_GT_EQ2] = ACTIONS(963), - [anon_sym_EQ_TILDE2] = ACTIONS(963), - [anon_sym_BANG_TILDE2] = ACTIONS(963), - [anon_sym_STAR_STAR2] = ACTIONS(963), - [anon_sym_PLUS_PLUS2] = ACTIONS(963), - [anon_sym_SLASH2] = ACTIONS(961), - [anon_sym_mod2] = ACTIONS(963), - [anon_sym_SLASH_SLASH2] = ACTIONS(963), - [anon_sym_PLUS2] = ACTIONS(961), - [anon_sym_bit_DASHshl2] = ACTIONS(963), - [anon_sym_bit_DASHshr2] = ACTIONS(963), - [anon_sym_bit_DASHand2] = ACTIONS(963), - [anon_sym_bit_DASHxor2] = ACTIONS(963), - [anon_sym_bit_DASHor2] = ACTIONS(963), - [anon_sym_DOT_DOT2] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(5049), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), - [anon_sym_DOT_DOT_LT2] = ACTIONS(963), - [anon_sym_err_GT] = ACTIONS(961), - [anon_sym_out_GT] = ACTIONS(961), - [anon_sym_e_GT] = ACTIONS(961), - [anon_sym_o_GT] = ACTIONS(961), - [anon_sym_err_PLUSout_GT] = ACTIONS(961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(961), - [anon_sym_o_PLUSe_GT] = ACTIONS(961), - [anon_sym_e_PLUSo_GT] = ACTIONS(961), - [anon_sym_err_GT_GT] = ACTIONS(963), - [anon_sym_out_GT_GT] = ACTIONS(963), - [anon_sym_e_GT_GT] = ACTIONS(963), - [anon_sym_o_GT_GT] = ACTIONS(963), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), + [1674] = { + [sym_comment] = STATE(1674), + [sym__newline] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_err_GT_PIPE] = ACTIONS(996), + [anon_sym_out_GT_PIPE] = ACTIONS(996), + [anon_sym_e_GT_PIPE] = ACTIONS(996), + [anon_sym_o_GT_PIPE] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), + [anon_sym_RPAREN] = ACTIONS(996), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(996), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_QMARK2] = ACTIONS(996), + [anon_sym_and2] = ACTIONS(996), + [anon_sym_xor2] = ACTIONS(996), + [anon_sym_or2] = ACTIONS(996), + [anon_sym_not_DASHin2] = ACTIONS(996), + [anon_sym_starts_DASHwith2] = ACTIONS(996), + [anon_sym_ends_DASHwith2] = ACTIONS(996), + [anon_sym_EQ_EQ2] = ACTIONS(996), + [anon_sym_BANG_EQ2] = ACTIONS(996), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(996), + [anon_sym_GT_EQ2] = ACTIONS(996), + [anon_sym_EQ_TILDE2] = ACTIONS(996), + [anon_sym_BANG_TILDE2] = ACTIONS(996), + [anon_sym_STAR_STAR2] = ACTIONS(996), + [anon_sym_PLUS_PLUS2] = ACTIONS(996), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(996), + [anon_sym_SLASH_SLASH2] = ACTIONS(996), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(996), + [anon_sym_bit_DASHshr2] = ACTIONS(996), + [anon_sym_bit_DASHand2] = ACTIONS(996), + [anon_sym_bit_DASHxor2] = ACTIONS(996), + [anon_sym_bit_DASHor2] = ACTIONS(996), + [anon_sym_DOT_DOT2] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), + [anon_sym_DOT_DOT_LT2] = ACTIONS(996), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(996), + [anon_sym_out_GT_GT] = ACTIONS(996), + [anon_sym_e_GT_GT] = ACTIONS(996), + [anon_sym_o_GT_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), [anon_sym_POUND] = ACTIONS(247), }, - [1697] = { - [sym_cmd_identifier] = STATE(4195), - [sym__command_name] = STATE(6642), - [sym_scope_pattern] = STATE(6240), - [sym_wild_card] = STATE(6698), - [sym_command_list] = STATE(6703), - [sym__val_number_decimal] = STATE(3762), - [sym_val_string] = STATE(4159), - [sym__raw_str] = STATE(4492), - [sym__str_double_quotes] = STATE(4492), - [sym_comment] = STATE(1697), - [aux_sym_cmd_identifier_token1] = ACTIONS(5033), - [aux_sym_cmd_identifier_token2] = ACTIONS(5035), - [aux_sym_cmd_identifier_token3] = ACTIONS(5035), - [aux_sym_cmd_identifier_token4] = ACTIONS(5035), - [aux_sym_cmd_identifier_token5] = ACTIONS(5035), - [aux_sym_cmd_identifier_token6] = ACTIONS(5035), - [aux_sym_cmd_identifier_token7] = ACTIONS(5035), - [aux_sym_cmd_identifier_token8] = ACTIONS(5035), - [aux_sym_cmd_identifier_token9] = ACTIONS(5033), - [aux_sym_cmd_identifier_token10] = ACTIONS(5035), - [aux_sym_cmd_identifier_token11] = ACTIONS(5035), - [aux_sym_cmd_identifier_token12] = ACTIONS(5035), - [aux_sym_cmd_identifier_token13] = ACTIONS(5033), - [aux_sym_cmd_identifier_token14] = ACTIONS(5035), - [aux_sym_cmd_identifier_token15] = ACTIONS(5033), - [aux_sym_cmd_identifier_token16] = ACTIONS(5035), - [aux_sym_cmd_identifier_token17] = ACTIONS(5035), - [aux_sym_cmd_identifier_token18] = ACTIONS(5035), - [aux_sym_cmd_identifier_token19] = ACTIONS(5035), - [aux_sym_cmd_identifier_token20] = ACTIONS(5035), - [aux_sym_cmd_identifier_token21] = ACTIONS(5035), - [aux_sym_cmd_identifier_token22] = ACTIONS(5035), - [aux_sym_cmd_identifier_token23] = ACTIONS(5035), - [aux_sym_cmd_identifier_token24] = ACTIONS(5035), - [aux_sym_cmd_identifier_token25] = ACTIONS(5035), - [aux_sym_cmd_identifier_token26] = ACTIONS(5035), - [aux_sym_cmd_identifier_token27] = ACTIONS(5035), - [aux_sym_cmd_identifier_token28] = ACTIONS(5035), - [aux_sym_cmd_identifier_token29] = ACTIONS(5035), - [aux_sym_cmd_identifier_token30] = ACTIONS(5035), - [aux_sym_cmd_identifier_token31] = ACTIONS(5035), - [aux_sym_cmd_identifier_token32] = ACTIONS(5035), - [aux_sym_cmd_identifier_token33] = ACTIONS(5035), - [aux_sym_cmd_identifier_token34] = ACTIONS(5033), - [aux_sym_cmd_identifier_token35] = ACTIONS(5035), - [aux_sym_cmd_identifier_token36] = ACTIONS(5035), - [aux_sym_cmd_identifier_token37] = ACTIONS(5035), - [aux_sym_cmd_identifier_token38] = ACTIONS(5033), - [aux_sym_cmd_identifier_token39] = ACTIONS(5035), - [aux_sym_cmd_identifier_token40] = ACTIONS(5035), - [sym__newline] = ACTIONS(5063), - [anon_sym_SEMI] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5063), - [anon_sym_RBRACE] = ACTIONS(5063), - [anon_sym_STAR2] = ACTIONS(5041), - [aux_sym__val_number_decimal_token1] = ACTIONS(5043), - [aux_sym__val_number_decimal_token2] = ACTIONS(5043), - [aux_sym__val_number_decimal_token3] = ACTIONS(5045), - [aux_sym__val_number_decimal_token4] = ACTIONS(5047), - [anon_sym_DQUOTE] = ACTIONS(4009), - [sym__str_single_quotes] = ACTIONS(4011), - [sym__str_back_ticks] = ACTIONS(4011), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4013), - }, - [1698] = { - [sym_comment] = STATE(1698), + [1675] = { + [sym_comment] = STATE(1675), [sym__newline] = ACTIONS(1000), [anon_sym_SEMI] = ACTIONS(1000), [anon_sym_PIPE] = ACTIONS(1000), @@ -229638,211 +228400,948 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), [anon_sym_POUND] = ACTIONS(247), }, - [1699] = { - [sym_comment] = STATE(1699), - [ts_builtin_sym_end] = ACTIONS(996), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_LBRACK] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(994), - [anon_sym_DASH_DASH] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_LBRACE] = ACTIONS(996), - [anon_sym_DOT_DOT] = ACTIONS(994), - [anon_sym_QMARK2] = ACTIONS(996), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ] = ACTIONS(996), - [anon_sym_DOT_DOT_LT] = ACTIONS(996), - [anon_sym_null] = ACTIONS(996), - [anon_sym_true] = ACTIONS(996), - [anon_sym_false] = ACTIONS(996), - [aux_sym__val_number_decimal_token1] = ACTIONS(994), - [aux_sym__val_number_decimal_token2] = ACTIONS(996), - [aux_sym__val_number_decimal_token3] = ACTIONS(996), - [aux_sym__val_number_decimal_token4] = ACTIONS(996), - [aux_sym__val_number_token1] = ACTIONS(996), - [aux_sym__val_number_token2] = ACTIONS(996), - [aux_sym__val_number_token3] = ACTIONS(996), - [aux_sym__val_number_token4] = ACTIONS(996), - [aux_sym__val_number_token5] = ACTIONS(996), - [aux_sym__val_number_token6] = ACTIONS(996), - [anon_sym_0b] = ACTIONS(994), - [anon_sym_0o] = ACTIONS(994), - [anon_sym_0x] = ACTIONS(994), - [sym_val_date] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(996), - [sym__str_single_quotes] = ACTIONS(996), - [sym__str_back_ticks] = ACTIONS(996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(994), - [anon_sym_out_GT] = ACTIONS(994), - [anon_sym_e_GT] = ACTIONS(994), - [anon_sym_o_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT] = ACTIONS(994), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [aux_sym_unquoted_token1] = ACTIONS(994), + [1676] = { + [sym_comment] = STATE(1676), + [sym__newline] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_err_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_GT_PIPE] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), + [anon_sym_RPAREN] = ACTIONS(1004), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1004), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_QMARK2] = ACTIONS(1004), + [anon_sym_and2] = ACTIONS(1004), + [anon_sym_xor2] = ACTIONS(1004), + [anon_sym_or2] = ACTIONS(1004), + [anon_sym_not_DASHin2] = ACTIONS(1004), + [anon_sym_starts_DASHwith2] = ACTIONS(1004), + [anon_sym_ends_DASHwith2] = ACTIONS(1004), + [anon_sym_EQ_EQ2] = ACTIONS(1004), + [anon_sym_BANG_EQ2] = ACTIONS(1004), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1004), + [anon_sym_GT_EQ2] = ACTIONS(1004), + [anon_sym_EQ_TILDE2] = ACTIONS(1004), + [anon_sym_BANG_TILDE2] = ACTIONS(1004), + [anon_sym_STAR_STAR2] = ACTIONS(1004), + [anon_sym_PLUS_PLUS2] = ACTIONS(1004), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1004), + [anon_sym_SLASH_SLASH2] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1004), + [anon_sym_bit_DASHshr2] = ACTIONS(1004), + [anon_sym_bit_DASHand2] = ACTIONS(1004), + [anon_sym_bit_DASHxor2] = ACTIONS(1004), + [anon_sym_bit_DASHor2] = ACTIONS(1004), + [anon_sym_DOT_DOT2] = ACTIONS(1002), + [anon_sym_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1004), + [anon_sym_out_GT_GT] = ACTIONS(1004), + [anon_sym_e_GT_GT] = ACTIONS(1004), + [anon_sym_o_GT_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(996), }, - [1700] = { - [sym__expr_parenthesized_immediate] = STATE(7999), - [sym_comment] = STATE(1700), - [ts_builtin_sym_end] = ACTIONS(4983), - [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_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(4249), - [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(247), - [sym_raw_string_begin] = ACTIONS(4983), + [1677] = { + [sym_cell_path] = STATE(2124), + [sym_path] = STATE(1882), + [sym_comment] = STATE(1677), + [aux_sym_cell_path_repeat1] = STATE(1690), + [sym__newline] = ACTIONS(1865), + [anon_sym_SEMI] = ACTIONS(1865), + [anon_sym_PIPE] = ACTIONS(1865), + [anon_sym_err_GT_PIPE] = ACTIONS(1865), + [anon_sym_out_GT_PIPE] = ACTIONS(1865), + [anon_sym_e_GT_PIPE] = ACTIONS(1865), + [anon_sym_o_GT_PIPE] = ACTIONS(1865), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1865), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1865), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1865), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1865), + [anon_sym_RPAREN] = ACTIONS(1865), + [anon_sym_GT2] = ACTIONS(1863), + [anon_sym_DASH2] = ACTIONS(1865), + [anon_sym_in2] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_RBRACE] = ACTIONS(1865), + [anon_sym_EQ_GT] = ACTIONS(1865), + [anon_sym_STAR2] = ACTIONS(1863), + [anon_sym_and2] = ACTIONS(1865), + [anon_sym_xor2] = ACTIONS(1865), + [anon_sym_or2] = ACTIONS(1865), + [anon_sym_not_DASHin2] = ACTIONS(1865), + [anon_sym_starts_DASHwith2] = ACTIONS(1865), + [anon_sym_ends_DASHwith2] = ACTIONS(1865), + [anon_sym_EQ_EQ2] = ACTIONS(1865), + [anon_sym_BANG_EQ2] = ACTIONS(1865), + [anon_sym_LT2] = ACTIONS(1863), + [anon_sym_LT_EQ2] = ACTIONS(1865), + [anon_sym_GT_EQ2] = ACTIONS(1865), + [anon_sym_EQ_TILDE2] = ACTIONS(1865), + [anon_sym_BANG_TILDE2] = ACTIONS(1865), + [anon_sym_STAR_STAR2] = ACTIONS(1865), + [anon_sym_PLUS_PLUS2] = ACTIONS(1865), + [anon_sym_SLASH2] = ACTIONS(1863), + [anon_sym_mod2] = ACTIONS(1865), + [anon_sym_SLASH_SLASH2] = ACTIONS(1865), + [anon_sym_PLUS2] = ACTIONS(1863), + [anon_sym_bit_DASHshl2] = ACTIONS(1865), + [anon_sym_bit_DASHshr2] = ACTIONS(1865), + [anon_sym_bit_DASHand2] = ACTIONS(1865), + [anon_sym_bit_DASHxor2] = ACTIONS(1865), + [anon_sym_bit_DASHor2] = ACTIONS(1865), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_err_GT] = ACTIONS(1863), + [anon_sym_out_GT] = ACTIONS(1863), + [anon_sym_e_GT] = ACTIONS(1863), + [anon_sym_o_GT] = ACTIONS(1863), + [anon_sym_err_PLUSout_GT] = ACTIONS(1863), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1863), + [anon_sym_o_PLUSe_GT] = ACTIONS(1863), + [anon_sym_e_PLUSo_GT] = ACTIONS(1863), + [anon_sym_err_GT_GT] = ACTIONS(1865), + [anon_sym_out_GT_GT] = ACTIONS(1865), + [anon_sym_e_GT_GT] = ACTIONS(1865), + [anon_sym_o_GT_GT] = ACTIONS(1865), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1865), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1865), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1865), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1865), + [anon_sym_POUND] = ACTIONS(247), + }, + [1678] = { + [sym_comment] = STATE(1678), + [sym__newline] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_err_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_GT_PIPE] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1008), + [anon_sym_RPAREN] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1008), + [anon_sym_DASH2] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1008), + [anon_sym_RBRACE] = ACTIONS(1008), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT] = ACTIONS(1008), + [anon_sym_null] = ACTIONS(1008), + [anon_sym_true] = ACTIONS(1008), + [anon_sym_false] = ACTIONS(1008), + [aux_sym__val_number_decimal_token1] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1008), + [aux_sym__val_number_decimal_token3] = ACTIONS(1008), + [aux_sym__val_number_decimal_token4] = ACTIONS(1008), + [aux_sym__val_number_token1] = ACTIONS(1008), + [aux_sym__val_number_token2] = ACTIONS(1008), + [aux_sym__val_number_token3] = ACTIONS(1008), + [aux_sym__val_number_token4] = ACTIONS(1008), + [aux_sym__val_number_token5] = ACTIONS(1008), + [aux_sym__val_number_token6] = ACTIONS(1008), + [anon_sym_0b] = ACTIONS(1006), + [anon_sym_0o] = ACTIONS(1006), + [anon_sym_0x] = ACTIONS(1006), + [sym_val_date] = ACTIONS(1008), + [anon_sym_DQUOTE] = ACTIONS(1008), + [sym__str_single_quotes] = ACTIONS(1008), + [sym__str_back_ticks] = ACTIONS(1008), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1008), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1008), + [anon_sym_err_GT] = ACTIONS(1006), + [anon_sym_out_GT] = ACTIONS(1006), + [anon_sym_e_GT] = ACTIONS(1006), + [anon_sym_o_GT] = ACTIONS(1006), + [anon_sym_err_PLUSout_GT] = ACTIONS(1006), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), + [anon_sym_o_PLUSe_GT] = ACTIONS(1006), + [anon_sym_e_PLUSo_GT] = ACTIONS(1006), + [anon_sym_err_GT_GT] = ACTIONS(1008), + [anon_sym_out_GT_GT] = ACTIONS(1008), + [anon_sym_e_GT_GT] = ACTIONS(1008), + [anon_sym_o_GT_GT] = ACTIONS(1008), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), + [aux_sym_unquoted_token1] = ACTIONS(1006), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1008), + }, + [1679] = { + [sym__expr_parenthesized_immediate] = STATE(8105), + [sym_comment] = STATE(1679), + [ts_builtin_sym_end] = ACTIONS(4920), + [sym__newline] = ACTIONS(4920), + [anon_sym_SEMI] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4920), + [anon_sym_err_GT_PIPE] = ACTIONS(4920), + [anon_sym_out_GT_PIPE] = ACTIONS(4920), + [anon_sym_e_GT_PIPE] = ACTIONS(4920), + [anon_sym_o_GT_PIPE] = ACTIONS(4920), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4920), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4920), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4920), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4920), + [anon_sym_LPAREN] = ACTIONS(4922), + [anon_sym_DOLLAR] = ACTIONS(4922), + [anon_sym_DASH_DASH] = ACTIONS(4920), + [anon_sym_DASH2] = ACTIONS(4922), + [anon_sym_LBRACE] = ACTIONS(4920), + [anon_sym_DOT_DOT] = ACTIONS(4922), + [anon_sym_LPAREN2] = ACTIONS(4543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4920), + [anon_sym_DOT_DOT_LT] = ACTIONS(4920), + [anon_sym_null] = ACTIONS(4920), + [anon_sym_true] = ACTIONS(4920), + [anon_sym_false] = ACTIONS(4920), + [aux_sym__val_number_decimal_token1] = ACTIONS(4922), + [aux_sym__val_number_decimal_token2] = ACTIONS(4920), + [aux_sym__val_number_decimal_token3] = ACTIONS(4920), + [aux_sym__val_number_decimal_token4] = ACTIONS(4920), + [aux_sym__val_number_token1] = ACTIONS(4920), + [aux_sym__val_number_token2] = ACTIONS(4920), + [aux_sym__val_number_token3] = ACTIONS(4920), + [aux_sym__val_number_token4] = ACTIONS(4920), + [aux_sym__val_number_token5] = ACTIONS(4920), + [aux_sym__val_number_token6] = ACTIONS(4920), + [anon_sym_0b] = ACTIONS(4922), + [anon_sym_0o] = ACTIONS(4922), + [anon_sym_0x] = ACTIONS(4922), + [sym_val_date] = ACTIONS(4920), + [anon_sym_DQUOTE] = ACTIONS(4920), + [sym__str_single_quotes] = ACTIONS(4920), + [sym__str_back_ticks] = ACTIONS(4920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4920), + [anon_sym_err_GT] = ACTIONS(4922), + [anon_sym_out_GT] = ACTIONS(4922), + [anon_sym_e_GT] = ACTIONS(4922), + [anon_sym_o_GT] = ACTIONS(4922), + [anon_sym_err_PLUSout_GT] = ACTIONS(4922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4922), + [anon_sym_o_PLUSe_GT] = ACTIONS(4922), + [anon_sym_e_PLUSo_GT] = ACTIONS(4922), + [anon_sym_err_GT_GT] = ACTIONS(4920), + [anon_sym_out_GT_GT] = ACTIONS(4920), + [anon_sym_e_GT_GT] = ACTIONS(4920), + [anon_sym_o_GT_GT] = ACTIONS(4920), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4920), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4920), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4920), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4920), + [aux_sym_unquoted_token1] = ACTIONS(4922), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4920), + }, + [1680] = { + [sym__expr_parenthesized_immediate] = STATE(8105), + [sym_comment] = STATE(1680), + [ts_builtin_sym_end] = ACTIONS(4926), + [sym__newline] = ACTIONS(4926), + [anon_sym_SEMI] = ACTIONS(4926), + [anon_sym_PIPE] = ACTIONS(4926), + [anon_sym_err_GT_PIPE] = ACTIONS(4926), + [anon_sym_out_GT_PIPE] = ACTIONS(4926), + [anon_sym_e_GT_PIPE] = ACTIONS(4926), + [anon_sym_o_GT_PIPE] = ACTIONS(4926), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4926), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4926), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4926), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4926), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_LPAREN] = ACTIONS(4928), + [anon_sym_DOLLAR] = ACTIONS(4928), + [anon_sym_DASH_DASH] = ACTIONS(4926), + [anon_sym_DASH2] = ACTIONS(4928), + [anon_sym_LBRACE] = ACTIONS(4926), + [anon_sym_DOT_DOT] = ACTIONS(4928), + [anon_sym_LPAREN2] = ACTIONS(4543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4926), + [anon_sym_DOT_DOT_LT] = ACTIONS(4926), + [anon_sym_null] = ACTIONS(4926), + [anon_sym_true] = ACTIONS(4926), + [anon_sym_false] = ACTIONS(4926), + [aux_sym__val_number_decimal_token1] = ACTIONS(4928), + [aux_sym__val_number_decimal_token2] = ACTIONS(4926), + [aux_sym__val_number_decimal_token3] = ACTIONS(4926), + [aux_sym__val_number_decimal_token4] = ACTIONS(4926), + [aux_sym__val_number_token1] = ACTIONS(4926), + [aux_sym__val_number_token2] = ACTIONS(4926), + [aux_sym__val_number_token3] = ACTIONS(4926), + [aux_sym__val_number_token4] = ACTIONS(4926), + [aux_sym__val_number_token5] = ACTIONS(4926), + [aux_sym__val_number_token6] = ACTIONS(4926), + [anon_sym_0b] = ACTIONS(4928), + [anon_sym_0o] = ACTIONS(4928), + [anon_sym_0x] = ACTIONS(4928), + [sym_val_date] = ACTIONS(4926), + [anon_sym_DQUOTE] = ACTIONS(4926), + [sym__str_single_quotes] = ACTIONS(4926), + [sym__str_back_ticks] = ACTIONS(4926), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4926), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4926), + [anon_sym_err_GT] = ACTIONS(4928), + [anon_sym_out_GT] = ACTIONS(4928), + [anon_sym_e_GT] = ACTIONS(4928), + [anon_sym_o_GT] = ACTIONS(4928), + [anon_sym_err_PLUSout_GT] = ACTIONS(4928), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4928), + [anon_sym_o_PLUSe_GT] = ACTIONS(4928), + [anon_sym_e_PLUSo_GT] = ACTIONS(4928), + [anon_sym_err_GT_GT] = ACTIONS(4926), + [anon_sym_out_GT_GT] = ACTIONS(4926), + [anon_sym_e_GT_GT] = ACTIONS(4926), + [anon_sym_o_GT_GT] = ACTIONS(4926), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4926), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4926), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4926), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4926), + [aux_sym_unquoted_token1] = ACTIONS(4928), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4926), + }, + [1681] = { + [sym_comment] = STATE(1681), + [sym__newline] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1012), + [anon_sym_PIPE] = ACTIONS(1012), + [anon_sym_err_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_GT_PIPE] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(1012), + [anon_sym_LPAREN] = ACTIONS(1012), + [anon_sym_RPAREN] = ACTIONS(1012), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1012), + [anon_sym_DASH2] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1012), + [anon_sym_RBRACE] = ACTIONS(1012), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1012), + [anon_sym_DOT_DOT_LT] = ACTIONS(1012), + [anon_sym_null] = ACTIONS(1012), + [anon_sym_true] = ACTIONS(1012), + [anon_sym_false] = ACTIONS(1012), + [aux_sym__val_number_decimal_token1] = ACTIONS(1010), + [aux_sym__val_number_decimal_token2] = ACTIONS(1012), + [aux_sym__val_number_decimal_token3] = ACTIONS(1012), + [aux_sym__val_number_decimal_token4] = ACTIONS(1012), + [aux_sym__val_number_token1] = ACTIONS(1012), + [aux_sym__val_number_token2] = ACTIONS(1012), + [aux_sym__val_number_token3] = ACTIONS(1012), + [aux_sym__val_number_token4] = ACTIONS(1012), + [aux_sym__val_number_token5] = ACTIONS(1012), + [aux_sym__val_number_token6] = ACTIONS(1012), + [anon_sym_0b] = ACTIONS(1010), + [anon_sym_0o] = ACTIONS(1010), + [anon_sym_0x] = ACTIONS(1010), + [sym_val_date] = ACTIONS(1012), + [anon_sym_DQUOTE] = ACTIONS(1012), + [sym__str_single_quotes] = ACTIONS(1012), + [sym__str_back_ticks] = ACTIONS(1012), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1012), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1012), + [anon_sym_err_GT] = ACTIONS(1010), + [anon_sym_out_GT] = ACTIONS(1010), + [anon_sym_e_GT] = ACTIONS(1010), + [anon_sym_o_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT] = ACTIONS(1010), + [anon_sym_err_GT_GT] = ACTIONS(1012), + [anon_sym_out_GT_GT] = ACTIONS(1012), + [anon_sym_e_GT_GT] = ACTIONS(1012), + [anon_sym_o_GT_GT] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), + [aux_sym_unquoted_token1] = ACTIONS(1010), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1012), + }, + [1682] = { + [sym_comment] = STATE(1682), + [sym__newline] = ACTIONS(1016), + [anon_sym_SEMI] = ACTIONS(1016), + [anon_sym_PIPE] = ACTIONS(1016), + [anon_sym_err_GT_PIPE] = ACTIONS(1016), + [anon_sym_out_GT_PIPE] = ACTIONS(1016), + [anon_sym_e_GT_PIPE] = ACTIONS(1016), + [anon_sym_o_GT_PIPE] = ACTIONS(1016), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(1016), + [anon_sym_LPAREN] = ACTIONS(1016), + [anon_sym_RPAREN] = ACTIONS(1016), + [anon_sym_DOLLAR] = ACTIONS(1014), + [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_DASH2] = ACTIONS(1014), + [anon_sym_LBRACE] = ACTIONS(1016), + [anon_sym_RBRACE] = ACTIONS(1016), + [anon_sym_DOT_DOT] = ACTIONS(1014), + [anon_sym_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1016), + [anon_sym_DOT_DOT_LT] = ACTIONS(1016), + [anon_sym_null] = ACTIONS(1016), + [anon_sym_true] = ACTIONS(1016), + [anon_sym_false] = ACTIONS(1016), + [aux_sym__val_number_decimal_token1] = ACTIONS(1014), + [aux_sym__val_number_decimal_token2] = ACTIONS(1016), + [aux_sym__val_number_decimal_token3] = ACTIONS(1016), + [aux_sym__val_number_decimal_token4] = ACTIONS(1016), + [aux_sym__val_number_token1] = ACTIONS(1016), + [aux_sym__val_number_token2] = ACTIONS(1016), + [aux_sym__val_number_token3] = ACTIONS(1016), + [aux_sym__val_number_token4] = ACTIONS(1016), + [aux_sym__val_number_token5] = ACTIONS(1016), + [aux_sym__val_number_token6] = ACTIONS(1016), + [anon_sym_0b] = ACTIONS(1014), + [anon_sym_0o] = ACTIONS(1014), + [anon_sym_0x] = ACTIONS(1014), + [sym_val_date] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1016), + [sym__str_single_quotes] = ACTIONS(1016), + [sym__str_back_ticks] = ACTIONS(1016), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1016), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1016), + [anon_sym_err_GT] = ACTIONS(1014), + [anon_sym_out_GT] = ACTIONS(1014), + [anon_sym_e_GT] = ACTIONS(1014), + [anon_sym_o_GT] = ACTIONS(1014), + [anon_sym_err_PLUSout_GT] = ACTIONS(1014), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), + [anon_sym_o_PLUSe_GT] = ACTIONS(1014), + [anon_sym_e_PLUSo_GT] = ACTIONS(1014), + [anon_sym_err_GT_GT] = ACTIONS(1016), + [anon_sym_out_GT_GT] = ACTIONS(1016), + [anon_sym_e_GT_GT] = ACTIONS(1016), + [anon_sym_o_GT_GT] = ACTIONS(1016), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), + [aux_sym_unquoted_token1] = ACTIONS(1014), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1016), + }, + [1683] = { + [sym_cell_path] = STATE(2096), + [sym_path] = STATE(2080), + [sym_comment] = STATE(1683), + [aux_sym_cell_path_repeat1] = STATE(1816), + [ts_builtin_sym_end] = ACTIONS(1737), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_GT2] = ACTIONS(1733), + [anon_sym_DASH2] = ACTIONS(1737), + [anon_sym_in2] = ACTIONS(1737), + [anon_sym_STAR2] = ACTIONS(1733), + [anon_sym_and2] = ACTIONS(1737), + [anon_sym_xor2] = ACTIONS(1737), + [anon_sym_or2] = ACTIONS(1737), + [anon_sym_not_DASHin2] = ACTIONS(1737), + [anon_sym_starts_DASHwith2] = ACTIONS(1737), + [anon_sym_ends_DASHwith2] = ACTIONS(1737), + [anon_sym_EQ_EQ2] = ACTIONS(1737), + [anon_sym_BANG_EQ2] = ACTIONS(1737), + [anon_sym_LT2] = ACTIONS(1733), + [anon_sym_LT_EQ2] = ACTIONS(1737), + [anon_sym_GT_EQ2] = ACTIONS(1737), + [anon_sym_EQ_TILDE2] = ACTIONS(1737), + [anon_sym_BANG_TILDE2] = ACTIONS(1737), + [anon_sym_STAR_STAR2] = ACTIONS(1737), + [anon_sym_PLUS_PLUS2] = ACTIONS(1737), + [anon_sym_SLASH2] = ACTIONS(1733), + [anon_sym_mod2] = ACTIONS(1737), + [anon_sym_SLASH_SLASH2] = ACTIONS(1737), + [anon_sym_PLUS2] = ACTIONS(1733), + [anon_sym_bit_DASHshl2] = ACTIONS(1737), + [anon_sym_bit_DASHshr2] = ACTIONS(1737), + [anon_sym_bit_DASHand2] = ACTIONS(1737), + [anon_sym_bit_DASHxor2] = ACTIONS(1737), + [anon_sym_bit_DASHor2] = ACTIONS(1737), + [anon_sym_DOT_DOT2] = ACTIONS(1733), + [anon_sym_DOT] = ACTIONS(5020), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1733), + [anon_sym_out_GT] = ACTIONS(1733), + [anon_sym_e_GT] = ACTIONS(1733), + [anon_sym_o_GT] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT] = ACTIONS(1733), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [anon_sym_POUND] = ACTIONS(247), + }, + [1684] = { + [sym_comment] = STATE(1684), + [ts_builtin_sym_end] = ACTIONS(1741), + [sym__newline] = ACTIONS(1741), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym_PIPE] = ACTIONS(1741), + [anon_sym_err_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_GT_PIPE] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_DASH_DASH] = ACTIONS(1741), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT] = ACTIONS(1741), + [anon_sym_null] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1741), + [anon_sym_false] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1741), + [aux_sym__val_number_token5] = ACTIONS(1741), + [aux_sym__val_number_token6] = ACTIONS(1741), + [anon_sym_0b] = ACTIONS(1739), + [anon_sym_0o] = ACTIONS(1739), + [anon_sym_0x] = ACTIONS(1739), + [sym_val_date] = ACTIONS(1741), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), + [anon_sym_err_GT] = ACTIONS(1739), + [anon_sym_out_GT] = ACTIONS(1739), + [anon_sym_e_GT] = ACTIONS(1739), + [anon_sym_o_GT] = ACTIONS(1739), + [anon_sym_err_PLUSout_GT] = ACTIONS(1739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), + [anon_sym_o_PLUSe_GT] = ACTIONS(1739), + [anon_sym_e_PLUSo_GT] = ACTIONS(1739), + [anon_sym_err_GT_GT] = ACTIONS(1741), + [anon_sym_out_GT_GT] = ACTIONS(1741), + [anon_sym_e_GT_GT] = ACTIONS(1741), + [anon_sym_o_GT_GT] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), + [aux_sym_unquoted_token1] = ACTIONS(1739), + [aux_sym_unquoted_token2] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), + }, + [1685] = { + [sym_comment] = STATE(1685), + [ts_builtin_sym_end] = ACTIONS(1683), + [sym__newline] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_err_GT_PIPE] = ACTIONS(1683), + [anon_sym_out_GT_PIPE] = ACTIONS(1683), + [anon_sym_e_GT_PIPE] = ACTIONS(1683), + [anon_sym_o_GT_PIPE] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1683), + [anon_sym_GT2] = ACTIONS(1681), + [anon_sym_DASH2] = ACTIONS(1683), + [anon_sym_in2] = ACTIONS(1683), + [anon_sym_STAR2] = ACTIONS(1681), + [anon_sym_and2] = ACTIONS(1683), + [anon_sym_xor2] = ACTIONS(1683), + [anon_sym_or2] = ACTIONS(1683), + [anon_sym_not_DASHin2] = ACTIONS(1683), + [anon_sym_starts_DASHwith2] = ACTIONS(1683), + [anon_sym_ends_DASHwith2] = ACTIONS(1683), + [anon_sym_EQ_EQ2] = ACTIONS(1683), + [anon_sym_BANG_EQ2] = ACTIONS(1683), + [anon_sym_LT2] = ACTIONS(1681), + [anon_sym_LT_EQ2] = ACTIONS(1683), + [anon_sym_GT_EQ2] = ACTIONS(1683), + [anon_sym_EQ_TILDE2] = ACTIONS(1683), + [anon_sym_BANG_TILDE2] = ACTIONS(1683), + [anon_sym_LPAREN2] = ACTIONS(1683), + [anon_sym_STAR_STAR2] = ACTIONS(1683), + [anon_sym_PLUS_PLUS2] = ACTIONS(1683), + [anon_sym_SLASH2] = ACTIONS(1681), + [anon_sym_mod2] = ACTIONS(1683), + [anon_sym_SLASH_SLASH2] = ACTIONS(1683), + [anon_sym_PLUS2] = ACTIONS(1681), + [anon_sym_bit_DASHshl2] = ACTIONS(1683), + [anon_sym_bit_DASHshr2] = ACTIONS(1683), + [anon_sym_bit_DASHand2] = ACTIONS(1683), + [anon_sym_bit_DASHxor2] = ACTIONS(1683), + [anon_sym_bit_DASHor2] = ACTIONS(1683), + [anon_sym_DOT_DOT2] = ACTIONS(1681), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1683), + [sym_filesize_unit] = ACTIONS(1681), + [sym_duration_unit] = ACTIONS(1683), + [anon_sym_err_GT] = ACTIONS(1681), + [anon_sym_out_GT] = ACTIONS(1681), + [anon_sym_e_GT] = ACTIONS(1681), + [anon_sym_o_GT] = ACTIONS(1681), + [anon_sym_err_PLUSout_GT] = ACTIONS(1681), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), + [anon_sym_o_PLUSe_GT] = ACTIONS(1681), + [anon_sym_e_PLUSo_GT] = ACTIONS(1681), + [anon_sym_err_GT_GT] = ACTIONS(1683), + [anon_sym_out_GT_GT] = ACTIONS(1683), + [anon_sym_e_GT_GT] = ACTIONS(1683), + [anon_sym_o_GT_GT] = ACTIONS(1683), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1683), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1683), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1683), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1683), + [aux_sym_unquoted_token2] = ACTIONS(1681), + [anon_sym_POUND] = ACTIONS(247), + }, + [1686] = { + [sym_comment] = STATE(1686), + [ts_builtin_sym_end] = ACTIONS(1741), + [sym__newline] = ACTIONS(1741), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym_PIPE] = ACTIONS(1741), + [anon_sym_err_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_GT_PIPE] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_DASH_DASH] = ACTIONS(1741), + [anon_sym_DASH2] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT] = ACTIONS(1741), + [aux_sym__immediate_decimal_token1] = ACTIONS(5022), + [aux_sym__immediate_decimal_token2] = ACTIONS(5024), + [anon_sym_null] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(1741), + [anon_sym_false] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(1739), + [aux_sym__val_number_decimal_token2] = ACTIONS(1741), + [aux_sym__val_number_decimal_token3] = ACTIONS(1741), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(1741), + [aux_sym__val_number_token2] = ACTIONS(1741), + [aux_sym__val_number_token3] = ACTIONS(1741), + [aux_sym__val_number_token4] = ACTIONS(1741), + [aux_sym__val_number_token5] = ACTIONS(1741), + [aux_sym__val_number_token6] = ACTIONS(1741), + [anon_sym_0b] = ACTIONS(1739), + [anon_sym_0o] = ACTIONS(1739), + [anon_sym_0x] = ACTIONS(1739), + [sym_val_date] = ACTIONS(1741), + [anon_sym_DQUOTE] = ACTIONS(1741), + [sym__str_single_quotes] = ACTIONS(1741), + [sym__str_back_ticks] = ACTIONS(1741), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), + [anon_sym_err_GT] = ACTIONS(1739), + [anon_sym_out_GT] = ACTIONS(1739), + [anon_sym_e_GT] = ACTIONS(1739), + [anon_sym_o_GT] = ACTIONS(1739), + [anon_sym_err_PLUSout_GT] = ACTIONS(1739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), + [anon_sym_o_PLUSe_GT] = ACTIONS(1739), + [anon_sym_e_PLUSo_GT] = ACTIONS(1739), + [anon_sym_err_GT_GT] = ACTIONS(1741), + [anon_sym_out_GT_GT] = ACTIONS(1741), + [anon_sym_e_GT_GT] = ACTIONS(1741), + [anon_sym_o_GT_GT] = ACTIONS(1741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), + [aux_sym_unquoted_token1] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1741), + }, + [1687] = { + [sym__expr_parenthesized_immediate] = STATE(7472), + [sym_comment] = STATE(1687), + [ts_builtin_sym_end] = ACTIONS(4962), + [sym__newline] = ACTIONS(4962), + [anon_sym_SEMI] = ACTIONS(4962), + [anon_sym_PIPE] = ACTIONS(4962), + [anon_sym_err_GT_PIPE] = ACTIONS(4962), + [anon_sym_out_GT_PIPE] = ACTIONS(4962), + [anon_sym_e_GT_PIPE] = ACTIONS(4962), + [anon_sym_o_GT_PIPE] = ACTIONS(4962), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4962), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4962), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4962), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4962), + [anon_sym_LBRACK] = ACTIONS(4962), + [anon_sym_LPAREN] = ACTIONS(4964), + [anon_sym_DOLLAR] = ACTIONS(4964), + [anon_sym_DASH_DASH] = ACTIONS(4962), + [anon_sym_DASH2] = ACTIONS(4964), + [anon_sym_LBRACE] = ACTIONS(4962), + [anon_sym_DOT_DOT] = ACTIONS(4964), + [anon_sym_LPAREN2] = ACTIONS(4543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4962), + [anon_sym_DOT_DOT_LT] = ACTIONS(4962), + [anon_sym_null] = ACTIONS(4962), + [anon_sym_true] = ACTIONS(4962), + [anon_sym_false] = ACTIONS(4962), + [aux_sym__val_number_decimal_token1] = ACTIONS(4964), + [aux_sym__val_number_decimal_token2] = ACTIONS(4962), + [aux_sym__val_number_decimal_token3] = ACTIONS(4962), + [aux_sym__val_number_decimal_token4] = ACTIONS(4962), + [aux_sym__val_number_token1] = ACTIONS(4962), + [aux_sym__val_number_token2] = ACTIONS(4962), + [aux_sym__val_number_token3] = ACTIONS(4962), + [aux_sym__val_number_token4] = ACTIONS(4962), + [aux_sym__val_number_token5] = ACTIONS(4962), + [aux_sym__val_number_token6] = ACTIONS(4962), + [anon_sym_0b] = ACTIONS(4964), + [anon_sym_0o] = ACTIONS(4964), + [anon_sym_0x] = ACTIONS(4964), + [sym_val_date] = ACTIONS(4962), + [anon_sym_DQUOTE] = ACTIONS(4962), + [sym__str_single_quotes] = ACTIONS(4962), + [sym__str_back_ticks] = ACTIONS(4962), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4962), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4962), + [anon_sym_err_GT] = ACTIONS(4964), + [anon_sym_out_GT] = ACTIONS(4964), + [anon_sym_e_GT] = ACTIONS(4964), + [anon_sym_o_GT] = ACTIONS(4964), + [anon_sym_err_PLUSout_GT] = ACTIONS(4964), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4964), + [anon_sym_o_PLUSe_GT] = ACTIONS(4964), + [anon_sym_e_PLUSo_GT] = ACTIONS(4964), + [anon_sym_err_GT_GT] = ACTIONS(4962), + [anon_sym_out_GT_GT] = ACTIONS(4962), + [anon_sym_e_GT_GT] = ACTIONS(4962), + [anon_sym_o_GT_GT] = ACTIONS(4962), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4962), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4962), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4962), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4962), + [aux_sym_unquoted_token1] = ACTIONS(4964), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4962), + }, + [1688] = { + [sym_comment] = STATE(1688), + [ts_builtin_sym_end] = ACTIONS(1787), + [sym__newline] = ACTIONS(1787), + [anon_sym_SEMI] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_err_GT_PIPE] = ACTIONS(1787), + [anon_sym_out_GT_PIPE] = ACTIONS(1787), + [anon_sym_e_GT_PIPE] = ACTIONS(1787), + [anon_sym_o_GT_PIPE] = ACTIONS(1787), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1787), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_LPAREN2] = ACTIONS(1787), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1787), + [anon_sym_DOT_DOT_LT] = ACTIONS(1787), + [anon_sym_null] = ACTIONS(1787), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [aux_sym__val_number_decimal_token1] = ACTIONS(1785), + [aux_sym__val_number_decimal_token2] = ACTIONS(1787), + [aux_sym__val_number_decimal_token3] = ACTIONS(1787), + [aux_sym__val_number_decimal_token4] = ACTIONS(1787), + [aux_sym__val_number_token1] = ACTIONS(1787), + [aux_sym__val_number_token2] = ACTIONS(1787), + [aux_sym__val_number_token3] = ACTIONS(1787), + [aux_sym__val_number_token4] = ACTIONS(1787), + [aux_sym__val_number_token5] = ACTIONS(1787), + [aux_sym__val_number_token6] = ACTIONS(1787), + [anon_sym_0b] = ACTIONS(1785), + [anon_sym_0o] = ACTIONS(1785), + [anon_sym_0x] = ACTIONS(1785), + [sym_val_date] = ACTIONS(1787), + [anon_sym_DQUOTE] = ACTIONS(1787), + [sym__str_single_quotes] = ACTIONS(1787), + [sym__str_back_ticks] = ACTIONS(1787), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), + [anon_sym_err_GT] = ACTIONS(1785), + [anon_sym_out_GT] = ACTIONS(1785), + [anon_sym_e_GT] = ACTIONS(1785), + [anon_sym_o_GT] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT] = ACTIONS(1785), + [anon_sym_err_GT_GT] = ACTIONS(1787), + [anon_sym_out_GT_GT] = ACTIONS(1787), + [anon_sym_e_GT_GT] = ACTIONS(1787), + [anon_sym_o_GT_GT] = ACTIONS(1787), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), + [aux_sym_unquoted_token1] = ACTIONS(1785), + [aux_sym_unquoted_token2] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1787), }, - [1701] = { - [sym_comment] = STATE(1701), - [sym__newline] = ACTIONS(1721), - [anon_sym_SEMI] = ACTIONS(1721), - [anon_sym_PIPE] = ACTIONS(1721), - [anon_sym_err_GT_PIPE] = ACTIONS(1721), - [anon_sym_out_GT_PIPE] = ACTIONS(1721), - [anon_sym_e_GT_PIPE] = ACTIONS(1721), - [anon_sym_o_GT_PIPE] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1721), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_RPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_DASH_DASH] = ACTIONS(1721), - [anon_sym_DASH2] = ACTIONS(1709), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1709), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT] = ACTIONS(1721), - [anon_sym_null] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1709), - [aux_sym__val_number_decimal_token2] = ACTIONS(1721), - [aux_sym__val_number_decimal_token3] = ACTIONS(1721), - [aux_sym__val_number_decimal_token4] = ACTIONS(1721), - [aux_sym__val_number_token1] = ACTIONS(1721), - [aux_sym__val_number_token2] = ACTIONS(1721), - [aux_sym__val_number_token3] = ACTIONS(1721), - [aux_sym__val_number_token4] = ACTIONS(1721), - [aux_sym__val_number_token5] = ACTIONS(1721), - [aux_sym__val_number_token6] = ACTIONS(1721), - [anon_sym_0b] = ACTIONS(1709), - [anon_sym_0o] = ACTIONS(1709), - [anon_sym_0x] = ACTIONS(1709), - [sym_val_date] = ACTIONS(1721), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym__str_single_quotes] = ACTIONS(1721), - [sym__str_back_ticks] = ACTIONS(1721), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1721), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1721), - [anon_sym_err_GT] = ACTIONS(1709), - [anon_sym_out_GT] = ACTIONS(1709), - [anon_sym_e_GT] = ACTIONS(1709), - [anon_sym_o_GT] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT] = ACTIONS(1709), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), - [anon_sym_o_PLUSe_GT] = ACTIONS(1709), - [anon_sym_e_PLUSo_GT] = ACTIONS(1709), - [anon_sym_err_GT_GT] = ACTIONS(1721), - [anon_sym_out_GT_GT] = ACTIONS(1721), - [anon_sym_e_GT_GT] = ACTIONS(1721), - [anon_sym_o_GT_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1721), - [aux_sym_unquoted_token1] = ACTIONS(1709), - [aux_sym_unquoted_token2] = ACTIONS(4716), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1721), + [1689] = { + [sym_comment] = STATE(1689), + [ts_builtin_sym_end] = ACTIONS(1763), + [sym__newline] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_err_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_GT_PIPE] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), + [anon_sym_GT2] = ACTIONS(1761), + [anon_sym_DASH2] = ACTIONS(1763), + [anon_sym_in2] = ACTIONS(1763), + [anon_sym_STAR2] = ACTIONS(1761), + [anon_sym_and2] = ACTIONS(1763), + [anon_sym_xor2] = ACTIONS(1763), + [anon_sym_or2] = ACTIONS(1763), + [anon_sym_not_DASHin2] = ACTIONS(1763), + [anon_sym_starts_DASHwith2] = ACTIONS(1763), + [anon_sym_ends_DASHwith2] = ACTIONS(1763), + [anon_sym_EQ_EQ2] = ACTIONS(1763), + [anon_sym_BANG_EQ2] = ACTIONS(1763), + [anon_sym_LT2] = ACTIONS(1761), + [anon_sym_LT_EQ2] = ACTIONS(1763), + [anon_sym_GT_EQ2] = ACTIONS(1763), + [anon_sym_EQ_TILDE2] = ACTIONS(1763), + [anon_sym_BANG_TILDE2] = ACTIONS(1763), + [anon_sym_LPAREN2] = ACTIONS(1763), + [anon_sym_STAR_STAR2] = ACTIONS(1763), + [anon_sym_PLUS_PLUS2] = ACTIONS(1763), + [anon_sym_SLASH2] = ACTIONS(1761), + [anon_sym_mod2] = ACTIONS(1763), + [anon_sym_SLASH_SLASH2] = ACTIONS(1763), + [anon_sym_PLUS2] = ACTIONS(1761), + [anon_sym_bit_DASHshl2] = ACTIONS(1763), + [anon_sym_bit_DASHshr2] = ACTIONS(1763), + [anon_sym_bit_DASHand2] = ACTIONS(1763), + [anon_sym_bit_DASHxor2] = ACTIONS(1763), + [anon_sym_bit_DASHor2] = ACTIONS(1763), + [anon_sym_DOT_DOT2] = ACTIONS(1761), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), + [sym_filesize_unit] = ACTIONS(1761), + [sym_duration_unit] = ACTIONS(1763), + [anon_sym_err_GT] = ACTIONS(1761), + [anon_sym_out_GT] = ACTIONS(1761), + [anon_sym_e_GT] = ACTIONS(1761), + [anon_sym_o_GT] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT] = ACTIONS(1761), + [anon_sym_err_GT_GT] = ACTIONS(1763), + [anon_sym_out_GT_GT] = ACTIONS(1763), + [anon_sym_e_GT_GT] = ACTIONS(1763), + [anon_sym_o_GT_GT] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1763), + [aux_sym_unquoted_token2] = ACTIONS(1761), + [anon_sym_POUND] = ACTIONS(247), }, - [1702] = { - [sym_path] = STATE(1894), - [sym_comment] = STATE(1702), - [aux_sym_cell_path_repeat1] = STATE(1717), + [1690] = { + [sym_path] = STATE(1882), + [sym_comment] = STATE(1690), + [aux_sym_cell_path_repeat1] = STATE(1671), [sym__newline] = ACTIONS(969), [anon_sym_SEMI] = ACTIONS(969), [anon_sym_PIPE] = ACTIONS(969), @@ -229887,7 +229386,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(969), [anon_sym_bit_DASHxor2] = ACTIONS(969), [anon_sym_bit_DASHor2] = ACTIONS(969), - [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_DOT] = ACTIONS(4894), [anon_sym_err_GT] = ACTIONS(967), [anon_sym_out_GT] = ACTIONS(967), [anon_sym_e_GT] = ACTIONS(967), @@ -229906,142 +229405,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(969), [anon_sym_POUND] = ACTIONS(247), }, - [1703] = { - [sym_comment] = STATE(1703), - [sym__newline] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_err_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_GT_PIPE] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1008), - [anon_sym_LBRACK] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_RPAREN] = ACTIONS(1008), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT] = ACTIONS(1008), - [anon_sym_null] = ACTIONS(1008), - [anon_sym_true] = ACTIONS(1008), - [anon_sym_false] = ACTIONS(1008), - [aux_sym__val_number_decimal_token1] = ACTIONS(1006), - [aux_sym__val_number_decimal_token2] = ACTIONS(1008), - [aux_sym__val_number_decimal_token3] = ACTIONS(1008), - [aux_sym__val_number_decimal_token4] = ACTIONS(1008), - [aux_sym__val_number_token1] = ACTIONS(1008), - [aux_sym__val_number_token2] = ACTIONS(1008), - [aux_sym__val_number_token3] = ACTIONS(1008), - [aux_sym__val_number_token4] = ACTIONS(1008), - [aux_sym__val_number_token5] = ACTIONS(1008), - [aux_sym__val_number_token6] = ACTIONS(1008), - [anon_sym_0b] = ACTIONS(1006), - [anon_sym_0o] = ACTIONS(1006), - [anon_sym_0x] = ACTIONS(1006), - [sym_val_date] = ACTIONS(1008), - [anon_sym_DQUOTE] = ACTIONS(1008), - [sym__str_single_quotes] = ACTIONS(1008), - [sym__str_back_ticks] = ACTIONS(1008), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1008), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1008), - [anon_sym_err_GT] = ACTIONS(1006), - [anon_sym_out_GT] = ACTIONS(1006), - [anon_sym_e_GT] = ACTIONS(1006), - [anon_sym_o_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT] = ACTIONS(1006), - [anon_sym_err_GT_GT] = ACTIONS(1008), - [anon_sym_out_GT_GT] = ACTIONS(1008), - [anon_sym_e_GT_GT] = ACTIONS(1008), - [anon_sym_o_GT_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1008), - [aux_sym_unquoted_token1] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1008), + [1691] = { + [sym_comment] = STATE(1691), + [ts_builtin_sym_end] = ACTIONS(1843), + [sym__newline] = ACTIONS(1843), + [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_err_GT_PIPE] = ACTIONS(1843), + [anon_sym_out_GT_PIPE] = ACTIONS(1843), + [anon_sym_e_GT_PIPE] = ACTIONS(1843), + [anon_sym_o_GT_PIPE] = ACTIONS(1843), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1843), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1843), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1843), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [anon_sym_DASH2] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1841), + [anon_sym_LPAREN2] = ACTIONS(1843), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1843), + [anon_sym_DOT_DOT_LT] = ACTIONS(1843), + [anon_sym_null] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [aux_sym__val_number_decimal_token1] = ACTIONS(1841), + [aux_sym__val_number_decimal_token2] = ACTIONS(1843), + [aux_sym__val_number_decimal_token3] = ACTIONS(1843), + [aux_sym__val_number_decimal_token4] = ACTIONS(1843), + [aux_sym__val_number_token1] = ACTIONS(1843), + [aux_sym__val_number_token2] = ACTIONS(1843), + [aux_sym__val_number_token3] = ACTIONS(1843), + [aux_sym__val_number_token4] = ACTIONS(1843), + [aux_sym__val_number_token5] = ACTIONS(1843), + [aux_sym__val_number_token6] = ACTIONS(1843), + [anon_sym_0b] = ACTIONS(1841), + [anon_sym_0o] = ACTIONS(1841), + [anon_sym_0x] = ACTIONS(1841), + [sym_val_date] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [sym__str_single_quotes] = ACTIONS(1843), + [sym__str_back_ticks] = ACTIONS(1843), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1843), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1843), + [anon_sym_err_GT] = ACTIONS(1841), + [anon_sym_out_GT] = ACTIONS(1841), + [anon_sym_e_GT] = ACTIONS(1841), + [anon_sym_o_GT] = ACTIONS(1841), + [anon_sym_err_PLUSout_GT] = ACTIONS(1841), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1841), + [anon_sym_o_PLUSe_GT] = ACTIONS(1841), + [anon_sym_e_PLUSo_GT] = ACTIONS(1841), + [anon_sym_err_GT_GT] = ACTIONS(1843), + [anon_sym_out_GT_GT] = ACTIONS(1843), + [anon_sym_e_GT_GT] = ACTIONS(1843), + [anon_sym_o_GT_GT] = ACTIONS(1843), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1843), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1843), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1843), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1843), + [aux_sym_unquoted_token1] = ACTIONS(1841), + [aux_sym_unquoted_token2] = ACTIONS(1841), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1843), }, - [1704] = { - [sym_comment] = STATE(1704), - [ts_builtin_sym_end] = ACTIONS(980), - [sym__newline] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(980), - [anon_sym_err_GT_PIPE] = ACTIONS(980), - [anon_sym_out_GT_PIPE] = ACTIONS(980), - [anon_sym_e_GT_PIPE] = ACTIONS(980), - [anon_sym_o_GT_PIPE] = ACTIONS(980), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), - [anon_sym_LBRACK] = ACTIONS(980), - [anon_sym_LPAREN] = ACTIONS(980), - [anon_sym_DOLLAR] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(980), - [anon_sym_DASH2] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(978), - [anon_sym_QMARK2] = ACTIONS(5065), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_DOT_DOT_EQ] = ACTIONS(980), - [anon_sym_DOT_DOT_LT] = ACTIONS(980), - [anon_sym_null] = ACTIONS(980), - [anon_sym_true] = ACTIONS(980), - [anon_sym_false] = ACTIONS(980), - [aux_sym__val_number_decimal_token1] = ACTIONS(978), - [aux_sym__val_number_decimal_token2] = ACTIONS(980), - [aux_sym__val_number_decimal_token3] = ACTIONS(980), - [aux_sym__val_number_decimal_token4] = ACTIONS(980), - [aux_sym__val_number_token1] = ACTIONS(980), - [aux_sym__val_number_token2] = ACTIONS(980), - [aux_sym__val_number_token3] = ACTIONS(980), - [aux_sym__val_number_token4] = ACTIONS(980), - [aux_sym__val_number_token5] = ACTIONS(980), - [aux_sym__val_number_token6] = ACTIONS(980), - [anon_sym_0b] = ACTIONS(978), - [anon_sym_0o] = ACTIONS(978), - [anon_sym_0x] = ACTIONS(978), - [sym_val_date] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym__str_single_quotes] = ACTIONS(980), - [sym__str_back_ticks] = ACTIONS(980), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(980), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(980), - [anon_sym_err_GT] = ACTIONS(978), - [anon_sym_out_GT] = ACTIONS(978), - [anon_sym_e_GT] = ACTIONS(978), - [anon_sym_o_GT] = ACTIONS(978), - [anon_sym_err_PLUSout_GT] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT] = ACTIONS(978), - [anon_sym_o_PLUSe_GT] = ACTIONS(978), - [anon_sym_e_PLUSo_GT] = ACTIONS(978), - [anon_sym_err_GT_GT] = ACTIONS(980), - [anon_sym_out_GT_GT] = ACTIONS(980), - [anon_sym_e_GT_GT] = ACTIONS(980), - [anon_sym_o_GT_GT] = ACTIONS(980), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), - [aux_sym_unquoted_token1] = ACTIONS(978), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(980), + [1692] = { + [sym_comment] = STATE(1692), + [ts_builtin_sym_end] = ACTIONS(2250), + [sym__newline] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2250), + [anon_sym_err_GT_PIPE] = ACTIONS(2250), + [anon_sym_out_GT_PIPE] = ACTIONS(2250), + [anon_sym_e_GT_PIPE] = ACTIONS(2250), + [anon_sym_o_GT_PIPE] = ACTIONS(2250), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2250), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2250), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2250), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2246), + [anon_sym_DOLLAR] = ACTIONS(2246), + [anon_sym_DASH_DASH] = ACTIONS(2246), + [anon_sym_DASH2] = ACTIONS(2246), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_DOT_DOT] = ACTIONS(2246), + [anon_sym_LPAREN2] = ACTIONS(2248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2246), + [anon_sym_DOT_DOT_LT] = ACTIONS(2246), + [anon_sym_null] = ACTIONS(2246), + [anon_sym_true] = ACTIONS(2246), + [anon_sym_false] = ACTIONS(2246), + [aux_sym__val_number_decimal_token1] = ACTIONS(2246), + [aux_sym__val_number_decimal_token2] = ACTIONS(2246), + [aux_sym__val_number_decimal_token3] = ACTIONS(2246), + [aux_sym__val_number_decimal_token4] = ACTIONS(2246), + [aux_sym__val_number_token1] = ACTIONS(2246), + [aux_sym__val_number_token2] = ACTIONS(2246), + [aux_sym__val_number_token3] = ACTIONS(2246), + [aux_sym__val_number_token4] = ACTIONS(2246), + [aux_sym__val_number_token5] = ACTIONS(2246), + [aux_sym__val_number_token6] = ACTIONS(2246), + [anon_sym_0b] = ACTIONS(2246), + [anon_sym_0o] = ACTIONS(2246), + [anon_sym_0x] = ACTIONS(2246), + [sym_val_date] = ACTIONS(2246), + [anon_sym_DQUOTE] = ACTIONS(2250), + [sym__str_single_quotes] = ACTIONS(2250), + [sym__str_back_ticks] = ACTIONS(2250), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2250), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2250), + [anon_sym_err_GT] = ACTIONS(2246), + [anon_sym_out_GT] = ACTIONS(2246), + [anon_sym_e_GT] = ACTIONS(2246), + [anon_sym_o_GT] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT] = ACTIONS(2246), + [anon_sym_err_GT_GT] = ACTIONS(2246), + [anon_sym_out_GT_GT] = ACTIONS(2246), + [anon_sym_e_GT_GT] = ACTIONS(2246), + [anon_sym_o_GT_GT] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2246), + [aux_sym_unquoted_token1] = ACTIONS(2246), + [aux_sym_unquoted_token4] = ACTIONS(2252), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2250), }, - [1705] = { - [sym_comment] = STATE(1705), + [1693] = { + [sym_comment] = STATE(1693), + [sym__newline] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_PIPE] = ACTIONS(1719), + [anon_sym_err_GT_PIPE] = ACTIONS(1719), + [anon_sym_out_GT_PIPE] = ACTIONS(1719), + [anon_sym_e_GT_PIPE] = ACTIONS(1719), + [anon_sym_o_GT_PIPE] = ACTIONS(1719), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1719), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1719), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1719), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1719), + [anon_sym_LBRACK] = ACTIONS(1719), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_RPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1719), + [anon_sym_DASH2] = ACTIONS(1707), + [anon_sym_LBRACE] = ACTIONS(1719), + [anon_sym_RBRACE] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1719), + [anon_sym_DOT_DOT_LT] = ACTIONS(1719), + [anon_sym_null] = ACTIONS(1719), + [anon_sym_true] = ACTIONS(1719), + [anon_sym_false] = ACTIONS(1719), + [aux_sym__val_number_decimal_token1] = ACTIONS(1707), + [aux_sym__val_number_decimal_token2] = ACTIONS(1719), + [aux_sym__val_number_decimal_token3] = ACTIONS(1719), + [aux_sym__val_number_decimal_token4] = ACTIONS(1719), + [aux_sym__val_number_token1] = ACTIONS(1719), + [aux_sym__val_number_token2] = ACTIONS(1719), + [aux_sym__val_number_token3] = ACTIONS(1719), + [aux_sym__val_number_token4] = ACTIONS(1719), + [aux_sym__val_number_token5] = ACTIONS(1719), + [aux_sym__val_number_token6] = ACTIONS(1719), + [anon_sym_0b] = ACTIONS(1707), + [anon_sym_0o] = ACTIONS(1707), + [anon_sym_0x] = ACTIONS(1707), + [sym_val_date] = ACTIONS(1719), + [anon_sym_DQUOTE] = ACTIONS(1719), + [sym__str_single_quotes] = ACTIONS(1719), + [sym__str_back_ticks] = ACTIONS(1719), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1719), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1719), + [anon_sym_err_GT] = ACTIONS(1707), + [anon_sym_out_GT] = ACTIONS(1707), + [anon_sym_e_GT] = ACTIONS(1707), + [anon_sym_o_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT] = ACTIONS(1707), + [anon_sym_err_GT_GT] = ACTIONS(1719), + [anon_sym_out_GT_GT] = ACTIONS(1719), + [anon_sym_e_GT_GT] = ACTIONS(1719), + [anon_sym_o_GT_GT] = ACTIONS(1719), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1719), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1719), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1719), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1719), + [aux_sym_unquoted_token1] = ACTIONS(1707), + [aux_sym_unquoted_token2] = ACTIONS(4730), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1719), + }, + [1694] = { + [sym_comment] = STATE(1694), [ts_builtin_sym_end] = ACTIONS(986), [sym__newline] = ACTIONS(986), [anon_sym_SEMI] = ACTIONS(986), @@ -230061,7 +229627,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(984), [anon_sym_LBRACE] = ACTIONS(986), [anon_sym_DOT_DOT] = ACTIONS(984), - [anon_sym_QMARK2] = ACTIONS(5067), + [anon_sym_QMARK2] = ACTIONS(5026), [anon_sym_DOT] = ACTIONS(984), [anon_sym_DOT_DOT_EQ] = ACTIONS(986), [anon_sym_DOT_DOT_LT] = ACTIONS(986), @@ -230107,2002 +229673,2968 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(247), [sym_raw_string_begin] = ACTIONS(986), }, + [1695] = { + [sym_comment] = STATE(1695), + [ts_builtin_sym_end] = ACTIONS(2276), + [sym__newline] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_PIPE] = ACTIONS(2276), + [anon_sym_err_GT_PIPE] = ACTIONS(2276), + [anon_sym_out_GT_PIPE] = ACTIONS(2276), + [anon_sym_e_GT_PIPE] = ACTIONS(2276), + [anon_sym_o_GT_PIPE] = ACTIONS(2276), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2276), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2276), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2276), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2272), + [anon_sym_DOLLAR] = ACTIONS(2272), + [anon_sym_DASH_DASH] = ACTIONS(2276), + [anon_sym_DASH2] = ACTIONS(2272), + [anon_sym_LBRACE] = ACTIONS(2276), + [anon_sym_DOT_DOT] = ACTIONS(2272), + [anon_sym_LPAREN2] = ACTIONS(2274), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2276), + [anon_sym_DOT_DOT_LT] = ACTIONS(2276), + [anon_sym_null] = ACTIONS(2276), + [anon_sym_true] = ACTIONS(2276), + [anon_sym_false] = ACTIONS(2276), + [aux_sym__val_number_decimal_token1] = ACTIONS(2272), + [aux_sym__val_number_decimal_token2] = ACTIONS(2276), + [aux_sym__val_number_decimal_token3] = ACTIONS(2276), + [aux_sym__val_number_decimal_token4] = ACTIONS(2276), + [aux_sym__val_number_token1] = ACTIONS(2276), + [aux_sym__val_number_token2] = ACTIONS(2276), + [aux_sym__val_number_token3] = ACTIONS(2276), + [aux_sym__val_number_token4] = ACTIONS(2276), + [aux_sym__val_number_token5] = ACTIONS(2276), + [aux_sym__val_number_token6] = ACTIONS(2276), + [anon_sym_0b] = ACTIONS(2272), + [anon_sym_0o] = ACTIONS(2272), + [anon_sym_0x] = ACTIONS(2272), + [sym_val_date] = ACTIONS(2276), + [anon_sym_DQUOTE] = ACTIONS(2276), + [sym__str_single_quotes] = ACTIONS(2276), + [sym__str_back_ticks] = ACTIONS(2276), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2276), + [anon_sym_err_GT] = ACTIONS(2272), + [anon_sym_out_GT] = ACTIONS(2272), + [anon_sym_e_GT] = ACTIONS(2272), + [anon_sym_o_GT] = ACTIONS(2272), + [anon_sym_err_PLUSout_GT] = ACTIONS(2272), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2272), + [anon_sym_o_PLUSe_GT] = ACTIONS(2272), + [anon_sym_e_PLUSo_GT] = ACTIONS(2272), + [anon_sym_err_GT_GT] = ACTIONS(2276), + [anon_sym_out_GT_GT] = ACTIONS(2276), + [anon_sym_e_GT_GT] = ACTIONS(2276), + [anon_sym_o_GT_GT] = ACTIONS(2276), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2276), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2276), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2276), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2276), + [aux_sym_unquoted_token1] = ACTIONS(2272), + [aux_sym_unquoted_token2] = ACTIONS(2278), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2276), + }, + [1696] = { + [sym_comment] = STATE(1696), + [ts_builtin_sym_end] = ACTIONS(4968), + [sym_long_flag_identifier] = ACTIONS(5028), + [sym__newline] = ACTIONS(4968), + [anon_sym_SEMI] = ACTIONS(4968), + [anon_sym_PIPE] = ACTIONS(4968), + [anon_sym_err_GT_PIPE] = ACTIONS(4968), + [anon_sym_out_GT_PIPE] = ACTIONS(4968), + [anon_sym_e_GT_PIPE] = ACTIONS(4968), + [anon_sym_o_GT_PIPE] = ACTIONS(4968), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4968), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4968), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4968), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4968), + [anon_sym_LPAREN] = ACTIONS(4968), + [anon_sym_DOLLAR] = ACTIONS(4970), + [anon_sym_DASH_DASH] = ACTIONS(4968), + [anon_sym_DASH2] = ACTIONS(4970), + [anon_sym_LBRACE] = ACTIONS(4968), + [anon_sym_DOT_DOT] = ACTIONS(4970), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4968), + [anon_sym_DOT_DOT_LT] = ACTIONS(4968), + [anon_sym_null] = ACTIONS(4970), + [anon_sym_true] = ACTIONS(4970), + [anon_sym_false] = ACTIONS(4970), + [aux_sym__val_number_decimal_token1] = ACTIONS(4970), + [aux_sym__val_number_decimal_token2] = ACTIONS(4968), + [aux_sym__val_number_decimal_token3] = ACTIONS(4968), + [aux_sym__val_number_decimal_token4] = ACTIONS(4968), + [aux_sym__val_number_token1] = ACTIONS(4970), + [aux_sym__val_number_token2] = ACTIONS(4970), + [aux_sym__val_number_token3] = ACTIONS(4970), + [aux_sym__val_number_token4] = ACTIONS(4970), + [aux_sym__val_number_token5] = ACTIONS(4968), + [aux_sym__val_number_token6] = ACTIONS(4970), + [anon_sym_0b] = ACTIONS(4970), + [anon_sym_0o] = ACTIONS(4970), + [anon_sym_0x] = ACTIONS(4970), + [sym_val_date] = ACTIONS(4970), + [anon_sym_DQUOTE] = ACTIONS(4968), + [sym__str_single_quotes] = ACTIONS(4968), + [sym__str_back_ticks] = ACTIONS(4968), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4968), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4968), + [anon_sym_err_GT] = ACTIONS(4970), + [anon_sym_out_GT] = ACTIONS(4970), + [anon_sym_e_GT] = ACTIONS(4970), + [anon_sym_o_GT] = ACTIONS(4970), + [anon_sym_err_PLUSout_GT] = ACTIONS(4970), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4970), + [anon_sym_o_PLUSe_GT] = ACTIONS(4970), + [anon_sym_e_PLUSo_GT] = ACTIONS(4970), + [anon_sym_err_GT_GT] = ACTIONS(4968), + [anon_sym_out_GT_GT] = ACTIONS(4968), + [anon_sym_e_GT_GT] = ACTIONS(4968), + [anon_sym_o_GT_GT] = ACTIONS(4968), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4968), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4968), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4968), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4968), + [anon_sym_EQ2] = ACTIONS(5030), + [aux_sym_unquoted_token1] = ACTIONS(4970), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4968), + }, + [1697] = { + [sym_comment] = STATE(1697), + [ts_builtin_sym_end] = ACTIONS(4974), + [sym__newline] = ACTIONS(4974), + [anon_sym_SEMI] = ACTIONS(4974), + [anon_sym_PIPE] = ACTIONS(4974), + [anon_sym_err_GT_PIPE] = ACTIONS(4974), + [anon_sym_out_GT_PIPE] = ACTIONS(4974), + [anon_sym_e_GT_PIPE] = ACTIONS(4974), + [anon_sym_o_GT_PIPE] = ACTIONS(4974), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4974), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4974), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4974), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4974), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_LPAREN] = ACTIONS(4974), + [anon_sym_DOLLAR] = ACTIONS(4976), + [anon_sym_DASH_DASH] = ACTIONS(4976), + [anon_sym_DASH2] = ACTIONS(4976), + [anon_sym_LBRACE] = ACTIONS(4974), + [anon_sym_DOT_DOT] = ACTIONS(4976), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4974), + [anon_sym_DOT_DOT_LT] = ACTIONS(4974), + [anon_sym_null] = ACTIONS(4976), + [anon_sym_true] = ACTIONS(4976), + [anon_sym_false] = ACTIONS(4976), + [aux_sym__val_number_decimal_token1] = ACTIONS(4976), + [aux_sym__val_number_decimal_token2] = ACTIONS(4976), + [aux_sym__val_number_decimal_token3] = ACTIONS(4974), + [aux_sym__val_number_decimal_token4] = ACTIONS(4974), + [aux_sym__val_number_token1] = ACTIONS(4976), + [aux_sym__val_number_token2] = ACTIONS(4976), + [aux_sym__val_number_token3] = ACTIONS(4976), + [aux_sym__val_number_token4] = ACTIONS(4976), + [aux_sym__val_number_token5] = ACTIONS(4976), + [aux_sym__val_number_token6] = ACTIONS(4976), + [anon_sym_0b] = ACTIONS(4976), + [anon_sym_0o] = ACTIONS(4976), + [anon_sym_0x] = ACTIONS(4976), + [sym_val_date] = ACTIONS(4976), + [anon_sym_DQUOTE] = ACTIONS(4974), + [sym__str_single_quotes] = ACTIONS(4974), + [sym__str_back_ticks] = ACTIONS(4974), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4974), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4974), + [anon_sym_err_GT] = ACTIONS(4976), + [anon_sym_out_GT] = ACTIONS(4976), + [anon_sym_e_GT] = ACTIONS(4976), + [anon_sym_o_GT] = ACTIONS(4976), + [anon_sym_err_PLUSout_GT] = ACTIONS(4976), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4976), + [anon_sym_o_PLUSe_GT] = ACTIONS(4976), + [anon_sym_e_PLUSo_GT] = ACTIONS(4976), + [anon_sym_err_GT_GT] = ACTIONS(4974), + [anon_sym_out_GT_GT] = ACTIONS(4974), + [anon_sym_e_GT_GT] = ACTIONS(4974), + [anon_sym_o_GT_GT] = ACTIONS(4974), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4974), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4974), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4974), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4974), + [anon_sym_EQ2] = ACTIONS(5032), + [sym_short_flag_identifier] = ACTIONS(5034), + [aux_sym_unquoted_token1] = ACTIONS(4976), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4974), + }, + [1698] = { + [sym_cmd_identifier] = STATE(4154), + [sym__command_name] = STATE(6522), + [sym_scope_pattern] = STATE(6743), + [sym_wild_card] = STATE(6524), + [sym_command_list] = STATE(6525), + [sym__val_number_decimal] = STATE(3764), + [sym_val_string] = STATE(4161), + [sym__raw_str] = STATE(4332), + [sym__str_double_quotes] = STATE(4332), + [sym_comment] = STATE(1698), + [aux_sym_cmd_identifier_token1] = ACTIONS(5036), + [aux_sym_cmd_identifier_token2] = ACTIONS(5038), + [aux_sym_cmd_identifier_token3] = ACTIONS(5038), + [aux_sym_cmd_identifier_token4] = ACTIONS(5038), + [aux_sym_cmd_identifier_token5] = ACTIONS(5038), + [aux_sym_cmd_identifier_token6] = ACTIONS(5038), + [aux_sym_cmd_identifier_token7] = ACTIONS(5038), + [aux_sym_cmd_identifier_token8] = ACTIONS(5038), + [aux_sym_cmd_identifier_token9] = ACTIONS(5036), + [aux_sym_cmd_identifier_token10] = ACTIONS(5038), + [aux_sym_cmd_identifier_token11] = ACTIONS(5038), + [aux_sym_cmd_identifier_token12] = ACTIONS(5038), + [aux_sym_cmd_identifier_token13] = ACTIONS(5036), + [aux_sym_cmd_identifier_token14] = ACTIONS(5038), + [aux_sym_cmd_identifier_token15] = ACTIONS(5036), + [aux_sym_cmd_identifier_token16] = ACTIONS(5038), + [aux_sym_cmd_identifier_token17] = ACTIONS(5038), + [aux_sym_cmd_identifier_token18] = ACTIONS(5038), + [aux_sym_cmd_identifier_token19] = ACTIONS(5038), + [aux_sym_cmd_identifier_token20] = ACTIONS(5038), + [aux_sym_cmd_identifier_token21] = ACTIONS(5038), + [aux_sym_cmd_identifier_token22] = ACTIONS(5038), + [aux_sym_cmd_identifier_token23] = ACTIONS(5038), + [aux_sym_cmd_identifier_token24] = ACTIONS(5038), + [aux_sym_cmd_identifier_token25] = ACTIONS(5038), + [aux_sym_cmd_identifier_token26] = ACTIONS(5038), + [aux_sym_cmd_identifier_token27] = ACTIONS(5038), + [aux_sym_cmd_identifier_token28] = ACTIONS(5038), + [aux_sym_cmd_identifier_token29] = ACTIONS(5038), + [aux_sym_cmd_identifier_token30] = ACTIONS(5038), + [aux_sym_cmd_identifier_token31] = ACTIONS(5038), + [aux_sym_cmd_identifier_token32] = ACTIONS(5038), + [aux_sym_cmd_identifier_token33] = ACTIONS(5038), + [aux_sym_cmd_identifier_token34] = ACTIONS(5036), + [aux_sym_cmd_identifier_token35] = ACTIONS(5038), + [aux_sym_cmd_identifier_token36] = ACTIONS(5038), + [aux_sym_cmd_identifier_token37] = ACTIONS(5038), + [aux_sym_cmd_identifier_token38] = ACTIONS(5036), + [aux_sym_cmd_identifier_token39] = ACTIONS(5038), + [aux_sym_cmd_identifier_token40] = ACTIONS(5038), + [sym__newline] = ACTIONS(5040), + [anon_sym_SEMI] = ACTIONS(5040), + [anon_sym_LBRACK] = ACTIONS(5042), + [anon_sym_RPAREN] = ACTIONS(5040), + [anon_sym_RBRACE] = ACTIONS(5040), + [anon_sym_STAR2] = ACTIONS(5044), + [aux_sym__val_number_decimal_token1] = ACTIONS(5046), + [aux_sym__val_number_decimal_token2] = ACTIONS(5046), + [aux_sym__val_number_decimal_token3] = ACTIONS(5048), + [aux_sym__val_number_decimal_token4] = ACTIONS(5050), + [anon_sym_DQUOTE] = ACTIONS(4001), + [sym__str_single_quotes] = ACTIONS(4003), + [sym__str_back_ticks] = ACTIONS(4003), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4005), + }, + [1699] = { + [sym_cell_path] = STATE(2163), + [sym_path] = STATE(1882), + [sym_comment] = STATE(1699), + [aux_sym_cell_path_repeat1] = STATE(1690), + [sym__newline] = ACTIONS(1869), + [anon_sym_SEMI] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_err_GT_PIPE] = ACTIONS(1869), + [anon_sym_out_GT_PIPE] = ACTIONS(1869), + [anon_sym_e_GT_PIPE] = ACTIONS(1869), + [anon_sym_o_GT_PIPE] = ACTIONS(1869), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1869), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1869), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1869), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1869), + [anon_sym_RPAREN] = ACTIONS(1869), + [anon_sym_GT2] = ACTIONS(1867), + [anon_sym_DASH2] = ACTIONS(1869), + [anon_sym_in2] = ACTIONS(1869), + [anon_sym_LBRACE] = ACTIONS(1869), + [anon_sym_RBRACE] = ACTIONS(1869), + [anon_sym_EQ_GT] = ACTIONS(1869), + [anon_sym_STAR2] = ACTIONS(1867), + [anon_sym_and2] = ACTIONS(1869), + [anon_sym_xor2] = ACTIONS(1869), + [anon_sym_or2] = ACTIONS(1869), + [anon_sym_not_DASHin2] = ACTIONS(1869), + [anon_sym_starts_DASHwith2] = ACTIONS(1869), + [anon_sym_ends_DASHwith2] = ACTIONS(1869), + [anon_sym_EQ_EQ2] = ACTIONS(1869), + [anon_sym_BANG_EQ2] = ACTIONS(1869), + [anon_sym_LT2] = ACTIONS(1867), + [anon_sym_LT_EQ2] = ACTIONS(1869), + [anon_sym_GT_EQ2] = ACTIONS(1869), + [anon_sym_EQ_TILDE2] = ACTIONS(1869), + [anon_sym_BANG_TILDE2] = ACTIONS(1869), + [anon_sym_STAR_STAR2] = ACTIONS(1869), + [anon_sym_PLUS_PLUS2] = ACTIONS(1869), + [anon_sym_SLASH2] = ACTIONS(1867), + [anon_sym_mod2] = ACTIONS(1869), + [anon_sym_SLASH_SLASH2] = ACTIONS(1869), + [anon_sym_PLUS2] = ACTIONS(1867), + [anon_sym_bit_DASHshl2] = ACTIONS(1869), + [anon_sym_bit_DASHshr2] = ACTIONS(1869), + [anon_sym_bit_DASHand2] = ACTIONS(1869), + [anon_sym_bit_DASHxor2] = ACTIONS(1869), + [anon_sym_bit_DASHor2] = ACTIONS(1869), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_err_GT] = ACTIONS(1867), + [anon_sym_out_GT] = ACTIONS(1867), + [anon_sym_e_GT] = ACTIONS(1867), + [anon_sym_o_GT] = ACTIONS(1867), + [anon_sym_err_PLUSout_GT] = ACTIONS(1867), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1867), + [anon_sym_o_PLUSe_GT] = ACTIONS(1867), + [anon_sym_e_PLUSo_GT] = ACTIONS(1867), + [anon_sym_err_GT_GT] = ACTIONS(1869), + [anon_sym_out_GT_GT] = ACTIONS(1869), + [anon_sym_e_GT_GT] = ACTIONS(1869), + [anon_sym_o_GT_GT] = ACTIONS(1869), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1869), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1869), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1869), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1869), + [anon_sym_POUND] = ACTIONS(247), + }, + [1700] = { + [sym_comment] = STATE(1700), + [ts_builtin_sym_end] = ACTIONS(2232), + [sym__newline] = ACTIONS(2232), + [anon_sym_SEMI] = ACTIONS(2232), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_err_GT_PIPE] = ACTIONS(2232), + [anon_sym_out_GT_PIPE] = ACTIONS(2232), + [anon_sym_e_GT_PIPE] = ACTIONS(2232), + [anon_sym_o_GT_PIPE] = ACTIONS(2232), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2232), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2232), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2232), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2232), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_DOLLAR] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2232), + [anon_sym_DASH2] = ACTIONS(2230), + [anon_sym_LBRACE] = ACTIONS(2232), + [anon_sym_DOT_DOT] = ACTIONS(2230), + [anon_sym_LPAREN2] = ACTIONS(1804), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2232), + [anon_sym_DOT_DOT_LT] = ACTIONS(2232), + [anon_sym_null] = ACTIONS(2232), + [anon_sym_true] = ACTIONS(2232), + [anon_sym_false] = ACTIONS(2232), + [aux_sym__val_number_decimal_token1] = ACTIONS(2230), + [aux_sym__val_number_decimal_token2] = ACTIONS(2232), + [aux_sym__val_number_decimal_token3] = ACTIONS(2232), + [aux_sym__val_number_decimal_token4] = ACTIONS(2232), + [aux_sym__val_number_token1] = ACTIONS(2232), + [aux_sym__val_number_token2] = ACTIONS(2232), + [aux_sym__val_number_token3] = ACTIONS(2232), + [aux_sym__val_number_token4] = ACTIONS(2232), + [aux_sym__val_number_token5] = ACTIONS(2232), + [aux_sym__val_number_token6] = ACTIONS(2232), + [anon_sym_0b] = ACTIONS(2230), + [anon_sym_0o] = ACTIONS(2230), + [anon_sym_0x] = ACTIONS(2230), + [sym_val_date] = ACTIONS(2232), + [anon_sym_DQUOTE] = ACTIONS(2232), + [sym__str_single_quotes] = ACTIONS(2232), + [sym__str_back_ticks] = ACTIONS(2232), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2232), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2232), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2232), + [anon_sym_out_GT_GT] = ACTIONS(2232), + [anon_sym_e_GT_GT] = ACTIONS(2232), + [anon_sym_o_GT_GT] = ACTIONS(2232), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2232), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2232), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2232), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2232), + [aux_sym_unquoted_token1] = ACTIONS(2230), + [aux_sym_unquoted_token2] = ACTIONS(1812), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2232), + }, + [1701] = { + [sym_comment] = STATE(1701), + [sym__newline] = ACTIONS(5052), + [anon_sym_SEMI] = ACTIONS(5052), + [anon_sym_PIPE] = ACTIONS(5052), + [anon_sym_err_GT_PIPE] = ACTIONS(5052), + [anon_sym_out_GT_PIPE] = ACTIONS(5052), + [anon_sym_e_GT_PIPE] = ACTIONS(5052), + [anon_sym_o_GT_PIPE] = ACTIONS(5052), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5052), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5052), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5052), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5052), + [anon_sym_LBRACK] = ACTIONS(5052), + [anon_sym_LPAREN] = ACTIONS(5054), + [anon_sym_RPAREN] = ACTIONS(5052), + [anon_sym_DOLLAR] = ACTIONS(5054), + [anon_sym_DASH_DASH] = ACTIONS(5052), + [anon_sym_DASH2] = ACTIONS(5054), + [anon_sym_LBRACE] = ACTIONS(5052), + [anon_sym_RBRACE] = ACTIONS(5052), + [anon_sym_DOT_DOT] = ACTIONS(5054), + [anon_sym_LPAREN2] = ACTIONS(5052), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5052), + [anon_sym_DOT_DOT_LT] = ACTIONS(5052), + [anon_sym_null] = ACTIONS(5052), + [anon_sym_true] = ACTIONS(5052), + [anon_sym_false] = ACTIONS(5052), + [aux_sym__val_number_decimal_token1] = ACTIONS(5054), + [aux_sym__val_number_decimal_token2] = ACTIONS(5052), + [aux_sym__val_number_decimal_token3] = ACTIONS(5052), + [aux_sym__val_number_decimal_token4] = ACTIONS(5052), + [aux_sym__val_number_token1] = ACTIONS(5052), + [aux_sym__val_number_token2] = ACTIONS(5052), + [aux_sym__val_number_token3] = ACTIONS(5052), + [aux_sym__val_number_token4] = ACTIONS(5052), + [aux_sym__val_number_token5] = ACTIONS(5052), + [aux_sym__val_number_token6] = ACTIONS(5052), + [anon_sym_0b] = ACTIONS(5054), + [anon_sym_0o] = ACTIONS(5054), + [anon_sym_0x] = ACTIONS(5054), + [sym_val_date] = ACTIONS(5052), + [anon_sym_DQUOTE] = ACTIONS(5052), + [sym__str_single_quotes] = ACTIONS(5052), + [sym__str_back_ticks] = ACTIONS(5052), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5052), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5052), + [anon_sym_err_GT] = ACTIONS(5054), + [anon_sym_out_GT] = ACTIONS(5054), + [anon_sym_e_GT] = ACTIONS(5054), + [anon_sym_o_GT] = ACTIONS(5054), + [anon_sym_err_PLUSout_GT] = ACTIONS(5054), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5054), + [anon_sym_o_PLUSe_GT] = ACTIONS(5054), + [anon_sym_e_PLUSo_GT] = ACTIONS(5054), + [anon_sym_err_GT_GT] = ACTIONS(5052), + [anon_sym_out_GT_GT] = ACTIONS(5052), + [anon_sym_e_GT_GT] = ACTIONS(5052), + [anon_sym_o_GT_GT] = ACTIONS(5052), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5052), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5052), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5052), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5052), + [aux_sym_unquoted_token1] = ACTIONS(5054), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(5052), + }, + [1702] = { + [sym_comment] = STATE(1702), + [sym__newline] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1028), + [anon_sym_PIPE] = ACTIONS(1028), + [anon_sym_err_GT_PIPE] = ACTIONS(1028), + [anon_sym_out_GT_PIPE] = ACTIONS(1028), + [anon_sym_e_GT_PIPE] = ACTIONS(1028), + [anon_sym_o_GT_PIPE] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), + [anon_sym_LBRACK] = ACTIONS(1028), + [anon_sym_LPAREN] = ACTIONS(1028), + [anon_sym_RPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH_DASH] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(1026), + [anon_sym_LBRACE] = ACTIONS(1028), + [anon_sym_RBRACE] = ACTIONS(1028), + [anon_sym_DOT_DOT] = ACTIONS(1026), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT] = ACTIONS(1026), + [anon_sym_null] = ACTIONS(1026), + [anon_sym_true] = ACTIONS(1026), + [anon_sym_false] = ACTIONS(1026), + [aux_sym__val_number_decimal_token1] = ACTIONS(1026), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1026), + [aux_sym__val_number_decimal_token4] = ACTIONS(1026), + [aux_sym__val_number_token1] = ACTIONS(1026), + [aux_sym__val_number_token2] = ACTIONS(1026), + [aux_sym__val_number_token3] = ACTIONS(1026), + [aux_sym__val_number_token4] = ACTIONS(1026), + [aux_sym__val_number_token5] = ACTIONS(1026), + [aux_sym__val_number_token6] = ACTIONS(1026), + [anon_sym_0b] = ACTIONS(1026), + [anon_sym_0o] = ACTIONS(1026), + [anon_sym_0x] = ACTIONS(1026), + [sym_val_date] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1028), + [sym__str_single_quotes] = ACTIONS(1028), + [sym__str_back_ticks] = ACTIONS(1028), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1028), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1028), + [anon_sym_err_GT] = ACTIONS(1026), + [anon_sym_out_GT] = ACTIONS(1026), + [anon_sym_e_GT] = ACTIONS(1026), + [anon_sym_o_GT] = ACTIONS(1026), + [anon_sym_err_PLUSout_GT] = ACTIONS(1026), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), + [anon_sym_o_PLUSe_GT] = ACTIONS(1026), + [anon_sym_e_PLUSo_GT] = ACTIONS(1026), + [anon_sym_err_GT_GT] = ACTIONS(1026), + [anon_sym_out_GT_GT] = ACTIONS(1026), + [anon_sym_e_GT_GT] = ACTIONS(1026), + [anon_sym_o_GT_GT] = ACTIONS(1026), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1026), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1026), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1026), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1026), + [aux_sym_unquoted_token1] = ACTIONS(1026), + [aux_sym_unquoted_token4] = ACTIONS(2228), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1028), + }, + [1703] = { + [sym_cell_path] = STATE(2153), + [sym_path] = STATE(2080), + [sym_comment] = STATE(1703), + [aux_sym_cell_path_repeat1] = STATE(1816), + [ts_builtin_sym_end] = ACTIONS(963), + [sym__newline] = ACTIONS(963), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_err_GT_PIPE] = ACTIONS(963), + [anon_sym_out_GT_PIPE] = ACTIONS(963), + [anon_sym_e_GT_PIPE] = ACTIONS(963), + [anon_sym_o_GT_PIPE] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(963), + [anon_sym_GT2] = ACTIONS(961), + [anon_sym_DASH2] = ACTIONS(963), + [anon_sym_in2] = ACTIONS(963), + [anon_sym_STAR2] = ACTIONS(961), + [anon_sym_and2] = ACTIONS(963), + [anon_sym_xor2] = ACTIONS(963), + [anon_sym_or2] = ACTIONS(963), + [anon_sym_not_DASHin2] = ACTIONS(963), + [anon_sym_starts_DASHwith2] = ACTIONS(963), + [anon_sym_ends_DASHwith2] = ACTIONS(963), + [anon_sym_EQ_EQ2] = ACTIONS(963), + [anon_sym_BANG_EQ2] = ACTIONS(963), + [anon_sym_LT2] = ACTIONS(961), + [anon_sym_LT_EQ2] = ACTIONS(963), + [anon_sym_GT_EQ2] = ACTIONS(963), + [anon_sym_EQ_TILDE2] = ACTIONS(963), + [anon_sym_BANG_TILDE2] = ACTIONS(963), + [anon_sym_STAR_STAR2] = ACTIONS(963), + [anon_sym_PLUS_PLUS2] = ACTIONS(963), + [anon_sym_SLASH2] = ACTIONS(961), + [anon_sym_mod2] = ACTIONS(963), + [anon_sym_SLASH_SLASH2] = ACTIONS(963), + [anon_sym_PLUS2] = ACTIONS(961), + [anon_sym_bit_DASHshl2] = ACTIONS(963), + [anon_sym_bit_DASHshr2] = ACTIONS(963), + [anon_sym_bit_DASHand2] = ACTIONS(963), + [anon_sym_bit_DASHxor2] = ACTIONS(963), + [anon_sym_bit_DASHor2] = ACTIONS(963), + [anon_sym_DOT_DOT2] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(5020), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(963), + [anon_sym_DOT_DOT_LT2] = ACTIONS(963), + [anon_sym_err_GT] = ACTIONS(961), + [anon_sym_out_GT] = ACTIONS(961), + [anon_sym_e_GT] = ACTIONS(961), + [anon_sym_o_GT] = ACTIONS(961), + [anon_sym_err_PLUSout_GT] = ACTIONS(961), + [anon_sym_out_PLUSerr_GT] = ACTIONS(961), + [anon_sym_o_PLUSe_GT] = ACTIONS(961), + [anon_sym_e_PLUSo_GT] = ACTIONS(961), + [anon_sym_err_GT_GT] = ACTIONS(963), + [anon_sym_out_GT_GT] = ACTIONS(963), + [anon_sym_e_GT_GT] = ACTIONS(963), + [anon_sym_o_GT_GT] = ACTIONS(963), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(963), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(963), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(963), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(963), + [anon_sym_POUND] = ACTIONS(247), + }, + [1704] = { + [sym_comment] = STATE(1704), + [ts_builtin_sym_end] = ACTIONS(2262), + [sym__newline] = ACTIONS(2262), + [anon_sym_SEMI] = ACTIONS(2262), + [anon_sym_PIPE] = ACTIONS(2262), + [anon_sym_err_GT_PIPE] = ACTIONS(2262), + [anon_sym_out_GT_PIPE] = ACTIONS(2262), + [anon_sym_e_GT_PIPE] = ACTIONS(2262), + [anon_sym_o_GT_PIPE] = ACTIONS(2262), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2262), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2262), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2262), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2262), + [anon_sym_LBRACK] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2258), + [anon_sym_DOLLAR] = ACTIONS(2258), + [anon_sym_DASH_DASH] = ACTIONS(2262), + [anon_sym_DASH2] = ACTIONS(2258), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_DOT_DOT] = ACTIONS(2258), + [anon_sym_LPAREN2] = ACTIONS(2260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2262), + [anon_sym_DOT_DOT_LT] = ACTIONS(2262), + [anon_sym_null] = ACTIONS(2262), + [anon_sym_true] = ACTIONS(2262), + [anon_sym_false] = ACTIONS(2262), + [aux_sym__val_number_decimal_token1] = ACTIONS(2258), + [aux_sym__val_number_decimal_token2] = ACTIONS(2262), + [aux_sym__val_number_decimal_token3] = ACTIONS(2262), + [aux_sym__val_number_decimal_token4] = ACTIONS(2262), + [aux_sym__val_number_token1] = ACTIONS(2262), + [aux_sym__val_number_token2] = ACTIONS(2262), + [aux_sym__val_number_token3] = ACTIONS(2262), + [aux_sym__val_number_token4] = ACTIONS(2262), + [aux_sym__val_number_token5] = ACTIONS(2262), + [aux_sym__val_number_token6] = ACTIONS(2262), + [anon_sym_0b] = ACTIONS(2258), + [anon_sym_0o] = ACTIONS(2258), + [anon_sym_0x] = ACTIONS(2258), + [sym_val_date] = ACTIONS(2262), + [anon_sym_DQUOTE] = ACTIONS(2262), + [sym__str_single_quotes] = ACTIONS(2262), + [sym__str_back_ticks] = ACTIONS(2262), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2262), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2262), + [anon_sym_err_GT] = ACTIONS(2258), + [anon_sym_out_GT] = ACTIONS(2258), + [anon_sym_e_GT] = ACTIONS(2258), + [anon_sym_o_GT] = ACTIONS(2258), + [anon_sym_err_PLUSout_GT] = ACTIONS(2258), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2258), + [anon_sym_o_PLUSe_GT] = ACTIONS(2258), + [anon_sym_e_PLUSo_GT] = ACTIONS(2258), + [anon_sym_err_GT_GT] = ACTIONS(2262), + [anon_sym_out_GT_GT] = ACTIONS(2262), + [anon_sym_e_GT_GT] = ACTIONS(2262), + [anon_sym_o_GT_GT] = ACTIONS(2262), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2262), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2262), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2262), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2262), + [aux_sym_unquoted_token1] = ACTIONS(2258), + [aux_sym_unquoted_token2] = ACTIONS(1661), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2262), + }, + [1705] = { + [sym_comment] = STATE(1705), + [sym__newline] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_err_GT_PIPE] = ACTIONS(1046), + [anon_sym_out_GT_PIPE] = ACTIONS(1046), + [anon_sym_e_GT_PIPE] = ACTIONS(1046), + [anon_sym_o_GT_PIPE] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1046), + [anon_sym_RPAREN] = ACTIONS(1046), + [anon_sym_GT2] = ACTIONS(1044), + [anon_sym_DASH2] = ACTIONS(1046), + [anon_sym_in2] = ACTIONS(1046), + [anon_sym_if] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_RBRACE] = ACTIONS(1046), + [anon_sym_EQ_GT] = ACTIONS(1046), + [anon_sym_STAR2] = ACTIONS(1044), + [anon_sym_and2] = ACTIONS(1046), + [anon_sym_xor2] = ACTIONS(1046), + [anon_sym_or2] = ACTIONS(1046), + [anon_sym_not_DASHin2] = ACTIONS(1046), + [anon_sym_starts_DASHwith2] = ACTIONS(1046), + [anon_sym_ends_DASHwith2] = ACTIONS(1046), + [anon_sym_EQ_EQ2] = ACTIONS(1046), + [anon_sym_BANG_EQ2] = ACTIONS(1046), + [anon_sym_LT2] = ACTIONS(1044), + [anon_sym_LT_EQ2] = ACTIONS(1046), + [anon_sym_GT_EQ2] = ACTIONS(1046), + [anon_sym_EQ_TILDE2] = ACTIONS(1046), + [anon_sym_BANG_TILDE2] = ACTIONS(1046), + [anon_sym_STAR_STAR2] = ACTIONS(1046), + [anon_sym_PLUS_PLUS2] = ACTIONS(1046), + [anon_sym_SLASH2] = ACTIONS(1044), + [anon_sym_mod2] = ACTIONS(1046), + [anon_sym_SLASH_SLASH2] = ACTIONS(1046), + [anon_sym_PLUS2] = ACTIONS(1044), + [anon_sym_bit_DASHshl2] = ACTIONS(1046), + [anon_sym_bit_DASHshr2] = ACTIONS(1046), + [anon_sym_bit_DASHand2] = ACTIONS(1046), + [anon_sym_bit_DASHxor2] = ACTIONS(1046), + [anon_sym_bit_DASHor2] = ACTIONS(1046), + [anon_sym_DOT_DOT2] = ACTIONS(1044), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1046), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1046), + [anon_sym_err_GT] = ACTIONS(1044), + [anon_sym_out_GT] = ACTIONS(1044), + [anon_sym_e_GT] = ACTIONS(1044), + [anon_sym_o_GT] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT] = ACTIONS(1044), + [anon_sym_err_GT_GT] = ACTIONS(1046), + [anon_sym_out_GT_GT] = ACTIONS(1046), + [anon_sym_e_GT_GT] = ACTIONS(1046), + [anon_sym_o_GT_GT] = ACTIONS(1046), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1046), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1046), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1046), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1046), + [anon_sym_POUND] = ACTIONS(247), + }, [1706] = { [sym_comment] = STATE(1706), - [ts_builtin_sym_end] = ACTIONS(1741), - [sym__newline] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_err_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_GT_PIPE] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(1741), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT] = ACTIONS(1741), - [anon_sym_null] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1741), - [aux_sym__val_number_token5] = ACTIONS(1741), - [aux_sym__val_number_token6] = ACTIONS(1741), - [anon_sym_0b] = ACTIONS(1739), - [anon_sym_0o] = ACTIONS(1739), - [anon_sym_0x] = ACTIONS(1739), - [sym_val_date] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), - [anon_sym_err_GT] = ACTIONS(1739), - [anon_sym_out_GT] = ACTIONS(1739), - [anon_sym_e_GT] = ACTIONS(1739), - [anon_sym_o_GT] = ACTIONS(1739), - [anon_sym_err_PLUSout_GT] = ACTIONS(1739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), - [anon_sym_o_PLUSe_GT] = ACTIONS(1739), - [anon_sym_e_PLUSo_GT] = ACTIONS(1739), - [anon_sym_err_GT_GT] = ACTIONS(1741), - [anon_sym_out_GT_GT] = ACTIONS(1741), - [anon_sym_e_GT_GT] = ACTIONS(1741), - [anon_sym_o_GT_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), - [aux_sym_unquoted_token1] = ACTIONS(1739), - [aux_sym_unquoted_token2] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), + [sym__newline] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_PIPE] = ACTIONS(1719), + [anon_sym_err_GT_PIPE] = ACTIONS(1719), + [anon_sym_out_GT_PIPE] = ACTIONS(1719), + [anon_sym_e_GT_PIPE] = ACTIONS(1719), + [anon_sym_o_GT_PIPE] = ACTIONS(1719), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1719), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1719), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1719), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1719), + [anon_sym_LBRACK] = ACTIONS(1719), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_RPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1719), + [anon_sym_DASH2] = ACTIONS(1707), + [anon_sym_LBRACE] = ACTIONS(1719), + [anon_sym_RBRACE] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1719), + [anon_sym_DOT_DOT_LT] = ACTIONS(1719), + [anon_sym_null] = ACTIONS(1719), + [anon_sym_true] = ACTIONS(1719), + [anon_sym_false] = ACTIONS(1719), + [aux_sym__val_number_decimal_token1] = ACTIONS(1707), + [aux_sym__val_number_decimal_token2] = ACTIONS(1719), + [aux_sym__val_number_decimal_token3] = ACTIONS(1719), + [aux_sym__val_number_decimal_token4] = ACTIONS(1719), + [aux_sym__val_number_token1] = ACTIONS(1719), + [aux_sym__val_number_token2] = ACTIONS(1719), + [aux_sym__val_number_token3] = ACTIONS(1719), + [aux_sym__val_number_token4] = ACTIONS(1719), + [aux_sym__val_number_token5] = ACTIONS(1719), + [aux_sym__val_number_token6] = ACTIONS(1719), + [anon_sym_0b] = ACTIONS(1707), + [anon_sym_0o] = ACTIONS(1707), + [anon_sym_0x] = ACTIONS(1707), + [sym_val_date] = ACTIONS(1719), + [anon_sym_DQUOTE] = ACTIONS(1719), + [sym__str_single_quotes] = ACTIONS(1719), + [sym__str_back_ticks] = ACTIONS(1719), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1719), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1719), + [anon_sym_err_GT] = ACTIONS(1707), + [anon_sym_out_GT] = ACTIONS(1707), + [anon_sym_e_GT] = ACTIONS(1707), + [anon_sym_o_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT] = ACTIONS(1707), + [anon_sym_err_GT_GT] = ACTIONS(1719), + [anon_sym_out_GT_GT] = ACTIONS(1719), + [anon_sym_e_GT_GT] = ACTIONS(1719), + [anon_sym_o_GT_GT] = ACTIONS(1719), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1719), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1719), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1719), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1719), + [aux_sym_unquoted_token1] = ACTIONS(1707), + [aux_sym_unquoted_token2] = ACTIONS(4553), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1719), }, [1707] = { [sym_comment] = STATE(1707), - [ts_builtin_sym_end] = ACTIONS(2218), - [sym__newline] = ACTIONS(2218), - [anon_sym_SEMI] = ACTIONS(2218), - [anon_sym_PIPE] = ACTIONS(2218), - [anon_sym_err_GT_PIPE] = ACTIONS(2218), - [anon_sym_out_GT_PIPE] = ACTIONS(2218), - [anon_sym_e_GT_PIPE] = ACTIONS(2218), - [anon_sym_o_GT_PIPE] = ACTIONS(2218), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), - [anon_sym_LBRACK] = ACTIONS(2218), - [anon_sym_LPAREN] = ACTIONS(2214), - [anon_sym_DOLLAR] = ACTIONS(2214), - [anon_sym_DASH_DASH] = ACTIONS(2214), - [anon_sym_DASH2] = ACTIONS(2214), - [anon_sym_LBRACE] = ACTIONS(2218), - [anon_sym_DOT_DOT] = ACTIONS(2214), - [anon_sym_LPAREN2] = ACTIONS(2216), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2214), - [anon_sym_DOT_DOT_LT] = ACTIONS(2214), - [anon_sym_null] = ACTIONS(2214), - [anon_sym_true] = ACTIONS(2214), - [anon_sym_false] = ACTIONS(2214), - [aux_sym__val_number_decimal_token1] = ACTIONS(2214), - [aux_sym__val_number_decimal_token2] = ACTIONS(2214), - [aux_sym__val_number_decimal_token3] = ACTIONS(2214), - [aux_sym__val_number_decimal_token4] = ACTIONS(2214), - [aux_sym__val_number_token1] = ACTIONS(2214), - [aux_sym__val_number_token2] = ACTIONS(2214), - [aux_sym__val_number_token3] = ACTIONS(2214), - [aux_sym__val_number_token4] = ACTIONS(2214), - [aux_sym__val_number_token5] = ACTIONS(2214), - [aux_sym__val_number_token6] = ACTIONS(2214), - [anon_sym_0b] = ACTIONS(2214), - [anon_sym_0o] = ACTIONS(2214), - [anon_sym_0x] = ACTIONS(2214), - [sym_val_date] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2218), - [sym__str_single_quotes] = ACTIONS(2218), - [sym__str_back_ticks] = ACTIONS(2218), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2218), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2218), - [anon_sym_err_GT] = ACTIONS(2214), - [anon_sym_out_GT] = ACTIONS(2214), - [anon_sym_e_GT] = ACTIONS(2214), - [anon_sym_o_GT] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT] = ACTIONS(2214), - [anon_sym_err_GT_GT] = ACTIONS(2214), - [anon_sym_out_GT_GT] = ACTIONS(2214), - [anon_sym_e_GT_GT] = ACTIONS(2214), - [anon_sym_o_GT_GT] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2214), - [aux_sym_unquoted_token1] = ACTIONS(2214), - [aux_sym_unquoted_token4] = ACTIONS(2220), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2218), + [sym__newline] = ACTIONS(5056), + [anon_sym_SEMI] = ACTIONS(5056), + [anon_sym_PIPE] = ACTIONS(5056), + [anon_sym_err_GT_PIPE] = ACTIONS(5056), + [anon_sym_out_GT_PIPE] = ACTIONS(5056), + [anon_sym_e_GT_PIPE] = ACTIONS(5056), + [anon_sym_o_GT_PIPE] = ACTIONS(5056), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5056), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5056), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5056), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5056), + [anon_sym_LBRACK] = ACTIONS(5056), + [anon_sym_LPAREN] = ACTIONS(5056), + [anon_sym_RPAREN] = ACTIONS(5056), + [anon_sym_DOLLAR] = ACTIONS(5058), + [anon_sym_DASH_DASH] = ACTIONS(5056), + [anon_sym_DASH2] = ACTIONS(5058), + [anon_sym_LBRACE] = ACTIONS(5056), + [anon_sym_RBRACE] = ACTIONS(5056), + [anon_sym_DOT_DOT] = ACTIONS(5058), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5056), + [anon_sym_DOT_DOT_LT] = ACTIONS(5056), + [anon_sym_null] = ACTIONS(5056), + [anon_sym_true] = ACTIONS(5056), + [anon_sym_false] = ACTIONS(5056), + [aux_sym__val_number_decimal_token1] = ACTIONS(5058), + [aux_sym__val_number_decimal_token2] = ACTIONS(5056), + [aux_sym__val_number_decimal_token3] = ACTIONS(5056), + [aux_sym__val_number_decimal_token4] = ACTIONS(5056), + [aux_sym__val_number_token1] = ACTIONS(5056), + [aux_sym__val_number_token2] = ACTIONS(5056), + [aux_sym__val_number_token3] = ACTIONS(5056), + [aux_sym__val_number_token4] = ACTIONS(5056), + [aux_sym__val_number_token5] = ACTIONS(5056), + [aux_sym__val_number_token6] = ACTIONS(5056), + [anon_sym_0b] = ACTIONS(5058), + [anon_sym_0o] = ACTIONS(5058), + [anon_sym_0x] = ACTIONS(5058), + [sym_val_date] = ACTIONS(5056), + [anon_sym_DQUOTE] = ACTIONS(5056), + [sym__str_single_quotes] = ACTIONS(5056), + [sym__str_back_ticks] = ACTIONS(5056), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5056), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5056), + [anon_sym_err_GT] = ACTIONS(5058), + [anon_sym_out_GT] = ACTIONS(5058), + [anon_sym_e_GT] = ACTIONS(5058), + [anon_sym_o_GT] = ACTIONS(5058), + [anon_sym_err_PLUSout_GT] = ACTIONS(5058), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5058), + [anon_sym_o_PLUSe_GT] = ACTIONS(5058), + [anon_sym_e_PLUSo_GT] = ACTIONS(5058), + [anon_sym_err_GT_GT] = ACTIONS(5056), + [anon_sym_out_GT_GT] = ACTIONS(5056), + [anon_sym_e_GT_GT] = ACTIONS(5056), + [anon_sym_o_GT_GT] = ACTIONS(5056), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5056), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5056), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5056), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5056), + [anon_sym_EQ2] = ACTIONS(5060), + [aux_sym_unquoted_token1] = ACTIONS(5058), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(5056), }, [1708] = { [sym_comment] = STATE(1708), - [ts_builtin_sym_end] = ACTIONS(2224), - [sym__newline] = ACTIONS(2224), - [anon_sym_SEMI] = ACTIONS(2224), - [anon_sym_PIPE] = ACTIONS(2224), - [anon_sym_err_GT_PIPE] = ACTIONS(2224), - [anon_sym_out_GT_PIPE] = ACTIONS(2224), - [anon_sym_e_GT_PIPE] = ACTIONS(2224), - [anon_sym_o_GT_PIPE] = ACTIONS(2224), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2224), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2224), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2224), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2224), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_DOLLAR] = ACTIONS(2222), - [anon_sym_DASH_DASH] = ACTIONS(2222), - [anon_sym_DASH2] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2224), - [anon_sym_DOT_DOT] = ACTIONS(2222), - [anon_sym_LPAREN2] = ACTIONS(2216), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2222), - [anon_sym_DOT_DOT_LT] = ACTIONS(2222), - [anon_sym_null] = ACTIONS(2222), - [anon_sym_true] = ACTIONS(2222), - [anon_sym_false] = ACTIONS(2222), - [aux_sym__val_number_decimal_token1] = ACTIONS(2222), - [aux_sym__val_number_decimal_token2] = ACTIONS(2222), - [aux_sym__val_number_decimal_token3] = ACTIONS(2222), - [aux_sym__val_number_decimal_token4] = ACTIONS(2222), - [aux_sym__val_number_token1] = ACTIONS(2222), - [aux_sym__val_number_token2] = ACTIONS(2222), - [aux_sym__val_number_token3] = ACTIONS(2222), - [aux_sym__val_number_token4] = ACTIONS(2222), - [aux_sym__val_number_token5] = ACTIONS(2222), - [aux_sym__val_number_token6] = ACTIONS(2222), - [anon_sym_0b] = ACTIONS(2222), - [anon_sym_0o] = ACTIONS(2222), - [anon_sym_0x] = ACTIONS(2222), - [sym_val_date] = ACTIONS(2222), - [anon_sym_DQUOTE] = ACTIONS(2224), - [sym__str_single_quotes] = ACTIONS(2224), - [sym__str_back_ticks] = ACTIONS(2224), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2224), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2224), - [anon_sym_err_GT] = ACTIONS(2222), - [anon_sym_out_GT] = ACTIONS(2222), - [anon_sym_e_GT] = ACTIONS(2222), - [anon_sym_o_GT] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT] = ACTIONS(2222), - [anon_sym_err_GT_GT] = ACTIONS(2222), - [anon_sym_out_GT_GT] = ACTIONS(2222), - [anon_sym_e_GT_GT] = ACTIONS(2222), - [anon_sym_o_GT_GT] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2222), - [aux_sym_unquoted_token1] = ACTIONS(2222), - [aux_sym_unquoted_token4] = ACTIONS(2220), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2224), + [sym__newline] = ACTIONS(5062), + [anon_sym_SEMI] = ACTIONS(5062), + [anon_sym_PIPE] = ACTIONS(5062), + [anon_sym_err_GT_PIPE] = ACTIONS(5062), + [anon_sym_out_GT_PIPE] = ACTIONS(5062), + [anon_sym_e_GT_PIPE] = ACTIONS(5062), + [anon_sym_o_GT_PIPE] = ACTIONS(5062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5062), + [anon_sym_LBRACK] = ACTIONS(5062), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_RPAREN] = ACTIONS(5062), + [anon_sym_DOLLAR] = ACTIONS(5064), + [anon_sym_DASH_DASH] = ACTIONS(5062), + [anon_sym_DASH2] = ACTIONS(5064), + [anon_sym_LBRACE] = ACTIONS(5062), + [anon_sym_RBRACE] = ACTIONS(5062), + [anon_sym_DOT_DOT] = ACTIONS(5064), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5062), + [anon_sym_DOT_DOT_LT] = ACTIONS(5062), + [anon_sym_null] = ACTIONS(5062), + [anon_sym_true] = ACTIONS(5062), + [anon_sym_false] = ACTIONS(5062), + [aux_sym__val_number_decimal_token1] = ACTIONS(5064), + [aux_sym__val_number_decimal_token2] = ACTIONS(5062), + [aux_sym__val_number_decimal_token3] = ACTIONS(5062), + [aux_sym__val_number_decimal_token4] = ACTIONS(5062), + [aux_sym__val_number_token1] = ACTIONS(5062), + [aux_sym__val_number_token2] = ACTIONS(5062), + [aux_sym__val_number_token3] = ACTIONS(5062), + [aux_sym__val_number_token4] = ACTIONS(5062), + [aux_sym__val_number_token5] = ACTIONS(5062), + [aux_sym__val_number_token6] = ACTIONS(5062), + [anon_sym_0b] = ACTIONS(5064), + [anon_sym_0o] = ACTIONS(5064), + [anon_sym_0x] = ACTIONS(5064), + [sym_val_date] = ACTIONS(5062), + [anon_sym_DQUOTE] = ACTIONS(5062), + [sym__str_single_quotes] = ACTIONS(5062), + [sym__str_back_ticks] = ACTIONS(5062), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5062), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5062), + [anon_sym_err_GT] = ACTIONS(5064), + [anon_sym_out_GT] = ACTIONS(5064), + [anon_sym_e_GT] = ACTIONS(5064), + [anon_sym_o_GT] = ACTIONS(5064), + [anon_sym_err_PLUSout_GT] = ACTIONS(5064), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5064), + [anon_sym_o_PLUSe_GT] = ACTIONS(5064), + [anon_sym_e_PLUSo_GT] = ACTIONS(5064), + [anon_sym_err_GT_GT] = ACTIONS(5062), + [anon_sym_out_GT_GT] = ACTIONS(5062), + [anon_sym_e_GT_GT] = ACTIONS(5062), + [anon_sym_o_GT_GT] = ACTIONS(5062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5062), + [aux_sym_unquoted_token1] = ACTIONS(5064), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(5062), }, [1709] = { - [sym_cell_path] = STATE(2118), - [sym_path] = STATE(1894), + [sym_cell_path] = STATE(2140), + [sym_path] = STATE(2080), [sym_comment] = STATE(1709), - [aux_sym_cell_path_repeat1] = STATE(1702), - [sym__newline] = ACTIONS(2096), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_err_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_GT_PIPE] = ACTIONS(2096), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2096), - [anon_sym_RPAREN] = ACTIONS(2096), - [anon_sym_GT2] = ACTIONS(2094), - [anon_sym_DASH2] = ACTIONS(2096), - [anon_sym_in2] = ACTIONS(2096), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_RBRACE] = ACTIONS(2096), - [anon_sym_EQ_GT] = ACTIONS(2096), - [anon_sym_STAR2] = ACTIONS(2094), - [anon_sym_and2] = ACTIONS(2096), - [anon_sym_xor2] = ACTIONS(2096), - [anon_sym_or2] = ACTIONS(2096), - [anon_sym_not_DASHin2] = ACTIONS(2096), - [anon_sym_starts_DASHwith2] = ACTIONS(2096), - [anon_sym_ends_DASHwith2] = ACTIONS(2096), - [anon_sym_EQ_EQ2] = ACTIONS(2096), - [anon_sym_BANG_EQ2] = ACTIONS(2096), - [anon_sym_LT2] = ACTIONS(2094), - [anon_sym_LT_EQ2] = ACTIONS(2096), - [anon_sym_GT_EQ2] = ACTIONS(2096), - [anon_sym_EQ_TILDE2] = ACTIONS(2096), - [anon_sym_BANG_TILDE2] = ACTIONS(2096), - [anon_sym_STAR_STAR2] = ACTIONS(2096), - [anon_sym_PLUS_PLUS2] = ACTIONS(2096), - [anon_sym_SLASH2] = ACTIONS(2094), - [anon_sym_mod2] = ACTIONS(2096), - [anon_sym_SLASH_SLASH2] = ACTIONS(2096), - [anon_sym_PLUS2] = ACTIONS(2094), - [anon_sym_bit_DASHshl2] = ACTIONS(2096), - [anon_sym_bit_DASHshr2] = ACTIONS(2096), - [anon_sym_bit_DASHand2] = ACTIONS(2096), - [anon_sym_bit_DASHxor2] = ACTIONS(2096), - [anon_sym_bit_DASHor2] = ACTIONS(2096), - [anon_sym_DOT] = ACTIONS(4902), - [anon_sym_err_GT] = ACTIONS(2094), - [anon_sym_out_GT] = ACTIONS(2094), - [anon_sym_e_GT] = ACTIONS(2094), - [anon_sym_o_GT] = ACTIONS(2094), - [anon_sym_err_PLUSout_GT] = ACTIONS(2094), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2094), - [anon_sym_o_PLUSe_GT] = ACTIONS(2094), - [anon_sym_e_PLUSo_GT] = ACTIONS(2094), - [anon_sym_err_GT_GT] = ACTIONS(2096), - [anon_sym_out_GT_GT] = ACTIONS(2096), - [anon_sym_e_GT_GT] = ACTIONS(2096), - [anon_sym_o_GT_GT] = ACTIONS(2096), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2096), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2096), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2096), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2096), + [aux_sym_cell_path_repeat1] = STATE(1816), + [ts_builtin_sym_end] = ACTIONS(1749), + [sym__newline] = ACTIONS(1749), + [anon_sym_SEMI] = ACTIONS(1749), + [anon_sym_PIPE] = ACTIONS(1749), + [anon_sym_err_GT_PIPE] = ACTIONS(1749), + [anon_sym_out_GT_PIPE] = ACTIONS(1749), + [anon_sym_e_GT_PIPE] = ACTIONS(1749), + [anon_sym_o_GT_PIPE] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1749), + [anon_sym_GT2] = ACTIONS(1747), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_in2] = ACTIONS(1749), + [anon_sym_STAR2] = ACTIONS(1747), + [anon_sym_and2] = ACTIONS(1749), + [anon_sym_xor2] = ACTIONS(1749), + [anon_sym_or2] = ACTIONS(1749), + [anon_sym_not_DASHin2] = ACTIONS(1749), + [anon_sym_starts_DASHwith2] = ACTIONS(1749), + [anon_sym_ends_DASHwith2] = ACTIONS(1749), + [anon_sym_EQ_EQ2] = ACTIONS(1749), + [anon_sym_BANG_EQ2] = ACTIONS(1749), + [anon_sym_LT2] = ACTIONS(1747), + [anon_sym_LT_EQ2] = ACTIONS(1749), + [anon_sym_GT_EQ2] = ACTIONS(1749), + [anon_sym_EQ_TILDE2] = ACTIONS(1749), + [anon_sym_BANG_TILDE2] = ACTIONS(1749), + [anon_sym_STAR_STAR2] = ACTIONS(1749), + [anon_sym_PLUS_PLUS2] = ACTIONS(1749), + [anon_sym_SLASH2] = ACTIONS(1747), + [anon_sym_mod2] = ACTIONS(1749), + [anon_sym_SLASH_SLASH2] = ACTIONS(1749), + [anon_sym_PLUS2] = ACTIONS(1747), + [anon_sym_bit_DASHshl2] = ACTIONS(1749), + [anon_sym_bit_DASHshr2] = ACTIONS(1749), + [anon_sym_bit_DASHand2] = ACTIONS(1749), + [anon_sym_bit_DASHxor2] = ACTIONS(1749), + [anon_sym_bit_DASHor2] = ACTIONS(1749), + [anon_sym_DOT_DOT2] = ACTIONS(1747), + [anon_sym_DOT] = ACTIONS(5020), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1749), + [anon_sym_err_GT] = ACTIONS(1747), + [anon_sym_out_GT] = ACTIONS(1747), + [anon_sym_e_GT] = ACTIONS(1747), + [anon_sym_o_GT] = ACTIONS(1747), + [anon_sym_err_PLUSout_GT] = ACTIONS(1747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1747), + [anon_sym_o_PLUSe_GT] = ACTIONS(1747), + [anon_sym_e_PLUSo_GT] = ACTIONS(1747), + [anon_sym_err_GT_GT] = ACTIONS(1749), + [anon_sym_out_GT_GT] = ACTIONS(1749), + [anon_sym_e_GT_GT] = ACTIONS(1749), + [anon_sym_o_GT_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1749), [anon_sym_POUND] = ACTIONS(247), }, [1710] = { + [sym_cmd_identifier] = STATE(4154), + [sym__command_name] = STATE(6522), + [sym_scope_pattern] = STATE(6253), + [sym_wild_card] = STATE(6524), + [sym_command_list] = STATE(6525), + [sym__val_number_decimal] = STATE(3764), + [sym_val_string] = STATE(4161), + [sym__raw_str] = STATE(4332), + [sym__str_double_quotes] = STATE(4332), [sym_comment] = STATE(1710), - [ts_builtin_sym_end] = ACTIONS(1886), - [sym__newline] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_err_GT_PIPE] = ACTIONS(1886), - [anon_sym_out_GT_PIPE] = ACTIONS(1886), - [anon_sym_e_GT_PIPE] = ACTIONS(1886), - [anon_sym_o_GT_PIPE] = ACTIONS(1886), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1886), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1886), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1886), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1886), - [anon_sym_LBRACK] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_DOLLAR] = ACTIONS(1878), - [anon_sym_DASH_DASH] = ACTIONS(1886), - [anon_sym_DASH2] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1878), - [anon_sym_LPAREN2] = ACTIONS(1880), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1886), - [anon_sym_DOT_DOT_LT] = ACTIONS(1886), - [anon_sym_null] = ACTIONS(1886), - [anon_sym_true] = ACTIONS(1886), - [anon_sym_false] = ACTIONS(1886), - [aux_sym__val_number_decimal_token1] = ACTIONS(1878), - [aux_sym__val_number_decimal_token2] = ACTIONS(1886), - [aux_sym__val_number_decimal_token3] = ACTIONS(1886), - [aux_sym__val_number_decimal_token4] = ACTIONS(1886), - [aux_sym__val_number_token1] = ACTIONS(1886), - [aux_sym__val_number_token2] = ACTIONS(1886), - [aux_sym__val_number_token3] = ACTIONS(1886), - [aux_sym__val_number_token4] = ACTIONS(1886), - [aux_sym__val_number_token5] = ACTIONS(1886), - [aux_sym__val_number_token6] = ACTIONS(1886), - [anon_sym_0b] = ACTIONS(1878), - [anon_sym_0o] = ACTIONS(1878), - [anon_sym_0x] = ACTIONS(1878), - [sym_val_date] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(1886), - [sym__str_single_quotes] = ACTIONS(1886), - [sym__str_back_ticks] = ACTIONS(1886), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1886), - [anon_sym_err_GT] = ACTIONS(1878), - [anon_sym_out_GT] = ACTIONS(1878), - [anon_sym_e_GT] = ACTIONS(1878), - [anon_sym_o_GT] = ACTIONS(1878), - [anon_sym_err_PLUSout_GT] = ACTIONS(1878), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1878), - [anon_sym_o_PLUSe_GT] = ACTIONS(1878), - [anon_sym_e_PLUSo_GT] = ACTIONS(1878), - [anon_sym_err_GT_GT] = ACTIONS(1886), - [anon_sym_out_GT_GT] = ACTIONS(1886), - [anon_sym_e_GT_GT] = ACTIONS(1886), - [anon_sym_o_GT_GT] = ACTIONS(1886), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1886), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1886), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1886), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1886), - [aux_sym_unquoted_token1] = ACTIONS(1878), - [aux_sym_unquoted_token2] = ACTIONS(1888), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1886), + [aux_sym_cmd_identifier_token1] = ACTIONS(5036), + [aux_sym_cmd_identifier_token2] = ACTIONS(5038), + [aux_sym_cmd_identifier_token3] = ACTIONS(5038), + [aux_sym_cmd_identifier_token4] = ACTIONS(5038), + [aux_sym_cmd_identifier_token5] = ACTIONS(5038), + [aux_sym_cmd_identifier_token6] = ACTIONS(5038), + [aux_sym_cmd_identifier_token7] = ACTIONS(5038), + [aux_sym_cmd_identifier_token8] = ACTIONS(5038), + [aux_sym_cmd_identifier_token9] = ACTIONS(5036), + [aux_sym_cmd_identifier_token10] = ACTIONS(5038), + [aux_sym_cmd_identifier_token11] = ACTIONS(5038), + [aux_sym_cmd_identifier_token12] = ACTIONS(5038), + [aux_sym_cmd_identifier_token13] = ACTIONS(5036), + [aux_sym_cmd_identifier_token14] = ACTIONS(5038), + [aux_sym_cmd_identifier_token15] = ACTIONS(5036), + [aux_sym_cmd_identifier_token16] = ACTIONS(5038), + [aux_sym_cmd_identifier_token17] = ACTIONS(5038), + [aux_sym_cmd_identifier_token18] = ACTIONS(5038), + [aux_sym_cmd_identifier_token19] = ACTIONS(5038), + [aux_sym_cmd_identifier_token20] = ACTIONS(5038), + [aux_sym_cmd_identifier_token21] = ACTIONS(5038), + [aux_sym_cmd_identifier_token22] = ACTIONS(5038), + [aux_sym_cmd_identifier_token23] = ACTIONS(5038), + [aux_sym_cmd_identifier_token24] = ACTIONS(5038), + [aux_sym_cmd_identifier_token25] = ACTIONS(5038), + [aux_sym_cmd_identifier_token26] = ACTIONS(5038), + [aux_sym_cmd_identifier_token27] = ACTIONS(5038), + [aux_sym_cmd_identifier_token28] = ACTIONS(5038), + [aux_sym_cmd_identifier_token29] = ACTIONS(5038), + [aux_sym_cmd_identifier_token30] = ACTIONS(5038), + [aux_sym_cmd_identifier_token31] = ACTIONS(5038), + [aux_sym_cmd_identifier_token32] = ACTIONS(5038), + [aux_sym_cmd_identifier_token33] = ACTIONS(5038), + [aux_sym_cmd_identifier_token34] = ACTIONS(5036), + [aux_sym_cmd_identifier_token35] = ACTIONS(5038), + [aux_sym_cmd_identifier_token36] = ACTIONS(5038), + [aux_sym_cmd_identifier_token37] = ACTIONS(5038), + [aux_sym_cmd_identifier_token38] = ACTIONS(5036), + [aux_sym_cmd_identifier_token39] = ACTIONS(5038), + [aux_sym_cmd_identifier_token40] = ACTIONS(5038), + [sym__newline] = ACTIONS(5066), + [anon_sym_SEMI] = ACTIONS(5066), + [anon_sym_LBRACK] = ACTIONS(5042), + [anon_sym_RPAREN] = ACTIONS(5066), + [anon_sym_RBRACE] = ACTIONS(5066), + [anon_sym_STAR2] = ACTIONS(5044), + [aux_sym__val_number_decimal_token1] = ACTIONS(5046), + [aux_sym__val_number_decimal_token2] = ACTIONS(5046), + [aux_sym__val_number_decimal_token3] = ACTIONS(5048), + [aux_sym__val_number_decimal_token4] = ACTIONS(5050), + [anon_sym_DQUOTE] = ACTIONS(4001), + [sym__str_single_quotes] = ACTIONS(4003), + [sym__str_back_ticks] = ACTIONS(4003), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4005), }, [1711] = { - [sym_cell_path] = STATE(2120), - [sym_path] = STATE(1894), [sym_comment] = STATE(1711), - [aux_sym_cell_path_repeat1] = STATE(1702), - [sym__newline] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2092), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_err_GT_PIPE] = ACTIONS(2092), - [anon_sym_out_GT_PIPE] = ACTIONS(2092), - [anon_sym_e_GT_PIPE] = ACTIONS(2092), - [anon_sym_o_GT_PIPE] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2092), - [anon_sym_RPAREN] = ACTIONS(2092), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2092), - [anon_sym_in2] = ACTIONS(2092), - [anon_sym_LBRACE] = ACTIONS(2092), - [anon_sym_RBRACE] = ACTIONS(2092), - [anon_sym_EQ_GT] = ACTIONS(2092), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2092), - [anon_sym_xor2] = ACTIONS(2092), - [anon_sym_or2] = ACTIONS(2092), - [anon_sym_not_DASHin2] = ACTIONS(2092), - [anon_sym_starts_DASHwith2] = ACTIONS(2092), - [anon_sym_ends_DASHwith2] = ACTIONS(2092), - [anon_sym_EQ_EQ2] = ACTIONS(2092), - [anon_sym_BANG_EQ2] = ACTIONS(2092), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2092), - [anon_sym_GT_EQ2] = ACTIONS(2092), - [anon_sym_EQ_TILDE2] = ACTIONS(2092), - [anon_sym_BANG_TILDE2] = ACTIONS(2092), - [anon_sym_STAR_STAR2] = ACTIONS(2092), - [anon_sym_PLUS_PLUS2] = ACTIONS(2092), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2092), - [anon_sym_SLASH_SLASH2] = ACTIONS(2092), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2092), - [anon_sym_bit_DASHshr2] = ACTIONS(2092), - [anon_sym_bit_DASHand2] = ACTIONS(2092), - [anon_sym_bit_DASHxor2] = ACTIONS(2092), - [anon_sym_bit_DASHor2] = ACTIONS(2092), - [anon_sym_DOT] = ACTIONS(4902), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2092), - [anon_sym_out_GT_GT] = ACTIONS(2092), - [anon_sym_e_GT_GT] = ACTIONS(2092), - [anon_sym_o_GT_GT] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2092), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(2242), + [sym__newline] = ACTIONS(2242), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_PIPE] = ACTIONS(2242), + [anon_sym_err_GT_PIPE] = ACTIONS(2242), + [anon_sym_out_GT_PIPE] = ACTIONS(2242), + [anon_sym_e_GT_PIPE] = ACTIONS(2242), + [anon_sym_o_GT_PIPE] = ACTIONS(2242), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2242), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2242), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2242), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(2242), + [anon_sym_LPAREN] = ACTIONS(2238), + [anon_sym_DOLLAR] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2238), + [anon_sym_DASH2] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2242), + [anon_sym_DOT_DOT] = ACTIONS(2238), + [anon_sym_LPAREN2] = ACTIONS(2240), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2238), + [anon_sym_DOT_DOT_LT] = ACTIONS(2238), + [anon_sym_null] = ACTIONS(2238), + [anon_sym_true] = ACTIONS(2238), + [anon_sym_false] = ACTIONS(2238), + [aux_sym__val_number_decimal_token1] = ACTIONS(2238), + [aux_sym__val_number_decimal_token2] = ACTIONS(2238), + [aux_sym__val_number_decimal_token3] = ACTIONS(2238), + [aux_sym__val_number_decimal_token4] = ACTIONS(2238), + [aux_sym__val_number_token1] = ACTIONS(2238), + [aux_sym__val_number_token2] = ACTIONS(2238), + [aux_sym__val_number_token3] = ACTIONS(2238), + [aux_sym__val_number_token4] = ACTIONS(2238), + [aux_sym__val_number_token5] = ACTIONS(2238), + [aux_sym__val_number_token6] = ACTIONS(2238), + [anon_sym_0b] = ACTIONS(2238), + [anon_sym_0o] = ACTIONS(2238), + [anon_sym_0x] = ACTIONS(2238), + [sym_val_date] = ACTIONS(2238), + [anon_sym_DQUOTE] = ACTIONS(2242), + [sym__str_single_quotes] = ACTIONS(2242), + [sym__str_back_ticks] = ACTIONS(2242), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2242), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2242), + [anon_sym_err_GT] = ACTIONS(2238), + [anon_sym_out_GT] = ACTIONS(2238), + [anon_sym_e_GT] = ACTIONS(2238), + [anon_sym_o_GT] = ACTIONS(2238), + [anon_sym_err_PLUSout_GT] = ACTIONS(2238), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2238), + [anon_sym_o_PLUSe_GT] = ACTIONS(2238), + [anon_sym_e_PLUSo_GT] = ACTIONS(2238), + [anon_sym_err_GT_GT] = ACTIONS(2238), + [anon_sym_out_GT_GT] = ACTIONS(2238), + [anon_sym_e_GT_GT] = ACTIONS(2238), + [anon_sym_o_GT_GT] = ACTIONS(2238), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2238), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2238), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2238), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2238), + [aux_sym_unquoted_token1] = ACTIONS(2238), + [aux_sym_unquoted_token4] = ACTIONS(2244), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2242), }, [1712] = { [sym_comment] = STATE(1712), - [ts_builtin_sym_end] = ACTIONS(4956), - [sym__newline] = ACTIONS(4956), - [anon_sym_SEMI] = ACTIONS(4956), - [anon_sym_PIPE] = ACTIONS(4956), - [anon_sym_err_GT_PIPE] = ACTIONS(4956), - [anon_sym_out_GT_PIPE] = ACTIONS(4956), - [anon_sym_e_GT_PIPE] = ACTIONS(4956), - [anon_sym_o_GT_PIPE] = ACTIONS(4956), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4956), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4956), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4956), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4956), - [anon_sym_LBRACK] = ACTIONS(4956), - [anon_sym_LPAREN] = ACTIONS(4956), - [anon_sym_DOLLAR] = ACTIONS(4958), - [anon_sym_DASH_DASH] = ACTIONS(4958), - [anon_sym_DASH2] = ACTIONS(4958), - [anon_sym_LBRACE] = ACTIONS(4956), - [anon_sym_DOT_DOT] = ACTIONS(4958), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4956), - [anon_sym_DOT_DOT_LT] = ACTIONS(4956), - [anon_sym_null] = ACTIONS(4958), - [anon_sym_true] = ACTIONS(4958), - [anon_sym_false] = ACTIONS(4958), - [aux_sym__val_number_decimal_token1] = ACTIONS(4958), - [aux_sym__val_number_decimal_token2] = ACTIONS(4958), - [aux_sym__val_number_decimal_token3] = ACTIONS(4956), - [aux_sym__val_number_decimal_token4] = ACTIONS(4956), - [aux_sym__val_number_token1] = ACTIONS(4958), - [aux_sym__val_number_token2] = ACTIONS(4958), - [aux_sym__val_number_token3] = ACTIONS(4958), - [aux_sym__val_number_token4] = ACTIONS(4958), - [aux_sym__val_number_token5] = ACTIONS(4958), - [aux_sym__val_number_token6] = ACTIONS(4958), - [anon_sym_0b] = ACTIONS(4958), - [anon_sym_0o] = ACTIONS(4958), - [anon_sym_0x] = ACTIONS(4958), - [sym_val_date] = ACTIONS(4958), - [anon_sym_DQUOTE] = ACTIONS(4956), - [sym__str_single_quotes] = ACTIONS(4956), - [sym__str_back_ticks] = ACTIONS(4956), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4956), - [anon_sym_err_GT] = ACTIONS(4958), - [anon_sym_out_GT] = ACTIONS(4958), - [anon_sym_e_GT] = ACTIONS(4958), - [anon_sym_o_GT] = ACTIONS(4958), - [anon_sym_err_PLUSout_GT] = ACTIONS(4958), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4958), - [anon_sym_o_PLUSe_GT] = ACTIONS(4958), - [anon_sym_e_PLUSo_GT] = ACTIONS(4958), - [anon_sym_err_GT_GT] = ACTIONS(4956), - [anon_sym_out_GT_GT] = ACTIONS(4956), - [anon_sym_e_GT_GT] = ACTIONS(4956), - [anon_sym_o_GT_GT] = ACTIONS(4956), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4956), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4956), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4956), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4956), - [anon_sym_EQ2] = ACTIONS(5069), - [sym_short_flag_identifier] = ACTIONS(5071), - [aux_sym_unquoted_token1] = ACTIONS(4958), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4956), + [ts_builtin_sym_end] = ACTIONS(1828), + [sym__newline] = ACTIONS(1828), + [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_PIPE] = ACTIONS(1828), + [anon_sym_err_GT_PIPE] = ACTIONS(1828), + [anon_sym_out_GT_PIPE] = ACTIONS(1828), + [anon_sym_e_GT_PIPE] = ACTIONS(1828), + [anon_sym_o_GT_PIPE] = ACTIONS(1828), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1828), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1828), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1828), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1828), + [anon_sym_LBRACK] = ACTIONS(1828), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_DOLLAR] = ACTIONS(1820), + [anon_sym_DASH_DASH] = ACTIONS(1828), + [anon_sym_DASH2] = ACTIONS(1820), + [anon_sym_LBRACE] = ACTIONS(1828), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_LPAREN2] = ACTIONS(1822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1828), + [anon_sym_DOT_DOT_LT] = ACTIONS(1828), + [anon_sym_null] = ACTIONS(1828), + [anon_sym_true] = ACTIONS(1828), + [anon_sym_false] = ACTIONS(1828), + [aux_sym__val_number_decimal_token1] = ACTIONS(1820), + [aux_sym__val_number_decimal_token2] = ACTIONS(1828), + [aux_sym__val_number_decimal_token3] = ACTIONS(1828), + [aux_sym__val_number_decimal_token4] = ACTIONS(1828), + [aux_sym__val_number_token1] = ACTIONS(1828), + [aux_sym__val_number_token2] = ACTIONS(1828), + [aux_sym__val_number_token3] = ACTIONS(1828), + [aux_sym__val_number_token4] = ACTIONS(1828), + [aux_sym__val_number_token5] = ACTIONS(1828), + [aux_sym__val_number_token6] = ACTIONS(1828), + [anon_sym_0b] = ACTIONS(1820), + [anon_sym_0o] = ACTIONS(1820), + [anon_sym_0x] = ACTIONS(1820), + [sym_val_date] = ACTIONS(1828), + [anon_sym_DQUOTE] = ACTIONS(1828), + [sym__str_single_quotes] = ACTIONS(1828), + [sym__str_back_ticks] = ACTIONS(1828), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1828), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1828), + [anon_sym_err_GT] = ACTIONS(1820), + [anon_sym_out_GT] = ACTIONS(1820), + [anon_sym_e_GT] = ACTIONS(1820), + [anon_sym_o_GT] = ACTIONS(1820), + [anon_sym_err_PLUSout_GT] = ACTIONS(1820), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1820), + [anon_sym_o_PLUSe_GT] = ACTIONS(1820), + [anon_sym_e_PLUSo_GT] = ACTIONS(1820), + [anon_sym_err_GT_GT] = ACTIONS(1828), + [anon_sym_out_GT_GT] = ACTIONS(1828), + [anon_sym_e_GT_GT] = ACTIONS(1828), + [anon_sym_o_GT_GT] = ACTIONS(1828), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1828), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1828), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1828), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1828), + [aux_sym_unquoted_token1] = ACTIONS(1820), + [aux_sym_unquoted_token2] = ACTIONS(1559), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1828), }, [1713] = { - [sym__expression] = STATE(5658), - [sym_expr_unary] = STATE(3905), - [sym__expr_unary_minus] = STATE(3850), - [sym_expr_binary] = STATE(3905), - [sym__expr_binary_expression] = STATE(3977), - [sym_expr_parenthesized] = STATE(3599), - [sym_val_range] = STATE(3597), - [sym__value] = STATE(3905), - [sym_val_nothing] = STATE(3532), - [sym_val_bool] = STATE(3532), - [sym_val_variable] = STATE(3594), - [sym_val_number] = STATE(3532), - [sym__val_number_decimal] = STATE(3514), - [sym__val_number] = STATE(3492), - [sym_val_duration] = STATE(3532), - [sym_val_filesize] = STATE(3532), - [sym_val_binary] = STATE(3532), - [sym_val_string] = STATE(3532), - [sym__raw_str] = STATE(3584), - [sym__str_double_quotes] = STATE(3584), - [sym_val_interpolated] = STATE(3532), - [sym__inter_single_quotes] = STATE(3486), - [sym__inter_double_quotes] = STATE(3489), - [sym_val_list] = STATE(3532), - [sym_val_record] = STATE(3532), - [sym_val_table] = STATE(3532), - [sym_val_closure] = STATE(3532), - [sym__flag] = STATE(2130), - [sym_short_flag] = STATE(3624), - [sym_long_flag] = STATE(3624), [sym_comment] = STATE(1713), - [anon_sym_LBRACK] = ACTIONS(3439), - [anon_sym_LPAREN] = ACTIONS(4996), - [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_DASH_DASH] = ACTIONS(5000), - [anon_sym_DASH2] = ACTIONS(5002), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(5004), - [aux_sym_expr_unary_token1] = ACTIONS(3451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5006), - [anon_sym_DOT_DOT_LT] = ACTIONS(5006), - [anon_sym_null] = ACTIONS(5008), - [anon_sym_true] = ACTIONS(5010), - [anon_sym_false] = ACTIONS(5010), - [aux_sym__val_number_decimal_token1] = ACTIONS(3459), - [aux_sym__val_number_decimal_token2] = ACTIONS(3461), - [aux_sym__val_number_decimal_token3] = ACTIONS(3463), - [aux_sym__val_number_decimal_token4] = ACTIONS(3465), - [aux_sym__val_number_token1] = ACTIONS(3467), - [aux_sym__val_number_token2] = ACTIONS(3467), - [aux_sym__val_number_token3] = ACTIONS(3467), - [aux_sym__val_number_token4] = ACTIONS(3467), - [aux_sym__val_number_token5] = ACTIONS(3467), - [aux_sym__val_number_token6] = ACTIONS(3467), - [anon_sym_0b] = ACTIONS(3471), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(5012), - [anon_sym_DQUOTE] = ACTIONS(3477), - [sym__str_single_quotes] = ACTIONS(3479), - [sym__str_back_ticks] = ACTIONS(3479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(3487), + [sym__newline] = ACTIONS(2242), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_PIPE] = ACTIONS(2242), + [anon_sym_err_GT_PIPE] = ACTIONS(2242), + [anon_sym_out_GT_PIPE] = ACTIONS(2242), + [anon_sym_e_GT_PIPE] = ACTIONS(2242), + [anon_sym_o_GT_PIPE] = ACTIONS(2242), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2242), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2242), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2242), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(2242), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_RPAREN] = ACTIONS(2242), + [anon_sym_DOLLAR] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2238), + [anon_sym_DASH2] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2242), + [anon_sym_RBRACE] = ACTIONS(2242), + [anon_sym_DOT_DOT] = ACTIONS(2238), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2238), + [anon_sym_DOT_DOT_LT] = ACTIONS(2238), + [anon_sym_null] = ACTIONS(2238), + [anon_sym_true] = ACTIONS(2238), + [anon_sym_false] = ACTIONS(2238), + [aux_sym__val_number_decimal_token1] = ACTIONS(2238), + [aux_sym__val_number_decimal_token2] = ACTIONS(2238), + [aux_sym__val_number_decimal_token3] = ACTIONS(2238), + [aux_sym__val_number_decimal_token4] = ACTIONS(2238), + [aux_sym__val_number_token1] = ACTIONS(2238), + [aux_sym__val_number_token2] = ACTIONS(2238), + [aux_sym__val_number_token3] = ACTIONS(2238), + [aux_sym__val_number_token4] = ACTIONS(2238), + [aux_sym__val_number_token5] = ACTIONS(2238), + [aux_sym__val_number_token6] = ACTIONS(2238), + [anon_sym_0b] = ACTIONS(2238), + [anon_sym_0o] = ACTIONS(2238), + [anon_sym_0x] = ACTIONS(2238), + [sym_val_date] = ACTIONS(2238), + [anon_sym_DQUOTE] = ACTIONS(2242), + [sym__str_single_quotes] = ACTIONS(2242), + [sym__str_back_ticks] = ACTIONS(2242), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2242), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2242), + [anon_sym_err_GT] = ACTIONS(2238), + [anon_sym_out_GT] = ACTIONS(2238), + [anon_sym_e_GT] = ACTIONS(2238), + [anon_sym_o_GT] = ACTIONS(2238), + [anon_sym_err_PLUSout_GT] = ACTIONS(2238), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2238), + [anon_sym_o_PLUSe_GT] = ACTIONS(2238), + [anon_sym_e_PLUSo_GT] = ACTIONS(2238), + [anon_sym_err_GT_GT] = ACTIONS(2238), + [anon_sym_out_GT_GT] = ACTIONS(2238), + [anon_sym_e_GT_GT] = ACTIONS(2238), + [anon_sym_o_GT_GT] = ACTIONS(2238), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2238), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2238), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2238), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2238), + [aux_sym_unquoted_token1] = ACTIONS(2238), + [aux_sym_unquoted_token4] = ACTIONS(2244), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2242), }, [1714] = { [sym_comment] = STATE(1714), - [sym__newline] = ACTIONS(1721), - [anon_sym_SEMI] = ACTIONS(1721), - [anon_sym_PIPE] = ACTIONS(1721), - [anon_sym_err_GT_PIPE] = ACTIONS(1721), - [anon_sym_out_GT_PIPE] = ACTIONS(1721), - [anon_sym_e_GT_PIPE] = ACTIONS(1721), - [anon_sym_o_GT_PIPE] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1721), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_RPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1709), - [anon_sym_DASH_DASH] = ACTIONS(1721), - [anon_sym_DASH2] = ACTIONS(1709), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1709), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT] = ACTIONS(1721), - [anon_sym_null] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1709), - [aux_sym__val_number_decimal_token2] = ACTIONS(1721), - [aux_sym__val_number_decimal_token3] = ACTIONS(1721), - [aux_sym__val_number_decimal_token4] = ACTIONS(1721), - [aux_sym__val_number_token1] = ACTIONS(1721), - [aux_sym__val_number_token2] = ACTIONS(1721), - [aux_sym__val_number_token3] = ACTIONS(1721), - [aux_sym__val_number_token4] = ACTIONS(1721), - [aux_sym__val_number_token5] = ACTIONS(1721), - [aux_sym__val_number_token6] = ACTIONS(1721), - [anon_sym_0b] = ACTIONS(1709), - [anon_sym_0o] = ACTIONS(1709), - [anon_sym_0x] = ACTIONS(1709), - [sym_val_date] = ACTIONS(1721), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym__str_single_quotes] = ACTIONS(1721), - [sym__str_back_ticks] = ACTIONS(1721), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1721), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1721), - [anon_sym_err_GT] = ACTIONS(1709), - [anon_sym_out_GT] = ACTIONS(1709), - [anon_sym_e_GT] = ACTIONS(1709), - [anon_sym_o_GT] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT] = ACTIONS(1709), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), - [anon_sym_o_PLUSe_GT] = ACTIONS(1709), - [anon_sym_e_PLUSo_GT] = ACTIONS(1709), - [anon_sym_err_GT_GT] = ACTIONS(1721), - [anon_sym_out_GT_GT] = ACTIONS(1721), - [anon_sym_e_GT_GT] = ACTIONS(1721), - [anon_sym_o_GT_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1721), - [aux_sym_unquoted_token1] = ACTIONS(1709), - [aux_sym_unquoted_token2] = ACTIONS(4259), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1721), + [sym__newline] = ACTIONS(2326), + [anon_sym_SEMI] = ACTIONS(2326), + [anon_sym_PIPE] = ACTIONS(2326), + [anon_sym_err_GT_PIPE] = ACTIONS(2326), + [anon_sym_out_GT_PIPE] = ACTIONS(2326), + [anon_sym_e_GT_PIPE] = ACTIONS(2326), + [anon_sym_o_GT_PIPE] = ACTIONS(2326), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2326), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2326), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2326), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2326), + [anon_sym_LBRACK] = ACTIONS(2322), + [anon_sym_LPAREN] = ACTIONS(2326), + [anon_sym_RPAREN] = ACTIONS(2326), + [anon_sym_DOLLAR] = ACTIONS(2322), + [anon_sym_DASH_DASH] = ACTIONS(2326), + [anon_sym_DASH2] = ACTIONS(2322), + [anon_sym_LBRACE] = ACTIONS(2326), + [anon_sym_RBRACE] = ACTIONS(2326), + [anon_sym_DOT_DOT] = ACTIONS(2322), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2326), + [anon_sym_DOT_DOT_LT] = ACTIONS(2326), + [anon_sym_null] = ACTIONS(2326), + [anon_sym_true] = ACTIONS(2326), + [anon_sym_false] = ACTIONS(2326), + [aux_sym__val_number_decimal_token1] = ACTIONS(2322), + [aux_sym__val_number_decimal_token2] = ACTIONS(2326), + [aux_sym__val_number_decimal_token3] = ACTIONS(2326), + [aux_sym__val_number_decimal_token4] = ACTIONS(2326), + [aux_sym__val_number_token1] = ACTIONS(2326), + [aux_sym__val_number_token2] = ACTIONS(2326), + [aux_sym__val_number_token3] = ACTIONS(2326), + [aux_sym__val_number_token4] = ACTIONS(2326), + [aux_sym__val_number_token5] = ACTIONS(2326), + [aux_sym__val_number_token6] = ACTIONS(2326), + [anon_sym_0b] = ACTIONS(2322), + [anon_sym_0o] = ACTIONS(2322), + [anon_sym_0x] = ACTIONS(2322), + [anon_sym_LBRACK2] = ACTIONS(5068), + [sym_val_date] = ACTIONS(2326), + [anon_sym_DQUOTE] = ACTIONS(2326), + [sym__str_single_quotes] = ACTIONS(2326), + [sym__str_back_ticks] = ACTIONS(2326), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2326), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2326), + [anon_sym_err_GT] = ACTIONS(2322), + [anon_sym_out_GT] = ACTIONS(2322), + [anon_sym_e_GT] = ACTIONS(2322), + [anon_sym_o_GT] = ACTIONS(2322), + [anon_sym_err_PLUSout_GT] = ACTIONS(2322), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2322), + [anon_sym_o_PLUSe_GT] = ACTIONS(2322), + [anon_sym_e_PLUSo_GT] = ACTIONS(2322), + [anon_sym_err_GT_GT] = ACTIONS(2326), + [anon_sym_out_GT_GT] = ACTIONS(2326), + [anon_sym_e_GT_GT] = ACTIONS(2326), + [anon_sym_o_GT_GT] = ACTIONS(2326), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2326), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2326), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2326), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2326), + [aux_sym_unquoted_token1] = ACTIONS(2322), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(2326), }, [1715] = { [sym_comment] = STATE(1715), - [sym__newline] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(1012), - [anon_sym_err_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_GT_PIPE] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), - [anon_sym_LBRACK] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1012), - [anon_sym_RPAREN] = ACTIONS(1012), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_DASH_DASH] = ACTIONS(1012), - [anon_sym_DASH2] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym_DOT_DOT] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(1010), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1012), - [anon_sym_DOT_DOT_LT] = ACTIONS(1012), - [anon_sym_null] = ACTIONS(1012), - [anon_sym_true] = ACTIONS(1012), - [anon_sym_false] = ACTIONS(1012), - [aux_sym__val_number_decimal_token1] = ACTIONS(1010), - [aux_sym__val_number_decimal_token2] = ACTIONS(1012), - [aux_sym__val_number_decimal_token3] = ACTIONS(1012), - [aux_sym__val_number_decimal_token4] = ACTIONS(1012), - [aux_sym__val_number_token1] = ACTIONS(1012), - [aux_sym__val_number_token2] = ACTIONS(1012), - [aux_sym__val_number_token3] = ACTIONS(1012), - [aux_sym__val_number_token4] = ACTIONS(1012), - [aux_sym__val_number_token5] = ACTIONS(1012), - [aux_sym__val_number_token6] = ACTIONS(1012), - [anon_sym_0b] = ACTIONS(1010), - [anon_sym_0o] = ACTIONS(1010), - [anon_sym_0x] = ACTIONS(1010), - [sym_val_date] = ACTIONS(1012), - [anon_sym_DQUOTE] = ACTIONS(1012), - [sym__str_single_quotes] = ACTIONS(1012), - [sym__str_back_ticks] = ACTIONS(1012), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1012), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1012), - [anon_sym_err_GT] = ACTIONS(1010), - [anon_sym_out_GT] = ACTIONS(1010), - [anon_sym_e_GT] = ACTIONS(1010), - [anon_sym_o_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT] = ACTIONS(1010), - [anon_sym_err_GT_GT] = ACTIONS(1012), - [anon_sym_out_GT_GT] = ACTIONS(1012), - [anon_sym_e_GT_GT] = ACTIONS(1012), - [anon_sym_o_GT_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), - [aux_sym_unquoted_token1] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1012), + [ts_builtin_sym_end] = ACTIONS(1028), + [sym__newline] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1028), + [anon_sym_PIPE] = ACTIONS(1028), + [anon_sym_err_GT_PIPE] = ACTIONS(1028), + [anon_sym_out_GT_PIPE] = ACTIONS(1028), + [anon_sym_e_GT_PIPE] = ACTIONS(1028), + [anon_sym_o_GT_PIPE] = ACTIONS(1028), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1028), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1028), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1028), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1028), + [anon_sym_LBRACK] = ACTIONS(1028), + [anon_sym_LPAREN] = ACTIONS(1026), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH_DASH] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(1026), + [anon_sym_LBRACE] = ACTIONS(1028), + [anon_sym_DOT_DOT] = ACTIONS(1026), + [anon_sym_LPAREN2] = ACTIONS(2226), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1026), + [anon_sym_DOT_DOT_LT] = ACTIONS(1026), + [anon_sym_null] = ACTIONS(1026), + [anon_sym_true] = ACTIONS(1026), + [anon_sym_false] = ACTIONS(1026), + [aux_sym__val_number_decimal_token1] = ACTIONS(1026), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1026), + [aux_sym__val_number_decimal_token4] = ACTIONS(1026), + [aux_sym__val_number_token1] = ACTIONS(1026), + [aux_sym__val_number_token2] = ACTIONS(1026), + [aux_sym__val_number_token3] = ACTIONS(1026), + [aux_sym__val_number_token4] = ACTIONS(1026), + [aux_sym__val_number_token5] = ACTIONS(1026), + [aux_sym__val_number_token6] = ACTIONS(1026), + [anon_sym_0b] = ACTIONS(1026), + [anon_sym_0o] = ACTIONS(1026), + [anon_sym_0x] = ACTIONS(1026), + [sym_val_date] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1028), + [sym__str_single_quotes] = ACTIONS(1028), + [sym__str_back_ticks] = ACTIONS(1028), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1028), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1028), + [anon_sym_err_GT] = ACTIONS(1026), + [anon_sym_out_GT] = ACTIONS(1026), + [anon_sym_e_GT] = ACTIONS(1026), + [anon_sym_o_GT] = ACTIONS(1026), + [anon_sym_err_PLUSout_GT] = ACTIONS(1026), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1026), + [anon_sym_o_PLUSe_GT] = ACTIONS(1026), + [anon_sym_e_PLUSo_GT] = ACTIONS(1026), + [anon_sym_err_GT_GT] = ACTIONS(1026), + [anon_sym_out_GT_GT] = ACTIONS(1026), + [anon_sym_e_GT_GT] = ACTIONS(1026), + [anon_sym_o_GT_GT] = ACTIONS(1026), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1026), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1026), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1026), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1026), + [aux_sym_unquoted_token1] = ACTIONS(1026), + [aux_sym_unquoted_token4] = ACTIONS(2228), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1028), }, [1716] = { [sym_comment] = STATE(1716), - [ts_builtin_sym_end] = ACTIONS(1675), - [sym__newline] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_err_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_GT_PIPE] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1675), - [anon_sym_in2] = ACTIONS(1675), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1675), - [anon_sym_xor2] = ACTIONS(1675), - [anon_sym_or2] = ACTIONS(1675), - [anon_sym_not_DASHin2] = ACTIONS(1675), - [anon_sym_starts_DASHwith2] = ACTIONS(1675), - [anon_sym_ends_DASHwith2] = ACTIONS(1675), - [anon_sym_EQ_EQ2] = ACTIONS(1675), - [anon_sym_BANG_EQ2] = ACTIONS(1675), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1675), - [anon_sym_GT_EQ2] = ACTIONS(1675), - [anon_sym_EQ_TILDE2] = ACTIONS(1675), - [anon_sym_BANG_TILDE2] = ACTIONS(1675), - [anon_sym_LPAREN2] = ACTIONS(1675), - [anon_sym_STAR_STAR2] = ACTIONS(1675), - [anon_sym_PLUS_PLUS2] = ACTIONS(1675), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1675), - [anon_sym_SLASH_SLASH2] = ACTIONS(1675), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1675), - [anon_sym_bit_DASHshr2] = ACTIONS(1675), - [anon_sym_bit_DASHand2] = ACTIONS(1675), - [anon_sym_bit_DASHxor2] = ACTIONS(1675), - [anon_sym_bit_DASHor2] = ACTIONS(1675), - [anon_sym_DOT_DOT2] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1675), - [sym_filesize_unit] = ACTIONS(1673), - [sym_duration_unit] = ACTIONS(1675), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1675), - [anon_sym_out_GT_GT] = ACTIONS(1675), - [anon_sym_e_GT_GT] = ACTIONS(1675), - [anon_sym_o_GT_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), - [aux_sym_unquoted_token2] = ACTIONS(1673), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2250), + [anon_sym_err_GT_PIPE] = ACTIONS(2250), + [anon_sym_out_GT_PIPE] = ACTIONS(2250), + [anon_sym_e_GT_PIPE] = ACTIONS(2250), + [anon_sym_o_GT_PIPE] = ACTIONS(2250), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2250), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2250), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2250), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_RPAREN] = ACTIONS(2250), + [anon_sym_DOLLAR] = ACTIONS(2246), + [anon_sym_DASH_DASH] = ACTIONS(2246), + [anon_sym_DASH2] = ACTIONS(2246), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_DOT_DOT] = ACTIONS(2246), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2246), + [anon_sym_DOT_DOT_LT] = ACTIONS(2246), + [anon_sym_null] = ACTIONS(2246), + [anon_sym_true] = ACTIONS(2246), + [anon_sym_false] = ACTIONS(2246), + [aux_sym__val_number_decimal_token1] = ACTIONS(2246), + [aux_sym__val_number_decimal_token2] = ACTIONS(2246), + [aux_sym__val_number_decimal_token3] = ACTIONS(2246), + [aux_sym__val_number_decimal_token4] = ACTIONS(2246), + [aux_sym__val_number_token1] = ACTIONS(2246), + [aux_sym__val_number_token2] = ACTIONS(2246), + [aux_sym__val_number_token3] = ACTIONS(2246), + [aux_sym__val_number_token4] = ACTIONS(2246), + [aux_sym__val_number_token5] = ACTIONS(2246), + [aux_sym__val_number_token6] = ACTIONS(2246), + [anon_sym_0b] = ACTIONS(2246), + [anon_sym_0o] = ACTIONS(2246), + [anon_sym_0x] = ACTIONS(2246), + [sym_val_date] = ACTIONS(2246), + [anon_sym_DQUOTE] = ACTIONS(2250), + [sym__str_single_quotes] = ACTIONS(2250), + [sym__str_back_ticks] = ACTIONS(2250), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2250), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2250), + [anon_sym_err_GT] = ACTIONS(2246), + [anon_sym_out_GT] = ACTIONS(2246), + [anon_sym_e_GT] = ACTIONS(2246), + [anon_sym_o_GT] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT] = ACTIONS(2246), + [anon_sym_err_GT_GT] = ACTIONS(2246), + [anon_sym_out_GT_GT] = ACTIONS(2246), + [anon_sym_e_GT_GT] = ACTIONS(2246), + [anon_sym_o_GT_GT] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2246), + [aux_sym_unquoted_token1] = ACTIONS(2246), + [aux_sym_unquoted_token4] = ACTIONS(2252), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2250), }, [1717] = { - [sym_path] = STATE(1894), [sym_comment] = STATE(1717), - [aux_sym_cell_path_repeat1] = STATE(1717), - [sym__newline] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(973), - [anon_sym_err_GT_PIPE] = ACTIONS(973), - [anon_sym_out_GT_PIPE] = ACTIONS(973), - [anon_sym_e_GT_PIPE] = ACTIONS(973), - [anon_sym_o_GT_PIPE] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(973), - [anon_sym_RPAREN] = ACTIONS(973), - [anon_sym_GT2] = ACTIONS(971), - [anon_sym_DASH2] = ACTIONS(973), - [anon_sym_in2] = ACTIONS(973), - [anon_sym_if] = ACTIONS(973), - [anon_sym_LBRACE] = ACTIONS(973), - [anon_sym_RBRACE] = ACTIONS(973), - [anon_sym_EQ_GT] = ACTIONS(973), - [anon_sym_STAR2] = ACTIONS(971), - [anon_sym_and2] = ACTIONS(973), - [anon_sym_xor2] = ACTIONS(973), - [anon_sym_or2] = ACTIONS(973), - [anon_sym_not_DASHin2] = ACTIONS(973), - [anon_sym_starts_DASHwith2] = ACTIONS(973), - [anon_sym_ends_DASHwith2] = ACTIONS(973), - [anon_sym_EQ_EQ2] = ACTIONS(973), - [anon_sym_BANG_EQ2] = ACTIONS(973), - [anon_sym_LT2] = ACTIONS(971), - [anon_sym_LT_EQ2] = ACTIONS(973), - [anon_sym_GT_EQ2] = ACTIONS(973), - [anon_sym_EQ_TILDE2] = ACTIONS(973), - [anon_sym_BANG_TILDE2] = ACTIONS(973), - [anon_sym_STAR_STAR2] = ACTIONS(973), - [anon_sym_PLUS_PLUS2] = ACTIONS(973), - [anon_sym_SLASH2] = ACTIONS(971), - [anon_sym_mod2] = ACTIONS(973), - [anon_sym_SLASH_SLASH2] = ACTIONS(973), - [anon_sym_PLUS2] = ACTIONS(971), - [anon_sym_bit_DASHshl2] = ACTIONS(973), - [anon_sym_bit_DASHshr2] = ACTIONS(973), - [anon_sym_bit_DASHand2] = ACTIONS(973), - [anon_sym_bit_DASHxor2] = ACTIONS(973), - [anon_sym_bit_DASHor2] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(5073), - [anon_sym_err_GT] = ACTIONS(971), - [anon_sym_out_GT] = ACTIONS(971), - [anon_sym_e_GT] = ACTIONS(971), - [anon_sym_o_GT] = ACTIONS(971), - [anon_sym_err_PLUSout_GT] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT] = ACTIONS(971), - [anon_sym_o_PLUSe_GT] = ACTIONS(971), - [anon_sym_e_PLUSo_GT] = ACTIONS(971), - [anon_sym_err_GT_GT] = ACTIONS(973), - [anon_sym_out_GT_GT] = ACTIONS(973), - [anon_sym_e_GT_GT] = ACTIONS(973), - [anon_sym_o_GT_GT] = ACTIONS(973), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(973), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(973), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(973), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(973), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(2256), + [anon_sym_SEMI] = ACTIONS(2256), + [anon_sym_PIPE] = ACTIONS(2256), + [anon_sym_err_GT_PIPE] = ACTIONS(2256), + [anon_sym_out_GT_PIPE] = ACTIONS(2256), + [anon_sym_e_GT_PIPE] = ACTIONS(2256), + [anon_sym_o_GT_PIPE] = ACTIONS(2256), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2256), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2256), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2256), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2256), + [anon_sym_LBRACK] = ACTIONS(2256), + [anon_sym_LPAREN] = ACTIONS(2256), + [anon_sym_RPAREN] = ACTIONS(2256), + [anon_sym_DOLLAR] = ACTIONS(2254), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_DASH2] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(2256), + [anon_sym_RBRACE] = ACTIONS(2256), + [anon_sym_DOT_DOT] = ACTIONS(2254), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2254), + [anon_sym_DOT_DOT_LT] = ACTIONS(2254), + [anon_sym_null] = ACTIONS(2254), + [anon_sym_true] = ACTIONS(2254), + [anon_sym_false] = ACTIONS(2254), + [aux_sym__val_number_decimal_token1] = ACTIONS(2254), + [aux_sym__val_number_decimal_token2] = ACTIONS(2254), + [aux_sym__val_number_decimal_token3] = ACTIONS(2254), + [aux_sym__val_number_decimal_token4] = ACTIONS(2254), + [aux_sym__val_number_token1] = ACTIONS(2254), + [aux_sym__val_number_token2] = ACTIONS(2254), + [aux_sym__val_number_token3] = ACTIONS(2254), + [aux_sym__val_number_token4] = ACTIONS(2254), + [aux_sym__val_number_token5] = ACTIONS(2254), + [aux_sym__val_number_token6] = ACTIONS(2254), + [anon_sym_0b] = ACTIONS(2254), + [anon_sym_0o] = ACTIONS(2254), + [anon_sym_0x] = ACTIONS(2254), + [sym_val_date] = ACTIONS(2254), + [anon_sym_DQUOTE] = ACTIONS(2256), + [sym__str_single_quotes] = ACTIONS(2256), + [sym__str_back_ticks] = ACTIONS(2256), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2256), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2256), + [anon_sym_err_GT] = ACTIONS(2254), + [anon_sym_out_GT] = ACTIONS(2254), + [anon_sym_e_GT] = ACTIONS(2254), + [anon_sym_o_GT] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT] = ACTIONS(2254), + [anon_sym_err_GT_GT] = ACTIONS(2254), + [anon_sym_out_GT_GT] = ACTIONS(2254), + [anon_sym_e_GT_GT] = ACTIONS(2254), + [anon_sym_o_GT_GT] = ACTIONS(2254), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), + [aux_sym_unquoted_token1] = ACTIONS(2254), + [aux_sym_unquoted_token4] = ACTIONS(2252), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2256), }, [1718] = { + [sym_cell_path] = STATE(1652), + [sym_path] = STATE(1882), [sym_comment] = STATE(1718), - [ts_builtin_sym_end] = ACTIONS(1785), - [sym__newline] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_err_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_GT_PIPE] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_DASH2] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_DOT_DOT] = ACTIONS(1783), - [anon_sym_LPAREN2] = ACTIONS(1785), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_LT] = ACTIONS(1785), - [anon_sym_null] = ACTIONS(1785), - [anon_sym_true] = ACTIONS(1785), - [anon_sym_false] = ACTIONS(1785), - [aux_sym__val_number_decimal_token1] = ACTIONS(1783), - [aux_sym__val_number_decimal_token2] = ACTIONS(1785), - [aux_sym__val_number_decimal_token3] = ACTIONS(1785), - [aux_sym__val_number_decimal_token4] = ACTIONS(1785), - [aux_sym__val_number_token1] = ACTIONS(1785), - [aux_sym__val_number_token2] = ACTIONS(1785), - [aux_sym__val_number_token3] = ACTIONS(1785), - [aux_sym__val_number_token4] = ACTIONS(1785), - [aux_sym__val_number_token5] = ACTIONS(1785), - [aux_sym__val_number_token6] = ACTIONS(1785), - [anon_sym_0b] = ACTIONS(1783), - [anon_sym_0o] = ACTIONS(1783), - [anon_sym_0x] = ACTIONS(1783), - [sym_val_date] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1785), - [sym__str_single_quotes] = ACTIONS(1785), - [sym__str_back_ticks] = ACTIONS(1785), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1785), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1785), - [anon_sym_err_GT] = ACTIONS(1783), - [anon_sym_out_GT] = ACTIONS(1783), - [anon_sym_e_GT] = ACTIONS(1783), - [anon_sym_o_GT] = ACTIONS(1783), - [anon_sym_err_PLUSout_GT] = ACTIONS(1783), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1783), - [anon_sym_o_PLUSe_GT] = ACTIONS(1783), - [anon_sym_e_PLUSo_GT] = ACTIONS(1783), - [anon_sym_err_GT_GT] = ACTIONS(1785), - [anon_sym_out_GT_GT] = ACTIONS(1785), - [anon_sym_e_GT_GT] = ACTIONS(1785), - [anon_sym_o_GT_GT] = ACTIONS(1785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1785), - [aux_sym_unquoted_token1] = ACTIONS(1783), - [aux_sym_unquoted_token2] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1785), + [aux_sym_cell_path_repeat1] = STATE(1690), + [sym__newline] = ACTIONS(1749), + [anon_sym_SEMI] = ACTIONS(1749), + [anon_sym_PIPE] = ACTIONS(1749), + [anon_sym_err_GT_PIPE] = ACTIONS(1749), + [anon_sym_out_GT_PIPE] = ACTIONS(1749), + [anon_sym_e_GT_PIPE] = ACTIONS(1749), + [anon_sym_o_GT_PIPE] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1749), + [anon_sym_RPAREN] = ACTIONS(1749), + [anon_sym_GT2] = ACTIONS(1747), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_in2] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1749), + [anon_sym_EQ_GT] = ACTIONS(1749), + [anon_sym_STAR2] = ACTIONS(1747), + [anon_sym_and2] = ACTIONS(1749), + [anon_sym_xor2] = ACTIONS(1749), + [anon_sym_or2] = ACTIONS(1749), + [anon_sym_not_DASHin2] = ACTIONS(1749), + [anon_sym_starts_DASHwith2] = ACTIONS(1749), + [anon_sym_ends_DASHwith2] = ACTIONS(1749), + [anon_sym_EQ_EQ2] = ACTIONS(1749), + [anon_sym_BANG_EQ2] = ACTIONS(1749), + [anon_sym_LT2] = ACTIONS(1747), + [anon_sym_LT_EQ2] = ACTIONS(1749), + [anon_sym_GT_EQ2] = ACTIONS(1749), + [anon_sym_EQ_TILDE2] = ACTIONS(1749), + [anon_sym_BANG_TILDE2] = ACTIONS(1749), + [anon_sym_STAR_STAR2] = ACTIONS(1749), + [anon_sym_PLUS_PLUS2] = ACTIONS(1749), + [anon_sym_SLASH2] = ACTIONS(1747), + [anon_sym_mod2] = ACTIONS(1749), + [anon_sym_SLASH_SLASH2] = ACTIONS(1749), + [anon_sym_PLUS2] = ACTIONS(1747), + [anon_sym_bit_DASHshl2] = ACTIONS(1749), + [anon_sym_bit_DASHshr2] = ACTIONS(1749), + [anon_sym_bit_DASHand2] = ACTIONS(1749), + [anon_sym_bit_DASHxor2] = ACTIONS(1749), + [anon_sym_bit_DASHor2] = ACTIONS(1749), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_err_GT] = ACTIONS(1747), + [anon_sym_out_GT] = ACTIONS(1747), + [anon_sym_e_GT] = ACTIONS(1747), + [anon_sym_o_GT] = ACTIONS(1747), + [anon_sym_err_PLUSout_GT] = ACTIONS(1747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1747), + [anon_sym_o_PLUSe_GT] = ACTIONS(1747), + [anon_sym_e_PLUSo_GT] = ACTIONS(1747), + [anon_sym_err_GT_GT] = ACTIONS(1749), + [anon_sym_out_GT_GT] = ACTIONS(1749), + [anon_sym_e_GT_GT] = ACTIONS(1749), + [anon_sym_o_GT_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(247), }, [1719] = { [sym_comment] = STATE(1719), - [ts_builtin_sym_end] = ACTIONS(1765), - [sym__newline] = ACTIONS(1765), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_err_GT_PIPE] = ACTIONS(1765), - [anon_sym_out_GT_PIPE] = ACTIONS(1765), - [anon_sym_e_GT_PIPE] = ACTIONS(1765), - [anon_sym_o_GT_PIPE] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1765), - [anon_sym_GT2] = ACTIONS(1763), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_STAR2] = ACTIONS(1763), - [anon_sym_and2] = ACTIONS(1765), - [anon_sym_xor2] = ACTIONS(1765), - [anon_sym_or2] = ACTIONS(1765), - [anon_sym_not_DASHin2] = ACTIONS(1765), - [anon_sym_starts_DASHwith2] = ACTIONS(1765), - [anon_sym_ends_DASHwith2] = ACTIONS(1765), - [anon_sym_EQ_EQ2] = ACTIONS(1765), - [anon_sym_BANG_EQ2] = ACTIONS(1765), - [anon_sym_LT2] = ACTIONS(1763), - [anon_sym_LT_EQ2] = ACTIONS(1765), - [anon_sym_GT_EQ2] = ACTIONS(1765), - [anon_sym_EQ_TILDE2] = ACTIONS(1765), - [anon_sym_BANG_TILDE2] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1765), - [anon_sym_STAR_STAR2] = ACTIONS(1765), - [anon_sym_PLUS_PLUS2] = ACTIONS(1765), - [anon_sym_SLASH2] = ACTIONS(1763), - [anon_sym_mod2] = ACTIONS(1765), - [anon_sym_SLASH_SLASH2] = ACTIONS(1765), - [anon_sym_PLUS2] = ACTIONS(1763), - [anon_sym_bit_DASHshl2] = ACTIONS(1765), - [anon_sym_bit_DASHshr2] = ACTIONS(1765), - [anon_sym_bit_DASHand2] = ACTIONS(1765), - [anon_sym_bit_DASHxor2] = ACTIONS(1765), - [anon_sym_bit_DASHor2] = ACTIONS(1765), - [anon_sym_DOT_DOT2] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), - [sym_filesize_unit] = ACTIONS(1763), - [sym_duration_unit] = ACTIONS(1765), - [anon_sym_err_GT] = ACTIONS(1763), - [anon_sym_out_GT] = ACTIONS(1763), - [anon_sym_e_GT] = ACTIONS(1763), - [anon_sym_o_GT] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT] = ACTIONS(1763), - [anon_sym_err_GT_GT] = ACTIONS(1765), - [anon_sym_out_GT_GT] = ACTIONS(1765), - [anon_sym_e_GT_GT] = ACTIONS(1765), - [anon_sym_o_GT_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1765), - [aux_sym_unquoted_token2] = ACTIONS(1763), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1810), + [sym__newline] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_PIPE] = ACTIONS(1810), + [anon_sym_err_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_GT_PIPE] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1802), + [anon_sym_DOLLAR] = ACTIONS(1802), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_DASH2] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_DOT_DOT] = ACTIONS(1802), + [anon_sym_LPAREN2] = ACTIONS(1804), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1810), + [anon_sym_DOT_DOT_LT] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1810), + [anon_sym_false] = ACTIONS(1810), + [aux_sym__val_number_decimal_token1] = ACTIONS(1802), + [aux_sym__val_number_decimal_token2] = ACTIONS(1810), + [aux_sym__val_number_decimal_token3] = ACTIONS(1810), + [aux_sym__val_number_decimal_token4] = ACTIONS(1810), + [aux_sym__val_number_token1] = ACTIONS(1810), + [aux_sym__val_number_token2] = ACTIONS(1810), + [aux_sym__val_number_token3] = ACTIONS(1810), + [aux_sym__val_number_token4] = ACTIONS(1810), + [aux_sym__val_number_token5] = ACTIONS(1810), + [aux_sym__val_number_token6] = ACTIONS(1810), + [anon_sym_0b] = ACTIONS(1802), + [anon_sym_0o] = ACTIONS(1802), + [anon_sym_0x] = ACTIONS(1802), + [sym_val_date] = ACTIONS(1810), + [anon_sym_DQUOTE] = ACTIONS(1810), + [sym__str_single_quotes] = ACTIONS(1810), + [sym__str_back_ticks] = ACTIONS(1810), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1810), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1810), + [anon_sym_err_GT] = ACTIONS(1802), + [anon_sym_out_GT] = ACTIONS(1802), + [anon_sym_e_GT] = ACTIONS(1802), + [anon_sym_o_GT] = ACTIONS(1802), + [anon_sym_err_PLUSout_GT] = ACTIONS(1802), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1802), + [anon_sym_o_PLUSe_GT] = ACTIONS(1802), + [anon_sym_e_PLUSo_GT] = ACTIONS(1802), + [anon_sym_err_GT_GT] = ACTIONS(1810), + [anon_sym_out_GT_GT] = ACTIONS(1810), + [anon_sym_e_GT_GT] = ACTIONS(1810), + [anon_sym_o_GT_GT] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), + [aux_sym_unquoted_token1] = ACTIONS(1802), + [aux_sym_unquoted_token2] = ACTIONS(1812), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1810), }, [1720] = { - [sym__expr_parenthesized_immediate] = STATE(7505), [sym_comment] = STATE(1720), - [sym__newline] = ACTIONS(5076), - [anon_sym_SEMI] = ACTIONS(5076), - [anon_sym_PIPE] = ACTIONS(5076), - [anon_sym_err_GT_PIPE] = ACTIONS(5076), - [anon_sym_out_GT_PIPE] = ACTIONS(5076), - [anon_sym_e_GT_PIPE] = ACTIONS(5076), - [anon_sym_o_GT_PIPE] = ACTIONS(5076), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5076), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5076), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5076), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5076), - [anon_sym_LBRACK] = ACTIONS(5076), - [anon_sym_LPAREN] = ACTIONS(5078), - [anon_sym_RPAREN] = ACTIONS(5076), - [anon_sym_DOLLAR] = ACTIONS(5078), - [anon_sym_DASH_DASH] = ACTIONS(5076), - [anon_sym_DASH2] = ACTIONS(5078), - [anon_sym_LBRACE] = ACTIONS(5076), - [anon_sym_DOT_DOT] = ACTIONS(5078), - [anon_sym_LPAREN2] = ACTIONS(4249), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5076), - [anon_sym_DOT_DOT_LT] = ACTIONS(5076), - [anon_sym_null] = ACTIONS(5076), - [anon_sym_true] = ACTIONS(5076), - [anon_sym_false] = ACTIONS(5076), - [aux_sym__val_number_decimal_token1] = ACTIONS(5078), - [aux_sym__val_number_decimal_token2] = ACTIONS(5076), - [aux_sym__val_number_decimal_token3] = ACTIONS(5076), - [aux_sym__val_number_decimal_token4] = ACTIONS(5076), - [aux_sym__val_number_token1] = ACTIONS(5076), - [aux_sym__val_number_token2] = ACTIONS(5076), - [aux_sym__val_number_token3] = ACTIONS(5076), - [aux_sym__val_number_token4] = ACTIONS(5076), - [aux_sym__val_number_token5] = ACTIONS(5076), - [aux_sym__val_number_token6] = ACTIONS(5076), - [anon_sym_0b] = ACTIONS(5078), - [anon_sym_0o] = ACTIONS(5078), - [anon_sym_0x] = ACTIONS(5078), - [sym_val_date] = ACTIONS(5076), - [anon_sym_DQUOTE] = ACTIONS(5076), - [sym__str_single_quotes] = ACTIONS(5076), - [sym__str_back_ticks] = ACTIONS(5076), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5076), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5076), - [anon_sym_err_GT] = ACTIONS(5078), - [anon_sym_out_GT] = ACTIONS(5078), - [anon_sym_e_GT] = ACTIONS(5078), - [anon_sym_o_GT] = ACTIONS(5078), - [anon_sym_err_PLUSout_GT] = ACTIONS(5078), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5078), - [anon_sym_o_PLUSe_GT] = ACTIONS(5078), - [anon_sym_e_PLUSo_GT] = ACTIONS(5078), - [anon_sym_err_GT_GT] = ACTIONS(5076), - [anon_sym_out_GT_GT] = ACTIONS(5076), - [anon_sym_e_GT_GT] = ACTIONS(5076), - [anon_sym_o_GT_GT] = ACTIONS(5076), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5076), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5076), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5076), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5076), - [aux_sym_unquoted_token1] = ACTIONS(5078), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(5076), + [sym__newline] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_err_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_GT_PIPE] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1767), + [anon_sym_RPAREN] = ACTIONS(1767), + [anon_sym_DOLLAR] = ACTIONS(1765), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [anon_sym_DASH2] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_RBRACE] = ACTIONS(1767), + [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(4918), + [anon_sym_null] = ACTIONS(1767), + [anon_sym_true] = ACTIONS(1767), + [anon_sym_false] = ACTIONS(1767), + [aux_sym__val_number_decimal_token1] = ACTIONS(1765), + [aux_sym__val_number_decimal_token2] = ACTIONS(1767), + [aux_sym__val_number_decimal_token3] = ACTIONS(1767), + [aux_sym__val_number_decimal_token4] = ACTIONS(1767), + [aux_sym__val_number_token1] = ACTIONS(1767), + [aux_sym__val_number_token2] = ACTIONS(1767), + [aux_sym__val_number_token3] = ACTIONS(1767), + [aux_sym__val_number_token4] = ACTIONS(1767), + [aux_sym__val_number_token5] = ACTIONS(1767), + [aux_sym__val_number_token6] = ACTIONS(1767), + [anon_sym_0b] = ACTIONS(1765), + [anon_sym_0o] = ACTIONS(1765), + [anon_sym_0x] = ACTIONS(1765), + [sym_val_date] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym__str_single_quotes] = ACTIONS(1767), + [sym__str_back_ticks] = ACTIONS(1767), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), + [anon_sym_err_GT] = ACTIONS(1765), + [anon_sym_out_GT] = ACTIONS(1765), + [anon_sym_e_GT] = ACTIONS(1765), + [anon_sym_o_GT] = ACTIONS(1765), + [anon_sym_err_PLUSout_GT] = ACTIONS(1765), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), + [anon_sym_o_PLUSe_GT] = ACTIONS(1765), + [anon_sym_e_PLUSo_GT] = ACTIONS(1765), + [anon_sym_err_GT_GT] = ACTIONS(1767), + [anon_sym_out_GT_GT] = ACTIONS(1767), + [anon_sym_e_GT_GT] = ACTIONS(1767), + [anon_sym_o_GT_GT] = ACTIONS(1767), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), + [aux_sym_unquoted_token1] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1767), }, [1721] = { + [sym_cell_path] = STATE(2128), + [sym_path] = STATE(1882), [sym_comment] = STATE(1721), - [ts_builtin_sym_end] = ACTIONS(1757), - [sym__newline] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_err_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_GT_PIPE] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_DOT] = ACTIONS(5080), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(5082), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_0b] = ACTIONS(1755), - [anon_sym_0o] = ACTIONS(1755), - [anon_sym_0x] = ACTIONS(1755), - [sym_val_date] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), - [anon_sym_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1757), + [aux_sym_cell_path_repeat1] = STATE(1690), + [sym__newline] = ACTIONS(1861), + [anon_sym_SEMI] = ACTIONS(1861), + [anon_sym_PIPE] = ACTIONS(1861), + [anon_sym_err_GT_PIPE] = ACTIONS(1861), + [anon_sym_out_GT_PIPE] = ACTIONS(1861), + [anon_sym_e_GT_PIPE] = ACTIONS(1861), + [anon_sym_o_GT_PIPE] = ACTIONS(1861), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1861), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1861), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1861), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1861), + [anon_sym_RPAREN] = ACTIONS(1861), + [anon_sym_GT2] = ACTIONS(1859), + [anon_sym_DASH2] = ACTIONS(1861), + [anon_sym_in2] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1861), + [anon_sym_RBRACE] = ACTIONS(1861), + [anon_sym_EQ_GT] = ACTIONS(1861), + [anon_sym_STAR2] = ACTIONS(1859), + [anon_sym_and2] = ACTIONS(1861), + [anon_sym_xor2] = ACTIONS(1861), + [anon_sym_or2] = ACTIONS(1861), + [anon_sym_not_DASHin2] = ACTIONS(1861), + [anon_sym_starts_DASHwith2] = ACTIONS(1861), + [anon_sym_ends_DASHwith2] = ACTIONS(1861), + [anon_sym_EQ_EQ2] = ACTIONS(1861), + [anon_sym_BANG_EQ2] = ACTIONS(1861), + [anon_sym_LT2] = ACTIONS(1859), + [anon_sym_LT_EQ2] = ACTIONS(1861), + [anon_sym_GT_EQ2] = ACTIONS(1861), + [anon_sym_EQ_TILDE2] = ACTIONS(1861), + [anon_sym_BANG_TILDE2] = ACTIONS(1861), + [anon_sym_STAR_STAR2] = ACTIONS(1861), + [anon_sym_PLUS_PLUS2] = ACTIONS(1861), + [anon_sym_SLASH2] = ACTIONS(1859), + [anon_sym_mod2] = ACTIONS(1861), + [anon_sym_SLASH_SLASH2] = ACTIONS(1861), + [anon_sym_PLUS2] = ACTIONS(1859), + [anon_sym_bit_DASHshl2] = ACTIONS(1861), + [anon_sym_bit_DASHshr2] = ACTIONS(1861), + [anon_sym_bit_DASHand2] = ACTIONS(1861), + [anon_sym_bit_DASHxor2] = ACTIONS(1861), + [anon_sym_bit_DASHor2] = ACTIONS(1861), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_err_GT] = ACTIONS(1859), + [anon_sym_out_GT] = ACTIONS(1859), + [anon_sym_e_GT] = ACTIONS(1859), + [anon_sym_o_GT] = ACTIONS(1859), + [anon_sym_err_PLUSout_GT] = ACTIONS(1859), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1859), + [anon_sym_o_PLUSe_GT] = ACTIONS(1859), + [anon_sym_e_PLUSo_GT] = ACTIONS(1859), + [anon_sym_err_GT_GT] = ACTIONS(1861), + [anon_sym_out_GT_GT] = ACTIONS(1861), + [anon_sym_e_GT_GT] = ACTIONS(1861), + [anon_sym_o_GT_GT] = ACTIONS(1861), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1861), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1861), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1861), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1861), + [anon_sym_POUND] = ACTIONS(247), }, [1722] = { [sym_comment] = STATE(1722), - [sym__newline] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_err_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_GT_PIPE] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), - [anon_sym_RPAREN] = ACTIONS(1004), - [anon_sym_GT2] = ACTIONS(1002), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_in2] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1004), - [anon_sym_STAR2] = ACTIONS(1002), - [anon_sym_QMARK2] = ACTIONS(1004), - [anon_sym_and2] = ACTIONS(1004), - [anon_sym_xor2] = ACTIONS(1004), - [anon_sym_or2] = ACTIONS(1004), - [anon_sym_not_DASHin2] = ACTIONS(1004), - [anon_sym_starts_DASHwith2] = ACTIONS(1004), - [anon_sym_ends_DASHwith2] = ACTIONS(1004), - [anon_sym_EQ_EQ2] = ACTIONS(1004), - [anon_sym_BANG_EQ2] = ACTIONS(1004), - [anon_sym_LT2] = ACTIONS(1002), - [anon_sym_LT_EQ2] = ACTIONS(1004), - [anon_sym_GT_EQ2] = ACTIONS(1004), - [anon_sym_EQ_TILDE2] = ACTIONS(1004), - [anon_sym_BANG_TILDE2] = ACTIONS(1004), - [anon_sym_STAR_STAR2] = ACTIONS(1004), - [anon_sym_PLUS_PLUS2] = ACTIONS(1004), - [anon_sym_SLASH2] = ACTIONS(1002), - [anon_sym_mod2] = ACTIONS(1004), - [anon_sym_SLASH_SLASH2] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1002), - [anon_sym_bit_DASHshl2] = ACTIONS(1004), - [anon_sym_bit_DASHshr2] = ACTIONS(1004), - [anon_sym_bit_DASHand2] = ACTIONS(1004), - [anon_sym_bit_DASHxor2] = ACTIONS(1004), - [anon_sym_bit_DASHor2] = ACTIONS(1004), - [anon_sym_DOT_DOT2] = ACTIONS(1002), - [anon_sym_DOT] = ACTIONS(1002), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1004), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1004), - [anon_sym_err_GT] = ACTIONS(1002), - [anon_sym_out_GT] = ACTIONS(1002), - [anon_sym_e_GT] = ACTIONS(1002), - [anon_sym_o_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT] = ACTIONS(1002), - [anon_sym_err_GT_GT] = ACTIONS(1004), - [anon_sym_out_GT_GT] = ACTIONS(1004), - [anon_sym_e_GT_GT] = ACTIONS(1004), - [anon_sym_o_GT_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), + [sym__newline] = ACTIONS(2054), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_PIPE] = ACTIONS(2054), + [anon_sym_err_GT_PIPE] = ACTIONS(2054), + [anon_sym_out_GT_PIPE] = ACTIONS(2054), + [anon_sym_e_GT_PIPE] = ACTIONS(2054), + [anon_sym_o_GT_PIPE] = ACTIONS(2054), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2054), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2054), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2054), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2054), + [anon_sym_RPAREN] = ACTIONS(2054), + [anon_sym_GT2] = ACTIONS(2052), + [anon_sym_DASH2] = ACTIONS(2054), + [anon_sym_in2] = ACTIONS(2054), + [anon_sym_if] = ACTIONS(2054), + [anon_sym_LBRACE] = ACTIONS(2054), + [anon_sym_RBRACE] = ACTIONS(2054), + [anon_sym_EQ_GT] = ACTIONS(2054), + [anon_sym_STAR2] = ACTIONS(2052), + [anon_sym_and2] = ACTIONS(2054), + [anon_sym_xor2] = ACTIONS(2054), + [anon_sym_or2] = ACTIONS(2054), + [anon_sym_not_DASHin2] = ACTIONS(2054), + [anon_sym_starts_DASHwith2] = ACTIONS(2054), + [anon_sym_ends_DASHwith2] = ACTIONS(2054), + [anon_sym_EQ_EQ2] = ACTIONS(2054), + [anon_sym_BANG_EQ2] = ACTIONS(2054), + [anon_sym_LT2] = ACTIONS(2052), + [anon_sym_LT_EQ2] = ACTIONS(2054), + [anon_sym_GT_EQ2] = ACTIONS(2054), + [anon_sym_EQ_TILDE2] = ACTIONS(2054), + [anon_sym_BANG_TILDE2] = ACTIONS(2054), + [anon_sym_STAR_STAR2] = ACTIONS(2054), + [anon_sym_PLUS_PLUS2] = ACTIONS(2054), + [anon_sym_SLASH2] = ACTIONS(2052), + [anon_sym_mod2] = ACTIONS(2054), + [anon_sym_SLASH_SLASH2] = ACTIONS(2054), + [anon_sym_PLUS2] = ACTIONS(2052), + [anon_sym_bit_DASHshl2] = ACTIONS(2054), + [anon_sym_bit_DASHshr2] = ACTIONS(2054), + [anon_sym_bit_DASHand2] = ACTIONS(2054), + [anon_sym_bit_DASHxor2] = ACTIONS(2054), + [anon_sym_bit_DASHor2] = ACTIONS(2054), + [anon_sym_DOT_DOT2] = ACTIONS(2052), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2054), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2054), + [anon_sym_err_GT] = ACTIONS(2052), + [anon_sym_out_GT] = ACTIONS(2052), + [anon_sym_e_GT] = ACTIONS(2052), + [anon_sym_o_GT] = ACTIONS(2052), + [anon_sym_err_PLUSout_GT] = ACTIONS(2052), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2052), + [anon_sym_o_PLUSe_GT] = ACTIONS(2052), + [anon_sym_e_PLUSo_GT] = ACTIONS(2052), + [anon_sym_err_GT_GT] = ACTIONS(2054), + [anon_sym_out_GT_GT] = ACTIONS(2054), + [anon_sym_e_GT_GT] = ACTIONS(2054), + [anon_sym_o_GT_GT] = ACTIONS(2054), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2054), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2054), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2054), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2054), [anon_sym_POUND] = ACTIONS(247), }, [1723] = { [sym_comment] = STATE(1723), - [sym__newline] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_err_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_GT_PIPE] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_RPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT] = ACTIONS(1757), - [aux_sym__immediate_decimal_token2] = ACTIONS(4966), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1755), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_0b] = ACTIONS(1755), - [anon_sym_0o] = ACTIONS(1755), - [anon_sym_0x] = ACTIONS(1755), - [sym_val_date] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1757), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1757), - [anon_sym_err_GT] = ACTIONS(1755), - [anon_sym_out_GT] = ACTIONS(1755), - [anon_sym_e_GT] = ACTIONS(1755), - [anon_sym_o_GT] = ACTIONS(1755), - [anon_sym_err_PLUSout_GT] = ACTIONS(1755), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1755), - [anon_sym_o_PLUSe_GT] = ACTIONS(1755), - [anon_sym_e_PLUSo_GT] = ACTIONS(1755), - [anon_sym_err_GT_GT] = ACTIONS(1757), - [anon_sym_out_GT_GT] = ACTIONS(1757), - [anon_sym_e_GT_GT] = ACTIONS(1757), - [anon_sym_o_GT_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1757), - [aux_sym_unquoted_token1] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1757), - }, - [1724] = { - [sym_cell_path] = STATE(1679), - [sym_path] = STATE(1894), - [sym_comment] = STATE(1724), - [aux_sym_cell_path_repeat1] = STATE(1702), - [sym__newline] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_err_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_GT_PIPE] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), - [anon_sym_RPAREN] = ACTIONS(1737), - [anon_sym_GT2] = ACTIONS(1735), - [anon_sym_DASH2] = ACTIONS(1737), - [anon_sym_in2] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1737), - [anon_sym_RBRACE] = ACTIONS(1737), - [anon_sym_EQ_GT] = ACTIONS(1737), - [anon_sym_STAR2] = ACTIONS(1735), - [anon_sym_and2] = ACTIONS(1737), - [anon_sym_xor2] = ACTIONS(1737), - [anon_sym_or2] = ACTIONS(1737), - [anon_sym_not_DASHin2] = ACTIONS(1737), - [anon_sym_starts_DASHwith2] = ACTIONS(1737), - [anon_sym_ends_DASHwith2] = ACTIONS(1737), - [anon_sym_EQ_EQ2] = ACTIONS(1737), - [anon_sym_BANG_EQ2] = ACTIONS(1737), - [anon_sym_LT2] = ACTIONS(1735), - [anon_sym_LT_EQ2] = ACTIONS(1737), - [anon_sym_GT_EQ2] = ACTIONS(1737), - [anon_sym_EQ_TILDE2] = ACTIONS(1737), - [anon_sym_BANG_TILDE2] = ACTIONS(1737), - [anon_sym_STAR_STAR2] = ACTIONS(1737), - [anon_sym_PLUS_PLUS2] = ACTIONS(1737), - [anon_sym_SLASH2] = ACTIONS(1735), - [anon_sym_mod2] = ACTIONS(1737), - [anon_sym_SLASH_SLASH2] = ACTIONS(1737), - [anon_sym_PLUS2] = ACTIONS(1735), - [anon_sym_bit_DASHshl2] = ACTIONS(1737), - [anon_sym_bit_DASHshr2] = ACTIONS(1737), - [anon_sym_bit_DASHand2] = ACTIONS(1737), - [anon_sym_bit_DASHxor2] = ACTIONS(1737), - [anon_sym_bit_DASHor2] = ACTIONS(1737), - [anon_sym_DOT] = ACTIONS(4902), - [anon_sym_err_GT] = ACTIONS(1735), - [anon_sym_out_GT] = ACTIONS(1735), - [anon_sym_e_GT] = ACTIONS(1735), - [anon_sym_o_GT] = ACTIONS(1735), - [anon_sym_err_PLUSout_GT] = ACTIONS(1735), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), - [anon_sym_o_PLUSe_GT] = ACTIONS(1735), - [anon_sym_e_PLUSo_GT] = ACTIONS(1735), - [anon_sym_err_GT_GT] = ACTIONS(1737), - [anon_sym_out_GT_GT] = ACTIONS(1737), - [anon_sym_e_GT_GT] = ACTIONS(1737), - [anon_sym_o_GT_GT] = ACTIONS(1737), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), - [anon_sym_POUND] = ACTIONS(247), - }, - [1725] = { - [sym_comment] = STATE(1725), - [ts_builtin_sym_end] = ACTIONS(1623), - [sym__newline] = ACTIONS(1623), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1623), - [anon_sym_err_GT_PIPE] = ACTIONS(1623), - [anon_sym_out_GT_PIPE] = ACTIONS(1623), - [anon_sym_e_GT_PIPE] = ACTIONS(1623), - [anon_sym_o_GT_PIPE] = ACTIONS(1623), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), - [anon_sym_GT2] = ACTIONS(1621), - [anon_sym_DASH2] = ACTIONS(1623), - [anon_sym_in2] = ACTIONS(1623), - [anon_sym_STAR2] = ACTIONS(1621), - [anon_sym_and2] = ACTIONS(1623), - [anon_sym_xor2] = ACTIONS(1623), - [anon_sym_or2] = ACTIONS(1623), - [anon_sym_not_DASHin2] = ACTIONS(1623), - [anon_sym_starts_DASHwith2] = ACTIONS(1623), - [anon_sym_ends_DASHwith2] = ACTIONS(1623), - [anon_sym_EQ_EQ2] = ACTIONS(1623), - [anon_sym_BANG_EQ2] = ACTIONS(1623), - [anon_sym_LT2] = ACTIONS(1621), - [anon_sym_LT_EQ2] = ACTIONS(1623), - [anon_sym_GT_EQ2] = ACTIONS(1623), - [anon_sym_EQ_TILDE2] = ACTIONS(1623), - [anon_sym_BANG_TILDE2] = ACTIONS(1623), - [anon_sym_LPAREN2] = ACTIONS(1623), - [anon_sym_STAR_STAR2] = ACTIONS(1623), - [anon_sym_PLUS_PLUS2] = ACTIONS(1623), - [anon_sym_SLASH2] = ACTIONS(1621), - [anon_sym_mod2] = ACTIONS(1623), - [anon_sym_SLASH_SLASH2] = ACTIONS(1623), - [anon_sym_PLUS2] = ACTIONS(1621), - [anon_sym_bit_DASHshl2] = ACTIONS(1623), - [anon_sym_bit_DASHshr2] = ACTIONS(1623), - [anon_sym_bit_DASHand2] = ACTIONS(1623), - [anon_sym_bit_DASHxor2] = ACTIONS(1623), - [anon_sym_bit_DASHor2] = ACTIONS(1623), - [anon_sym_DOT_DOT2] = ACTIONS(1621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1623), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1623), - [sym_filesize_unit] = ACTIONS(1621), - [sym_duration_unit] = ACTIONS(1623), - [anon_sym_err_GT] = ACTIONS(1621), - [anon_sym_out_GT] = ACTIONS(1621), - [anon_sym_e_GT] = ACTIONS(1621), - [anon_sym_o_GT] = ACTIONS(1621), - [anon_sym_err_PLUSout_GT] = ACTIONS(1621), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1621), - [anon_sym_o_PLUSe_GT] = ACTIONS(1621), - [anon_sym_e_PLUSo_GT] = ACTIONS(1621), - [anon_sym_err_GT_GT] = ACTIONS(1623), - [anon_sym_out_GT_GT] = ACTIONS(1623), - [anon_sym_e_GT_GT] = ACTIONS(1623), - [anon_sym_o_GT_GT] = ACTIONS(1623), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), - [aux_sym_unquoted_token2] = ACTIONS(1621), - [anon_sym_POUND] = ACTIONS(247), - }, - [1726] = { - [sym_cmd_identifier] = STATE(4195), - [sym__command_name] = STATE(6642), - [sym_scope_pattern] = STATE(6275), - [sym_wild_card] = STATE(6698), - [sym_command_list] = STATE(6703), - [sym__val_number_decimal] = STATE(3762), - [sym_val_string] = STATE(4159), - [sym__raw_str] = STATE(4492), - [sym__str_double_quotes] = STATE(4492), - [sym_comment] = STATE(1726), - [aux_sym_cmd_identifier_token1] = ACTIONS(5033), - [aux_sym_cmd_identifier_token2] = ACTIONS(5035), - [aux_sym_cmd_identifier_token3] = ACTIONS(5035), - [aux_sym_cmd_identifier_token4] = ACTIONS(5035), - [aux_sym_cmd_identifier_token5] = ACTIONS(5035), - [aux_sym_cmd_identifier_token6] = ACTIONS(5035), - [aux_sym_cmd_identifier_token7] = ACTIONS(5035), - [aux_sym_cmd_identifier_token8] = ACTIONS(5035), - [aux_sym_cmd_identifier_token9] = ACTIONS(5033), - [aux_sym_cmd_identifier_token10] = ACTIONS(5035), - [aux_sym_cmd_identifier_token11] = ACTIONS(5035), - [aux_sym_cmd_identifier_token12] = ACTIONS(5035), - [aux_sym_cmd_identifier_token13] = ACTIONS(5033), - [aux_sym_cmd_identifier_token14] = ACTIONS(5035), - [aux_sym_cmd_identifier_token15] = ACTIONS(5033), - [aux_sym_cmd_identifier_token16] = ACTIONS(5035), - [aux_sym_cmd_identifier_token17] = ACTIONS(5035), - [aux_sym_cmd_identifier_token18] = ACTIONS(5035), - [aux_sym_cmd_identifier_token19] = ACTIONS(5035), - [aux_sym_cmd_identifier_token20] = ACTIONS(5035), - [aux_sym_cmd_identifier_token21] = ACTIONS(5035), - [aux_sym_cmd_identifier_token22] = ACTIONS(5035), - [aux_sym_cmd_identifier_token23] = ACTIONS(5035), - [aux_sym_cmd_identifier_token24] = ACTIONS(5035), - [aux_sym_cmd_identifier_token25] = ACTIONS(5035), - [aux_sym_cmd_identifier_token26] = ACTIONS(5035), - [aux_sym_cmd_identifier_token27] = ACTIONS(5035), - [aux_sym_cmd_identifier_token28] = ACTIONS(5035), - [aux_sym_cmd_identifier_token29] = ACTIONS(5035), - [aux_sym_cmd_identifier_token30] = ACTIONS(5035), - [aux_sym_cmd_identifier_token31] = ACTIONS(5035), - [aux_sym_cmd_identifier_token32] = ACTIONS(5035), - [aux_sym_cmd_identifier_token33] = ACTIONS(5035), - [aux_sym_cmd_identifier_token34] = ACTIONS(5033), - [aux_sym_cmd_identifier_token35] = ACTIONS(5035), - [aux_sym_cmd_identifier_token36] = ACTIONS(5035), - [aux_sym_cmd_identifier_token37] = ACTIONS(5035), - [aux_sym_cmd_identifier_token38] = ACTIONS(5033), - [aux_sym_cmd_identifier_token39] = ACTIONS(5035), - [aux_sym_cmd_identifier_token40] = ACTIONS(5035), - [sym__newline] = ACTIONS(5084), - [anon_sym_SEMI] = ACTIONS(5084), - [anon_sym_LBRACK] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5084), - [anon_sym_RBRACE] = ACTIONS(5084), - [anon_sym_STAR2] = ACTIONS(5041), - [aux_sym__val_number_decimal_token1] = ACTIONS(5043), - [aux_sym__val_number_decimal_token2] = ACTIONS(5043), - [aux_sym__val_number_decimal_token3] = ACTIONS(5045), - [aux_sym__val_number_decimal_token4] = ACTIONS(5047), - [anon_sym_DQUOTE] = ACTIONS(4009), - [sym__str_single_quotes] = ACTIONS(4011), - [sym__str_back_ticks] = ACTIONS(4011), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4013), - }, - [1727] = { - [sym__expr_parenthesized_immediate] = STATE(7489), - [sym_comment] = STATE(1727), - [ts_builtin_sym_end] = ACTIONS(4914), - [sym__newline] = ACTIONS(4914), - [anon_sym_SEMI] = ACTIONS(4914), - [anon_sym_PIPE] = ACTIONS(4914), - [anon_sym_err_GT_PIPE] = ACTIONS(4914), - [anon_sym_out_GT_PIPE] = ACTIONS(4914), - [anon_sym_e_GT_PIPE] = ACTIONS(4914), - [anon_sym_o_GT_PIPE] = ACTIONS(4914), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4914), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4914), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4914), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4914), - [anon_sym_LBRACK] = ACTIONS(4914), - [anon_sym_LPAREN] = ACTIONS(4916), - [anon_sym_DOLLAR] = ACTIONS(4916), - [anon_sym_DASH_DASH] = ACTIONS(4914), - [anon_sym_DASH2] = ACTIONS(4916), - [anon_sym_LBRACE] = ACTIONS(4914), - [anon_sym_DOT_DOT] = ACTIONS(4916), - [anon_sym_LPAREN2] = ACTIONS(4249), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4914), - [anon_sym_DOT_DOT_LT] = ACTIONS(4914), - [anon_sym_null] = ACTIONS(4914), - [anon_sym_true] = ACTIONS(4914), - [anon_sym_false] = ACTIONS(4914), - [aux_sym__val_number_decimal_token1] = ACTIONS(4916), - [aux_sym__val_number_decimal_token2] = ACTIONS(4914), - [aux_sym__val_number_decimal_token3] = ACTIONS(4914), - [aux_sym__val_number_decimal_token4] = ACTIONS(4914), - [aux_sym__val_number_token1] = ACTIONS(4914), - [aux_sym__val_number_token2] = ACTIONS(4914), - [aux_sym__val_number_token3] = ACTIONS(4914), - [aux_sym__val_number_token4] = ACTIONS(4914), - [aux_sym__val_number_token5] = ACTIONS(4914), - [aux_sym__val_number_token6] = ACTIONS(4914), - [anon_sym_0b] = ACTIONS(4916), - [anon_sym_0o] = ACTIONS(4916), - [anon_sym_0x] = ACTIONS(4916), - [sym_val_date] = ACTIONS(4914), - [anon_sym_DQUOTE] = ACTIONS(4914), - [sym__str_single_quotes] = ACTIONS(4914), - [sym__str_back_ticks] = ACTIONS(4914), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4914), - [anon_sym_err_GT] = ACTIONS(4916), - [anon_sym_out_GT] = ACTIONS(4916), - [anon_sym_e_GT] = ACTIONS(4916), - [anon_sym_o_GT] = ACTIONS(4916), - [anon_sym_err_PLUSout_GT] = ACTIONS(4916), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4916), - [anon_sym_o_PLUSe_GT] = ACTIONS(4916), - [anon_sym_e_PLUSo_GT] = ACTIONS(4916), - [anon_sym_err_GT_GT] = ACTIONS(4914), - [anon_sym_out_GT_GT] = ACTIONS(4914), - [anon_sym_e_GT_GT] = ACTIONS(4914), - [anon_sym_o_GT_GT] = ACTIONS(4914), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4914), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4914), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4914), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4914), - [aux_sym_unquoted_token1] = ACTIONS(4916), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(4914), - }, - [1728] = { - [sym_comment] = STATE(1728), - [ts_builtin_sym_end] = ACTIONS(1892), - [sym__newline] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_err_GT_PIPE] = ACTIONS(1892), - [anon_sym_out_GT_PIPE] = ACTIONS(1892), - [anon_sym_e_GT_PIPE] = ACTIONS(1892), - [anon_sym_o_GT_PIPE] = ACTIONS(1892), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1892), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1892), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1892), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1892), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(1890), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_DASH2] = ACTIONS(1890), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_DOT_DOT] = ACTIONS(1890), - [anon_sym_LPAREN2] = ACTIONS(1892), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1892), - [anon_sym_DOT_DOT_LT] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1892), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [aux_sym__val_number_decimal_token1] = ACTIONS(1890), - [aux_sym__val_number_decimal_token2] = ACTIONS(1892), - [aux_sym__val_number_decimal_token3] = ACTIONS(1892), - [aux_sym__val_number_decimal_token4] = ACTIONS(1892), - [aux_sym__val_number_token1] = ACTIONS(1892), - [aux_sym__val_number_token2] = ACTIONS(1892), - [aux_sym__val_number_token3] = ACTIONS(1892), - [aux_sym__val_number_token4] = ACTIONS(1892), - [aux_sym__val_number_token5] = ACTIONS(1892), - [aux_sym__val_number_token6] = ACTIONS(1892), - [anon_sym_0b] = ACTIONS(1890), - [anon_sym_0o] = ACTIONS(1890), - [anon_sym_0x] = ACTIONS(1890), - [sym_val_date] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [sym__str_single_quotes] = ACTIONS(1892), - [sym__str_back_ticks] = ACTIONS(1892), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1892), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1892), - [anon_sym_err_GT] = ACTIONS(1890), - [anon_sym_out_GT] = ACTIONS(1890), - [anon_sym_e_GT] = ACTIONS(1890), - [anon_sym_o_GT] = ACTIONS(1890), - [anon_sym_err_PLUSout_GT] = ACTIONS(1890), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1890), - [anon_sym_o_PLUSe_GT] = ACTIONS(1890), - [anon_sym_e_PLUSo_GT] = ACTIONS(1890), - [anon_sym_err_GT_GT] = ACTIONS(1892), - [anon_sym_out_GT_GT] = ACTIONS(1892), - [anon_sym_e_GT_GT] = ACTIONS(1892), - [anon_sym_o_GT_GT] = ACTIONS(1892), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1892), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1892), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1892), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1892), - [aux_sym_unquoted_token1] = ACTIONS(1890), - [aux_sym_unquoted_token2] = ACTIONS(1890), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1892), - }, - [1729] = { - [sym_comment] = STATE(1729), - [ts_builtin_sym_end] = ACTIONS(1874), - [sym__newline] = ACTIONS(1874), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_err_GT_PIPE] = ACTIONS(1874), - [anon_sym_out_GT_PIPE] = ACTIONS(1874), - [anon_sym_e_GT_PIPE] = ACTIONS(1874), - [anon_sym_o_GT_PIPE] = ACTIONS(1874), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), - [anon_sym_LBRACK] = ACTIONS(1874), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1874), - [anon_sym_DASH2] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1874), - [anon_sym_DOT_DOT_LT] = ACTIONS(1874), - [anon_sym_null] = ACTIONS(1874), - [anon_sym_true] = ACTIONS(1874), - [anon_sym_false] = ACTIONS(1874), - [aux_sym__val_number_decimal_token1] = ACTIONS(1866), - [aux_sym__val_number_decimal_token2] = ACTIONS(1874), - [aux_sym__val_number_decimal_token3] = ACTIONS(1874), - [aux_sym__val_number_decimal_token4] = ACTIONS(1874), - [aux_sym__val_number_token1] = ACTIONS(1874), - [aux_sym__val_number_token2] = ACTIONS(1874), - [aux_sym__val_number_token3] = ACTIONS(1874), - [aux_sym__val_number_token4] = ACTIONS(1874), - [aux_sym__val_number_token5] = ACTIONS(1874), - [aux_sym__val_number_token6] = ACTIONS(1874), - [anon_sym_0b] = ACTIONS(1866), - [anon_sym_0o] = ACTIONS(1866), - [anon_sym_0x] = ACTIONS(1866), - [sym_val_date] = ACTIONS(1874), - [anon_sym_DQUOTE] = ACTIONS(1874), - [sym__str_single_quotes] = ACTIONS(1874), - [sym__str_back_ticks] = ACTIONS(1874), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1874), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1874), - [anon_sym_err_GT] = ACTIONS(1866), - [anon_sym_out_GT] = ACTIONS(1866), - [anon_sym_e_GT] = ACTIONS(1866), - [anon_sym_o_GT] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT] = ACTIONS(1866), - [anon_sym_err_GT_GT] = ACTIONS(1874), - [anon_sym_out_GT_GT] = ACTIONS(1874), - [anon_sym_e_GT_GT] = ACTIONS(1874), - [anon_sym_o_GT_GT] = ACTIONS(1874), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), - [aux_sym_unquoted_token1] = ACTIONS(1866), - [aux_sym_unquoted_token2] = ACTIONS(1546), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1874), - }, - [1730] = { - [sym_comment] = STATE(1730), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_RPAREN] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(994), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_in2] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(994), - [anon_sym_QMARK2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(994), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(994), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(994), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_DOT_DOT2] = ACTIONS(994), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(996), - [anon_sym_DOT_DOT_LT2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(994), - [anon_sym_out_GT] = ACTIONS(994), - [anon_sym_e_GT] = ACTIONS(994), - [anon_sym_o_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT] = ACTIONS(994), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(247), - }, - [1731] = { - [sym_comment] = STATE(1731), - [ts_builtin_sym_end] = ACTIONS(1000), - [sym__newline] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1000), - [anon_sym_err_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_GT_PIPE] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), - [anon_sym_LBRACK] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(1000), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(1000), - [anon_sym_DOT_DOT] = ACTIONS(998), - [anon_sym_QMARK2] = ACTIONS(1000), - [anon_sym_DOT] = ACTIONS(998), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1000), - [anon_sym_DOT_DOT_LT] = ACTIONS(1000), - [anon_sym_null] = ACTIONS(1000), - [anon_sym_true] = ACTIONS(1000), - [anon_sym_false] = ACTIONS(1000), - [aux_sym__val_number_decimal_token1] = ACTIONS(998), - [aux_sym__val_number_decimal_token2] = ACTIONS(1000), - [aux_sym__val_number_decimal_token3] = ACTIONS(1000), - [aux_sym__val_number_decimal_token4] = ACTIONS(1000), - [aux_sym__val_number_token1] = ACTIONS(1000), - [aux_sym__val_number_token2] = ACTIONS(1000), - [aux_sym__val_number_token3] = ACTIONS(1000), - [aux_sym__val_number_token4] = ACTIONS(1000), - [aux_sym__val_number_token5] = ACTIONS(1000), - [aux_sym__val_number_token6] = ACTIONS(1000), - [anon_sym_0b] = ACTIONS(998), - [anon_sym_0o] = ACTIONS(998), - [anon_sym_0x] = ACTIONS(998), - [sym_val_date] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(1000), - [sym__str_single_quotes] = ACTIONS(1000), - [sym__str_back_ticks] = ACTIONS(1000), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1000), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1000), - [anon_sym_err_GT] = ACTIONS(998), - [anon_sym_out_GT] = ACTIONS(998), - [anon_sym_e_GT] = ACTIONS(998), - [anon_sym_o_GT] = ACTIONS(998), - [anon_sym_err_PLUSout_GT] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT] = ACTIONS(998), - [anon_sym_o_PLUSe_GT] = ACTIONS(998), - [anon_sym_e_PLUSo_GT] = ACTIONS(998), - [anon_sym_err_GT_GT] = ACTIONS(1000), - [anon_sym_out_GT_GT] = ACTIONS(1000), - [anon_sym_e_GT_GT] = ACTIONS(1000), - [anon_sym_o_GT_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), - [aux_sym_unquoted_token1] = ACTIONS(998), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1000), - }, - [1732] = { - [sym_comment] = STATE(1732), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_RPAREN] = ACTIONS(1016), - [anon_sym_DOLLAR] = ACTIONS(1014), - [anon_sym_DASH_DASH] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1014), - [anon_sym_LBRACE] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_DOT_DOT] = ACTIONS(1014), - [anon_sym_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1016), - [anon_sym_DOT_DOT_LT] = ACTIONS(1016), - [anon_sym_null] = ACTIONS(1016), - [anon_sym_true] = ACTIONS(1016), - [anon_sym_false] = ACTIONS(1016), - [aux_sym__val_number_decimal_token1] = ACTIONS(1014), - [aux_sym__val_number_decimal_token2] = ACTIONS(1016), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), - [aux_sym__val_number_token1] = ACTIONS(1016), - [aux_sym__val_number_token2] = ACTIONS(1016), - [aux_sym__val_number_token3] = ACTIONS(1016), - [aux_sym__val_number_token4] = ACTIONS(1016), - [aux_sym__val_number_token5] = ACTIONS(1016), - [aux_sym__val_number_token6] = ACTIONS(1016), - [anon_sym_0b] = ACTIONS(1014), - [anon_sym_0o] = ACTIONS(1014), - [anon_sym_0x] = ACTIONS(1014), - [sym_val_date] = ACTIONS(1016), - [anon_sym_DQUOTE] = ACTIONS(1016), - [sym__str_single_quotes] = ACTIONS(1016), - [sym__str_back_ticks] = ACTIONS(1016), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1016), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1014), - [anon_sym_out_GT] = ACTIONS(1014), - [anon_sym_e_GT] = ACTIONS(1014), - [anon_sym_o_GT] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT] = ACTIONS(1014), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [aux_sym_unquoted_token1] = ACTIONS(1014), + [ts_builtin_sym_end] = ACTIONS(980), + [sym__newline] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_err_GT_PIPE] = ACTIONS(980), + [anon_sym_out_GT_PIPE] = ACTIONS(980), + [anon_sym_e_GT_PIPE] = ACTIONS(980), + [anon_sym_o_GT_PIPE] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), + [anon_sym_LBRACK] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_DASH2] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(980), + [anon_sym_DOT_DOT] = ACTIONS(978), + [anon_sym_QMARK2] = ACTIONS(5070), + [anon_sym_DOT] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ] = ACTIONS(980), + [anon_sym_DOT_DOT_LT] = ACTIONS(980), + [anon_sym_null] = ACTIONS(980), + [anon_sym_true] = ACTIONS(980), + [anon_sym_false] = ACTIONS(980), + [aux_sym__val_number_decimal_token1] = ACTIONS(978), + [aux_sym__val_number_decimal_token2] = ACTIONS(980), + [aux_sym__val_number_decimal_token3] = ACTIONS(980), + [aux_sym__val_number_decimal_token4] = ACTIONS(980), + [aux_sym__val_number_token1] = ACTIONS(980), + [aux_sym__val_number_token2] = ACTIONS(980), + [aux_sym__val_number_token3] = ACTIONS(980), + [aux_sym__val_number_token4] = ACTIONS(980), + [aux_sym__val_number_token5] = ACTIONS(980), + [aux_sym__val_number_token6] = ACTIONS(980), + [anon_sym_0b] = ACTIONS(978), + [anon_sym_0o] = ACTIONS(978), + [anon_sym_0x] = ACTIONS(978), + [sym_val_date] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(980), + [sym__str_single_quotes] = ACTIONS(980), + [sym__str_back_ticks] = ACTIONS(980), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(980), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(980), + [anon_sym_err_GT] = ACTIONS(978), + [anon_sym_out_GT] = ACTIONS(978), + [anon_sym_e_GT] = ACTIONS(978), + [anon_sym_o_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT] = ACTIONS(978), + [anon_sym_err_GT_GT] = ACTIONS(980), + [anon_sym_out_GT_GT] = ACTIONS(980), + [anon_sym_e_GT_GT] = ACTIONS(980), + [anon_sym_o_GT_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), + [aux_sym_unquoted_token1] = ACTIONS(978), [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1016), + [sym_raw_string_begin] = ACTIONS(980), }, - [1733] = { - [sym_comment] = STATE(1733), - [sym__newline] = ACTIONS(5086), - [anon_sym_SEMI] = ACTIONS(5086), - [anon_sym_PIPE] = ACTIONS(5086), - [anon_sym_err_GT_PIPE] = ACTIONS(5086), - [anon_sym_out_GT_PIPE] = ACTIONS(5086), - [anon_sym_e_GT_PIPE] = ACTIONS(5086), - [anon_sym_o_GT_PIPE] = ACTIONS(5086), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5086), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5086), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5086), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5086), - [anon_sym_LBRACK] = ACTIONS(5086), - [anon_sym_LPAREN] = ACTIONS(5088), - [anon_sym_RPAREN] = ACTIONS(5086), - [anon_sym_DOLLAR] = ACTIONS(5088), - [anon_sym_DASH_DASH] = ACTIONS(5086), - [anon_sym_DASH2] = ACTIONS(5088), - [anon_sym_LBRACE] = ACTIONS(5086), - [anon_sym_RBRACE] = ACTIONS(5086), - [anon_sym_DOT_DOT] = ACTIONS(5088), - [anon_sym_LPAREN2] = ACTIONS(5086), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5086), - [anon_sym_DOT_DOT_LT] = ACTIONS(5086), - [anon_sym_null] = ACTIONS(5086), - [anon_sym_true] = ACTIONS(5086), - [anon_sym_false] = ACTIONS(5086), - [aux_sym__val_number_decimal_token1] = ACTIONS(5088), - [aux_sym__val_number_decimal_token2] = ACTIONS(5086), - [aux_sym__val_number_decimal_token3] = ACTIONS(5086), - [aux_sym__val_number_decimal_token4] = ACTIONS(5086), - [aux_sym__val_number_token1] = ACTIONS(5086), - [aux_sym__val_number_token2] = ACTIONS(5086), - [aux_sym__val_number_token3] = ACTIONS(5086), - [aux_sym__val_number_token4] = ACTIONS(5086), - [aux_sym__val_number_token5] = ACTIONS(5086), - [aux_sym__val_number_token6] = ACTIONS(5086), - [anon_sym_0b] = ACTIONS(5088), - [anon_sym_0o] = ACTIONS(5088), - [anon_sym_0x] = ACTIONS(5088), - [sym_val_date] = ACTIONS(5086), - [anon_sym_DQUOTE] = ACTIONS(5086), - [sym__str_single_quotes] = ACTIONS(5086), - [sym__str_back_ticks] = ACTIONS(5086), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5086), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5086), - [anon_sym_err_GT] = ACTIONS(5088), - [anon_sym_out_GT] = ACTIONS(5088), - [anon_sym_e_GT] = ACTIONS(5088), - [anon_sym_o_GT] = ACTIONS(5088), - [anon_sym_err_PLUSout_GT] = ACTIONS(5088), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5088), - [anon_sym_o_PLUSe_GT] = ACTIONS(5088), - [anon_sym_e_PLUSo_GT] = ACTIONS(5088), - [anon_sym_err_GT_GT] = ACTIONS(5086), - [anon_sym_out_GT_GT] = ACTIONS(5086), - [anon_sym_e_GT_GT] = ACTIONS(5086), - [anon_sym_o_GT_GT] = ACTIONS(5086), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5086), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5086), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5086), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5086), - [aux_sym_unquoted_token1] = ACTIONS(5088), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(5086), - }, - [1734] = { - [sym_comment] = STATE(1734), - [ts_builtin_sym_end] = ACTIONS(1741), - [sym__newline] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_err_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_GT_PIPE] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT] = ACTIONS(1741), - [aux_sym__immediate_decimal_token1] = ACTIONS(5090), - [aux_sym__immediate_decimal_token2] = ACTIONS(5092), - [anon_sym_null] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1741), - [aux_sym__val_number_decimal_token3] = ACTIONS(1741), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1741), - [aux_sym__val_number_token5] = ACTIONS(1741), - [aux_sym__val_number_token6] = ACTIONS(1741), - [anon_sym_0b] = ACTIONS(1739), - [anon_sym_0o] = ACTIONS(1739), - [anon_sym_0x] = ACTIONS(1739), - [sym_val_date] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), - [anon_sym_err_GT] = ACTIONS(1739), - [anon_sym_out_GT] = ACTIONS(1739), - [anon_sym_e_GT] = ACTIONS(1739), - [anon_sym_o_GT] = ACTIONS(1739), - [anon_sym_err_PLUSout_GT] = ACTIONS(1739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), - [anon_sym_o_PLUSe_GT] = ACTIONS(1739), - [anon_sym_e_PLUSo_GT] = ACTIONS(1739), - [anon_sym_err_GT_GT] = ACTIONS(1741), - [anon_sym_out_GT_GT] = ACTIONS(1741), - [anon_sym_e_GT_GT] = ACTIONS(1741), - [anon_sym_o_GT_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), - [aux_sym_unquoted_token1] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(247), - [sym_raw_string_begin] = ACTIONS(1741), + [1724] = { + [sym_comment] = STATE(1724), + [sym__newline] = ACTIONS(1787), + [anon_sym_SEMI] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_err_GT_PIPE] = ACTIONS(1787), + [anon_sym_out_GT_PIPE] = ACTIONS(1787), + [anon_sym_e_GT_PIPE] = ACTIONS(1787), + [anon_sym_o_GT_PIPE] = ACTIONS(1787), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1787), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1787), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1787), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_RPAREN] = ACTIONS(1787), + [anon_sym_DOLLAR] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1787), + [anon_sym_DASH2] = ACTIONS(1785), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_RBRACE] = ACTIONS(1787), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1787), + [anon_sym_DOT_DOT_LT] = ACTIONS(1787), + [aux_sym__immediate_decimal_token2] = ACTIONS(5072), + [anon_sym_null] = ACTIONS(1787), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [aux_sym__val_number_decimal_token1] = ACTIONS(1785), + [aux_sym__val_number_decimal_token2] = ACTIONS(1787), + [aux_sym__val_number_decimal_token3] = ACTIONS(1787), + [aux_sym__val_number_decimal_token4] = ACTIONS(1787), + [aux_sym__val_number_token1] = ACTIONS(1787), + [aux_sym__val_number_token2] = ACTIONS(1787), + [aux_sym__val_number_token3] = ACTIONS(1787), + [aux_sym__val_number_token4] = ACTIONS(1787), + [aux_sym__val_number_token5] = ACTIONS(1787), + [aux_sym__val_number_token6] = ACTIONS(1787), + [anon_sym_0b] = ACTIONS(1785), + [anon_sym_0o] = ACTIONS(1785), + [anon_sym_0x] = ACTIONS(1785), + [sym_val_date] = ACTIONS(1787), + [anon_sym_DQUOTE] = ACTIONS(1787), + [sym__str_single_quotes] = ACTIONS(1787), + [sym__str_back_ticks] = ACTIONS(1787), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), + [anon_sym_err_GT] = ACTIONS(1785), + [anon_sym_out_GT] = ACTIONS(1785), + [anon_sym_e_GT] = ACTIONS(1785), + [anon_sym_o_GT] = ACTIONS(1785), + [anon_sym_err_PLUSout_GT] = ACTIONS(1785), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1785), + [anon_sym_o_PLUSe_GT] = ACTIONS(1785), + [anon_sym_e_PLUSo_GT] = ACTIONS(1785), + [anon_sym_err_GT_GT] = ACTIONS(1787), + [anon_sym_out_GT_GT] = ACTIONS(1787), + [anon_sym_e_GT_GT] = ACTIONS(1787), + [anon_sym_o_GT_GT] = ACTIONS(1787), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1787), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1787), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1787), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1787), + [aux_sym_unquoted_token1] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1787), + }, + [1725] = { + [sym_comment] = STATE(1725), + [sym__newline] = ACTIONS(2270), + [anon_sym_SEMI] = ACTIONS(2270), + [anon_sym_PIPE] = ACTIONS(2270), + [anon_sym_err_GT_PIPE] = ACTIONS(2270), + [anon_sym_out_GT_PIPE] = ACTIONS(2270), + [anon_sym_e_GT_PIPE] = ACTIONS(2270), + [anon_sym_o_GT_PIPE] = ACTIONS(2270), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2270), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2270), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2270), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2270), + [anon_sym_LBRACK] = ACTIONS(2270), + [anon_sym_LPAREN] = ACTIONS(2270), + [anon_sym_RPAREN] = ACTIONS(2270), + [anon_sym_DOLLAR] = ACTIONS(2268), + [anon_sym_DASH_DASH] = ACTIONS(2268), + [anon_sym_DASH2] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2270), + [anon_sym_RBRACE] = ACTIONS(2270), + [anon_sym_DOT_DOT] = ACTIONS(2268), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2268), + [anon_sym_DOT_DOT_LT] = ACTIONS(2268), + [anon_sym_null] = ACTIONS(2268), + [anon_sym_true] = ACTIONS(2268), + [anon_sym_false] = ACTIONS(2268), + [aux_sym__val_number_decimal_token1] = ACTIONS(2268), + [aux_sym__val_number_decimal_token2] = ACTIONS(2268), + [aux_sym__val_number_decimal_token3] = ACTIONS(2268), + [aux_sym__val_number_decimal_token4] = ACTIONS(2268), + [aux_sym__val_number_token1] = ACTIONS(2268), + [aux_sym__val_number_token2] = ACTIONS(2268), + [aux_sym__val_number_token3] = ACTIONS(2268), + [aux_sym__val_number_token4] = ACTIONS(2268), + [aux_sym__val_number_token5] = ACTIONS(2268), + [aux_sym__val_number_token6] = ACTIONS(2268), + [anon_sym_0b] = ACTIONS(2268), + [anon_sym_0o] = ACTIONS(2268), + [anon_sym_0x] = ACTIONS(2268), + [sym_val_date] = ACTIONS(2268), + [anon_sym_DQUOTE] = ACTIONS(2270), + [sym__str_single_quotes] = ACTIONS(2270), + [sym__str_back_ticks] = ACTIONS(2270), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2270), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2270), + [anon_sym_err_GT] = ACTIONS(2268), + [anon_sym_out_GT] = ACTIONS(2268), + [anon_sym_e_GT] = ACTIONS(2268), + [anon_sym_o_GT] = ACTIONS(2268), + [anon_sym_err_PLUSout_GT] = ACTIONS(2268), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2268), + [anon_sym_o_PLUSe_GT] = ACTIONS(2268), + [anon_sym_e_PLUSo_GT] = ACTIONS(2268), + [anon_sym_err_GT_GT] = ACTIONS(2268), + [anon_sym_out_GT_GT] = ACTIONS(2268), + [anon_sym_e_GT_GT] = ACTIONS(2268), + [anon_sym_o_GT_GT] = ACTIONS(2268), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2268), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2268), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2268), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2268), + [aux_sym_unquoted_token1] = ACTIONS(2268), + [aux_sym_unquoted_token4] = ACTIONS(2268), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2270), + }, + [1726] = { + [sym_cmd_identifier] = STATE(4154), + [sym__command_name] = STATE(6522), + [sym_scope_pattern] = STATE(6523), + [sym_wild_card] = STATE(6524), + [sym_command_list] = STATE(6525), + [sym__val_number_decimal] = STATE(3764), + [sym_val_string] = STATE(4161), + [sym__raw_str] = STATE(4332), + [sym__str_double_quotes] = STATE(4332), + [sym_comment] = STATE(1726), + [aux_sym_cmd_identifier_token1] = ACTIONS(5036), + [aux_sym_cmd_identifier_token2] = ACTIONS(5038), + [aux_sym_cmd_identifier_token3] = ACTIONS(5038), + [aux_sym_cmd_identifier_token4] = ACTIONS(5038), + [aux_sym_cmd_identifier_token5] = ACTIONS(5038), + [aux_sym_cmd_identifier_token6] = ACTIONS(5038), + [aux_sym_cmd_identifier_token7] = ACTIONS(5038), + [aux_sym_cmd_identifier_token8] = ACTIONS(5038), + [aux_sym_cmd_identifier_token9] = ACTIONS(5036), + [aux_sym_cmd_identifier_token10] = ACTIONS(5038), + [aux_sym_cmd_identifier_token11] = ACTIONS(5038), + [aux_sym_cmd_identifier_token12] = ACTIONS(5038), + [aux_sym_cmd_identifier_token13] = ACTIONS(5036), + [aux_sym_cmd_identifier_token14] = ACTIONS(5038), + [aux_sym_cmd_identifier_token15] = ACTIONS(5036), + [aux_sym_cmd_identifier_token16] = ACTIONS(5038), + [aux_sym_cmd_identifier_token17] = ACTIONS(5038), + [aux_sym_cmd_identifier_token18] = ACTIONS(5038), + [aux_sym_cmd_identifier_token19] = ACTIONS(5038), + [aux_sym_cmd_identifier_token20] = ACTIONS(5038), + [aux_sym_cmd_identifier_token21] = ACTIONS(5038), + [aux_sym_cmd_identifier_token22] = ACTIONS(5038), + [aux_sym_cmd_identifier_token23] = ACTIONS(5038), + [aux_sym_cmd_identifier_token24] = ACTIONS(5038), + [aux_sym_cmd_identifier_token25] = ACTIONS(5038), + [aux_sym_cmd_identifier_token26] = ACTIONS(5038), + [aux_sym_cmd_identifier_token27] = ACTIONS(5038), + [aux_sym_cmd_identifier_token28] = ACTIONS(5038), + [aux_sym_cmd_identifier_token29] = ACTIONS(5038), + [aux_sym_cmd_identifier_token30] = ACTIONS(5038), + [aux_sym_cmd_identifier_token31] = ACTIONS(5038), + [aux_sym_cmd_identifier_token32] = ACTIONS(5038), + [aux_sym_cmd_identifier_token33] = ACTIONS(5038), + [aux_sym_cmd_identifier_token34] = ACTIONS(5036), + [aux_sym_cmd_identifier_token35] = ACTIONS(5038), + [aux_sym_cmd_identifier_token36] = ACTIONS(5038), + [aux_sym_cmd_identifier_token37] = ACTIONS(5038), + [aux_sym_cmd_identifier_token38] = ACTIONS(5036), + [aux_sym_cmd_identifier_token39] = ACTIONS(5038), + [aux_sym_cmd_identifier_token40] = ACTIONS(5038), + [sym__newline] = ACTIONS(5074), + [anon_sym_SEMI] = ACTIONS(5074), + [anon_sym_LBRACK] = ACTIONS(5042), + [anon_sym_RPAREN] = ACTIONS(5074), + [anon_sym_RBRACE] = ACTIONS(5074), + [anon_sym_STAR2] = ACTIONS(5044), + [aux_sym__val_number_decimal_token1] = ACTIONS(5046), + [aux_sym__val_number_decimal_token2] = ACTIONS(5046), + [aux_sym__val_number_decimal_token3] = ACTIONS(5048), + [aux_sym__val_number_decimal_token4] = ACTIONS(5050), + [anon_sym_DQUOTE] = ACTIONS(4001), + [sym__str_single_quotes] = ACTIONS(4003), + [sym__str_back_ticks] = ACTIONS(4003), + [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(4005), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 19, + [0] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4569), 1, + aux_sym_unquoted_token2, + STATE(1727), 1, + sym_comment, + ACTIONS(1707), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1719), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [75] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5076), 1, + anon_sym_DOT, + STATE(2080), 1, + sym_path, + STATE(1728), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(971), 14, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(973), 45, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [152] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1729), 1, + sym_comment, + ACTIONS(2444), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2446), 49, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [225] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2062), 1, + STATE(1730), 1, + sym_comment, + ACTIONS(2430), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2432), 46, sym_raw_string_begin, - ACTIONS(4305), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [298] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5015), 1, + aux_sym__immediate_decimal_token2, + STATE(1731), 1, + sym_comment, + ACTIONS(1765), 16, anon_sym_DOLLAR, - ACTIONS(4329), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1767), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [373] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1732), 1, + sym_comment, + ACTIONS(5081), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(5079), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(4333), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4335), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5045), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [446] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1733), 1, + sym_comment, + ACTIONS(1942), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1944), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5094), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [519] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1734), 1, + sym_comment, + ACTIONS(994), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(996), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [592] = 4, + ACTIONS(247), 1, + anon_sym_POUND, STATE(1735), 1, sym_comment, - STATE(3740), 1, + ACTIONS(994), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(996), 49, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [665] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1736), 1, + sym_comment, + ACTIONS(998), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1000), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [738] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1737), 1, + sym_comment, + ACTIONS(5085), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(5083), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [811] = 21, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(121), 1, + sym_raw_string_begin, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5048), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5091), 1, + anon_sym_LBRACK, + ACTIONS(5093), 1, + anon_sym_STAR2, + STATE(1738), 1, + sym_comment, + STATE(3833), 1, sym__val_number_decimal, - STATE(4807), 1, - sym__inter_single_quotes, - STATE(4808), 1, - sym__inter_double_quotes, - ACTIONS(4331), 2, + STATE(6276), 1, + sym_cmd_identifier, + STATE(6277), 1, + sym_val_string, + STATE(6994), 1, + sym__command_name, + STATE(7121), 1, + sym_wild_card, + STATE(7125), 1, + sym_command_list, + STATE(7429), 1, + sym_scope_pattern, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4517), 2, + STATE(2093), 2, sym__raw_str, sym__str_double_quotes, - STATE(4677), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(19), 6, + ACTIONS(5066), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(5087), 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(21), 34, + ACTIONS(5089), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -232137,15 +232669,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [103] = 4, + [918] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1736), 1, + STATE(1739), 1, sym_comment, - ACTIONS(5098), 16, + ACTIONS(1010), 17, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -232159,8 +232692,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5096), 46, + ACTIONS(1012), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232174,10 +232708,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -232206,12 +232738,12 @@ 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, - [176] = 4, + [991] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1737), 1, + STATE(1740), 1, sym_comment, - ACTIONS(5102), 16, + ACTIONS(2494), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -232228,7 +232760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5100), 46, + ACTIONS(2496), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -232275,12 +232807,12 @@ 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, - [249] = 4, + [1064] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1738), 1, + STATE(1741), 1, sym_comment, - ACTIONS(1030), 16, + ACTIONS(2498), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -232297,7 +232829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1032), 46, + ACTIONS(2500), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -232344,12 +232876,166 @@ 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, - [322] = 4, + [1137] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2244), 1, + aux_sym_unquoted_token4, + STATE(1742), 1, + sym_comment, + ACTIONS(2242), 21, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2238), 40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token1, + [1212] = 19, ACTIONS(247), 1, anon_sym_POUND, - STATE(1739), 1, + ACTIONS(2116), 1, + sym_raw_string_begin, + ACTIONS(4505), 1, + anon_sym_DOLLAR, + ACTIONS(4529), 1, + anon_sym_DQUOTE, + ACTIONS(4533), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4535), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5048), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5095), 1, + anon_sym_LPAREN, + STATE(1743), 1, + sym_comment, + STATE(3806), 1, + sym__val_number_decimal, + STATE(4891), 1, + sym__inter_single_quotes, + STATE(4896), 1, + sym__inter_double_quotes, + ACTIONS(4531), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4528), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4742), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(19), 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(21), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [1315] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1744), 1, sym_comment, - ACTIONS(2504), 16, + ACTIONS(2456), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -232366,7 +233052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2506), 46, + ACTIONS(2458), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -232413,12 +233099,12 @@ 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, - [395] = 4, + [1388] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1740), 1, + STATE(1745), 1, sym_comment, - ACTIONS(2090), 16, + ACTIONS(2406), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -232435,7 +233121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2092), 46, + ACTIONS(2408), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -232482,12 +233168,12 @@ 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, - [468] = 4, + [1461] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1741), 1, + STATE(1746), 1, sym_comment, - ACTIONS(2383), 16, + ACTIONS(2514), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -232504,7 +233190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2385), 46, + ACTIONS(2516), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -232551,105 +233237,59 @@ 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, - [541] = 21, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(121), 1, - sym_raw_string_begin, - ACTIONS(247), 1, + [1534] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5045), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5108), 1, - anon_sym_LBRACK, - ACTIONS(5110), 1, - anon_sym_STAR2, - STATE(1742), 1, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + STATE(1747), 1, sym_comment, - STATE(3778), 1, - sym__val_number_decimal, - STATE(6644), 1, - sym_cmd_identifier, - STATE(6645), 1, - sym_val_string, - STATE(7050), 1, - sym__command_name, - STATE(7117), 1, - sym_wild_card, - STATE(7165), 1, - sym_scope_pattern, - STATE(7217), 1, - sym_command_list, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5043), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(2091), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5063), 3, + ACTIONS(2250), 21, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - ACTIONS(5104), 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(5106), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [648] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1743), 1, - sym_comment, - ACTIONS(2480), 16, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2246), 40, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH2, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -232658,9 +233298,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - ACTIONS(2482), 46, + [1609] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + STATE(1748), 1, + sym_comment, + ACTIONS(2256), 21, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232674,15 +233330,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2254), 40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -232692,12 +233356,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -232706,12 +233376,13 @@ 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, - [721] = 4, + aux_sym_unquoted_token1, + [1684] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1744), 1, + STATE(1749), 1, sym_comment, - ACTIONS(2399), 16, + ACTIONS(2402), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -232728,7 +233399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2401), 46, + ACTIONS(2404), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -232775,12 +233446,12 @@ 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, - [794] = 4, + [1757] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1745), 1, + STATE(1750), 1, sym_comment, - ACTIONS(2488), 16, + ACTIONS(1044), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -232797,7 +233468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2490), 46, + ACTIONS(1046), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -232844,12 +233515,12 @@ 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, - [867] = 4, + [1830] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1746), 1, + STATE(1751), 1, sym_comment, - ACTIONS(2496), 16, + ACTIONS(5099), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -232866,7 +233537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2498), 46, + ACTIONS(5097), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -232913,12 +233584,118 @@ 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, - [940] = 4, + [1903] = 41, ACTIONS(247), 1, anon_sym_POUND, - STATE(1747), 1, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5105), 1, + anon_sym_DASH_DASH, + ACTIONS(5107), 1, + anon_sym_DASH2, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(1752), 1, sym_comment, - ACTIONS(1948), 16, + STATE(2107), 1, + sym_short_flag, + STATE(2133), 1, + sym_long_flag, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5758), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [2050] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1753), 1, + sym_comment, + ACTIONS(2351), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -232935,7 +233712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1950), 46, + ACTIONS(2353), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -232982,12 +233759,12 @@ 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, - [1013] = 4, + [2123] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1748), 1, + STATE(1754), 1, sym_comment, - ACTIONS(2387), 16, + ACTIONS(2355), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -233004,7 +233781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2389), 46, + ACTIONS(2357), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -233051,12 +233828,12 @@ 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, - [1086] = 4, + [2196] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1749), 1, + STATE(1755), 1, sym_comment, - ACTIONS(2367), 16, + ACTIONS(5121), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -233073,7 +233850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2369), 46, + ACTIONS(5119), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -233120,30 +233897,14 @@ 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, - [1159] = 4, - ACTIONS(247), 1, + [2269] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1750), 1, + STATE(1756), 1, sym_comment, - ACTIONS(1972), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1974), 46, + ACTIONS(2270), 21, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233157,15 +233918,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2268), 41, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -233175,12 +233944,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -233189,19 +233964,19 @@ 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, - [1232] = 4, + aux_sym_unquoted_token1, + aux_sym_unquoted_token4, + [2342] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1751), 1, + STATE(1757), 1, sym_comment, - ACTIONS(1988), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(998), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -233210,9 +233985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1990), 46, - sym_raw_string_begin, + ACTIONS(1000), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233224,32 +233997,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -233258,12 +234035,182 @@ 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, - [1305] = 4, + [2415] = 19, ACTIONS(247), 1, anon_sym_POUND, - STATE(1752), 1, + ACTIONS(2010), 1, + sym_raw_string_begin, + ACTIONS(4125), 1, + anon_sym_DOLLAR, + ACTIONS(4149), 1, + anon_sym_DQUOTE, + ACTIONS(4153), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4155), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5048), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5123), 1, + anon_sym_LPAREN, + STATE(1758), 1, sym_comment, - ACTIONS(1992), 16, + STATE(3819), 1, + sym__val_number_decimal, + STATE(4731), 1, + sym__inter_single_quotes, + STATE(4732), 1, + sym__inter_double_quotes, + ACTIONS(4151), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4371), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4562), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(363), 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(365), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [2518] = 21, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(121), 1, + sym_raw_string_begin, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5048), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5091), 1, + anon_sym_LBRACK, + ACTIONS(5093), 1, + anon_sym_STAR2, + STATE(1759), 1, + sym_comment, + STATE(3833), 1, + sym__val_number_decimal, + STATE(6276), 1, + sym_cmd_identifier, + STATE(6277), 1, + sym_val_string, + STATE(6994), 1, + sym__command_name, + STATE(7121), 1, + sym_wild_card, + STATE(7125), 1, + sym_command_list, + STATE(7257), 1, + sym_scope_pattern, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(2093), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5040), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(5087), 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(5089), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [2625] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1760), 1, + sym_comment, + ACTIONS(2359), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -233280,7 +234227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1994), 46, + ACTIONS(2361), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -233327,19 +234274,20 @@ 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, - [1378] = 4, + [2698] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1753), 1, + ACTIONS(5125), 1, + sym__newline, + STATE(1761), 2, sym_comment, - ACTIONS(2437), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym_shebang_repeat1, + ACTIONS(1294), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -233348,10 +234296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2439), 46, - sym_raw_string_begin, - sym__newline, + ACTIONS(1296), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -233362,32 +234307,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_else, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_catch, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -233396,12 +234344,12 @@ 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, - [1451] = 4, + [2773] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1754), 1, + STATE(1762), 1, sym_comment, - ACTIONS(2004), 16, + ACTIONS(1002), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -233418,7 +234366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2006), 46, + ACTIONS(1004), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -233465,12 +234413,12 @@ 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, - [1524] = 4, + [2846] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1755), 1, + STATE(1763), 1, sym_comment, - ACTIONS(2456), 16, + ACTIONS(5130), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -233487,7 +234435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2458), 46, + ACTIONS(5128), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -233534,12 +234482,12 @@ 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, - [1597] = 4, + [2919] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1756), 1, + STATE(1764), 1, sym_comment, - ACTIONS(2460), 16, + ACTIONS(2363), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -233556,7 +234504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2462), 46, + ACTIONS(2365), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -233603,12 +234551,12 @@ 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, - [1670] = 4, + [2992] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1757), 1, + STATE(1765), 1, sym_comment, - ACTIONS(2068), 16, + ACTIONS(5134), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -233625,7 +234573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2070), 46, + ACTIONS(5132), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -233672,12 +234620,12 @@ 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, - [1743] = 4, + [3065] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1758), 1, + STATE(1766), 1, sym_comment, - ACTIONS(1907), 16, + ACTIONS(5138), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -233694,7 +234642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1911), 46, + ACTIONS(5136), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -233741,12 +234689,14 @@ 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, - [1816] = 4, + [3138] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1759), 1, + ACTIONS(5140), 1, + anon_sym_EQ2, + STATE(1767), 1, sym_comment, - ACTIONS(2343), 16, + ACTIONS(4998), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -233763,8 +234713,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2345), 46, + ACTIONS(4996), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233778,10 +234729,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -233810,15 +234759,16 @@ 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, - [1889] = 4, + [3213] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1760), 1, + STATE(1768), 1, sym_comment, - ACTIONS(2351), 16, + ACTIONS(1014), 17, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -233832,8 +234782,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2353), 46, + ACTIONS(1016), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233847,10 +234798,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -233879,12 +234828,14 @@ 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, - [1962] = 4, + [3286] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1761), 1, + ACTIONS(5142), 1, + anon_sym_EQ2, + STATE(1769), 1, sym_comment, - ACTIONS(1913), 16, + ACTIONS(5058), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -233901,8 +234852,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1915), 46, + ACTIONS(5056), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233916,10 +234868,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -233948,12 +234898,12 @@ 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, - [2035] = 4, + [3361] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1762), 1, + STATE(1770), 1, sym_comment, - ACTIONS(2355), 16, + ACTIONS(5146), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -233970,7 +234920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2357), 46, + ACTIONS(5144), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -234017,19 +234967,17 @@ 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, - [2108] = 4, + [3434] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1763), 1, + STATE(1771), 1, sym_comment, - ACTIONS(2359), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(990), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -234038,9 +234986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2361), 46, - sym_raw_string_begin, + ACTIONS(992), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234052,32 +234998,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -234086,12 +235036,12 @@ 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, - [2181] = 4, + [3507] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1764), 1, + STATE(1772), 1, sym_comment, - ACTIONS(1709), 16, + ACTIONS(5150), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -234108,7 +235058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1721), 46, + ACTIONS(5148), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -234155,12 +235105,12 @@ 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, - [2254] = 4, + [3580] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1765), 1, + STATE(1773), 1, sym_comment, - ACTIONS(2363), 16, + ACTIONS(2383), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -234177,7 +235127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2365), 46, + ACTIONS(2385), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -234224,12 +235174,15 @@ 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, - [2327] = 4, + [3653] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1766), 1, + ACTIONS(5152), 1, + anon_sym_LBRACK2, + STATE(1774), 1, sym_comment, - ACTIONS(2094), 16, + ACTIONS(2322), 17, + anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -234246,8 +235199,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2096), 46, + ACTIONS(2326), 44, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234259,12 +235213,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -234293,12 +235244,12 @@ 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, - [2400] = 4, + [3728] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1767), 1, + STATE(1775), 1, sym_comment, - ACTIONS(2500), 16, + ACTIONS(1847), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -234315,7 +235266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2502), 46, + ACTIONS(1851), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -234362,12 +235313,12 @@ 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, - [2473] = 4, + [3801] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1768), 1, + STATE(1776), 1, sym_comment, - ACTIONS(2347), 16, + ACTIONS(2490), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -234384,7 +235335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2349), 46, + ACTIONS(2492), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -234431,12 +235382,12 @@ 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, - [2546] = 4, + [3874] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1769), 1, + STATE(1777), 1, sym_comment, - ACTIONS(2347), 16, + ACTIONS(1915), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -234453,7 +235404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2349), 46, + ACTIONS(1917), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -234500,12 +235451,14 @@ 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, - [2619] = 4, + [3947] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1770), 1, + ACTIONS(5154), 1, + aux_sym__immediate_decimal_token2, + STATE(1778), 1, sym_comment, - ACTIONS(5088), 16, + ACTIONS(1785), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -234522,8 +235475,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5086), 46, + ACTIONS(1787), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234537,10 +235491,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -234569,12 +235521,12 @@ 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, - [2692] = 4, + [4022] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1771), 1, + STATE(1779), 1, sym_comment, - ACTIONS(2492), 16, + ACTIONS(2444), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -234591,7 +235543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2494), 46, + ACTIONS(2446), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -234638,19 +235590,123 @@ 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, - [2765] = 4, + [4095] = 41, ACTIONS(247), 1, anon_sym_POUND, - STATE(1772), 1, - sym_comment, - ACTIONS(2508), 16, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, anon_sym_DOLLAR, + ACTIONS(5105), 1, + anon_sym_DASH_DASH, + ACTIONS(5107), 1, anon_sym_DASH2, + ACTIONS(5109), 1, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(1780), 1, + sym_comment, + STATE(2141), 1, + sym_short_flag, + STATE(2142), 1, + sym_long_flag, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5806), 1, + sym__expression, + ACTIONS(3427), 2, anon_sym_0o, anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [4242] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1781), 1, + sym_comment, + ACTIONS(1707), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -234659,9 +235715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2510), 46, - sym_raw_string_begin, + ACTIONS(1719), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234673,46 +235727,368 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [4315] = 41, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5105), 1, + anon_sym_DASH_DASH, + ACTIONS(5107), 1, + anon_sym_DASH2, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(1782), 1, + sym_comment, + STATE(2143), 1, + sym_short_flag, + STATE(2144), 1, + sym_long_flag, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5848), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(5115), 2, anon_sym_true, anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [4462] = 41, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5105), 1, + anon_sym_DASH_DASH, + ACTIONS(5107), 1, + anon_sym_DASH2, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(1783), 1, + sym_comment, + STATE(2145), 1, + sym_short_flag, + STATE(2146), 1, + sym_long_flag, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5849), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [4609] = 41, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(3435), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [2838] = 4, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5105), 1, + anon_sym_DASH_DASH, + ACTIONS(5107), 1, + anon_sym_DASH2, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(1784), 1, + sym_comment, + STATE(2147), 1, + sym_short_flag, + STATE(2148), 1, + sym_long_flag, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5851), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [4756] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1773), 1, + STATE(1785), 1, sym_comment, - ACTIONS(5022), 16, + ACTIONS(2034), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -234729,7 +236105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5020), 46, + ACTIONS(2036), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -234776,16 +236152,16 @@ 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, - [2911] = 4, + [4829] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1774), 1, + STATE(1786), 1, sym_comment, - ACTIONS(1006), 17, + ACTIONS(5064), 17, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -234799,7 +236175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1008), 45, + ACTIONS(5062), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -234814,9 +236190,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -234845,12 +236221,12 @@ 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, - [2984] = 4, + [4902] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1775), 1, + STATE(1787), 1, sym_comment, - ACTIONS(2129), 16, + ACTIONS(2343), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -234867,7 +236243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2131), 46, + ACTIONS(2345), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -234914,19 +236290,22 @@ 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, - [3057] = 4, + [4975] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1776), 1, + ACTIONS(5156), 1, + anon_sym_QMARK2, + STATE(1788), 1, sym_comment, - ACTIONS(2464), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(978), 16, + sym__newline, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -234935,10 +236314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2466), 46, - sym_raw_string_begin, - sym__newline, + ACTIONS(980), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -234949,46 +236325,259 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_record_entry_token1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [5050] = 41, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3393), 1, anon_sym_LBRACK, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5105), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(5107), 1, + anon_sym_DASH2, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(1789), 1, + sym_comment, + STATE(2149), 1, + sym_short_flag, + STATE(2150), 1, + sym_long_flag, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5904), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(5115), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [5197] = 41, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(3435), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [3130] = 4, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5105), 1, + anon_sym_DASH_DASH, + ACTIONS(5107), 1, + anon_sym_DASH2, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(1790), 1, + sym_comment, + STATE(2151), 1, + sym_short_flag, + STATE(2152), 1, + sym_long_flag, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5905), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [5344] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1777), 1, + STATE(1791), 1, sym_comment, - ACTIONS(2468), 16, + ACTIONS(990), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -235005,7 +236594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2470), 46, + ACTIONS(992), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -235052,12 +236641,12 @@ 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, - [3203] = 4, + [5417] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1778), 1, + STATE(1792), 1, sym_comment, - ACTIONS(2183), 16, + ACTIONS(2367), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -235074,7 +236663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2185), 46, + ACTIONS(2369), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -235121,16 +236710,15 @@ 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, - [3276] = 4, + [5490] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1779), 1, + STATE(1793), 1, sym_comment, - ACTIONS(1010), 17, + ACTIONS(2379), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -235144,9 +236732,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1012), 45, + ACTIONS(2381), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235160,8 +236747,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -235190,16 +236779,15 @@ 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, - [3349] = 4, + [5563] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1780), 1, + STATE(1794), 1, sym_comment, - ACTIONS(1014), 17, + ACTIONS(2038), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -235213,9 +236801,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1016), 45, + ACTIONS(2040), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235229,8 +236816,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -235259,82 +236848,12 @@ 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, - [3422] = 5, + [5636] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5112), 1, - anon_sym_QMARK2, - STATE(1781), 1, - sym_comment, - ACTIONS(978), 16, - sym__newline, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(980), 45, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_record_entry_token1, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [3497] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5114), 1, + ACTIONS(5158), 1, anon_sym_QMARK2, - STATE(1782), 1, + STATE(1795), 1, sym_comment, ACTIONS(984), 16, sym__newline, @@ -235399,12 +236918,12 @@ 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, - [3572] = 4, + [5711] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1783), 1, + STATE(1796), 1, sym_comment, - ACTIONS(994), 16, + ACTIONS(5163), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -235421,7 +236940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(996), 46, + ACTIONS(5160), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -235468,14 +236987,12 @@ 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, - [3645] = 5, + [5784] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5082), 1, - aux_sym__immediate_decimal_token2, - STATE(1784), 1, + STATE(1797), 1, sym_comment, - ACTIONS(1755), 16, + ACTIONS(1887), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -235492,9 +237009,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1757), 45, + ACTIONS(1889), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235508,8 +237024,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -235538,12 +237056,12 @@ 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, - [3720] = 4, + [5857] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1785), 1, + STATE(1798), 1, sym_comment, - ACTIONS(998), 16, + ACTIONS(2464), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -235560,7 +237078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1000), 46, + ACTIONS(2466), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -235607,12 +237125,12 @@ 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, - [3793] = 4, + [5930] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1786), 1, + STATE(1799), 1, sym_comment, - ACTIONS(1002), 16, + ACTIONS(2464), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -235629,7 +237147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1004), 46, + ACTIONS(2466), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -235676,12 +237194,12 @@ 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, - [3866] = 4, + [6003] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1787), 1, + STATE(1800), 1, sym_comment, - ACTIONS(1018), 16, + ACTIONS(2122), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -235698,7 +237216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1020), 46, + ACTIONS(2128), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -235745,12 +237263,12 @@ 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, - [3939] = 4, + [6076] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1788), 1, + STATE(1801), 1, sym_comment, - ACTIONS(990), 16, + ACTIONS(5054), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -235767,7 +237285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(992), 46, + ACTIONS(5052), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -235814,14 +237332,12 @@ 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, - [4012] = 5, + [6149] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5116), 1, - aux_sym__immediate_decimal_token2, - STATE(1789), 1, + STATE(1802), 1, sym_comment, - ACTIONS(1783), 16, + ACTIONS(2390), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -235838,9 +237354,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1785), 45, + ACTIONS(2392), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235854,8 +237369,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -235884,182 +237401,12 @@ 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, - [4087] = 21, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(121), 1, - sym_raw_string_begin, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5045), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5108), 1, - anon_sym_LBRACK, - ACTIONS(5110), 1, - anon_sym_STAR2, - STATE(1790), 1, - sym_comment, - STATE(3778), 1, - sym__val_number_decimal, - STATE(6644), 1, - sym_cmd_identifier, - STATE(6645), 1, - sym_val_string, - STATE(7050), 1, - sym__command_name, - STATE(7083), 1, - sym_scope_pattern, - STATE(7117), 1, - sym_wild_card, - STATE(7217), 1, - sym_command_list, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5043), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(2091), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5037), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(5104), 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(5106), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [4194] = 19, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1860), 1, - sym_raw_string_begin, - ACTIONS(4341), 1, - anon_sym_DOLLAR, - ACTIONS(4367), 1, - anon_sym_DQUOTE, - ACTIONS(4371), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4373), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5045), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5118), 1, - anon_sym_LPAREN, - STATE(1791), 1, - sym_comment, - STATE(3775), 1, - sym__val_number_decimal, - STATE(4689), 1, - sym__inter_single_quotes, - STATE(4701), 1, - sym__inter_double_quotes, - ACTIONS(4369), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5043), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4465), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4605), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(363), 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(365), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [4297] = 4, + [6222] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1792), 1, + STATE(1803), 1, sym_comment, - ACTIONS(5122), 16, + ACTIONS(1927), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -236076,7 +237423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5120), 46, + ACTIONS(1929), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -236123,12 +237470,12 @@ 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, - [4370] = 4, + [6295] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1793), 1, + STATE(1804), 1, sym_comment, - ACTIONS(5126), 16, + ACTIONS(2130), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -236145,7 +237492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5124), 46, + ACTIONS(2136), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -236192,14 +237539,12 @@ 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, - [4443] = 5, + [6368] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4674), 1, - aux_sym_unquoted_token2, - STATE(1794), 1, + STATE(1805), 1, sym_comment, - ACTIONS(1709), 16, + ACTIONS(2414), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -236216,9 +237561,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1721), 45, + ACTIONS(2416), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236232,8 +237576,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -236262,12 +237608,84 @@ 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, - [4518] = 4, + [6441] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1795), 1, + ACTIONS(5166), 1, + anon_sym_QMARK2, + STATE(1806), 1, sym_comment, - ACTIONS(5130), 16, + ACTIONS(978), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(980), 48, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [6516] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4762), 1, + aux_sym_unquoted_token2, + STATE(1807), 1, + sym_comment, + ACTIONS(1707), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -236284,8 +237702,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5128), 46, + ACTIONS(1719), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236299,10 +237718,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -236331,24 +237748,17 @@ 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, - [4591] = 7, + [6591] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5049), 1, - anon_sym_DOT, - STATE(1796), 1, + STATE(1808), 1, sym_comment, - STATE(1803), 1, - aux_sym_cell_path_repeat1, - STATE(1978), 1, - sym_path, - ACTIONS(967), 14, + ACTIONS(1002), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236357,8 +237767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(969), 45, - ts_builtin_sym_end, + ACTIONS(1004), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236370,8 +237779,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -236393,8 +237808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236403,16 +237817,30 @@ 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, - [4670] = 5, - ACTIONS(3), 1, + [6664] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2212), 1, - aux_sym_unquoted_token4, - STATE(1797), 1, + STATE(1809), 1, sym_comment, - ACTIONS(2210), 21, + ACTIONS(1899), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1901), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236426,23 +237854,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2206), 40, - anon_sym_DOLLAR, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_DOT_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -236452,18 +237872,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236472,17 +237886,28 @@ 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, - aux_sym_unquoted_token1, - [4745] = 5, - ACTIONS(3), 1, + [6737] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - STATE(1798), 1, + ACTIONS(5168), 1, + anon_sym_QMARK2, + STATE(1810), 1, sym_comment, - ACTIONS(2218), 21, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(984), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(986), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236494,38 +237919,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2214), 40, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [6812] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1811), 1, + sym_comment, + ACTIONS(2146), 16, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH2, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236534,25 +237977,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [4820] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - STATE(1799), 1, - sym_comment, - ACTIONS(2224), 21, + ACTIONS(2152), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236566,23 +237993,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2222), 40, - anon_sym_DOLLAR, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_DOT_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -236592,18 +238011,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236612,13 +238025,12 @@ 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, - aux_sym_unquoted_token1, - [4895] = 4, + [6885] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1812), 1, sym_comment, - ACTIONS(4828), 16, + ACTIONS(1707), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -236635,7 +238047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4826), 46, + ACTIONS(1719), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -236682,12 +238094,96 @@ 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, - [4968] = 4, + [6958] = 19, ACTIONS(247), 1, anon_sym_POUND, - STATE(1801), 1, + ACTIONS(2010), 1, + sym_raw_string_begin, + ACTIONS(4125), 1, + anon_sym_DOLLAR, + ACTIONS(4149), 1, + anon_sym_DQUOTE, + ACTIONS(4153), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4155), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5048), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5123), 1, + anon_sym_LPAREN, + STATE(1813), 1, + sym_comment, + STATE(3819), 1, + sym__val_number_decimal, + STATE(4731), 1, + sym__inter_single_quotes, + STATE(4732), 1, + sym__inter_double_quotes, + ACTIONS(4151), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4371), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4649), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(363), 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(365), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [7061] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1814), 1, sym_comment, - ACTIONS(4916), 16, + ACTIONS(2486), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -236704,7 +238200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4914), 46, + ACTIONS(2488), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -236751,14 +238247,30 @@ 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, - [5041] = 4, - ACTIONS(3), 1, + [7134] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(1802), 1, + STATE(1815), 1, sym_comment, - ACTIONS(2250), 21, + ACTIONS(5172), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(5170), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236772,23 +238284,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2248), 41, - anon_sym_DOLLAR, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_DOT_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -236798,18 +238302,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236818,19 +238316,18 @@ 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, - aux_sym_unquoted_token1, - aux_sym_unquoted_token4, - [5114] = 6, + [7207] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5132), 1, + ACTIONS(5020), 1, anon_sym_DOT, - STATE(1978), 1, - sym_path, - STATE(1803), 2, - sym_comment, + STATE(1728), 1, aux_sym_cell_path_repeat1, - ACTIONS(971), 14, + STATE(1816), 1, + sym_comment, + STATE(2080), 1, + sym_path, + ACTIONS(967), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -236845,7 +238342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(973), 45, + ACTIONS(969), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -236891,12 +238388,12 @@ 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, - [5191] = 4, + [7286] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1804), 1, + STATE(1817), 1, sym_comment, - ACTIONS(5138), 16, + ACTIONS(2510), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -236913,7 +238410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5135), 46, + ACTIONS(2512), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -236960,12 +238457,12 @@ 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, - [5264] = 4, + [7359] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1805), 1, + STATE(1818), 1, sym_comment, - ACTIONS(1755), 16, + ACTIONS(5176), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -236982,7 +238479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1757), 46, + ACTIONS(5174), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -237029,96 +238526,12 @@ 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, - [5337] = 19, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1860), 1, - sym_raw_string_begin, - ACTIONS(4341), 1, - anon_sym_DOLLAR, - ACTIONS(4367), 1, - anon_sym_DQUOTE, - ACTIONS(4371), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4373), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5045), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5118), 1, - anon_sym_LPAREN, - STATE(1806), 1, - sym_comment, - STATE(3775), 1, - sym__val_number_decimal, - STATE(4689), 1, - sym__inter_single_quotes, - STATE(4701), 1, - sym__inter_double_quotes, - ACTIONS(4369), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5043), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4465), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4761), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(363), 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(365), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [5440] = 4, + [7432] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1807), 1, + STATE(1819), 1, sym_comment, - ACTIONS(1739), 16, + ACTIONS(2448), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -237135,7 +238548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1741), 46, + ACTIONS(2450), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -237182,12 +238595,12 @@ 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, - [5513] = 4, + [7505] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1808), 1, + STATE(1820), 1, sym_comment, - ACTIONS(1783), 16, + ACTIONS(2183), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -237204,7 +238617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1785), 46, + ACTIONS(2185), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -237251,12 +238664,12 @@ 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, - [5586] = 4, + [7578] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1809), 1, + STATE(1821), 1, sym_comment, - ACTIONS(1890), 16, + ACTIONS(2452), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -237273,7 +238686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1892), 46, + ACTIONS(2454), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -237320,17 +238733,19 @@ 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, - [5659] = 4, + [7651] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1810), 1, + STATE(1822), 1, sym_comment, - ACTIONS(1709), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5064), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -237339,7 +238754,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1721), 49, + aux_sym_unquoted_token1, + ACTIONS(5062), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -237351,36 +238768,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -237389,17 +238802,20 @@ 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, - [5732] = 4, + [7724] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1811), 1, + STATE(1823), 1, sym_comment, - ACTIONS(2363), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1006), 17, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -237408,7 +238824,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2365), 49, + aux_sym_unquoted_token1, + ACTIONS(1008), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -237420,36 +238839,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -237458,100 +238871,13 @@ 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, - [5805] = 21, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(121), 1, - sym_raw_string_begin, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5045), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5108), 1, - anon_sym_LBRACK, - ACTIONS(5110), 1, - anon_sym_STAR2, - STATE(1812), 1, - sym_comment, - STATE(3778), 1, - sym__val_number_decimal, - STATE(6644), 1, - sym_cmd_identifier, - STATE(6645), 1, - sym_val_string, - STATE(7050), 1, - sym__command_name, - STATE(7112), 1, - sym_scope_pattern, - STATE(7117), 1, - sym_wild_card, - STATE(7217), 1, - sym_command_list, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5043), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(2091), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5084), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(5104), 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(5106), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [5912] = 5, + [7797] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5141), 1, - anon_sym_EQ2, - STATE(1813), 1, + STATE(1824), 1, sym_comment, - ACTIONS(5053), 16, + ACTIONS(5054), 17, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -237568,7 +238894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5051), 45, + ACTIONS(5052), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -237583,9 +238909,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -237614,12 +238940,12 @@ 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, - [5987] = 4, + [7870] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1814), 1, + STATE(1825), 1, sym_comment, - ACTIONS(5145), 16, + ACTIONS(1907), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -237636,7 +238962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5143), 46, + ACTIONS(1909), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -237683,15 +239009,12 @@ 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, - [6060] = 5, + [7943] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5147), 1, - anon_sym_LBRACK2, - STATE(1815), 1, + STATE(1826), 1, sym_comment, - ACTIONS(2337), 17, - anon_sym_LBRACK, + ACTIONS(4884), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -237708,9 +239031,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2341), 44, + ACTIONS(4882), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -237722,9 +239044,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -237753,20 +239078,19 @@ 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, - [6135] = 5, + [8016] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5149), 1, - sym__newline, - STATE(1816), 2, + STATE(1827), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1294), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2398), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -237775,7 +239099,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1296), 47, + aux_sym_unquoted_token1, + ACTIONS(2400), 46, + sym_raw_string_begin, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -237786,35 +239113,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_else, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_catch, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -237823,12 +239147,12 @@ 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, - [6210] = 4, + [8089] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1817), 1, + STATE(1828), 1, sym_comment, - ACTIONS(5154), 16, + ACTIONS(4964), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -237845,7 +239169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5152), 46, + ACTIONS(4962), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -237892,19 +239216,19 @@ 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, - [6283] = 5, + [8162] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5156), 1, - anon_sym_QMARK2, - STATE(1818), 1, + STATE(1829), 1, sym_comment, - ACTIONS(978), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1026), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -237913,7 +239237,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(980), 48, + aux_sym_unquoted_token1, + ACTIONS(1028), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -237925,35 +239251,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -237962,19 +239285,19 @@ 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, - [6358] = 5, + [8235] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5158), 1, - anon_sym_QMARK2, - STATE(1819), 1, + STATE(1830), 1, sym_comment, - ACTIONS(984), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2440), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -237983,7 +239306,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(986), 48, + aux_sym_unquoted_token1, + ACTIONS(2442), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -237995,35 +239320,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238032,14 +239354,118 @@ 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, - [6433] = 5, + [8308] = 41, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4764), 1, - aux_sym_unquoted_token2, - STATE(1820), 1, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5105), 1, + anon_sym_DASH_DASH, + ACTIONS(5107), 1, + anon_sym_DASH2, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(1831), 1, + sym_comment, + STATE(2103), 1, + sym_short_flag, + STATE(2104), 1, + sym_long_flag, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5781), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [8455] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1832), 1, sym_comment, - ACTIONS(1709), 16, + ACTIONS(2422), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -238056,9 +239482,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1721), 45, + ACTIONS(2424), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238072,8 +239497,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -238102,17 +239529,19 @@ 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, - [6508] = 4, + [8528] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1821), 1, + STATE(1833), 1, sym_comment, - ACTIONS(994), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2410), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238121,7 +239550,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(996), 49, + aux_sym_unquoted_token1, + ACTIONS(2412), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238133,36 +239564,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238171,13 +239598,12 @@ 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, - [6581] = 4, + [8601] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1822), 1, + STATE(1834), 1, sym_comment, - ACTIONS(5088), 17, - anon_sym_LPAREN, + ACTIONS(2118), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -238194,9 +239620,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5086), 45, + ACTIONS(2120), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238209,9 +239634,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -238240,17 +239667,19 @@ 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, - [6654] = 4, + [8674] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1823), 1, + STATE(1835), 1, sym_comment, - ACTIONS(998), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2426), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238259,7 +239688,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1000), 49, + aux_sym_unquoted_token1, + ACTIONS(2428), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238271,36 +239702,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238309,17 +239736,19 @@ 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, - [6727] = 4, + [8747] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1824), 1, + STATE(1836), 1, sym_comment, - ACTIONS(1002), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2472), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238328,7 +239757,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1004), 49, + aux_sym_unquoted_token1, + ACTIONS(2474), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238340,36 +239771,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238378,14 +239805,12 @@ 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, - [6800] = 5, + [8820] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5160), 1, - anon_sym_EQ2, - STATE(1825), 1, + STATE(1837), 1, sym_comment, - ACTIONS(5016), 16, + ACTIONS(2468), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -238402,9 +239827,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5014), 45, + ACTIONS(2470), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238418,8 +239842,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -238448,13 +239874,12 @@ 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, - [6875] = 4, + [8893] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1826), 1, + STATE(1838), 1, sym_comment, - ACTIONS(5022), 17, - anon_sym_LPAREN, + ACTIONS(2478), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -238471,9 +239896,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5020), 45, + ACTIONS(2480), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238486,9 +239910,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -238517,17 +239943,19 @@ 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, - [6948] = 4, + [8966] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1827), 1, + STATE(1839), 1, sym_comment, - ACTIONS(990), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2347), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238536,7 +239964,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(992), 49, + aux_sym_unquoted_token1, + ACTIONS(2349), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238548,36 +239978,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238586,12 +240012,12 @@ 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, - [7021] = 4, + [9039] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1828), 1, + STATE(1840), 1, sym_comment, - ACTIONS(2395), 16, + ACTIONS(2418), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -238608,7 +240034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2397), 46, + ACTIONS(2420), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -238655,12 +240081,12 @@ 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, - [7094] = 4, + [9112] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1829), 1, + STATE(1841), 1, sym_comment, - ACTIONS(2403), 16, + ACTIONS(2482), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -238677,7 +240103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2405), 46, + ACTIONS(2484), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -238724,12 +240150,118 @@ 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, - [7167] = 4, + [9185] = 41, ACTIONS(247), 1, anon_sym_POUND, - STATE(1830), 1, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5105), 1, + anon_sym_DASH_DASH, + ACTIONS(5107), 1, + anon_sym_DASH2, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(1842), 1, + sym_comment, + STATE(2165), 1, + sym_short_flag, + STATE(2166), 1, + sym_long_flag, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5805), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [9332] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1843), 1, sym_comment, - ACTIONS(2407), 16, + ACTIONS(1765), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -238746,7 +240278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2409), 46, + ACTIONS(1767), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -238793,12 +240325,118 @@ 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, - [7240] = 4, + [9405] = 41, ACTIONS(247), 1, anon_sym_POUND, - STATE(1831), 1, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5105), 1, + anon_sym_DASH_DASH, + ACTIONS(5107), 1, + anon_sym_DASH2, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(1844), 1, + sym_comment, + STATE(2091), 1, + sym_short_flag, + STATE(2167), 1, + sym_long_flag, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5812), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [9552] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1845), 1, sym_comment, - ACTIONS(5164), 16, + ACTIONS(2157), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -238815,7 +240453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5162), 46, + ACTIONS(2163), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -238862,12 +240500,188 @@ 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, - [7313] = 4, + [9625] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2228), 1, + aux_sym_unquoted_token4, + STATE(1846), 1, + sym_comment, + ACTIONS(1028), 21, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1026), 40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token1, + [9700] = 41, ACTIONS(247), 1, anon_sym_POUND, - STATE(1832), 1, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5105), 1, + anon_sym_DASH_DASH, + ACTIONS(5107), 1, + anon_sym_DASH2, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(1847), 1, + sym_comment, + STATE(2168), 1, + sym_short_flag, + STATE(2169), 1, + sym_long_flag, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5820), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [9847] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1848), 1, sym_comment, - ACTIONS(2159), 16, + ACTIONS(1739), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -238884,7 +240698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2165), 46, + ACTIONS(1741), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -238931,12 +240745,204 @@ 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, - [7386] = 4, + [9920] = 21, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(121), 1, + sym_raw_string_begin, ACTIONS(247), 1, anon_sym_POUND, - STATE(1833), 1, + ACTIONS(5048), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5091), 1, + anon_sym_LBRACK, + ACTIONS(5093), 1, + anon_sym_STAR2, + STATE(1849), 1, + sym_comment, + STATE(3833), 1, + sym__val_number_decimal, + STATE(6276), 1, + sym_cmd_identifier, + STATE(6277), 1, + sym_val_string, + STATE(6994), 1, + sym__command_name, + STATE(7112), 1, + sym_scope_pattern, + STATE(7121), 1, + sym_wild_card, + STATE(7125), 1, + sym_command_list, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(2093), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5074), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(5087), 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(5089), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [10027] = 41, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5105), 1, + anon_sym_DASH_DASH, + ACTIONS(5107), 1, + anon_sym_DASH2, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(1850), 1, + sym_comment, + STATE(2105), 1, + sym_short_flag, + STATE(2106), 1, + sym_long_flag, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5783), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [10174] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1851), 1, sym_comment, - ACTIONS(2375), 16, + ACTIONS(1785), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -238953,7 +240959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2377), 46, + ACTIONS(1787), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -239000,12 +241006,12 @@ 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, - [7459] = 4, + [10247] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1834), 1, + STATE(1852), 1, sym_comment, - ACTIONS(2167), 16, + ACTIONS(1841), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239022,7 +241028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2173), 46, + ACTIONS(1843), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -239069,12 +241075,12 @@ 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, - [7532] = 4, + [10320] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1835), 1, + STATE(1853), 1, sym_comment, - ACTIONS(2175), 16, + ACTIONS(2436), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239091,7 +241097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2181), 46, + ACTIONS(2438), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -239138,12 +241144,12 @@ 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, - [7605] = 4, + [10393] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1836), 1, + STATE(1854), 1, sym_comment, - ACTIONS(2133), 16, + ACTIONS(1863), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239160,7 +241166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2139), 46, + ACTIONS(1865), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -239207,12 +241213,12 @@ 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, - [7678] = 4, + [10466] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1837), 1, + STATE(1855), 1, sym_comment, - ACTIONS(5168), 16, + ACTIONS(4898), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239229,7 +241235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5166), 46, + ACTIONS(4896), 45, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -239247,7 +241253,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -239276,19 +241281,19 @@ 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, - [7751] = 4, + [10538] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1838), 1, + STATE(1856), 1, sym_comment, - ACTIONS(5172), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(990), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239297,9 +241302,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5170), 46, - sym_raw_string_begin, + ACTIONS(992), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239311,32 +241315,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239345,12 +241349,12 @@ 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, - [7824] = 4, + [10610] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1839), 1, + STATE(1857), 1, sym_comment, - ACTIONS(2472), 16, + ACTIONS(5064), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239367,8 +241371,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2474), 46, + ACTIONS(5062), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239382,10 +241387,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -239414,19 +241417,19 @@ 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, - [7897] = 4, + [10682] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1840), 1, + STATE(1858), 1, sym_comment, - ACTIONS(2476), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(994), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239435,9 +241438,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2478), 46, - sym_raw_string_begin, + ACTIONS(996), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239449,32 +241451,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239483,19 +241485,19 @@ 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, - [7970] = 4, + [10754] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1841), 1, + STATE(1859), 1, sym_comment, - ACTIONS(2371), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(998), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239504,9 +241506,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2373), 46, - sym_raw_string_begin, + ACTIONS(1000), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239518,32 +241519,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239552,30 +241553,29 @@ 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, - [8043] = 4, + [10826] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1842), 1, + STATE(1860), 1, sym_comment, - ACTIONS(5176), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1002), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, anon_sym_o_GT, anon_sym_err_PLUSout_GT, anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5174), 46, - sym_raw_string_begin, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1004), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239587,32 +241587,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239621,19 +241621,21 @@ 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, - [8116] = 4, + [10898] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(1843), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(1861), 1, sym_comment, - ACTIONS(5180), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5180), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239642,9 +241644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, ACTIONS(5178), 46, - sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239656,32 +241656,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239690,19 +241691,21 @@ 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, - [8189] = 4, + [10974] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(1844), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(1862), 1, sym_comment, - ACTIONS(2391), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5180), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239711,9 +241714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2393), 46, - sym_raw_string_begin, + ACTIONS(5178), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239725,32 +241726,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239759,12 +241761,12 @@ 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, - [8262] = 4, + [11050] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1845), 1, + STATE(1863), 1, sym_comment, - ACTIONS(2413), 16, + ACTIONS(1002), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239781,8 +241783,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2415), 46, + ACTIONS(1004), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239796,10 +241799,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -239828,19 +241829,21 @@ 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, - [8335] = 4, + [11122] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(1846), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(1864), 1, sym_comment, - ACTIONS(2421), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(8105), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4922), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239849,9 +241852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2423), 46, - sym_raw_string_begin, + ACTIONS(4920), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239863,32 +241864,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239897,19 +241899,21 @@ 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, - [8408] = 4, + [11198] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(1847), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(1865), 1, sym_comment, - ACTIONS(2425), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(8105), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4928), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239918,9 +241922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2427), 46, - sym_raw_string_begin, + ACTIONS(4926), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239932,32 +241934,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239966,19 +241969,21 @@ 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, - [8481] = 4, + [11274] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(1848), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(1866), 1, sym_comment, - ACTIONS(2429), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5180), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239987,9 +241992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2431), 46, - sym_raw_string_begin, + ACTIONS(5178), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240001,32 +242004,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240035,12 +242039,12 @@ 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, - [8554] = 4, + [11350] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1849), 1, + STATE(1867), 1, sym_comment, - ACTIONS(2433), 16, + ACTIONS(5146), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -240057,8 +242061,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2435), 46, + ACTIONS(5144), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240072,10 +242077,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -240104,12 +242107,12 @@ 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, - [8627] = 4, + [11422] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1850), 1, + STATE(1868), 1, sym_comment, - ACTIONS(2441), 16, + ACTIONS(4986), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -240126,7 +242129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2443), 46, + ACTIONS(2807), 45, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -240144,7 +242147,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -240173,89 +242175,21 @@ 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, - [8700] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(1851), 1, - sym_comment, - ACTIONS(1032), 21, - sym_raw_string_begin, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1030), 40, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [8775] = 4, + [11494] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(1852), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(1869), 1, sym_comment, - ACTIONS(5138), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(8105), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4934), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240264,10 +242198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5135), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(4932), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240279,30 +242210,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240311,19 +242245,21 @@ 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, - [8847] = 4, + [11570] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(1853), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(1870), 1, sym_comment, - ACTIONS(4828), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(8105), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4938), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240332,10 +242268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4826), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(4936), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240347,30 +242280,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240379,12 +242315,12 @@ 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, - [8919] = 4, + [11646] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1854), 1, + STATE(1871), 1, sym_comment, - ACTIONS(5154), 16, + ACTIONS(5004), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -240401,9 +242337,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5152), 45, + ACTIONS(5002), 45, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240417,6 +242352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -240447,12 +242383,16 @@ 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, - [8991] = 4, + [11718] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(1855), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(1872), 1, sym_comment, - ACTIONS(5022), 13, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -240466,7 +242406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5020), 48, + ACTIONS(5178), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240481,7 +242421,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -240497,7 +242436,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -240515,7 +242453,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, - [9063] = 40, + [11794] = 40, ACTIONS(153), 1, anon_sym_LBRACK, ACTIONS(181), 1, @@ -240544,41 +242482,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(3287), 1, sym__newline, - ACTIONS(3319), 1, + ACTIONS(3335), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3321), 1, + ACTIONS(3337), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3323), 1, + ACTIONS(3339), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3325), 1, + ACTIONS(3341), 1, aux_sym__val_number_decimal_token4, ACTIONS(3359), 1, anon_sym_null, ACTIONS(5182), 1, anon_sym_DOT_DOT, - STATE(1811), 1, + STATE(1729), 1, sym__val_number, - STATE(1856), 1, + STATE(1873), 1, sym_comment, - STATE(1887), 1, - aux_sym_shebang_repeat1, STATE(2131), 1, + sym__expr_unary_minus, + STATE(2171), 1, sym__inter_single_quotes, - STATE(2132), 1, + STATE(2172), 1, sym__inter_double_quotes, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(3531), 1, + STATE(2814), 1, + aux_sym_shebang_repeat1, + STATE(3548), 1, sym__val_number_decimal, - STATE(3608), 1, - sym_expr_parenthesized, - STATE(3613), 1, + STATE(3631), 1, sym_val_variable, - STATE(3876), 1, + STATE(3634), 1, + sym_expr_parenthesized, + STATE(3915), 1, sym__expr_binary_expression_parenthesized, - STATE(3925), 1, + STATE(3942), 1, sym_val_range, - STATE(6740), 1, + STATE(6809), 1, sym__expression_parenthesized, ACTIONS(231), 2, anon_sym_0o, @@ -240592,10 +242530,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5184), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(1821), 2, + STATE(1771), 2, sym__raw_str, sym__str_double_quotes, - STATE(2413), 3, + STATE(2460), 3, sym_expr_unary, sym_expr_binary_parenthesized, sym__value, @@ -240606,7 +242544,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2112), 12, + STATE(2116), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -240619,84 +242557,16 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9207] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1857), 1, - sym_comment, - ACTIONS(990), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(992), 45, - sym_raw_string_begin, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [9279] = 6, + [11938] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(1858), 1, + STATE(1874), 1, sym_comment, - STATE(7507), 1, + STATE(7681), 1, sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -240710,7 +242580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 46, + ACTIONS(5178), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240757,16 +242627,16 @@ 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, - [9355] = 6, + [12014] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(1859), 1, + STATE(1875), 1, sym_comment, - STATE(7507), 1, + STATE(7681), 1, sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -240780,7 +242650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 46, + ACTIONS(5178), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240827,91 +242697,19 @@ 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, - [9431] = 6, + [12090] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(1860), 1, + STATE(1876), 1, sym_comment, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5186), 46, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(1026), 16, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [9507] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(1861), 1, - sym_comment, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240920,7 +242718,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 46, + aux_sym_unquoted_token1, + ACTIONS(1028), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240932,33 +242733,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240967,21 +242765,19 @@ 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, - [9583] = 6, + [12162] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(1862), 1, + STATE(1877), 1, sym_comment, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2472), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240990,7 +242786,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 46, + aux_sym_unquoted_token1, + ACTIONS(2474), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241002,33 +242801,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241037,21 +242833,19 @@ 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, - [9659] = 6, + [12234] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(1863), 1, + STATE(1878), 1, sym_comment, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2157), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241060,7 +242854,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 46, + aux_sym_unquoted_token1, + ACTIONS(2163), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241072,33 +242869,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241106,22 +242900,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_err_PLUSout_GT_GT, anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [9735] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(1864), 1, - sym_comment, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + anon_sym_e_PLUSo_GT_GT, + [12306] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1879), 1, + sym_comment, + ACTIONS(2118), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241130,7 +242922,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 46, + aux_sym_unquoted_token1, + ACTIONS(2120), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241142,33 +242937,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241177,21 +242969,19 @@ 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, - [9811] = 6, + [12378] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(1865), 1, + STATE(1880), 1, sym_comment, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5163), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241200,7 +242990,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 46, + aux_sym_unquoted_token1, + ACTIONS(5160), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241212,33 +243005,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241247,16 +243037,16 @@ 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, - [9887] = 6, + [12450] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(1866), 1, + STATE(1881), 1, sym_comment, - STATE(7507), 1, + STATE(7681), 1, sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -241270,7 +243060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 46, + ACTIONS(5178), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241317,16 +243107,12 @@ 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, - [9963] = 6, + [12526] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(1867), 1, + STATE(1882), 1, sym_comment, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + ACTIONS(1006), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -241340,7 +243126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 46, + ACTIONS(1008), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241355,6 +243141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -241379,6 +243166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241387,21 +243175,19 @@ 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, - [10039] = 6, + [12598] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(1868), 1, + STATE(1883), 1, sym_comment, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2183), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241410,7 +243196,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 46, + aux_sym_unquoted_token1, + ACTIONS(2185), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241422,33 +243211,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241457,16 +243243,16 @@ 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, - [10115] = 6, + [12670] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(1869), 1, + STATE(1884), 1, sym_comment, - STATE(7507), 1, + STATE(7681), 1, sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -241480,7 +243266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 46, + ACTIONS(5178), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241527,21 +243313,19 @@ 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, - [10191] = 6, + [12746] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(1870), 1, + STATE(1885), 1, sym_comment, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1863), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241550,7 +243334,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 46, + aux_sym_unquoted_token1, + ACTIONS(1865), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241562,33 +243349,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241597,21 +243381,19 @@ 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, - [10267] = 5, + [12818] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5190), 1, - anon_sym_QMARK2, - STATE(1871), 1, + STATE(1886), 1, sym_comment, - ACTIONS(978), 15, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(2398), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241620,7 +243402,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(980), 45, + aux_sym_unquoted_token1, + ACTIONS(2400), 45, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -241633,31 +243417,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241666,21 +243449,19 @@ 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, - [10341] = 5, + [12890] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5192), 1, - anon_sym_QMARK2, - STATE(1872), 1, + STATE(1887), 1, sym_comment, - ACTIONS(984), 15, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(2402), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241689,7 +243470,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(986), 45, + aux_sym_unquoted_token1, + ACTIONS(2404), 45, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -241702,31 +243485,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241735,12 +243517,12 @@ 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, - [10415] = 4, + [12962] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1873), 1, + STATE(1888), 1, sym_comment, - ACTIONS(994), 16, + ACTIONS(2383), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241757,7 +243539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(996), 45, + ACTIONS(2385), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -241803,12 +243585,12 @@ 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, - [10487] = 4, + [13034] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1874), 1, + STATE(1889), 1, sym_comment, - ACTIONS(5088), 16, + ACTIONS(2122), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241825,7 +243607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5086), 45, + ACTIONS(2128), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -241871,19 +243653,19 @@ 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, - [10559] = 5, + [13106] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5194), 1, - anon_sym_LBRACK2, - STATE(1875), 1, + STATE(1890), 1, sym_comment, - ACTIONS(2337), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5011), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241892,7 +243674,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2341), 47, + aux_sym_unquoted_token1, + ACTIONS(5009), 45, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241904,34 +243688,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241940,12 +243721,12 @@ 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, - [10633] = 4, + [13178] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1876), 1, + STATE(1891), 1, sym_comment, - ACTIONS(5164), 16, + ACTIONS(2130), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241962,7 +243743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5162), 45, + ACTIONS(2136), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -242008,19 +243789,21 @@ 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, - [10705] = 4, + [13250] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(1877), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(1892), 1, sym_comment, - ACTIONS(994), 15, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242029,8 +243812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(996), 46, - ts_builtin_sym_end, + ACTIONS(5178), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242042,9 +243824,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_QMARK2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -242066,8 +243851,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242076,19 +243859,19 @@ 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, - [10777] = 4, + [13326] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1878), 1, + STATE(1893), 1, sym_comment, - ACTIONS(998), 15, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(2146), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242097,7 +243880,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1000), 46, + aux_sym_unquoted_token1, + ACTIONS(2152), 45, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -242110,32 +243895,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242144,19 +243927,19 @@ 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, - [10849] = 4, + [13398] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1879), 1, + STATE(1894), 1, sym_comment, - ACTIONS(1002), 15, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(5099), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242165,7 +243948,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1004), 46, + aux_sym_unquoted_token1, + ACTIONS(5097), 45, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -242178,32 +243963,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242212,19 +243995,19 @@ 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, - [10921] = 4, + [13470] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1880), 1, + STATE(1895), 1, sym_comment, - ACTIONS(990), 15, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(5121), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242233,7 +244016,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(992), 46, + aux_sym_unquoted_token1, + ACTIONS(5119), 45, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -242246,32 +244031,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242280,12 +244063,12 @@ 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, - [10993] = 4, + [13542] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1881), 1, + STATE(1896), 1, sym_comment, - ACTIONS(5168), 16, + ACTIONS(5172), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242302,7 +244085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5166), 45, + ACTIONS(5170), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -242348,12 +244131,12 @@ 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, - [11065] = 4, + [13614] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1882), 1, + STATE(1897), 1, sym_comment, - ACTIONS(5172), 16, + ACTIONS(5176), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242370,7 +244153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5170), 45, + ACTIONS(5174), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -242416,116 +244199,80 @@ 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, - [11137] = 40, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(203), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, + [13686] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(379), 1, - anon_sym_LPAREN, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(435), 1, - sym_raw_string_begin, - ACTIONS(1048), 1, + STATE(1898), 1, + sym_comment, + ACTIONS(1044), 16, anon_sym_DOLLAR, - ACTIONS(3287), 1, - sym__newline, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3321), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3323), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3325), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3359), 1, - anon_sym_null, - ACTIONS(5182), 1, + anon_sym_DASH2, anon_sym_DOT_DOT, - STATE(1811), 1, - sym__val_number, - STATE(1883), 1, - sym_comment, - STATE(2131), 1, - sym__inter_single_quotes, - STATE(2132), 1, - sym__inter_double_quotes, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(2785), 1, - aux_sym_shebang_repeat1, - STATE(3531), 1, - sym__val_number_decimal, - STATE(3608), 1, - sym_expr_parenthesized, - STATE(3613), 1, - sym_val_variable, - STATE(3876), 1, - sym__expr_binary_expression_parenthesized, - STATE(3925), 1, - sym_val_range, - STATE(6735), 1, - sym__expression_parenthesized, - ACTIONS(231), 2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3361), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5184), 2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1046), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(1821), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2413), 3, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym__value, - ACTIONS(427), 6, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2112), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [11281] = 4, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [13758] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1884), 1, + STATE(1899), 1, sym_comment, - ACTIONS(5176), 16, + ACTIONS(4884), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242542,7 +244289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5174), 45, + ACTIONS(4882), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -242588,12 +244335,150 @@ 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, - [11353] = 4, + [13830] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1885), 1, + ACTIONS(5186), 1, + anon_sym_QMARK2, + STATE(1900), 1, + sym_comment, + ACTIONS(978), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(980), 45, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [13904] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5188), 1, + anon_sym_LBRACK2, + STATE(1901), 1, + sym_comment, + ACTIONS(2322), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2326), 47, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [13978] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1902), 1, sym_comment, - ACTIONS(5180), 16, + ACTIONS(2410), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242610,7 +244495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5178), 45, + ACTIONS(2412), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -242656,20 +244541,19 @@ 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, - [11425] = 4, + [14050] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1886), 1, + STATE(1903), 1, sym_comment, - ACTIONS(1006), 16, - sym__newline, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(2414), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242678,7 +244562,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1008), 45, + aux_sym_unquoted_token1, + ACTIONS(2416), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -242689,33 +244577,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_record_entry_token1, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242724,116 +244609,80 @@ 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, - [11497] = 40, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(203), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, + [14122] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(379), 1, - anon_sym_LPAREN, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(435), 1, - sym_raw_string_begin, - ACTIONS(1048), 1, + STATE(1904), 1, + sym_comment, + ACTIONS(2418), 16, anon_sym_DOLLAR, - ACTIONS(3287), 1, - sym__newline, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3321), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3323), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3325), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3359), 1, - anon_sym_null, - ACTIONS(5182), 1, + anon_sym_DASH2, anon_sym_DOT_DOT, - STATE(1811), 1, - sym__val_number, - STATE(1887), 1, - sym_comment, - STATE(2131), 1, - sym__inter_single_quotes, - STATE(2132), 1, - sym__inter_double_quotes, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(2785), 1, - aux_sym_shebang_repeat1, - STATE(3531), 1, - sym__val_number_decimal, - STATE(3608), 1, - sym_expr_parenthesized, - STATE(3613), 1, - sym_val_variable, - STATE(3876), 1, - sym__expr_binary_expression_parenthesized, - STATE(3925), 1, - sym_val_range, - STATE(6337), 1, - sym__expression_parenthesized, - ACTIONS(231), 2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3361), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5184), 2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2420), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(1821), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2413), 3, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym__value, - ACTIONS(427), 6, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2112), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [11641] = 4, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [14194] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1888), 1, + STATE(1905), 1, sym_comment, - ACTIONS(5122), 16, + ACTIONS(2422), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242850,7 +244699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5120), 45, + ACTIONS(2424), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -242896,12 +244745,12 @@ 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, - [11713] = 4, + [14266] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1889), 1, + STATE(1906), 1, sym_comment, - ACTIONS(5126), 16, + ACTIONS(2426), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242918,7 +244767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5124), 45, + ACTIONS(2428), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -242964,12 +244813,12 @@ 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, - [11785] = 4, + [14338] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1890), 1, + STATE(1907), 1, sym_comment, - ACTIONS(1030), 16, + ACTIONS(2436), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242986,7 +244835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1032), 45, + ACTIONS(2438), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -243032,12 +244881,12 @@ 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, - [11857] = 4, + [14410] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1891), 1, + STATE(1908), 1, sym_comment, - ACTIONS(2504), 16, + ACTIONS(2390), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243054,7 +244903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2506), 45, + ACTIONS(2392), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -243100,12 +244949,12 @@ 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, - [11929] = 4, + [14482] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1892), 1, + STATE(1909), 1, sym_comment, - ACTIONS(2159), 16, + ACTIONS(5134), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243122,7 +244971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2165), 45, + ACTIONS(5132), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -243168,12 +245017,12 @@ 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, - [12001] = 4, + [14554] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1893), 1, + STATE(1910), 1, sym_comment, - ACTIONS(998), 16, + ACTIONS(5138), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243190,7 +245039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1000), 45, + ACTIONS(5136), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -243236,12 +245085,12 @@ 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, - [12073] = 4, + [14626] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1894), 1, + STATE(1911), 1, sym_comment, - ACTIONS(1006), 13, + ACTIONS(1010), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -243255,7 +245104,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1008), 48, + ACTIONS(1012), 48, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [14698] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1912), 1, + sym_comment, + ACTIONS(1014), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1016), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243304,80 +245221,12 @@ 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, - [12145] = 4, + [14770] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1895), 1, - sym_comment, - ACTIONS(2090), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2092), 45, - sym_raw_string_begin, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [12217] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1896), 1, + STATE(1913), 1, sym_comment, - ACTIONS(2383), 16, + ACTIONS(4964), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243394,7 +245243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2385), 45, + ACTIONS(4962), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -243440,12 +245289,12 @@ 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, - [12289] = 4, + [14842] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1897), 1, + STATE(1914), 1, sym_comment, - ACTIONS(2480), 16, + ACTIONS(2406), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243462,7 +245311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2482), 45, + ACTIONS(2408), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -243508,12 +245357,12 @@ 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, - [12361] = 4, + [14914] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1898), 1, + STATE(1915), 1, sym_comment, - ACTIONS(2375), 16, + ACTIONS(2430), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243530,7 +245379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2377), 45, + ACTIONS(2432), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -243576,12 +245425,12 @@ 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, - [12433] = 4, + [14986] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1899), 1, + STATE(1916), 1, sym_comment, - ACTIONS(2167), 16, + ACTIONS(2494), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243598,7 +245447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2173), 45, + ACTIONS(2496), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -243644,12 +245493,12 @@ 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, - [12505] = 4, + [15058] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1900), 1, + STATE(1917), 1, sym_comment, - ACTIONS(2175), 16, + ACTIONS(2498), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243666,7 +245515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2181), 45, + ACTIONS(2500), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -243712,12 +245561,12 @@ 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, - [12577] = 4, + [15130] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1901), 1, + STATE(1918), 1, sym_comment, - ACTIONS(2133), 16, + ACTIONS(2514), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243734,7 +245583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2139), 45, + ACTIONS(2516), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -243780,12 +245629,12 @@ 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, - [12649] = 4, + [15202] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1902), 1, + STATE(1919), 1, sym_comment, - ACTIONS(5145), 16, + ACTIONS(998), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243802,7 +245651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5143), 45, + ACTIONS(1000), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -243848,12 +245697,12 @@ 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, - [12721] = 4, + [15274] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1903), 1, + STATE(1920), 1, sym_comment, - ACTIONS(5130), 16, + ACTIONS(2355), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243870,7 +245719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5128), 45, + ACTIONS(2357), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -243916,12 +245765,12 @@ 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, - [12793] = 4, + [15346] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1904), 1, + STATE(1921), 1, sym_comment, - ACTIONS(2395), 16, + ACTIONS(2359), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243938,7 +245787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2397), 45, + ACTIONS(2361), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -243984,12 +245833,12 @@ 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, - [12865] = 4, + [15418] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1905), 1, + STATE(1922), 1, sym_comment, - ACTIONS(2399), 16, + ACTIONS(2363), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244006,7 +245855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2401), 45, + ACTIONS(2365), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -244052,12 +245901,12 @@ 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, - [12937] = 4, + [15490] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1906), 1, + STATE(1923), 1, sym_comment, - ACTIONS(2403), 16, + ACTIONS(1887), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244074,7 +245923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2405), 45, + ACTIONS(1889), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -244120,12 +245969,12 @@ 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, - [13009] = 4, + [15562] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1907), 1, + STATE(1924), 1, sym_comment, - ACTIONS(2472), 16, + ACTIONS(2343), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244142,7 +245991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2474), 45, + ACTIONS(2345), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -244188,12 +246037,12 @@ 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, - [13081] = 4, + [15634] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1908), 1, + STATE(1925), 1, sym_comment, - ACTIONS(2476), 16, + ACTIONS(2440), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244210,7 +246059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2478), 45, + ACTIONS(2442), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -244256,19 +246105,17 @@ 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, - [13153] = 4, + [15706] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1909), 1, + STATE(1926), 1, sym_comment, - ACTIONS(2371), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1290), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244277,10 +246124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2373), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(1288), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244292,98 +246136,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [13225] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1910), 1, - sym_comment, - ACTIONS(2488), 16, - anon_sym_DOLLAR, + anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2490), 45, - sym_raw_string_begin, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_else, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_catch, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244392,12 +246173,12 @@ 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, - [13297] = 4, + [15778] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1911), 1, + STATE(1927), 1, sym_comment, - ACTIONS(5098), 16, + ACTIONS(1915), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244414,7 +246195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5096), 45, + ACTIONS(1917), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -244460,12 +246241,12 @@ 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, - [13369] = 4, + [15850] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1912), 1, + STATE(1928), 1, sym_comment, - ACTIONS(5102), 16, + ACTIONS(1927), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244482,7 +246263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5100), 45, + ACTIONS(1929), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -244518,76 +246299,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [13441] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1913), 1, - sym_comment, - ACTIONS(1010), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1012), 48, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244596,17 +246309,19 @@ 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, - [13513] = 4, + [15922] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1914), 1, + STATE(1929), 1, sym_comment, - ACTIONS(1014), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1942), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244615,7 +246330,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1016), 48, + aux_sym_unquoted_token1, + ACTIONS(1944), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244627,35 +246345,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244664,12 +246377,12 @@ 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, - [13585] = 4, + [15994] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1915), 1, + STATE(1930), 1, sym_comment, - ACTIONS(2496), 16, + ACTIONS(2490), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244686,7 +246399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2498), 45, + ACTIONS(2492), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -244732,20 +246445,19 @@ 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, - [13657] = 4, + [16066] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1916), 1, + STATE(1931), 1, sym_comment, - ACTIONS(1010), 16, - sym__newline, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(2034), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244754,7 +246466,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1012), 45, + aux_sym_unquoted_token1, + ACTIONS(2036), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244765,33 +246481,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_record_entry_token1, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244800,12 +246513,12 @@ 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, - [13729] = 4, + [16138] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1917), 1, + STATE(1932), 1, sym_comment, - ACTIONS(2407), 16, + ACTIONS(2367), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244822,7 +246535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2409), 45, + ACTIONS(2369), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -244868,12 +246581,12 @@ 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, - [13801] = 4, + [16210] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1918), 1, + STATE(1933), 1, sym_comment, - ACTIONS(2391), 16, + ACTIONS(2379), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244890,7 +246603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2393), 45, + ACTIONS(2381), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -244936,12 +246649,12 @@ 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, - [13873] = 4, + [16282] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1919), 1, + STATE(1934), 1, sym_comment, - ACTIONS(2413), 16, + ACTIONS(2038), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244958,7 +246671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2415), 45, + ACTIONS(2040), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245004,12 +246717,12 @@ 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, - [13945] = 4, + [16354] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1920), 1, + STATE(1935), 1, sym_comment, - ACTIONS(2421), 16, + ACTIONS(2464), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245026,7 +246739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2423), 45, + ACTIONS(2466), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245072,12 +246785,12 @@ 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, - [14017] = 4, + [16426] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1921), 1, + STATE(1936), 1, sym_comment, - ACTIONS(2425), 16, + ACTIONS(2464), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245094,7 +246807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2427), 45, + ACTIONS(2466), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245140,12 +246853,12 @@ 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, - [14089] = 4, + [16498] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1922), 1, + STATE(1937), 1, sym_comment, - ACTIONS(2429), 16, + ACTIONS(1899), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245162,7 +246875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2431), 45, + ACTIONS(1901), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245208,12 +246921,12 @@ 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, - [14161] = 4, + [16570] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1923), 1, + STATE(1938), 1, sym_comment, - ACTIONS(2433), 16, + ACTIONS(2448), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245230,7 +246943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2435), 45, + ACTIONS(2450), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245276,12 +246989,12 @@ 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, - [14233] = 4, + [16642] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1924), 1, + STATE(1939), 1, sym_comment, - ACTIONS(2441), 16, + ACTIONS(2452), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245298,7 +247011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2443), 45, + ACTIONS(2454), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245344,12 +247057,12 @@ 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, - [14305] = 4, + [16714] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1925), 1, + STATE(1940), 1, sym_comment, - ACTIONS(1948), 16, + ACTIONS(1907), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245366,7 +247079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1950), 45, + ACTIONS(1909), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245412,12 +247125,12 @@ 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, - [14377] = 4, + [16786] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1926), 1, + STATE(1941), 1, sym_comment, - ACTIONS(2387), 16, + ACTIONS(2468), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245434,7 +247147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2389), 45, + ACTIONS(2470), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245480,12 +247193,12 @@ 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, - [14449] = 4, + [16858] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1927), 1, + STATE(1942), 1, sym_comment, - ACTIONS(2367), 16, + ACTIONS(2482), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245502,7 +247215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2369), 45, + ACTIONS(2484), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245548,12 +247261,12 @@ 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, - [14521] = 4, + [16930] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1928), 1, + STATE(1943), 1, sym_comment, - ACTIONS(1972), 16, + ACTIONS(2486), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245570,7 +247283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1974), 45, + ACTIONS(2488), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245616,12 +247329,12 @@ 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, - [14593] = 4, + [17002] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1929), 1, + STATE(1944), 1, sym_comment, - ACTIONS(1988), 16, + ACTIONS(2510), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245638,7 +247351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1990), 45, + ACTIONS(2512), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245684,12 +247397,81 @@ 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, - [14665] = 4, + [17074] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1930), 1, + ACTIONS(5190), 1, + anon_sym_QMARK2, + STATE(1945), 1, + sym_comment, + ACTIONS(984), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(986), 45, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [17148] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1946), 1, sym_comment, - ACTIONS(1992), 16, + ACTIONS(1707), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245706,7 +247488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1994), 45, + ACTIONS(1719), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245752,12 +247534,150 @@ 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, - [14737] = 4, + [17220] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1931), 1, + STATE(1947), 1, + sym_comment, + ACTIONS(1006), 16, + sym__newline, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1008), 45, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_record_entry_token1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [17292] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(1948), 1, + sym_comment, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5180), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5178), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [17368] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1949), 1, sym_comment, - ACTIONS(2437), 16, + ACTIONS(2444), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245774,7 +247694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2439), 45, + ACTIONS(2446), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245820,12 +247740,12 @@ 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, - [14809] = 4, + [17440] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1932), 1, + STATE(1950), 1, sym_comment, - ACTIONS(2004), 16, + ACTIONS(2478), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245842,7 +247762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2006), 45, + ACTIONS(2480), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245888,12 +247808,12 @@ 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, - [14881] = 4, + [17512] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1933), 1, + STATE(1951), 1, sym_comment, - ACTIONS(2456), 16, + ACTIONS(2347), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245910,7 +247830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2458), 45, + ACTIONS(2349), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245956,12 +247876,218 @@ 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, - [14953] = 4, + [17584] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(1934), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(1952), 1, + sym_comment, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5180), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5178), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [17660] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1953), 1, + sym_comment, + ACTIONS(1010), 16, + sym__newline, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1012), 45, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_record_entry_token1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [17732] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1954), 1, + sym_comment, + ACTIONS(1014), 16, + sym__newline, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1016), 45, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_record_entry_token1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [17804] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1955), 1, sym_comment, - ACTIONS(2460), 16, + ACTIONS(5081), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245978,7 +248104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2462), 45, + ACTIONS(5079), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -246024,12 +248150,12 @@ 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, - [15025] = 4, + [17876] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1935), 1, + STATE(1956), 1, sym_comment, - ACTIONS(2068), 16, + ACTIONS(5085), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246046,7 +248172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2070), 45, + ACTIONS(5083), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -246092,12 +248218,80 @@ 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, - [15097] = 4, + [17948] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1936), 1, + STATE(1957), 1, sym_comment, - ACTIONS(1907), 16, + ACTIONS(5054), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5052), 48, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [18020] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1958), 1, + sym_comment, + ACTIONS(1765), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246114,7 +248308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1911), 45, + ACTIONS(1767), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -246160,12 +248354,12 @@ 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, - [15169] = 4, + [18092] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1937), 1, + STATE(1959), 1, sym_comment, - ACTIONS(2343), 16, + ACTIONS(1847), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246182,7 +248376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2345), 45, + ACTIONS(1851), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -246228,12 +248422,12 @@ 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, - [15241] = 4, + [18164] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1938), 1, + STATE(1960), 1, sym_comment, - ACTIONS(2351), 16, + ACTIONS(5150), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246250,7 +248444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2353), 45, + ACTIONS(5148), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -246296,12 +248490,290 @@ 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, - [15313] = 4, + [18236] = 40, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + aux_sym_expr_unary_token1, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - STATE(1939), 1, + ACTIONS(379), 1, + anon_sym_LPAREN, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, + sym_raw_string_begin, + ACTIONS(1048), 1, + anon_sym_DOLLAR, + ACTIONS(3287), 1, + sym__newline, + ACTIONS(3335), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3337), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3339), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3341), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3359), 1, + anon_sym_null, + ACTIONS(5182), 1, + anon_sym_DOT_DOT, + STATE(1729), 1, + sym__val_number, + STATE(1961), 1, + sym_comment, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(2171), 1, + sym__inter_single_quotes, + STATE(2172), 1, + sym__inter_double_quotes, + STATE(2814), 1, + aux_sym_shebang_repeat1, + STATE(3548), 1, + sym__val_number_decimal, + STATE(3631), 1, + sym_val_variable, + STATE(3634), 1, + sym_expr_parenthesized, + STATE(3915), 1, + sym__expr_binary_expression_parenthesized, + STATE(3942), 1, + sym_val_range, + STATE(6266), 1, + sym__expression_parenthesized, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3361), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1771), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2460), 3, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym__value, + ACTIONS(427), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2116), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [18380] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(1962), 1, + sym_comment, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5180), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5178), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [18456] = 40, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + aux_sym_expr_unary_token1, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(379), 1, + anon_sym_LPAREN, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, + sym_raw_string_begin, + ACTIONS(1048), 1, + anon_sym_DOLLAR, + ACTIONS(3287), 1, + sym__newline, + ACTIONS(3335), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3337), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3339), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3341), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3359), 1, + anon_sym_null, + ACTIONS(5182), 1, + anon_sym_DOT_DOT, + STATE(1729), 1, + sym__val_number, + STATE(1961), 1, + aux_sym_shebang_repeat1, + STATE(1963), 1, + sym_comment, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(2171), 1, + sym__inter_single_quotes, + STATE(2172), 1, + sym__inter_double_quotes, + STATE(3548), 1, + sym__val_number_decimal, + STATE(3631), 1, + sym_val_variable, + STATE(3634), 1, + sym_expr_parenthesized, + STATE(3915), 1, + sym__expr_binary_expression_parenthesized, + STATE(3942), 1, + sym_val_range, + STATE(6246), 1, + sym__expression_parenthesized, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3361), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1771), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2460), 3, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym__value, + ACTIONS(427), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2116), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [18600] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1964), 1, sym_comment, - ACTIONS(1913), 16, + ACTIONS(1739), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246318,7 +248790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1915), 45, + ACTIONS(1741), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -246364,12 +248836,12 @@ 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, - [15385] = 4, + [18672] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1940), 1, + STATE(1965), 1, sym_comment, - ACTIONS(2355), 16, + ACTIONS(990), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246386,7 +248858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2357), 45, + ACTIONS(992), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -246432,12 +248904,12 @@ 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, - [15457] = 4, + [18744] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1941), 1, + STATE(1966), 1, sym_comment, - ACTIONS(2359), 16, + ACTIONS(5130), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246454,7 +248926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2361), 45, + ACTIONS(5128), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -246500,12 +248972,80 @@ 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, - [15529] = 4, + [18816] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1967), 1, + sym_comment, + ACTIONS(5064), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5062), 48, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [18888] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1942), 1, + STATE(1968), 1, sym_comment, - ACTIONS(1709), 16, + ACTIONS(5054), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246522,7 +249062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1721), 45, + ACTIONS(5052), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -246568,20 +249108,21 @@ 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, - [15601] = 4, + [18960] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(1943), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(1969), 1, sym_comment, - ACTIONS(1014), 16, - sym__newline, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246590,7 +249131,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1016), 45, + ACTIONS(5178), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246601,9 +249143,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -246625,9 +249170,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246636,12 +249178,12 @@ 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, - [15673] = 4, + [19036] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1944), 1, + STATE(1970), 1, sym_comment, - ACTIONS(2363), 16, + ACTIONS(1785), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246658,7 +249200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2365), 45, + ACTIONS(1787), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -246704,12 +249246,12 @@ 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, - [15745] = 4, + [19108] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1945), 1, + STATE(1971), 1, sym_comment, - ACTIONS(1755), 16, + ACTIONS(994), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246726,7 +249268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1757), 45, + ACTIONS(996), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -246772,12 +249314,12 @@ 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, - [15817] = 4, + [19180] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1946), 1, + STATE(1972), 1, sym_comment, - ACTIONS(2094), 16, + ACTIONS(2456), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246794,7 +249336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2096), 45, + ACTIONS(2458), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -246840,12 +249382,12 @@ 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, - [15889] = 4, + [19252] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1947), 1, + STATE(1973), 1, sym_comment, - ACTIONS(2500), 16, + ACTIONS(1841), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246862,7 +249404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2502), 45, + ACTIONS(1843), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -246908,148 +249450,324 @@ 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, - [15961] = 4, + [19324] = 40, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + aux_sym_expr_unary_token1, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - STATE(1948), 1, - sym_comment, - ACTIONS(1739), 16, - anon_sym_DOLLAR, + ACTIONS(379), 1, + anon_sym_LPAREN, + ACTIONS(385), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1741), 45, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(1048), 1, + anon_sym_DOLLAR, + ACTIONS(3287), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(3335), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3337), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3339), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3341), 1, aux_sym__val_number_decimal_token4, + ACTIONS(3359), 1, + anon_sym_null, + ACTIONS(5182), 1, + anon_sym_DOT_DOT, + STATE(1729), 1, + sym__val_number, + STATE(1974), 1, + sym_comment, + STATE(1975), 1, + aux_sym_shebang_repeat1, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(2171), 1, + sym__inter_single_quotes, + STATE(2172), 1, + sym__inter_double_quotes, + STATE(3548), 1, + sym__val_number_decimal, + STATE(3631), 1, + sym_val_variable, + STATE(3634), 1, + sym_expr_parenthesized, + STATE(3915), 1, + sym__expr_binary_expression_parenthesized, + STATE(3942), 1, + sym_val_range, + STATE(6798), 1, + sym__expression_parenthesized, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3361), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1771), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2460), 3, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym__value, + ACTIONS(427), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + STATE(2116), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [19468] = 40, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + aux_sym_expr_unary_token1, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(239), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [16033] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1949), 1, - sym_comment, - ACTIONS(4928), 16, - anon_sym_DOLLAR, + ACTIONS(379), 1, + anon_sym_LPAREN, + ACTIONS(385), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4926), 45, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, sym_raw_string_begin, + ACTIONS(1048), 1, + anon_sym_DOLLAR, + ACTIONS(3287), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(3335), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3337), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3339), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3341), 1, aux_sym__val_number_decimal_token4, + ACTIONS(3359), 1, + anon_sym_null, + ACTIONS(5182), 1, + anon_sym_DOT_DOT, + STATE(1729), 1, + sym__val_number, + STATE(1975), 1, + sym_comment, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(2171), 1, + sym__inter_single_quotes, + STATE(2172), 1, + sym__inter_double_quotes, + STATE(2814), 1, + aux_sym_shebang_repeat1, + STATE(3548), 1, + sym__val_number_decimal, + STATE(3631), 1, + sym_val_variable, + STATE(3634), 1, + sym_expr_parenthesized, + STATE(3915), 1, + sym__expr_binary_expression_parenthesized, + STATE(3942), 1, + sym_val_range, + STATE(6801), 1, + sym__expression_parenthesized, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3361), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1771), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2460), 3, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym__value, + ACTIONS(427), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + STATE(2116), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [19612] = 40, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + aux_sym_expr_unary_token1, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, sym_val_date, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(379), 1, + anon_sym_LPAREN, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(431), 1, anon_sym_DQUOTE, + ACTIONS(435), 1, + sym_raw_string_begin, + ACTIONS(1048), 1, + anon_sym_DOLLAR, + ACTIONS(3287), 1, + sym__newline, + ACTIONS(3335), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3337), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3339), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3341), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3359), 1, + anon_sym_null, + ACTIONS(5182), 1, + anon_sym_DOT_DOT, + STATE(1729), 1, + sym__val_number, + STATE(1873), 1, + aux_sym_shebang_repeat1, + STATE(1976), 1, + sym_comment, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(2171), 1, + sym__inter_single_quotes, + STATE(2172), 1, + sym__inter_double_quotes, + STATE(3548), 1, + sym__val_number_decimal, + STATE(3631), 1, + sym_val_variable, + STATE(3634), 1, + sym_expr_parenthesized, + STATE(3915), 1, + sym__expr_binary_expression_parenthesized, + STATE(3942), 1, + sym_val_range, + STATE(6807), 1, + sym__expression_parenthesized, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(433), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [16105] = 4, + ACTIONS(3361), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1771), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2460), 3, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym__value, + ACTIONS(427), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2116), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [19756] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1950), 1, + STATE(1977), 1, sym_comment, - ACTIONS(5078), 16, + ACTIONS(2351), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247066,8 +249784,9 @@ 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(2353), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247081,7 +249800,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -247112,16 +249830,18 @@ 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, - [16177] = 6, + [19828] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(1951), 1, + STATE(1978), 1, sym_comment, - STATE(7999), 1, + STATE(2265), 1, + aux_sym_shebang_repeat1, + STATE(7681), 1, sym__expr_parenthesized_immediate, - ACTIONS(4973), 13, + ACTIONS(5194), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -247135,7 +249855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4971), 46, + ACTIONS(5192), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247151,8 +249871,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -247182,16 +249900,20 @@ 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, - [16253] = 6, + [19905] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(1952), 1, + ACTIONS(5196), 1, + anon_sym_DOT, + STATE(1979), 1, sym_comment, - STATE(7999), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4977), 13, + STATE(2060), 1, + aux_sym_cell_path_repeat1, + STATE(2096), 1, + sym_cell_path, + STATE(2251), 1, + sym_path, + ACTIONS(1733), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -247205,7 +249927,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4975), 46, + ACTIONS(1737), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247217,12 +249940,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -247252,89 +249971,19 @@ 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, - [16329] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1953), 1, - sym_comment, - ACTIONS(4908), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2767), 45, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [16401] = 6, + [19984] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(1954), 1, + STATE(1980), 1, sym_comment, - STATE(7999), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4981), 13, + ACTIONS(1014), 15, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247343,7 +249992,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4979), 46, + ACTIONS(1016), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247355,12 +250005,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -247382,6 +250028,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247390,16 +250038,20 @@ 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, - [16477] = 6, + [20055] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(1955), 1, + ACTIONS(5196), 1, + anon_sym_DOT, + STATE(1981), 1, sym_comment, - STATE(7999), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4985), 13, + STATE(2060), 1, + aux_sym_cell_path_repeat1, + STATE(2251), 1, + sym_path, + STATE(2548), 1, + sym_cell_path, + ACTIONS(1887), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -247413,7 +250065,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4983), 46, + ACTIONS(1889), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247425,12 +250078,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -247460,19 +250109,25 @@ 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, - [16553] = 4, + [20134] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1956), 1, + ACTIONS(5196), 1, + anon_sym_DOT, + STATE(1982), 1, sym_comment, - ACTIONS(2129), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2060), 1, + aux_sym_cell_path_repeat1, + STATE(2251), 1, + sym_path, + STATE(2549), 1, + sym_cell_path, + ACTIONS(1891), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247481,9 +250136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2131), 45, - sym_raw_string_begin, + ACTIONS(1893), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -247496,98 +250149,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [16625] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1957), 1, - sym_comment, - ACTIONS(2183), 16, - anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2185), 45, - sym_raw_string_begin, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247596,19 +250180,17 @@ 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, - [16697] = 4, + [20213] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1958), 1, + STATE(1983), 1, sym_comment, - ACTIONS(5031), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1915), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247617,9 +250199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5029), 45, - sym_raw_string_begin, + ACTIONS(1917), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247631,99 +250211,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [16769] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1959), 1, - sym_comment, - ACTIONS(1783), 16, - anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1785), 45, - sym_raw_string_begin, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247732,19 +250247,25 @@ 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, - [16841] = 4, + [20284] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1960), 1, + ACTIONS(5196), 1, + anon_sym_DOT, + STATE(1984), 1, sym_comment, - ACTIONS(1018), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2060), 1, + aux_sym_cell_path_repeat1, + STATE(2251), 1, + sym_path, + STATE(2552), 1, + sym_cell_path, + ACTIONS(1895), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247753,9 +250274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1020), 45, - sym_raw_string_begin, + ACTIONS(1897), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -247768,30 +250287,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247800,19 +250318,25 @@ 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, - [16913] = 4, + [20363] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1961), 1, + ACTIONS(5196), 1, + anon_sym_DOT, + STATE(1985), 1, sym_comment, - ACTIONS(1890), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2060), 1, + aux_sym_cell_path_repeat1, + STATE(2251), 1, + sym_path, + STATE(2511), 1, + sym_cell_path, + ACTIONS(1911), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247821,9 +250345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1892), 45, - sym_raw_string_begin, + ACTIONS(1913), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -247836,30 +250358,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247868,12 +250389,12 @@ 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, - [16985] = 4, + [20442] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1962), 1, + STATE(1986), 1, sym_comment, - ACTIONS(1290), 13, + ACTIONS(2402), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -247887,7 +250408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1288), 48, + ACTIONS(2404), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247899,14 +250420,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_else, + anon_sym_if, anon_sym_LBRACE, - anon_sym_catch, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -247936,19 +250456,23 @@ 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, - [17057] = 4, + [20513] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(1963), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(1987), 1, sym_comment, - ACTIONS(1002), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2248), 1, + aux_sym_shebang_repeat1, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5200), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247957,10 +250481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1004), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5198), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247972,30 +250493,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248004,12 +250526,20 @@ 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, - [17129] = 4, + [20590] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1964), 1, + ACTIONS(5196), 1, + anon_sym_DOT, + STATE(1988), 1, sym_comment, - ACTIONS(5088), 13, + STATE(2060), 1, + aux_sym_cell_path_repeat1, + STATE(2251), 1, + sym_path, + STATE(2534), 1, + sym_cell_path, + ACTIONS(1879), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -248023,7 +250553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5086), 48, + ACTIONS(1881), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248034,14 +250565,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_err_PLUSout_GT_PIPE, anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -248054,7 +250580,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -248072,19 +250597,25 @@ 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, - [17201] = 4, + [20669] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1965), 1, + ACTIONS(5196), 1, + anon_sym_DOT, + STATE(1989), 1, sym_comment, - ACTIONS(5022), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2060), 1, + aux_sym_cell_path_repeat1, + STATE(2251), 1, + sym_path, + STATE(2535), 1, + sym_cell_path, + ACTIONS(1883), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248093,9 +250624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5020), 45, - sym_raw_string_begin, + ACTIONS(1885), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -248108,30 +250637,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248140,19 +250668,23 @@ 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, - [17273] = 4, + [20748] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(1966), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(1990), 1, sym_comment, - ACTIONS(2347), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2193), 1, + aux_sym_shebang_repeat1, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5204), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248161,10 +250693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2349), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5202), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248176,30 +250705,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248208,19 +250738,17 @@ 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, - [17345] = 4, + [20825] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1967), 1, + STATE(1991), 1, sym_comment, - ACTIONS(2347), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(2440), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248229,10 +250757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2349), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(2442), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248244,30 +250769,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248276,19 +250805,17 @@ 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, - [17417] = 4, + [20896] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1968), 1, + STATE(1992), 1, sym_comment, - ACTIONS(2492), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(2490), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248297,10 +250824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2494), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(2492), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248312,30 +250836,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248344,19 +250872,23 @@ 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, - [17489] = 4, + [20967] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(1969), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(1993), 1, sym_comment, - ACTIONS(2508), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2195), 1, + aux_sym_shebang_repeat1, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5204), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248365,10 +250897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2510), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5202), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248380,30 +250909,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248412,19 +250942,23 @@ 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, - [17561] = 4, + [21044] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(1970), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(1994), 1, sym_comment, - ACTIONS(2464), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2196), 1, + aux_sym_shebang_repeat1, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5204), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248433,10 +250967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2466), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5202), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248448,30 +250979,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248480,19 +251012,23 @@ 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, - [17633] = 4, + [21121] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(1971), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(1995), 1, sym_comment, - ACTIONS(2468), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2197), 1, + aux_sym_shebang_repeat1, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5204), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248501,10 +251037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2470), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5202), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248516,30 +251049,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248548,331 +251082,23 @@ 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, - [17705] = 40, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(203), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(379), 1, - anon_sym_LPAREN, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(435), 1, - sym_raw_string_begin, - ACTIONS(1048), 1, - anon_sym_DOLLAR, - ACTIONS(3287), 1, - sym__newline, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3321), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3323), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3325), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3359), 1, - anon_sym_null, - ACTIONS(5182), 1, - anon_sym_DOT_DOT, - STATE(1811), 1, - sym__val_number, - STATE(1972), 1, - sym_comment, - STATE(1973), 1, - aux_sym_shebang_repeat1, - STATE(2131), 1, - sym__inter_single_quotes, - STATE(2132), 1, - sym__inter_double_quotes, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(3531), 1, - sym__val_number_decimal, - STATE(3608), 1, - sym_expr_parenthesized, - STATE(3613), 1, - sym_val_variable, - STATE(3876), 1, - sym__expr_binary_expression_parenthesized, - STATE(3925), 1, - sym_val_range, - STATE(6723), 1, - sym__expression_parenthesized, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3361), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5184), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1821), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2413), 3, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym__value, - ACTIONS(427), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2112), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [17849] = 40, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(203), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, + [21198] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(379), 1, - anon_sym_LPAREN, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(435), 1, - sym_raw_string_begin, - ACTIONS(1048), 1, - anon_sym_DOLLAR, - ACTIONS(3287), 1, - sym__newline, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3321), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3323), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3325), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3359), 1, - anon_sym_null, - ACTIONS(5182), 1, - anon_sym_DOT_DOT, - STATE(1811), 1, - sym__val_number, - STATE(1973), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(1996), 1, sym_comment, - STATE(2131), 1, - sym__inter_single_quotes, - STATE(2132), 1, - sym__inter_double_quotes, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(2785), 1, - aux_sym_shebang_repeat1, - STATE(3531), 1, - sym__val_number_decimal, - STATE(3608), 1, - sym_expr_parenthesized, - STATE(3613), 1, - sym_val_variable, - STATE(3876), 1, - sym__expr_binary_expression_parenthesized, - STATE(3925), 1, - sym_val_range, - STATE(6725), 1, - sym__expression_parenthesized, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3361), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5184), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1821), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2413), 3, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym__value, - ACTIONS(427), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2112), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [17993] = 40, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(203), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(379), 1, - anon_sym_LPAREN, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(435), 1, - sym_raw_string_begin, - ACTIONS(1048), 1, - anon_sym_DOLLAR, - ACTIONS(3287), 1, - sym__newline, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3321), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3323), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3325), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3359), 1, - anon_sym_null, - ACTIONS(5182), 1, - anon_sym_DOT_DOT, - STATE(1811), 1, - sym__val_number, - STATE(1883), 1, + STATE(2207), 1, aux_sym_shebang_repeat1, - STATE(1974), 1, - sym_comment, - STATE(2131), 1, - sym__inter_single_quotes, - STATE(2132), 1, - sym__inter_double_quotes, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(3531), 1, - sym__val_number_decimal, - STATE(3608), 1, - sym_expr_parenthesized, - STATE(3613), 1, - sym_val_variable, - STATE(3876), 1, - sym__expr_binary_expression_parenthesized, - STATE(3925), 1, - sym_val_range, - STATE(6733), 1, - sym__expression_parenthesized, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3361), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5184), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1821), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2413), 3, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym__value, - ACTIONS(427), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2112), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [18137] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1975), 1, - sym_comment, - ACTIONS(4916), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5204), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248881,10 +251107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4914), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5202), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248896,30 +251119,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248928,18 +251152,18 @@ 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, - [18209] = 7, + [21275] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(1976), 1, + STATE(1997), 1, sym_comment, - STATE(2247), 1, + STATE(2209), 1, aux_sym_shebang_repeat1, - STATE(7507), 1, + STATE(7681), 1, sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, + ACTIONS(5204), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -248953,7 +251177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 44, + ACTIONS(5202), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248998,121 +251222,23 @@ 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, - [18286] = 39, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(203), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(435), 1, - sym_raw_string_begin, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3321), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3323), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3325), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3359), 1, - anon_sym_null, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(3619), 1, - anon_sym_LPAREN, - ACTIONS(5200), 1, - anon_sym_DOLLAR, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - STATE(1811), 1, - sym__val_number, - STATE(1977), 1, - sym_comment, - STATE(2131), 1, - sym__inter_single_quotes, - STATE(2132), 1, - sym__inter_double_quotes, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(3569), 1, - sym__val_number_decimal, - STATE(3597), 1, - sym_val_range, - STATE(3641), 1, - sym_expr_parenthesized, - STATE(3658), 1, - sym_val_variable, - STATE(3974), 1, - sym__expr_binary_expression, - STATE(7526), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3361), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5184), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1821), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2144), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(427), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2112), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [18427] = 4, + [21352] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1978), 1, + ACTIONS(1038), 1, + anon_sym_DOT_DOT2, + STATE(1998), 1, sym_comment, - ACTIONS(1006), 15, + ACTIONS(1040), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5208), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(5212), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249121,8 +251247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1008), 45, - ts_builtin_sym_end, + ACTIONS(5206), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249134,6 +251259,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(5210), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -249157,27 +251293,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [18498] = 6, + [21431] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1042), 1, - anon_sym_DOT_DOT2, - STATE(1979), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(1999), 1, sym_comment, - ACTIONS(1044), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1030), 13, + STATE(2210), 1, + aux_sym_shebang_repeat1, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5204), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249191,7 +251318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1032), 44, + ACTIONS(5202), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249206,7 +251333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -249236,18 +251363,17 @@ 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, - [18573] = 7, + [21508] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(1980), 1, + ACTIONS(1038), 1, + anon_sym_DOT_DOT2, + STATE(2000), 1, sym_comment, - STATE(2172), 1, - aux_sym_shebang_repeat1, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5206), 13, + ACTIONS(1040), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1026), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249261,7 +251387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5204), 44, + ACTIONS(1028), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249276,7 +251402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -249306,18 +251432,12 @@ 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, - [18650] = 7, + [21583] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(1981), 1, + STATE(2001), 1, sym_comment, - STATE(2282), 1, - aux_sym_shebang_repeat1, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5210), 13, + ACTIONS(2034), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249331,7 +251451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5208), 44, + ACTIONS(2036), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249346,7 +251466,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -249376,18 +251499,18 @@ 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, - [18727] = 7, + [21654] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(1982), 1, + STATE(2002), 1, sym_comment, - STATE(2228), 1, + STATE(2233), 1, aux_sym_shebang_repeat1, - STATE(7507), 1, + STATE(7681), 1, sym__expr_parenthesized_immediate, - ACTIONS(5214), 13, + ACTIONS(5194), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249401,7 +251524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5212), 44, + ACTIONS(5192), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249446,12 +251569,12 @@ 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, - [18804] = 4, + [21731] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1983), 1, + STATE(2003), 1, sym_comment, - ACTIONS(2488), 13, + ACTIONS(1927), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249465,7 +251588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2490), 47, + ACTIONS(1929), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249513,12 +251636,18 @@ 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, - [18875] = 4, + [21802] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(1984), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2004), 1, sym_comment, - ACTIONS(2496), 13, + STATE(2238), 1, + aux_sym_shebang_repeat1, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5200), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249532,7 +251661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2498), 47, + ACTIONS(5198), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249547,10 +251676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -249580,18 +251706,18 @@ 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, - [18946] = 7, + [21879] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(1985), 1, + STATE(2005), 1, sym_comment, - STATE(2229), 1, + STATE(2214), 1, aux_sym_shebang_repeat1, - STATE(7507), 1, + STATE(7681), 1, sym__expr_parenthesized_immediate, - ACTIONS(5214), 13, + ACTIONS(5204), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249605,7 +251731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5212), 44, + ACTIONS(5202), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249650,18 +251776,89 @@ 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, - [19023] = 7, + [21956] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5196), 1, + anon_sym_DOT, + STATE(2006), 1, + sym_comment, + STATE(2060), 1, + aux_sym_cell_path_repeat1, + STATE(2153), 1, + sym_cell_path, + STATE(2251), 1, + sym_path, + ACTIONS(961), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(963), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [22035] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(1986), 1, + STATE(2007), 1, sym_comment, - STATE(2209), 1, + STATE(2249), 1, aux_sym_shebang_repeat1, - STATE(7507), 1, + STATE(7681), 1, sym__expr_parenthesized_immediate, - ACTIONS(5206), 13, + ACTIONS(5194), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249675,7 +251872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5204), 44, + ACTIONS(5192), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249720,18 +251917,18 @@ 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, - [19100] = 7, + [22112] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5216), 1, - anon_sym_DOT, - STATE(1987), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2008), 1, sym_comment, - STATE(2085), 1, - aux_sym_cell_path_repeat1, - STATE(2197), 1, - sym_path, - ACTIONS(967), 13, + STATE(2215), 1, + aux_sym_shebang_repeat1, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5204), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249745,8 +251942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(969), 44, - ts_builtin_sym_end, + ACTIONS(5202), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249758,6 +251954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -249790,12 +251987,18 @@ 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, - [19177] = 4, + [22189] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(1988), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2009), 1, sym_comment, - ACTIONS(1948), 13, + STATE(2218), 1, + aux_sym_shebang_repeat1, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5204), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249809,7 +252012,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1950), 47, + ACTIONS(5202), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [22266] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2010), 1, + sym_comment, + ACTIONS(2367), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2369), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249857,20 +252124,12 @@ 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, - [19248] = 8, + [22337] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5216), 1, - anon_sym_DOT, - STATE(1987), 1, - aux_sym_cell_path_repeat1, - STATE(1989), 1, + STATE(2011), 1, sym_comment, - STATE(2197), 1, - sym_path, - STATE(2503), 1, - sym_cell_path, - ACTIONS(2094), 13, + ACTIONS(2379), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249884,8 +252143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2096), 43, - ts_builtin_sym_end, + ACTIONS(2381), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249897,8 +252155,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -249928,12 +252191,12 @@ 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, - [19327] = 4, + [22408] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1990), 1, + STATE(2012), 1, sym_comment, - ACTIONS(2387), 13, + ACTIONS(2038), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249947,7 +252210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2389), 47, + ACTIONS(2040), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249995,12 +252258,184 @@ 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, - [19398] = 4, + [22479] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2013), 1, + sym_comment, + STATE(2242), 1, + aux_sym_shebang_repeat1, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5200), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5198), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [22556] = 39, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + aux_sym_expr_unary_token1, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - STATE(1991), 1, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, + sym_raw_string_begin, + ACTIONS(3335), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3337), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3339), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3341), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3359), 1, + anon_sym_null, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(3591), 1, + anon_sym_LPAREN, + ACTIONS(5214), 1, + anon_sym_DOLLAR, + ACTIONS(5216), 1, + anon_sym_DOT_DOT, + STATE(1729), 1, + sym__val_number, + STATE(2014), 1, sym_comment, - ACTIONS(2367), 13, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(2171), 1, + sym__inter_single_quotes, + STATE(2172), 1, + sym__inter_double_quotes, + STATE(3558), 1, + sym__val_number_decimal, + STATE(3626), 1, + sym_val_range, + STATE(3657), 1, + sym_val_variable, + STATE(3698), 1, + sym_expr_parenthesized, + STATE(3980), 1, + sym__expr_binary_expression, + STATE(7658), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3361), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1771), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2130), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(427), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2116), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [22697] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2015), 1, + sym_comment, + ACTIONS(1899), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250014,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(2369), 47, + ACTIONS(1901), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250062,12 +252497,12 @@ 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, - [19469] = 4, + [22768] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1992), 1, + STATE(2016), 1, sym_comment, - ACTIONS(1972), 13, + ACTIONS(2448), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250081,7 +252516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1974), 47, + ACTIONS(2450), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250129,12 +252564,114 @@ 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, - [19540] = 4, + [22839] = 39, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + aux_sym_expr_unary_token1, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - STATE(1993), 1, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, + sym_raw_string_begin, + ACTIONS(3335), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3337), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3339), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3341), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3359), 1, + anon_sym_null, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(3591), 1, + anon_sym_LPAREN, + ACTIONS(5214), 1, + anon_sym_DOLLAR, + ACTIONS(5216), 1, + anon_sym_DOT_DOT, + STATE(1729), 1, + sym__val_number, + STATE(2017), 1, + sym_comment, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(2171), 1, + sym__inter_single_quotes, + STATE(2172), 1, + sym__inter_double_quotes, + STATE(3558), 1, + sym__val_number_decimal, + STATE(3626), 1, + sym_val_range, + STATE(3657), 1, + sym_val_variable, + STATE(3698), 1, + sym_expr_parenthesized, + STATE(3980), 1, + sym__expr_binary_expression, + STATE(7674), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3361), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1771), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2130), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(427), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2116), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [22980] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2018), 1, sym_comment, - ACTIONS(1988), 13, + ACTIONS(2452), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250148,7 +252685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1990), 47, + ACTIONS(2454), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250196,12 +252733,18 @@ 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, - [19611] = 4, + [23051] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(1994), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2019), 1, sym_comment, - ACTIONS(1992), 13, + STATE(2258), 1, + aux_sym_shebang_repeat1, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5194), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250215,7 +252758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1994), 47, + ACTIONS(5192), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250230,10 +252773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -250263,18 +252803,17 @@ 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, - [19682] = 7, + [23128] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(1995), 1, + ACTIONS(5218), 1, + anon_sym_DOT, + STATE(2251), 1, + sym_path, + STATE(2020), 2, sym_comment, - STATE(2230), 1, - aux_sym_shebang_repeat1, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5214), 13, + aux_sym_cell_path_repeat1, + ACTIONS(971), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250288,7 +252827,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5212), 44, + ACTIONS(973), 44, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250300,7 +252840,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -250333,20 +252872,20 @@ 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, - [19759] = 8, + [23203] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5216), 1, + ACTIONS(5196), 1, anon_sym_DOT, - STATE(1987), 1, - aux_sym_cell_path_repeat1, - STATE(1996), 1, + STATE(2021), 1, sym_comment, - STATE(2197), 1, + STATE(2060), 1, + aux_sym_cell_path_repeat1, + STATE(2251), 1, sym_path, - STATE(2532), 1, + STATE(2477), 1, sym_cell_path, - ACTIONS(2090), 13, + ACTIONS(1871), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250360,7 +252899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2092), 43, + ACTIONS(1873), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -250404,12 +252943,20 @@ 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, - [19838] = 4, + [23282] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1997), 1, + ACTIONS(5196), 1, + anon_sym_DOT, + STATE(2022), 1, sym_comment, - ACTIONS(2437), 13, + STATE(2060), 1, + aux_sym_cell_path_repeat1, + STATE(2251), 1, + sym_path, + STATE(2478), 1, + sym_cell_path, + ACTIONS(1859), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250423,7 +252970,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2439), 47, + ACTIONS(1861), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250435,13 +252983,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -250471,12 +253014,12 @@ 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, - [19909] = 4, + [23361] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1998), 1, + STATE(2023), 1, sym_comment, - ACTIONS(2004), 13, + ACTIONS(1907), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250490,7 +253033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2006), 47, + ACTIONS(1909), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250538,17 +253081,26 @@ 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, - [19980] = 4, + [23432] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(1999), 1, + ACTIONS(1038), 1, + anon_sym_DOT_DOT2, + ACTIONS(4801), 1, + aux_sym_record_entry_token1, + STATE(2024), 1, sym_comment, - ACTIONS(2456), 13, + ACTIONS(1040), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5208), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(5212), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250557,8 +253109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2458), 47, - sym__newline, + ACTIONS(5206), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250569,13 +253120,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(5210), 23, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -250597,20 +253153,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [20051] = 4, + [23513] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2000), 1, + ACTIONS(5196), 1, + anon_sym_DOT, + STATE(2025), 1, sym_comment, - ACTIONS(2460), 13, + STATE(2060), 1, + aux_sym_cell_path_repeat1, + STATE(2251), 1, + sym_path, + STATE(2465), 1, + sym_cell_path, + ACTIONS(1915), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250624,7 +253180,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2462), 47, + ACTIONS(1917), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250636,13 +253193,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -250672,12 +253224,20 @@ 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, - [20122] = 4, + [23592] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2001), 1, + ACTIONS(5196), 1, + anon_sym_DOT, + STATE(2026), 1, sym_comment, - ACTIONS(2068), 13, + STATE(2060), 1, + aux_sym_cell_path_repeat1, + STATE(2251), 1, + sym_path, + STATE(2466), 1, + sym_cell_path, + ACTIONS(1919), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250691,7 +253251,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2070), 47, + ACTIONS(1921), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250703,13 +253264,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -250739,18 +253295,20 @@ 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, - [20193] = 7, + [23671] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2002), 1, + ACTIONS(5196), 1, + anon_sym_DOT, + STATE(2027), 1, sym_comment, - STATE(2184), 1, - aux_sym_shebang_repeat1, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5206), 13, + STATE(2060), 1, + aux_sym_cell_path_repeat1, + STATE(2251), 1, + sym_path, + STATE(2467), 1, + sym_cell_path, + ACTIONS(1927), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250764,7 +253322,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5204), 44, + ACTIONS(1929), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250776,10 +253335,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -250809,20 +253366,20 @@ 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, - [20270] = 8, + [23750] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5216), 1, + ACTIONS(5196), 1, anon_sym_DOT, - STATE(1987), 1, - aux_sym_cell_path_repeat1, - STATE(2003), 1, + STATE(2028), 1, sym_comment, - STATE(2128), 1, - sym_cell_path, - STATE(2197), 1, + STATE(2060), 1, + aux_sym_cell_path_repeat1, + STATE(2251), 1, sym_path, - ACTIONS(961), 13, + STATE(2468), 1, + sym_cell_path, + ACTIONS(1942), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250836,7 +253393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(963), 43, + ACTIONS(1944), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -250880,12 +253437,20 @@ 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, - [20349] = 4, + [23829] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2004), 1, + ACTIONS(5196), 1, + anon_sym_DOT, + STATE(2029), 1, sym_comment, - ACTIONS(1907), 13, + STATE(2060), 1, + aux_sym_cell_path_repeat1, + STATE(2251), 1, + sym_path, + STATE(2469), 1, + sym_cell_path, + ACTIONS(2026), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250899,7 +253464,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1911), 47, + ACTIONS(2028), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250911,13 +253477,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -250947,18 +253508,20 @@ 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, - [20420] = 7, + [23908] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2005), 1, + ACTIONS(5196), 1, + anon_sym_DOT, + STATE(2030), 1, sym_comment, - STATE(2249), 1, - aux_sym_shebang_repeat1, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5210), 13, + STATE(2060), 1, + aux_sym_cell_path_repeat1, + STATE(2251), 1, + sym_path, + STATE(2471), 1, + sym_cell_path, + ACTIONS(2030), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250972,7 +253535,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5208), 44, + ACTIONS(2032), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250984,10 +253548,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -251017,12 +253579,18 @@ 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, - [20497] = 4, + [23987] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2006), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2031), 1, sym_comment, - ACTIONS(2343), 13, + STATE(2184), 1, + aux_sym_shebang_repeat1, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5204), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251036,7 +253604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2345), 47, + ACTIONS(5202), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251051,10 +253619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -251084,12 +253649,18 @@ 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, - [20568] = 4, + [24064] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2007), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2032), 1, sym_comment, - ACTIONS(2351), 13, + STATE(2270), 1, + aux_sym_shebang_repeat1, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5200), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251103,7 +253674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2353), 47, + ACTIONS(5198), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251118,10 +253689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -251151,12 +253719,18 @@ 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, - [20639] = 4, + [24141] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2008), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2033), 1, sym_comment, - ACTIONS(1913), 13, + STATE(2271), 1, + aux_sym_shebang_repeat1, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5194), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251170,7 +253744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1915), 47, + ACTIONS(5192), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251185,10 +253759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -251218,12 +253789,18 @@ 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, - [20710] = 4, + [24218] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2009), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2034), 1, sym_comment, - ACTIONS(2355), 13, + STATE(2272), 1, + aux_sym_shebang_repeat1, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5194), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251237,7 +253814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2357), 47, + ACTIONS(5192), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251252,10 +253829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -251285,18 +253859,18 @@ 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, - [20781] = 7, + [24295] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(2010), 1, + STATE(2035), 1, sym_comment, - STATE(2239), 1, + STATE(2287), 1, aux_sym_shebang_repeat1, - STATE(7507), 1, + STATE(7681), 1, sym__expr_parenthesized_immediate, - ACTIONS(5214), 13, + ACTIONS(5200), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251310,7 +253884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5212), 44, + ACTIONS(5198), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251355,18 +253929,18 @@ 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, - [20858] = 7, + [24372] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(2011), 1, + STATE(2036), 1, sym_comment, - STATE(2215), 1, + STATE(2191), 1, aux_sym_shebang_repeat1, - STATE(7507), 1, + STATE(7681), 1, sym__expr_parenthesized_immediate, - ACTIONS(5206), 13, + ACTIONS(5204), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251380,7 +253954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5204), 44, + ACTIONS(5202), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251425,12 +253999,18 @@ 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, - [20935] = 4, + [24449] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2012), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2037), 1, sym_comment, - ACTIONS(2359), 13, + STATE(2278), 1, + aux_sym_shebang_repeat1, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5200), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251444,7 +254024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2361), 47, + ACTIONS(5198), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251459,10 +254039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -251492,25 +254069,19 @@ 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, - [21006] = 8, + [24526] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5216), 1, - anon_sym_DOT, - STATE(1987), 1, - aux_sym_cell_path_repeat1, - STATE(2013), 1, + STATE(2038), 1, sym_comment, - STATE(2197), 1, - sym_path, - STATE(2513), 1, - sym_cell_path, - ACTIONS(1948), 13, + ACTIONS(1010), 15, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251519,7 +254090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1950), 43, + ACTIONS(1012), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -251555,6 +254126,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251563,20 +254136,18 @@ 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, - [21085] = 8, + [24597] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5216), 1, - anon_sym_DOT, - STATE(1987), 1, - aux_sym_cell_path_repeat1, - STATE(2014), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2039), 1, sym_comment, - STATE(2197), 1, - sym_path, - STATE(2521), 1, - sym_cell_path, - ACTIONS(1952), 13, + STATE(2286), 1, + aux_sym_shebang_repeat1, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5200), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251590,8 +254161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1954), 43, - ts_builtin_sym_end, + ACTIONS(5198), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251603,8 +254173,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -251634,18 +254206,18 @@ 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, - [21164] = 7, + [24674] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(2015), 1, + STATE(2040), 1, sym_comment, - STATE(2236), 1, + STATE(2187), 1, aux_sym_shebang_repeat1, - STATE(7507), 1, + STATE(7681), 1, sym__expr_parenthesized_immediate, - ACTIONS(5214), 13, + ACTIONS(5200), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251659,7 +254231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5212), 44, + ACTIONS(5198), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251704,19 +254276,23 @@ 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, - [21241] = 4, + [24751] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2016), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2041), 1, sym_comment, - ACTIONS(1735), 15, - sym__newline, + STATE(2279), 1, + aux_sym_shebang_repeat1, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5194), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251725,7 +254301,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1737), 45, + ACTIONS(5192), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251736,9 +254313,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -251760,9 +254338,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251771,20 +254346,20 @@ 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, - [21312] = 8, + [24828] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5216), 1, + ACTIONS(5196), 1, anon_sym_DOT, - STATE(1987), 1, - aux_sym_cell_path_repeat1, - STATE(2017), 1, + STATE(2042), 1, sym_comment, - STATE(2197), 1, + STATE(2060), 1, + aux_sym_cell_path_repeat1, + STATE(2251), 1, sym_path, - STATE(2467), 1, + STATE(2472), 1, sym_cell_path, - ACTIONS(1933), 13, + ACTIONS(2034), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251798,7 +254373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1935), 43, + ACTIONS(2036), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -251842,20 +254417,20 @@ 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, - [21391] = 8, + [24907] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5216), 1, + ACTIONS(5196), 1, anon_sym_DOT, - STATE(1987), 1, - aux_sym_cell_path_repeat1, - STATE(2018), 1, + STATE(2043), 1, sym_comment, - STATE(2197), 1, + STATE(2060), 1, + aux_sym_cell_path_repeat1, + STATE(2251), 1, sym_path, - STATE(2462), 1, + STATE(2473), 1, sym_cell_path, - ACTIONS(1944), 13, + ACTIONS(2038), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251869,7 +254444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1946), 43, + ACTIONS(2040), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -251913,20 +254488,20 @@ 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, - [21470] = 8, + [24986] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5216), 1, + ACTIONS(5196), 1, anon_sym_DOT, - STATE(1987), 1, - aux_sym_cell_path_repeat1, - STATE(2019), 1, + STATE(2044), 1, sym_comment, - STATE(2197), 1, + STATE(2060), 1, + aux_sym_cell_path_repeat1, + STATE(2251), 1, sym_path, - STATE(2525), 1, + STATE(2474), 1, sym_cell_path, - ACTIONS(1960), 13, + ACTIONS(1931), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251940,7 +254515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1962), 43, + ACTIONS(1933), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -251984,20 +254559,20 @@ 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, - [21549] = 8, + [25065] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5216), 1, + ACTIONS(5196), 1, anon_sym_DOT, - STATE(1987), 1, - aux_sym_cell_path_repeat1, - STATE(2020), 1, + STATE(2045), 1, sym_comment, - STATE(2197), 1, + STATE(2060), 1, + aux_sym_cell_path_repeat1, + STATE(2251), 1, sym_path, - STATE(2495), 1, + STATE(2475), 1, sym_cell_path, - ACTIONS(2082), 13, + ACTIONS(1899), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252011,7 +254586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2084), 43, + ACTIONS(1901), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -252055,19 +254630,17 @@ 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, - [21628] = 4, + [25144] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2021), 1, + STATE(2046), 1, sym_comment, - ACTIONS(1010), 15, + ACTIONS(2468), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252076,74 +254649,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1012), 45, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [21699] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2022), 1, - sym_comment, - ACTIONS(2125), 15, + ACTIONS(2470), 47, sym__newline, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2127), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252154,9 +254661,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -252178,9 +254689,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252189,20 +254697,20 @@ 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, - [21770] = 8, + [25215] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5216), 1, + ACTIONS(5196), 1, anon_sym_DOT, - STATE(1987), 1, - aux_sym_cell_path_repeat1, - STATE(2023), 1, + STATE(2047), 1, sym_comment, - STATE(2197), 1, + STATE(2060), 1, + aux_sym_cell_path_repeat1, + STATE(2251), 1, sym_path, - STATE(2450), 1, + STATE(2539), 1, sym_cell_path, - ACTIONS(1968), 13, + ACTIONS(1867), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252216,7 +254724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1970), 43, + ACTIONS(1869), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -252260,19 +254768,17 @@ 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, - [21849] = 4, + [25294] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2024), 1, + STATE(2048), 1, sym_comment, - ACTIONS(1014), 15, + ACTIONS(2390), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252281,8 +254787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1016), 45, - ts_builtin_sym_end, + ACTIONS(2392), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252294,8 +254799,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -252317,8 +254827,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252327,18 +254835,12 @@ 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, - [21920] = 7, + [25365] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2025), 1, + STATE(2049), 1, sym_comment, - STATE(2251), 1, - aux_sym_shebang_repeat1, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5210), 13, + ACTIONS(2482), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252352,7 +254854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5208), 44, + ACTIONS(2484), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252367,7 +254869,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -252397,18 +254902,12 @@ 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, - [21997] = 7, + [25436] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2026), 1, + STATE(2050), 1, sym_comment, - STATE(2212), 1, - aux_sym_shebang_repeat1, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5206), 13, + ACTIONS(2406), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252422,7 +254921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5204), 44, + ACTIONS(2408), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252437,7 +254936,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -252467,18 +254969,18 @@ 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, - [22074] = 7, + [25507] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(2027), 1, + STATE(2051), 1, sym_comment, - STATE(2254), 1, + STATE(2190), 1, aux_sym_shebang_repeat1, - STATE(7507), 1, + STATE(7681), 1, sym__expr_parenthesized_immediate, - ACTIONS(5210), 13, + ACTIONS(5200), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252492,7 +254994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5208), 44, + ACTIONS(5198), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252537,18 +255039,20 @@ 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, - [22151] = 7, + [25584] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2028), 1, + ACTIONS(5196), 1, + anon_sym_DOT, + STATE(2052), 1, sym_comment, - STATE(2231), 1, - aux_sym_shebang_repeat1, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5214), 13, + STATE(2060), 1, + aux_sym_cell_path_repeat1, + STATE(2251), 1, + sym_path, + STATE(2476), 1, + sym_cell_path, + ACTIONS(1907), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252562,7 +255066,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5212), 44, + ACTIONS(1909), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252574,10 +255079,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -252607,18 +255110,12 @@ 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, - [22228] = 7, + [25663] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2029), 1, + STATE(2053), 1, sym_comment, - STATE(2226), 1, - aux_sym_shebang_repeat1, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5214), 13, + ACTIONS(2472), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252632,7 +255129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5212), 44, + ACTIONS(2474), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252647,7 +255144,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -252677,18 +255177,18 @@ 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, - [22305] = 7, + [25734] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(2030), 1, + STATE(2054), 1, sym_comment, - STATE(2232), 1, + STATE(2291), 1, aux_sym_shebang_repeat1, - STATE(7507), 1, + STATE(7681), 1, sym__expr_parenthesized_immediate, - ACTIONS(5214), 13, + ACTIONS(5194), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252702,7 +255202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5212), 44, + ACTIONS(5192), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252747,18 +255247,18 @@ 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, - [22382] = 7, + [25811] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(2031), 1, + STATE(2055), 1, sym_comment, - STATE(2256), 1, + STATE(2295), 1, aux_sym_shebang_repeat1, - STATE(7507), 1, + STATE(7681), 1, sym__expr_parenthesized_immediate, - ACTIONS(5210), 13, + ACTIONS(5194), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252772,7 +255272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5208), 44, + ACTIONS(5192), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252817,18 +255317,18 @@ 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, - [22459] = 7, + [25888] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(2032), 1, + STATE(2056), 1, sym_comment, - STATE(2224), 1, + STATE(2255), 1, aux_sym_shebang_repeat1, - STATE(7507), 1, + STATE(7681), 1, sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, + ACTIONS(5200), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252842,7 +255342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 44, + ACTIONS(5198), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252887,18 +255387,12 @@ 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, - [22536] = 7, + [25965] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2033), 1, + STATE(2057), 1, sym_comment, - STATE(2225), 1, - aux_sym_shebang_repeat1, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, + ACTIONS(1942), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252912,7 +255406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 44, + ACTIONS(1944), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252927,7 +255421,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -252957,20 +255454,18 @@ 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, - [22613] = 8, + [26036] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5216), 1, - anon_sym_DOT, - STATE(1987), 1, - aux_sym_cell_path_repeat1, - STATE(2034), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2058), 1, sym_comment, - STATE(2127), 1, - sym_cell_path, - STATE(2197), 1, - sym_path, - ACTIONS(1769), 13, + STATE(2302), 1, + aux_sym_shebang_repeat1, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5194), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252984,8 +255479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1771), 43, - ts_builtin_sym_end, + ACTIONS(5192), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252997,8 +255491,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -253028,18 +255524,18 @@ 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, - [22692] = 7, + [26113] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(2035), 1, + STATE(2059), 1, sym_comment, - STATE(2193), 1, + STATE(2316), 1, aux_sym_shebang_repeat1, - STATE(7507), 1, + STATE(7681), 1, sym__expr_parenthesized_immediate, - ACTIONS(5206), 13, + ACTIONS(5194), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253053,7 +255549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5204), 44, + ACTIONS(5192), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253098,18 +255594,18 @@ 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, - [22769] = 7, + [26190] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2036), 1, + ACTIONS(5196), 1, + anon_sym_DOT, + STATE(2020), 1, + aux_sym_cell_path_repeat1, + STATE(2060), 1, sym_comment, - STATE(2278), 1, - aux_sym_shebang_repeat1, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5210), 13, + STATE(2251), 1, + sym_path, + ACTIONS(967), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253123,7 +255619,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5208), 44, + ACTIONS(969), 44, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253135,7 +255632,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -253168,18 +255664,20 @@ 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, - [22846] = 7, + [26267] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2037), 1, + ACTIONS(5196), 1, + anon_sym_DOT, + STATE(2060), 1, + aux_sym_cell_path_repeat1, + STATE(2061), 1, sym_comment, - STATE(2276), 1, - aux_sym_shebang_repeat1, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, + STATE(2251), 1, + sym_path, + STATE(2528), 1, + sym_cell_path, + ACTIONS(1847), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253193,7 +255691,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 44, + ACTIONS(1851), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253205,10 +255704,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -253238,20 +255735,18 @@ 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, - [22923] = 8, + [26346] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5216), 1, - anon_sym_DOT, - STATE(1987), 1, - aux_sym_cell_path_repeat1, - STATE(2038), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2062), 1, sym_comment, - STATE(2124), 1, - sym_cell_path, - STATE(2197), 1, - sym_path, - ACTIONS(1735), 13, + STATE(2317), 1, + aux_sym_shebang_repeat1, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5194), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253265,8 +255760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1737), 43, - ts_builtin_sym_end, + ACTIONS(5192), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253278,8 +255772,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -253309,12 +255805,18 @@ 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, - [23002] = 4, + [26423] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2039), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2063), 1, sym_comment, - ACTIONS(2504), 13, + STATE(2177), 1, + aux_sym_shebang_repeat1, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5223), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253328,7 +255830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2506), 47, + ACTIONS(5221), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253343,10 +255845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -253376,18 +255875,18 @@ 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, - [23073] = 7, + [26500] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(2040), 1, + STATE(2064), 1, sym_comment, - STATE(2291), 1, + STATE(2201), 1, aux_sym_shebang_repeat1, - STATE(7507), 1, + STATE(7681), 1, sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, + ACTIONS(5200), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253401,7 +255900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 44, + ACTIONS(5198), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253446,18 +255945,222 @@ 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, - [23150] = 7, + [26577] = 39, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + aux_sym_expr_unary_token1, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, + sym_raw_string_begin, + ACTIONS(3335), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3337), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3339), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3341), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3359), 1, + anon_sym_null, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(3591), 1, + anon_sym_LPAREN, + ACTIONS(5214), 1, + anon_sym_DOLLAR, + ACTIONS(5216), 1, + anon_sym_DOT_DOT, + STATE(1729), 1, + sym__val_number, + STATE(2065), 1, + sym_comment, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(2171), 1, + sym__inter_single_quotes, + STATE(2172), 1, + sym__inter_double_quotes, + STATE(3558), 1, + sym__val_number_decimal, + STATE(3626), 1, + sym_val_range, + STATE(3657), 1, + sym_val_variable, + STATE(3698), 1, + sym_expr_parenthesized, + STATE(3980), 1, + sym__expr_binary_expression, + STATE(7658), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3361), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1771), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2130), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(427), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2116), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [26718] = 39, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + aux_sym_expr_unary_token1, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, + sym_raw_string_begin, + ACTIONS(3335), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3337), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3339), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3341), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3359), 1, + anon_sym_null, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(3591), 1, + anon_sym_LPAREN, + ACTIONS(5214), 1, + anon_sym_DOLLAR, + ACTIONS(5216), 1, + anon_sym_DOT_DOT, + STATE(1729), 1, + sym__val_number, + STATE(2066), 1, + sym_comment, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(2171), 1, + sym__inter_single_quotes, + STATE(2172), 1, + sym__inter_double_quotes, + STATE(3558), 1, + sym__val_number_decimal, + STATE(3626), 1, + sym_val_range, + STATE(3657), 1, + sym_val_variable, + STATE(3698), 1, + sym_expr_parenthesized, + STATE(3980), 1, + sym__expr_binary_expression, + STATE(7674), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3361), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1771), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2130), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(427), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2116), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [26859] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(2041), 1, + STATE(2067), 1, sym_comment, - STATE(2202), 1, + STATE(2185), 1, aux_sym_shebang_repeat1, - STATE(7507), 1, + STATE(7681), 1, sym__expr_parenthesized_immediate, - ACTIONS(5206), 13, + ACTIONS(5223), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253471,7 +256174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5204), 44, + ACTIONS(5221), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253516,23 +256219,26 @@ 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, - [23227] = 7, + [26936] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2042), 1, + ACTIONS(1038), 1, + anon_sym_DOT_DOT2, + ACTIONS(1042), 1, + aux_sym_record_entry_token1, + STATE(2068), 1, sym_comment, - STATE(2295), 1, - aux_sym_shebang_repeat1, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, + ACTIONS(1040), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5208), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(5212), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253541,8 +256247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 44, - sym__newline, + ACTIONS(5206), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253553,10 +256258,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(5210), 23, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -253578,26 +256291,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [23304] = 7, + [27017] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(2043), 1, + STATE(2069), 1, sym_comment, - STATE(2203), 1, + STATE(2221), 1, aux_sym_shebang_repeat1, - STATE(7507), 1, + STATE(7681), 1, sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, + ACTIONS(5223), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253611,7 +256316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 44, + ACTIONS(5221), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253656,18 +256361,18 @@ 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, - [23381] = 7, + [27094] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(2044), 1, + STATE(2070), 1, sym_comment, - STATE(2213), 1, + STATE(2231), 1, aux_sym_shebang_repeat1, - STATE(7507), 1, + STATE(7681), 1, sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, + ACTIONS(5223), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253681,7 +256386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 44, + ACTIONS(5221), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253726,18 +256431,18 @@ 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, - [23458] = 7, + [27171] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(2045), 1, + STATE(2071), 1, sym_comment, - STATE(2258), 1, + STATE(2194), 1, aux_sym_shebang_repeat1, - STATE(7507), 1, + STATE(7681), 1, sym__expr_parenthesized_immediate, - ACTIONS(5210), 13, + ACTIONS(5223), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253751,7 +256456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5208), 44, + ACTIONS(5221), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253796,120 +256501,20 @@ 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, - [23535] = 39, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(203), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, + [27248] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(435), 1, - sym_raw_string_begin, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3321), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3323), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3325), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3359), 1, - anon_sym_null, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(3619), 1, - anon_sym_LPAREN, - ACTIONS(5200), 1, - anon_sym_DOLLAR, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - STATE(1811), 1, - sym__val_number, - STATE(2046), 1, - sym_comment, - STATE(2131), 1, - sym__inter_single_quotes, - STATE(2132), 1, - sym__inter_double_quotes, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(3569), 1, - sym__val_number_decimal, - STATE(3597), 1, - sym_val_range, - STATE(3641), 1, - sym_expr_parenthesized, - STATE(3658), 1, - sym_val_variable, - STATE(3974), 1, - sym__expr_binary_expression, - STATE(7431), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3361), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5184), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1821), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2144), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(427), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2112), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [23676] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2047), 1, + ACTIONS(5196), 1, + anon_sym_DOT, + STATE(2060), 1, + aux_sym_cell_path_repeat1, + STATE(2072), 1, sym_comment, - STATE(2222), 1, - aux_sym_shebang_repeat1, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, + STATE(2251), 1, + sym_path, + STATE(2546), 1, + sym_cell_path, + ACTIONS(1863), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253923,7 +256528,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 44, + ACTIONS(1865), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253935,10 +256541,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -253968,18 +256572,18 @@ 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, - [23753] = 7, + [27327] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(2048), 1, + STATE(2073), 1, sym_comment, - STATE(2260), 1, + STATE(2213), 1, aux_sym_shebang_repeat1, - STATE(7507), 1, + STATE(7681), 1, sym__expr_parenthesized_immediate, - ACTIONS(5210), 13, + ACTIONS(5223), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253993,7 +256597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5208), 44, + ACTIONS(5221), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254038,23 +256642,19 @@ 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, - [23830] = 7, + [27404] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2049), 1, + STATE(2074), 1, sym_comment, - STATE(2286), 1, - aux_sym_shebang_repeat1, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, + ACTIONS(1733), 15, + sym__newline, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -254063,8 +256663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 44, - sym__newline, + ACTIONS(1737), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254075,10 +256674,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -254100,6 +256698,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -254108,18 +256709,18 @@ 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, - [23907] = 7, + [27475] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(2050), 1, + STATE(2075), 1, sym_comment, - STATE(2263), 1, + STATE(2224), 1, aux_sym_shebang_repeat1, - STATE(7507), 1, + STATE(7681), 1, sym__expr_parenthesized_immediate, - ACTIONS(5210), 13, + ACTIONS(5223), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254133,7 +256734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5208), 44, + ACTIONS(5221), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254178,18 +256779,12 @@ 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, - [23984] = 7, + [27552] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2051), 1, + STATE(2076), 1, sym_comment, - STATE(2199), 1, - aux_sym_shebang_repeat1, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, + ACTIONS(1887), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254203,7 +256798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 44, + ACTIONS(1889), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254218,7 +256813,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -254248,20 +256846,18 @@ 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, - [24061] = 8, + [27623] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5216), 1, - anon_sym_DOT, - STATE(1987), 1, - aux_sym_cell_path_repeat1, - STATE(2052), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2077), 1, sym_comment, - STATE(2197), 1, - sym_path, - STATE(2475), 1, - sym_cell_path, - ACTIONS(1972), 13, + STATE(2234), 1, + aux_sym_shebang_repeat1, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5223), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254275,8 +256871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1974), 43, - ts_builtin_sym_end, + ACTIONS(5221), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254288,8 +256883,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -254319,20 +256916,18 @@ 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, - [24140] = 8, + [27700] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5216), 1, - anon_sym_DOT, - STATE(1987), 1, - aux_sym_cell_path_repeat1, - STATE(2053), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2078), 1, sym_comment, - STATE(2197), 1, - sym_path, - STATE(2483), 1, - sym_cell_path, - ACTIONS(1984), 13, + STATE(2260), 1, + aux_sym_shebang_repeat1, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5200), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254346,8 +256941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1986), 43, - ts_builtin_sym_end, + ACTIONS(5198), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254359,8 +256953,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -254390,20 +256986,20 @@ 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, - [24219] = 8, + [27777] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5216), 1, + ACTIONS(5196), 1, anon_sym_DOT, - STATE(1987), 1, + STATE(2060), 1, aux_sym_cell_path_repeat1, - STATE(2054), 1, + STATE(2079), 1, sym_comment, - STATE(2197), 1, - sym_path, - STATE(2485), 1, + STATE(2140), 1, sym_cell_path, - ACTIONS(1988), 13, + STATE(2251), 1, + sym_path, + ACTIONS(1747), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254417,7 +257013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1990), 43, + ACTIONS(1749), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -254461,25 +257057,19 @@ 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, - [24298] = 8, + [27856] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5216), 1, - anon_sym_DOT, - STATE(1987), 1, - aux_sym_cell_path_repeat1, - STATE(2055), 1, + STATE(2080), 1, sym_comment, - STATE(2197), 1, - sym_path, - STATE(2489), 1, - sym_cell_path, - ACTIONS(1992), 13, + ACTIONS(1006), 15, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -254488,7 +257078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1994), 43, + ACTIONS(1008), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -254524,6 +257114,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -254532,20 +257124,18 @@ 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, - [24377] = 8, + [27927] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5216), 1, - anon_sym_DOT, - STATE(1987), 1, - aux_sym_cell_path_repeat1, - STATE(2056), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2081), 1, sym_comment, - STATE(2197), 1, - sym_path, - STATE(2491), 1, - sym_cell_path, - ACTIONS(1996), 13, + STATE(2243), 1, + aux_sym_shebang_repeat1, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5223), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254559,8 +257149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1998), 43, - ts_builtin_sym_end, + ACTIONS(5221), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254572,8 +257161,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -254603,20 +257194,18 @@ 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, - [24456] = 8, + [28004] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5216), 1, - anon_sym_DOT, - STATE(1987), 1, - aux_sym_cell_path_repeat1, - STATE(2057), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2082), 1, sym_comment, - STATE(2197), 1, - sym_path, - STATE(2499), 1, - sym_cell_path, - ACTIONS(2000), 13, + STATE(2261), 1, + aux_sym_shebang_repeat1, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5223), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254630,8 +257219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2002), 43, - ts_builtin_sym_end, + ACTIONS(5221), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254643,8 +257231,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -254674,18 +257264,12 @@ 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, - [24535] = 7, + [28081] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2058), 1, + STATE(2083), 1, sym_comment, - STATE(2265), 1, - aux_sym_shebang_repeat1, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5210), 13, + ACTIONS(2343), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254699,7 +257283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5208), 44, + ACTIONS(2345), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254714,7 +257298,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -254744,20 +257331,18 @@ 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, - [24612] = 8, + [28152] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5216), 1, - anon_sym_DOT, - STATE(1987), 1, - aux_sym_cell_path_repeat1, - STATE(2059), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2084), 1, sym_comment, - STATE(2197), 1, - sym_path, - STATE(2516), 1, - sym_cell_path, - ACTIONS(1976), 13, + STATE(2303), 1, + aux_sym_shebang_repeat1, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5223), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254771,8 +257356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1978), 43, - ts_builtin_sym_end, + ACTIONS(5221), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254784,8 +257368,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -254815,18 +257401,18 @@ 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, - [24691] = 7, + [28229] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(2060), 1, + STATE(2085), 1, sym_comment, - STATE(2204), 1, + STATE(2205), 1, aux_sym_shebang_repeat1, - STATE(7507), 1, + STATE(7681), 1, sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, + ACTIONS(5200), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254840,7 +257426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 44, + ACTIONS(5198), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254885,230 +257471,23 @@ 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, - [24768] = 39, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(203), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(435), 1, - sym_raw_string_begin, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3321), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3323), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3325), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3359), 1, - anon_sym_null, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(3619), 1, - anon_sym_LPAREN, - ACTIONS(5200), 1, - anon_sym_DOLLAR, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - STATE(1811), 1, - sym__val_number, - STATE(2061), 1, - sym_comment, - STATE(2131), 1, - sym__inter_single_quotes, - STATE(2132), 1, - sym__inter_double_quotes, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(3569), 1, - sym__val_number_decimal, - STATE(3597), 1, - sym_val_range, - STATE(3641), 1, - sym_expr_parenthesized, - STATE(3658), 1, - sym_val_variable, - STATE(3974), 1, - sym__expr_binary_expression, - STATE(7431), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3361), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5184), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1821), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2144), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(427), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2112), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [24909] = 39, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(203), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, + [28306] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(435), 1, - sym_raw_string_begin, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3321), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3323), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3325), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3359), 1, - anon_sym_null, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(3619), 1, - anon_sym_LPAREN, - ACTIONS(5200), 1, - anon_sym_DOLLAR, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - STATE(1811), 1, - sym__val_number, - STATE(2062), 1, - sym_comment, - STATE(2131), 1, - sym__inter_single_quotes, - STATE(2132), 1, - sym__inter_double_quotes, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(3569), 1, - sym__val_number_decimal, - STATE(3597), 1, - sym_val_range, - STATE(3641), 1, - sym_expr_parenthesized, - STATE(3658), 1, - sym_val_variable, - STATE(3974), 1, - sym__expr_binary_expression, - STATE(7526), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3361), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5184), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1821), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2144), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(427), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2112), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [25050] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1042), 1, - anon_sym_DOT_DOT2, - ACTIONS(1046), 1, - aux_sym_record_entry_token1, - STATE(2063), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2086), 1, sym_comment, - ACTIONS(1044), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5222), 5, + STATE(2319), 1, + aux_sym_shebang_repeat1, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5223), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5218), 9, - sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255117,7 +257496,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 19, + ACTIONS(5221), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255128,18 +257508,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(5224), 23, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255161,20 +257533,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25131] = 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [28383] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5216), 1, - anon_sym_DOT, - STATE(1987), 1, - aux_sym_cell_path_repeat1, - STATE(2064), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2087), 1, sym_comment, - STATE(2197), 1, - sym_path, - STATE(2464), 1, - sym_cell_path, - ACTIONS(2004), 13, + STATE(2178), 1, + aux_sym_shebang_repeat1, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5223), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255188,8 +257566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2006), 43, - ts_builtin_sym_end, + ACTIONS(5221), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255201,8 +257578,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255232,20 +257611,18 @@ 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, - [25210] = 8, + [28460] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5216), 1, - anon_sym_DOT, - STATE(1987), 1, - aux_sym_cell_path_repeat1, - STATE(2065), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2088), 1, sym_comment, - STATE(2197), 1, - sym_path, - STATE(2468), 1, - sym_cell_path, - ACTIONS(2068), 13, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5204), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255259,8 +257636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2070), 43, - ts_builtin_sym_end, + ACTIONS(5202), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255272,8 +257648,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255303,25 +257681,19 @@ 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, - [25289] = 8, + [28537] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5216), 1, - anon_sym_DOT, - STATE(1987), 1, - aux_sym_cell_path_repeat1, - STATE(2066), 1, + STATE(2089), 1, sym_comment, - STATE(2197), 1, - sym_path, - STATE(2470), 1, - sym_cell_path, - ACTIONS(2072), 13, + ACTIONS(2052), 15, + sym__newline, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255330,9 +257702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2074), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(2054), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255345,6 +257715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255366,6 +257737,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -255374,20 +257748,18 @@ 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, - [25368] = 8, + [28608] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5216), 1, - anon_sym_DOT, - STATE(1987), 1, - aux_sym_cell_path_repeat1, - STATE(2067), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2090), 1, sym_comment, - STATE(2197), 1, - sym_path, - STATE(2474), 1, - sym_cell_path, - ACTIONS(1907), 13, + STATE(2273), 1, + aux_sym_shebang_repeat1, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5194), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255401,8 +257773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1911), 43, - ts_builtin_sym_end, + ACTIONS(5192), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255414,8 +257785,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255445,20 +257818,112 @@ 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, - [25447] = 8, + [28685] = 38, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5216), 1, - anon_sym_DOT, - STATE(1987), 1, - aux_sym_cell_path_repeat1, - STATE(2068), 1, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3399), 1, + anon_sym_DASH2, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(2091), 1, sym_comment, - STATE(2197), 1, - sym_path, - STATE(2479), 1, - sym_cell_path, - ACTIONS(1913), 13, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5774), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [28823] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2092), 1, + sym_comment, + ACTIONS(2510), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255472,8 +257937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1915), 43, - ts_builtin_sym_end, + ACTIONS(2512), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255485,8 +257949,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255516,18 +257984,12 @@ 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, - [25526] = 7, + [28893] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2069), 1, + STATE(2093), 1, sym_comment, - STATE(2237), 1, - aux_sym_shebang_repeat1, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5214), 13, + ACTIONS(990), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255541,7 +258003,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5212), 44, + ACTIONS(992), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255553,10 +258016,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255578,6 +258041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -255586,18 +258050,12 @@ 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, - [25603] = 7, + [28963] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2070), 1, + STATE(2094), 1, sym_comment, - STATE(2305), 1, - aux_sym_shebang_repeat1, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5214), 13, + ACTIONS(2456), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255611,7 +258069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5212), 44, + ACTIONS(2458), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255627,6 +258085,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255656,18 +258116,12 @@ 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, - [25680] = 7, + [29033] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2071), 1, + STATE(2095), 1, sym_comment, - STATE(2269), 1, - aux_sym_shebang_repeat1, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5210), 13, + ACTIONS(2478), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255681,7 +258135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5208), 44, + ACTIONS(2480), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255697,6 +258151,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255726,23 +258182,18 @@ 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, - [25757] = 7, + [29103] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2072), 1, + STATE(2096), 1, sym_comment, - STATE(2186), 1, - aux_sym_shebang_repeat1, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5206), 13, + ACTIONS(2052), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255751,7 +258202,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5204), 44, + ACTIONS(2054), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255763,10 +258215,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255788,6 +258238,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -255796,18 +258248,12 @@ 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, - [25834] = 7, + [29173] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2073), 1, + STATE(2097), 1, sym_comment, - STATE(2218), 1, - aux_sym_shebang_repeat1, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5206), 13, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255821,7 +258267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5204), 44, + ACTIONS(5178), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255837,6 +258283,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255866,26 +258314,17 @@ 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, - [25911] = 9, + [29243] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1042), 1, - anon_sym_DOT_DOT2, - ACTIONS(4801), 1, - aux_sym_record_entry_token1, - STATE(2074), 1, + STATE(2098), 1, sym_comment, - ACTIONS(1044), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5222), 5, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5218), 9, - sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255894,7 +258333,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 19, + ACTIONS(5178), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255905,18 +258345,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(5224), 23, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255938,18 +258372,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25992] = 7, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [29313] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2075), 1, + STATE(2099), 1, sym_comment, - STATE(2233), 1, - aux_sym_shebang_repeat1, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5214), 13, + ACTIONS(2486), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255963,7 +258399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5212), 44, + ACTIONS(2488), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255979,6 +258415,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -256008,18 +258446,14 @@ 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, - [26069] = 7, + [29383] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2076), 1, + ACTIONS(5225), 1, + anon_sym_QMARK2, + STATE(2100), 1, sym_comment, - STATE(2273), 1, - aux_sym_shebang_repeat1, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5210), 13, + ACTIONS(978), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256033,7 +258467,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5208), 44, + ACTIONS(980), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256045,7 +258480,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -256070,6 +258504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256078,18 +258513,14 @@ 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, - [26146] = 7, + [29455] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2077), 1, + ACTIONS(5227), 1, + anon_sym_QMARK2, + STATE(2101), 1, sym_comment, - STATE(2287), 1, - aux_sym_shebang_repeat1, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5206), 13, + ACTIONS(984), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256103,7 +258534,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5204), 44, + ACTIONS(986), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256115,7 +258547,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -256140,6 +258571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256148,18 +258580,12 @@ 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, - [26223] = 7, + [29527] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2078), 1, + STATE(2102), 1, sym_comment, - STATE(2159), 1, - aux_sym_shebang_repeat1, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5206), 13, + ACTIONS(2347), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256173,7 +258599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5204), 44, + ACTIONS(2349), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256189,6 +258615,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -256218,23 +258646,558 @@ 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, - [26300] = 7, + [29597] = 38, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3399), 1, + anon_sym_DASH2, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(2103), 1, + sym_comment, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5791), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [29735] = 38, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3399), 1, + anon_sym_DASH2, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(2104), 1, + sym_comment, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5954), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [29873] = 38, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3399), 1, + anon_sym_DASH2, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(2105), 1, + sym_comment, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5989), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [30011] = 38, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3399), 1, + anon_sym_DASH2, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(2106), 1, + sym_comment, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5995), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [30149] = 38, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3399), 1, + anon_sym_DASH2, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(2107), 1, + sym_comment, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5798), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [30287] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2240), 1, anon_sym_LPAREN2, - STATE(2079), 1, + ACTIONS(2244), 1, + aux_sym_unquoted_token4, + STATE(2108), 1, sym_comment, - STATE(2235), 1, - aux_sym_shebang_repeat1, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5214), 13, + ACTIONS(2242), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2238), 44, anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256243,7 +259206,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5212), 44, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [30361] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2226), 1, + anon_sym_LPAREN2, + ACTIONS(2228), 1, + aux_sym_unquoted_token4, + STATE(2109), 1, + sym_comment, + ACTIONS(1028), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256256,9 +259236,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(1026), 44, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -256267,19 +259250,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256288,18 +259282,112 @@ 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, - [26377] = 7, + [30435] = 38, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + aux_sym_expr_unary_token1, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2080), 1, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, + sym_raw_string_begin, + ACTIONS(3335), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3337), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3339), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3341), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3359), 1, + anon_sym_null, + ACTIONS(3591), 1, + anon_sym_LPAREN, + ACTIONS(5214), 1, + anon_sym_DOLLAR, + ACTIONS(5216), 1, + anon_sym_DOT_DOT, + STATE(1729), 1, + sym__val_number, + STATE(2110), 1, sym_comment, - STATE(2275), 1, - aux_sym_shebang_repeat1, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5210), 13, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(2171), 1, + sym__inter_single_quotes, + STATE(2172), 1, + sym__inter_double_quotes, + STATE(3558), 1, + sym__val_number_decimal, + STATE(3626), 1, + sym_val_range, + STATE(3657), 1, + sym_val_variable, + STATE(3698), 1, + sym_expr_parenthesized, + STATE(3980), 1, + sym__expr_binary_expression, + STATE(7505), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3361), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1771), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2130), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(427), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2116), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [30573] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2111), 1, + sym_comment, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256313,7 +259401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5208), 44, + ACTIONS(5178), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256329,6 +259417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -256358,18 +259448,12 @@ 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, - [26454] = 7, + [30643] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2081), 1, + STATE(2112), 1, sym_comment, - STATE(2162), 1, - aux_sym_shebang_repeat1, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5206), 13, + ACTIONS(994), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256383,7 +259467,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5204), 44, + ACTIONS(996), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256395,10 +259480,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -256420,6 +259505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256428,18 +259514,12 @@ 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, - [26531] = 7, + [30713] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2082), 1, + STATE(2113), 1, sym_comment, - STATE(2167), 1, - aux_sym_shebang_repeat1, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5206), 13, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256453,7 +259533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5204), 44, + ACTIONS(5178), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256469,6 +259549,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -256498,12 +259580,12 @@ 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, - [26608] = 4, + [30783] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2083), 1, + STATE(2114), 1, sym_comment, - ACTIONS(2480), 13, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256517,7 +259599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2482), 47, + ACTIONS(5178), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256532,7 +259614,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -256565,18 +259646,112 @@ 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, - [26679] = 7, + [30853] = 38, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + aux_sym_expr_unary_token1, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2084), 1, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, + sym_raw_string_begin, + ACTIONS(3359), 1, + anon_sym_null, + ACTIONS(3475), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3477), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3479), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3481), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3591), 1, + anon_sym_LPAREN, + ACTIONS(5214), 1, + anon_sym_DOLLAR, + ACTIONS(5229), 1, + anon_sym_DOT_DOT, + STATE(1729), 1, + sym__val_number, + STATE(2115), 1, sym_comment, - STATE(2227), 1, - aux_sym_shebang_repeat1, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5214), 13, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(2171), 1, + sym__inter_single_quotes, + STATE(2172), 1, + sym__inter_double_quotes, + STATE(3599), 1, + sym__val_number_decimal, + STATE(3626), 1, + sym_val_range, + STATE(3716), 1, + sym_expr_parenthesized, + STATE(3717), 1, + sym_val_variable, + STATE(3986), 1, + sym__expr_binary_expression, + STATE(7718), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3361), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5231), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1771), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2130), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(427), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2116), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [30991] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2116), 1, + sym_comment, + ACTIONS(1026), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256590,7 +259765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5212), 44, + ACTIONS(1028), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256606,6 +259781,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -256635,17 +259812,12 @@ 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, - [26756] = 6, + [31061] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5226), 1, - anon_sym_DOT, - STATE(2197), 1, - sym_path, - STATE(2085), 2, + STATE(2117), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(971), 13, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256659,8 +259831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(973), 44, - ts_builtin_sym_end, + ACTIONS(5178), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256672,9 +259843,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -256704,25 +259878,58 @@ 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, - [26831] = 8, - ACTIONS(247), 1, + [31131] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5216), 1, - anon_sym_DOT, - STATE(1987), 1, - aux_sym_cell_path_repeat1, - STATE(2086), 1, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + STATE(2118), 1, sym_comment, - STATE(2197), 1, - sym_path, - STATE(2480), 1, - sym_cell_path, - ACTIONS(1925), 13, + ACTIONS(2250), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2246), 44, anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256731,8 +259938,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1927), 43, - ts_builtin_sym_end, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [31205] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + STATE(2119), 1, + sym_comment, + ACTIONS(2256), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256744,8 +259967,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2254), 44, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -256754,19 +259982,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256775,23 +260014,17 @@ 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, - [26910] = 8, + [31279] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1042), 1, - anon_sym_DOT_DOT2, - STATE(2087), 1, + STATE(2120), 1, sym_comment, - ACTIONS(1044), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5222), 5, + ACTIONS(2410), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5218), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256800,7 +260033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 21, + ACTIONS(2412), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256813,18 +260046,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(5224), 23, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -256846,18 +260072,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26989] = 7, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [31349] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2088), 1, + STATE(2121), 1, sym_comment, - STATE(2248), 1, - aux_sym_shebang_repeat1, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5198), 13, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256871,7 +260099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 44, + ACTIONS(5178), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256887,6 +260115,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -256916,12 +260146,12 @@ 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, - [27066] = 4, + [31419] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2089), 1, + STATE(2122), 1, sym_comment, - ACTIONS(2403), 13, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256935,7 +260165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2405), 46, + ACTIONS(5178), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256982,7 +260212,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, - [27136] = 38, + [31489] = 38, ACTIONS(153), 1, anon_sym_LBRACK, ACTIONS(181), 1, @@ -257005,43 +260235,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(435), 1, sym_raw_string_begin, - ACTIONS(3359), 1, - anon_sym_null, - ACTIONS(3399), 1, + ACTIONS(3335), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3401), 1, + ACTIONS(3337), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3403), 1, + ACTIONS(3339), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3405), 1, + ACTIONS(3341), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3619), 1, + ACTIONS(3359), 1, + anon_sym_null, + ACTIONS(3591), 1, anon_sym_LPAREN, - ACTIONS(5200), 1, + ACTIONS(5214), 1, anon_sym_DOLLAR, - ACTIONS(5229), 1, + ACTIONS(5216), 1, anon_sym_DOT_DOT, - STATE(1811), 1, + STATE(1729), 1, sym__val_number, - STATE(2090), 1, + STATE(2123), 1, sym_comment, STATE(2131), 1, + sym__expr_unary_minus, + STATE(2171), 1, sym__inter_single_quotes, - STATE(2132), 1, + STATE(2172), 1, sym__inter_double_quotes, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(3560), 1, + STATE(3558), 1, sym__val_number_decimal, - STATE(3597), 1, + STATE(3626), 1, sym_val_range, - STATE(3683), 1, - sym_expr_parenthesized, - STATE(3684), 1, + STATE(3657), 1, sym_val_variable, - STATE(3978), 1, + STATE(3698), 1, + sym_expr_parenthesized, + STATE(3980), 1, sym__expr_binary_expression, - STATE(7984), 1, + STATE(7527), 1, sym__expression, ACTIONS(231), 2, anon_sym_0o, @@ -257052,13 +260282,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3361), 2, anon_sym_true, anon_sym_false, - ACTIONS(5231), 2, + ACTIONS(5184), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(1821), 2, + STATE(1771), 2, sym__raw_str, sym__str_double_quotes, - STATE(2144), 3, + STATE(2130), 3, sym_expr_unary, sym_expr_binary, sym__value, @@ -257069,7 +260299,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2112), 12, + STATE(2116), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -257082,12 +260312,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [27274] = 4, + [31627] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2091), 1, + STATE(2124), 1, sym_comment, - ACTIONS(994), 13, + ACTIONS(2414), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257101,8 +260331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(996), 46, - ts_builtin_sym_end, + ACTIONS(2416), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257114,10 +260343,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_QMARK2, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -257139,7 +260370,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257148,14 +260378,12 @@ 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, - [27344] = 5, + [31697] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5233), 1, - anon_sym_QMARK2, - STATE(2092), 1, + STATE(2125), 1, sym_comment, - ACTIONS(978), 13, + ACTIONS(2418), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257169,8 +260397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(980), 45, - ts_builtin_sym_end, + ACTIONS(2420), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257182,9 +260409,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -257206,7 +260436,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257215,12 +260444,17 @@ 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, - [27416] = 4, + [31767] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2093), 1, + ACTIONS(4890), 1, + anon_sym_DOT_DOT2, + STATE(2126), 1, sym_comment, - ACTIONS(5222), 13, + ACTIONS(4892), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1026), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257234,7 +260468,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5224), 46, + ACTIONS(1028), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257246,12 +260481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -257281,14 +260512,12 @@ 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, - [27486] = 5, + [31841] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5235), 1, - anon_sym_QMARK2, - STATE(2094), 1, + STATE(2127), 1, sym_comment, - ACTIONS(984), 13, + ACTIONS(998), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257302,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(986), 45, + ACTIONS(1000), 46, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -257318,6 +260547,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [31911] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2128), 1, + sym_comment, + ACTIONS(1863), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1865), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -257339,7 +260636,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257348,12 +260644,12 @@ 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, - [27558] = 4, + [31981] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2095), 1, + STATE(2129), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(2238), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257367,7 +260663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 46, + ACTIONS(2242), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257414,17 +260710,18 @@ 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, - [27628] = 4, + [32051] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2096), 1, + STATE(2130), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(5208), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(5212), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257433,7 +260730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 46, + ACTIONS(5206), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257446,11 +260743,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(5210), 23, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -257472,20 +260778,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [27698] = 4, + [32125] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2097), 1, + STATE(2131), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(5235), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257499,7 +260797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 46, + ACTIONS(5233), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257546,12 +260844,12 @@ 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, - [27768] = 4, + [32195] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2098), 1, + STATE(2132), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257565,7 +260863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 46, + ACTIONS(5178), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257612,12 +260910,112 @@ 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, - [27838] = 4, + [32265] = 38, ACTIONS(247), 1, anon_sym_POUND, - STATE(2099), 1, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3399), 1, + anon_sym_DASH2, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(2133), 1, + sym_comment, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5804), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [32403] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2134), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(5208), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257631,7 +261029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 46, + ACTIONS(5210), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257678,12 +261076,12 @@ 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, - [27908] = 4, + [32473] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2100), 1, + STATE(2135), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(5239), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257697,7 +261095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 46, + ACTIONS(5237), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257744,12 +261142,112 @@ 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, - [27978] = 4, + [32543] = 38, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + aux_sym_expr_unary_token1, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - STATE(2101), 1, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, + sym_raw_string_begin, + ACTIONS(3335), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3337), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3339), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3341), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3359), 1, + anon_sym_null, + ACTIONS(3591), 1, + anon_sym_LPAREN, + ACTIONS(5214), 1, + anon_sym_DOLLAR, + ACTIONS(5216), 1, + anon_sym_DOT_DOT, + STATE(1729), 1, + sym__val_number, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(2136), 1, + sym_comment, + STATE(2171), 1, + sym__inter_single_quotes, + STATE(2172), 1, + sym__inter_double_quotes, + STATE(3558), 1, + sym__val_number_decimal, + STATE(3626), 1, + sym_val_range, + STATE(3657), 1, + sym_val_variable, + STATE(3698), 1, + sym_expr_parenthesized, + STATE(3980), 1, + sym__expr_binary_expression, + STATE(7674), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3361), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1771), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2130), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(427), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2116), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [32681] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2137), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(2398), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257763,7 +261261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 46, + ACTIONS(2400), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257810,12 +261308,12 @@ 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, - [28048] = 4, + [32751] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2102), 1, + STATE(2138), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(2268), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257829,7 +261327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 46, + ACTIONS(2270), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257876,12 +261374,12 @@ 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, - [28118] = 4, + [32821] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2103), 1, + STATE(2139), 1, sym_comment, - ACTIONS(5239), 13, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257895,7 +261393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 46, + ACTIONS(5241), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257942,17 +261440,18 @@ 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, - [28188] = 4, + [32891] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2104), 1, + STATE(2140), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(1733), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257961,7 +261460,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 46, + ACTIONS(1737), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257973,12 +261473,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -258000,6 +261496,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258008,83 +261506,1218 @@ 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, - [28258] = 4, + [32961] = 38, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3399), 1, + anon_sym_DASH2, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(2141), 1, + sym_comment, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5841), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [33099] = 38, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3399), 1, + anon_sym_DASH2, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(2142), 1, + sym_comment, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5845), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [33237] = 38, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3399), 1, + anon_sym_DASH2, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(2143), 1, + sym_comment, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5892), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [33375] = 38, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3399), 1, + anon_sym_DASH2, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(2144), 1, + sym_comment, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5897), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [33513] = 38, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3399), 1, + anon_sym_DASH2, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(2145), 1, + sym_comment, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5899), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [33651] = 38, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3399), 1, + anon_sym_DASH2, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(2146), 1, + sym_comment, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5900), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [33789] = 38, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3399), 1, + anon_sym_DASH2, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(2147), 1, + sym_comment, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5902), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [33927] = 38, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3399), 1, + anon_sym_DASH2, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(2148), 1, + sym_comment, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5903), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [34065] = 38, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3399), 1, + anon_sym_DASH2, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(2149), 1, + sym_comment, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5944), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [34203] = 38, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3399), 1, + anon_sym_DASH2, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(2150), 1, + sym_comment, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5945), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [34341] = 38, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3399), 1, + anon_sym_DASH2, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(2151), 1, + sym_comment, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5946), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [34479] = 38, ACTIONS(247), 1, anon_sym_POUND, - STATE(2105), 1, - sym_comment, - ACTIONS(5188), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5186), 46, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3399), 1, anon_sym_DASH2, - anon_sym_in2, + ACTIONS(3401), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [28328] = 4, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(2152), 1, + sym_comment, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5947), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [34617] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2106), 1, + STATE(2153), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(1044), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258093,7 +262726,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 46, + ACTIONS(1046), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258105,12 +262739,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -258132,6 +262762,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258140,26 +262772,112 @@ 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, - [28398] = 4, + [34687] = 38, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + aux_sym_expr_unary_token1, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - STATE(2107), 1, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, + sym_raw_string_begin, + ACTIONS(3335), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3337), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3339), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3341), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3359), 1, + anon_sym_null, + ACTIONS(3591), 1, + anon_sym_LPAREN, + ACTIONS(5214), 1, + anon_sym_DOLLAR, + ACTIONS(5216), 1, + anon_sym_DOT_DOT, + STATE(1729), 1, + sym__val_number, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(2154), 1, sym_comment, - ACTIONS(5188), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5186), 46, + STATE(2171), 1, + sym__inter_single_quotes, + STATE(2172), 1, + sym__inter_double_quotes, + STATE(3558), 1, + sym__val_number_decimal, + STATE(3626), 1, + sym_val_range, + STATE(3657), 1, + sym_val_variable, + STATE(3698), 1, + sym_expr_parenthesized, + STATE(3980), 1, + sym__expr_binary_expression, + STATE(7575), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3361), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1771), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2130), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(427), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2116), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [34825] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2155), 1, + sym_comment, + ACTIONS(2270), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258172,11 +262890,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN2, + ACTIONS(2268), 45, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -258185,38 +262905,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [28468] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2108), 1, - sym_comment, - ACTIONS(5188), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258225,45 +262929,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 46, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258272,78 +262937,113 @@ 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, - [28538] = 4, + aux_sym_unquoted_token4, + [34895] = 38, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + aux_sym_expr_unary_token1, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - STATE(2109), 1, - sym_comment, - ACTIONS(998), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1000), 46, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(385), 1, anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [28608] = 4, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, + sym_raw_string_begin, + ACTIONS(3335), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3337), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3339), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3341), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3359), 1, + anon_sym_null, + ACTIONS(3591), 1, + anon_sym_LPAREN, + ACTIONS(5214), 1, + anon_sym_DOLLAR, + ACTIONS(5216), 1, + anon_sym_DOT_DOT, + STATE(1729), 1, + sym__val_number, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(2156), 1, + sym_comment, + STATE(2171), 1, + sym__inter_single_quotes, + STATE(2172), 1, + sym__inter_double_quotes, + STATE(3558), 1, + sym__val_number_decimal, + STATE(3626), 1, + sym_val_range, + STATE(3657), 1, + sym_val_variable, + STATE(3698), 1, + sym_expr_parenthesized, + STATE(3980), 1, + sym__expr_binary_expression, + STATE(7602), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3361), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1771), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2130), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(427), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2116), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [35033] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2110), 1, + STATE(2157), 1, sym_comment, - ACTIONS(5243), 13, + ACTIONS(2430), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258357,7 +263057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5241), 46, + ACTIONS(2432), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258404,83 +263104,12 @@ 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, - [28678] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1042), 1, - anon_sym_DOT_DOT2, - ACTIONS(5245), 1, - sym__newline, - STATE(2111), 1, - sym_comment, - ACTIONS(1044), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5250), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5254), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5248), 19, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(5252), 23, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [28758] = 4, + [35103] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2112), 1, + STATE(2158), 1, sym_comment, - ACTIONS(1030), 13, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258494,7 +263123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1032), 46, + ACTIONS(5178), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258541,80 +263170,112 @@ 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, - [28828] = 6, + [35173] = 38, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(203), 1, + aux_sym_expr_unary_token1, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4819), 1, - anon_sym_DOT_DOT2, - STATE(2113), 1, - sym_comment, - ACTIONS(4821), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1030), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1032), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(385), 1, anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [28902] = 4, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, + sym_raw_string_begin, + ACTIONS(3335), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3337), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3339), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3341), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3359), 1, + anon_sym_null, + ACTIONS(3591), 1, + anon_sym_LPAREN, + ACTIONS(5214), 1, + anon_sym_DOLLAR, + ACTIONS(5216), 1, + anon_sym_DOT_DOT, + STATE(1729), 1, + sym__val_number, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(2159), 1, + sym_comment, + STATE(2171), 1, + sym__inter_single_quotes, + STATE(2172), 1, + sym__inter_double_quotes, + STATE(3558), 1, + sym__val_number_decimal, + STATE(3626), 1, + sym_val_range, + STATE(3657), 1, + sym_val_variable, + STATE(3698), 1, + sym_expr_parenthesized, + STATE(3980), 1, + sym__expr_binary_expression, + STATE(7610), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3361), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1771), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2130), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(427), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2116), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [35311] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2114), 1, + STATE(2160), 1, sym_comment, - ACTIONS(1002), 13, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258628,8 +263289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1004), 46, - ts_builtin_sym_end, + ACTIONS(5245), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258641,10 +263301,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_QMARK2, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -258666,7 +263328,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258675,12 +263336,12 @@ 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, - [28972] = 4, + [35381] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2115), 1, + STATE(2161), 1, sym_comment, - ACTIONS(2094), 13, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258694,7 +263355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2096), 46, + ACTIONS(5178), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258741,12 +263402,12 @@ 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, - [29042] = 4, + [35451] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2116), 1, + STATE(2162), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258760,7 +263421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2092), 46, + ACTIONS(5178), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258807,12 +263468,12 @@ 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, - [29112] = 4, + [35521] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2117), 1, + STATE(2163), 1, sym_comment, - ACTIONS(2383), 13, + ACTIONS(1847), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258826,7 +263487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2385), 46, + ACTIONS(1851), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258873,12 +263534,12 @@ 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, - [29182] = 4, + [35591] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2118), 1, + STATE(2164), 1, sym_comment, - ACTIONS(2500), 13, + ACTIONS(1002), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258892,7 +263553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2502), 46, + ACTIONS(1004), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258904,12 +263566,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -258931,6 +263591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258939,226 +263600,494 @@ 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, - [29252] = 4, + [35661] = 38, ACTIONS(247), 1, anon_sym_POUND, - STATE(2119), 1, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3399), 1, + anon_sym_DASH2, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(2165), 1, sym_comment, - ACTIONS(2395), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2397), 46, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5769), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [35799] = 38, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3399), 1, anon_sym_DASH2, - anon_sym_in2, + ACTIONS(3401), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [29322] = 4, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(2166), 1, + sym_comment, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5771), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [35937] = 38, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3399), 1, + anon_sym_DASH2, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(2167), 1, + sym_comment, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5778), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [36075] = 38, ACTIONS(247), 1, anon_sym_POUND, - STATE(2120), 1, - sym_comment, - ACTIONS(2399), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2401), 46, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(3393), 1, + anon_sym_LBRACK, + ACTIONS(3399), 1, anon_sym_DASH2, - anon_sym_in2, + ACTIONS(3401), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [29392] = 38, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, + ACTIONS(3413), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3415), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3417), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3419), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3425), 1, + anon_sym_0b, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3435), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3437), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5109), 1, + anon_sym_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_null, + ACTIONS(5117), 1, + sym_val_date, + STATE(2168), 1, + sym_comment, + STATE(3518), 1, + sym__inter_double_quotes, + STATE(3521), 1, + sym__val_number, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, + sym__val_number_decimal, + STATE(3622), 1, + sym_val_variable, + STATE(3624), 1, + sym_expr_parenthesized, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(3984), 1, + sym__expr_binary_expression, + STATE(5779), 1, + sym__expression, + ACTIONS(3427), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(3902), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(3421), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(3510), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [36213] = 38, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3439), 1, + ACTIONS(3393), 1, anon_sym_LBRACK, - ACTIONS(3445), 1, + ACTIONS(3399), 1, anon_sym_DASH2, - ACTIONS(3447), 1, + ACTIONS(3401), 1, anon_sym_LBRACE, - ACTIONS(3451), 1, + ACTIONS(3405), 1, aux_sym_expr_unary_token1, - ACTIONS(3459), 1, + ACTIONS(3413), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3461), 1, + ACTIONS(3415), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3463), 1, + ACTIONS(3417), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3465), 1, + ACTIONS(3419), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3471), 1, + ACTIONS(3425), 1, anon_sym_0b, - ACTIONS(3477), 1, + ACTIONS(3431), 1, anon_sym_DQUOTE, - ACTIONS(3481), 1, + ACTIONS(3435), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3483), 1, + ACTIONS(3437), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3487), 1, + ACTIONS(3441), 1, sym_raw_string_begin, - ACTIONS(4996), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5103), 1, anon_sym_DOLLAR, - ACTIONS(5004), 1, + ACTIONS(5109), 1, anon_sym_DOT_DOT, - ACTIONS(5008), 1, + ACTIONS(5113), 1, anon_sym_null, - ACTIONS(5012), 1, + ACTIONS(5117), 1, sym_val_date, - STATE(2121), 1, + STATE(2169), 1, sym_comment, - STATE(3486), 1, - sym__inter_single_quotes, - STATE(3489), 1, + STATE(3518), 1, sym__inter_double_quotes, - STATE(3492), 1, + STATE(3521), 1, sym__val_number, - STATE(3514), 1, + STATE(3540), 1, + sym__inter_single_quotes, + STATE(3544), 1, sym__val_number_decimal, - STATE(3594), 1, + STATE(3622), 1, sym_val_variable, - STATE(3597), 1, - sym_val_range, - STATE(3599), 1, + STATE(3624), 1, sym_expr_parenthesized, - STATE(3850), 1, + STATE(3626), 1, + sym_val_range, + STATE(3908), 1, sym__expr_unary_minus, - STATE(3977), 1, + STATE(3984), 1, sym__expr_binary_expression, - STATE(5656), 1, + STATE(5780), 1, sym__expression, - ACTIONS(3473), 2, + ACTIONS(3427), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3479), 2, + ACTIONS(3433), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5006), 2, + ACTIONS(5111), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5010), 2, + ACTIONS(5115), 2, anon_sym_true, anon_sym_false, - STATE(3584), 2, + STATE(3562), 2, sym__raw_str, sym__str_double_quotes, - STATE(3905), 3, + STATE(3902), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3467), 6, + ACTIONS(3421), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3532), 12, + STATE(3510), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -259171,23 +264100,23 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [29530] = 8, + [36351] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4819), 1, + ACTIONS(4890), 1, anon_sym_DOT_DOT2, - STATE(2122), 1, + STATE(2170), 1, sym_comment, - ACTIONS(4821), 2, + ACTIONS(4892), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5222), 5, + ACTIONS(5208), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5218), 8, + ACTIONS(5212), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259196,7 +264125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 20, + ACTIONS(5206), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -259217,7 +264146,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(5224), 23, + ACTIONS(5210), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -259241,12 +264170,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29608] = 4, + [36429] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2123), 1, + STATE(2171), 1, sym_comment, - ACTIONS(2407), 13, + ACTIONS(2464), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259260,7 +264189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2409), 46, + ACTIONS(2466), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259307,18 +264236,17 @@ 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, - [29678] = 4, + [36499] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2124), 1, + STATE(2172), 1, sym_comment, - ACTIONS(2125), 14, + ACTIONS(2464), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259327,62 +264255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2127), 45, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [29748] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2216), 1, - anon_sym_LPAREN2, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - STATE(2125), 1, - sym_comment, - ACTIONS(2224), 13, + ACTIONS(2466), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259395,12 +264268,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2222), 44, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -259409,30 +264281,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259441,118 +264302,25 @@ 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, - [29822] = 38, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3439), 1, - anon_sym_LBRACK, - ACTIONS(3445), 1, - anon_sym_DASH2, - ACTIONS(3447), 1, - anon_sym_LBRACE, - ACTIONS(3451), 1, - aux_sym_expr_unary_token1, - ACTIONS(3459), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3461), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3471), 1, - anon_sym_0b, - ACTIONS(3477), 1, - anon_sym_DQUOTE, - ACTIONS(3481), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3483), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3487), 1, - sym_raw_string_begin, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_DOLLAR, - ACTIONS(5004), 1, - anon_sym_DOT_DOT, - ACTIONS(5008), 1, - anon_sym_null, - ACTIONS(5012), 1, - sym_val_date, - STATE(2126), 1, - sym_comment, - STATE(3486), 1, - sym__inter_single_quotes, - STATE(3489), 1, - sym__inter_double_quotes, - STATE(3492), 1, - sym__val_number, - STATE(3514), 1, - sym__val_number_decimal, - STATE(3594), 1, - sym_val_variable, - STATE(3597), 1, - sym_val_range, - STATE(3599), 1, - sym_expr_parenthesized, - STATE(3850), 1, - sym__expr_unary_minus, - STATE(3977), 1, - sym__expr_binary_expression, - STATE(5646), 1, - sym__expression, - ACTIONS(3473), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3479), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5006), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5010), 2, - anon_sym_true, - anon_sym_false, - STATE(3584), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3905), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3467), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3532), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [29960] = 4, + [36569] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(2127), 1, + ACTIONS(1038), 1, + anon_sym_DOT_DOT2, + ACTIONS(5249), 1, + sym__newline, + STATE(2173), 1, sym_comment, - ACTIONS(1735), 14, + ACTIONS(1040), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5254), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, + ACTIONS(5258), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259561,9 +264329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1737), 45, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5252), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259574,31 +264340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_RPAREN, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259607,39 +264349,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, - [30030] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2128), 1, - sym_comment, - ACTIONS(1018), 14, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1020), 45, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(5256), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -259663,22 +264373,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [30100] = 4, + [36649] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2129), 1, + STATE(2174), 1, sym_comment, - ACTIONS(2248), 13, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259692,7 +264392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2250), 46, + ACTIONS(5178), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259739,94 +264439,94 @@ 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, - [30170] = 38, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3439), 1, + [36719] = 38, + ACTIONS(153), 1, anon_sym_LBRACK, - ACTIONS(3445), 1, - anon_sym_DASH2, - ACTIONS(3447), 1, + ACTIONS(181), 1, anon_sym_LBRACE, - ACTIONS(3451), 1, + ACTIONS(203), 1, aux_sym_expr_unary_token1, - ACTIONS(3459), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3461), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3471), 1, + ACTIONS(229), 1, anon_sym_0b, - ACTIONS(3477), 1, - anon_sym_DQUOTE, - ACTIONS(3481), 1, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(239), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3483), 1, + ACTIONS(241), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3487), 1, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, sym_raw_string_begin, - ACTIONS(4996), 1, + ACTIONS(3335), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3337), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3339), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3341), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3359), 1, + anon_sym_null, + ACTIONS(3591), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5214), 1, anon_sym_DOLLAR, - ACTIONS(5004), 1, + ACTIONS(5216), 1, anon_sym_DOT_DOT, - ACTIONS(5008), 1, - anon_sym_null, - ACTIONS(5012), 1, - sym_val_date, - STATE(2130), 1, - sym_comment, - STATE(3486), 1, + STATE(1729), 1, + sym__val_number, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(2171), 1, sym__inter_single_quotes, - STATE(3489), 1, + STATE(2172), 1, sym__inter_double_quotes, - STATE(3492), 1, - sym__val_number, - STATE(3514), 1, + STATE(2175), 1, + sym_comment, + STATE(3558), 1, sym__val_number_decimal, - STATE(3594), 1, - sym_val_variable, - STATE(3597), 1, + STATE(3626), 1, sym_val_range, - STATE(3599), 1, + STATE(3657), 1, + sym_val_variable, + STATE(3698), 1, sym_expr_parenthesized, - STATE(3850), 1, - sym__expr_unary_minus, - STATE(3977), 1, + STATE(3980), 1, sym__expr_binary_expression, - STATE(5626), 1, + STATE(7658), 1, sym__expression, - ACTIONS(3473), 2, + ACTIONS(231), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3479), 2, + ACTIONS(433), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5006), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5010), 2, + ACTIONS(3361), 2, anon_sym_true, anon_sym_false, - STATE(3584), 2, + ACTIONS(5184), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1771), 2, sym__raw_str, sym__str_double_quotes, - STATE(3905), 3, + STATE(2130), 3, sym_expr_unary, sym_expr_binary, sym__value, - ACTIONS(3467), 6, + ACTIONS(427), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3532), 12, + STATE(2116), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -259839,12 +264539,14 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [30308] = 4, + [36857] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2131), 1, + STATE(2176), 1, sym_comment, - ACTIONS(2347), 13, + STATE(2238), 1, + aux_sym_shebang_repeat1, + ACTIONS(5200), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259858,7 +264560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2349), 46, + ACTIONS(5198), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259874,8 +264576,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -259905,12 +264605,14 @@ 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, - [30378] = 4, + [36928] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2132), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2177), 1, sym_comment, - ACTIONS(2347), 13, + ACTIONS(5262), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259924,7 +264626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2349), 46, + ACTIONS(5260), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259940,8 +264642,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -259971,12 +264671,14 @@ 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, - [30448] = 4, + [36999] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2133), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2178), 1, sym_comment, - ACTIONS(2492), 13, + ACTIONS(5262), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259990,7 +264692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2494), 46, + ACTIONS(5260), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260006,8 +264708,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -260037,12 +264737,12 @@ 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, - [30518] = 4, + [37070] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2134), 1, + STATE(2179), 1, sym_comment, - ACTIONS(2508), 13, + ACTIONS(1014), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260056,7 +264756,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2510), 46, + ACTIONS(1016), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260068,12 +264769,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -260095,6 +264793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260103,112 +264802,14 @@ 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, - [30588] = 38, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(203), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(435), 1, - sym_raw_string_begin, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3321), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3323), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3325), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3359), 1, - anon_sym_null, - ACTIONS(3619), 1, - anon_sym_LPAREN, - ACTIONS(5200), 1, - anon_sym_DOLLAR, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - STATE(1811), 1, - sym__val_number, - STATE(2131), 1, - sym__inter_single_quotes, - STATE(2132), 1, - sym__inter_double_quotes, - STATE(2135), 1, - sym_comment, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(3569), 1, - sym__val_number_decimal, - STATE(3597), 1, - sym_val_range, - STATE(3641), 1, - sym_expr_parenthesized, - STATE(3658), 1, - sym_val_variable, - STATE(3974), 1, - sym__expr_binary_expression, - STATE(7530), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3361), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5184), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1821), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2144), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(427), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2112), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [30726] = 4, + [37139] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2136), 1, + ACTIONS(4866), 1, + aux_sym_unquoted_token2, + STATE(2180), 1, sym_comment, - ACTIONS(2464), 13, + ACTIONS(1707), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260222,7 +264823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2466), 46, + ACTIONS(1719), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260237,9 +264838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -260269,12 +264868,16 @@ 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, - [30796] = 4, + [37210] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2137), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2181), 1, sym_comment, - ACTIONS(2468), 13, + STATE(7470), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260288,7 +264891,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2470), 46, + ACTIONS(5178), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260300,12 +264904,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -260335,12 +264935,100 @@ 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, - [30866] = 4, - ACTIONS(3), 1, + [37283] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2138), 1, + ACTIONS(5264), 1, + anon_sym_DOT, + STATE(2182), 1, + sym_comment, + STATE(2404), 1, + aux_sym_cell_path_repeat1, + STATE(2575), 1, + sym_path, + STATE(2650), 1, + sym_cell_path, + ACTIONS(1747), 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(1749), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [37360] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2183), 1, sym_comment, - ACTIONS(2250), 14, + STATE(7470), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5180), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5178), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260352,14 +265040,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LPAREN2, - ACTIONS(2248), 45, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -260368,30 +265050,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260400,13 +265071,14 @@ 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, - aux_sym_unquoted_token4, - [30936] = 4, + [37433] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2139), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2184), 1, sym_comment, - ACTIONS(990), 13, + ACTIONS(5268), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260420,8 +265092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(992), 46, - ts_builtin_sym_end, + ACTIONS(5266), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260433,10 +265104,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -260453,326 +265124,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [31006] = 38, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(203), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(435), 1, - sym_raw_string_begin, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3321), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3323), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3325), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3359), 1, - anon_sym_null, - ACTIONS(3619), 1, - anon_sym_LPAREN, - ACTIONS(5200), 1, - anon_sym_DOLLAR, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - STATE(1811), 1, - sym__val_number, - STATE(2131), 1, - sym__inter_single_quotes, - STATE(2132), 1, - sym__inter_double_quotes, - STATE(2140), 1, - sym_comment, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(3569), 1, - sym__val_number_decimal, - STATE(3597), 1, - sym_val_range, - STATE(3641), 1, - sym_expr_parenthesized, - STATE(3658), 1, - sym_val_variable, - STATE(3974), 1, - sym__expr_binary_expression, - STATE(7527), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3361), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5184), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1821), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2144), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(427), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2112), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [31144] = 38, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(203), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(435), 1, - sym_raw_string_begin, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3321), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3323), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3325), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3359), 1, - anon_sym_null, - ACTIONS(3619), 1, - anon_sym_LPAREN, - ACTIONS(5200), 1, - anon_sym_DOLLAR, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - STATE(1811), 1, - sym__val_number, - STATE(2131), 1, - sym__inter_single_quotes, - STATE(2132), 1, - sym__inter_double_quotes, - STATE(2141), 1, - sym_comment, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(3569), 1, - sym__val_number_decimal, - STATE(3597), 1, - sym_val_range, - STATE(3641), 1, - sym_expr_parenthesized, - STATE(3658), 1, - sym_val_variable, - STATE(3974), 1, - sym__expr_binary_expression, - STATE(7431), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3361), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5184), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1821), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2144), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(427), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2112), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [31282] = 38, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(203), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(435), 1, - sym_raw_string_begin, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3321), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3323), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3325), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3359), 1, - anon_sym_null, - ACTIONS(3619), 1, - anon_sym_LPAREN, - ACTIONS(5200), 1, - anon_sym_DOLLAR, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - STATE(1811), 1, - sym__val_number, - STATE(2131), 1, - sym__inter_single_quotes, - STATE(2132), 1, - sym__inter_double_quotes, - STATE(2142), 1, - sym_comment, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(3569), 1, - sym__val_number_decimal, - STATE(3597), 1, - sym_val_range, - STATE(3641), 1, - sym_expr_parenthesized, - STATE(3658), 1, - sym_val_variable, - STATE(3974), 1, - sym__expr_binary_expression, - STATE(7526), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3361), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5184), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1821), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2144), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(427), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2112), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [31420] = 4, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [37504] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2143), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2185), 1, sym_comment, - ACTIONS(2206), 13, + ACTIONS(5262), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260786,7 +265158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2210), 46, + ACTIONS(5260), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260802,8 +265174,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -260833,18 +265203,19 @@ 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, - [31490] = 6, + [37575] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2144), 1, + STATE(2186), 1, sym_comment, - ACTIONS(5222), 5, + STATE(2270), 1, + aux_sym_shebang_repeat1, + ACTIONS(5200), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5218), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260853,7 +265224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 23, + ACTIONS(5198), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260866,9 +265237,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260877,9 +265269,43 @@ 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(5224), 23, + [37646] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2187), 1, + sym_comment, + ACTIONS(5272), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5270), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -260901,12 +265327,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31564] = 4, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [37717] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2145), 1, + STATE(2188), 1, sym_comment, - ACTIONS(5258), 13, + STATE(2249), 1, + aux_sym_shebang_repeat1, + ACTIONS(5194), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260920,7 +265356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5256), 46, + ACTIONS(5192), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260936,8 +265372,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -260967,716 +265401,28 @@ 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, - [31634] = 38, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3439), 1, - anon_sym_LBRACK, - ACTIONS(3445), 1, - anon_sym_DASH2, - ACTIONS(3447), 1, - anon_sym_LBRACE, - ACTIONS(3451), 1, - aux_sym_expr_unary_token1, - ACTIONS(3459), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3461), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3471), 1, - anon_sym_0b, - ACTIONS(3477), 1, - anon_sym_DQUOTE, - ACTIONS(3481), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3483), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3487), 1, - sym_raw_string_begin, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_DOLLAR, - ACTIONS(5004), 1, - anon_sym_DOT_DOT, - ACTIONS(5008), 1, - anon_sym_null, - ACTIONS(5012), 1, - sym_val_date, - STATE(2146), 1, - sym_comment, - STATE(3486), 1, - sym__inter_single_quotes, - STATE(3489), 1, - sym__inter_double_quotes, - STATE(3492), 1, - sym__val_number, - STATE(3514), 1, - sym__val_number_decimal, - STATE(3594), 1, - sym_val_variable, - STATE(3597), 1, - sym_val_range, - STATE(3599), 1, - sym_expr_parenthesized, - STATE(3850), 1, - sym__expr_unary_minus, - STATE(3977), 1, - sym__expr_binary_expression, - STATE(5715), 1, - sym__expression, - ACTIONS(3473), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3479), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5006), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5010), 2, - anon_sym_true, - anon_sym_false, - STATE(3584), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3905), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3467), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3532), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [31772] = 38, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3439), 1, - anon_sym_LBRACK, - ACTIONS(3445), 1, - anon_sym_DASH2, - ACTIONS(3447), 1, - anon_sym_LBRACE, - ACTIONS(3451), 1, - aux_sym_expr_unary_token1, - ACTIONS(3459), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3461), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3471), 1, - anon_sym_0b, - ACTIONS(3477), 1, - anon_sym_DQUOTE, - ACTIONS(3481), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3483), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3487), 1, - sym_raw_string_begin, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_DOLLAR, - ACTIONS(5004), 1, - anon_sym_DOT_DOT, - ACTIONS(5008), 1, - anon_sym_null, - ACTIONS(5012), 1, - sym_val_date, - STATE(2147), 1, - sym_comment, - STATE(3486), 1, - sym__inter_single_quotes, - STATE(3489), 1, - sym__inter_double_quotes, - STATE(3492), 1, - sym__val_number, - STATE(3514), 1, - sym__val_number_decimal, - STATE(3594), 1, - sym_val_variable, - STATE(3597), 1, - sym_val_range, - STATE(3599), 1, - sym_expr_parenthesized, - STATE(3850), 1, - sym__expr_unary_minus, - STATE(3977), 1, - sym__expr_binary_expression, - STATE(5709), 1, - sym__expression, - ACTIONS(3473), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3479), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5006), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5010), 2, - anon_sym_true, - anon_sym_false, - STATE(3584), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3905), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3467), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3532), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [31910] = 38, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3439), 1, - anon_sym_LBRACK, - ACTIONS(3445), 1, - anon_sym_DASH2, - ACTIONS(3447), 1, - anon_sym_LBRACE, - ACTIONS(3451), 1, - aux_sym_expr_unary_token1, - ACTIONS(3459), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3461), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3471), 1, - anon_sym_0b, - ACTIONS(3477), 1, - anon_sym_DQUOTE, - ACTIONS(3481), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3483), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3487), 1, - sym_raw_string_begin, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_DOLLAR, - ACTIONS(5004), 1, - anon_sym_DOT_DOT, - ACTIONS(5008), 1, - anon_sym_null, - ACTIONS(5012), 1, - sym_val_date, - STATE(2148), 1, - sym_comment, - STATE(3486), 1, - sym__inter_single_quotes, - STATE(3489), 1, - sym__inter_double_quotes, - STATE(3492), 1, - sym__val_number, - STATE(3514), 1, - sym__val_number_decimal, - STATE(3594), 1, - sym_val_variable, - STATE(3597), 1, - sym_val_range, - STATE(3599), 1, - sym_expr_parenthesized, - STATE(3850), 1, - sym__expr_unary_minus, - STATE(3977), 1, - sym__expr_binary_expression, - STATE(5726), 1, - sym__expression, - ACTIONS(3473), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3479), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5006), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5010), 2, - anon_sym_true, - anon_sym_false, - STATE(3584), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3905), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3467), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3532), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [32048] = 38, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3439), 1, - anon_sym_LBRACK, - ACTIONS(3445), 1, - anon_sym_DASH2, - ACTIONS(3447), 1, - anon_sym_LBRACE, - ACTIONS(3451), 1, - aux_sym_expr_unary_token1, - ACTIONS(3459), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3461), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3471), 1, - anon_sym_0b, - ACTIONS(3477), 1, - anon_sym_DQUOTE, - ACTIONS(3481), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3483), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3487), 1, - sym_raw_string_begin, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_DOLLAR, - ACTIONS(5004), 1, - anon_sym_DOT_DOT, - ACTIONS(5008), 1, - anon_sym_null, - ACTIONS(5012), 1, - sym_val_date, - STATE(2149), 1, - sym_comment, - STATE(3486), 1, - sym__inter_single_quotes, - STATE(3489), 1, - sym__inter_double_quotes, - STATE(3492), 1, - sym__val_number, - STATE(3514), 1, - sym__val_number_decimal, - STATE(3594), 1, - sym_val_variable, - STATE(3597), 1, - sym_val_range, - STATE(3599), 1, - sym_expr_parenthesized, - STATE(3850), 1, - sym__expr_unary_minus, - STATE(3977), 1, - sym__expr_binary_expression, - STATE(5620), 1, - sym__expression, - ACTIONS(3473), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3479), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5006), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5010), 2, - anon_sym_true, - anon_sym_false, - STATE(3584), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3905), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3467), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3532), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [32186] = 38, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(203), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(435), 1, - sym_raw_string_begin, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3321), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3323), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3325), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3359), 1, - anon_sym_null, - ACTIONS(3619), 1, - anon_sym_LPAREN, - ACTIONS(5200), 1, - anon_sym_DOLLAR, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - STATE(1811), 1, - sym__val_number, - STATE(2131), 1, - sym__inter_single_quotes, - STATE(2132), 1, - sym__inter_double_quotes, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(2150), 1, - sym_comment, - STATE(3569), 1, - sym__val_number_decimal, - STATE(3597), 1, - sym_val_range, - STATE(3641), 1, - sym_expr_parenthesized, - STATE(3658), 1, - sym_val_variable, - STATE(3974), 1, - sym__expr_binary_expression, - STATE(7468), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3361), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5184), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1821), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2144), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(427), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2112), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [32324] = 38, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(203), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(435), 1, - sym_raw_string_begin, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3321), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3323), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3325), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3359), 1, - anon_sym_null, - ACTIONS(3619), 1, - anon_sym_LPAREN, - ACTIONS(5200), 1, - anon_sym_DOLLAR, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - STATE(1811), 1, - sym__val_number, - STATE(2131), 1, - sym__inter_single_quotes, - STATE(2132), 1, - sym__inter_double_quotes, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(2151), 1, - sym_comment, - STATE(3569), 1, - sym__val_number_decimal, - STATE(3597), 1, - sym_val_range, - STATE(3641), 1, - sym_expr_parenthesized, - STATE(3658), 1, - sym_val_variable, - STATE(3974), 1, - sym__expr_binary_expression, - STATE(7534), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3361), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5184), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1821), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2144), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(427), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2112), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [32462] = 38, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(203), 1, - aux_sym_expr_unary_token1, - ACTIONS(229), 1, - anon_sym_0b, - ACTIONS(233), 1, - sym_val_date, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, + [37788] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(435), 1, - sym_raw_string_begin, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3321), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3323), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3325), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3359), 1, - anon_sym_null, - ACTIONS(3619), 1, - anon_sym_LPAREN, - ACTIONS(5200), 1, - anon_sym_DOLLAR, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - STATE(1811), 1, - sym__val_number, - STATE(2131), 1, - sym__inter_single_quotes, - STATE(2132), 1, - sym__inter_double_quotes, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(2152), 1, - sym_comment, - STATE(3569), 1, - sym__val_number_decimal, - STATE(3597), 1, - sym_val_range, - STATE(3641), 1, - sym_expr_parenthesized, - STATE(3658), 1, - sym_val_variable, - STATE(3974), 1, - sym__expr_binary_expression, - STATE(7353), 1, - sym__expression, - ACTIONS(231), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3361), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5184), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1821), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2144), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(427), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2112), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [32600] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2208), 1, - anon_sym_LPAREN2, - ACTIONS(2212), 1, - aux_sym_unquoted_token4, - STATE(2153), 1, + STATE(2189), 1, sym_comment, - ACTIONS(2210), 13, + STATE(2271), 1, + aux_sym_shebang_repeat1, + ACTIONS(5194), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5192), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261689,12 +265435,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2206), 44, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -261703,22 +265446,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [37859] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2190), 1, + sym_comment, + ACTIONS(5272), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261727,6 +265488,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5270), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261735,16 +265533,28 @@ 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, - [32674] = 6, - ACTIONS(3), 1, + [37930] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2202), 1, - anon_sym_LPAREN2, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(2154), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2191), 1, sym_comment, - ACTIONS(1032), 13, + ACTIONS(5268), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5266), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261757,12 +265567,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(1030), 44, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -261771,22 +265578,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [38001] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2192), 1, + sym_comment, + ACTIONS(5268), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261795,6 +265620,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5266), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261803,12 +265665,14 @@ 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, - [32748] = 4, + [38072] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2155), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2193), 1, sym_comment, - ACTIONS(5262), 13, + ACTIONS(5268), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -261822,7 +265686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5260), 46, + ACTIONS(5266), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261838,8 +265702,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -261869,16 +265731,28 @@ 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, - [32818] = 6, - ACTIONS(3), 1, + [38143] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2216), 1, - anon_sym_LPAREN2, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - STATE(2156), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2194), 1, sym_comment, - ACTIONS(2218), 13, + ACTIONS(5262), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5260), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261891,12 +265765,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2214), 44, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -261905,22 +265776,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [38214] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2195), 1, + sym_comment, + ACTIONS(5268), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261929,6 +265818,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5266), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261937,116 +265863,14 @@ 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, - [32892] = 38, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3439), 1, - anon_sym_LBRACK, - ACTIONS(3445), 1, - anon_sym_DASH2, - ACTIONS(3447), 1, - anon_sym_LBRACE, - ACTIONS(3451), 1, - aux_sym_expr_unary_token1, - ACTIONS(3459), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3461), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3463), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3465), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3471), 1, - anon_sym_0b, - ACTIONS(3477), 1, - anon_sym_DQUOTE, - ACTIONS(3481), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3483), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3487), 1, - sym_raw_string_begin, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_DOLLAR, - ACTIONS(5004), 1, - anon_sym_DOT_DOT, - ACTIONS(5008), 1, - anon_sym_null, - ACTIONS(5012), 1, - sym_val_date, - STATE(2157), 1, - sym_comment, - STATE(3486), 1, - sym__inter_single_quotes, - STATE(3489), 1, - sym__inter_double_quotes, - STATE(3492), 1, - sym__val_number, - STATE(3514), 1, - sym__val_number_decimal, - STATE(3594), 1, - sym_val_variable, - STATE(3597), 1, - sym_val_range, - STATE(3599), 1, - sym_expr_parenthesized, - STATE(3850), 1, - sym__expr_unary_minus, - STATE(3977), 1, - sym__expr_binary_expression, - STATE(5657), 1, - sym__expression, - ACTIONS(3473), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3479), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5006), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5010), 2, - anon_sym_true, - anon_sym_false, - STATE(3584), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(3905), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(3467), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3532), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [33030] = 6, + [38285] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2158), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2196), 1, sym_comment, - STATE(7396), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + ACTIONS(5268), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262060,8 +265884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 43, - ts_builtin_sym_end, + ACTIONS(5266), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262073,8 +265896,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -262104,14 +265929,14 @@ 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, - [33103] = 5, + [38356] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2159), 1, + STATE(2197), 1, sym_comment, - ACTIONS(5266), 13, + ACTIONS(5268), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262125,7 +265950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5264), 44, + ACTIONS(5266), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262170,14 +265995,14 @@ 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, - [33174] = 5, + [38427] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2160), 1, + STATE(2198), 1, sym_comment, - STATE(2228), 1, + STATE(2287), 1, aux_sym_shebang_repeat1, - ACTIONS(5214), 13, + ACTIONS(5200), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262191,7 +266016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5212), 44, + ACTIONS(5198), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262236,14 +266061,14 @@ 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, - [33245] = 5, + [38498] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2161), 1, + STATE(2199), 1, sym_comment, - STATE(2249), 1, + STATE(2214), 1, aux_sym_shebang_repeat1, - ACTIONS(5210), 13, + ACTIONS(5204), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262257,7 +266082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5208), 44, + ACTIONS(5202), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262302,14 +266127,14 @@ 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, - [33316] = 5, + [38569] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2162), 1, + STATE(2200), 1, sym_comment, - ACTIONS(5266), 13, + STATE(2272), 1, + aux_sym_shebang_repeat1, + ACTIONS(5194), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262323,7 +266148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5264), 44, + ACTIONS(5192), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262368,14 +266193,14 @@ 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, - [33387] = 5, + [38640] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2163), 1, - sym_comment, - STATE(2212), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(5206), 13, + STATE(2201), 1, + sym_comment, + ACTIONS(5272), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262389,7 +266214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5204), 44, + ACTIONS(5270), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262434,14 +266259,14 @@ 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, - [33458] = 5, + [38711] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2164), 1, - sym_comment, - STATE(2251), 1, + STATE(2195), 1, aux_sym_shebang_repeat1, - ACTIONS(5210), 13, + STATE(2202), 1, + sym_comment, + ACTIONS(5204), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262455,7 +266280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5208), 44, + ACTIONS(5202), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262500,14 +266325,14 @@ 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, - [33529] = 5, + [38782] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2165), 1, + STATE(2203), 1, sym_comment, - STATE(2229), 1, + STATE(2273), 1, aux_sym_shebang_repeat1, - ACTIONS(5214), 13, + ACTIONS(5194), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262521,7 +266346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5212), 44, + ACTIONS(5192), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262566,14 +266391,14 @@ 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, - [33600] = 5, + [38853] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2166), 1, + STATE(2204), 1, sym_comment, - STATE(2254), 1, + STATE(2278), 1, aux_sym_shebang_repeat1, - ACTIONS(5210), 13, + ACTIONS(5200), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262587,7 +266412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5208), 44, + ACTIONS(5198), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262632,14 +266457,14 @@ 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, - [33671] = 5, + [38924] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2167), 1, + STATE(2205), 1, sym_comment, - ACTIONS(5266), 13, + ACTIONS(5272), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262653,7 +266478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5264), 44, + ACTIONS(5270), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262698,145 +266523,14 @@ 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, - [33742] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2168), 1, - sym_comment, - ACTIONS(5088), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5086), 45, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [33811] = 5, + [38995] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2169), 1, - sym_comment, - STATE(2256), 1, + STATE(2191), 1, aux_sym_shebang_repeat1, - ACTIONS(5210), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5208), 44, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [33882] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2170), 1, + STATE(2206), 1, sym_comment, - STATE(2230), 1, - aux_sym_shebang_repeat1, - ACTIONS(5214), 13, + ACTIONS(5204), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262850,7 +266544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5212), 44, + ACTIONS(5202), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262895,14 +266589,14 @@ 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, - [33953] = 5, + [39066] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2171), 1, - sym_comment, - STATE(2258), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(5210), 13, + STATE(2207), 1, + sym_comment, + ACTIONS(5268), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262916,7 +266610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5208), 44, + ACTIONS(5266), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262961,14 +266655,14 @@ 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, - [34024] = 5, + [39137] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2172), 1, + STATE(2208), 1, sym_comment, - ACTIONS(5266), 13, + ACTIONS(5276), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262982,7 +266676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5264), 44, + ACTIONS(5274), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263027,80 +266721,14 @@ 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, - [34095] = 5, + [39208] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2173), 1, - sym_comment, - STATE(2260), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(5210), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5208), 44, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [34166] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2174), 1, + STATE(2209), 1, sym_comment, - STATE(2263), 1, - aux_sym_shebang_repeat1, - ACTIONS(5210), 13, + ACTIONS(5268), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263114,7 +266742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5208), 44, + ACTIONS(5266), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263159,14 +266787,14 @@ 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, - [34237] = 5, + [39279] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2175), 1, - sym_comment, - STATE(2265), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(5210), 13, + STATE(2210), 1, + sym_comment, + ACTIONS(5268), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263180,7 +266808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5208), 44, + ACTIONS(5266), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263225,14 +266853,14 @@ 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, - [34308] = 5, + [39350] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2176), 1, + STATE(2211), 1, sym_comment, - STATE(2268), 1, + STATE(2286), 1, aux_sym_shebang_repeat1, - ACTIONS(5270), 13, + ACTIONS(5200), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263246,7 +266874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5268), 44, + ACTIONS(5198), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263291,14 +266919,79 @@ 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, - [34379] = 5, - ACTIONS(247), 1, + [39421] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2177), 1, + STATE(2212), 1, sym_comment, - STATE(2191), 1, + ACTIONS(2270), 13, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LPAREN2, + ACTIONS(2268), 45, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token4, + [39490] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(5274), 13, + STATE(2213), 1, + sym_comment, + ACTIONS(5262), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263312,7 +267005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5272), 44, + ACTIONS(5260), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263357,14 +267050,14 @@ 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, - [34450] = 5, + [39561] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2178), 1, - sym_comment, - STATE(2269), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(5210), 13, + STATE(2214), 1, + sym_comment, + ACTIONS(5268), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263378,7 +267071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5208), 44, + ACTIONS(5266), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263423,12 +267116,14 @@ 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, - [34521] = 4, + [39632] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2179), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2215), 1, sym_comment, - ACTIONS(5022), 13, + ACTIONS(5268), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263442,8 +267137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5020), 45, - ts_builtin_sym_end, + ACTIONS(5266), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263455,6 +267149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -263470,7 +267165,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -263488,14 +267182,12 @@ 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, - [34590] = 5, + [39703] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2180), 1, + STATE(2216), 1, sym_comment, - STATE(2215), 1, - aux_sym_shebang_repeat1, - ACTIONS(5206), 13, + ACTIONS(5054), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263509,7 +267201,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5204), 44, + ACTIONS(5052), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263521,7 +267214,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -263537,6 +267229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -263554,14 +267247,14 @@ 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, - [34661] = 5, + [39772] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2181), 1, - sym_comment, - STATE(2231), 1, + STATE(2187), 1, aux_sym_shebang_repeat1, - ACTIONS(5214), 13, + STATE(2217), 1, + sym_comment, + ACTIONS(5200), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263575,7 +267268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5212), 44, + ACTIONS(5198), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263620,14 +267313,14 @@ 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, - [34732] = 5, + [39843] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2182), 1, - sym_comment, - STATE(2273), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(5210), 13, + STATE(2218), 1, + sym_comment, + ACTIONS(5268), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263641,7 +267334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5208), 44, + ACTIONS(5266), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263686,14 +267379,157 @@ 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, - [34803] = 5, + [39914] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2183), 1, + ACTIONS(5264), 1, + anon_sym_DOT, + STATE(2219), 1, sym_comment, - STATE(2184), 1, + STATE(2404), 1, + aux_sym_cell_path_repeat1, + STATE(2575), 1, + sym_path, + STATE(2658), 1, + sym_cell_path, + ACTIONS(1733), 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(1737), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [39991] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1559), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2540), 1, + anon_sym_DOLLAR, + ACTIONS(5278), 1, + anon_sym_LPAREN2, + ACTIONS(5280), 1, + anon_sym_DOT, + ACTIONS(5284), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5286), 1, + aux_sym__immediate_decimal_token5, + STATE(2220), 1, + sym_comment, + STATE(2687), 1, + sym__immediate_decimal, + ACTIONS(1557), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5282), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2848), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1543), 45, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [40078] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(5206), 13, + STATE(2221), 1, + sym_comment, + ACTIONS(5262), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263707,7 +267543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5204), 44, + ACTIONS(5260), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263752,14 +267588,14 @@ 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, - [34874] = 5, + [40149] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2184), 1, + STATE(2222), 1, sym_comment, - ACTIONS(5266), 13, + STATE(2242), 1, + aux_sym_shebang_repeat1, + ACTIONS(5200), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263773,7 +267609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5264), 44, + ACTIONS(5198), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263818,14 +267654,14 @@ 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, - [34945] = 5, + [40220] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2185), 1, - sym_comment, - STATE(2232), 1, + STATE(2196), 1, aux_sym_shebang_repeat1, - ACTIONS(5214), 13, + STATE(2223), 1, + sym_comment, + ACTIONS(5204), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263839,7 +267675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5212), 44, + ACTIONS(5202), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263884,14 +267720,14 @@ 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, - [35016] = 5, + [40291] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2186), 1, + STATE(2224), 1, sym_comment, - ACTIONS(5266), 13, + ACTIONS(5262), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263905,7 +267741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5264), 44, + ACTIONS(5260), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263950,28 +267786,17 @@ 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, - [35087] = 5, - ACTIONS(247), 1, + [40362] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2187), 1, + ACTIONS(2240), 1, + anon_sym_LPAREN2, + ACTIONS(2244), 1, + aux_sym_unquoted_token4, + STATE(2225), 1, sym_comment, - STATE(2275), 1, - aux_sym_shebang_repeat1, - ACTIONS(5210), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5208), 44, + ACTIONS(2242), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263983,10 +267808,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(2238), 44, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -263995,19 +267821,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264016,14 +267853,14 @@ 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, - [35158] = 5, + [40435] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2188), 1, + STATE(2226), 1, sym_comment, - ACTIONS(5278), 13, + STATE(2248), 1, + aux_sym_shebang_repeat1, + ACTIONS(5200), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264037,7 +267874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5276), 44, + ACTIONS(5198), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264082,28 +267919,17 @@ 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, - [35229] = 5, - ACTIONS(247), 1, + [40506] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2189), 1, + ACTIONS(2226), 1, + anon_sym_LPAREN2, + ACTIONS(2228), 1, + aux_sym_unquoted_token4, + STATE(2227), 1, sym_comment, - STATE(2233), 1, - aux_sym_shebang_repeat1, - ACTIONS(5214), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5212), 44, + ACTIONS(1028), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264115,10 +267941,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(1026), 44, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -264127,19 +267954,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264148,14 +267986,14 @@ 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, - [35300] = 5, + [40579] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2190), 1, + STATE(2228), 1, sym_comment, - STATE(2278), 1, + STATE(2279), 1, aux_sym_shebang_repeat1, - ACTIONS(5210), 13, + ACTIONS(5194), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264169,7 +268007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5208), 44, + ACTIONS(5192), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264214,14 +268052,96 @@ 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, - [35371] = 5, + [40650] = 19, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2191), 1, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(4001), 1, + anon_sym_DQUOTE, + ACTIONS(4005), 1, + sym_raw_string_begin, + ACTIONS(5048), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5288), 1, + anon_sym_DASH_DASH, + STATE(2229), 1, + sym_comment, + STATE(2436), 1, + aux_sym_decl_def_repeat1, + STATE(3007), 1, + sym_long_flag, + STATE(3764), 1, + sym__val_number_decimal, + STATE(4154), 1, + sym_cmd_identifier, + STATE(4161), 1, + sym_val_string, + STATE(6745), 1, + sym__command_name, + ACTIONS(4003), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4332), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5036), 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(5038), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [40749] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2230), 1, sym_comment, - ACTIONS(5282), 13, + STATE(7470), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264235,7 +268155,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5280), 44, + ACTIONS(5178), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264247,10 +268168,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -264280,14 +268199,14 @@ 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, - [35442] = 5, + [40822] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2192), 1, - sym_comment, - STATE(2282), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(5210), 13, + STATE(2231), 1, + sym_comment, + ACTIONS(5262), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264301,7 +268220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5208), 44, + ACTIONS(5260), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264346,14 +268265,14 @@ 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, - [35513] = 5, + [40893] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(2197), 1, aux_sym_shebang_repeat1, - STATE(2193), 1, + STATE(2232), 1, sym_comment, - ACTIONS(5266), 13, + ACTIONS(5204), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264367,7 +268286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5264), 44, + ACTIONS(5202), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264412,14 +268331,14 @@ 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, - [35584] = 5, + [40964] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2194), 1, - sym_comment, - STATE(2234), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(5286), 13, + STATE(2233), 1, + sym_comment, + ACTIONS(5292), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264433,7 +268352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 44, + ACTIONS(5290), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264478,94 +268397,14 @@ 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, - [35655] = 19, + [41035] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3127), 1, - anon_sym_DQUOTE, - ACTIONS(3133), 1, - sym_raw_string_begin, - ACTIONS(5045), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5292), 1, - sym__newline, - ACTIONS(5294), 1, - anon_sym_RBRACK, - STATE(2195), 1, - sym_comment, - STATE(2429), 1, - aux_sym_shebang_repeat1, - STATE(2556), 1, - aux_sym_command_list_repeat1, - STATE(3723), 1, - sym__val_number_decimal, - STATE(7011), 1, - sym__command_name, - STATE(7397), 1, - sym_val_string, - STATE(7535), 1, - sym_cmd_identifier, - ACTIONS(3129), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5043), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5497), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5288), 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(5290), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [35754] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2193), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2196), 1, + STATE(2234), 1, sym_comment, - ACTIONS(5206), 13, + ACTIONS(5262), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264579,7 +268418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5204), 44, + ACTIONS(5260), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264624,12 +268463,14 @@ 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, - [35825] = 4, + [41106] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2197), 1, + STATE(2190), 1, + aux_sym_shebang_repeat1, + STATE(2235), 1, sym_comment, - ACTIONS(1006), 13, + ACTIONS(5200), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264643,8 +268484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1008), 45, - ts_builtin_sym_end, + ACTIONS(5198), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264656,6 +268496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -264680,7 +268521,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264689,14 +268529,14 @@ 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, - [35894] = 5, + [41177] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2198), 1, - sym_comment, - STATE(2235), 1, + STATE(2207), 1, aux_sym_shebang_repeat1, - ACTIONS(5214), 13, + STATE(2236), 1, + sym_comment, + ACTIONS(5204), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264710,7 +268550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5212), 44, + ACTIONS(5202), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264755,14 +268595,14 @@ 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, - [35965] = 5, + [41248] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2199), 1, + STATE(2237), 1, sym_comment, - ACTIONS(5298), 13, + ACTIONS(5296), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264776,7 +268616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5296), 44, + ACTIONS(5294), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264821,16 +268661,14 @@ 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, - [36036] = 6, + [41319] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2200), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2238), 1, sym_comment, - STATE(7999), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4973), 13, + ACTIONS(5272), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264844,8 +268682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4971), 43, - ts_builtin_sym_end, + ACTIONS(5270), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264857,8 +268694,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -264888,16 +268727,14 @@ 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, - [36109] = 6, + [41390] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2201), 1, + STATE(2239), 1, sym_comment, - STATE(7999), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4977), 13, + STATE(2282), 1, + aux_sym_shebang_repeat1, + ACTIONS(5300), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264911,8 +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(4975), 43, - ts_builtin_sym_end, + ACTIONS(5298), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264924,8 +268760,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -264955,14 +268793,14 @@ 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, - [36182] = 5, + [41461] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2202), 1, + STATE(2240), 1, sym_comment, - ACTIONS(5266), 13, + ACTIONS(5304), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264976,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(5264), 44, + ACTIONS(5302), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265021,14 +268859,14 @@ 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, - [36253] = 5, + [41532] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2203), 1, + STATE(2241), 1, sym_comment, - ACTIONS(5298), 13, + STATE(2291), 1, + aux_sym_shebang_repeat1, + ACTIONS(5194), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265042,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(5296), 44, + ACTIONS(5192), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265087,14 +268925,14 @@ 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, - [36324] = 5, + [41603] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2204), 1, + STATE(2242), 1, sym_comment, - ACTIONS(5298), 13, + ACTIONS(5272), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265108,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(5296), 44, + ACTIONS(5270), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265153,16 +268991,14 @@ 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, - [36395] = 6, + [41674] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2205), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2243), 1, sym_comment, - STATE(7999), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4981), 13, + ACTIONS(5262), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265176,8 +269012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4979), 43, - ts_builtin_sym_end, + ACTIONS(5260), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265189,8 +269024,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -265220,16 +269057,14 @@ 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, - [36468] = 6, + [41745] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2206), 1, + STATE(2208), 1, + aux_sym_shebang_repeat1, + STATE(2244), 1, sym_comment, - STATE(7999), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4985), 13, + ACTIONS(5308), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265243,8 +269078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4983), 43, - ts_builtin_sym_end, + ACTIONS(5306), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265256,8 +269090,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -265287,14 +269123,14 @@ 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, - [36541] = 5, + [41816] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2207), 1, + STATE(2245), 1, sym_comment, - STATE(2236), 1, + STATE(2255), 1, aux_sym_shebang_repeat1, - ACTIONS(5214), 13, + ACTIONS(5200), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265308,7 +269144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5212), 44, + ACTIONS(5198), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265353,52 +269189,52 @@ 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, - [36612] = 19, + [41887] = 19, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(3127), 1, anon_sym_DQUOTE, ACTIONS(3133), 1, sym_raw_string_begin, - ACTIONS(5045), 1, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5292), 1, + ACTIONS(5314), 1, sym__newline, - ACTIONS(5300), 1, + ACTIONS(5316), 1, anon_sym_RBRACK, - STATE(2208), 1, + STATE(2246), 1, sym_comment, - STATE(2416), 1, + STATE(2374), 1, aux_sym_shebang_repeat1, - STATE(2561), 1, + STATE(2558), 1, aux_sym_command_list_repeat1, - STATE(3723), 1, + STATE(3820), 1, sym__val_number_decimal, - STATE(7047), 1, + STATE(6876), 1, sym__command_name, - STATE(7397), 1, + STATE(7516), 1, sym_val_string, - STATE(7535), 1, + STATE(7649), 1, sym_cmd_identifier, ACTIONS(3129), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(5497), 2, + STATE(5625), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5288), 6, + ACTIONS(5310), 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(5290), 34, + ACTIONS(5312), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -265433,14 +269269,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [36711] = 5, + [41986] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2209), 1, + STATE(2247), 1, sym_comment, - ACTIONS(5266), 13, + STATE(2295), 1, + aux_sym_shebang_repeat1, + ACTIONS(5194), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265454,7 +269290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5264), 44, + ACTIONS(5192), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265499,63 +269335,19 @@ 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, - [36782] = 13, - ACTIONS(3), 1, + [42057] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2550), 1, - anon_sym_DOLLAR, - ACTIONS(5302), 1, - anon_sym_LPAREN2, - ACTIONS(5304), 1, - anon_sym_DOT, - ACTIONS(5308), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5310), 1, - aux_sym__immediate_decimal_token5, - STATE(2210), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2248), 1, sym_comment, - STATE(2680), 1, - sym__immediate_decimal, - ACTIONS(1544), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5306), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2828), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1530), 45, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5272), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265564,6 +269356,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5270), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265572,15 +269401,14 @@ 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, - aux_sym__unquoted_in_list_token1, - [36869] = 5, + [42128] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2211), 1, - sym_comment, - STATE(2237), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(5214), 13, + STATE(2249), 1, + sym_comment, + ACTIONS(5292), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265594,7 +269422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5212), 44, + ACTIONS(5290), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265639,14 +269467,79 @@ 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, - [36940] = 5, + [42199] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2250), 1, + sym_comment, + STATE(8105), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4922), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4920), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [42272] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2212), 1, + STATE(2251), 1, sym_comment, - ACTIONS(5266), 13, + ACTIONS(1006), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265660,7 +269553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5264), 44, + ACTIONS(1008), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265672,7 +269566,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -265697,6 +269590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265705,14 +269599,14 @@ 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, - [37011] = 5, + [42341] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(2209), 1, aux_sym_shebang_repeat1, - STATE(2213), 1, + STATE(2252), 1, sym_comment, - ACTIONS(5298), 13, + ACTIONS(5204), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265726,7 +269620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5296), 44, + ACTIONS(5202), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265771,14 +269665,14 @@ 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, - [37082] = 5, + [42412] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2214), 1, + STATE(2253), 1, sym_comment, - STATE(2305), 1, + STATE(2302), 1, aux_sym_shebang_repeat1, - ACTIONS(5214), 13, + ACTIONS(5194), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265792,7 +269686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5212), 44, + ACTIONS(5192), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265837,14 +269731,16 @@ 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, - [37153] = 5, + [42483] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2215), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2254), 1, sym_comment, - ACTIONS(5266), 13, + STATE(8105), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4928), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265858,7 +269754,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5264), 44, + ACTIONS(4926), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265870,10 +269767,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -265903,14 +269798,14 @@ 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, - [37224] = 5, + [42556] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2172), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2216), 1, + STATE(2255), 1, sym_comment, - ACTIONS(5206), 13, + ACTIONS(5272), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265924,7 +269819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5204), 44, + ACTIONS(5270), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265969,94 +269864,16 @@ 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, - [37295] = 19, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(4009), 1, - anon_sym_DQUOTE, - ACTIONS(4013), 1, - sym_raw_string_begin, - ACTIONS(5045), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5312), 1, - anon_sym_DASH_DASH, - STATE(2217), 1, - sym_comment, - STATE(2438), 1, - aux_sym_decl_def_repeat1, - STATE(2973), 1, - sym_long_flag, - STATE(3762), 1, - sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, - sym_cmd_identifier, - STATE(6593), 1, - sym__command_name, - ACTIONS(4011), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5043), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4492), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5033), 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(5035), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [37394] = 5, + [42627] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2218), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2256), 1, sym_comment, - ACTIONS(5266), 13, + STATE(7470), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266070,7 +269887,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5264), 44, + ACTIONS(5178), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266082,10 +269900,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -266115,14 +269931,16 @@ 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, - [37465] = 5, + [42700] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2219), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2257), 1, sym_comment, - STATE(2239), 1, - aux_sym_shebang_repeat1, - ACTIONS(5214), 13, + STATE(7470), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266136,7 +269954,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5212), 44, + ACTIONS(5178), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266148,10 +269967,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -266181,14 +269998,14 @@ 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, - [37536] = 5, + [42773] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2209), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2220), 1, + STATE(2258), 1, sym_comment, - ACTIONS(5206), 13, + ACTIONS(5292), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266202,7 +270019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5204), 44, + ACTIONS(5290), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266247,83 +270064,80 @@ 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, - [37607] = 8, + [42844] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5314), 1, - anon_sym_DOT, - STATE(2221), 1, + STATE(2259), 1, sym_comment, - STATE(2358), 1, - aux_sym_cell_path_repeat1, - STATE(2558), 1, - sym_path, - STATE(2608), 1, - sym_cell_path, - ACTIONS(961), 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(963), 48, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + STATE(2316), 1, + aux_sym_shebang_repeat1, + ACTIONS(5194), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5192), 44, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [37684] = 5, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [42915] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2222), 1, + STATE(2260), 1, sym_comment, - ACTIONS(5298), 13, + ACTIONS(5272), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266337,7 +270151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5296), 44, + ACTIONS(5270), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266382,14 +270196,14 @@ 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, - [37755] = 5, + [42986] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2202), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2223), 1, + STATE(2261), 1, sym_comment, - ACTIONS(5206), 13, + ACTIONS(5262), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266403,7 +270217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5204), 44, + ACTIONS(5260), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266448,14 +270262,14 @@ 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, - [37826] = 5, + [43057] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2224), 1, + STATE(2262), 1, sym_comment, - ACTIONS(5298), 13, + STATE(2317), 1, + aux_sym_shebang_repeat1, + ACTIONS(5194), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266469,7 +270283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5296), 44, + ACTIONS(5192), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266514,14 +270328,14 @@ 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, - [37897] = 5, + [43128] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(2177), 1, aux_sym_shebang_repeat1, - STATE(2225), 1, + STATE(2263), 1, sym_comment, - ACTIONS(5298), 13, + ACTIONS(5223), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266535,7 +270349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5296), 44, + ACTIONS(5221), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266580,14 +270394,83 @@ 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, - [37968] = 5, + [43199] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + ACTIONS(5264), 1, + anon_sym_DOT, + STATE(2264), 1, + sym_comment, + STATE(2404), 1, + aux_sym_cell_path_repeat1, + STATE(2575), 1, + sym_path, + STATE(2605), 1, + sym_cell_path, + ACTIONS(961), 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(963), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [43276] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2226), 1, + STATE(2265), 1, sym_comment, - ACTIONS(5318), 13, + ACTIONS(5292), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266601,7 +270484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5316), 44, + ACTIONS(5290), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266646,14 +270529,14 @@ 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, - [38039] = 5, + [43347] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(2193), 1, aux_sym_shebang_repeat1, - STATE(2227), 1, + STATE(2266), 1, sym_comment, - ACTIONS(5318), 13, + ACTIONS(5204), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266667,7 +270550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5316), 44, + ACTIONS(5202), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266712,14 +270595,161 @@ 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, - [38110] = 5, + [43418] = 19, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(4001), 1, + anon_sym_DQUOTE, + ACTIONS(4005), 1, + sym_raw_string_begin, + ACTIONS(5048), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5288), 1, + anon_sym_DASH_DASH, + STATE(2267), 1, + sym_comment, + STATE(2436), 1, + aux_sym_decl_def_repeat1, + STATE(3007), 1, + sym_long_flag, + STATE(3764), 1, + sym__val_number_decimal, + STATE(4154), 1, + sym_cmd_identifier, + STATE(4161), 1, + sym_val_string, + STATE(6745), 1, + sym__command_name, + ACTIONS(4003), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4332), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5036), 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(5038), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [43517] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2268), 1, + sym_comment, + STATE(7470), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5180), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5178), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [43590] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2185), 1, aux_sym_shebang_repeat1, - STATE(2228), 1, + STATE(2269), 1, sym_comment, - ACTIONS(5318), 13, + ACTIONS(5223), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266733,7 +270763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5316), 44, + ACTIONS(5221), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266778,14 +270808,14 @@ 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, - [38181] = 5, + [43661] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2229), 1, + STATE(2270), 1, sym_comment, - ACTIONS(5318), 13, + ACTIONS(5272), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266799,7 +270829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5316), 44, + ACTIONS(5270), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266844,14 +270874,14 @@ 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, - [38252] = 5, + [43732] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2230), 1, + STATE(2271), 1, sym_comment, - ACTIONS(5318), 13, + ACTIONS(5292), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266865,7 +270895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5316), 44, + ACTIONS(5290), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266910,14 +270940,14 @@ 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, - [38323] = 5, + [43803] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2231), 1, + STATE(2272), 1, sym_comment, - ACTIONS(5318), 13, + ACTIONS(5292), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266931,7 +270961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5316), 44, + ACTIONS(5290), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266976,14 +271006,14 @@ 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, - [38394] = 5, + [43874] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2232), 1, + STATE(2273), 1, sym_comment, - ACTIONS(5318), 13, + ACTIONS(5292), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266997,7 +271027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5316), 44, + ACTIONS(5290), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267042,14 +271072,14 @@ 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, - [38465] = 5, + [43945] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(2221), 1, aux_sym_shebang_repeat1, - STATE(2233), 1, + STATE(2274), 1, sym_comment, - ACTIONS(5318), 13, + ACTIONS(5223), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267063,7 +271093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5316), 44, + ACTIONS(5221), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267108,14 +271138,14 @@ 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, - [38536] = 5, + [44016] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2234), 1, + STATE(2275), 1, sym_comment, - ACTIONS(5322), 13, + ACTIONS(5204), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267129,7 +271159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5320), 44, + ACTIONS(5202), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267174,14 +271204,14 @@ 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, - [38607] = 5, + [44087] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(2231), 1, aux_sym_shebang_repeat1, - STATE(2235), 1, + STATE(2276), 1, sym_comment, - ACTIONS(5318), 13, + ACTIONS(5223), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267195,7 +271225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5316), 44, + ACTIONS(5221), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267240,14 +271270,16 @@ 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, - [38678] = 5, + [44158] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2236), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2277), 1, sym_comment, - ACTIONS(5318), 13, + STATE(7470), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267261,7 +271293,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5316), 44, + ACTIONS(5178), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267273,10 +271306,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -267306,14 +271337,14 @@ 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, - [38749] = 5, + [44231] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2237), 1, + STATE(2278), 1, sym_comment, - ACTIONS(5318), 13, + ACTIONS(5272), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267327,7 +271358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5316), 44, + ACTIONS(5270), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267372,16 +271403,14 @@ 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, - [38820] = 6, + [44302] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2238), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2279), 1, sym_comment, - STATE(7396), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + ACTIONS(5292), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267395,8 +271424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 43, - ts_builtin_sym_end, + ACTIONS(5290), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267408,8 +271436,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -267439,14 +271469,14 @@ 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, - [38893] = 5, + [44373] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(2233), 1, aux_sym_shebang_repeat1, - STATE(2239), 1, + STATE(2280), 1, sym_comment, - ACTIONS(5318), 13, + ACTIONS(5194), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267460,7 +271490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5316), 44, + ACTIONS(5192), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267505,57 +271535,19 @@ 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, - [38964] = 6, - ACTIONS(3), 1, + [44444] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2208), 1, - anon_sym_LPAREN2, - ACTIONS(2212), 1, - aux_sym_unquoted_token4, - STATE(2240), 1, + STATE(2194), 1, + aux_sym_shebang_repeat1, + STATE(2281), 1, sym_comment, - ACTIONS(2210), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2206), 44, + ACTIONS(5223), 13, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267564,25 +271556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [39037] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2202), 1, - anon_sym_LPAREN2, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(2241), 1, - sym_comment, - ACTIONS(1032), 12, - ts_builtin_sym_end, + ACTIONS(5221), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267594,11 +271568,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(1030), 44, - anon_sym_GT2, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -267607,30 +271580,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267639,16 +271601,14 @@ 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, - [39110] = 6, + [44515] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2242), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2282), 1, sym_comment, - STATE(7396), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + ACTIONS(5320), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267662,8 +271622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 43, - ts_builtin_sym_end, + ACTIONS(5318), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267675,8 +271634,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -267706,12 +271667,16 @@ 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, - [39183] = 4, + [44586] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2243), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2283), 1, sym_comment, - ACTIONS(1010), 13, + STATE(7470), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267725,7 +271690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1012), 45, + ACTIONS(5178), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -267740,7 +271705,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -267762,7 +271726,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267771,17 +271734,28 @@ 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, - [39252] = 6, - ACTIONS(3), 1, + [44659] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2216), 1, - anon_sym_LPAREN2, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - STATE(2244), 1, + STATE(2258), 1, + aux_sym_shebang_repeat1, + STATE(2284), 1, sym_comment, - ACTIONS(2218), 12, - ts_builtin_sym_end, + ACTIONS(5194), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5192), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267793,11 +271767,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2214), 44, - anon_sym_GT2, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -267806,30 +271779,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267838,16 +271800,16 @@ 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, - [39325] = 6, + [44730] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2216), 1, + ACTIONS(2248), 1, anon_sym_LPAREN2, - ACTIONS(2220), 1, + ACTIONS(2252), 1, aux_sym_unquoted_token4, - STATE(2245), 1, + STATE(2285), 1, sym_comment, - ACTIONS(2224), 12, + ACTIONS(2250), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -267860,7 +271822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2222), 44, + ACTIONS(2246), 44, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -267905,12 +271867,14 @@ 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, - [39398] = 4, + [44803] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2246), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2286), 1, sym_comment, - ACTIONS(1014), 13, + ACTIONS(5272), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267924,8 +271888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1016), 45, - ts_builtin_sym_end, + ACTIONS(5270), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267937,6 +271900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -267961,7 +271925,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267970,14 +271933,14 @@ 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, - [39467] = 5, + [44874] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2247), 1, + STATE(2287), 1, sym_comment, - ACTIONS(5298), 13, + ACTIONS(5272), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267991,7 +271954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5296), 44, + ACTIONS(5270), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268036,28 +271999,17 @@ 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, - [39538] = 5, - ACTIONS(247), 1, + [44945] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2248), 1, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + STATE(2288), 1, sym_comment, - ACTIONS(5298), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5296), 44, + ACTIONS(2256), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268069,10 +272021,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(2254), 44, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -268081,19 +272034,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268102,14 +272066,14 @@ 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, - [39609] = 5, + [45018] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(2213), 1, aux_sym_shebang_repeat1, - STATE(2249), 1, + STATE(2289), 1, sym_comment, - ACTIONS(5326), 13, + ACTIONS(5223), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268123,7 +272087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5324), 44, + ACTIONS(5221), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268168,14 +272132,16 @@ 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, - [39680] = 5, + [45089] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2224), 1, - aux_sym_shebang_repeat1, - STATE(2250), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2290), 1, sym_comment, - ACTIONS(5198), 13, + STATE(7470), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268189,7 +272155,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 44, + ACTIONS(5178), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268201,10 +272168,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -268234,14 +272199,14 @@ 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, - [39751] = 5, + [45162] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2251), 1, + STATE(2291), 1, sym_comment, - ACTIONS(5326), 13, + ACTIONS(5292), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268255,7 +272220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5324), 44, + ACTIONS(5290), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268300,16 +272265,14 @@ 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, - [39822] = 6, + [45233] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2252), 1, + STATE(2218), 1, + aux_sym_shebang_repeat1, + STATE(2292), 1, sym_comment, - STATE(7396), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + ACTIONS(5204), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268323,8 +272286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 43, - ts_builtin_sym_end, + ACTIONS(5202), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268336,8 +272298,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -268367,14 +272331,14 @@ 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, - [39895] = 5, + [45304] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2225), 1, + STATE(2224), 1, aux_sym_shebang_repeat1, - STATE(2253), 1, + STATE(2293), 1, sym_comment, - ACTIONS(5198), 13, + ACTIONS(5223), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268388,7 +272352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 44, + ACTIONS(5221), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268433,14 +272397,14 @@ 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, - [39966] = 5, + [45375] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(2201), 1, aux_sym_shebang_repeat1, - STATE(2254), 1, + STATE(2294), 1, sym_comment, - ACTIONS(5326), 13, + ACTIONS(5200), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268454,7 +272418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5324), 44, + ACTIONS(5198), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268499,14 +272463,14 @@ 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, - [40037] = 5, + [45446] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2247), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2255), 1, + STATE(2295), 1, sym_comment, - ACTIONS(5198), 13, + ACTIONS(5292), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268520,7 +272484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 44, + ACTIONS(5290), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268565,14 +272529,14 @@ 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, - [40108] = 5, + [45517] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(2234), 1, aux_sym_shebang_repeat1, - STATE(2256), 1, + STATE(2296), 1, sym_comment, - ACTIONS(5326), 13, + ACTIONS(5223), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268586,7 +272550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5324), 44, + ACTIONS(5221), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268631,14 +272595,94 @@ 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, - [40179] = 5, + [45588] = 19, ACTIONS(247), 1, anon_sym_POUND, - STATE(2248), 1, + ACTIONS(3127), 1, + anon_sym_DQUOTE, + ACTIONS(3133), 1, + sym_raw_string_begin, + ACTIONS(5048), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5314), 1, + sym__newline, + ACTIONS(5322), 1, + anon_sym_RBRACK, + STATE(2297), 1, + sym_comment, + STATE(2361), 1, aux_sym_shebang_repeat1, - STATE(2257), 1, + STATE(2593), 1, + aux_sym_command_list_repeat1, + STATE(3820), 1, + sym__val_number_decimal, + STATE(6908), 1, + sym__command_name, + STATE(7516), 1, + sym_val_string, + STATE(7649), 1, + sym_cmd_identifier, + ACTIONS(3129), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5625), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5310), 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(5312), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [45687] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2260), 1, + aux_sym_shebang_repeat1, + STATE(2298), 1, sym_comment, - ACTIONS(5198), 13, + ACTIONS(5200), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268652,7 +272696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 44, + ACTIONS(5198), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268697,14 +272741,12 @@ 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, - [40250] = 5, + [45758] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2258), 1, + STATE(2299), 1, sym_comment, - ACTIONS(5326), 13, + ACTIONS(5064), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268718,7 +272760,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5324), 44, + ACTIONS(5062), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268730,7 +272773,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -268746,6 +272788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -268763,14 +272806,14 @@ 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, - [40321] = 5, + [45827] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2259), 1, - sym_comment, - STATE(2276), 1, + STATE(2240), 1, aux_sym_shebang_repeat1, - ACTIONS(5198), 13, + STATE(2300), 1, + sym_comment, + ACTIONS(5326), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268784,7 +272827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 44, + ACTIONS(5324), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268829,14 +272872,14 @@ 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, - [40392] = 5, + [45898] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(2210), 1, aux_sym_shebang_repeat1, - STATE(2260), 1, + STATE(2301), 1, sym_comment, - ACTIONS(5326), 13, + ACTIONS(5204), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268850,7 +272893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5324), 44, + ACTIONS(5202), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268895,16 +272938,14 @@ 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, - [40463] = 6, + [45969] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2261), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2302), 1, sym_comment, - STATE(7396), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + ACTIONS(5292), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268918,8 +272959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 43, - ts_builtin_sym_end, + ACTIONS(5290), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268931,8 +272971,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -268962,14 +273004,14 @@ 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, - [40536] = 5, + [46040] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2262), 1, - sym_comment, - STATE(2291), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(5198), 13, + STATE(2303), 1, + sym_comment, + ACTIONS(5262), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268983,7 +273025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 44, + ACTIONS(5260), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269028,14 +273070,14 @@ 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, - [40607] = 5, + [46111] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(2243), 1, aux_sym_shebang_repeat1, - STATE(2263), 1, + STATE(2304), 1, sym_comment, - ACTIONS(5326), 13, + ACTIONS(5223), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269049,7 +273091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5324), 44, + ACTIONS(5221), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269094,14 +273136,16 @@ 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, - [40678] = 5, + [46182] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2264), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2305), 1, sym_comment, - STATE(2295), 1, - aux_sym_shebang_repeat1, - ACTIONS(5198), 13, + STATE(7470), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269115,7 +273159,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 44, + ACTIONS(5178), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269127,10 +273172,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -269160,14 +273203,16 @@ 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, - [40749] = 5, + [46255] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2265), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2306), 1, sym_comment, - ACTIONS(5326), 13, + STATE(7470), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269181,57 +273226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5324), 44, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [40820] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2266), 1, - sym_comment, - ACTIONS(2250), 13, + ACTIONS(5178), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -269244,12 +273239,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, - ACTIONS(2248), 45, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -269258,30 +273249,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269290,15 +273270,14 @@ 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, - aux_sym_unquoted_token4, - [40889] = 5, + [46328] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2203), 1, + STATE(2261), 1, aux_sym_shebang_repeat1, - STATE(2267), 1, + STATE(2307), 1, sym_comment, - ACTIONS(5198), 13, + ACTIONS(5223), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269312,7 +273291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 44, + ACTIONS(5221), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269357,14 +273336,16 @@ 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, - [40960] = 5, + [46399] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2268), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2308), 1, sym_comment, - ACTIONS(5330), 13, + STATE(7470), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269378,7 +273359,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 44, + ACTIONS(5178), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269390,10 +273372,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -269423,14 +273403,14 @@ 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, - [41031] = 5, + [46472] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(2303), 1, aux_sym_shebang_repeat1, - STATE(2269), 1, + STATE(2309), 1, sym_comment, - ACTIONS(5326), 13, + ACTIONS(5223), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269444,7 +273424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5324), 44, + ACTIONS(5221), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269489,14 +273469,14 @@ 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, - [41102] = 5, + [46543] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2188), 1, + STATE(2205), 1, aux_sym_shebang_repeat1, - STATE(2270), 1, + STATE(2310), 1, sym_comment, - ACTIONS(5334), 13, + ACTIONS(5200), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269510,7 +273490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5332), 44, + ACTIONS(5198), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269555,14 +273535,14 @@ 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, - [41173] = 5, + [46614] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4864), 1, - aux_sym_unquoted_token2, - STATE(2271), 1, + STATE(2311), 1, sym_comment, - ACTIONS(1709), 13, + STATE(2319), 1, + aux_sym_shebang_repeat1, + ACTIONS(5223), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269576,7 +273556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1721), 44, + ACTIONS(5221), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269591,7 +273571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -269621,14 +273601,16 @@ 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, - [41244] = 5, + [46685] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2213), 1, - aux_sym_shebang_repeat1, - STATE(2272), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2312), 1, sym_comment, - ACTIONS(5198), 13, + STATE(8105), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4934), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269642,7 +273624,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 44, + ACTIONS(4932), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269654,10 +273637,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -269687,14 +273668,14 @@ 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, - [41315] = 5, + [46758] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(2178), 1, aux_sym_shebang_repeat1, - STATE(2273), 1, + STATE(2313), 1, sym_comment, - ACTIONS(5326), 13, + ACTIONS(5223), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269708,7 +273689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5324), 44, + ACTIONS(5221), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269753,14 +273734,16 @@ 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, - [41386] = 5, + [46829] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2222), 1, - aux_sym_shebang_repeat1, - STATE(2274), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2314), 1, sym_comment, - ACTIONS(5198), 13, + STATE(8105), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4938), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269774,7 +273757,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 44, + ACTIONS(4936), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269786,10 +273770,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -269819,14 +273801,16 @@ 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, - [41457] = 5, + [46902] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2275), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(2315), 1, sym_comment, - ACTIONS(5326), 13, + STATE(7470), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269840,7 +273824,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5324), 44, + ACTIONS(5178), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269852,10 +273837,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -269885,14 +273868,14 @@ 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, - [41528] = 5, + [46975] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2276), 1, + STATE(2316), 1, sym_comment, - ACTIONS(5298), 13, + ACTIONS(5292), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269906,7 +273889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5296), 44, + ACTIONS(5290), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269951,14 +273934,14 @@ 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, - [41599] = 5, + [47046] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2277), 1, - sym_comment, - STATE(2286), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(5198), 13, + STATE(2317), 1, + sym_comment, + ACTIONS(5292), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269972,7 +273955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 44, + ACTIONS(5290), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270017,14 +274000,14 @@ 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, - [41670] = 5, + [47117] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(2265), 1, aux_sym_shebang_repeat1, - STATE(2278), 1, + STATE(2318), 1, sym_comment, - ACTIONS(5326), 13, + ACTIONS(5194), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270038,7 +274021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5324), 44, + ACTIONS(5192), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270083,16 +274066,14 @@ 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, - [41741] = 6, + [47188] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2279), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2319), 1, sym_comment, - STATE(7396), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + ACTIONS(5262), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270106,8 +274087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 43, - ts_builtin_sym_end, + ACTIONS(5260), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270119,8 +274099,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -270150,16 +274132,14 @@ 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, - [41814] = 6, + [47259] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2280), 1, + STATE(2237), 1, + aux_sym_shebang_repeat1, + STATE(2320), 1, sym_comment, - STATE(7396), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + ACTIONS(5330), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270173,8 +274153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 43, - ts_builtin_sym_end, + ACTIONS(5328), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270186,8 +274165,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -270217,14 +274198,12 @@ 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, - [41887] = 5, + [47330] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2199), 1, - aux_sym_shebang_repeat1, - STATE(2281), 1, + STATE(2321), 1, sym_comment, - ACTIONS(5198), 13, + ACTIONS(1010), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270238,7 +274217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 44, + ACTIONS(1012), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270250,7 +274230,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -270275,6 +274254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270283,14 +274263,14 @@ 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, - [41958] = 5, + [47399] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(2215), 1, aux_sym_shebang_repeat1, - STATE(2282), 1, + STATE(2322), 1, sym_comment, - ACTIONS(5326), 13, + ACTIONS(5204), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270304,7 +274284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5324), 44, + ACTIONS(5202), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270349,16 +274329,14 @@ 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, - [42029] = 6, + [47470] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2283), 1, + STATE(2184), 1, + aux_sym_shebang_repeat1, + STATE(2323), 1, sym_comment, - STATE(7396), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + ACTIONS(5204), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270372,8 +274350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 43, - ts_builtin_sym_end, + ACTIONS(5202), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270385,8 +274362,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -270416,160 +274395,96 @@ 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, - [42102] = 5, + [47541] = 19, ACTIONS(247), 1, anon_sym_POUND, - STATE(2226), 1, - aux_sym_shebang_repeat1, - STATE(2284), 1, + ACTIONS(5332), 1, + sym__newline, + ACTIONS(5337), 1, + anon_sym_DASH2, + ACTIONS(5351), 1, + anon_sym_PLUS2, + ACTIONS(5355), 1, + anon_sym_bit_DASHand2, + ACTIONS(5357), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5359), 1, + anon_sym_bit_DASHor2, + STATE(2324), 1, sym_comment, - ACTIONS(5214), 13, + STATE(2345), 1, + aux_sym_shebang_repeat1, + ACTIONS(5335), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5341), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5212), 44, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, + ACTIONS(5345), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(5353), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [42173] = 19, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(4009), 1, - anon_sym_DQUOTE, - ACTIONS(4013), 1, - sym_raw_string_begin, - ACTIONS(5045), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5312), 1, - anon_sym_DASH_DASH, - STATE(2285), 1, - sym_comment, - STATE(2438), 1, - aux_sym_decl_def_repeat1, - STATE(2973), 1, - sym_long_flag, - STATE(3762), 1, - sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, - sym_cmd_identifier, - STATE(6593), 1, - sym__command_name, - ACTIONS(4011), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5043), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4492), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5033), 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(5035), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [42272] = 5, + ACTIONS(5339), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5343), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5300), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5298), 22, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [47639] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2286), 1, + STATE(2325), 1, sym_comment, - ACTIONS(5298), 13, + ACTIONS(5361), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5276), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270583,7 +274498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5296), 44, + ACTIONS(5274), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270598,7 +274513,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -270611,8 +274525,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -270628,19 +274540,50 @@ 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, - [42343] = 5, + [47711] = 17, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2287), 1, + ACTIONS(5332), 1, + sym__newline, + ACTIONS(5337), 1, + anon_sym_DASH2, + ACTIONS(5351), 1, + anon_sym_PLUS2, + ACTIONS(5355), 1, + anon_sym_bit_DASHand2, + STATE(2326), 1, sym_comment, - ACTIONS(5266), 13, + STATE(2426), 1, + aux_sym_shebang_repeat1, + ACTIONS(5335), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5341), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5345), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5347), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5349), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5353), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5339), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5343), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5300), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270649,8 +274592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5264), 44, - sym__newline, + ACTIONS(5298), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270662,28 +274604,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -270694,21 +274617,50 @@ 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, - [42414] = 6, + [47805] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2288), 1, + ACTIONS(5365), 1, + anon_sym_DASH2, + ACTIONS(5377), 1, + anon_sym_PLUS2, + ACTIONS(5381), 1, + anon_sym_bit_DASHand2, + ACTIONS(5383), 1, + anon_sym_bit_DASHxor2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2327), 1, sym_comment, - STATE(7396), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + ACTIONS(5361), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5363), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5369), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5373), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5375), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5379), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5367), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5371), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5276), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270717,8 +274669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 43, - ts_builtin_sym_end, + ACTIONS(5274), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270730,28 +274681,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -270761,18 +274694,25 @@ 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, - [42487] = 5, + [47899] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2204), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2289), 1, + STATE(2328), 1, sym_comment, - ACTIONS(5198), 13, - anon_sym_GT2, + ACTIONS(5361), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5369), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(5375), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5304), 11, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -270782,7 +274722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5196), 44, + ACTIONS(5302), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270797,7 +274737,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -270810,10 +274749,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -270827,21 +274762,38 @@ 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, - [42558] = 6, + [47975] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2290), 1, + ACTIONS(5365), 1, + anon_sym_DASH2, + ACTIONS(5377), 1, + anon_sym_PLUS2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2329), 1, sym_comment, - STATE(7396), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + ACTIONS(5361), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5363), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5369), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5375), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5379), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5371), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5304), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270850,8 +274802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 43, - ts_builtin_sym_end, + ACTIONS(5302), 32, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270863,7 +274814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, + anon_sym_RPAREN, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -270871,18 +274822,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -270894,19 +274835,29 @@ 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, - [42631] = 5, + [48061] = 10, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + ACTIONS(5365), 1, + anon_sym_DASH2, + ACTIONS(5377), 1, + anon_sym_PLUS2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2291), 1, + STATE(2330), 1, sym_comment, - ACTIONS(5298), 13, - anon_sym_GT2, + ACTIONS(5361), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5369), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5375), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5304), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270915,7 +274866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5296), 44, + ACTIONS(5302), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270928,9 +274879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -270943,10 +274892,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -270960,19 +274905,50 @@ 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, - [42702] = 5, + [48141] = 17, ACTIONS(247), 1, anon_sym_POUND, - STATE(2186), 1, + ACTIONS(5365), 1, + anon_sym_DASH2, + ACTIONS(5377), 1, + anon_sym_PLUS2, + ACTIONS(5381), 1, + anon_sym_bit_DASHand2, + ACTIONS(5383), 1, + anon_sym_bit_DASHxor2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2292), 1, + STATE(2331), 1, sym_comment, - ACTIONS(5206), 13, + ACTIONS(5361), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5363), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5369), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5373), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5375), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5379), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5367), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5371), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5296), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270981,7 +274957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5204), 44, + ACTIONS(5294), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270994,29 +274970,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -271026,21 +274982,48 @@ 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, - [42773] = 6, + [48235] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2293), 1, + ACTIONS(5365), 1, + anon_sym_DASH2, + ACTIONS(5377), 1, + anon_sym_PLUS2, + ACTIONS(5381), 1, + anon_sym_bit_DASHand2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2332), 1, sym_comment, - STATE(7396), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + ACTIONS(5361), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5363), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5369), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5373), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5375), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5379), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5367), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5371), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5304), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271049,8 +275032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 43, - ts_builtin_sym_end, + ACTIONS(5302), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271062,27 +275044,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -271093,19 +275058,46 @@ 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, - [42846] = 5, + [48327] = 15, ACTIONS(247), 1, anon_sym_POUND, - STATE(2218), 1, - aux_sym_shebang_repeat1, - STATE(2294), 1, + ACTIONS(5387), 1, + anon_sym_DASH2, + ACTIONS(5401), 1, + anon_sym_PLUS2, + ACTIONS(5405), 1, + anon_sym_bit_DASHand2, + STATE(2333), 1, sym_comment, - ACTIONS(5206), 13, + ACTIONS(5385), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5391), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5395), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5397), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5399), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5403), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5389), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5393), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271114,7 +275106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5204), 44, + ACTIONS(5237), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271127,29 +275119,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [48417] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5332), 1, + sym__newline, + ACTIONS(5337), 1, + anon_sym_DASH2, + ACTIONS(5351), 1, + anon_sym_PLUS2, + ACTIONS(5355), 1, + anon_sym_bit_DASHand2, + ACTIONS(5357), 1, + anon_sym_bit_DASHxor2, + STATE(2334), 1, + sym_comment, + STATE(2448), 1, + aux_sym_shebang_repeat1, + ACTIONS(5335), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5341), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5345), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(5353), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, + ACTIONS(5339), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5343), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5300), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5298), 23, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -271159,19 +275211,31 @@ 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, - [42917] = 5, + [48513] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2295), 1, + ACTIONS(5337), 1, + anon_sym_DASH2, + ACTIONS(5351), 1, + anon_sym_PLUS2, + ACTIONS(5407), 1, + sym__newline, + STATE(2335), 1, sym_comment, - ACTIONS(5298), 13, - anon_sym_GT2, + STATE(2427), 1, + aux_sym_shebang_repeat1, + ACTIONS(5341), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5347), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5349), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5308), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271180,8 +275244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5296), 44, - sym__newline, + ACTIONS(5306), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271193,9 +275256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -271208,10 +275269,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -271225,14 +275282,78 @@ 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, - [42988] = 5, + [48595] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2227), 1, - aux_sym_shebang_repeat1, - STATE(2296), 1, + ACTIONS(5410), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5412), 1, + aux_sym__immediate_decimal_token2, + STATE(2336), 1, + sym_comment, + ACTIONS(1585), 11, + 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, + anon_sym_DOT_DOT2, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1587), 44, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [48667] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2337), 1, sym_comment, - ACTIONS(5214), 13, + ACTIONS(5254), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271246,7 +275367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5212), 44, + ACTIONS(5256), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271291,28 +275412,29 @@ 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, - [43059] = 8, + [48735] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5414), 1, anon_sym_DOT, - STATE(2297), 1, + STATE(2338), 1, sym_comment, - STATE(2358), 1, + STATE(2547), 1, aux_sym_cell_path_repeat1, - STATE(2558), 1, + STATE(2627), 1, sym_path, - STATE(2624), 1, + STATE(2669), 1, sym_cell_path, - ACTIONS(1769), 6, + ACTIONS(1747), 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(1771), 48, + ACTIONS(1749), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -271350,8 +275472,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -271360,19 +275480,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [43136] = 5, + [48811] = 12, ACTIONS(247), 1, anon_sym_POUND, - STATE(2287), 1, - aux_sym_shebang_repeat1, - STATE(2298), 1, + ACTIONS(5337), 1, + anon_sym_DASH2, + ACTIONS(5351), 1, + anon_sym_PLUS2, + ACTIONS(5416), 1, + sym__newline, + STATE(2339), 1, sym_comment, - ACTIONS(5206), 13, - anon_sym_GT2, + STATE(2450), 1, + aux_sym_shebang_repeat1, + ACTIONS(5341), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5347), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5349), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5353), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5326), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271381,8 +275516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5204), 44, - sym__newline, + ACTIONS(5324), 35, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271394,9 +275528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -271409,12 +275541,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -271426,16 +275552,83 @@ 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, - [43207] = 6, - ACTIONS(247), 1, + [48895] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(5419), 1, + anon_sym_DOT, + ACTIONS(5421), 1, + aux_sym__immediate_decimal_token2, + STATE(2340), 1, + sym_comment, + ACTIONS(1575), 7, + sym_raw_string_begin, anon_sym_LPAREN2, - STATE(2299), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1573), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [48967] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2341), 1, sym_comment, - STATE(7396), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + ACTIONS(5361), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5320), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271449,8 +275642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 43, - ts_builtin_sym_end, + ACTIONS(5318), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271462,6 +275654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -271476,8 +275669,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -271493,19 +275684,52 @@ 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, - [43280] = 5, + [49039] = 18, ACTIONS(247), 1, anon_sym_POUND, - STATE(2159), 1, + ACTIONS(5365), 1, + anon_sym_DASH2, + ACTIONS(5377), 1, + anon_sym_PLUS2, + ACTIONS(5381), 1, + anon_sym_bit_DASHand2, + ACTIONS(5383), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5423), 1, + anon_sym_bit_DASHor2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2300), 1, + STATE(2342), 1, sym_comment, - ACTIONS(5206), 13, + ACTIONS(5361), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5363), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5369), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5373), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5375), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5379), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5367), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5371), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5276), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271514,7 +275738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5204), 44, + ACTIONS(5274), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271527,30 +275751,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271559,19 +275762,34 @@ 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, - [43351] = 5, + [49135] = 12, ACTIONS(247), 1, anon_sym_POUND, - STATE(2162), 1, - aux_sym_shebang_repeat1, - STATE(2301), 1, + ACTIONS(5337), 1, + anon_sym_DASH2, + ACTIONS(5351), 1, + anon_sym_PLUS2, + ACTIONS(5425), 1, + sym__newline, + STATE(2343), 1, sym_comment, - ACTIONS(5206), 13, - anon_sym_GT2, + STATE(2352), 1, + aux_sym_shebang_repeat1, + ACTIONS(5341), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5347), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5349), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5353), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5330), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271580,8 +275798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5204), 44, - sym__newline, + ACTIONS(5328), 35, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271593,9 +275810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -271608,12 +275823,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -271625,90 +275834,56 @@ 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, - [43422] = 8, + [49219] = 20, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5314), 1, - anon_sym_DOT, - STATE(2302), 1, - sym_comment, - STATE(2358), 1, - aux_sym_cell_path_repeat1, - STATE(2558), 1, - sym_path, - STATE(2629), 1, - sym_cell_path, - ACTIONS(1735), 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(1737), 48, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(5337), 1, + anon_sym_DASH2, + ACTIONS(5351), 1, + anon_sym_PLUS2, + ACTIONS(5355), 1, + anon_sym_bit_DASHand2, + ACTIONS(5357), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5359), 1, + anon_sym_bit_DASHor2, + ACTIONS(5407), 1, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [43499] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(2303), 1, + ACTIONS(5428), 1, + anon_sym_and2, + STATE(2344), 1, sym_comment, - STATE(7396), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + STATE(2347), 1, + aux_sym_shebang_repeat1, + ACTIONS(5335), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5341), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5345), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5347), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5349), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5353), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5339), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5343), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5308), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271717,9 +275892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5306), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271730,29 +275903,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, + anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271761,19 +275914,52 @@ 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, - [43572] = 5, + [49319] = 18, ACTIONS(247), 1, anon_sym_POUND, - STATE(2167), 1, + ACTIONS(5365), 1, + anon_sym_DASH2, + ACTIONS(5377), 1, + anon_sym_PLUS2, + ACTIONS(5381), 1, + anon_sym_bit_DASHand2, + ACTIONS(5383), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5423), 1, + anon_sym_bit_DASHor2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2304), 1, + STATE(2345), 1, sym_comment, - ACTIONS(5206), 13, + ACTIONS(5361), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5363), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5369), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5373), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5375), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5379), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5367), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5371), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5320), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271782,7 +275968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5204), 44, + ACTIONS(5318), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271795,30 +275981,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [49415] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5430), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5432), 1, + aux_sym__immediate_decimal_token2, + STATE(2346), 1, + sym_comment, + ACTIONS(1587), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1585), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [49487] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5365), 1, + anon_sym_DASH2, + ACTIONS(5377), 1, + anon_sym_PLUS2, + ACTIONS(5381), 1, + anon_sym_bit_DASHand2, + ACTIONS(5383), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5423), 1, + anon_sym_bit_DASHor2, + ACTIONS(5434), 1, + anon_sym_and2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2347), 1, + sym_comment, + ACTIONS(5361), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5363), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5369), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5373), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5375), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5379), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5367), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(5371), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + ACTIONS(5276), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5274), 22, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271827,19 +276137,56 @@ 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, - [43643] = 5, + [49585] = 20, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2305), 1, + ACTIONS(5337), 1, + anon_sym_DASH2, + ACTIONS(5351), 1, + anon_sym_PLUS2, + ACTIONS(5355), 1, + anon_sym_bit_DASHand2, + ACTIONS(5357), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5359), 1, + anon_sym_bit_DASHor2, + ACTIONS(5425), 1, + sym__newline, + ACTIONS(5428), 1, + anon_sym_and2, + STATE(2348), 1, sym_comment, - ACTIONS(5318), 13, + STATE(2414), 1, + aux_sym_shebang_repeat1, + ACTIONS(5335), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5341), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5345), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5347), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5349), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5353), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5339), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5343), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5330), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271848,8 +276195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5316), 44, - sym__newline, + ACTIONS(5328), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271861,30 +276207,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271893,24 +276217,32 @@ 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, - [43714] = 7, + [49685] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(2306), 1, + ACTIONS(5365), 1, + anon_sym_DASH2, + ACTIONS(5377), 1, + anon_sym_PLUS2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2349), 1, sym_comment, - ACTIONS(5336), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5338), 2, + ACTIONS(5361), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5340), 2, + ACTIONS(5369), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5375), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5239), 11, + ACTIONS(5379), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5276), 10, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271919,7 +276251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 40, + ACTIONS(5274), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271932,9 +276264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -271947,8 +276277,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -271960,50 +276288,50 @@ 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, - [43788] = 18, + [49767] = 18, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_DQUOTE, - ACTIONS(4013), 1, + ACTIONS(4005), 1, sym_raw_string_begin, - ACTIONS(5045), 1, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5312), 1, + ACTIONS(5288), 1, anon_sym_DASH_DASH, - STATE(2307), 1, + STATE(2350), 1, sym_comment, - STATE(2805), 1, + STATE(2799), 1, aux_sym_decl_def_repeat1, - STATE(2973), 1, + STATE(3007), 1, sym_long_flag, - STATE(3762), 1, + STATE(3764), 1, sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(6246), 1, + STATE(4161), 1, + sym_val_string, + STATE(6314), 1, sym__command_name, - ACTIONS(4011), 2, + ACTIONS(4003), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4492), 2, + STATE(4332), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5033), 6, + ACTIONS(5036), 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(5035), 34, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -272038,18 +276366,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [43884] = 5, + [49863] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4900), 1, - aux_sym_unquoted_token2, - STATE(2308), 1, + ACTIONS(5416), 1, + sym__newline, + STATE(2328), 1, + aux_sym_shebang_repeat1, + STATE(2351), 1, sym_comment, - ACTIONS(1709), 13, - anon_sym_GT2, + ACTIONS(5341), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(5347), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5349), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5326), 11, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -272059,9 +276396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1721), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5324), 38, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272072,6 +276407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -272086,10 +276422,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -272103,181 +276435,30 @@ 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, - [43954] = 21, + [49941] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(5344), 1, + ACTIONS(5365), 1, anon_sym_DASH2, - ACTIONS(5350), 1, - anon_sym_and2, - ACTIONS(5352), 1, - anon_sym_xor2, - ACTIONS(5362), 1, + ACTIONS(5377), 1, anon_sym_PLUS2, - ACTIONS(5366), 1, - anon_sym_bit_DASHand2, - ACTIONS(5368), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5370), 1, - anon_sym_bit_DASHor2, - STATE(2309), 1, - sym_comment, - STATE(2312), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(5342), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5348), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5356), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5358), 2, + STATE(2352), 1, + sym_comment, + ACTIONS(5361), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5346), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5354), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5274), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5272), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [44056] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5372), 1, - anon_sym_DOT, - STATE(2310), 1, - sym_comment, - STATE(2527), 1, - aux_sym_cell_path_repeat1, - STATE(2616), 1, - sym_path, - STATE(2676), 1, - sym_cell_path, - ACTIONS(1735), 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(1737), 47, - sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [44132] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5344), 1, - anon_sym_DASH2, - ACTIONS(5362), 1, - anon_sym_PLUS2, - ACTIONS(5374), 1, - sym__newline, - STATE(2311), 1, - sym_comment, - STATE(2320), 1, - aux_sym_shebang_repeat1, - ACTIONS(5348), 2, + ACTIONS(5369), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5358), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, + ACTIONS(5375), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, + ACTIONS(5379), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5286), 10, + ACTIONS(5296), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -272288,7 +276469,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 35, + ACTIONS(5294), 36, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272324,56 +276506,56 @@ 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, - [44216] = 20, + [50023] = 20, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, + ACTIONS(5365), 1, anon_sym_DASH2, - ACTIONS(5385), 1, - anon_sym_and2, - ACTIONS(5387), 1, - anon_sym_xor2, - ACTIONS(5397), 1, + ACTIONS(5377), 1, anon_sym_PLUS2, - ACTIONS(5401), 1, + ACTIONS(5381), 1, anon_sym_bit_DASHand2, - ACTIONS(5403), 1, + ACTIONS(5383), 1, anon_sym_bit_DASHxor2, - ACTIONS(5405), 1, + ACTIONS(5423), 1, anon_sym_bit_DASHor2, - STATE(1816), 1, + ACTIONS(5434), 1, + anon_sym_and2, + ACTIONS(5436), 1, + anon_sym_xor2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2312), 1, + STATE(2353), 1, sym_comment, - ACTIONS(5377), 2, + ACTIONS(5361), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5363), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5383), 2, + ACTIONS(5369), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5391), 2, + ACTIONS(5373), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5393), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, + ACTIONS(5375), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, + ACTIONS(5379), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 4, + ACTIONS(5367), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5389), 4, + ACTIONS(5371), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5282), 8, + ACTIONS(5276), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272382,7 +276564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5280), 21, + ACTIONS(5274), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272404,126 +276586,40 @@ 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, - [44316] = 18, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4009), 1, - anon_sym_DQUOTE, - ACTIONS(4013), 1, - sym_raw_string_begin, - ACTIONS(5045), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5312), 1, - anon_sym_DASH_DASH, - STATE(2313), 1, - sym_comment, - STATE(2412), 1, - aux_sym_decl_def_repeat1, - STATE(2973), 1, - sym_long_flag, - STATE(3762), 1, - sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, - sym_cmd_identifier, - STATE(6565), 1, - sym__command_name, - ACTIONS(4011), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5043), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4492), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5033), 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(5035), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [44412] = 16, + [50123] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5344), 1, + ACTIONS(5337), 1, anon_sym_DASH2, - ACTIONS(5362), 1, + ACTIONS(5351), 1, anon_sym_PLUS2, ACTIONS(5407), 1, sym__newline, - STATE(2314), 1, + STATE(2354), 1, sym_comment, - STATE(2391), 1, + STATE(2452), 1, aux_sym_shebang_repeat1, - ACTIONS(5342), 2, + ACTIONS(5335), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5348), 2, + ACTIONS(5341), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5356), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5358), 2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, + ACTIONS(5353), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5346), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5354), 4, + ACTIONS(5343), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5274), 8, + ACTIONS(5308), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272532,7 +276628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5272), 25, + ACTIONS(5306), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272544,9 +276640,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -272558,32 +276660,20 @@ 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, - [44504] = 11, + [50211] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, - anon_sym_DASH2, - ACTIONS(5397), 1, - anon_sym_PLUS2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2315), 1, + ACTIONS(1042), 1, + aux_sym_record_entry_token1, + STATE(2355), 1, sym_comment, - ACTIONS(5383), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5393), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5278), 10, + ACTIONS(1026), 14, + sym__newline, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272592,8 +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(5276), 36, - sym__newline, + ACTIONS(1028), 42, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272604,8 +276693,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -272618,6 +276708,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -272629,100 +276725,32 @@ 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, - [44586] = 14, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(3865), 1, - anon_sym_DOLLAR, - ACTIONS(5410), 1, - anon_sym_LPAREN2, - ACTIONS(5412), 1, - anon_sym_DOT, - ACTIONS(5414), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5416), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5418), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5420), 1, - aux_sym__immediate_decimal_token5, - STATE(2316), 1, - sym_comment, - STATE(2804), 1, - sym__immediate_decimal, - STATE(2908), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1530), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1544), 28, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [44674] = 8, + [50281] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + ACTIONS(5365), 1, + anon_sym_DASH2, + ACTIONS(5377), 1, + anon_sym_PLUS2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2317), 1, + STATE(2356), 1, sym_comment, - ACTIONS(5383), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5393), 2, + ACTIONS(5361), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, + ACTIONS(5369), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5375), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5278), 11, + ACTIONS(5379), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5320), 10, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272731,7 +276759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5276), 39, + ACTIONS(5318), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272744,7 +276772,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -272758,8 +276785,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -272771,38 +276796,54 @@ 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, - [44750] = 13, + [50363] = 19, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, + ACTIONS(5365), 1, anon_sym_DASH2, - ACTIONS(5397), 1, + ACTIONS(5377), 1, anon_sym_PLUS2, - STATE(1816), 1, + ACTIONS(5381), 1, + anon_sym_bit_DASHand2, + ACTIONS(5383), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5423), 1, + anon_sym_bit_DASHor2, + ACTIONS(5434), 1, + anon_sym_and2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2318), 1, + STATE(2357), 1, sym_comment, - ACTIONS(5377), 2, + ACTIONS(5361), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5363), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5383), 2, + ACTIONS(5369), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5393), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, + ACTIONS(5373), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5375), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, + ACTIONS(5379), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, + ACTIONS(5367), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5371), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5278), 8, + ACTIONS(5320), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272811,7 +276852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5276), 32, + ACTIONS(5318), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272824,18 +276865,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272844,46 +276875,40 @@ 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, - [44836] = 15, + [50461] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, + ACTIONS(5337), 1, anon_sym_DASH2, - ACTIONS(5397), 1, + ACTIONS(5351), 1, anon_sym_PLUS2, - STATE(1816), 1, + ACTIONS(5416), 1, + sym__newline, + STATE(2329), 1, aux_sym_shebang_repeat1, - STATE(2319), 1, + STATE(2358), 1, sym_comment, - ACTIONS(5377), 2, + ACTIONS(5335), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5383), 2, + ACTIONS(5341), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5391), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5393), 2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, + ACTIONS(5353), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5389), 4, + ACTIONS(5343), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5278), 8, + ACTIONS(5326), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272892,8 +276917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5276), 26, - sym__newline, + ACTIONS(5324), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272905,9 +276929,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -272919,30 +276949,32 @@ 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, - [44926] = 11, + [50549] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, + ACTIONS(5332), 1, + sym__newline, + ACTIONS(5337), 1, anon_sym_DASH2, - ACTIONS(5397), 1, + ACTIONS(5351), 1, anon_sym_PLUS2, - STATE(1816), 1, + STATE(2356), 1, aux_sym_shebang_repeat1, - STATE(2320), 1, + STATE(2359), 1, sym_comment, - ACTIONS(5383), 2, + ACTIONS(5341), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5393), 2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, + ACTIONS(5353), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5322), 10, + ACTIONS(5300), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -272953,8 +276985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5320), 36, - sym__newline, + ACTIONS(5298), 35, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272990,26 +277021,206 @@ 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, - [45008] = 8, + [50633] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1661), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5438), 1, + anon_sym_DOLLAR, + ACTIONS(5440), 1, + anon_sym_LPAREN2, + ACTIONS(5444), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5446), 1, + aux_sym__immediate_decimal_token5, + STATE(2360), 1, + sym_comment, + STATE(2902), 1, + sym__immediate_decimal, + ACTIONS(1659), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5442), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3030), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1657), 45, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [50717] = 18, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + ACTIONS(3127), 1, + anon_sym_DQUOTE, + ACTIONS(3133), 1, + sym_raw_string_begin, + ACTIONS(5048), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5314), 1, + sym__newline, + STATE(2361), 1, + sym_comment, + STATE(2594), 1, + aux_sym_command_list_repeat1, + STATE(2873), 1, aux_sym_shebang_repeat1, - STATE(2321), 1, + STATE(3820), 1, + sym__val_number_decimal, + STATE(7058), 1, + sym__command_name, + STATE(7516), 1, + sym_val_string, + STATE(7649), 1, + sym_cmd_identifier, + ACTIONS(3129), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5625), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5310), 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(5312), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [50813] = 20, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5365), 1, + anon_sym_DASH2, + ACTIONS(5377), 1, + anon_sym_PLUS2, + ACTIONS(5381), 1, + anon_sym_bit_DASHand2, + ACTIONS(5383), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5423), 1, + anon_sym_bit_DASHor2, + ACTIONS(5434), 1, + anon_sym_and2, + ACTIONS(5436), 1, + anon_sym_xor2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2362), 1, sym_comment, - ACTIONS(5383), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5393), 2, + ACTIONS(5361), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5322), 11, + ACTIONS(5363), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, + ACTIONS(5369), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5373), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5375), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5379), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5367), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5371), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5320), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273018,7 +277229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5320), 39, + ACTIONS(5318), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273031,25 +277242,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [50913] = 20, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5365), 1, anon_sym_DASH2, - anon_sym_in2, + ACTIONS(5377), 1, + anon_sym_PLUS2, + ACTIONS(5381), 1, + anon_sym_bit_DASHand2, + ACTIONS(5383), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5423), 1, + anon_sym_bit_DASHor2, + ACTIONS(5434), 1, anon_sym_and2, + ACTIONS(5436), 1, anon_sym_xor2, - anon_sym_or2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2363), 1, + sym_comment, + ACTIONS(5361), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5363), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5369), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5373), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5375), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5379), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5367), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(5371), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + ACTIONS(5304), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5302), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273058,48 +277331,52 @@ 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, - [45084] = 16, + [51013] = 18, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5344), 1, + ACTIONS(5365), 1, anon_sym_DASH2, - ACTIONS(5362), 1, + ACTIONS(5377), 1, anon_sym_PLUS2, - ACTIONS(5422), 1, - sym__newline, - STATE(2322), 1, - sym_comment, - STATE(2395), 1, + ACTIONS(5381), 1, + anon_sym_bit_DASHand2, + ACTIONS(5383), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5423), 1, + anon_sym_bit_DASHor2, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(5342), 2, + STATE(2364), 1, + sym_comment, + ACTIONS(5361), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5363), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5348), 2, + ACTIONS(5369), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5356), 2, + ACTIONS(5373), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5358), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, + ACTIONS(5375), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, + ACTIONS(5379), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5346), 4, + ACTIONS(5367), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5354), 4, + ACTIONS(5371), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5270), 8, + ACTIONS(5304), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273108,7 +277385,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5268), 25, + ACTIONS(5302), 23, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273123,9 +277401,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273134,38 +277409,52 @@ 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, - [45176] = 13, + [51109] = 18, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, + ACTIONS(5337), 1, anon_sym_DASH2, - ACTIONS(5397), 1, + ACTIONS(5351), 1, anon_sym_PLUS2, - STATE(1816), 1, + ACTIONS(5355), 1, + anon_sym_bit_DASHand2, + ACTIONS(5357), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5425), 1, + sym__newline, + STATE(2331), 1, aux_sym_shebang_repeat1, - STATE(2323), 1, + STATE(2365), 1, sym_comment, - ACTIONS(5377), 2, + ACTIONS(5335), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5383), 2, + ACTIONS(5341), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5393), 2, + ACTIONS(5345), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, + ACTIONS(5353), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, + ACTIONS(5339), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5343), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5322), 8, + ACTIONS(5330), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273174,8 +277463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5320), 32, - sym__newline, + ACTIONS(5328), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273187,17 +277475,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -273207,17 +277487,19 @@ 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, - [45262] = 6, + [51205] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2324), 1, + ACTIONS(5416), 1, + sym__newline, + STATE(2366), 1, sym_comment, - ACTIONS(5393), 2, + STATE(2403), 1, + aux_sym_shebang_repeat1, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5322), 13, + ACTIONS(5326), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273231,8 +277513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5320), 41, - sym__newline, + ACTIONS(5324), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273273,202 +277554,187 @@ 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, - [45334] = 6, - ACTIONS(3), 1, + [51279] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5425), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5427), 1, - aux_sym__immediate_decimal_token2, - STATE(2325), 1, - sym_comment, - ACTIONS(1623), 7, + ACTIONS(4001), 1, + anon_sym_DQUOTE, + ACTIONS(4005), 1, sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1621), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(5288), 1, + anon_sym_DASH_DASH, + STATE(2350), 1, + aux_sym_decl_def_repeat1, + STATE(2367), 1, + sym_comment, + STATE(3007), 1, + sym_long_flag, + STATE(3764), 1, + sym__val_number_decimal, + STATE(4154), 1, + sym_cmd_identifier, + STATE(4161), 1, + sym_val_string, + STATE(6763), 1, + sym__command_name, + ACTIONS(4003), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [45406] = 18, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4332), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5036), 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(5038), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [51375] = 18, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, - anon_sym_DASH2, - ACTIONS(5397), 1, - anon_sym_PLUS2, - ACTIONS(5401), 1, - anon_sym_bit_DASHand2, - ACTIONS(5403), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5405), 1, - anon_sym_bit_DASHor2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2326), 1, + ACTIONS(4001), 1, + anon_sym_DQUOTE, + ACTIONS(4005), 1, + sym_raw_string_begin, + ACTIONS(5048), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5288), 1, + anon_sym_DASH_DASH, + STATE(2368), 1, sym_comment, - ACTIONS(5377), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5383), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5391), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5393), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5381), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5389), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5322), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5320), 23, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [45502] = 21, + STATE(2410), 1, + aux_sym_decl_def_repeat1, + STATE(3007), 1, + sym_long_flag, + STATE(3764), 1, + sym__val_number_decimal, + STATE(4154), 1, + sym_cmd_identifier, + STATE(4161), 1, + sym_val_string, + STATE(6297), 1, + sym__command_name, + ACTIONS(4003), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4332), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5036), 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(5038), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [51471] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(5344), 1, + ACTIONS(5337), 1, anon_sym_DASH2, - ACTIONS(5350), 1, - anon_sym_and2, - ACTIONS(5352), 1, - anon_sym_xor2, - ACTIONS(5362), 1, + ACTIONS(5351), 1, anon_sym_PLUS2, - ACTIONS(5366), 1, - anon_sym_bit_DASHand2, - ACTIONS(5368), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5370), 1, - anon_sym_bit_DASHor2, - STATE(2327), 1, + ACTIONS(5425), 1, + sym__newline, + STATE(2369), 1, sym_comment, - STATE(2329), 1, + STATE(2413), 1, aux_sym_shebang_repeat1, - ACTIONS(5342), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5348), 2, + ACTIONS(5341), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5356), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5358), 2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5346), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5354), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5286), 8, + ACTIONS(5330), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273477,7 +277743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 20, + ACTIONS(5328), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273489,7 +277755,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273498,54 +277781,54 @@ 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, - [45604] = 19, + [51553] = 19, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, + ACTIONS(5337), 1, anon_sym_DASH2, - ACTIONS(5385), 1, - anon_sym_and2, - ACTIONS(5397), 1, + ACTIONS(5351), 1, anon_sym_PLUS2, - ACTIONS(5401), 1, + ACTIONS(5355), 1, anon_sym_bit_DASHand2, - ACTIONS(5403), 1, + ACTIONS(5357), 1, anon_sym_bit_DASHxor2, - ACTIONS(5405), 1, + ACTIONS(5359), 1, anon_sym_bit_DASHor2, - STATE(1816), 1, + ACTIONS(5416), 1, + sym__newline, + STATE(2364), 1, aux_sym_shebang_repeat1, - STATE(2328), 1, + STATE(2370), 1, sym_comment, - ACTIONS(5377), 2, + ACTIONS(5335), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5383), 2, + ACTIONS(5341), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5391), 2, + ACTIONS(5345), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5393), 2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, + ACTIONS(5353), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 4, + ACTIONS(5339), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5389), 4, + ACTIONS(5343), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5322), 8, + ACTIONS(5326), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273554,8 +277837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5320), 22, - sym__newline, + ACTIONS(5324), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273567,6 +277849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_err_GT_GT, @@ -273577,56 +277860,58 @@ 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, - [45702] = 20, + [51651] = 21, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(5337), 1, anon_sym_DASH2, - ACTIONS(5385), 1, - anon_sym_and2, - ACTIONS(5387), 1, - anon_sym_xor2, - ACTIONS(5397), 1, + ACTIONS(5351), 1, anon_sym_PLUS2, - ACTIONS(5401), 1, + ACTIONS(5355), 1, anon_sym_bit_DASHand2, - ACTIONS(5403), 1, + ACTIONS(5357), 1, anon_sym_bit_DASHxor2, - ACTIONS(5405), 1, + ACTIONS(5359), 1, anon_sym_bit_DASHor2, - STATE(1816), 1, + ACTIONS(5428), 1, + anon_sym_and2, + ACTIONS(5448), 1, + anon_sym_xor2, + STATE(2353), 1, aux_sym_shebang_repeat1, - STATE(2329), 1, + STATE(2371), 1, sym_comment, - ACTIONS(5377), 2, + ACTIONS(5335), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5383), 2, + ACTIONS(5341), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5391), 2, + ACTIONS(5345), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5393), 2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, + ACTIONS(5353), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 4, + ACTIONS(5339), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5389), 4, + ACTIONS(5343), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5322), 8, + ACTIONS(5308), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273635,8 +277920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5320), 21, - sym__newline, + ACTIONS(5306), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273657,106 +277941,43 @@ 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, - [45802] = 10, + [51753] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5429), 1, + ACTIONS(5365), 1, anon_sym_DASH2, - ACTIONS(5431), 1, + ACTIONS(5377), 1, anon_sym_PLUS2, - STATE(2330), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2372), 1, sym_comment, - ACTIONS(5336), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5338), 2, + ACTIONS(5361), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5340), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5433), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5239), 10, + ACTIONS(5363), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5237), 37, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [45882] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5429), 1, - anon_sym_DASH2, - ACTIONS(5431), 1, - anon_sym_PLUS2, - STATE(2331), 1, - sym_comment, - ACTIONS(5336), 2, + ACTIONS(5369), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5338), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5340), 2, + ACTIONS(5375), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5433), 2, + ACTIONS(5379), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5435), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5437), 4, + ACTIONS(5367), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5371), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5239), 8, + ACTIONS(5320), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273765,7 +277986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 33, + ACTIONS(5318), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273778,14 +277999,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, @@ -273799,19 +278015,27 @@ 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, - [45966] = 5, + [51841] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(2332), 1, + ACTIONS(5407), 1, + sym__newline, + STATE(2373), 1, sym_comment, - ACTIONS(5338), 2, + STATE(2443), 1, + aux_sym_shebang_repeat1, + ACTIONS(5341), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5239), 13, + ACTIONS(5349), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5308), 11, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -273821,8 +278045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 42, - sym__newline, + ACTIONS(5306), 38, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273836,7 +278059,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -273849,8 +278071,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -273864,50 +278084,118 @@ 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, - [46036] = 17, + [51919] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3127), 1, + anon_sym_DQUOTE, + ACTIONS(3133), 1, + sym_raw_string_begin, + ACTIONS(5048), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5314), 1, + sym__newline, + STATE(2374), 1, + sym_comment, + STATE(2567), 1, + aux_sym_command_list_repeat1, + STATE(2873), 1, + aux_sym_shebang_repeat1, + STATE(3820), 1, + sym__val_number_decimal, + STATE(6992), 1, + sym__command_name, + STATE(7516), 1, + sym_val_string, + STATE(7649), 1, + sym_cmd_identifier, + ACTIONS(3129), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5625), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5310), 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(5312), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [52015] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5429), 1, + ACTIONS(5332), 1, + sym__newline, + ACTIONS(5337), 1, anon_sym_DASH2, - ACTIONS(5431), 1, + ACTIONS(5351), 1, anon_sym_PLUS2, - ACTIONS(5443), 1, - anon_sym_bit_DASHand2, - ACTIONS(5445), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5447), 1, - anon_sym_bit_DASHor2, - STATE(2333), 1, + STATE(2375), 1, sym_comment, - ACTIONS(5336), 2, + STATE(2446), 1, + aux_sym_shebang_repeat1, + ACTIONS(5335), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5341), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5338), 2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5340), 2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5433), 2, + ACTIONS(5353), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5435), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5441), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5437), 4, + ACTIONS(5343), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5439), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5239), 8, + ACTIONS(5300), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273916,8 +278204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 24, - sym__newline, + ACTIONS(5298), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273929,10 +278216,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273941,52 +278236,61 @@ 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, - [46130] = 18, - ACTIONS(247), 1, + [52103] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5429), 1, - anon_sym_DASH2, - ACTIONS(5431), 1, - anon_sym_PLUS2, - ACTIONS(5443), 1, - anon_sym_bit_DASHand2, - ACTIONS(5445), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5447), 1, - anon_sym_bit_DASHor2, - ACTIONS(5449), 1, - anon_sym_and2, - STATE(2334), 1, + ACTIONS(2540), 1, + anon_sym_DOLLAR, + ACTIONS(5278), 1, + anon_sym_LPAREN2, + ACTIONS(5450), 1, + anon_sym_DOT, + ACTIONS(5454), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5456), 1, + aux_sym__immediate_decimal_token5, + STATE(2376), 1, sym_comment, - ACTIONS(5336), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5338), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5340), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5433), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5435), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5441), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5437), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5439), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5239), 8, + STATE(2853), 1, + sym__immediate_decimal, + ACTIONS(1603), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5452), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2829), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1593), 45, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273995,22 +278299,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 23, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_xor2, - anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274019,54 +278307,44 @@ 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, - [46226] = 19, + aux_sym__unquoted_in_list_token1, + [52187] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5429), 1, + ACTIONS(5365), 1, anon_sym_DASH2, - ACTIONS(5431), 1, + ACTIONS(5377), 1, anon_sym_PLUS2, - ACTIONS(5443), 1, - anon_sym_bit_DASHand2, - ACTIONS(5445), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5447), 1, - anon_sym_bit_DASHor2, - ACTIONS(5449), 1, - anon_sym_and2, - ACTIONS(5451), 1, - anon_sym_xor2, - STATE(2335), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2377), 1, sym_comment, - ACTIONS(5336), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5338), 2, + ACTIONS(5361), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5340), 2, + ACTIONS(5363), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5369), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5375), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5433), 2, + ACTIONS(5379), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5435), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5441), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5437), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5439), 4, + ACTIONS(5367), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5239), 8, + ACTIONS(5371), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5276), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274075,7 +278353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 22, + ACTIONS(5274), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274088,8 +278366,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274098,41 +278382,38 @@ 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, - [46324] = 13, + [52275] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5429), 1, + ACTIONS(5365), 1, anon_sym_DASH2, - ACTIONS(5431), 1, + ACTIONS(5377), 1, anon_sym_PLUS2, - STATE(2336), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2378), 1, sym_comment, - ACTIONS(5336), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5338), 2, + ACTIONS(5361), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5340), 2, + ACTIONS(5363), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5369), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5375), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5433), 2, + ACTIONS(5379), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5435), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5437), 4, + ACTIONS(5371), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5439), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5239), 8, + ACTIONS(5296), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274141,7 +278422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 29, + ACTIONS(5294), 32, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274154,10 +278435,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, @@ -274171,27 +278455,26 @@ 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, - [46410] = 9, + [52361] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5429), 1, - anon_sym_DASH2, - ACTIONS(5431), 1, - anon_sym_PLUS2, - STATE(2337), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2379), 1, sym_comment, - ACTIONS(5336), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5338), 2, + ACTIONS(5361), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5340), 2, + ACTIONS(5369), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5375), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5239), 10, + ACTIONS(5296), 11, anon_sym_GT2, anon_sym_LT2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274200,7 +278483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 39, + ACTIONS(5294), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274213,8 +278496,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -274240,44 +278523,56 @@ 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, - [46488] = 14, + [52437] = 20, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5429), 1, + ACTIONS(5337), 1, anon_sym_DASH2, - ACTIONS(5431), 1, + ACTIONS(5351), 1, anon_sym_PLUS2, - STATE(2338), 1, + ACTIONS(5355), 1, + anon_sym_bit_DASHand2, + ACTIONS(5357), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5359), 1, + anon_sym_bit_DASHor2, + ACTIONS(5416), 1, + sym__newline, + ACTIONS(5428), 1, + anon_sym_and2, + STATE(2380), 1, sym_comment, - ACTIONS(5336), 2, + STATE(2440), 1, + aux_sym_shebang_repeat1, + ACTIONS(5335), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5341), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5338), 2, + ACTIONS(5345), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5340), 2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5433), 2, + ACTIONS(5353), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5435), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5441), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5437), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5439), 4, + ACTIONS(5339), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5239), 8, + ACTIONS(5343), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5326), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274286,8 +278581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 27, - sym__newline, + ACTIONS(5324), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274299,13 +278593,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274314,46 +278603,61 @@ 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, - [46576] = 15, - ACTIONS(247), 1, + [52537] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5429), 1, - anon_sym_DASH2, - ACTIONS(5431), 1, - anon_sym_PLUS2, - ACTIONS(5443), 1, - anon_sym_bit_DASHand2, - STATE(2339), 1, + ACTIONS(1559), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5438), 1, + anon_sym_DOLLAR, + ACTIONS(5440), 1, + anon_sym_LPAREN2, + ACTIONS(5444), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5446), 1, + aux_sym__immediate_decimal_token5, + STATE(2381), 1, sym_comment, - ACTIONS(5336), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5338), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5340), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5433), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5435), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5441), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5437), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5439), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5239), 8, + STATE(2876), 1, + sym__immediate_decimal, + ACTIONS(1557), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5442), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3065), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1543), 45, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274362,25 +278666,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 26, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274389,48 +278674,55 @@ 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, - [46666] = 16, + aux_sym__unquoted_in_list_token1, + [52621] = 19, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5429), 1, + ACTIONS(5337), 1, anon_sym_DASH2, - ACTIONS(5431), 1, + ACTIONS(5351), 1, anon_sym_PLUS2, - ACTIONS(5443), 1, + ACTIONS(5355), 1, anon_sym_bit_DASHand2, - ACTIONS(5445), 1, + ACTIONS(5357), 1, anon_sym_bit_DASHxor2, - STATE(2340), 1, + ACTIONS(5359), 1, + anon_sym_bit_DASHor2, + ACTIONS(5407), 1, + sym__newline, + STATE(2342), 1, + aux_sym_shebang_repeat1, + STATE(2382), 1, sym_comment, - ACTIONS(5336), 2, + ACTIONS(5335), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5341), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5338), 2, + ACTIONS(5345), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5340), 2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5433), 2, + ACTIONS(5353), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5435), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5441), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5437), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5439), 4, + ACTIONS(5339), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5239), 8, + ACTIONS(5343), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5308), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274439,8 +278731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 25, - sym__newline, + ACTIONS(5306), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274452,11 +278743,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274465,43 +278754,56 @@ 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, - [46758] = 14, + [52719] = 20, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, + ACTIONS(5365), 1, anon_sym_DASH2, - ACTIONS(5397), 1, + ACTIONS(5377), 1, anon_sym_PLUS2, - STATE(1816), 1, + ACTIONS(5381), 1, + anon_sym_bit_DASHand2, + ACTIONS(5383), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5423), 1, + anon_sym_bit_DASHor2, + ACTIONS(5434), 1, + anon_sym_and2, + ACTIONS(5436), 1, + anon_sym_xor2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2341), 1, + STATE(2383), 1, sym_comment, - ACTIONS(5377), 2, + ACTIONS(5361), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5363), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5383), 2, + ACTIONS(5369), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5393), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, + ACTIONS(5373), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5375), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, + ACTIONS(5379), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 4, + ACTIONS(5367), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5389), 4, + ACTIONS(5371), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5322), 8, + ACTIONS(5296), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274510,7 +278812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5320), 28, + ACTIONS(5294), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274523,14 +278825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274539,43 +278834,52 @@ 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, - [46846] = 14, + [52819] = 18, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, + ACTIONS(5337), 1, anon_sym_DASH2, - ACTIONS(5397), 1, + ACTIONS(5351), 1, anon_sym_PLUS2, - STATE(1816), 1, + ACTIONS(5355), 1, + anon_sym_bit_DASHand2, + ACTIONS(5357), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5407), 1, + sym__newline, + STATE(2327), 1, aux_sym_shebang_repeat1, - STATE(2342), 1, + STATE(2384), 1, sym_comment, - ACTIONS(5377), 2, + ACTIONS(5335), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5383), 2, + ACTIONS(5341), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5393), 2, + ACTIONS(5345), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, + ACTIONS(5353), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 4, + ACTIONS(5339), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5389), 4, + ACTIONS(5343), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5282), 8, + ACTIONS(5308), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274584,8 +278888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5280), 28, - sym__newline, + ACTIONS(5306), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274600,10 +278903,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -274613,19 +278912,13 @@ 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, - [46934] = 7, + [52915] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5422), 1, - sym__newline, - STATE(2343), 1, + STATE(2385), 1, sym_comment, - STATE(2370), 1, - aux_sym_shebang_repeat1, - ACTIONS(5358), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5270), 13, + ACTIONS(1707), 14, + sym__newline, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274639,7 +278932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5268), 40, + ACTIONS(1719), 43, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274650,9 +278943,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -274665,83 +278958,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [47008] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5379), 1, - anon_sym_DASH2, - ACTIONS(5397), 1, - anon_sym_PLUS2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2344), 1, - sym_comment, - ACTIONS(5383), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5393), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5322), 10, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5320), 38, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274750,50 +278976,58 @@ 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, - [47088] = 17, + [52983] = 21, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5344), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(5337), 1, anon_sym_DASH2, - ACTIONS(5362), 1, + ACTIONS(5351), 1, anon_sym_PLUS2, - ACTIONS(5366), 1, + ACTIONS(5355), 1, anon_sym_bit_DASHand2, - ACTIONS(5422), 1, - sym__newline, - STATE(2345), 1, - sym_comment, - STATE(2400), 1, + ACTIONS(5357), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5359), 1, + anon_sym_bit_DASHor2, + ACTIONS(5428), 1, + anon_sym_and2, + ACTIONS(5448), 1, + anon_sym_xor2, + STATE(2362), 1, aux_sym_shebang_repeat1, - ACTIONS(5342), 2, + STATE(2386), 1, + sym_comment, + ACTIONS(5335), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5348), 2, + ACTIONS(5341), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5356), 2, + ACTIONS(5345), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5358), 2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, + ACTIONS(5353), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5346), 4, + ACTIONS(5339), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5354), 4, + ACTIONS(5343), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5270), 8, + ACTIONS(5300), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274802,7 +279036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5268), 24, + ACTIONS(5298), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274814,11 +279048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274827,46 +279057,22 @@ 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, - [47182] = 15, + [53085] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, - anon_sym_DASH2, - ACTIONS(5397), 1, - anon_sym_PLUS2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2346), 1, + STATE(2387), 1, sym_comment, - ACTIONS(5377), 2, + ACTIONS(5361), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5296), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5383), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5391), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5393), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5381), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5389), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5322), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274875,7 +279081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5320), 26, + ACTIONS(5294), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274888,9 +279094,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -274902,45 +279123,43 @@ 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, - [47272] = 15, + [53157] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5344), 1, + ACTIONS(5365), 1, anon_sym_DASH2, - ACTIONS(5362), 1, + ACTIONS(5377), 1, anon_sym_PLUS2, - ACTIONS(5374), 1, - sym__newline, - STATE(2341), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2347), 1, + STATE(2388), 1, sym_comment, - ACTIONS(5342), 2, + ACTIONS(5361), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5363), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5348), 2, + ACTIONS(5369), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5358), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, + ACTIONS(5375), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, + ACTIONS(5379), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5346), 4, + ACTIONS(5367), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5354), 4, + ACTIONS(5371), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5286), 8, + ACTIONS(5304), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274949,7 +279168,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 27, + ACTIONS(5302), 28, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274977,48 +279197,40 @@ 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, - [47362] = 16, + [53245] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, + ACTIONS(5337), 1, anon_sym_DASH2, - ACTIONS(5397), 1, + ACTIONS(5351), 1, anon_sym_PLUS2, - ACTIONS(5401), 1, - anon_sym_bit_DASHand2, - STATE(1816), 1, + ACTIONS(5425), 1, + sym__newline, + STATE(2378), 1, aux_sym_shebang_repeat1, - STATE(2348), 1, + STATE(2389), 1, sym_comment, - ACTIONS(5377), 2, + ACTIONS(5335), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5383), 2, + ACTIONS(5341), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5391), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5393), 2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, + ACTIONS(5353), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5389), 4, + ACTIONS(5343), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5322), 8, + ACTIONS(5330), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275027,8 +279239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5320), 25, - sym__newline, + ACTIONS(5328), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275040,9 +279251,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -275053,50 +279271,20 @@ 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, - [47454] = 17, + [53333] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, - anon_sym_DASH2, - ACTIONS(5397), 1, - anon_sym_PLUS2, - ACTIONS(5401), 1, - anon_sym_bit_DASHand2, - ACTIONS(5403), 1, - anon_sym_bit_DASHxor2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2349), 1, + ACTIONS(4801), 1, + aux_sym_record_entry_token1, + STATE(2390), 1, sym_comment, - ACTIONS(5377), 2, + ACTIONS(1026), 14, + sym__newline, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5383), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5391), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5393), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5381), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5389), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5322), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275105,8 +279293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5320), 24, - sym__newline, + ACTIONS(1028), 42, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275117,91 +279304,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [47548] = 20, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5344), 1, - anon_sym_DASH2, - ACTIONS(5350), 1, - anon_sym_and2, - ACTIONS(5362), 1, - anon_sym_PLUS2, - ACTIONS(5366), 1, - anon_sym_bit_DASHand2, - ACTIONS(5368), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5370), 1, - anon_sym_bit_DASHor2, - ACTIONS(5407), 1, - sym__newline, - STATE(2350), 1, - sym_comment, - STATE(2376), 1, - aux_sym_shebang_repeat1, - ACTIONS(5342), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5348), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5356), 2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5358), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5346), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5354), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5274), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5272), 21, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275210,40 +279336,24 @@ 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, - [47648] = 14, + [53403] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5344), 1, - anon_sym_DASH2, - ACTIONS(5362), 1, - anon_sym_PLUS2, - ACTIONS(5374), 1, + ACTIONS(5332), 1, sym__newline, - STATE(2323), 1, + STATE(2341), 1, aux_sym_shebang_repeat1, - STATE(2351), 1, + STATE(2391), 1, sym_comment, - ACTIONS(5342), 2, + ACTIONS(5347), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5300), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5348), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5358), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5354), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5286), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275252,150 +279362,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 31, + ACTIONS(5298), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, anon_sym_e_GT_PIPE, anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [47736] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5453), 1, - anon_sym_DOT, - ACTIONS(5455), 1, - aux_sym__immediate_decimal_token2, - STATE(2352), 1, - sym_comment, - ACTIONS(1607), 10, - 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, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1609), 45, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [47808] = 18, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [53477] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5344), 1, + ACTIONS(5337), 1, anon_sym_DASH2, - ACTIONS(5362), 1, + ACTIONS(5351), 1, anon_sym_PLUS2, - ACTIONS(5366), 1, - anon_sym_bit_DASHand2, - ACTIONS(5368), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5422), 1, + ACTIONS(5407), 1, sym__newline, - STATE(2353), 1, - sym_comment, - STATE(2405), 1, + STATE(2377), 1, aux_sym_shebang_repeat1, - ACTIONS(5342), 2, + STATE(2392), 1, + sym_comment, + ACTIONS(5335), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5348), 2, + ACTIONS(5341), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5356), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5358), 2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, + ACTIONS(5353), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5346), 4, + ACTIONS(5339), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5354), 4, + ACTIONS(5343), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5270), 8, + ACTIONS(5308), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275404,7 +279450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5268), 23, + ACTIONS(5306), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275419,6 +279465,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -275428,54 +279478,28 @@ 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, - [47904] = 19, + [53567] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5344), 1, - anon_sym_DASH2, - ACTIONS(5362), 1, - anon_sym_PLUS2, - ACTIONS(5366), 1, - anon_sym_bit_DASHand2, - ACTIONS(5368), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5370), 1, - anon_sym_bit_DASHor2, - ACTIONS(5374), 1, + ACTIONS(5332), 1, sym__newline, - STATE(2326), 1, - aux_sym_shebang_repeat1, - STATE(2354), 1, + STATE(2393), 1, sym_comment, - ACTIONS(5342), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5348), 2, + STATE(2396), 1, + aux_sym_shebang_repeat1, + ACTIONS(5341), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5356), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5358), 2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5346), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5354), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5286), 8, + ACTIONS(5300), 11, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275484,7 +279508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 22, + ACTIONS(5298), 38, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275496,9 +279520,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275507,45 +279547,58 @@ 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, - [48002] = 15, + [53645] = 21, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5344), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(5337), 1, anon_sym_DASH2, - ACTIONS(5362), 1, + ACTIONS(5351), 1, anon_sym_PLUS2, - ACTIONS(5407), 1, - sym__newline, - STATE(2342), 1, + ACTIONS(5355), 1, + anon_sym_bit_DASHand2, + ACTIONS(5357), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5359), 1, + anon_sym_bit_DASHor2, + ACTIONS(5428), 1, + anon_sym_and2, + ACTIONS(5448), 1, + anon_sym_xor2, + STATE(2363), 1, aux_sym_shebang_repeat1, - STATE(2355), 1, + STATE(2394), 1, sym_comment, - ACTIONS(5342), 2, + ACTIONS(5335), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5348), 2, + ACTIONS(5341), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5358), 2, + ACTIONS(5345), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, + ACTIONS(5353), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5346), 4, + ACTIONS(5339), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5354), 4, + ACTIONS(5343), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5274), 8, + ACTIONS(5326), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275554,7 +279607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5272), 27, + ACTIONS(5324), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275566,14 +279619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275582,16 +279628,16 @@ 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, - [48092] = 6, + [53747] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5457), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5459), 1, + ACTIONS(5458), 1, + anon_sym_DOT, + ACTIONS(5460), 1, aux_sym__immediate_decimal_token2, - STATE(2356), 1, + STATE(2395), 1, sym_comment, - ACTIONS(1621), 11, + ACTIONS(1573), 10, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -275599,11 +279645,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, anon_sym_DOT_DOT2, - aux_sym__val_number_decimal_token1, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - ACTIONS(1623), 44, + ACTIONS(1575), 45, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -275642,27 +279687,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [48164] = 6, + [53819] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2357), 1, + STATE(2396), 1, sym_comment, - ACTIONS(5393), 2, + ACTIONS(5361), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5278), 13, - anon_sym_GT2, + ACTIONS(5369), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(5375), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5320), 11, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -275672,7 +279722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5276), 41, + ACTIONS(5318), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275699,8 +279749,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -275714,136 +279762,72 @@ 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, - [48236] = 7, + [53895] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5314), 1, - anon_sym_DOT, - STATE(2358), 1, - sym_comment, - STATE(2373), 1, - aux_sym_cell_path_repeat1, - STATE(2558), 1, - sym_path, - ACTIONS(967), 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(969), 48, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [48310] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1579), 1, + ACTIONS(1559), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(5461), 1, + ACTIONS(3937), 1, anon_sym_DOLLAR, - ACTIONS(5463), 1, + ACTIONS(5462), 1, anon_sym_LPAREN2, - ACTIONS(5467), 1, + ACTIONS(5464), 1, + anon_sym_DOT, + ACTIONS(5466), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5468), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5470), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5469), 1, + ACTIONS(5472), 1, aux_sym__immediate_decimal_token5, - STATE(2359), 1, + STATE(2397), 1, sym_comment, - STATE(2874), 1, + STATE(2811), 1, sym__immediate_decimal, - ACTIONS(1577), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5465), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3061), 2, + STATE(2920), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1565), 45, + ACTIONS(1543), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1557), 28, + sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275852,167 +279836,29 @@ 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, - aux_sym__unquoted_in_list_token1, - [48394] = 18, + [53983] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, + ACTIONS(5365), 1, anon_sym_DASH2, - ACTIONS(5397), 1, + ACTIONS(5377), 1, anon_sym_PLUS2, - ACTIONS(5401), 1, - anon_sym_bit_DASHand2, - ACTIONS(5403), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5405), 1, - anon_sym_bit_DASHor2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2360), 1, + STATE(2398), 1, sym_comment, - ACTIONS(5377), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5383), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5391), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5393), 2, + ACTIONS(5361), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5381), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5389), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5278), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5276), 23, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [48490] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5379), 1, - anon_sym_DASH2, - ACTIONS(5397), 1, - anon_sym_PLUS2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2361), 1, - sym_comment, - ACTIONS(5383), 2, + ACTIONS(5369), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5393), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, + ACTIONS(5375), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5330), 10, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5328), 36, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [48572] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2362), 1, - sym_comment, - ACTIONS(5250), 13, + ACTIONS(5320), 10, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276021,7 +279867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5252), 44, + ACTIONS(5318), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276034,9 +279880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -276049,10 +279893,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -276066,98 +279906,48 @@ 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, - [48640] = 12, + [54063] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5344), 1, + ACTIONS(5387), 1, anon_sym_DASH2, - ACTIONS(5362), 1, + ACTIONS(5401), 1, anon_sym_PLUS2, - ACTIONS(5471), 1, - sym__newline, - STATE(2315), 1, - aux_sym_shebang_repeat1, - STATE(2363), 1, + ACTIONS(5405), 1, + anon_sym_bit_DASHand2, + ACTIONS(5474), 1, + anon_sym_bit_DASHxor2, + STATE(2399), 1, sym_comment, - ACTIONS(5348), 2, + ACTIONS(5385), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5391), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5358), 2, + ACTIONS(5395), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5397), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, + ACTIONS(5399), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, + ACTIONS(5403), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5334), 10, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5332), 35, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(5389), 4, anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(5393), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [48724] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2364), 1, - sym_comment, - ACTIONS(5383), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5393), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5330), 11, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276166,7 +279956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 39, + ACTIONS(5237), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276179,24 +279969,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -276206,27 +279982,23 @@ 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, - [48800] = 9, + [54155] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5471), 1, + ACTIONS(5407), 1, sym__newline, - STATE(2317), 1, + STATE(2325), 1, aux_sym_shebang_repeat1, - STATE(2365), 1, + STATE(2400), 1, sym_comment, - ACTIONS(5348), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5358), 2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5334), 11, + ACTIONS(5308), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -276236,7 +280008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5332), 38, + ACTIONS(5306), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276262,6 +280034,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -276275,38 +280049,50 @@ 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, - [48878] = 13, + [54229] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, + ACTIONS(5365), 1, anon_sym_DASH2, - ACTIONS(5397), 1, + ACTIONS(5377), 1, anon_sym_PLUS2, - STATE(1816), 1, + ACTIONS(5381), 1, + anon_sym_bit_DASHand2, + ACTIONS(5383), 1, + anon_sym_bit_DASHxor2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2366), 1, + STATE(2401), 1, sym_comment, - ACTIONS(5377), 2, + ACTIONS(5361), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5363), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5383), 2, + ACTIONS(5369), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5393), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, + ACTIONS(5373), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5375), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, + ACTIONS(5379), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, + ACTIONS(5367), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5371), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5330), 8, + ACTIONS(5304), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276315,7 +280101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 32, + ACTIONS(5302), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276328,17 +280114,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -276348,52 +280126,45 @@ 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, - [48964] = 18, + [54323] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5344), 1, + ACTIONS(5337), 1, anon_sym_DASH2, - ACTIONS(5362), 1, + ACTIONS(5351), 1, anon_sym_PLUS2, - ACTIONS(5366), 1, - anon_sym_bit_DASHand2, - ACTIONS(5368), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5407), 1, + ACTIONS(5416), 1, sym__newline, - STATE(2367), 1, - sym_comment, - STATE(2415), 1, + STATE(2388), 1, aux_sym_shebang_repeat1, - ACTIONS(5342), 2, + STATE(2402), 1, + sym_comment, + ACTIONS(5335), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5348), 2, + ACTIONS(5341), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5356), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5358), 2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, + ACTIONS(5353), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5346), 4, + ACTIONS(5339), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5354), 4, + ACTIONS(5343), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5274), 8, + ACTIONS(5326), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276402,7 +280173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5272), 23, + ACTIONS(5324), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276417,6 +280188,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -276426,40 +280201,22 @@ 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, - [49060] = 14, + [54413] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5344), 1, - anon_sym_DASH2, - ACTIONS(5362), 1, - anon_sym_PLUS2, - ACTIONS(5471), 1, - sym__newline, - STATE(2318), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2368), 1, + STATE(2403), 1, sym_comment, - ACTIONS(5342), 2, + ACTIONS(5361), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5304), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5348), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5358), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5354), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5334), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276468,7 +280225,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5332), 31, + ACTIONS(5302), 41, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276480,6 +280238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -276487,8 +280246,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -276500,29 +280267,26 @@ 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, - [49148] = 8, + [54485] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5372), 1, + ACTIONS(5264), 1, anon_sym_DOT, - STATE(2369), 1, + STATE(2404), 1, sym_comment, - STATE(2527), 1, + STATE(2419), 1, aux_sym_cell_path_repeat1, - STATE(2616), 1, + STATE(2575), 1, sym_path, - STATE(2686), 1, - sym_cell_path, - ACTIONS(961), 6, + ACTIONS(967), 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(963), 47, + ACTIONS(969), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -276560,6 +280324,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -276568,90 +280334,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [49224] = 6, + [54559] = 16, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2370), 1, + ACTIONS(5337), 1, + anon_sym_DASH2, + ACTIONS(5351), 1, + anon_sym_PLUS2, + ACTIONS(5425), 1, + sym__newline, + STATE(2405), 1, sym_comment, - ACTIONS(5393), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5330), 13, + STATE(2433), 1, + aux_sym_shebang_repeat1, + ACTIONS(5335), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5341), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5328), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, + ACTIONS(5345), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5347), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5349), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5353), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5339), 4, anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(5343), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [49296] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5374), 1, - sym__newline, - STATE(2324), 1, - aux_sym_shebang_repeat1, - STATE(2371), 1, - sym_comment, - ACTIONS(5358), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5286), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5330), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276660,7 +280384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 40, + ACTIONS(5328), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276672,24 +280396,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -276701,23 +280410,27 @@ 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, - [49370] = 7, + [54651] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5471), 1, + ACTIONS(5425), 1, sym__newline, - STATE(2357), 1, + STATE(2379), 1, aux_sym_shebang_repeat1, - STATE(2372), 1, + STATE(2406), 1, sym_comment, - ACTIONS(5358), 2, + ACTIONS(5341), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5334), 13, + ACTIONS(5349), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5330), 11, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -276727,7 +280440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5332), 40, + ACTIONS(5328), 38, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276753,8 +280466,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -276768,120 +280479,45 @@ 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, - [49444] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5474), 1, - anon_sym_DOT, - STATE(2558), 1, - sym_path, - STATE(2373), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(971), 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(973), 48, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [49516] = 19, + [54729] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5344), 1, + ACTIONS(5337), 1, anon_sym_DASH2, - ACTIONS(5362), 1, + ACTIONS(5351), 1, anon_sym_PLUS2, - ACTIONS(5366), 1, - anon_sym_bit_DASHand2, - ACTIONS(5368), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5370), 1, - anon_sym_bit_DASHor2, - ACTIONS(5422), 1, + ACTIONS(5425), 1, sym__newline, - STATE(2374), 1, + STATE(2407), 1, sym_comment, - STATE(2375), 1, + STATE(2462), 1, aux_sym_shebang_repeat1, - ACTIONS(5342), 2, + ACTIONS(5335), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5348), 2, + ACTIONS(5341), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5356), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5358), 2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, + ACTIONS(5353), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5346), 4, + ACTIONS(5339), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5354), 4, + ACTIONS(5343), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5270), 8, + ACTIONS(5330), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276890,7 +280526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5268), 22, + ACTIONS(5328), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276905,6 +280541,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276913,52 +280554,45 @@ 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, - [49614] = 18, + [54819] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, + ACTIONS(5332), 1, + sym__newline, + ACTIONS(5337), 1, anon_sym_DASH2, - ACTIONS(5397), 1, + ACTIONS(5351), 1, anon_sym_PLUS2, - ACTIONS(5401), 1, - anon_sym_bit_DASHand2, - ACTIONS(5403), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5405), 1, - anon_sym_bit_DASHor2, - STATE(1816), 1, + STATE(2372), 1, aux_sym_shebang_repeat1, - STATE(2375), 1, + STATE(2408), 1, sym_comment, - ACTIONS(5377), 2, + ACTIONS(5335), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5383), 2, + ACTIONS(5341), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5391), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5393), 2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, + ACTIONS(5353), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 4, + ACTIONS(5339), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5389), 4, + ACTIONS(5343), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5330), 8, + ACTIONS(5300), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276967,8 +280601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 23, - sym__newline, + ACTIONS(5298), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276983,6 +280616,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276991,54 +280629,46 @@ 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, - [49710] = 19, + [54909] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, + ACTIONS(5365), 1, anon_sym_DASH2, - ACTIONS(5385), 1, - anon_sym_and2, - ACTIONS(5397), 1, + ACTIONS(5377), 1, anon_sym_PLUS2, - ACTIONS(5401), 1, - anon_sym_bit_DASHand2, - ACTIONS(5403), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5405), 1, - anon_sym_bit_DASHor2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2376), 1, + STATE(2409), 1, sym_comment, - ACTIONS(5377), 2, + ACTIONS(5361), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5363), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5383), 2, + ACTIONS(5369), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5391), 2, + ACTIONS(5373), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5393), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, + ACTIONS(5375), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, + ACTIONS(5379), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 4, + ACTIONS(5367), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5389), 4, + ACTIONS(5371), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5282), 8, + ACTIONS(5320), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277047,7 +280677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5280), 22, + ACTIONS(5318), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277060,8 +280690,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277070,54 +280704,128 @@ 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, - [49808] = 19, + [54999] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4001), 1, + anon_sym_DQUOTE, + ACTIONS(4005), 1, + sym_raw_string_begin, + ACTIONS(5048), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5288), 1, + anon_sym_DASH_DASH, + STATE(2410), 1, + sym_comment, + STATE(2799), 1, + aux_sym_decl_def_repeat1, + STATE(3007), 1, + sym_long_flag, + STATE(3764), 1, + sym__val_number_decimal, + STATE(4154), 1, + sym_cmd_identifier, + STATE(4161), 1, + sym_val_string, + STATE(6794), 1, + sym__command_name, + ACTIONS(4003), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4332), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5036), 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(5038), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [55095] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5344), 1, + ACTIONS(5337), 1, anon_sym_DASH2, - ACTIONS(5362), 1, + ACTIONS(5351), 1, anon_sym_PLUS2, - ACTIONS(5366), 1, + ACTIONS(5355), 1, anon_sym_bit_DASHand2, - ACTIONS(5368), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5370), 1, - anon_sym_bit_DASHor2, - ACTIONS(5471), 1, + ACTIONS(5425), 1, sym__newline, - STATE(2360), 1, - aux_sym_shebang_repeat1, - STATE(2377), 1, + STATE(2411), 1, sym_comment, - ACTIONS(5342), 2, + STATE(2453), 1, + aux_sym_shebang_repeat1, + ACTIONS(5335), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5348), 2, + ACTIONS(5341), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5356), 2, + ACTIONS(5345), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5358), 2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, + ACTIONS(5353), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5346), 4, + ACTIONS(5339), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5354), 4, + ACTIONS(5343), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5334), 8, + ACTIONS(5330), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277126,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(5332), 22, + ACTIONS(5328), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277141,6 +280849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277149,54 +280859,34 @@ 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, - [49906] = 19, + [55189] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, + ACTIONS(5337), 1, anon_sym_DASH2, - ACTIONS(5385), 1, - anon_sym_and2, - ACTIONS(5397), 1, + ACTIONS(5351), 1, anon_sym_PLUS2, - ACTIONS(5401), 1, - anon_sym_bit_DASHand2, - ACTIONS(5403), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5405), 1, - anon_sym_bit_DASHor2, - STATE(1816), 1, + ACTIONS(5407), 1, + sym__newline, + STATE(2349), 1, aux_sym_shebang_repeat1, - STATE(2378), 1, + STATE(2412), 1, sym_comment, - ACTIONS(5377), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5383), 2, + ACTIONS(5341), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5391), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5393), 2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, + ACTIONS(5353), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5389), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5330), 8, + ACTIONS(5308), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277205,8 +280895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 22, - sym__newline, + ACTIONS(5306), 35, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277218,8 +280907,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277228,27 +280931,27 @@ 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, - [50004] = 10, + [55273] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, + ACTIONS(5365), 1, anon_sym_DASH2, - ACTIONS(5397), 1, + ACTIONS(5377), 1, anon_sym_PLUS2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2379), 1, + STATE(2413), 1, sym_comment, - ACTIONS(5383), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5393), 2, + ACTIONS(5361), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, + ACTIONS(5369), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5375), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5282), 10, + ACTIONS(5296), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -277259,7 +280962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5280), 38, + ACTIONS(5294), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277298,50 +281001,125 @@ 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, - [50084] = 17, + [55353] = 19, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, + ACTIONS(5365), 1, anon_sym_DASH2, - ACTIONS(5397), 1, + ACTIONS(5377), 1, anon_sym_PLUS2, - ACTIONS(5401), 1, + ACTIONS(5381), 1, anon_sym_bit_DASHand2, - ACTIONS(5403), 1, + ACTIONS(5383), 1, anon_sym_bit_DASHxor2, - STATE(1816), 1, + ACTIONS(5423), 1, + anon_sym_bit_DASHor2, + ACTIONS(5434), 1, + anon_sym_and2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2380), 1, + STATE(2414), 1, sym_comment, - ACTIONS(5377), 2, + ACTIONS(5361), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5363), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5383), 2, + ACTIONS(5369), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5391), 2, + ACTIONS(5373), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5393), 2, + ACTIONS(5375), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5379), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5367), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5371), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5296), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5294), 22, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [55451] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5365), 1, + anon_sym_DASH2, + ACTIONS(5377), 1, + anon_sym_PLUS2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2415), 1, + sym_comment, + ACTIONS(5361), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, + ACTIONS(5363), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5369), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5373), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5375), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, + ACTIONS(5379), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 4, + ACTIONS(5367), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5389), 4, + ACTIONS(5371), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5278), 8, + ACTIONS(5304), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277350,7 +281128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5276), 24, + ACTIONS(5302), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277366,6 +281144,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -277375,56 +281155,31 @@ 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, - [50178] = 20, + [55541] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, + ACTIONS(5332), 1, + sym__newline, + ACTIONS(5337), 1, anon_sym_DASH2, - ACTIONS(5385), 1, - anon_sym_and2, - ACTIONS(5387), 1, - anon_sym_xor2, - ACTIONS(5397), 1, + ACTIONS(5351), 1, anon_sym_PLUS2, - ACTIONS(5401), 1, - anon_sym_bit_DASHand2, - ACTIONS(5403), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5405), 1, - anon_sym_bit_DASHor2, - STATE(1816), 1, + STATE(2398), 1, aux_sym_shebang_repeat1, - STATE(2381), 1, + STATE(2416), 1, sym_comment, - ACTIONS(5377), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5383), 2, + ACTIONS(5341), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5391), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5393), 2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5381), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5389), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5330), 8, + ACTIONS(5300), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277433,8 +281188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 21, - sym__newline, + ACTIONS(5298), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277446,7 +281200,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277455,27 +281226,23 @@ 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, - [50278] = 9, + [55623] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5422), 1, + ACTIONS(5425), 1, sym__newline, - STATE(2364), 1, + STATE(2387), 1, aux_sym_shebang_repeat1, - STATE(2382), 1, + STATE(2417), 1, sym_comment, - ACTIONS(5348), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5358), 2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5270), 11, + ACTIONS(5330), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -277485,7 +281252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5268), 38, + ACTIONS(5328), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277511,6 +281278,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -277524,58 +281293,52 @@ 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, - [50356] = 21, + [55697] = 18, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(5344), 1, + ACTIONS(5365), 1, anon_sym_DASH2, - ACTIONS(5350), 1, - anon_sym_and2, - ACTIONS(5352), 1, - anon_sym_xor2, - ACTIONS(5362), 1, + ACTIONS(5377), 1, anon_sym_PLUS2, - ACTIONS(5366), 1, + ACTIONS(5381), 1, anon_sym_bit_DASHand2, - ACTIONS(5368), 1, + ACTIONS(5383), 1, anon_sym_bit_DASHxor2, - ACTIONS(5370), 1, + ACTIONS(5423), 1, anon_sym_bit_DASHor2, - STATE(2383), 1, - sym_comment, - STATE(2423), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(5342), 2, + STATE(2418), 1, + sym_comment, + ACTIONS(5361), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5363), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5348), 2, + ACTIONS(5369), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5356), 2, + ACTIONS(5373), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5358), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, + ACTIONS(5375), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, + ACTIONS(5379), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5346), 4, + ACTIONS(5367), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5354), 4, + ACTIONS(5371), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5334), 8, + ACTIONS(5296), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277584,7 +281347,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5332), 20, + ACTIONS(5294), 23, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277596,6 +281360,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -277605,29 +281371,163 @@ 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, - [50458] = 11, + [55793] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5476), 1, + anon_sym_DOT, + STATE(2575), 1, + sym_path, + STATE(2419), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(971), 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(973), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [55865] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5414), 1, + anon_sym_DOT, + STATE(2420), 1, + sym_comment, + STATE(2547), 1, + aux_sym_cell_path_repeat1, + STATE(2627), 1, + sym_path, + STATE(2670), 1, + sym_cell_path, + ACTIONS(961), 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(963), 47, + sym_raw_string_begin, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [55941] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5344), 1, + ACTIONS(5337), 1, anon_sym_DASH2, - ACTIONS(5362), 1, + ACTIONS(5351), 1, anon_sym_PLUS2, - ACTIONS(5374), 1, + ACTIONS(5416), 1, sym__newline, - STATE(2344), 1, + STATE(2330), 1, aux_sym_shebang_repeat1, - STATE(2384), 1, + STATE(2421), 1, sym_comment, - ACTIONS(5348), 2, + ACTIONS(5341), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5358), 2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5286), 10, + ACTIONS(5326), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -277638,7 +281538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 37, + ACTIONS(5324), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277676,43 +281576,48 @@ 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, - [50540] = 14, + [56023] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, + ACTIONS(5337), 1, anon_sym_DASH2, - ACTIONS(5397), 1, + ACTIONS(5351), 1, anon_sym_PLUS2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2385), 1, + ACTIONS(5407), 1, + sym__newline, + STATE(2422), 1, sym_comment, - ACTIONS(5377), 2, + STATE(2439), 1, + aux_sym_shebang_repeat1, + ACTIONS(5335), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5383), 2, + ACTIONS(5341), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5393), 2, + ACTIONS(5345), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, + ACTIONS(5353), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 4, + ACTIONS(5339), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5389), 4, + ACTIONS(5343), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5330), 8, + ACTIONS(5308), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277721,8 +281626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 28, - sym__newline, + ACTIONS(5306), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277737,8 +281641,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -277750,56 +281652,124 @@ 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, - [50628] = 20, + [56115] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5414), 1, + anon_sym_DOT, + STATE(2423), 1, + sym_comment, + STATE(2547), 1, + aux_sym_cell_path_repeat1, + STATE(2627), 1, + sym_path, + STATE(2708), 1, + sym_cell_path, + ACTIONS(1733), 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(1737), 47, + sym_raw_string_begin, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [56191] = 20, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5344), 1, + ACTIONS(5332), 1, + sym__newline, + ACTIONS(5337), 1, anon_sym_DASH2, - ACTIONS(5350), 1, - anon_sym_and2, - ACTIONS(5362), 1, + ACTIONS(5351), 1, anon_sym_PLUS2, - ACTIONS(5366), 1, + ACTIONS(5355), 1, anon_sym_bit_DASHand2, - ACTIONS(5368), 1, + ACTIONS(5357), 1, anon_sym_bit_DASHxor2, - ACTIONS(5370), 1, + ACTIONS(5359), 1, anon_sym_bit_DASHor2, - ACTIONS(5422), 1, - sym__newline, - STATE(2378), 1, + ACTIONS(5428), 1, + anon_sym_and2, + STATE(2357), 1, aux_sym_shebang_repeat1, - STATE(2386), 1, + STATE(2424), 1, sym_comment, - ACTIONS(5342), 2, + ACTIONS(5335), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5348), 2, + ACTIONS(5341), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5356), 2, + ACTIONS(5345), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5358), 2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, + ACTIONS(5353), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5346), 4, + ACTIONS(5339), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5354), 4, + ACTIONS(5343), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5270), 8, + ACTIONS(5300), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277808,7 +281778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5268), 21, + ACTIONS(5298), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277830,45 +281800,118 @@ 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, - [50728] = 15, + [56291] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5344), 1, + ACTIONS(5387), 1, anon_sym_DASH2, - ACTIONS(5362), 1, + ACTIONS(5401), 1, anon_sym_PLUS2, - ACTIONS(5471), 1, - sym__newline, - STATE(2387), 1, + STATE(2425), 1, sym_comment, - STATE(2428), 1, + ACTIONS(5391), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5397), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5399), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5403), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5239), 10, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5237), 37, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [56371] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5365), 1, + anon_sym_DASH2, + ACTIONS(5377), 1, + anon_sym_PLUS2, + ACTIONS(5381), 1, + anon_sym_bit_DASHand2, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(5342), 2, + STATE(2426), 1, + sym_comment, + ACTIONS(5361), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5363), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5348), 2, + ACTIONS(5369), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5358), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, + ACTIONS(5373), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5375), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, + ACTIONS(5379), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5346), 4, + ACTIONS(5367), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5354), 4, + ACTIONS(5371), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5334), 8, + ACTIONS(5320), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277877,7 +281920,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5332), 27, + ACTIONS(5318), 25, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277892,9 +281936,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -277905,32 +281946,27 @@ 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, - [50818] = 12, + [56463] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5344), 1, + ACTIONS(5365), 1, anon_sym_DASH2, - ACTIONS(5362), 1, + ACTIONS(5377), 1, anon_sym_PLUS2, - ACTIONS(5422), 1, - sym__newline, - STATE(2361), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2388), 1, + STATE(2427), 1, sym_comment, - ACTIONS(5348), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5358), 2, + ACTIONS(5361), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, + ACTIONS(5369), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5375), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5270), 10, + ACTIONS(5276), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -277941,7 +281977,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5268), 35, + ACTIONS(5274), 38, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277966,6 +282003,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -277977,58 +282016,48 @@ 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, - [50902] = 21, + [56543] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(5344), 1, + ACTIONS(5337), 1, anon_sym_DASH2, - ACTIONS(5350), 1, - anon_sym_and2, - ACTIONS(5352), 1, - anon_sym_xor2, - ACTIONS(5362), 1, + ACTIONS(5351), 1, anon_sym_PLUS2, - ACTIONS(5366), 1, - anon_sym_bit_DASHand2, - ACTIONS(5368), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5370), 1, - anon_sym_bit_DASHor2, - STATE(2381), 1, + ACTIONS(5416), 1, + sym__newline, + STATE(2415), 1, aux_sym_shebang_repeat1, - STATE(2389), 1, + STATE(2428), 1, sym_comment, - ACTIONS(5342), 2, + ACTIONS(5335), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5348), 2, + ACTIONS(5341), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5356), 2, + ACTIONS(5345), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5358), 2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, + ACTIONS(5353), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5346), 4, + ACTIONS(5339), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5354), 4, + ACTIONS(5343), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5270), 8, + ACTIONS(5326), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278037,7 +282066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5268), 20, + ACTIONS(5324), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278049,7 +282078,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -278058,56 +282092,24 @@ 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, - [51004] = 20, + [56635] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5344), 1, - anon_sym_DASH2, - ACTIONS(5350), 1, - anon_sym_and2, - ACTIONS(5362), 1, - anon_sym_PLUS2, - ACTIONS(5366), 1, - anon_sym_bit_DASHand2, - ACTIONS(5368), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5370), 1, - anon_sym_bit_DASHor2, - ACTIONS(5374), 1, - sym__newline, - STATE(2328), 1, - aux_sym_shebang_repeat1, - STATE(2390), 1, + STATE(2429), 1, sym_comment, - ACTIONS(5342), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5348), 2, + ACTIONS(5391), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5356), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5358), 2, + ACTIONS(5397), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, + ACTIONS(5399), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5346), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5354), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5286), 8, + ACTIONS(5239), 11, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278116,7 +282118,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 21, + ACTIONS(5237), 40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278128,8 +282131,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -278138,46 +282159,36 @@ 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, - [51104] = 15, + [56709] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, + ACTIONS(5387), 1, anon_sym_DASH2, - ACTIONS(5397), 1, + ACTIONS(5401), 1, anon_sym_PLUS2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2391), 1, + STATE(2430), 1, sym_comment, - ACTIONS(5377), 2, + ACTIONS(5385), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5383), 2, + ACTIONS(5391), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5391), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5393), 2, + ACTIONS(5397), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, + ACTIONS(5399), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, + ACTIONS(5403), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5389), 4, + ACTIONS(5393), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5282), 8, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278186,7 +282197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5280), 26, + ACTIONS(5237), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278199,9 +282210,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -278213,29 +282231,44 @@ 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, - [51194] = 10, + [56793] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, + ACTIONS(5387), 1, anon_sym_DASH2, - ACTIONS(5397), 1, + ACTIONS(5401), 1, anon_sym_PLUS2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2392), 1, + STATE(2431), 1, sym_comment, - ACTIONS(5383), 2, + ACTIONS(5385), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5391), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5393), 2, + ACTIONS(5395), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5397), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, + ACTIONS(5399), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5330), 10, - anon_sym_GT2, - anon_sym_LT2, + ACTIONS(5403), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5389), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5393), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278244,7 +282277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 38, + ACTIONS(5237), 27, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278257,21 +282290,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -278283,50 +282305,50 @@ 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, - [51274] = 18, + [56881] = 18, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_DQUOTE, - ACTIONS(4013), 1, + ACTIONS(4005), 1, sym_raw_string_begin, - ACTIONS(5045), 1, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5312), 1, + ACTIONS(5288), 1, anon_sym_DASH_DASH, - STATE(2307), 1, - aux_sym_decl_def_repeat1, - STATE(2393), 1, + STATE(2432), 1, sym_comment, - STATE(2973), 1, + STATE(2436), 1, + aux_sym_decl_def_repeat1, + STATE(3007), 1, sym_long_flag, - STATE(3762), 1, + STATE(3764), 1, sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(6330), 1, + STATE(4161), 1, + sym_val_string, + STATE(6745), 1, sym__command_name, - ACTIONS(4011), 2, + ACTIONS(4003), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4492), 2, + STATE(4332), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5033), 6, + ACTIONS(5036), 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(5035), 34, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -278361,31 +282383,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [51370] = 11, + [56977] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5344), 1, + ACTIONS(5365), 1, anon_sym_DASH2, - ACTIONS(5362), 1, + ACTIONS(5377), 1, anon_sym_PLUS2, - ACTIONS(5471), 1, - sym__newline, - STATE(2394), 1, - sym_comment, - STATE(2433), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(5348), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5358), 2, + STATE(2433), 1, + sym_comment, + ACTIONS(5361), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5334), 10, + ACTIONS(5363), 2, anon_sym_GT2, anon_sym_LT2, + ACTIONS(5369), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5373), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5375), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5379), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5367), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5371), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5296), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278394,7 +282431,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5332), 37, + ACTIONS(5294), 26, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278406,21 +282444,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -278432,46 +282458,50 @@ 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, - [51452] = 15, + [57067] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, + ACTIONS(5337), 1, anon_sym_DASH2, - ACTIONS(5397), 1, + ACTIONS(5351), 1, anon_sym_PLUS2, - STATE(1816), 1, + ACTIONS(5355), 1, + anon_sym_bit_DASHand2, + ACTIONS(5416), 1, + sym__newline, + STATE(2332), 1, aux_sym_shebang_repeat1, - STATE(2395), 1, + STATE(2434), 1, sym_comment, - ACTIONS(5377), 2, + ACTIONS(5335), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5383), 2, + ACTIONS(5341), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5391), 2, + ACTIONS(5345), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5393), 2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, + ACTIONS(5353), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 4, + ACTIONS(5339), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5389), 4, + ACTIONS(5343), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5330), 8, + ACTIONS(5326), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278480,8 +282510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 26, - sym__newline, + ACTIONS(5324), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278496,7 +282525,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -278507,14 +282535,171 @@ 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, - [51542] = 5, + [57161] = 18, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5477), 1, - anon_sym_LBRACK2, - STATE(2396), 1, + ACTIONS(4001), 1, + anon_sym_DQUOTE, + ACTIONS(4005), 1, + sym_raw_string_begin, + ACTIONS(5048), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5288), 1, + anon_sym_DASH_DASH, + STATE(2435), 1, + sym_comment, + STATE(2438), 1, + aux_sym_decl_def_repeat1, + STATE(3007), 1, + sym_long_flag, + STATE(3764), 1, + sym__val_number_decimal, + STATE(4154), 1, + sym_cmd_identifier, + STATE(4161), 1, + sym_val_string, + STATE(6758), 1, + sym__command_name, + ACTIONS(4003), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4332), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5036), 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(5038), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [57257] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4001), 1, + anon_sym_DQUOTE, + ACTIONS(4005), 1, + sym_raw_string_begin, + ACTIONS(5048), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5288), 1, + anon_sym_DASH_DASH, + STATE(2436), 1, + sym_comment, + STATE(2799), 1, + aux_sym_decl_def_repeat1, + STATE(3007), 1, + sym_long_flag, + STATE(3764), 1, + sym__val_number_decimal, + STATE(4154), 1, + sym_cmd_identifier, + STATE(4161), 1, + sym_val_string, + STATE(6759), 1, + sym__command_name, + ACTIONS(4003), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4332), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5036), 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(5038), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [57353] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2437), 1, sym_comment, - ACTIONS(2337), 13, + ACTIONS(5397), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5239), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -278528,8 +282713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2341), 43, - ts_builtin_sym_end, + ACTIONS(5237), 42, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278541,8 +282725,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -278555,87 +282741,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [51612] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5344), 1, - anon_sym_DASH2, - ACTIONS(5362), 1, - anon_sym_PLUS2, - ACTIONS(5422), 1, - sym__newline, - STATE(2385), 1, - aux_sym_shebang_repeat1, - STATE(2397), 1, - sym_comment, - ACTIONS(5342), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5348), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5358), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5346), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5354), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5270), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5268), 27, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -278647,196 +282756,124 @@ 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, - [51702] = 16, + [57423] = 18, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5344), 1, - anon_sym_DASH2, - ACTIONS(5362), 1, - anon_sym_PLUS2, - ACTIONS(5471), 1, - sym__newline, - STATE(2319), 1, - aux_sym_shebang_repeat1, - STATE(2398), 1, - sym_comment, - ACTIONS(5342), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5348), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5356), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5358), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5346), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5354), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5334), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5332), 25, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [51794] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5461), 1, - anon_sym_DOLLAR, - ACTIONS(5463), 1, - anon_sym_LPAREN2, - ACTIONS(5467), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5469), 1, - aux_sym__immediate_decimal_token5, - STATE(2399), 1, - sym_comment, - STATE(2894), 1, - sym__immediate_decimal, - ACTIONS(1544), 2, + ACTIONS(4001), 1, + anon_sym_DQUOTE, + ACTIONS(4005), 1, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5465), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3016), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1530), 45, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(5288), 1, + anon_sym_DASH_DASH, + STATE(2438), 1, + sym_comment, + STATE(2799), 1, + aux_sym_decl_def_repeat1, + STATE(3007), 1, + sym_long_flag, + STATE(3764), 1, + sym__val_number_decimal, + STATE(4154), 1, + sym_cmd_identifier, + STATE(4161), 1, + sym_val_string, + STATE(6761), 1, + sym__command_name, + ACTIONS(4003), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [51878] = 16, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4332), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5036), 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(5038), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [57519] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, + ACTIONS(5365), 1, anon_sym_DASH2, - ACTIONS(5397), 1, + ACTIONS(5377), 1, anon_sym_PLUS2, - ACTIONS(5401), 1, - anon_sym_bit_DASHand2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2400), 1, + STATE(2439), 1, sym_comment, - ACTIONS(5377), 2, + ACTIONS(5361), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5363), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5383), 2, + ACTIONS(5369), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5391), 2, + ACTIONS(5373), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5393), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, + ACTIONS(5375), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, + ACTIONS(5379), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 4, + ACTIONS(5367), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5389), 4, + ACTIONS(5371), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5330), 8, + ACTIONS(5276), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278845,7 +282882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 25, + ACTIONS(5274), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278861,6 +282898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -278871,32 +282909,54 @@ 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, - [51970] = 11, + [57609] = 19, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, + ACTIONS(5365), 1, anon_sym_DASH2, - ACTIONS(5397), 1, + ACTIONS(5377), 1, anon_sym_PLUS2, - STATE(1816), 1, + ACTIONS(5381), 1, + anon_sym_bit_DASHand2, + ACTIONS(5383), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5423), 1, + anon_sym_bit_DASHor2, + ACTIONS(5434), 1, + anon_sym_and2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2401), 1, + STATE(2440), 1, sym_comment, - ACTIONS(5383), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5393), 2, + ACTIONS(5361), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, + ACTIONS(5363), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5369), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5373), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5375), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, + ACTIONS(5379), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5282), 10, - anon_sym_GT2, - anon_sym_LT2, + ACTIONS(5367), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5371), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5304), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278905,7 +282965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5280), 36, + ACTIONS(5302), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278918,22 +282978,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -278942,48 +282988,52 @@ 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, - [52052] = 16, + [57707] = 18, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5344), 1, + ACTIONS(5337), 1, anon_sym_DASH2, - ACTIONS(5362), 1, + ACTIONS(5351), 1, anon_sym_PLUS2, - ACTIONS(5374), 1, + ACTIONS(5355), 1, + anon_sym_bit_DASHand2, + ACTIONS(5357), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5416), 1, sym__newline, - STATE(2346), 1, + STATE(2401), 1, aux_sym_shebang_repeat1, - STATE(2402), 1, + STATE(2441), 1, sym_comment, - ACTIONS(5342), 2, + ACTIONS(5335), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5348), 2, + ACTIONS(5341), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5356), 2, + ACTIONS(5345), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5358), 2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, + ACTIONS(5353), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5346), 4, + ACTIONS(5339), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5354), 4, + ACTIONS(5343), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5286), 8, + ACTIONS(5326), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278992,7 +283042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 25, + ACTIONS(5324), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279007,8 +283057,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -279018,50 +283066,50 @@ 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, - [52144] = 17, + [57803] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5344), 1, + ACTIONS(5387), 1, anon_sym_DASH2, - ACTIONS(5362), 1, + ACTIONS(5401), 1, anon_sym_PLUS2, - ACTIONS(5366), 1, + ACTIONS(5405), 1, anon_sym_bit_DASHand2, - ACTIONS(5471), 1, - sym__newline, - STATE(2403), 1, + ACTIONS(5474), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5479), 1, + anon_sym_bit_DASHor2, + STATE(2442), 1, sym_comment, - STATE(2417), 1, - aux_sym_shebang_repeat1, - ACTIONS(5342), 2, + ACTIONS(5385), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5348), 2, + ACTIONS(5391), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5356), 2, + ACTIONS(5395), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5358), 2, + ACTIONS(5397), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, + ACTIONS(5399), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, + ACTIONS(5403), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5346), 4, + ACTIONS(5389), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5354), 4, + ACTIONS(5393), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5334), 8, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279070,7 +283118,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5332), 24, + ACTIONS(5237), 24, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279082,11 +283131,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -279095,31 +283143,26 @@ 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, - [52238] = 11, + [57897] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5344), 1, - anon_sym_DASH2, - ACTIONS(5362), 1, - anon_sym_PLUS2, - ACTIONS(5407), 1, - sym__newline, - STATE(2379), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2404), 1, + STATE(2443), 1, sym_comment, - ACTIONS(5348), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5358), 2, + ACTIONS(5361), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, + ACTIONS(5369), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5375), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5274), 10, + ACTIONS(5276), 11, anon_sym_GT2, anon_sym_LT2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279128,7 +283171,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5272), 37, + ACTIONS(5274), 39, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279140,6 +283184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -279166,50 +283211,19 @@ 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, - [52320] = 17, + [57973] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, - anon_sym_DASH2, - ACTIONS(5397), 1, - anon_sym_PLUS2, - ACTIONS(5401), 1, - anon_sym_bit_DASHand2, - ACTIONS(5403), 1, - anon_sym_bit_DASHxor2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2405), 1, + ACTIONS(5481), 1, + anon_sym_LBRACK2, + STATE(2444), 1, sym_comment, - ACTIONS(5377), 2, + ACTIONS(2322), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5383), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5391), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5393), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5381), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5389), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5330), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279218,7 +283232,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5328), 24, + ACTIONS(2326), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279230,85 +283245,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [52414] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5379), 1, - anon_sym_DASH2, - ACTIONS(5397), 1, - anon_sym_PLUS2, - ACTIONS(5401), 1, - anon_sym_bit_DASHand2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2406), 1, - sym_comment, - ACTIONS(5377), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5383), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5391), 2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5393), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5389), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5282), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5280), 25, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -279319,52 +283276,48 @@ 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, - [52506] = 18, + [58043] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5344), 1, + ACTIONS(5332), 1, + sym__newline, + ACTIONS(5337), 1, anon_sym_DASH2, - ACTIONS(5362), 1, + ACTIONS(5351), 1, anon_sym_PLUS2, - ACTIONS(5366), 1, - anon_sym_bit_DASHand2, - ACTIONS(5368), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5471), 1, - sym__newline, - STATE(2380), 1, + STATE(2409), 1, aux_sym_shebang_repeat1, - STATE(2407), 1, + STATE(2445), 1, sym_comment, - ACTIONS(5342), 2, + ACTIONS(5335), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5348), 2, + ACTIONS(5341), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5356), 2, + ACTIONS(5345), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5358), 2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, + ACTIONS(5353), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5346), 4, + ACTIONS(5339), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5354), 4, + ACTIONS(5343), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5334), 8, + ACTIONS(5300), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279373,7 +283326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5332), 23, + ACTIONS(5298), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279388,6 +283341,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -279397,40 +283352,38 @@ 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, - [52602] = 14, + [58135] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5344), 1, + ACTIONS(5365), 1, anon_sym_DASH2, - ACTIONS(5362), 1, + ACTIONS(5377), 1, anon_sym_PLUS2, - ACTIONS(5422), 1, - sym__newline, - STATE(2366), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2408), 1, + STATE(2446), 1, sym_comment, - ACTIONS(5342), 2, + ACTIONS(5361), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5363), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5348), 2, + ACTIONS(5369), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5358), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, + ACTIONS(5375), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, + ACTIONS(5379), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5354), 4, + ACTIONS(5371), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5270), 8, + ACTIONS(5320), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279439,7 +283392,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5268), 31, + ACTIONS(5318), 32, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279471,50 +283425,52 @@ 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, - [52690] = 17, + [58221] = 18, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5344), 1, + ACTIONS(5387), 1, anon_sym_DASH2, - ACTIONS(5362), 1, + ACTIONS(5401), 1, anon_sym_PLUS2, - ACTIONS(5366), 1, + ACTIONS(5405), 1, anon_sym_bit_DASHand2, - ACTIONS(5374), 1, - sym__newline, - STATE(2348), 1, - aux_sym_shebang_repeat1, - STATE(2409), 1, + ACTIONS(5474), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5479), 1, + anon_sym_bit_DASHor2, + ACTIONS(5483), 1, + anon_sym_and2, + STATE(2447), 1, sym_comment, - ACTIONS(5342), 2, + ACTIONS(5385), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5348), 2, + ACTIONS(5391), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5356), 2, + ACTIONS(5395), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5358), 2, + ACTIONS(5397), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, + ACTIONS(5399), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, + ACTIONS(5403), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5346), 4, + ACTIONS(5389), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5354), 4, + ACTIONS(5393), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5286), 8, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279523,7 +283479,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 24, + ACTIONS(5237), 23, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279535,11 +283492,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, + anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -279548,26 +283503,50 @@ 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, - [52784] = 8, + [58317] = 17, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + ACTIONS(5365), 1, + anon_sym_DASH2, + ACTIONS(5377), 1, + anon_sym_PLUS2, + ACTIONS(5381), 1, + anon_sym_bit_DASHand2, + ACTIONS(5383), 1, + anon_sym_bit_DASHxor2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2410), 1, + STATE(2448), 1, sym_comment, - ACTIONS(5383), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5393), 2, + ACTIONS(5361), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5282), 11, + ACTIONS(5363), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, + ACTIONS(5369), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5373), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5375), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5379), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5367), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5371), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5320), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279576,7 +283555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5280), 39, + ACTIONS(5318), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279589,24 +283568,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -279616,54 +283580,54 @@ 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, - [52860] = 19, + [58411] = 19, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, + ACTIONS(5337), 1, anon_sym_DASH2, - ACTIONS(5385), 1, - anon_sym_and2, - ACTIONS(5397), 1, + ACTIONS(5351), 1, anon_sym_PLUS2, - ACTIONS(5401), 1, + ACTIONS(5355), 1, anon_sym_bit_DASHand2, - ACTIONS(5403), 1, + ACTIONS(5357), 1, anon_sym_bit_DASHxor2, - ACTIONS(5405), 1, + ACTIONS(5359), 1, anon_sym_bit_DASHor2, - STATE(1816), 1, + ACTIONS(5425), 1, + sym__newline, + STATE(2418), 1, aux_sym_shebang_repeat1, - STATE(2411), 1, + STATE(2449), 1, sym_comment, - ACTIONS(5377), 2, + ACTIONS(5335), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5383), 2, + ACTIONS(5341), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5391), 2, + ACTIONS(5345), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5393), 2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, + ACTIONS(5353), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 4, + ACTIONS(5339), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5389), 4, + ACTIONS(5343), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5278), 8, + ACTIONS(5330), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279672,8 +283636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5276), 22, - sym__newline, + ACTIONS(5328), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279685,6 +283648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_err_GT_GT, @@ -279695,98 +283659,32 @@ 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, - [52958] = 18, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4009), 1, - anon_sym_DQUOTE, - ACTIONS(4013), 1, - sym_raw_string_begin, - ACTIONS(5045), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5312), 1, - anon_sym_DASH_DASH, - STATE(2412), 1, - sym_comment, - STATE(2805), 1, - aux_sym_decl_def_repeat1, - STATE(2973), 1, - sym_long_flag, - STATE(3762), 1, - sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, - sym_cmd_identifier, - STATE(6273), 1, - sym__command_name, - ACTIONS(4011), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5043), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4492), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5033), 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(5035), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [53054] = 7, + [58509] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5245), 1, - sym__newline, - STATE(2413), 1, + ACTIONS(5365), 1, + anon_sym_DASH2, + ACTIONS(5377), 1, + anon_sym_PLUS2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(2450), 1, sym_comment, - ACTIONS(5250), 5, - anon_sym_GT2, + ACTIONS(5361), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5369), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5254), 8, + ACTIONS(5375), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5379), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5304), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279795,7 +283693,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5248), 20, + ACTIONS(5302), 36, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279807,17 +283706,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(5252), 23, - anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -279831,23 +283719,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53128] = 5, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [58591] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1046), 1, - aux_sym_record_entry_token1, - STATE(2414), 1, + STATE(2451), 1, sym_comment, - ACTIONS(1030), 14, + ACTIONS(2444), 14, sym__newline, anon_sym_GT2, anon_sym_STAR2, @@ -279862,7 +283750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1032), 42, + ACTIONS(2446), 43, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279897,6 +283785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -279905,50 +283794,38 @@ 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, - [53198] = 17, + [58659] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, + ACTIONS(5365), 1, anon_sym_DASH2, - ACTIONS(5397), 1, + ACTIONS(5377), 1, anon_sym_PLUS2, - ACTIONS(5401), 1, - anon_sym_bit_DASHand2, - ACTIONS(5403), 1, - anon_sym_bit_DASHxor2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2415), 1, + STATE(2452), 1, sym_comment, - ACTIONS(5377), 2, + ACTIONS(5361), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5363), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5383), 2, + ACTIONS(5369), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5391), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5393), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, + ACTIONS(5375), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, + ACTIONS(5379), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5389), 4, + ACTIONS(5371), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5282), 8, + ACTIONS(5276), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279957,7 +283834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5280), 24, + ACTIONS(5274), 32, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279970,9 +283847,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -279982,215 +283867,48 @@ 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, - [53292] = 18, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3127), 1, - anon_sym_DQUOTE, - ACTIONS(3133), 1, - sym_raw_string_begin, - ACTIONS(5045), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5292), 1, - sym__newline, - STATE(2416), 1, - sym_comment, - STATE(2571), 1, - aux_sym_command_list_repeat1, - STATE(2869), 1, - aux_sym_shebang_repeat1, - STATE(3723), 1, - sym__val_number_decimal, - STATE(7136), 1, - sym__command_name, - STATE(7397), 1, - sym_val_string, - STATE(7535), 1, - sym_cmd_identifier, - ACTIONS(3129), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5043), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5497), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5288), 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(5290), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [53388] = 16, + [58745] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, + ACTIONS(5365), 1, anon_sym_DASH2, - ACTIONS(5397), 1, + ACTIONS(5377), 1, anon_sym_PLUS2, - ACTIONS(5401), 1, + ACTIONS(5381), 1, anon_sym_bit_DASHand2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2417), 1, + STATE(2453), 1, sym_comment, - ACTIONS(5377), 2, + ACTIONS(5361), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5363), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5383), 2, + ACTIONS(5369), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5391), 2, + ACTIONS(5373), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5393), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, + ACTIONS(5375), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, + ACTIONS(5379), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 4, + ACTIONS(5367), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5389), 4, + ACTIONS(5371), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5278), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5276), 25, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [53480] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2550), 1, - anon_sym_DOLLAR, - ACTIONS(5302), 1, - anon_sym_LPAREN2, - ACTIONS(5479), 1, - anon_sym_DOT, - ACTIONS(5483), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5485), 1, - aux_sym__immediate_decimal_token5, - STATE(2418), 1, - sym_comment, - STATE(2825), 1, - sym__immediate_decimal, - ACTIONS(1591), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5481), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2801), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1581), 45, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5296), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280199,46 +283917,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [53564] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5374), 1, + ACTIONS(5294), 25, sym__newline, - STATE(2321), 1, - aux_sym_shebang_repeat1, - STATE(2419), 1, - sym_comment, - ACTIONS(5348), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5358), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5286), 11, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5284), 38, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280250,23 +283930,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -280277,50 +283943,50 @@ 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, - [53642] = 17, + [58837] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5344), 1, + ACTIONS(5337), 1, anon_sym_DASH2, - ACTIONS(5362), 1, + ACTIONS(5351), 1, anon_sym_PLUS2, - ACTIONS(5366), 1, + ACTIONS(5355), 1, anon_sym_bit_DASHand2, ACTIONS(5407), 1, sym__newline, - STATE(2406), 1, - aux_sym_shebang_repeat1, - STATE(2420), 1, + STATE(2454), 1, sym_comment, - ACTIONS(5342), 2, + STATE(2458), 1, + aux_sym_shebang_repeat1, + ACTIONS(5335), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5348), 2, + ACTIONS(5341), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5356), 2, + ACTIONS(5345), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5358), 2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, + ACTIONS(5353), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5346), 4, + ACTIONS(5339), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5354), 4, + ACTIONS(5343), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5274), 8, + ACTIONS(5308), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280329,7 +283995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5272), 24, + ACTIONS(5306), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280354,22 +284020,27 @@ 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, - [53736] = 6, + [58931] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2421), 1, + ACTIONS(5387), 1, + anon_sym_DASH2, + ACTIONS(5401), 1, + anon_sym_PLUS2, + STATE(2455), 1, sym_comment, - ACTIONS(5393), 2, + ACTIONS(5391), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5397), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5282), 13, + ACTIONS(5399), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5239), 10, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280378,7 +284049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5280), 41, + ACTIONS(5237), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280391,8 +284062,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -280405,8 +284076,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -280420,124 +284089,58 @@ 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, - [53808] = 8, + [59009] = 21, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5372), 1, - anon_sym_DOT, - STATE(2422), 1, - sym_comment, - STATE(2527), 1, - aux_sym_cell_path_repeat1, - STATE(2616), 1, - sym_path, - STATE(2723), 1, - sym_cell_path, - ACTIONS(1769), 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(1771), 47, - sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(3929), 1, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [53884] = 20, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5379), 1, + ACTIONS(5337), 1, anon_sym_DASH2, - ACTIONS(5385), 1, - anon_sym_and2, - ACTIONS(5387), 1, - anon_sym_xor2, - ACTIONS(5397), 1, + ACTIONS(5351), 1, anon_sym_PLUS2, - ACTIONS(5401), 1, + ACTIONS(5355), 1, anon_sym_bit_DASHand2, - ACTIONS(5403), 1, + ACTIONS(5357), 1, anon_sym_bit_DASHxor2, - ACTIONS(5405), 1, + ACTIONS(5359), 1, anon_sym_bit_DASHor2, - STATE(1816), 1, + ACTIONS(5428), 1, + anon_sym_and2, + ACTIONS(5448), 1, + anon_sym_xor2, + STATE(2383), 1, aux_sym_shebang_repeat1, - STATE(2423), 1, + STATE(2456), 1, sym_comment, - ACTIONS(5377), 2, + ACTIONS(5335), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5383), 2, + ACTIONS(5341), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5391), 2, + ACTIONS(5345), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5393), 2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, + ACTIONS(5353), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 4, + ACTIONS(5339), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5389), 4, + ACTIONS(5343), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5278), 8, + ACTIONS(5330), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280546,8 +284149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5276), 21, - sym__newline, + ACTIONS(5328), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280568,124 +284170,54 @@ 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, - [53984] = 12, + [59111] = 19, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5344), 1, + ACTIONS(5387), 1, anon_sym_DASH2, - ACTIONS(5362), 1, + ACTIONS(5401), 1, anon_sym_PLUS2, - ACTIONS(5407), 1, - sym__newline, - STATE(2401), 1, - aux_sym_shebang_repeat1, - STATE(2424), 1, - sym_comment, - ACTIONS(5348), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5358), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5274), 10, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5272), 35, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(5405), 1, anon_sym_bit_DASHand2, + ACTIONS(5474), 1, anon_sym_bit_DASHxor2, + ACTIONS(5479), 1, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [54068] = 18, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5344), 1, - anon_sym_DASH2, - ACTIONS(5362), 1, - anon_sym_PLUS2, - ACTIONS(5366), 1, - anon_sym_bit_DASHand2, - ACTIONS(5368), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5374), 1, - sym__newline, - STATE(2349), 1, - aux_sym_shebang_repeat1, - STATE(2425), 1, + ACTIONS(5483), 1, + anon_sym_and2, + ACTIONS(5485), 1, + anon_sym_xor2, + STATE(2457), 1, sym_comment, - ACTIONS(5342), 2, + ACTIONS(5385), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5348), 2, + ACTIONS(5391), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5356), 2, + ACTIONS(5395), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5358), 2, + ACTIONS(5397), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, + ACTIONS(5399), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, + ACTIONS(5403), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5346), 4, + ACTIONS(5389), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5354), 4, + ACTIONS(5393), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5286), 8, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280694,7 +284226,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 23, + ACTIONS(5237), 22, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280706,10 +284239,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, + anon_sym_RBRACE, anon_sym_or2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -280718,52 +284249,48 @@ 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, - [54164] = 18, + [59209] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, + ACTIONS(5365), 1, anon_sym_DASH2, - ACTIONS(5397), 1, + ACTIONS(5377), 1, anon_sym_PLUS2, - ACTIONS(5401), 1, + ACTIONS(5381), 1, anon_sym_bit_DASHand2, - ACTIONS(5403), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5405), 1, - anon_sym_bit_DASHor2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(2426), 1, + STATE(2458), 1, sym_comment, - ACTIONS(5377), 2, + ACTIONS(5361), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5363), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5383), 2, + ACTIONS(5369), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5391), 2, + ACTIONS(5373), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5393), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, + ACTIONS(5375), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, + ACTIONS(5379), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 4, + ACTIONS(5367), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5389), 4, + ACTIONS(5371), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5282), 8, + ACTIONS(5276), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280772,7 +284299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5280), 23, + ACTIONS(5274), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280788,6 +284315,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -280796,109 +284325,41 @@ 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, - [54260] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5487), 1, - anon_sym_DOT, - ACTIONS(5489), 1, - aux_sym__immediate_decimal_token2, - STATE(2427), 1, - sym_comment, - ACTIONS(1609), 7, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1607), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [54332] = 14, + [59301] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, + ACTIONS(5387), 1, anon_sym_DASH2, - ACTIONS(5397), 1, + ACTIONS(5401), 1, anon_sym_PLUS2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2428), 1, + STATE(2459), 1, sym_comment, - ACTIONS(5377), 2, + ACTIONS(5385), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5383), 2, + ACTIONS(5391), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5393), 2, + ACTIONS(5397), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, + ACTIONS(5399), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, + ACTIONS(5403), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 4, + ACTIONS(5389), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5389), 4, + ACTIONS(5393), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5278), 8, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280907,7 +284368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5276), 28, + ACTIONS(5237), 29, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280920,6 +284381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -280936,106 +284398,20 @@ 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, - [54420] = 18, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3127), 1, - anon_sym_DQUOTE, - ACTIONS(3133), 1, - sym_raw_string_begin, - ACTIONS(5045), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5292), 1, - sym__newline, - STATE(2429), 1, - sym_comment, - STATE(2576), 1, - aux_sym_command_list_repeat1, - STATE(2869), 1, - aux_sym_shebang_repeat1, - STATE(3723), 1, - sym__val_number_decimal, - STATE(6968), 1, - sym__command_name, - STATE(7397), 1, - sym_val_string, - STATE(7535), 1, - sym_cmd_identifier, - ACTIONS(3129), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5043), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5497), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5288), 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(5290), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [54516] = 9, + [59387] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(5249), 1, sym__newline, - STATE(2410), 1, - aux_sym_shebang_repeat1, - STATE(2430), 1, + STATE(2460), 1, sym_comment, - ACTIONS(5348), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5358), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5274), 11, + ACTIONS(5254), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(5258), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281044,7 +284420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5272), 38, + ACTIONS(5252), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281056,6 +284432,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(5256), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -281070,26 +284456,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [54594] = 4, + [59461] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2431), 1, + ACTIONS(4956), 1, + aux_sym_unquoted_token2, + STATE(2461), 1, sym_comment, - ACTIONS(1709), 14, - sym__newline, + ACTIONS(1707), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -281103,7 +284486,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1721), 43, + ACTIONS(1719), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281116,7 +284501,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -281138,7 +284522,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281147,40 +284530,43 @@ 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, - [54662] = 14, + [59531] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5344), 1, + ACTIONS(5365), 1, anon_sym_DASH2, - ACTIONS(5362), 1, + ACTIONS(5377), 1, anon_sym_PLUS2, - ACTIONS(5407), 1, - sym__newline, - STATE(2432), 1, - sym_comment, - STATE(2441), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(5342), 2, + STATE(2462), 1, + sym_comment, + ACTIONS(5361), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5363), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5348), 2, + ACTIONS(5369), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5358), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, + ACTIONS(5375), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, + ACTIONS(5379), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5354), 4, + ACTIONS(5367), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5371), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5274), 8, + ACTIONS(5296), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281189,7 +284575,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5272), 31, + ACTIONS(5294), 28, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281201,13 +284588,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, @@ -281221,29 +284604,17 @@ 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, - [54750] = 10, + [59619] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, - anon_sym_DASH2, - ACTIONS(5397), 1, - anon_sym_PLUS2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2433), 1, + STATE(2463), 1, sym_comment, - ACTIONS(5383), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5393), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5278), 10, + ACTIONS(2402), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281252,7 +284623,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5276), 38, + ACTIONS(2404), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281264,7 +284636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -281278,6 +284650,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -281291,15 +284667,12 @@ 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, - [54830] = 5, + [59686] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4801), 1, - aux_sym_record_entry_token1, - STATE(2434), 1, + STATE(2464), 1, sym_comment, - ACTIONS(1030), 14, - sym__newline, + ACTIONS(2390), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -281313,7 +284686,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1032), 42, + ACTIONS(2392), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281326,7 +284701,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -281356,97 +284730,12 @@ 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, - [54900] = 18, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4009), 1, - anon_sym_DQUOTE, - ACTIONS(4013), 1, - sym_raw_string_begin, - ACTIONS(5045), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5312), 1, - anon_sym_DASH_DASH, - STATE(2435), 1, - sym_comment, - STATE(2438), 1, - aux_sym_decl_def_repeat1, - STATE(2973), 1, - sym_long_flag, - STATE(3762), 1, - sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, - sym_cmd_identifier, - STATE(6593), 1, - sym__command_name, - ACTIONS(4011), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5043), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4492), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5033), 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(5035), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [54996] = 7, + [59753] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5407), 1, - sym__newline, - STATE(2421), 1, - aux_sym_shebang_repeat1, - STATE(2436), 1, + STATE(2465), 1, sym_comment, - ACTIONS(5358), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5274), 13, + ACTIONS(2490), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -281460,7 +284749,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5272), 40, + ACTIONS(2492), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281471,7 +284762,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -281486,6 +284776,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -281501,169 +284793,12 @@ 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, - [55070] = 18, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4009), 1, - anon_sym_DQUOTE, - ACTIONS(4013), 1, - sym_raw_string_begin, - ACTIONS(5045), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5312), 1, - anon_sym_DASH_DASH, - STATE(2437), 1, - sym_comment, - STATE(2440), 1, - aux_sym_decl_def_repeat1, - STATE(2973), 1, - sym_long_flag, - STATE(3762), 1, - sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, - sym_cmd_identifier, - STATE(6610), 1, - sym__command_name, - ACTIONS(4011), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5043), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4492), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5033), 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(5035), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [55166] = 18, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4009), 1, - anon_sym_DQUOTE, - ACTIONS(4013), 1, - sym_raw_string_begin, - ACTIONS(5045), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5312), 1, - anon_sym_DASH_DASH, - STATE(2438), 1, - sym_comment, - STATE(2805), 1, - aux_sym_decl_def_repeat1, - STATE(2973), 1, - sym_long_flag, - STATE(3762), 1, - sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, - sym_cmd_identifier, - STATE(6611), 1, - sym__command_name, - ACTIONS(4011), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5043), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4492), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5033), 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(5035), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [55262] = 4, + [59820] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2439), 1, + STATE(2466), 1, sym_comment, - ACTIONS(2363), 14, - sym__newline, + ACTIONS(2034), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -281677,7 +284812,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2365), 43, + ACTIONS(2036), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281690,7 +284827,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -281712,7 +284848,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281721,116 +284856,17 @@ 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, - [55330] = 18, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4009), 1, - anon_sym_DQUOTE, - ACTIONS(4013), 1, - sym_raw_string_begin, - ACTIONS(5045), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5312), 1, - anon_sym_DASH_DASH, - STATE(2440), 1, - sym_comment, - STATE(2805), 1, - aux_sym_decl_def_repeat1, - STATE(2973), 1, - sym_long_flag, - STATE(3762), 1, - sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, - sym_cmd_identifier, - STATE(6617), 1, - sym__command_name, - ACTIONS(4011), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5043), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4492), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5033), 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(5035), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [55426] = 13, + [59887] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5379), 1, - anon_sym_DASH2, - ACTIONS(5397), 1, - anon_sym_PLUS2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(2441), 1, + STATE(2467), 1, sym_comment, - ACTIONS(5377), 2, + ACTIONS(2367), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5383), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5393), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5389), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5282), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281839,7 +284875,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5280), 32, + ACTIONS(2369), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281851,7 +284888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -281859,8 +284896,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -281872,31 +284919,17 @@ 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, - [55512] = 11, + [59954] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5344), 1, - anon_sym_DASH2, - ACTIONS(5362), 1, - anon_sym_PLUS2, - ACTIONS(5422), 1, - sym__newline, - STATE(2392), 1, - aux_sym_shebang_repeat1, - STATE(2442), 1, + STATE(2468), 1, sym_comment, - ACTIONS(5348), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5358), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5270), 10, + ACTIONS(2379), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281905,7 +284938,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5268), 37, + ACTIONS(2381), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281916,7 +284951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -281930,6 +284965,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -281943,54 +284982,17 @@ 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, - [55594] = 19, + [60021] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5344), 1, - anon_sym_DASH2, - ACTIONS(5362), 1, - anon_sym_PLUS2, - ACTIONS(5366), 1, - anon_sym_bit_DASHand2, - ACTIONS(5368), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5370), 1, - anon_sym_bit_DASHor2, - ACTIONS(5407), 1, - sym__newline, - STATE(2426), 1, - aux_sym_shebang_repeat1, - STATE(2443), 1, + STATE(2469), 1, sym_comment, - ACTIONS(5342), 2, + ACTIONS(2038), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5348), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5356), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5358), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5346), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5354), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5274), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281999,7 +285001,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5272), 22, + ACTIONS(2040), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -282010,159 +285014,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [55692] = 20, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5344), 1, - anon_sym_DASH2, - ACTIONS(5350), 1, - anon_sym_and2, - ACTIONS(5362), 1, - anon_sym_PLUS2, - ACTIONS(5366), 1, - anon_sym_bit_DASHand2, - ACTIONS(5368), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5370), 1, - anon_sym_bit_DASHor2, - ACTIONS(5471), 1, - sym__newline, - STATE(2411), 1, - aux_sym_shebang_repeat1, - STATE(2444), 1, - sym_comment, - ACTIONS(5342), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5348), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5356), 2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5358), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5346), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5354), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5334), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5332), 21, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [55792] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5461), 1, - anon_sym_DOLLAR, - ACTIONS(5463), 1, - anon_sym_LPAREN2, - ACTIONS(5493), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5495), 1, - aux_sym__immediate_decimal_token5, - STATE(2445), 1, - sym_comment, - STATE(3065), 1, - sym__immediate_decimal, - ACTIONS(1693), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5491), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3026), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1691), 45, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282171,32 +285045,31 @@ 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, - aux_sym__unquoted_in_list_token1, - [55873] = 13, + [60088] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5497), 1, + ACTIONS(3937), 1, anon_sym_DOLLAR, - ACTIONS(5499), 1, + ACTIONS(5462), 1, anon_sym_LPAREN2, - ACTIONS(5501), 1, + ACTIONS(5487), 1, + anon_sym_DOT, + ACTIONS(5489), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5503), 1, + ACTIONS(5491), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5505), 1, + ACTIONS(5493), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5507), 1, + ACTIONS(5495), 1, aux_sym__immediate_decimal_token5, - STATE(2446), 1, + STATE(2470), 1, sym_comment, - STATE(3049), 1, + STATE(2904), 1, sym__immediate_decimal, - STATE(3141), 2, + STATE(2893), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1530), 18, + ACTIONS(1593), 18, anon_sym_LPAREN, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, @@ -282215,7 +285088,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(1544), 28, + ACTIONS(1603), 28, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -282244,12 +285117,12 @@ 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, - [55958] = 4, + [60173] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2447), 1, + STATE(2471), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(1899), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -282263,7 +285136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 43, + ACTIONS(1901), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -282307,36 +285180,17 @@ 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, - [56025] = 12, + [60240] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5511), 1, - anon_sym_DASH2, - ACTIONS(5521), 1, - anon_sym_PLUS2, - STATE(2448), 1, + STATE(2472), 1, sym_comment, - ACTIONS(5509), 2, + ACTIONS(2448), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5513), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5517), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5519), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5523), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5515), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5239), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282345,7 +285199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 32, + ACTIONS(2450), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -282358,6 +285212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -282365,8 +285220,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -282378,40 +285243,17 @@ 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, - [56108] = 13, + [60307] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1579), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5497), 1, - anon_sym_DOLLAR, - ACTIONS(5499), 1, - anon_sym_LPAREN2, - ACTIONS(5501), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5503), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5505), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5507), 1, - aux_sym__immediate_decimal_token5, - STATE(2449), 1, + STATE(2473), 1, sym_comment, - STATE(3055), 1, - sym__immediate_decimal, - STATE(3103), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1565), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(2452), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282420,28 +285262,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1577), 28, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2454), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282450,12 +285306,12 @@ 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, - [56193] = 4, + [60374] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2450), 1, + STATE(2474), 1, sym_comment, - ACTIONS(1992), 13, + ACTIONS(1907), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -282469,7 +285325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1994), 43, + ACTIONS(1909), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -282513,77 +285369,75 @@ 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, - [56260] = 6, + [60441] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5525), 1, - anon_sym_DOT, - STATE(2616), 1, - sym_path, - STATE(2451), 2, + STATE(2475), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(971), 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(973), 47, - sym_raw_string_begin, + ACTIONS(2468), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2470), 43, ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [56331] = 4, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [60508] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2452), 1, + STATE(2476), 1, sym_comment, - ACTIONS(2248), 13, + ACTIONS(2482), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -282597,7 +285451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2250), 43, + ACTIONS(2484), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -282641,12 +285495,12 @@ 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, - [56398] = 4, + [60575] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2453), 1, + STATE(2477), 1, sym_comment, - ACTIONS(2468), 13, + ACTIONS(2406), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -282660,7 +285514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2470), 43, + ACTIONS(2408), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -282704,52 +285558,17 @@ 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, - [56465] = 5, - ACTIONS(3), 1, + [60642] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5528), 1, - aux_sym__immediate_decimal_token2, - STATE(2454), 1, + STATE(2478), 1, sym_comment, - ACTIONS(1675), 7, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1673), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(1863), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282758,6 +285577,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(1865), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282766,33 +285621,31 @@ 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, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [56534] = 11, + [60709] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5461), 1, + ACTIONS(5438), 1, anon_sym_DOLLAR, - ACTIONS(5463), 1, + ACTIONS(5440), 1, anon_sym_LPAREN2, - ACTIONS(5493), 1, + ACTIONS(5499), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5495), 1, + ACTIONS(5501), 1, aux_sym__immediate_decimal_token5, - STATE(2455), 1, + STATE(2479), 1, sym_comment, - STATE(3013), 1, + STATE(3062), 1, sym__immediate_decimal, - ACTIONS(1707), 2, + ACTIONS(1603), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5491), 2, + ACTIONS(5497), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3011), 2, + STATE(3100), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1705), 45, + ACTIONS(1593), 45, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -282838,75 +285691,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [56615] = 4, + [60790] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2456), 1, - sym_comment, - ACTIONS(5222), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5224), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [56682] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2457), 1, + STATE(2480), 1, sym_comment, - ACTIONS(2347), 13, + ACTIONS(2398), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -282920,7 +285710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2349), 43, + ACTIONS(2400), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -282964,30 +285754,17 @@ 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, - [56749] = 10, + [60857] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5511), 1, - anon_sym_DASH2, - ACTIONS(5521), 1, - anon_sym_PLUS2, - STATE(2458), 1, + STATE(2481), 1, sym_comment, - ACTIONS(5513), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5517), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5519), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5523), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5239), 10, + ACTIONS(1026), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282996,7 +285773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 36, + ACTIONS(1028), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -283009,6 +285786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -283022,6 +285800,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -283033,12 +285817,12 @@ 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, - [56828] = 4, + [60924] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2459), 1, + STATE(2482), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(2486), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -283052,7 +285836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 43, + ACTIONS(2488), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -283096,12 +285880,12 @@ 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, - [56895] = 4, + [60991] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2460), 1, + STATE(2483), 1, sym_comment, - ACTIONS(5243), 13, + ACTIONS(2510), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -283115,7 +285899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5241), 43, + ACTIONS(2512), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -283159,40 +285943,59 @@ 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, - [56962] = 13, - ACTIONS(247), 1, + [61058] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3865), 1, + ACTIONS(5438), 1, anon_sym_DOLLAR, - ACTIONS(5410), 1, + ACTIONS(5440), 1, anon_sym_LPAREN2, - ACTIONS(5530), 1, - anon_sym_DOT, - ACTIONS(5532), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5534), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5536), 1, + ACTIONS(5499), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5538), 1, + ACTIONS(5501), 1, aux_sym__immediate_decimal_token5, - STATE(2461), 1, + STATE(2484), 1, sym_comment, - STATE(2907), 1, + STATE(3025), 1, sym__immediate_decimal, - STATE(2906), 2, + ACTIONS(1671), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5497), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3023), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1581), 18, + ACTIONS(1663), 45, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283201,28 +286004,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1591), 28, + [61139] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5438), 1, + anon_sym_DOLLAR, + ACTIONS(5440), 1, + anon_sym_LPAREN2, + ACTIONS(5499), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5501), 1, + aux_sym__immediate_decimal_token5, + STATE(2485), 1, + sym_comment, + STATE(3027), 1, + sym__immediate_decimal, + ACTIONS(1675), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5497), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3026), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1673), 45, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -283231,17 +286082,60 @@ 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, - [57047] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [61220] = 11, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2462), 1, + ACTIONS(5438), 1, + anon_sym_DOLLAR, + ACTIONS(5440), 1, + anon_sym_LPAREN2, + ACTIONS(5499), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5501), 1, + aux_sym__immediate_decimal_token5, + STATE(2486), 1, sym_comment, - ACTIONS(2387), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + STATE(3029), 1, + sym__immediate_decimal, + ACTIONS(1679), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5497), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3028), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1677), 45, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283250,42 +286144,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2389), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -283294,15 +286152,13 @@ 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, - [57114] = 5, + aux_sym__unquoted_in_list_token1, + [61301] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2463), 1, + STATE(2487), 1, sym_comment, - ACTIONS(5517), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5239), 13, + ACTIONS(2478), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -283316,7 +286172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 41, + ACTIONS(2480), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -283343,6 +286199,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -283358,12 +286216,12 @@ 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, - [57183] = 4, + [61368] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2464), 1, + STATE(2488), 1, sym_comment, - ACTIONS(2343), 13, + ACTIONS(2347), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -283377,7 +286235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2345), 43, + ACTIONS(2349), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -283421,12 +286279,12 @@ 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, - [57250] = 4, + [61435] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2465), 1, + STATE(2489), 1, sym_comment, - ACTIONS(2407), 13, + ACTIONS(5208), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -283440,7 +286298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2409), 43, + ACTIONS(5210), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -283484,17 +286342,30 @@ 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, - [57317] = 4, + [61502] = 10, ACTIONS(247), 1, anon_sym_POUND, - STATE(2466), 1, + ACTIONS(5503), 1, + anon_sym_DASH2, + ACTIONS(5511), 1, + anon_sym_PLUS2, + STATE(2490), 1, sym_comment, - ACTIONS(1709), 13, - anon_sym_GT2, + ACTIONS(5505), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5507), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5509), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5513), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5239), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283503,7 +286374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1721), 43, + ACTIONS(5237), 36, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -283516,7 +286387,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -283530,12 +286400,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -283547,12 +286411,12 @@ 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, - [57384] = 4, + [61581] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2467), 1, + STATE(2491), 1, sym_comment, - ACTIONS(1948), 13, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -283566,7 +286430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1950), 43, + ACTIONS(5178), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -283610,16 +286474,23 @@ 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, - [57451] = 4, + [61648] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2468), 1, + STATE(2492), 1, sym_comment, - ACTIONS(2351), 13, - anon_sym_GT2, + ACTIONS(5505), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(5507), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5509), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5239), 11, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -283629,7 +286500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2353), 43, + ACTIONS(5237), 39, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -283656,10 +286527,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -283673,18 +286540,17 @@ 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, - [57518] = 6, + [61721] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2469), 1, + STATE(2493), 1, sym_comment, - ACTIONS(5222), 5, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5218), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283693,7 +286559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 20, + ACTIONS(5178), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -283706,15 +286572,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(5224), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -283738,17 +286595,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57589] = 4, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [61788] = 12, ACTIONS(247), 1, anon_sym_POUND, - STATE(2470), 1, + ACTIONS(5503), 1, + anon_sym_DASH2, + ACTIONS(5511), 1, + anon_sym_PLUS2, + STATE(2494), 1, sym_comment, - ACTIONS(1913), 13, - anon_sym_GT2, + ACTIONS(5505), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5507), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5509), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5513), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5515), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5517), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283757,7 +286641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1915), 43, + ACTIONS(5237), 32, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -283770,7 +286654,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -283778,18 +286661,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -283801,12 +286674,12 @@ 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, - [57656] = 4, + [61871] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2471), 1, + STATE(2495), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -283820,7 +286693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 43, + ACTIONS(5178), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -283864,139 +286737,15 @@ 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, - [57723] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2472), 1, - sym_comment, - ACTIONS(998), 7, - 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, - anon_sym_DOT, - ACTIONS(1000), 49, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [57790] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5455), 1, - aux_sym__immediate_decimal_token2, - STATE(2473), 1, - sym_comment, - ACTIONS(1607), 10, - 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, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1609), 45, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [57859] = 4, + [61938] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2474), 1, + STATE(2496), 1, sym_comment, - ACTIONS(2355), 13, + ACTIONS(5507), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5239), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284010,7 +286759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2357), 43, + ACTIONS(5237), 41, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284037,8 +286786,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -284054,12 +286801,12 @@ 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, - [57926] = 4, + [62007] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2475), 1, + STATE(2497), 1, sym_comment, - ACTIONS(2437), 13, + ACTIONS(2472), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284073,7 +286820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2439), 43, + ACTIONS(2474), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284117,12 +286864,12 @@ 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, - [57993] = 4, + [62074] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2476), 1, + STATE(2498), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284136,7 +286883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 43, + ACTIONS(5178), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284180,45 +286927,45 @@ 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, - [58060] = 17, + [62141] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5511), 1, + ACTIONS(5503), 1, anon_sym_DASH2, - ACTIONS(5521), 1, + ACTIONS(5511), 1, anon_sym_PLUS2, - ACTIONS(5544), 1, + ACTIONS(5523), 1, anon_sym_bit_DASHand2, - ACTIONS(5546), 1, + ACTIONS(5525), 1, anon_sym_bit_DASHxor2, - ACTIONS(5548), 1, + ACTIONS(5527), 1, anon_sym_bit_DASHor2, - STATE(2477), 1, + STATE(2499), 1, sym_comment, - ACTIONS(5509), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5513), 2, + ACTIONS(5505), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5517), 2, + ACTIONS(5507), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5519), 2, + ACTIONS(5509), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5523), 2, + ACTIONS(5513), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5542), 2, + ACTIONS(5515), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5521), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5515), 4, + ACTIONS(5517), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5540), 4, + ACTIONS(5519), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, @@ -284256,12 +287003,12 @@ 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, - [58153] = 4, + [62234] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2478), 1, + STATE(2500), 1, sym_comment, - ACTIONS(5258), 13, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284275,7 +287022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5256), 43, + ACTIONS(5178), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284319,12 +287066,89 @@ 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, - [58220] = 4, + [62301] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5503), 1, + anon_sym_DASH2, + ACTIONS(5511), 1, + anon_sym_PLUS2, + ACTIONS(5523), 1, + anon_sym_bit_DASHand2, + ACTIONS(5525), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5527), 1, + anon_sym_bit_DASHor2, + ACTIONS(5529), 1, + anon_sym_and2, + STATE(2501), 1, + sym_comment, + ACTIONS(5505), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5507), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5509), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5513), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5515), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5521), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5517), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5519), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5239), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5237), 22, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [62396] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2479), 1, + STATE(2502), 1, sym_comment, - ACTIONS(2359), 13, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284338,7 +287162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2361), 43, + ACTIONS(5178), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284382,17 +287206,54 @@ 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, - [58287] = 4, + [62463] = 19, ACTIONS(247), 1, anon_sym_POUND, - STATE(2480), 1, + ACTIONS(5503), 1, + anon_sym_DASH2, + ACTIONS(5511), 1, + anon_sym_PLUS2, + ACTIONS(5523), 1, + anon_sym_bit_DASHand2, + ACTIONS(5525), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5527), 1, + anon_sym_bit_DASHor2, + ACTIONS(5529), 1, + anon_sym_and2, + ACTIONS(5531), 1, + anon_sym_xor2, + STATE(2503), 1, sym_comment, - ACTIONS(2496), 13, - anon_sym_GT2, + ACTIONS(5505), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5507), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5509), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5513), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5515), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5521), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5517), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5519), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284401,7 +287262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2498), 43, + ACTIONS(5237), 21, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284414,29 +287275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -284445,12 +287284,12 @@ 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, - [58354] = 4, + [62560] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2481), 1, + STATE(2504), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284464,7 +287303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 43, + ACTIONS(5178), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284508,47 +287347,36 @@ 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, - [58421] = 18, + [62627] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5511), 1, + ACTIONS(5503), 1, anon_sym_DASH2, - ACTIONS(5521), 1, + ACTIONS(5511), 1, anon_sym_PLUS2, - ACTIONS(5544), 1, - anon_sym_bit_DASHand2, - ACTIONS(5546), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5548), 1, - anon_sym_bit_DASHor2, - ACTIONS(5550), 1, - anon_sym_and2, - STATE(2482), 1, + STATE(2505), 1, sym_comment, - ACTIONS(5509), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5513), 2, + ACTIONS(5505), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5517), 2, + ACTIONS(5507), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5519), 2, + ACTIONS(5509), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5523), 2, + ACTIONS(5513), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5542), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5515), 4, + ACTIONS(5515), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5517), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5540), 4, + ACTIONS(5519), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, @@ -284562,7 +287390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 22, + ACTIONS(5237), 28, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284575,8 +287403,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -284585,12 +287419,12 @@ 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, - [58516] = 4, + [62712] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2483), 1, + STATE(2506), 1, sym_comment, - ACTIONS(2004), 13, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284604,7 +287438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2006), 43, + ACTIONS(5178), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284648,12 +287482,12 @@ 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, - [58583] = 4, + [62779] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2484), 1, + STATE(2507), 1, sym_comment, - ACTIONS(2480), 13, + ACTIONS(5239), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284667,7 +287501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2482), 43, + ACTIONS(5237), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284711,12 +287545,12 @@ 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, - [58650] = 4, + [62846] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2485), 1, + STATE(2508), 1, sym_comment, - ACTIONS(2456), 13, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284730,7 +287564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2458), 43, + ACTIONS(5178), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284774,17 +287608,27 @@ 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, - [58717] = 4, + [62913] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(2486), 1, + ACTIONS(5503), 1, + anon_sym_DASH2, + ACTIONS(5511), 1, + anon_sym_PLUS2, + STATE(2509), 1, sym_comment, - ACTIONS(5188), 13, - anon_sym_GT2, + ACTIONS(5505), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5507), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5509), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5239), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284793,7 +287637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 43, + ACTIONS(5237), 38, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284806,7 +287650,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -284820,10 +287663,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -284837,12 +287676,12 @@ 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, - [58784] = 4, + [62990] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2487), 1, + STATE(2510), 1, sym_comment, - ACTIONS(1030), 13, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284856,7 +287695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1032), 43, + ACTIONS(5178), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284900,12 +287739,12 @@ 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, - [58851] = 4, + [63057] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2488), 1, + STATE(2511), 1, sym_comment, - ACTIONS(2347), 13, + ACTIONS(1942), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284919,7 +287758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2349), 43, + ACTIONS(1944), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284963,12 +287802,12 @@ 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, - [58918] = 4, + [63124] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2489), 1, + STATE(2512), 1, sym_comment, - ACTIONS(2460), 13, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284982,7 +287821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2462), 43, + ACTIONS(5178), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285026,17 +287865,302 @@ 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, - [58985] = 4, + [63191] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2490), 1, + ACTIONS(5460), 1, + aux_sym__immediate_decimal_token2, + STATE(2513), 1, sym_comment, - ACTIONS(2363), 13, - anon_sym_GT2, + ACTIONS(1573), 10, + 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, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1575), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [63260] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5533), 1, + aux_sym__immediate_decimal_token2, + STATE(2514), 1, + sym_comment, + ACTIONS(1681), 10, + 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, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1683), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [63329] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5535), 1, + anon_sym_QMARK2, + STATE(2515), 1, + sym_comment, + ACTIONS(978), 7, + 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, + anon_sym_DOT, + ACTIONS(980), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [63398] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5537), 1, + anon_sym_QMARK2, + STATE(2516), 1, + sym_comment, + ACTIONS(984), 7, + 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, + anon_sym_DOT, + ACTIONS(986), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [63467] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5503), 1, + anon_sym_DASH2, + ACTIONS(5511), 1, anon_sym_PLUS2, + ACTIONS(5523), 1, + anon_sym_bit_DASHand2, + STATE(2517), 1, + sym_comment, + ACTIONS(5505), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5507), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5509), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5513), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5515), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5521), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5517), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5519), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285045,7 +288169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2365), 43, + ACTIONS(5237), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285058,27 +288182,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -285089,12 +288195,12 @@ 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, - [59052] = 4, + [63556] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2491), 1, + STATE(2518), 1, sym_comment, - ACTIONS(2068), 13, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285108,7 +288214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2070), 43, + ACTIONS(5178), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285152,49 +288258,43 @@ 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, - [59119] = 19, + [63623] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5511), 1, + ACTIONS(5503), 1, anon_sym_DASH2, - ACTIONS(5521), 1, + ACTIONS(5511), 1, anon_sym_PLUS2, - ACTIONS(5544), 1, + ACTIONS(5523), 1, anon_sym_bit_DASHand2, - ACTIONS(5546), 1, + ACTIONS(5525), 1, anon_sym_bit_DASHxor2, - ACTIONS(5548), 1, - anon_sym_bit_DASHor2, - ACTIONS(5550), 1, - anon_sym_and2, - ACTIONS(5552), 1, - anon_sym_xor2, - STATE(2492), 1, + STATE(2519), 1, sym_comment, - ACTIONS(5509), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5513), 2, + ACTIONS(5505), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5517), 2, + ACTIONS(5507), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5519), 2, + ACTIONS(5509), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5523), 2, + ACTIONS(5513), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5542), 2, + ACTIONS(5515), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5521), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5515), 4, + ACTIONS(5517), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5540), 4, + ACTIONS(5519), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, @@ -285208,7 +288308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 21, + ACTIONS(5237), 24, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285221,7 +288321,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -285230,12 +288333,12 @@ 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, - [59216] = 4, + [63714] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2493), 1, + STATE(2520), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(5180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285249,7 +288352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 43, + ACTIONS(5178), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285293,17 +288396,88 @@ 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, - [59283] = 4, + [63781] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5539), 1, + anon_sym_LPAREN2, + ACTIONS(5541), 1, + anon_sym_DOT_DOT2, + ACTIONS(5545), 1, + sym_filesize_unit, + ACTIONS(5547), 1, + sym_duration_unit, + ACTIONS(5549), 1, + aux_sym__unquoted_in_list_token2, + STATE(2521), 1, + sym_comment, + STATE(7608), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1719), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5543), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1707), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [63862] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2494), 1, + STATE(2522), 1, sym_comment, - ACTIONS(2508), 13, + ACTIONS(5208), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(5212), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285312,7 +288486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2510), 43, + ACTIONS(5206), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285325,6 +288499,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(5210), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -285348,20 +288531,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [59350] = 4, + [63933] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2495), 1, + STATE(2523), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(5235), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285375,7 +288550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2092), 43, + ACTIONS(5233), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285419,41 +288594,269 @@ 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, - [59417] = 13, + [64000] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5511), 1, - anon_sym_DASH2, - ACTIONS(5521), 1, - anon_sym_PLUS2, - STATE(2496), 1, + STATE(2524), 1, sym_comment, - ACTIONS(5509), 2, + ACTIONS(990), 7, + 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, + anon_sym_DOT, + ACTIONS(992), 49, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [64067] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2525), 1, + sym_comment, + ACTIONS(994), 7, + 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, + anon_sym_DOT, + ACTIONS(996), 49, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [64134] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2526), 1, + sym_comment, + ACTIONS(998), 7, + 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, + anon_sym_DOT, + ACTIONS(1000), 49, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [64201] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2527), 1, + sym_comment, + ACTIONS(1002), 7, + 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, + anon_sym_DOT, + ACTIONS(1004), 49, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [64268] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2528), 1, + sym_comment, + ACTIONS(2456), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5513), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5517), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5519), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5523), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5515), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5540), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5239), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285462,7 +288865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 28, + ACTIONS(2458), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285475,11 +288878,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -285491,37 +288909,102 @@ 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, - [59502] = 11, - ACTIONS(3), 1, + [64335] = 13, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5461), 1, + ACTIONS(1559), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5551), 1, anon_sym_DOLLAR, - ACTIONS(5463), 1, + ACTIONS(5553), 1, anon_sym_LPAREN2, - ACTIONS(5493), 1, + ACTIONS(5555), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5557), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5559), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5495), 1, + ACTIONS(5561), 1, aux_sym__immediate_decimal_token5, - STATE(2497), 1, + STATE(2529), 1, sym_comment, - STATE(3035), 1, + STATE(3024), 1, sym__immediate_decimal, - ACTIONS(1591), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5491), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3033), 2, + STATE(3168), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1581), 45, + ACTIONS(1543), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1557), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [64420] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5421), 1, + aux_sym__immediate_decimal_token2, + STATE(2530), 1, + sym_comment, + ACTIONS(1575), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1573), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -285561,17 +289044,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [59583] = 4, + aux_sym__unquoted_in_list_token2, + [64489] = 13, ACTIONS(247), 1, anon_sym_POUND, - STATE(2498), 1, + ACTIONS(1661), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5551), 1, + anon_sym_DOLLAR, + ACTIONS(5553), 1, + anon_sym_LPAREN2, + ACTIONS(5555), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5557), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5559), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5561), 1, + aux_sym__immediate_decimal_token5, + STATE(2531), 1, sym_comment, - ACTIONS(5188), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + STATE(3017), 1, + sym__immediate_decimal, + STATE(3122), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1657), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1659), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [64574] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5563), 1, + aux_sym__immediate_decimal_token2, + STATE(2532), 1, + sym_comment, + ACTIONS(1683), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1681), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285580,42 +289171,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -285624,12 +289179,14 @@ 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, - [59650] = 4, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [64643] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2499), 1, + STATE(2533), 1, sym_comment, - ACTIONS(1907), 13, + ACTIONS(2430), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285643,7 +289200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1911), 43, + ACTIONS(2432), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285687,76 +289244,12 @@ 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, - [59717] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5554), 1, - aux_sym__immediate_decimal_token2, - STATE(2500), 1, - sym_comment, - ACTIONS(1673), 10, - 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, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1675), 45, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [59786] = 4, + [64710] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2501), 1, + STATE(2534), 1, sym_comment, - ACTIONS(5239), 13, + ACTIONS(1887), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285770,7 +289263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 43, + ACTIONS(1889), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285814,12 +289307,12 @@ 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, - [59853] = 4, + [64777] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2502), 1, + STATE(2535), 1, sym_comment, - ACTIONS(2403), 13, + ACTIONS(2343), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285833,7 +289326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2405), 43, + ACTIONS(2345), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285877,12 +289370,12 @@ 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, - [59920] = 4, + [64844] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2503), 1, + STATE(2536), 1, sym_comment, - ACTIONS(2500), 13, + ACTIONS(2444), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285896,7 +289389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2502), 43, + ACTIONS(2446), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285940,10 +289433,10 @@ 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, - [59987] = 4, + [64911] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2504), 1, + STATE(2537), 1, sym_comment, ACTIONS(2464), 13, anon_sym_GT2, @@ -286003,75 +289496,12 @@ 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, - [60054] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2505), 1, - sym_comment, - ACTIONS(994), 7, - 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, - anon_sym_DOT, - ACTIONS(996), 49, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [60121] = 4, + [64978] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2506), 1, + STATE(2538), 1, sym_comment, - ACTIONS(2383), 13, + ACTIONS(2464), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286085,7 +289515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2385), 43, + ACTIONS(2466), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286129,12 +289559,12 @@ 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, - [60188] = 4, + [65045] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2507), 1, + STATE(2539), 1, sym_comment, - ACTIONS(2492), 13, + ACTIONS(1847), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286148,7 +289578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2494), 43, + ACTIONS(1851), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286192,23 +289622,16 @@ 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, - [60255] = 7, + [65112] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2508), 1, + STATE(2540), 1, sym_comment, - ACTIONS(5513), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5517), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5519), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5239), 11, + ACTIONS(2238), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -286218,7 +289641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 39, + ACTIONS(2242), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286245,6 +289668,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -286258,76 +289685,12 @@ 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, - [60328] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5489), 1, - aux_sym__immediate_decimal_token2, - STATE(2509), 1, - sym_comment, - ACTIONS(1609), 7, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1607), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [60397] = 4, + [65179] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2510), 1, + STATE(2541), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(2268), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286341,7 +289704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 43, + ACTIONS(2270), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286385,138 +289748,12 @@ 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, - [60464] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2511), 1, - sym_comment, - ACTIONS(1002), 7, - 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, - anon_sym_DOT, - ACTIONS(1004), 49, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [60531] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2512), 1, - sym_comment, - ACTIONS(990), 7, - 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, - anon_sym_DOT, - ACTIONS(992), 49, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [60598] = 4, + [65246] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2513), 1, + STATE(2542), 1, sym_comment, - ACTIONS(2367), 13, + ACTIONS(1707), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286530,7 +289767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2369), 43, + ACTIONS(1719), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286574,150 +289811,12 @@ 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, - [60665] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5556), 1, - anon_sym_LPAREN2, - ACTIONS(5558), 1, - anon_sym_DOT_DOT2, - ACTIONS(5562), 1, - sym_filesize_unit, - ACTIONS(5564), 1, - sym_duration_unit, - ACTIONS(5566), 1, - aux_sym__unquoted_in_list_token2, - STATE(2514), 1, - sym_comment, - STATE(7456), 1, - sym__expr_parenthesized_immediate, - ACTIONS(1721), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5560), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1709), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [60746] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5511), 1, - anon_sym_DASH2, - ACTIONS(5521), 1, - anon_sym_PLUS2, - STATE(2515), 1, - sym_comment, - ACTIONS(5513), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5517), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5519), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5239), 10, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5237), 38, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [60823] = 4, + [65313] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2516), 1, + STATE(2543), 1, sym_comment, - ACTIONS(2094), 13, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286731,7 +289830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2096), 43, + ACTIONS(5245), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286775,12 +289874,12 @@ 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, - [60890] = 4, + [65380] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2517), 1, + STATE(2544), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286794,7 +289893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 43, + ACTIONS(5241), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286838,12 +289937,12 @@ 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, - [60957] = 4, + [65447] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2518), 1, + STATE(2545), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(2410), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286857,7 +289956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 43, + ACTIONS(2412), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286901,12 +290000,12 @@ 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, - [61024] = 4, + [65514] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2519), 1, + STATE(2546), 1, sym_comment, - ACTIONS(2488), 13, + ACTIONS(2414), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286920,7 +290019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2490), 43, + ACTIONS(2416), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286964,23 +290063,27 @@ 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, - [61091] = 5, + [65581] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5568), 1, - anon_sym_QMARK2, - STATE(2520), 1, + ACTIONS(5414), 1, + anon_sym_DOT, + STATE(2547), 1, sym_comment, - ACTIONS(978), 7, + STATE(2550), 1, + aux_sym_cell_path_repeat1, + STATE(2627), 1, + sym_path, + ACTIONS(967), 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, - anon_sym_DOT, - ACTIONS(980), 48, + ACTIONS(969), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -287018,8 +290121,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -287028,12 +290129,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [61160] = 4, + [65654] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2521), 1, + STATE(2548), 1, sym_comment, - ACTIONS(1972), 13, + ACTIONS(2440), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287047,7 +290148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1974), 43, + ACTIONS(2442), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287091,44 +290192,17 @@ 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, - [61227] = 14, + [65721] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5511), 1, - anon_sym_DASH2, - ACTIONS(5521), 1, - anon_sym_PLUS2, - STATE(2522), 1, + STATE(2549), 1, sym_comment, - ACTIONS(5509), 2, + ACTIONS(1915), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5513), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5517), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5519), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5523), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5542), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5515), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5540), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5239), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287137,7 +290211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 26, + ACTIONS(1917), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287150,9 +290224,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -287164,23 +290255,26 @@ 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, - [61314] = 5, + [65788] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5570), 1, - anon_sym_QMARK2, - STATE(2523), 1, + ACTIONS(5565), 1, + anon_sym_DOT, + STATE(2627), 1, + sym_path, + STATE(2550), 2, sym_comment, - ACTIONS(984), 7, + aux_sym_cell_path_repeat1, + ACTIONS(971), 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, - anon_sym_DOT, - ACTIONS(986), 48, + ACTIONS(973), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -287218,8 +290312,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -287228,12 +290320,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [61383] = 4, + [65859] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2524), 1, + STATE(2551), 1, sym_comment, - ACTIONS(5262), 13, + ACTIONS(2418), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287247,7 +290339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5260), 43, + ACTIONS(2420), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287291,12 +290383,12 @@ 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, - [61450] = 4, + [65926] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2525), 1, + STATE(2552), 1, sym_comment, - ACTIONS(1988), 13, + ACTIONS(1927), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287310,7 +290402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1990), 43, + ACTIONS(1929), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287354,17 +290446,44 @@ 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, - [61517] = 4, + [65993] = 14, ACTIONS(247), 1, anon_sym_POUND, - STATE(2526), 1, + ACTIONS(5503), 1, + anon_sym_DASH2, + ACTIONS(5511), 1, + anon_sym_PLUS2, + STATE(2553), 1, sym_comment, - ACTIONS(2504), 13, - anon_sym_GT2, + ACTIONS(5505), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5507), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5509), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5513), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5515), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5521), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5517), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5519), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287373,7 +290492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2506), 43, + ACTIONS(5237), 26, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287386,26 +290505,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -287417,27 +290519,101 @@ 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, - [61584] = 7, + [66080] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5372), 1, - anon_sym_DOT, - STATE(2451), 1, - aux_sym_cell_path_repeat1, - STATE(2527), 1, + ACTIONS(5551), 1, + anon_sym_DOLLAR, + ACTIONS(5553), 1, + anon_sym_LPAREN2, + ACTIONS(5568), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5570), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5572), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5574), 1, + aux_sym__immediate_decimal_token5, + STATE(2554), 1, sym_comment, - STATE(2616), 1, - sym_path, - ACTIONS(967), 6, + STATE(3105), 1, + sym__immediate_decimal, + STATE(3104), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1663), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1671), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [66162] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4722), 1, + anon_sym_DOT_DOT2, + ACTIONS(5576), 1, + sym_filesize_unit, + ACTIONS(5578), 1, + sym_duration_unit, + ACTIONS(5580), 1, + aux_sym_unquoted_token2, + STATE(2555), 1, + sym_comment, + ACTIONS(4724), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1707), 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(969), 47, + ACTIONS(1719), 43, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -287472,10 +290648,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -287483,17 +290656,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [61657] = 4, - ACTIONS(247), 1, + [66238] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2528), 1, + ACTIONS(5582), 1, + anon_sym_DOT, + STATE(2556), 1, sym_comment, - ACTIONS(2395), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + STATE(2652), 1, + aux_sym_cell_path_repeat1, + STATE(2749), 1, + sym_path, + STATE(2864), 1, + sym_cell_path, + ACTIONS(1749), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1747), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287502,42 +290713,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2397), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -287546,17 +290721,56 @@ 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, - [61724] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [66312] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2529), 1, + ACTIONS(5582), 1, + anon_sym_DOT, + STATE(2557), 1, sym_comment, - ACTIONS(2206), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + STATE(2652), 1, + aux_sym_cell_path_repeat1, + STATE(2749), 1, + sym_path, + STATE(2812), 1, + sym_cell_path, + ACTIONS(1737), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1733), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287565,42 +290779,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2210), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -287609,17 +290787,183 @@ 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, - [61791] = 4, + aux_sym__unquoted_in_list_token1, + [66386] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3127), 1, + anon_sym_DQUOTE, + ACTIONS(3133), 1, + sym_raw_string_begin, + ACTIONS(5048), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, + aux_sym__val_number_decimal_token4, + STATE(2558), 1, + sym_comment, + STATE(2576), 1, + aux_sym_command_list_repeat1, + STATE(3820), 1, + sym__val_number_decimal, + STATE(6998), 1, + sym__command_name, + STATE(7516), 1, + sym_val_string, + STATE(7649), 1, + sym_cmd_identifier, + ACTIONS(3129), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5625), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5310), 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(5312), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [66476] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5551), 1, + anon_sym_DOLLAR, + ACTIONS(5553), 1, + anon_sym_LPAREN2, + ACTIONS(5568), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5570), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5572), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5574), 1, + aux_sym__immediate_decimal_token5, + STATE(2559), 1, + sym_comment, + STATE(3150), 1, + sym__immediate_decimal, + STATE(3152), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1593), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1603), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [66558] = 12, ACTIONS(247), 1, anon_sym_POUND, - STATE(2530), 1, + ACTIONS(5551), 1, + anon_sym_DOLLAR, + ACTIONS(5553), 1, + anon_sym_LPAREN2, + ACTIONS(5568), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5570), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5572), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5574), 1, + aux_sym__immediate_decimal_token5, + STATE(2560), 1, sym_comment, - ACTIONS(5188), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + STATE(3143), 1, + sym__immediate_decimal, + STATE(3101), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1673), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287628,42 +290972,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + aux_sym__unquoted_in_list_token1, + ACTIONS(1675), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -287672,46 +291002,55 @@ 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, - [61858] = 15, - ACTIONS(247), 1, + [66640] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5511), 1, - anon_sym_DASH2, - ACTIONS(5521), 1, - anon_sym_PLUS2, - ACTIONS(5544), 1, - anon_sym_bit_DASHand2, - STATE(2531), 1, + ACTIONS(5582), 1, + anon_sym_DOT, + STATE(2561), 1, sym_comment, - ACTIONS(5509), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5513), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5517), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5519), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5523), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5542), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5515), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5540), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5239), 8, + STATE(2652), 1, + aux_sym_cell_path_repeat1, + STATE(2749), 1, + sym_path, + STATE(2865), 1, + sym_cell_path, + ACTIONS(963), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(961), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287720,24 +291059,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -287746,17 +291067,25 @@ 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, - [61947] = 4, + aux_sym__unquoted_in_list_token1, + [66714] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2532), 1, + ACTIONS(5584), 1, + anon_sym_DOT, + ACTIONS(5586), 1, + aux_sym__immediate_decimal_token2, + STATE(2562), 1, sym_comment, - ACTIONS(2399), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1573), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287765,42 +291094,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2401), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1575), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -287809,17 +291132,24 @@ 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, - [62014] = 4, + [66784] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2533), 1, + ACTIONS(5588), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5590), 1, + aux_sym__immediate_decimal_token2, + STATE(2563), 1, sym_comment, - ACTIONS(5188), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1585), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287828,42 +291158,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1587), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -287872,48 +291196,52 @@ 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, - [62081] = 16, - ACTIONS(247), 1, + [66854] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5511), 1, - anon_sym_DASH2, - ACTIONS(5521), 1, - anon_sym_PLUS2, - ACTIONS(5544), 1, - anon_sym_bit_DASHand2, - ACTIONS(5546), 1, - anon_sym_bit_DASHxor2, - STATE(2534), 1, + ACTIONS(5592), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5594), 1, + aux_sym__immediate_decimal_token2, + STATE(2564), 1, sym_comment, - ACTIONS(5509), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5513), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5517), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5519), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5523), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5542), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5515), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5540), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5239), 8, + ACTIONS(1741), 5, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1739), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287922,23 +291250,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5237), 24, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -287947,37 +291258,30 @@ 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, - [62172] = 11, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [66924] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5461), 1, - anon_sym_DOLLAR, - ACTIONS(5463), 1, - anon_sym_LPAREN2, - ACTIONS(5493), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5495), 1, - aux_sym__immediate_decimal_token5, - STATE(2535), 1, + STATE(2565), 1, sym_comment, - STATE(3008), 1, - sym__immediate_decimal, - ACTIONS(1671), 2, + ACTIONS(1575), 7, sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - ACTIONS(5491), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3075), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1663), 45, + ACTIONS(1573), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -288017,21 +291321,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [62253] = 6, + aux_sym__unquoted_in_list_token2, + [66990] = 12, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(5551), 1, + anon_sym_DOLLAR, + ACTIONS(5553), 1, + anon_sym_LPAREN2, + ACTIONS(5568), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5570), 1, + aux_sym__immediate_decimal_token3, ACTIONS(5572), 1, - anon_sym_DOT, + aux_sym__immediate_decimal_token4, ACTIONS(5574), 1, - aux_sym__immediate_decimal_token2, - STATE(2536), 1, + aux_sym__immediate_decimal_token5, + STATE(2566), 1, sym_comment, - ACTIONS(1607), 18, + STATE(3103), 1, + sym__immediate_decimal, + STATE(3151), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1677), 18, + anon_sym_LPAREN, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -288044,31 +291363,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1609), 35, + ACTIONS(1679), 28, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -288081,46 +291392,46 @@ 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, - [62323] = 16, + [67072] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(4009), 1, + ACTIONS(3127), 1, anon_sym_DQUOTE, - ACTIONS(4013), 1, + ACTIONS(3133), 1, sym_raw_string_begin, - ACTIONS(5045), 1, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2537), 1, + STATE(2567), 1, sym_comment, - STATE(3762), 1, + STATE(2576), 1, + aux_sym_command_list_repeat1, + STATE(3820), 1, sym__val_number_decimal, - STATE(4159), 1, + STATE(7011), 1, + sym__command_name, + STATE(7516), 1, sym_val_string, - STATE(4195), 1, + STATE(7649), 1, sym_cmd_identifier, - STATE(7898), 1, - sym__command_name, - ACTIONS(4011), 2, + ACTIONS(3129), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4492), 2, + STATE(5625), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5033), 6, + ACTIONS(5310), 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(5035), 34, + ACTIONS(5312), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -288155,24 +291466,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [62413] = 6, - ACTIONS(247), 1, + [67162] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5576), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5578), 1, - aux_sym__immediate_decimal_token2, - STATE(2538), 1, + STATE(2568), 1, sym_comment, - ACTIONS(1621), 18, + ACTIONS(1587), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1585), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288181,21 +291518,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - ACTIONS(1623), 35, + [67228] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2569), 1, + sym_comment, + ACTIONS(1683), 7, sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1681), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -288205,12 +291565,147 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [67294] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2570), 1, + sym_comment, + ACTIONS(1763), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, + sym__entry_separator, + ACTIONS(1761), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [67360] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5596), 1, + anon_sym_DOT, + ACTIONS(5598), 1, + aux_sym__immediate_decimal_token2, + STATE(2571), 1, + sym_comment, + ACTIONS(1767), 5, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1765), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -288219,20 +291714,25 @@ 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, - [62483] = 4, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [67430] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2539), 1, + STATE(2572), 1, sym_comment, - ACTIONS(1010), 7, + ACTIONS(1573), 10, 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, - anon_sym_DOT, - ACTIONS(1012), 48, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1575), 45, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -288268,12 +291768,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -288281,46 +291778,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [62549] = 16, + [67496] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(4009), 1, - anon_sym_DQUOTE, - ACTIONS(4013), 1, - sym_raw_string_begin, - ACTIONS(5045), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, - aux_sym__val_number_decimal_token4, - STATE(2540), 1, + STATE(2573), 1, sym_comment, - STATE(3762), 1, - sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, - sym_cmd_identifier, - STATE(5904), 1, - sym__command_name, - ACTIONS(4011), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5043), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4492), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5033), 6, + ACTIONS(990), 7, 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(5035), 34, + anon_sym_DOT, + ACTIONS(992), 48, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -288355,24 +291828,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [62639] = 4, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [67562] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2541), 1, + STATE(2574), 1, sym_comment, - ACTIONS(1607), 10, + ACTIONS(1002), 7, 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, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1609), 45, + anon_sym_DOT, + ACTIONS(1004), 48, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -288407,152 +291890,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [62705] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5580), 1, - anon_sym_DOT, - STATE(2542), 1, - sym_comment, - STATE(2586), 1, - aux_sym_cell_path_repeat1, - STATE(2759), 1, - sym_path, - STATE(2831), 1, - sym_cell_path, - ACTIONS(1737), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1735), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [62779] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5582), 1, - anon_sym_DOT, - ACTIONS(5584), 1, - aux_sym__immediate_decimal_token2, - STATE(2543), 1, - sym_comment, - ACTIONS(1757), 5, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1755), 48, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_STAR2, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [62849] = 4, + [67628] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2544), 1, + STATE(2575), 1, sym_comment, - ACTIONS(1002), 7, + ACTIONS(1006), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -288560,9 +291915,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, anon_sym_DOT, - ACTIONS(1004), 48, + ACTIONS(1008), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -288600,8 +291954,9 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, - anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -288609,24 +291964,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [62915] = 4, + [67694] = 15, ACTIONS(247), 1, anon_sym_POUND, - STATE(2545), 1, + ACTIONS(5609), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5612), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5615), 1, + anon_sym_DQUOTE, + ACTIONS(5621), 1, + sym_raw_string_begin, + STATE(3820), 1, + sym__val_number_decimal, + STATE(7516), 1, + sym_val_string, + STATE(7562), 1, + sym__command_name, + STATE(7649), 1, + sym_cmd_identifier, + ACTIONS(5606), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(5618), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2576), 2, sym_comment, - ACTIONS(1621), 10, + aux_sym_command_list_repeat1, + STATE(5625), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5600), 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, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1623), 45, - sym_raw_string_begin, + ACTIONS(5603), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -288661,56 +292037,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [62981] = 16, + [67782] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(4009), 1, - anon_sym_DQUOTE, - ACTIONS(4013), 1, - sym_raw_string_begin, - ACTIONS(5045), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, - aux_sym__val_number_decimal_token4, - STATE(2546), 1, + STATE(2577), 1, sym_comment, - STATE(3762), 1, - sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, - sym_cmd_identifier, - STATE(7898), 1, - sym__command_name, - ACTIONS(4011), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5043), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4492), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5033), 6, + ACTIONS(1681), 10, 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(5035), 34, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1683), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -288745,14 +292089,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [63071] = 5, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [67848] = 4, ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5586), 1, - anon_sym_QMARK2, - STATE(2547), 1, + anon_sym_POUND, + STATE(2578), 1, sym_comment, - ACTIONS(978), 7, + ACTIONS(994), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -288760,7 +292112,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, anon_sym_DOT, - ACTIONS(980), 47, + ACTIONS(996), 48, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -288801,6 +292153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_STAR2, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -288808,46 +292161,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [63139] = 16, + [67914] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(3363), 1, aux_sym_record_entry_token1, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_DQUOTE, - ACTIONS(4013), 1, + ACTIONS(4005), 1, sym_raw_string_begin, - ACTIONS(5045), 1, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2548), 1, + STATE(2579), 1, sym_comment, - STATE(3762), 1, + STATE(3764), 1, sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(6300), 1, + STATE(4161), 1, + sym_val_string, + STATE(8137), 1, sym__command_name, - ACTIONS(4011), 2, + ACTIONS(4003), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4492), 2, + STATE(4332), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5033), 6, + ACTIONS(5036), 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(5035), 34, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -288882,46 +292235,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [63229] = 16, + [68004] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(3363), 1, aux_sym_record_entry_token1, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_DQUOTE, - ACTIONS(4013), 1, + ACTIONS(4005), 1, sym_raw_string_begin, - ACTIONS(5045), 1, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2549), 1, + STATE(2580), 1, sym_comment, - STATE(3762), 1, + STATE(3764), 1, sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(5904), 1, + STATE(4161), 1, + sym_val_string, + STATE(6332), 1, sym__command_name, - ACTIONS(4011), 2, + ACTIONS(4003), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4492), 2, + STATE(4332), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5033), 6, + ACTIONS(5036), 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(5035), 34, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -288956,45 +292309,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [63319] = 15, + [68094] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5597), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5600), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5603), 1, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(4001), 1, anon_sym_DQUOTE, - ACTIONS(5609), 1, + ACTIONS(4005), 1, sym_raw_string_begin, - STATE(3723), 1, + ACTIONS(5048), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, + aux_sym__val_number_decimal_token4, + STATE(2581), 1, + sym_comment, + STATE(3764), 1, sym__val_number_decimal, - STATE(7397), 1, + STATE(4154), 1, + sym_cmd_identifier, + STATE(4161), 1, sym_val_string, - STATE(7524), 1, + STATE(5981), 1, sym__command_name, - STATE(7535), 1, - sym_cmd_identifier, - ACTIONS(5594), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5606), 2, + ACTIONS(4003), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2550), 2, - sym_comment, - aux_sym_command_list_repeat1, - STATE(5497), 2, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4332), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5588), 6, + ACTIONS(5036), 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(5591), 34, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289029,92 +292383,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [63407] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2551), 1, - sym_comment, - ACTIONS(1609), 7, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1607), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [63473] = 9, + [68184] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4708), 1, - anon_sym_DOT_DOT2, - ACTIONS(5612), 1, - sym_filesize_unit, - ACTIONS(5614), 1, - sym_duration_unit, - ACTIONS(5616), 1, - aux_sym_unquoted_token2, - STATE(2552), 1, + STATE(2582), 1, sym_comment, - ACTIONS(4710), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1709), 6, + ACTIONS(1761), 10, 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(1721), 43, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1763), 45, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -289151,6 +292436,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -289158,46 +292445,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [63549] = 16, + [68250] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(3363), 1, aux_sym_record_entry_token1, - ACTIONS(5045), 1, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5622), 1, + ACTIONS(5628), 1, anon_sym_DQUOTE, - ACTIONS(5626), 1, + ACTIONS(5632), 1, sym_raw_string_begin, - STATE(1697), 1, + STATE(1698), 1, sym__command_name, - STATE(2553), 1, + STATE(2583), 1, sym_comment, - STATE(2601), 1, - sym_cmd_identifier, - STATE(2602), 1, + STATE(2632), 1, sym_val_string, - STATE(3819), 1, + STATE(2656), 1, + sym_cmd_identifier, + STATE(3815), 1, sym__val_number_decimal, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(5624), 2, + ACTIONS(5630), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2643), 2, + STATE(2628), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5618), 6, + ACTIONS(5624), 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(5620), 34, + ACTIONS(5626), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289232,46 +292519,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [63639] = 16, + [68340] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(4009), 1, - anon_sym_DQUOTE, - ACTIONS(4013), 1, - sym_raw_string_begin, - ACTIONS(5045), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, - aux_sym__val_number_decimal_token4, - STATE(2554), 1, + STATE(2584), 1, sym_comment, - STATE(3762), 1, - sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, - sym_cmd_identifier, - STATE(6300), 1, - sym__command_name, - ACTIONS(4011), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5043), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4492), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5033), 6, + ACTIONS(1010), 7, 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(5035), 34, + anon_sym_DOT, + ACTIONS(1012), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289306,108 +292568,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [63729] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2555), 1, - sym_comment, - ACTIONS(1675), 7, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1673), 48, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [63795] = 16, + [68406] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3127), 1, - anon_sym_DQUOTE, - ACTIONS(3133), 1, - sym_raw_string_begin, - ACTIONS(5045), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, - aux_sym__val_number_decimal_token4, - STATE(2550), 1, - aux_sym_command_list_repeat1, - STATE(2556), 1, + STATE(2585), 1, sym_comment, - STATE(3723), 1, - sym__val_number_decimal, - STATE(7045), 1, - sym__command_name, - STATE(7397), 1, - sym_val_string, - STATE(7535), 1, - sym_cmd_identifier, - ACTIONS(3129), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5043), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5497), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5288), 6, + ACTIONS(1014), 7, 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(5290), 34, + anon_sym_DOT, + ACTIONS(1016), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289442,12 +292630,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [63885] = 4, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [68472] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2557), 1, + STATE(2586), 1, sym_comment, - ACTIONS(990), 7, + ACTIONS(998), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -289455,7 +292656,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, anon_sym_DOT, - ACTIONS(992), 48, + ACTIONS(1000), 48, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -289504,12 +292705,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [63951] = 4, + [68538] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2558), 1, + ACTIONS(5634), 1, + anon_sym_QMARK2, + STATE(2587), 1, sym_comment, - ACTIONS(1006), 7, + ACTIONS(978), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -289517,8 +292720,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, anon_sym_DOT, - ACTIONS(1008), 48, + ACTIONS(980), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289556,8 +292760,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -289566,110 +292768,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [64017] = 6, - ACTIONS(3), 1, + [68606] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5628), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5630), 1, - aux_sym__immediate_decimal_token2, - STATE(2559), 1, + ACTIONS(5636), 1, + anon_sym_QMARK2, + STATE(2588), 1, sym_comment, - ACTIONS(1741), 5, + ACTIONS(984), 7, + 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, + anon_sym_DOT, + ACTIONS(986), 47, sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1739), 48, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [64087] = 16, + [68674] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3363), 1, + ACTIONS(3365), 1, aux_sym_record_entry_token1, - ACTIONS(5045), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5622), 1, + ACTIONS(4001), 1, anon_sym_DQUOTE, - ACTIONS(5626), 1, + ACTIONS(4005), 1, sym_raw_string_begin, - STATE(1697), 1, - sym__command_name, - STATE(2560), 1, + ACTIONS(5048), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, + aux_sym__val_number_decimal_token4, + STATE(2589), 1, sym_comment, - STATE(2601), 1, + STATE(3764), 1, + sym__val_number_decimal, + STATE(4154), 1, sym_cmd_identifier, - STATE(2602), 1, + STATE(4161), 1, sym_val_string, - STATE(3819), 1, - sym__val_number_decimal, - ACTIONS(5043), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5624), 2, + STATE(8137), 1, + sym__command_name, + ACTIONS(4003), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2643), 2, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4332), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5618), 6, + ACTIONS(5036), 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(5620), 34, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289704,46 +292905,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [64177] = 16, + [68764] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3127), 1, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(4001), 1, anon_sym_DQUOTE, - ACTIONS(3133), 1, + ACTIONS(4005), 1, sym_raw_string_begin, - ACTIONS(5045), 1, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2550), 1, - aux_sym_command_list_repeat1, - STATE(2561), 1, + STATE(2590), 1, sym_comment, - STATE(3723), 1, + STATE(3764), 1, sym__val_number_decimal, - STATE(7137), 1, - sym__command_name, - STATE(7397), 1, - sym_val_string, - STATE(7535), 1, + STATE(4154), 1, sym_cmd_identifier, - ACTIONS(3129), 2, + STATE(4161), 1, + sym_val_string, + STATE(6332), 1, + sym__command_name, + ACTIONS(4003), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(5497), 2, + STATE(4332), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5288), 6, + ACTIONS(5036), 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(5290), 34, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289778,22 +292979,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [64267] = 4, + [68854] = 16, ACTIONS(247), 1, anon_sym_POUND, - STATE(2562), 1, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(4001), 1, + anon_sym_DQUOTE, + ACTIONS(4005), 1, + sym_raw_string_begin, + ACTIONS(5048), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, + aux_sym__val_number_decimal_token4, + STATE(2591), 1, sym_comment, - ACTIONS(998), 7, + STATE(3764), 1, + sym__val_number_decimal, + STATE(4154), 1, + sym_cmd_identifier, + STATE(4161), 1, + sym_val_string, + STATE(5981), 1, + sym__command_name, + ACTIONS(4003), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4332), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5036), 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, - anon_sym_DOT, - ACTIONS(1000), 48, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289828,173 +293053,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [64333] = 12, + [68944] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5497), 1, - anon_sym_DOLLAR, - ACTIONS(5499), 1, - anon_sym_LPAREN2, - ACTIONS(5632), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5634), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5636), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5638), 1, - aux_sym__immediate_decimal_token5, - STATE(2563), 1, - sym_comment, - STATE(3142), 1, - sym__immediate_decimal, - STATE(3140), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1691), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1693), 28, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, + ACTIONS(5628), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [64415] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5497), 1, - anon_sym_DOLLAR, - ACTIONS(5499), 1, - anon_sym_LPAREN2, ACTIONS(5632), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5634), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5636), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5638), 1, - aux_sym__immediate_decimal_token5, - STATE(2564), 1, + sym_raw_string_begin, + STATE(1698), 1, + sym__command_name, + STATE(2592), 1, sym_comment, - STATE(3083), 1, - sym__immediate_decimal, - STATE(3149), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1663), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, + STATE(2632), 1, + sym_val_string, + STATE(2656), 1, + sym_cmd_identifier, + STATE(3815), 1, + sym__val_number_decimal, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1671), 28, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(5630), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [64497] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2565), 1, - sym_comment, - ACTIONS(1014), 7, + STATE(2628), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5624), 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, - anon_sym_DOT, - ACTIONS(1016), 48, - sym_raw_string_begin, + ACTIONS(5626), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -290029,173 +293127,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [64563] = 12, + [69034] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5497), 1, - anon_sym_DOLLAR, - ACTIONS(5499), 1, - anon_sym_LPAREN2, - ACTIONS(5632), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5634), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5636), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5638), 1, - aux_sym__immediate_decimal_token5, - STATE(2566), 1, - sym_comment, - STATE(3098), 1, - sym__immediate_decimal, - STATE(3133), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1705), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1707), 28, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, + ACTIONS(3127), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [64645] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5580), 1, - anon_sym_DOT, - STATE(2567), 1, - sym_comment, - STATE(2586), 1, - aux_sym_cell_path_repeat1, - STATE(2759), 1, - sym_path, - STATE(2835), 1, - sym_cell_path, - ACTIONS(963), 4, + ACTIONS(3133), 1, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(961), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, + STATE(2576), 1, + aux_sym_command_list_repeat1, + STATE(2593), 1, + sym_comment, + STATE(3820), 1, + sym__val_number_decimal, + STATE(7059), 1, + sym__command_name, + STATE(7516), 1, + sym_val_string, + STATE(7649), 1, + sym_cmd_identifier, + ACTIONS(3129), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [64719] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5640), 1, - anon_sym_QMARK2, - STATE(2568), 1, - sym_comment, - ACTIONS(984), 7, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5625), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5310), 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, - anon_sym_DOT, - ACTIONS(986), 47, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5312), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -290230,193 +293201,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [64787] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5580), 1, - anon_sym_DOT, - STATE(2569), 1, - sym_comment, - STATE(2586), 1, - aux_sym_cell_path_repeat1, - STATE(2759), 1, - sym_path, - STATE(2824), 1, - sym_cell_path, - ACTIONS(1771), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1769), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [64861] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5497), 1, - anon_sym_DOLLAR, - ACTIONS(5499), 1, - anon_sym_LPAREN2, - ACTIONS(5632), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5634), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5636), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5638), 1, - aux_sym__immediate_decimal_token5, - STATE(2570), 1, - sym_comment, - STATE(3146), 1, - sym__immediate_decimal, - STATE(3145), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1581), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1591), 28, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [64943] = 16, + [69124] = 16, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(3127), 1, anon_sym_DQUOTE, ACTIONS(3133), 1, sym_raw_string_begin, - ACTIONS(5045), 1, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2550), 1, + STATE(2576), 1, aux_sym_command_list_repeat1, - STATE(2571), 1, + STATE(2594), 1, sym_comment, - STATE(3723), 1, + STATE(3820), 1, sym__val_number_decimal, - STATE(7317), 1, + STATE(7244), 1, sym__command_name, - STATE(7397), 1, + STATE(7516), 1, sym_val_string, - STATE(7535), 1, + STATE(7649), 1, sym_cmd_identifier, ACTIONS(3129), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(5497), 2, + STATE(5625), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5288), 6, + ACTIONS(5310), 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(5290), 34, + ACTIONS(5312), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -290451,12 +293275,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [65033] = 4, + [69214] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2572), 1, + STATE(2595), 1, sym_comment, - ACTIONS(1763), 10, + ACTIONS(1585), 10, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -290467,7 +293291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - ACTIONS(1765), 45, + ACTIONS(1587), 45, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -290513,22 +293337,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [65099] = 4, + [69280] = 15, ACTIONS(247), 1, anon_sym_POUND, - STATE(2573), 1, + ACTIONS(3657), 1, + anon_sym_DQUOTE, + ACTIONS(3667), 1, + sym_raw_string_begin, + ACTIONS(5048), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, + aux_sym__val_number_decimal_token4, + STATE(2596), 1, sym_comment, - ACTIONS(994), 7, + STATE(3764), 1, + sym__val_number_decimal, + STATE(4154), 1, + sym_cmd_identifier, + STATE(4161), 1, + sym_val_string, + STATE(4816), 1, + sym__command_name, + ACTIONS(3659), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4721), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5036), 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, - anon_sym_DOT, - ACTIONS(996), 48, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -290563,35 +293409,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [65165] = 4, + [69367] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2574), 1, + STATE(2597), 1, sym_comment, - ACTIONS(1673), 10, + ACTIONS(5054), 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, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1675), 45, + ACTIONS(5052), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -290627,118 +293457,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [65231] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2575), 1, - sym_comment, - ACTIONS(1623), 7, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1621), 48, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [65297] = 16, + [69432] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3127), 1, - anon_sym_DQUOTE, - ACTIONS(3133), 1, - sym_raw_string_begin, - ACTIONS(5045), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, - aux_sym__val_number_decimal_token4, - STATE(2550), 1, - aux_sym_command_list_repeat1, - STATE(2576), 1, + STATE(2598), 1, sym_comment, - STATE(3723), 1, - sym__val_number_decimal, - STATE(7316), 1, - sym__command_name, - STATE(7397), 1, - sym_val_string, - STATE(7535), 1, - sym_cmd_identifier, - ACTIONS(3129), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5043), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5497), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5288), 6, + ACTIONS(5064), 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(5290), 34, + ACTIONS(5062), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -290773,106 +293518,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [65387] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2577), 1, - sym_comment, - ACTIONS(1765), 7, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1763), 48, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [65453] = 15, + [69497] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_DQUOTE, - ACTIONS(4013), 1, + ACTIONS(4005), 1, sym_raw_string_begin, - ACTIONS(5045), 1, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2578), 1, + STATE(2599), 1, sym_comment, - STATE(3762), 1, + STATE(3764), 1, sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(7885), 1, + STATE(4161), 1, + sym_val_string, + STATE(7777), 1, sym__command_name, - ACTIONS(4011), 2, + ACTIONS(4003), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4492), 2, + STATE(4332), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5033), 6, + ACTIONS(5036), 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(5035), 34, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -290907,109 +293603,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [65540] = 8, + [69584] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5642), 1, - anon_sym_DOT, - STATE(2579), 1, - sym_comment, - STATE(2711), 1, - aux_sym_cell_path_repeat1, - STATE(2796), 1, - sym_path, - STATE(2897), 1, - sym_cell_path, - ACTIONS(961), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(963), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [65613] = 15, - ACTIONS(109), 1, + ACTIONS(4001), 1, anon_sym_DQUOTE, - ACTIONS(121), 1, + ACTIONS(4005), 1, sym_raw_string_begin, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5045), 1, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2580), 1, + STATE(2600), 1, sym_comment, - STATE(3778), 1, + STATE(3764), 1, sym__val_number_decimal, - STATE(6644), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(6645), 1, + STATE(4161), 1, sym_val_string, - STATE(7179), 1, + STATE(5981), 1, sym__command_name, - ACTIONS(111), 2, + ACTIONS(4003), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(2091), 2, + STATE(4332), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5104), 6, + ACTIONS(5036), 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(5106), 34, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -291044,44 +293675,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [65700] = 15, + [69671] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4009), 1, - anon_sym_DQUOTE, - ACTIONS(4013), 1, - sym_raw_string_begin, - ACTIONS(5045), 1, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2581), 1, + ACTIONS(5628), 1, + anon_sym_DQUOTE, + ACTIONS(5632), 1, + sym_raw_string_begin, + STATE(1698), 1, + sym__command_name, + STATE(2601), 1, sym_comment, - STATE(3762), 1, - sym__val_number_decimal, - STATE(4159), 1, + STATE(2632), 1, sym_val_string, - STATE(4195), 1, + STATE(2656), 1, sym_cmd_identifier, - STATE(7785), 1, - sym__command_name, - ACTIONS(4011), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5043), 2, + STATE(3815), 1, + sym__val_number_decimal, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4492), 2, + ACTIONS(5630), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2628), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5033), 6, + ACTIONS(5624), 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(5035), 34, + ACTIONS(5626), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -291116,356 +293747,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [65787] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5574), 1, - aux_sym__immediate_decimal_token2, - STATE(2582), 1, - sym_comment, - ACTIONS(1607), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1609), 35, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [65854] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5644), 1, - aux_sym__immediate_decimal_token2, - STATE(2583), 1, - sym_comment, - ACTIONS(1673), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1675), 35, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [65921] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5584), 1, - aux_sym__immediate_decimal_token2, - STATE(2584), 1, - sym_comment, - ACTIONS(1757), 5, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1755), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [65988] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5646), 1, - aux_sym__immediate_decimal_token2, - STATE(2585), 1, - sym_comment, - ACTIONS(1785), 5, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1783), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [66055] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5580), 1, - anon_sym_DOT, - STATE(2586), 1, - sym_comment, - STATE(2588), 1, - aux_sym_cell_path_repeat1, - STATE(2759), 1, - sym_path, - ACTIONS(969), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(967), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [66126] = 15, + [69758] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_DQUOTE, - ACTIONS(4013), 1, + ACTIONS(4005), 1, sym_raw_string_begin, - ACTIONS(5045), 1, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2587), 1, + STATE(2602), 1, sym_comment, - STATE(3762), 1, + STATE(3764), 1, sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(6331), 1, + STATE(4161), 1, + sym_val_string, + STATE(6757), 1, sym__command_name, - ACTIONS(4011), 2, + ACTIONS(4003), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4492), 2, + STATE(4332), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5033), 6, + ACTIONS(5036), 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(5035), 34, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -291500,107 +293819,105 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [66213] = 6, - ACTIONS(3), 1, + [69845] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5648), 1, - anon_sym_DOT, - STATE(2759), 1, - sym_path, - STATE(2588), 2, + STATE(2603), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(973), 4, + ACTIONS(994), 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(996), 48, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(971), 47, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [66282] = 15, + [69910] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_DQUOTE, - ACTIONS(4013), 1, + ACTIONS(4005), 1, sym_raw_string_begin, - ACTIONS(5045), 1, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2589), 1, + STATE(2604), 1, sym_comment, - STATE(3762), 1, + STATE(3764), 1, sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(6297), 1, + STATE(4161), 1, + sym_val_string, + STATE(4816), 1, sym__command_name, - ACTIONS(4011), 2, + ACTIONS(4003), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4492), 2, + STATE(4332), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5033), 6, + ACTIONS(5036), 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(5035), 34, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -291635,44 +293952,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [66369] = 15, + [69997] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4009), 1, - anon_sym_DQUOTE, - ACTIONS(4013), 1, - sym_raw_string_begin, - ACTIONS(5045), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, - aux_sym__val_number_decimal_token4, - STATE(2590), 1, + STATE(2605), 1, sym_comment, - STATE(3762), 1, - sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, - sym_cmd_identifier, - STATE(6299), 1, - sym__command_name, - ACTIONS(4011), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5043), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4492), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5033), 6, + ACTIONS(1044), 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(5035), 34, + ACTIONS(1046), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -291707,44 +294000,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [66456] = 15, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [70062] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_DQUOTE, - ACTIONS(4013), 1, + ACTIONS(4005), 1, sym_raw_string_begin, - ACTIONS(5045), 1, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2591), 1, + STATE(2606), 1, sym_comment, - STATE(3762), 1, + STATE(3764), 1, sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(6368), 1, + STATE(4161), 1, + sym_val_string, + STATE(6352), 1, sym__command_name, - ACTIONS(4011), 2, + ACTIONS(4003), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4492), 2, + STATE(4332), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5033), 6, + ACTIONS(5036), 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(5035), 34, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -291779,44 +294085,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [66543] = 15, + [70149] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_DQUOTE, - ACTIONS(4013), 1, + ACTIONS(4005), 1, sym_raw_string_begin, - ACTIONS(5045), 1, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2592), 1, + STATE(2607), 1, sym_comment, - STATE(3762), 1, + STATE(3764), 1, sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(6599), 1, + STATE(4161), 1, + sym_val_string, + STATE(7823), 1, sym__command_name, - ACTIONS(4011), 2, + ACTIONS(4003), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4492), 2, + STATE(4332), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5033), 6, + ACTIONS(5036), 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(5035), 34, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -291851,44 +294157,106 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [66630] = 15, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(121), 1, + [70236] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5586), 1, + aux_sym__immediate_decimal_token2, + STATE(2608), 1, + sym_comment, + ACTIONS(1573), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1575), 35, sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [70303] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5045), 1, + ACTIONS(4001), 1, + anon_sym_DQUOTE, + ACTIONS(4005), 1, + sym_raw_string_begin, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2593), 1, + STATE(2609), 1, sym_comment, - STATE(3778), 1, + STATE(3764), 1, sym__val_number_decimal, - STATE(6080), 1, - sym__command_name, - STATE(6644), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(6645), 1, + STATE(4161), 1, sym_val_string, - ACTIONS(111), 2, + STATE(8051), 1, + sym__command_name, + ACTIONS(4003), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(2091), 2, + STATE(4332), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5104), 6, + ACTIONS(5036), 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(5106), 34, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -291923,44 +294291,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [66717] = 15, + [70390] = 15, ACTIONS(109), 1, anon_sym_DQUOTE, ACTIONS(121), 1, sym_raw_string_begin, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5045), 1, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2594), 1, + STATE(2610), 1, sym_comment, - STATE(3778), 1, + STATE(3833), 1, sym__val_number_decimal, - STATE(6137), 1, + STATE(6227), 1, sym__command_name, - STATE(6644), 1, + STATE(6276), 1, sym_cmd_identifier, - STATE(6645), 1, + STATE(6277), 1, sym_val_string, ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(2091), 2, + STATE(2093), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5104), 6, + ACTIONS(5087), 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(5106), 34, + ACTIONS(5089), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -291995,44 +294363,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [66804] = 15, + [70477] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_DQUOTE, - ACTIONS(4013), 1, + ACTIONS(4005), 1, sym_raw_string_begin, - ACTIONS(5045), 1, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2595), 1, + STATE(2611), 1, sym_comment, - STATE(3762), 1, + STATE(3764), 1, sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(5904), 1, + STATE(4161), 1, + sym_val_string, + STATE(6298), 1, sym__command_name, - ACTIONS(4011), 2, + ACTIONS(4003), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4492), 2, + STATE(4332), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5033), 6, + ACTIONS(5036), 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(5035), 34, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292067,44 +294435,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [66891] = 15, + [70564] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5045), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5622), 1, - anon_sym_DQUOTE, - ACTIONS(5626), 1, - sym_raw_string_begin, - STATE(1697), 1, - sym__command_name, - STATE(2596), 1, + STATE(2612), 1, sym_comment, - STATE(2601), 1, - sym_cmd_identifier, - STATE(2602), 1, - sym_val_string, - STATE(3819), 1, - sym__val_number_decimal, - ACTIONS(5043), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5624), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2643), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5618), 6, + ACTIONS(1002), 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(5620), 34, + ACTIONS(1004), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292139,44 +294483,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [66978] = 15, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [70629] = 15, ACTIONS(109), 1, anon_sym_DQUOTE, ACTIONS(121), 1, sym_raw_string_begin, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5045), 1, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2597), 1, + STATE(2613), 1, sym_comment, - STATE(3778), 1, + STATE(3833), 1, sym__val_number_decimal, - STATE(6644), 1, + STATE(6080), 1, + sym__command_name, + STATE(6276), 1, sym_cmd_identifier, - STATE(6645), 1, + STATE(6277), 1, sym_val_string, - STATE(7181), 1, - sym__command_name, ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(2091), 2, + STATE(2093), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5104), 6, + ACTIONS(5087), 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(5106), 34, + ACTIONS(5089), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292211,44 +294568,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [67065] = 15, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(121), 1, - sym_raw_string_begin, + [70716] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5045), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, - aux_sym__val_number_decimal_token4, - STATE(2598), 1, + STATE(2614), 1, sym_comment, - STATE(3778), 1, - sym__val_number_decimal, - STATE(6644), 1, - sym_cmd_identifier, - STATE(6645), 1, - sym_val_string, - STATE(7187), 1, - sym__command_name, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5043), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(2091), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5104), 6, + ACTIONS(998), 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(5106), 34, + ACTIONS(1000), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292283,44 +294616,181 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [67152] = 15, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [70781] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4009), 1, + ACTIONS(5638), 1, + aux_sym__immediate_decimal_token2, + STATE(2615), 1, + sym_comment, + ACTIONS(1681), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1683), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [70848] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5598), 1, + aux_sym__immediate_decimal_token2, + STATE(2616), 1, + sym_comment, + ACTIONS(1767), 5, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1765), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [70915] = 15, + ACTIONS(109), 1, anon_sym_DQUOTE, - ACTIONS(4013), 1, + ACTIONS(121), 1, sym_raw_string_begin, - ACTIONS(5045), 1, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2599), 1, + STATE(2617), 1, sym_comment, - STATE(3762), 1, + STATE(3833), 1, sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, + STATE(6276), 1, sym_cmd_identifier, - STATE(6221), 1, + STATE(6277), 1, + sym_val_string, + STATE(7273), 1, sym__command_name, - ACTIONS(4011), 2, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4492), 2, + STATE(2093), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5033), 6, + ACTIONS(5087), 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(5035), 34, + ACTIONS(5089), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292355,44 +294825,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [67239] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4009), 1, + [71002] = 15, + ACTIONS(109), 1, anon_sym_DQUOTE, - ACTIONS(4013), 1, + ACTIONS(121), 1, sym_raw_string_begin, - ACTIONS(5045), 1, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2600), 1, + STATE(2618), 1, sym_comment, - STATE(3762), 1, + STATE(3833), 1, sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, + STATE(6276), 1, sym_cmd_identifier, - STATE(7773), 1, + STATE(6277), 1, + sym_val_string, + STATE(7276), 1, sym__command_name, - ACTIONS(4011), 2, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4492), 2, + STATE(2093), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5033), 6, + ACTIONS(5087), 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(5035), 34, + ACTIONS(5089), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292427,20 +294897,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [67326] = 4, + [71089] = 15, ACTIONS(247), 1, anon_sym_POUND, - STATE(2601), 1, + ACTIONS(4001), 1, + anon_sym_DQUOTE, + ACTIONS(4005), 1, + sym_raw_string_begin, + ACTIONS(5048), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, + aux_sym__val_number_decimal_token4, + STATE(2619), 1, sym_comment, - ACTIONS(5651), 6, + STATE(3764), 1, + sym__val_number_decimal, + STATE(4154), 1, + sym_cmd_identifier, + STATE(4161), 1, + sym_val_string, + STATE(6796), 1, + sym__command_name, + ACTIONS(4003), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4332), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5036), 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(5653), 48, - sym_raw_string_begin, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292475,32 +294969,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [67391] = 4, + [71176] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2602), 1, + STATE(2620), 1, sym_comment, - ACTIONS(5655), 6, + ACTIONS(2464), 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(5657), 48, + ACTIONS(2466), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -292549,19 +295030,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [67456] = 4, + [71241] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2603), 1, + STATE(2621), 1, sym_comment, - ACTIONS(5088), 6, + ACTIONS(2464), 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(5086), 48, + ACTIONS(2466), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -292610,44 +295091,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [67521] = 15, + [71306] = 15, ACTIONS(109), 1, anon_sym_DQUOTE, ACTIONS(121), 1, sym_raw_string_begin, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5045), 1, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2604), 1, + STATE(2622), 1, sym_comment, - STATE(3778), 1, + STATE(3833), 1, sym__val_number_decimal, - STATE(6644), 1, + STATE(6276), 1, sym_cmd_identifier, - STATE(6645), 1, + STATE(6277), 1, sym_val_string, - STATE(6909), 1, + STATE(7256), 1, sym__command_name, ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(2091), 2, + STATE(2093), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5104), 6, + ACTIONS(5087), 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(5106), 34, + ACTIONS(5089), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292682,19 +295163,91 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [67608] = 4, + [71393] = 15, ACTIONS(247), 1, anon_sym_POUND, - STATE(2605), 1, + ACTIONS(5048), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5644), 1, + anon_sym_DQUOTE, + ACTIONS(5648), 1, + sym_raw_string_begin, + STATE(2623), 1, sym_comment, - ACTIONS(5022), 6, + STATE(3824), 1, + sym__val_number_decimal, + STATE(5654), 1, + sym__command_name, + STATE(5669), 1, + sym_cmd_identifier, + STATE(5672), 1, + sym_val_string, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(5646), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5539), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5640), 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(5020), 48, + ACTIONS(5642), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [71480] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2624), 1, + sym_comment, + ACTIONS(2486), 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(2488), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -292743,44 +295296,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [67673] = 15, + [71545] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3603), 1, - anon_sym_DQUOTE, - ACTIONS(3613), 1, - sym_raw_string_begin, - ACTIONS(5045), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, - aux_sym__val_number_decimal_token4, - STATE(2606), 1, + STATE(2625), 1, sym_comment, - STATE(3762), 1, - sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, - sym_cmd_identifier, - STATE(4945), 1, - sym__command_name, - ACTIONS(3605), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5043), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4722), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5033), 6, + ACTIONS(2510), 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(5035), 34, + ACTIONS(2512), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292815,44 +295344,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [67760] = 15, - ACTIONS(109), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, - ACTIONS(121), 1, - sym_raw_string_begin, + sym__str_single_quotes, + sym__str_back_ticks, + [71610] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5045), 1, + ACTIONS(4001), 1, + anon_sym_DQUOTE, + ACTIONS(4005), 1, + sym_raw_string_begin, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2607), 1, + STATE(2626), 1, sym_comment, - STATE(3778), 1, + STATE(3764), 1, sym__val_number_decimal, - STATE(6644), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(6645), 1, + STATE(4161), 1, sym_val_string, - STATE(6838), 1, + STATE(7996), 1, sym__command_name, - ACTIONS(111), 2, + ACTIONS(4003), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(2091), 2, + STATE(4332), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5104), 6, + ACTIONS(5036), 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(5106), 34, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292887,20 +295429,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [67847] = 4, + [71697] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2608), 1, + STATE(2627), 1, sym_comment, - ACTIONS(1018), 6, + ACTIONS(1006), 7, 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(1020), 48, + anon_sym_DOT, + ACTIONS(1008), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292938,8 +295482,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -292948,44 +295490,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [67912] = 15, + [71762] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4009), 1, + STATE(2628), 1, + sym_comment, + ACTIONS(990), 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(992), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [71827] = 15, + ACTIONS(109), 1, anon_sym_DQUOTE, - ACTIONS(4013), 1, + ACTIONS(121), 1, sym_raw_string_begin, - ACTIONS(5045), 1, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2609), 1, + STATE(2629), 1, sym_comment, - STATE(3762), 1, - sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, + STATE(3833), 1, + sym__val_number_decimal, + STATE(6276), 1, sym_cmd_identifier, - STATE(4945), 1, + STATE(6277), 1, + sym_val_string, + STATE(6881), 1, sym__command_name, - ACTIONS(4011), 2, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4492), 2, + STATE(2093), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5033), 6, + ACTIONS(5087), 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(5035), 34, + ACTIONS(5089), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293020,44 +295623,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [67999] = 15, + [71914] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5045), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5663), 1, + ACTIONS(4001), 1, anon_sym_DQUOTE, - ACTIONS(5667), 1, + ACTIONS(4005), 1, sym_raw_string_begin, - STATE(2610), 1, + ACTIONS(5048), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, + aux_sym__val_number_decimal_token4, + STATE(2630), 1, sym_comment, - STATE(3730), 1, + STATE(3764), 1, sym__val_number_decimal, - STATE(5633), 1, - sym__command_name, - STATE(5719), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(5720), 1, + STATE(4161), 1, sym_val_string, - ACTIONS(5043), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5665), 2, + STATE(6397), 1, + sym__command_name, + ACTIONS(4003), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5556), 2, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4332), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5659), 6, + ACTIONS(5036), 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(5661), 34, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293092,44 +295695,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [68086] = 15, + [72001] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5045), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5673), 1, + ACTIONS(4001), 1, anon_sym_DQUOTE, - ACTIONS(5677), 1, + ACTIONS(4005), 1, sym_raw_string_begin, - STATE(1742), 1, - sym__command_name, - STATE(2611), 1, + ACTIONS(5048), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, + aux_sym__val_number_decimal_token4, + STATE(2631), 1, sym_comment, - STATE(2673), 1, + STATE(3764), 1, + sym__val_number_decimal, + STATE(4154), 1, sym_cmd_identifier, - STATE(2674), 1, + STATE(4161), 1, sym_val_string, - STATE(3761), 1, - sym__val_number_decimal, - ACTIONS(5043), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5675), 2, + STATE(6398), 1, + sym__command_name, + ACTIONS(4003), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2670), 2, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4332), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5669), 6, + ACTIONS(5036), 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(5671), 34, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293164,19 +295767,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [68173] = 4, + [72088] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2612), 1, + STATE(2632), 1, sym_comment, - ACTIONS(2347), 6, + ACTIONS(5650), 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(2349), 48, + ACTIONS(5652), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -293225,10 +295828,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [68238] = 4, + [72153] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2613), 1, + STATE(2633), 1, sym_comment, ACTIONS(2347), 6, aux_sym_cmd_identifier_token1, @@ -293286,20 +295889,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [68303] = 4, + [72218] = 15, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(121), 1, + sym_raw_string_begin, ACTIONS(247), 1, anon_sym_POUND, - STATE(2614), 1, + ACTIONS(5048), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, + aux_sym__val_number_decimal_token4, + STATE(2634), 1, sym_comment, - ACTIONS(1002), 6, + STATE(3833), 1, + sym__val_number_decimal, + STATE(6276), 1, + sym_cmd_identifier, + STATE(6277), 1, + sym_val_string, + STATE(7262), 1, + sym__command_name, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(2093), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5087), 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(1004), 48, - sym_raw_string_begin, + ACTIONS(5089), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293334,33 +295961,109 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + [72305] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5654), 1, + anon_sym_DOT, + STATE(2635), 1, + sym_comment, + STATE(2676), 1, + aux_sym_cell_path_repeat1, + STATE(2801), 1, + sym_path, + STATE(2913), 1, + sym_cell_path, + ACTIONS(961), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(963), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [68368] = 4, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72378] = 15, ACTIONS(247), 1, anon_sym_POUND, - STATE(2615), 1, + ACTIONS(4001), 1, + anon_sym_DQUOTE, + ACTIONS(4005), 1, + sym_raw_string_begin, + ACTIONS(5048), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, + aux_sym__val_number_decimal_token4, + STATE(2636), 1, sym_comment, - ACTIONS(2508), 6, + STATE(3764), 1, + sym__val_number_decimal, + STATE(4154), 1, + sym_cmd_identifier, + STATE(4161), 1, + sym_val_string, + STATE(6507), 1, + sym__command_name, + ACTIONS(4003), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4332), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5036), 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(2510), 48, - sym_raw_string_begin, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293395,94 +296098,174 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + [72465] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5654), 1, + anon_sym_DOT, + STATE(2637), 1, + sym_comment, + STATE(2676), 1, + aux_sym_cell_path_repeat1, + STATE(2801), 1, + sym_path, + STATE(2897), 1, + sym_cell_path, + ACTIONS(1747), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1749), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [68433] = 4, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72538] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2616), 1, - sym_comment, - ACTIONS(1006), 7, - 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(5654), 1, anon_sym_DOT, - ACTIONS(1008), 47, + STATE(2638), 1, + sym_comment, + STATE(2676), 1, + aux_sym_cell_path_repeat1, + STATE(2801), 1, + sym_path, + STATE(2915), 1, + sym_cell_path, + ACTIONS(1733), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1737), 33, sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [68498] = 4, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72611] = 15, ACTIONS(247), 1, anon_sym_POUND, - STATE(2617), 1, + ACTIONS(4001), 1, + anon_sym_DQUOTE, + ACTIONS(4005), 1, + sym_raw_string_begin, + ACTIONS(5048), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, + aux_sym__val_number_decimal_token4, + STATE(2639), 1, sym_comment, - ACTIONS(2464), 6, + STATE(3764), 1, + sym__val_number_decimal, + STATE(4154), 1, + sym_cmd_identifier, + STATE(4161), 1, + sym_val_string, + STATE(5799), 1, + sym__command_name, + ACTIONS(4003), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4332), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5036), 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(2466), 48, - sym_raw_string_begin, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293517,33 +296300,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [68563] = 4, + [72698] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2618), 1, + STATE(2640), 1, sym_comment, - ACTIONS(2468), 6, + ACTIONS(1010), 7, 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(2470), 48, + anon_sym_DOT, + ACTIONS(1012), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293581,8 +296353,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -293591,12 +296361,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [68628] = 4, + [72763] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2619), 1, + STATE(2641), 1, sym_comment, - ACTIONS(1010), 7, + ACTIONS(1014), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -293604,7 +296374,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, anon_sym_DOT, - ACTIONS(1012), 47, + ACTIONS(1016), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -293652,22 +296422,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [68693] = 4, + [72828] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2620), 1, + STATE(2642), 1, sym_comment, - ACTIONS(1014), 7, + ACTIONS(5656), 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, - anon_sym_DOT, - ACTIONS(1016), 47, + ACTIONS(5658), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293705,6 +296473,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -293713,44 +296483,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [68758] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4009), 1, + [72893] = 15, + ACTIONS(109), 1, anon_sym_DQUOTE, - ACTIONS(4013), 1, + ACTIONS(121), 1, sym_raw_string_begin, - ACTIONS(5045), 1, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2621), 1, + STATE(2643), 1, sym_comment, - STATE(3762), 1, + STATE(3833), 1, sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, + STATE(6276), 1, sym_cmd_identifier, - STATE(5997), 1, + STATE(6277), 1, + sym_val_string, + STATE(7185), 1, sym__command_name, - ACTIONS(4011), 2, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4492), 2, + STATE(2093), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5033), 6, + ACTIONS(5087), 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(5035), 34, + ACTIONS(5089), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293785,19 +296555,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [68845] = 4, + [72980] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2622), 1, + STATE(2644), 1, sym_comment, - ACTIONS(5679), 6, + ACTIONS(5660), 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(5681), 48, + ACTIONS(5662), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -293846,20 +296616,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [68910] = 4, + [73045] = 15, ACTIONS(247), 1, anon_sym_POUND, - STATE(2623), 1, + ACTIONS(4001), 1, + anon_sym_DQUOTE, + ACTIONS(4005), 1, + sym_raw_string_begin, + ACTIONS(5048), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, + aux_sym__val_number_decimal_token4, + STATE(2645), 1, sym_comment, - ACTIONS(5683), 6, + STATE(3764), 1, + sym__val_number_decimal, + STATE(4154), 1, + sym_cmd_identifier, + STATE(4161), 1, + sym_val_string, + STATE(8137), 1, + sym__command_name, + ACTIONS(4003), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4332), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5036), 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(5685), 48, - sym_raw_string_begin, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293894,33 +296688,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + [73132] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4001), 1, + anon_sym_DQUOTE, + ACTIONS(4005), 1, + sym_raw_string_begin, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2646), 1, + sym_comment, + STATE(3764), 1, + sym__val_number_decimal, + STATE(4154), 1, + sym_cmd_identifier, + STATE(4161), 1, + sym_val_string, + STATE(6332), 1, + sym__command_name, + ACTIONS(4003), 2, sym__str_single_quotes, sym__str_back_ticks, - [68975] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2624), 1, - sym_comment, - ACTIONS(1735), 6, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4332), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5036), 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(1737), 48, - sym_raw_string_begin, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293955,57 +296760,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [69040] = 15, + [73219] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_DQUOTE, - ACTIONS(4013), 1, + ACTIONS(4005), 1, sym_raw_string_begin, - ACTIONS(5045), 1, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2625), 1, + STATE(2647), 1, sym_comment, - STATE(3762), 1, + STATE(3764), 1, sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(6264), 1, + STATE(4161), 1, + sym_val_string, + STATE(7818), 1, sym__command_name, - ACTIONS(4011), 2, + ACTIONS(4003), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4492), 2, + STATE(4332), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5033), 6, + ACTIONS(5036), 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(5035), 34, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294040,44 +296832,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [69127] = 15, + [73306] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_DQUOTE, - ACTIONS(4013), 1, + ACTIONS(4005), 1, sym_raw_string_begin, - ACTIONS(5045), 1, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2626), 1, + STATE(2648), 1, sym_comment, - STATE(3762), 1, + STATE(3764), 1, sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(6278), 1, + STATE(4161), 1, + sym_val_string, + STATE(6378), 1, sym__command_name, - ACTIONS(4011), 2, + ACTIONS(4003), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4492), 2, + STATE(4332), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5033), 6, + ACTIONS(5036), 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(5035), 34, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294112,20 +296904,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [69214] = 4, + [73393] = 15, ACTIONS(247), 1, anon_sym_POUND, - STATE(2627), 1, + ACTIONS(5048), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5668), 1, + anon_sym_DQUOTE, + ACTIONS(5672), 1, + sym_raw_string_begin, + STATE(1759), 1, + sym__command_name, + STATE(2649), 1, sym_comment, - ACTIONS(5687), 6, + STATE(2726), 1, + sym_cmd_identifier, + STATE(2727), 1, + sym_val_string, + STATE(3752), 1, + sym__val_number_decimal, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(5670), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2722), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5664), 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(5689), 48, - sym_raw_string_begin, + ACTIONS(5666), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294160,32 +296976,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [69279] = 4, + [73480] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2628), 1, + STATE(2650), 1, sym_comment, - ACTIONS(5691), 6, + ACTIONS(1733), 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(5693), 48, + ACTIONS(1737), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -294234,89 +297037,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [69344] = 4, - ACTIONS(247), 1, + [73545] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2629), 1, + ACTIONS(5674), 1, + aux_sym__immediate_decimal_token2, + STATE(2651), 1, sym_comment, - ACTIONS(2125), 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(2127), 48, + ACTIONS(1787), 5, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1785), 48, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [69409] = 8, - ACTIONS(247), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [73612] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5642), 1, + ACTIONS(5582), 1, anon_sym_DOT, - STATE(2630), 1, + STATE(2652), 1, sym_comment, - STATE(2711), 1, + STATE(2653), 1, aux_sym_cell_path_repeat1, - STATE(2796), 1, + STATE(2749), 1, sym_path, - STATE(2890), 1, - sym_cell_path, - ACTIONS(1769), 17, + ACTIONS(969), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(967), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294325,20 +297154,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1771), 33, + [73683] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5676), 1, + anon_sym_DOT, + STATE(2749), 1, + sym_path, + STATE(2653), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(973), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(971), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -294348,10 +297202,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -294360,44 +297225,45 @@ 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, - [69482] = 15, + aux_sym__unquoted_in_list_token1, + [73752] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_DQUOTE, - ACTIONS(4013), 1, + ACTIONS(4005), 1, sym_raw_string_begin, - ACTIONS(5045), 1, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2631), 1, + STATE(2654), 1, sym_comment, - STATE(3762), 1, + STATE(3764), 1, sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(7898), 1, + STATE(4161), 1, + sym_val_string, + STATE(6756), 1, sym__command_name, - ACTIONS(4011), 2, + ACTIONS(4003), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4492), 2, + STATE(4332), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5033), 6, + ACTIONS(5036), 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(5035), 34, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294432,44 +297298,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [69569] = 15, + [73839] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4009), 1, - anon_sym_DQUOTE, - ACTIONS(4013), 1, + STATE(2655), 1, + sym_comment, + ACTIONS(5679), 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(5681), 48, sym_raw_string_begin, - ACTIONS(5045), 1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - STATE(2632), 1, - sym_comment, - STATE(3762), 1, - sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, - sym_cmd_identifier, - STATE(6300), 1, - sym__command_name, - ACTIONS(4011), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4492), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5033), 6, + [73904] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2656), 1, + sym_comment, + ACTIONS(5683), 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(5035), 34, + ACTIONS(5685), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294504,44 +297407,94 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [69656] = 15, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [73969] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4009), 1, - anon_sym_DQUOTE, - ACTIONS(4013), 1, + STATE(2657), 1, + sym_comment, + ACTIONS(5687), 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(5689), 48, sym_raw_string_begin, - ACTIONS(5045), 1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - STATE(2633), 1, - sym_comment, - STATE(3762), 1, - sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, - sym_cmd_identifier, - STATE(7705), 1, - sym__command_name, - ACTIONS(4011), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4492), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5033), 6, + [74034] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2658), 1, + sym_comment, + ACTIONS(2052), 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(5035), 34, + ACTIONS(2054), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294576,44 +297529,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [69743] = 15, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [74099] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_DQUOTE, - ACTIONS(4013), 1, + ACTIONS(4005), 1, sym_raw_string_begin, - ACTIONS(5045), 1, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2634), 1, + STATE(2659), 1, sym_comment, - STATE(3762), 1, + STATE(3764), 1, sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(6365), 1, + STATE(4161), 1, + sym_val_string, + STATE(8052), 1, sym__command_name, - ACTIONS(4011), 2, + ACTIONS(4003), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4492), 2, + STATE(4332), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5033), 6, + ACTIONS(5036), 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(5035), 34, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294648,85 +297614,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [69830] = 8, + [74186] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5642), 1, - anon_sym_DOT, - STATE(2635), 1, - sym_comment, - STATE(2711), 1, - aux_sym_cell_path_repeat1, - STATE(2796), 1, - sym_path, - STATE(2855), 1, - sym_cell_path, - ACTIONS(1735), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1737), 33, + ACTIONS(4001), 1, + anon_sym_DQUOTE, + ACTIONS(4005), 1, sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, + STATE(2660), 1, + sym_comment, + STATE(3764), 1, + sym__val_number_decimal, + STATE(4154), 1, + sym_cmd_identifier, + STATE(4161), 1, + sym_val_string, + STATE(7922), 1, + sym__command_name, + ACTIONS(4003), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [69903] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2636), 1, - sym_comment, - ACTIONS(5695), 6, + ACTIONS(5046), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4332), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5036), 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(5697), 48, - sym_raw_string_begin, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294761,57 +297686,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [69968] = 15, + [74273] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_DQUOTE, - ACTIONS(4013), 1, + ACTIONS(4005), 1, sym_raw_string_begin, - ACTIONS(5045), 1, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2637), 1, + STATE(2661), 1, sym_comment, - STATE(3762), 1, + STATE(3764), 1, sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(7679), 1, + STATE(4161), 1, + sym_val_string, + STATE(8166), 1, sym__command_name, - ACTIONS(4011), 2, + ACTIONS(4003), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4492), 2, + STATE(4332), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5033), 6, + ACTIONS(5036), 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(5035), 34, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294846,44 +297758,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [70055] = 15, + [74360] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_DQUOTE, - ACTIONS(4013), 1, + ACTIONS(4005), 1, sym_raw_string_begin, - ACTIONS(5045), 1, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2638), 1, + STATE(2662), 1, sym_comment, - STATE(3762), 1, + STATE(3764), 1, sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(7881), 1, + STATE(4161), 1, + sym_val_string, + STATE(7790), 1, sym__command_name, - ACTIONS(4011), 2, + ACTIONS(4003), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4492), 2, + STATE(4332), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5033), 6, + ACTIONS(5036), 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(5035), 34, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294918,44 +297830,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [70142] = 15, + [74447] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4009), 1, - anon_sym_DQUOTE, - ACTIONS(4013), 1, - sym_raw_string_begin, - ACTIONS(5045), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, - aux_sym__val_number_decimal_token4, - STATE(2639), 1, + STATE(2663), 1, sym_comment, - STATE(3762), 1, - sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, - sym_cmd_identifier, - STATE(7861), 1, - sym__command_name, - ACTIONS(4011), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5043), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4492), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5033), 6, + ACTIONS(5691), 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(5035), 34, + ACTIONS(5693), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294990,44 +297878,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [70229] = 15, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [74512] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_DQUOTE, - ACTIONS(4013), 1, + ACTIONS(4005), 1, sym_raw_string_begin, - ACTIONS(5045), 1, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2640), 1, + STATE(2664), 1, sym_comment, - STATE(3762), 1, + STATE(3764), 1, sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(7737), 1, + STATE(4161), 1, + sym_val_string, + STATE(8154), 1, sym__command_name, - ACTIONS(4011), 2, + ACTIONS(4003), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4492), 2, + STATE(4332), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5033), 6, + ACTIONS(5036), 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(5035), 34, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295062,44 +297963,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [70316] = 15, + [74599] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_DQUOTE, - ACTIONS(4013), 1, + ACTIONS(4005), 1, sym_raw_string_begin, - ACTIONS(5045), 1, + ACTIONS(5048), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, + ACTIONS(5050), 1, aux_sym__val_number_decimal_token4, - STATE(2641), 1, + STATE(2665), 1, sym_comment, - STATE(3762), 1, + STATE(3764), 1, sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, + STATE(4154), 1, sym_cmd_identifier, - STATE(7781), 1, + STATE(4161), 1, + sym_val_string, + STATE(7716), 1, sym__command_name, - ACTIONS(4011), 2, + ACTIONS(4003), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + ACTIONS(5046), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4492), 2, + STATE(4332), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5033), 6, + ACTIONS(5036), 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(5035), 34, + ACTIONS(5038), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295134,19 +298035,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [70403] = 4, + [74686] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2642), 1, + STATE(2666), 1, sym_comment, - ACTIONS(990), 6, + ACTIONS(2478), 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(992), 48, + ACTIONS(2480), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -295195,20 +298096,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [70468] = 4, + [74751] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1559), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1822), 1, + anon_sym_LPAREN2, + ACTIONS(5695), 1, + anon_sym_DOT_DOT2, + STATE(2667), 1, + sym_comment, + ACTIONS(1828), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5697), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1820), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [74823] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2643), 1, + STATE(2668), 1, sym_comment, - ACTIONS(994), 6, + ACTIONS(998), 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(996), 48, + ACTIONS(1000), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295246,8 +298212,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -295256,20 +298220,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [70533] = 4, + [74887] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2644), 1, + STATE(2669), 1, sym_comment, - ACTIONS(998), 6, + ACTIONS(1733), 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(1000), 48, + ACTIONS(1737), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295307,8 +298272,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -295317,44 +298280,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [70598] = 15, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(121), 1, - sym_raw_string_begin, + [74951] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5045), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, - aux_sym__val_number_decimal_token4, - STATE(2645), 1, + STATE(2670), 1, sym_comment, - STATE(3778), 1, - sym__val_number_decimal, - STATE(6644), 1, - sym_cmd_identifier, - STATE(6645), 1, - sym_val_string, - STATE(7176), 1, - sym__command_name, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5043), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(2091), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5104), 6, + ACTIONS(1044), 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(5106), 34, + ACTIONS(1046), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295389,44 +298329,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [70685] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4009), 1, - anon_sym_DQUOTE, - ACTIONS(4013), 1, - sym_raw_string_begin, - ACTIONS(5045), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - STATE(2646), 1, - sym_comment, - STATE(3762), 1, - sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, - sym_cmd_identifier, - STATE(7998), 1, - sym__command_name, - ACTIONS(4011), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4492), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5033), 6, + [75015] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2671), 1, + sym_comment, + ACTIONS(2478), 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(5035), 34, + ACTIONS(2480), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295461,92 +298389,219 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [70772] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4009), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, - ACTIONS(4013), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [75079] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2337), 1, sym_raw_string_begin, - ACTIONS(5045), 1, + ACTIONS(5699), 1, + sym__entry_separator, + STATE(2672), 2, + sym_comment, + aux_sym__multiple_types_repeat1, + ACTIONS(2332), 50, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5047), 1, aux_sym__val_number_decimal_token4, - STATE(2647), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [75145] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5704), 1, + anon_sym_RBRACK, + ACTIONS(5706), 1, + sym__entry_separator, + ACTIONS(5708), 1, + sym_raw_string_begin, + STATE(2672), 1, + aux_sym__multiple_types_repeat1, + STATE(2673), 1, sym_comment, - STATE(3762), 1, - sym__val_number_decimal, - STATE(4159), 1, - sym_val_string, - STATE(4195), 1, - sym_cmd_identifier, - STATE(7560), 1, - sym__command_name, - ACTIONS(4011), 2, + ACTIONS(5702), 49, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5043), 2, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [75215] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5706), 1, + sym__entry_separator, + ACTIONS(5708), 1, + sym_raw_string_begin, + ACTIONS(5710), 1, + anon_sym_RBRACK, + STATE(2672), 1, + aux_sym__multiple_types_repeat1, + STATE(2674), 1, + sym_comment, + ACTIONS(5702), 49, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4492), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5033), 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(5035), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [70859] = 4, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [75285] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2648), 1, + STATE(2675), 1, sym_comment, - ACTIONS(2492), 6, + ACTIONS(1002), 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(2494), 48, + ACTIONS(1004), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295584,8 +298639,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -295594,28 +298647,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [70924] = 8, + [75349] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5699), 1, + ACTIONS(5654), 1, anon_sym_DOT, - STATE(2649), 1, + STATE(2676), 1, sym_comment, - STATE(2736), 1, + STATE(2678), 1, aux_sym_cell_path_repeat1, - STATE(2851), 1, + STATE(2801), 1, sym_path, - STATE(2953), 1, - sym_cell_path, - ACTIONS(1907), 6, + ACTIONS(967), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(969), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [75419] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5712), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5714), 1, + aux_sym__immediate_decimal_token2, + STATE(2677), 1, + sym_comment, + ACTIONS(1739), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1741), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [75487] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5716), 1, + anon_sym_DOT, + STATE(2801), 1, + sym_path, + STATE(2678), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(971), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(973), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [75555] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2679), 1, + sym_comment, + ACTIONS(2347), 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(1911), 43, + ACTIONS(2349), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295650,31 +298883,550 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [75619] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2680), 1, + sym_comment, + ACTIONS(1573), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1575), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [75683] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2681), 1, + sym_comment, + ACTIONS(1585), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1587), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [75747] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2682), 1, + sym_comment, + ACTIONS(1681), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1683), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [75811] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5719), 1, + anon_sym_DOT_DOT2, + ACTIONS(5723), 1, + sym_filesize_unit, + ACTIONS(5725), 1, + sym_duration_unit, + ACTIONS(5727), 1, + aux_sym__unquoted_in_list_token2, + STATE(2683), 1, + sym_comment, + ACTIONS(5721), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1707), 16, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1719), 31, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [75885] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2684), 1, + sym_comment, + ACTIONS(1761), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1763), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [75949] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5729), 1, + anon_sym_DOT, + ACTIONS(5731), 1, + aux_sym__immediate_decimal_token2, + STATE(2685), 1, + sym_comment, + ACTIONS(1765), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1767), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [76017] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2686), 1, + sym_comment, + ACTIONS(1767), 5, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1765), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [76081] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1804), 1, + anon_sym_LPAREN2, + ACTIONS(1812), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5733), 1, + anon_sym_DOT_DOT2, + STATE(2687), 1, + sym_comment, + ACTIONS(1810), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5735), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1802), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [70996] = 6, - ACTIONS(247), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [76153] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5701), 1, - sym__newline, - STATE(2650), 1, + STATE(2688), 1, sym_comment, - ACTIONS(5704), 2, + ACTIONS(1741), 5, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1739), 48, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(1290), 15, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295683,19 +299435,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1288), 35, + aux_sym__unquoted_in_list_token2, + [76217] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2689), 1, + sym_comment, + ACTIONS(1787), 5, sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1785), 48, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -295705,13 +299480,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -295720,19 +299503,20 @@ 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, - [71064] = 5, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [76281] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5706), 1, - anon_sym_QMARK2, - STATE(2651), 1, + STATE(2690), 1, sym_comment, - ACTIONS(980), 4, + ACTIONS(1843), 5, sym_raw_string_begin, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(978), 48, + ACTIONS(1841), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -295741,7 +299525,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -295781,19 +299564,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [71130] = 5, + aux_sym__unquoted_in_list_token2, + [76345] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5708), 1, + ACTIONS(5737), 1, anon_sym_QMARK2, - STATE(2652), 1, + STATE(2691), 1, sym_comment, - ACTIONS(986), 4, + ACTIONS(980), 4, sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(984), 48, + ACTIONS(978), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -295842,32 +299626,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [71196] = 7, + [76411] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5712), 1, - anon_sym_RBRACK, - ACTIONS(5714), 1, - sym__entry_separator, - ACTIONS(5716), 1, - sym_raw_string_begin, - STATE(2653), 1, + ACTIONS(5739), 1, + anon_sym_QMARK2, + STATE(2692), 1, sym_comment, - STATE(2656), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5710), 49, + ACTIONS(986), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(984), 48, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -295885,9 +299670,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295905,99 +299687,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [71266] = 31, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, + [76477] = 33, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3313), 1, - aux_sym_unquoted_token1, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(3997), 1, + ACTIONS(2574), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2576), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3095), 1, + anon_sym_LPAREN, + ACTIONS(3097), 1, + anon_sym_DOLLAR, + ACTIONS(3109), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3999), 1, + ACTIONS(3111), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4001), 1, + ACTIONS(3113), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4003), 1, + ACTIONS(3115), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4009), 1, + ACTIONS(3121), 1, + anon_sym_0b, + ACTIONS(3127), 1, anon_sym_DQUOTE, - ACTIONS(4013), 1, + ACTIONS(3133), 1, sym_raw_string_begin, - ACTIONS(4213), 1, - anon_sym_DOLLAR, - ACTIONS(4215), 1, + ACTIONS(3137), 1, + anon_sym_LBRACK, + ACTIONS(5741), 1, + anon_sym_LBRACE, + ACTIONS(5743), 1, anon_sym_DOT_DOT, - ACTIONS(5718), 1, - anon_sym_LPAREN, - ACTIONS(5722), 1, + ACTIONS(5747), 1, + anon_sym_null, + ACTIONS(5751), 1, sym_val_date, - STATE(2131), 1, - sym__inter_single_quotes, - STATE(2132), 1, - sym__inter_double_quotes, - STATE(2654), 1, + STATE(2693), 1, sym_comment, - STATE(5906), 1, + STATE(5655), 1, sym__val_number_decimal, - STATE(6715), 1, - sym_unquoted, - STATE(7572), 1, - sym__val_range, - STATE(7585), 1, - sym__unquoted_anonymous_prefix, - STATE(8000), 1, - sym_val_bool, - ACTIONS(3995), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4011), 2, + STATE(5790), 1, + sym_val_variable, + STATE(6083), 1, + sym_expr_parenthesized, + STATE(6878), 1, + sym__val_number, + STATE(7238), 1, + sym__inter_single_quotes, + STATE(7239), 1, + sym__inter_double_quotes, + STATE(7538), 1, + sym_block, + ACTIONS(3123), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3129), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4217), 2, + ACTIONS(5745), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(4492), 2, + ACTIONS(5749), 2, + anon_sym_true, + anon_sym_false, + STATE(5625), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5720), 3, + STATE(7541), 2, + sym_val_range, + sym__value, + ACTIONS(3117), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6714), 4, - sym_expr_parenthesized, - sym_val_variable, + STATE(7142), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, sym_val_string, sym_val_interpolated, - ACTIONS(2663), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2665), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [71384] = 33, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [76599] = 33, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2584), 1, + ACTIONS(2574), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2586), 1, + ACTIONS(2576), 1, anon_sym_DOLLAR_DQUOTE, ACTIONS(3095), 1, anon_sym_LPAREN, @@ -296017,31 +299801,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(3133), 1, sym_raw_string_begin, - ACTIONS(3141), 1, + ACTIONS(3137), 1, anon_sym_LBRACK, - ACTIONS(5724), 1, + ACTIONS(5741), 1, anon_sym_LBRACE, - ACTIONS(5726), 1, + ACTIONS(5743), 1, anon_sym_DOT_DOT, - ACTIONS(5730), 1, + ACTIONS(5747), 1, anon_sym_null, - ACTIONS(5734), 1, + ACTIONS(5751), 1, sym_val_date, - STATE(2655), 1, + STATE(2694), 1, sym_comment, - STATE(5676), 1, + STATE(5655), 1, sym__val_number_decimal, - STATE(5989), 1, + STATE(5790), 1, sym_val_variable, - STATE(6139), 1, + STATE(6085), 1, sym_expr_parenthesized, - STATE(7020), 1, + STATE(6878), 1, + sym__val_number, + STATE(7238), 1, sym__inter_single_quotes, - STATE(7027), 1, + STATE(7239), 1, sym__inter_double_quotes, - STATE(7130), 1, - sym__val_number, - STATE(7391), 1, + STATE(7542), 1, sym_block, ACTIONS(3123), 2, anon_sym_0o, @@ -296049,16 +299833,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3129), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5728), 2, + ACTIONS(5745), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5732), 2, + ACTIONS(5749), 2, anon_sym_true, anon_sym_false, - STATE(5497), 2, + STATE(5625), 2, sym__raw_str, sym__str_double_quotes, - STATE(7398), 2, + STATE(7544), 2, sym_val_range, sym__value, ACTIONS(3117), 6, @@ -296068,7 +299852,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(7097), 12, + STATE(7142), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -296081,30 +299865,32 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [71506] = 5, + [76721] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2325), 1, + STATE(2695), 1, + sym_comment, + ACTIONS(992), 4, sym_raw_string_begin, - ACTIONS(5736), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - STATE(2656), 2, - sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2320), 50, + ACTIONS(990), 49, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -296122,9 +299908,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -296142,92 +299925,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [71572] = 4, - ACTIONS(247), 1, + [76785] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2657), 1, + STATE(2696), 1, sym_comment, - ACTIONS(5679), 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(5681), 47, + ACTIONS(996), 4, sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [71636] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5714), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(5716), 1, - sym_raw_string_begin, - ACTIONS(5739), 1, - anon_sym_RBRACK, - STATE(2656), 1, - aux_sym__multiple_types_repeat1, - STATE(2658), 1, - sym_comment, - ACTIONS(5710), 49, + ACTIONS(994), 49, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -296245,9 +299968,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -296265,33 +299985,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [71706] = 10, + [76849] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5743), 1, - anon_sym_RBRACK, - ACTIONS(5746), 1, - anon_sym_DOT, - ACTIONS(5748), 1, - sym_raw_string_begin, - STATE(2659), 1, + STATE(2697), 1, sym_comment, - STATE(5931), 1, - aux_sym_cell_path_repeat1, - STATE(6532), 1, - sym_path, - STATE(7072), 1, - sym_cell_path, - ACTIONS(1976), 2, + ACTIONS(1000), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - sym__table_head_separator, - ACTIONS(5741), 45, + ACTIONS(998), 49, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -296331,17 +300045,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [71782] = 4, + [76913] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2660), 1, + STATE(2698), 1, sym_comment, - ACTIONS(996), 4, + ACTIONS(1004), 4, sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(994), 49, + ACTIONS(1002), 49, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -296391,17 +300105,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [71846] = 4, + [76977] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2661), 1, + ACTIONS(5753), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5755), 1, + aux_sym__immediate_decimal_token2, + STATE(2699), 1, sym_comment, - ACTIONS(1000), 4, + ACTIONS(1741), 4, sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(998), 49, + ACTIONS(1739), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -296409,9 +300127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_QMARK2, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -296451,21 +300167,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [71910] = 4, + [77045] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2662), 1, + ACTIONS(5757), 1, + anon_sym_DOT, + STATE(2700), 1, sym_comment, - ACTIONS(5683), 6, + STATE(2792), 1, + aux_sym_cell_path_repeat1, + STATE(2911), 1, + sym_path, + STATE(2968), 1, + sym_cell_path, + ACTIONS(1867), 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(5685), 47, + ACTIONS(1869), 43, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296500,10 +300223,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -296511,140 +300231,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [71974] = 4, + [77117] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2663), 1, - sym_comment, - ACTIONS(1004), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1002), 49, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, + ACTIONS(5759), 1, anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [72038] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5714), 1, - sym__entry_separator, - ACTIONS(5716), 1, - sym_raw_string_begin, - ACTIONS(5750), 1, - anon_sym_RBRACK, - STATE(2656), 1, - aux_sym__multiple_types_repeat1, - STATE(2664), 1, - sym_comment, - ACTIONS(5710), 49, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [72108] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2665), 1, + ACTIONS(5761), 1, + aux_sym__immediate_decimal_token2, + STATE(2701), 1, sym_comment, - ACTIONS(992), 4, + ACTIONS(1767), 4, sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(990), 49, + ACTIONS(1765), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -296652,9 +300253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_QMARK2, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -296694,19 +300293,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [72172] = 4, + [77185] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2666), 1, + STATE(2702), 1, sym_comment, - ACTIONS(5687), 6, + ACTIONS(5064), 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(5689), 47, + ACTIONS(5062), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -296754,19 +300353,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [72236] = 4, + [77249] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2667), 1, + STATE(2703), 1, sym_comment, - ACTIONS(5691), 6, + ACTIONS(2464), 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(5693), 47, + ACTIONS(2466), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -296814,139 +300413,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [72300] = 4, - ACTIONS(247), 1, + [77313] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2668), 1, - sym_comment, - ACTIONS(2347), 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(2349), 47, + ACTIONS(5706), 1, + sym__entry_separator, + ACTIONS(5708), 1, sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [72364] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2669), 1, + ACTIONS(5763), 1, + anon_sym_RBRACK, + STATE(2672), 1, + aux_sym__multiple_types_repeat1, + STATE(2704), 1, sym_comment, - ACTIONS(5695), 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(5697), 47, - sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, + ACTIONS(5702), 49, anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [72428] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [77383] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2670), 1, + STATE(2705), 1, sym_comment, - ACTIONS(994), 6, + ACTIONS(2464), 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(996), 47, + ACTIONS(2466), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -296994,228 +300536,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [72492] = 33, + [77447] = 30, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2584), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2586), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3095), 1, - anon_sym_LPAREN, - ACTIONS(3097), 1, - anon_sym_DOLLAR, - ACTIONS(3109), 1, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(3989), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3111), 1, + ACTIONS(3991), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3113), 1, + ACTIONS(3993), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3115), 1, + ACTIONS(3995), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3121), 1, - anon_sym_0b, - ACTIONS(3127), 1, + ACTIONS(5628), 1, anon_sym_DQUOTE, - ACTIONS(3133), 1, + ACTIONS(5632), 1, sym_raw_string_begin, - ACTIONS(3141), 1, - anon_sym_LBRACK, - ACTIONS(5724), 1, - anon_sym_LBRACE, - ACTIONS(5726), 1, + ACTIONS(5765), 1, + anon_sym_LPAREN, + ACTIONS(5767), 1, + anon_sym_DOLLAR, + ACTIONS(5769), 1, anon_sym_DOT_DOT, - ACTIONS(5730), 1, - anon_sym_null, - ACTIONS(5734), 1, + ACTIONS(5775), 1, sym_val_date, - STATE(2671), 1, - sym_comment, - STATE(5676), 1, - sym__val_number_decimal, - STATE(5989), 1, - sym_val_variable, - STATE(6146), 1, - sym_expr_parenthesized, - STATE(7020), 1, + ACTIONS(5777), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5779), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5781), 1, + aux_sym_unquoted_token1, + STATE(2620), 1, sym__inter_single_quotes, - STATE(7027), 1, + STATE(2621), 1, sym__inter_double_quotes, - STATE(7130), 1, - sym__val_number, - STATE(7425), 1, - sym_block, - ACTIONS(3123), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3129), 2, + STATE(2706), 1, + sym_comment, + STATE(5733), 1, + sym__val_number_decimal, + STATE(7726), 1, + sym__val_range, + STATE(7734), 1, + sym__unquoted_anonymous_prefix, + STATE(7802), 1, + sym_val_bool, + ACTIONS(3987), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5630), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5728), 2, + ACTIONS(5771), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5732), 2, - anon_sym_true, - anon_sym_false, - STATE(5497), 2, + STATE(2628), 2, sym__raw_str, sym__str_double_quotes, - STATE(7454), 2, - sym_val_range, - sym__value, - ACTIONS(3117), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + ACTIONS(5773), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(7097), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, + STATE(1726), 5, + sym_expr_parenthesized, + sym_val_variable, sym_val_string, sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [72614] = 4, + sym_unquoted, + ACTIONS(2671), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2673), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [77563] = 31, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - STATE(2672), 1, - sym_comment, - ACTIONS(2347), 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(2349), 47, - sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + ACTIONS(3313), 1, + aux_sym_unquoted_token1, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(3989), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3991), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3993), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3995), 1, aux_sym__val_number_decimal_token4, + ACTIONS(4001), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [72678] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2673), 1, - sym_comment, - ACTIONS(5651), 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(5653), 47, + ACTIONS(4005), 1, sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + ACTIONS(4331), 1, + anon_sym_DOT_DOT, + ACTIONS(4455), 1, + anon_sym_DOLLAR, + ACTIONS(5775), 1, + sym_val_date, + ACTIONS(5783), 1, + anon_sym_LPAREN, + STATE(2171), 1, + sym__inter_single_quotes, + STATE(2172), 1, + sym__inter_double_quotes, + STATE(2707), 1, + sym_comment, + STATE(5795), 1, + sym__val_number_decimal, + STATE(6351), 1, + sym_unquoted, + STATE(7802), 1, + sym_val_bool, + STATE(7906), 1, + sym__val_range, + STATE(7913), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3987), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4003), 2, sym__str_single_quotes, sym__str_back_ticks, - [72742] = 4, + ACTIONS(4333), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(4332), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5785), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6349), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2671), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2673), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [77681] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2674), 1, + STATE(2708), 1, sym_comment, - ACTIONS(5655), 6, + ACTIONS(2052), 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(5657), 47, + ACTIONS(2054), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -297263,28 +300769,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [72806] = 8, + [77745] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5706), 1, + sym__entry_separator, + ACTIONS(5708), 1, + sym_raw_string_begin, + ACTIONS(5787), 1, + anon_sym_RBRACK, + STATE(2672), 1, + aux_sym__multiple_types_repeat1, + STATE(2709), 1, + sym_comment, + ACTIONS(5702), 49, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [77815] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5699), 1, - anon_sym_DOT, - STATE(2675), 1, + STATE(2710), 1, sym_comment, - STATE(2736), 1, - aux_sym_cell_path_repeat1, - STATE(2851), 1, - sym_path, - STATE(2927), 1, - sym_cell_path, - ACTIONS(2082), 6, + ACTIONS(5656), 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(2084), 43, + ACTIONS(5658), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297319,7 +300881,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -297327,21 +300892,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [72878] = 4, + [77879] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2676), 1, + ACTIONS(5757), 1, + anon_sym_DOT, + STATE(2711), 1, sym_comment, - ACTIONS(2125), 6, + STATE(2792), 1, + aux_sym_cell_path_repeat1, + STATE(2911), 1, + sym_path, + STATE(2959), 1, + sym_cell_path, + ACTIONS(1907), 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(2127), 47, + ACTIONS(1909), 43, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297376,99 +300948,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [72942] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2677), 1, - sym_comment, - ACTIONS(1607), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1609), 35, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [73006] = 8, + [77951] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5699), 1, - anon_sym_DOT, - STATE(2678), 1, + STATE(2712), 1, sym_comment, - STATE(2736), 1, - aux_sym_cell_path_repeat1, - STATE(2851), 1, - sym_path, - STATE(2932), 1, - sym_cell_path, - ACTIONS(2090), 6, + ACTIONS(5660), 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(2092), 43, + ACTIONS(5662), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297503,7 +301005,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -297511,51 +301016,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73078] = 6, - ACTIONS(3), 1, + [78015] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5752), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5754), 1, - aux_sym__immediate_decimal_token2, - STATE(2679), 1, + ACTIONS(5789), 1, + sym__newline, + STATE(2713), 1, sym_comment, - ACTIONS(1741), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1739), 47, - anon_sym_LBRACK, + ACTIONS(5792), 2, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_COMMA, + ACTIONS(1290), 15, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -297564,46 +301041,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [73146] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1880), 1, - anon_sym_LPAREN2, - ACTIONS(1888), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5756), 1, - anon_sym_DOT_DOT2, - STATE(2680), 1, - sym_comment, - ACTIONS(1886), 2, + ACTIONS(1288), 35, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5758), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1878), 46, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -297613,21 +301063,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -297636,22 +301078,28 @@ 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, - aux_sym__unquoted_in_list_token1, - [73218] = 4, + [78083] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2681), 1, + ACTIONS(5757), 1, + anon_sym_DOT, + STATE(2714), 1, sym_comment, - ACTIONS(2492), 6, + STATE(2792), 1, + aux_sym_cell_path_repeat1, + STATE(2911), 1, + sym_path, + STATE(2986), 1, + sym_cell_path, + ACTIONS(1847), 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(2494), 47, + ACTIONS(1851), 43, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297686,10 +301134,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -297697,19 +301142,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73282] = 4, + [78155] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2682), 1, + STATE(2715), 1, sym_comment, - ACTIONS(2508), 6, + ACTIONS(5679), 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(2510), 47, + ACTIONS(5681), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -297757,19 +301202,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73346] = 4, + [78219] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2683), 1, + STATE(2716), 1, sym_comment, - ACTIONS(998), 6, + ACTIONS(5687), 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(1000), 47, + ACTIONS(5689), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -297817,19 +301262,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73410] = 4, + [78283] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2684), 1, + STATE(2717), 1, sym_comment, - ACTIONS(1002), 6, + ACTIONS(2486), 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(1004), 47, + ACTIONS(2488), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -297877,28 +301322,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73474] = 8, + [78347] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5699), 1, - anon_sym_DOT, - STATE(2685), 1, + STATE(2718), 1, sym_comment, - STATE(2736), 1, - aux_sym_cell_path_repeat1, - STATE(2851), 1, - sym_path, - STATE(2937), 1, - sym_cell_path, - ACTIONS(1925), 6, + ACTIONS(2510), 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(1927), 43, + ACTIONS(2512), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297933,7 +301371,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -297941,19 +301382,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73546] = 4, + [78411] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2686), 1, + STATE(2719), 1, sym_comment, - ACTIONS(1018), 6, + ACTIONS(5691), 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(1020), 47, + ACTIONS(5693), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -298001,21 +301442,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73610] = 4, + [78475] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2687), 1, + ACTIONS(5757), 1, + anon_sym_DOT, + STATE(2720), 1, sym_comment, - ACTIONS(990), 6, + STATE(2792), 1, + aux_sym_cell_path_repeat1, + STATE(2911), 1, + sym_path, + STATE(2995), 1, + sym_cell_path, + ACTIONS(1859), 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(992), 47, + ACTIONS(1861), 43, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298050,10 +301498,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -298061,29 +301506,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73674] = 6, + [78547] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5760), 1, + ACTIONS(5796), 1, + anon_sym_RBRACK, + ACTIONS(5799), 1, anon_sym_DOT, - ACTIONS(5762), 1, - aux_sym__immediate_decimal_token2, - STATE(2688), 1, - sym_comment, - ACTIONS(1757), 4, + ACTIONS(5801), 1, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + STATE(2721), 1, + sym_comment, + STATE(5764), 1, + aux_sym_cell_path_repeat1, + STATE(6319), 1, + sym_path, + STATE(7006), 1, + sym_cell_path, + ACTIONS(1867), 2, sym__entry_separator, - ACTIONS(1755), 47, + sym__table_head_separator, + ACTIONS(5794), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -298123,19 +301572,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [73742] = 4, + [78623] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2689), 1, + STATE(2722), 1, sym_comment, - ACTIONS(5022), 6, + ACTIONS(990), 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(5020), 47, + ACTIONS(992), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -298183,292 +301632,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73806] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2690), 1, - sym_comment, - ACTIONS(1621), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1623), 35, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [73870] = 4, + [78687] = 30, ACTIONS(247), 1, anon_sym_POUND, - STATE(2691), 1, - sym_comment, - ACTIONS(2468), 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(2470), 47, - sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(3989), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3991), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3993), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3995), 1, aux_sym__val_number_decimal_token4, + ACTIONS(5628), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [73934] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2692), 1, - sym_comment, - ACTIONS(1673), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1675), 35, + ACTIONS(5632), 1, sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5765), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5767), 1, anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, + ACTIONS(5769), 1, + anon_sym_DOT_DOT, + ACTIONS(5775), 1, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [73998] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2693), 1, + ACTIONS(5777), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5779), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5781), 1, + aux_sym_unquoted_token1, + STATE(2620), 1, + sym__inter_single_quotes, + STATE(2621), 1, + sym__inter_double_quotes, + STATE(2723), 1, sym_comment, - ACTIONS(2464), 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(2466), 47, - sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(5733), 1, + sym__val_number_decimal, + STATE(7726), 1, + sym__val_range, + STATE(7734), 1, + sym__unquoted_anonymous_prefix, + STATE(7802), 1, + sym_val_bool, + ACTIONS(3987), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5630), 2, sym__str_single_quotes, sym__str_back_ticks, - [74062] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5714), 1, - sym__entry_separator, - ACTIONS(5716), 1, - sym_raw_string_begin, - ACTIONS(5764), 1, - anon_sym_RBRACK, - STATE(2656), 1, - aux_sym__multiple_types_repeat1, - STATE(2694), 1, - sym_comment, - ACTIONS(5710), 49, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, + ACTIONS(5771), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + STATE(2628), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5773), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, + STATE(1726), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2671), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -298477,6 +301708,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2673), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -298485,8 +301718,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, - aux_sym__unquoted_in_list_token1, - [74132] = 31, + [78803] = 31, ACTIONS(239), 1, anon_sym_DOLLAR_SQUOTE, ACTIONS(241), 1, @@ -298497,64 +301729,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_unquoted_token1, ACTIONS(3365), 1, aux_sym_record_entry_token1, - ACTIONS(3997), 1, + ACTIONS(3989), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3999), 1, + ACTIONS(3991), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4001), 1, + ACTIONS(3993), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4003), 1, + ACTIONS(3995), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_DQUOTE, - ACTIONS(4013), 1, + ACTIONS(4005), 1, sym_raw_string_begin, - ACTIONS(4213), 1, - anon_sym_DOLLAR, - ACTIONS(4215), 1, + ACTIONS(4331), 1, anon_sym_DOT_DOT, - ACTIONS(5718), 1, - anon_sym_LPAREN, - ACTIONS(5722), 1, + ACTIONS(4455), 1, + anon_sym_DOLLAR, + ACTIONS(5775), 1, sym_val_date, - STATE(2131), 1, + ACTIONS(5783), 1, + anon_sym_LPAREN, + STATE(2171), 1, sym__inter_single_quotes, - STATE(2132), 1, + STATE(2172), 1, sym__inter_double_quotes, - STATE(2695), 1, + STATE(2724), 1, sym_comment, - STATE(5906), 1, + STATE(5795), 1, sym__val_number_decimal, - STATE(6715), 1, + STATE(6351), 1, sym_unquoted, - STATE(7572), 1, + STATE(7802), 1, + sym_val_bool, + STATE(7906), 1, sym__val_range, - STATE(7585), 1, + STATE(7913), 1, sym__unquoted_anonymous_prefix, - STATE(8000), 1, - sym_val_bool, - ACTIONS(3995), 2, + ACTIONS(3987), 2, anon_sym_true, anon_sym_false, - ACTIONS(4011), 2, + ACTIONS(4003), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4217), 2, + ACTIONS(4333), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(4492), 2, + STATE(4332), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5720), 3, + ACTIONS(5785), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6714), 4, + STATE(6349), 4, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - ACTIONS(2663), 8, + ACTIONS(2671), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -298563,7 +301795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2665), 9, + ACTIONS(2673), 9, anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -298573,27 +301805,27 @@ 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, - [74250] = 8, + [78921] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5699), 1, + ACTIONS(5757), 1, anon_sym_DOT, - STATE(2696), 1, + STATE(2725), 1, sym_comment, - STATE(2736), 1, + STATE(2792), 1, aux_sym_cell_path_repeat1, - STATE(2851), 1, + STATE(2911), 1, sym_path, - STATE(2938), 1, + STATE(2936), 1, sym_cell_path, - ACTIONS(1933), 6, + ACTIONS(1863), 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(1935), 43, + ACTIONS(1865), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -298637,28 +301869,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [74322] = 8, + [78993] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5699), 1, - anon_sym_DOT, - STATE(2697), 1, + STATE(2726), 1, sym_comment, - STATE(2736), 1, - aux_sym_cell_path_repeat1, - STATE(2851), 1, - sym_path, - STATE(2939), 1, - sym_cell_path, - ACTIONS(1944), 6, + ACTIONS(5683), 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(1946), 43, + ACTIONS(5685), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298693,100 +301918,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [74394] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1868), 1, - anon_sym_LPAREN2, - ACTIONS(5766), 1, - anon_sym_DOT_DOT2, - STATE(2698), 1, - sym_comment, - ACTIONS(1874), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5768), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1866), 46, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [74466] = 8, + [79057] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5699), 1, - anon_sym_DOT, - STATE(2699), 1, + STATE(2727), 1, sym_comment, - STATE(2736), 1, - aux_sym_cell_path_repeat1, - STATE(2851), 1, - sym_path, - STATE(2964), 1, - sym_cell_path, - ACTIONS(961), 6, + ACTIONS(5650), 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(963), 43, + ACTIONS(5652), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298821,7 +301978,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -298829,27 +301989,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [74538] = 8, + [79121] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5699), 1, + ACTIONS(5757), 1, anon_sym_DOT, - STATE(2700), 1, + STATE(2728), 1, sym_comment, - STATE(2736), 1, + STATE(2792), 1, aux_sym_cell_path_repeat1, - STATE(2851), 1, + STATE(2911), 1, sym_path, - STATE(2940), 1, + STATE(2942), 1, sym_cell_path, - ACTIONS(1948), 6, + ACTIONS(1871), 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(1950), 43, + ACTIONS(1873), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -298893,27 +302053,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [74610] = 8, + [79193] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5699), 1, + ACTIONS(5757), 1, anon_sym_DOT, - STATE(2701), 1, + STATE(2729), 1, sym_comment, - STATE(2736), 1, + STATE(2792), 1, aux_sym_cell_path_repeat1, - STATE(2851), 1, + STATE(2911), 1, sym_path, - STATE(2941), 1, + STATE(2976), 1, sym_cell_path, - ACTIONS(1952), 6, + ACTIONS(961), 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(1954), 43, + ACTIONS(963), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -298957,209 +302117,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [74682] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2702), 1, - sym_comment, - ACTIONS(1763), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1765), 35, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [74746] = 6, + [79265] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5770), 1, - anon_sym_DOT, - ACTIONS(5772), 1, - aux_sym__immediate_decimal_token2, - STATE(2703), 1, - sym_comment, - ACTIONS(1755), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1757), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [74814] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2704), 1, + STATE(2730), 1, sym_comment, - ACTIONS(1757), 5, + ACTIONS(994), 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(996), 47, sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1755), 48, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [74878] = 8, + [79329] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5699), 1, + ACTIONS(5757), 1, anon_sym_DOT, - STATE(2705), 1, + STATE(2731), 1, sym_comment, - STATE(2736), 1, + STATE(2792), 1, aux_sym_cell_path_repeat1, - STATE(2851), 1, + STATE(2911), 1, sym_path, - STATE(2942), 1, + STATE(2943), 1, sym_cell_path, - ACTIONS(1960), 6, + ACTIONS(1879), 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(1962), 43, + ACTIONS(1881), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -299203,27 +302241,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [74950] = 8, + [79401] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5699), 1, + ACTIONS(5757), 1, anon_sym_DOT, - STATE(2706), 1, + STATE(2732), 1, sym_comment, - STATE(2736), 1, + STATE(2792), 1, aux_sym_cell_path_repeat1, - STATE(2851), 1, + STATE(2911), 1, sym_path, - STATE(2943), 1, + STATE(2944), 1, sym_cell_path, - ACTIONS(1968), 6, + ACTIONS(1883), 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(1970), 43, + ACTIONS(1885), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -299267,27 +302305,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75022] = 8, + [79473] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5699), 1, + ACTIONS(5757), 1, anon_sym_DOT, - STATE(2707), 1, + STATE(2733), 1, sym_comment, - STATE(2736), 1, + STATE(2792), 1, aux_sym_cell_path_repeat1, - STATE(2851), 1, + STATE(2911), 1, sym_path, - STATE(2944), 1, + STATE(2945), 1, sym_cell_path, - ACTIONS(1972), 6, + ACTIONS(1887), 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(1974), 43, + ACTIONS(1889), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -299331,27 +302369,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75094] = 8, + [79545] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5699), 1, + ACTIONS(5757), 1, anon_sym_DOT, - STATE(2708), 1, + STATE(2734), 1, sym_comment, - STATE(2736), 1, + STATE(2792), 1, aux_sym_cell_path_repeat1, - STATE(2851), 1, + STATE(2911), 1, sym_path, - STATE(2945), 1, + STATE(2946), 1, sym_cell_path, - ACTIONS(1984), 6, + ACTIONS(1891), 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(1986), 43, + ACTIONS(1893), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -299395,27 +302433,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75166] = 8, + [79617] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5699), 1, + ACTIONS(5757), 1, anon_sym_DOT, - STATE(2709), 1, + STATE(2735), 1, sym_comment, - STATE(2736), 1, + STATE(2792), 1, aux_sym_cell_path_repeat1, - STATE(2851), 1, + STATE(2911), 1, sym_path, - STATE(2946), 1, + STATE(2947), 1, sym_cell_path, - ACTIONS(1988), 6, + ACTIONS(1895), 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(1990), 43, + ACTIONS(1897), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -299459,21 +302497,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75238] = 4, + [79689] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2710), 1, + ACTIONS(5757), 1, + anon_sym_DOT, + STATE(2736), 1, sym_comment, - ACTIONS(5088), 6, + STATE(2792), 1, + aux_sym_cell_path_repeat1, + STATE(2911), 1, + sym_path, + STATE(2948), 1, + sym_cell_path, + ACTIONS(1911), 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(5086), 47, + ACTIONS(1913), 43, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299508,10 +302553,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -299519,90 +302561,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75302] = 7, + [79761] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5642), 1, + ACTIONS(5757), 1, anon_sym_DOT, - STATE(2711), 1, - sym_comment, - STATE(2725), 1, - aux_sym_cell_path_repeat1, - STATE(2796), 1, - sym_path, - ACTIONS(967), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(969), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [75372] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5699), 1, - anon_sym_DOT, - STATE(2712), 1, + STATE(2737), 1, sym_comment, - STATE(2736), 1, + STATE(2792), 1, aux_sym_cell_path_repeat1, - STATE(2851), 1, + STATE(2911), 1, sym_path, - STATE(2947), 1, + STATE(2949), 1, sym_cell_path, - ACTIONS(1992), 6, + ACTIONS(1915), 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(1994), 43, + ACTIONS(1917), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -299646,27 +302625,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75444] = 8, + [79833] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5699), 1, + ACTIONS(5757), 1, anon_sym_DOT, - STATE(2713), 1, + STATE(2738), 1, sym_comment, - STATE(2736), 1, + STATE(2792), 1, aux_sym_cell_path_repeat1, - STATE(2851), 1, + STATE(2911), 1, sym_path, - STATE(2948), 1, + STATE(2950), 1, sym_cell_path, - ACTIONS(1996), 6, + ACTIONS(1919), 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(1998), 43, + ACTIONS(1921), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -299710,27 +302689,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75516] = 8, + [79905] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5699), 1, + ACTIONS(5757), 1, anon_sym_DOT, - STATE(2714), 1, + STATE(2739), 1, sym_comment, - STATE(2736), 1, + STATE(2792), 1, aux_sym_cell_path_repeat1, - STATE(2851), 1, + STATE(2911), 1, sym_path, - STATE(2949), 1, + STATE(2951), 1, sym_cell_path, - ACTIONS(2000), 6, + ACTIONS(1927), 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(2002), 43, + ACTIONS(1929), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -299774,27 +302753,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75588] = 8, + [79977] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5699), 1, + ACTIONS(5757), 1, anon_sym_DOT, - STATE(2715), 1, + STATE(2740), 1, sym_comment, - STATE(2736), 1, + STATE(2792), 1, aux_sym_cell_path_repeat1, - STATE(2851), 1, + STATE(2911), 1, sym_path, - STATE(2950), 1, + STATE(2952), 1, sym_cell_path, - ACTIONS(2004), 6, + ACTIONS(1942), 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(2006), 43, + ACTIONS(1944), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -299838,27 +302817,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75660] = 8, + [80049] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5699), 1, + ACTIONS(5757), 1, anon_sym_DOT, - STATE(2716), 1, + STATE(2741), 1, sym_comment, - STATE(2736), 1, + STATE(2792), 1, aux_sym_cell_path_repeat1, - STATE(2851), 1, + STATE(2911), 1, sym_path, - STATE(2951), 1, + STATE(2953), 1, sym_cell_path, - ACTIONS(2068), 6, + ACTIONS(2026), 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(2070), 43, + ACTIONS(2028), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -299902,27 +302881,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75732] = 8, + [80121] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5699), 1, + ACTIONS(5757), 1, anon_sym_DOT, - STATE(2717), 1, + STATE(2742), 1, sym_comment, - STATE(2736), 1, + STATE(2792), 1, aux_sym_cell_path_repeat1, - STATE(2851), 1, + STATE(2911), 1, sym_path, - STATE(2952), 1, + STATE(2928), 1, sym_cell_path, - ACTIONS(2072), 6, + ACTIONS(2030), 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(2074), 43, + ACTIONS(2032), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -299966,87 +302945,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75804] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2718), 1, - sym_comment, - ACTIONS(1741), 5, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1739), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [75868] = 8, + [80193] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5699), 1, + ACTIONS(5757), 1, anon_sym_DOT, - STATE(2719), 1, + STATE(2743), 1, sym_comment, - STATE(2736), 1, + STATE(2792), 1, aux_sym_cell_path_repeat1, - STATE(2851), 1, + STATE(2911), 1, sym_path, - STATE(2954), 1, + STATE(2955), 1, sym_cell_path, - ACTIONS(1913), 6, + ACTIONS(2034), 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(1915), 43, + ACTIONS(2036), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -300090,89 +303009,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75940] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5774), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5776), 1, - aux_sym__immediate_decimal_token2, - STATE(2720), 1, - sym_comment, - ACTIONS(1739), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1741), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [76008] = 8, + [80265] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5699), 1, + ACTIONS(5757), 1, anon_sym_DOT, - STATE(2721), 1, + STATE(2744), 1, sym_comment, - STATE(2736), 1, + STATE(2792), 1, aux_sym_cell_path_repeat1, - STATE(2851), 1, + STATE(2911), 1, sym_path, - STATE(2962), 1, + STATE(2956), 1, sym_cell_path, - ACTIONS(1976), 6, + ACTIONS(2038), 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(1978), 43, + ACTIONS(2040), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -300216,81 +303073,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76080] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2722), 1, - sym_comment, - ACTIONS(1785), 5, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1783), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [76144] = 4, + [80337] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2723), 1, + ACTIONS(5757), 1, + anon_sym_DOT, + STATE(2745), 1, sym_comment, - ACTIONS(1735), 6, + STATE(2792), 1, + aux_sym_cell_path_repeat1, + STATE(2911), 1, + sym_path, + STATE(2957), 1, + sym_cell_path, + ACTIONS(1931), 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(1737), 47, + ACTIONS(1933), 43, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300325,312 +303129,93 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [76208] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2724), 1, - sym_comment, - ACTIONS(1892), 5, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1890), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [76272] = 6, + [80409] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5778), 1, + ACTIONS(5757), 1, anon_sym_DOT, - STATE(2796), 1, - sym_path, - STATE(2725), 2, + STATE(2746), 1, sym_comment, + STATE(2792), 1, aux_sym_cell_path_repeat1, - ACTIONS(971), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(973), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [76340] = 30, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(3997), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3999), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4001), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4003), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5622), 1, - anon_sym_DQUOTE, - ACTIONS(5626), 1, + STATE(2911), 1, + sym_path, + STATE(2958), 1, + sym_cell_path, + ACTIONS(1899), 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(1901), 43, sym_raw_string_begin, - ACTIONS(5722), 1, - sym_val_date, - ACTIONS(5781), 1, - anon_sym_LPAREN, - ACTIONS(5783), 1, - anon_sym_DOLLAR, - ACTIONS(5785), 1, - anon_sym_DOT_DOT, - ACTIONS(5791), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5793), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5795), 1, - aux_sym_unquoted_token1, - STATE(2612), 1, - sym__inter_single_quotes, - STATE(2613), 1, - sym__inter_double_quotes, - STATE(2726), 1, - sym_comment, - STATE(5804), 1, - sym__val_number_decimal, - STATE(7747), 1, - sym__val_range, - STATE(7753), 1, - sym__unquoted_anonymous_prefix, - STATE(8000), 1, - sym_val_bool, - ACTIONS(3995), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5624), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5787), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2643), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5789), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(1673), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2663), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2665), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [76456] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5797), 1, - anon_sym_DOT_DOT2, - ACTIONS(5801), 1, - sym_filesize_unit, - ACTIONS(5803), 1, - sym_duration_unit, - ACTIONS(5805), 1, - aux_sym__unquoted_in_list_token2, - STATE(2727), 1, - sym_comment, - ACTIONS(5799), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1709), 16, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1721), 31, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [76530] = 8, + [80481] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5699), 1, - anon_sym_DOT, - STATE(2728), 1, + STATE(2747), 1, sym_comment, - STATE(2736), 1, - aux_sym_cell_path_repeat1, - STATE(2851), 1, - sym_path, - STATE(2967), 1, - sym_cell_path, - ACTIONS(2094), 6, + ACTIONS(5054), 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(2096), 43, + ACTIONS(5052), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300665,7 +303250,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -300673,74 +303261,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76602] = 30, + [80545] = 30, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(113), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(115), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(121), 1, + sym_raw_string_begin, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(3997), 1, + ACTIONS(3391), 1, + aux_sym_unquoted_token1, + ACTIONS(3989), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3999), 1, + ACTIONS(3991), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4001), 1, + ACTIONS(3993), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4003), 1, + ACTIONS(3995), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5622), 1, - anon_sym_DQUOTE, - ACTIONS(5626), 1, - sym_raw_string_begin, - ACTIONS(5722), 1, + ACTIONS(5775), 1, sym_val_date, - ACTIONS(5781), 1, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(5783), 1, + ACTIONS(5805), 1, anon_sym_DOLLAR, - ACTIONS(5785), 1, + ACTIONS(5807), 1, anon_sym_DOT_DOT, - ACTIONS(5791), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5793), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5795), 1, - aux_sym_unquoted_token1, - STATE(2612), 1, + STATE(2537), 1, sym__inter_single_quotes, - STATE(2613), 1, + STATE(2538), 1, sym__inter_double_quotes, - STATE(2729), 1, + STATE(2748), 1, sym_comment, - STATE(5804), 1, + STATE(5736), 1, sym__val_number_decimal, - STATE(7747), 1, - sym__val_range, - STATE(7753), 1, - sym__unquoted_anonymous_prefix, - STATE(8000), 1, + STATE(7159), 1, + sym_unquoted, + STATE(7802), 1, sym_val_bool, - ACTIONS(3995), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5624), 2, + STATE(7808), 1, + sym__unquoted_anonymous_prefix, + STATE(8160), 1, + sym__val_range, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5787), 2, + ACTIONS(3987), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5809), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(2643), 2, + STATE(2093), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5789), 3, + ACTIONS(5811), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1673), 5, + STATE(7140), 4, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - sym_unquoted, - ACTIONS(2663), 8, + ACTIONS(2671), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -300749,7 +303336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2665), 9, + ACTIONS(2673), 9, anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -300759,23 +303346,17 @@ 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, - [76718] = 8, + [80660] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5807), 1, - anon_sym_DOT, - STATE(2730), 1, + STATE(2749), 1, sym_comment, - STATE(2833), 1, - aux_sym_cell_path_repeat1, - STATE(2960), 1, - sym_path, - STATE(3082), 1, - sym_cell_path, - ACTIONS(2074), 2, + ACTIONS(1008), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2072), 46, + ACTIONS(1006), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -300783,69 +303364,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [76789] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5807), 1, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(2731), 1, - sym_comment, - STATE(2833), 1, - aux_sym_cell_path_repeat1, - STATE(2960), 1, - sym_path, - STATE(3062), 1, - sym_cell_path, - ACTIONS(1994), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1992), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -300885,23 +303405,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [76860] = 8, + [80723] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5807), 1, - anon_sym_DOT, - STATE(2732), 1, + ACTIONS(5813), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5815), 1, + aux_sym__immediate_decimal_token2, + STATE(2750), 1, sym_comment, - STATE(2833), 1, - aux_sym_cell_path_repeat1, - STATE(2960), 1, - sym_path, - STATE(3069), 1, - sym_cell_path, - ACTIONS(1998), 2, + ACTIONS(1741), 3, sym_raw_string_begin, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1996), 46, + ACTIONS(1739), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -300948,23 +303465,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [76931] = 8, + aux_sym__unquoted_in_list_token2, + [80790] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5807), 1, - anon_sym_DOT, - STATE(2733), 1, + STATE(2751), 1, sym_comment, - STATE(2833), 1, - aux_sym_cell_path_repeat1, - STATE(2960), 1, - sym_path, - STATE(3072), 1, - sym_cell_path, - ACTIONS(2002), 2, + ACTIONS(1012), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2000), 46, + ACTIONS(1010), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -300972,69 +303484,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [77002] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5807), 1, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(2734), 1, - sym_comment, - STATE(2833), 1, - aux_sym_cell_path_repeat1, - STATE(2960), 1, - sym_path, - STATE(3077), 1, - sym_cell_path, - ACTIONS(2006), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2004), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -301074,23 +303525,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [77073] = 8, + [80853] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5807), 1, - anon_sym_DOT, - STATE(2735), 1, + STATE(2752), 1, sym_comment, - STATE(2833), 1, - aux_sym_cell_path_repeat1, - STATE(2960), 1, - sym_path, - STATE(3078), 1, - sym_cell_path, - ACTIONS(2070), 2, + ACTIONS(1016), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2068), 46, + ACTIONS(1014), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -301098,6 +303543,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -301137,25 +303584,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [77144] = 7, + [80916] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5699), 1, + ACTIONS(5817), 1, anon_sym_DOT, - STATE(2736), 1, + STATE(2911), 1, + sym_path, + STATE(2753), 2, sym_comment, - STATE(2742), 1, aux_sym_cell_path_repeat1, - STATE(2851), 1, - sym_path, - ACTIONS(967), 6, + ACTIONS(971), 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(969), 43, + ACTIONS(973), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -301199,36 +303645,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77213] = 8, - ACTIONS(3), 1, + [80983] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5807), 1, - anon_sym_DOT, - STATE(2737), 1, + ACTIONS(5820), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5822), 1, + aux_sym__immediate_decimal_token2, + STATE(2754), 1, sym_comment, - STATE(2833), 1, - aux_sym_cell_path_repeat1, - STATE(2960), 1, - sym_path, - STATE(3039), 1, - sym_cell_path, - ACTIONS(1911), 2, + ACTIONS(1739), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1741), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1907), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -301238,21 +303694,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -301261,53 +303706,22 @@ 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, - aux_sym__unquoted_in_list_token1, - [77284] = 8, - ACTIONS(3), 1, + [81050] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5807), 1, - anon_sym_DOT, - STATE(2738), 1, + ACTIONS(5731), 1, + aux_sym__immediate_decimal_token2, + STATE(2755), 1, sym_comment, - STATE(2833), 1, - aux_sym_cell_path_repeat1, - STATE(2960), 1, - sym_path, - STATE(3059), 1, - sym_cell_path, - ACTIONS(1915), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1913), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(1765), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -301316,47 +303730,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [77355] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2084), 1, - sym__entry_separator, - ACTIONS(5807), 1, - anon_sym_DOT, - ACTIONS(5811), 1, - anon_sym_RBRACK, - ACTIONS(5814), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1767), 33, sym_raw_string_begin, - STATE(2739), 1, - sym_comment, - STATE(2833), 1, - aux_sym_cell_path_repeat1, - STATE(2960), 1, - sym_path, - STATE(3003), 1, - sym_cell_path, - ACTIONS(5809), 45, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -301366,21 +303754,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -301389,19 +303766,17 @@ 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, - aux_sym__unquoted_in_list_token1, - [77430] = 5, + [81115] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5772), 1, - aux_sym__immediate_decimal_token2, - STATE(2740), 1, + ACTIONS(5824), 1, + sym__newline, + STATE(2756), 2, sym_comment, - ACTIONS(1755), 18, + aux_sym_shebang_repeat1, + ACTIONS(1294), 15, + anon_sym_DOLLAR, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -301415,20 +303790,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1757), 33, + ACTIONS(1296), 35, sym_raw_string_begin, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -301442,6 +303815,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -301450,30 +303826,35 @@ 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, - [77495] = 6, + [81180] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5714), 1, - sym__entry_separator, - ACTIONS(5716), 1, - sym_raw_string_begin, - STATE(2656), 1, - aux_sym__multiple_types_repeat1, - STATE(2741), 1, + ACTIONS(5827), 1, + anon_sym_DOT, + STATE(2757), 1, sym_comment, - ACTIONS(5710), 49, + STATE(2820), 1, + aux_sym_cell_path_repeat1, + STATE(2979), 1, + sym_path, + STATE(3075), 1, + sym_cell_path, + ACTIONS(1873), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1871), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -301491,9 +303872,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -301511,106 +303889,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [77562] = 6, - ACTIONS(247), 1, + [81251] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5816), 1, + ACTIONS(5827), 1, anon_sym_DOT, - STATE(2851), 1, - sym_path, - STATE(2742), 2, + STATE(2758), 1, sym_comment, + STATE(2820), 1, aux_sym_cell_path_repeat1, - ACTIONS(971), 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(973), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [77629] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5819), 1, - anon_sym_QMARK2, - STATE(2743), 1, - sym_comment, - ACTIONS(978), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(980), 33, + STATE(2979), 1, + sym_path, + STATE(3081), 1, + sym_cell_path, + ACTIONS(1881), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1879), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -301620,10 +303928,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -301632,45 +303951,37 @@ 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, - [77694] = 5, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [81322] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5821), 1, - anon_sym_QMARK2, - STATE(2744), 1, - sym_comment, - ACTIONS(984), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + ACTIONS(5827), 1, anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(986), 33, + STATE(2759), 1, + sym_comment, + STATE(2820), 1, + aux_sym_cell_path_repeat1, + STATE(2979), 1, + sym_path, + STATE(3086), 1, + sym_cell_path, + ACTIONS(1885), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1883), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -301680,10 +303991,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -301692,44 +304014,34 @@ 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, - [77759] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [81393] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2745), 1, + ACTIONS(5761), 1, + aux_sym__immediate_decimal_token2, + STATE(2760), 1, sym_comment, - ACTIONS(994), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(996), 34, + ACTIONS(1767), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1765), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -301739,34 +304051,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [77822] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5823), 1, - aux_sym__immediate_decimal_token2, - STATE(2746), 1, - sym_comment, - ACTIONS(1783), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -301775,21 +304066,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1785), 33, + [81458] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5827), 1, + anon_sym_DOT, + STATE(2761), 1, + sym_comment, + STATE(2820), 1, + aux_sym_cell_path_repeat1, + STATE(2979), 1, + sym_path, + STATE(3087), 1, + sym_cell_path, + ACTIONS(1889), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1887), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -301799,10 +304114,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -301811,19 +304137,20 @@ 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, - [77887] = 5, + aux_sym__unquoted_in_list_token1, + [81529] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5762), 1, + ACTIONS(5829), 1, aux_sym__immediate_decimal_token2, - STATE(2747), 1, + STATE(2762), 1, sym_comment, - ACTIONS(1757), 4, + ACTIONS(1787), 4, sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1755), 47, + ACTIONS(1785), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -301871,21 +304198,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [77952] = 4, - ACTIONS(247), 1, + [81594] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2748), 1, + ACTIONS(5827), 1, + anon_sym_DOT, + STATE(2763), 1, sym_comment, - ACTIONS(998), 18, + STATE(2820), 1, + aux_sym_cell_path_repeat1, + STATE(2979), 1, + sym_path, + STATE(3088), 1, + sym_cell_path, + ACTIONS(1893), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1891), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -301894,21 +304252,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1000), 34, + [81665] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5827), 1, + anon_sym_DOT, + STATE(2764), 1, + sym_comment, + STATE(2820), 1, + aux_sym_cell_path_repeat1, + STATE(2979), 1, + sym_path, + STATE(3089), 1, + sym_cell_path, + ACTIONS(1897), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1895), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -301918,10 +304300,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -301930,12 +304323,15 @@ 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, - [78015] = 4, + aux_sym__unquoted_in_list_token1, + [81736] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2749), 1, + ACTIONS(5831), 1, + anon_sym_QMARK2, + STATE(2765), 1, sym_comment, - ACTIONS(1002), 18, + ACTIONS(978), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT, @@ -301954,7 +304350,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(1004), 34, + ACTIONS(980), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -301962,7 +304358,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_null, @@ -301989,19 +304384,20 @@ 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, - [78078] = 5, + [81801] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5825), 1, + ACTIONS(5833), 1, + anon_sym_DOT, + ACTIONS(5835), 1, aux_sym__immediate_decimal_token2, - STATE(2750), 1, + STATE(2766), 1, sym_comment, - ACTIONS(1785), 4, + ACTIONS(1767), 3, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1783), 47, + ACTIONS(1765), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -302009,7 +304405,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -302049,20 +304444,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [78143] = 6, + aux_sym__unquoted_in_list_token2, + [81868] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5827), 1, anon_sym_DOT, - ACTIONS(5829), 1, - aux_sym__immediate_decimal_token2, - STATE(2751), 1, + STATE(2767), 1, sym_comment, - ACTIONS(1757), 3, + STATE(2820), 1, + aux_sym_cell_path_repeat1, + STATE(2979), 1, + sym_path, + STATE(3090), 1, + sym_cell_path, + ACTIONS(1913), 2, sym_raw_string_begin, - anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1755), 47, + ACTIONS(1911), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -302109,192 +304508,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [78210] = 29, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3997), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3999), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4001), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4003), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5673), 1, - anon_sym_DQUOTE, - ACTIONS(5677), 1, - sym_raw_string_begin, - ACTIONS(5722), 1, - sym_val_date, - ACTIONS(5831), 1, - anon_sym_LPAREN, - ACTIONS(5833), 1, - anon_sym_DOLLAR, - ACTIONS(5835), 1, - anon_sym_DOT_DOT, - ACTIONS(5841), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5843), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5845), 1, - aux_sym_unquoted_token1, - STATE(2668), 1, - sym__inter_single_quotes, - STATE(2672), 1, - sym__inter_double_quotes, - STATE(2752), 1, - sym_comment, - STATE(5953), 1, - sym__val_number_decimal, - STATE(7648), 1, - sym__val_range, - STATE(7947), 1, - sym__unquoted_anonymous_prefix, - STATE(8000), 1, - sym_val_bool, - ACTIONS(3995), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5675), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5837), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2670), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5839), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(1790), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2663), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2665), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [78323] = 29, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3997), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3999), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4001), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4003), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5673), 1, - anon_sym_DQUOTE, - ACTIONS(5677), 1, - sym_raw_string_begin, - ACTIONS(5722), 1, - sym_val_date, - ACTIONS(5831), 1, - anon_sym_LPAREN, - ACTIONS(5833), 1, - anon_sym_DOLLAR, - ACTIONS(5835), 1, - anon_sym_DOT_DOT, - ACTIONS(5841), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5843), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5845), 1, - aux_sym_unquoted_token1, - STATE(2668), 1, - sym__inter_single_quotes, - STATE(2672), 1, - sym__inter_double_quotes, - STATE(2753), 1, - sym_comment, - STATE(5953), 1, - sym__val_number_decimal, - STATE(7648), 1, - sym__val_range, - STATE(7947), 1, - sym__unquoted_anonymous_prefix, - STATE(8000), 1, - sym_val_bool, - ACTIONS(3995), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5675), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5837), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2670), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5839), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(1812), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2663), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2665), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [78436] = 8, + [81939] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5807), 1, + ACTIONS(5827), 1, anon_sym_DOT, - STATE(2754), 1, + STATE(2768), 1, sym_comment, - STATE(2833), 1, + STATE(2820), 1, aux_sym_cell_path_repeat1, - STATE(2960), 1, + STATE(2979), 1, sym_path, - STATE(3058), 1, + STATE(3091), 1, sym_cell_path, - ACTIONS(1990), 2, + ACTIONS(1917), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1988), 46, + ACTIONS(1915), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -302341,15 +304571,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [78507] = 4, + [82010] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2755), 1, + ACTIONS(5837), 1, + anon_sym_DOT, + ACTIONS(5839), 1, + aux_sym__immediate_decimal_token2, + STATE(2769), 1, sym_comment, - ACTIONS(990), 18, + ACTIONS(1765), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -302365,7 +304598,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(992), 34, + ACTIONS(1767), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -302373,7 +304606,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_null, @@ -302400,23 +304632,23 @@ 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, - [78570] = 8, + [82077] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5807), 1, + ACTIONS(5827), 1, anon_sym_DOT, - STATE(2756), 1, + STATE(2770), 1, sym_comment, - STATE(2833), 1, + STATE(2820), 1, aux_sym_cell_path_repeat1, - STATE(2960), 1, + STATE(2979), 1, sym_path, - STATE(3030), 1, + STATE(3092), 1, sym_cell_path, - ACTIONS(963), 2, + ACTIONS(1921), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(961), 46, + ACTIONS(1919), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -302463,186 +304695,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [78641] = 29, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3997), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3999), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4001), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4003), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5622), 1, - anon_sym_DQUOTE, - ACTIONS(5626), 1, - sym_raw_string_begin, - ACTIONS(5722), 1, - sym_val_date, - ACTIONS(5781), 1, - anon_sym_LPAREN, - ACTIONS(5783), 1, - anon_sym_DOLLAR, - ACTIONS(5785), 1, - anon_sym_DOT_DOT, - ACTIONS(5791), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5793), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5795), 1, - aux_sym_unquoted_token1, - STATE(2612), 1, - sym__inter_single_quotes, - STATE(2613), 1, - sym__inter_double_quotes, - STATE(2757), 1, - sym_comment, - STATE(5804), 1, - sym__val_number_decimal, - STATE(7747), 1, - sym__val_range, - STATE(7753), 1, - sym__unquoted_anonymous_prefix, - STATE(8000), 1, - sym_val_bool, - ACTIONS(3995), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5624), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5787), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2643), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5789), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(1673), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2663), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2665), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [78754] = 30, - ACTIONS(239), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3313), 1, - aux_sym_unquoted_token1, - ACTIONS(3997), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3999), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4001), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4003), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4009), 1, - anon_sym_DQUOTE, - ACTIONS(4013), 1, - sym_raw_string_begin, - ACTIONS(4213), 1, - anon_sym_DOLLAR, - ACTIONS(4215), 1, - anon_sym_DOT_DOT, - ACTIONS(5718), 1, - anon_sym_LPAREN, - ACTIONS(5722), 1, - sym_val_date, - STATE(2131), 1, - sym__inter_single_quotes, - STATE(2132), 1, - sym__inter_double_quotes, - STATE(2758), 1, - sym_comment, - STATE(5906), 1, - sym__val_number_decimal, - STATE(6715), 1, - sym_unquoted, - STATE(7572), 1, - sym__val_range, - STATE(7585), 1, - sym__unquoted_anonymous_prefix, - STATE(8000), 1, - sym_val_bool, - ACTIONS(3995), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4011), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4217), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(4492), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5720), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(6714), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2663), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2665), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [78869] = 4, + [82148] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2759), 1, + ACTIONS(5827), 1, + anon_sym_DOT, + STATE(2771), 1, sym_comment, - ACTIONS(1008), 4, + STATE(2820), 1, + aux_sym_cell_path_repeat1, + STATE(2979), 1, + sym_path, + STATE(3093), 1, + sym_cell_path, + ACTIONS(1929), 2, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1006), 48, + ACTIONS(1927), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -302650,8 +304719,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -302691,112 +304758,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [78932] = 29, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3997), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3999), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4001), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4003), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5622), 1, - anon_sym_DQUOTE, - ACTIONS(5626), 1, - sym_raw_string_begin, - ACTIONS(5722), 1, - sym_val_date, - ACTIONS(5781), 1, - anon_sym_LPAREN, - ACTIONS(5783), 1, - anon_sym_DOLLAR, - ACTIONS(5785), 1, - anon_sym_DOT_DOT, - ACTIONS(5791), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5793), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5795), 1, - aux_sym_unquoted_token1, - STATE(2612), 1, - sym__inter_single_quotes, - STATE(2613), 1, - sym__inter_double_quotes, - STATE(2760), 1, - sym_comment, - STATE(5804), 1, - sym__val_number_decimal, - STATE(7747), 1, - sym__val_range, - STATE(7753), 1, - sym__unquoted_anonymous_prefix, - STATE(8000), 1, - sym_val_bool, - ACTIONS(3995), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5624), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5787), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2643), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5789), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(1726), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2663), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2665), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [79045] = 4, + [82219] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2761), 1, + ACTIONS(5827), 1, + anon_sym_DOT, + STATE(2772), 1, sym_comment, - ACTIONS(2419), 2, + STATE(2820), 1, + aux_sym_cell_path_repeat1, + STATE(2979), 1, + sym_path, + STATE(3070), 1, + sym_cell_path, + ACTIONS(963), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2417), 50, + ACTIONS(961), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -302814,9 +304804,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -302834,20 +304821,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [79108] = 6, + [82290] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5847), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5849), 1, - aux_sym__immediate_decimal_token2, - STATE(2762), 1, + ACTIONS(5827), 1, + anon_sym_DOT, + STATE(2773), 1, sym_comment, - ACTIONS(1741), 3, + STATE(2820), 1, + aux_sym_cell_path_repeat1, + STATE(2979), 1, + sym_path, + STATE(3095), 1, + sym_cell_path, + ACTIONS(2028), 2, sym_raw_string_begin, - anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1739), 47, + ACTIONS(2026), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -302894,43 +304884,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [79175] = 5, - ACTIONS(247), 1, + [82361] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5851), 1, - sym__newline, - STATE(2763), 2, + ACTIONS(5827), 1, + anon_sym_DOT, + STATE(2774), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1294), 15, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1296), 35, + STATE(2820), 1, + aux_sym_cell_path_repeat1, + STATE(2979), 1, + sym_path, + STATE(3096), 1, + sym_cell_path, + ACTIONS(2032), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2030), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -302940,13 +304923,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -302955,49 +304946,37 @@ 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, - [79240] = 9, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [82432] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - sym__table_head_separator, - ACTIONS(5854), 1, + ACTIONS(5827), 1, anon_sym_DOT, - STATE(2764), 1, + STATE(2775), 1, sym_comment, - STATE(3482), 1, + STATE(2820), 1, aux_sym_cell_path_repeat1, - STATE(3600), 1, + STATE(2979), 1, sym_path, - STATE(5948), 1, + STATE(3098), 1, sym_cell_path, - ACTIONS(5741), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(5748), 33, + ACTIONS(2036), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2034), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -303007,85 +304986,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [79313] = 30, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(113), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(115), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(121), 1, - sym_raw_string_begin, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3391), 1, - aux_sym_unquoted_token1, - ACTIONS(3997), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3999), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4001), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4003), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5722), 1, - sym_val_date, - ACTIONS(5856), 1, - anon_sym_LPAREN, - ACTIONS(5858), 1, - anon_sym_DOLLAR, - ACTIONS(5860), 1, - anon_sym_DOT_DOT, - STATE(2457), 1, - sym__inter_single_quotes, - STATE(2488), 1, - sym__inter_double_quotes, - STATE(2765), 1, - sym_comment, - STATE(5855), 1, - sym__val_number_decimal, - STATE(6890), 1, - sym_unquoted, - STATE(7706), 1, - sym__val_range, - STATE(7723), 1, - sym__unquoted_anonymous_prefix, - STATE(8000), 1, - sym_val_bool, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3995), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5862), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2091), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5864), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(6880), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2663), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -303094,8 +305001,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2665), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -303104,17 +305009,24 @@ 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, - [79428] = 4, + aux_sym__unquoted_in_list_token1, + [82503] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2766), 1, + ACTIONS(5827), 1, + anon_sym_DOT, + STATE(2776), 1, sym_comment, - ACTIONS(1012), 4, + STATE(2820), 1, + aux_sym_cell_path_repeat1, + STATE(2979), 1, + sym_path, + STATE(3099), 1, + sym_cell_path, + ACTIONS(2040), 2, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1010), 48, + ACTIONS(2038), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -303122,8 +305034,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -303163,17 +305073,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [79491] = 4, + [82574] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2767), 1, + ACTIONS(5827), 1, + anon_sym_DOT, + STATE(2777), 1, sym_comment, - ACTIONS(1016), 4, + STATE(2820), 1, + aux_sym_cell_path_repeat1, + STATE(2979), 1, + sym_path, + STATE(3033), 1, + sym_cell_path, + ACTIONS(1933), 2, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1014), 48, + ACTIONS(1931), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -303181,8 +305097,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -303222,23 +305136,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [79554] = 8, + [82645] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5807), 1, + ACTIONS(5827), 1, anon_sym_DOT, - STATE(2768), 1, + STATE(2778), 1, sym_comment, - STATE(2833), 1, + STATE(2820), 1, aux_sym_cell_path_repeat1, - STATE(2960), 1, + STATE(2979), 1, sym_path, - STATE(3041), 1, + STATE(3061), 1, sym_cell_path, - ACTIONS(1927), 2, + ACTIONS(1901), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1925), 46, + ACTIONS(1899), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -303285,18 +305199,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [79625] = 6, + [82716] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5866), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5868), 1, - aux_sym__immediate_decimal_token2, - STATE(2769), 1, + ACTIONS(5841), 1, + anon_sym_QMARK2, + STATE(2779), 1, sym_comment, - ACTIONS(1739), 17, + ACTIONS(984), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -303312,7 +305225,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(1741), 33, + ACTIONS(986), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -303346,23 +305259,23 @@ 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, - [79692] = 8, + [82781] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5807), 1, + ACTIONS(5827), 1, anon_sym_DOT, - STATE(2770), 1, + STATE(2780), 1, sym_comment, - STATE(2833), 1, + STATE(2820), 1, aux_sym_cell_path_repeat1, - STATE(2960), 1, + STATE(2979), 1, sym_path, - STATE(3042), 1, + STATE(3018), 1, sym_cell_path, - ACTIONS(1935), 2, + ACTIONS(1909), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1933), 46, + ACTIONS(1907), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -303409,52 +305322,275 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [79763] = 8, - ACTIONS(3), 1, + [82852] = 29, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5807), 1, - anon_sym_DOT, - STATE(2771), 1, - sym_comment, - STATE(2833), 1, - aux_sym_cell_path_repeat1, - STATE(2960), 1, - sym_path, - STATE(3045), 1, - sym_cell_path, - ACTIONS(1946), 2, + ACTIONS(3989), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3991), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3993), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3995), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5628), 1, + anon_sym_DQUOTE, + ACTIONS(5632), 1, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1944), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5765), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5767), 1, anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(5769), 1, anon_sym_DOT_DOT, + ACTIONS(5775), 1, + sym_val_date, + ACTIONS(5777), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5779), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5781), 1, + aux_sym_unquoted_token1, + STATE(2620), 1, + sym__inter_single_quotes, + STATE(2621), 1, + sym__inter_double_quotes, + STATE(2781), 1, + sym_comment, + STATE(5733), 1, + sym__val_number_decimal, + STATE(7726), 1, + sym__val_range, + STATE(7734), 1, + sym__unquoted_anonymous_prefix, + STATE(7802), 1, + sym_val_bool, + ACTIONS(3987), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5630), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5771), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + STATE(2628), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5773), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(1726), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2671), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2673), 9, anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [82965] = 30, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3313), 1, + aux_sym_unquoted_token1, + ACTIONS(3989), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3991), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3993), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3995), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4001), 1, + anon_sym_DQUOTE, + ACTIONS(4005), 1, + sym_raw_string_begin, + ACTIONS(4331), 1, + anon_sym_DOT_DOT, + ACTIONS(4455), 1, + anon_sym_DOLLAR, + ACTIONS(5775), 1, + sym_val_date, + ACTIONS(5783), 1, + anon_sym_LPAREN, + STATE(2171), 1, + sym__inter_single_quotes, + STATE(2172), 1, + sym__inter_double_quotes, + STATE(2782), 1, + sym_comment, + STATE(5795), 1, + sym__val_number_decimal, + STATE(6351), 1, + sym_unquoted, + STATE(7802), 1, + sym_val_bool, + STATE(7906), 1, + sym__val_range, + STATE(7913), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3987), 2, anon_sym_true, anon_sym_false, + ACTIONS(4003), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4333), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(4332), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5785), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6349), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2671), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2673), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [83080] = 29, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3989), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3991), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3993), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3995), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + ACTIONS(5628), 1, + anon_sym_DQUOTE, + ACTIONS(5632), 1, + sym_raw_string_begin, + ACTIONS(5765), 1, + anon_sym_LPAREN, + ACTIONS(5767), 1, + anon_sym_DOLLAR, + ACTIONS(5769), 1, + anon_sym_DOT_DOT, + ACTIONS(5775), 1, + sym_val_date, + ACTIONS(5777), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5779), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5781), 1, + aux_sym_unquoted_token1, + STATE(2620), 1, + sym__inter_single_quotes, + STATE(2621), 1, + sym__inter_double_quotes, + STATE(2783), 1, + sym_comment, + STATE(5733), 1, + sym__val_number_decimal, + STATE(7726), 1, + sym__val_range, + STATE(7734), 1, + sym__unquoted_anonymous_prefix, + STATE(7802), 1, + sym_val_bool, + ACTIONS(3987), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5630), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5771), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2628), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5773), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + STATE(1710), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2671), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2673), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [83193] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5843), 1, + aux_sym__immediate_decimal_token2, + STATE(2784), 1, + sym_comment, + ACTIONS(1785), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -303463,6 +305599,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1787), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -303471,36 +305635,28 @@ 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, - aux_sym__unquoted_in_list_token1, - [79834] = 8, + [83258] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5807), 1, - anon_sym_DOT, - STATE(2772), 1, + STATE(2785), 1, sym_comment, - STATE(2833), 1, - aux_sym_cell_path_repeat1, - STATE(2960), 1, - sym_path, - STATE(3046), 1, - sym_cell_path, - ACTIONS(1950), 2, + ACTIONS(2462), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1948), 46, + ACTIONS(2460), 50, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -303518,6 +305674,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -303535,52 +305694,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [79905] = 8, - ACTIONS(3), 1, + [83321] = 29, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5807), 1, - anon_sym_DOT, - STATE(2773), 1, - sym_comment, - STATE(2833), 1, - aux_sym_cell_path_repeat1, - STATE(2960), 1, - sym_path, - STATE(3047), 1, - sym_cell_path, - ACTIONS(1954), 2, + ACTIONS(3989), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3991), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3993), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3995), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5668), 1, + anon_sym_DQUOTE, + ACTIONS(5672), 1, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1952), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5775), 1, + sym_val_date, + ACTIONS(5845), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5847), 1, anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(5849), 1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(5855), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5857), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5859), 1, + aux_sym_unquoted_token1, + STATE(2703), 1, + sym__inter_single_quotes, + STATE(2705), 1, + sym__inter_double_quotes, + STATE(2786), 1, + sym_comment, + STATE(5743), 1, + sym__val_number_decimal, + STATE(7802), 1, + sym_val_bool, + STATE(7807), 1, + sym__val_range, + STATE(7995), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3987), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + ACTIONS(5670), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5851), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2722), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5853), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + STATE(1738), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2671), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -303589,6 +305768,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2673), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -303597,26 +305778,27 @@ 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, - aux_sym__unquoted_in_list_token1, - [79976] = 8, + [83434] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5807), 1, + ACTIONS(1861), 1, + sym__entry_separator, + ACTIONS(5827), 1, anon_sym_DOT, - STATE(2774), 1, + ACTIONS(5863), 1, + anon_sym_RBRACK, + ACTIONS(5866), 1, + sym_raw_string_begin, + STATE(2787), 1, sym_comment, - STATE(2833), 1, + STATE(2820), 1, aux_sym_cell_path_repeat1, - STATE(2960), 1, + STATE(2979), 1, sym_path, - STATE(3051), 1, + STATE(3052), 1, sym_cell_path, - ACTIONS(1962), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1960), 46, + ACTIONS(5861), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -303661,52 +305843,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [80047] = 8, - ACTIONS(3), 1, + [83509] = 29, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5807), 1, - anon_sym_DOT, - STATE(2775), 1, - sym_comment, - STATE(2833), 1, - aux_sym_cell_path_repeat1, - STATE(2960), 1, - sym_path, - STATE(3052), 1, - sym_cell_path, - ACTIONS(1970), 2, + ACTIONS(3989), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3991), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3993), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3995), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5668), 1, + anon_sym_DQUOTE, + ACTIONS(5672), 1, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1968), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5775), 1, + sym_val_date, + ACTIONS(5845), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5847), 1, anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(5849), 1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(5855), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5857), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5859), 1, + aux_sym_unquoted_token1, + STATE(2703), 1, + sym__inter_single_quotes, + STATE(2705), 1, + sym__inter_double_quotes, + STATE(2788), 1, + sym_comment, + STATE(5743), 1, + sym__val_number_decimal, + STATE(7802), 1, + sym_val_bool, + STATE(7807), 1, + sym__val_range, + STATE(7995), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3987), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + ACTIONS(5670), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5851), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2722), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5853), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + STATE(1849), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2671), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -303715,6 +305917,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2673), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -303723,37 +305927,49 @@ 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, - aux_sym__unquoted_in_list_token1, - [80118] = 8, - ACTIONS(3), 1, + [83622] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5807), 1, + ACTIONS(1869), 1, + sym__table_head_separator, + ACTIONS(5868), 1, anon_sym_DOT, - STATE(2776), 1, + STATE(2789), 1, sym_comment, - STATE(2833), 1, + STATE(3502), 1, aux_sym_cell_path_repeat1, - STATE(2960), 1, + STATE(3607), 1, sym_path, - STATE(3056), 1, + STATE(5996), 1, sym_cell_path, - ACTIONS(1974), 2, + ACTIONS(5794), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(5801), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1972), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -303763,21 +305979,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -303786,36 +305991,30 @@ 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, - aux_sym__unquoted_in_list_token1, - [80189] = 8, + [83695] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5807), 1, - anon_sym_DOT, - STATE(2777), 1, - sym_comment, - STATE(2833), 1, - aux_sym_cell_path_repeat1, - STATE(2960), 1, - sym_path, - STATE(3057), 1, - sym_cell_path, - ACTIONS(1986), 2, - sym_raw_string_begin, + ACTIONS(5706), 1, sym__entry_separator, - ACTIONS(1984), 46, + ACTIONS(5708), 1, + sym_raw_string_begin, + STATE(2672), 1, + aux_sym__multiple_types_repeat1, + STATE(2790), 1, + sym_comment, + ACTIONS(5702), 49, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -303833,6 +306032,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -303850,18 +306052,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [80260] = 6, + [83762] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5870), 1, - anon_sym_DOT, - ACTIONS(5872), 1, - aux_sym__immediate_decimal_token2, - STATE(2778), 1, + STATE(2791), 1, sym_comment, - ACTIONS(1755), 17, + ACTIONS(990), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -303877,7 +306076,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(1757), 33, + ACTIONS(992), 34, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -303885,6 +306084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_null, @@ -303911,21 +306111,26 @@ 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, - [80327] = 7, - ACTIONS(3), 1, + [83825] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5876), 1, - anon_sym_RBRACK, - ACTIONS(5878), 1, - sym__entry_separator, - ACTIONS(5880), 1, - sym_raw_string_begin, - STATE(2779), 1, + ACTIONS(5757), 1, + anon_sym_DOT, + STATE(2753), 1, + aux_sym_cell_path_repeat1, + STATE(2792), 1, sym_comment, - STATE(2803), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5874), 47, + STATE(2911), 1, + sym_path, + ACTIONS(967), 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(969), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303933,13 +306138,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -303958,13 +306160,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -303972,14 +306173,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80395] = 4, + [83894] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2780), 1, + STATE(2793), 1, sym_comment, - ACTIONS(1755), 18, + ACTIONS(994), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -303995,8 +306197,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, - aux_sym__unquoted_in_list_token2, - ACTIONS(1757), 33, + ACTIONS(996), 34, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -304004,6 +306205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_null, @@ -304030,12 +306232,12 @@ 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, - [80457] = 4, + [83957] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2781), 1, + STATE(2794), 1, sym_comment, - ACTIONS(1010), 18, + ACTIONS(998), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT, @@ -304054,7 +306256,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(1012), 33, + ACTIONS(1000), 34, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -304062,6 +306264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_null, @@ -304088,21 +306291,17 @@ 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, - [80519] = 8, + [84020] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5882), 1, - anon_sym_DOT, - STATE(2782), 1, + STATE(2795), 1, sym_comment, - STATE(2895), 1, - aux_sym_cell_path_repeat1, - STATE(3043), 1, - sym_path, - STATE(3120), 1, - sym_cell_path, - ACTIONS(2068), 14, + ACTIONS(1002), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -304116,7 +306315,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(2070), 33, + ACTIONS(1004), 34, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -304124,8 +306323,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -304150,78 +306350,23 @@ 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, - [80589] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5878), 1, - sym__entry_separator, - ACTIONS(5880), 1, - sym_raw_string_begin, - ACTIONS(5884), 1, - anon_sym_RBRACK, - STATE(2783), 1, - sym_comment, - STATE(2803), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5874), 47, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [80657] = 4, + [84083] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2784), 1, + ACTIONS(5827), 1, + anon_sym_DOT, + STATE(2796), 1, sym_comment, - ACTIONS(1741), 4, + STATE(2820), 1, + aux_sym_cell_path_repeat1, + STATE(2979), 1, + sym_path, + STATE(3094), 1, + sym_cell_path, + ACTIONS(1944), 2, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1739), 47, + ACTIONS(1942), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -304229,7 +306374,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -304269,80 +306413,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [80719] = 5, + [84154] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5886), 1, - sym__newline, - STATE(2785), 2, + STATE(2797), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1294), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, + ACTIONS(1841), 18, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1296), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [80783] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5882), 1, - anon_sym_DOT, - STATE(2786), 1, - sym_comment, - STATE(2895), 1, - aux_sym_cell_path_repeat1, - STATE(3043), 1, - sym_path, - STATE(3106), 1, - sym_cell_path, - ACTIONS(5809), 14, - anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -304356,7 +306436,8 @@ 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(5814), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1843), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -304364,8 +306445,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -304390,17 +306471,17 @@ 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, - [80853] = 4, + [84216] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2787), 1, + STATE(2798), 1, sym_comment, - ACTIONS(1785), 4, + ACTIONS(1843), 4, sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1783), 47, + ACTIONS(1841), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -304448,47 +306529,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [80915] = 8, + [84278] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5882), 1, - anon_sym_DOT, - STATE(2788), 1, + ACTIONS(5874), 1, + anon_sym_DASH_DASH, + STATE(3007), 1, + sym_long_flag, + STATE(2799), 2, sym_comment, - STATE(2895), 1, - aux_sym_cell_path_repeat1, - STATE(3043), 1, - sym_path, - STATE(3139), 1, - sym_cell_path, - ACTIONS(2072), 14, - anon_sym_DOT_DOT, + aux_sym_decl_def_repeat1, + ACTIONS(5870), 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(5872), 42, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2074), 33, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [84344] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5835), 1, + aux_sym__immediate_decimal_token2, + STATE(2800), 1, + sym_comment, + ACTIONS(1767), 3, sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1765), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -304498,10 +306623,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -304510,21 +306646,19 @@ 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, - [80985] = 8, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [84408] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5882), 1, - anon_sym_DOT, - STATE(2789), 1, + STATE(2801), 1, sym_comment, - STATE(2895), 1, - aux_sym_cell_path_repeat1, - STATE(3043), 1, - sym_path, - STATE(3084), 1, - sym_cell_path, - ACTIONS(1907), 14, + ACTIONS(1006), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -304538,7 +306672,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(1911), 33, + ACTIONS(1008), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -304546,8 +306680,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -304572,78 +306706,79 @@ 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, - [81055] = 4, - ACTIONS(3), 1, + [84470] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2790), 1, + ACTIONS(5877), 1, + anon_sym_QMARK2, + STATE(2802), 1, sym_comment, - ACTIONS(1892), 4, + ACTIONS(978), 7, + 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, + anon_sym_DOT, + ACTIONS(980), 43, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1890), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [81117] = 7, + [84534] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5878), 1, + ACTIONS(5881), 1, + anon_sym_RBRACK, + ACTIONS(5883), 1, sym__entry_separator, - ACTIONS(5880), 1, + ACTIONS(5885), 1, sym_raw_string_begin, - ACTIONS(5889), 1, - anon_sym_RBRACK, - STATE(2791), 1, - sym_comment, STATE(2803), 1, + sym_comment, + STATE(2850), 1, aux_sym__multiple_types_repeat1, - ACTIONS(5874), 47, + ACTIONS(5879), 47, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -304691,77 +306826,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [81185] = 8, - ACTIONS(247), 1, + [84602] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5882), 1, - anon_sym_DOT, - STATE(2792), 1, + ACTIONS(5883), 1, + sym__entry_separator, + ACTIONS(5885), 1, + sym_raw_string_begin, + ACTIONS(5887), 1, + anon_sym_RBRACK, + STATE(2804), 1, sym_comment, - STATE(2895), 1, - aux_sym_cell_path_repeat1, - STATE(3043), 1, - sym_path, - STATE(3085), 1, - sym_cell_path, - ACTIONS(1913), 14, - anon_sym_DOT_DOT, + STATE(2850), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5879), 47, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1915), 33, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [84670] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5883), 1, + sym__entry_separator, + ACTIONS(5885), 1, sym_raw_string_begin, - anon_sym_LBRACK, + ACTIONS(5889), 1, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + STATE(2805), 1, + sym_comment, + STATE(2850), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5879), 47, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [81255] = 4, + [84738] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2793), 1, + ACTIONS(5839), 1, + aux_sym__immediate_decimal_token2, + STATE(2806), 1, sym_comment, - ACTIONS(1014), 18, + ACTIONS(1765), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -304777,7 +306973,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(1016), 33, + ACTIONS(1767), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -304811,14 +307007,16 @@ 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, - [81317] = 4, + [84802] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2794), 1, + STATE(2807), 1, sym_comment, - ACTIONS(1290), 15, - anon_sym_DOLLAR, + ACTIONS(1785), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -304832,19 +307030,20 @@ 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(1288), 36, + aux_sym__unquoted_in_list_token2, + ACTIONS(1787), 33, sym_raw_string_begin, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -304858,9 +307057,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -304869,21 +307065,17 @@ 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, - [81379] = 8, + [84864] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5882), 1, - anon_sym_DOT, - STATE(2795), 1, + STATE(2808), 1, sym_comment, - STATE(2895), 1, - aux_sym_cell_path_repeat1, - STATE(3043), 1, - sym_path, - STATE(3102), 1, - sym_cell_path, - ACTIONS(5893), 14, + ACTIONS(1010), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -304897,7 +307089,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(5891), 33, + ACTIONS(1012), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -304905,8 +307097,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -304931,12 +307123,12 @@ 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, - [81449] = 4, + [84926] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2796), 1, + STATE(2809), 1, sym_comment, - ACTIONS(1006), 18, + ACTIONS(1014), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT, @@ -304955,7 +307147,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(1008), 33, + ACTIONS(1016), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -304989,17 +307181,20 @@ 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, - [81511] = 4, + [84988] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2797), 1, + ACTIONS(5891), 1, + anon_sym_DOT_DOT2, + STATE(2810), 1, sym_comment, - ACTIONS(2131), 4, + ACTIONS(2163), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5893), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2129), 47, + ACTIONS(2157), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -305007,7 +307202,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -305047,73 +307241,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [81573] = 5, + [85054] = 7, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1812), 1, + aux_sym__unquoted_in_list_token2, ACTIONS(5895), 1, - anon_sym_QMARK2, - STATE(2798), 1, - sym_comment, - ACTIONS(984), 7, - 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, - anon_sym_DOT, - ACTIONS(986), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [81637] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2799), 1, + anon_sym_DOT_DOT2, + STATE(2811), 1, sym_comment, - ACTIONS(1890), 18, + ACTIONS(5897), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1802), 16, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -305129,8 +307270,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, - aux_sym__unquoted_in_list_token2, - ACTIONS(1892), 33, + ACTIONS(1810), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -305138,11 +307278,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [85122] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2812), 1, + sym_comment, + ACTIONS(2054), 4, + sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2052), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -305152,10 +307336,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305164,22 +307359,79 @@ 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, - [81699] = 7, + aux_sym__unquoted_in_list_token1, + [85184] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5899), 1, + sym_long_flag_identifier, + ACTIONS(5901), 1, + anon_sym_EQ2, + STATE(2813), 1, + sym_comment, + ACTIONS(4968), 9, + sym_raw_string_begin, + aux_sym_cmd_identifier_token39, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4970), 40, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token1, + [85250] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5897), 1, - anon_sym_DOT_DOT2, - STATE(2800), 1, + ACTIONS(5903), 1, + sym__newline, + STATE(2814), 2, sym_comment, - ACTIONS(5899), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1866), 16, + aux_sym_shebang_repeat1, + ACTIONS(1294), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -305192,15 +307444,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1874), 31, + aux_sym_unquoted_token1, + ACTIONS(1296), 33, sym_raw_string_begin, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -305217,6 +307469,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305225,72 +307479,75 @@ 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, - [81767] = 6, + [85314] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5901), 1, - anon_sym_DOT_DOT2, - STATE(2801), 1, - sym_comment, - ACTIONS(2173), 2, - sym_raw_string_begin, + ACTIONS(5883), 1, sym__entry_separator, - ACTIONS(5903), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2167), 46, - anon_sym_LBRACK, + ACTIONS(5885), 1, + sym_raw_string_begin, + ACTIONS(5906), 1, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + STATE(2815), 1, + sym_comment, + STATE(2850), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5879), 47, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [81833] = 4, + [85382] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2802), 1, + ACTIONS(5908), 1, + anon_sym_QMARK2, + STATE(2816), 1, sym_comment, - ACTIONS(994), 7, + ACTIONS(984), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -305298,7 +307555,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, anon_sym_DOT, - ACTIONS(996), 44, + ACTIONS(986), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -305335,7 +307592,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, - anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -305343,17 +307599,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [81895] = 5, + [85446] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2325), 1, - sym_raw_string_begin, - ACTIONS(5905), 1, + ACTIONS(5883), 1, sym__entry_separator, - STATE(2803), 2, + ACTIONS(5885), 1, + sym_raw_string_begin, + ACTIONS(5910), 1, + anon_sym_RBRACK, + STATE(2817), 1, sym_comment, + STATE(2850), 1, aux_sym__multiple_types_repeat1, - ACTIONS(2320), 48, + ACTIONS(5879), 47, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -305394,7 +307653,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_RBRACK, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -305402,86 +307660,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [81959] = 7, - ACTIONS(247), 1, + [85514] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1888), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5908), 1, - anon_sym_DOT_DOT2, - STATE(2804), 1, - sym_comment, - ACTIONS(5910), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1878), 16, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1886), 31, + ACTIONS(5883), 1, + sym__entry_separator, + ACTIONS(5885), 1, sym_raw_string_begin, - anon_sym_LBRACK, + ACTIONS(5912), 1, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, + STATE(2818), 1, + sym_comment, + STATE(2850), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5879), 47, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [82027] = 6, - ACTIONS(247), 1, + [85582] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5916), 1, - anon_sym_DASH_DASH, - STATE(2973), 1, - sym_long_flag, - STATE(2805), 2, + ACTIONS(5883), 1, + sym__entry_separator, + ACTIONS(5885), 1, + sym_raw_string_begin, + ACTIONS(5914), 1, + anon_sym_RBRACK, + STATE(2819), 1, sym_comment, - aux_sym_decl_def_repeat1, - ACTIONS(5912), 6, + STATE(2850), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5879), 47, 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(5914), 42, - sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -305489,10 +307743,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -305511,9 +307768,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, aux_sym__val_number_decimal_token1, @@ -305523,47 +307782,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [82093] = 8, - ACTIONS(247), 1, + [85650] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5882), 1, + ACTIONS(5827), 1, anon_sym_DOT, - STATE(2806), 1, + STATE(2820), 1, sym_comment, - STATE(2895), 1, + STATE(2858), 1, aux_sym_cell_path_repeat1, - STATE(3043), 1, + STATE(2979), 1, sym_path, - STATE(3143), 1, - sym_cell_path, - ACTIONS(1933), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1935), 33, + ACTIONS(969), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(967), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -305573,10 +307819,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305585,18 +307842,18 @@ 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, - [82163] = 5, + aux_sym__unquoted_in_list_token1, + [85718] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5829), 1, - aux_sym__immediate_decimal_token2, - STATE(2807), 1, + STATE(2821), 1, sym_comment, - ACTIONS(1757), 3, + ACTIONS(1767), 4, sym_raw_string_begin, - anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1755), 47, + ACTIONS(1765), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -305604,6 +307861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -305643,48 +307901,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [82227] = 8, - ACTIONS(247), 1, + [85780] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5882), 1, - anon_sym_DOT, - STATE(2808), 1, - sym_comment, - STATE(2895), 1, - aux_sym_cell_path_repeat1, - STATE(3043), 1, - sym_path, - STATE(3089), 1, - sym_cell_path, - ACTIONS(1944), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1946), 33, + ACTIONS(5918), 1, + anon_sym_RBRACK, + ACTIONS(5920), 1, + anon_sym_DOT_DOT2, + ACTIONS(5924), 1, + sym__entry_separator, + ACTIONS(5926), 1, sym_raw_string_begin, + STATE(2822), 1, + sym_comment, + ACTIONS(5922), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5916), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -305694,10 +307939,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305706,86 +307962,30 @@ 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, - [82297] = 7, + aux_sym__unquoted_in_list_token1, + [85850] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5878), 1, + ACTIONS(1028), 1, sym__entry_separator, - ACTIONS(5880), 1, - sym_raw_string_begin, - ACTIONS(5919), 1, + ACTIONS(5920), 1, + anon_sym_DOT_DOT2, + ACTIONS(5930), 1, anon_sym_RBRACK, - STATE(2803), 1, - aux_sym__multiple_types_repeat1, - STATE(2809), 1, - sym_comment, - ACTIONS(5874), 47, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [82365] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2810), 1, - sym_comment, - ACTIONS(2185), 4, + ACTIONS(5933), 1, sym_raw_string_begin, + STATE(2823), 1, + sym_comment, + ACTIONS(5922), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2183), 47, + ACTIONS(5928), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -305825,43 +308025,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [82427] = 4, - ACTIONS(247), 1, + [85920] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2811), 1, + ACTIONS(5935), 1, + aux_sym__immediate_decimal_token2, + STATE(2824), 1, sym_comment, - ACTIONS(1739), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1741), 33, + ACTIONS(1787), 3, sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1785), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -305871,10 +308059,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305883,23 +308082,23 @@ 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, - [82489] = 5, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [85984] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5921), 1, - anon_sym_QMARK2, - STATE(2812), 1, + ACTIONS(5883), 1, + sym__entry_separator, + ACTIONS(5885), 1, + sym_raw_string_begin, + ACTIONS(5937), 1, + anon_sym_RBRACK, + STATE(2825), 1, sym_comment, - ACTIONS(978), 7, + STATE(2850), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5879), 47, 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, - anon_sym_DOT, - ACTIONS(980), 43, - sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -305907,10 +308106,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -305929,12 +308131,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -305942,20 +308145,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [82553] = 8, + [86052] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5882), 1, + ACTIONS(5939), 1, anon_sym_DOT, - STATE(2813), 1, + STATE(2826), 1, sym_comment, - STATE(2895), 1, + STATE(2871), 1, aux_sym_cell_path_repeat1, - STATE(3043), 1, + STATE(3077), 1, sym_path, - STATE(3134), 1, + STATE(3165), 1, sym_cell_path, - ACTIONS(961), 14, + ACTIONS(1871), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -305970,7 +308173,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(963), 33, + ACTIONS(1873), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -306004,75 +308207,75 @@ 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, - [82623] = 4, - ACTIONS(247), 1, + [86122] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2814), 1, + STATE(2827), 1, sym_comment, - ACTIONS(998), 7, - 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, - anon_sym_DOT, - ACTIONS(1000), 44, + ACTIONS(2120), 4, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2118), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [82685] = 4, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [86184] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2815), 1, + STATE(2828), 1, sym_comment, - ACTIONS(1757), 4, + ACTIONS(2185), 4, sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1755), 47, + ACTIONS(2183), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -306120,68 +308323,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [82747] = 4, - ACTIONS(247), 1, + [86246] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2816), 1, + ACTIONS(5941), 1, + anon_sym_DOT_DOT2, + STATE(2829), 1, sym_comment, - ACTIONS(1002), 7, - 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, - anon_sym_DOT, - ACTIONS(1004), 44, + ACTIONS(2128), 2, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_QMARK2, + sym__entry_separator, + ACTIONS(5943), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2122), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [82809] = 4, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [86312] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2817), 1, + STATE(2830), 1, sym_comment, ACTIONS(990), 7, aux_sym_cmd_identifier_token1, @@ -306236,20 +308441,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [82871] = 8, + [86374] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5882), 1, + ACTIONS(5939), 1, anon_sym_DOT, - STATE(2818), 1, + STATE(2831), 1, sym_comment, - STATE(2895), 1, + STATE(2871), 1, aux_sym_cell_path_repeat1, - STATE(3043), 1, + STATE(3077), 1, sym_path, - STATE(3108), 1, + STATE(3166), 1, sym_cell_path, - ACTIONS(1952), 14, + ACTIONS(1879), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -306264,7 +308469,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(1954), 33, + ACTIONS(1881), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -306298,20 +308503,20 @@ 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, - [82941] = 8, + [86444] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5882), 1, + ACTIONS(5939), 1, anon_sym_DOT, - STATE(2819), 1, + STATE(2832), 1, sym_comment, - STATE(2895), 1, + STATE(2871), 1, aux_sym_cell_path_repeat1, - STATE(3043), 1, + STATE(3077), 1, sym_path, - STATE(3121), 1, + STATE(3107), 1, sym_cell_path, - ACTIONS(1960), 14, + ACTIONS(1883), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -306326,7 +308531,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(1962), 33, + ACTIONS(1885), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -306360,21 +308565,16 @@ 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, - [83011] = 8, + [86514] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5882), 1, - anon_sym_DOT, - STATE(2820), 1, + STATE(2833), 1, sym_comment, - STATE(2895), 1, - aux_sym_cell_path_repeat1, - STATE(3043), 1, - sym_path, - STATE(3125), 1, - sym_cell_path, - ACTIONS(1968), 14, + ACTIONS(1765), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -306388,7 +308588,8 @@ 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(1970), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1767), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -306396,8 +308597,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -306422,17 +308623,20 @@ 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, - [83081] = 5, + [86576] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5923), 1, - sym__newline, - STATE(2821), 2, + ACTIONS(5939), 1, + anon_sym_DOT, + STATE(2834), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1294), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, + STATE(2871), 1, + aux_sym_cell_path_repeat1, + STATE(3077), 1, + sym_path, + STATE(3148), 1, + sym_cell_path, + ACTIONS(961), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -306446,12 +308650,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1296), 33, + aux_sym__unquoted_in_list_token1, + ACTIONS(963), 33, sym_raw_string_begin, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -306471,8 +308677,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -306481,35 +308685,47 @@ 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, - [83145] = 8, - ACTIONS(3), 1, + [86646] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5928), 1, - anon_sym_RBRACK, - ACTIONS(5930), 1, - anon_sym_DOT_DOT2, - ACTIONS(5934), 1, - sym__entry_separator, - ACTIONS(5936), 1, - sym_raw_string_begin, - STATE(2822), 1, + ACTIONS(5939), 1, + anon_sym_DOT, + STATE(2835), 1, sym_comment, - ACTIONS(5932), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5926), 45, + STATE(2871), 1, + aux_sym_cell_path_repeat1, + STATE(3077), 1, + sym_path, + STATE(3116), 1, + sym_cell_path, + ACTIONS(1891), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1893), 33, + sym_raw_string_begin, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -306519,21 +308735,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -306542,36 +308747,47 @@ 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, - aux_sym__unquoted_in_list_token1, - [83215] = 8, - ACTIONS(3), 1, + [86716] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1032), 1, - sym__entry_separator, - ACTIONS(5930), 1, - anon_sym_DOT_DOT2, - ACTIONS(5940), 1, - anon_sym_RBRACK, - ACTIONS(5943), 1, - sym_raw_string_begin, - STATE(2823), 1, + ACTIONS(5939), 1, + anon_sym_DOT, + STATE(2836), 1, sym_comment, - ACTIONS(5932), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5938), 45, + STATE(2871), 1, + aux_sym_cell_path_repeat1, + STATE(3077), 1, + sym_path, + STATE(3121), 1, + sym_cell_path, + ACTIONS(1895), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1897), 33, + sym_raw_string_begin, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -306581,21 +308797,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -306604,32 +308809,47 @@ 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, - aux_sym__unquoted_in_list_token1, - [83285] = 4, - ACTIONS(3), 1, + [86786] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2824), 1, + ACTIONS(5939), 1, + anon_sym_DOT, + STATE(2837), 1, sym_comment, - ACTIONS(1737), 4, + STATE(2871), 1, + aux_sym_cell_path_repeat1, + STATE(3077), 1, + sym_path, + STATE(3115), 1, + sym_cell_path, + ACTIONS(5861), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(5866), 33, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1735), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -306639,21 +308859,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -306662,34 +308871,47 @@ 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, - aux_sym__unquoted_in_list_token1, - [83347] = 6, - ACTIONS(3), 1, + [86856] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5945), 1, - anon_sym_DOT_DOT2, - STATE(2825), 1, + ACTIONS(5939), 1, + anon_sym_DOT, + STATE(2838), 1, sym_comment, - ACTIONS(2181), 2, + STATE(2871), 1, + aux_sym_cell_path_repeat1, + STATE(3077), 1, + sym_path, + STATE(3123), 1, + sym_cell_path, + ACTIONS(1911), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1913), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5947), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2175), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -306699,13 +308921,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [86926] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5939), 1, + anon_sym_DOT, + STATE(2839), 1, + sym_comment, + STATE(2871), 1, + aux_sym_cell_path_repeat1, + STATE(3077), 1, + sym_path, + STATE(3126), 1, + sym_cell_path, + ACTIONS(1915), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -306714,6 +308960,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1917), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -306722,32 +308995,47 @@ 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, - aux_sym__unquoted_in_list_token1, - [83413] = 5, - ACTIONS(3), 1, + [86996] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5949), 1, - aux_sym__immediate_decimal_token2, - STATE(2826), 1, + ACTIONS(5939), 1, + anon_sym_DOT, + STATE(2840), 1, sym_comment, - ACTIONS(1785), 3, + STATE(2871), 1, + aux_sym_cell_path_repeat1, + STATE(3077), 1, + sym_path, + STATE(3130), 1, + sym_cell_path, + ACTIONS(1919), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1921), 33, sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1783), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -306757,21 +309045,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -306780,29 +309057,21 @@ 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, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [83477] = 6, + [87066] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5951), 1, - sym_long_flag_identifier, - ACTIONS(5953), 1, - anon_sym_EQ2, - STATE(2827), 1, + STATE(2841), 1, sym_comment, - ACTIONS(4936), 9, - sym_raw_string_begin, - aux_sym_cmd_identifier_token39, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4938), 40, + ACTIONS(994), 7, 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, + anon_sym_DOT, + ACTIONS(996), 44, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -306810,13 +309079,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -306835,40 +309101,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, - [83543] = 6, - ACTIONS(3), 1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [87128] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5955), 1, - anon_sym_DOT_DOT2, - STATE(2828), 1, + ACTIONS(5939), 1, + anon_sym_DOT, + STATE(2842), 1, sym_comment, - ACTIONS(2139), 2, + STATE(2871), 1, + aux_sym_cell_path_repeat1, + STATE(3077), 1, + sym_path, + STATE(3120), 1, + sym_cell_path, + ACTIONS(5947), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(5945), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5957), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2133), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -306878,21 +309165,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -306901,19 +309177,21 @@ 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, - aux_sym__unquoted_in_list_token1, - [83609] = 5, + [87198] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5872), 1, - aux_sym__immediate_decimal_token2, - STATE(2829), 1, + ACTIONS(5939), 1, + anon_sym_DOT, + STATE(2843), 1, sym_comment, - ACTIONS(1755), 17, + STATE(2871), 1, + aux_sym_cell_path_repeat1, + STATE(3077), 1, + sym_path, + STATE(3131), 1, + sym_cell_path, + ACTIONS(1927), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -306927,7 +309205,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(1757), 33, + ACTIONS(1929), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -306935,8 +309213,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -306961,21 +309239,21 @@ 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, - [83673] = 7, - ACTIONS(3), 1, + [87268] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5878), 1, - sym__entry_separator, - ACTIONS(5880), 1, - sym_raw_string_begin, - ACTIONS(5959), 1, - anon_sym_RBRACK, - STATE(2803), 1, - aux_sym__multiple_types_repeat1, - STATE(2830), 1, + STATE(2844), 1, sym_comment, - ACTIONS(5874), 47, + ACTIONS(998), 7, 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, + anon_sym_DOT, + ACTIONS(1000), 44, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -306983,13 +309261,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -307008,13 +309283,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -307022,79 +309297,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [83741] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2831), 1, - sym_comment, - ACTIONS(2127), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2125), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [83803] = 7, - ACTIONS(3), 1, + [87330] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5878), 1, - sym__entry_separator, - ACTIONS(5880), 1, - sym_raw_string_begin, - ACTIONS(5961), 1, - anon_sym_RBRACK, - STATE(2803), 1, - aux_sym__multiple_types_repeat1, - STATE(2832), 1, + STATE(2845), 1, sym_comment, - ACTIONS(5874), 47, + ACTIONS(1002), 7, 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, + anon_sym_DOT, + ACTIONS(1004), 44, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -307102,13 +309319,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -307127,13 +309341,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -307141,34 +309355,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [83871] = 7, - ACTIONS(3), 1, + [87392] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5807), 1, + ACTIONS(5939), 1, anon_sym_DOT, - STATE(2833), 1, + STATE(2846), 1, sym_comment, - STATE(2836), 1, + STATE(2871), 1, aux_sym_cell_path_repeat1, - STATE(2960), 1, + STATE(3077), 1, sym_path, - ACTIONS(969), 2, + STATE(3132), 1, + sym_cell_path, + ACTIONS(1942), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1944), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(967), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -307178,21 +309405,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307201,21 +309417,20 @@ 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, - aux_sym__unquoted_in_list_token1, - [83939] = 8, + [87462] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5882), 1, + ACTIONS(5939), 1, anon_sym_DOT, - STATE(2834), 1, + STATE(2847), 1, sym_comment, - STATE(2895), 1, + STATE(2871), 1, aux_sym_cell_path_repeat1, - STATE(3043), 1, + STATE(3077), 1, sym_path, - STATE(3086), 1, + STATE(3133), 1, sym_cell_path, - ACTIONS(1972), 14, + ACTIONS(2026), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -307230,7 +309445,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(1974), 33, + ACTIONS(2028), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -307264,17 +309479,20 @@ 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, - [84009] = 4, + [87532] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2835), 1, + ACTIONS(5949), 1, + anon_sym_DOT_DOT2, + STATE(2848), 1, sym_comment, - ACTIONS(1020), 4, + ACTIONS(2152), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5951), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1018), 47, + ACTIONS(2146), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -307282,7 +309500,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -307322,33 +309539,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [84071] = 6, - ACTIONS(3), 1, + [87598] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5963), 1, + ACTIONS(5939), 1, anon_sym_DOT, - STATE(2960), 1, - sym_path, - ACTIONS(973), 2, - sym_raw_string_begin, - sym__entry_separator, - STATE(2836), 2, + STATE(2849), 1, sym_comment, + STATE(2871), 1, aux_sym_cell_path_repeat1, - ACTIONS(971), 46, + STATE(3077), 1, + sym_path, + STATE(3136), 1, + sym_cell_path, + ACTIONS(2030), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2032), 33, + sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -307358,21 +309589,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307381,21 +309601,72 @@ 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, - aux_sym__unquoted_in_list_token1, - [84137] = 8, + [87668] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2337), 1, + sym_raw_string_begin, + ACTIONS(5953), 1, + sym__entry_separator, + STATE(2850), 2, + sym_comment, + aux_sym__multiple_types_repeat1, + ACTIONS(2332), 48, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_RBRACK, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [87732] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5882), 1, - anon_sym_DOT, - STATE(2837), 1, + STATE(2851), 1, sym_comment, - STATE(2895), 1, - aux_sym_cell_path_repeat1, - STATE(3043), 1, - sym_path, - STATE(3087), 1, - sym_cell_path, - ACTIONS(1984), 14, + ACTIONS(1290), 15, + anon_sym_DOLLAR, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -307410,19 +309681,19 @@ 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(1986), 33, + ACTIONS(1288), 36, sym_raw_string_begin, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -307436,6 +309707,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307444,20 +309718,20 @@ 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, - [84207] = 8, + [87794] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5882), 1, + ACTIONS(5939), 1, anon_sym_DOT, - STATE(2838), 1, + STATE(2852), 1, sym_comment, - STATE(2895), 1, + STATE(2871), 1, aux_sym_cell_path_repeat1, - STATE(3043), 1, + STATE(3077), 1, sym_path, - STATE(3135), 1, + STATE(3139), 1, sym_cell_path, - ACTIONS(1925), 14, + ACTIONS(2034), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -307472,7 +309746,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(1927), 33, + ACTIONS(2036), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -307506,20 +309780,20 @@ 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, - [84277] = 6, + [87864] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5966), 1, + ACTIONS(5956), 1, anon_sym_DOT_DOT2, - STATE(2839), 1, + STATE(2853), 1, sym_comment, - ACTIONS(2165), 2, + ACTIONS(2136), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5968), 2, + ACTIONS(5958), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2159), 46, + ACTIONS(2130), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -307566,21 +309840,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [84343] = 8, + [87930] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5882), 1, - anon_sym_DOT, - STATE(2840), 1, + STATE(2854), 1, sym_comment, - STATE(2895), 1, - aux_sym_cell_path_repeat1, - STATE(3043), 1, - sym_path, - STATE(3097), 1, - sym_cell_path, - ACTIONS(1988), 14, + ACTIONS(1739), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -307594,7 +309863,8 @@ 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(1990), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1741), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -307602,8 +309872,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -307628,44 +309898,31 @@ 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, - [84413] = 5, - ACTIONS(247), 1, + [87992] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5970), 1, - aux_sym__immediate_decimal_token2, - STATE(2841), 1, + STATE(2855), 1, sym_comment, - ACTIONS(1783), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1785), 33, + ACTIONS(1741), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1739), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -307675,10 +309932,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307687,20 +309955,21 @@ 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, - [84477] = 8, + aux_sym__unquoted_in_list_token1, + [88054] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5882), 1, + ACTIONS(5939), 1, anon_sym_DOT, - STATE(2842), 1, + STATE(2856), 1, sym_comment, - STATE(2895), 1, + STATE(2871), 1, aux_sym_cell_path_repeat1, - STATE(3043), 1, + STATE(3077), 1, sym_path, - STATE(3100), 1, + STATE(3142), 1, sym_cell_path, - ACTIONS(1992), 14, + ACTIONS(1931), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -307715,7 +309984,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(1994), 33, + ACTIONS(1933), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -307749,21 +310018,22 @@ 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, - [84547] = 8, + [88124] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5882), 1, - anon_sym_DOT, - STATE(2843), 1, + ACTIONS(1559), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5960), 1, + anon_sym_DOT_DOT2, + STATE(2857), 1, sym_comment, - STATE(2895), 1, - aux_sym_cell_path_repeat1, - STATE(3043), 1, - sym_path, - STATE(3101), 1, - sym_cell_path, - ACTIONS(1996), 14, + ACTIONS(5962), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1820), 16, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -307777,7 +310047,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(1998), 33, + ACTIONS(1828), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -307785,8 +310055,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -307811,143 +310079,78 @@ 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, - [84617] = 7, + [88192] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5878), 1, - sym__entry_separator, - ACTIONS(5880), 1, + ACTIONS(5964), 1, + anon_sym_DOT, + STATE(2979), 1, + sym_path, + ACTIONS(973), 2, sym_raw_string_begin, - ACTIONS(5972), 1, - anon_sym_RBRACK, - STATE(2803), 1, - aux_sym__multiple_types_repeat1, - STATE(2844), 1, - sym_comment, - ACTIONS(5874), 47, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [84685] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5878), 1, sym__entry_separator, - ACTIONS(5880), 1, - sym_raw_string_begin, - ACTIONS(5974), 1, - anon_sym_RBRACK, - STATE(2803), 1, - aux_sym__multiple_types_repeat1, - STATE(2845), 1, + STATE(2858), 2, sym_comment, - ACTIONS(5874), 47, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + aux_sym_cell_path_repeat1, + ACTIONS(971), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84753] = 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [88258] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5882), 1, - anon_sym_DOT, - STATE(2846), 1, + ACTIONS(5967), 1, + aux_sym__immediate_decimal_token2, + STATE(2859), 1, sym_comment, - STATE(2895), 1, - aux_sym_cell_path_repeat1, - STATE(3043), 1, - sym_path, - STATE(3115), 1, - sym_cell_path, - ACTIONS(2000), 14, + ACTIONS(1785), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -307961,7 +310164,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(2002), 33, + ACTIONS(1787), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -307969,8 +310172,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -307995,20 +310198,17 @@ 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, - [84823] = 8, + [88322] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5882), 1, - anon_sym_DOT, - STATE(2847), 1, + ACTIONS(5969), 1, + sym__newline, + STATE(2860), 2, sym_comment, - STATE(2895), 1, - aux_sym_cell_path_repeat1, - STATE(3043), 1, - sym_path, - STATE(3117), 1, - sym_cell_path, - ACTIONS(2004), 14, + aux_sym_shebang_repeat1, + ACTIONS(1294), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -308022,14 +310222,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2006), 33, + aux_sym_unquoted_token1, + ACTIONS(1296), 33, sym_raw_string_begin, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -308049,6 +310247,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308057,16 +310257,21 @@ 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, - [84893] = 4, + [88386] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2848), 1, + ACTIONS(5939), 1, + anon_sym_DOT, + STATE(2861), 1, sym_comment, - ACTIONS(1783), 18, + STATE(2871), 1, + aux_sym_cell_path_repeat1, + STATE(3077), 1, + sym_path, + STATE(3144), 1, + sym_cell_path, + ACTIONS(1899), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -308080,8 +310285,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, - aux_sym__unquoted_in_list_token2, - ACTIONS(1785), 33, + ACTIONS(1901), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -308089,8 +310293,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -308115,20 +310319,20 @@ 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, - [84955] = 8, + [88456] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5882), 1, + ACTIONS(5939), 1, anon_sym_DOT, - STATE(2849), 1, + STATE(2862), 1, sym_comment, - STATE(2895), 1, + STATE(2871), 1, aux_sym_cell_path_repeat1, - STATE(3043), 1, + STATE(3077), 1, sym_path, - STATE(3094), 1, + STATE(3140), 1, sym_cell_path, - ACTIONS(1948), 14, + ACTIONS(2038), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -308143,7 +310347,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(1950), 33, + ACTIONS(2040), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -308177,19 +310381,17 @@ 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, - [85025] = 6, + [88526] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2216), 1, - anon_sym_LPAREN2, - ACTIONS(2220), 1, - aux_sym__unquoted_in_list_token4, - STATE(2850), 1, + STATE(2863), 1, sym_comment, - ACTIONS(2218), 2, + ACTIONS(1787), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2214), 46, + ACTIONS(1785), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -308197,6 +310399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -308236,73 +310439,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [85090] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2851), 1, - sym_comment, - ACTIONS(1006), 7, - 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, - anon_sym_DOT, - ACTIONS(1008), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [85151] = 4, + [88588] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2852), 1, + STATE(2864), 1, sym_comment, - ACTIONS(1741), 3, + ACTIONS(1737), 4, sym_raw_string_begin, - anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1739), 47, + ACTIONS(1733), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -308310,6 +310457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -308349,29 +310497,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [85212] = 8, + [88650] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1032), 1, - sym__entry_separator, - ACTIONS(2202), 1, - anon_sym_LPAREN2, - ACTIONS(2204), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(5940), 1, - anon_sym_RBRACK, - ACTIONS(5943), 1, - sym_raw_string_begin, - STATE(2853), 1, + STATE(2865), 1, sym_comment, - ACTIONS(5938), 45, + ACTIONS(1046), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1044), 47, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -308411,29 +310555,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [85281] = 4, - ACTIONS(3), 1, + [88712] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2854), 1, + ACTIONS(5939), 1, + anon_sym_DOT, + STATE(2866), 1, sym_comment, - ACTIONS(1757), 3, + STATE(2871), 1, + aux_sym_cell_path_repeat1, + STATE(3077), 1, + sym_path, + STATE(3145), 1, + sym_cell_path, + ACTIONS(1907), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1909), 33, sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1755), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -308443,21 +310605,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308466,18 +310617,21 @@ 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, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [85342] = 4, + [88782] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(2855), 1, + ACTIONS(5939), 1, + anon_sym_DOT, + STATE(2867), 1, sym_comment, - ACTIONS(2125), 17, + STATE(2871), 1, + aux_sym_cell_path_repeat1, + STATE(3077), 1, + sym_path, + STATE(3112), 1, + sym_cell_path, + ACTIONS(1887), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -308491,7 +310645,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(2127), 33, + ACTIONS(1889), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -308499,8 +310653,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -308525,51 +310679,19 @@ 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, - [85403] = 9, - ACTIONS(3), 1, + [88852] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5556), 1, - anon_sym_LPAREN2, - ACTIONS(5928), 1, - anon_sym_RBRACK, - ACTIONS(5934), 1, - sym__entry_separator, - ACTIONS(5978), 1, - anon_sym_COMMA, - ACTIONS(5980), 1, - sym_raw_string_begin, - STATE(2856), 1, + STATE(2868), 1, sym_comment, - STATE(7436), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5976), 44, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1290), 16, anon_sym_DOLLAR, - anon_sym_LBRACE, + anon_sym_DASH2, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -308578,38 +310700,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [85474] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2857), 1, - sym_comment, - ACTIONS(1785), 3, + aux_sym_unquoted_token1, + ACTIONS(1288), 34, sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1783), 47, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -308619,21 +310722,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308642,90 +310736,100 @@ 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, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [85535] = 6, - ACTIONS(3), 1, + [88913] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2216), 1, - anon_sym_LPAREN2, - ACTIONS(2220), 1, - aux_sym__unquoted_in_list_token4, - STATE(2858), 1, + ACTIONS(5580), 1, + aux_sym_unquoted_token2, + STATE(2869), 1, sym_comment, - ACTIONS(2224), 2, + ACTIONS(1707), 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(1719), 43, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2222), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + [88976] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2870), 1, + sym_comment, + ACTIONS(1841), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, anon_sym_o_GT, anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - [85600] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2859), 1, - sym_comment, - ACTIONS(1892), 3, + ACTIONS(1843), 33, sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1890), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -308735,21 +310839,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308758,18 +310851,19 @@ 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, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [85661] = 4, + [89037] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(2860), 1, + ACTIONS(5939), 1, + anon_sym_DOT, + STATE(2871), 1, sym_comment, - ACTIONS(1755), 17, + STATE(2887), 1, + aux_sym_cell_path_repeat1, + STATE(3077), 1, + sym_path, + ACTIONS(967), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -308783,7 +310877,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(1757), 33, + ACTIONS(969), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -308791,8 +310885,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -308817,40 +310911,32 @@ 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, - [85722] = 4, - ACTIONS(247), 1, + [89104] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2861), 1, + ACTIONS(5972), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5974), 1, + aux_sym__immediate_decimal_token2, + STATE(2872), 1, sym_comment, - ACTIONS(1290), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1288), 34, + ACTIONS(1741), 2, sym_raw_string_begin, - sym__newline, + sym__entry_separator, + ACTIONS(1739), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, - aux_sym_expr_unary_token1, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -308860,12 +310946,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308874,19 +310969,24 @@ 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, - [85783] = 6, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [89169] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5878), 1, - sym__entry_separator, - ACTIONS(5880), 1, - sym_raw_string_begin, - STATE(2803), 1, - aux_sym__multiple_types_repeat1, - STATE(2862), 1, + ACTIONS(5976), 1, + sym__newline, + STATE(2873), 2, sym_comment, - ACTIONS(5874), 47, + aux_sym_shebang_repeat1, + ACTIONS(1294), 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(1296), 42, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -308894,13 +310994,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -308919,11 +311016,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, aux_sym__val_number_decimal_token1, @@ -308933,14 +311028,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85848] = 4, - ACTIONS(247), 1, + [89232] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2863), 1, + STATE(2874), 1, sym_comment, - ACTIONS(1739), 17, + ACTIONS(1787), 3, + sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1785), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [89293] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5979), 1, anon_sym_DOT_DOT2, + STATE(2875), 1, + sym_comment, + ACTIONS(5981), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5916), 16, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -308956,7 +311112,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(1741), 33, + ACTIONS(5926), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -308964,8 +311120,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -308990,17 +311144,19 @@ 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, - [85909] = 5, + [89358] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5982), 1, - anon_sym_QMARK2, - STATE(2864), 1, + ACTIONS(1804), 1, + anon_sym_LPAREN2, + ACTIONS(1812), 1, + aux_sym__unquoted_in_list_token2, + STATE(2876), 1, sym_comment, - ACTIONS(980), 2, + ACTIONS(1810), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(978), 47, + ACTIONS(1802), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -309008,7 +311164,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -309048,25 +311203,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [85972] = 5, + [89423] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5984), 1, - anon_sym_QMARK2, - STATE(2865), 1, - sym_comment, - ACTIONS(986), 2, - sym_raw_string_begin, + ACTIONS(1028), 1, sym__entry_separator, - ACTIONS(984), 47, - anon_sym_LBRACK, + ACTIONS(2226), 1, + anon_sym_LPAREN2, + ACTIONS(2228), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(5930), 1, anon_sym_RBRACK, + ACTIONS(5933), 1, + sym_raw_string_begin, + STATE(2877), 1, + sym_comment, + ACTIONS(5928), 45, + anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -309106,16 +311264,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [86035] = 4, + [89492] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2866), 1, + ACTIONS(5983), 1, + anon_sym_DOT, + ACTIONS(5985), 1, + aux_sym__immediate_decimal_token2, + STATE(2878), 1, sym_comment, - ACTIONS(1783), 17, + ACTIONS(1765), 15, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -309129,7 +311288,8 @@ 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(1785), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1767), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -309137,8 +311297,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -309163,16 +311323,74 @@ 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, - [86096] = 4, - ACTIONS(247), 1, + [89557] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2867), 1, + STATE(2879), 1, sym_comment, - ACTIONS(1890), 17, + ACTIONS(1843), 3, + sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1841), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [89618] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5987), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5989), 1, + aux_sym__immediate_decimal_token2, + STATE(2880), 1, + sym_comment, + ACTIONS(1739), 15, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -309186,7 +311404,8 @@ 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(1892), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1741), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -309194,8 +311413,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -309220,23 +311439,26 @@ 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, - [86157] = 6, + [89683] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1579), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2236), 1, + ACTIONS(5539), 1, anon_sym_LPAREN2, - STATE(2868), 1, - sym_comment, - ACTIONS(2238), 2, - sym_raw_string_begin, + ACTIONS(5918), 1, + anon_sym_RBRACK, + ACTIONS(5924), 1, sym__entry_separator, - ACTIONS(2234), 46, + ACTIONS(5993), 1, + anon_sym_COMMA, + ACTIONS(5995), 1, + sym_raw_string_begin, + STATE(2881), 1, + sym_comment, + STATE(7651), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5991), 44, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, @@ -309279,22 +311501,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [86222] = 5, + [89754] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5986), 1, - sym__newline, - STATE(2869), 2, + ACTIONS(5997), 1, + anon_sym_LBRACK2, + STATE(2882), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1294), 6, + ACTIONS(2322), 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(1296), 42, + ACTIONS(2326), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -309330,6 +311551,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -309337,10 +311559,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [86285] = 4, + [89817] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2870), 1, + ACTIONS(5979), 1, + anon_sym_DOT_DOT2, + STATE(2883), 1, + sym_comment, + ACTIONS(5981), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5928), 16, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(5933), 31, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [89882] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2884), 1, sym_comment, ACTIONS(1010), 7, aux_sym_cmd_identifier_token1, @@ -309394,21 +311675,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [86346] = 4, - ACTIONS(247), 1, + [89943] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2871), 1, + ACTIONS(2244), 1, + aux_sym_unquoted_token4, + STATE(2885), 1, sym_comment, - ACTIONS(1014), 7, - 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, - anon_sym_DOT, - ACTIONS(1016), 43, + ACTIONS(2242), 4, sym_raw_string_begin, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2238), 45, + aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -309416,10 +311696,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -309438,9 +311721,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -309448,25 +311733,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + [90006] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2228), 1, + aux_sym_unquoted_token4, + STATE(2886), 1, + sym_comment, + ACTIONS(1028), 4, + sym_raw_string_begin, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [86407] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5616), 1, - aux_sym_unquoted_token2, - STATE(2872), 1, - sym_comment, - ACTIONS(1709), 6, + ACTIONS(1026), 45, 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(1721), 43, - sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -309474,10 +311754,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -309496,9 +311779,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -309506,23 +311791,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [86470] = 6, + [90069] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5989), 1, - anon_sym_DOT_DOT2, - STATE(2873), 1, + ACTIONS(5999), 1, + anon_sym_DOT, + STATE(3077), 1, + sym_path, + STATE(2887), 2, sym_comment, - ACTIONS(5991), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2159), 16, + aux_sym_cell_path_repeat1, + ACTIONS(971), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -309536,126 +311816,14 @@ 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(2165), 31, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [86535] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2254), 1, - anon_sym_LPAREN2, - ACTIONS(2258), 1, - aux_sym__unquoted_in_list_token2, - STATE(2874), 1, - sym_comment, - ACTIONS(2256), 2, + ACTIONS(973), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2252), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [86600] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2875), 1, - sym_comment, - ACTIONS(1290), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1288), 34, - sym_raw_string_begin, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -309674,8 +311842,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -309684,73 +311850,19 @@ 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, - [86661] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5993), 1, - anon_sym_LBRACK2, - STATE(2876), 1, - sym_comment, - ACTIONS(2337), 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(2341), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [86724] = 4, + [90134] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2877), 1, + ACTIONS(1559), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1822), 1, + anon_sym_LPAREN2, + STATE(2888), 1, sym_comment, - ACTIONS(996), 2, + ACTIONS(1828), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(994), 48, + ACTIONS(1820), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -309758,8 +311870,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -309799,78 +311909,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [86785] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5995), 1, - anon_sym_DOT_DOT2, - STATE(2878), 1, - sym_comment, - ACTIONS(5997), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5926), 16, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(5936), 31, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [86850] = 5, + [90199] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2212), 1, + ACTIONS(2252), 1, aux_sym_unquoted_token4, - STATE(2879), 1, + STATE(2889), 1, sym_comment, - ACTIONS(2210), 4, + ACTIONS(2250), 4, sym_raw_string_begin, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2206), 45, + ACTIONS(2246), 45, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -309916,19 +311967,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - [86913] = 5, + [90262] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2204), 1, + ACTIONS(2252), 1, aux_sym_unquoted_token4, - STATE(2880), 1, + STATE(2890), 1, sym_comment, - ACTIONS(1032), 4, + ACTIONS(2256), 4, sym_raw_string_begin, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1030), 45, + ACTIONS(2254), 45, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -309974,15 +312025,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - [86976] = 4, + [90325] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2881), 1, + ACTIONS(1661), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2260), 1, + anon_sym_LPAREN2, + STATE(2891), 1, sym_comment, - ACTIONS(1000), 2, + ACTIONS(2262), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(998), 48, + ACTIONS(2258), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -309990,8 +312045,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -310031,74 +312084,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [87037] = 4, + [90390] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2882), 1, - sym_comment, - ACTIONS(1004), 2, - sym_raw_string_begin, + ACTIONS(5883), 1, sym__entry_separator, - ACTIONS(1002), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(5885), 1, + sym_raw_string_begin, + STATE(2850), 1, + aux_sym__multiple_types_repeat1, + STATE(2892), 1, + sym_comment, + ACTIONS(5879), 47, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [87098] = 6, + [90455] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5995), 1, + ACTIONS(6002), 1, anon_sym_DOT_DOT2, - STATE(2883), 1, + STATE(2893), 1, sym_comment, - ACTIONS(5997), 2, + ACTIONS(6004), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5938), 16, + ACTIONS(2122), 16, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -310115,7 +312170,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(5943), 31, + ACTIONS(2128), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -310147,45 +312202,24 @@ 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, - [87163] = 4, - ACTIONS(3), 1, + [90520] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2884), 1, + ACTIONS(6006), 1, + anon_sym_DOT_DOT2, + STATE(2894), 1, sym_comment, - ACTIONS(2250), 3, - sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2248), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(6008), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2157), 16, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -310194,40 +312228,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token4, - [87224] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2885), 1, - sym_comment, - ACTIONS(992), 2, + ACTIONS(2163), 31, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(990), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -310237,21 +312249,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -310260,21 +312261,22 @@ 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, - aux_sym__unquoted_in_list_token1, - [87285] = 5, - ACTIONS(3), 1, + [90585] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - STATE(2886), 1, + ACTIONS(6010), 1, + anon_sym_EQ2, + STATE(2895), 1, sym_comment, - ACTIONS(2218), 4, - sym_raw_string_begin, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2214), 45, + ACTIONS(5058), 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(5056), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -310282,13 +312284,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -310307,11 +312306,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -310319,19 +312316,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - [87348] = 5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [90648] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - STATE(2887), 1, + STATE(2896), 1, sym_comment, - ACTIONS(2224), 4, + ACTIONS(2270), 4, sym_raw_string_begin, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2222), 45, + ACTIONS(2268), 46, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -310377,12 +312375,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - [87411] = 4, + aux_sym_unquoted_token4, + [90709] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2888), 1, + STATE(2897), 1, sym_comment, - ACTIONS(2129), 17, + ACTIONS(1733), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -310400,7 +312399,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(2131), 33, + ACTIONS(1737), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -310434,19 +312433,19 @@ 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, - [87472] = 6, + [90770] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5999), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6001), 1, - aux_sym__immediate_decimal_token2, - STATE(2889), 1, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + ACTIONS(2252), 1, + aux_sym__unquoted_in_list_token4, + STATE(2898), 1, sym_comment, - ACTIONS(1741), 2, + ACTIONS(2250), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1739), 46, + ACTIONS(2246), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -310493,76 +312492,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [87537] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2890), 1, - sym_comment, - ACTIONS(1735), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1737), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [87598] = 6, + [90835] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, + ACTIONS(2248), 1, anon_sym_LPAREN2, - ACTIONS(1888), 1, - aux_sym__unquoted_in_list_token2, - STATE(2891), 1, + ACTIONS(2252), 1, + aux_sym__unquoted_in_list_token4, + STATE(2899), 1, sym_comment, - ACTIONS(2189), 2, + ACTIONS(2256), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2187), 46, + ACTIONS(2254), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -310609,12 +312551,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [87663] = 4, + [90900] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2892), 1, + STATE(2900), 1, sym_comment, - ACTIONS(2183), 17, + ACTIONS(1765), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -310632,7 +312574,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(2185), 33, + ACTIONS(1767), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -310666,76 +312608,16 @@ 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, - [87724] = 4, + [90961] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2893), 1, + STATE(2901), 1, sym_comment, - ACTIONS(2419), 2, + ACTIONS(1741), 3, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2417), 48, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_RBRACK, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [87785] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1880), 1, anon_sym_LPAREN2, - ACTIONS(1888), 1, - aux_sym__unquoted_in_list_token2, - STATE(2894), 1, - sym_comment, - ACTIONS(1886), 2, - sym_raw_string_begin, sym__entry_separator, - ACTIONS(1878), 46, + ACTIONS(1739), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -310782,45 +312664,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [87850] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5882), 1, - anon_sym_DOT, - STATE(2895), 1, - sym_comment, - STATE(2904), 1, - aux_sym_cell_path_repeat1, - STATE(3043), 1, - sym_path, - ACTIONS(967), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(969), 33, + aux_sym__unquoted_in_list_token2, + [91022] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2274), 1, + anon_sym_LPAREN2, + ACTIONS(2278), 1, + aux_sym__unquoted_in_list_token2, + STATE(2902), 1, + sym_comment, + ACTIONS(2276), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2272), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -310830,10 +312700,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -310842,16 +312723,15 @@ 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, - [87917] = 6, + aux_sym__unquoted_in_list_token1, + [91087] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6003), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6005), 1, - aux_sym__immediate_decimal_token2, - STATE(2896), 1, + STATE(2903), 1, sym_comment, - ACTIONS(1739), 15, + ACTIONS(1290), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -310865,16 +312745,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1741), 33, + aux_sym_unquoted_token1, + ACTIONS(1288), 34, sym_raw_string_begin, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, + aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -310893,6 +312771,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -310901,14 +312781,18 @@ 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, - [87982] = 4, + [91148] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2897), 1, + ACTIONS(6012), 1, + anon_sym_DOT_DOT2, + STATE(2904), 1, sym_comment, - ACTIONS(1018), 17, + ACTIONS(6014), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2130), 16, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -310924,7 +312808,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(1020), 33, + ACTIONS(2136), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -310932,8 +312816,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -310958,19 +312840,15 @@ 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, - [88043] = 6, + [91213] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6007), 1, - anon_sym_DOT, - ACTIONS(6009), 1, - aux_sym__immediate_decimal_token2, - STATE(2898), 1, + STATE(2905), 1, sym_comment, - ACTIONS(1757), 2, + ACTIONS(992), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1755), 46, + ACTIONS(990), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -310978,6 +312856,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -311017,77 +312897,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [88108] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6011), 1, - anon_sym_EQ2, - STATE(2899), 1, - sym_comment, - ACTIONS(5016), 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(5014), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [88171] = 6, + [91274] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1868), 1, - anon_sym_LPAREN2, - STATE(2900), 1, + ACTIONS(6016), 1, + anon_sym_DOT, + ACTIONS(6018), 1, + aux_sym__immediate_decimal_token2, + STATE(2906), 1, sym_comment, - ACTIONS(1874), 2, + ACTIONS(1767), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1866), 46, + ACTIONS(1765), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -311134,16 +312956,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [88236] = 6, + [91339] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6013), 1, + ACTIONS(6020), 1, anon_sym_DOT, - ACTIONS(6015), 1, + ACTIONS(6022), 1, aux_sym__immediate_decimal_token2, - STATE(2901), 1, + STATE(2907), 1, sym_comment, - ACTIONS(1607), 8, + ACTIONS(1573), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -311152,7 +312974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1609), 40, + ACTIONS(1575), 40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -311193,16 +313015,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [88301] = 6, + [91404] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6017), 1, + ACTIONS(6024), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6019), 1, + ACTIONS(6026), 1, aux_sym__immediate_decimal_token2, - STATE(2902), 1, + STATE(2908), 1, sym_comment, - ACTIONS(1621), 8, + ACTIONS(1585), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -311211,7 +313033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1623), 40, + ACTIONS(1587), 40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -311252,18 +313074,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [88366] = 4, + [91469] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2903), 1, + STATE(2909), 1, sym_comment, - ACTIONS(2250), 4, + ACTIONS(2270), 3, + sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2268), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token4, + [91530] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2910), 1, + sym_comment, + ACTIONS(2118), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2120), 33, sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2248), 46, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [91591] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2911), 1, + sym_comment, + ACTIONS(1006), 7, 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, + anon_sym_DOT, + ACTIONS(1008), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -311271,13 +313210,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -311296,11 +313232,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -311308,19 +313242,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym_unquoted_token4, - [88427] = 6, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [91652] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6021), 1, - anon_sym_DOT, - STATE(3043), 1, - sym_path, - STATE(2904), 2, + STATE(2912), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(971), 14, + ACTIONS(2183), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -311334,7 +313268,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(973), 33, + ACTIONS(2185), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -311342,8 +313276,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -311368,17 +313302,16 @@ 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, - [88492] = 6, + [91713] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6024), 1, - anon_sym_DOT, - ACTIONS(6026), 1, - aux_sym__immediate_decimal_token2, - STATE(2905), 1, + STATE(2913), 1, sym_comment, - ACTIONS(1755), 15, + ACTIONS(1044), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -311392,8 +313325,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, - aux_sym__unquoted_in_list_token2, - ACTIONS(1757), 33, + ACTIONS(1046), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -311401,8 +313333,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -311427,18 +313359,71 @@ 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, - [88557] = 6, + [91774] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6028), 1, - anon_sym_DOT_DOT2, - STATE(2906), 1, + STATE(2914), 1, sym_comment, - ACTIONS(6030), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2167), 16, + ACTIONS(1014), 7, + 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, + anon_sym_DOT, + ACTIONS(1016), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [91835] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2915), 1, + sym_comment, + ACTIONS(2052), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -311454,7 +313439,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(2173), 31, + ACTIONS(2054), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -311462,6 +313447,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -311486,24 +313473,46 @@ 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, - [88622] = 6, - ACTIONS(247), 1, + [91896] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6032), 1, - anon_sym_DOT_DOT2, - STATE(2907), 1, + STATE(2916), 1, sym_comment, - ACTIONS(6034), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2175), 16, + ACTIONS(996), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(994), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -311512,18 +313521,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2181), 31, + [91957] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2917), 1, + sym_comment, + ACTIONS(1000), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(998), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -311533,10 +313563,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -311545,18 +313586,15 @@ 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, - [88687] = 6, + aux_sym__unquoted_in_list_token1, + [92018] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6036), 1, - anon_sym_DOT_DOT2, - STATE(2908), 1, + STATE(2918), 1, sym_comment, - ACTIONS(6038), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2133), 16, + ACTIONS(1739), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -311572,7 +313610,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(2139), 31, + ACTIONS(1741), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -311580,6 +313618,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -311604,19 +313644,19 @@ 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, - [88752] = 6, + [92079] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2208), 1, + ACTIONS(1804), 1, anon_sym_LPAREN2, - ACTIONS(2212), 1, - aux_sym__unquoted_in_list_token4, - STATE(2909), 1, + ACTIONS(1812), 1, + aux_sym__unquoted_in_list_token2, + STATE(2919), 1, sym_comment, - ACTIONS(2210), 2, + ACTIONS(2232), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2206), 46, + ACTIONS(2230), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -311663,20 +313703,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [88817] = 4, + [92144] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2910), 1, + ACTIONS(6028), 1, + anon_sym_DOT_DOT2, + STATE(2920), 1, sym_comment, - ACTIONS(2363), 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(2365), 43, + ACTIONS(6030), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2146), 16, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2152), 31, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [92209] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2921), 1, + sym_comment, + ACTIONS(2462), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2460), 48, + aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -311684,10 +313779,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -311706,12 +313804,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_RBRACK, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -311719,26 +313819,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [88877] = 7, + [92270] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6042), 1, - anon_sym_RBRACE, - ACTIONS(6044), 1, - sym__entry_separator, - ACTIONS(6046), 1, - sym_raw_string_begin, - STATE(2911), 1, + ACTIONS(6032), 1, + anon_sym_QMARK2, + STATE(2922), 1, sym_comment, - STATE(2996), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6040), 45, + ACTIONS(980), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(978), 47, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -311777,17 +313876,16 @@ 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, - aux_sym_unquoted_token1, - [88943] = 4, + aux_sym__unquoted_in_list_token1, + [92333] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2912), 1, + STATE(2923), 1, sym_comment, - ACTIONS(6050), 3, + ACTIONS(1004), 2, sym_raw_string_begin, - anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(6048), 46, + ACTIONS(1002), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -311795,6 +313893,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -311834,17 +313934,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [89003] = 5, + [92394] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5566), 1, - aux_sym__unquoted_in_list_token2, - STATE(2913), 1, + ACTIONS(6034), 1, + anon_sym_QMARK2, + STATE(2924), 1, sym_comment, - ACTIONS(1721), 2, + ACTIONS(986), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1709), 46, + ACTIONS(984), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -311852,6 +313952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -311891,72 +313992,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [89065] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2914), 1, - sym_comment, - ACTIONS(1030), 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(1032), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [89125] = 4, + [92457] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2915), 1, + STATE(2925), 1, sym_comment, - ACTIONS(6054), 3, + ACTIONS(1767), 3, sym_raw_string_begin, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(6052), 46, + ACTIONS(1765), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -312003,45 +314048,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [89185] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token2, + [92518] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(2916), 1, + STATE(2926), 1, sym_comment, - ACTIONS(1012), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1010), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(1785), 17, anon_sym_DOT_DOT, - anon_sym_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -312050,38 +314071,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [89245] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2917), 1, - sym_comment, - ACTIONS(1016), 2, + ACTIONS(1787), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1014), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -312091,21 +314094,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -312114,42 +314106,32 @@ 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, - aux_sym__unquoted_in_list_token1, - [89305] = 4, - ACTIONS(247), 1, + [92579] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2918), 1, + ACTIONS(2240), 1, + anon_sym_LPAREN2, + ACTIONS(2244), 1, + aux_sym__unquoted_in_list_token4, + STATE(2927), 1, sym_comment, - ACTIONS(990), 15, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(992), 34, + ACTIONS(2242), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2238), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_QMARK2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -312159,10 +314141,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -312171,19 +314164,20 @@ 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, - [89365] = 4, + aux_sym__unquoted_in_list_token1, + [92644] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2919), 1, + STATE(2928), 1, sym_comment, - ACTIONS(2504), 6, + ACTIONS(1899), 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(2506), 43, + ACTIONS(1901), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -312227,20 +314221,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [89425] = 7, + [92704] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6044), 1, + ACTIONS(6038), 1, + anon_sym_RBRACE, + ACTIONS(6040), 1, sym__entry_separator, - ACTIONS(6046), 1, + ACTIONS(6042), 1, sym_raw_string_begin, - ACTIONS(6056), 1, - anon_sym_RBRACE, - STATE(2920), 1, + STATE(2929), 1, sym_comment, - STATE(2996), 1, + STATE(2999), 1, aux_sym__multiple_types_repeat1, - ACTIONS(6040), 45, + ACTIONS(6036), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -312286,20 +314280,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [89491] = 7, + [92770] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6044), 1, + ACTIONS(6040), 1, sym__entry_separator, - ACTIONS(6046), 1, + ACTIONS(6042), 1, sym_raw_string_begin, - ACTIONS(6058), 1, + ACTIONS(6044), 1, anon_sym_RBRACE, - STATE(2921), 1, + STATE(2930), 1, sym_comment, - STATE(2996), 1, + STATE(2999), 1, aux_sym__multiple_types_repeat1, - ACTIONS(6040), 45, + ACTIONS(6036), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -312345,81 +314339,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [89557] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2922), 1, - sym_comment, - ACTIONS(994), 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(996), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [89617] = 7, + [92836] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6044), 1, - sym__entry_separator, ACTIONS(6046), 1, - sym_raw_string_begin, - ACTIONS(6060), 1, - anon_sym_RBRACE, - STATE(2923), 1, + aux_sym__immediate_decimal_token2, + STATE(2931), 1, sym_comment, - STATE(2996), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6040), 45, + ACTIONS(1787), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1785), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -312459,27 +314395,24 @@ 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, - aux_sym_unquoted_token1, - [89683] = 7, + aux_sym__unquoted_in_list_token1, + [92898] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6044), 1, - sym__entry_separator, - ACTIONS(6046), 1, - sym_raw_string_begin, - ACTIONS(6062), 1, - anon_sym_RBRACE, - STATE(2924), 1, + STATE(2932), 1, sym_comment, - STATE(2996), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6040), 45, + ACTIONS(1016), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1014), 47, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -312518,17 +314451,129 @@ 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, - aux_sym_unquoted_token1, - [89749] = 6, + aux_sym__unquoted_in_list_token1, + [92958] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6064), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6066), 1, + STATE(2933), 1, + sym_comment, + ACTIONS(2486), 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(2488), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [93018] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2934), 1, + sym_comment, + ACTIONS(2510), 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(2512), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [93078] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6048), 1, + anon_sym_DOT, + ACTIONS(6050), 1, aux_sym__immediate_decimal_token2, - STATE(2925), 1, + STATE(2935), 1, sym_comment, - ACTIONS(1739), 14, + ACTIONS(1765), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -312543,7 +314588,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(1741), 33, + ACTIONS(1767), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -312577,78 +314622,75 @@ 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, - [89813] = 7, - ACTIONS(3), 1, + [93142] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6044), 1, - sym__entry_separator, - ACTIONS(6046), 1, - sym_raw_string_begin, - ACTIONS(6068), 1, - anon_sym_RBRACE, - STATE(2926), 1, + STATE(2936), 1, sym_comment, - STATE(2996), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6040), 45, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(2414), 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(2416), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [89879] = 4, + [93202] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2927), 1, + STATE(2937), 1, sym_comment, - ACTIONS(2090), 6, + ACTIONS(1026), 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(2092), 43, + ACTIONS(1028), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -312692,19 +314734,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [89939] = 4, + [93262] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2928), 1, + STATE(2938), 1, sym_comment, - ACTIONS(2383), 6, + ACTIONS(2390), 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(2385), 43, + ACTIONS(2392), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -312748,19 +314790,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [89999] = 4, + [93322] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2929), 1, + STATE(2939), 1, sym_comment, - ACTIONS(2480), 6, + ACTIONS(998), 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(2482), 43, + ACTIONS(1000), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -312804,23 +314846,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [90059] = 5, + [93382] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6009), 1, - aux_sym__immediate_decimal_token2, - STATE(2930), 1, - sym_comment, - ACTIONS(1757), 2, - sym_raw_string_begin, + ACTIONS(6040), 1, sym__entry_separator, - ACTIONS(1755), 46, + ACTIONS(6042), 1, + sym_raw_string_begin, + ACTIONS(6052), 1, + anon_sym_RBRACE, + STATE(2940), 1, + sym_comment, + STATE(2999), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6036), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -312860,26 +314904,24 @@ 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, - aux_sym__unquoted_in_list_token1, - [90121] = 7, + aux_sym_unquoted_token1, + [93448] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6044), 1, - sym__entry_separator, - ACTIONS(6046), 1, - sym_raw_string_begin, - ACTIONS(6070), 1, - anon_sym_RBRACE, - STATE(2931), 1, + ACTIONS(5549), 1, + aux_sym__unquoted_in_list_token2, + STATE(2941), 1, sym_comment, - STATE(2996), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6040), 45, + ACTIONS(1719), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1707), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -312919,20 +314961,20 @@ 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, - aux_sym_unquoted_token1, - [90187] = 4, + aux_sym__unquoted_in_list_token1, + [93510] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2932), 1, + STATE(2942), 1, sym_comment, - ACTIONS(2399), 6, + ACTIONS(2406), 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(2401), 43, + ACTIONS(2408), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -312976,78 +315018,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [90247] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6044), 1, - sym__entry_separator, - ACTIONS(6046), 1, - sym_raw_string_begin, - ACTIONS(6072), 1, - anon_sym_RBRACE, - STATE(2933), 1, - sym_comment, - STATE(2996), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6040), 45, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [90313] = 4, + [93570] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2934), 1, + STATE(2943), 1, sym_comment, - ACTIONS(998), 6, + ACTIONS(1887), 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(1000), 43, + ACTIONS(1889), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -313091,19 +315074,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [90373] = 4, + [93630] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2935), 1, + STATE(2944), 1, sym_comment, - ACTIONS(2488), 6, + ACTIONS(2343), 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(2490), 43, + ACTIONS(2345), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -313147,76 +315130,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [90433] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6074), 1, - aux_sym__immediate_decimal_token2, - STATE(2936), 1, - sym_comment, - ACTIONS(1785), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1783), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [90495] = 4, + [93690] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2937), 1, + STATE(2945), 1, sym_comment, - ACTIONS(2496), 6, + ACTIONS(2440), 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(2498), 43, + ACTIONS(2442), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -313260,19 +315186,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [90555] = 4, + [93750] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2938), 1, + STATE(2946), 1, sym_comment, - ACTIONS(1948), 6, + ACTIONS(1915), 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(1950), 43, + ACTIONS(1917), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -313316,19 +315242,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [90615] = 4, + [93810] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2939), 1, + STATE(2947), 1, sym_comment, - ACTIONS(2387), 6, + ACTIONS(1927), 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(2389), 43, + ACTIONS(1929), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -313372,19 +315298,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [90675] = 4, + [93870] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2940), 1, + STATE(2948), 1, sym_comment, - ACTIONS(2367), 6, + ACTIONS(1942), 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(2369), 43, + ACTIONS(1944), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -313428,19 +315354,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [90735] = 4, + [93930] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2941), 1, + STATE(2949), 1, sym_comment, - ACTIONS(1972), 6, + ACTIONS(2490), 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(1974), 43, + ACTIONS(2492), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -313484,19 +315410,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [90795] = 4, + [93990] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2942), 1, + STATE(2950), 1, sym_comment, - ACTIONS(1988), 6, + ACTIONS(2034), 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(1990), 43, + ACTIONS(2036), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -313540,19 +315466,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [90855] = 4, + [94050] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2943), 1, + STATE(2951), 1, sym_comment, - ACTIONS(1992), 6, + ACTIONS(2367), 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(1994), 43, + ACTIONS(2369), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -313596,19 +315522,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [90915] = 4, + [94110] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2944), 1, + STATE(2952), 1, sym_comment, - ACTIONS(2437), 6, + ACTIONS(2379), 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(2439), 43, + ACTIONS(2381), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -313652,19 +315578,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [90975] = 4, + [94170] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2945), 1, + STATE(2953), 1, sym_comment, - ACTIONS(2004), 6, + ACTIONS(2038), 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(2006), 43, + ACTIONS(2040), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -313708,19 +315634,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [91035] = 4, + [94230] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2946), 1, + ACTIONS(5985), 1, + aux_sym__immediate_decimal_token2, + STATE(2954), 1, sym_comment, - ACTIONS(2456), 6, + ACTIONS(1765), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1767), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [94292] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2955), 1, + sym_comment, + ACTIONS(2448), 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(2458), 43, + ACTIONS(2450), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -313764,19 +315747,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [91095] = 4, + [94352] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2947), 1, + STATE(2956), 1, sym_comment, - ACTIONS(2460), 6, + ACTIONS(2452), 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(2462), 43, + ACTIONS(2454), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -313820,19 +315803,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [91155] = 4, + [94412] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2948), 1, + STATE(2957), 1, sym_comment, - ACTIONS(2068), 6, + ACTIONS(1907), 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(2070), 43, + ACTIONS(1909), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -313876,19 +315859,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [91215] = 4, + [94472] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2949), 1, + STATE(2958), 1, sym_comment, - ACTIONS(1907), 6, + ACTIONS(2468), 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(1911), 43, + ACTIONS(2470), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -313932,19 +315915,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [91275] = 4, + [94532] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2950), 1, + STATE(2959), 1, sym_comment, - ACTIONS(2343), 6, + ACTIONS(2482), 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(2345), 43, + ACTIONS(2484), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -313988,19 +315971,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [91335] = 4, + [94592] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2960), 1, + sym_comment, + ACTIONS(6056), 3, + sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(6054), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [94652] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2951), 1, + STATE(2961), 1, sym_comment, - ACTIONS(2351), 6, + ACTIONS(1707), 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(2353), 43, + ACTIONS(1719), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -314044,19 +316083,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [91395] = 4, + [94712] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2952), 1, + STATE(2962), 1, sym_comment, - ACTIONS(1913), 6, + ACTIONS(2444), 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(1915), 43, + ACTIONS(2446), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -314100,19 +316139,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [91455] = 4, + [94772] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2953), 1, + STATE(2963), 1, sym_comment, - ACTIONS(2355), 6, + ACTIONS(5054), 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(2357), 43, + ACTIONS(5052), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -314156,19 +316195,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [91515] = 4, + [94832] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2954), 1, + STATE(2964), 1, sym_comment, - ACTIONS(2359), 6, + ACTIONS(1290), 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(2361), 43, + ACTIONS(1288), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -314204,7 +316243,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -314212,20 +316251,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [91575] = 7, + [94892] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6044), 1, + ACTIONS(6040), 1, sym__entry_separator, - ACTIONS(6046), 1, + ACTIONS(6042), 1, sym_raw_string_begin, - ACTIONS(6076), 1, + ACTIONS(6058), 1, anon_sym_RBRACE, - STATE(2955), 1, + STATE(2965), 1, sym_comment, - STATE(2996), 1, + STATE(2999), 1, aux_sym__multiple_types_repeat1, - ACTIONS(6040), 45, + ACTIONS(6036), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -314271,19 +316310,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [91641] = 4, + [94958] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2966), 1, + sym_comment, + ACTIONS(6062), 3, + sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(6060), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [95018] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2956), 1, + STATE(2967), 1, sym_comment, - ACTIONS(1709), 6, + ACTIONS(5064), 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(1721), 43, + ACTIONS(5062), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -314327,15 +316422,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [91701] = 5, + [95078] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6078), 1, - aux_sym__immediate_decimal_token2, - STATE(2957), 1, + STATE(2968), 1, sym_comment, - ACTIONS(1783), 15, + ACTIONS(1847), 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(1851), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [95138] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2969), 1, + sym_comment, + ACTIONS(1002), 15, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -314349,8 +316499,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, - aux_sym__unquoted_in_list_token2, - ACTIONS(1785), 33, + ACTIONS(1004), 34, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -314358,11 +316507,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [95198] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6040), 1, + sym__entry_separator, + ACTIONS(6042), 1, + sym_raw_string_begin, + ACTIONS(6064), 1, + anon_sym_RBRACE, + STATE(2970), 1, + sym_comment, + STATE(2999), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6036), 45, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -314372,10 +316569,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -314384,12 +316592,187 @@ 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, - [91763] = 4, + aux_sym_unquoted_token1, + [95264] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6040), 1, + sym__entry_separator, + ACTIONS(6042), 1, + sym_raw_string_begin, + ACTIONS(6066), 1, + anon_sym_RBRACE, + STATE(2971), 1, + sym_comment, + STATE(2999), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6036), 45, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token1, + [95330] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2958), 1, + STATE(2972), 1, sym_comment, - ACTIONS(998), 15, + ACTIONS(2472), 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(2474), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [95390] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6022), 1, + aux_sym__immediate_decimal_token2, + STATE(2973), 1, + sym_comment, + ACTIONS(1573), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1575), 40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [95452] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6068), 1, + anon_sym_QMARK2, + STATE(2974), 1, + sym_comment, + ACTIONS(978), 15, anon_sym_DOT_DOT, anon_sym_DOT, aux_sym__val_number_decimal_token1, @@ -314405,7 +316788,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(1000), 34, + ACTIONS(980), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -314413,7 +316796,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -314440,19 +316822,76 @@ 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, - [91823] = 4, + [95514] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(2959), 1, + ACTIONS(6070), 1, + aux_sym__immediate_decimal_token2, + STATE(2975), 1, sym_comment, - ACTIONS(1002), 6, + ACTIONS(1681), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1683), 40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [95576] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2976), 1, + sym_comment, + ACTIONS(1044), 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(1004), 43, + ACTIONS(1046), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -314496,10 +316935,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [91883] = 4, + [95636] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6072), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6074), 1, + aux_sym__immediate_decimal_token2, + STATE(2977), 1, + sym_comment, + ACTIONS(1585), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1587), 39, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [95700] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2960), 1, + ACTIONS(6040), 1, + sym__entry_separator, + ACTIONS(6042), 1, + sym_raw_string_begin, + ACTIONS(6076), 1, + anon_sym_RBRACE, + STATE(2978), 1, + sym_comment, + STATE(2999), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6036), 45, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token1, + [95766] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2979), 1, sym_comment, ACTIONS(1008), 2, sym_raw_string_begin, @@ -314552,19 +317108,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [91943] = 4, + [95826] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2961), 1, + STATE(2980), 1, sym_comment, - ACTIONS(5022), 6, + ACTIONS(2464), 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(5020), 43, + ACTIONS(2466), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -314608,19 +317164,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92003] = 4, + [95886] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2962), 1, + STATE(2981), 1, sym_comment, - ACTIONS(2094), 6, + ACTIONS(2464), 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(2096), 43, + ACTIONS(2466), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -314664,17 +317220,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92063] = 5, + [95946] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6080), 1, - sym__newline, - STATE(2963), 2, + ACTIONS(6078), 1, + anon_sym_QMARK2, + STATE(2982), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1294), 15, - anon_sym_DOLLAR, + ACTIONS(984), 15, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -314688,10 +317243,13 @@ 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(1296), 32, + ACTIONS(986), 33, sym_raw_string_begin, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -314711,8 +317269,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -314721,73 +317277,14 @@ 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, - [92125] = 4, + [96008] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2964), 1, - sym_comment, - ACTIONS(1018), 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(1020), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [92185] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6083), 1, - anon_sym_DOT, - ACTIONS(6085), 1, - aux_sym__immediate_decimal_token2, - STATE(2965), 1, + STATE(2983), 1, sym_comment, - ACTIONS(1755), 14, + ACTIONS(994), 15, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -314801,7 +317298,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(1757), 33, + ACTIONS(996), 34, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -314809,6 +317306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -314835,15 +317333,77 @@ 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, - [92249] = 5, + [96068] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6026), 1, - aux_sym__immediate_decimal_token2, - STATE(2966), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + ACTIONS(4858), 1, + anon_sym_DOT_DOT2, + ACTIONS(4866), 1, + aux_sym_unquoted_token2, + ACTIONS(6080), 1, + sym_filesize_unit, + ACTIONS(6082), 1, + sym_duration_unit, + STATE(2984), 1, + sym_comment, + STATE(7707), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4860), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1707), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1719), 36, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [96142] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2985), 1, sym_comment, - ACTIONS(1755), 15, + ACTIONS(998), 15, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -314857,8 +317417,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, - aux_sym__unquoted_in_list_token2, - ACTIONS(1757), 33, + ACTIONS(1000), 34, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -314866,6 +317425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -314892,19 +317452,19 @@ 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, - [92311] = 4, + [96202] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2967), 1, + STATE(2986), 1, sym_comment, - ACTIONS(2500), 6, + ACTIONS(2456), 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(2502), 43, + ACTIONS(2458), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -314948,19 +317508,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92371] = 4, + [96262] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2968), 1, + STATE(2987), 1, sym_comment, - ACTIONS(2395), 6, + ACTIONS(1002), 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(2397), 43, + ACTIONS(1004), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -315004,19 +317564,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92431] = 4, + [96322] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2969), 1, + STATE(2988), 1, sym_comment, - ACTIONS(2403), 6, + ACTIONS(2410), 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(2405), 43, + ACTIONS(2412), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -315060,19 +317620,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92491] = 4, + [96382] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2970), 1, + STATE(2989), 1, sym_comment, - ACTIONS(2347), 6, + ACTIONS(2418), 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(2349), 43, + ACTIONS(2420), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -315116,20 +317676,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92551] = 7, + [96442] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6084), 1, + aux_sym__immediate_decimal_token2, + STATE(2990), 1, + sym_comment, + ACTIONS(1785), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1787), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [96504] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6044), 1, + ACTIONS(6040), 1, sym__entry_separator, - ACTIONS(6046), 1, + ACTIONS(6042), 1, sym_raw_string_begin, - ACTIONS(6087), 1, + ACTIONS(6086), 1, anon_sym_RBRACE, - STATE(2971), 1, + STATE(2991), 1, sym_comment, - STATE(2996), 1, + STATE(2999), 1, aux_sym__multiple_types_repeat1, - ACTIONS(6040), 45, + ACTIONS(6036), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -315175,132 +317792,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [92617] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2972), 1, - sym_comment, - ACTIONS(990), 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(992), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [92677] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2973), 1, - sym_comment, - ACTIONS(6089), 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(6091), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [92737] = 7, + [96570] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6044), 1, + ACTIONS(6040), 1, sym__entry_separator, - ACTIONS(6046), 1, + ACTIONS(6042), 1, sym_raw_string_begin, - ACTIONS(6093), 1, + ACTIONS(6088), 1, anon_sym_RBRACE, - STATE(2974), 1, + STATE(2992), 1, sym_comment, - STATE(2996), 1, + STATE(2999), 1, aux_sym__multiple_types_repeat1, - ACTIONS(6040), 45, + ACTIONS(6036), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -315346,19 +317851,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [92803] = 4, + [96636] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(2975), 1, + ACTIONS(6090), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6092), 1, + aux_sym__immediate_decimal_token2, + STATE(2993), 1, + sym_comment, + ACTIONS(1739), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1741), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [96700] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(2994), 1, sym_comment, - ACTIONS(2407), 6, + ACTIONS(5099), 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(2409), 43, + ACTIONS(5097), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -315402,19 +317965,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92863] = 4, + [96760] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2976), 1, + STATE(2995), 1, sym_comment, - ACTIONS(5098), 6, + ACTIONS(1863), 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(5096), 43, + ACTIONS(1865), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -315458,76 +318021,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92923] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6095), 1, - anon_sym_QMARK2, - STATE(2977), 1, - sym_comment, - ACTIONS(978), 15, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(980), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [92985] = 4, + [96820] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2978), 1, + STATE(2996), 1, sym_comment, - ACTIONS(2347), 6, + ACTIONS(2398), 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(2349), 43, + ACTIONS(2400), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -315571,76 +318077,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93045] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6015), 1, - aux_sym__immediate_decimal_token2, - STATE(2979), 1, - sym_comment, - ACTIONS(1607), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1609), 40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [93107] = 4, + [96880] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2980), 1, + STATE(2997), 1, sym_comment, - ACTIONS(5102), 6, + ACTIONS(2430), 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(5100), 43, + ACTIONS(2432), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -315684,198 +318133,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93167] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6097), 1, - aux_sym__immediate_decimal_token2, - STATE(2981), 1, - sym_comment, - ACTIONS(1673), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1675), 40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [93229] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6099), 1, - anon_sym_DOT, - ACTIONS(6101), 1, - aux_sym__immediate_decimal_token2, - STATE(2982), 1, - sym_comment, - ACTIONS(1607), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1609), 39, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [93293] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6103), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6105), 1, - aux_sym__immediate_decimal_token2, - STATE(2983), 1, - sym_comment, - ACTIONS(1621), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1623), 39, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [93357] = 7, + [96940] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6044), 1, - sym__entry_separator, - ACTIONS(6046), 1, - sym_raw_string_begin, - ACTIONS(6107), 1, - anon_sym_RBRACE, - STATE(2984), 1, + ACTIONS(6094), 1, + anon_sym_LBRACK2, + STATE(2998), 1, sym_comment, - STATE(2996), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6040), 45, + ACTIONS(2326), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2322), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -315915,133 +318189,106 @@ 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, - aux_sym_unquoted_token1, - [93423] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [97002] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2985), 1, - sym_comment, - ACTIONS(5145), 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(5143), 43, + ACTIONS(2337), 1, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(6096), 1, + sym__entry_separator, + STATE(2999), 2, + sym_comment, + aux_sym__multiple_types_repeat1, + ACTIONS(2332), 46, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93483] = 4, - ACTIONS(247), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token1, + [97064] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2986), 1, - sym_comment, - ACTIONS(1290), 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(1288), 43, + ACTIONS(6040), 1, + sym__entry_separator, + ACTIONS(6042), 1, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(6099), 1, + anon_sym_RBRACE, + STATE(2999), 1, + aux_sym__multiple_types_repeat1, + STATE(3000), 1, + sym_comment, + ACTIONS(6036), 45, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [93543] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6109), 1, - anon_sym_QMARK2, - STATE(2987), 1, - sym_comment, - ACTIONS(984), 15, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -316050,20 +318297,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(986), 33, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token1, + [97130] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6018), 1, + aux_sym__immediate_decimal_token2, + STATE(3001), 1, + sym_comment, + ACTIONS(1767), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1765), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -316073,10 +318339,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -316085,19 +318362,20 @@ 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, - [93605] = 4, + aux_sym__unquoted_in_list_token1, + [97192] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2988), 1, + STATE(3002), 1, sym_comment, - ACTIONS(2464), 6, + ACTIONS(994), 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(2466), 43, + ACTIONS(996), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -316141,19 +318419,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93665] = 4, + [97252] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2989), 1, + STATE(3003), 1, sym_comment, - ACTIONS(2468), 6, + ACTIONS(2402), 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(2470), 43, + ACTIONS(2404), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -316197,75 +318475,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93725] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2990), 1, - sym_comment, - ACTIONS(994), 15, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(996), 34, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [93785] = 4, + [97312] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2991), 1, + STATE(3004), 1, sym_comment, - ACTIONS(5130), 6, + ACTIONS(5134), 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(5128), 43, + ACTIONS(5132), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -316309,75 +318531,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93845] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2992), 1, - sym_comment, - ACTIONS(1002), 15, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1004), 34, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [93905] = 4, + [97372] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2993), 1, + STATE(3005), 1, sym_comment, - ACTIONS(2492), 6, + ACTIONS(990), 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(2494), 43, + ACTIONS(992), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -316421,142 +318587,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93965] = 5, + [97432] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6111), 1, - anon_sym_LBRACK2, - STATE(2994), 1, - sym_comment, - ACTIONS(2341), 2, - sym_raw_string_begin, + ACTIONS(6040), 1, sym__entry_separator, - ACTIONS(2337), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [94027] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - ACTIONS(4856), 1, - anon_sym_DOT_DOT2, - ACTIONS(4864), 1, - aux_sym_unquoted_token2, - ACTIONS(6113), 1, - sym_filesize_unit, - ACTIONS(6115), 1, - sym_duration_unit, - STATE(2995), 1, - sym_comment, - STATE(7503), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4858), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1709), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1721), 36, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [94101] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2325), 1, + ACTIONS(6042), 1, sym_raw_string_begin, - ACTIONS(6117), 1, - sym__entry_separator, - STATE(2996), 2, - sym_comment, + ACTIONS(6101), 1, + anon_sym_RBRACE, + STATE(2999), 1, aux_sym__multiple_types_repeat1, - ACTIONS(2320), 46, + STATE(3006), 1, + sym_comment, + ACTIONS(6036), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -316598,19 +318646,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [94163] = 4, + [97498] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2997), 1, + STATE(3007), 1, sym_comment, - ACTIONS(2508), 6, + ACTIONS(6103), 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(2510), 43, + ACTIONS(6105), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -316654,19 +318702,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94223] = 4, + [97558] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(2998), 1, + STATE(3008), 1, sym_comment, - ACTIONS(5088), 6, + ACTIONS(2478), 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(5086), 43, + ACTIONS(2480), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -316710,217 +318758,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94283] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2220), 1, - aux_sym__unquoted_in_list_token4, - STATE(2999), 1, - sym_comment, - ACTIONS(2224), 9, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2222), 38, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [94344] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - ACTIONS(4856), 1, - anon_sym_DOT_DOT2, - ACTIONS(4900), 1, - aux_sym_unquoted_token2, - ACTIONS(6120), 1, - sym_filesize_unit, - ACTIONS(6122), 1, - sym_duration_unit, - STATE(3000), 1, - sym_comment, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4858), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1709), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1721), 35, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [94417] = 4, + [97618] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3001), 1, - sym_comment, - ACTIONS(1783), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1785), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [94476] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3002), 1, + STATE(3009), 1, sym_comment, - ACTIONS(2474), 2, + ACTIONS(5121), 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(5119), 43, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2472), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + [97678] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6107), 1, + sym__newline, + STATE(3010), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1294), 15, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -316929,39 +318837,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [94535] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2092), 1, - sym__entry_separator, - ACTIONS(6126), 1, - anon_sym_RBRACK, - ACTIONS(6129), 1, + ACTIONS(1296), 32, sym_raw_string_begin, - STATE(3003), 1, - sym_comment, - ACTIONS(6124), 45, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -316971,21 +318857,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -316994,16 +318871,127 @@ 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, - aux_sym__unquoted_in_list_token1, - [94598] = 4, + [97740] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3011), 1, + sym_comment, + ACTIONS(2347), 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(2349), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [97800] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3012), 1, + sym_comment, + ACTIONS(5138), 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(5136), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [97860] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3004), 1, + STATE(3013), 1, sym_comment, - ACTIONS(2365), 2, + ACTIONS(1012), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2363), 46, + ACTIONS(1010), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -317011,6 +318999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -317050,15 +319039,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [94657] = 5, + [97920] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6085), 1, - aux_sym__immediate_decimal_token2, - STATE(3005), 1, + STATE(3014), 1, sym_comment, - ACTIONS(1755), 14, + ACTIONS(990), 15, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -317072,7 +319060,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(1757), 33, + ACTIONS(992), 34, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -317080,6 +319068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -317106,21 +319095,25 @@ 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, - [94718] = 4, + [97980] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3006), 1, - sym_comment, - ACTIONS(1000), 2, - sym_raw_string_begin, + ACTIONS(6040), 1, sym__entry_separator, - ACTIONS(998), 46, + ACTIONS(6042), 1, + sym_raw_string_begin, + ACTIONS(6110), 1, + anon_sym_RBRACE, + STATE(2999), 1, + aux_sym__multiple_types_repeat1, + STATE(3015), 1, + sym_comment, + ACTIONS(6036), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -317160,17 +319153,73 @@ 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, - aux_sym__unquoted_in_list_token1, - [94777] = 5, + aux_sym_unquoted_token1, + [98046] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6131), 1, + ACTIONS(6112), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + aux_sym__immediate_decimal_token2, + STATE(3016), 1, + sym_comment, + ACTIONS(1573), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1575), 39, + ts_builtin_sym_end, sym__newline, - STATE(3007), 2, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [98110] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2278), 1, + aux_sym__unquoted_in_list_token2, + STATE(3017), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1294), 15, - anon_sym__, + ACTIONS(2272), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -317184,11 +319233,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1296), 31, + aux_sym__unquoted_in_list_token1, + ACTIONS(2276), 33, sym_raw_string_begin, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -317217,15 +319268,15 @@ 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, - [94838] = 4, + [98171] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3008), 1, + STATE(3018), 1, sym_comment, - ACTIONS(2427), 2, + ACTIONS(2484), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2425), 46, + ACTIONS(2482), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -317272,15 +319323,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [94897] = 4, + [98230] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3009), 1, + STATE(3019), 1, sym_comment, - ACTIONS(992), 2, + ACTIONS(1719), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(990), 46, + ACTIONS(1707), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -317327,15 +319378,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [94956] = 4, + [98289] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3010), 1, + STATE(3020), 1, sym_comment, - ACTIONS(2377), 2, + ACTIONS(2446), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2375), 46, + ACTIONS(2444), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -317382,28 +319433,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [95015] = 4, - ACTIONS(3), 1, + [98348] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3011), 1, + STATE(3021), 1, sym_comment, - ACTIONS(2431), 2, + ACTIONS(1290), 15, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1288), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2429), 46, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -317413,21 +319474,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -317436,16 +319488,15 @@ 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, - aux_sym__unquoted_in_list_token1, - [95074] = 4, + [98407] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3012), 1, + STATE(3022), 1, sym_comment, - ACTIONS(2478), 2, + ACTIONS(2438), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2476), 46, + ACTIONS(2436), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -317492,15 +319543,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [95133] = 4, + [98466] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3013), 1, + STATE(3023), 1, sym_comment, - ACTIONS(2435), 2, + ACTIONS(2496), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2433), 46, + ACTIONS(2494), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -317547,28 +319598,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [95192] = 4, - ACTIONS(3), 1, + [98525] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3014), 1, + ACTIONS(1812), 1, + aux_sym__unquoted_in_list_token2, + STATE(3024), 1, sym_comment, - ACTIONS(1004), 2, + ACTIONS(1802), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1810), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1002), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -317578,21 +319642,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -317601,16 +319654,15 @@ 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, - aux_sym__unquoted_in_list_token1, - [95251] = 4, + [98586] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3015), 1, + STATE(3025), 1, sym_comment, - ACTIONS(1757), 2, + ACTIONS(2500), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1755), 46, + ACTIONS(2498), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -317657,15 +319709,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [95310] = 4, + [98645] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3016), 1, + STATE(3026), 1, sym_comment, - ACTIONS(2139), 2, + ACTIONS(2516), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2133), 46, + ACTIONS(2514), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -317712,23 +319764,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [95369] = 4, + [98704] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3017), 1, + STATE(3027), 1, sym_comment, - ACTIONS(2250), 9, + ACTIONS(2353), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2351), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2248), 39, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -317749,6 +319799,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -317766,41 +319819,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token4, - [95428] = 4, - ACTIONS(247), 1, + [98763] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3018), 1, + STATE(3028), 1, sym_comment, - ACTIONS(1010), 15, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1012), 33, + ACTIONS(2357), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2355), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -317810,10 +319850,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -317822,15 +319873,16 @@ 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, - [95487] = 4, + aux_sym__unquoted_in_list_token1, + [98822] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3019), 1, + STATE(3029), 1, sym_comment, - ACTIONS(1741), 2, + ACTIONS(2361), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1739), 46, + ACTIONS(2359), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -317877,15 +319929,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [95546] = 4, + [98881] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3020), 1, + STATE(3030), 1, sym_comment, - ACTIONS(2482), 2, + ACTIONS(2365), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2480), 46, + ACTIONS(2363), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -317932,14 +319984,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [95605] = 5, + [98940] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6134), 1, - aux_sym__immediate_decimal_token2, - STATE(3021), 1, + ACTIONS(6116), 1, + anon_sym_LBRACK2, + STATE(3031), 1, sym_comment, - ACTIONS(1783), 14, + ACTIONS(2322), 15, + anon_sym_LBRACK, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -317954,9 +320007,8 @@ 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(1785), 33, + ACTIONS(2326), 32, sym_raw_string_begin, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, @@ -317988,44 +320040,19 @@ 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, - [95666] = 4, - ACTIONS(3), 1, + [99001] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3022), 1, + ACTIONS(6050), 1, + aux_sym__immediate_decimal_token2, + STATE(3032), 1, sym_comment, - ACTIONS(1785), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1783), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(1765), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -318034,37 +320061,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [95725] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3023), 1, - sym_comment, - ACTIONS(1892), 2, + ACTIONS(1767), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1890), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -318074,21 +320084,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -318097,26 +320096,21 @@ 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, - aux_sym__unquoted_in_list_token1, - [95784] = 5, + [99062] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2220), 1, - aux_sym__unquoted_in_list_token4, - STATE(3024), 1, + STATE(3033), 1, sym_comment, - ACTIONS(2218), 9, + ACTIONS(1909), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1907), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2214), 38, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -318137,6 +320131,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -318154,14 +320151,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [95845] = 4, + [99121] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3025), 1, + ACTIONS(6118), 1, + aux_sym__immediate_decimal_token2, + STATE(3034), 1, sym_comment, - ACTIONS(1014), 15, + ACTIONS(1785), 14, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -318175,62 +320173,19 @@ 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(1016), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [95904] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3026), 1, - sym_comment, - ACTIONS(2393), 2, + ACTIONS(1787), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2391), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -318240,21 +320195,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -318263,13 +320207,14 @@ 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, - aux_sym__unquoted_in_list_token1, - [95963] = 4, + [99182] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3027), 1, + ACTIONS(5727), 1, + aux_sym__unquoted_in_list_token2, + STATE(3035), 1, sym_comment, - ACTIONS(1890), 15, + ACTIONS(1707), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -318284,8 +320229,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, - aux_sym__unquoted_in_list_token2, - ACTIONS(1892), 33, + ACTIONS(1719), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -318319,15 +320263,14 @@ 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, - [96022] = 5, + [99243] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6136), 1, - anon_sym_LBRACK2, - STATE(3028), 1, + ACTIONS(1661), 1, + aux_sym__unquoted_in_list_token2, + STATE(3036), 1, sym_comment, - ACTIONS(2337), 15, - anon_sym_LBRACK, + ACTIONS(2258), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -318342,8 +320285,9 @@ 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(2341), 32, + ACTIONS(2262), 33, sym_raw_string_begin, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, @@ -318375,21 +320319,25 @@ 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, - [96083] = 4, + [99304] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3029), 1, + ACTIONS(2228), 1, + aux_sym__unquoted_in_list_token4, + STATE(3037), 1, sym_comment, - ACTIONS(2373), 2, + ACTIONS(5933), 9, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2371), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5928), 38, + anon_sym_DOLLAR, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -318410,9 +320358,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -318430,15 +320375,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [96142] = 4, + [99365] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3030), 1, + STATE(3038), 1, sym_comment, - ACTIONS(1020), 2, + ACTIONS(1767), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1018), 46, + ACTIONS(1765), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -318485,71 +320430,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [96201] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5805), 1, - aux_sym__unquoted_in_list_token2, - STATE(3031), 1, - sym_comment, - ACTIONS(1709), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1721), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [96262] = 4, + [99424] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3032), 1, + STATE(3039), 1, sym_comment, - ACTIONS(2131), 2, + ACTIONS(1741), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2129), 46, + ACTIONS(1739), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -318596,15 +320485,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [96321] = 4, + [99483] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3033), 1, + STATE(3040), 1, sym_comment, - ACTIONS(2173), 2, + ACTIONS(1787), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2167), 46, + ACTIONS(1785), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -318651,15 +320540,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [96380] = 4, + [99542] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3034), 1, + STATE(3041), 1, sym_comment, - ACTIONS(2185), 2, + ACTIONS(1843), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2183), 46, + ACTIONS(1841), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -318706,15 +320595,409 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [96439] = 4, + [99601] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + ACTIONS(4858), 1, + anon_sym_DOT_DOT2, + ACTIONS(4956), 1, + aux_sym_unquoted_token2, + ACTIONS(6120), 1, + sym_filesize_unit, + ACTIONS(6122), 1, + sym_duration_unit, + STATE(3042), 1, + sym_comment, + STATE(7463), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4860), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1707), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1719), 35, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [99674] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3043), 1, + sym_comment, + ACTIONS(1573), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1575), 40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [99733] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3044), 1, + sym_comment, + ACTIONS(1585), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1587), 40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [99792] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3045), 1, + sym_comment, + ACTIONS(1681), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1683), 40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [99851] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3046), 1, + sym_comment, + ACTIONS(1761), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1763), 40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [99910] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6114), 1, + aux_sym__immediate_decimal_token2, + STATE(3047), 1, + sym_comment, + ACTIONS(1573), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1575), 39, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [99971] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6124), 1, + aux_sym__immediate_decimal_token2, + STATE(3048), 1, + sym_comment, + ACTIONS(1681), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1683), 39, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [100032] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3035), 1, + STATE(3049), 1, sym_comment, - ACTIONS(2181), 2, + ACTIONS(2163), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2175), 46, + ACTIONS(2157), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -318761,15 +321044,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [96498] = 4, + [100091] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3036), 1, + STATE(3050), 1, sym_comment, - ACTIONS(2490), 2, + ACTIONS(2120), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2488), 46, + ACTIONS(2118), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -318816,38 +321099,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [96557] = 4, - ACTIONS(247), 1, + [100150] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3037), 1, + STATE(3051), 1, sym_comment, - ACTIONS(1290), 15, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1288), 33, + ACTIONS(2185), 2, sym_raw_string_begin, - sym__newline, + sym__entry_separator, + ACTIONS(2183), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -318857,31 +321130,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [96616] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3038), 1, - sym_comment, - ACTIONS(1755), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -318890,21 +321145,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1757), 33, + [100209] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1865), 1, + sym__entry_separator, + ACTIONS(6128), 1, + anon_sym_RBRACK, + ACTIONS(6131), 1, sym_raw_string_begin, + STATE(3052), 1, + sym_comment, + ACTIONS(6126), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -318914,10 +321187,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -318926,21 +321210,22 @@ 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, - [96675] = 4, + aux_sym__unquoted_in_list_token1, + [100272] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3039), 1, + STATE(3053), 1, sym_comment, - ACTIONS(2357), 2, + ACTIONS(2462), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2355), 46, + ACTIONS(2460), 46, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -318980,20 +321265,47 @@ 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, - aux_sym__unquoted_in_list_token1, - [96734] = 5, - ACTIONS(247), 1, + aux_sym_unquoted_token1, + [100331] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym__unquoted_in_list_token2, - STATE(3040), 1, + ACTIONS(5918), 1, + anon_sym_RBRACK, + ACTIONS(5924), 1, + sym__entry_separator, + ACTIONS(5926), 1, + sym_raw_string_begin, + STATE(3054), 1, sym_comment, - ACTIONS(1866), 14, + ACTIONS(5916), 45, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -319002,20 +321314,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1874), 33, + [100394] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1028), 1, + sym__entry_separator, + ACTIONS(5930), 1, + anon_sym_RBRACK, + ACTIONS(5933), 1, sym_raw_string_begin, + STATE(3055), 1, + sym_comment, + ACTIONS(5928), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -319025,10 +321356,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -319037,15 +321379,16 @@ 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, - [96795] = 4, + aux_sym__unquoted_in_list_token1, + [100457] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3041), 1, + STATE(3056), 1, sym_comment, - ACTIONS(2498), 2, + ACTIONS(2385), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2496), 46, + ACTIONS(2383), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -319092,21 +321435,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [96854] = 4, + [100516] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3042), 1, + ACTIONS(2244), 1, + aux_sym__unquoted_in_list_token4, + STATE(3057), 1, sym_comment, - ACTIONS(1950), 2, + ACTIONS(2242), 9, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1948), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2238), 38, + anon_sym_DOLLAR, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -319127,9 +321474,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -319147,18 +321491,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [96913] = 4, - ACTIONS(247), 1, + [100577] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3043), 1, + ACTIONS(2252), 1, + aux_sym__unquoted_in_list_token4, + STATE(3058), 1, sym_comment, - ACTIONS(1006), 15, + ACTIONS(2250), 9, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2246), 38, + anon_sym_DOLLAR, anon_sym_DOT_DOT, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -319167,20 +321538,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1008), 33, + [100638] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2252), 1, + aux_sym__unquoted_in_list_token4, + STATE(3059), 1, + sym_comment, + ACTIONS(2256), 9, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2254), 38, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -319190,10 +321582,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -319202,18 +321602,19 @@ 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, - [96972] = 6, + aux_sym__unquoted_in_list_token1, + [100699] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6044), 1, + ACTIONS(6040), 1, sym__entry_separator, - ACTIONS(6046), 1, + ACTIONS(6042), 1, sym_raw_string_begin, - STATE(2996), 1, + STATE(2999), 1, aux_sym__multiple_types_repeat1, - STATE(3044), 1, + STATE(3060), 1, sym_comment, - ACTIONS(6040), 45, + ACTIONS(6036), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -319259,15 +321660,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [97035] = 4, + [100762] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3045), 1, + STATE(3061), 1, sym_comment, - ACTIONS(2389), 2, + ACTIONS(2470), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2387), 46, + ACTIONS(2468), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -319314,15 +321715,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [97094] = 4, + [100821] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3046), 1, + STATE(3062), 1, sym_comment, - ACTIONS(2369), 2, + ACTIONS(2136), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2367), 46, + ACTIONS(2130), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -319369,21 +321770,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [97153] = 4, + [100880] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3047), 1, + STATE(3063), 1, sym_comment, - ACTIONS(1974), 2, + ACTIONS(2270), 9, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1972), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2268), 39, + anon_sym_DOLLAR, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -319404,9 +321807,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -319424,14 +321824,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [97212] = 5, + aux_sym__unquoted_in_list_token4, + [100939] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1888), 1, + ACTIONS(1559), 1, aux_sym__unquoted_in_list_token2, - STATE(3048), 1, + STATE(3064), 1, sym_comment, - ACTIONS(2187), 14, + ACTIONS(1820), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -319446,7 +321847,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(2189), 33, + ACTIONS(1828), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -319480,41 +321881,28 @@ 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, - [97273] = 5, - ACTIONS(247), 1, + [101000] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1888), 1, - aux_sym__unquoted_in_list_token2, - STATE(3049), 1, + STATE(3065), 1, sym_comment, - ACTIONS(1878), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1886), 33, + ACTIONS(2152), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2146), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -319524,10 +321912,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -319536,15 +321935,16 @@ 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, - [97334] = 4, + aux_sym__unquoted_in_list_token1, + [101059] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3050), 1, + STATE(3066), 1, sym_comment, - ACTIONS(1721), 2, + ACTIONS(2474), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1709), 46, + ACTIONS(2472), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -319591,15 +321991,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [97393] = 4, + [101118] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3051), 1, + STATE(3067), 1, sym_comment, - ACTIONS(1990), 2, + ACTIONS(992), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1988), 46, + ACTIONS(990), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -319646,15 +322046,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [97452] = 4, + [101177] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3052), 1, + STATE(3068), 1, sym_comment, - ACTIONS(1994), 2, + ACTIONS(996), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1992), 46, + ACTIONS(994), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -319701,21 +322101,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [97511] = 4, + [101236] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3053), 1, + STATE(3069), 1, sym_comment, - ACTIONS(2419), 2, + ACTIONS(1000), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2417), 46, + ACTIONS(998), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -319755,41 +322155,29 @@ 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, - aux_sym_unquoted_token1, - [97570] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [101295] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3054), 1, + STATE(3070), 1, sym_comment, - ACTIONS(1739), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1741), 33, + ACTIONS(1046), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1044), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -319799,10 +322187,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -319811,14 +322210,17 @@ 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, - [97629] = 5, + aux_sym__unquoted_in_list_token1, + [101354] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2258), 1, - aux_sym__unquoted_in_list_token2, - STATE(3055), 1, + ACTIONS(6133), 1, + sym__newline, + STATE(3071), 2, sym_comment, - ACTIONS(2252), 14, + aux_sym_shebang_repeat1, + ACTIONS(1294), 15, + anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -319832,13 +322234,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2256), 33, + aux_sym_unquoted_token1, + ACTIONS(1296), 31, sym_raw_string_begin, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -319867,15 +322267,15 @@ 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, - [97690] = 4, + [101415] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3056), 1, + STATE(3072), 1, sym_comment, - ACTIONS(2439), 2, + ACTIONS(1004), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2437), 46, + ACTIONS(1002), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -319922,15 +322322,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [97749] = 4, + [101474] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3057), 1, + STATE(3073), 1, sym_comment, - ACTIONS(2006), 2, + ACTIONS(2404), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2004), 46, + ACTIONS(2402), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -319977,15 +322377,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [97808] = 4, + [101533] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3058), 1, + STATE(3074), 1, sym_comment, - ACTIONS(2458), 2, + ACTIONS(2392), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2456), 46, + ACTIONS(2390), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -320032,15 +322432,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [97867] = 4, + [101592] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3059), 1, + STATE(3075), 1, sym_comment, - ACTIONS(2361), 2, + ACTIONS(2408), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2359), 46, + ACTIONS(2406), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -320087,83 +322487,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [97926] = 4, + [101651] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3060), 1, - sym_comment, - ACTIONS(1607), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1609), 40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [97985] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3061), 1, + STATE(3076), 1, sym_comment, - ACTIONS(2443), 2, + ACTIONS(1765), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1767), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2441), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -320173,13 +322530,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [101710] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3077), 1, + sym_comment, + ACTIONS(1006), 15, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -320188,6 +322562,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1008), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -320196,16 +322597,15 @@ 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, - aux_sym__unquoted_in_list_token1, - [98044] = 4, + [101769] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3062), 1, + STATE(3078), 1, sym_comment, - ACTIONS(2462), 2, + ACTIONS(2424), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2460), 46, + ACTIONS(2422), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -320252,19 +322652,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [98103] = 6, + [101828] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5928), 1, - anon_sym_RBRACK, - ACTIONS(5934), 1, - sym__entry_separator, - ACTIONS(5936), 1, - sym_raw_string_begin, - STATE(3063), 1, + STATE(3079), 1, sym_comment, - ACTIONS(5926), 45, + ACTIONS(2428), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2426), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -320309,83 +322707,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [98166] = 4, + [101887] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3064), 1, - sym_comment, - ACTIONS(1621), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1623), 40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [98225] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3065), 1, + STATE(3080), 1, sym_comment, - ACTIONS(2415), 2, + ACTIONS(1739), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1741), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2413), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -320395,21 +322750,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -320418,182 +322762,15 @@ 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, - aux_sym__unquoted_in_list_token1, - [98284] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3066), 1, - sym_comment, - ACTIONS(1673), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1675), 40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [98343] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3067), 1, - sym_comment, - ACTIONS(1763), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1765), 40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [98402] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6101), 1, - aux_sym__immediate_decimal_token2, - STATE(3068), 1, - sym_comment, - ACTIONS(1607), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1609), 39, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [98463] = 4, + [101946] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3069), 1, + STATE(3081), 1, sym_comment, - ACTIONS(2070), 2, + ACTIONS(1889), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2068), 46, + ACTIONS(1887), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -320640,86 +322817,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [98522] = 5, + [102005] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6138), 1, - aux_sym__immediate_decimal_token2, - STATE(3070), 1, + STATE(3082), 1, sym_comment, - ACTIONS(1673), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1675), 39, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [98583] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1032), 1, - sym__entry_separator, - ACTIONS(5940), 1, - anon_sym_RBRACK, - ACTIONS(5943), 1, + ACTIONS(1785), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1787), 33, sym_raw_string_begin, - STATE(3071), 1, - sym_comment, - ACTIONS(5938), 45, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -320729,13 +322860,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [102064] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3083), 1, + sym_comment, + ACTIONS(1010), 15, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -320744,6 +322892,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1012), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -320752,29 +322927,40 @@ 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, - aux_sym__unquoted_in_list_token1, - [98646] = 4, - ACTIONS(3), 1, + [102123] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3072), 1, + STATE(3084), 1, sym_comment, - ACTIONS(1911), 2, + ACTIONS(1014), 15, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1016), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1907), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -320784,13 +322970,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [102182] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3085), 1, + sym_comment, + ACTIONS(1841), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -320799,6 +323001,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1843), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -320807,16 +323037,15 @@ 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, - aux_sym__unquoted_in_list_token1, - [98705] = 4, + [102241] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3073), 1, + STATE(3086), 1, sym_comment, - ACTIONS(996), 2, + ACTIONS(2345), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(994), 46, + ACTIONS(2343), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -320863,15 +323092,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [98764] = 4, + [102300] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3074), 1, + STATE(3087), 1, sym_comment, - ACTIONS(2506), 2, + ACTIONS(2442), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2504), 46, + ACTIONS(2440), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -320918,15 +323147,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [98823] = 4, + [102359] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3075), 1, + STATE(3088), 1, sym_comment, - ACTIONS(2423), 2, + ACTIONS(1917), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2421), 46, + ACTIONS(1915), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -320973,19 +323202,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [98882] = 5, - ACTIONS(247), 1, + [102418] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1579), 1, - aux_sym__unquoted_in_list_token2, - STATE(3076), 1, + STATE(3089), 1, sym_comment, - ACTIONS(2234), 14, + ACTIONS(1929), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1927), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -320994,20 +323248,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2238), 33, + [102477] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3090), 1, + sym_comment, + ACTIONS(1944), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1942), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -321017,10 +323288,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -321029,15 +323311,16 @@ 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, - [98943] = 4, + aux_sym__unquoted_in_list_token1, + [102536] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3077), 1, + STATE(3091), 1, sym_comment, - ACTIONS(2345), 2, + ACTIONS(2492), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2343), 46, + ACTIONS(2490), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -321084,15 +323367,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99002] = 4, + [102595] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3078), 1, + STATE(3092), 1, sym_comment, - ACTIONS(2353), 2, + ACTIONS(2036), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2351), 46, + ACTIONS(2034), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -321139,25 +323422,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99061] = 5, + [102654] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2204), 1, - aux_sym__unquoted_in_list_token4, - STATE(3079), 1, + STATE(3093), 1, sym_comment, - ACTIONS(5943), 9, + ACTIONS(2369), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2367), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5938), 38, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -321178,6 +323457,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -321195,25 +323477,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99122] = 5, + [102713] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2212), 1, - aux_sym__unquoted_in_list_token4, - STATE(3080), 1, + STATE(3094), 1, sym_comment, - ACTIONS(2210), 9, + ACTIONS(2381), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2379), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2206), 38, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -321234,6 +323512,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -321251,15 +323532,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99183] = 4, + [102772] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3081), 1, + STATE(3095), 1, sym_comment, - ACTIONS(2165), 2, + ACTIONS(2040), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2159), 46, + ACTIONS(2038), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -321306,15 +323587,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99242] = 4, + [102831] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3082), 1, + STATE(3096), 1, sym_comment, - ACTIONS(1915), 2, + ACTIONS(1901), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1913), 46, + ACTIONS(1899), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -321361,12 +323642,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99301] = 4, + [102890] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3083), 1, + ACTIONS(1812), 1, + aux_sym__unquoted_in_list_token2, + STATE(3097), 1, sym_comment, - ACTIONS(2425), 14, + ACTIONS(2230), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -321381,7 +323664,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(2427), 33, + ACTIONS(2232), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -321415,39 +323698,28 @@ 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, - [99359] = 4, - ACTIONS(247), 1, + [102951] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3084), 1, + STATE(3098), 1, sym_comment, - ACTIONS(2355), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2357), 33, + ACTIONS(2450), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2448), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -321457,10 +323729,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -321469,39 +323752,29 @@ 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, - [99417] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [103010] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3085), 1, + STATE(3099), 1, sym_comment, - ACTIONS(2359), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2361), 33, + ACTIONS(2454), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2452), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -321511,10 +323784,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -321523,39 +323807,29 @@ 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, - [99475] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [103069] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3086), 1, + STATE(3100), 1, sym_comment, - ACTIONS(2437), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2439), 33, + ACTIONS(2128), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2122), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -321565,10 +323839,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -321577,12 +323862,13 @@ 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, - [99533] = 4, + aux_sym__unquoted_in_list_token1, + [103128] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3087), 1, + STATE(3101), 1, sym_comment, - ACTIONS(2004), 14, + ACTIONS(2514), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -321597,7 +323883,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(2006), 33, + ACTIONS(2516), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -321631,12 +323917,12 @@ 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, - [99591] = 4, + [103186] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3088), 1, + STATE(3102), 1, sym_comment, - ACTIONS(6142), 14, + ACTIONS(5794), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -321651,7 +323937,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(6140), 33, + ACTIONS(5801), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -321685,12 +323971,12 @@ 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, - [99649] = 4, + [103244] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3089), 1, + STATE(3103), 1, sym_comment, - ACTIONS(2387), 14, + ACTIONS(2359), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -321705,7 +323991,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(2389), 33, + ACTIONS(2361), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -321739,12 +324025,12 @@ 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, - [99707] = 4, + [103302] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3090), 1, + STATE(3104), 1, sym_comment, - ACTIONS(2129), 14, + ACTIONS(2494), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -321759,7 +324045,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(2131), 33, + ACTIONS(2496), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -321793,12 +324079,12 @@ 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, - [99765] = 4, + [103360] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3091), 1, + STATE(3105), 1, sym_comment, - ACTIONS(1709), 14, + ACTIONS(2498), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -321813,7 +324099,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(1721), 33, + ACTIONS(2500), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -321847,12 +324133,66 @@ 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, - [99823] = 4, + [103418] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3092), 1, + STATE(3106), 1, sym_comment, - ACTIONS(1755), 14, + ACTIONS(1573), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1575), 39, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [103476] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3107), 1, + sym_comment, + ACTIONS(2343), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -321867,7 +324207,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(1757), 33, + ACTIONS(2345), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -321901,12 +324241,66 @@ 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, - [99881] = 4, + [103534] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3093), 1, + STATE(3108), 1, sym_comment, - ACTIONS(1739), 14, + ACTIONS(1585), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1587), 39, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [103592] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3109), 1, + sym_comment, + ACTIONS(1765), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -321921,7 +324315,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(1741), 33, + ACTIONS(1767), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -321955,12 +324349,120 @@ 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, - [99939] = 4, + [103650] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3094), 1, + STATE(3110), 1, sym_comment, - ACTIONS(2367), 14, + ACTIONS(1681), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1683), 39, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [103708] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3111), 1, + sym_comment, + ACTIONS(1761), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1763), 39, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [103766] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3112), 1, + sym_comment, + ACTIONS(2440), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -321975,7 +324477,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(2369), 33, + ACTIONS(2442), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -322009,12 +324511,12 @@ 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, - [99997] = 4, + [103824] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3095), 1, + STATE(3113), 1, sym_comment, - ACTIONS(5938), 14, + ACTIONS(6138), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -322029,7 +324531,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(5943), 33, + ACTIONS(6136), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -322063,12 +324565,12 @@ 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, - [100055] = 4, + [103882] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3096), 1, + STATE(3114), 1, sym_comment, - ACTIONS(2363), 14, + ACTIONS(6142), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -322083,7 +324585,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(2365), 33, + ACTIONS(6140), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -322117,12 +324619,12 @@ 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, - [100113] = 4, + [103940] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3097), 1, + STATE(3115), 1, sym_comment, - ACTIONS(2456), 14, + ACTIONS(6126), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -322137,7 +324639,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(2458), 33, + ACTIONS(6131), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -322171,12 +324673,12 @@ 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, - [100171] = 4, + [103998] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3098), 1, + STATE(3116), 1, sym_comment, - ACTIONS(2433), 14, + ACTIONS(1915), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -322191,7 +324693,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(2435), 33, + ACTIONS(1917), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -322225,12 +324727,12 @@ 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, - [100229] = 4, + [104056] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3099), 1, + STATE(3117), 1, sym_comment, - ACTIONS(6142), 14, + ACTIONS(2472), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -322245,7 +324747,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(6140), 33, + ACTIONS(2474), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -322279,12 +324781,12 @@ 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, - [100287] = 4, + [104114] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3100), 1, + STATE(3118), 1, sym_comment, - ACTIONS(2460), 14, + ACTIONS(6146), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -322299,7 +324801,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(2462), 33, + ACTIONS(6144), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -322333,12 +324835,12 @@ 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, - [100345] = 4, + [104172] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3101), 1, + STATE(3119), 1, sym_comment, - ACTIONS(2068), 14, + ACTIONS(6146), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -322353,7 +324855,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(2070), 33, + ACTIONS(6144), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -322387,12 +324889,12 @@ 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, - [100403] = 4, + [104230] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3102), 1, + STATE(3120), 1, sym_comment, - ACTIONS(6146), 14, + ACTIONS(6150), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -322407,7 +324909,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(6144), 33, + ACTIONS(6148), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -322441,12 +324943,12 @@ 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, - [100461] = 4, + [104288] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3103), 1, + STATE(3121), 1, sym_comment, - ACTIONS(2441), 14, + ACTIONS(1927), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -322461,7 +324963,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(2443), 33, + ACTIONS(1929), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -322495,12 +324997,12 @@ 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, - [100519] = 4, + [104346] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3104), 1, + STATE(3122), 1, sym_comment, - ACTIONS(6150), 14, + ACTIONS(2363), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -322515,7 +325017,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(6148), 33, + ACTIONS(2365), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -322549,12 +325051,12 @@ 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, - [100577] = 4, + [104404] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3105), 1, + STATE(3123), 1, sym_comment, - ACTIONS(6154), 14, + ACTIONS(1942), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -322569,7 +325071,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(6152), 33, + ACTIONS(1944), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -322603,12 +325105,12 @@ 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, - [100635] = 4, + [104462] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3106), 1, + STATE(3124), 1, sym_comment, - ACTIONS(6124), 14, + ACTIONS(1739), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -322623,7 +325125,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(6129), 33, + ACTIONS(1741), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -322657,14 +325159,66 @@ 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, - [100693] = 5, + [104520] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6156), 1, + STATE(3125), 1, + sym_comment, + ACTIONS(990), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(992), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_COMMA, - STATE(3107), 1, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [104578] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3126), 1, sym_comment, - ACTIONS(5976), 14, + ACTIONS(2490), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -322679,11 +325233,12 @@ 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(5980), 32, + ACTIONS(2492), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -322712,12 +325267,12 @@ 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, - [100753] = 4, + [104636] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3108), 1, + STATE(3127), 1, sym_comment, - ACTIONS(1972), 14, + ACTIONS(994), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -322732,7 +325287,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(1974), 33, + ACTIONS(996), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -322766,12 +325321,12 @@ 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, - [100811] = 4, + [104694] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3109), 1, + STATE(3128), 1, sym_comment, - ACTIONS(6160), 14, + ACTIONS(998), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -322786,7 +325341,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(6158), 33, + ACTIONS(1000), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -322820,12 +325375,12 @@ 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, - [100869] = 4, + [104752] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3110), 1, + STATE(3129), 1, sym_comment, - ACTIONS(994), 14, + ACTIONS(1002), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -322840,7 +325395,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(996), 33, + ACTIONS(1004), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -322874,12 +325429,12 @@ 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, - [100927] = 4, + [104810] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3111), 1, + STATE(3130), 1, sym_comment, - ACTIONS(6164), 14, + ACTIONS(2034), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -322894,7 +325449,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(6162), 33, + ACTIONS(2036), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -322928,12 +325483,12 @@ 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, - [100985] = 4, + [104868] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3112), 1, + STATE(3131), 1, sym_comment, - ACTIONS(998), 14, + ACTIONS(2367), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -322948,7 +325503,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(1000), 33, + ACTIONS(2369), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -322982,12 +325537,12 @@ 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, - [101043] = 4, + [104926] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3113), 1, + STATE(3132), 1, sym_comment, - ACTIONS(1002), 14, + ACTIONS(2379), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -323002,7 +325557,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(1004), 33, + ACTIONS(2381), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -323036,12 +325591,12 @@ 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, - [101101] = 4, + [104984] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3114), 1, + STATE(3133), 1, sym_comment, - ACTIONS(1783), 14, + ACTIONS(2038), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -323056,7 +325611,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(1785), 33, + ACTIONS(2040), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -323090,12 +325645,12 @@ 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, - [101159] = 4, + [105042] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3115), 1, + STATE(3134), 1, sym_comment, - ACTIONS(1907), 14, + ACTIONS(2157), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -323110,7 +325665,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(1911), 33, + ACTIONS(2163), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -323144,12 +325699,12 @@ 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, - [101217] = 4, + [105100] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3116), 1, + STATE(3135), 1, sym_comment, - ACTIONS(2488), 14, + ACTIONS(2383), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -323164,7 +325719,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(2490), 33, + ACTIONS(2385), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -323198,12 +325753,12 @@ 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, - [101275] = 4, + [105158] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3117), 1, + STATE(3136), 1, sym_comment, - ACTIONS(2343), 14, + ACTIONS(1899), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -323218,7 +325773,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(2345), 33, + ACTIONS(1901), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -323252,12 +325807,12 @@ 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, - [101333] = 4, + [105216] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3118), 1, + STATE(3137), 1, sym_comment, - ACTIONS(2371), 14, + ACTIONS(2118), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -323272,7 +325827,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(2373), 33, + ACTIONS(2120), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -323306,12 +325861,12 @@ 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, - [101391] = 4, + [105274] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3119), 1, + STATE(3138), 1, sym_comment, - ACTIONS(2183), 14, + ACTIONS(1785), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -323326,7 +325881,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(2185), 33, + ACTIONS(1787), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -323360,12 +325915,12 @@ 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, - [101449] = 4, + [105332] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3120), 1, + STATE(3139), 1, sym_comment, - ACTIONS(2351), 14, + ACTIONS(2448), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -323380,7 +325935,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(2353), 33, + ACTIONS(2450), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -323414,12 +325969,12 @@ 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, - [101507] = 4, + [105390] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3121), 1, + STATE(3140), 1, sym_comment, - ACTIONS(1988), 14, + ACTIONS(2452), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -323434,7 +325989,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(1990), 33, + ACTIONS(2454), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -323468,12 +326023,12 @@ 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, - [101565] = 4, + [105448] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3122), 1, + STATE(3141), 1, sym_comment, - ACTIONS(2504), 14, + ACTIONS(1841), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -323488,7 +326043,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(2506), 33, + ACTIONS(1843), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -323522,66 +326077,66 @@ 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, - [101623] = 4, + [105506] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3123), 1, + STATE(3142), 1, sym_comment, - ACTIONS(1607), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1609), 39, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [101681] = 4, + ACTIONS(1907), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1909), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [105564] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3124), 1, + STATE(3143), 1, sym_comment, - ACTIONS(1890), 14, + ACTIONS(2351), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -323596,7 +326151,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(1892), 33, + ACTIONS(2353), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -323630,12 +326185,12 @@ 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, - [101739] = 4, + [105622] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3125), 1, + STATE(3144), 1, sym_comment, - ACTIONS(1992), 14, + ACTIONS(2468), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -323650,7 +326205,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(1994), 33, + ACTIONS(2470), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -323684,66 +326239,12 @@ 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, - [101797] = 4, + [105680] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3126), 1, - sym_comment, - ACTIONS(1621), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1623), 39, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [101855] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3127), 1, + STATE(3145), 1, sym_comment, - ACTIONS(990), 14, + ACTIONS(2482), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -323758,7 +326259,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(992), 33, + ACTIONS(2484), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -323792,120 +326293,12 @@ 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, - [101913] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3128), 1, - sym_comment, - ACTIONS(1673), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1675), 39, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [101971] = 4, + [105738] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3129), 1, - sym_comment, - ACTIONS(1763), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1765), 39, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [102029] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3130), 1, + STATE(3146), 1, sym_comment, - ACTIONS(6048), 14, + ACTIONS(1707), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -323920,7 +326313,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(6050), 33, + ACTIONS(1719), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -323954,12 +326347,12 @@ 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, - [102087] = 4, + [105796] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3131), 1, + STATE(3147), 1, sym_comment, - ACTIONS(2159), 14, + ACTIONS(2444), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -323974,7 +326367,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(2165), 33, + ACTIONS(2446), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324008,12 +326401,12 @@ 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, - [102145] = 4, + [105854] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3132), 1, + STATE(3148), 1, sym_comment, - ACTIONS(2472), 14, + ACTIONS(1044), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324028,7 +326421,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(2474), 33, + ACTIONS(1046), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324062,12 +326455,12 @@ 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, - [102203] = 4, + [105912] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3133), 1, + STATE(3149), 1, sym_comment, - ACTIONS(2429), 14, + ACTIONS(6060), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324082,7 +326475,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(2431), 33, + ACTIONS(6062), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324116,12 +326509,12 @@ 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, - [102261] = 4, + [105970] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3134), 1, + STATE(3150), 1, sym_comment, - ACTIONS(1018), 14, + ACTIONS(2130), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324136,7 +326529,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(1020), 33, + ACTIONS(2136), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324170,12 +326563,12 @@ 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, - [102319] = 4, + [106028] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3135), 1, + STATE(3151), 1, sym_comment, - ACTIONS(2496), 14, + ACTIONS(2355), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324190,7 +326583,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(2498), 33, + ACTIONS(2357), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324224,12 +326617,12 @@ 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, - [102377] = 4, + [106086] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3136), 1, + STATE(3152), 1, sym_comment, - ACTIONS(2476), 14, + ACTIONS(2122), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324244,7 +326637,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(2478), 33, + ACTIONS(2128), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324278,12 +326671,12 @@ 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, - [102435] = 4, + [106144] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3137), 1, + STATE(3153), 1, sym_comment, - ACTIONS(2480), 14, + ACTIONS(2422), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324298,7 +326691,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(2482), 33, + ACTIONS(2424), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324332,12 +326725,66 @@ 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, - [102493] = 4, + [106202] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3138), 1, + STATE(3154), 1, sym_comment, - ACTIONS(5741), 14, + ACTIONS(1290), 15, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1288), 32, + sym_raw_string_begin, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [106260] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3155), 1, + sym_comment, + ACTIONS(2426), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324352,7 +326799,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(5748), 33, + ACTIONS(2428), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324386,12 +326833,12 @@ 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, - [102551] = 4, + [106318] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3139), 1, + STATE(3156), 1, sym_comment, - ACTIONS(1913), 14, + ACTIONS(6054), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324406,7 +326853,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(1915), 33, + ACTIONS(6056), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324440,12 +326887,12 @@ 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, - [102609] = 4, + [106376] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3140), 1, + STATE(3157), 1, sym_comment, - ACTIONS(2391), 14, + ACTIONS(2436), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324460,7 +326907,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(2393), 33, + ACTIONS(2438), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324494,12 +326941,12 @@ 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, - [102667] = 4, + [106434] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3141), 1, + STATE(3158), 1, sym_comment, - ACTIONS(2133), 14, + ACTIONS(2183), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324514,7 +326961,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(2139), 33, + ACTIONS(2185), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324548,12 +326995,12 @@ 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, - [102725] = 4, + [106492] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3142), 1, + STATE(3159), 1, sym_comment, - ACTIONS(2413), 14, + ACTIONS(5916), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324568,7 +327015,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(2415), 33, + ACTIONS(5926), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324602,12 +327049,12 @@ 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, - [102783] = 4, + [106550] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3143), 1, + STATE(3160), 1, sym_comment, - ACTIONS(1948), 14, + ACTIONS(6154), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324622,7 +327069,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(1950), 33, + ACTIONS(6152), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324656,12 +327103,12 @@ 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, - [102841] = 4, + [106608] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3144), 1, + STATE(3161), 1, sym_comment, - ACTIONS(2375), 14, + ACTIONS(6158), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324676,7 +327123,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(2377), 33, + ACTIONS(6156), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324710,12 +327157,12 @@ 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, - [102899] = 4, + [106666] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3145), 1, + STATE(3162), 1, sym_comment, - ACTIONS(2167), 14, + ACTIONS(5928), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324730,7 +327177,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(2173), 33, + ACTIONS(5933), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324764,12 +327211,12 @@ 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, - [102957] = 4, + [106724] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3146), 1, + STATE(3163), 1, sym_comment, - ACTIONS(2175), 14, + ACTIONS(2402), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324784,7 +327231,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(2181), 33, + ACTIONS(2404), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324818,12 +327265,12 @@ 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, - [103015] = 4, + [106782] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3147), 1, + STATE(3164), 1, sym_comment, - ACTIONS(5926), 14, + ACTIONS(2390), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324838,7 +327285,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(5936), 33, + ACTIONS(2392), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324872,12 +327319,12 @@ 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, - [103073] = 4, + [106840] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3148), 1, + STATE(3165), 1, sym_comment, - ACTIONS(6052), 14, + ACTIONS(2406), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324892,7 +327339,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(6054), 33, + ACTIONS(2408), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324926,12 +327373,12 @@ 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, - [103131] = 4, + [106898] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3149), 1, + STATE(3166), 1, sym_comment, - ACTIONS(2421), 14, + ACTIONS(1887), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324946,7 +327393,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(2423), 33, + ACTIONS(1889), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324980,13 +327427,14 @@ 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, - [103189] = 4, + [106956] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3150), 1, + ACTIONS(6160), 1, + anon_sym_COMMA, + STATE(3167), 1, sym_comment, - ACTIONS(1290), 15, - anon_sym__, + ACTIONS(5991), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -325000,11 +327448,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1288), 32, + aux_sym__unquoted_in_list_token1, + ACTIONS(5995), 32, sym_raw_string_begin, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, @@ -325034,12 +327482,12 @@ 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, - [103247] = 4, + [107016] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3151), 1, + STATE(3168), 1, sym_comment, - ACTIONS(6168), 14, + ACTIONS(2146), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -325054,11 +327502,12 @@ 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(6166), 32, + ACTIONS(2152), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -325087,27 +327536,27 @@ 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, - [103304] = 8, + [107074] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3037), 1, + ACTIONS(2900), 1, anon_sym_DOT_DOT2, - ACTIONS(6170), 1, + ACTIONS(6162), 1, sym_filesize_unit, - ACTIONS(6172), 1, + ACTIONS(6164), 1, sym_duration_unit, - STATE(3152), 1, + STATE(3169), 1, sym_comment, - ACTIONS(3039), 2, + ACTIONS(2902), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1709), 5, + ACTIONS(1707), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1721), 36, + ACTIONS(1719), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -325144,99 +327593,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [103369] = 14, + [107139] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6174), 1, - anon_sym_COLON, - ACTIONS(6176), 1, + STATE(3170), 1, + sym_comment, + ACTIONS(6168), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(6166), 32, + sym_raw_string_begin, anon_sym_LBRACK, - ACTIONS(6182), 1, - anon_sym_list, - ACTIONS(6184), 1, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, - STATE(3153), 1, - sym_comment, - STATE(6232), 1, - sym_block, - STATE(7395), 1, - sym_returns, - STATE(7825), 1, - sym__one_type, - STATE(7836), 1, - sym__multiple_types, - STATE(7962), 1, - sym__type_annotation, - ACTIONS(6180), 2, - anon_sym_table, - anon_sym_record, - STATE(6312), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6178), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [103445] = 14, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [107196] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6174), 1, + ACTIONS(6170), 1, anon_sym_COLON, - ACTIONS(6176), 1, + ACTIONS(6172), 1, anon_sym_LBRACK, - ACTIONS(6182), 1, + ACTIONS(6178), 1, anon_sym_list, - ACTIONS(6184), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(3154), 1, + STATE(3171), 1, sym_comment, - STATE(6480), 1, + STATE(6326), 1, sym_block, - STATE(7494), 1, + STATE(7549), 1, sym_returns, - STATE(7825), 1, - sym__one_type, - STATE(7836), 1, - sym__multiple_types, - STATE(7962), 1, + STATE(7770), 1, sym__type_annotation, - ACTIONS(6180), 2, + STATE(7875), 1, + sym__multiple_types, + STATE(8104), 1, + sym__one_type, + ACTIONS(6176), 2, anon_sym_table, anon_sym_record, - STATE(6312), 3, + STATE(6815), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6178), 31, + ACTIONS(6174), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -325268,37 +327708,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [103521] = 14, + [107272] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6174), 1, + ACTIONS(6170), 1, anon_sym_COLON, - ACTIONS(6176), 1, + ACTIONS(6172), 1, anon_sym_LBRACK, - ACTIONS(6182), 1, + ACTIONS(6178), 1, anon_sym_list, - ACTIONS(6184), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(3155), 1, + STATE(3172), 1, sym_comment, - STATE(6630), 1, + STATE(6363), 1, sym_block, - STATE(7438), 1, + STATE(7540), 1, sym_returns, - STATE(7825), 1, - sym__one_type, - STATE(7836), 1, - sym__multiple_types, - STATE(7962), 1, + STATE(7770), 1, sym__type_annotation, - ACTIONS(6180), 2, + STATE(7875), 1, + sym__multiple_types, + STATE(8104), 1, + sym__one_type, + ACTIONS(6176), 2, anon_sym_table, anon_sym_record, - STATE(6312), 3, + STATE(6815), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6178), 31, + ACTIONS(6174), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -325330,37 +327770,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [103597] = 14, + [107348] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6174), 1, + ACTIONS(6170), 1, anon_sym_COLON, - ACTIONS(6176), 1, + ACTIONS(6172), 1, anon_sym_LBRACK, - ACTIONS(6182), 1, + ACTIONS(6178), 1, anon_sym_list, - ACTIONS(6186), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(3156), 1, + STATE(3173), 1, sym_comment, - STATE(7146), 1, + STATE(6287), 1, sym_block, - STATE(7415), 1, + STATE(7474), 1, sym_returns, - STATE(7825), 1, - sym__one_type, - STATE(7836), 1, - sym__multiple_types, - STATE(7962), 1, + STATE(7770), 1, sym__type_annotation, - ACTIONS(6180), 2, + STATE(7875), 1, + sym__multiple_types, + STATE(8104), 1, + sym__one_type, + ACTIONS(6176), 2, anon_sym_table, anon_sym_record, - STATE(6312), 3, + STATE(6815), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6178), 31, + ACTIONS(6174), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -325392,37 +327832,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [103673] = 14, + [107424] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6174), 1, + ACTIONS(6170), 1, anon_sym_COLON, - ACTIONS(6176), 1, + ACTIONS(6172), 1, anon_sym_LBRACK, - ACTIONS(6182), 1, + ACTIONS(6178), 1, anon_sym_list, - ACTIONS(6186), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(3157), 1, + STATE(3174), 1, sym_comment, - STATE(6971), 1, + STATE(6288), 1, sym_block, - STATE(7470), 1, + STATE(7484), 1, sym_returns, - STATE(7825), 1, - sym__one_type, - STATE(7836), 1, - sym__multiple_types, - STATE(7962), 1, + STATE(7770), 1, sym__type_annotation, - ACTIONS(6180), 2, + STATE(7875), 1, + sym__multiple_types, + STATE(8104), 1, + sym__one_type, + ACTIONS(6176), 2, anon_sym_table, anon_sym_record, - STATE(6312), 3, + STATE(6815), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6178), 31, + ACTIONS(6174), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -325454,37 +327894,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [103749] = 14, + [107500] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6174), 1, + ACTIONS(6170), 1, anon_sym_COLON, - ACTIONS(6176), 1, + ACTIONS(6172), 1, anon_sym_LBRACK, - ACTIONS(6182), 1, + ACTIONS(6178), 1, anon_sym_list, - ACTIONS(6186), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - STATE(3158), 1, + STATE(3175), 1, sym_comment, - STATE(6975), 1, + STATE(6882), 1, sym_block, - STATE(7407), 1, + STATE(7609), 1, sym_returns, - STATE(7825), 1, - sym__one_type, - STATE(7836), 1, - sym__multiple_types, - STATE(7962), 1, + STATE(7770), 1, sym__type_annotation, - ACTIONS(6180), 2, + STATE(7875), 1, + sym__multiple_types, + STATE(8104), 1, + sym__one_type, + ACTIONS(6176), 2, anon_sym_table, anon_sym_record, - STATE(6312), 3, + STATE(6815), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6178), 31, + ACTIONS(6174), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -325516,37 +327956,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [103825] = 14, + [107576] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6174), 1, + ACTIONS(6170), 1, anon_sym_COLON, - ACTIONS(6176), 1, + ACTIONS(6172), 1, anon_sym_LBRACK, - ACTIONS(6182), 1, + ACTIONS(6178), 1, anon_sym_list, - ACTIONS(6184), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - STATE(3159), 1, + STATE(3176), 1, sym_comment, - STATE(6633), 1, + STATE(6885), 1, sym_block, - STATE(7439), 1, + STATE(7680), 1, sym_returns, - STATE(7825), 1, - sym__one_type, - STATE(7836), 1, - sym__multiple_types, - STATE(7962), 1, + STATE(7770), 1, sym__type_annotation, - ACTIONS(6180), 2, + STATE(7875), 1, + sym__multiple_types, + STATE(8104), 1, + sym__one_type, + ACTIONS(6176), 2, anon_sym_table, anon_sym_record, - STATE(6312), 3, + STATE(6815), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6178), 31, + ACTIONS(6174), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -325578,37 +328018,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [103901] = 14, + [107652] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6174), 1, + ACTIONS(6170), 1, anon_sym_COLON, - ACTIONS(6176), 1, + ACTIONS(6172), 1, anon_sym_LBRACK, - ACTIONS(6182), 1, + ACTIONS(6178), 1, anon_sym_list, - ACTIONS(6184), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - STATE(3160), 1, + STATE(3177), 1, sym_comment, - STATE(6218), 1, + STATE(7266), 1, sym_block, - STATE(7447), 1, + STATE(7695), 1, sym_returns, - STATE(7825), 1, - sym__one_type, - STATE(7836), 1, - sym__multiple_types, - STATE(7962), 1, + STATE(7770), 1, sym__type_annotation, - ACTIONS(6180), 2, + STATE(7875), 1, + sym__multiple_types, + STATE(8104), 1, + sym__one_type, + ACTIONS(6176), 2, anon_sym_table, anon_sym_record, - STATE(6312), 3, + STATE(6815), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6178), 31, + ACTIONS(6174), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -325640,37 +328080,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [103977] = 14, + [107728] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6174), 1, + ACTIONS(6170), 1, anon_sym_COLON, - ACTIONS(6176), 1, + ACTIONS(6172), 1, anon_sym_LBRACK, - ACTIONS(6182), 1, + ACTIONS(6178), 1, anon_sym_list, - ACTIONS(6186), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - STATE(3161), 1, + STATE(3178), 1, sym_comment, - STATE(6954), 1, + STATE(7298), 1, sym_block, - STATE(7538), 1, + STATE(7571), 1, sym_returns, - STATE(7825), 1, - sym__one_type, - STATE(7836), 1, - sym__multiple_types, - STATE(7962), 1, + STATE(7770), 1, sym__type_annotation, - ACTIONS(6180), 2, + STATE(7875), 1, + sym__multiple_types, + STATE(8104), 1, + sym__one_type, + ACTIONS(6176), 2, anon_sym_table, anon_sym_record, - STATE(6312), 3, + STATE(6815), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6178), 31, + ACTIONS(6174), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -325702,37 +328142,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [104053] = 14, + [107804] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4894), 1, + anon_sym_DOT, + STATE(1690), 1, + aux_sym_cell_path_repeat1, + STATE(1882), 1, + sym_path, + STATE(2128), 1, + sym_cell_path, + STATE(3179), 1, + sym_comment, + ACTIONS(1859), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(6184), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(1861), 23, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [107870] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6174), 1, + ACTIONS(6170), 1, anon_sym_COLON, - ACTIONS(6176), 1, + ACTIONS(6172), 1, anon_sym_LBRACK, - ACTIONS(6182), 1, + ACTIONS(6178), 1, anon_sym_list, - ACTIONS(6184), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(3162), 1, + STATE(3180), 1, sym_comment, - STATE(6720), 1, + STATE(6327), 1, sym_block, - STATE(7389), 1, - sym_returns, - STATE(7825), 1, - sym__one_type, - STATE(7836), 1, - sym__multiple_types, - STATE(7962), 1, + STATE(7550), 1, + sym_returns, + STATE(7770), 1, sym__type_annotation, - ACTIONS(6180), 2, + STATE(7875), 1, + sym__multiple_types, + STATE(8104), 1, + sym__one_type, + ACTIONS(6176), 2, anon_sym_table, anon_sym_record, - STATE(6312), 3, + STATE(6815), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6178), 31, + ACTIONS(6174), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -325764,27 +328261,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [104129] = 8, + [107946] = 8, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(3055), 1, anon_sym_DOT_DOT2, - ACTIONS(6188), 1, + ACTIONS(6187), 1, sym_filesize_unit, - ACTIONS(6190), 1, + ACTIONS(6189), 1, sym_duration_unit, - STATE(3163), 1, + STATE(3181), 1, sym_comment, ACTIONS(3057), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1709), 5, + ACTIONS(1707), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1721), 35, + ACTIONS(1719), 35, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -325820,37 +328317,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [104193] = 14, + [108010] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6174), 1, + ACTIONS(6170), 1, anon_sym_COLON, - ACTIONS(6176), 1, + ACTIONS(6172), 1, anon_sym_LBRACK, - ACTIONS(6182), 1, + ACTIONS(6178), 1, anon_sym_list, - ACTIONS(6186), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(3164), 1, + STATE(3182), 1, sym_comment, - STATE(6936), 1, + STATE(6338), 1, sym_block, - STATE(7471), 1, + STATE(7588), 1, sym_returns, - STATE(7825), 1, - sym__one_type, - STATE(7836), 1, - sym__multiple_types, - STATE(7962), 1, + STATE(7770), 1, sym__type_annotation, - ACTIONS(6180), 2, + STATE(7875), 1, + sym__multiple_types, + STATE(8104), 1, + sym__one_type, + ACTIONS(6176), 2, anon_sym_table, anon_sym_record, - STATE(6312), 3, + STATE(6815), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6178), 31, + ACTIONS(6174), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -325882,94 +328379,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [104269] = 9, + [108086] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4902), 1, - anon_sym_DOT, - STATE(1702), 1, - aux_sym_cell_path_repeat1, - STATE(1894), 1, - sym_path, - STATE(2116), 1, - sym_cell_path, - STATE(3165), 1, + ACTIONS(6170), 1, + anon_sym_COLON, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6178), 1, + anon_sym_list, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(3183), 1, sym_comment, - ACTIONS(2082), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(6192), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2084), 23, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [104335] = 14, + STATE(6362), 1, + sym_block, + STATE(7539), 1, + sym_returns, + STATE(7770), 1, + sym__type_annotation, + STATE(7875), 1, + sym__multiple_types, + STATE(8104), 1, + sym__one_type, + ACTIONS(6176), 2, + anon_sym_table, + anon_sym_record, + STATE(6815), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6174), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [108162] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6174), 1, + ACTIONS(6170), 1, anon_sym_COLON, - ACTIONS(6176), 1, + ACTIONS(6172), 1, anon_sym_LBRACK, - ACTIONS(6182), 1, + ACTIONS(6178), 1, anon_sym_list, - ACTIONS(6184), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(3166), 1, + STATE(3184), 1, sym_comment, - STATE(6495), 1, + STATE(6339), 1, sym_block, - STATE(7495), 1, + STATE(7590), 1, sym_returns, - STATE(7825), 1, - sym__one_type, - STATE(7836), 1, - sym__multiple_types, - STATE(7962), 1, + STATE(7770), 1, sym__type_annotation, - ACTIONS(6180), 2, + STATE(7875), 1, + sym__multiple_types, + STATE(8104), 1, + sym__one_type, + ACTIONS(6176), 2, anon_sym_table, anon_sym_record, - STATE(6312), 3, + STATE(6815), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6178), 31, + ACTIONS(6174), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -326001,37 +328503,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [104411] = 14, + [108238] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6174), 1, + ACTIONS(6170), 1, anon_sym_COLON, - ACTIONS(6176), 1, + ACTIONS(6172), 1, anon_sym_LBRACK, - ACTIONS(6182), 1, + ACTIONS(6178), 1, anon_sym_list, - ACTIONS(6186), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - STATE(3167), 1, + STATE(3185), 1, sym_comment, - STATE(7108), 1, + STATE(6980), 1, sym_block, - STATE(7350), 1, + STATE(7709), 1, sym_returns, - STATE(7825), 1, - sym__one_type, - STATE(7836), 1, - sym__multiple_types, - STATE(7962), 1, + STATE(7770), 1, sym__type_annotation, - ACTIONS(6180), 2, + STATE(7875), 1, + sym__multiple_types, + STATE(8104), 1, + sym__one_type, + ACTIONS(6176), 2, anon_sym_table, anon_sym_record, - STATE(6312), 3, + STATE(6815), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6178), 31, + ACTIONS(6174), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -326063,37 +328565,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [104487] = 14, + [108314] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6174), 1, + ACTIONS(6170), 1, anon_sym_COLON, - ACTIONS(6176), 1, + ACTIONS(6172), 1, anon_sym_LBRACK, - ACTIONS(6182), 1, + ACTIONS(6178), 1, anon_sym_list, - ACTIONS(6184), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - STATE(3168), 1, + STATE(3186), 1, sym_comment, - STATE(6220), 1, + STATE(6860), 1, sym_block, - STATE(7448), 1, + STATE(7520), 1, sym_returns, - STATE(7825), 1, - sym__one_type, - STATE(7836), 1, - sym__multiple_types, - STATE(7962), 1, + STATE(7770), 1, sym__type_annotation, - ACTIONS(6180), 2, + STATE(7875), 1, + sym__multiple_types, + STATE(8104), 1, + sym__one_type, + ACTIONS(6176), 2, anon_sym_table, anon_sym_record, - STATE(6312), 3, + STATE(6815), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6178), 31, + ACTIONS(6174), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -326125,37 +328627,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [104563] = 14, + [108390] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6174), 1, + ACTIONS(6170), 1, anon_sym_COLON, - ACTIONS(6176), 1, + ACTIONS(6172), 1, anon_sym_LBRACK, - ACTIONS(6182), 1, + ACTIONS(6178), 1, anon_sym_list, - ACTIONS(6186), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - STATE(3169), 1, + STATE(3187), 1, sym_comment, - STATE(7126), 1, + STATE(6982), 1, sym_block, - STATE(7355), 1, + STATE(7461), 1, sym_returns, - STATE(7825), 1, - sym__one_type, - STATE(7836), 1, - sym__multiple_types, - STATE(7962), 1, + STATE(7770), 1, sym__type_annotation, - ACTIONS(6180), 2, + STATE(7875), 1, + sym__multiple_types, + STATE(8104), 1, + sym__one_type, + ACTIONS(6176), 2, anon_sym_table, anon_sym_record, - STATE(6312), 3, + STATE(6815), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6178), 31, + ACTIONS(6174), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -326187,37 +328689,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [104639] = 14, + [108466] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6174), 1, + ACTIONS(6170), 1, anon_sym_COLON, - ACTIONS(6176), 1, + ACTIONS(6172), 1, anon_sym_LBRACK, - ACTIONS(6182), 1, + ACTIONS(6178), 1, anon_sym_list, - ACTIONS(6186), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - STATE(3170), 1, + STATE(3188), 1, sym_comment, - STATE(6820), 1, + STATE(6863), 1, sym_block, - STATE(7463), 1, + STATE(7547), 1, sym_returns, - STATE(7825), 1, - sym__one_type, - STATE(7836), 1, - sym__multiple_types, - STATE(7962), 1, + STATE(7770), 1, sym__type_annotation, - ACTIONS(6180), 2, + STATE(7875), 1, + sym__multiple_types, + STATE(8104), 1, + sym__one_type, + ACTIONS(6176), 2, anon_sym_table, anon_sym_record, - STATE(6312), 3, + STATE(6815), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6178), 31, + ACTIONS(6174), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -326249,26 +328751,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [104715] = 9, + [108542] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5216), 1, + ACTIONS(5196), 1, anon_sym_DOT, - STATE(1987), 1, + STATE(2060), 1, aux_sym_cell_path_repeat1, - STATE(2197), 1, + STATE(2251), 1, sym_path, - STATE(2495), 1, + STATE(2478), 1, sym_cell_path, - STATE(3171), 1, + STATE(3189), 1, sym_comment, - ACTIONS(2082), 5, + ACTIONS(1859), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(6192), 12, + ACTIONS(6184), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -326281,7 +328783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2084), 23, + ACTIONS(1861), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -326305,12 +328807,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [104780] = 4, + [108607] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3172), 1, + ACTIONS(2226), 1, + anon_sym_LPAREN2, + ACTIONS(2228), 1, + aux_sym_unquoted_token4, + STATE(3190), 1, sym_comment, - ACTIONS(2250), 14, + ACTIONS(1028), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -326324,8 +328830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LPAREN2, - ACTIONS(2248), 29, + ACTIONS(1026), 28, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -326354,34 +328859,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + [108665] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2240), 1, + anon_sym_LPAREN2, + ACTIONS(2244), 1, aux_sym_unquoted_token4, - [104834] = 12, + STATE(3191), 1, + sym_comment, + ACTIONS(2242), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2238), 28, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [108723] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(6178), 1, anon_sym_list, - ACTIONS(6195), 1, + ACTIONS(6191), 1, sym__newline, - ACTIONS(6197), 1, + ACTIONS(6193), 1, anon_sym_RBRACK, - STATE(3173), 1, + STATE(3192), 1, sym_comment, - STATE(3189), 1, + STATE(3207), 1, aux_sym_shebang_repeat1, - STATE(3339), 1, + STATE(3371), 1, aux_sym__multiple_types_repeat2, - STATE(7171), 1, + STATE(6966), 1, sym__one_type, - STATE(7669), 1, + STATE(8133), 1, sym__type_annotation, - ACTIONS(6180), 2, + ACTIONS(6176), 2, anon_sym_table, anon_sym_record, - STATE(6312), 3, + STATE(6815), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6178), 31, + ACTIONS(6174), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -326413,18 +328969,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [104904] = 4, - ACTIONS(247), 1, + [108793] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3174), 1, + STATE(3193), 1, sym_comment, - ACTIONS(2214), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2218), 38, + ACTIONS(2270), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -326437,11 +328987,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN2, + ACTIONS(2268), 29, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -326450,37 +329002,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [104958] = 4, + aux_sym_unquoted_token4, + [108847] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3175), 1, + STATE(3194), 1, sym_comment, - ACTIONS(1018), 10, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1020), 33, - anon_sym_EQ, + ACTIONS(2246), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2250), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -326492,37 +329042,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_as, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [105012] = 6, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [108901] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2208), 1, + ACTIONS(2248), 1, anon_sym_LPAREN2, - ACTIONS(2212), 1, + ACTIONS(2252), 1, aux_sym_unquoted_token4, - STATE(3176), 1, + STATE(3195), 1, sym_comment, - ACTIONS(2210), 13, + ACTIONS(2256), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -326536,7 +329092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(2206), 28, + ACTIONS(2254), 28, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -326565,18 +329121,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [105070] = 4, + [108959] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3177), 1, + STATE(3196), 1, sym_comment, - ACTIONS(2222), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2224), 38, + ACTIONS(1044), 10, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1046), 33, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -326588,43 +329150,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, anon_sym_RPAREN, - anon_sym_DASH2, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [105124] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [109013] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2202), 1, + ACTIONS(2248), 1, anon_sym_LPAREN2, - ACTIONS(2204), 1, + ACTIONS(2252), 1, aux_sym_unquoted_token4, - STATE(3178), 1, + STATE(3197), 1, sym_comment, - ACTIONS(1032), 13, + ACTIONS(2250), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -326638,7 +329194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(1030), 28, + ACTIONS(2246), 28, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -326667,16 +329223,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [105182] = 6, - ACTIONS(3), 1, + [109071] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2216), 1, - anon_sym_LPAREN2, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - STATE(3179), 1, + STATE(3198), 1, sym_comment, - ACTIONS(2218), 13, + ACTIONS(2254), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2256), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -326689,12 +329247,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2214), 28, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -326703,32 +329260,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [105240] = 6, + [109125] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2216), 1, + ACTIONS(2248), 1, anon_sym_LPAREN2, - ACTIONS(2220), 1, + ACTIONS(2252), 1, aux_sym_unquoted_token4, - STATE(3180), 1, + STATE(3199), 1, sym_comment, - ACTIONS(2224), 13, + ACTIONS(2256), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -326740,9 +329295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2222), 28, + ACTIONS(2254), 28, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -326771,18 +329324,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [105298] = 6, + [109182] = 12, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(6195), 1, + anon_sym_DOLLAR, + ACTIONS(6197), 1, + anon_sym_LPAREN2, ACTIONS(6199), 1, anon_sym_DOT, - ACTIONS(6201), 1, - aux_sym__immediate_decimal_token2, - STATE(3181), 1, + ACTIONS(6203), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6205), 1, + aux_sym__immediate_decimal_token5, + STATE(3200), 1, sym_comment, - ACTIONS(1755), 10, - anon_sym_DASH2, - anon_sym_DOT_DOT2, + STATE(3525), 1, + sym__immediate_decimal, + ACTIONS(6201), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3524), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1593), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -326791,7 +329356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1757), 30, + ACTIONS(1603), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -326804,16 +329369,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -326822,66 +329381,12 @@ 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, - [105355] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4864), 1, - aux_sym_unquoted_token2, - STATE(3182), 1, - sym_comment, - ACTIONS(1709), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1721), 36, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [105410] = 6, + [109251] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2216), 1, - anon_sym_LPAREN2, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - STATE(3183), 1, + STATE(3201), 1, sym_comment, - ACTIONS(2218), 12, + ACTIONS(2270), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -326894,7 +329399,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2214), 28, + anon_sym_LPAREN2, + ACTIONS(2268), 29, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -326923,12 +329429,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [105467] = 4, + aux_sym_unquoted_token4, + [109304] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3184), 1, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + STATE(3202), 1, sym_comment, - ACTIONS(2250), 13, + ACTIONS(2250), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -326941,8 +329452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, - ACTIONS(2248), 29, + ACTIONS(2246), 28, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -326971,31 +329481,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - aux_sym_unquoted_token4, - [105520] = 12, + [109361] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6203), 1, - anon_sym_DOLLAR, - ACTIONS(6205), 1, - anon_sym_LPAREN2, ACTIONS(6207), 1, anon_sym_DOT, - ACTIONS(6211), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, - aux_sym__immediate_decimal_token5, - STATE(3185), 1, + ACTIONS(6209), 1, + aux_sym__immediate_decimal_token2, + STATE(3203), 1, sym_comment, - STATE(3530), 1, - sym__immediate_decimal, - ACTIONS(6209), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3529), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1581), 8, + ACTIONS(1765), 10, + anon_sym_DASH2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -327004,7 +329501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1591), 24, + ACTIONS(1767), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -327017,10 +329514,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -327029,16 +329532,16 @@ 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, - [105589] = 6, + [109418] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2216), 1, + ACTIONS(2226), 1, anon_sym_LPAREN2, - ACTIONS(2220), 1, + ACTIONS(2228), 1, aux_sym_unquoted_token4, - STATE(3186), 1, + STATE(3204), 1, sym_comment, - ACTIONS(2224), 12, + ACTIONS(1028), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -327051,7 +329554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2222), 28, + ACTIONS(1026), 28, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -327080,17 +329583,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [105646] = 6, - ACTIONS(3), 1, + [109475] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2202), 1, - anon_sym_LPAREN2, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(3187), 1, + ACTIONS(4866), 1, + aux_sym_unquoted_token2, + STATE(3205), 1, sym_comment, - ACTIONS(1032), 12, - ts_builtin_sym_end, + ACTIONS(1707), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1719), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -327102,11 +329608,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(1030), 28, - anon_sym_GT2, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -327115,30 +329620,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [105703] = 6, + [109530] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6215), 1, + ACTIONS(6211), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6217), 1, + ACTIONS(6213), 1, aux_sym__immediate_decimal_token2, - STATE(3188), 1, + STATE(3206), 1, sym_comment, ACTIONS(1739), 10, anon_sym_DASH2, @@ -327182,31 +329684,31 @@ 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, - [105760] = 11, + [109587] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(6178), 1, anon_sym_list, - ACTIONS(6195), 1, + ACTIONS(6191), 1, sym__newline, - STATE(3189), 1, + STATE(3207), 1, sym_comment, - STATE(3321), 1, + STATE(3337), 1, aux_sym__multiple_types_repeat2, - STATE(3456), 1, + STATE(3461), 1, aux_sym_shebang_repeat1, - STATE(7153), 1, + STATE(6949), 1, sym__one_type, - STATE(7669), 1, + STATE(8133), 1, sym__type_annotation, - ACTIONS(6180), 2, + ACTIONS(6176), 2, anon_sym_table, anon_sym_record, - STATE(6312), 3, + STATE(6815), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6178), 31, + ACTIONS(6174), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -327238,16 +329740,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [105827] = 6, + [109654] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2208), 1, + ACTIONS(2240), 1, anon_sym_LPAREN2, - ACTIONS(2212), 1, + ACTIONS(2244), 1, aux_sym_unquoted_token4, - STATE(3190), 1, + STATE(3208), 1, sym_comment, - ACTIONS(2210), 12, + ACTIONS(2242), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -327260,7 +329762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2206), 28, + ACTIONS(2238), 28, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -327289,29 +329791,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [105884] = 10, + [109711] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6176), 1, - anon_sym_LBRACK, - ACTIONS(6182), 1, - anon_sym_list, - STATE(3191), 1, + STATE(3209), 1, sym_comment, - STATE(7962), 1, - sym__type_annotation, - STATE(7970), 1, - sym__one_type, - STATE(7983), 1, - sym__multiple_types, - ACTIONS(6180), 2, - anon_sym_table, - anon_sym_record, - STATE(6312), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6178), 31, + ACTIONS(6215), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -327341,31 +329831,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, + anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [105948] = 10, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [109761] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(6178), 1, anon_sym_list, - ACTIONS(6219), 1, + ACTIONS(6217), 1, anon_sym_GT2, - ACTIONS(6221), 1, + ACTIONS(6219), 1, anon_sym_AT, - STATE(3192), 1, + STATE(3210), 1, sym_comment, - STATE(7311), 1, + STATE(7022), 1, sym__all_type, - STATE(7945), 1, + STATE(8144), 1, sym_param_cmd, - ACTIONS(6180), 2, + ACTIONS(6176), 2, anon_sym_table, anon_sym_record, - STATE(7488), 3, + STATE(7626), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6178), 31, + ACTIONS(6174), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -327397,18 +329892,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [106012] = 5, + [109825] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(3193), 1, + ACTIONS(6221), 1, + anon_sym_DASH2, + ACTIONS(6229), 1, + anon_sym_PLUS2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(3211), 1, sym_comment, - ACTIONS(2383), 5, + ACTIONS(5296), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6223), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5135), 13, + ACTIONS(6225), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6227), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6231), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5294), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -327421,9 +329931,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2385), 23, - anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -327437,141 +329944,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [106066] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3194), 1, - sym_comment, - ACTIONS(6223), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_LBRACE, - anon_sym_RBRACE, - [106116] = 3, + [109891] = 12, ACTIONS(247), 1, anon_sym_POUND, - STATE(3195), 1, - sym_comment, - ACTIONS(6225), 41, + ACTIONS(5332), 1, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_LBRACE, - anon_sym_RBRACE, - [106166] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(6211), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6227), 1, - anon_sym_DOLLAR, - STATE(3196), 1, + ACTIONS(6233), 1, + anon_sym_DASH2, + ACTIONS(6241), 1, + anon_sym_PLUS2, + STATE(3212), 1, sym_comment, - STATE(3434), 1, - sym__immediate_decimal, - ACTIONS(6229), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3433), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1581), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1591), 24, - sym__newline, + STATE(3247), 1, + aux_sym_shebang_repeat1, + ACTIONS(5300), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6235), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6237), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6239), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6243), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5298), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -327583,195 +329987,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [106232] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_list, - ACTIONS(6221), 1, - anon_sym_AT, - ACTIONS(6231), 1, - anon_sym_GT2, - STATE(3197), 1, - sym_comment, - STATE(7057), 1, - sym__all_type, - STATE(7830), 1, - sym_param_cmd, - ACTIONS(6180), 2, - anon_sym_table, - anon_sym_record, - STATE(7488), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6178), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [106296] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3198), 1, - sym_comment, - ACTIONS(6233), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_LBRACE, - anon_sym_RBRACE, - [106346] = 3, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [109959] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3199), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(3213), 1, sym_comment, - ACTIONS(6235), 41, + ACTIONS(6223), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6225), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6227), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5296), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5294), 31, sym__newline, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_LBRACE, - anon_sym_RBRACE, - [106396] = 12, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [110019] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5422), 1, + ACTIONS(5332), 1, sym__newline, - ACTIONS(6237), 1, - anon_sym_DASH2, - ACTIONS(6245), 1, - anon_sym_PLUS2, - STATE(3200), 1, + STATE(3214), 1, sym_comment, - STATE(3213), 1, + STATE(3248), 1, aux_sym_shebang_repeat1, - ACTIONS(5270), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5268), 27, + ACTIONS(5300), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5298), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -327783,6 +330089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -327796,32 +330103,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [106464] = 9, + [110081] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5422), 1, - sym__newline, - STATE(3201), 1, - sym_comment, - STATE(3215), 1, + ACTIONS(6221), 1, + anon_sym_DASH2, + ACTIONS(6229), 1, + anon_sym_PLUS2, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + STATE(3215), 1, + sym_comment, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5270), 3, + ACTIONS(6231), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6245), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5268), 30, + ACTIONS(6247), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5294), 24, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -327833,7 +330152,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -327841,40 +330159,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [106526] = 13, + [110149] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5422), 1, + ACTIONS(5332), 1, sym__newline, - ACTIONS(6237), 1, + ACTIONS(6233), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6241), 1, anon_sym_PLUS2, - STATE(3202), 1, + STATE(3216), 1, sym_comment, - STATE(3217), 1, + STATE(3249), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(6249), 2, @@ -327885,7 +330197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5268), 23, + ACTIONS(5298), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -327909,25 +330221,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [106596] = 7, + [110219] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5422), 1, - sym__newline, - STATE(3203), 1, - sym_comment, - STATE(3219), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(6241), 2, + STATE(3217), 1, + sym_comment, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5270), 5, + ACTIONS(5296), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5268), 32, + ACTIONS(5294), 33, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -327960,54 +330271,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [106654] = 18, + [110275] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5422), 1, + ACTIONS(5332), 1, sym__newline, - ACTIONS(6237), 1, - anon_sym_DASH2, - ACTIONS(6245), 1, - anon_sym_PLUS2, - ACTIONS(6257), 1, - anon_sym_bit_DASHand2, - ACTIONS(6259), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6261), 1, - anon_sym_bit_DASHor2, - STATE(3204), 1, + STATE(3218), 1, sym_comment, - STATE(3221), 1, + STATE(3250), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, + ACTIONS(5300), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(6255), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6253), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5268), 14, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5298), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -328019,17 +330301,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [106734] = 19, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [110333] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5422), 1, - sym__newline, - ACTIONS(6237), 1, + ACTIONS(6221), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, ACTIONS(6257), 1, anon_sym_bit_DASHand2, @@ -328037,31 +330335,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHxor2, ACTIONS(6261), 1, anon_sym_bit_DASHor2, - ACTIONS(6263), 1, - anon_sym_and2, - STATE(3205), 1, - sym_comment, - STATE(3223), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + STATE(3219), 1, + sym_comment, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, + ACTIONS(6245), 2, anon_sym_GT2, anon_sym_LT2, ACTIONS(6255), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, + ACTIONS(6247), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -328071,7 +330367,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5268), 13, + ACTIONS(5294), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -328083,47 +330380,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [106816] = 20, + [110411] = 18, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(5332), 1, sym__newline, - ACTIONS(6237), 1, + ACTIONS(6233), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6241), 1, anon_sym_PLUS2, - ACTIONS(6257), 1, + ACTIONS(6267), 1, anon_sym_bit_DASHand2, - ACTIONS(6259), 1, + ACTIONS(6269), 1, anon_sym_bit_DASHxor2, - ACTIONS(6261), 1, + ACTIONS(6271), 1, anon_sym_bit_DASHor2, - ACTIONS(6263), 1, - anon_sym_and2, - ACTIONS(6265), 1, - anon_sym_xor2, - STATE(3206), 1, + STATE(3220), 1, sym_comment, - STATE(3225), 1, + STATE(3251), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(6249), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6255), 2, + ACTIONS(6265), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, ACTIONS(6251), 4, @@ -328131,12 +330425,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6263), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5268), 12, + ACTIONS(5298), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -328148,36 +330442,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [106900] = 14, + [110491] = 18, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5422), 1, - sym__newline, - ACTIONS(6237), 1, + ACTIONS(6221), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, - STATE(3207), 1, - sym_comment, - STATE(3227), 1, + ACTIONS(6257), 1, + anon_sym_bit_DASHand2, + ACTIONS(6259), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6261), 1, + anon_sym_bit_DASHor2, + ACTIONS(6273), 1, + anon_sym_and2, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + STATE(3221), 1, + sym_comment, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, + ACTIONS(6245), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6251), 4, + ACTIONS(6255), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6247), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -328187,7 +330492,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5268), 19, + ACTIONS(5294), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -328199,98 +330505,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [106972] = 11, + [110571] = 19, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5422), 1, + ACTIONS(5332), 1, sym__newline, - ACTIONS(6237), 1, + ACTIONS(6233), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6241), 1, anon_sym_PLUS2, - STATE(3208), 1, - sym_comment, - STATE(3229), 1, - aux_sym_shebang_repeat1, - ACTIONS(5270), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6241), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5268), 29, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + ACTIONS(6267), 1, anon_sym_bit_DASHand2, + ACTIONS(6269), 1, anon_sym_bit_DASHxor2, + ACTIONS(6271), 1, anon_sym_bit_DASHor2, - [107038] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5422), 1, - sym__newline, - ACTIONS(6237), 1, - anon_sym_DASH2, - ACTIONS(6245), 1, - anon_sym_PLUS2, - STATE(3209), 1, + ACTIONS(6275), 1, + anon_sym_and2, + STATE(3222), 1, sym_comment, - STATE(3231), 1, + STATE(3252), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(6249), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6255), 2, + ACTIONS(6265), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, ACTIONS(6251), 4, @@ -328298,12 +330551,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6263), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5268), 17, + ACTIONS(5298), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -328315,46 +330568,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [107112] = 16, + [110653] = 19, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5422), 1, - sym__newline, - ACTIONS(6237), 1, + ACTIONS(6221), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, ACTIONS(6257), 1, anon_sym_bit_DASHand2, - STATE(3210), 1, - sym_comment, - STATE(3233), 1, + ACTIONS(6259), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6261), 1, + anon_sym_bit_DASHor2, + ACTIONS(6273), 1, + anon_sym_and2, + ACTIONS(6277), 1, + anon_sym_xor2, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + STATE(3223), 1, + sym_comment, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, + ACTIONS(6245), 2, anon_sym_GT2, anon_sym_LT2, ACTIONS(6255), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, + ACTIONS(6247), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -328364,7 +330619,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5268), 16, + ACTIONS(5294), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -328376,44 +330632,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [107188] = 17, + [110735] = 20, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5422), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(6237), 1, + ACTIONS(6233), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6241), 1, anon_sym_PLUS2, - ACTIONS(6257), 1, + ACTIONS(6267), 1, anon_sym_bit_DASHand2, - ACTIONS(6259), 1, + ACTIONS(6269), 1, anon_sym_bit_DASHxor2, - STATE(3211), 1, + ACTIONS(6271), 1, + anon_sym_bit_DASHor2, + ACTIONS(6275), 1, + anon_sym_and2, + ACTIONS(6279), 1, + anon_sym_xor2, + STATE(3224), 1, sym_comment, - STATE(3235), 1, + STATE(3253), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(6249), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6255), 2, + ACTIONS(6265), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, ACTIONS(6251), 4, @@ -328421,12 +330679,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6263), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5268), 15, + ACTIONS(5298), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -328438,91 +330696,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - [107266] = 10, + [110819] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_list, ACTIONS(6221), 1, - anon_sym_AT, - ACTIONS(6267), 1, - anon_sym_GT2, - STATE(3212), 1, - sym_comment, - STATE(6867), 1, - sym__all_type, - STATE(7943), 1, - sym_param_cmd, - ACTIONS(6180), 2, - anon_sym_table, - anon_sym_record, - STATE(7488), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6178), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [107330] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6269), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3213), 1, + STATE(3225), 1, sym_comment, - ACTIONS(5330), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6271), 2, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5328), 28, + ACTIONS(6245), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6247), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5294), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328535,51 +330746,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [107396] = 12, + [110889] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5471), 1, + ACTIONS(5332), 1, sym__newline, - ACTIONS(6237), 1, + ACTIONS(6233), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6241), 1, anon_sym_PLUS2, - STATE(3214), 1, + STATE(3226), 1, sym_comment, - STATE(3249), 1, + STATE(3254), 1, aux_sym_shebang_repeat1, - ACTIONS(5334), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5332), 27, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6263), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5298), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -328591,43 +330804,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [107464] = 8, + [110961] = 10, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + ACTIONS(6221), 1, + anon_sym_DASH2, + ACTIONS(6229), 1, + anon_sym_PLUS2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3215), 1, + STATE(3227), 1, sym_comment, - ACTIONS(6271), 2, + ACTIONS(5296), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5330), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5328), 31, + ACTIONS(5294), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328640,7 +330848,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -328659,29 +330866,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [107524] = 9, + [111025] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5471), 1, + ACTIONS(5332), 1, sym__newline, - STATE(3216), 1, + ACTIONS(6233), 1, + anon_sym_DASH2, + ACTIONS(6241), 1, + anon_sym_PLUS2, + STATE(3228), 1, sym_comment, - STATE(3250), 1, + STATE(3255), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + ACTIONS(5300), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5334), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5332), 30, + ACTIONS(5298), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -328693,7 +330903,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -328712,38 +330921,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [107586] = 12, + [111091] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, + ACTIONS(6221), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3217), 1, + STATE(3229), 1, sym_comment, - ACTIONS(6271), 2, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6281), 2, + ACTIONS(6245), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6283), 4, + ACTIONS(6255), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6247), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5328), 24, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5294), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328756,144 +330973,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [107654] = 13, + [111163] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5471), 1, + ACTIONS(5332), 1, sym__newline, - ACTIONS(6237), 1, + ACTIONS(6233), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6241), 1, anon_sym_PLUS2, - STATE(3218), 1, + STATE(3230), 1, sym_comment, - STATE(3251), 1, + STATE(3256), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(6249), 2, anon_sym_GT2, anon_sym_LT2, + ACTIONS(6265), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, ACTIONS(6251), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5332), 23, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [107724] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3219), 1, - sym_comment, - ACTIONS(6273), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5330), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5328), 33, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, + ACTIONS(6263), 4, anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [107780] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5471), 1, - sym__newline, - STATE(3220), 1, - sym_comment, - STATE(3252), 1, - aux_sym_shebang_repeat1, - ACTIONS(6241), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5334), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5332), 32, + ACTIONS(5298), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -328905,73 +331032,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [107838] = 17, + [111237] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, + ACTIONS(6221), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, - ACTIONS(6289), 1, + ACTIONS(6257), 1, anon_sym_bit_DASHand2, - ACTIONS(6291), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6293), 1, - anon_sym_bit_DASHor2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3221), 1, + STATE(3231), 1, sym_comment, - ACTIONS(6271), 2, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6281), 2, + ACTIONS(6245), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6287), 2, + ACTIONS(6255), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6283), 4, + ACTIONS(6247), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6285), 4, + ACTIONS(6253), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5328), 15, + ACTIONS(5294), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328987,41 +331095,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [107916] = 18, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [111311] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5471), 1, + ACTIONS(5332), 1, sym__newline, - ACTIONS(6237), 1, + ACTIONS(6233), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6241), 1, anon_sym_PLUS2, - ACTIONS(6257), 1, + ACTIONS(6267), 1, anon_sym_bit_DASHand2, - ACTIONS(6259), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6261), 1, - anon_sym_bit_DASHor2, - STATE(3222), 1, + STATE(3232), 1, sym_comment, - STATE(3253), 1, + STATE(3257), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(6249), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6255), 2, + ACTIONS(6265), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, ACTIONS(6251), 4, @@ -329029,12 +331135,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6263), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5332), 14, + ACTIONS(5298), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -329049,54 +331155,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [107996] = 18, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [111387] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, + ACTIONS(6221), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, - ACTIONS(6289), 1, + ACTIONS(6257), 1, anon_sym_bit_DASHand2, - ACTIONS(6291), 1, + ACTIONS(6259), 1, anon_sym_bit_DASHxor2, - ACTIONS(6293), 1, - anon_sym_bit_DASHor2, - ACTIONS(6295), 1, - anon_sym_and2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3223), 1, + STATE(3233), 1, sym_comment, - ACTIONS(6271), 2, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6281), 2, + ACTIONS(6245), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6287), 2, + ACTIONS(6255), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6283), 4, + ACTIONS(6247), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6285), 4, + ACTIONS(6253), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5328), 14, + ACTIONS(5294), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -329109,45 +331213,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [108076] = 19, + anon_sym_bit_DASHor2, + [111463] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5471), 1, + ACTIONS(5332), 1, sym__newline, - ACTIONS(6237), 1, + ACTIONS(6233), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6241), 1, anon_sym_PLUS2, - ACTIONS(6257), 1, + ACTIONS(6267), 1, anon_sym_bit_DASHand2, - ACTIONS(6259), 1, + ACTIONS(6269), 1, anon_sym_bit_DASHxor2, - ACTIONS(6261), 1, - anon_sym_bit_DASHor2, - ACTIONS(6263), 1, - anon_sym_and2, - STATE(3224), 1, + STATE(3234), 1, sym_comment, - STATE(3254), 1, + STATE(3258), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(6249), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6255), 2, + ACTIONS(6265), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, ACTIONS(6251), 4, @@ -329155,12 +331257,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6263), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5332), 13, + ACTIONS(5298), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -329172,59 +331274,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [108158] = 19, + anon_sym_bit_DASHor2, + [111541] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, + ACTIONS(5416), 1, + sym__newline, + ACTIONS(6233), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6241), 1, anon_sym_PLUS2, - ACTIONS(6289), 1, - anon_sym_bit_DASHand2, - ACTIONS(6291), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6293), 1, - anon_sym_bit_DASHor2, - ACTIONS(6295), 1, - anon_sym_and2, - ACTIONS(6297), 1, - anon_sym_xor2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3225), 1, + STATE(3235), 1, sym_comment, - ACTIONS(6271), 2, + STATE(3259), 1, + aux_sym_shebang_repeat1, + ACTIONS(5326), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6281), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6287), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6283), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6285), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5328), 13, - sym__newline, + ACTIONS(5324), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -329236,109 +331318,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [108240] = 20, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(6237), 1, - anon_sym_DASH2, - ACTIONS(6245), 1, - anon_sym_PLUS2, - ACTIONS(6257), 1, - anon_sym_bit_DASHand2, - ACTIONS(6259), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6261), 1, - anon_sym_bit_DASHor2, - ACTIONS(6263), 1, + anon_sym_in2, anon_sym_and2, - ACTIONS(6265), 1, anon_sym_xor2, - STATE(3226), 1, - sym_comment, - STATE(3318), 1, - aux_sym_shebang_repeat1, - ACTIONS(6239), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6241), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6255), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6253), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5332), 12, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [108324] = 13, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [111609] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, - anon_sym_DASH2, - ACTIONS(6277), 1, - anon_sym_PLUS2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3227), 1, + ACTIONS(5416), 1, + sym__newline, + STATE(3236), 1, sym_comment, - ACTIONS(6271), 2, + STATE(3261), 1, + aux_sym_shebang_repeat1, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6281), 2, + ACTIONS(5326), 3, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6283), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6285), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5328), 20, - sym__newline, + anon_sym_PLUS2, + ACTIONS(5324), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -329350,37 +331368,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [108394] = 14, + [111671] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5471), 1, + ACTIONS(5416), 1, sym__newline, - ACTIONS(6237), 1, + ACTIONS(6233), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6241), 1, anon_sym_PLUS2, - STATE(3228), 1, + STATE(3237), 1, sym_comment, - STATE(3256), 1, + STATE(3263), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(6249), 2, @@ -329391,12 +331420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6253), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5332), 19, + ACTIONS(5324), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -329408,39 +331432,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [108466] = 10, + [111741] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, - anon_sym_DASH2, - ACTIONS(6277), 1, - anon_sym_PLUS2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3229), 1, + ACTIONS(5416), 1, + sym__newline, + STATE(3238), 1, sym_comment, - ACTIONS(5330), 2, + STATE(3265), 1, + aux_sym_shebang_repeat1, + ACTIONS(6237), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5326), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6271), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6273), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5328), 30, - sym__newline, + anon_sym_PLUS2, + ACTIONS(5324), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -329452,6 +331474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -329465,37 +331488,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [108530] = 11, + [111799] = 18, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5471), 1, + ACTIONS(5416), 1, sym__newline, - ACTIONS(6237), 1, + ACTIONS(6233), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6241), 1, anon_sym_PLUS2, - STATE(3230), 1, + ACTIONS(6267), 1, + anon_sym_bit_DASHand2, + ACTIONS(6269), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6271), 1, + anon_sym_bit_DASHor2, + STATE(3239), 1, sym_comment, - STATE(3257), 1, + STATE(3267), 1, aux_sym_shebang_repeat1, - ACTIONS(5334), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5332), 29, + ACTIONS(6243), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6265), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6263), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5324), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -329507,65 +331554,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [108596] = 14, + [111879] = 19, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, + ACTIONS(5416), 1, + sym__newline, + ACTIONS(6233), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6241), 1, anon_sym_PLUS2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3231), 1, + ACTIONS(6267), 1, + anon_sym_bit_DASHand2, + ACTIONS(6269), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6271), 1, + anon_sym_bit_DASHor2, + ACTIONS(6275), 1, + anon_sym_and2, + STATE(3240), 1, sym_comment, - ACTIONS(6271), 2, + STATE(3269), 1, + aux_sym_shebang_repeat1, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6281), 2, + ACTIONS(6249), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6287), 2, + ACTIONS(6265), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6283), 4, + ACTIONS(6251), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6285), 4, + ACTIONS(6263), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5328), 18, - sym__newline, + ACTIONS(5324), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -329577,41 +331618,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [108668] = 15, + [111961] = 20, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5471), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(6237), 1, + ACTIONS(6233), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6241), 1, anon_sym_PLUS2, - STATE(3232), 1, + ACTIONS(6267), 1, + anon_sym_bit_DASHand2, + ACTIONS(6269), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6271), 1, + anon_sym_bit_DASHor2, + ACTIONS(6275), 1, + anon_sym_and2, + ACTIONS(6279), 1, + anon_sym_xor2, + STATE(3241), 1, sym_comment, - STATE(3258), 1, + STATE(3271), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(6249), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6255), 2, + ACTIONS(6265), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, ACTIONS(6251), 4, @@ -329619,12 +331666,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6263), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5332), 17, + ACTIONS(5324), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -329636,55 +331683,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [108742] = 15, + [112045] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, + ACTIONS(5416), 1, + sym__newline, + ACTIONS(6233), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6241), 1, anon_sym_PLUS2, - ACTIONS(6289), 1, - anon_sym_bit_DASHand2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3233), 1, + STATE(3242), 1, sym_comment, - ACTIONS(6271), 2, + STATE(3273), 1, + aux_sym_shebang_repeat1, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6281), 2, + ACTIONS(6249), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6287), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6283), 4, + ACTIONS(6251), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6285), 4, + ACTIONS(6263), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5328), 17, - sym__newline, + ACTIONS(5324), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -329699,39 +331737,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [108816] = 16, + [112117] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5471), 1, + ACTIONS(5416), 1, sym__newline, - ACTIONS(6237), 1, + ACTIONS(6233), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6241), 1, anon_sym_PLUS2, - ACTIONS(6257), 1, - anon_sym_bit_DASHand2, - STATE(3234), 1, + STATE(3243), 1, sym_comment, - STATE(3259), 1, + STATE(3275), 1, aux_sym_shebang_repeat1, + ACTIONS(5326), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6235), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6237), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, ACTIONS(6239), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5324), 29, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [112183] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5416), 1, + sym__newline, + ACTIONS(6233), 1, + anon_sym_DASH2, + ACTIONS(6241), 1, + anon_sym_PLUS2, + STATE(3244), 1, + sym_comment, + STATE(3277), 1, + aux_sym_shebang_repeat1, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(6249), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6255), 2, + ACTIONS(6265), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, ACTIONS(6251), 4, @@ -329739,12 +331833,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6263), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5332), 16, + ACTIONS(5324), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -329759,53 +331853,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [108892] = 16, + [112257] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, + ACTIONS(5416), 1, + sym__newline, + ACTIONS(6233), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6241), 1, anon_sym_PLUS2, - ACTIONS(6289), 1, + ACTIONS(6267), 1, anon_sym_bit_DASHand2, - ACTIONS(6291), 1, - anon_sym_bit_DASHxor2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3235), 1, + STATE(3245), 1, sym_comment, - ACTIONS(6271), 2, + STATE(3279), 1, + aux_sym_shebang_repeat1, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6281), 2, + ACTIONS(6249), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6287), 2, + ACTIONS(6265), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6283), 4, + ACTIONS(6251), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6285), 4, + ACTIONS(6263), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5328), 16, - sym__newline, + ACTIONS(5324), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -329820,40 +331914,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [108968] = 17, + [112333] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5471), 1, + ACTIONS(5416), 1, sym__newline, - ACTIONS(6237), 1, + ACTIONS(6233), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6241), 1, anon_sym_PLUS2, - ACTIONS(6257), 1, + ACTIONS(6267), 1, anon_sym_bit_DASHand2, - ACTIONS(6259), 1, + ACTIONS(6269), 1, anon_sym_bit_DASHxor2, - STATE(3236), 1, + STATE(3246), 1, sym_comment, - STATE(3260), 1, + STATE(3281), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(6249), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6255), 2, + ACTIONS(6265), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, ACTIONS(6251), 4, @@ -329861,12 +331956,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6263), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5332), 15, + ACTIONS(5324), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -329882,35 +331977,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [109046] = 12, + [112411] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5407), 1, - sym__newline, - ACTIONS(6237), 1, + ACTIONS(6221), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, - STATE(3237), 1, - sym_comment, - STATE(3261), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(5274), 2, + STATE(3247), 1, + sym_comment, + ACTIONS(5320), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6239), 2, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5272), 27, + ACTIONS(5318), 28, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -329938,29 +332032,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [109114] = 9, + [112477] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5407), 1, - sym__newline, - STATE(3238), 1, - sym_comment, - STATE(3263), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + STATE(3248), 1, + sym_comment, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5274), 3, + ACTIONS(5320), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5272), 30, + ACTIONS(5318), 31, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -329991,40 +332084,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [109176] = 13, + [112537] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5407), 1, - sym__newline, - ACTIONS(6237), 1, + ACTIONS(6221), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, - STATE(3239), 1, - sym_comment, - STATE(3265), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + STATE(3249), 1, + sym_comment, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, + ACTIONS(6245), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6251), 4, + ACTIONS(6247), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5272), 23, + ACTIONS(5318), 24, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330048,25 +332140,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [109246] = 7, + [112605] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5407), 1, - sym__newline, - STATE(3240), 1, - sym_comment, - STATE(3267), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(6241), 2, + STATE(3250), 1, + sym_comment, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5274), 5, + ACTIONS(5320), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5272), 32, + ACTIONS(5318), 33, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330099,14 +332190,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [109304] = 18, + [112661] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5407), 1, - sym__newline, - ACTIONS(6237), 1, + ACTIONS(6221), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, ACTIONS(6257), 1, anon_sym_bit_DASHand2, @@ -330114,29 +332203,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHxor2, ACTIONS(6261), 1, anon_sym_bit_DASHor2, - STATE(3241), 1, - sym_comment, - STATE(3269), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + STATE(3251), 1, + sym_comment, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, + ACTIONS(6245), 2, anon_sym_GT2, anon_sym_LT2, ACTIONS(6255), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, + ACTIONS(6247), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -330146,7 +332235,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5272), 14, + ACTIONS(5318), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330161,14 +332251,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [109384] = 19, + [112739] = 18, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5407), 1, - sym__newline, - ACTIONS(6237), 1, + ACTIONS(6221), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, ACTIONS(6257), 1, anon_sym_bit_DASHand2, @@ -330176,31 +332264,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHxor2, ACTIONS(6261), 1, anon_sym_bit_DASHor2, - ACTIONS(6263), 1, + ACTIONS(6273), 1, anon_sym_and2, - STATE(3242), 1, - sym_comment, - STATE(3271), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + STATE(3252), 1, + sym_comment, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, + ACTIONS(6245), 2, anon_sym_GT2, anon_sym_LT2, ACTIONS(6255), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, + ACTIONS(6247), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -330210,7 +332298,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5272), 13, + ACTIONS(5318), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330224,14 +332313,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [109466] = 20, + [112819] = 19, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(6237), 1, + ACTIONS(6221), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, ACTIONS(6257), 1, anon_sym_bit_DASHand2, @@ -330239,33 +332326,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHxor2, ACTIONS(6261), 1, anon_sym_bit_DASHor2, - ACTIONS(6263), 1, + ACTIONS(6273), 1, anon_sym_and2, - ACTIONS(6265), 1, + ACTIONS(6277), 1, anon_sym_xor2, - STATE(3243), 1, - sym_comment, - STATE(3273), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + STATE(3253), 1, + sym_comment, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, + ACTIONS(6245), 2, anon_sym_GT2, anon_sym_LT2, ACTIONS(6255), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, + ACTIONS(6247), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -330275,7 +332362,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5272), 12, + ACTIONS(5318), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330288,35 +332376,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [109550] = 14, + [112901] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5407), 1, - sym__newline, - ACTIONS(6237), 1, + ACTIONS(6221), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, - STATE(3244), 1, - sym_comment, - STATE(3275), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + STATE(3254), 1, + sym_comment, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, + ACTIONS(6245), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6251), 4, + ACTIONS(6247), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -330326,7 +332412,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5272), 19, + ACTIONS(5318), 20, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330346,32 +332433,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [109622] = 11, + [112971] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5407), 1, - sym__newline, - ACTIONS(6237), 1, + ACTIONS(6221), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, - STATE(3245), 1, - sym_comment, - STATE(3277), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(5274), 2, + STATE(3255), 1, + sym_comment, + ACTIONS(5320), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6239), 2, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5272), 29, + ACTIONS(5318), 30, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330401,38 +332487,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [109688] = 15, + [113035] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5407), 1, - sym__newline, - ACTIONS(6237), 1, + ACTIONS(6221), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, - STATE(3246), 1, - sym_comment, - STATE(3279), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + STATE(3256), 1, + sym_comment, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, + ACTIONS(6245), 2, anon_sym_GT2, anon_sym_LT2, ACTIONS(6255), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, + ACTIONS(6247), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -330442,7 +332526,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5272), 17, + ACTIONS(5318), 18, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330460,40 +332545,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [109762] = 16, + [113107] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5407), 1, - sym__newline, - ACTIONS(6237), 1, + ACTIONS(6221), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, ACTIONS(6257), 1, anon_sym_bit_DASHand2, - STATE(3247), 1, - sym_comment, - STATE(3281), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + STATE(3257), 1, + sym_comment, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, + ACTIONS(6245), 2, anon_sym_GT2, anon_sym_LT2, ACTIONS(6255), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, + ACTIONS(6247), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -330503,7 +332586,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5272), 16, + ACTIONS(5318), 17, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330520,42 +332604,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [109838] = 17, + [113181] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5407), 1, - sym__newline, - ACTIONS(6237), 1, + ACTIONS(6221), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, ACTIONS(6257), 1, anon_sym_bit_DASHand2, ACTIONS(6259), 1, anon_sym_bit_DASHxor2, - STATE(3248), 1, - sym_comment, - STATE(3283), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + STATE(3258), 1, + sym_comment, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, + ACTIONS(6245), 2, anon_sym_GT2, anon_sym_LT2, ACTIONS(6255), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, + ACTIONS(6247), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -330565,7 +332647,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5272), 15, + ACTIONS(5318), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330581,33 +332664,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [109916] = 11, + [113257] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, + ACTIONS(6221), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3249), 1, + STATE(3259), 1, sym_comment, - ACTIONS(5278), 2, + ACTIONS(5304), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6271), 2, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5276), 28, + ACTIONS(5302), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -330636,28 +332719,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [109982] = 8, + [113323] = 12, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3250), 1, + ACTIONS(5407), 1, + sym__newline, + ACTIONS(6233), 1, + anon_sym_DASH2, + ACTIONS(6241), 1, + anon_sym_PLUS2, + STATE(3260), 1, sym_comment, - ACTIONS(6271), 2, + STATE(3284), 1, + aux_sym_shebang_repeat1, + ACTIONS(5308), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5278), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5276), 31, - sym__newline, + ACTIONS(6243), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5306), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330669,7 +332759,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -330683,43 +332772,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110042] = 12, + [113391] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, - anon_sym_DASH2, - ACTIONS(6277), 1, - anon_sym_PLUS2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3251), 1, + STATE(3261), 1, sym_comment, - ACTIONS(6271), 2, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6281), 2, + ACTIONS(5304), 3, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6283), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5276), 24, + anon_sym_PLUS2, + ACTIONS(5302), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -330732,6 +332808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -330739,29 +332816,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110110] = 6, + [113451] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3252), 1, + ACTIONS(5407), 1, + sym__newline, + STATE(3262), 1, sym_comment, - ACTIONS(6273), 2, + STATE(3336), 1, + aux_sym_shebang_repeat1, + ACTIONS(6235), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5278), 5, + ACTIONS(6239), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5308), 3, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5276), 33, - sym__newline, + ACTIONS(5306), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330787,59 +332875,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110166] = 17, + [113513] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, + ACTIONS(6221), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, - ACTIONS(6289), 1, - anon_sym_bit_DASHand2, - ACTIONS(6291), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6293), 1, - anon_sym_bit_DASHor2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3253), 1, + STATE(3263), 1, sym_comment, - ACTIONS(6271), 2, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6281), 2, + ACTIONS(6245), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6287), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6283), 4, + ACTIONS(6247), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6285), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5276), 15, + ACTIONS(5302), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -330852,58 +332924,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [110244] = 18, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [113581] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, + ACTIONS(5407), 1, + sym__newline, + ACTIONS(6233), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6241), 1, anon_sym_PLUS2, - ACTIONS(6289), 1, - anon_sym_bit_DASHand2, - ACTIONS(6291), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6293), 1, - anon_sym_bit_DASHor2, - ACTIONS(6295), 1, - anon_sym_and2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3254), 1, + STATE(3264), 1, sym_comment, - ACTIONS(6271), 2, + STATE(3285), 1, + aux_sym_shebang_repeat1, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6281), 2, + ACTIONS(6249), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6287), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6283), 4, + ACTIONS(6251), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6285), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5276), 14, - sym__newline, + ACTIONS(5306), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -330915,23 +332981,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [110324] = 5, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [113651] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4900), 1, - aux_sym_unquoted_token2, - STATE(3255), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(3265), 1, sym_comment, - ACTIONS(1709), 5, + ACTIONS(6225), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5304), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1721), 35, - ts_builtin_sym_end, + ACTIONS(5302), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -330943,6 +333021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -330957,8 +333036,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -330966,88 +333043,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110378] = 13, + [113707] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, - anon_sym_DASH2, - ACTIONS(6277), 1, - anon_sym_PLUS2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3256), 1, + ACTIONS(5407), 1, + sym__newline, + STATE(3266), 1, sym_comment, - ACTIONS(6271), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6273), 2, + STATE(3286), 1, + aux_sym_shebang_repeat1, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6281), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6283), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6285), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5276), 20, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [110448] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6269), 1, - anon_sym_DASH2, - ACTIONS(6277), 1, - anon_sym_PLUS2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3257), 1, - sym_comment, - ACTIONS(5278), 2, + ACTIONS(5308), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6271), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6273), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5276), 30, - sym__newline, + anon_sym_PLUS2, + ACTIONS(5306), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331059,6 +333073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -331072,51 +333087,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110512] = 14, + [113765] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, + ACTIONS(6221), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, - STATE(1816), 1, + ACTIONS(6257), 1, + anon_sym_bit_DASHand2, + ACTIONS(6259), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6261), 1, + anon_sym_bit_DASHor2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3258), 1, + STATE(3267), 1, sym_comment, - ACTIONS(6271), 2, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6281), 2, + ACTIONS(6245), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6287), 2, + ACTIONS(6255), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6283), 4, + ACTIONS(6247), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6285), 4, + ACTIONS(6253), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5276), 18, + ACTIONS(5302), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -331132,52 +333155,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [110584] = 15, + [113843] = 18, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, + ACTIONS(5407), 1, + sym__newline, + ACTIONS(6233), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6241), 1, anon_sym_PLUS2, - ACTIONS(6289), 1, + ACTIONS(6267), 1, anon_sym_bit_DASHand2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3259), 1, + ACTIONS(6269), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6271), 1, + anon_sym_bit_DASHor2, + STATE(3268), 1, sym_comment, - ACTIONS(6271), 2, + STATE(3287), 1, + aux_sym_shebang_repeat1, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6281), 2, + ACTIONS(6249), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6287), 2, + ACTIONS(6265), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6283), 4, + ACTIONS(6251), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6285), 4, + ACTIONS(6263), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5276), 17, - sym__newline, + ACTIONS(5306), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331192,52 +333217,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [110658] = 16, + [113923] = 18, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, + ACTIONS(6221), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, - ACTIONS(6289), 1, + ACTIONS(6257), 1, anon_sym_bit_DASHand2, - ACTIONS(6291), 1, + ACTIONS(6259), 1, anon_sym_bit_DASHxor2, - STATE(1816), 1, + ACTIONS(6261), 1, + anon_sym_bit_DASHor2, + ACTIONS(6273), 1, + anon_sym_and2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3260), 1, + STATE(3269), 1, sym_comment, - ACTIONS(6271), 2, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6281), 2, + ACTIONS(6245), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6287), 2, + ACTIONS(6255), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6283), 4, + ACTIONS(6247), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6285), 4, + ACTIONS(6253), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5276), 16, + ACTIONS(5302), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -331250,94 +333277,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - [110734] = 11, + [114003] = 19, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, + ACTIONS(5407), 1, + sym__newline, + ACTIONS(6233), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6241), 1, anon_sym_PLUS2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3261), 1, - sym_comment, - ACTIONS(5282), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6271), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6273), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5280), 28, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(6267), 1, anon_sym_bit_DASHand2, + ACTIONS(6269), 1, anon_sym_bit_DASHxor2, + ACTIONS(6271), 1, anon_sym_bit_DASHor2, - [110800] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5374), 1, - sym__newline, - ACTIONS(6237), 1, - anon_sym_DASH2, - ACTIONS(6245), 1, - anon_sym_PLUS2, - STATE(3262), 1, + ACTIONS(6275), 1, + anon_sym_and2, + STATE(3270), 1, sym_comment, - STATE(3285), 1, + STATE(3288), 1, aux_sym_shebang_repeat1, - ACTIONS(5286), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5284), 27, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6265), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6263), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5306), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331349,43 +333340,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + [114085] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6221), 1, + anon_sym_DASH2, + ACTIONS(6229), 1, + anon_sym_PLUS2, + ACTIONS(6257), 1, anon_sym_bit_DASHand2, + ACTIONS(6259), 1, anon_sym_bit_DASHxor2, + ACTIONS(6261), 1, anon_sym_bit_DASHor2, - [110868] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1816), 1, + ACTIONS(6273), 1, + anon_sym_and2, + ACTIONS(6277), 1, + anon_sym_xor2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3263), 1, + STATE(3271), 1, sym_comment, - ACTIONS(6271), 2, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5282), 3, + ACTIONS(6231), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6245), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5280), 31, + ACTIONS(6255), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6247), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5302), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -331398,48 +333404,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [110928] = 9, + [114167] = 20, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5374), 1, + ACTIONS(3929), 1, sym__newline, - STATE(3264), 1, + ACTIONS(6233), 1, + anon_sym_DASH2, + ACTIONS(6241), 1, + anon_sym_PLUS2, + ACTIONS(6267), 1, + anon_sym_bit_DASHand2, + ACTIONS(6269), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6271), 1, + anon_sym_bit_DASHor2, + ACTIONS(6275), 1, + anon_sym_and2, + ACTIONS(6279), 1, + anon_sym_xor2, + STATE(3272), 1, sym_comment, - STATE(3286), 1, + STATE(3289), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5286), 3, + ACTIONS(6243), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6249), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5284), 30, + ACTIONS(6265), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6251), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6263), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5306), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331451,57 +333468,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [110990] = 12, + [114251] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, + ACTIONS(6221), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3265), 1, + STATE(3273), 1, sym_comment, - ACTIONS(6271), 2, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6281), 2, + ACTIONS(6245), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6283), 4, + ACTIONS(6247), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5280), 24, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5302), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -331514,41 +333518,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111058] = 13, + [114321] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5374), 1, + ACTIONS(5407), 1, sym__newline, - ACTIONS(6237), 1, + ACTIONS(6233), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6241), 1, anon_sym_PLUS2, - STATE(3266), 1, + STATE(3274), 1, sym_comment, - STATE(3287), 1, + STATE(3290), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(6249), 2, @@ -331559,7 +333559,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5284), 23, + ACTIONS(6263), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5306), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331571,35 +333576,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111128] = 6, + [114393] = 10, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + ACTIONS(6221), 1, + anon_sym_DASH2, + ACTIONS(6229), 1, + anon_sym_PLUS2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3267), 1, + STATE(3275), 1, sym_comment, - ACTIONS(6273), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5282), 5, + ACTIONS(5304), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6223), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5280), 33, + ACTIONS(6225), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6227), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5302), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -331612,7 +333620,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -331626,32 +333633,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111184] = 7, + [114457] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5374), 1, + ACTIONS(5407), 1, sym__newline, - STATE(3268), 1, + ACTIONS(6233), 1, + anon_sym_DASH2, + ACTIONS(6241), 1, + anon_sym_PLUS2, + STATE(3276), 1, sym_comment, - STATE(3288), 1, + STATE(3291), 1, aux_sym_shebang_repeat1, - ACTIONS(6241), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5286), 5, + ACTIONS(5308), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6235), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5284), 32, + ACTIONS(6237), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6239), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5306), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331663,7 +333675,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -331677,59 +333688,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111242] = 17, + [114523] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, + ACTIONS(6221), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, - ACTIONS(6289), 1, - anon_sym_bit_DASHand2, - ACTIONS(6291), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6293), 1, - anon_sym_bit_DASHor2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3269), 1, + STATE(3277), 1, sym_comment, - ACTIONS(6271), 2, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6281), 2, + ACTIONS(6245), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6287), 2, + ACTIONS(6255), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6283), 4, + ACTIONS(6247), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6285), 4, + ACTIONS(6253), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5280), 15, + ACTIONS(5302), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -331745,41 +333748,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [111320] = 18, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [114595] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5374), 1, + ACTIONS(5407), 1, sym__newline, - ACTIONS(6237), 1, + ACTIONS(6233), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6241), 1, anon_sym_PLUS2, - ACTIONS(6257), 1, - anon_sym_bit_DASHand2, - ACTIONS(6259), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6261), 1, - anon_sym_bit_DASHor2, - STATE(3270), 1, + STATE(3278), 1, sym_comment, - STATE(3289), 1, + STATE(3292), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(6249), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6255), 2, + ACTIONS(6265), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, ACTIONS(6251), 4, @@ -331787,12 +333787,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6263), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5284), 14, + ACTIONS(5306), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331807,54 +333807,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [111400] = 18, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [114669] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, + ACTIONS(6221), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, - ACTIONS(6289), 1, + ACTIONS(6257), 1, anon_sym_bit_DASHand2, - ACTIONS(6291), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6293), 1, - anon_sym_bit_DASHor2, - ACTIONS(6295), 1, - anon_sym_and2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3271), 1, + STATE(3279), 1, sym_comment, - ACTIONS(6271), 2, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6281), 2, + ACTIONS(6245), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6287), 2, + ACTIONS(6255), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6283), 4, + ACTIONS(6247), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6285), 4, + ACTIONS(6253), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5280), 14, + ACTIONS(5302), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -331867,45 +333864,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [111480] = 19, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [114743] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5374), 1, + ACTIONS(5407), 1, sym__newline, - ACTIONS(6237), 1, + ACTIONS(6233), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6241), 1, anon_sym_PLUS2, - ACTIONS(6257), 1, + ACTIONS(6267), 1, anon_sym_bit_DASHand2, - ACTIONS(6259), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6261), 1, - anon_sym_bit_DASHor2, - ACTIONS(6263), 1, - anon_sym_and2, - STATE(3272), 1, + STATE(3280), 1, sym_comment, - STATE(3290), 1, + STATE(3293), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(6249), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6255), 2, + ACTIONS(6265), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, ACTIONS(6251), 4, @@ -331913,12 +333907,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6263), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5284), 13, + ACTIONS(5306), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -331930,58 +333924,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [111562] = 19, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [114819] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, + ACTIONS(6221), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, - ACTIONS(6289), 1, + ACTIONS(6257), 1, anon_sym_bit_DASHand2, - ACTIONS(6291), 1, + ACTIONS(6259), 1, anon_sym_bit_DASHxor2, - ACTIONS(6293), 1, - anon_sym_bit_DASHor2, - ACTIONS(6295), 1, - anon_sym_and2, - ACTIONS(6297), 1, - anon_sym_xor2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3273), 1, + STATE(3281), 1, sym_comment, - ACTIONS(6271), 2, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6281), 2, + ACTIONS(6245), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6287), 2, + ACTIONS(6255), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6283), 4, + ACTIONS(6247), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6285), 4, + ACTIONS(6253), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5280), 13, + ACTIONS(5302), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -331994,46 +333985,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [111644] = 20, + anon_sym_bit_DASHor2, + [114895] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(5407), 1, sym__newline, - ACTIONS(6237), 1, + ACTIONS(6233), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6241), 1, anon_sym_PLUS2, - ACTIONS(6257), 1, + ACTIONS(6267), 1, anon_sym_bit_DASHand2, - ACTIONS(6259), 1, + ACTIONS(6269), 1, anon_sym_bit_DASHxor2, - ACTIONS(6261), 1, - anon_sym_bit_DASHor2, - ACTIONS(6263), 1, - anon_sym_and2, - ACTIONS(6265), 1, - anon_sym_xor2, - STATE(3274), 1, + STATE(3282), 1, sym_comment, - STATE(3291), 1, + STATE(3294), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(6249), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6255), 2, + ACTIONS(6265), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, ACTIONS(6251), 4, @@ -332041,12 +334029,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6263), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5284), 12, + ACTIONS(5306), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332058,44 +334046,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [111728] = 13, + anon_sym_bit_DASHor2, + [114973] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, + STATE(3283), 1, + sym_comment, + ACTIONS(6281), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [115023] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6221), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3275), 1, + STATE(3284), 1, sym_comment, - ACTIONS(6271), 2, + ACTIONS(5276), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6281), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6283), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6285), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5280), 20, + ACTIONS(5274), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332108,53 +334136,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111798] = 14, + [115089] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5374), 1, - sym__newline, - ACTIONS(6237), 1, + ACTIONS(6221), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, - STATE(3276), 1, - sym_comment, - STATE(3292), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + STATE(3285), 1, + sym_comment, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, + ACTIONS(6245), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6251), 4, + ACTIONS(6247), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6253), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5284), 19, + ACTIONS(5274), 24, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332166,38 +334196,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111870] = 10, + [115157] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, - anon_sym_DASH2, - ACTIONS(6277), 1, - anon_sym_PLUS2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3277), 1, + STATE(3286), 1, sym_comment, - ACTIONS(5282), 2, + ACTIONS(6225), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5276), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6271), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6273), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5280), 30, + anon_sym_PLUS2, + ACTIONS(5274), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332210,6 +334237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -332223,37 +334251,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111934] = 11, + [115213] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5374), 1, - sym__newline, - ACTIONS(6237), 1, + ACTIONS(6221), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, - STATE(3278), 1, + ACTIONS(6257), 1, + anon_sym_bit_DASHand2, + ACTIONS(6259), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6261), 1, + anon_sym_bit_DASHor2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(3287), 1, sym_comment, - STATE(3293), 1, + ACTIONS(6223), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6225), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6227), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6231), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6245), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6255), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6247), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5274), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [115291] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6221), 1, + anon_sym_DASH2, + ACTIONS(6229), 1, + anon_sym_PLUS2, + ACTIONS(6257), 1, + anon_sym_bit_DASHand2, + ACTIONS(6259), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6261), 1, + anon_sym_bit_DASHor2, + ACTIONS(6273), 1, + anon_sym_and2, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(5286), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6239), 2, + STATE(3288), 1, + sym_comment, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5284), 29, + ACTIONS(6231), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6245), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6255), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6247), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6253), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5274), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332265,64 +334379,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [112000] = 14, + [115371] = 19, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, + ACTIONS(6221), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, - STATE(1816), 1, + ACTIONS(6257), 1, + anon_sym_bit_DASHand2, + ACTIONS(6259), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6261), 1, + anon_sym_bit_DASHor2, + ACTIONS(6273), 1, + anon_sym_and2, + ACTIONS(6277), 1, + anon_sym_xor2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3279), 1, + STATE(3289), 1, sym_comment, - ACTIONS(6271), 2, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6281), 2, + ACTIONS(6245), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6287), 2, + ACTIONS(6255), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6283), 4, + ACTIONS(6247), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6285), 4, + ACTIONS(6253), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5280), 18, + ACTIONS(5274), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332335,44 +334443,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [112072] = 15, + [115453] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5374), 1, - sym__newline, - ACTIONS(6237), 1, + ACTIONS(6221), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, - STATE(3280), 1, - sym_comment, - STATE(3294), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + STATE(3290), 1, + sym_comment, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, + ACTIONS(6245), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6255), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, + ACTIONS(6247), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -332382,7 +334480,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5284), 17, + ACTIONS(5274), 20, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332397,51 +334496,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112146] = 15, + [115523] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, + ACTIONS(6221), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, - ACTIONS(6289), 1, - anon_sym_bit_DASHand2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3281), 1, + STATE(3291), 1, sym_comment, - ACTIONS(6271), 2, + ACTIONS(5276), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6281), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6287), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6283), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6285), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5280), 17, + ACTIONS(5274), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332454,45 +334537,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112220] = 16, + [115587] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5374), 1, - sym__newline, - ACTIONS(6237), 1, + ACTIONS(6221), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, - ACTIONS(6257), 1, - anon_sym_bit_DASHand2, - STATE(3282), 1, - sym_comment, - STATE(3295), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + STATE(3292), 1, + sym_comment, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, + ACTIONS(6245), 2, anon_sym_GT2, anon_sym_LT2, ACTIONS(6255), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, + ACTIONS(6247), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -332502,7 +334594,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5284), 16, + ACTIONS(5274), 18, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332517,52 +334610,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112296] = 16, + [115659] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, + ACTIONS(6221), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, - ACTIONS(6289), 1, + ACTIONS(6257), 1, anon_sym_bit_DASHand2, - ACTIONS(6291), 1, - anon_sym_bit_DASHxor2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3283), 1, + STATE(3293), 1, sym_comment, - ACTIONS(6271), 2, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6281), 2, + ACTIONS(6245), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6287), 2, + ACTIONS(6255), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6283), 4, + ACTIONS(6247), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6285), 4, + ACTIONS(6253), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5280), 16, + ACTIONS(5274), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332578,43 +334670,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112372] = 17, + [115733] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5374), 1, - sym__newline, - ACTIONS(6237), 1, + ACTIONS(6221), 1, anon_sym_DASH2, - ACTIONS(6245), 1, + ACTIONS(6229), 1, anon_sym_PLUS2, ACTIONS(6257), 1, anon_sym_bit_DASHand2, ACTIONS(6259), 1, anon_sym_bit_DASHxor2, - STATE(3284), 1, - sym_comment, - STATE(3296), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + STATE(3294), 1, + sym_comment, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, + ACTIONS(6245), 2, anon_sym_GT2, anon_sym_LT2, ACTIONS(6255), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, + ACTIONS(6247), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -332624,7 +334715,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5284), 15, + ACTIONS(5274), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -332640,33 +334732,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [112450] = 11, + [115809] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(6203), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6205), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6283), 1, + anon_sym_DOLLAR, + STATE(3295), 1, + sym_comment, + STATE(3444), 1, + sym__immediate_decimal, + ACTIONS(6285), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3439), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1673), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1675), 24, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [115875] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6287), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3285), 1, + STATE(3296), 1, sym_comment, - ACTIONS(5322), 2, + ACTIONS(5239), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6271), 2, + ACTIONS(6289), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6291), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6297), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5320), 28, + ACTIONS(5237), 29, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332680,6 +334825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -332695,27 +334841,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112516] = 8, + [115939] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3286), 1, + STATE(3297), 1, sym_comment, - ACTIONS(6271), 2, + ACTIONS(6289), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6291), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5322), 3, + ACTIONS(5239), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5320), 31, + ACTIONS(5237), 32, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332730,6 +334874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -332747,38 +334892,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112576] = 12, + [115997] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, + ACTIONS(6287), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3287), 1, + STATE(3298), 1, sym_comment, - ACTIONS(6271), 2, + ACTIONS(6289), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6291), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6297), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6281), 2, + ACTIONS(6299), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6283), 4, + ACTIONS(6301), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5320), 24, + ACTIONS(5237), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332792,6 +334935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -332803,23 +334947,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112644] = 6, + [116063] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3288), 1, + STATE(3299), 1, sym_comment, - ACTIONS(6273), 2, + ACTIONS(6291), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5322), 5, + ACTIONS(5239), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5320), 33, + ACTIONS(5237), 34, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332834,6 +334976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -332853,52 +334996,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112700] = 17, + [116117] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, + ACTIONS(6287), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - ACTIONS(6289), 1, + ACTIONS(6307), 1, anon_sym_bit_DASHand2, - ACTIONS(6291), 1, + ACTIONS(6309), 1, anon_sym_bit_DASHxor2, - ACTIONS(6293), 1, + ACTIONS(6311), 1, anon_sym_bit_DASHor2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3289), 1, + STATE(3300), 1, sym_comment, - ACTIONS(6271), 2, + ACTIONS(6289), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6291), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6297), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6281), 2, + ACTIONS(6299), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6287), 2, + ACTIONS(6305), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6283), 4, + ACTIONS(6301), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6285), 4, + ACTIONS(6303), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5320), 15, + ACTIONS(5237), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332911,57 +335052,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [112778] = 18, + [116193] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, + ACTIONS(6287), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - ACTIONS(6289), 1, + ACTIONS(6307), 1, anon_sym_bit_DASHand2, - ACTIONS(6291), 1, + ACTIONS(6309), 1, anon_sym_bit_DASHxor2, - ACTIONS(6293), 1, + ACTIONS(6311), 1, anon_sym_bit_DASHor2, - ACTIONS(6295), 1, + ACTIONS(6313), 1, anon_sym_and2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3290), 1, + STATE(3301), 1, sym_comment, - ACTIONS(6271), 2, + ACTIONS(6289), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6291), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6297), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6281), 2, + ACTIONS(6299), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6287), 2, + ACTIONS(6305), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6283), 4, + ACTIONS(6301), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6285), 4, + ACTIONS(6303), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5320), 14, + ACTIONS(5237), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332974,58 +335114,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [112858] = 19, + [116271] = 18, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, + ACTIONS(6287), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - ACTIONS(6289), 1, + ACTIONS(6307), 1, anon_sym_bit_DASHand2, - ACTIONS(6291), 1, + ACTIONS(6309), 1, anon_sym_bit_DASHxor2, - ACTIONS(6293), 1, + ACTIONS(6311), 1, anon_sym_bit_DASHor2, - ACTIONS(6295), 1, + ACTIONS(6313), 1, anon_sym_and2, - ACTIONS(6297), 1, + ACTIONS(6315), 1, anon_sym_xor2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3291), 1, + STATE(3302), 1, sym_comment, - ACTIONS(6271), 2, + ACTIONS(6289), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6291), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6297), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6281), 2, + ACTIONS(6299), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6287), 2, + ACTIONS(6305), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6283), 4, + ACTIONS(6301), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6285), 4, + ACTIONS(6303), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5320), 13, + ACTIONS(5237), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -333038,44 +335177,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_or2, - [112940] = 13, + [116351] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, + ACTIONS(6287), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3292), 1, + STATE(3303), 1, sym_comment, - ACTIONS(6271), 2, + ACTIONS(6289), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6291), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6297), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6281), 2, + ACTIONS(6299), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6283), 4, + ACTIONS(6301), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6285), 4, + ACTIONS(6303), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5320), 20, + ACTIONS(5237), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -333088,6 +335226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -333096,30 +335235,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113010] = 10, + [116419] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, + ACTIONS(6287), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3293), 1, + STATE(3304), 1, sym_comment, - ACTIONS(5322), 2, + ACTIONS(5239), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6271), 2, + ACTIONS(6289), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6291), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5320), 30, + ACTIONS(5237), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -333133,6 +335270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -333150,46 +335288,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113074] = 14, + [116481] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, + ACTIONS(6287), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3294), 1, + STATE(3305), 1, sym_comment, - ACTIONS(6271), 2, + ACTIONS(6289), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6291), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6297), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6281), 2, + ACTIONS(6299), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6287), 2, + ACTIONS(6305), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6283), 4, + ACTIONS(6301), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6285), 4, + ACTIONS(6303), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5320), 18, + ACTIONS(5237), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -333202,54 +335338,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113146] = 15, + [116551] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, + ACTIONS(6287), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - ACTIONS(6289), 1, + ACTIONS(6307), 1, anon_sym_bit_DASHand2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3295), 1, + STATE(3306), 1, sym_comment, - ACTIONS(6271), 2, + ACTIONS(6289), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6291), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6297), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6281), 2, + ACTIONS(6299), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6287), 2, + ACTIONS(6305), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6283), 4, + ACTIONS(6301), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6285), 4, + ACTIONS(6303), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5320), 17, + ACTIONS(5237), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -333262,55 +335397,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113220] = 16, + [116623] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, + ACTIONS(6287), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - ACTIONS(6289), 1, + ACTIONS(6307), 1, anon_sym_bit_DASHand2, - ACTIONS(6291), 1, + ACTIONS(6309), 1, anon_sym_bit_DASHxor2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3296), 1, + STATE(3307), 1, sym_comment, - ACTIONS(6271), 2, + ACTIONS(6289), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6291), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6297), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6281), 2, + ACTIONS(6299), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6287), 2, + ACTIONS(6305), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6283), 4, + ACTIONS(6301), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6285), 4, + ACTIONS(6303), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5320), 16, + ACTIONS(5237), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -333323,18 +335457,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [113296] = 5, + [116697] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(6203), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6205), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6283), 1, + anon_sym_DOLLAR, + STATE(3308), 1, + sym_comment, + STATE(3453), 1, + sym__immediate_decimal, + ACTIONS(6285), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3448), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1677), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1679), 24, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [116763] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6178), 1, + anon_sym_list, + ACTIONS(6219), 1, + anon_sym_AT, + ACTIONS(6317), 1, + anon_sym_GT2, + STATE(3309), 1, + sym_comment, + STATE(7196), 1, + sym__all_type, + STATE(7921), 1, + sym_param_cmd, + ACTIONS(6176), 2, + anon_sym_table, + anon_sym_record, + STATE(7626), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6174), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [116827] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6201), 1, + ACTIONS(6319), 1, aux_sym__immediate_decimal_token2, - STATE(3297), 1, + STATE(3310), 1, sym_comment, - ACTIONS(1755), 10, + ACTIONS(1785), 10, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_err_GT, @@ -333345,7 +335589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1757), 30, + ACTIONS(1787), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -333376,32 +335620,35 @@ 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, - [113350] = 10, + [116881] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6299), 1, + ACTIONS(5425), 1, + sym__newline, + ACTIONS(6233), 1, anon_sym_DASH2, - ACTIONS(6307), 1, + ACTIONS(6241), 1, anon_sym_PLUS2, - STATE(3298), 1, + STATE(3211), 1, + aux_sym_shebang_repeat1, + STATE(3311), 1, sym_comment, - ACTIONS(5239), 2, + ACTIONS(5330), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6301), 2, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6303), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6305), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6309), 2, + ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5237), 29, - sym__newline, + ACTIONS(5328), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333414,7 +335661,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -333430,26 +335676,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113414] = 7, + [116949] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(3299), 1, + ACTIONS(5425), 1, + sym__newline, + STATE(3213), 1, + aux_sym_shebang_repeat1, + STATE(3312), 1, sym_comment, - ACTIONS(6301), 2, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6303), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6305), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5239), 3, + ACTIONS(5330), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5237), 32, - sym__newline, + ACTIONS(5328), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333463,7 +335712,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -333481,37 +335729,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113472] = 11, + [117011] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6299), 1, + ACTIONS(5425), 1, + sym__newline, + ACTIONS(6233), 1, anon_sym_DASH2, - ACTIONS(6307), 1, + ACTIONS(6241), 1, anon_sym_PLUS2, - STATE(3300), 1, + STATE(3215), 1, + aux_sym_shebang_repeat1, + STATE(3313), 1, sym_comment, - ACTIONS(6301), 2, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6303), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6305), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6309), 2, + ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6311), 2, + ACTIONS(6249), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6313), 4, + ACTIONS(6251), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5237), 25, - sym__newline, + ACTIONS(5328), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333524,7 +335775,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -333536,22 +335786,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113538] = 5, + [117081] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(3301), 1, + ACTIONS(5425), 1, + sym__newline, + STATE(3217), 1, + aux_sym_shebang_repeat1, + STATE(3314), 1, sym_comment, - ACTIONS(6303), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5239), 5, + ACTIONS(5330), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5237), 34, - sym__newline, + ACTIONS(5328), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333565,7 +335818,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -333585,51 +335837,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113592] = 16, + [117139] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6299), 1, + ACTIONS(4956), 1, + aux_sym_unquoted_token2, + STATE(3315), 1, + sym_comment, + ACTIONS(1707), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1719), 35, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, - ACTIONS(6307), 1, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [117193] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5425), 1, + sym__newline, + ACTIONS(6233), 1, + anon_sym_DASH2, + ACTIONS(6241), 1, anon_sym_PLUS2, - ACTIONS(6319), 1, + ACTIONS(6267), 1, anon_sym_bit_DASHand2, - ACTIONS(6321), 1, + ACTIONS(6269), 1, anon_sym_bit_DASHxor2, - ACTIONS(6323), 1, + ACTIONS(6271), 1, anon_sym_bit_DASHor2, - STATE(3302), 1, + STATE(3219), 1, + aux_sym_shebang_repeat1, + STATE(3316), 1, sym_comment, - ACTIONS(6301), 2, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6303), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6305), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6309), 2, + ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6311), 2, + ACTIONS(6249), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6317), 2, + ACTIONS(6265), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6313), 4, + ACTIONS(6251), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6315), 4, + ACTIONS(6263), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5237), 16, - sym__newline, + ACTIONS(5328), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333641,57 +335945,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [113668] = 17, + [117273] = 19, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6299), 1, + ACTIONS(5425), 1, + sym__newline, + ACTIONS(6233), 1, anon_sym_DASH2, - ACTIONS(6307), 1, + ACTIONS(6241), 1, anon_sym_PLUS2, - ACTIONS(6319), 1, + ACTIONS(6267), 1, anon_sym_bit_DASHand2, - ACTIONS(6321), 1, + ACTIONS(6269), 1, anon_sym_bit_DASHxor2, - ACTIONS(6323), 1, + ACTIONS(6271), 1, anon_sym_bit_DASHor2, - ACTIONS(6325), 1, + ACTIONS(6275), 1, anon_sym_and2, - STATE(3303), 1, + STATE(3221), 1, + aux_sym_shebang_repeat1, + STATE(3317), 1, sym_comment, - ACTIONS(6301), 2, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6303), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6305), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6309), 2, + ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6311), 2, + ACTIONS(6249), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6317), 2, + ACTIONS(6265), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6313), 4, + ACTIONS(6251), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6315), 4, + ACTIONS(6263), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5237), 15, - sym__newline, + ACTIONS(5328), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333703,58 +336009,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [113746] = 18, + [117355] = 20, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6299), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(6233), 1, anon_sym_DASH2, - ACTIONS(6307), 1, + ACTIONS(6241), 1, anon_sym_PLUS2, - ACTIONS(6319), 1, + ACTIONS(6267), 1, anon_sym_bit_DASHand2, - ACTIONS(6321), 1, + ACTIONS(6269), 1, anon_sym_bit_DASHxor2, - ACTIONS(6323), 1, + ACTIONS(6271), 1, anon_sym_bit_DASHor2, - ACTIONS(6325), 1, + ACTIONS(6275), 1, anon_sym_and2, - ACTIONS(6327), 1, + ACTIONS(6279), 1, anon_sym_xor2, - STATE(3304), 1, + STATE(3223), 1, + aux_sym_shebang_repeat1, + STATE(3318), 1, sym_comment, - ACTIONS(6301), 2, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6303), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6305), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6309), 2, + ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6311), 2, + ACTIONS(6249), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6317), 2, + ACTIONS(6265), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6313), 4, + ACTIONS(6251), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6315), 4, + ACTIONS(6263), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5237), 14, - sym__newline, + ACTIONS(5328), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333766,44 +336074,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_or2, - [113826] = 12, + [117439] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3319), 1, + sym_comment, + ACTIONS(6321), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [117489] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6299), 1, + ACTIONS(5425), 1, + sym__newline, + ACTIONS(6233), 1, anon_sym_DASH2, - ACTIONS(6307), 1, + ACTIONS(6241), 1, anon_sym_PLUS2, - STATE(3305), 1, + STATE(3225), 1, + aux_sym_shebang_repeat1, + STATE(3320), 1, sym_comment, - ACTIONS(6301), 2, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6303), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6305), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6309), 2, + ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6311), 2, + ACTIONS(6249), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6313), 4, + ACTIONS(6251), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6315), 4, + ACTIONS(6263), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5237), 21, - sym__newline, + ACTIONS(5328), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333815,7 +336172,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -333824,29 +336180,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113894] = 9, + [117561] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6299), 1, + ACTIONS(5425), 1, + sym__newline, + ACTIONS(6233), 1, anon_sym_DASH2, - ACTIONS(6307), 1, + ACTIONS(6241), 1, anon_sym_PLUS2, - STATE(3306), 1, + STATE(3227), 1, + aux_sym_shebang_repeat1, + STATE(3321), 1, sym_comment, - ACTIONS(5239), 2, + ACTIONS(5330), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6301), 2, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6303), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6305), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5237), 31, - sym__newline, + ACTIONS(5328), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333859,7 +336218,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -333877,45 +336235,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113956] = 13, + [117627] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6299), 1, + ACTIONS(5425), 1, + sym__newline, + ACTIONS(6233), 1, anon_sym_DASH2, - ACTIONS(6307), 1, + ACTIONS(6241), 1, anon_sym_PLUS2, - STATE(3307), 1, + STATE(3229), 1, + aux_sym_shebang_repeat1, + STATE(3322), 1, sym_comment, - ACTIONS(6301), 2, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6303), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6305), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6309), 2, + ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6311), 2, + ACTIONS(6249), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6317), 2, + ACTIONS(6265), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6313), 4, + ACTIONS(6251), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6315), 4, + ACTIONS(6263), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5237), 19, - sym__newline, + ACTIONS(5328), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333927,54 +336288,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114026] = 14, + [117701] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6299), 1, + ACTIONS(5425), 1, + sym__newline, + ACTIONS(6233), 1, anon_sym_DASH2, - ACTIONS(6307), 1, + ACTIONS(6241), 1, anon_sym_PLUS2, - ACTIONS(6319), 1, + ACTIONS(6267), 1, anon_sym_bit_DASHand2, - STATE(3308), 1, + STATE(3231), 1, + aux_sym_shebang_repeat1, + STATE(3323), 1, sym_comment, - ACTIONS(6301), 2, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6303), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6305), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6309), 2, + ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6311), 2, + ACTIONS(6249), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6317), 2, + ACTIONS(6265), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6313), 4, + ACTIONS(6251), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6315), 4, + ACTIONS(6263), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5237), 18, - sym__newline, + ACTIONS(5328), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -333986,94 +336349,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114098] = 15, + [117777] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6299), 1, - anon_sym_DASH2, - ACTIONS(6307), 1, - anon_sym_PLUS2, - ACTIONS(6319), 1, - anon_sym_bit_DASHand2, - ACTIONS(6321), 1, - anon_sym_bit_DASHxor2, - STATE(3309), 1, + STATE(3324), 1, sym_comment, - ACTIONS(6301), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6303), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6305), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6309), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6311), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6317), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6313), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6315), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5237), 17, + ACTIONS(6323), 41, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [114172] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_list, - ACTIONS(6221), 1, - anon_sym_AT, - ACTIONS(6329), 1, - anon_sym_GT2, - STATE(3310), 1, - sym_comment, - STATE(7076), 1, - sym__all_type, - STATE(7857), 1, - sym_param_cmd, - ACTIONS(6180), 2, - anon_sym_table, - anon_sym_record, - STATE(7488), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6178), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -334103,284 +336394,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, + anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [114236] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6331), 1, - aux_sym__immediate_decimal_token2, - STATE(3311), 1, - sym_comment, - ACTIONS(1783), 10, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1785), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, + anon_sym_record, + anon_sym_list, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [114290] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6333), 1, - anon_sym_DOLLAR, - ACTIONS(6335), 1, - anon_sym_LPAREN2, - ACTIONS(6337), 1, - anon_sym_DOT, - ACTIONS(6341), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6343), 1, - aux_sym__immediate_decimal_token5, - STATE(3312), 1, - sym_comment, - STATE(3545), 1, - sym__immediate_decimal, - ACTIONS(6339), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3544), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1581), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1591), 23, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [114358] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(6211), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6227), 1, - anon_sym_DOLLAR, - STATE(3313), 1, - sym_comment, - STATE(3424), 1, - sym__immediate_decimal, - ACTIONS(6229), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3423), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1691), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1693), 24, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [114424] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(6211), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6227), 1, - anon_sym_DOLLAR, - STATE(3314), 1, - sym_comment, - STATE(3427), 1, - sym__immediate_decimal, - ACTIONS(6229), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3425), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1663), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1671), 24, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [114490] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(6211), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6227), 1, - anon_sym_DOLLAR, - STATE(3315), 1, - sym_comment, - STATE(3430), 1, - sym__immediate_decimal, - ACTIONS(6229), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3428), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1705), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1707), 24, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [114556] = 3, + [117827] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(3316), 1, + STATE(3325), 1, sym_comment, - ACTIONS(6345), 41, + ACTIONS(6325), 41, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -334422,12 +336448,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_list, anon_sym_LBRACE, anon_sym_RBRACE, - [114606] = 3, + [117877] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(3317), 1, + STATE(3326), 1, sym_comment, - ACTIONS(6347), 41, + ACTIONS(6327), 41, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -334469,57 +336495,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_list, anon_sym_LBRACE, anon_sym_RBRACE, - [114656] = 19, + [117927] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6269), 1, + ACTIONS(5425), 1, + sym__newline, + ACTIONS(6233), 1, anon_sym_DASH2, - ACTIONS(6277), 1, + ACTIONS(6241), 1, anon_sym_PLUS2, - ACTIONS(6289), 1, + ACTIONS(6267), 1, anon_sym_bit_DASHand2, - ACTIONS(6291), 1, + ACTIONS(6269), 1, anon_sym_bit_DASHxor2, - ACTIONS(6293), 1, - anon_sym_bit_DASHor2, - ACTIONS(6295), 1, - anon_sym_and2, - ACTIONS(6297), 1, - anon_sym_xor2, - STATE(1816), 1, + STATE(3233), 1, aux_sym_shebang_repeat1, - STATE(3318), 1, + STATE(3327), 1, sym_comment, - ACTIONS(6271), 2, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6281), 2, + ACTIONS(6249), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6287), 2, + ACTIONS(6265), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6283), 4, + ACTIONS(6251), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6285), 4, + ACTIONS(6263), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5276), 13, - sym__newline, + ACTIONS(5328), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -334531,28 +336552,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [114738] = 9, + anon_sym_bit_DASHor2, + [118005] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(6172), 1, + anon_sym_LBRACK, + ACTIONS(6178), 1, anon_sym_list, - ACTIONS(6195), 1, - sym__newline, - STATE(3319), 1, + STATE(3328), 1, sym_comment, - STATE(3333), 1, - aux_sym_shebang_repeat1, - STATE(6760), 1, + STATE(7770), 1, sym__type_annotation, - ACTIONS(6180), 2, + STATE(8065), 1, + sym__one_type, + STATE(8098), 1, + sym__multiple_types, + ACTIONS(6176), 2, anon_sym_table, anon_sym_record, - STATE(6312), 3, + STATE(6815), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6178), 31, + ACTIONS(6174), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -334584,81 +336610,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [114799] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6335), 1, - anon_sym_LPAREN2, - ACTIONS(6341), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6343), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6349), 1, - anon_sym_DOLLAR, - STATE(3320), 1, - sym_comment, - STATE(3824), 1, - sym__immediate_decimal, - ACTIONS(6351), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3834), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1663), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1671), 23, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [114864] = 9, + [118069] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(6178), 1, anon_sym_list, - STATE(3321), 1, + ACTIONS(6219), 1, + anon_sym_AT, + ACTIONS(6329), 1, + anon_sym_GT2, + STATE(3329), 1, sym_comment, - STATE(3324), 1, - aux_sym__multiple_types_repeat2, - STATE(7340), 1, - sym__one_type, - STATE(7669), 1, - sym__type_annotation, - ACTIONS(6180), 2, + STATE(7235), 1, + sym__all_type, + STATE(7727), 1, + sym_param_cmd, + ACTIONS(6176), 2, anon_sym_table, anon_sym_record, - STATE(6312), 3, + STATE(7626), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6178), 31, + ACTIONS(6174), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -334690,14 +336664,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [114925] = 4, + [118133] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(3322), 1, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(6203), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6205), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6283), 1, + anon_sym_DOLLAR, + STATE(3330), 1, sym_comment, - ACTIONS(1739), 10, - anon_sym_DASH2, - anon_sym_DOT_DOT2, + STATE(3450), 1, + sym__immediate_decimal, + ACTIONS(6285), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3449), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1593), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -334706,7 +336694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1741), 30, + ACTIONS(1603), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334719,16 +336707,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -334737,113 +336719,28 @@ 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, - [114976] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3323), 1, - sym_comment, - ACTIONS(2383), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5135), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2385), 23, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [115029] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6359), 1, - anon_sym_list, - STATE(7545), 1, - sym__one_type, - STATE(7669), 1, - sym__type_annotation, - ACTIONS(6356), 2, - anon_sym_table, - anon_sym_record, - STATE(3324), 2, - sym_comment, - aux_sym__multiple_types_repeat2, - STATE(6312), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6353), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [115088] = 4, + [118199] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(3325), 1, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(6203), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6205), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6283), 1, + anon_sym_DOLLAR, + STATE(3331), 1, sym_comment, - ACTIONS(1783), 10, - anon_sym_DASH2, - anon_sym_DOT_DOT2, + STATE(3438), 1, + sym__immediate_decimal, + ACTIONS(6285), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3457), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1663), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -334852,7 +336749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1785), 30, + ACTIONS(1671), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334865,16 +336762,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -334883,80 +336774,30 @@ 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, - [115139] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6195), 1, - sym__newline, - ACTIONS(6366), 1, - anon_sym_list, - STATE(3326), 1, - sym_comment, - STATE(3456), 1, - aux_sym_shebang_repeat1, - STATE(4778), 1, - sym__type_annotation, - ACTIONS(6364), 2, - anon_sym_table, - anon_sym_record, - STATE(4899), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6362), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [115200] = 11, + [118265] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6331), 1, + anon_sym_DOLLAR, + ACTIONS(6333), 1, anon_sym_LPAREN2, - ACTIONS(6341), 1, + ACTIONS(6335), 1, + anon_sym_DOT, + ACTIONS(6339), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6343), 1, + ACTIONS(6341), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6349), 1, - anon_sym_DOLLAR, - STATE(3327), 1, + STATE(3332), 1, sym_comment, - STATE(3739), 1, + STATE(3557), 1, sym__immediate_decimal, - ACTIONS(6351), 2, + ACTIONS(6337), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3737), 2, + STATE(3553), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1705), 8, + ACTIONS(1593), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -334965,7 +336806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1707), 23, + ACTIONS(1603), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -334989,64 +336830,14 @@ 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, - [115265] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_list, - ACTIONS(6195), 1, - sym__newline, - STATE(3328), 1, - sym_comment, - STATE(3345), 1, - aux_sym_shebang_repeat1, - STATE(7094), 1, - sym__type_annotation, - ACTIONS(6180), 2, - anon_sym_table, - anon_sym_record, - STATE(6312), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6178), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [115326] = 4, + [118333] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3329), 1, + ACTIONS(6209), 1, + aux_sym__immediate_decimal_token2, + STATE(3333), 1, sym_comment, - ACTIONS(1890), 10, + ACTIONS(1765), 10, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_err_GT, @@ -335057,7 +336848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1892), 30, + ACTIONS(1767), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335088,27 +336879,78 @@ 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, - [115377] = 9, + [118387] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6195), 1, + STATE(3334), 1, + sym_comment, + ACTIONS(2398), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5160), 13, sym__newline, - ACTIONS(6366), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2400), 23, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [118441] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6178), 1, anon_sym_list, - STATE(3330), 1, + ACTIONS(6219), 1, + anon_sym_AT, + ACTIONS(6343), 1, + anon_sym_GT2, + STATE(3335), 1, sym_comment, - STATE(3456), 1, - aux_sym_shebang_repeat1, - STATE(4753), 1, - sym__type_annotation, - ACTIONS(6364), 2, + STATE(6871), 1, + sym__all_type, + STATE(8103), 1, + sym_param_cmd, + ACTIONS(6176), 2, anon_sym_table, anon_sym_record, - STATE(4899), 3, + STATE(7626), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6362), 31, + ACTIONS(6174), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -335140,27 +336982,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [115438] = 9, + [118505] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6195), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(3336), 1, + sym_comment, + ACTIONS(6223), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6225), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6227), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5276), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5274), 31, sym__newline, - ACTIONS(6366), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [118565] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6178), 1, anon_sym_list, - STATE(3326), 1, - aux_sym_shebang_repeat1, - STATE(3331), 1, + STATE(3337), 1, sym_comment, - STATE(4758), 1, + STATE(3358), 1, + aux_sym__multiple_types_repeat2, + STATE(7288), 1, + sym__one_type, + STATE(8133), 1, sym__type_annotation, - ACTIONS(6364), 2, + ACTIONS(6176), 2, anon_sym_table, anon_sym_record, - STATE(4899), 3, + STATE(6815), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6362), 31, + ACTIONS(6174), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -335192,74 +337086,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [115499] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3332), 1, - sym_comment, - ACTIONS(2129), 10, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2131), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [115550] = 9, + [118626] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6182), 1, + ACTIONS(6178), 1, anon_sym_list, - ACTIONS(6195), 1, + ACTIONS(6191), 1, sym__newline, - STATE(3333), 1, + STATE(3338), 1, sym_comment, - STATE(3456), 1, + STATE(3461), 1, aux_sym_shebang_repeat1, - STATE(7107), 1, + STATE(6912), 1, sym__type_annotation, - ACTIONS(6180), 2, + ACTIONS(6176), 2, anon_sym_table, anon_sym_record, - STATE(6312), 3, + STATE(6815), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6178), 31, + ACTIONS(6174), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -335291,59 +337138,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [115611] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3334), 1, - sym_comment, - ACTIONS(2183), 10, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2185), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [115662] = 4, + [118687] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3335), 1, + STATE(3339), 1, sym_comment, - ACTIONS(994), 8, + ACTIONS(998), 8, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, @@ -335352,7 +337152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(996), 32, + ACTIONS(1000), 32, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -335385,30 +337185,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115713] = 4, + [118738] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3336), 1, + STATE(3340), 1, sym_comment, - ACTIONS(998), 8, + ACTIONS(6345), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5239), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1000), 32, + ACTIONS(5237), 33, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -335421,8 +337226,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -335430,32 +337233,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115764] = 4, + [118791] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(3337), 1, + ACTIONS(6347), 1, + anon_sym_DASH2, + ACTIONS(6353), 1, + anon_sym_PLUS2, + STATE(3341), 1, sym_comment, - ACTIONS(1002), 8, + ACTIONS(5239), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6345), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6349), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1004), 32, + ACTIONS(6351), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5237), 30, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -335468,21 +337280,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [118852] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6347), 1, + anon_sym_DASH2, + ACTIONS(6353), 1, + anon_sym_PLUS2, + ACTIONS(6365), 1, + anon_sym_bit_DASHand2, + ACTIONS(6367), 1, + anon_sym_bit_DASHxor2, + STATE(3342), 1, + sym_comment, + ACTIONS(6345), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6349), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6351), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6355), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6361), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6363), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, + ACTIONS(6357), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6359), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5237), 16, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115815] = 4, + [118925] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3338), 1, + STATE(3343), 1, sym_comment, ACTIONS(990), 8, anon_sym_GT2, @@ -335526,100 +337390,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115866] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_list, - STATE(3324), 1, - aux_sym__multiple_types_repeat2, - STATE(3339), 1, - sym_comment, - STATE(7172), 1, - sym__one_type, - STATE(7669), 1, - sym__type_annotation, - ACTIONS(6180), 2, - anon_sym_table, - anon_sym_record, - STATE(6312), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6178), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [115927] = 15, + [118976] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6370), 1, + ACTIONS(6347), 1, anon_sym_DASH2, - ACTIONS(6384), 1, + ACTIONS(6353), 1, anon_sym_PLUS2, - ACTIONS(6388), 1, + ACTIONS(6365), 1, anon_sym_bit_DASHand2, - ACTIONS(6390), 1, - anon_sym_bit_DASHxor2, - STATE(3340), 1, + STATE(3344), 1, sym_comment, - ACTIONS(6368), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6374), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6378), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6380), 2, + ACTIONS(6345), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6382), 2, + ACTIONS(6349), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6351), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6386), 2, + ACTIONS(6355), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6361), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6363), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6372), 4, + ACTIONS(6357), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6376), 4, + ACTIONS(6359), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5237), 16, + ACTIONS(5237), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -335635,22 +337445,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116000] = 8, + [119047] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6392), 1, - anon_sym_DOT, - STATE(1642), 1, - sym_path, - STATE(3175), 1, - sym_cell_path, - STATE(3341), 1, + ACTIONS(6333), 1, + anon_sym_LPAREN2, + ACTIONS(6339), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6341), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6369), 1, + anon_sym_DOLLAR, + STATE(3345), 1, sym_comment, - STATE(3372), 1, - aux_sym_cell_path_repeat1, - ACTIONS(961), 9, - anon_sym_DOT_DOT2, + STATE(3812), 1, + sym__immediate_decimal, + ACTIONS(6371), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3750), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1663), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -335659,7 +337477,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(963), 27, + ACTIONS(1671), 23, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335671,14 +337490,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -335687,125 +337501,138 @@ 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, - [116059] = 6, + [119112] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6394), 1, - anon_sym_DOT, - ACTIONS(6396), 1, - aux_sym__immediate_decimal_token2, - STATE(3342), 1, - sym_comment, - ACTIONS(1607), 11, - anon_sym_DOLLAR, + ACTIONS(6347), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(1609), 27, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [116114] = 6, + ACTIONS(6353), 1, + anon_sym_PLUS2, + ACTIONS(6365), 1, + anon_sym_bit_DASHand2, + ACTIONS(6367), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6373), 1, + anon_sym_bit_DASHor2, + STATE(3346), 1, + sym_comment, + ACTIONS(6345), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6349), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6351), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6355), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6361), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6363), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6357), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6359), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5237), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [119187] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6398), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6400), 1, - aux_sym__immediate_decimal_token2, - STATE(3343), 1, + ACTIONS(6178), 1, + anon_sym_list, + ACTIONS(6191), 1, + sym__newline, + STATE(3347), 1, sym_comment, - ACTIONS(1621), 11, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(1623), 27, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [116169] = 9, + STATE(3348), 1, + aux_sym_shebang_repeat1, + STATE(6941), 1, + sym__type_annotation, + ACTIONS(6176), 2, + anon_sym_table, + anon_sym_record, + STATE(6815), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6174), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [119248] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6195), 1, - sym__newline, - ACTIONS(6366), 1, + ACTIONS(6178), 1, anon_sym_list, - STATE(3330), 1, - aux_sym_shebang_repeat1, - STATE(3344), 1, + ACTIONS(6191), 1, + sym__newline, + STATE(3348), 1, sym_comment, - STATE(4752), 1, + STATE(3461), 1, + aux_sym_shebang_repeat1, + STATE(6919), 1, sym__type_annotation, - ACTIONS(6364), 2, + ACTIONS(6176), 2, anon_sym_table, anon_sym_record, - STATE(4899), 3, + STATE(6815), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6362), 31, + ACTIONS(6174), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -335837,27 +337664,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [116230] = 9, + [119309] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_list, - ACTIONS(6195), 1, + ACTIONS(6191), 1, sym__newline, - STATE(3345), 1, + ACTIONS(6379), 1, + anon_sym_list, + STATE(3349), 1, sym_comment, - STATE(3456), 1, + STATE(3461), 1, aux_sym_shebang_repeat1, - STATE(6753), 1, + STATE(4635), 1, sym__type_annotation, - ACTIONS(6180), 2, + ACTIONS(6377), 2, anon_sym_table, anon_sym_record, - STATE(6312), 3, + STATE(4856), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6178), 31, + ACTIONS(6375), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -335889,69 +337716,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [116291] = 14, + [119370] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6370), 1, - anon_sym_DASH2, - ACTIONS(6384), 1, - anon_sym_PLUS2, - ACTIONS(6388), 1, - anon_sym_bit_DASHand2, - STATE(3346), 1, + STATE(3350), 1, sym_comment, - ACTIONS(6368), 2, + ACTIONS(994), 8, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6374), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6378), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6380), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6382), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6386), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6372), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6376), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5237), 17, - ts_builtin_sym_end, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(996), 32, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116362] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119421] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3347), 1, + STATE(3351), 1, sym_comment, - ACTIONS(1755), 10, + ACTIONS(1739), 10, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_err_GT, @@ -335962,7 +337779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1757), 30, + ACTIONS(1741), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335993,18 +337810,37 @@ 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, - [116413] = 4, + [119472] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(3348), 1, + ACTIONS(6333), 1, + anon_sym_LPAREN2, + ACTIONS(6339), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6341), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6369), 1, + anon_sym_DOLLAR, + STATE(3352), 1, sym_comment, - ACTIONS(2214), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2218), 35, + STATE(3838), 1, + sym__immediate_decimal, + ACTIONS(6371), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3829), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1673), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1675), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -336017,41 +337853,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [116464] = 4, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [119537] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(3349), 1, + ACTIONS(6333), 1, + anon_sym_LPAREN2, + ACTIONS(6339), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6341), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6369), 1, + anon_sym_DOLLAR, + STATE(3353), 1, sym_comment, - ACTIONS(2222), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2224), 35, + STATE(3850), 1, + sym__immediate_decimal, + ACTIONS(6371), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3845), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1677), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1679), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -336064,51 +337907,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [116515] = 11, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [119602] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6381), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6383), 1, + aux_sym__immediate_decimal_token2, + STATE(3354), 1, + sym_comment, + ACTIONS(1585), 11, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(1587), 27, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [119657] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6333), 1, anon_sym_LPAREN2, - ACTIONS(6341), 1, + ACTIONS(6339), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6343), 1, + ACTIONS(6341), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6349), 1, + ACTIONS(6369), 1, anon_sym_DOLLAR, - STATE(3350), 1, + STATE(3355), 1, sym_comment, - STATE(3815), 1, + STATE(3747), 1, sym__immediate_decimal, - ACTIONS(6351), 2, + ACTIONS(6371), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3814), 2, + STATE(3849), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1691), 8, + ACTIONS(1593), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -336117,7 +337997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1693), 23, + ACTIONS(1603), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -336141,78 +338021,41 @@ 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, - [116580] = 10, + [119722] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6370), 1, + ACTIONS(6347), 1, anon_sym_DASH2, - ACTIONS(6384), 1, + ACTIONS(6353), 1, anon_sym_PLUS2, - STATE(3351), 1, + STATE(3356), 1, sym_comment, - ACTIONS(5239), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6374), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6380), 2, + ACTIONS(6345), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6382), 2, + ACTIONS(6349), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6351), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6386), 2, + ACTIONS(6355), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6363), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5237), 28, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(6357), 4, anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6359), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [116643] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3352), 1, - sym_comment, - ACTIONS(6374), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6380), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6382), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5239), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5237), 31, + ACTIONS(5237), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -336225,56 +338068,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116700] = 11, + [119789] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6370), 1, - anon_sym_DASH2, - ACTIONS(6384), 1, - anon_sym_PLUS2, - STATE(3353), 1, + ACTIONS(6191), 1, + sym__newline, + ACTIONS(6379), 1, + anon_sym_list, + STATE(3357), 1, sym_comment, - ACTIONS(6368), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6374), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6380), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6382), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6386), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6376), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5237), 24, - ts_builtin_sym_end, + STATE(3368), 1, + aux_sym_shebang_repeat1, + STATE(4640), 1, + sym__type_annotation, + ACTIONS(6377), 2, + anon_sym_table, + anon_sym_record, + STATE(4856), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6375), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [119850] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6391), 1, + anon_sym_list, + STATE(7589), 1, + sym__one_type, + STATE(8133), 1, + sym__type_annotation, + ACTIONS(6388), 2, + anon_sym_table, + anon_sym_record, + STATE(3358), 2, + sym_comment, + aux_sym__multiple_types_repeat2, + STATE(6815), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6385), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [119909] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3359), 1, + sym_comment, + ACTIONS(1785), 10, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1787), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -336286,33 +338207,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_in2, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [116765] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [119960] = 10, ACTIONS(247), 1, anon_sym_POUND, - STATE(3354), 1, + ACTIONS(6347), 1, + anon_sym_DASH2, + ACTIONS(6353), 1, + anon_sym_PLUS2, + STATE(3360), 1, sym_comment, - ACTIONS(6380), 2, + ACTIONS(5239), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6345), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5239), 5, - anon_sym_GT2, + ACTIONS(6349), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5237), 33, + ACTIONS(6351), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6363), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5237), 28, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -336325,7 +338263,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -336339,57 +338276,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116818] = 16, + [120023] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6370), 1, + ACTIONS(6347), 1, anon_sym_DASH2, - ACTIONS(6384), 1, + ACTIONS(6353), 1, anon_sym_PLUS2, - ACTIONS(6388), 1, - anon_sym_bit_DASHand2, - ACTIONS(6390), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6402), 1, - anon_sym_bit_DASHor2, - STATE(3355), 1, + STATE(3361), 1, sym_comment, - ACTIONS(6368), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6374), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6378), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6380), 2, + ACTIONS(6345), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6382), 2, + ACTIONS(6349), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6351), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6386), 2, + ACTIONS(6355), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6361), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6363), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6372), 4, + ACTIONS(6357), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6376), 4, + ACTIONS(6359), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5237), 15, + ACTIONS(5237), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -336405,47 +338332,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [116893] = 17, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [120092] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6178), 1, + anon_sym_list, + ACTIONS(6191), 1, + sym__newline, + STATE(3338), 1, + aux_sym_shebang_repeat1, + STATE(3362), 1, + sym_comment, + STATE(7444), 1, + sym__type_annotation, + ACTIONS(6176), 2, + anon_sym_table, + anon_sym_record, + STATE(6815), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6174), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [120153] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6370), 1, + ACTIONS(6347), 1, anon_sym_DASH2, - ACTIONS(6384), 1, + ACTIONS(6353), 1, anon_sym_PLUS2, - ACTIONS(6388), 1, + ACTIONS(6365), 1, anon_sym_bit_DASHand2, - ACTIONS(6390), 1, + ACTIONS(6367), 1, anon_sym_bit_DASHxor2, - ACTIONS(6402), 1, + ACTIONS(6373), 1, anon_sym_bit_DASHor2, - ACTIONS(6404), 1, + ACTIONS(6394), 1, anon_sym_and2, - STATE(3356), 1, + STATE(3363), 1, sym_comment, - ACTIONS(6368), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6374), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6378), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6380), 2, + ACTIONS(6345), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6382), 2, + ACTIONS(6349), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6351), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6386), 2, + ACTIONS(6355), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6361), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6363), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6372), 4, + ACTIONS(6357), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6376), 4, + ACTIONS(6359), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -336465,54 +338447,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_xor2, anon_sym_or2, - [116970] = 18, + [120230] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6370), 1, - anon_sym_DASH2, - ACTIONS(6384), 1, - anon_sym_PLUS2, - ACTIONS(6388), 1, - anon_sym_bit_DASHand2, - ACTIONS(6390), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6402), 1, - anon_sym_bit_DASHor2, - ACTIONS(6404), 1, - anon_sym_and2, - ACTIONS(6406), 1, - anon_sym_xor2, - STATE(3357), 1, + STATE(3364), 1, sym_comment, - ACTIONS(6368), 2, + ACTIONS(2246), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6374), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6378), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6380), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6382), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6386), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6372), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6376), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5237), 13, + anon_sym_PLUS2, + ACTIONS(2250), 35, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -336525,84 +338471,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or2, - [117049] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6370), 1, anon_sym_DASH2, - ACTIONS(6384), 1, - anon_sym_PLUS2, - STATE(3358), 1, - sym_comment, - ACTIONS(6368), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6374), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6380), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6382), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6386), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6372), 4, anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6376), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5237), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117116] = 9, + [120281] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6370), 1, - anon_sym_DASH2, - ACTIONS(6384), 1, - anon_sym_PLUS2, - STATE(3359), 1, + STATE(3365), 1, sym_comment, - ACTIONS(5239), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6374), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6380), 2, + ACTIONS(6345), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6382), 2, + ACTIONS(6349), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6351), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5237), 30, + ACTIONS(5239), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5237), 31, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -336615,6 +338525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -336633,84 +338544,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117177] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6370), 1, - anon_sym_DASH2, - ACTIONS(6384), 1, - anon_sym_PLUS2, - STATE(3360), 1, - sym_comment, - ACTIONS(6368), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6374), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6378), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6380), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6382), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6386), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6372), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6376), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5237), 18, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [117246] = 11, + [120338] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6335), 1, - anon_sym_LPAREN2, - ACTIONS(6341), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6343), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6349), 1, - anon_sym_DOLLAR, - STATE(3361), 1, + ACTIONS(6396), 1, + anon_sym_DOT, + STATE(1615), 1, + sym_path, + STATE(3196), 1, + sym_cell_path, + STATE(3366), 1, sym_comment, - STATE(3773), 1, - sym__immediate_decimal, - ACTIONS(6351), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3772), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1581), 8, + STATE(3392), 1, + aux_sym_cell_path_repeat1, + ACTIONS(961), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -336719,8 +338567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1591), 23, - ts_builtin_sym_end, + ACTIONS(963), 27, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -336732,170 +338579,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [117311] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6408), 1, - anon_sym_DOT, - STATE(1642), 1, - sym_path, - STATE(1679), 1, - sym_cell_path, - STATE(3362), 1, - sym_comment, - STATE(3390), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1735), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - ACTIONS(1737), 29, - anon_sym_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_EQ_GT, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [117369] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6410), 1, - aux_sym__immediate_decimal_token2, - STATE(3363), 1, - sym_comment, - ACTIONS(1673), 11, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(1675), 27, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [117421] = 22, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3313), 1, - aux_sym_unquoted_token1, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(3997), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3999), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4001), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4003), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4215), 1, - anon_sym_DOT_DOT, - ACTIONS(5722), 1, - sym_val_date, - ACTIONS(6412), 1, - anon_sym_DOLLAR, - STATE(3364), 1, - sym_comment, - STATE(5906), 1, - sym__val_number_decimal, - STATE(5960), 1, - sym_val_variable, - STATE(5961), 1, - sym_unquoted, - STATE(7572), 1, - sym__val_range, - STATE(7585), 1, - sym__unquoted_anonymous_prefix, - STATE(8000), 1, - sym_val_bool, - ACTIONS(3995), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4217), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5720), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(2663), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2665), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -336904,198 +338595,127 @@ 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, - [117507] = 8, + [120397] = 18, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6408), 1, - anon_sym_DOT, - STATE(1642), 1, - sym_path, - STATE(1688), 1, - sym_cell_path, - STATE(3365), 1, - sym_comment, - STATE(3390), 1, - aux_sym_cell_path_repeat1, - ACTIONS(961), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - ACTIONS(963), 29, - anon_sym_PIPE, + ACTIONS(6347), 1, anon_sym_DASH2, - anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, + ACTIONS(6353), 1, + anon_sym_PLUS2, + ACTIONS(6365), 1, + anon_sym_bit_DASHand2, + ACTIONS(6367), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6373), 1, + anon_sym_bit_DASHor2, + ACTIONS(6394), 1, anon_sym_and2, + ACTIONS(6398), 1, anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + STATE(3367), 1, + sym_comment, + ACTIONS(6345), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6349), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6351), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [117565] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_DOT, - ACTIONS(6416), 1, - aux_sym__immediate_decimal_token2, - STATE(3366), 1, - sym_comment, - ACTIONS(1607), 8, + ACTIONS(6355), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1609), 29, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, + ACTIONS(6361), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, + ACTIONS(6363), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [117619] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6418), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6420), 1, - aux_sym__immediate_decimal_token2, - STATE(3367), 1, - sym_comment, - ACTIONS(1621), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1623), 29, - sym__newline, - anon_sym_DASH2, + ACTIONS(6357), 4, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6359), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [117673] = 22, + ACTIONS(5237), 13, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_or2, + [120476] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3313), 1, - aux_sym_unquoted_token1, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(3997), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3999), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4001), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4003), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4215), 1, - anon_sym_DOT_DOT, - ACTIONS(5722), 1, - sym_val_date, - ACTIONS(6412), 1, - anon_sym_DOLLAR, + ACTIONS(6191), 1, + sym__newline, + ACTIONS(6379), 1, + anon_sym_list, STATE(3368), 1, sym_comment, - STATE(5906), 1, - sym__val_number_decimal, - STATE(5960), 1, - sym_val_variable, - STATE(5961), 1, - sym_unquoted, - STATE(7572), 1, - sym__val_range, - STATE(7585), 1, - sym__unquoted_anonymous_prefix, - STATE(8000), 1, - sym_val_bool, - ACTIONS(3995), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4217), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5720), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(2663), 8, + STATE(3461), 1, + aux_sym_shebang_repeat1, + STATE(4705), 1, + sym__type_annotation, + ACTIONS(6377), 2, + anon_sym_table, + anon_sym_record, + STATE(4856), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6375), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [120537] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3369), 1, + sym_comment, + ACTIONS(2118), 10, + anon_sym_DASH2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -337104,8 +338724,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2665), 9, - anon_sym_null, + ACTIONS(2120), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -337114,77 +338755,183 @@ 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, - [117759] = 6, + [120588] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6422), 1, - anon_sym_DOT, - ACTIONS(6424), 1, - aux_sym__immediate_decimal_token2, - STATE(3369), 1, + ACTIONS(6191), 1, + sym__newline, + ACTIONS(6379), 1, + anon_sym_list, + STATE(3349), 1, + aux_sym_shebang_repeat1, + STATE(3370), 1, sym_comment, - ACTIONS(1607), 9, - anon_sym_GT2, + STATE(4750), 1, + sym__type_annotation, + ACTIONS(6377), 2, + anon_sym_table, + anon_sym_record, + STATE(4856), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6375), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [120649] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6178), 1, + anon_sym_list, + STATE(3358), 1, + aux_sym__multiple_types_repeat2, + STATE(3371), 1, + sym_comment, + STATE(6952), 1, + sym__one_type, + STATE(8133), 1, + sym__type_annotation, + ACTIONS(6176), 2, + anon_sym_table, + anon_sym_record, + STATE(6815), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6174), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [120710] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3372), 1, + sym_comment, + ACTIONS(1765), 10, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1609), 28, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1767), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [117813] = 6, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [120761] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6426), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6428), 1, - aux_sym__immediate_decimal_token2, - STATE(3370), 1, + STATE(3373), 1, sym_comment, - ACTIONS(1621), 9, + ACTIONS(2254), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1623), 28, - anon_sym_DASH_DASH, + ACTIONS(2256), 35, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -337197,7 +338944,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -337207,36 +338953,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [117867] = 8, + [120812] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6408), 1, - anon_sym_DOT, - STATE(1642), 1, - sym_path, - STATE(1657), 1, - sym_cell_path, - STATE(3371), 1, + STATE(3374), 1, sym_comment, - STATE(3390), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1769), 6, + ACTIONS(2398), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - ACTIONS(1771), 29, + ACTIONS(5160), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(2400), 23, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -337258,20 +339001,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [117925] = 7, + [120865] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6392), 1, - anon_sym_DOT, - STATE(1642), 1, - sym_path, - STATE(3372), 1, + STATE(3375), 1, sym_comment, - STATE(3373), 1, - aux_sym_cell_path_repeat1, - ACTIONS(967), 9, + ACTIONS(1841), 10, + anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, @@ -337281,7 +339017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(969), 27, + ACTIONS(1843), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337294,8 +339030,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -337309,17 +339048,13 @@ 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, - [117981] = 6, + [120916] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6430), 1, - anon_sym_DOT, - STATE(1642), 1, - sym_path, - STATE(3373), 2, + STATE(3376), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(971), 9, + ACTIONS(2183), 10, + anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, @@ -337329,7 +339064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(973), 27, + ACTIONS(2185), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337342,8 +339077,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -337357,14 +339095,16 @@ 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, - [118035] = 5, + [120967] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6396), 1, + ACTIONS(6400), 1, + anon_sym_DOT, + ACTIONS(6402), 1, aux_sym__immediate_decimal_token2, - STATE(3374), 1, + STATE(3377), 1, sym_comment, - ACTIONS(1607), 11, + ACTIONS(1573), 11, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -337376,7 +339116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token2, - ACTIONS(1609), 27, + ACTIONS(1575), 27, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -337404,26 +339144,37 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [118087] = 6, + [121022] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6201), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6433), 1, - anon_sym_DOT, - STATE(3375), 1, - sym_comment, - ACTIONS(1755), 9, + ACTIONS(6347), 1, anon_sym_DASH2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1757), 28, + ACTIONS(6353), 1, + anon_sym_PLUS2, + STATE(3378), 1, + sym_comment, + ACTIONS(6345), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6349), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6351), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6355), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6363), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6359), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5237), 24, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337435,47 +339186,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [121087] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3379), 1, + sym_comment, + ACTIONS(1002), 8, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1004), 32, + sym__newline, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_if, + anon_sym_in2, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_as, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [118141] = 12, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121138] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6203), 1, - anon_sym_DOLLAR, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(6211), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6435), 1, + ACTIONS(6209), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6404), 1, anon_sym_DOT, - STATE(3376), 1, + STATE(3380), 1, sym_comment, - STATE(3638), 1, - sym__immediate_decimal, - ACTIONS(6209), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3481), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1530), 8, + ACTIONS(1765), 9, + anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -337484,7 +339264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1544), 21, + ACTIONS(1767), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337497,7 +339277,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -337506,64 +339293,16 @@ 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, - [118207] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6182), 1, - anon_sym_list, - STATE(3377), 1, - sym_comment, - STATE(7685), 1, - sym__type_annotation, - ACTIONS(6180), 2, - anon_sym_table, - anon_sym_record, - STATE(6312), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6178), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [118262] = 6, + [121192] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6437), 1, + ACTIONS(6406), 1, anon_sym_DOT, - ACTIONS(6439), 1, + ACTIONS(6408), 1, aux_sym__immediate_decimal_token2, - STATE(3378), 1, + STATE(3381), 1, sym_comment, - ACTIONS(1607), 8, + ACTIONS(1573), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -337572,10 +339311,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1609), 28, + ACTIONS(1575), 29, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -337601,16 +339341,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [118315] = 6, + [121246] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6441), 1, + ACTIONS(6410), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6443), 1, + ACTIONS(6412), 1, aux_sym__immediate_decimal_token2, - STATE(3379), 1, + STATE(3382), 1, sym_comment, - ACTIONS(1621), 8, + ACTIONS(1585), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -337619,10 +339359,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1623), 28, + ACTIONS(1587), 29, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -337648,30 +339389,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [118368] = 12, + [121300] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6333), 1, + ACTIONS(6195), 1, anon_sym_DOLLAR, - ACTIONS(6335), 1, + ACTIONS(6197), 1, anon_sym_LPAREN2, - ACTIONS(6341), 1, + ACTIONS(6203), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6343), 1, + ACTIONS(6205), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6445), 1, + ACTIONS(6414), 1, anon_sym_DOT, - STATE(3380), 1, + STATE(3383), 1, sym_comment, - STATE(3779), 1, + STATE(3696), 1, sym__immediate_decimal, - ACTIONS(6339), 2, + ACTIONS(6201), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3533), 2, + STATE(3528), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1530), 8, + ACTIONS(1543), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -337680,8 +339421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1544), 20, - ts_builtin_sym_end, + ACTIONS(1557), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337693,6 +339433,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -337701,50 +339443,196 @@ 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, - [118433] = 21, + [121366] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6416), 1, + anon_sym_DOT, + STATE(1615), 1, + sym_path, + STATE(1705), 1, + sym_cell_path, + STATE(3384), 1, + sym_comment, + STATE(3416), 1, + aux_sym_cell_path_repeat1, + ACTIONS(961), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + ACTIONS(963), 29, + anon_sym_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121424] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6402), 1, + aux_sym__immediate_decimal_token2, + STATE(3385), 1, + sym_comment, + ACTIONS(1573), 11, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(1575), 27, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [121476] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6418), 1, + aux_sym__immediate_decimal_token2, + STATE(3386), 1, + sym_comment, + ACTIONS(1681), 11, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(1683), 27, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [121528] = 22, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(3313), 1, aux_sym_unquoted_token1, - ACTIONS(3997), 1, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(3989), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3999), 1, + ACTIONS(3991), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4001), 1, + ACTIONS(3993), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4003), 1, + ACTIONS(3995), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4215), 1, + ACTIONS(4331), 1, anon_sym_DOT_DOT, - ACTIONS(5722), 1, + ACTIONS(5775), 1, sym_val_date, - ACTIONS(6412), 1, + ACTIONS(6420), 1, anon_sym_DOLLAR, - STATE(3381), 1, + STATE(3387), 1, sym_comment, - STATE(5906), 1, - sym__val_number_decimal, - STATE(5960), 1, + STATE(5750), 1, sym_val_variable, - STATE(5961), 1, + STATE(5752), 1, sym_unquoted, - STATE(7572), 1, + STATE(5795), 1, + sym__val_number_decimal, + STATE(7802), 1, + sym_val_bool, + STATE(7906), 1, sym__val_range, - STATE(7585), 1, + STATE(7913), 1, sym__unquoted_anonymous_prefix, - STATE(8000), 1, - sym_val_bool, - ACTIONS(3995), 2, + ACTIONS(3987), 2, anon_sym_true, anon_sym_false, - ACTIONS(4217), 2, + ACTIONS(4333), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5720), 3, + ACTIONS(5785), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(2663), 8, + ACTIONS(2671), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -337753,7 +339641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2665), 9, + ACTIONS(2673), 9, anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -337763,50 +339651,52 @@ 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, - [118516] = 21, + [121614] = 22, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3391), 1, + ACTIONS(3313), 1, aux_sym_unquoted_token1, - ACTIONS(3997), 1, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(3989), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3999), 1, + ACTIONS(3991), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4001), 1, + ACTIONS(3993), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4003), 1, + ACTIONS(3995), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5722), 1, - sym_val_date, - ACTIONS(5860), 1, + ACTIONS(4331), 1, anon_sym_DOT_DOT, - ACTIONS(6349), 1, + ACTIONS(5775), 1, + sym_val_date, + ACTIONS(6420), 1, anon_sym_DOLLAR, - STATE(3382), 1, + STATE(3388), 1, sym_comment, - STATE(5855), 1, - sym__val_number_decimal, - STATE(6054), 1, + STATE(5750), 1, sym_val_variable, - STATE(6055), 1, + STATE(5752), 1, sym_unquoted, - STATE(7706), 1, + STATE(5795), 1, + sym__val_number_decimal, + STATE(7802), 1, + sym_val_bool, + STATE(7906), 1, sym__val_range, - STATE(7723), 1, + STATE(7913), 1, sym__unquoted_anonymous_prefix, - STATE(8000), 1, - sym_val_bool, - ACTIONS(3995), 2, + ACTIONS(3987), 2, anon_sym_true, anon_sym_false, - ACTIONS(5862), 2, + ACTIONS(4333), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5864), 3, + ACTIONS(5785), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - ACTIONS(2663), 8, + ACTIONS(2671), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -337815,7 +339705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2665), 9, + ACTIONS(2673), 9, anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -337825,134 +339715,33 @@ 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, - [118599] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6447), 1, - sym__entry_separator, - STATE(3383), 2, - sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2320), 36, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [118648] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(6211), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6227), 1, - anon_sym_DOLLAR, - STATE(3384), 1, - sym_comment, - STATE(3619), 1, - sym__immediate_decimal, - ACTIONS(6229), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3436), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1530), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1544), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [118711] = 11, + [121700] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - ACTIONS(4856), 1, - anon_sym_DOT_DOT2, - ACTIONS(4864), 1, - aux_sym_unquoted_token2, - ACTIONS(6450), 1, - sym_filesize_unit, - ACTIONS(6452), 1, - sym_duration_unit, - STATE(3385), 1, + ACTIONS(6416), 1, + anon_sym_DOT, + STATE(1615), 1, + sym_path, + STATE(1652), 1, + sym_cell_path, + STATE(3389), 1, sym_comment, - STATE(7503), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4858), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1709), 5, + STATE(3416), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1747), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1721), 25, - sym__newline, + anon_sym_DOT_DOT2, + ACTIONS(1749), 29, + anon_sym_PIPE, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -337974,27 +339763,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118774] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121758] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6424), 1, - aux_sym__immediate_decimal_token2, - STATE(3386), 1, + ACTIONS(6416), 1, + anon_sym_DOT, + STATE(1615), 1, + sym_path, + STATE(1722), 1, + sym_cell_path, + STATE(3390), 1, sym_comment, - ACTIONS(1607), 9, + STATE(3416), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1733), 6, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1609), 28, - anon_sym_DASH_DASH, + ACTIONS(1737), 29, + anon_sym_PIPE, + anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -338007,7 +339804,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -338019,35 +339815,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [118825] = 11, + [121816] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - ACTIONS(4856), 1, - anon_sym_DOT_DOT2, - ACTIONS(6454), 1, - sym_filesize_unit, - ACTIONS(6456), 1, - sym_duration_unit, - ACTIONS(6458), 1, - aux_sym_unquoted_token2, - STATE(3387), 1, + ACTIONS(6422), 1, + anon_sym_DOT, + ACTIONS(6424), 1, + aux_sym__immediate_decimal_token2, + STATE(3391), 1, sym_comment, - STATE(7386), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4858), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1709), 6, + ACTIONS(1573), 9, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1721), 24, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1575), 28, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -338063,6 +339850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -338072,20 +339860,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118888] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [121870] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6460), 1, + ACTIONS(6396), 1, anon_sym_DOT, - STATE(1471), 1, - sym_cell_path, - STATE(1978), 1, + STATE(1615), 1, sym_path, - STATE(3388), 1, + STATE(3392), 1, sym_comment, - STATE(3403), 1, + STATE(3393), 1, aux_sym_cell_path_repeat1, - ACTIONS(961), 9, + ACTIONS(967), 9, anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, @@ -338095,8 +339884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(963), 25, - ts_builtin_sym_end, + ACTIONS(969), 27, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338108,6 +339896,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -338121,28 +339912,18 @@ 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, - [118945] = 11, + [121926] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(6211), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6227), 1, - anon_sym_DOLLAR, - STATE(3389), 1, + ACTIONS(6426), 1, + anon_sym_DOT, + STATE(1615), 1, + sym_path, + STATE(3393), 2, sym_comment, - STATE(3607), 1, - sym__immediate_decimal, - ACTIONS(6229), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3431), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1565), 8, + aux_sym_cell_path_repeat1, + ACTIONS(971), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -338151,7 +339932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1577), 21, + ACTIONS(973), 27, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338164,7 +339945,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -338173,78 +339960,29 @@ 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, - [119008] = 7, + [121980] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6408), 1, - anon_sym_DOT, - STATE(1642), 1, - sym_path, - STATE(3390), 1, + ACTIONS(6429), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6431), 1, + aux_sym__immediate_decimal_token2, + STATE(3394), 1, sym_comment, - STATE(3391), 1, - aux_sym_cell_path_repeat1, - ACTIONS(967), 6, + ACTIONS(1585), 9, anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - ACTIONS(969), 29, - anon_sym_PIPE, anon_sym_DASH2, - anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119063] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6462), 1, - anon_sym_DOT, - STATE(1642), 1, - sym_path, - STATE(3391), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(971), 6, - anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - ACTIONS(973), 29, - anon_sym_PIPE, - anon_sym_DASH2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1587), 28, + anon_sym_DASH_DASH, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -338257,6 +339995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -338268,12 +340007,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [119116] = 4, + sym_duration_unit, + [122034] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3392), 1, + STATE(3395), 1, sym_comment, - ACTIONS(1607), 11, + ACTIONS(1573), 11, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -338285,7 +340025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token2, - ACTIONS(1609), 27, + ACTIONS(1575), 27, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -338313,23 +340053,163 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [119165] = 7, + [122083] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6433), 1, + sym__entry_separator, + STATE(3396), 2, + sym_comment, + aux_sym__multiple_types_repeat1, + ACTIONS(2332), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [122132] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6436), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6438), 1, + aux_sym__immediate_decimal_token2, + STATE(3397), 1, + sym_comment, + ACTIONS(1585), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1587), 28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [122185] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6444), 1, + anon_sym_list, + STATE(3398), 1, + sym_comment, + STATE(5498), 1, + sym__all_type, + ACTIONS(6442), 2, + anon_sym_table, + anon_sym_record, + STATE(5522), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6440), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [122240] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6469), 1, + ACTIONS(6444), 1, anon_sym_list, - STATE(3393), 1, + STATE(3399), 1, sym_comment, - STATE(7433), 1, - sym__type_annotation, - ACTIONS(6467), 2, + STATE(5438), 1, + sym__all_type, + ACTIONS(6442), 2, anon_sym_table, anon_sym_record, - STATE(7413), 3, + STATE(5522), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6465), 31, + ACTIONS(6440), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -338361,23 +340241,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [119220] = 7, + [122295] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6475), 1, + ACTIONS(6178), 1, anon_sym_list, - STATE(3394), 1, + STATE(3400), 1, sym_comment, - STATE(5367), 1, - sym__all_type, - ACTIONS(6473), 2, + STATE(8049), 1, + sym__type_annotation, + ACTIONS(6176), 2, anon_sym_table, anon_sym_record, - STATE(5574), 3, + STATE(6815), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6471), 31, + ACTIONS(6174), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -338409,14 +340289,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [119275] = 5, + [122350] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6416), 1, + ACTIONS(6408), 1, aux_sym__immediate_decimal_token2, - STATE(3395), 1, + STATE(3401), 1, sym_comment, - ACTIONS(1607), 8, + ACTIONS(1573), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -338425,7 +340305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1609), 29, + ACTIONS(1575), 29, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -338455,24 +340335,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [119326] = 5, + [122401] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6477), 1, - aux_sym__immediate_decimal_token2, - STATE(3396), 1, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(6203), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6205), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6283), 1, + anon_sym_DOLLAR, + STATE(3402), 1, + sym_comment, + STATE(3615), 1, + sym__immediate_decimal, + ACTIONS(6285), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3451), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1543), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1557), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [122464] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + ACTIONS(4858), 1, + anon_sym_DOT_DOT2, + ACTIONS(6446), 1, + sym_filesize_unit, + ACTIONS(6448), 1, + sym_duration_unit, + ACTIONS(6450), 1, + aux_sym_unquoted_token2, + STATE(3403), 1, sym_comment, - ACTIONS(1673), 9, + STATE(7632), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4860), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1707), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1675), 28, + ACTIONS(1719), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -338488,7 +340430,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -338498,34 +340439,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + [122527] = 21, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3313), 1, + aux_sym_unquoted_token1, + ACTIONS(3989), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3991), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3993), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3995), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4331), 1, + anon_sym_DOT_DOT, + ACTIONS(5775), 1, + sym_val_date, + ACTIONS(6420), 1, + anon_sym_DOLLAR, + STATE(3404), 1, + sym_comment, + STATE(5750), 1, + sym_val_variable, + STATE(5752), 1, + sym_unquoted, + STATE(5795), 1, + sym__val_number_decimal, + STATE(7802), 1, + sym_val_bool, + STATE(7906), 1, + sym__val_range, + STATE(7913), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3987), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4333), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5785), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + ACTIONS(2671), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2673), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [122610] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6452), 1, + anon_sym_DOT, + STATE(1463), 1, + sym_cell_path, + STATE(2080), 1, + sym_path, + STATE(3405), 1, + sym_comment, + STATE(3458), 1, + aux_sym_cell_path_repeat1, + ACTIONS(961), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(963), 25, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [119377] = 4, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [122667] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(3397), 1, + ACTIONS(4722), 1, + anon_sym_DOT_DOT2, + ACTIONS(6454), 1, + sym_filesize_unit, + ACTIONS(6456), 1, + sym_duration_unit, + ACTIONS(6458), 1, + aux_sym_unquoted_token2, + STATE(3406), 1, sym_comment, - ACTIONS(1621), 11, + ACTIONS(4724), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1707), 9, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(1623), 27, + ACTIONS(1719), 23, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -338538,114 +340594,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [119426] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6475), 1, - anon_sym_list, - STATE(3398), 1, - sym_comment, - STATE(5368), 1, - sym__all_type, - ACTIONS(6473), 2, - anon_sym_table, - anon_sym_record, - STATE(5574), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6471), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [119481] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6479), 1, - aux_sym__immediate_decimal_token2, - STATE(3399), 1, - sym_comment, - ACTIONS(1673), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1675), 29, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [119532] = 4, + [122726] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3400), 1, + STATE(3407), 1, sym_comment, - ACTIONS(1673), 11, + ACTIONS(1585), 11, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -338657,7 +340617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token2, - ACTIONS(1675), 27, + ACTIONS(1587), 27, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -338685,38 +340645,31 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [119581] = 9, + [122775] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4708), 1, - anon_sym_DOT_DOT2, - ACTIONS(6481), 1, - sym_filesize_unit, - ACTIONS(6483), 1, - sym_duration_unit, - ACTIONS(6485), 1, - aux_sym_unquoted_token2, - STATE(3401), 1, + STATE(3408), 1, sym_comment, - ACTIONS(4710), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1709), 9, + ACTIONS(1681), 11, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1721), 23, + aux_sym_unquoted_token2, + ACTIONS(1683), 27, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -338729,18 +340682,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [119640] = 4, + [122824] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(3402), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + ACTIONS(4858), 1, + anon_sym_DOT_DOT2, + ACTIONS(4866), 1, + aux_sym_unquoted_token2, + ACTIONS(6460), 1, + sym_filesize_unit, + ACTIONS(6462), 1, + sym_duration_unit, + STATE(3409), 1, + sym_comment, + STATE(7707), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4860), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1707), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1719), 25, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [122887] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3410), 1, sym_comment, - ACTIONS(1763), 11, + ACTIONS(1761), 11, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -338752,7 +340759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token2, - ACTIONS(1765), 27, + ACTIONS(1763), 27, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -338780,19 +340787,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [119689] = 7, + [122936] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6460), 1, - anon_sym_DOT, - STATE(1978), 1, - sym_path, - STATE(3403), 1, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(6203), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6205), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6283), 1, + anon_sym_DOLLAR, + STATE(3411), 1, sym_comment, - STATE(3415), 1, - aux_sym_cell_path_repeat1, - ACTIONS(967), 9, - anon_sym_DOT_DOT2, + STATE(3625), 1, + sym__immediate_decimal, + ACTIONS(6285), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3426), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1657), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -338801,8 +340817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(969), 25, - ts_builtin_sym_end, + ACTIONS(1659), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338814,11 +340829,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -338827,29 +340839,25 @@ 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, - [119743] = 8, + [122999] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6487), 1, - anon_sym_DOT, - STATE(3404), 1, + ACTIONS(6464), 1, + aux_sym__immediate_decimal_token2, + STATE(3412), 1, sym_comment, - STATE(3451), 1, - aux_sym_cell_path_repeat1, - STATE(3559), 1, - sym_path, - STATE(3603), 1, - sym_cell_path, - ACTIONS(1769), 7, + ACTIONS(1681), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - ACTIONS(1771), 26, - anon_sym_DASH_DASH, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1683), 29, + sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -338864,6 +340872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -338875,57 +340884,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [119799] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3405), 1, - sym_comment, - ACTIONS(2472), 9, - anon_sym_DASH2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2474), 28, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [119847] = 4, + sym_duration_unit, + [123050] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3406), 1, + ACTIONS(6466), 1, + aux_sym__immediate_decimal_token2, + STATE(3413), 1, sym_comment, - ACTIONS(1607), 8, + ACTIONS(1681), 9, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, @@ -338933,9 +340902,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1609), 29, - sym__newline, - anon_sym_DASH2, + ACTIONS(1683), 28, + anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -338963,57 +340931,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [119895] = 4, + [123101] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(3407), 1, + ACTIONS(6472), 1, + anon_sym_list, + STATE(3414), 1, sym_comment, - ACTIONS(2476), 9, - anon_sym_DASH2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2478), 28, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [119943] = 4, + STATE(7473), 1, + sym__type_annotation, + ACTIONS(6470), 2, + anon_sym_table, + anon_sym_record, + STATE(7612), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6468), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [123156] = 12, ACTIONS(247), 1, anon_sym_POUND, - STATE(3408), 1, + ACTIONS(6331), 1, + anon_sym_DOLLAR, + ACTIONS(6333), 1, + anon_sym_LPAREN2, + ACTIONS(6339), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6341), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6474), 1, + anon_sym_DOT, + STATE(3415), 1, sym_comment, - ACTIONS(2371), 9, - anon_sym_DASH2, + STATE(3751), 1, + sym__immediate_decimal, + ACTIONS(6337), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3561), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1543), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -339022,7 +341011,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2373), 28, + ACTIONS(1557), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339034,15 +341024,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -339051,25 +341032,31 @@ 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, - [119991] = 4, + [123221] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(3409), 1, + ACTIONS(6416), 1, + anon_sym_DOT, + STATE(1615), 1, + sym_path, + STATE(3416), 1, sym_comment, - ACTIONS(1621), 8, + STATE(3417), 1, + aux_sym_cell_path_repeat1, + ACTIONS(967), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1623), 29, - sym__newline, + ACTIONS(969), 29, + anon_sym_PIPE, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -339082,7 +341069,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -339094,32 +341080,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [120039] = 8, + [123276] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6487), 1, + ACTIONS(6476), 1, anon_sym_DOT, - STATE(3410), 1, + STATE(1615), 1, + sym_path, + STATE(3417), 2, sym_comment, - STATE(3451), 1, aux_sym_cell_path_repeat1, - STATE(3559), 1, - sym_path, - STATE(3590), 1, - sym_cell_path, - ACTIONS(961), 7, + ACTIONS(971), 6, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - ACTIONS(963), 26, - anon_sym_DASH_DASH, + ACTIONS(973), 29, + anon_sym_PIPE, + anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -339143,12 +341127,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [120095] = 4, + [123329] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3411), 1, + ACTIONS(6479), 1, + anon_sym_DOT, + ACTIONS(6481), 1, + aux_sym__immediate_decimal_token2, + STATE(3418), 1, sym_comment, - ACTIONS(1673), 8, + ACTIONS(1573), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -339157,11 +341145,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1675), 29, - sym__newline, + ACTIONS(1575), 28, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -339187,13 +341174,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [120143] = 4, + [123382] = 21, ACTIONS(247), 1, anon_sym_POUND, - STATE(3412), 1, + ACTIONS(3391), 1, + aux_sym_unquoted_token1, + ACTIONS(3989), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3991), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3993), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3995), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5775), 1, + sym_val_date, + ACTIONS(5807), 1, + anon_sym_DOT_DOT, + ACTIONS(6369), 1, + anon_sym_DOLLAR, + STATE(3419), 1, + sym_comment, + STATE(5736), 1, + sym__val_number_decimal, + STATE(6109), 1, + sym_val_variable, + STATE(6224), 1, + sym_unquoted, + STATE(7802), 1, + sym_val_bool, + STATE(7808), 1, + sym__unquoted_anonymous_prefix, + STATE(8160), 1, + sym__val_range, + ACTIONS(3987), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5809), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5811), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + ACTIONS(2671), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2673), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [123465] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6424), 1, + aux_sym__immediate_decimal_token2, + STATE(3420), 1, sym_comment, - ACTIONS(1763), 8, + ACTIONS(1573), 9, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, @@ -339201,9 +341253,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1765), 29, - sym__newline, - anon_sym_DASH2, + ACTIONS(1575), 28, + anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -339231,20 +341282,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [120191] = 8, + [123516] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6487), 1, + ACTIONS(6483), 1, anon_sym_DOT, - STATE(3413), 1, + STATE(3421), 1, sym_comment, - STATE(3451), 1, + STATE(3476), 1, aux_sym_cell_path_repeat1, - STATE(3559), 1, + STATE(3576), 1, sym_path, - STATE(3604), 1, + STATE(3629), 1, sym_cell_path, - ACTIONS(1735), 7, + ACTIONS(961), 7, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, @@ -339252,7 +341303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - ACTIONS(1737), 26, + ACTIONS(963), 26, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -339279,14 +341330,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [120247] = 5, + [123572] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6485), 1, + anon_sym_RBRACK, + ACTIONS(6489), 1, + sym__entry_separator, + STATE(3396), 1, + aux_sym__multiple_types_repeat1, + STATE(3422), 1, + sym_comment, + ACTIONS(6487), 34, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [123624] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6439), 1, - aux_sym__immediate_decimal_token2, - STATE(3414), 1, + STATE(3423), 1, + sym_comment, + ACTIONS(1585), 9, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1587), 28, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [123672] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3424), 1, sym_comment, - ACTIONS(1607), 8, + ACTIONS(1573), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -339295,10 +341434,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1609), 28, + ACTIONS(1575), 29, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -339324,18 +341464,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [120297] = 6, + [123720] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6489), 1, + ACTIONS(6483), 1, anon_sym_DOT, - STATE(1978), 1, - sym_path, - STATE(3415), 2, + STATE(3425), 1, sym_comment, + STATE(3476), 1, aux_sym_cell_path_repeat1, - ACTIONS(971), 9, + STATE(3576), 1, + sym_path, + STATE(3620), 1, + sym_cell_path, + ACTIONS(1747), 7, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_DOT_DOT2, + ACTIONS(1749), 26, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [123776] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3426), 1, + sym_comment, + ACTIONS(2363), 9, + anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -339344,8 +341527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(973), 25, - ts_builtin_sym_end, + ACTIONS(2365), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339357,11 +341539,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -339370,26 +341556,31 @@ 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, - [120349] = 5, + [123824] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6492), 1, - aux_sym__immediate_decimal_token2, - STATE(3416), 1, + ACTIONS(6483), 1, + anon_sym_DOT, + STATE(3427), 1, sym_comment, - ACTIONS(1673), 8, + STATE(3476), 1, + aux_sym_cell_path_repeat1, + STATE(3576), 1, + sym_path, + STATE(3628), 1, + sym_cell_path, + ACTIONS(1733), 7, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1675), 28, - anon_sym_DASH2, + ACTIONS(1737), 26, + anon_sym_DASH_DASH, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -339402,7 +341593,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -339414,37 +341604,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [120399] = 11, + [123880] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - ACTIONS(4856), 1, - anon_sym_DOT_DOT2, - ACTIONS(4864), 1, - aux_sym_unquoted_token2, - ACTIONS(6494), 1, - sym_filesize_unit, - ACTIONS(6496), 1, - sym_duration_unit, - STATE(3417), 1, + STATE(3428), 1, sym_comment, - STATE(7503), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4858), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1709), 5, + ACTIONS(1585), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1721), 24, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1587), 29, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -339457,6 +341635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -339466,18 +341645,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [120461] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [123928] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3429), 1, + sym_comment, + ACTIONS(2436), 9, + anon_sym_DASH2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2438), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [123976] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6498), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(6491), 1, anon_sym_RBRACK, - ACTIONS(6502), 1, + STATE(3396), 1, + aux_sym__multiple_types_repeat1, + STATE(3430), 1, + sym_comment, + ACTIONS(6487), 34, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [124028] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6493), 1, + anon_sym_DOT, + STATE(2080), 1, + sym_path, + STATE(3431), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(971), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(973), 25, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [124080] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6489), 1, sym__entry_separator, - STATE(3383), 1, + ACTIONS(6496), 1, + anon_sym_RBRACK, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(3418), 1, + STATE(3432), 1, sym_comment, - ACTIONS(6500), 34, + ACTIONS(6487), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -339512,28 +341830,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [120513] = 11, + [124132] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3433), 1, + sym_comment, + ACTIONS(1761), 9, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1763), 28, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [124180] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6333), 1, anon_sym_LPAREN2, - ACTIONS(6341), 1, + ACTIONS(6339), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6343), 1, + ACTIONS(6341), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6349), 1, + ACTIONS(6369), 1, anon_sym_DOLLAR, - STATE(3419), 1, + STATE(3434), 1, sym_comment, - STATE(3972), 1, + STATE(3976), 1, sym__immediate_decimal, - ACTIONS(6351), 2, + ACTIONS(6371), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3808), 2, + STATE(3856), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1565), 8, + ACTIONS(1657), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -339542,7 +341904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1577), 20, + ACTIONS(1659), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -339563,60 +341925,14 @@ 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, - [120575] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(6504), 1, - anon_sym_RBRACK, - STATE(3383), 1, - aux_sym__multiple_types_repeat1, - STATE(3420), 1, - sym_comment, - ACTIONS(6500), 34, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [120627] = 4, + [124242] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2419), 1, + ACTIONS(2462), 1, sym__entry_separator, - STATE(3421), 1, + STATE(3435), 1, sym_comment, - ACTIONS(2417), 36, + ACTIONS(2460), 36, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_any, @@ -339653,14 +341969,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [120675] = 4, + [124290] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3422), 1, + ACTIONS(6498), 1, + aux_sym__immediate_decimal_token2, + STATE(3436), 1, sym_comment, - ACTIONS(1607), 9, + ACTIONS(1681), 8, anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1683), 28, anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [124340] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6481), 1, + aux_sym__immediate_decimal_token2, + STATE(3437), 1, + sym_comment, + ACTIONS(1573), 8, + anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, @@ -339668,10 +342030,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1609), 28, - anon_sym_DASH_DASH, + ACTIONS(1575), 28, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -339697,12 +342059,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [120723] = 4, + [124390] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3423), 1, + STATE(3438), 1, sym_comment, - ACTIONS(2391), 9, + ACTIONS(2498), 9, anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, @@ -339712,7 +342074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2393), 28, + ACTIONS(2500), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339741,12 +342103,12 @@ 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, - [120771] = 4, + [124438] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3424), 1, + STATE(3439), 1, sym_comment, - ACTIONS(2413), 9, + ACTIONS(2514), 9, anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, @@ -339756,7 +342118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2415), 28, + ACTIONS(2516), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339785,13 +342147,28 @@ 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, - [120819] = 4, + [124486] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(3425), 1, + ACTIONS(6333), 1, + anon_sym_LPAREN2, + ACTIONS(6339), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6341), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6369), 1, + anon_sym_DOLLAR, + STATE(3440), 1, sym_comment, - ACTIONS(2421), 9, - anon_sym_DASH2, + STATE(3988), 1, + sym__immediate_decimal, + ACTIONS(6371), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3756), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1543), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -339800,7 +342177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2423), 28, + ACTIONS(1557), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339812,15 +342190,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -339829,12 +342198,12 @@ 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, - [120867] = 4, + [124548] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3426), 1, + STATE(3441), 1, sym_comment, - ACTIONS(1621), 9, + ACTIONS(1681), 9, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, @@ -339844,7 +342213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1623), 28, + ACTIONS(1683), 28, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -339873,56 +342242,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [120915] = 4, + [124596] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3427), 1, + STATE(3442), 1, sym_comment, - ACTIONS(2425), 9, - anon_sym_DASH2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2427), 28, + ACTIONS(1681), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1683), 29, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [120963] = 4, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [124644] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3428), 1, + STATE(3443), 1, sym_comment, - ACTIONS(2429), 9, + ACTIONS(2426), 9, anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, @@ -339932,7 +342301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2431), 28, + ACTIONS(2428), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339961,58 +342330,12 @@ 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, - [121011] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(6506), 1, - anon_sym_RBRACK, - STATE(3383), 1, - aux_sym__multiple_types_repeat1, - STATE(3429), 1, - sym_comment, - ACTIONS(6500), 34, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [121063] = 4, + [124692] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3430), 1, + STATE(3444), 1, sym_comment, - ACTIONS(2433), 9, + ACTIONS(2351), 9, anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, @@ -340022,7 +342345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2435), 28, + ACTIONS(2353), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340051,12 +342374,12 @@ 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, - [121111] = 4, + [124740] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3431), 1, + STATE(3445), 1, sym_comment, - ACTIONS(2441), 9, + ACTIONS(2157), 9, anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, @@ -340066,7 +342389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2443), 28, + ACTIONS(2163), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340095,12 +342418,12 @@ 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, - [121159] = 4, + [124788] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3432), 1, + STATE(3446), 1, sym_comment, - ACTIONS(2375), 9, + ACTIONS(2383), 9, anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, @@ -340110,7 +342433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2377), 28, + ACTIONS(2385), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340139,12 +342462,56 @@ 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, - [121207] = 4, + [124836] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3433), 1, + STATE(3447), 1, + sym_comment, + ACTIONS(1761), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1763), 29, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [124884] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3448), 1, sym_comment, - ACTIONS(2167), 9, + ACTIONS(2355), 9, anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, @@ -340154,7 +342521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2173), 28, + ACTIONS(2357), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340183,12 +342550,12 @@ 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, - [121255] = 4, + [124932] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3434), 1, + STATE(3449), 1, sym_comment, - ACTIONS(2175), 9, + ACTIONS(2122), 9, anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, @@ -340198,7 +342565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2181), 28, + ACTIONS(2128), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340227,20 +342594,13 @@ 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, - [121303] = 8, + [124980] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4902), 1, - anon_sym_DOT, - STATE(1702), 1, - aux_sym_cell_path_repeat1, - STATE(1894), 1, - sym_path, - STATE(3175), 1, - sym_cell_path, - STATE(3435), 1, + STATE(3450), 1, sym_comment, - ACTIONS(961), 8, + ACTIONS(2130), 9, + anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -340249,7 +342609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(963), 25, + ACTIONS(2136), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340262,8 +342622,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -340275,12 +342638,12 @@ 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, - [121359] = 4, + [125028] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3436), 1, + STATE(3451), 1, sym_comment, - ACTIONS(2133), 9, + ACTIONS(2146), 9, anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, @@ -340290,7 +342653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2139), 28, + ACTIONS(2152), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340319,56 +342682,12 @@ 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, - [121407] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3437), 1, - sym_comment, - ACTIONS(1673), 9, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1675), 28, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [121455] = 4, + [125076] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3438), 1, + STATE(3452), 1, sym_comment, - ACTIONS(1763), 9, + ACTIONS(1573), 9, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, @@ -340378,7 +342697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1765), 28, + ACTIONS(1575), 28, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -340407,12 +342726,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [121503] = 4, + [125124] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3439), 1, + STATE(3453), 1, sym_comment, - ACTIONS(2159), 9, + ACTIONS(2359), 9, anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, @@ -340422,7 +342741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2165), 28, + ACTIONS(2361), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340451,69 +342770,18 @@ 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, - [121551] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6335), 1, - anon_sym_LPAREN2, - ACTIONS(6341), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6343), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6349), 1, - anon_sym_DOLLAR, - STATE(3440), 1, - sym_comment, - STATE(3973), 1, - sym__immediate_decimal, - ACTIONS(6351), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3788), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1530), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1544), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [121613] = 6, + [125172] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(6508), 1, + ACTIONS(6500), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(3441), 1, + STATE(3454), 1, sym_comment, - ACTIONS(6500), 34, + ACTIONS(6487), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -340548,28 +342816,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [121665] = 6, + [125224] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3455), 1, + sym_comment, + ACTIONS(2422), 9, + anon_sym_DASH2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2424), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [125272] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6510), 1, + ACTIONS(4894), 1, anon_sym_DOT, - STATE(3559), 1, + STATE(1690), 1, + aux_sym_cell_path_repeat1, + STATE(1882), 1, sym_path, - STATE(3442), 2, + STATE(3196), 1, + sym_cell_path, + STATE(3456), 1, + sym_comment, + ACTIONS(961), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(963), 25, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [125328] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3457), 1, sym_comment, + ACTIONS(2494), 9, + anon_sym_DASH2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2496), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [125376] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6452), 1, + anon_sym_DOT, + STATE(2080), 1, + sym_path, + STATE(3431), 1, aux_sym_cell_path_repeat1, - ACTIONS(971), 7, + STATE(3458), 1, + sym_comment, + ACTIONS(967), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(969), 25, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [125430] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + ACTIONS(4858), 1, + anon_sym_DOT_DOT2, + ACTIONS(4866), 1, + aux_sym_unquoted_token2, + ACTIONS(6502), 1, + sym_filesize_unit, + ACTIONS(6504), 1, + sym_duration_unit, + STATE(3459), 1, + sym_comment, + STATE(7707), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4860), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1707), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - ACTIONS(973), 26, - anon_sym_DASH_DASH, + ACTIONS(1719), 24, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -340591,22 +343050,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [121716] = 8, + [125492] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6513), 1, + ACTIONS(6506), 1, anon_sym_DOT, - STATE(3443), 1, + STATE(3460), 1, sym_comment, - STATE(3512), 1, + STATE(3547), 1, aux_sym_cell_path_repeat1, - STATE(3606), 1, + STATE(3621), 1, sym_path, - STATE(3703), 1, + STATE(3674), 1, sym_cell_path, - ACTIONS(1976), 7, + ACTIONS(2038), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -340614,7 +343071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1978), 25, + ACTIONS(2040), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -340640,67 +343097,63 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [121771] = 8, + [125547] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6513), 1, - anon_sym_DOT, - STATE(3444), 1, + ACTIONS(6508), 1, + sym__newline, + STATE(3461), 2, sym_comment, - STATE(3512), 1, - aux_sym_cell_path_repeat1, - STATE(3606), 1, - sym_path, - STATE(3676), 1, - sym_cell_path, - ACTIONS(1913), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1915), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [121826] = 8, + aux_sym_shebang_repeat1, + ACTIONS(1296), 34, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [125594] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6513), 1, + ACTIONS(6506), 1, anon_sym_DOT, - STATE(3445), 1, + STATE(3462), 1, sym_comment, - STATE(3512), 1, + STATE(3547), 1, aux_sym_cell_path_repeat1, - STATE(3606), 1, + STATE(3621), 1, sym_path, - STATE(3707), 1, + STATE(3663), 1, sym_cell_path, - ACTIONS(1933), 7, + ACTIONS(1859), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -340708,7 +343161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1935), 25, + ACTIONS(1861), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -340734,12 +343187,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [121881] = 4, + [125649] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3446), 1, + STATE(3463), 1, sym_comment, - ACTIONS(1621), 8, + ACTIONS(1761), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -340748,7 +343201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1623), 28, + ACTIONS(1763), 28, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -340777,20 +343230,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [121928] = 8, + [125696] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6513), 1, + ACTIONS(6506), 1, anon_sym_DOT, - STATE(3447), 1, + STATE(3464), 1, sym_comment, - STATE(3512), 1, + STATE(3547), 1, aux_sym_cell_path_repeat1, - STATE(3606), 1, + STATE(3621), 1, sym_path, - STATE(3644), 1, + STATE(3643), 1, sym_cell_path, - ACTIONS(1996), 7, + ACTIONS(1867), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -340798,7 +343251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1998), 25, + ACTIONS(1869), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -340824,197 +343277,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [121983] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6515), 1, - anon_sym_DOT, - ACTIONS(6517), 1, - aux_sym__immediate_decimal_token2, - STATE(3448), 1, - sym_comment, - ACTIONS(1755), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1757), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [122034] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3449), 1, - sym_comment, - ACTIONS(1673), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1675), 28, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [122081] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3450), 1, - sym_comment, - ACTIONS(1763), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1765), 28, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [122128] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6487), 1, - anon_sym_DOT, - STATE(3442), 1, - aux_sym_cell_path_repeat1, - STATE(3451), 1, - sym_comment, - STATE(3559), 1, - sym_path, - ACTIONS(967), 7, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - ACTIONS(969), 26, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [122181] = 8, + [125751] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6513), 1, + ACTIONS(6506), 1, anon_sym_DOT, - STATE(3452), 1, + STATE(3465), 1, sym_comment, - STATE(3512), 1, + STATE(3547), 1, aux_sym_cell_path_repeat1, - STATE(3606), 1, + STATE(3621), 1, sym_path, - STATE(3663), 1, + STATE(3710), 1, sym_cell_path, - ACTIONS(2090), 7, + ACTIONS(1847), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -341022,7 +343298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2092), 25, + ACTIONS(1851), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -341048,20 +343324,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [122236] = 8, + [125806] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6513), 1, + ACTIONS(6506), 1, anon_sym_DOT, - STATE(3453), 1, + STATE(3466), 1, sym_comment, - STATE(3512), 1, + STATE(3547), 1, aux_sym_cell_path_repeat1, - STATE(3606), 1, + STATE(3621), 1, sym_path, - STATE(3704), 1, + STATE(3642), 1, sym_cell_path, - ACTIONS(2094), 7, + ACTIONS(1871), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -341069,7 +343345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2096), 25, + ACTIONS(1873), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -341095,20 +343371,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [122291] = 8, + [125861] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6513), 1, + ACTIONS(6506), 1, anon_sym_DOT, - STATE(3454), 1, + STATE(3467), 1, sym_comment, - STATE(3512), 1, + STATE(3547), 1, aux_sym_cell_path_repeat1, - STATE(3606), 1, + STATE(3621), 1, sym_path, - STATE(3710), 1, + STATE(3648), 1, sym_cell_path, - ACTIONS(1944), 7, + ACTIONS(1879), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -341116,7 +343392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1946), 25, + ACTIONS(1881), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -341142,20 +343418,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [122346] = 8, + [125916] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6513), 1, + ACTIONS(6506), 1, anon_sym_DOT, - STATE(3455), 1, + STATE(3468), 1, sym_comment, - STATE(3512), 1, + STATE(3547), 1, aux_sym_cell_path_repeat1, - STATE(3606), 1, + STATE(3621), 1, sym_path, - STATE(3631), 1, + STATE(3711), 1, sym_cell_path, - ACTIONS(1948), 7, + ACTIONS(961), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -341163,7 +343439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1950), 25, + ACTIONS(963), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -341171,75 +343447,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [122401] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6519), 1, - sym__newline, - STATE(3456), 2, - sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1296), 34, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [122448] = 6, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [125971] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6522), 1, + ACTIONS(6511), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6524), 1, + ACTIONS(6513), 1, aux_sym__immediate_decimal_token2, - STATE(3457), 1, + STATE(3469), 1, sym_comment, ACTIONS(1739), 9, anon_sym_DOT_DOT2, @@ -341277,20 +343510,20 @@ 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, - [122499] = 8, + [126022] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6513), 1, + ACTIONS(6506), 1, anon_sym_DOT, - STATE(3458), 1, + STATE(3470), 1, sym_comment, - STATE(3512), 1, + STATE(3547), 1, aux_sym_cell_path_repeat1, - STATE(3606), 1, + STATE(3621), 1, sym_path, - STATE(3660), 1, + STATE(3649), 1, sym_cell_path, - ACTIONS(1988), 7, + ACTIONS(1883), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -341298,7 +343531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1990), 25, + ACTIONS(1885), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -341324,20 +343557,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [122554] = 8, + [126077] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6513), 1, + ACTIONS(6506), 1, anon_sym_DOT, - STATE(3459), 1, + STATE(3471), 1, sym_comment, - STATE(3512), 1, + STATE(3547), 1, aux_sym_cell_path_repeat1, - STATE(3606), 1, + STATE(3621), 1, sym_path, - STATE(3667), 1, + STATE(3691), 1, sym_cell_path, - ACTIONS(2068), 7, + ACTIONS(1863), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -341345,7 +343578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2070), 25, + ACTIONS(1865), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -341371,20 +343604,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [122609] = 8, + [126132] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6513), 1, + ACTIONS(6506), 1, anon_sym_DOT, - STATE(3460), 1, + STATE(3472), 1, sym_comment, - STATE(3512), 1, + STATE(3547), 1, aux_sym_cell_path_repeat1, - STATE(3606), 1, + STATE(3621), 1, sym_path, - STATE(3712), 1, + STATE(3650), 1, sym_cell_path, - ACTIONS(2072), 7, + ACTIONS(1887), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -341392,7 +343625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2074), 25, + ACTIONS(1889), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -341418,20 +343651,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [122664] = 8, + [126187] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6513), 1, + ACTIONS(6506), 1, anon_sym_DOT, - STATE(3461), 1, + STATE(3473), 1, sym_comment, - STATE(3512), 1, + STATE(3547), 1, aux_sym_cell_path_repeat1, - STATE(3606), 1, + STATE(3621), 1, sym_path, - STATE(3670), 1, + STATE(3652), 1, sym_cell_path, - ACTIONS(1907), 7, + ACTIONS(1891), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -341439,7 +343672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1911), 25, + ACTIONS(1893), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -341465,20 +343698,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [122719] = 8, + [126242] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6513), 1, + ACTIONS(6506), 1, anon_sym_DOT, - STATE(3462), 1, + STATE(3474), 1, sym_comment, - STATE(3512), 1, + STATE(3547), 1, aux_sym_cell_path_repeat1, - STATE(3606), 1, + STATE(3621), 1, sym_path, - STATE(3637), 1, + STATE(3653), 1, sym_cell_path, - ACTIONS(2082), 7, + ACTIONS(1895), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -341486,7 +343719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2084), 25, + ACTIONS(1897), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -341512,19 +343745,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [122774] = 4, + [126297] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3463), 1, + STATE(3475), 1, sym_comment, - ACTIONS(5088), 6, + ACTIONS(5054), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5086), 30, + ACTIONS(5052), 30, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -341555,20 +343788,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [122821] = 8, + [126344] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6513), 1, + ACTIONS(6483), 1, anon_sym_DOT, - STATE(3464), 1, + STATE(3476), 1, sym_comment, - STATE(3512), 1, + STATE(3484), 1, aux_sym_cell_path_repeat1, - STATE(3606), 1, + STATE(3576), 1, sym_path, - STATE(3648), 1, + ACTIONS(967), 7, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + ACTIONS(969), 26, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [126397] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6515), 1, + anon_sym_LBRACK2, + STATE(3477), 1, + sym_comment, + ACTIONS(2322), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2326), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [126446] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6506), 1, + anon_sym_DOT, + STATE(3478), 1, + sym_comment, + STATE(3547), 1, + aux_sym_cell_path_repeat1, + STATE(3621), 1, + sym_path, + STATE(3654), 1, sym_cell_path, - ACTIONS(2000), 7, + ACTIONS(1911), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -341576,7 +343899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2002), 25, + ACTIONS(1913), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -341602,20 +343925,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [122876] = 8, + [126501] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6513), 1, + ACTIONS(6506), 1, anon_sym_DOT, - STATE(3465), 1, + STATE(3479), 1, sym_comment, - STATE(3512), 1, + STATE(3547), 1, aux_sym_cell_path_repeat1, - STATE(3606), 1, + STATE(3621), 1, sym_path, - STATE(3633), 1, + STATE(3655), 1, sym_cell_path, - ACTIONS(1952), 7, + ACTIONS(1915), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -341623,7 +343946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1954), 25, + ACTIONS(1917), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -341649,20 +343972,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [122931] = 8, + [126556] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6513), 1, + ACTIONS(6506), 1, anon_sym_DOT, - STATE(3466), 1, + STATE(3480), 1, sym_comment, - STATE(3512), 1, + STATE(3547), 1, aux_sym_cell_path_repeat1, - STATE(3606), 1, + STATE(3621), 1, sym_path, - STATE(3659), 1, + STATE(3658), 1, sym_cell_path, - ACTIONS(2004), 7, + ACTIONS(1919), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -341670,7 +343993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2006), 25, + ACTIONS(1921), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -341696,20 +344019,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [122986] = 8, + [126611] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6513), 1, + ACTIONS(6506), 1, anon_sym_DOT, - STATE(3467), 1, + STATE(3481), 1, sym_comment, - STATE(3512), 1, + STATE(3547), 1, aux_sym_cell_path_repeat1, - STATE(3606), 1, + STATE(3621), 1, sym_path, - STATE(3699), 1, + STATE(3659), 1, sym_cell_path, - ACTIONS(1992), 7, + ACTIONS(1927), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -341717,7 +344040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1994), 25, + ACTIONS(1929), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -341743,20 +344066,60 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [123041] = 8, + [126666] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5216), 1, + STATE(3482), 1, + sym_comment, + ACTIONS(1573), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1575), 28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [126713] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6517), 1, anon_sym_DOT, - STATE(1471), 1, - sym_cell_path, - STATE(1987), 1, - aux_sym_cell_path_repeat1, - STATE(2197), 1, - sym_path, - STATE(3468), 1, + ACTIONS(6519), 1, + aux_sym__immediate_decimal_token2, + STATE(3483), 1, sym_comment, - ACTIONS(961), 8, + ACTIONS(1765), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -341765,7 +344128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(963), 24, + ACTIONS(1767), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -341778,10 +344141,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -341790,150 +344154,57 @@ 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, - [123096] = 8, + [126764] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6513), 1, + ACTIONS(6521), 1, anon_sym_DOT, - STATE(3469), 1, - sym_comment, - STATE(3512), 1, - aux_sym_cell_path_repeat1, - STATE(3606), 1, + STATE(3576), 1, sym_path, - STATE(3651), 1, - sym_cell_path, - ACTIONS(1960), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1962), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [123151] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - STATE(3383), 1, - aux_sym__multiple_types_repeat1, - STATE(3470), 1, - sym_comment, - ACTIONS(6500), 34, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [123200] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6513), 1, - anon_sym_DOT, - STATE(3471), 1, + STATE(3484), 2, sym_comment, - STATE(3512), 1, aux_sym_cell_path_repeat1, - STATE(3606), 1, - sym_path, - STATE(3654), 1, - sym_cell_path, - ACTIONS(1968), 7, - anon_sym_DOLLAR, + ACTIONS(971), 7, + anon_sym_GT2, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1970), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + ACTIONS(973), 26, + anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [123255] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [126815] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3472), 1, + STATE(3485), 1, sym_comment, - ACTIONS(1607), 8, + ACTIONS(1585), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -341942,7 +344213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1609), 28, + ACTIONS(1587), 28, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -341971,20 +344242,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [123302] = 8, + [126862] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6513), 1, + ACTIONS(6506), 1, anon_sym_DOT, - STATE(3473), 1, + STATE(3486), 1, sym_comment, - STATE(3512), 1, + STATE(3547), 1, aux_sym_cell_path_repeat1, - STATE(3606), 1, + STATE(3621), 1, sym_path, - STATE(3655), 1, + STATE(3660), 1, sym_cell_path, - ACTIONS(1925), 7, + ACTIONS(1942), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -341992,7 +344263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1927), 25, + ACTIONS(1944), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -342018,20 +344289,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [123357] = 8, + [126917] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6513), 1, + ACTIONS(6506), 1, anon_sym_DOT, - STATE(3474), 1, + STATE(3487), 1, sym_comment, - STATE(3512), 1, + STATE(3547), 1, aux_sym_cell_path_repeat1, - STATE(3606), 1, + STATE(3621), 1, sym_path, - STATE(3656), 1, + STATE(3661), 1, sym_cell_path, - ACTIONS(1972), 7, + ACTIONS(2026), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -342039,7 +344310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1974), 25, + ACTIONS(2028), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -342065,64 +344336,66 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [123412] = 4, + [126972] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3475), 1, + ACTIONS(6506), 1, + anon_sym_DOT, + STATE(3488), 1, sym_comment, - ACTIONS(5022), 6, - anon_sym_GT2, + STATE(3547), 1, + aux_sym_cell_path_repeat1, + STATE(3621), 1, + sym_path, + STATE(3662), 1, + sym_cell_path, + ACTIONS(2030), 7, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5020), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2032), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [123459] = 5, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [127027] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6526), 1, - anon_sym_LBRACK2, - STATE(3476), 1, + STATE(3489), 1, sym_comment, - ACTIONS(2337), 6, + ACTIONS(5064), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2341), 29, + ACTIONS(5062), 30, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -342143,6 +344416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -342152,20 +344426,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [123508] = 8, + [127074] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6513), 1, + ACTIONS(6506), 1, anon_sym_DOT, - STATE(3477), 1, + STATE(3490), 1, sym_comment, - STATE(3512), 1, + STATE(3547), 1, aux_sym_cell_path_repeat1, - STATE(3606), 1, + STATE(3621), 1, sym_path, - STATE(3657), 1, + STATE(3682), 1, sym_cell_path, - ACTIONS(1984), 7, + ACTIONS(1907), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -342173,7 +344447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1986), 25, + ACTIONS(1909), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -342199,20 +344473,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [123563] = 8, + [127129] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6513), 1, + ACTIONS(6506), 1, anon_sym_DOT, - STATE(3478), 1, + STATE(3491), 1, sym_comment, - STATE(3512), 1, + STATE(3547), 1, aux_sym_cell_path_repeat1, - STATE(3606), 1, + STATE(3621), 1, sym_path, - STATE(3705), 1, + STATE(3666), 1, sym_cell_path, - ACTIONS(961), 7, + ACTIONS(2034), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -342220,7 +344494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(963), 25, + ACTIONS(2036), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -342246,104 +344520,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [123618] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6528), 1, - anon_sym_LPAREN2, - ACTIONS(6530), 1, - anon_sym_EQ2, - ACTIONS(6532), 1, - sym_short_flag_identifier, - STATE(3479), 1, - sym_comment, - ACTIONS(4956), 13, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4958), 19, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - [123670] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3480), 1, - sym_comment, - ACTIONS(2496), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2498), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [123716] = 6, + [127184] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6534), 1, - anon_sym_DOT_DOT2, - STATE(3481), 1, + ACTIONS(5196), 1, + anon_sym_DOT, + STATE(1463), 1, + sym_cell_path, + STATE(2060), 1, + aux_sym_cell_path_repeat1, + STATE(2251), 1, + sym_path, + STATE(3492), 1, sym_comment, - ACTIONS(6536), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2133), 8, + ACTIONS(961), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -342352,7 +344542,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2139), 24, + ACTIONS(963), 24, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342364,8 +344555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -342377,71 +344567,71 @@ 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, - [123766] = 7, + [127239] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6538), 1, + ACTIONS(6506), 1, anon_sym_DOT, - STATE(3482), 1, + STATE(3493), 1, sym_comment, - STATE(3485), 1, + STATE(3547), 1, aux_sym_cell_path_repeat1, - STATE(3600), 1, + STATE(3621), 1, sym_path, - ACTIONS(967), 6, - anon_sym_GT2, + STATE(3677), 1, + sym_cell_path, + ACTIONS(1931), 7, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(969), 26, - anon_sym_DASH_DASH, - anon_sym_in2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1933), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - aux_sym_record_entry_token1, - sym__table_head_separator, - [123818] = 5, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [127294] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6540), 1, - anon_sym_QMARK2, - STATE(3483), 1, + STATE(3494), 1, sym_comment, - ACTIONS(984), 8, + ACTIONS(1681), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(986), 26, - anon_sym_DASH_DASH, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1683), 28, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -342454,6 +344644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -342465,69 +344656,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [123866] = 4, + sym_duration_unit, + [127341] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3484), 1, + ACTIONS(6506), 1, + anon_sym_DOT, + STATE(3495), 1, sym_comment, - ACTIONS(1948), 6, - anon_sym_GT2, + STATE(3547), 1, + aux_sym_cell_path_repeat1, + STATE(3621), 1, + sym_path, + STATE(3680), 1, + sym_cell_path, + ACTIONS(1899), 7, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1950), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1901), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [123912] = 6, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [127396] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6489), 1, + sym__entry_separator, + STATE(3396), 1, + aux_sym__multiple_types_repeat1, + STATE(3496), 1, + sym_comment, + ACTIONS(6487), 34, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [127445] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6542), 1, - anon_sym_DOT, - STATE(3600), 1, - sym_path, - STATE(3485), 2, + STATE(3497), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(971), 6, + ACTIONS(2472), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(973), 26, + ACTIONS(2474), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -342549,21 +344790,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - aux_sym_record_entry_token1, - sym__table_head_separator, - [123962] = 4, + [127491] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3486), 1, + STATE(3498), 1, sym_comment, - ACTIONS(2347), 6, + ACTIONS(2452), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2349), 29, + ACTIONS(2454), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -342593,19 +344832,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124008] = 4, + [127537] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3487), 1, + STATE(3499), 1, sym_comment, - ACTIONS(2492), 6, + ACTIONS(2406), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2494), 29, + ACTIONS(2408), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -342635,19 +344874,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124054] = 4, + [127583] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3488), 1, + STATE(3500), 1, sym_comment, - ACTIONS(2508), 6, + ACTIONS(1907), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2510), 29, + ACTIONS(1909), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -342677,19 +344916,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124100] = 4, + [127629] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3489), 1, + STATE(3501), 1, sym_comment, - ACTIONS(2347), 6, + ACTIONS(2456), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2349), 29, + ACTIONS(2458), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -342719,27 +344958,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124146] = 4, + [127675] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(3490), 1, + ACTIONS(6524), 1, + anon_sym_DOT, + STATE(3502), 1, sym_comment, - ACTIONS(2343), 6, + STATE(3511), 1, + aux_sym_cell_path_repeat1, + STATE(3607), 1, + sym_path, + ACTIONS(967), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2345), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(969), 26, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -342761,19 +345001,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124192] = 4, + aux_sym_record_entry_token1, + sym__table_head_separator, + [127727] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3491), 1, + STATE(3503), 1, sym_comment, - ACTIONS(2351), 6, + ACTIONS(1942), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2353), 29, + ACTIONS(1944), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -342803,19 +345045,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124238] = 4, + [127773] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3492), 1, + STATE(3504), 1, sym_comment, - ACTIONS(2363), 6, + ACTIONS(2490), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2365), 29, + ACTIONS(2492), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -342845,19 +345087,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124284] = 4, + [127819] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3493), 1, + STATE(3505), 1, sym_comment, - ACTIONS(2437), 6, + ACTIONS(2468), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2439), 29, + ACTIONS(2470), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -342887,19 +345129,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124330] = 4, + [127865] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3494), 1, + STATE(3506), 1, sym_comment, - ACTIONS(2004), 6, + ACTIONS(2034), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2006), 29, + ACTIONS(2036), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -342929,19 +345171,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124376] = 4, + [127911] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3495), 1, + STATE(3507), 1, sym_comment, - ACTIONS(2407), 6, + ACTIONS(2398), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2409), 29, + ACTIONS(2400), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -342971,61 +345213,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124422] = 4, + [127957] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3496), 1, + ACTIONS(6526), 1, + aux_sym__immediate_decimal_token2, + STATE(3508), 1, sym_comment, - ACTIONS(2488), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2490), 29, + ACTIONS(1785), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1787), 25, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [124468] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [128005] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3497), 1, + STATE(3509), 1, sym_comment, - ACTIONS(2395), 6, + ACTIONS(2367), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2397), 29, + ACTIONS(2369), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -343055,19 +345298,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124514] = 4, + [128051] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3498), 1, + STATE(3510), 1, sym_comment, - ACTIONS(1972), 6, + ACTIONS(1026), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 29, + ACTIONS(1028), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -343097,68 +345340,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124560] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3499), 1, - sym_comment, - ACTIONS(1288), 35, - sym__newline, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [124604] = 4, + [128097] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3500), 1, + ACTIONS(6528), 1, + anon_sym_DOT, + STATE(3607), 1, + sym_path, + STATE(3511), 2, sym_comment, - ACTIONS(1913), 6, + aux_sym_cell_path_repeat1, + ACTIONS(971), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1915), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(973), 26, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -343180,19 +345382,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124650] = 4, + aux_sym_record_entry_token1, + sym__table_head_separator, + [128147] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3501), 1, + STATE(3512), 1, sym_comment, - ACTIONS(2094), 6, + ACTIONS(2410), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2096), 29, + ACTIONS(2412), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -343222,19 +345426,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124696] = 4, + [128193] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3502), 1, + STATE(3513), 1, sym_comment, - ACTIONS(2090), 6, + ACTIONS(2440), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2092), 29, + ACTIONS(2442), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -343264,19 +345468,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124742] = 4, + [128239] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3503), 1, + STATE(3514), 1, sym_comment, - ACTIONS(1709), 6, + ACTIONS(2478), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1721), 29, + ACTIONS(2480), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -343306,19 +345510,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124788] = 4, + [128285] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3504), 1, + STATE(3515), 1, sym_comment, - ACTIONS(2500), 6, + ACTIONS(2347), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2502), 29, + ACTIONS(2349), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -343348,19 +345552,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124834] = 4, + [128331] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3505), 1, + STATE(3516), 1, sym_comment, - ACTIONS(2355), 6, + ACTIONS(2390), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2357), 29, + ACTIONS(2392), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -343390,26 +345594,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124880] = 5, + [128377] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6545), 1, - anon_sym_QMARK2, - STATE(3506), 1, + STATE(3517), 1, sym_comment, - ACTIONS(978), 8, + ACTIONS(2402), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(980), 26, + ACTIONS(2404), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -343431,21 +345636,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [124928] = 4, + [128423] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3507), 1, + STATE(3518), 1, sym_comment, - ACTIONS(2359), 6, + ACTIONS(2464), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2361), 29, + ACTIONS(2466), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -343475,19 +345678,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124974] = 4, + [128469] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3508), 1, + STATE(3519), 1, sym_comment, - ACTIONS(2367), 6, + ACTIONS(2379), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2369), 29, + ACTIONS(2381), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -343517,62 +345720,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [125020] = 5, + [128515] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6547), 1, - aux_sym__immediate_decimal_token2, - STATE(3509), 1, - sym_comment, - ACTIONS(1783), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1785), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [125068] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3510), 1, + STATE(3520), 1, sym_comment, - ACTIONS(1988), 6, + ACTIONS(1887), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1990), 29, + ACTIONS(1889), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -343602,19 +345762,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [125114] = 4, + [128561] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3511), 1, + STATE(3521), 1, sym_comment, - ACTIONS(2068), 6, + ACTIONS(2444), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2070), 29, + ACTIONS(2446), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -343644,60 +345804,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [125160] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6513), 1, - anon_sym_DOT, - STATE(3512), 1, - sym_comment, - STATE(3521), 1, - aux_sym_cell_path_repeat1, - STATE(3606), 1, - sym_path, - ACTIONS(967), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(969), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [125212] = 5, + [128607] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6517), 1, - aux_sym__immediate_decimal_token2, - STATE(3513), 1, - sym_comment, - ACTIONS(1755), 9, + ACTIONS(6531), 1, anon_sym_DOT_DOT2, + STATE(3522), 1, + sym_comment, + ACTIONS(6533), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2157), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -343706,8 +345823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1757), 25, - ts_builtin_sym_end, + ACTIONS(2163), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -343719,11 +345835,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -343732,28 +345848,23 @@ 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, - [125260] = 8, + [128657] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6549), 1, - anon_sym_DOT_DOT2, - ACTIONS(6553), 1, - sym_filesize_unit, - ACTIONS(6555), 1, - sym_duration_unit, - STATE(3514), 1, + ACTIONS(6535), 1, + anon_sym_QMARK2, + STATE(3523), 1, sym_comment, - ACTIONS(6551), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1709), 6, + ACTIONS(978), 8, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1721), 24, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(980), 26, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -343778,111 +345889,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [125314] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [128705] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3515), 1, + ACTIONS(6537), 1, + anon_sym_DOT_DOT2, + STATE(3524), 1, sym_comment, - ACTIONS(2504), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2506), 29, + ACTIONS(6539), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2122), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2128), 24, sym__newline, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [125360] = 4, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [128755] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3516), 1, + ACTIONS(6541), 1, + anon_sym_DOT_DOT2, + STATE(3525), 1, sym_comment, - ACTIONS(2403), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2405), 29, + ACTIONS(6543), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2130), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2136), 24, sym__newline, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [125406] = 4, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [128805] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3517), 1, + ACTIONS(6545), 1, + anon_sym_QMARK2, + STATE(3526), 1, sym_comment, - ACTIONS(2387), 6, + ACTIONS(984), 8, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2389), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(986), 26, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -343904,19 +346020,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [125452] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [128853] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3518), 1, + STATE(3527), 1, sym_comment, - ACTIONS(2383), 6, + ACTIONS(2482), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2385), 29, + ACTIONS(2484), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -343946,17 +346064,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [125498] = 6, + [128899] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6557), 1, + ACTIONS(6547), 1, anon_sym_DOT_DOT2, - STATE(3519), 1, + STATE(3528), 1, sym_comment, - ACTIONS(6559), 2, + ACTIONS(6549), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2159), 8, + ACTIONS(2146), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -343965,7 +346083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2165), 24, + ACTIONS(2152), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -343990,19 +346108,19 @@ 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, - [125548] = 4, + [128949] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3520), 1, + STATE(3529), 1, sym_comment, - ACTIONS(2456), 6, + ACTIONS(2418), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2458), 29, + ACTIONS(2420), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -344032,63 +346150,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [125594] = 6, + [128995] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6561), 1, - anon_sym_DOT, - STATE(3606), 1, - sym_path, - STATE(3521), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(971), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(973), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [125644] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3522), 1, + STATE(3530), 1, sym_comment, - ACTIONS(2460), 6, + ACTIONS(1707), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2462), 29, + ACTIONS(1719), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -344118,19 +346192,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [125690] = 4, + [129041] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3523), 1, + STATE(3531), 1, sym_comment, - ACTIONS(1907), 6, + ACTIONS(1915), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1911), 29, + ACTIONS(1917), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -344160,19 +346234,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [125736] = 4, + [129087] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3524), 1, + STATE(3532), 1, sym_comment, - ACTIONS(2480), 6, + ACTIONS(1899), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2482), 29, + ACTIONS(1901), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -344202,19 +346276,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [125782] = 4, + [129133] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3525), 1, + STATE(3533), 1, sym_comment, - ACTIONS(1992), 6, + ACTIONS(1863), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1994), 29, + ACTIONS(1865), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -344244,19 +346318,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [125828] = 4, + [129179] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3526), 1, + STATE(3534), 1, sym_comment, - ACTIONS(2464), 6, + ACTIONS(2414), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2466), 29, + ACTIONS(2416), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -344286,19 +346360,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [125874] = 4, + [129225] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3527), 1, + STATE(3535), 1, sym_comment, - ACTIONS(2468), 6, + ACTIONS(1847), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2470), 29, + ACTIONS(1851), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -344328,19 +346402,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [125920] = 4, + [129271] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3528), 1, + STATE(3536), 1, sym_comment, - ACTIONS(2399), 6, + ACTIONS(2430), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2401), 29, + ACTIONS(2432), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -344370,119 +346444,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [125966] = 6, + [129317] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6564), 1, - anon_sym_DOT_DOT2, - STATE(3529), 1, + ACTIONS(6551), 1, + anon_sym_DOT, + STATE(3621), 1, + sym_path, + STATE(3537), 2, sym_comment, - ACTIONS(6566), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2167), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2173), 24, + aux_sym_cell_path_repeat1, + ACTIONS(971), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(973), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [129367] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3538), 1, + sym_comment, + ACTIONS(2510), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2512), 29, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [126016] = 6, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [129413] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6568), 1, - anon_sym_DOT_DOT2, - STATE(3530), 1, + STATE(3539), 1, sym_comment, - ACTIONS(6570), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2175), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2181), 24, + ACTIONS(2448), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2450), 29, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [126066] = 8, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [129459] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6170), 1, - sym_filesize_unit, - ACTIONS(6172), 1, - sym_duration_unit, - ACTIONS(6572), 1, - anon_sym_DOT_DOT2, - STATE(3531), 1, + STATE(3540), 1, sym_comment, - ACTIONS(6574), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1709), 5, + ACTIONS(2464), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1721), 25, + ACTIONS(2466), 29, sym__newline, - anon_sym_DASH2, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -344504,19 +346614,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [126120] = 4, + [129505] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6554), 1, + anon_sym_LPAREN2, + ACTIONS(6556), 1, + anon_sym_EQ2, + ACTIONS(6558), 1, + sym_short_flag_identifier, + STATE(3541), 1, + sym_comment, + ACTIONS(4974), 13, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4976), 19, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + [129557] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3532), 1, + STATE(3542), 1, sym_comment, - ACTIONS(1030), 6, + ACTIONS(2486), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1032), 29, + ACTIONS(2488), 29, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -344546,17 +346701,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [126166] = 6, + [129603] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6576), 1, - anon_sym_DOT_DOT2, - STATE(3533), 1, + ACTIONS(6519), 1, + aux_sym__immediate_decimal_token2, + STATE(3543), 1, sym_comment, - ACTIONS(6578), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2133), 8, + ACTIONS(1765), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -344565,7 +346718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2139), 23, + ACTIONS(1767), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -344581,6 +346734,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -344589,70 +346744,28 @@ 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, - [126215] = 6, + [129651] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6580), 1, + ACTIONS(6560), 1, anon_sym_DOT_DOT2, - STATE(3534), 1, + ACTIONS(6564), 1, + sym_filesize_unit, + ACTIONS(6566), 1, + sym_duration_unit, + STATE(3544), 1, sym_comment, - ACTIONS(6582), 2, + ACTIONS(6562), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2159), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2165), 23, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [126264] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6538), 1, - anon_sym_DOT, - STATE(3482), 1, - aux_sym_cell_path_repeat1, - STATE(3501), 1, - sym_cell_path, - STATE(3535), 1, - sym_comment, - STATE(3600), 1, - sym_path, - ACTIONS(1976), 6, + ACTIONS(1707), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1978), 24, + ACTIONS(1719), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -344677,30 +346790,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [126317] = 8, + [129705] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6538), 1, - anon_sym_DOT, - STATE(3482), 1, - aux_sym_cell_path_repeat1, - STATE(3522), 1, - sym_cell_path, - STATE(3536), 1, + STATE(3545), 1, sym_comment, - STATE(3600), 1, - sym_path, - ACTIONS(1992), 6, + ACTIONS(2343), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1994), 24, + ACTIONS(2345), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -344722,114 +346832,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [126370] = 8, + [129751] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3546), 1, + sym_comment, + ACTIONS(1288), 35, + sym__newline, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [129795] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6538), 1, + ACTIONS(6506), 1, anon_sym_DOT, - STATE(3482), 1, - aux_sym_cell_path_repeat1, - STATE(3511), 1, - sym_cell_path, STATE(3537), 1, + aux_sym_cell_path_repeat1, + STATE(3547), 1, sym_comment, - STATE(3600), 1, + STATE(3621), 1, sym_path, - ACTIONS(1996), 6, - anon_sym_GT2, + ACTIONS(967), 7, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1998), 24, - anon_sym_DASH_DASH, - anon_sym_in2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(969), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [126423] = 4, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [129847] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3538), 1, - sym_comment, - ACTIONS(1755), 9, + ACTIONS(6162), 1, + sym_filesize_unit, + ACTIONS(6164), 1, + sym_duration_unit, + ACTIONS(6568), 1, anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1757), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + STATE(3548), 1, + sym_comment, + ACTIONS(6570), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [126468] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6538), 1, - anon_sym_DOT, - STATE(3482), 1, - aux_sym_cell_path_repeat1, - STATE(3493), 1, - sym_cell_path, - STATE(3539), 1, - sym_comment, - STATE(3600), 1, - sym_path, - ACTIONS(1972), 6, + ACTIONS(1707), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 24, - anon_sym_DASH_DASH, + ACTIONS(1719), 25, + sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -344853,30 +346964,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [126521] = 8, + [129901] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6538), 1, - anon_sym_DOT, - STATE(3482), 1, - aux_sym_cell_path_repeat1, - STATE(3502), 1, - sym_cell_path, - STATE(3540), 1, + STATE(3549), 1, sym_comment, - STATE(3600), 1, - sym_path, - ACTIONS(2082), 6, + ACTIONS(1927), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2084), 24, + ACTIONS(1929), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -344898,24 +347006,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [126574] = 4, + [129947] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3541), 1, + STATE(3550), 1, sym_comment, - ACTIONS(1014), 8, + ACTIONS(2038), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1016), 26, + ACTIONS(2040), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -344937,29 +347048,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [126619] = 8, + [129993] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6538), 1, + ACTIONS(6524), 1, anon_sym_DOT, - STATE(3482), 1, + STATE(3502), 1, aux_sym_cell_path_repeat1, - STATE(3494), 1, + STATE(3506), 1, sym_cell_path, - STATE(3542), 1, + STATE(3551), 1, sym_comment, - STATE(3600), 1, + STATE(3607), 1, sym_path, - ACTIONS(1984), 6, + ACTIONS(1919), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1986), 24, + ACTIONS(1921), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -344984,21 +347093,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [126672] = 5, + [130046] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6584), 1, - anon_sym_QMARK2, - STATE(3543), 1, + ACTIONS(6524), 1, + anon_sym_DOT, + STATE(3502), 1, + aux_sym_cell_path_repeat1, + STATE(3503), 1, + sym_cell_path, + STATE(3552), 1, sym_comment, - ACTIONS(978), 6, + STATE(3607), 1, + sym_path, + ACTIONS(1911), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(980), 27, + ACTIONS(1913), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -345023,20 +347138,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [126719] = 6, + [130099] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6586), 1, + ACTIONS(6572), 1, anon_sym_DOT_DOT2, - STATE(3544), 1, + STATE(3553), 1, sym_comment, - ACTIONS(6588), 2, + ACTIONS(6574), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2167), 8, + ACTIONS(2122), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -345045,7 +347157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2173), 23, + ACTIONS(2128), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -345069,17 +347181,13 @@ 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, - [126768] = 6, + [130148] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6590), 1, - anon_sym_DOT_DOT2, - STATE(3545), 1, + STATE(3554), 1, sym_comment, - ACTIONS(6592), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2175), 8, + ACTIONS(1841), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -345088,7 +347196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2181), 23, + ACTIONS(1843), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -345104,6 +347212,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -345112,185 +347222,12 @@ 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, - [126817] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6538), 1, - anon_sym_DOT, - STATE(3482), 1, - aux_sym_cell_path_repeat1, - STATE(3505), 1, - sym_cell_path, - STATE(3546), 1, - sym_comment, - STATE(3600), 1, - sym_path, - ACTIONS(1907), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1911), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [126870] = 5, + [130193] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6594), 1, - anon_sym_QMARK2, - STATE(3547), 1, - sym_comment, - ACTIONS(984), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(986), 27, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [126917] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3548), 1, - sym_comment, - ACTIONS(998), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1000), 28, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [126962] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6538), 1, - anon_sym_DOT, - STATE(3482), 1, - aux_sym_cell_path_repeat1, - STATE(3507), 1, - sym_cell_path, - STATE(3549), 1, - sym_comment, - STATE(3600), 1, - sym_path, - ACTIONS(1913), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1915), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [127015] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3550), 1, + STATE(3555), 1, sym_comment, - ACTIONS(2129), 9, + ACTIONS(1739), 9, anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, @@ -345300,7 +347237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2131), 25, + ACTIONS(1741), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -345326,68 +347263,27 @@ 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, - [127060] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3551), 1, - sym_comment, - ACTIONS(998), 8, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1000), 26, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK2, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [127105] = 8, + [130238] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6538), 1, + ACTIONS(6524), 1, anon_sym_DOT, - STATE(3482), 1, + STATE(3502), 1, aux_sym_cell_path_repeat1, - STATE(3498), 1, + STATE(3504), 1, sym_cell_path, - STATE(3552), 1, + STATE(3556), 1, sym_comment, - STATE(3600), 1, + STATE(3607), 1, sym_path, - ACTIONS(1952), 6, + ACTIONS(1915), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1954), 24, + ACTIONS(1917), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -345412,54 +347308,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127158] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3553), 1, - sym_comment, - ACTIONS(1002), 8, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1004), 26, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK2, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [127203] = 4, + [130291] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3554), 1, - sym_comment, - ACTIONS(2183), 9, + ACTIONS(6576), 1, anon_sym_DOT_DOT2, + STATE(3557), 1, + sym_comment, + ACTIONS(6578), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2130), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -345468,7 +347327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2185), 25, + ACTIONS(2136), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -345484,8 +347343,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -345494,28 +347351,28 @@ 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, - [127248] = 8, + [130340] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6538), 1, - anon_sym_DOT, - STATE(3482), 1, - aux_sym_cell_path_repeat1, - STATE(3523), 1, - sym_cell_path, - STATE(3555), 1, + ACTIONS(6162), 1, + sym_filesize_unit, + ACTIONS(6164), 1, + sym_duration_unit, + ACTIONS(6580), 1, + anon_sym_DOT_DOT2, + STATE(3558), 1, sym_comment, - STATE(3600), 1, - sym_path, - ACTIONS(2000), 6, + ACTIONS(6570), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1707), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2002), 24, - anon_sym_DASH_DASH, + ACTIONS(1719), 24, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -345539,23 +347396,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127301] = 4, + [130393] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3556), 1, + ACTIONS(6582), 1, + anon_sym_QMARK2, + STATE(3559), 1, sym_comment, - ACTIONS(990), 6, + ACTIONS(978), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(992), 28, + ACTIONS(980), 27, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -345580,21 +347438,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, aux_sym_record_entry_token1, sym__table_head_separator, - [127346] = 4, + [130440] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3557), 1, + ACTIONS(6584), 1, + anon_sym_QMARK2, + STATE(3560), 1, sym_comment, - ACTIONS(1010), 8, + ACTIONS(984), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1012), 26, + ACTIONS(986), 27, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -345619,15 +347477,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [127391] = 4, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [130487] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3558), 1, - sym_comment, - ACTIONS(1783), 9, + ACTIONS(6586), 1, anon_sym_DOT_DOT2, + STATE(3561), 1, + sym_comment, + ACTIONS(6588), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2146), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -345636,7 +347499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1785), 25, + ACTIONS(2152), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -345652,8 +347515,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -345662,24 +347523,23 @@ 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, - [127436] = 4, + [130536] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3559), 1, + STATE(3562), 1, sym_comment, - ACTIONS(1006), 8, + ACTIONS(990), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1008), 26, + ACTIONS(992), 28, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -345701,32 +347561,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [127481] = 8, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [130581] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6170), 1, - sym_filesize_unit, - ACTIONS(6172), 1, - sym_duration_unit, - ACTIONS(6596), 1, - anon_sym_DOT_DOT2, - STATE(3560), 1, + ACTIONS(6524), 1, + anon_sym_DOT, + STATE(3502), 1, + aux_sym_cell_path_repeat1, + STATE(3509), 1, + sym_cell_path, + STATE(3563), 1, sym_comment, - ACTIONS(6598), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1709), 5, + STATE(3607), 1, + sym_path, + ACTIONS(1927), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1721), 24, - anon_sym_DASH2, + ACTIONS(1929), 24, + anon_sym_DASH_DASH, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -345748,19 +347609,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127534] = 4, + [130634] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3561), 1, + STATE(3564), 1, sym_comment, - ACTIONS(1002), 6, + ACTIONS(994), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1004), 28, + ACTIONS(996), 28, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -345789,27 +347650,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, aux_sym_record_entry_token1, sym__table_head_separator, - [127579] = 8, + [130679] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6538), 1, + ACTIONS(6524), 1, anon_sym_DOT, - STATE(3482), 1, + STATE(3502), 1, aux_sym_cell_path_repeat1, - STATE(3491), 1, + STATE(3519), 1, sym_cell_path, - STATE(3562), 1, + STATE(3565), 1, sym_comment, - STATE(3600), 1, + STATE(3607), 1, sym_path, - ACTIONS(2068), 6, + ACTIONS(1942), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2070), 24, + ACTIONS(1944), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -345834,68 +347695,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127632] = 4, + [130732] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3563), 1, + ACTIONS(6524), 1, + anon_sym_DOT, + STATE(3502), 1, + aux_sym_cell_path_repeat1, + STATE(3550), 1, + sym_cell_path, + STATE(3566), 1, sym_comment, - ACTIONS(1739), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1741), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + STATE(3607), 1, + sym_path, + ACTIONS(2026), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2028), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [127677] = 8, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [130785] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6538), 1, + ACTIONS(6524), 1, anon_sym_DOT, - STATE(3482), 1, + STATE(3502), 1, aux_sym_cell_path_repeat1, - STATE(3510), 1, + STATE(3532), 1, sym_cell_path, - STATE(3564), 1, + STATE(3567), 1, sym_comment, - STATE(3600), 1, + STATE(3607), 1, sym_path, - ACTIONS(1960), 6, + ACTIONS(2030), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1962), 24, + ACTIONS(2032), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -345920,30 +347785,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127730] = 8, + [130838] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6538), 1, - anon_sym_DOT, - STATE(3482), 1, - aux_sym_cell_path_repeat1, - STATE(3500), 1, - sym_cell_path, - STATE(3565), 1, + STATE(3568), 1, sym_comment, - STATE(3600), 1, - sym_path, - ACTIONS(2072), 6, + ACTIONS(998), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2074), 24, + ACTIONS(1000), 28, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -345965,27 +347823,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127783] = 8, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [130883] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6538), 1, + ACTIONS(6524), 1, anon_sym_DOT, - STATE(3482), 1, + STATE(3502), 1, aux_sym_cell_path_repeat1, - STATE(3520), 1, + STATE(3539), 1, sym_cell_path, - STATE(3566), 1, + STATE(3569), 1, sym_comment, - STATE(3600), 1, + STATE(3607), 1, sym_path, - ACTIONS(1988), 6, + ACTIONS(2034), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1990), 24, + ACTIONS(2036), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -346010,30 +347871,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127836] = 8, + [130936] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6538), 1, - anon_sym_DOT, - STATE(3482), 1, - aux_sym_cell_path_repeat1, - STATE(3508), 1, - sym_cell_path, - STATE(3567), 1, + STATE(3570), 1, sym_comment, - STATE(3600), 1, - sym_path, - ACTIONS(1948), 6, + ACTIONS(1002), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1950), 24, + ACTIONS(1004), 28, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -346055,27 +347909,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127889] = 8, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [130981] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3571), 1, + sym_comment, + ACTIONS(1765), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1767), 25, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [131026] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6590), 1, + anon_sym_DOT_DOT2, + STATE(3572), 1, + sym_comment, + ACTIONS(6592), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2157), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2163), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [131075] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3573), 1, + sym_comment, + ACTIONS(990), 8, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(992), 26, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK2, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [131120] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3574), 1, + sym_comment, + ACTIONS(994), 8, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(996), 26, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK2, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [131165] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6594), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6596), 1, + aux_sym__immediate_decimal_token2, + STATE(3575), 1, + sym_comment, + ACTIONS(1585), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + aux_sym_record_entry_token1, + ACTIONS(1587), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [131214] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6538), 1, - anon_sym_DOT, - STATE(3482), 1, - aux_sym_cell_path_repeat1, - STATE(3517), 1, - sym_cell_path, - STATE(3568), 1, + STATE(3576), 1, sym_comment, - STATE(3600), 1, - sym_path, - ACTIONS(1944), 6, + ACTIONS(1006), 8, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1946), 24, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1008), 26, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -346100,28 +348160,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127942] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [131259] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6170), 1, - sym_filesize_unit, - ACTIONS(6172), 1, - sym_duration_unit, - ACTIONS(6600), 1, - anon_sym_DOT_DOT2, - STATE(3569), 1, + ACTIONS(6524), 1, + anon_sym_DOT, + STATE(3502), 1, + aux_sym_cell_path_repeat1, + STATE(3577), 1, sym_comment, - ACTIONS(6574), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1709), 5, + STATE(3607), 1, + sym_path, + STATE(3620), 1, + sym_cell_path, + ACTIONS(1747), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1721), 24, - anon_sym_DASH2, + ACTIONS(1749), 24, + anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -346145,27 +348207,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127995] = 8, + [131312] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6538), 1, + ACTIONS(6524), 1, anon_sym_DOT, - STATE(3482), 1, + STATE(3502), 1, aux_sym_cell_path_repeat1, - STATE(3528), 1, - sym_cell_path, - STATE(3570), 1, + STATE(3578), 1, sym_comment, - STATE(3600), 1, + STATE(3607), 1, sym_path, - ACTIONS(2090), 6, + STATE(3628), 1, + sym_cell_path, + ACTIONS(1733), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2092), 24, + ACTIONS(1737), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -346190,27 +348252,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128048] = 8, + [131365] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6538), 1, + ACTIONS(6524), 1, anon_sym_DOT, - STATE(3482), 1, + STATE(3502), 1, aux_sym_cell_path_repeat1, - STATE(3525), 1, - sym_cell_path, - STATE(3571), 1, + STATE(3579), 1, sym_comment, - STATE(3600), 1, + STATE(3607), 1, sym_path, - ACTIONS(1968), 6, + STATE(3629), 1, + sym_cell_path, + ACTIONS(961), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1970), 24, + ACTIONS(963), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -346235,27 +348297,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128101] = 8, + [131418] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6538), 1, + STATE(3580), 1, + sym_comment, + ACTIONS(1002), 8, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, anon_sym_DOT, - STATE(3482), 1, - aux_sym_cell_path_repeat1, - STATE(3504), 1, - sym_cell_path, - STATE(3572), 1, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1004), 26, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK2, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [131463] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3581), 1, sym_comment, - STATE(3600), 1, - sym_path, - ACTIONS(2094), 6, + ACTIONS(1010), 8, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2096), 24, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1012), 26, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -346280,70 +348377,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128154] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6602), 1, - sym_long_flag_identifier, - ACTIONS(6604), 1, - anon_sym_EQ2, - STATE(3573), 1, - sym_comment, - ACTIONS(4936), 16, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4938), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - [128203] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [131508] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6538), 1, - anon_sym_DOT, - STATE(3482), 1, - aux_sym_cell_path_repeat1, - STATE(3574), 1, + STATE(3582), 1, sym_comment, - STATE(3600), 1, - sym_path, - STATE(3603), 1, - sym_cell_path, - ACTIONS(1769), 6, + ACTIONS(1014), 8, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1771), 24, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1016), 26, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -346368,27 +348418,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128256] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [131553] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6538), 1, + ACTIONS(6524), 1, anon_sym_DOT, - STATE(3482), 1, - aux_sym_cell_path_repeat1, - STATE(3490), 1, + STATE(3498), 1, sym_cell_path, - STATE(3575), 1, + STATE(3502), 1, + aux_sym_cell_path_repeat1, + STATE(3583), 1, sym_comment, - STATE(3600), 1, + STATE(3607), 1, sym_path, - ACTIONS(2004), 6, + ACTIONS(2038), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2006), 24, + ACTIONS(2040), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -346413,68 +348465,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128309] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3576), 1, - sym_comment, - ACTIONS(1890), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1892), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [128354] = 8, + [131606] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6538), 1, + ACTIONS(6524), 1, anon_sym_DOT, - STATE(3482), 1, - aux_sym_cell_path_repeat1, - STATE(3484), 1, + STATE(3500), 1, sym_cell_path, - STATE(3577), 1, + STATE(3502), 1, + aux_sym_cell_path_repeat1, + STATE(3584), 1, sym_comment, - STATE(3600), 1, + STATE(3607), 1, sym_path, - ACTIONS(1933), 6, + ACTIONS(1931), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1935), 24, + ACTIONS(1933), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -346499,27 +348510,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128407] = 8, + [131659] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6538), 1, + ACTIONS(6524), 1, anon_sym_DOT, - STATE(3482), 1, + STATE(3502), 1, aux_sym_cell_path_repeat1, - STATE(3578), 1, + STATE(3505), 1, + sym_cell_path, + STATE(3585), 1, sym_comment, - STATE(3600), 1, + STATE(3607), 1, sym_path, - STATE(3604), 1, - sym_cell_path, - ACTIONS(1735), 6, + ACTIONS(1899), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1737), 24, + ACTIONS(1901), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -346544,70 +348555,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128460] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6606), 1, - anon_sym_DOT, - ACTIONS(6608), 1, - aux_sym__immediate_decimal_token2, - STATE(3579), 1, - sym_comment, - ACTIONS(1607), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - aux_sym_record_entry_token1, - ACTIONS(1609), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [128509] = 8, + [131712] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6538), 1, + ACTIONS(6524), 1, anon_sym_DOT, - STATE(3480), 1, - sym_cell_path, - STATE(3482), 1, + STATE(3502), 1, aux_sym_cell_path_repeat1, - STATE(3580), 1, + STATE(3527), 1, + sym_cell_path, + STATE(3586), 1, sym_comment, - STATE(3600), 1, + STATE(3607), 1, sym_path, - ACTIONS(1925), 6, + ACTIONS(1907), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1927), 24, + ACTIONS(1909), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -346632,27 +348600,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128562] = 8, + [131765] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6538), 1, + ACTIONS(6524), 1, anon_sym_DOT, - STATE(3482), 1, + STATE(3502), 1, aux_sym_cell_path_repeat1, - STATE(3581), 1, - sym_comment, - STATE(3590), 1, + STATE(3533), 1, sym_cell_path, - STATE(3600), 1, + STATE(3587), 1, + sym_comment, + STATE(3607), 1, sym_path, - ACTIONS(961), 6, + ACTIONS(1859), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(963), 24, + ACTIONS(1861), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -346677,23 +348645,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128615] = 5, + [131818] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6610), 1, - anon_sym_QMARK2, - STATE(3582), 1, + ACTIONS(6598), 1, + sym_long_flag_identifier, + ACTIONS(6600), 1, + anon_sym_EQ2, + STATE(3588), 1, sym_comment, - ACTIONS(978), 8, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(980), 25, + ACTIONS(4968), 16, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -346701,83 +348662,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [128662] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6612), 1, - anon_sym_QMARK2, - STATE(3583), 1, - sym_comment, - ACTIONS(984), 8, + ACTIONS(4970), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(986), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + aux_sym__val_number_decimal_token1, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [128709] = 4, + [131867] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3584), 1, + ACTIONS(6524), 1, + anon_sym_DOT, + STATE(3502), 1, + aux_sym_cell_path_repeat1, + STATE(3535), 1, + sym_cell_path, + STATE(3589), 1, sym_comment, - ACTIONS(994), 6, + STATE(3607), 1, + sym_path, + ACTIONS(1867), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(996), 28, + ACTIONS(1869), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -346799,141 +348733,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [128754] = 4, + [131920] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3585), 1, + STATE(3590), 1, sym_comment, - ACTIONS(990), 8, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(992), 26, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK2, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [128799] = 4, + ACTIONS(2118), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2120), 25, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [131965] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3586), 1, - sym_comment, - ACTIONS(994), 8, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(996), 26, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK2, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [128844] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6616), 1, - aux_sym__immediate_decimal_token2, - STATE(3587), 1, + STATE(3591), 1, sym_comment, - ACTIONS(1621), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - aux_sym_record_entry_token1, - ACTIONS(1623), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [128893] = 4, + ACTIONS(2183), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2185), 25, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [132010] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3588), 1, + STATE(3592), 1, sym_comment, - ACTIONS(2234), 9, - anon_sym_DASH2, + ACTIONS(1785), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -346942,7 +348830,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2238), 24, + ACTIONS(1787), 25, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -346954,11 +348843,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -346967,62 +348856,27 @@ 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, - [128937] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6618), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6620), 1, - aux_sym__immediate_decimal_token2, - STATE(3589), 1, - sym_comment, - ACTIONS(1621), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - ACTIONS(1623), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [128985] = 4, + [132055] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3590), 1, + ACTIONS(6524), 1, + anon_sym_DOT, + STATE(3501), 1, + sym_cell_path, + STATE(3502), 1, + aux_sym_cell_path_repeat1, + STATE(3593), 1, sym_comment, - ACTIONS(1018), 7, + STATE(3607), 1, + sym_path, + ACTIONS(1847), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - ACTIONS(1020), 26, + ACTIONS(1851), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -347047,14 +348901,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [129029] = 4, + [132108] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3591), 1, + ACTIONS(6602), 1, + anon_sym_QMARK2, + STATE(3594), 1, sym_comment, - ACTIONS(1014), 8, + ACTIONS(978), 8, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -347063,7 +348917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1016), 25, + ACTIONS(980), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -347089,107 +348943,69 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [129073] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6622), 1, - anon_sym_DOT, - ACTIONS(6624), 1, - aux_sym__immediate_decimal_token2, - STATE(3592), 1, - sym_comment, - ACTIONS(1607), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - ACTIONS(1609), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [129121] = 5, - ACTIONS(3), 1, + [132155] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6626), 1, - aux_sym__immediate_decimal_token2, - STATE(3593), 1, + ACTIONS(6604), 1, + anon_sym_QMARK2, + STATE(3595), 1, sym_comment, - ACTIONS(1673), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - aux_sym_record_entry_token1, - ACTIONS(1675), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [129167] = 6, + ACTIONS(984), 8, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(986), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [132202] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6628), 1, - anon_sym_DOT_DOT2, - STATE(3594), 1, + ACTIONS(6524), 1, + anon_sym_DOT, + STATE(3502), 1, + aux_sym_cell_path_repeat1, + STATE(3534), 1, + sym_cell_path, + STATE(3596), 1, sym_comment, - ACTIONS(6630), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1030), 6, + STATE(3607), 1, + sym_path, + ACTIONS(1863), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1032), 24, + ACTIONS(1865), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -347214,59 +349030,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129215] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3595), 1, - sym_comment, - ACTIONS(2250), 10, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2248), 23, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - aux_sym_unquoted_token4, - [129259] = 4, + [132255] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(3596), 1, + ACTIONS(6524), 1, + anon_sym_DOT, + STATE(3502), 1, + aux_sym_cell_path_repeat1, + STATE(3549), 1, + sym_cell_path, + STATE(3597), 1, sym_comment, - ACTIONS(1010), 6, + STATE(3607), 1, + sym_path, + ACTIONS(1895), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1012), 27, + ACTIONS(1897), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -347291,62 +349075,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [129303] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3597), 1, - sym_comment, - ACTIONS(5218), 9, - anon_sym_DASH2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5220), 24, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [129347] = 4, + [132308] = 8, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(6524), 1, + anon_sym_DOT, + STATE(3499), 1, + sym_cell_path, + STATE(3502), 1, + aux_sym_cell_path_repeat1, STATE(3598), 1, sym_comment, - ACTIONS(1014), 6, + STATE(3607), 1, + sym_path, + ACTIONS(1871), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1016), 27, + ACTIONS(1873), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -347371,32 +349120,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [129391] = 8, + [132361] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6628), 1, + ACTIONS(6162), 1, + sym_filesize_unit, + ACTIONS(6164), 1, + sym_duration_unit, + ACTIONS(6606), 1, anon_sym_DOT_DOT2, - ACTIONS(6632), 1, - anon_sym_DASH2, STATE(3599), 1, sym_comment, - ACTIONS(5220), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(6630), 2, + ACTIONS(6608), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5222), 5, + ACTIONS(1707), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5224), 22, + ACTIONS(1719), 24, + anon_sym_DASH2, anon_sym_in2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -347418,19 +349165,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129443] = 4, + [132414] = 8, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(6524), 1, + anon_sym_DOT, + STATE(3502), 1, + aux_sym_cell_path_repeat1, + STATE(3520), 1, + sym_cell_path, STATE(3600), 1, sym_comment, - ACTIONS(1006), 6, + STATE(3607), 1, + sym_path, + ACTIONS(1879), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1008), 27, + ACTIONS(1881), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -347455,104 +349210,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [129487] = 5, + [132467] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6635), 1, - anon_sym_EQ2, + ACTIONS(6524), 1, + anon_sym_DOT, + STATE(3502), 1, + aux_sym_cell_path_repeat1, + STATE(3545), 1, + sym_cell_path, STATE(3601), 1, sym_comment, - ACTIONS(5053), 7, - anon_sym_DOLLAR, + STATE(3607), 1, + sym_path, + ACTIONS(1883), 6, + anon_sym_GT2, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5051), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1885), 24, + anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [129533] = 4, - ACTIONS(247), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [132520] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6610), 1, + anon_sym_DOT, + ACTIONS(6612), 1, + aux_sym__immediate_decimal_token2, STATE(3602), 1, sym_comment, - ACTIONS(1866), 9, - anon_sym_DASH2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1874), 24, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [129577] = 4, + ACTIONS(1573), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + aux_sym_record_entry_token1, + ACTIONS(1575), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [132569] = 8, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(6524), 1, + anon_sym_DOT, + STATE(3502), 1, + aux_sym_cell_path_repeat1, + STATE(3513), 1, + sym_cell_path, STATE(3603), 1, sym_comment, - ACTIONS(1735), 7, + STATE(3607), 1, + sym_path, + ACTIONS(1887), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - ACTIONS(1737), 26, + ACTIONS(1889), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -347577,22 +349343,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [129621] = 4, + [132622] = 8, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(6524), 1, + anon_sym_DOT, + STATE(3502), 1, + aux_sym_cell_path_repeat1, + STATE(3531), 1, + sym_cell_path, STATE(3604), 1, sym_comment, - ACTIONS(2125), 7, + STATE(3607), 1, + sym_path, + ACTIONS(1891), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - ACTIONS(2127), 26, + ACTIONS(1893), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -347617,36 +349388,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [129665] = 5, - ACTIONS(3), 1, + [132675] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, STATE(3605), 1, sym_comment, - ACTIONS(2218), 10, + ACTIONS(998), 8, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1000), 26, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_QMARK2, aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2214), 22, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -347656,16 +349423,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, - [129711] = 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [132720] = 4, ACTIONS(247), 1, anon_sym_POUND, STATE(3606), 1, sym_comment, - ACTIONS(1006), 8, + ACTIONS(1010), 8, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -347674,7 +349443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1008), 25, + ACTIONS(1012), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -347700,69 +349469,22 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [129755] = 4, + [132764] = 4, ACTIONS(247), 1, anon_sym_POUND, STATE(3607), 1, sym_comment, - ACTIONS(2252), 9, - anon_sym_DASH2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2256), 24, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [129799] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5245), 1, - sym__newline, - ACTIONS(5248), 1, - anon_sym_LBRACE, - ACTIONS(6637), 1, - anon_sym_DOT_DOT2, - STATE(3608), 1, - sym_comment, - ACTIONS(6639), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5250), 5, + ACTIONS(1006), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5252), 23, - anon_sym_DASH2, + ACTIONS(1008), 27, + anon_sym_DASH_DASH, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -347784,137 +349506,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129851] = 5, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [132808] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - STATE(3609), 1, + ACTIONS(6614), 1, + aux_sym__immediate_decimal_token2, + STATE(3608), 1, sym_comment, - ACTIONS(2224), 10, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2222), 22, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - [129897] = 5, - ACTIONS(3), 1, + ACTIONS(1681), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + aux_sym_record_entry_token1, + ACTIONS(1683), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [132854] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2212), 1, - aux_sym_unquoted_token4, - STATE(3610), 1, + ACTIONS(6519), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6616), 1, + anon_sym_DOT, + STATE(3609), 1, sym_comment, - ACTIONS(2210), 10, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2206), 22, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - [129943] = 5, + ACTIONS(1765), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1767), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [132902] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6641), 1, - anon_sym_EQ2, - STATE(3611), 1, + STATE(3610), 1, sym_comment, - ACTIONS(5016), 7, - anon_sym_DOLLAR, + ACTIONS(1820), 9, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5014), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1828), 24, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [129989] = 5, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [132946] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(3612), 1, + STATE(3611), 1, sym_comment, - ACTIONS(1032), 10, + ACTIONS(2270), 10, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -347925,7 +349648,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1030), 22, + ACTIONS(2268), 23, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -347948,63 +349671,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - [130035] = 6, - ACTIONS(247), 1, + aux_sym_unquoted_token4, + [132990] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6637), 1, - anon_sym_DOT_DOT2, - STATE(3613), 1, + ACTIONS(6618), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6620), 1, + aux_sym__immediate_decimal_token2, + STATE(3612), 1, sym_comment, - ACTIONS(6639), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1030), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1032), 25, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [130083] = 4, + ACTIONS(1585), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1587), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [133038] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3614), 1, + ACTIONS(6622), 1, + anon_sym_EQ2, + STATE(3613), 1, sym_comment, - ACTIONS(1010), 8, + ACTIONS(4998), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1012), 25, + ACTIONS(4996), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -348030,53 +349755,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [130127] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6608), 1, - aux_sym__immediate_decimal_token2, - STATE(3615), 1, - sym_comment, - ACTIONS(1607), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - aux_sym_record_entry_token1, - ACTIONS(1609), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [130173] = 4, + [133084] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3616), 1, + STATE(3614), 1, sym_comment, - ACTIONS(2187), 9, + ACTIONS(2230), 9, anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, @@ -348086,7 +349770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2189), 24, + ACTIONS(2232), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348111,16 +349795,13 @@ 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, - [130217] = 6, + [133128] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6517), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6643), 1, - anon_sym_DOT, - STATE(3617), 1, + STATE(3615), 1, sym_comment, - ACTIONS(1755), 8, + ACTIONS(1802), 9, + anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -348129,8 +349810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1757), 23, - ts_builtin_sym_end, + ACTIONS(1810), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348142,9 +349822,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -348153,53 +349835,12 @@ 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, - [130265] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6645), 1, - anon_sym_LBRACK2, - STATE(3618), 1, - sym_comment, - ACTIONS(2337), 8, - anon_sym_LBRACK, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2341), 24, - sym_raw_string_begin, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [130311] = 4, + [133172] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3619), 1, + STATE(3616), 1, sym_comment, - ACTIONS(1878), 9, + ACTIONS(2258), 9, anon_sym_DASH2, anon_sym_err_GT, anon_sym_out_GT, @@ -348209,7 +349850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1886), 24, + ACTIONS(2262), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348234,14 +349875,14 @@ 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, - [130355] = 5, + [133216] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6485), 1, + ACTIONS(6458), 1, aux_sym_unquoted_token2, - STATE(3620), 1, + STATE(3617), 1, sym_comment, - ACTIONS(1709), 7, + ACTIONS(1707), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -348249,7 +349890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1721), 25, + ACTIONS(1719), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -348275,23 +349916,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [130401] = 6, + [133262] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(3621), 1, + STATE(3618), 1, sym_comment, - STATE(7999), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4985), 6, + ACTIONS(1010), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(4983), 24, + ACTIONS(1012), 27, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -348316,62 +349953,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130448] = 4, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [133306] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3622), 1, + STATE(3619), 1, sym_comment, - ACTIONS(5088), 7, - anon_sym_DOLLAR, + ACTIONS(1014), 6, + anon_sym_GT2, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5086), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1016), 27, + anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [130491] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [133350] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(3623), 1, + STATE(3620), 1, sym_comment, - STATE(7392), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 6, + ACTIONS(1733), 7, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5186), 24, + anon_sym_DOT_DOT2, + ACTIONS(1737), 26, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -348396,20 +350034,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130538] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [133394] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3624), 1, + STATE(3621), 1, sym_comment, - ACTIONS(5164), 7, + ACTIONS(1006), 8, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5162), 25, + ACTIONS(1008), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -348435,23 +350076,24 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [130581] = 6, + [133438] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(3625), 1, + ACTIONS(6624), 1, + anon_sym_DOT_DOT2, + STATE(3622), 1, sym_comment, - STATE(7392), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 6, + ACTIONS(6626), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1026), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5186), 24, + ACTIONS(1028), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -348476,26 +350118,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130628] = 6, + [133486] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6628), 1, + anon_sym_DOT, + ACTIONS(6630), 1, + aux_sym__immediate_decimal_token2, + STATE(3623), 1, + sym_comment, + ACTIONS(1573), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1575), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [133534] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(3626), 1, + ACTIONS(6624), 1, + anon_sym_DOT_DOT2, + ACTIONS(6632), 1, + anon_sym_DASH2, + STATE(3624), 1, sym_comment, - STATE(7392), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 6, + ACTIONS(5206), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(6626), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5208), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5186), 24, - anon_sym_DASH_DASH, + ACTIONS(5210), 22, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -348517,23 +350204,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130675] = 6, + [133586] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3625), 1, + sym_comment, + ACTIONS(2272), 9, + anon_sym_DASH2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2276), 24, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [133630] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3626), 1, + sym_comment, + ACTIONS(5212), 9, + anon_sym_DASH2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5206), 24, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [133674] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, STATE(3627), 1, sym_comment, - STATE(7392), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 6, + ACTIONS(1014), 8, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1016), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [133718] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3628), 1, + sym_comment, + ACTIONS(2052), 7, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5186), 24, + anon_sym_DOT_DOT2, + ACTIONS(2054), 26, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -348558,23 +350362,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130722] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [133762] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(3628), 1, + STATE(3629), 1, sym_comment, - STATE(7392), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 6, + ACTIONS(1044), 7, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5186), 24, + anon_sym_DOT_DOT2, + ACTIONS(1046), 26, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -348599,24 +350402,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130769] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [133806] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2228), 1, + aux_sym_unquoted_token4, + STATE(3630), 1, + sym_comment, + ACTIONS(1028), 10, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1026), 22, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + [133852] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(3629), 1, + ACTIONS(6635), 1, + anon_sym_DOT_DOT2, + STATE(3631), 1, sym_comment, - STATE(7392), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 6, + ACTIONS(6637), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1026), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5186), 24, - anon_sym_DASH_DASH, + ACTIONS(1028), 25, + sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -348640,55 +350487,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130816] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1709), 1, - aux_sym_record_entry_token1, - ACTIONS(6651), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6653), 1, - sym_filesize_unit, - ACTIONS(6655), 1, - sym_duration_unit, - STATE(3630), 1, - sym_comment, - ACTIONS(6649), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6647), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [130867] = 4, + [133900] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3631), 1, + ACTIONS(6639), 1, + anon_sym_EQ2, + STATE(3632), 1, sym_comment, - ACTIONS(2367), 7, + ACTIONS(5058), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -348696,7 +350502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2369), 25, + ACTIONS(5056), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -348722,12 +350528,99 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [130910] = 4, + [133946] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3632), 1, + ACTIONS(2244), 1, + aux_sym_unquoted_token4, + STATE(3633), 1, + sym_comment, + ACTIONS(2242), 10, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2238), 22, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + [133992] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5249), 1, + sym__newline, + ACTIONS(5252), 1, + anon_sym_LBRACE, + ACTIONS(6635), 1, + anon_sym_DOT_DOT2, + STATE(3634), 1, + sym_comment, + ACTIONS(6637), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5254), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5256), 23, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [134044] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6612), 1, + aux_sym__immediate_decimal_token2, + STATE(3635), 1, sym_comment, - ACTIONS(1763), 8, + ACTIONS(1573), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -348736,7 +350629,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token41, sym_filesize_unit, aux_sym_record_entry_token1, - ACTIONS(1765), 24, + ACTIONS(1575), 24, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -348761,30 +350654,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [130953] = 4, + [134090] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3633), 1, + ACTIONS(6641), 1, + anon_sym_LBRACK2, + STATE(3636), 1, + sym_comment, + ACTIONS(2322), 8, + anon_sym_LBRACK, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2326), 24, + sym_raw_string_begin, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [134136] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + STATE(3637), 1, sym_comment, - ACTIONS(1972), 7, + ACTIONS(2250), 10, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2246), 22, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1974), 25, + sym_val_date, + [134182] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + STATE(3638), 1, + sym_comment, + ACTIONS(2256), 10, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, aux_sym_expr_unary_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2254), 22, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -348794,18 +350773,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [130996] = 4, + [134228] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3634), 1, + STATE(3639), 1, sym_comment, - ACTIONS(2468), 7, + ACTIONS(5138), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -348813,7 +350790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2470), 25, + ACTIONS(5136), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -348839,93 +350816,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [131039] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6624), 1, - aux_sym__immediate_decimal_token2, - STATE(3635), 1, - sym_comment, - ACTIONS(1607), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - ACTIONS(1609), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [131084] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2208), 1, - anon_sym_LPAREN2, - ACTIONS(2212), 1, - aux_sym_unquoted_token4, - STATE(3636), 1, - sym_comment, - ACTIONS(2210), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(2206), 28, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [131131] = 4, + [134271] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3637), 1, + STATE(3640), 1, sym_comment, - ACTIONS(2090), 7, + ACTIONS(2347), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -348933,7 +350829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2092), 25, + ACTIONS(2349), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -348959,94 +350855,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [131174] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6657), 1, - anon_sym_DOT_DOT2, - STATE(3638), 1, - sym_comment, - ACTIONS(6659), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1878), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1886), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [131221] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2202), 1, - anon_sym_LPAREN2, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(3639), 1, - sym_comment, - ACTIONS(1032), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(1030), 28, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [131268] = 4, + [134314] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3640), 1, + STATE(3641), 1, sym_comment, - ACTIONS(2383), 7, + ACTIONS(5054), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -349054,7 +350868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2385), 25, + ACTIONS(5052), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -349080,54 +350894,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [131311] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5220), 1, - anon_sym_LBRACE, - ACTIONS(6661), 1, - anon_sym_DOT_DOT2, - STATE(3641), 1, - sym_comment, - ACTIONS(6639), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5222), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5224), 23, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [131360] = 4, + [134357] = 4, ACTIONS(247), 1, anon_sym_POUND, STATE(3642), 1, sym_comment, - ACTIONS(5168), 7, + ACTIONS(2406), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -349135,7 +350907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5166), 25, + ACTIONS(2408), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -349161,12 +350933,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [131403] = 4, + [134400] = 4, ACTIONS(247), 1, anon_sym_POUND, STATE(3643), 1, sym_comment, - ACTIONS(5172), 7, + ACTIONS(1847), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -349174,7 +350946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5170), 25, + ACTIONS(1851), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -349200,12 +350972,51 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [131446] = 4, - ACTIONS(247), 1, + [134443] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(3644), 1, sym_comment, - ACTIONS(2068), 7, + ACTIONS(1681), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + aux_sym_record_entry_token1, + ACTIONS(1683), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [134486] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3645), 1, + sym_comment, + ACTIONS(2402), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -349213,7 +351024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2070), 25, + ACTIONS(2404), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -349239,53 +351050,95 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [131489] = 6, - ACTIONS(247), 1, + [134529] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(3645), 1, + ACTIONS(6630), 1, + aux_sym__immediate_decimal_token2, + STATE(3646), 1, sym_comment, - STATE(7392), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5186), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [131536] = 4, + ACTIONS(1573), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1575), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [134574] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1707), 1, + aux_sym_record_entry_token1, + ACTIONS(6647), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6649), 1, + sym_filesize_unit, + ACTIONS(6651), 1, + sym_duration_unit, + STATE(3647), 1, + sym_comment, + ACTIONS(6645), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6643), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [134625] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3646), 1, + STATE(3648), 1, sym_comment, - ACTIONS(5176), 7, + ACTIONS(1887), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -349293,7 +351146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5174), 25, + ACTIONS(1889), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -349319,12 +351172,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [131579] = 4, + [134668] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3647), 1, + STATE(3649), 1, sym_comment, - ACTIONS(5180), 7, + ACTIONS(2343), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -349332,7 +351185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5178), 25, + ACTIONS(2345), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -349358,12 +351211,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [131622] = 4, + [134711] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3648), 1, + STATE(3650), 1, sym_comment, - ACTIONS(1907), 7, + ACTIONS(2440), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -349371,7 +351224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1911), 25, + ACTIONS(2442), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -349397,12 +351250,53 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [131665] = 4, + [134754] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1028), 1, + anon_sym_LBRACE, + ACTIONS(2226), 1, + anon_sym_LPAREN2, + ACTIONS(2228), 1, + aux_sym_unquoted_token4, + STATE(3651), 1, + sym_comment, + ACTIONS(1026), 29, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [134801] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3649), 1, + STATE(3652), 1, sym_comment, - ACTIONS(2492), 7, + ACTIONS(1915), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -349410,7 +351304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2494), 25, + ACTIONS(1917), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -349436,12 +351330,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [131708] = 4, + [134844] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3650), 1, + STATE(3653), 1, sym_comment, - ACTIONS(2508), 7, + ACTIONS(1927), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -349449,7 +351343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2510), 25, + ACTIONS(1929), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -349475,12 +351369,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [131751] = 4, + [134887] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3651), 1, + STATE(3654), 1, sym_comment, - ACTIONS(1988), 7, + ACTIONS(1942), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -349488,7 +351382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1990), 25, + ACTIONS(1944), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -349514,12 +351408,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [131794] = 4, + [134930] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3652), 1, + STATE(3655), 1, sym_comment, - ACTIONS(2395), 7, + ACTIONS(2490), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -349527,7 +351421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2397), 25, + ACTIONS(2492), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -349553,12 +351447,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [131837] = 4, + [134973] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3653), 1, + STATE(3656), 1, sym_comment, - ACTIONS(5022), 7, + ACTIONS(5064), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -349566,7 +351460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5020), 25, + ACTIONS(5062), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -349592,12 +351486,53 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [131880] = 4, + [135016] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3654), 1, + ACTIONS(6653), 1, + anon_sym_DOT_DOT2, + STATE(3657), 1, + sym_comment, + ACTIONS(6637), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1026), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1028), 24, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [135063] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3658), 1, sym_comment, - ACTIONS(1992), 7, + ACTIONS(2034), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -349605,7 +351540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1994), 25, + ACTIONS(2036), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -349631,12 +351566,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [131923] = 4, + [135106] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3655), 1, + STATE(3659), 1, sym_comment, - ACTIONS(2496), 7, + ACTIONS(2367), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -349644,7 +351579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2498), 25, + ACTIONS(2369), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -349670,12 +351605,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [131966] = 4, + [135149] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3656), 1, + STATE(3660), 1, sym_comment, - ACTIONS(2437), 7, + ACTIONS(2379), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -349683,7 +351618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2439), 25, + ACTIONS(2381), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -349709,12 +351644,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [132009] = 4, + [135192] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3657), 1, + STATE(3661), 1, sym_comment, - ACTIONS(2004), 7, + ACTIONS(2038), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -349722,7 +351657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2006), 25, + ACTIONS(2040), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -349748,53 +351683,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [132052] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6661), 1, - anon_sym_DOT_DOT2, - STATE(3658), 1, - sym_comment, - ACTIONS(6639), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1030), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1032), 24, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [132099] = 4, + [135235] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3659), 1, + STATE(3662), 1, sym_comment, - ACTIONS(2343), 7, + ACTIONS(1899), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -349802,7 +351696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2345), 25, + ACTIONS(1901), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -349828,12 +351722,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [132142] = 4, + [135278] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3660), 1, + STATE(3663), 1, sym_comment, - ACTIONS(2456), 7, + ACTIONS(1863), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -349841,7 +351735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2458), 25, + ACTIONS(1865), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -349867,12 +351761,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [132185] = 4, + [135321] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3661), 1, + STATE(3664), 1, sym_comment, - ACTIONS(2347), 7, + ACTIONS(2398), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -349880,7 +351774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2349), 25, + ACTIONS(2400), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -349906,17 +351800,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [132228] = 4, + [135364] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3662), 1, + ACTIONS(2240), 1, + anon_sym_LPAREN2, + ACTIONS(2244), 1, + aux_sym_unquoted_token4, + STATE(3665), 1, sym_comment, - ACTIONS(2250), 2, + ACTIONS(2242), 2, + sym__newline, anon_sym_LBRACE, - anon_sym_LPAREN2, - ACTIONS(2248), 30, + ACTIONS(2238), 28, anon_sym_GT2, - anon_sym_DASH_DASH, anon_sym_DASH2, anon_sym_in2, anon_sym_STAR2, @@ -349944,13 +351841,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - aux_sym_unquoted_token4, - [132271] = 4, + [135411] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3663), 1, + STATE(3666), 1, sym_comment, - ACTIONS(2399), 7, + ACTIONS(2448), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -349958,7 +351854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2401), 25, + ACTIONS(2450), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -349984,20 +351880,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [132314] = 6, + [135454] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1032), 1, - anon_sym_LBRACE, - ACTIONS(2202), 1, + ACTIONS(2226), 1, anon_sym_LPAREN2, - ACTIONS(2204), 1, + ACTIONS(2228), 1, aux_sym_unquoted_token4, - STATE(3664), 1, + STATE(3667), 1, sym_comment, - ACTIONS(1030), 29, + ACTIONS(1028), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(1026), 28, anon_sym_GT2, - anon_sym_DASH_DASH, anon_sym_DASH2, anon_sym_in2, anon_sym_STAR2, @@ -350025,56 +351921,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [132361] = 4, + [135501] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3665), 1, + ACTIONS(2240), 1, + anon_sym_LPAREN2, + ACTIONS(2242), 1, + anon_sym_LBRACE, + ACTIONS(2244), 1, + aux_sym_unquoted_token4, + STATE(3668), 1, sym_comment, - ACTIONS(1607), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - aux_sym_record_entry_token1, - ACTIONS(1609), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [132404] = 6, + ACTIONS(2238), 29, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [135548] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6663), 1, + ACTIONS(6655), 1, anon_sym_DOT_DOT2, - STATE(3666), 1, + STATE(3669), 1, sym_comment, - ACTIONS(6665), 2, + ACTIONS(6657), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1866), 8, + ACTIONS(1820), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -350083,7 +351981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1874), 21, + ACTIONS(1828), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350105,124 +352003,23 @@ 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, - [132451] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3667), 1, - sym_comment, - ACTIONS(2351), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2353), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [132494] = 27, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3495), 1, - aux_sym_expr_unary_token1, - ACTIONS(6667), 1, - sym_identifier, - ACTIONS(6669), 1, - sym__newline, - ACTIONS(6671), 1, - anon_sym_LPAREN, - ACTIONS(6673), 1, - anon_sym_DOLLAR, - ACTIONS(6675), 1, - anon_sym_LBRACE, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, - aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, - sym__val_number, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(3668), 1, - sym_comment, - STATE(3701), 1, - aux_sym_shebang_repeat1, - STATE(3968), 1, - sym_expr_parenthesized, - STATE(4294), 1, - sym_val_number, - STATE(4361), 1, - sym__predicate, - STATE(4364), 1, - sym__binary_predicate_parenthesized, - STATE(4894), 1, - sym_val_closure, - ACTIONS(213), 2, - anon_sym_true, - anon_sym_false, - STATE(4502), 2, - sym_expr_unary, - sym_val_bool, - STATE(5016), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [132583] = 6, + [135595] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(3669), 1, + STATE(3670), 1, sym_comment, - STATE(7392), 1, + STATE(7633), 1, sym__expr_parenthesized_immediate, - ACTIONS(5188), 6, + ACTIONS(5180), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5186), 24, + ACTIONS(5178), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -350247,135 +352044,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [132630] = 4, - ACTIONS(247), 1, + [135642] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3670), 1, - sym_comment, - ACTIONS(2355), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2357), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + ACTIONS(2250), 1, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [132673] = 4, - ACTIONS(247), 1, - anon_sym_POUND, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, STATE(3671), 1, sym_comment, - ACTIONS(5145), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5143), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [132716] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3672), 1, - sym_comment, - ACTIONS(5130), 7, - anon_sym_DOLLAR, + ACTIONS(2246), 29, + anon_sym_GT2, + anon_sym_DASH_DASH, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5128), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [132759] = 6, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [135689] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2208), 1, + ACTIONS(2248), 1, anon_sym_LPAREN2, - ACTIONS(2210), 1, - anon_sym_LBRACE, - ACTIONS(2212), 1, + ACTIONS(2252), 1, aux_sym_unquoted_token4, - STATE(3673), 1, + ACTIONS(2256), 1, + anon_sym_LBRACE, + STATE(3672), 1, sym_comment, - ACTIONS(2206), 29, + ACTIONS(2254), 29, anon_sym_GT2, anon_sym_DASH_DASH, anon_sym_DASH2, @@ -350405,23 +352126,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [132806] = 6, + [135736] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(3674), 1, + STATE(3673), 1, sym_comment, - STATE(7392), 1, + STATE(7633), 1, sym__expr_parenthesized_immediate, - ACTIONS(5188), 6, + ACTIONS(5180), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5186), 24, + ACTIONS(5178), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -350446,12 +352167,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [132853] = 4, + [135783] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3675), 1, + STATE(3674), 1, sym_comment, - ACTIONS(2504), 7, + ACTIONS(2452), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -350459,7 +352180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2506), 25, + ACTIONS(2454), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -350485,51 +352206,94 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [132896] = 4, + [135826] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(3675), 1, + sym_comment, + STATE(7633), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5180), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5178), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [135873] = 6, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(4543), 1, + anon_sym_LPAREN2, STATE(3676), 1, sym_comment, - ACTIONS(2359), 7, - anon_sym_DOLLAR, + STATE(7633), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5180), 6, + anon_sym_GT2, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2361), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5178), 24, + anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [132939] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [135920] = 4, ACTIONS(247), 1, anon_sym_POUND, STATE(3677), 1, sym_comment, - ACTIONS(2407), 7, + ACTIONS(1907), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -350537,7 +352301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2409), 25, + ACTIONS(1909), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -350563,12 +352327,94 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [132982] = 4, + [135963] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(3678), 1, + sym_comment, + STATE(7633), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5180), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5178), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [136010] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(3679), 1, + sym_comment, + STATE(7633), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5180), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5178), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [136057] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3678), 1, + STATE(3680), 1, sym_comment, - ACTIONS(5098), 7, + ACTIONS(2468), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -350576,7 +352422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5096), 25, + ACTIONS(2470), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -350602,12 +352448,53 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [133025] = 4, + [136100] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3679), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(3681), 1, + sym_comment, + STATE(7633), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5180), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5178), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [136147] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3682), 1, sym_comment, - ACTIONS(5102), 7, + ACTIONS(2482), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -350615,7 +352502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(5100), 25, + ACTIONS(2484), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -350641,23 +352528,23 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [133068] = 6, + [136190] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(3680), 1, + STATE(3683), 1, sym_comment, - STATE(7999), 1, + STATE(7633), 1, sym__expr_parenthesized_immediate, - ACTIONS(4973), 6, + ACTIONS(5180), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(4971), 24, + ACTIONS(5178), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -350682,23 +352569,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [133115] = 6, + [136237] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(3681), 1, + STATE(3684), 1, sym_comment, - STATE(7999), 1, + STATE(7633), 1, sym__expr_parenthesized_immediate, - ACTIONS(4977), 6, + ACTIONS(5180), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(4975), 24, + ACTIONS(5178), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -350723,66 +352610,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [133162] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3682), 1, - sym_comment, - ACTIONS(1621), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - aux_sym_record_entry_token1, - ACTIONS(1623), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [133205] = 7, + [136284] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5220), 1, - anon_sym_EQ_GT, - ACTIONS(6685), 1, - anon_sym_DOT_DOT2, - STATE(3683), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(3685), 1, sym_comment, - ACTIONS(6687), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5222), 5, + STATE(7633), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5180), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5224), 23, - anon_sym_DASH2, + ACTIONS(5178), 24, + anon_sym_DASH_DASH, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -350804,26 +352651,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [133254] = 6, - ACTIONS(247), 1, + [136331] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6685), 1, - anon_sym_DOT_DOT2, - STATE(3684), 1, + STATE(3686), 1, sym_comment, - ACTIONS(6687), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1030), 5, + ACTIONS(2270), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + ACTIONS(2268), 30, anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1032), 24, + anon_sym_DASH_DASH, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -350832,36 +352673,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [133301] = 6, - ACTIONS(3), 1, + aux_sym_unquoted_token4, + [136374] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2216), 1, - anon_sym_LPAREN2, - ACTIONS(2218), 1, + STATE(3687), 1, + sym_comment, + ACTIONS(2478), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2480), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - STATE(3685), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [136417] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(3688), 1, sym_comment, - ACTIONS(2214), 29, + STATE(7633), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5180), 6, anon_sym_GT2, - anon_sym_DASH_DASH, anon_sym_DASH2, - anon_sym_in2, anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5178), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -350870,39 +352757,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [133348] = 6, + [136464] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(3686), 1, + STATE(3689), 1, sym_comment, - STATE(7999), 1, + STATE(7633), 1, sym__expr_parenthesized_immediate, - ACTIONS(4981), 6, + ACTIONS(5180), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(4979), 24, + ACTIONS(5178), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -350927,12 +352811,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [133395] = 4, + [136511] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3687), 1, + STATE(3690), 1, sym_comment, - ACTIONS(2363), 7, + ACTIONS(2410), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -350940,7 +352824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2365), 25, + ACTIONS(2412), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -350966,12 +352850,51 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [133438] = 4, + [136554] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3688), 1, + STATE(3691), 1, + sym_comment, + ACTIONS(2414), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2416), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [136597] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3692), 1, sym_comment, - ACTIONS(2488), 7, + ACTIONS(2418), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -350979,7 +352902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2490), 25, + ACTIONS(2420), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -351005,16 +352928,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [133481] = 4, + [136640] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3689), 1, + STATE(3693), 1, sym_comment, - ACTIONS(2250), 3, + ACTIONS(2270), 3, sym__newline, anon_sym_LBRACE, anon_sym_LPAREN2, - ACTIONS(2248), 29, + ACTIONS(2268), 29, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -351044,12 +352967,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, aux_sym_unquoted_token4, - [133524] = 4, + [136683] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3690), 1, + STATE(3694), 1, sym_comment, - ACTIONS(1709), 7, + ACTIONS(5172), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -351057,7 +352980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1721), 25, + ACTIONS(5170), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -351083,12 +353006,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [133567] = 4, + [136726] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3691), 1, + STATE(3695), 1, sym_comment, - ACTIONS(2464), 7, + ACTIONS(5176), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -351096,7 +353019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2466), 25, + ACTIONS(5174), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -351122,106 +353045,107 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [133610] = 6, - ACTIONS(3), 1, + [136769] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2216), 1, - anon_sym_LPAREN2, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - ACTIONS(2224), 1, - anon_sym_LBRACE, - STATE(3692), 1, + ACTIONS(6659), 1, + anon_sym_DOT_DOT2, + STATE(3696), 1, sym_comment, - ACTIONS(2222), 29, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [133657] = 4, - ACTIONS(3), 1, + ACTIONS(6661), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1802), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1810), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [136816] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(3693), 1, + STATE(3697), 1, sym_comment, - ACTIONS(1673), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - aux_sym_record_entry_token1, - ACTIONS(1675), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [133700] = 6, + ACTIONS(1707), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1719), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [136859] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(3694), 1, + ACTIONS(5206), 1, + anon_sym_LBRACE, + ACTIONS(6653), 1, + anon_sym_DOT_DOT2, + STATE(3698), 1, sym_comment, - STATE(7392), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 6, + ACTIONS(6637), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5208), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5186), 24, - anon_sym_DASH_DASH, + ACTIONS(5210), 23, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -351243,19 +353167,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [133747] = 6, + [136908] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2216), 1, + ACTIONS(2248), 1, anon_sym_LPAREN2, - ACTIONS(2220), 1, + ACTIONS(2252), 1, aux_sym_unquoted_token4, - STATE(3695), 1, + STATE(3699), 1, sym_comment, - ACTIONS(2218), 2, + ACTIONS(2250), 2, sym__newline, anon_sym_LBRACE, - ACTIONS(2214), 28, + ACTIONS(2246), 28, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -351284,19 +353208,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [133794] = 6, + [136955] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2216), 1, + ACTIONS(2248), 1, anon_sym_LPAREN2, - ACTIONS(2220), 1, + ACTIONS(2252), 1, aux_sym_unquoted_token4, - STATE(3696), 1, + STATE(3700), 1, sym_comment, - ACTIONS(2224), 2, + ACTIONS(2256), 2, sym__newline, anon_sym_LBRACE, - ACTIONS(2222), 28, + ACTIONS(2254), 28, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -351325,53 +353249,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [133841] = 6, + [137002] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(3697), 1, + STATE(3701), 1, sym_comment, - STATE(7392), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 6, - anon_sym_GT2, + ACTIONS(5081), 7, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5186), 24, - anon_sym_DASH_DASH, - anon_sym_in2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5079), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [133888] = 4, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [137045] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3698), 1, + STATE(3702), 1, sym_comment, - ACTIONS(2403), 7, + ACTIONS(5085), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -351379,7 +353301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2405), 25, + ACTIONS(5083), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -351405,12 +353327,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [133931] = 4, + [137088] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3699), 1, + STATE(3703), 1, sym_comment, - ACTIONS(2460), 7, + ACTIONS(2444), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -351418,7 +353340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2462), 25, + ACTIONS(2446), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -351444,12 +353366,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [133974] = 4, + [137131] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3700), 1, + STATE(3704), 1, sym_comment, - ACTIONS(2347), 7, + ACTIONS(2464), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -351457,7 +353379,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2349), 25, + ACTIONS(2466), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [137174] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3705), 1, + sym_comment, + ACTIONS(2464), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2466), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -351483,7 +353444,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [134017] = 27, + [137217] = 27, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(385), 1, @@ -351492,51 +353453,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token5, ACTIONS(3495), 1, aux_sym_expr_unary_token1, - ACTIONS(6667), 1, + ACTIONS(6663), 1, sym_identifier, - ACTIONS(6669), 1, + ACTIONS(6665), 1, sym__newline, - ACTIONS(6671), 1, + ACTIONS(6667), 1, anon_sym_LPAREN, - ACTIONS(6673), 1, + ACTIONS(6669), 1, anon_sym_DOLLAR, - ACTIONS(6675), 1, + ACTIONS(6671), 1, anon_sym_LBRACE, - ACTIONS(6677), 1, + ACTIONS(6673), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, + ACTIONS(6675), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, + ACTIONS(6677), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, + ACTIONS(6679), 1, aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, + STATE(1729), 1, sym__val_number, - STATE(2145), 1, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2131), 1, sym__expr_unary_minus, - STATE(3701), 1, + STATE(3706), 1, sym_comment, - STATE(3968), 1, - sym_expr_parenthesized, - STATE(4026), 1, + STATE(3724), 1, aux_sym_shebang_repeat1, - STATE(4294), 1, + STATE(3977), 1, + sym_expr_parenthesized, + STATE(4297), 1, sym_val_number, - STATE(4379), 1, + STATE(4324), 1, sym__binary_predicate_parenthesized, - STATE(4381), 1, + STATE(4325), 1, sym__predicate, - STATE(4874), 1, + STATE(4887), 1, sym_val_closure, ACTIONS(213), 2, anon_sym_true, anon_sym_false, - STATE(4502), 2, + STATE(4401), 2, sym_expr_unary, sym_val_bool, - STATE(5016), 2, + STATE(5176), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(429), 5, @@ -351545,12 +353506,130 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [134106] = 4, + [137306] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3702), 1, + STATE(3707), 1, + sym_comment, + ACTIONS(2430), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2432), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [137349] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3708), 1, + sym_comment, + ACTIONS(1585), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + aux_sym_record_entry_token1, + ACTIONS(1587), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [137392] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6681), 1, + aux_sym__immediate_decimal_token2, + STATE(3709), 1, + sym_comment, + ACTIONS(1681), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1683), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [137437] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3710), 1, sym_comment, - ACTIONS(1030), 7, + ACTIONS(2456), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -351558,7 +353637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1032), 25, + ACTIONS(2458), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -351584,12 +353663,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [134149] = 4, + [137480] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3703), 1, + STATE(3711), 1, sym_comment, - ACTIONS(2094), 7, + ACTIONS(1044), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -351597,7 +353676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2096), 25, + ACTIONS(1046), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -351623,12 +353702,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [134192] = 4, + [137523] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3704), 1, + STATE(3712), 1, sym_comment, - ACTIONS(2500), 7, + ACTIONS(5099), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -351636,7 +353715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2502), 25, + ACTIONS(5097), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -351662,12 +353741,212 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [134235] = 4, + [137566] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3705), 1, + STATE(3713), 1, + sym_comment, + ACTIONS(5121), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5119), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [137609] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3714), 1, + sym_comment, + ACTIONS(2486), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2488), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [137652] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3715), 1, + sym_comment, + ACTIONS(2510), 7, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2512), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [137695] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5206), 1, + anon_sym_EQ_GT, + ACTIONS(6683), 1, + anon_sym_DOT_DOT2, + STATE(3716), 1, + sym_comment, + ACTIONS(6685), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5208), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5210), 23, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [137744] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6683), 1, + anon_sym_DOT_DOT2, + STATE(3717), 1, + sym_comment, + ACTIONS(6685), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1026), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1028), 24, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [137791] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3718), 1, sym_comment, - ACTIONS(1018), 7, + ACTIONS(5134), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -351675,7 +353954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1020), 25, + ACTIONS(5132), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -351701,12 +353980,176 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [134278] = 4, + [137834] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(3719), 1, + sym_comment, + STATE(8105), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4922), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(4920), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [137881] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(3720), 1, + sym_comment, + STATE(8105), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4928), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(4926), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [137928] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(3721), 1, + sym_comment, + STATE(8105), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4934), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(4932), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [137975] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(3722), 1, + sym_comment, + STATE(8105), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4938), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(4936), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [138022] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3706), 1, + STATE(3723), 1, sym_comment, - ACTIONS(2480), 7, + ACTIONS(1026), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -351714,7 +354157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2482), 25, + ACTIONS(1028), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -351740,53 +354183,74 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [134321] = 4, + [138065] = 27, ACTIONS(247), 1, anon_sym_POUND, - STATE(3707), 1, - sym_comment, - ACTIONS(1948), 7, - anon_sym_DOLLAR, + ACTIONS(385), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1950), 25, - sym_raw_string_begin, - anon_sym_LBRACK, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6663), 1, + sym_identifier, + ACTIONS(6665), 1, + sym__newline, + ACTIONS(6667), 1, anon_sym_LPAREN, + ACTIONS(6669), 1, + anon_sym_DOLLAR, + ACTIONS(6671), 1, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(6673), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6675), 1, aux_sym__val_number_decimal_token2, + ACTIONS(6677), 1, aux_sym__val_number_decimal_token3, + ACTIONS(6679), 1, aux_sym__val_number_decimal_token4, + STATE(1729), 1, + sym__val_number, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(3724), 1, + sym_comment, + STATE(3977), 1, + sym_expr_parenthesized, + STATE(4049), 1, + aux_sym_shebang_repeat1, + STATE(4297), 1, + sym_val_number, + STATE(4415), 1, + sym__binary_predicate_parenthesized, + STATE(4416), 1, + sym__predicate, + STATE(4826), 1, + sym_val_closure, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4401), 2, + sym_expr_unary, + sym_val_bool, + STATE(5176), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [134364] = 5, + [138154] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6689), 1, - aux_sym__immediate_decimal_token2, - STATE(3708), 1, + STATE(3725), 1, sym_comment, - ACTIONS(1673), 7, + ACTIONS(1573), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -351794,7 +354258,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token41, sym_filesize_unit, - ACTIONS(1675), 24, + aux_sym_record_entry_token1, + ACTIONS(1575), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [138197] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3726), 1, + sym_comment, + ACTIONS(1761), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + aux_sym_record_entry_token1, + ACTIONS(1763), 24, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -351819,53 +354323,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [134409] = 6, + [138240] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(3709), 1, + STATE(3727), 1, sym_comment, - STATE(7392), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 6, - anon_sym_GT2, + ACTIONS(2472), 7, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5186), 24, - anon_sym_DASH_DASH, - anon_sym_in2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2474), 25, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [134456] = 4, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [138283] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3710), 1, + STATE(3728), 1, sym_comment, - ACTIONS(2387), 7, + ACTIONS(2390), 7, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -351873,7 +354375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2389), 25, + ACTIONS(2392), 25, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -351899,23 +354401,23 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [134499] = 6, + [138326] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(3711), 1, + STATE(3729), 1, sym_comment, - STATE(7392), 1, + STATE(7633), 1, sym__expr_parenthesized_immediate, - ACTIONS(5188), 6, + ACTIONS(5180), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5186), 24, + ACTIONS(5178), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -351940,68 +354442,263 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134546] = 4, + [138373] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + STATE(3730), 1, + sym_comment, + ACTIONS(2254), 29, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [138417] = 16, ACTIONS(247), 1, anon_sym_POUND, - STATE(3712), 1, + ACTIONS(5407), 1, + sym__newline, + ACTIONS(6689), 1, + anon_sym_DASH2, + ACTIONS(6703), 1, + anon_sym_PLUS2, + ACTIONS(6707), 1, + anon_sym_bit_DASHand2, + STATE(3731), 1, sym_comment, - ACTIONS(1913), 7, - anon_sym_DOLLAR, + STATE(3744), 1, + aux_sym_shebang_repeat1, + ACTIONS(6687), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6693), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6697), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6699), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6701), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6705), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6691), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6695), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5306), 6, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [138483] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6711), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1915), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(6725), 1, + anon_sym_PLUS2, + ACTIONS(6729), 1, + anon_sym_bit_DASHand2, + ACTIONS(6731), 1, + anon_sym_bit_DASHxor2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(3732), 1, + sym_comment, + ACTIONS(6709), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6715), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6719), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6721), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6723), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6713), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6717), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5302), 6, + sym__newline, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [134589] = 9, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [138549] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5471), 1, + ACTIONS(5407), 1, sym__newline, - STATE(3713), 1, + ACTIONS(6689), 1, + anon_sym_DASH2, + ACTIONS(6703), 1, + anon_sym_PLUS2, + ACTIONS(6707), 1, + anon_sym_bit_DASHand2, + ACTIONS(6733), 1, + anon_sym_bit_DASHxor2, + STATE(3733), 1, sym_comment, - STATE(3816), 1, + STATE(3745), 1, aux_sym_shebang_repeat1, - ACTIONS(6691), 2, + ACTIONS(6687), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6697), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6699), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6701), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6705), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6691), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6695), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5306), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [138617] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6711), 1, + anon_sym_DASH2, + ACTIONS(6725), 1, + anon_sym_PLUS2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(3734), 1, + sym_comment, + ACTIONS(5276), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6715), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6721), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6723), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5274), 18, + sym__newline, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [138673] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(3735), 1, + sym_comment, + ACTIONS(6715), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6721), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + ACTIONS(6723), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5334), 3, + ACTIONS(5276), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5332), 20, + ACTIONS(5274), 21, + sym__newline, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -352022,77 +354719,590 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134641] = 19, + [138723] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, + ACTIONS(6711), 1, anon_sym_DASH2, - ACTIONS(6705), 1, + ACTIONS(6725), 1, + anon_sym_PLUS2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(3736), 1, + sym_comment, + ACTIONS(6709), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6715), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6721), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6723), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6717), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5274), 14, + sym__newline, + anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, - ACTIONS(6707), 1, anon_sym_xor2, - ACTIONS(6717), 1, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [138781] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(3737), 1, + sym_comment, + ACTIONS(6721), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5276), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(6721), 1, + ACTIONS(5274), 23, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, - ACTIONS(6723), 1, anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [138827] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6711), 1, + anon_sym_DASH2, ACTIONS(6725), 1, + anon_sym_PLUS2, + ACTIONS(6729), 1, + anon_sym_bit_DASHand2, + ACTIONS(6731), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6735), 1, anon_sym_bit_DASHor2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3714), 1, + STATE(3738), 1, sym_comment, - ACTIONS(6697), 2, + ACTIONS(6709), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6703), 2, + ACTIONS(6715), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6711), 2, + ACTIONS(6719), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6713), 2, + ACTIONS(6721), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6723), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6713), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6717), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5274), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [138895] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6711), 1, + anon_sym_DASH2, + ACTIONS(6725), 1, + anon_sym_PLUS2, + ACTIONS(6729), 1, + anon_sym_bit_DASHand2, + ACTIONS(6731), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6735), 1, + anon_sym_bit_DASHor2, + ACTIONS(6737), 1, + anon_sym_and2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(3739), 1, + sym_comment, + ACTIONS(6709), 2, + anon_sym_GT2, + anon_sym_LT2, ACTIONS(6715), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6719), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6721), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6723), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5274), 4, + sym__newline, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6713), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6717), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [138965] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6711), 1, + anon_sym_DASH2, + ACTIONS(6725), 1, + anon_sym_PLUS2, + ACTIONS(6729), 1, + anon_sym_bit_DASHand2, + ACTIONS(6731), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6735), 1, + anon_sym_bit_DASHor2, + ACTIONS(6737), 1, + anon_sym_and2, + ACTIONS(6739), 1, + anon_sym_xor2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(3740), 1, + sym_comment, + ACTIONS(6709), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6715), 2, + anon_sym_STAR2, + anon_sym_SLASH2, ACTIONS(6719), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6721), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6723), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5320), 3, + ACTIONS(5274), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(6701), 4, + ACTIONS(6713), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6709), 4, + ACTIONS(6717), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [134713] = 6, + [139037] = 13, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + ACTIONS(6711), 1, + anon_sym_DASH2, + ACTIONS(6725), 1, + anon_sym_PLUS2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3715), 1, + STATE(3741), 1, + sym_comment, + ACTIONS(6709), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6715), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6721), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6723), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6713), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6717), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5274), 10, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [139097] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6711), 1, + anon_sym_DASH2, + ACTIONS(6725), 1, + anon_sym_PLUS2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(3742), 1, + sym_comment, + ACTIONS(5276), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6715), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6721), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6723), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5274), 20, + sym__newline, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [139151] = 14, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6711), 1, + anon_sym_DASH2, + ACTIONS(6725), 1, + anon_sym_PLUS2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(3743), 1, sym_comment, - ACTIONS(6713), 2, + ACTIONS(6709), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6715), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6719), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6721), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5282), 5, + ACTIONS(6723), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6713), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6717), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5274), 8, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [139213] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6711), 1, + anon_sym_DASH2, + ACTIONS(6725), 1, + anon_sym_PLUS2, + ACTIONS(6729), 1, + anon_sym_bit_DASHand2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(3744), 1, + sym_comment, + ACTIONS(6709), 2, anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6715), 2, anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6719), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6721), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6723), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6713), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6717), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5274), 7, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [139277] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6711), 1, + anon_sym_DASH2, + ACTIONS(6725), 1, + anon_sym_PLUS2, + ACTIONS(6729), 1, + anon_sym_bit_DASHand2, + ACTIONS(6731), 1, + anon_sym_bit_DASHxor2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(3745), 1, + sym_comment, + ACTIONS(6709), 2, + anon_sym_GT2, anon_sym_LT2, + ACTIONS(6715), 2, + anon_sym_STAR2, anon_sym_SLASH2, + ACTIONS(6719), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6721), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6723), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6713), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6717), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5274), 6, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [139343] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5425), 1, + sym__newline, + ACTIONS(6689), 1, + anon_sym_DASH2, + ACTIONS(6703), 1, anon_sym_PLUS2, - ACTIONS(5280), 23, + STATE(3746), 1, + sym_comment, + STATE(3771), 1, + aux_sym_shebang_repeat1, + ACTIONS(6687), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6693), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6699), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6701), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6705), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6695), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5328), 13, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [139403] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3747), 1, + sym_comment, + ACTIONS(2130), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2136), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [139445] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5425), 1, sym__newline, + STATE(3748), 1, + sym_comment, + STATE(3773), 1, + aux_sym_shebang_repeat1, + ACTIONS(6699), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5330), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5328), 22, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -352115,200 +355325,437 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134759] = 17, + [139493] = 18, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5422), 1, + ACTIONS(5425), 1, sym__newline, - ACTIONS(6729), 1, + ACTIONS(6689), 1, anon_sym_DASH2, - ACTIONS(6737), 1, + ACTIONS(6703), 1, anon_sym_PLUS2, - ACTIONS(6741), 1, + ACTIONS(6707), 1, anon_sym_bit_DASHand2, - ACTIONS(6743), 1, + ACTIONS(6733), 1, anon_sym_bit_DASHxor2, - STATE(3716), 1, + ACTIONS(6741), 1, + anon_sym_bit_DASHor2, + STATE(3749), 1, sym_comment, - STATE(3790), 1, + STATE(3775), 1, aux_sym_shebang_repeat1, - ACTIONS(6691), 2, + ACTIONS(6687), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6697), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6705), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5328), 4, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6691), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6695), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [139563] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3750), 1, + sym_comment, + ACTIONS(2494), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2496), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [139605] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6743), 1, + anon_sym_DOT_DOT2, + STATE(3751), 1, + sym_comment, + ACTIONS(6745), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1802), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1810), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [139651] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6751), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6753), 1, + sym_filesize_unit, + ACTIONS(6755), 1, + sym_duration_unit, + STATE(3752), 1, + sym_comment, + ACTIONS(6749), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6747), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [139699] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2270), 1, + anon_sym_LPAREN2, + STATE(3753), 1, + sym_comment, + ACTIONS(2268), 30, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6735), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6739), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6731), 4, + anon_sym_DASH2, anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6733), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5268), 5, - anon_sym_LBRACE, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + aux_sym_unquoted_token4, + [139741] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3754), 1, + sym_comment, + ACTIONS(2157), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2163), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - [134827] = 18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [139783] = 19, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, + ACTIONS(5425), 1, + sym__newline, + ACTIONS(6689), 1, anon_sym_DASH2, - ACTIONS(6705), 1, - anon_sym_and2, - ACTIONS(6717), 1, + ACTIONS(6703), 1, anon_sym_PLUS2, - ACTIONS(6721), 1, + ACTIONS(6707), 1, anon_sym_bit_DASHand2, - ACTIONS(6723), 1, + ACTIONS(6733), 1, anon_sym_bit_DASHxor2, - ACTIONS(6725), 1, + ACTIONS(6741), 1, anon_sym_bit_DASHor2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3717), 1, + ACTIONS(6757), 1, + anon_sym_and2, + STATE(3755), 1, sym_comment, - ACTIONS(6697), 2, + STATE(3777), 1, + aux_sym_shebang_repeat1, + ACTIONS(6687), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6703), 2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6711), 2, + ACTIONS(6697), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6713), 2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6705), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5276), 4, - sym__newline, + ACTIONS(5328), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(6701), 4, + ACTIONS(6691), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6709), 4, + ACTIONS(6695), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [134897] = 19, + [139855] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, - anon_sym_DASH2, - ACTIONS(6705), 1, + STATE(3756), 1, + sym_comment, + ACTIONS(2146), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2152), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_and2, - ACTIONS(6707), 1, anon_sym_xor2, - ACTIONS(6717), 1, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [139897] = 20, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(6689), 1, + anon_sym_DASH2, + ACTIONS(6703), 1, anon_sym_PLUS2, - ACTIONS(6721), 1, + ACTIONS(6707), 1, anon_sym_bit_DASHand2, - ACTIONS(6723), 1, + ACTIONS(6733), 1, anon_sym_bit_DASHxor2, - ACTIONS(6725), 1, + ACTIONS(6741), 1, anon_sym_bit_DASHor2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3718), 1, + ACTIONS(6757), 1, + anon_sym_and2, + ACTIONS(6759), 1, + anon_sym_xor2, + STATE(3757), 1, sym_comment, - ACTIONS(6697), 2, + STATE(3779), 1, + aux_sym_shebang_repeat1, + ACTIONS(5328), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6687), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6703), 2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6711), 2, + ACTIONS(6697), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6713), 2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6705), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5276), 3, - sym__newline, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(6701), 4, + ACTIONS(6691), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6709), 4, + ACTIONS(6695), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [134969] = 13, + [139971] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, + ACTIONS(5425), 1, + sym__newline, + ACTIONS(6689), 1, anon_sym_DASH2, - ACTIONS(6717), 1, + ACTIONS(6703), 1, anon_sym_PLUS2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3719), 1, + STATE(3758), 1, sym_comment, - ACTIONS(6697), 2, + STATE(3781), 1, + aux_sym_shebang_repeat1, + ACTIONS(6687), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6703), 2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6713), 2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6705), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6701), 4, + ACTIONS(6691), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6709), 4, + ACTIONS(6695), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5276), 10, - sym__newline, + ACTIONS(5328), 9, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -352318,26 +355765,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135029] = 7, + [140033] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5374), 1, - sym__newline, - STATE(3720), 1, + ACTIONS(6450), 1, + aux_sym_unquoted_token2, + STATE(3759), 1, sym_comment, - STATE(3839), 1, - aux_sym_shebang_repeat1, - ACTIONS(6693), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5286), 5, + ACTIONS(1707), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5284), 22, - anon_sym_DASH2, + ACTIONS(1719), 24, + anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -352352,6 +355795,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -352359,31 +355804,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135077] = 10, + [140077] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, + ACTIONS(5425), 1, + sym__newline, + ACTIONS(6689), 1, anon_sym_DASH2, - ACTIONS(6717), 1, + ACTIONS(6703), 1, anon_sym_PLUS2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3721), 1, + STATE(3760), 1, sym_comment, - ACTIONS(5278), 2, + STATE(3783), 1, + aux_sym_shebang_repeat1, + ACTIONS(5330), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6703), 2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6713), 2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5276), 20, - sym__newline, + ACTIONS(5328), 19, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -352403,75 +355849,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135131] = 17, + [140133] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, + ACTIONS(5425), 1, + sym__newline, + ACTIONS(6689), 1, anon_sym_DASH2, - ACTIONS(6717), 1, + ACTIONS(6703), 1, anon_sym_PLUS2, - ACTIONS(6721), 1, + STATE(3761), 1, + sym_comment, + STATE(3785), 1, + aux_sym_shebang_repeat1, + ACTIONS(6687), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6693), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6697), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6699), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6701), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6705), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6691), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6695), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5328), 7, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHand2, - ACTIONS(6723), 1, anon_sym_bit_DASHxor2, - ACTIONS(6725), 1, anon_sym_bit_DASHor2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3722), 1, + [140197] = 16, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5425), 1, + sym__newline, + ACTIONS(6689), 1, + anon_sym_DASH2, + ACTIONS(6703), 1, + anon_sym_PLUS2, + ACTIONS(6707), 1, + anon_sym_bit_DASHand2, + STATE(3762), 1, sym_comment, - ACTIONS(6697), 2, + STATE(3787), 1, + aux_sym_shebang_repeat1, + ACTIONS(6687), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6703), 2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6711), 2, + ACTIONS(6697), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6713), 2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6705), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6701), 4, + ACTIONS(6691), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6709), 4, + ACTIONS(6695), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5280), 5, + ACTIONS(5328), 6, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [140263] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5425), 1, sym__newline, + ACTIONS(6689), 1, + anon_sym_DASH2, + ACTIONS(6703), 1, + anon_sym_PLUS2, + ACTIONS(6707), 1, + anon_sym_bit_DASHand2, + ACTIONS(6733), 1, + anon_sym_bit_DASHxor2, + STATE(3763), 1, + sym_comment, + STATE(3789), 1, + aux_sym_shebang_repeat1, + ACTIONS(6687), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6693), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6697), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6699), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6701), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6705), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6691), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6695), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5328), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [135199] = 7, + anon_sym_bit_DASHor2, + [140331] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6749), 1, + ACTIONS(6765), 1, aux_sym_cmd_identifier_token41, - ACTIONS(6751), 1, + ACTIONS(6767), 1, sym_filesize_unit, - ACTIONS(6753), 1, + ACTIONS(6769), 1, sym_duration_unit, - STATE(3723), 1, + STATE(3764), 1, + sym_comment, + ACTIONS(6763), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6761), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [140379] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3765), 1, sym_comment, - ACTIONS(6747), 5, + ACTIONS(1761), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6745), 23, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1763), 24, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -352495,73 +356077,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [135247] = 18, + sym_duration_unit, + [140421] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5374), 1, - sym__newline, - ACTIONS(6729), 1, + ACTIONS(6711), 1, anon_sym_DASH2, - ACTIONS(6737), 1, + ACTIONS(6725), 1, anon_sym_PLUS2, - ACTIONS(6741), 1, - anon_sym_bit_DASHand2, - ACTIONS(6743), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, - anon_sym_bit_DASHor2, - STATE(3724), 1, - sym_comment, - STATE(3840), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(6691), 2, + STATE(3766), 1, + sym_comment, + ACTIONS(5296), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6715), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6721), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + ACTIONS(6723), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(6727), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6735), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6739), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5284), 4, + ACTIONS(5294), 18, + sym__newline, + anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6731), 4, - anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6733), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [135317] = 5, - ACTIONS(3), 1, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [140477] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2216), 1, - anon_sym_LPAREN2, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - STATE(3725), 1, + ACTIONS(4866), 1, + aux_sym_unquoted_token2, + STATE(3767), 1, sym_comment, - ACTIONS(2214), 29, + ACTIONS(1707), 5, anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1719), 25, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_STAR2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -352570,47 +356149,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135361] = 10, + [140521] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, + ACTIONS(5332), 1, + sym__newline, + ACTIONS(6689), 1, anon_sym_DASH2, - ACTIONS(6717), 1, + ACTIONS(6703), 1, anon_sym_PLUS2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3726), 1, + STATE(3768), 1, sym_comment, - ACTIONS(5322), 2, + STATE(3810), 1, + aux_sym_shebang_repeat1, + ACTIONS(5300), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6703), 2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6713), 2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5320), 20, - sym__newline, + ACTIONS(6705), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5298), 17, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -352625,26 +356205,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135415] = 5, - ACTIONS(3), 1, + [140579] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2216), 1, - anon_sym_LPAREN2, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - STATE(3727), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(3769), 1, sym_comment, - ACTIONS(2222), 29, + ACTIONS(6715), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6721), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6723), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5296), 3, anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5294), 21, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_STAR2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -352653,1081 +356241,1057 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [140629] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5332), 1, + sym__newline, + STATE(3770), 1, + sym_comment, + STATE(3811), 1, + aux_sym_shebang_repeat1, + ACTIONS(6693), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(5300), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, + ACTIONS(5298), 20, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135459] = 14, + [140681] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, + ACTIONS(6711), 1, anon_sym_DASH2, - ACTIONS(6717), 1, + ACTIONS(6725), 1, anon_sym_PLUS2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3728), 1, + STATE(3771), 1, sym_comment, - ACTIONS(6697), 2, + ACTIONS(6709), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6703), 2, + ACTIONS(6715), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6711), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6713), 2, + ACTIONS(6721), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(6723), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6727), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6701), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6709), 4, + ACTIONS(6717), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5276), 8, + ACTIONS(5294), 14, sym__newline, + anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135521] = 15, + [140739] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, + ACTIONS(5332), 1, + sym__newline, + ACTIONS(6689), 1, anon_sym_DASH2, - ACTIONS(6717), 1, + ACTIONS(6703), 1, anon_sym_PLUS2, - ACTIONS(6721), 1, - anon_sym_bit_DASHand2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3729), 1, + STATE(3772), 1, sym_comment, - ACTIONS(6697), 2, + STATE(3813), 1, + aux_sym_shebang_repeat1, + ACTIONS(6687), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6703), 2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6711), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6713), 2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6705), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6701), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6709), 4, + ACTIONS(6695), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5276), 7, - sym__newline, + ACTIONS(5298), 13, + anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135585] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6761), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6763), 1, - sym_filesize_unit, - ACTIONS(6765), 1, - sym_duration_unit, - STATE(3730), 1, - sym_comment, - ACTIONS(6759), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6757), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [135633] = 16, + [140799] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, - anon_sym_DASH2, - ACTIONS(6717), 1, - anon_sym_PLUS2, - ACTIONS(6721), 1, - anon_sym_bit_DASHand2, - ACTIONS(6723), 1, - anon_sym_bit_DASHxor2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3731), 1, + STATE(3773), 1, sym_comment, - ACTIONS(6697), 2, + ACTIONS(6721), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5296), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6703), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6711), 2, + anon_sym_PLUS2, + ACTIONS(5294), 23, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6713), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6701), 4, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [140845] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5332), 1, + sym__newline, + STATE(3774), 1, + sym_comment, + STATE(3814), 1, + aux_sym_shebang_repeat1, + ACTIONS(6699), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5300), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5298), 22, + anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6709), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5276), 6, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135699] = 14, + [140893] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, + ACTIONS(6711), 1, anon_sym_DASH2, - ACTIONS(6717), 1, + ACTIONS(6725), 1, anon_sym_PLUS2, - STATE(1816), 1, + ACTIONS(6729), 1, + anon_sym_bit_DASHand2, + ACTIONS(6731), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6735), 1, + anon_sym_bit_DASHor2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3732), 1, + STATE(3775), 1, sym_comment, - ACTIONS(6697), 2, + ACTIONS(6709), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6703), 2, + ACTIONS(6715), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6711), 2, + ACTIONS(6719), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6713), 2, + ACTIONS(6721), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(6723), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6727), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6701), 4, + ACTIONS(6713), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6709), 4, + ACTIONS(6717), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5320), 8, + ACTIONS(5294), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [135761] = 18, + [140961] = 18, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, + ACTIONS(5332), 1, + sym__newline, + ACTIONS(6689), 1, anon_sym_DASH2, - ACTIONS(6705), 1, - anon_sym_and2, - ACTIONS(6717), 1, + ACTIONS(6703), 1, anon_sym_PLUS2, - ACTIONS(6721), 1, + ACTIONS(6707), 1, anon_sym_bit_DASHand2, - ACTIONS(6723), 1, + ACTIONS(6733), 1, anon_sym_bit_DASHxor2, - ACTIONS(6725), 1, + ACTIONS(6741), 1, anon_sym_bit_DASHor2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3733), 1, + STATE(3776), 1, sym_comment, - ACTIONS(6697), 2, + STATE(3816), 1, + aux_sym_shebang_repeat1, + ACTIONS(6687), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6703), 2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6711), 2, + ACTIONS(6697), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6713), 2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6705), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5280), 4, - sym__newline, + ACTIONS(5298), 4, anon_sym_LBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6701), 4, + ACTIONS(6691), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6709), 4, + ACTIONS(6695), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [135831] = 4, - ACTIONS(3), 1, + [141031] = 18, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2250), 1, - anon_sym_LPAREN2, - STATE(3734), 1, + ACTIONS(6711), 1, + anon_sym_DASH2, + ACTIONS(6725), 1, + anon_sym_PLUS2, + ACTIONS(6729), 1, + anon_sym_bit_DASHand2, + ACTIONS(6731), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6735), 1, + anon_sym_bit_DASHor2, + ACTIONS(6737), 1, + anon_sym_and2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(3777), 1, sym_comment, - ACTIONS(2248), 30, + ACTIONS(6709), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LT2, + ACTIONS(6715), 2, anon_sym_STAR2, - anon_sym_and2, + anon_sym_SLASH2, + ACTIONS(6719), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6721), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6723), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5294), 4, + sym__newline, + anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, + ACTIONS(6713), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6717), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - aux_sym_unquoted_token4, - [135873] = 19, + [141101] = 19, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5374), 1, + ACTIONS(5332), 1, sym__newline, - ACTIONS(6729), 1, + ACTIONS(6689), 1, anon_sym_DASH2, - ACTIONS(6737), 1, + ACTIONS(6703), 1, anon_sym_PLUS2, - ACTIONS(6741), 1, + ACTIONS(6707), 1, anon_sym_bit_DASHand2, - ACTIONS(6743), 1, + ACTIONS(6733), 1, anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, + ACTIONS(6741), 1, anon_sym_bit_DASHor2, - ACTIONS(6767), 1, + ACTIONS(6757), 1, anon_sym_and2, - STATE(3735), 1, + STATE(3778), 1, sym_comment, - STATE(3843), 1, + STATE(3817), 1, aux_sym_shebang_repeat1, - ACTIONS(6691), 2, + ACTIONS(6687), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6697), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6735), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6739), 2, + ACTIONS(6705), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5284), 3, + ACTIONS(5298), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(6731), 4, + ACTIONS(6691), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6733), 4, + ACTIONS(6695), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [135945] = 19, + [141173] = 19, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, + ACTIONS(6711), 1, anon_sym_DASH2, - ACTIONS(6705), 1, - anon_sym_and2, - ACTIONS(6707), 1, - anon_sym_xor2, - ACTIONS(6717), 1, + ACTIONS(6725), 1, anon_sym_PLUS2, - ACTIONS(6721), 1, + ACTIONS(6729), 1, anon_sym_bit_DASHand2, - ACTIONS(6723), 1, + ACTIONS(6731), 1, anon_sym_bit_DASHxor2, - ACTIONS(6725), 1, + ACTIONS(6735), 1, anon_sym_bit_DASHor2, - STATE(1816), 1, + ACTIONS(6737), 1, + anon_sym_and2, + ACTIONS(6739), 1, + anon_sym_xor2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3736), 1, + STATE(3779), 1, sym_comment, - ACTIONS(6697), 2, + ACTIONS(6709), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6703), 2, + ACTIONS(6715), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6711), 2, + ACTIONS(6719), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6713), 2, + ACTIONS(6721), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(6723), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6727), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5280), 3, + ACTIONS(5294), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(6701), 4, + ACTIONS(6713), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6709), 4, + ACTIONS(6717), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [136017] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3737), 1, - sym_comment, - ACTIONS(2429), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2431), 23, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [136059] = 20, + [141245] = 20, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(6729), 1, + ACTIONS(6689), 1, anon_sym_DASH2, - ACTIONS(6737), 1, + ACTIONS(6703), 1, anon_sym_PLUS2, - ACTIONS(6741), 1, + ACTIONS(6707), 1, anon_sym_bit_DASHand2, - ACTIONS(6743), 1, + ACTIONS(6733), 1, anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, + ACTIONS(6741), 1, anon_sym_bit_DASHor2, - ACTIONS(6767), 1, + ACTIONS(6757), 1, anon_sym_and2, - ACTIONS(6769), 1, + ACTIONS(6759), 1, anon_sym_xor2, - STATE(3714), 1, - aux_sym_shebang_repeat1, - STATE(3738), 1, + STATE(3780), 1, sym_comment, - ACTIONS(5284), 2, + STATE(3818), 1, + aux_sym_shebang_repeat1, + ACTIONS(5298), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(6691), 2, + ACTIONS(6687), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6697), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6735), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6739), 2, + ACTIONS(6705), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6731), 4, + ACTIONS(6691), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6733), 4, + ACTIONS(6695), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [136133] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3739), 1, - sym_comment, - ACTIONS(2433), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2435), 23, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [136175] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3053), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6771), 1, - sym_filesize_unit, - ACTIONS(6773), 1, - sym_duration_unit, - STATE(3740), 1, - sym_comment, - ACTIONS(3051), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3049), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [136223] = 4, + [141319] = 13, ACTIONS(247), 1, anon_sym_POUND, - STATE(3741), 1, + ACTIONS(6711), 1, + anon_sym_DASH2, + ACTIONS(6725), 1, + anon_sym_PLUS2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(3781), 1, sym_comment, - ACTIONS(2159), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2165), 23, - ts_builtin_sym_end, + ACTIONS(6709), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6715), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6721), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6723), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6713), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6717), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5294), 10, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [136265] = 15, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [141379] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5422), 1, + ACTIONS(5332), 1, sym__newline, - ACTIONS(6729), 1, + ACTIONS(6689), 1, anon_sym_DASH2, - ACTIONS(6737), 1, + ACTIONS(6703), 1, anon_sym_PLUS2, - STATE(3742), 1, + STATE(3782), 1, sym_comment, - STATE(3785), 1, + STATE(3823), 1, aux_sym_shebang_repeat1, - ACTIONS(6691), 2, + ACTIONS(6687), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6735), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6739), 2, + ACTIONS(6705), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6731), 4, + ACTIONS(6691), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6733), 4, + ACTIONS(6695), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5268), 7, + ACTIONS(5298), 9, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136329] = 18, + [141441] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5422), 1, - sym__newline, - ACTIONS(6729), 1, + ACTIONS(6711), 1, anon_sym_DASH2, - ACTIONS(6737), 1, + ACTIONS(6725), 1, anon_sym_PLUS2, - ACTIONS(6741), 1, - anon_sym_bit_DASHand2, - ACTIONS(6743), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, - anon_sym_bit_DASHor2, - STATE(3743), 1, - sym_comment, - STATE(3768), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(6691), 2, + STATE(3783), 1, + sym_comment, + ACTIONS(5296), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6715), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6721), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + ACTIONS(6723), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6735), 2, + ACTIONS(5294), 20, + sym__newline, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6739), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5268), 4, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [141495] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5332), 1, + sym__newline, + ACTIONS(6689), 1, + anon_sym_DASH2, + ACTIONS(6703), 1, + anon_sym_PLUS2, + STATE(3784), 1, + sym_comment, + STATE(3825), 1, + aux_sym_shebang_repeat1, + ACTIONS(5300), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6693), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6699), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6701), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5298), 19, + anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6731), 4, - anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6733), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [136399] = 13, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [141551] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5422), 1, - sym__newline, - ACTIONS(6729), 1, + ACTIONS(6711), 1, anon_sym_DASH2, - ACTIONS(6737), 1, + ACTIONS(6725), 1, anon_sym_PLUS2, - STATE(3744), 1, - sym_comment, - STATE(3760), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(6691), 2, + STATE(3785), 1, + sym_comment, + ACTIONS(6709), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6715), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6719), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6721), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + ACTIONS(6723), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(6727), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6739), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6733), 4, + ACTIONS(6713), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6717), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5268), 13, - anon_sym_in2, + ACTIONS(5294), 8, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136459] = 16, + [141613] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5422), 1, + ACTIONS(5332), 1, sym__newline, - ACTIONS(6729), 1, + ACTIONS(6689), 1, anon_sym_DASH2, - ACTIONS(6737), 1, + ACTIONS(6703), 1, anon_sym_PLUS2, - ACTIONS(6741), 1, - anon_sym_bit_DASHand2, - STATE(3745), 1, + STATE(3786), 1, sym_comment, - STATE(3787), 1, + STATE(3826), 1, aux_sym_shebang_repeat1, - ACTIONS(6691), 2, + ACTIONS(6687), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6697), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6735), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6739), 2, + ACTIONS(6705), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6731), 4, + ACTIONS(6691), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6733), 4, + ACTIONS(6695), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5268), 6, + ACTIONS(5298), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136525] = 13, + [141677] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, + ACTIONS(6711), 1, anon_sym_DASH2, - ACTIONS(6717), 1, + ACTIONS(6725), 1, anon_sym_PLUS2, - STATE(1816), 1, + ACTIONS(6729), 1, + anon_sym_bit_DASHand2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3746), 1, + STATE(3787), 1, sym_comment, - ACTIONS(6697), 2, + ACTIONS(6709), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6703), 2, + ACTIONS(6715), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6713), 2, + ACTIONS(6719), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6721), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(6723), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6727), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6701), 4, + ACTIONS(6713), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6709), 4, + ACTIONS(6717), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5280), 10, + ACTIONS(5294), 7, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136585] = 12, + [141741] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5422), 1, + ACTIONS(5332), 1, sym__newline, - ACTIONS(6729), 1, + ACTIONS(6689), 1, anon_sym_DASH2, - ACTIONS(6737), 1, + ACTIONS(6703), 1, anon_sym_PLUS2, - STATE(3747), 1, + ACTIONS(6707), 1, + anon_sym_bit_DASHand2, + STATE(3788), 1, sym_comment, - STATE(3748), 1, + STATE(3827), 1, aux_sym_shebang_repeat1, - ACTIONS(5270), 2, + ACTIONS(6687), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6691), 2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6697), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6739), 2, + ACTIONS(6705), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5268), 17, + ACTIONS(6691), 4, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6695), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, + ACTIONS(5298), 6, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136643] = 11, + [141807] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, + ACTIONS(6711), 1, anon_sym_DASH2, - ACTIONS(6717), 1, + ACTIONS(6725), 1, anon_sym_PLUS2, - STATE(1816), 1, + ACTIONS(6729), 1, + anon_sym_bit_DASHand2, + ACTIONS(6731), 1, + anon_sym_bit_DASHxor2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3748), 1, + STATE(3789), 1, sym_comment, - ACTIONS(5330), 2, + ACTIONS(6709), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6703), 2, + ACTIONS(6715), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6713), 2, + ACTIONS(6719), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6721), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(6723), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6727), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5328), 18, - sym__newline, + ACTIONS(6713), 4, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6717), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, + ACTIONS(5294), 6, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHor2, - [136699] = 19, + [141873] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5422), 1, + ACTIONS(5332), 1, sym__newline, - ACTIONS(6729), 1, + ACTIONS(6689), 1, anon_sym_DASH2, - ACTIONS(6737), 1, + ACTIONS(6703), 1, anon_sym_PLUS2, - ACTIONS(6741), 1, + ACTIONS(6707), 1, anon_sym_bit_DASHand2, - ACTIONS(6743), 1, + ACTIONS(6733), 1, anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, - anon_sym_bit_DASHor2, - ACTIONS(6767), 1, - anon_sym_and2, - STATE(3749), 1, + STATE(3790), 1, sym_comment, - STATE(3770), 1, + STATE(3830), 1, aux_sym_shebang_repeat1, - ACTIONS(6691), 2, + ACTIONS(6687), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6697), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6735), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6739), 2, + ACTIONS(6705), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5268), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6731), 4, + ACTIONS(6691), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6733), 4, + ACTIONS(6695), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [136771] = 12, + ACTIONS(5298), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [141941] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5471), 1, + ACTIONS(5416), 1, sym__newline, - ACTIONS(6729), 1, + ACTIONS(6689), 1, anon_sym_DASH2, - ACTIONS(6737), 1, + ACTIONS(6703), 1, anon_sym_PLUS2, - STATE(3750), 1, + STATE(3791), 1, sym_comment, - STATE(3784), 1, + STATE(3831), 1, aux_sym_shebang_repeat1, - ACTIONS(5334), 2, + ACTIONS(5326), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6691), 2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6739), 2, + ACTIONS(6705), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5332), 17, + ACTIONS(5324), 17, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -353745,79 +357309,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136829] = 14, + [141999] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3792), 1, + sym_comment, + ACTIONS(1573), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1575), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [142041] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5374), 1, + ACTIONS(5416), 1, sym__newline, - ACTIONS(6729), 1, - anon_sym_DASH2, - ACTIONS(6737), 1, - anon_sym_PLUS2, - STATE(3751), 1, + STATE(3793), 1, sym_comment, - STATE(3756), 1, + STATE(3835), 1, aux_sym_shebang_repeat1, - ACTIONS(6691), 2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(5326), 3, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6739), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6731), 4, + anon_sym_PLUS2, + ACTIONS(5324), 20, + anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6733), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5284), 9, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136891] = 10, + [142093] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3794), 1, + sym_comment, + ACTIONS(1585), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1587), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [142135] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, + ACTIONS(5416), 1, + sym__newline, + ACTIONS(6689), 1, anon_sym_DASH2, - ACTIONS(6717), 1, + ACTIONS(6703), 1, anon_sym_PLUS2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3752), 1, + STATE(3795), 1, sym_comment, - ACTIONS(5282), 2, + STATE(3837), 1, + aux_sym_shebang_repeat1, + ACTIONS(6687), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6703), 2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6713), 2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5280), 20, - sym__newline, + ACTIONS(6705), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6695), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5324), 13, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -353826,32 +357470,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136945] = 5, - ACTIONS(3), 1, + [142195] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2202), 1, - anon_sym_LPAREN2, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(3753), 1, + ACTIONS(6771), 1, + anon_sym_DOT_DOT2, + STATE(3796), 1, + sym_comment, + ACTIONS(6773), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1820), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1828), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [142241] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5416), 1, + sym__newline, + STATE(3797), 1, sym_comment, - ACTIONS(1030), 29, + STATE(3840), 1, + aux_sym_shebang_repeat1, + ACTIONS(6699), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5326), 5, anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5324), 22, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_STAR2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -353860,92 +357545,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136989] = 11, + [142289] = 18, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5374), 1, + ACTIONS(5416), 1, sym__newline, - ACTIONS(6729), 1, + ACTIONS(6689), 1, anon_sym_DASH2, - ACTIONS(6737), 1, + ACTIONS(6703), 1, anon_sym_PLUS2, - STATE(3726), 1, - aux_sym_shebang_repeat1, - STATE(3754), 1, + ACTIONS(6707), 1, + anon_sym_bit_DASHand2, + ACTIONS(6733), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6741), 1, + anon_sym_bit_DASHor2, + STATE(3798), 1, sym_comment, - ACTIONS(5286), 2, + STATE(3842), 1, + aux_sym_shebang_repeat1, + ACTIONS(6687), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6691), 2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6697), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5284), 19, - anon_sym_in2, + ACTIONS(6705), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5324), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(6691), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6695), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + [142359] = 19, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5416), 1, + sym__newline, + ACTIONS(6689), 1, + anon_sym_DASH2, + ACTIONS(6703), 1, + anon_sym_PLUS2, + ACTIONS(6707), 1, anon_sym_bit_DASHand2, + ACTIONS(6733), 1, anon_sym_bit_DASHxor2, + ACTIONS(6741), 1, anon_sym_bit_DASHor2, - [137045] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3755), 1, + ACTIONS(6757), 1, + anon_sym_and2, + STATE(3799), 1, sym_comment, - ACTIONS(6703), 2, + STATE(3846), 1, + aux_sym_shebang_repeat1, + ACTIONS(6687), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6713), 2, + ACTIONS(6697), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5330), 3, + ACTIONS(6705), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5324), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6691), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6695), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [142431] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2226), 1, + anon_sym_LPAREN2, + ACTIONS(2228), 1, + aux_sym_unquoted_token4, + STATE(3800), 1, + sym_comment, + ACTIONS(1026), 29, anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5328), 21, - sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -353954,176 +357684,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [137095] = 13, + [142475] = 20, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(6689), 1, anon_sym_DASH2, - ACTIONS(6717), 1, + ACTIONS(6703), 1, anon_sym_PLUS2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3756), 1, + ACTIONS(6707), 1, + anon_sym_bit_DASHand2, + ACTIONS(6733), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6741), 1, + anon_sym_bit_DASHor2, + ACTIONS(6757), 1, + anon_sym_and2, + ACTIONS(6759), 1, + anon_sym_xor2, + STATE(3801), 1, sym_comment, - ACTIONS(6697), 2, + STATE(3851), 1, + aux_sym_shebang_repeat1, + ACTIONS(5324), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6687), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6703), 2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6713), 2, + ACTIONS(6697), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6705), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6701), 4, + ACTIONS(6691), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6709), 4, + ACTIONS(6695), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5320), 10, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [137155] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3757), 1, - sym_comment, - ACTIONS(1621), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - ACTIONS(1623), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [137197] = 14, + [142549] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, + ACTIONS(6711), 1, anon_sym_DASH2, - ACTIONS(6717), 1, + ACTIONS(6725), 1, anon_sym_PLUS2, - STATE(1816), 1, + ACTIONS(6729), 1, + anon_sym_bit_DASHand2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3758), 1, + STATE(3802), 1, sym_comment, - ACTIONS(6697), 2, + ACTIONS(6709), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6703), 2, + ACTIONS(6715), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6711), 2, + ACTIONS(6719), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6713), 2, + ACTIONS(6721), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(6723), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6727), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6701), 4, + ACTIONS(6713), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6709), 4, + ACTIONS(6717), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5280), 8, + ACTIONS(5302), 7, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [137259] = 11, + [142613] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, + ACTIONS(5416), 1, + sym__newline, + ACTIONS(6689), 1, anon_sym_DASH2, - ACTIONS(6717), 1, + ACTIONS(6703), 1, anon_sym_PLUS2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3759), 1, + STATE(3803), 1, sym_comment, - ACTIONS(5282), 2, + STATE(3855), 1, + aux_sym_shebang_repeat1, + ACTIONS(5326), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6703), 2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6713), 2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5280), 18, - sym__newline, + ACTIONS(5324), 19, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -354138,244 +357843,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [137315] = 12, + [142669] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, + ACTIONS(5416), 1, + sym__newline, + ACTIONS(6689), 1, anon_sym_DASH2, - ACTIONS(6717), 1, + ACTIONS(6703), 1, anon_sym_PLUS2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3760), 1, + STATE(3804), 1, sym_comment, - ACTIONS(6697), 2, + STATE(3859), 1, + aux_sym_shebang_repeat1, + ACTIONS(6687), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6703), 2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6713), 2, + ACTIONS(6697), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6705), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6709), 4, + ACTIONS(6691), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6695), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5328), 14, - sym__newline, - anon_sym_in2, + ACTIONS(5324), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [137373] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6779), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6781), 1, - sym_filesize_unit, - ACTIONS(6783), 1, - sym_duration_unit, - STATE(3761), 1, - sym_comment, - ACTIONS(6777), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6775), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [137421] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6789), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6791), 1, - sym_filesize_unit, - ACTIONS(6793), 1, - sym_duration_unit, - STATE(3762), 1, - sym_comment, - ACTIONS(6787), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6785), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [137469] = 12, + [142733] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5374), 1, + ACTIONS(5416), 1, sym__newline, - ACTIONS(6729), 1, + ACTIONS(6689), 1, anon_sym_DASH2, - ACTIONS(6737), 1, + ACTIONS(6703), 1, anon_sym_PLUS2, - STATE(3763), 1, - sym_comment, - STATE(3836), 1, + ACTIONS(6707), 1, + anon_sym_bit_DASHand2, + STATE(3802), 1, aux_sym_shebang_repeat1, - ACTIONS(5286), 2, + STATE(3805), 1, + sym_comment, + ACTIONS(6687), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6691), 2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6697), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6739), 2, + ACTIONS(6705), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5284), 17, + ACTIONS(6691), 4, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6695), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [137527] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5471), 1, - sym__newline, - ACTIONS(6729), 1, - anon_sym_DASH2, - ACTIONS(6737), 1, - anon_sym_PLUS2, - STATE(3764), 1, - sym_comment, - STATE(3822), 1, - aux_sym_shebang_repeat1, - ACTIONS(6691), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6693), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6739), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6733), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5332), 13, - anon_sym_in2, + ACTIONS(5324), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [137587] = 4, + [142799] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3765), 1, + ACTIONS(3053), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6775), 1, + sym_filesize_unit, + ACTIONS(6777), 1, + sym_duration_unit, + STATE(3806), 1, sym_comment, - ACTIONS(1607), 7, + ACTIONS(3051), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - ACTIONS(1609), 24, + ACTIONS(3049), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -354399,66 +357988,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - sym_duration_unit, - [137629] = 6, + [142847] = 17, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + ACTIONS(5416), 1, + sym__newline, + ACTIONS(6689), 1, + anon_sym_DASH2, + ACTIONS(6703), 1, + anon_sym_PLUS2, + ACTIONS(6707), 1, + anon_sym_bit_DASHand2, + ACTIONS(6733), 1, + anon_sym_bit_DASHxor2, + STATE(3732), 1, aux_sym_shebang_repeat1, - STATE(3766), 1, + STATE(3807), 1, sym_comment, - ACTIONS(6713), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5330), 5, + ACTIONS(6687), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6693), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5328), 23, - sym__newline, - anon_sym_DASH2, + ACTIONS(6697), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6699), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6701), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6705), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6691), 4, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6695), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, + ACTIONS(5324), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHor2, - [137675] = 7, + [142915] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5471), 1, + ACTIONS(5425), 1, sym__newline, - STATE(3767), 1, - sym_comment, - STATE(3823), 1, + STATE(3769), 1, aux_sym_shebang_repeat1, + STATE(3808), 1, + sym_comment, ACTIONS(6693), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5334), 5, + ACTIONS(6701), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5330), 3, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5332), 22, + ACTIONS(5328), 20, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -354474,250 +358077,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [137723] = 17, + [142967] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, + ACTIONS(5425), 1, + sym__newline, + ACTIONS(6689), 1, anon_sym_DASH2, - ACTIONS(6717), 1, + ACTIONS(6703), 1, anon_sym_PLUS2, - ACTIONS(6721), 1, - anon_sym_bit_DASHand2, - ACTIONS(6723), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6725), 1, - anon_sym_bit_DASHor2, - STATE(1816), 1, + STATE(3766), 1, aux_sym_shebang_repeat1, - STATE(3768), 1, + STATE(3809), 1, sym_comment, - ACTIONS(6697), 2, + ACTIONS(5330), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6703), 2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6711), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6713), 2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6705), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6701), 4, + ACTIONS(5328), 17, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6709), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5328), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [137791] = 18, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [143025] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5471), 1, - sym__newline, - ACTIONS(6729), 1, + ACTIONS(6711), 1, anon_sym_DASH2, - ACTIONS(6737), 1, + ACTIONS(6725), 1, anon_sym_PLUS2, - ACTIONS(6741), 1, - anon_sym_bit_DASHand2, - ACTIONS(6743), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, - anon_sym_bit_DASHor2, - STATE(3769), 1, - sym_comment, - STATE(3828), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(6691), 2, + STATE(3810), 1, + sym_comment, + ACTIONS(5320), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6715), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6721), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + ACTIONS(6723), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(6727), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6735), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6739), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5332), 4, + ACTIONS(5318), 18, + sym__newline, + anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6731), 4, - anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6733), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [137861] = 18, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6699), 1, - anon_sym_DASH2, - ACTIONS(6705), 1, - anon_sym_and2, - ACTIONS(6717), 1, - anon_sym_PLUS2, - ACTIONS(6721), 1, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, - ACTIONS(6723), 1, anon_sym_bit_DASHxor2, - ACTIONS(6725), 1, anon_sym_bit_DASHor2, - STATE(1816), 1, + [143081] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3770), 1, + STATE(3811), 1, sym_comment, - ACTIONS(6697), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6703), 2, + ACTIONS(6715), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6711), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6713), 2, + ACTIONS(6721), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(6723), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5328), 4, + ACTIONS(5320), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5318), 21, sym__newline, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6701), 4, - anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6709), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [137931] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3771), 1, - sym_comment, - ACTIONS(2375), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2377), 23, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [137973] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3772), 1, - sym_comment, - ACTIONS(2167), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2173), 23, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [138015] = 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [143131] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3773), 1, + STATE(3812), 1, sym_comment, - ACTIONS(2175), 8, + ACTIONS(2498), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -354726,7 +358229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2181), 23, + ACTIONS(2500), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -354750,77 +358253,110 @@ 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, - [138057] = 19, + [143173] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5471), 1, - sym__newline, - ACTIONS(6729), 1, + ACTIONS(6711), 1, anon_sym_DASH2, - ACTIONS(6737), 1, + ACTIONS(6725), 1, anon_sym_PLUS2, - ACTIONS(6741), 1, - anon_sym_bit_DASHand2, - ACTIONS(6743), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, - anon_sym_bit_DASHor2, - ACTIONS(6767), 1, - anon_sym_and2, - STATE(3717), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3774), 1, + STATE(3813), 1, sym_comment, - ACTIONS(6691), 2, + ACTIONS(6709), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6715), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6721), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + ACTIONS(6723), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(6727), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6735), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6739), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5332), 3, + ACTIONS(6717), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5318), 14, + sym__newline, + anon_sym_in2, anon_sym_LBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6731), 4, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [143231] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(3814), 1, + sym_comment, + ACTIONS(6721), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5320), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5318), 23, + sym__newline, + anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6733), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [138129] = 7, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [143277] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3067), 1, + ACTIONS(6783), 1, aux_sym_cmd_identifier_token41, - ACTIONS(6795), 1, + ACTIONS(6785), 1, sym_filesize_unit, - ACTIONS(6797), 1, + ACTIONS(6787), 1, sym_duration_unit, - STATE(3775), 1, + STATE(3815), 1, sym_comment, - ACTIONS(3065), 5, + ACTIONS(6781), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(3063), 23, + ACTIONS(6779), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -354844,131 +358380,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [138177] = 19, + [143325] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, + ACTIONS(6711), 1, anon_sym_DASH2, - ACTIONS(6705), 1, + ACTIONS(6725), 1, + anon_sym_PLUS2, + ACTIONS(6729), 1, + anon_sym_bit_DASHand2, + ACTIONS(6731), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6735), 1, + anon_sym_bit_DASHor2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(3816), 1, + sym_comment, + ACTIONS(6709), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6715), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6719), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6721), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6723), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6713), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6717), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5318), 5, + sym__newline, + anon_sym_LBRACE, anon_sym_and2, - ACTIONS(6707), 1, anon_sym_xor2, - ACTIONS(6717), 1, + anon_sym_or2, + [143393] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6711), 1, + anon_sym_DASH2, + ACTIONS(6725), 1, anon_sym_PLUS2, - ACTIONS(6721), 1, + ACTIONS(6729), 1, anon_sym_bit_DASHand2, - ACTIONS(6723), 1, + ACTIONS(6731), 1, anon_sym_bit_DASHxor2, - ACTIONS(6725), 1, + ACTIONS(6735), 1, anon_sym_bit_DASHor2, - STATE(1816), 1, + ACTIONS(6737), 1, + anon_sym_and2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3776), 1, + STATE(3817), 1, sym_comment, - ACTIONS(6697), 2, + ACTIONS(6709), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6703), 2, + ACTIONS(6715), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6711), 2, + ACTIONS(6719), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6713), 2, + ACTIONS(6721), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(6723), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6727), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5328), 3, + ACTIONS(5318), 4, sym__newline, anon_sym_LBRACE, + anon_sym_xor2, anon_sym_or2, - ACTIONS(6701), 4, + ACTIONS(6713), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6709), 4, + ACTIONS(6717), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [138249] = 20, + [143463] = 19, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(6729), 1, + ACTIONS(6711), 1, anon_sym_DASH2, - ACTIONS(6737), 1, + ACTIONS(6725), 1, anon_sym_PLUS2, - ACTIONS(6741), 1, + ACTIONS(6729), 1, anon_sym_bit_DASHand2, - ACTIONS(6743), 1, + ACTIONS(6731), 1, anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, + ACTIONS(6735), 1, anon_sym_bit_DASHor2, - ACTIONS(6767), 1, + ACTIONS(6737), 1, anon_sym_and2, - ACTIONS(6769), 1, + ACTIONS(6739), 1, anon_sym_xor2, - STATE(3718), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3777), 1, + STATE(3818), 1, sym_comment, - ACTIONS(5332), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(6691), 2, + ACTIONS(6709), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6715), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6719), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6721), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + ACTIONS(6723), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(6727), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6735), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6739), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6731), 4, + ACTIONS(5318), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6713), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6733), 4, + ACTIONS(6717), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [138323] = 7, + [143535] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6803), 1, + ACTIONS(3075), 1, aux_sym_cmd_identifier_token41, - ACTIONS(6805), 1, + ACTIONS(6789), 1, sym_filesize_unit, - ACTIONS(6807), 1, + ACTIONS(6791), 1, sym_duration_unit, - STATE(3778), 1, + STATE(3819), 1, + sym_comment, + ACTIONS(3073), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3071), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [143583] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6797), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6799), 1, + sym_filesize_unit, + ACTIONS(6801), 1, + sym_duration_unit, + STATE(3820), 1, sym_comment, - ACTIONS(6801), 5, + ACTIONS(6795), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6799), 23, + ACTIONS(6793), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -354992,17 +358618,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [138371] = 6, + [143631] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6809), 1, - anon_sym_DOT_DOT2, - STATE(3779), 1, + STATE(3821), 1, sym_comment, - ACTIONS(6811), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1878), 8, + ACTIONS(2422), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -355011,7 +358632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1886), 20, + ACTIONS(2424), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355024,6 +358645,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -355032,92 +358656,82 @@ 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, - [138417] = 13, + [143673] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, - anon_sym_DASH2, - ACTIONS(6717), 1, - anon_sym_PLUS2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3780), 1, + STATE(3822), 1, sym_comment, - ACTIONS(6697), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6703), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6713), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6701), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6709), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5328), 10, + ACTIONS(2426), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2428), 23, + ts_builtin_sym_end, sym__newline, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [138477] = 14, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [143715] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5471), 1, - sym__newline, - ACTIONS(6729), 1, + ACTIONS(6711), 1, anon_sym_DASH2, - ACTIONS(6737), 1, + ACTIONS(6725), 1, anon_sym_PLUS2, - STATE(3719), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3781), 1, + STATE(3823), 1, sym_comment, - ACTIONS(6691), 2, + ACTIONS(6709), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6715), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6721), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + ACTIONS(6723), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(6727), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6739), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6731), 4, + ACTIONS(6713), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6733), 4, + ACTIONS(6717), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5332), 9, + ACTIONS(5318), 10, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -355127,76 +358741,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138539] = 10, - ACTIONS(247), 1, + [143775] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6699), 1, - anon_sym_DASH2, - ACTIONS(6717), 1, - anon_sym_PLUS2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3782), 1, + ACTIONS(6807), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6809), 1, + sym_filesize_unit, + ACTIONS(6811), 1, + sym_duration_unit, + STATE(3824), 1, sym_comment, - ACTIONS(5330), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6703), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6713), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5328), 20, - sym__newline, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [138593] = 11, + ACTIONS(6805), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6803), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [143823] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5471), 1, - sym__newline, - ACTIONS(6729), 1, + ACTIONS(6711), 1, anon_sym_DASH2, - ACTIONS(6737), 1, + ACTIONS(6725), 1, anon_sym_PLUS2, - STATE(3721), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3783), 1, + STATE(3825), 1, sym_comment, - ACTIONS(5334), 2, + ACTIONS(5320), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6691), 2, + ACTIONS(6715), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6721), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + ACTIONS(6723), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5332), 19, + ACTIONS(5318), 20, + sym__newline, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -355216,141 +358826,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138649] = 11, + [143877] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, + ACTIONS(6711), 1, anon_sym_DASH2, - ACTIONS(6717), 1, + ACTIONS(6725), 1, anon_sym_PLUS2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3784), 1, + STATE(3826), 1, sym_comment, - ACTIONS(5278), 2, + ACTIONS(6709), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6703), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6713), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, ACTIONS(6715), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5276), 18, - sym__newline, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [138705] = 14, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6699), 1, - anon_sym_DASH2, - ACTIONS(6717), 1, - anon_sym_PLUS2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3785), 1, - sym_comment, - ACTIONS(6697), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6703), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6711), 2, + ACTIONS(6719), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6713), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6701), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6709), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5328), 8, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [138767] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5471), 1, - sym__newline, - ACTIONS(6729), 1, - anon_sym_DASH2, - ACTIONS(6737), 1, - anon_sym_PLUS2, - STATE(3728), 1, - aux_sym_shebang_repeat1, - STATE(3786), 1, - sym_comment, - ACTIONS(6691), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6721), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + ACTIONS(6723), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(6727), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6735), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6739), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6731), 4, + ACTIONS(6713), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6733), 4, + ACTIONS(6717), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5332), 7, + ACTIONS(5318), 8, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -355358,48 +358874,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138831] = 15, + [143939] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, + ACTIONS(6711), 1, anon_sym_DASH2, - ACTIONS(6717), 1, + ACTIONS(6725), 1, anon_sym_PLUS2, - ACTIONS(6721), 1, + ACTIONS(6729), 1, anon_sym_bit_DASHand2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3787), 1, + STATE(3827), 1, sym_comment, - ACTIONS(6697), 2, + ACTIONS(6709), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6703), 2, + ACTIONS(6715), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6711), 2, + ACTIONS(6719), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6713), 2, + ACTIONS(6721), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(6723), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6727), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6701), 4, + ACTIONS(6713), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6709), 4, + ACTIONS(6717), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5328), 7, + ACTIONS(5318), 7, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -355407,12 +358923,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138895] = 4, + [144003] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3788), 1, + STATE(3828), 1, sym_comment, - ACTIONS(2133), 8, + ACTIONS(2436), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -355421,7 +358937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2139), 23, + ACTIONS(2438), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355445,186 +358961,247 @@ 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, - [138937] = 16, + [144045] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5471), 1, - sym__newline, - ACTIONS(6729), 1, - anon_sym_DASH2, - ACTIONS(6737), 1, - anon_sym_PLUS2, - ACTIONS(6741), 1, - anon_sym_bit_DASHand2, - STATE(3729), 1, - aux_sym_shebang_repeat1, - STATE(3789), 1, + STATE(3829), 1, sym_comment, - ACTIONS(6691), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6693), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6735), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6739), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6731), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6733), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5332), 6, - anon_sym_LBRACE, + ACTIONS(2514), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2516), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [139003] = 16, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [144087] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, + ACTIONS(6711), 1, anon_sym_DASH2, - ACTIONS(6717), 1, + ACTIONS(6725), 1, anon_sym_PLUS2, - ACTIONS(6721), 1, + ACTIONS(6729), 1, anon_sym_bit_DASHand2, - ACTIONS(6723), 1, + ACTIONS(6731), 1, anon_sym_bit_DASHxor2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3790), 1, + STATE(3830), 1, sym_comment, - ACTIONS(6697), 2, + ACTIONS(6709), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6703), 2, + ACTIONS(6715), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6711), 2, + ACTIONS(6719), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6713), 2, + ACTIONS(6721), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(6723), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6727), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6701), 4, + ACTIONS(6713), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6709), 4, + ACTIONS(6717), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5328), 6, + ACTIONS(5318), 6, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [139069] = 17, + [144153] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5471), 1, - sym__newline, - ACTIONS(6729), 1, + ACTIONS(6711), 1, anon_sym_DASH2, - ACTIONS(6737), 1, + ACTIONS(6725), 1, anon_sym_PLUS2, - ACTIONS(6741), 1, - anon_sym_bit_DASHand2, - ACTIONS(6743), 1, - anon_sym_bit_DASHxor2, - STATE(3731), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3791), 1, + STATE(3831), 1, sym_comment, - ACTIONS(6691), 2, + ACTIONS(5304), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6715), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6721), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + ACTIONS(6723), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(6727), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6735), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6739), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6731), 4, + ACTIONS(5302), 18, + sym__newline, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6733), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5332), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139137] = 12, + [144209] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3832), 1, + sym_comment, + ACTIONS(1681), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1683), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [144251] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6817), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6819), 1, + sym_filesize_unit, + ACTIONS(6821), 1, + sym_duration_unit, + STATE(3833), 1, + sym_comment, + ACTIONS(6815), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6813), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [144299] = 12, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(5407), 1, sym__newline, - ACTIONS(6729), 1, + ACTIONS(6689), 1, anon_sym_DASH2, - ACTIONS(6737), 1, + ACTIONS(6703), 1, anon_sym_PLUS2, - STATE(3759), 1, + STATE(3734), 1, aux_sym_shebang_repeat1, - STATE(3792), 1, + STATE(3834), 1, sym_comment, - ACTIONS(5274), 2, + ACTIONS(5308), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6691), 2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6739), 2, + ACTIONS(6705), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5272), 17, + ACTIONS(5306), 17, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -355642,29 +359219,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139195] = 9, + [144357] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5407), 1, - sym__newline, - STATE(3793), 1, - sym_comment, - STATE(3825), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(6691), 2, + STATE(3835), 1, + sym_comment, + ACTIONS(6715), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6721), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + ACTIONS(6723), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5274), 3, + ACTIONS(5304), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5272), 20, + ACTIONS(5302), 21, + sym__newline, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -355685,40 +359261,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139247] = 13, + [144407] = 9, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(5407), 1, sym__newline, - ACTIONS(6729), 1, - anon_sym_DASH2, - ACTIONS(6737), 1, - anon_sym_PLUS2, - STATE(3794), 1, - sym_comment, - STATE(3830), 1, + STATE(3735), 1, aux_sym_shebang_repeat1, - ACTIONS(6691), 2, + STATE(3836), 1, + sym_comment, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(5308), 3, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6739), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6733), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5272), 13, + anon_sym_PLUS2, + ACTIONS(5306), 20, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -355727,123 +359293,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139307] = 15, + [144459] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5374), 1, - sym__newline, - ACTIONS(6729), 1, + ACTIONS(6711), 1, anon_sym_DASH2, - ACTIONS(6737), 1, + ACTIONS(6725), 1, anon_sym_PLUS2, - STATE(3732), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3795), 1, + STATE(3837), 1, sym_comment, - ACTIONS(6691), 2, + ACTIONS(6709), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6715), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6721), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + ACTIONS(6723), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(6727), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6735), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6739), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6731), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6733), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5284), 7, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [139371] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5422), 1, - sym__newline, - STATE(3755), 1, - aux_sym_shebang_repeat1, - STATE(3796), 1, - sym_comment, - ACTIONS(6691), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6693), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5270), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5268), 20, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, + ACTIONS(6717), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [139423] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(5302), 14, sym__newline, - STATE(3715), 1, - aux_sym_shebang_repeat1, - STATE(3797), 1, - sym_comment, - ACTIONS(6693), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5274), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5272), 22, - anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -355852,25 +359345,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139471] = 4, + [144517] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3798), 1, + STATE(3838), 1, sym_comment, - ACTIONS(2472), 8, + ACTIONS(2351), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -355879,7 +359364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2474), 23, + ACTIONS(2353), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355903,450 +359388,282 @@ 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, - [139513] = 18, + [144559] = 13, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(5407), 1, sym__newline, - ACTIONS(6729), 1, + ACTIONS(6689), 1, anon_sym_DASH2, - ACTIONS(6737), 1, + ACTIONS(6703), 1, anon_sym_PLUS2, - ACTIONS(6741), 1, - anon_sym_bit_DASHand2, - ACTIONS(6743), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, - anon_sym_bit_DASHor2, - STATE(3722), 1, + STATE(3736), 1, aux_sym_shebang_repeat1, - STATE(3799), 1, + STATE(3839), 1, sym_comment, - ACTIONS(6691), 2, + ACTIONS(6687), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6735), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6739), 2, + ACTIONS(6705), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5272), 4, + ACTIONS(6695), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5306), 13, + anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6731), 4, - anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6733), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [139583] = 15, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [144619] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, - anon_sym_DASH2, - ACTIONS(6717), 1, - anon_sym_PLUS2, - ACTIONS(6721), 1, - anon_sym_bit_DASHand2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3800), 1, + STATE(3840), 1, sym_comment, - ACTIONS(6697), 2, + ACTIONS(6721), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5304), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6703), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6711), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6713), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6701), 4, + anon_sym_PLUS2, + ACTIONS(5302), 23, + sym__newline, + anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6709), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5280), 7, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139647] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3801), 1, - sym_comment, - ACTIONS(2476), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2478), 23, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [139689] = 19, + [144665] = 7, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(5407), 1, sym__newline, - ACTIONS(6729), 1, - anon_sym_DASH2, - ACTIONS(6737), 1, - anon_sym_PLUS2, - ACTIONS(6741), 1, - anon_sym_bit_DASHand2, - ACTIONS(6743), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, - anon_sym_bit_DASHor2, - ACTIONS(6767), 1, - anon_sym_and2, - STATE(3733), 1, + STATE(3737), 1, aux_sym_shebang_repeat1, - STATE(3802), 1, + STATE(3841), 1, sym_comment, - ACTIONS(6691), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(5308), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(6735), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6739), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5272), 3, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5306), 22, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6731), 4, - anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6733), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [139761] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5374), 1, - sym__newline, - ACTIONS(6729), 1, - anon_sym_DASH2, - ACTIONS(6737), 1, - anon_sym_PLUS2, - ACTIONS(6741), 1, - anon_sym_bit_DASHand2, - STATE(3803), 1, - sym_comment, - STATE(3806), 1, - aux_sym_shebang_repeat1, - ACTIONS(6691), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6693), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6735), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6739), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6731), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6733), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5284), 6, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139827] = 20, + [144713] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(6729), 1, + ACTIONS(6711), 1, anon_sym_DASH2, - ACTIONS(6737), 1, + ACTIONS(6725), 1, anon_sym_PLUS2, - ACTIONS(6741), 1, + ACTIONS(6729), 1, anon_sym_bit_DASHand2, - ACTIONS(6743), 1, + ACTIONS(6731), 1, anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, + ACTIONS(6735), 1, anon_sym_bit_DASHor2, - ACTIONS(6767), 1, - anon_sym_and2, - ACTIONS(6769), 1, - anon_sym_xor2, - STATE(3736), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3804), 1, + STATE(3842), 1, sym_comment, - ACTIONS(5272), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(6691), 2, + ACTIONS(6709), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6715), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6719), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6721), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + ACTIONS(6723), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(6727), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6735), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6739), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6731), 4, + ACTIONS(6713), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6733), 4, + ACTIONS(6717), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [139901] = 14, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(5302), 5, sym__newline, - ACTIONS(6729), 1, - anon_sym_DASH2, - ACTIONS(6737), 1, - anon_sym_PLUS2, - STATE(3746), 1, - aux_sym_shebang_repeat1, - STATE(3805), 1, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [144781] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2240), 1, + anon_sym_LPAREN2, + ACTIONS(2244), 1, + aux_sym_unquoted_token4, + STATE(3843), 1, sym_comment, - ACTIONS(6691), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6693), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(2238), 29, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6739), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6731), 4, + anon_sym_DASH2, anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6733), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5272), 9, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [139963] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6699), 1, - anon_sym_DASH2, - ACTIONS(6717), 1, - anon_sym_PLUS2, - ACTIONS(6721), 1, - anon_sym_bit_DASHand2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3806), 1, - sym_comment, - ACTIONS(6697), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6703), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6711), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6713), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6701), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6709), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5320), 7, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140027] = 11, + [144825] = 18, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(5407), 1, sym__newline, - ACTIONS(6729), 1, + ACTIONS(6689), 1, anon_sym_DASH2, - ACTIONS(6737), 1, + ACTIONS(6703), 1, anon_sym_PLUS2, - STATE(3752), 1, + ACTIONS(6707), 1, + anon_sym_bit_DASHand2, + ACTIONS(6733), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6741), 1, + anon_sym_bit_DASHor2, + STATE(3738), 1, aux_sym_shebang_repeat1, - STATE(3807), 1, + STATE(3844), 1, sym_comment, - ACTIONS(5274), 2, + ACTIONS(6687), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6691), 2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6697), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5272), 19, - anon_sym_in2, + ACTIONS(6705), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5306), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(6691), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6695), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [140083] = 4, + [144895] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3808), 1, + STATE(3845), 1, sym_comment, - ACTIONS(2441), 8, + ACTIONS(2355), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -356355,7 +359672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2443), 23, + ACTIONS(2357), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -356379,266 +359696,156 @@ 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, - [140125] = 16, + [144937] = 18, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, + ACTIONS(6711), 1, anon_sym_DASH2, - ACTIONS(6717), 1, + ACTIONS(6725), 1, anon_sym_PLUS2, - ACTIONS(6721), 1, + ACTIONS(6729), 1, anon_sym_bit_DASHand2, - ACTIONS(6723), 1, + ACTIONS(6731), 1, anon_sym_bit_DASHxor2, - STATE(1816), 1, + ACTIONS(6735), 1, + anon_sym_bit_DASHor2, + ACTIONS(6737), 1, + anon_sym_and2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3809), 1, + STATE(3846), 1, sym_comment, - ACTIONS(6697), 2, + ACTIONS(6709), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6703), 2, + ACTIONS(6715), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6711), 2, + ACTIONS(6719), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6713), 2, + ACTIONS(6721), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(6723), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6727), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6701), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6709), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5280), 6, + ACTIONS(5302), 4, sym__newline, anon_sym_LBRACE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - [140191] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5407), 1, - sym__newline, - ACTIONS(6729), 1, - anon_sym_DASH2, - ACTIONS(6737), 1, - anon_sym_PLUS2, - STATE(3758), 1, - aux_sym_shebang_repeat1, - STATE(3810), 1, - sym_comment, - ACTIONS(6691), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6693), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6735), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6739), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6731), 4, + ACTIONS(6713), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6733), 4, + ACTIONS(6717), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5272), 7, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [140255] = 17, + [145007] = 19, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5374), 1, + ACTIONS(5407), 1, sym__newline, - ACTIONS(6729), 1, + ACTIONS(6689), 1, anon_sym_DASH2, - ACTIONS(6737), 1, + ACTIONS(6703), 1, anon_sym_PLUS2, - ACTIONS(6741), 1, + ACTIONS(6707), 1, anon_sym_bit_DASHand2, - ACTIONS(6743), 1, + ACTIONS(6733), 1, anon_sym_bit_DASHxor2, - STATE(3811), 1, - sym_comment, - STATE(3826), 1, + ACTIONS(6741), 1, + anon_sym_bit_DASHor2, + ACTIONS(6757), 1, + anon_sym_and2, + STATE(3739), 1, aux_sym_shebang_repeat1, - ACTIONS(6691), 2, + STATE(3847), 1, + sym_comment, + ACTIONS(6687), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6697), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6735), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6739), 2, + ACTIONS(6705), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6731), 4, + ACTIONS(5306), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6691), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6733), 4, + ACTIONS(6695), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5284), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [140323] = 16, - ACTIONS(247), 1, + [145079] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5407), 1, - sym__newline, - ACTIONS(6729), 1, - anon_sym_DASH2, - ACTIONS(6737), 1, - anon_sym_PLUS2, - ACTIONS(6741), 1, - anon_sym_bit_DASHand2, - STATE(3800), 1, - aux_sym_shebang_repeat1, - STATE(3812), 1, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + STATE(3848), 1, sym_comment, - ACTIONS(6691), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6693), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(2246), 29, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6735), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6739), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6731), 4, + anon_sym_DASH2, anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6733), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5272), 6, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [140389] = 20, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(6729), 1, - anon_sym_DASH2, - ACTIONS(6737), 1, - anon_sym_PLUS2, - ACTIONS(6741), 1, - anon_sym_bit_DASHand2, - ACTIONS(6743), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, - anon_sym_bit_DASHor2, - ACTIONS(6767), 1, - anon_sym_and2, - ACTIONS(6769), 1, - anon_sym_xor2, - STATE(3776), 1, - aux_sym_shebang_repeat1, - STATE(3813), 1, - sym_comment, - ACTIONS(5268), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(6691), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6693), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6735), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6739), 2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6731), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6733), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [140463] = 4, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [145123] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3814), 1, + STATE(3849), 1, sym_comment, - ACTIONS(2391), 8, + ACTIONS(2122), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -356647,7 +359854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2393), 23, + ACTIONS(2128), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -356671,12 +359878,12 @@ 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, - [140505] = 4, + [145165] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3815), 1, + STATE(3850), 1, sym_comment, - ACTIONS(2413), 8, + ACTIONS(2359), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -356685,7 +359892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2415), 23, + ACTIONS(2361), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -356709,257 +359916,151 @@ 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, - [140547] = 8, + [145207] = 19, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + ACTIONS(6711), 1, + anon_sym_DASH2, + ACTIONS(6725), 1, + anon_sym_PLUS2, + ACTIONS(6729), 1, + anon_sym_bit_DASHand2, + ACTIONS(6731), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6735), 1, + anon_sym_bit_DASHor2, + ACTIONS(6737), 1, + anon_sym_and2, + ACTIONS(6739), 1, + anon_sym_xor2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3816), 1, + STATE(3851), 1, sym_comment, - ACTIONS(6703), 2, + ACTIONS(6709), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6715), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6713), 2, + ACTIONS(6719), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6721), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(6723), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5278), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5276), 21, + ACTIONS(6727), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5302), 3, sym__newline, - anon_sym_DASH2, - anon_sym_in2, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, + ACTIONS(6713), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6717), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [140597] = 17, + [145279] = 20, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5407), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(6729), 1, + ACTIONS(6689), 1, anon_sym_DASH2, - ACTIONS(6737), 1, + ACTIONS(6703), 1, anon_sym_PLUS2, - ACTIONS(6741), 1, + ACTIONS(6707), 1, anon_sym_bit_DASHand2, - ACTIONS(6743), 1, + ACTIONS(6733), 1, anon_sym_bit_DASHxor2, - STATE(3809), 1, + ACTIONS(6741), 1, + anon_sym_bit_DASHor2, + ACTIONS(6757), 1, + anon_sym_and2, + ACTIONS(6759), 1, + anon_sym_xor2, + STATE(3740), 1, aux_sym_shebang_repeat1, - STATE(3817), 1, + STATE(3852), 1, sym_comment, - ACTIONS(6691), 2, + ACTIONS(5306), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6687), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6697), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6735), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6739), 2, + ACTIONS(6705), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6731), 4, + ACTIONS(6691), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6733), 4, + ACTIONS(6695), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5272), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [140665] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3818), 1, - sym_comment, - ACTIONS(2371), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2373), 23, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [140707] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6817), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6819), 1, - sym_filesize_unit, - ACTIONS(6821), 1, - sym_duration_unit, - STATE(3819), 1, - sym_comment, - ACTIONS(6815), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6813), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [140755] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6823), 1, - anon_sym_DOT_DOT2, - STATE(3820), 1, - sym_comment, - ACTIONS(6825), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1866), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1874), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [140801] = 14, + [145353] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5422), 1, - sym__newline, - ACTIONS(6729), 1, + ACTIONS(6711), 1, anon_sym_DASH2, - ACTIONS(6737), 1, + ACTIONS(6725), 1, anon_sym_PLUS2, - STATE(3780), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3821), 1, + STATE(3853), 1, sym_comment, - ACTIONS(6691), 2, + ACTIONS(6709), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6715), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6721), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + ACTIONS(6723), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, ACTIONS(6727), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6739), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6731), 4, + ACTIONS(6713), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6733), 4, + ACTIONS(6717), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5268), 9, + ACTIONS(5302), 10, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -356969,71 +360070,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140863] = 12, + [145413] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, + ACTIONS(5407), 1, + sym__newline, + ACTIONS(6689), 1, anon_sym_DASH2, - ACTIONS(6717), 1, + ACTIONS(6703), 1, anon_sym_PLUS2, - STATE(1816), 1, + STATE(3741), 1, aux_sym_shebang_repeat1, - STATE(3822), 1, + STATE(3854), 1, sym_comment, - ACTIONS(6697), 2, + ACTIONS(6687), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6703), 2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6713), 2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6705), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6709), 4, + ACTIONS(6691), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6695), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5276), 14, - sym__newline, - anon_sym_in2, + ACTIONS(5306), 9, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140921] = 6, + [145475] = 10, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + ACTIONS(6711), 1, + anon_sym_DASH2, + ACTIONS(6725), 1, + anon_sym_PLUS2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3823), 1, + STATE(3855), 1, sym_comment, - ACTIONS(6713), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5278), 5, + ACTIONS(5304), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6715), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5276), 23, + ACTIONS(6721), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6723), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5302), 20, sym__newline, - anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -357048,19 +360157,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140967] = 4, + [145529] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3824), 1, + STATE(3856), 1, sym_comment, - ACTIONS(2425), 8, + ACTIONS(2363), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -357069,7 +360176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2427), 23, + ACTIONS(2365), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -357093,29 +360200,32 @@ 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, - [141009] = 8, + [145571] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + ACTIONS(5407), 1, + sym__newline, + ACTIONS(6689), 1, + anon_sym_DASH2, + ACTIONS(6703), 1, + anon_sym_PLUS2, + STATE(3742), 1, aux_sym_shebang_repeat1, - STATE(3825), 1, + STATE(3857), 1, sym_comment, - ACTIONS(6703), 2, + ACTIONS(5308), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6713), 2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5282), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5280), 21, - sym__newline, - anon_sym_DASH2, + ACTIONS(5306), 19, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -357135,504 +360245,435 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [141059] = 16, + [145627] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3858), 1, + sym_comment, + ACTIONS(2383), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2385), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [145669] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, + ACTIONS(6711), 1, anon_sym_DASH2, - ACTIONS(6717), 1, + ACTIONS(6725), 1, anon_sym_PLUS2, - ACTIONS(6721), 1, - anon_sym_bit_DASHand2, - ACTIONS(6723), 1, - anon_sym_bit_DASHxor2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(3826), 1, + STATE(3859), 1, sym_comment, - ACTIONS(6697), 2, + ACTIONS(6709), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6703), 2, + ACTIONS(6715), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6711), 2, + ACTIONS(6719), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6713), 2, + ACTIONS(6721), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(6723), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6727), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6701), 4, + ACTIONS(6713), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6709), 4, + ACTIONS(6717), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5320), 6, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [141125] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4864), 1, - aux_sym_unquoted_token2, - STATE(3827), 1, - sym_comment, - ACTIONS(1709), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1721), 25, + ACTIONS(5302), 8, sym__newline, - anon_sym_DASH2, - anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [141169] = 17, + [145731] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, + ACTIONS(5407), 1, + sym__newline, + ACTIONS(6689), 1, anon_sym_DASH2, - ACTIONS(6717), 1, + ACTIONS(6703), 1, anon_sym_PLUS2, - ACTIONS(6721), 1, - anon_sym_bit_DASHand2, - ACTIONS(6723), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6725), 1, - anon_sym_bit_DASHor2, - STATE(1816), 1, + STATE(3743), 1, aux_sym_shebang_repeat1, - STATE(3828), 1, + STATE(3860), 1, sym_comment, - ACTIONS(6697), 2, + ACTIONS(6687), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6703), 2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6711), 2, + ACTIONS(6697), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6713), 2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6705), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6701), 4, + ACTIONS(6691), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6709), 4, + ACTIONS(6695), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5276), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [141237] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5374), 1, - sym__newline, - STATE(3829), 1, - sym_comment, - STATE(3837), 1, - aux_sym_shebang_repeat1, - ACTIONS(6691), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6693), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5286), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5284), 20, - anon_sym_DASH2, - anon_sym_in2, + ACTIONS(5306), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [141289] = 12, + [145795] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, + ACTIONS(5416), 1, + sym__newline, + ACTIONS(6689), 1, anon_sym_DASH2, - ACTIONS(6717), 1, + ACTIONS(6703), 1, anon_sym_PLUS2, - STATE(1816), 1, + STATE(3853), 1, aux_sym_shebang_repeat1, - STATE(3830), 1, + STATE(3861), 1, sym_comment, - ACTIONS(6697), 2, + ACTIONS(6687), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6703), 2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6713), 2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6705), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6709), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5280), 14, - sym__newline, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [141347] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2208), 1, - anon_sym_LPAREN2, - ACTIONS(2212), 1, - aux_sym_unquoted_token4, - STATE(3831), 1, - sym_comment, - ACTIONS(2206), 29, - anon_sym_GT2, - anon_sym_DASH2, + ACTIONS(6691), 4, anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [141391] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5374), 1, - sym__newline, - ACTIONS(6729), 1, - anon_sym_DASH2, - ACTIONS(6737), 1, - anon_sym_PLUS2, - STATE(3832), 1, - sym_comment, - STATE(3838), 1, - aux_sym_shebang_repeat1, - ACTIONS(6691), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6693), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6739), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6733), 4, + ACTIONS(6695), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5284), 13, - anon_sym_in2, + ACTIONS(5324), 9, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [141451] = 5, + [145857] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6458), 1, - aux_sym_unquoted_token2, - STATE(3833), 1, - sym_comment, - ACTIONS(1709), 6, - anon_sym_GT2, + ACTIONS(385), 1, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1721), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [141495] = 4, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6663), 1, + sym_identifier, + ACTIONS(6665), 1, + sym__newline, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6669), 1, + anon_sym_DOLLAR, + ACTIONS(6673), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6675), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token4, + STATE(1729), 1, + sym__val_number, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(3862), 1, + sym_comment, + STATE(3922), 1, + aux_sym_shebang_repeat1, + STATE(3977), 1, + sym_expr_parenthesized, + STATE(4297), 1, + sym_val_number, + STATE(4470), 1, + sym__binary_predicate_parenthesized, + STATE(4481), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4401), 2, + sym_expr_unary, + sym_val_bool, + STATE(5176), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [145940] = 25, ACTIONS(247), 1, anon_sym_POUND, - STATE(3834), 1, - sym_comment, - ACTIONS(2421), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2423), 23, - ts_builtin_sym_end, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6663), 1, + sym_identifier, + ACTIONS(6665), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [141537] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3835), 1, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6669), 1, + anon_sym_DOLLAR, + ACTIONS(6673), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6675), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token4, + STATE(1729), 1, + sym__val_number, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(3863), 1, sym_comment, - ACTIONS(1763), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - ACTIONS(1765), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [141579] = 11, + STATE(3911), 1, + aux_sym_shebang_repeat1, + STATE(3977), 1, + sym_expr_parenthesized, + STATE(4297), 1, + sym_val_number, + STATE(4439), 1, + sym__binary_predicate_parenthesized, + STATE(4440), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4401), 2, + sym_expr_unary, + sym_val_bool, + STATE(5176), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [146023] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, + ACTIONS(385), 1, anon_sym_DASH2, - ACTIONS(6717), 1, - anon_sym_PLUS2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3836), 1, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6663), 1, + sym_identifier, + ACTIONS(6665), 1, + sym__newline, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6669), 1, + anon_sym_DOLLAR, + ACTIONS(6673), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6675), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token4, + STATE(1729), 1, + sym__val_number, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(3864), 1, sym_comment, - ACTIONS(5322), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6703), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6713), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5320), 18, + STATE(3912), 1, + aux_sym_shebang_repeat1, + STATE(3977), 1, + sym_expr_parenthesized, + STATE(4297), 1, + sym_val_number, + STATE(4441), 1, + sym__binary_predicate_parenthesized, + STATE(4442), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4401), 2, + sym_expr_unary, + sym_val_bool, + STATE(5176), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [146106] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6663), 1, + sym_identifier, + ACTIONS(6665), 1, sym__newline, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [141635] = 8, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6669), 1, + anon_sym_DOLLAR, + ACTIONS(6673), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6675), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token4, + STATE(1729), 1, + sym__val_number, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(3865), 1, + sym_comment, + STATE(3884), 1, + aux_sym_shebang_repeat1, + STATE(3977), 1, + sym_expr_parenthesized, + STATE(4297), 1, + sym_val_number, + STATE(4517), 1, + sym__binary_predicate_parenthesized, + STATE(4520), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4401), 2, + sym_expr_unary, + sym_val_bool, + STATE(5176), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [146189] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3837), 1, + STATE(3866), 1, sym_comment, - ACTIONS(6703), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6713), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5322), 3, + ACTIONS(5243), 6, anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5320), 21, - sym__newline, - anon_sym_DASH2, + ACTIONS(5241), 24, + anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -357647,76 +360688,334 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [141685] = 12, + [146230] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3867), 1, + sym_comment, + STATE(4916), 1, + sym_redirection, + ACTIONS(6825), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(6827), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(6823), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [146275] = 20, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(5337), 1, anon_sym_DASH2, - ACTIONS(6717), 1, + ACTIONS(5351), 1, anon_sym_PLUS2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3838), 1, + ACTIONS(5355), 1, + anon_sym_bit_DASHand2, + ACTIONS(5357), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5359), 1, + anon_sym_bit_DASHor2, + ACTIONS(5428), 1, + anon_sym_and2, + ACTIONS(5448), 1, + anon_sym_xor2, + ACTIONS(6829), 1, + anon_sym_or2, + STATE(3868), 1, sym_comment, - ACTIONS(6697), 2, + STATE(3906), 1, + aux_sym_shebang_repeat1, + ACTIONS(5335), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6703), 2, + ACTIONS(5341), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6713), 2, + ACTIONS(5345), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5347), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(5349), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, + ACTIONS(5353), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6709), 4, + ACTIONS(5339), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5343), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5320), 14, + [146348] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6663), 1, + sym_identifier, + ACTIONS(6665), 1, sym__newline, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [141743] = 6, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6669), 1, + anon_sym_DOLLAR, + ACTIONS(6673), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6675), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token4, + STATE(1729), 1, + sym__val_number, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(3869), 1, + sym_comment, + STATE(3977), 1, + sym_expr_parenthesized, + STATE(4049), 1, + aux_sym_shebang_repeat1, + STATE(4297), 1, + sym_val_number, + STATE(4445), 1, + sym__binary_predicate_parenthesized, + STATE(4446), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4401), 2, + sym_expr_unary, + sym_val_bool, + STATE(5176), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [146431] = 25, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6663), 1, + sym_identifier, + ACTIONS(6665), 1, + sym__newline, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6669), 1, + anon_sym_DOLLAR, + ACTIONS(6673), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6675), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token4, + STATE(1729), 1, + sym__val_number, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(3870), 1, + sym_comment, + STATE(3977), 1, + sym_expr_parenthesized, + STATE(4049), 1, aux_sym_shebang_repeat1, - STATE(3839), 1, + STATE(4297), 1, + sym_val_number, + STATE(4451), 1, + sym__binary_predicate_parenthesized, + STATE(4452), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4401), 2, + sym_expr_unary, + sym_val_bool, + STATE(5176), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [146514] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3871), 1, sym_comment, - ACTIONS(6713), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5322), 5, + STATE(4804), 1, + sym_redirection, + ACTIONS(6825), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(6827), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(6831), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [146559] = 25, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6663), 1, + sym_identifier, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6669), 1, + anon_sym_DOLLAR, + ACTIONS(6671), 1, + anon_sym_LBRACE, + ACTIONS(6673), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6675), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token4, + STATE(1729), 1, + sym__val_number, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(3872), 1, + sym_comment, + STATE(3977), 1, + sym_expr_parenthesized, + STATE(4297), 1, + sym_val_number, + STATE(4398), 1, + sym__binary_predicate, + STATE(4400), 1, + sym__predicate, + STATE(4948), 1, + sym_val_closure, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4401), 2, + sym_expr_unary, + sym_val_bool, + STATE(5176), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [146642] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3873), 1, + sym_comment, + ACTIONS(2246), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5320), 23, - sym__newline, - anon_sym_DASH2, + ACTIONS(2250), 24, + anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -357731,6 +361030,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -357738,83 +361039,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [141789] = 17, + [146683] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, - anon_sym_DASH2, - ACTIONS(6717), 1, - anon_sym_PLUS2, - ACTIONS(6721), 1, - anon_sym_bit_DASHand2, - ACTIONS(6723), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6725), 1, - anon_sym_bit_DASHor2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3840), 1, + STATE(3874), 1, sym_comment, - ACTIONS(6697), 2, + ACTIONS(2254), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6703), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6711), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6713), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6701), 4, + anon_sym_PLUS2, + ACTIONS(2256), 24, + anon_sym_DASH_DASH, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6709), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5320), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [141857] = 11, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [146724] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5422), 1, - sym__newline, - ACTIONS(6729), 1, - anon_sym_DASH2, - ACTIONS(6737), 1, - anon_sym_PLUS2, - STATE(3782), 1, - aux_sym_shebang_repeat1, - STATE(3841), 1, + STATE(3875), 1, sym_comment, - ACTIONS(5270), 2, + ACTIONS(5208), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6691), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6693), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5268), 19, + anon_sym_PLUS2, + ACTIONS(5210), 24, + anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -357829,121 +361104,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [141913] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3842), 1, - sym_comment, - ACTIONS(1673), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - ACTIONS(1675), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [141955] = 18, + [146765] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6699), 1, - anon_sym_DASH2, - ACTIONS(6705), 1, - anon_sym_and2, - ACTIONS(6717), 1, - anon_sym_PLUS2, - ACTIONS(6721), 1, - anon_sym_bit_DASHand2, - ACTIONS(6723), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6725), 1, - anon_sym_bit_DASHor2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3843), 1, + STATE(3876), 1, sym_comment, - ACTIONS(6697), 2, + ACTIONS(5239), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6703), 2, + ACTIONS(6833), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6835), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6711), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6713), 2, + ACTIONS(6837), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(6839), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6841), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5320), 4, - sym__newline, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6701), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6709), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [142025] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5422), 1, - sym__newline, - STATE(3766), 1, - aux_sym_shebang_repeat1, - STATE(3844), 1, - sym_comment, - ACTIONS(6693), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5270), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5268), 22, - anon_sym_DASH2, + ACTIONS(5237), 18, + anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -357958,26 +361152,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142073] = 4, + [146816] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3845), 1, + STATE(3877), 1, sym_comment, - ACTIONS(5222), 6, + ACTIONS(5180), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5224), 24, + ACTIONS(5178), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -358002,19 +361192,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142114] = 4, + [146857] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(3846), 1, + STATE(3878), 1, sym_comment, - ACTIONS(5239), 6, + ACTIONS(6835), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6837), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6839), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5239), 4, anon_sym_GT2, anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5237), 24, + ACTIONS(5237), 20, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -358030,31 +361227,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142155] = 4, + [146904] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3847), 1, + ACTIONS(4866), 1, + aux_sym_unquoted_token2, + STATE(3879), 1, sym_comment, - ACTIONS(5188), 6, + ACTIONS(1707), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5186), 24, - anon_sym_DASH_DASH, + ACTIONS(1719), 24, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -358076,77 +361270,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142196] = 25, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3495), 1, - aux_sym_expr_unary_token1, - ACTIONS(6667), 1, - sym_identifier, - ACTIONS(6669), 1, - sym__newline, - ACTIONS(6671), 1, - anon_sym_LPAREN, - ACTIONS(6673), 1, - anon_sym_DOLLAR, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, - aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, - sym__val_number, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(3848), 1, - sym_comment, - STATE(3968), 1, - sym_expr_parenthesized, - STATE(4026), 1, - aux_sym_shebang_repeat1, - STATE(4294), 1, - sym_val_number, - STATE(4439), 1, - sym__binary_predicate_parenthesized, - STATE(4440), 1, - sym__predicate, - ACTIONS(213), 2, - anon_sym_true, - anon_sym_false, - STATE(4502), 2, - sym_expr_unary, - sym_val_bool, - STATE(5016), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [142279] = 4, + [146947] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3849), 1, + STATE(3880), 1, sym_comment, - ACTIONS(2214), 6, + ACTIONS(5180), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2218), 24, + ACTIONS(5178), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -358171,19 +361307,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142320] = 4, + [146988] = 10, ACTIONS(247), 1, anon_sym_POUND, - STATE(3850), 1, + STATE(3881), 1, sym_comment, - ACTIONS(5258), 6, - anon_sym_GT2, + ACTIONS(6833), 2, anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6835), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5256), 24, + ACTIONS(6837), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6839), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6841), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6843), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6845), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5237), 14, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -358193,120 +361345,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142361] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3851), 1, - sym_comment, - STATE(4865), 1, - sym_redirection, - ACTIONS(6829), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(6831), 8, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(6827), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [142406] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3852), 1, - sym_comment, - STATE(4783), 1, - sym_redirection, - ACTIONS(6829), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(6831), 8, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(6833), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [142451] = 8, + [147041] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3853), 1, + STATE(3882), 1, sym_comment, - ACTIONS(5239), 2, + ACTIONS(5180), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6835), 2, anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6837), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6839), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6841), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5237), 20, + anon_sym_PLUS2, + ACTIONS(5178), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -358322,24 +361378,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142500] = 4, + [147082] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3854), 1, + STATE(3883), 1, sym_comment, - ACTIONS(5188), 6, + ACTIONS(6837), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5239), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5186), 24, + ACTIONS(5237), 22, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -358355,8 +361418,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -358364,7 +361425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142541] = 25, + [147125] = 25, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(385), 1, @@ -358373,47 +361434,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token5, ACTIONS(3495), 1, aux_sym_expr_unary_token1, - ACTIONS(6667), 1, + ACTIONS(6663), 1, sym_identifier, - ACTIONS(6669), 1, + ACTIONS(6665), 1, sym__newline, - ACTIONS(6671), 1, + ACTIONS(6667), 1, anon_sym_LPAREN, - ACTIONS(6673), 1, + ACTIONS(6669), 1, anon_sym_DOLLAR, - ACTIONS(6677), 1, + ACTIONS(6673), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, + ACTIONS(6675), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, + ACTIONS(6677), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, + ACTIONS(6679), 1, aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, + STATE(1729), 1, sym__val_number, - STATE(2145), 1, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2131), 1, sym__expr_unary_minus, - STATE(3855), 1, + STATE(3884), 1, sym_comment, - STATE(3968), 1, + STATE(3977), 1, sym_expr_parenthesized, - STATE(4026), 1, + STATE(4049), 1, aux_sym_shebang_repeat1, - STATE(4294), 1, + STATE(4297), 1, sym_val_number, - STATE(4443), 1, + STATE(4457), 1, sym__binary_predicate_parenthesized, - STATE(4444), 1, + STATE(4458), 1, sym__predicate, ACTIONS(213), 2, anon_sym_true, anon_sym_false, - STATE(4502), 2, + STATE(4401), 2, sym_expr_unary, sym_val_bool, - STATE(5016), 2, + STATE(5176), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(429), 5, @@ -358422,19 +361483,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [142624] = 4, + [147208] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3856), 1, + STATE(3885), 1, sym_comment, - ACTIONS(5243), 6, + ACTIONS(5180), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5241), 24, + ACTIONS(5178), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -358459,19 +361520,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142665] = 4, + [147249] = 15, ACTIONS(247), 1, anon_sym_POUND, - STATE(3857), 1, + ACTIONS(6851), 1, + anon_sym_bit_DASHand2, + ACTIONS(6853), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6855), 1, + anon_sym_bit_DASHor2, + STATE(3886), 1, + sym_comment, + ACTIONS(6833), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6835), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6837), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6839), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6841), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6843), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6849), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6845), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6847), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5237), 5, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [147312] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3887), 1, sym_comment, - ACTIONS(5188), 6, + ACTIONS(5180), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5186), 24, + ACTIONS(5178), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -358496,188 +361605,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142706] = 25, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3495), 1, - aux_sym_expr_unary_token1, - ACTIONS(6667), 1, - sym_identifier, - ACTIONS(6669), 1, - sym__newline, - ACTIONS(6671), 1, - anon_sym_LPAREN, - ACTIONS(6673), 1, - anon_sym_DOLLAR, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, - aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, - sym__val_number, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(3858), 1, - sym_comment, - STATE(3968), 1, - sym_expr_parenthesized, - STATE(4026), 1, - aux_sym_shebang_repeat1, - STATE(4294), 1, - sym_val_number, - STATE(4332), 1, - sym__binary_predicate_parenthesized, - STATE(4333), 1, - sym__predicate, - ACTIONS(213), 2, - anon_sym_true, - anon_sym_false, - STATE(4502), 2, - sym_expr_unary, - sym_val_bool, - STATE(5016), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [142789] = 25, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3495), 1, - aux_sym_expr_unary_token1, - ACTIONS(6667), 1, - sym_identifier, - ACTIONS(6669), 1, - sym__newline, - ACTIONS(6671), 1, - anon_sym_LPAREN, - ACTIONS(6673), 1, - anon_sym_DOLLAR, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, - aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, - sym__val_number, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(3859), 1, - sym_comment, - STATE(3885), 1, - aux_sym_shebang_repeat1, - STATE(3968), 1, - sym_expr_parenthesized, - STATE(4294), 1, - sym_val_number, - STATE(4472), 1, - sym__binary_predicate_parenthesized, - STATE(4473), 1, - sym__predicate, - ACTIONS(213), 2, - anon_sym_true, - anon_sym_false, - STATE(4502), 2, - sym_expr_unary, - sym_val_bool, - STATE(5016), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [142872] = 20, + [147353] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(6237), 1, - anon_sym_DASH2, - ACTIONS(6245), 1, - anon_sym_PLUS2, - ACTIONS(6257), 1, + ACTIONS(6851), 1, anon_sym_bit_DASHand2, - ACTIONS(6259), 1, + ACTIONS(6853), 1, anon_sym_bit_DASHxor2, - ACTIONS(6261), 1, + ACTIONS(6855), 1, anon_sym_bit_DASHor2, - ACTIONS(6263), 1, + ACTIONS(6857), 1, anon_sym_and2, - ACTIONS(6265), 1, - anon_sym_xor2, - ACTIONS(6843), 1, - anon_sym_or2, - STATE(3860), 1, + STATE(3888), 1, sym_comment, - STATE(3863), 1, - aux_sym_shebang_repeat1, - ACTIONS(6239), 2, + ACTIONS(6833), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6835), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6241), 2, + ACTIONS(6837), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6243), 2, + ACTIONS(6839), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6247), 2, + ACTIONS(6841), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6249), 2, + ACTIONS(6843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6255), 2, + ACTIONS(6849), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6251), 4, + ACTIONS(5237), 4, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6845), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6253), 4, + ACTIONS(6847), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [142945] = 4, + [147418] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3861), 1, + STATE(3889), 1, sym_comment, - ACTIONS(2248), 6, + ACTIONS(2238), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2250), 24, + ACTIONS(2242), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -358702,19 +361691,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142986] = 4, + [147459] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3862), 1, + STATE(3890), 1, sym_comment, - ACTIONS(2222), 6, + ACTIONS(5180), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2224), 24, + ACTIONS(5178), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -358739,109 +361728,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [143027] = 20, + [147500] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(6269), 1, - anon_sym_DASH2, - ACTIONS(6277), 1, - anon_sym_PLUS2, - ACTIONS(6289), 1, + ACTIONS(6851), 1, anon_sym_bit_DASHand2, - ACTIONS(6291), 1, + ACTIONS(6853), 1, anon_sym_bit_DASHxor2, - ACTIONS(6293), 1, + ACTIONS(6855), 1, anon_sym_bit_DASHor2, - ACTIONS(6295), 1, + ACTIONS(6857), 1, anon_sym_and2, - ACTIONS(6297), 1, + ACTIONS(6859), 1, anon_sym_xor2, - ACTIONS(6845), 1, - anon_sym_or2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3863), 1, + STATE(3891), 1, sym_comment, - ACTIONS(6271), 2, + ACTIONS(6833), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6835), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6273), 2, + ACTIONS(6837), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6275), 2, + ACTIONS(6839), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6279), 2, + ACTIONS(6841), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6281), 2, + ACTIONS(6843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6287), 2, + ACTIONS(6849), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6283), 4, + ACTIONS(5237), 3, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6845), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6285), 4, + ACTIONS(6847), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [143100] = 25, + [147567] = 25, + ACTIONS(45), 1, + anon_sym_DASH2, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, ACTIONS(427), 1, aux_sym__val_number_token5, - ACTIONS(3495), 1, + ACTIONS(3521), 1, aux_sym_expr_unary_token1, - ACTIONS(6667), 1, + ACTIONS(5803), 1, + anon_sym_LPAREN, + ACTIONS(6663), 1, sym_identifier, ACTIONS(6669), 1, - sym__newline, - ACTIONS(6671), 1, - anon_sym_LPAREN, - ACTIONS(6673), 1, anon_sym_DOLLAR, - ACTIONS(6677), 1, + ACTIONS(6673), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, + ACTIONS(6675), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, + ACTIONS(6677), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, + ACTIONS(6679), 1, aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, + ACTIONS(6861), 1, + anon_sym_LBRACE, + STATE(1729), 1, sym__val_number, - STATE(2145), 1, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2523), 1, sym__expr_unary_minus, - STATE(3864), 1, + STATE(3892), 1, sym_comment, - STATE(3898), 1, - aux_sym_shebang_repeat1, - STATE(3968), 1, + STATE(3997), 1, sym_expr_parenthesized, - STATE(4294), 1, + STATE(4297), 1, sym_val_number, - STATE(4336), 1, - sym__binary_predicate_parenthesized, - STATE(4337), 1, + STATE(4576), 1, + sym__binary_predicate, + STATE(4579), 1, sym__predicate, - ACTIONS(213), 2, + STATE(5129), 1, + sym_val_closure, + ACTIONS(89), 2, anon_sym_true, anon_sym_false, - STATE(4502), 2, + STATE(4582), 2, sym_expr_unary, sym_val_bool, - STATE(5016), 2, + STATE(5062), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(429), 5, @@ -358850,23 +361836,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [143183] = 5, + [147650] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4864), 1, - aux_sym_unquoted_token2, - STATE(3865), 1, + STATE(3893), 1, sym_comment, - ACTIONS(1709), 5, + ACTIONS(5180), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1721), 24, - anon_sym_DASH2, + ACTIONS(5178), 24, + anon_sym_DASH_DASH, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -358888,19 +361873,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [143226] = 4, + [147691] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3894), 1, + sym_comment, + ACTIONS(6833), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6835), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6837), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6839), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6841), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6843), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6845), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6847), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5237), 10, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [147746] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3866), 1, + STATE(3895), 1, sym_comment, - ACTIONS(5188), 6, + ACTIONS(5180), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5186), 24, + ACTIONS(5178), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -358925,7 +361954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [143267] = 25, + [147787] = 25, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(385), 1, @@ -358934,47 +361963,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token5, ACTIONS(3495), 1, aux_sym_expr_unary_token1, - ACTIONS(6667), 1, + ACTIONS(6663), 1, sym_identifier, - ACTIONS(6669), 1, + ACTIONS(6665), 1, sym__newline, - ACTIONS(6671), 1, + ACTIONS(6667), 1, anon_sym_LPAREN, - ACTIONS(6673), 1, + ACTIONS(6669), 1, anon_sym_DOLLAR, - ACTIONS(6677), 1, + ACTIONS(6673), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, + ACTIONS(6675), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, + ACTIONS(6677), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, + ACTIONS(6679), 1, aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, + STATE(1729), 1, sym__val_number, - STATE(2145), 1, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2131), 1, sym__expr_unary_minus, - STATE(3867), 1, + STATE(3896), 1, sym_comment, - STATE(3901), 1, + STATE(3914), 1, aux_sym_shebang_repeat1, - STATE(3968), 1, + STATE(3977), 1, sym_expr_parenthesized, - STATE(4294), 1, + STATE(4297), 1, sym_val_number, - STATE(4338), 1, + STATE(4459), 1, sym__binary_predicate_parenthesized, - STATE(4339), 1, + STATE(4460), 1, sym__predicate, ACTIONS(213), 2, anon_sym_true, anon_sym_false, - STATE(4502), 2, + STATE(4401), 2, sym_expr_unary, sym_val_bool, - STATE(5016), 2, + STATE(5176), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(429), 5, @@ -358983,19 +362012,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [143350] = 4, + [147870] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3868), 1, + STATE(3897), 1, sym_comment, - ACTIONS(5188), 6, + ACTIONS(5239), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5186), 24, + ACTIONS(5237), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -359020,534 +362049,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [143391] = 25, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3495), 1, - aux_sym_expr_unary_token1, - ACTIONS(6667), 1, - sym_identifier, - ACTIONS(6669), 1, - sym__newline, - ACTIONS(6671), 1, - anon_sym_LPAREN, - ACTIONS(6673), 1, - anon_sym_DOLLAR, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, - aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, - sym__val_number, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(3869), 1, - sym_comment, - STATE(3887), 1, - aux_sym_shebang_repeat1, - STATE(3968), 1, - sym_expr_parenthesized, - STATE(4294), 1, - sym_val_number, - STATE(4483), 1, - sym__binary_predicate_parenthesized, - STATE(4487), 1, - sym__predicate, - ACTIONS(213), 2, - anon_sym_true, - anon_sym_false, - STATE(4502), 2, - sym_expr_unary, - sym_val_bool, - STATE(5016), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [143474] = 25, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3495), 1, - aux_sym_expr_unary_token1, - ACTIONS(6667), 1, - sym_identifier, - ACTIONS(6669), 1, - sym__newline, - ACTIONS(6671), 1, - anon_sym_LPAREN, - ACTIONS(6673), 1, - anon_sym_DOLLAR, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, - aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, - sym__val_number, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(3870), 1, - sym_comment, - STATE(3909), 1, - aux_sym_shebang_repeat1, - STATE(3968), 1, - sym_expr_parenthesized, - STATE(4294), 1, - sym_val_number, - STATE(4457), 1, - sym__binary_predicate_parenthesized, - STATE(4458), 1, - sym__predicate, - ACTIONS(213), 2, - anon_sym_true, - anon_sym_false, - STATE(4502), 2, - sym_expr_unary, - sym_val_bool, - STATE(5016), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [143557] = 25, + [147911] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3495), 1, - aux_sym_expr_unary_token1, - ACTIONS(6667), 1, - sym_identifier, - ACTIONS(6669), 1, - sym__newline, - ACTIONS(6671), 1, - anon_sym_LPAREN, - ACTIONS(6673), 1, - anon_sym_DOLLAR, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, - aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, - sym__val_number, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(3871), 1, + STATE(3898), 1, sym_comment, - STATE(3912), 1, - aux_sym_shebang_repeat1, - STATE(3968), 1, - sym_expr_parenthesized, - STATE(4294), 1, - sym_val_number, - STATE(4459), 1, - sym__binary_predicate_parenthesized, - STATE(4460), 1, - sym__predicate, - ACTIONS(213), 2, - anon_sym_true, - anon_sym_false, - STATE(4502), 2, - sym_expr_unary, - sym_val_bool, - STATE(5016), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [143640] = 20, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(5379), 1, + ACTIONS(5180), 6, + anon_sym_GT2, anon_sym_DASH2, - ACTIONS(5385), 1, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5178), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, - ACTIONS(5387), 1, anon_sym_xor2, - ACTIONS(5397), 1, - anon_sym_PLUS2, - ACTIONS(5401), 1, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, - ACTIONS(5403), 1, anon_sym_bit_DASHxor2, - ACTIONS(5405), 1, anon_sym_bit_DASHor2, - ACTIONS(6847), 1, - anon_sym_or2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3872), 1, + [147952] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3899), 1, sym_comment, - ACTIONS(5377), 2, + ACTIONS(5239), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5383), 2, + ACTIONS(6833), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6835), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5391), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5393), 2, + ACTIONS(6837), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5395), 2, + ACTIONS(6839), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5399), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5381), 4, + ACTIONS(5237), 20, + anon_sym_DASH_DASH, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5389), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [143713] = 25, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3495), 1, - aux_sym_expr_unary_token1, - ACTIONS(6667), 1, - sym_identifier, - ACTIONS(6669), 1, - sym__newline, - ACTIONS(6671), 1, - anon_sym_LPAREN, - ACTIONS(6673), 1, - anon_sym_DOLLAR, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, - aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, - sym__val_number, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(3858), 1, - aux_sym_shebang_repeat1, - STATE(3873), 1, - sym_comment, - STATE(3968), 1, - sym_expr_parenthesized, - STATE(4294), 1, - sym_val_number, - STATE(4461), 1, - sym__binary_predicate_parenthesized, - STATE(4462), 1, - sym__predicate, - ACTIONS(213), 2, - anon_sym_true, - anon_sym_false, - STATE(4502), 2, - sym_expr_unary, - sym_val_bool, - STATE(5016), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [143796] = 25, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3495), 1, - aux_sym_expr_unary_token1, - ACTIONS(6667), 1, - sym_identifier, - ACTIONS(6669), 1, - sym__newline, - ACTIONS(6671), 1, - anon_sym_LPAREN, - ACTIONS(6673), 1, - anon_sym_DOLLAR, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, - aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, - sym__val_number, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(3874), 1, - sym_comment, - STATE(3914), 1, - aux_sym_shebang_repeat1, - STATE(3968), 1, - sym_expr_parenthesized, - STATE(4294), 1, - sym_val_number, - STATE(4340), 1, - sym__binary_predicate_parenthesized, - STATE(4341), 1, - sym__predicate, - ACTIONS(213), 2, - anon_sym_true, - anon_sym_false, - STATE(4502), 2, - sym_expr_unary, - sym_val_bool, - STATE(5016), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [143879] = 25, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [148001] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3495), 1, - aux_sym_expr_unary_token1, - ACTIONS(6667), 1, - sym_identifier, - ACTIONS(6669), 1, - sym__newline, - ACTIONS(6671), 1, - anon_sym_LPAREN, - ACTIONS(6673), 1, - anon_sym_DOLLAR, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, - aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, - sym__val_number, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(3855), 1, - aux_sym_shebang_repeat1, - STATE(3875), 1, + STATE(3900), 1, sym_comment, - STATE(3968), 1, - sym_expr_parenthesized, - STATE(4294), 1, - sym_val_number, - STATE(4356), 1, - sym__binary_predicate_parenthesized, - STATE(4357), 1, - sym__predicate, - ACTIONS(213), 2, - anon_sym_true, - anon_sym_false, - STATE(4502), 2, - sym_expr_unary, - sym_val_bool, - STATE(5016), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [143962] = 20, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(6729), 1, + ACTIONS(5180), 6, + anon_sym_GT2, anon_sym_DASH2, - ACTIONS(6737), 1, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(6741), 1, - anon_sym_bit_DASHand2, - ACTIONS(6743), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, - anon_sym_bit_DASHor2, - ACTIONS(6767), 1, + ACTIONS(5178), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, - ACTIONS(6769), 1, anon_sym_xor2, - ACTIONS(6849), 1, anon_sym_or2, - STATE(3876), 1, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [148042] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3901), 1, sym_comment, - STATE(3903), 1, - aux_sym_shebang_repeat1, - ACTIONS(6691), 2, + ACTIONS(6833), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6835), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6693), 2, + ACTIONS(6837), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6695), 2, + ACTIONS(6839), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6727), 2, + ACTIONS(6841), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6735), 2, + ACTIONS(6849), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6739), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6731), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6733), 4, + ACTIONS(6845), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [144035] = 25, + ACTIONS(6847), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5237), 8, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [148099] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(385), 1, + ACTIONS(6632), 1, anon_sym_DASH2, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3495), 1, - aux_sym_expr_unary_token1, - ACTIONS(6667), 1, - sym_identifier, - ACTIONS(6669), 1, - sym__newline, - ACTIONS(6671), 1, - anon_sym_LPAREN, - ACTIONS(6673), 1, - anon_sym_DOLLAR, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, - aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, - sym__val_number, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(3877), 1, - sym_comment, - STATE(3886), 1, - aux_sym_shebang_repeat1, - STATE(3968), 1, - sym_expr_parenthesized, - STATE(4294), 1, - sym_val_number, - STATE(4359), 1, - sym__binary_predicate_parenthesized, - STATE(4360), 1, - sym__predicate, - ACTIONS(213), 2, - anon_sym_true, - anon_sym_false, - STATE(4502), 2, - sym_expr_unary, - sym_val_bool, - STATE(5016), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [144118] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3878), 1, + STATE(3902), 1, sym_comment, - ACTIONS(5188), 6, + ACTIONS(5206), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(5208), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5186), 24, - anon_sym_DASH_DASH, + ACTIONS(5210), 22, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -359569,22 +362248,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [144159] = 5, + [148144] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3879), 1, + STATE(3903), 1, sym_comment, - ACTIONS(6839), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5239), 6, + ACTIONS(5180), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5237), 22, + ACTIONS(5178), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -359600,6 +362276,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -359607,19 +362285,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [144202] = 4, + [148185] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3880), 1, + STATE(3904), 1, sym_comment, - ACTIONS(5188), 6, + ACTIONS(5180), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5186), 24, + ACTIONS(5178), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -359644,77 +362322,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [144243] = 9, + [148226] = 14, ACTIONS(247), 1, anon_sym_POUND, - STATE(3881), 1, + ACTIONS(6851), 1, + anon_sym_bit_DASHand2, + ACTIONS(6853), 1, + anon_sym_bit_DASHxor2, + STATE(3905), 1, sym_comment, - ACTIONS(5239), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6835), 2, + ACTIONS(6833), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(6837), 2, + ACTIONS(6835), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6839), 2, + ACTIONS(6837), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6841), 2, + ACTIONS(6839), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6851), 2, + ACTIONS(6841), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5237), 18, - anon_sym_DASH_DASH, + ACTIONS(6843), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6849), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6845), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6847), 4, anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5237), 6, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [144294] = 10, + [148287] = 20, ACTIONS(247), 1, anon_sym_POUND, - STATE(3882), 1, - sym_comment, - ACTIONS(6835), 2, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(5365), 1, anon_sym_DASH2, + ACTIONS(5377), 1, anon_sym_PLUS2, - ACTIONS(6837), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6839), 2, + ACTIONS(5381), 1, + anon_sym_bit_DASHand2, + ACTIONS(5383), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5423), 1, + anon_sym_bit_DASHor2, + ACTIONS(5434), 1, + anon_sym_and2, + ACTIONS(5436), 1, + anon_sym_xor2, + ACTIONS(6863), 1, + anon_sym_or2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(3906), 1, + sym_comment, + ACTIONS(5361), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6841), 2, + ACTIONS(5363), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5369), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5373), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5375), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6851), 2, + ACTIONS(5379), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6853), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6855), 4, + ACTIONS(5367), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5371), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5237), 14, + [148360] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3907), 1, + sym_comment, + ACTIONS(5180), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5178), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -359724,115 +362444,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [144347] = 25, - ACTIONS(45), 1, - anon_sym_DASH2, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3521), 1, - aux_sym_expr_unary_token1, - ACTIONS(5856), 1, - anon_sym_LPAREN, - ACTIONS(6667), 1, - sym_identifier, - ACTIONS(6673), 1, - anon_sym_DOLLAR, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(6857), 1, - anon_sym_LBRACE, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, - sym__val_number, - STATE(2478), 1, - sym__expr_unary_minus, - STATE(3883), 1, - sym_comment, - STATE(3979), 1, - sym_expr_parenthesized, - STATE(4294), 1, - sym_val_number, - STATE(4574), 1, - sym__binary_predicate, - STATE(4579), 1, - sym__predicate, - STATE(5009), 1, - sym_val_closure, - ACTIONS(89), 2, - anon_sym_true, - anon_sym_false, - STATE(4580), 2, - sym_expr_unary, - sym_val_bool, - STATE(5002), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [144430] = 12, + [148401] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3884), 1, + STATE(3908), 1, sym_comment, - ACTIONS(6835), 2, + ACTIONS(5235), 6, + anon_sym_GT2, anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6837), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6839), 2, + anon_sym_PLUS2, + ACTIONS(5233), 24, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6841), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6851), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6853), 2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [148442] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3909), 1, + sym_comment, + ACTIONS(5247), 6, anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(6861), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6855), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6859), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5237), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5245), 24, anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [144487] = 25, + [148483] = 25, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(385), 1, @@ -359841,163 +362542,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token5, ACTIONS(3495), 1, aux_sym_expr_unary_token1, - ACTIONS(6667), 1, + ACTIONS(6663), 1, sym_identifier, - ACTIONS(6669), 1, + ACTIONS(6665), 1, sym__newline, - ACTIONS(6671), 1, - anon_sym_LPAREN, - ACTIONS(6673), 1, - anon_sym_DOLLAR, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, - aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, - sym__val_number, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(3885), 1, - sym_comment, - STATE(3968), 1, - sym_expr_parenthesized, - STATE(4026), 1, - aux_sym_shebang_repeat1, - STATE(4294), 1, - sym_val_number, - STATE(4344), 1, - sym__binary_predicate_parenthesized, - STATE(4345), 1, - sym__predicate, - ACTIONS(213), 2, - anon_sym_true, - anon_sym_false, - STATE(4502), 2, - sym_expr_unary, - sym_val_bool, - STATE(5016), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [144570] = 25, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3495), 1, - aux_sym_expr_unary_token1, ACTIONS(6667), 1, - sym_identifier, - ACTIONS(6669), 1, - sym__newline, - ACTIONS(6671), 1, anon_sym_LPAREN, - ACTIONS(6673), 1, - anon_sym_DOLLAR, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, - aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, - sym__val_number, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(3886), 1, - sym_comment, - STATE(3968), 1, - sym_expr_parenthesized, - STATE(4026), 1, - aux_sym_shebang_repeat1, - STATE(4294), 1, - sym_val_number, - STATE(4447), 1, - sym__binary_predicate_parenthesized, - STATE(4448), 1, - sym__predicate, - ACTIONS(213), 2, - anon_sym_true, - anon_sym_false, - STATE(4502), 2, - sym_expr_unary, - sym_val_bool, - STATE(5016), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [144653] = 25, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3495), 1, - aux_sym_expr_unary_token1, - ACTIONS(6667), 1, - sym_identifier, ACTIONS(6669), 1, - sym__newline, - ACTIONS(6671), 1, - anon_sym_LPAREN, - ACTIONS(6673), 1, anon_sym_DOLLAR, - ACTIONS(6677), 1, + ACTIONS(6673), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, + ACTIONS(6675), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, + ACTIONS(6677), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, + ACTIONS(6679), 1, aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, + STATE(1729), 1, sym__val_number, - STATE(2145), 1, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2131), 1, sym__expr_unary_minus, - STATE(3887), 1, + STATE(3910), 1, sym_comment, - STATE(3968), 1, + STATE(3977), 1, sym_expr_parenthesized, - STATE(4026), 1, + STATE(4049), 1, aux_sym_shebang_repeat1, - STATE(4294), 1, + STATE(4297), 1, sym_val_number, - STATE(4348), 1, + STATE(4476), 1, sym__binary_predicate_parenthesized, - STATE(4349), 1, + STATE(4477), 1, sym__predicate, ACTIONS(213), 2, anon_sym_true, anon_sym_false, - STATE(4502), 2, + STATE(4401), 2, sym_expr_unary, sym_val_bool, - STATE(5016), 2, + STATE(5176), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(429), 5, @@ -360006,7 +362591,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [144736] = 25, + [148566] = 25, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(385), 1, @@ -360015,47 +362600,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token5, ACTIONS(3495), 1, aux_sym_expr_unary_token1, - ACTIONS(6667), 1, + ACTIONS(6663), 1, sym_identifier, - ACTIONS(6669), 1, + ACTIONS(6665), 1, sym__newline, - ACTIONS(6671), 1, + ACTIONS(6667), 1, anon_sym_LPAREN, - ACTIONS(6673), 1, + ACTIONS(6669), 1, anon_sym_DOLLAR, - ACTIONS(6677), 1, + ACTIONS(6673), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, + ACTIONS(6675), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, + ACTIONS(6677), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, + ACTIONS(6679), 1, aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, + STATE(1729), 1, sym__val_number, - STATE(2145), 1, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2131), 1, sym__expr_unary_minus, - STATE(3888), 1, + STATE(3911), 1, sym_comment, - STATE(3968), 1, + STATE(3977), 1, sym_expr_parenthesized, - STATE(4026), 1, + STATE(4049), 1, aux_sym_shebang_repeat1, - STATE(4294), 1, + STATE(4297), 1, sym_val_number, - STATE(4352), 1, + STATE(4480), 1, sym__binary_predicate_parenthesized, - STATE(4353), 1, + STATE(4482), 1, sym__predicate, ACTIONS(213), 2, anon_sym_true, anon_sym_false, - STATE(4502), 2, + STATE(4401), 2, sym_expr_unary, sym_val_bool, - STATE(5016), 2, + STATE(5176), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(429), 5, @@ -360064,7 +362649,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [144819] = 25, + [148649] = 25, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(385), 1, @@ -360073,47 +362658,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token5, ACTIONS(3495), 1, aux_sym_expr_unary_token1, - ACTIONS(6667), 1, + ACTIONS(6663), 1, sym_identifier, - ACTIONS(6669), 1, + ACTIONS(6665), 1, sym__newline, - ACTIONS(6671), 1, + ACTIONS(6667), 1, anon_sym_LPAREN, - ACTIONS(6673), 1, + ACTIONS(6669), 1, anon_sym_DOLLAR, - ACTIONS(6677), 1, + ACTIONS(6673), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, + ACTIONS(6675), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, + ACTIONS(6677), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, + ACTIONS(6679), 1, aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, + STATE(1729), 1, sym__val_number, - STATE(2145), 1, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2131), 1, sym__expr_unary_minus, - STATE(3888), 1, - aux_sym_shebang_repeat1, - STATE(3889), 1, + STATE(3912), 1, sym_comment, - STATE(3968), 1, + STATE(3977), 1, sym_expr_parenthesized, - STATE(4294), 1, + STATE(4049), 1, + aux_sym_shebang_repeat1, + STATE(4297), 1, sym_val_number, - STATE(4494), 1, + STATE(4488), 1, sym__binary_predicate_parenthesized, - STATE(4496), 1, + STATE(4489), 1, sym__predicate, ACTIONS(213), 2, anon_sym_true, anon_sym_false, - STATE(4502), 2, + STATE(4401), 2, sym_expr_unary, sym_val_bool, - STATE(5016), 2, + STATE(5176), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(429), 5, @@ -360122,7 +362707,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [144902] = 25, + [148732] = 25, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(385), 1, @@ -360131,47 +362716,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token5, ACTIONS(3495), 1, aux_sym_expr_unary_token1, - ACTIONS(6667), 1, + ACTIONS(6663), 1, sym_identifier, - ACTIONS(6671), 1, + ACTIONS(6665), 1, + sym__newline, + ACTIONS(6667), 1, anon_sym_LPAREN, - ACTIONS(6673), 1, + ACTIONS(6669), 1, anon_sym_DOLLAR, - ACTIONS(6675), 1, - anon_sym_LBRACE, - ACTIONS(6677), 1, + ACTIONS(6673), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, + ACTIONS(6675), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, + ACTIONS(6677), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, + ACTIONS(6679), 1, aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, + STATE(1729), 1, sym__val_number, - STATE(2145), 1, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2131), 1, sym__expr_unary_minus, - STATE(3890), 1, + STATE(3913), 1, sym_comment, - STATE(3968), 1, + STATE(3977), 1, sym_expr_parenthesized, - STATE(4294), 1, + STATE(4049), 1, + aux_sym_shebang_repeat1, + STATE(4297), 1, sym_val_number, - STATE(4500), 1, - sym__binary_predicate, - STATE(4501), 1, + STATE(4427), 1, + sym__binary_predicate_parenthesized, + STATE(4428), 1, sym__predicate, - STATE(4988), 1, - sym_val_closure, ACTIONS(213), 2, anon_sym_true, anon_sym_false, - STATE(4502), 2, + STATE(4401), 2, sym_expr_unary, sym_val_bool, - STATE(5016), 2, + STATE(5176), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(429), 5, @@ -360180,44 +362765,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [144985] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3891), 1, - sym_comment, - ACTIONS(5188), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5186), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [145026] = 25, + [148815] = 25, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(385), 1, @@ -360226,47 +362774,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token5, ACTIONS(3495), 1, aux_sym_expr_unary_token1, - ACTIONS(6667), 1, + ACTIONS(6663), 1, sym_identifier, - ACTIONS(6669), 1, + ACTIONS(6665), 1, sym__newline, - ACTIONS(6671), 1, + ACTIONS(6667), 1, anon_sym_LPAREN, - ACTIONS(6673), 1, + ACTIONS(6669), 1, anon_sym_DOLLAR, - ACTIONS(6677), 1, + ACTIONS(6673), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, + ACTIONS(6675), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, + ACTIONS(6677), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, + ACTIONS(6679), 1, aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, + STATE(1729), 1, sym__val_number, - STATE(2145), 1, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2131), 1, sym__expr_unary_minus, - STATE(3848), 1, - aux_sym_shebang_repeat1, - STATE(3892), 1, + STATE(3914), 1, sym_comment, - STATE(3968), 1, + STATE(3977), 1, sym_expr_parenthesized, - STATE(4294), 1, + STATE(4049), 1, + aux_sym_shebang_repeat1, + STATE(4297), 1, sym_val_number, - STATE(4354), 1, + STATE(4502), 1, sym__binary_predicate_parenthesized, - STATE(4355), 1, + STATE(4503), 1, sym__predicate, ACTIONS(213), 2, anon_sym_true, anon_sym_false, - STATE(4502), 2, + STATE(4401), 2, sym_expr_unary, sym_val_bool, - STATE(5016), 2, + STATE(5176), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(429), 5, @@ -360275,211 +362823,113 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [145109] = 14, + [148898] = 20, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6863), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(6689), 1, + anon_sym_DASH2, + ACTIONS(6703), 1, + anon_sym_PLUS2, + ACTIONS(6707), 1, anon_sym_bit_DASHand2, - ACTIONS(6865), 1, + ACTIONS(6733), 1, anon_sym_bit_DASHxor2, - STATE(3893), 1, + ACTIONS(6741), 1, + anon_sym_bit_DASHor2, + ACTIONS(6757), 1, + anon_sym_and2, + ACTIONS(6759), 1, + anon_sym_xor2, + ACTIONS(6865), 1, + anon_sym_or2, + STATE(3915), 1, sym_comment, - ACTIONS(6835), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6837), 2, + STATE(3916), 1, + aux_sym_shebang_repeat1, + ACTIONS(6687), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6693), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6839), 2, + ACTIONS(6697), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6699), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6841), 2, + ACTIONS(6701), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6851), 2, + ACTIONS(6705), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6853), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6861), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6855), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6859), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5237), 6, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [145170] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3894), 1, - sym_comment, - ACTIONS(5262), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5260), 24, - anon_sym_DASH_DASH, + ACTIONS(6691), 4, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6695), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [145211] = 13, + [148971] = 20, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6863), 1, - anon_sym_bit_DASHand2, - STATE(3895), 1, - sym_comment, - ACTIONS(6835), 2, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(6711), 1, anon_sym_DASH2, + ACTIONS(6725), 1, anon_sym_PLUS2, - ACTIONS(6837), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6839), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6841), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6851), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6853), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6861), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6855), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6859), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5237), 7, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(6729), 1, + anon_sym_bit_DASHand2, + ACTIONS(6731), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6735), 1, + anon_sym_bit_DASHor2, + ACTIONS(6737), 1, anon_sym_and2, + ACTIONS(6739), 1, anon_sym_xor2, + ACTIONS(6867), 1, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [145270] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3896), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(3916), 1, sym_comment, - ACTIONS(2206), 6, + ACTIONS(6709), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6715), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2210), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, + ACTIONS(6719), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + ACTIONS(6721), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6723), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6727), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [145311] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3897), 1, - sym_comment, - ACTIONS(5188), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5186), 24, - anon_sym_DASH_DASH, + ACTIONS(6713), 4, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6717), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [145352] = 25, + [149044] = 25, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(385), 1, @@ -360488,47 +362938,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token5, ACTIONS(3495), 1, aux_sym_expr_unary_token1, - ACTIONS(6667), 1, + ACTIONS(6663), 1, sym_identifier, - ACTIONS(6669), 1, + ACTIONS(6665), 1, sym__newline, - ACTIONS(6671), 1, + ACTIONS(6667), 1, anon_sym_LPAREN, - ACTIONS(6673), 1, + ACTIONS(6669), 1, anon_sym_DOLLAR, - ACTIONS(6677), 1, + ACTIONS(6673), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, + ACTIONS(6675), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, + ACTIONS(6677), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, + ACTIONS(6679), 1, aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, + STATE(1729), 1, sym__val_number, - STATE(2145), 1, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2131), 1, sym__expr_unary_minus, - STATE(3898), 1, + STATE(3917), 1, sym_comment, - STATE(3968), 1, + STATE(3977), 1, sym_expr_parenthesized, - STATE(4026), 1, + STATE(4049), 1, aux_sym_shebang_repeat1, - STATE(4294), 1, + STATE(4297), 1, sym_val_number, - STATE(4417), 1, + STATE(4506), 1, sym__binary_predicate_parenthesized, - STATE(4420), 1, + STATE(4507), 1, sym__predicate, ACTIONS(213), 2, anon_sym_true, anon_sym_false, - STATE(4502), 2, + STATE(4401), 2, sym_expr_unary, sym_val_bool, - STATE(5016), 2, + STATE(5176), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(429), 5, @@ -360537,95 +362987,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [145435] = 7, + [149127] = 25, ACTIONS(247), 1, anon_sym_POUND, - STATE(3899), 1, - sym_comment, - ACTIONS(6837), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6839), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6841), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5239), 4, - anon_sym_GT2, + ACTIONS(385), 1, anon_sym_DASH2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5237), 20, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [145482] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6863), 1, - anon_sym_bit_DASHand2, - ACTIONS(6865), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6867), 1, - anon_sym_bit_DASHor2, - STATE(3900), 1, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6663), 1, + sym_identifier, + ACTIONS(6665), 1, + sym__newline, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6669), 1, + anon_sym_DOLLAR, + ACTIONS(6673), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6675), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token4, + STATE(1729), 1, + sym__val_number, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(3917), 1, + aux_sym_shebang_repeat1, + STATE(3918), 1, sym_comment, - ACTIONS(6835), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6837), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6839), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6841), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6851), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6853), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6861), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6855), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6859), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5237), 5, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [145545] = 25, + STATE(3977), 1, + sym_expr_parenthesized, + STATE(4297), 1, + sym_val_number, + STATE(4465), 1, + sym__binary_predicate_parenthesized, + STATE(4466), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4401), 2, + sym_expr_unary, + sym_val_bool, + STATE(5176), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [149210] = 25, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(385), 1, @@ -360634,47 +363054,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token5, ACTIONS(3495), 1, aux_sym_expr_unary_token1, - ACTIONS(6667), 1, + ACTIONS(6663), 1, sym_identifier, - ACTIONS(6669), 1, + ACTIONS(6665), 1, sym__newline, - ACTIONS(6671), 1, + ACTIONS(6667), 1, anon_sym_LPAREN, - ACTIONS(6673), 1, + ACTIONS(6669), 1, anon_sym_DOLLAR, - ACTIONS(6677), 1, + ACTIONS(6673), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, + ACTIONS(6675), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, + ACTIONS(6677), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, + ACTIONS(6679), 1, aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, + STATE(1729), 1, sym__val_number, - STATE(2145), 1, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2131), 1, sym__expr_unary_minus, - STATE(3901), 1, + STATE(3919), 1, sym_comment, - STATE(3968), 1, + STATE(3977), 1, sym_expr_parenthesized, - STATE(4026), 1, + STATE(4049), 1, aux_sym_shebang_repeat1, - STATE(4294), 1, + STATE(4297), 1, sym_val_number, - STATE(4423), 1, + STATE(4435), 1, sym__binary_predicate_parenthesized, - STATE(4424), 1, + STATE(4437), 1, sym__predicate, ACTIONS(213), 2, anon_sym_true, anon_sym_false, - STATE(4502), 2, + STATE(4401), 2, sym_expr_unary, sym_val_bool, - STATE(5016), 2, + STATE(5176), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(429), 5, @@ -360683,312 +363103,287 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [145628] = 4, + [149293] = 20, ACTIONS(247), 1, anon_sym_POUND, - STATE(3902), 1, - sym_comment, - ACTIONS(5188), 6, - anon_sym_GT2, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(6233), 1, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, + ACTIONS(6241), 1, anon_sym_PLUS2, - ACTIONS(5186), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + ACTIONS(6267), 1, anon_sym_bit_DASHand2, + ACTIONS(6269), 1, anon_sym_bit_DASHxor2, + ACTIONS(6271), 1, anon_sym_bit_DASHor2, - [145669] = 20, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(6699), 1, - anon_sym_DASH2, - ACTIONS(6705), 1, + ACTIONS(6275), 1, anon_sym_and2, - ACTIONS(6707), 1, + ACTIONS(6279), 1, anon_sym_xor2, - ACTIONS(6717), 1, - anon_sym_PLUS2, - ACTIONS(6721), 1, - anon_sym_bit_DASHand2, - ACTIONS(6723), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6725), 1, - anon_sym_bit_DASHor2, ACTIONS(6869), 1, anon_sym_or2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(3903), 1, + STATE(3920), 1, sym_comment, - ACTIONS(6697), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6703), 2, + STATE(3921), 1, + aux_sym_shebang_repeat1, + ACTIONS(6235), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6711), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6713), 2, + ACTIONS(6237), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6715), 2, + ACTIONS(6239), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6719), 2, + ACTIONS(6243), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6701), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6709), 4, + ACTIONS(6249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6265), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6251), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [145742] = 16, + ACTIONS(6263), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [149366] = 20, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6863), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(6221), 1, + anon_sym_DASH2, + ACTIONS(6229), 1, + anon_sym_PLUS2, + ACTIONS(6257), 1, anon_sym_bit_DASHand2, - ACTIONS(6865), 1, + ACTIONS(6259), 1, anon_sym_bit_DASHxor2, - ACTIONS(6867), 1, + ACTIONS(6261), 1, anon_sym_bit_DASHor2, - ACTIONS(6871), 1, + ACTIONS(6273), 1, anon_sym_and2, - STATE(3904), 1, + ACTIONS(6277), 1, + anon_sym_xor2, + ACTIONS(6871), 1, + anon_sym_or2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(3921), 1, sym_comment, - ACTIONS(6835), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6837), 2, + ACTIONS(6223), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6839), 2, + ACTIONS(6225), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6841), 2, + ACTIONS(6227), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6851), 2, + ACTIONS(6231), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6853), 2, + ACTIONS(6245), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6861), 2, + ACTIONS(6255), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5237), 4, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6855), 4, + ACTIONS(6247), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6859), 4, + ACTIONS(6253), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [145807] = 6, + [149439] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6632), 1, + ACTIONS(385), 1, anon_sym_DASH2, - STATE(3905), 1, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6663), 1, + sym_identifier, + ACTIONS(6665), 1, + sym__newline, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6669), 1, + anon_sym_DOLLAR, + ACTIONS(6673), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6675), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token4, + STATE(1729), 1, + sym__val_number, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(3922), 1, sym_comment, - ACTIONS(5220), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(5222), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5224), 22, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [145852] = 4, + STATE(3977), 1, + sym_expr_parenthesized, + STATE(4049), 1, + aux_sym_shebang_repeat1, + STATE(4297), 1, + sym_val_number, + STATE(4518), 1, + sym__binary_predicate_parenthesized, + STATE(4519), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4401), 2, + sym_expr_unary, + sym_val_bool, + STATE(5176), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [149522] = 25, ACTIONS(247), 1, anon_sym_POUND, - STATE(3906), 1, - sym_comment, - ACTIONS(5188), 6, - anon_sym_GT2, + ACTIONS(385), 1, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5186), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [145893] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3907), 1, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6663), 1, + sym_identifier, + ACTIONS(6665), 1, + sym__newline, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6669), 1, + anon_sym_DOLLAR, + ACTIONS(6673), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6675), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token4, + STATE(1729), 1, + sym__val_number, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(3913), 1, + aux_sym_shebang_repeat1, + STATE(3923), 1, sym_comment, - ACTIONS(5188), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5186), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [145934] = 20, + STATE(3977), 1, + sym_expr_parenthesized, + STATE(4297), 1, + sym_val_number, + STATE(4420), 1, + sym__predicate, + STATE(4521), 1, + sym__binary_predicate_parenthesized, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4401), 2, + sym_expr_unary, + sym_val_bool, + STATE(5176), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [149605] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(5344), 1, + ACTIONS(385), 1, anon_sym_DASH2, - ACTIONS(5350), 1, - anon_sym_and2, - ACTIONS(5352), 1, - anon_sym_xor2, - ACTIONS(5362), 1, - anon_sym_PLUS2, - ACTIONS(5366), 1, - anon_sym_bit_DASHand2, - ACTIONS(5368), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5370), 1, - anon_sym_bit_DASHor2, - ACTIONS(6873), 1, - anon_sym_or2, - STATE(3872), 1, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6663), 1, + sym_identifier, + ACTIONS(6665), 1, + sym__newline, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6669), 1, + anon_sym_DOLLAR, + ACTIONS(6673), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6675), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token4, + STATE(1729), 1, + sym__val_number, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(3870), 1, aux_sym_shebang_repeat1, - STATE(3908), 1, + STATE(3924), 1, sym_comment, - ACTIONS(5342), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5348), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5356), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5358), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5360), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5364), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5346), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5354), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [146007] = 25, + STATE(3977), 1, + sym_expr_parenthesized, + STATE(4297), 1, + sym_val_number, + STATE(4512), 1, + sym__binary_predicate_parenthesized, + STATE(4513), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4401), 2, + sym_expr_unary, + sym_val_bool, + STATE(5176), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [149688] = 25, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(385), 1, @@ -360997,47 +363392,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token5, ACTIONS(3495), 1, aux_sym_expr_unary_token1, - ACTIONS(6667), 1, + ACTIONS(6663), 1, sym_identifier, - ACTIONS(6669), 1, + ACTIONS(6665), 1, sym__newline, - ACTIONS(6671), 1, + ACTIONS(6667), 1, anon_sym_LPAREN, - ACTIONS(6673), 1, + ACTIONS(6669), 1, anon_sym_DOLLAR, - ACTIONS(6677), 1, + ACTIONS(6673), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, + ACTIONS(6675), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, + ACTIONS(6677), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, + ACTIONS(6679), 1, aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, + STATE(1729), 1, sym__val_number, - STATE(2145), 1, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2131), 1, sym__expr_unary_minus, - STATE(3909), 1, + STATE(3925), 1, sym_comment, - STATE(3968), 1, - sym_expr_parenthesized, - STATE(4026), 1, + STATE(3928), 1, aux_sym_shebang_repeat1, - STATE(4294), 1, + STATE(3977), 1, + sym_expr_parenthesized, + STATE(4297), 1, sym_val_number, - STATE(4323), 1, + STATE(4475), 1, sym__binary_predicate_parenthesized, - STATE(4324), 1, + STATE(4484), 1, sym__predicate, ACTIONS(213), 2, anon_sym_true, anon_sym_false, - STATE(4502), 2, + STATE(4401), 2, sym_expr_unary, sym_val_bool, - STATE(5016), 2, + STATE(5176), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(429), 5, @@ -361046,19 +363441,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [146090] = 4, + [149771] = 25, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6663), 1, + sym_identifier, + ACTIONS(6665), 1, + sym__newline, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6669), 1, + anon_sym_DOLLAR, + ACTIONS(6673), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6675), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token4, + STATE(1729), 1, + sym__val_number, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2131), 1, + sym__expr_unary_minus, STATE(3910), 1, + aux_sym_shebang_repeat1, + STATE(3926), 1, + sym_comment, + STATE(3977), 1, + sym_expr_parenthesized, + STATE(4297), 1, + sym_val_number, + STATE(4316), 1, + sym__binary_predicate_parenthesized, + STATE(4438), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4401), 2, + sym_expr_unary, + sym_val_bool, + STATE(5176), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [149854] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3927), 1, sym_comment, - ACTIONS(5188), 6, + ACTIONS(2268), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5186), 24, + ACTIONS(2270), 24, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, @@ -361083,57 +363536,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [146131] = 17, + [149895] = 25, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6863), 1, - anon_sym_bit_DASHand2, - ACTIONS(6865), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6867), 1, - anon_sym_bit_DASHor2, - ACTIONS(6871), 1, - anon_sym_and2, - ACTIONS(6875), 1, - anon_sym_xor2, - STATE(3911), 1, - sym_comment, - ACTIONS(6835), 2, + ACTIONS(385), 1, anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6837), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6839), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6841), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6851), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6853), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6861), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5237), 3, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(6855), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6859), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - [146198] = 25, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6663), 1, + sym_identifier, + ACTIONS(6665), 1, + sym__newline, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6669), 1, + anon_sym_DOLLAR, + ACTIONS(6673), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6675), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token4, + STATE(1729), 1, + sym__val_number, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(3928), 1, + sym_comment, + STATE(3977), 1, + sym_expr_parenthesized, + STATE(4049), 1, + aux_sym_shebang_repeat1, + STATE(4297), 1, + sym_val_number, + STATE(4431), 1, + sym__binary_predicate_parenthesized, + STATE(4432), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4401), 2, + sym_expr_unary, + sym_val_bool, + STATE(5176), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [149978] = 25, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(385), 1, @@ -361142,47 +363603,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token5, ACTIONS(3495), 1, aux_sym_expr_unary_token1, - ACTIONS(6667), 1, + ACTIONS(6663), 1, sym_identifier, - ACTIONS(6669), 1, + ACTIONS(6665), 1, sym__newline, - ACTIONS(6671), 1, + ACTIONS(6667), 1, anon_sym_LPAREN, - ACTIONS(6673), 1, + ACTIONS(6669), 1, anon_sym_DOLLAR, - ACTIONS(6677), 1, + ACTIONS(6673), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, + ACTIONS(6675), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, + ACTIONS(6677), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, + ACTIONS(6679), 1, aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, + STATE(1729), 1, sym__val_number, - STATE(2145), 1, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2131), 1, sym__expr_unary_minus, - STATE(3912), 1, + STATE(3919), 1, + aux_sym_shebang_repeat1, + STATE(3929), 1, sym_comment, - STATE(3968), 1, + STATE(3977), 1, sym_expr_parenthesized, - STATE(4026), 1, - aux_sym_shebang_repeat1, - STATE(4294), 1, + STATE(4297), 1, sym_val_number, - STATE(4327), 1, + STATE(4486), 1, sym__binary_predicate_parenthesized, - STATE(4328), 1, + STATE(4490), 1, sym__predicate, ACTIONS(213), 2, anon_sym_true, anon_sym_false, - STATE(4502), 2, + STATE(4401), 2, sym_expr_unary, sym_val_bool, - STATE(5016), 2, + STATE(5176), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(429), 5, @@ -361191,51 +363652,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [146281] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3913), 1, - sym_comment, - ACTIONS(6835), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6837), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6839), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6841), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6851), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6853), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6855), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6859), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5237), 10, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [146336] = 25, + [150061] = 25, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(385), 1, @@ -361244,47 +363661,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token5, ACTIONS(3495), 1, aux_sym_expr_unary_token1, - ACTIONS(6667), 1, + ACTIONS(6663), 1, sym_identifier, - ACTIONS(6669), 1, + ACTIONS(6665), 1, sym__newline, - ACTIONS(6671), 1, + ACTIONS(6667), 1, anon_sym_LPAREN, - ACTIONS(6673), 1, + ACTIONS(6669), 1, anon_sym_DOLLAR, - ACTIONS(6677), 1, + ACTIONS(6673), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, + ACTIONS(6675), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, + ACTIONS(6677), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, + ACTIONS(6679), 1, aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, + STATE(1729), 1, sym__val_number, - STATE(2145), 1, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2131), 1, sym__expr_unary_minus, - STATE(3914), 1, + STATE(3869), 1, + aux_sym_shebang_repeat1, + STATE(3930), 1, sym_comment, - STATE(3968), 1, + STATE(3977), 1, sym_expr_parenthesized, - STATE(4026), 1, - aux_sym_shebang_repeat1, - STATE(4294), 1, + STATE(4297), 1, sym_val_number, - STATE(4427), 1, + STATE(4510), 1, sym__binary_predicate_parenthesized, - STATE(4428), 1, + STATE(4511), 1, sym__predicate, ACTIONS(213), 2, anon_sym_true, anon_sym_false, - STATE(4502), 2, + STATE(4401), 2, sym_expr_unary, sym_val_bool, - STATE(5016), 2, + STATE(5176), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(429), 5, @@ -361293,66 +363710,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [146419] = 14, + [150144] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6879), 1, - anon_sym_DASH2, - ACTIONS(6893), 1, - anon_sym_PLUS2, - ACTIONS(6897), 1, + ACTIONS(6851), 1, anon_sym_bit_DASHand2, - STATE(3915), 1, + STATE(3931), 1, sym_comment, - ACTIONS(6877), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6883), 2, + ACTIONS(6833), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6835), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6887), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6889), 2, + ACTIONS(6837), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6891), 2, + ACTIONS(6839), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6895), 2, + ACTIONS(6841), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6881), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6885), 4, + ACTIONS(6843), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6849), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6845), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5237), 6, + ACTIONS(6847), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5237), 7, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [146479] = 5, + [150203] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6903), 1, + ACTIONS(6877), 1, aux_sym_cmd_identifier_token41, - STATE(3916), 1, + STATE(3932), 1, sym_comment, - ACTIONS(6901), 5, + ACTIONS(6875), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6899), 23, + ACTIONS(6873), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -361376,165 +363793,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [146521] = 9, + [150245] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6905), 1, + ACTIONS(6881), 1, anon_sym_DASH2, - ACTIONS(6913), 1, + ACTIONS(6887), 1, + anon_sym_and2, + ACTIONS(6897), 1, anon_sym_PLUS2, - STATE(3917), 1, + ACTIONS(6901), 1, + anon_sym_bit_DASHand2, + ACTIONS(6903), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6905), 1, + anon_sym_bit_DASHor2, + STATE(3933), 1, sym_comment, - ACTIONS(5239), 2, + ACTIONS(6879), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6907), 2, + ACTIONS(6885), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6909), 2, + ACTIONS(6891), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6893), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6911), 2, + ACTIONS(6895), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5237), 19, - anon_sym_in2, + ACTIONS(6899), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5237), 3, anon_sym_EQ_GT, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(6883), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6889), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [146571] = 13, + [150311] = 18, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6879), 1, + ACTIONS(6881), 1, anon_sym_DASH2, - ACTIONS(6893), 1, + ACTIONS(6887), 1, + anon_sym_and2, + ACTIONS(6897), 1, anon_sym_PLUS2, - STATE(3918), 1, + ACTIONS(6901), 1, + anon_sym_bit_DASHand2, + ACTIONS(6903), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6905), 1, + anon_sym_bit_DASHor2, + ACTIONS(6907), 1, + anon_sym_xor2, + STATE(3934), 1, sym_comment, - ACTIONS(6877), 2, + ACTIONS(5237), 2, + anon_sym_EQ_GT, + anon_sym_or2, + ACTIONS(6879), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6883), 2, + ACTIONS(6885), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6887), 2, + ACTIONS(6891), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6889), 2, + ACTIONS(6893), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6891), 2, + ACTIONS(6895), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6895), 2, + ACTIONS(6899), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6881), 4, + ACTIONS(6883), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6885), 4, + ACTIONS(6889), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5237), 7, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [146629] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6919), 1, - aux_sym_cmd_identifier_token41, - STATE(3919), 1, - sym_comment, - ACTIONS(6917), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6915), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [146671] = 12, + [150379] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6879), 1, + ACTIONS(6881), 1, anon_sym_DASH2, - ACTIONS(6893), 1, + ACTIONS(6897), 1, anon_sym_PLUS2, - STATE(3920), 1, + STATE(3935), 1, sym_comment, - ACTIONS(6877), 2, + ACTIONS(6879), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6883), 2, + ACTIONS(6885), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6889), 2, + ACTIONS(6893), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6891), 2, + ACTIONS(6895), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6895), 2, + ACTIONS(6899), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6881), 4, + ACTIONS(6883), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6885), 4, + ACTIONS(6889), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, ACTIONS(5237), 9, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -361543,28 +363936,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [146727] = 7, + [150435] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(3921), 1, + ACTIONS(6881), 1, + anon_sym_DASH2, + ACTIONS(6897), 1, + anon_sym_PLUS2, + STATE(3936), 1, sym_comment, - ACTIONS(6883), 2, + ACTIONS(5239), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6885), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6889), 2, + ACTIONS(6893), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6891), 2, + ACTIONS(6895), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5239), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5237), 20, - anon_sym_DASH2, + ACTIONS(5237), 19, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -361582,39 +363977,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [146773] = 13, + [150485] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6905), 1, + ACTIONS(6881), 1, anon_sym_DASH2, - ACTIONS(6913), 1, + ACTIONS(6897), 1, anon_sym_PLUS2, - STATE(3922), 1, + STATE(3937), 1, sym_comment, - ACTIONS(6907), 2, + ACTIONS(6879), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6885), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6909), 2, + ACTIONS(6891), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6893), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6911), 2, + ACTIONS(6895), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6921), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6927), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6929), 2, + ACTIONS(6899), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6923), 4, + ACTIONS(6883), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6925), 4, + ACTIONS(6889), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -361627,99 +364022,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [146831] = 7, + [150543] = 14, ACTIONS(247), 1, anon_sym_POUND, - STATE(3923), 1, + ACTIONS(6881), 1, + anon_sym_DASH2, + ACTIONS(6897), 1, + anon_sym_PLUS2, + ACTIONS(6901), 1, + anon_sym_bit_DASHand2, + STATE(3938), 1, sym_comment, - ACTIONS(6907), 2, + ACTIONS(6879), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6885), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6909), 2, + ACTIONS(6891), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6893), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6911), 2, + ACTIONS(6895), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5239), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5237), 20, - anon_sym_DASH2, + ACTIONS(6899), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6883), 4, anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6889), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, + ACTIONS(5237), 6, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [146877] = 16, + [150603] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6905), 1, + ACTIONS(6881), 1, anon_sym_DASH2, - ACTIONS(6913), 1, + ACTIONS(6897), 1, anon_sym_PLUS2, - ACTIONS(6931), 1, + ACTIONS(6901), 1, anon_sym_bit_DASHand2, - ACTIONS(6933), 1, + ACTIONS(6903), 1, anon_sym_bit_DASHxor2, - ACTIONS(6935), 1, - anon_sym_bit_DASHor2, - STATE(3924), 1, + STATE(3939), 1, sym_comment, - ACTIONS(6907), 2, + ACTIONS(6879), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6885), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6909), 2, + ACTIONS(6891), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6893), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6911), 2, + ACTIONS(6895), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6921), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6927), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6929), 2, + ACTIONS(6899), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5237), 4, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6923), 4, + ACTIONS(6883), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6925), 4, + ACTIONS(6889), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [146941] = 4, + ACTIONS(5237), 5, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [150665] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3925), 1, + STATE(3940), 1, + sym_comment, + STATE(5111), 1, + sym_redirection, + ACTIONS(6825), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(6827), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(6909), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [150709] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6915), 1, + aux_sym_cmd_identifier_token41, + STATE(3941), 1, + sym_comment, + ACTIONS(6913), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6911), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [150751] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3942), 1, sym_comment, - ACTIONS(5254), 8, + ACTIONS(5258), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -361728,7 +364204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5248), 21, + ACTIONS(5252), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361750,66 +364226,94 @@ 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, - [146981] = 14, - ACTIONS(247), 1, + [150791] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6905), 1, - anon_sym_DASH2, - ACTIONS(6913), 1, - anon_sym_PLUS2, - ACTIONS(6931), 1, - anon_sym_bit_DASHand2, - STATE(3926), 1, + ACTIONS(3199), 1, + aux_sym_cmd_identifier_token41, + STATE(3943), 1, sym_comment, - ACTIONS(6907), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6909), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6911), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6921), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6927), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6929), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6923), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6925), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5237), 6, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [147041] = 5, + ACTIONS(3197), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3195), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [150833] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6941), 1, + ACTIONS(6921), 1, aux_sym_cmd_identifier_token41, - STATE(3927), 1, + STATE(3944), 1, + sym_comment, + ACTIONS(6919), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6917), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [150875] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6927), 1, + aux_sym_cmd_identifier_token41, + STATE(3945), 1, sym_comment, - ACTIONS(6939), 5, + ACTIONS(6925), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6937), 23, + ACTIONS(6923), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -361833,144 +364337,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [147083] = 15, + [150917] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6905), 1, - anon_sym_DASH2, - ACTIONS(6913), 1, - anon_sym_PLUS2, - ACTIONS(6931), 1, - anon_sym_bit_DASHand2, - ACTIONS(6933), 1, - anon_sym_bit_DASHxor2, - STATE(3928), 1, + STATE(3946), 1, sym_comment, - ACTIONS(6907), 2, + ACTIONS(6929), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6909), 2, + ACTIONS(6931), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6911), 2, + ACTIONS(6933), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6921), 2, + ACTIONS(5239), 3, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6927), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6929), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6923), 4, + anon_sym_PLUS2, + ACTIONS(5237), 20, + anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6925), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5237), 5, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [150963] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3947), 1, + sym_comment, + ACTIONS(6893), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5239), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5237), 22, + anon_sym_DASH2, + anon_sym_in2, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [147145] = 16, + [151005] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6879), 1, + ACTIONS(6881), 1, anon_sym_DASH2, - ACTIONS(6893), 1, - anon_sym_PLUS2, ACTIONS(6897), 1, + anon_sym_PLUS2, + ACTIONS(6901), 1, anon_sym_bit_DASHand2, - ACTIONS(6943), 1, + ACTIONS(6903), 1, anon_sym_bit_DASHxor2, - ACTIONS(6945), 1, + ACTIONS(6905), 1, anon_sym_bit_DASHor2, - STATE(3929), 1, + STATE(3948), 1, sym_comment, - ACTIONS(6877), 2, + ACTIONS(6879), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6883), 2, + ACTIONS(6885), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6887), 2, + ACTIONS(6891), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6889), 2, + ACTIONS(6893), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6891), 2, + ACTIONS(6895), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6895), 2, + ACTIONS(6899), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(5237), 4, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6881), 4, + ACTIONS(6883), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6885), 4, + ACTIONS(6889), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [147209] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6951), 1, - aux_sym_cmd_identifier_token41, - STATE(3930), 1, - sym_comment, - ACTIONS(6949), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6947), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [147251] = 5, + [151069] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(3931), 1, + STATE(3949), 1, sym_comment, - ACTIONS(6909), 2, + ACTIONS(6931), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, ACTIONS(5239), 5, @@ -361982,7 +364478,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5237), 22, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -362002,14 +364498,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [147293] = 6, + [151111] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6939), 1, + aux_sym_cmd_identifier_token41, + STATE(3950), 1, + sym_comment, + ACTIONS(6937), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6935), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [151153] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(3932), 1, + STATE(3951), 1, sym_comment, - STATE(5019), 1, + STATE(5014), 1, sym_redirection, - ACTIONS(6829), 8, + ACTIONS(6941), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -362018,7 +364551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6831), 8, + ACTIONS(6943), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -362027,7 +364560,8 @@ 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(6953), 12, + ACTIONS(6831), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362039,347 +364573,385 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [147337] = 15, + [151197] = 16, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6879), 1, + ACTIONS(6947), 1, anon_sym_DASH2, - ACTIONS(6893), 1, + ACTIONS(6955), 1, anon_sym_PLUS2, - ACTIONS(6897), 1, + ACTIONS(6959), 1, anon_sym_bit_DASHand2, - ACTIONS(6943), 1, + ACTIONS(6961), 1, anon_sym_bit_DASHxor2, - STATE(3933), 1, + ACTIONS(6963), 1, + anon_sym_bit_DASHor2, + STATE(3952), 1, sym_comment, - ACTIONS(6877), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6883), 2, + ACTIONS(6929), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6887), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6889), 2, + ACTIONS(6931), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6891), 2, + ACTIONS(6933), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6895), 2, + ACTIONS(6945), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6953), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6957), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6881), 4, + ACTIONS(5237), 4, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6949), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6885), 4, + ACTIONS(6951), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5237), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [147399] = 17, + [151261] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6879), 1, + ACTIONS(6947), 1, anon_sym_DASH2, - ACTIONS(6893), 1, + ACTIONS(6955), 1, anon_sym_PLUS2, - ACTIONS(6897), 1, + ACTIONS(6959), 1, anon_sym_bit_DASHand2, - ACTIONS(6943), 1, + ACTIONS(6961), 1, anon_sym_bit_DASHxor2, - ACTIONS(6945), 1, + ACTIONS(6963), 1, anon_sym_bit_DASHor2, - ACTIONS(6955), 1, + ACTIONS(6965), 1, anon_sym_and2, - STATE(3934), 1, + STATE(3953), 1, sym_comment, - ACTIONS(6877), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6883), 2, + ACTIONS(6929), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6887), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6889), 2, + ACTIONS(6931), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6891), 2, + ACTIONS(6933), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6895), 2, + ACTIONS(6945), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6953), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6957), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(5237), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(6881), 4, + ACTIONS(6949), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6885), 4, + ACTIONS(6951), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [147465] = 9, + [151327] = 18, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6879), 1, + ACTIONS(6947), 1, anon_sym_DASH2, - ACTIONS(6893), 1, + ACTIONS(6955), 1, anon_sym_PLUS2, - STATE(3935), 1, + ACTIONS(6959), 1, + anon_sym_bit_DASHand2, + ACTIONS(6961), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6963), 1, + anon_sym_bit_DASHor2, + ACTIONS(6965), 1, + anon_sym_and2, + ACTIONS(6967), 1, + anon_sym_xor2, + STATE(3954), 1, sym_comment, - ACTIONS(5239), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6883), 2, + ACTIONS(5237), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6929), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6889), 2, + ACTIONS(6931), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6891), 2, + ACTIONS(6933), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5237), 19, + ACTIONS(6945), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6953), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6957), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6949), 4, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6951), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [147515] = 10, + [151395] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6879), 1, + ACTIONS(6947), 1, anon_sym_DASH2, - ACTIONS(6893), 1, + ACTIONS(6955), 1, anon_sym_PLUS2, - STATE(3936), 1, + STATE(3955), 1, sym_comment, - ACTIONS(5239), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6883), 2, + ACTIONS(6929), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6889), 2, + ACTIONS(6931), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6891), 2, + ACTIONS(6933), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6895), 2, + ACTIONS(6945), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6957), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5237), 17, + ACTIONS(6949), 4, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6951), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [147567] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3937), 1, - sym_comment, - ACTIONS(6889), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5239), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5237), 22, - anon_sym_DASH2, - anon_sym_in2, + ACTIONS(5237), 9, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [147609] = 18, + [151451] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3956), 1, + sym_comment, + STATE(5037), 1, + sym_redirection, + ACTIONS(6825), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(6827), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(6969), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [151495] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6879), 1, + ACTIONS(6947), 1, anon_sym_DASH2, - ACTIONS(6893), 1, - anon_sym_PLUS2, - ACTIONS(6897), 1, - anon_sym_bit_DASHand2, - ACTIONS(6943), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6945), 1, - anon_sym_bit_DASHor2, ACTIONS(6955), 1, - anon_sym_and2, - ACTIONS(6957), 1, - anon_sym_xor2, - STATE(3938), 1, + anon_sym_PLUS2, + STATE(3957), 1, sym_comment, - ACTIONS(5237), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(6877), 2, + ACTIONS(5239), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6883), 2, + ACTIONS(6929), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6887), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6889), 2, + ACTIONS(6931), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6891), 2, + ACTIONS(6933), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6895), 2, + ACTIONS(6957), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6881), 4, + ACTIONS(5237), 17, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6885), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [147677] = 17, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [151547] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6905), 1, + STATE(3958), 1, + sym_comment, + STATE(5103), 1, + sym_redirection, + ACTIONS(6941), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(6943), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(6823), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [151591] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6947), 1, anon_sym_DASH2, - ACTIONS(6913), 1, + ACTIONS(6955), 1, anon_sym_PLUS2, - ACTIONS(6931), 1, - anon_sym_bit_DASHand2, - ACTIONS(6933), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6935), 1, - anon_sym_bit_DASHor2, - ACTIONS(6959), 1, - anon_sym_and2, - STATE(3939), 1, + STATE(3959), 1, sym_comment, - ACTIONS(6907), 2, + ACTIONS(6929), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6909), 2, + ACTIONS(6931), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6911), 2, + ACTIONS(6933), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6921), 2, + ACTIONS(6945), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6927), 2, + ACTIONS(6953), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6929), 2, + ACTIONS(6957), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5237), 3, - anon_sym_EQ_GT, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6923), 4, + ACTIONS(6949), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6925), 4, + ACTIONS(6951), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [147743] = 11, + ACTIONS(5237), 7, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [151649] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6879), 1, + ACTIONS(6947), 1, anon_sym_DASH2, - ACTIONS(6893), 1, + ACTIONS(6955), 1, anon_sym_PLUS2, - STATE(3940), 1, + STATE(3960), 1, sym_comment, - ACTIONS(6877), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6883), 2, + ACTIONS(6929), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6889), 2, + ACTIONS(6931), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6891), 2, + ACTIONS(6933), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6895), 2, + ACTIONS(6945), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6957), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6885), 4, + ACTIONS(6951), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, @@ -362398,20 +364970,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [147797] = 5, + [151703] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6965), 1, + ACTIONS(6975), 1, aux_sym_cmd_identifier_token41, - STATE(3941), 1, + STATE(3961), 1, sym_comment, - ACTIONS(6963), 5, + ACTIONS(6973), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6961), 23, + ACTIONS(6971), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -362435,121 +365007,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [147839] = 6, + [151745] = 14, ACTIONS(247), 1, anon_sym_POUND, - STATE(3942), 1, + ACTIONS(6947), 1, + anon_sym_DASH2, + ACTIONS(6955), 1, + anon_sym_PLUS2, + ACTIONS(6959), 1, + anon_sym_bit_DASHand2, + STATE(3962), 1, sym_comment, - STATE(5128), 1, - sym_redirection, - ACTIONS(6967), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(6969), 8, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(6833), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [147883] = 18, + ACTIONS(6929), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6931), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6933), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6945), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6953), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6957), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6949), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6951), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5237), 6, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [151805] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6905), 1, + ACTIONS(6947), 1, anon_sym_DASH2, - ACTIONS(6913), 1, + ACTIONS(6955), 1, anon_sym_PLUS2, - ACTIONS(6931), 1, + ACTIONS(6959), 1, anon_sym_bit_DASHand2, - ACTIONS(6933), 1, + ACTIONS(6961), 1, anon_sym_bit_DASHxor2, - ACTIONS(6935), 1, - anon_sym_bit_DASHor2, - ACTIONS(6959), 1, - anon_sym_and2, - ACTIONS(6971), 1, - anon_sym_xor2, - STATE(3943), 1, + STATE(3963), 1, sym_comment, - ACTIONS(5237), 2, - anon_sym_EQ_GT, - anon_sym_or2, - ACTIONS(6907), 2, + ACTIONS(6929), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6909), 2, + ACTIONS(6931), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6911), 2, + ACTIONS(6933), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6921), 2, + ACTIONS(6945), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6927), 2, + ACTIONS(6953), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6929), 2, + ACTIONS(6957), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6923), 4, + ACTIONS(6949), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6925), 4, + ACTIONS(6951), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [147951] = 10, + ACTIONS(5237), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [151867] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6905), 1, + ACTIONS(6947), 1, anon_sym_DASH2, - ACTIONS(6913), 1, + ACTIONS(6955), 1, anon_sym_PLUS2, - STATE(3944), 1, + STATE(3964), 1, sym_comment, ACTIONS(5239), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6907), 2, + ACTIONS(6929), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6909), 2, + ACTIONS(6931), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6911), 2, + ACTIONS(6933), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6929), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5237), 17, + ACTIONS(5237), 19, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -362562,23 +365136,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [148003] = 5, + [151917] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6977), 1, + ACTIONS(3187), 1, aux_sym_cmd_identifier_token41, - STATE(3945), 1, + STATE(3965), 1, sym_comment, - ACTIONS(6975), 5, + ACTIONS(3185), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6973), 23, + ACTIONS(3183), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -362602,36 +365178,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [148045] = 11, + [151959] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6905), 1, + ACTIONS(6881), 1, anon_sym_DASH2, - ACTIONS(6913), 1, + ACTIONS(6897), 1, anon_sym_PLUS2, - STATE(3946), 1, + STATE(3966), 1, sym_comment, - ACTIONS(6907), 2, + ACTIONS(5239), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6885), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6909), 2, + ACTIONS(6893), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6911), 2, + ACTIONS(6895), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6921), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6929), 2, + ACTIONS(6899), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6925), 4, + ACTIONS(5237), 17, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5237), 13, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [152011] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3967), 1, + sym_comment, + ACTIONS(6885), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6893), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6895), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5239), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5237), 20, + anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, anon_sym_and2, @@ -362640,143 +365248,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [148099] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3187), 1, - aux_sym_cmd_identifier_token41, - STATE(3947), 1, - sym_comment, - ACTIONS(3185), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3183), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [148141] = 12, + [152057] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6905), 1, + ACTIONS(6881), 1, anon_sym_DASH2, - ACTIONS(6913), 1, + ACTIONS(6897), 1, anon_sym_PLUS2, - STATE(3948), 1, + STATE(3968), 1, sym_comment, - ACTIONS(6907), 2, + ACTIONS(6879), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6885), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6909), 2, + ACTIONS(6893), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6911), 2, + ACTIONS(6895), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6921), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6929), 2, + ACTIONS(6899), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6923), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6925), 4, + ACTIONS(6889), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5237), 9, + ACTIONS(5237), 13, + anon_sym_in2, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [148197] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6983), 1, - aux_sym_cmd_identifier_token41, - STATE(3949), 1, - sym_comment, - ACTIONS(6981), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6979), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [148239] = 5, + [152111] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3199), 1, + ACTIONS(6981), 1, aux_sym_cmd_identifier_token41, - STATE(3950), 1, + STATE(3969), 1, sym_comment, - ACTIONS(3197), 5, + ACTIONS(6979), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(3195), 23, + ACTIONS(6977), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -362800,83 +365339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [148281] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3951), 1, - sym_comment, - STATE(5106), 1, - sym_redirection, - ACTIONS(6829), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(6831), 8, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(6985), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [148325] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3952), 1, - sym_comment, - STATE(5005), 1, - sym_redirection, - ACTIONS(6967), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(6969), 8, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(6827), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [148369] = 23, + [152153] = 23, ACTIONS(45), 1, anon_sym_DASH2, ACTIONS(247), 1, @@ -362885,43 +365348,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token5, ACTIONS(3521), 1, aux_sym_expr_unary_token1, - ACTIONS(5856), 1, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(6663), 1, sym_identifier, - ACTIONS(6673), 1, + ACTIONS(6669), 1, anon_sym_DOLLAR, - ACTIONS(6677), 1, + ACTIONS(6673), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, + ACTIONS(6675), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, + ACTIONS(6677), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, + ACTIONS(6679), 1, aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, + STATE(1729), 1, sym__val_number, - STATE(2478), 1, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2523), 1, sym__expr_unary_minus, - STATE(3953), 1, + STATE(3970), 1, sym_comment, - STATE(3979), 1, + STATE(3997), 1, sym_expr_parenthesized, - STATE(4294), 1, + STATE(4297), 1, sym_val_number, - STATE(4599), 1, + STATE(4523), 1, sym__binary_predicate, - STATE(4600), 1, + STATE(4553), 1, sym__predicate, ACTIONS(89), 2, anon_sym_true, anon_sym_false, - STATE(4580), 2, + STATE(4582), 2, sym_expr_unary, sym_val_bool, - STATE(5002), 2, + STATE(5062), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(429), 5, @@ -362930,357 +365393,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [148446] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3954), 1, - sym_comment, - ACTIONS(2234), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2238), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [148485] = 23, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, + [152230] = 23, + ACTIONS(45), 1, anon_sym_DASH2, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3495), 1, - aux_sym_expr_unary_token1, - ACTIONS(6667), 1, - sym_identifier, - ACTIONS(6671), 1, - anon_sym_LPAREN, - ACTIONS(6673), 1, - anon_sym_DOLLAR, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, - aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, - sym__val_number, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(3955), 1, - sym_comment, - STATE(3968), 1, - sym_expr_parenthesized, - STATE(4294), 1, - sym_val_number, - STATE(4413), 1, - sym__binary_predicate, - STATE(4414), 1, - sym__predicate, - ACTIONS(213), 2, - anon_sym_true, - anon_sym_false, - STATE(4502), 2, - sym_expr_unary, - sym_val_bool, - STATE(5016), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [148562] = 23, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, ACTIONS(427), 1, aux_sym__val_number_token5, - ACTIONS(3495), 1, + ACTIONS(3521), 1, aux_sym_expr_unary_token1, - ACTIONS(6667), 1, - sym_identifier, - ACTIONS(6671), 1, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(6673), 1, - anon_sym_DOLLAR, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, - aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, - sym__val_number, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(3956), 1, - sym_comment, - STATE(3968), 1, - sym_expr_parenthesized, - STATE(4294), 1, - sym_val_number, - STATE(4418), 1, - sym__binary_predicate, - STATE(4419), 1, - sym__predicate, - ACTIONS(213), 2, - anon_sym_true, - anon_sym_false, - STATE(4502), 2, - sym_expr_unary, - sym_val_bool, - STATE(5016), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [148639] = 23, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3495), 1, - aux_sym_expr_unary_token1, - ACTIONS(6667), 1, + ACTIONS(6663), 1, sym_identifier, - ACTIONS(6671), 1, - anon_sym_LPAREN, - ACTIONS(6673), 1, + ACTIONS(6669), 1, anon_sym_DOLLAR, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, - aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, - sym__val_number, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(3957), 1, - sym_comment, - STATE(3968), 1, - sym_expr_parenthesized, - STATE(4294), 1, - sym_val_number, - STATE(4433), 1, - sym__binary_predicate, - STATE(4436), 1, - sym__predicate, - ACTIONS(213), 2, - anon_sym_true, - anon_sym_false, - STATE(4502), 2, - sym_expr_unary, - sym_val_bool, - STATE(5016), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [148716] = 23, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3495), 1, - aux_sym_expr_unary_token1, - ACTIONS(6667), 1, - sym_identifier, - ACTIONS(6671), 1, - anon_sym_LPAREN, ACTIONS(6673), 1, - anon_sym_DOLLAR, - ACTIONS(6677), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, + ACTIONS(6675), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, - aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, - sym__val_number, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(3958), 1, - sym_comment, - STATE(3968), 1, - sym_expr_parenthesized, - STATE(4294), 1, - sym_val_number, - STATE(4449), 1, - sym__binary_predicate, - STATE(4450), 1, - sym__predicate, - ACTIONS(213), 2, - anon_sym_true, - anon_sym_false, - STATE(4502), 2, - sym_expr_unary, - sym_val_bool, - STATE(5016), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [148793] = 23, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3495), 1, - aux_sym_expr_unary_token1, - ACTIONS(6667), 1, - sym_identifier, - ACTIONS(6671), 1, - anon_sym_LPAREN, - ACTIONS(6673), 1, - anon_sym_DOLLAR, ACTIONS(6677), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, - aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, - sym__val_number, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(3959), 1, - sym_comment, - STATE(3968), 1, - sym_expr_parenthesized, - STATE(4294), 1, - sym_val_number, - STATE(4451), 1, - sym__binary_predicate, - STATE(4452), 1, - sym__predicate, - ACTIONS(213), 2, - anon_sym_true, - anon_sym_false, - STATE(4502), 2, - sym_expr_unary, - sym_val_bool, - STATE(5016), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [148870] = 23, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DASH2, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3495), 1, - aux_sym_expr_unary_token1, - ACTIONS(6667), 1, - sym_identifier, - ACTIONS(6671), 1, - anon_sym_LPAREN, - ACTIONS(6673), 1, - anon_sym_DOLLAR, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token1, ACTIONS(6679), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, + STATE(1729), 1, sym__val_number, - STATE(2145), 1, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2523), 1, sym__expr_unary_minus, - STATE(3960), 1, + STATE(3971), 1, sym_comment, - STATE(3968), 1, + STATE(3997), 1, sym_expr_parenthesized, - STATE(4294), 1, + STATE(4297), 1, sym_val_number, - STATE(4453), 1, - sym__binary_predicate, - STATE(4455), 1, + STATE(4587), 1, sym__predicate, - ACTIONS(213), 2, + STATE(4599), 1, + sym__binary_predicate, + ACTIONS(89), 2, anon_sym_true, anon_sym_false, - STATE(4502), 2, + STATE(4582), 2, sym_expr_unary, sym_val_bool, - STATE(5016), 2, + STATE(5062), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(429), 5, @@ -363289,61 +365447,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [148947] = 18, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5511), 1, - anon_sym_DASH2, - ACTIONS(5521), 1, - anon_sym_PLUS2, - ACTIONS(5544), 1, - anon_sym_bit_DASHand2, - ACTIONS(5546), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5548), 1, - anon_sym_bit_DASHor2, - ACTIONS(5550), 1, - anon_sym_and2, - ACTIONS(5552), 1, - anon_sym_xor2, - ACTIONS(6987), 1, - anon_sym_or2, - STATE(3961), 1, - sym_comment, - ACTIONS(5509), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5513), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5517), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5519), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5523), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5542), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5515), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5540), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - [149014] = 4, + [152307] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3962), 1, + STATE(3972), 1, sym_comment, - ACTIONS(5218), 8, + ACTIONS(1820), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -363352,7 +365461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 20, + ACTIONS(1828), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -363373,7 +365482,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, - [149053] = 23, + [152346] = 23, ACTIONS(45), 1, anon_sym_DASH2, ACTIONS(247), 1, @@ -363382,97 +365491,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token5, ACTIONS(3521), 1, aux_sym_expr_unary_token1, - ACTIONS(5856), 1, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(6663), 1, sym_identifier, - ACTIONS(6673), 1, + ACTIONS(6669), 1, anon_sym_DOLLAR, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, - aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, - sym__val_number, - STATE(2478), 1, - sym__expr_unary_minus, - STATE(3963), 1, - sym_comment, - STATE(3979), 1, - sym_expr_parenthesized, - STATE(4294), 1, - sym_val_number, - STATE(4520), 1, - sym__binary_predicate, - STATE(4601), 1, - sym__predicate, - ACTIONS(89), 2, - anon_sym_true, - anon_sym_false, - STATE(4580), 2, - sym_expr_unary, - sym_val_bool, - STATE(5002), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [149130] = 23, - ACTIONS(45), 1, - anon_sym_DASH2, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3521), 1, - aux_sym_expr_unary_token1, - ACTIONS(5856), 1, - anon_sym_LPAREN, - ACTIONS(6667), 1, - sym_identifier, ACTIONS(6673), 1, - anon_sym_DOLLAR, - ACTIONS(6677), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, + ACTIONS(6675), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, + ACTIONS(6677), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, + ACTIONS(6679), 1, aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, + STATE(1729), 1, sym__val_number, - STATE(2478), 1, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2523), 1, sym__expr_unary_minus, - STATE(3964), 1, + STATE(3973), 1, sym_comment, - STATE(3979), 1, + STATE(3997), 1, sym_expr_parenthesized, - STATE(4294), 1, + STATE(4297), 1, sym_val_number, - STATE(4528), 1, + STATE(4608), 1, sym__predicate, - STATE(4550), 1, + STATE(4623), 1, sym__binary_predicate, ACTIONS(89), 2, anon_sym_true, anon_sym_false, - STATE(4580), 2, + STATE(4582), 2, sym_expr_unary, sym_val_bool, - STATE(5002), 2, + STATE(5062), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(429), 5, @@ -363481,106 +365536,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [149207] = 23, - ACTIONS(45), 1, - anon_sym_DASH2, + [152423] = 23, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(427), 1, - aux_sym__val_number_token5, - ACTIONS(3521), 1, - aux_sym_expr_unary_token1, - ACTIONS(5856), 1, - anon_sym_LPAREN, - ACTIONS(6667), 1, - sym_identifier, - ACTIONS(6673), 1, - anon_sym_DOLLAR, - ACTIONS(6677), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, - aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, - sym__val_number, - STATE(2478), 1, - sym__expr_unary_minus, - STATE(3965), 1, - sym_comment, - STATE(3979), 1, - sym_expr_parenthesized, - STATE(4294), 1, - sym_val_number, - STATE(4531), 1, - sym__binary_predicate, - STATE(4536), 1, - sym__predicate, - ACTIONS(89), 2, - anon_sym_true, - anon_sym_false, - STATE(4580), 2, - sym_expr_unary, - sym_val_bool, - STATE(5002), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(429), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [149284] = 23, - ACTIONS(45), 1, + ACTIONS(385), 1, anon_sym_DASH2, - ACTIONS(247), 1, - anon_sym_POUND, ACTIONS(427), 1, aux_sym__val_number_token5, - ACTIONS(3521), 1, + ACTIONS(3495), 1, aux_sym_expr_unary_token1, - ACTIONS(5856), 1, - anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(6663), 1, sym_identifier, - ACTIONS(6673), 1, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6669), 1, anon_sym_DOLLAR, - ACTIONS(6677), 1, + ACTIONS(6673), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, + ACTIONS(6675), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, + ACTIONS(6677), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, + ACTIONS(6679), 1, aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, + STATE(1729), 1, sym__val_number, - STATE(2478), 1, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2131), 1, sym__expr_unary_minus, - STATE(3966), 1, + STATE(3974), 1, sym_comment, - STATE(3979), 1, + STATE(3977), 1, sym_expr_parenthesized, - STATE(4294), 1, + STATE(4297), 1, sym_val_number, - STATE(4505), 1, + STATE(4352), 1, sym__binary_predicate, - STATE(4539), 1, + STATE(4353), 1, sym__predicate, - ACTIONS(89), 2, + ACTIONS(213), 2, anon_sym_true, anon_sym_false, - STATE(4580), 2, + STATE(4401), 2, sym_expr_unary, sym_val_bool, - STATE(5002), 2, + STATE(5176), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(429), 5, @@ -363589,7 +365590,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [149361] = 23, + [152500] = 23, ACTIONS(45), 1, anon_sym_DASH2, ACTIONS(247), 1, @@ -363598,43 +365599,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token5, ACTIONS(3521), 1, aux_sym_expr_unary_token1, - ACTIONS(5856), 1, + ACTIONS(5803), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(6663), 1, sym_identifier, - ACTIONS(6673), 1, + ACTIONS(6669), 1, anon_sym_DOLLAR, - ACTIONS(6677), 1, + ACTIONS(6673), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6679), 1, + ACTIONS(6675), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6681), 1, + ACTIONS(6677), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6683), 1, + ACTIONS(6679), 1, aux_sym__val_number_decimal_token4, - STATE(1810), 1, - sym__val_number_decimal, - STATE(1811), 1, + STATE(1729), 1, sym__val_number, - STATE(2478), 1, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2523), 1, sym__expr_unary_minus, - STATE(3967), 1, + STATE(3975), 1, sym_comment, - STATE(3979), 1, + STATE(3997), 1, sym_expr_parenthesized, - STATE(4294), 1, + STATE(4297), 1, sym_val_number, - STATE(4541), 1, - sym__binary_predicate, - STATE(4575), 1, + STATE(4573), 1, sym__predicate, + STATE(4616), 1, + sym__binary_predicate, ACTIONS(89), 2, anon_sym_true, anon_sym_false, - STATE(4580), 2, + STATE(4582), 2, sym_expr_unary, sym_val_bool, - STATE(5002), 2, + STATE(5062), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(429), 5, @@ -363643,99 +365644,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [149438] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3968), 1, - sym_comment, - ACTIONS(6991), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6997), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6993), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6995), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6989), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [149483] = 18, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6299), 1, - anon_sym_DASH2, - ACTIONS(6307), 1, - anon_sym_PLUS2, - ACTIONS(6319), 1, - anon_sym_bit_DASHand2, - ACTIONS(6321), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6323), 1, - anon_sym_bit_DASHor2, - ACTIONS(6325), 1, - anon_sym_and2, - ACTIONS(6327), 1, - anon_sym_xor2, - ACTIONS(6999), 1, - anon_sym_or2, - STATE(3969), 1, - sym_comment, - ACTIONS(6301), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6303), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6305), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6309), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6311), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6317), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6313), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6315), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - [149550] = 4, + [152577] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3970), 1, + STATE(3976), 1, sym_comment, - ACTIONS(1866), 8, + ACTIONS(2272), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -363744,7 +365658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1874), 20, + ACTIONS(2276), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -363765,22 +365679,28 @@ 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, - [149589] = 4, + [152616] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(3971), 1, + STATE(3977), 1, sym_comment, - ACTIONS(2187), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2189), 20, - ts_builtin_sym_end, + ACTIONS(6985), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6991), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6987), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6989), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6983), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363792,55 +365712,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [149628] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [152661] = 23, ACTIONS(247), 1, anon_sym_POUND, - STATE(3972), 1, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6663), 1, + sym_identifier, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6669), 1, + anon_sym_DOLLAR, + ACTIONS(6673), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6675), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token4, + STATE(1729), 1, + sym__val_number, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(3977), 1, + sym_expr_parenthesized, + STATE(3978), 1, sym_comment, - ACTIONS(2252), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2256), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [149667] = 4, + STATE(4297), 1, + sym_val_number, + STATE(4354), 1, + sym__binary_predicate, + STATE(4355), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4401), 2, + sym_expr_unary, + sym_val_bool, + STATE(5176), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [152738] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(3973), 1, + STATE(3979), 1, sym_comment, - ACTIONS(1878), 8, + ACTIONS(2230), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -363849,7 +365785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1886), 20, + ACTIONS(2232), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -363870,273 +365806,423 @@ 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, - [149706] = 18, + [152777] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6947), 1, + anon_sym_DASH2, + ACTIONS(6955), 1, + anon_sym_PLUS2, + ACTIONS(6959), 1, + anon_sym_bit_DASHand2, + ACTIONS(6961), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6963), 1, + anon_sym_bit_DASHor2, + ACTIONS(6965), 1, + anon_sym_and2, + ACTIONS(6967), 1, + anon_sym_xor2, + ACTIONS(6993), 1, + anon_sym_or2, + STATE(3980), 1, + sym_comment, + ACTIONS(6929), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6931), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6933), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6945), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6953), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6957), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6949), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6951), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [152844] = 18, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6879), 1, + ACTIONS(6287), 1, anon_sym_DASH2, - ACTIONS(6893), 1, + ACTIONS(6295), 1, anon_sym_PLUS2, - ACTIONS(6897), 1, + ACTIONS(6307), 1, anon_sym_bit_DASHand2, - ACTIONS(6943), 1, + ACTIONS(6309), 1, anon_sym_bit_DASHxor2, - ACTIONS(6945), 1, + ACTIONS(6311), 1, anon_sym_bit_DASHor2, - ACTIONS(6955), 1, + ACTIONS(6313), 1, anon_sym_and2, - ACTIONS(6957), 1, + ACTIONS(6315), 1, anon_sym_xor2, - ACTIONS(7001), 1, + ACTIONS(6995), 1, anon_sym_or2, - STATE(3974), 1, + STATE(3981), 1, sym_comment, - ACTIONS(6877), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6883), 2, + ACTIONS(6289), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6887), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6889), 2, + ACTIONS(6291), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6891), 2, + ACTIONS(6293), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6895), 2, + ACTIONS(6297), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6881), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6885), 4, + ACTIONS(6299), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6305), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6301), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [149773] = 18, + ACTIONS(6303), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [152911] = 18, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5429), 1, + ACTIONS(5503), 1, anon_sym_DASH2, - ACTIONS(5431), 1, + ACTIONS(5511), 1, anon_sym_PLUS2, - ACTIONS(5443), 1, + ACTIONS(5523), 1, anon_sym_bit_DASHand2, - ACTIONS(5445), 1, + ACTIONS(5525), 1, anon_sym_bit_DASHxor2, - ACTIONS(5447), 1, + ACTIONS(5527), 1, anon_sym_bit_DASHor2, - ACTIONS(5449), 1, + ACTIONS(5529), 1, anon_sym_and2, - ACTIONS(5451), 1, + ACTIONS(5531), 1, anon_sym_xor2, - ACTIONS(7003), 1, + ACTIONS(6997), 1, anon_sym_or2, - STATE(3975), 1, + STATE(3982), 1, sym_comment, - ACTIONS(5336), 2, + ACTIONS(5505), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5338), 2, + ACTIONS(5507), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5340), 2, + ACTIONS(5509), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5433), 2, + ACTIONS(5513), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5435), 2, + ACTIONS(5515), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5441), 2, + ACTIONS(5521), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5437), 4, + ACTIONS(5517), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5439), 4, + ACTIONS(5519), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [149840] = 18, + [152978] = 18, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6370), 1, + ACTIONS(5387), 1, anon_sym_DASH2, - ACTIONS(6384), 1, + ACTIONS(5401), 1, anon_sym_PLUS2, - ACTIONS(6388), 1, + ACTIONS(5405), 1, anon_sym_bit_DASHand2, - ACTIONS(6390), 1, + ACTIONS(5474), 1, anon_sym_bit_DASHxor2, - ACTIONS(6402), 1, + ACTIONS(5479), 1, anon_sym_bit_DASHor2, - ACTIONS(6404), 1, + ACTIONS(5483), 1, anon_sym_and2, - ACTIONS(6406), 1, + ACTIONS(5485), 1, anon_sym_xor2, - ACTIONS(7005), 1, + ACTIONS(6999), 1, anon_sym_or2, - STATE(3976), 1, + STATE(3983), 1, sym_comment, - ACTIONS(6368), 2, + ACTIONS(5385), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6374), 2, + ACTIONS(5391), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6378), 2, + ACTIONS(5395), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6380), 2, + ACTIONS(5397), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6382), 2, + ACTIONS(5399), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6386), 2, + ACTIONS(5403), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6372), 4, + ACTIONS(5389), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6376), 4, + ACTIONS(5393), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [149907] = 18, + [153045] = 18, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6835), 1, + ACTIONS(6833), 1, anon_sym_PLUS2, - ACTIONS(6863), 1, + ACTIONS(6851), 1, anon_sym_bit_DASHand2, - ACTIONS(6865), 1, + ACTIONS(6853), 1, anon_sym_bit_DASHxor2, - ACTIONS(6867), 1, + ACTIONS(6855), 1, anon_sym_bit_DASHor2, - ACTIONS(6871), 1, + ACTIONS(6857), 1, anon_sym_and2, - ACTIONS(6875), 1, + ACTIONS(6859), 1, anon_sym_xor2, - ACTIONS(7007), 1, + ACTIONS(7001), 1, anon_sym_DASH2, - ACTIONS(7009), 1, + ACTIONS(7003), 1, anon_sym_or2, - STATE(3977), 1, + STATE(3984), 1, sym_comment, - ACTIONS(6837), 2, + ACTIONS(6835), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6839), 2, + ACTIONS(6837), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6841), 2, + ACTIONS(6839), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6851), 2, + ACTIONS(6841), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6853), 2, + ACTIONS(6843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6861), 2, + ACTIONS(6849), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6855), 4, + ACTIONS(6845), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6859), 4, + ACTIONS(6847), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [149974] = 18, + [153112] = 23, + ACTIONS(45), 1, + anon_sym_DASH2, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6905), 1, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3521), 1, + aux_sym_expr_unary_token1, + ACTIONS(5803), 1, + anon_sym_LPAREN, + ACTIONS(6663), 1, + sym_identifier, + ACTIONS(6669), 1, + anon_sym_DOLLAR, + ACTIONS(6673), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6675), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token4, + STATE(1729), 1, + sym__val_number, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2523), 1, + sym__expr_unary_minus, + STATE(3985), 1, + sym_comment, + STATE(3997), 1, + sym_expr_parenthesized, + STATE(4297), 1, + sym_val_number, + STATE(4554), 1, + sym__binary_predicate, + STATE(4568), 1, + sym__predicate, + ACTIONS(89), 2, + anon_sym_true, + anon_sym_false, + STATE(4582), 2, + sym_expr_unary, + sym_val_bool, + STATE(5062), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [153189] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6881), 1, anon_sym_DASH2, - ACTIONS(6913), 1, + ACTIONS(6887), 1, + anon_sym_and2, + ACTIONS(6897), 1, anon_sym_PLUS2, - ACTIONS(6931), 1, + ACTIONS(6901), 1, anon_sym_bit_DASHand2, - ACTIONS(6933), 1, + ACTIONS(6903), 1, anon_sym_bit_DASHxor2, - ACTIONS(6935), 1, + ACTIONS(6905), 1, anon_sym_bit_DASHor2, - ACTIONS(6959), 1, - anon_sym_and2, - ACTIONS(6971), 1, + ACTIONS(6907), 1, anon_sym_xor2, - ACTIONS(7011), 1, + ACTIONS(7005), 1, anon_sym_or2, - STATE(3978), 1, + STATE(3986), 1, sym_comment, - ACTIONS(6907), 2, + ACTIONS(6879), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6885), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6909), 2, + ACTIONS(6891), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6893), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6911), 2, + ACTIONS(6895), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6921), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6927), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6929), 2, + ACTIONS(6899), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6923), 4, + ACTIONS(6883), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6925), 4, + ACTIONS(6889), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [150041] = 7, + [153256] = 23, + ACTIONS(45), 1, + anon_sym_DASH2, ACTIONS(247), 1, anon_sym_POUND, - STATE(3979), 1, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3521), 1, + aux_sym_expr_unary_token1, + ACTIONS(5803), 1, + anon_sym_LPAREN, + ACTIONS(6663), 1, + sym_identifier, + ACTIONS(6669), 1, + anon_sym_DOLLAR, + ACTIONS(6673), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6675), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token4, + STATE(1729), 1, + sym__val_number, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2523), 1, + sym__expr_unary_minus, + STATE(3987), 1, sym_comment, - ACTIONS(7013), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7019), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7015), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7017), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6989), 15, + STATE(3997), 1, + sym_expr_parenthesized, + STATE(4297), 1, + sym_val_number, + STATE(4529), 1, + sym__binary_predicate, + STATE(4540), 1, + sym__predicate, + ACTIONS(89), 2, + anon_sym_true, + anon_sym_false, + STATE(4582), 2, + sym_expr_unary, + sym_val_bool, + STATE(5062), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [153333] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(3988), 1, + sym_comment, + ACTIONS(1802), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1810), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -364149,117 +366235,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [150085] = 12, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [153372] = 23, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym_unquoted_token2, - ACTIONS(6203), 1, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6663), 1, + sym_identifier, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6669), 1, anon_sym_DOLLAR, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(7021), 1, - anon_sym_DOT, - ACTIONS(7025), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7027), 1, - aux_sym__immediate_decimal_token5, - STATE(3980), 1, + ACTIONS(6673), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6675), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token4, + STATE(1729), 1, + sym__val_number, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(3977), 1, + sym_expr_parenthesized, + STATE(3989), 1, sym_comment, - STATE(4060), 1, - sym__immediate_decimal, - ACTIONS(7023), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3481), 2, - sym__expr_parenthesized_immediate, + STATE(4297), 1, + sym_val_number, + STATE(4340), 1, + sym__binary_predicate, + STATE(4341), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4401), 2, + sym_expr_unary, + sym_val_bool, + STATE(5176), 2, + sym__where_predicate_lhs, sym_val_variable, - ACTIONS(1544), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [150139] = 11, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [153449] = 23, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym_unquoted_token2, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(6227), 1, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6663), 1, + sym_identifier, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6669), 1, anon_sym_DOLLAR, - ACTIONS(7031), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7033), 1, - aux_sym__immediate_decimal_token5, - STATE(3981), 1, + ACTIONS(6673), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6675), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token4, + STATE(1729), 1, + sym__val_number, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(3977), 1, + sym_expr_parenthesized, + STATE(3990), 1, sym_comment, - STATE(4171), 1, - sym__immediate_decimal, - ACTIONS(7029), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3436), 2, - sym__expr_parenthesized_immediate, + STATE(4297), 1, + sym_val_number, + STATE(4342), 1, + sym__binary_predicate, + STATE(4346), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4401), 2, + sym_expr_unary, + sym_val_bool, + STATE(5176), 2, + sym__where_predicate_lhs, sym_val_variable, - ACTIONS(1544), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [150190] = 12, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [153526] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym_unquoted_token2, - ACTIONS(6333), 1, - anon_sym_DOLLAR, - ACTIONS(6335), 1, - anon_sym_LPAREN2, - ACTIONS(7035), 1, - anon_sym_DOT, - ACTIONS(7039), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7041), 1, - aux_sym__immediate_decimal_token5, - STATE(3982), 1, + STATE(3991), 1, sym_comment, - STATE(4078), 1, - sym__immediate_decimal, - ACTIONS(7037), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3533), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1544), 15, + ACTIONS(2258), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2262), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -364272,112 +366378,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [153565] = 18, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6347), 1, + anon_sym_DASH2, + ACTIONS(6353), 1, + anon_sym_PLUS2, + ACTIONS(6365), 1, + anon_sym_bit_DASHand2, + ACTIONS(6367), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6373), 1, + anon_sym_bit_DASHor2, + ACTIONS(6394), 1, anon_sym_and2, + ACTIONS(6398), 1, anon_sym_xor2, + ACTIONS(7007), 1, anon_sym_or2, - [150243] = 11, + STATE(3992), 1, + sym_comment, + ACTIONS(6345), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6349), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6351), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6355), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6361), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6363), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6357), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6359), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [153632] = 23, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1579), 1, - aux_sym_unquoted_token2, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(6227), 1, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6663), 1, + sym_identifier, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6669), 1, anon_sym_DOLLAR, - ACTIONS(7031), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7033), 1, - aux_sym__immediate_decimal_token5, - STATE(3983), 1, + ACTIONS(6673), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6675), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token4, + STATE(1729), 1, + sym__val_number, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(3977), 1, + sym_expr_parenthesized, + STATE(3993), 1, sym_comment, - STATE(4176), 1, - sym__immediate_decimal, - ACTIONS(7029), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3431), 2, - sym__expr_parenthesized_immediate, + STATE(4297), 1, + sym_val_number, + STATE(4347), 1, + sym__binary_predicate, + STATE(4348), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4401), 2, + sym_expr_unary, + sym_val_bool, + STATE(5176), 2, + sym__where_predicate_lhs, sym_val_variable, - ACTIONS(1577), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [150294] = 11, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [153709] = 23, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym_unquoted_token2, - ACTIONS(6335), 1, - anon_sym_LPAREN2, - ACTIONS(6349), 1, + ACTIONS(385), 1, + anon_sym_DASH2, + ACTIONS(427), 1, + aux_sym__val_number_token5, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6663), 1, + sym_identifier, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6669), 1, anon_sym_DOLLAR, - ACTIONS(7045), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7047), 1, - aux_sym__immediate_decimal_token5, - STATE(3984), 1, + ACTIONS(6673), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6675), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6677), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6679), 1, + aux_sym__val_number_decimal_token4, + STATE(1729), 1, + sym__val_number, + STATE(1781), 1, + sym__val_number_decimal, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(3977), 1, + sym_expr_parenthesized, + STATE(3994), 1, sym_comment, - STATE(4220), 1, - sym__immediate_decimal, - ACTIONS(7043), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3788), 2, - sym__expr_parenthesized_immediate, + STATE(4297), 1, + sym_val_number, + STATE(4349), 1, + sym__binary_predicate, + STATE(4350), 1, + sym__predicate, + ACTIONS(213), 2, + anon_sym_true, + anon_sym_false, + STATE(4401), 2, + sym_expr_unary, + sym_val_bool, + STATE(5176), 2, + sym__where_predicate_lhs, sym_val_variable, - ACTIONS(1544), 15, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [150344] = 11, + ACTIONS(429), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [153786] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1579), 1, - aux_sym_unquoted_token2, - ACTIONS(6335), 1, - anon_sym_LPAREN2, - ACTIONS(6349), 1, - anon_sym_DOLLAR, - ACTIONS(7045), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7047), 1, - aux_sym__immediate_decimal_token5, - STATE(3985), 1, + STATE(3995), 1, sym_comment, - STATE(4228), 1, - sym__immediate_decimal, - ACTIONS(7043), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3808), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1577), 15, + ACTIONS(5212), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5206), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -364390,98 +366570,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [150394] = 14, - ACTIONS(3), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [153825] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1544), 1, - sym__space, - ACTIONS(1546), 1, + ACTIONS(1559), 1, aux_sym_unquoted_token2, - ACTIONS(1810), 1, + ACTIONS(6195), 1, anon_sym_DOLLAR, - ACTIONS(7049), 1, + ACTIONS(6197), 1, anon_sym_LPAREN2, - ACTIONS(7051), 1, + ACTIONS(7009), 1, anon_sym_DOT, - ACTIONS(7053), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7055), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7057), 1, + ACTIONS(7013), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7059), 1, + ACTIONS(7015), 1, aux_sym__immediate_decimal_token5, - STATE(3986), 1, + STATE(3996), 1, sym_comment, - STATE(4116), 1, + STATE(4068), 1, sym__immediate_decimal, - STATE(4254), 2, + ACTIONS(7011), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3528), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1530), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [150450] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7061), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7063), 1, - aux_sym__immediate_decimal_token2, - STATE(3987), 1, - sym_comment, - ACTIONS(1621), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1623), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [150490] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7065), 1, - anon_sym_DOT, - ACTIONS(7067), 1, - aux_sym__immediate_decimal_token2, - STATE(3988), 1, - sym_comment, - ACTIONS(1607), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1609), 21, + ACTIONS(1557), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364498,24 +366620,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [150530] = 6, + [153879] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7069), 1, - anon_sym_DOT, - ACTIONS(7071), 1, - aux_sym__immediate_decimal_token2, - STATE(3989), 1, + STATE(3997), 1, sym_comment, - ACTIONS(1607), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1609), 20, + ACTIONS(7017), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7023), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7019), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7021), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6983), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -364531,210 +366657,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [150569] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7073), 1, - aux_sym__immediate_decimal_token2, - STATE(3990), 1, - sym_comment, - ACTIONS(1673), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1675), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [150606] = 6, + [153923] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7075), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7077), 1, - aux_sym__immediate_decimal_token2, - STATE(3991), 1, - sym_comment, - ACTIONS(1621), 2, - anon_sym_DOT_DOT2, + ACTIONS(1661), 1, aux_sym_unquoted_token2, - ACTIONS(1623), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + ACTIONS(6197), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [150645] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym_unquoted_token2, - ACTIONS(2012), 1, + ACTIONS(6283), 1, anon_sym_DOLLAR, - ACTIONS(7079), 1, - anon_sym_LPAREN2, - ACTIONS(7081), 1, - anon_sym_DOT, - ACTIONS(7083), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7085), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7087), 1, + ACTIONS(7027), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7089), 1, + ACTIONS(7029), 1, aux_sym__immediate_decimal_token5, - STATE(3992), 1, + STATE(3998), 1, sym_comment, - STATE(4155), 1, + STATE(4181), 1, sym__immediate_decimal, - ACTIONS(1544), 2, - ts_builtin_sym_end, - sym__space, - STATE(4365), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1530), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [150700] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7067), 1, - aux_sym__immediate_decimal_token2, - STATE(3993), 1, - sym_comment, - ACTIONS(1607), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1609), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [150737] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1591), 1, - sym__space, - ACTIONS(1810), 1, - anon_sym_DOLLAR, - ACTIONS(7049), 1, - anon_sym_LPAREN2, - ACTIONS(7053), 1, + ACTIONS(7025), 2, aux_sym__immediate_decimal_token1, - ACTIONS(7055), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7057), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7059), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7091), 1, - anon_sym_DOT, - STATE(3994), 1, - sym_comment, - STATE(4253), 1, - sym__immediate_decimal, - STATE(4252), 2, + STATE(3426), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1581), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [150790] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - ACTIONS(4864), 1, - aux_sym_unquoted_token2, - ACTIONS(7093), 1, - anon_sym_DOT_DOT2, - ACTIONS(7097), 1, - sym_filesize_unit, - ACTIONS(7099), 1, - sym_duration_unit, - STATE(3995), 1, - sym_comment, - STATE(7503), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7095), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1721), 16, + ACTIONS(1659), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364751,133 +366697,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [150837] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1544), 1, - sym__space, - ACTIONS(1546), 1, - aux_sym_unquoted_token2, - ACTIONS(4341), 1, - anon_sym_DOLLAR, - ACTIONS(7049), 1, - anon_sym_LPAREN2, - ACTIONS(7101), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7103), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7105), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7107), 1, - aux_sym__immediate_decimal_token5, - STATE(3996), 1, - sym_comment, - STATE(4317), 1, - sym__immediate_decimal, - STATE(4717), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1530), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [150890] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1577), 1, - sym__space, - ACTIONS(1579), 1, - aux_sym_unquoted_token2, - ACTIONS(4341), 1, - anon_sym_DOLLAR, - ACTIONS(7049), 1, - anon_sym_LPAREN2, - ACTIONS(7101), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7103), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7105), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7107), 1, - aux_sym__immediate_decimal_token5, - STATE(3997), 1, - sym_comment, - STATE(4331), 1, - sym__immediate_decimal, - STATE(4699), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1565), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [150943] = 4, + [153974] = 12, ACTIONS(247), 1, anon_sym_POUND, - STATE(3998), 1, - sym_comment, - ACTIONS(1673), 2, - anon_sym_DOT_DOT2, + ACTIONS(1559), 1, aux_sym_unquoted_token2, - ACTIONS(1675), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [150977] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7109), 1, + ACTIONS(6331), 1, + anon_sym_DOLLAR, + ACTIONS(6333), 1, + anon_sym_LPAREN2, + ACTIONS(7031), 1, anon_sym_DOT, - ACTIONS(7111), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(7035), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7037), 1, + aux_sym__immediate_decimal_token5, STATE(3999), 1, sym_comment, - ACTIONS(1609), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1607), 15, + STATE(4100), 1, + sym__immediate_decimal, + ACTIONS(7033), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3561), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1557), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364889,27 +366735,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [151015] = 6, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [154027] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7113), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7115), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(1559), 1, + aux_sym_unquoted_token2, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(6283), 1, + anon_sym_DOLLAR, + ACTIONS(7027), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7029), 1, + aux_sym__immediate_decimal_token5, STATE(4000), 1, sym_comment, - ACTIONS(1623), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1621), 15, + STATE(4180), 1, + sym__immediate_decimal, + ACTIONS(7025), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3451), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1557), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364923,36 +366775,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [151053] = 13, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [154078] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1546), 1, + ACTIONS(1557), 1, + sym__space, + ACTIONS(1559), 1, aux_sym_unquoted_token2, - ACTIONS(4305), 1, + ACTIONS(1960), 1, anon_sym_DOLLAR, - ACTIONS(7079), 1, + ACTIONS(7039), 1, anon_sym_LPAREN2, - ACTIONS(7117), 1, + ACTIONS(7041), 1, + anon_sym_DOT, + ACTIONS(7043), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7119), 1, + ACTIONS(7045), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7121), 1, + ACTIONS(7047), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7123), 1, + ACTIONS(7049), 1, aux_sym__immediate_decimal_token5, STATE(4001), 1, sym_comment, - STATE(4556), 1, + STATE(4120), 1, sym__immediate_decimal, - ACTIONS(1544), 2, - ts_builtin_sym_end, - sym__space, - STATE(4833), 2, + STATE(4268), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1530), 11, + ACTIONS(1543), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364964,19 +366818,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [151105] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [154134] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7125), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7127), 1, + ACTIONS(7051), 1, + anon_sym_DOT, + ACTIONS(7053), 1, aux_sym__immediate_decimal_token2, STATE(4002), 1, sym_comment, - ACTIONS(1739), 2, + ACTIONS(1573), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1741), 19, + ACTIONS(1575), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364996,17 +366852,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [151143] = 5, + sym_filesize_unit, + sym_duration_unit, + [154174] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7071), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(1661), 1, + aux_sym_unquoted_token2, + ACTIONS(6333), 1, + anon_sym_LPAREN2, + ACTIONS(6369), 1, + anon_sym_DOLLAR, + ACTIONS(7057), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7059), 1, + aux_sym__immediate_decimal_token5, STATE(4003), 1, sym_comment, - ACTIONS(1607), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1609), 20, + STATE(4290), 1, + sym__immediate_decimal, + ACTIONS(7055), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3856), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1659), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -365022,23 +366893,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [151179] = 5, + [154224] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7129), 1, + ACTIONS(7061), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7063), 1, aux_sym__immediate_decimal_token2, STATE(4004), 1, sym_comment, - ACTIONS(1673), 2, + ACTIONS(1585), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1675), 20, - ts_builtin_sym_end, + ACTIONS(1587), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365050,6 +366917,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -365058,15 +366927,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [151215] = 4, + [154264] = 11, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1559), 1, + aux_sym_unquoted_token2, + ACTIONS(6333), 1, + anon_sym_LPAREN2, + ACTIONS(6369), 1, + anon_sym_DOLLAR, + ACTIONS(7057), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7059), 1, + aux_sym__immediate_decimal_token5, STATE(4005), 1, sym_comment, - ACTIONS(1607), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1609), 21, + STATE(4253), 1, + sym__immediate_decimal, + ACTIONS(7055), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3756), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1557), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365078,25 +366963,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [151249] = 4, + [154314] = 6, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(7065), 1, + anon_sym_DOT, + ACTIONS(7067), 1, + aux_sym__immediate_decimal_token2, STATE(4006), 1, sym_comment, - ACTIONS(1621), 2, + ACTIONS(1573), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1623), 21, + ACTIONS(1575), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365108,8 +366991,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -365118,34 +366999,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [151283] = 13, + [154353] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1579), 1, - aux_sym_unquoted_token2, - ACTIONS(4305), 1, + ACTIONS(1603), 1, + sym__space, + ACTIONS(1960), 1, anon_sym_DOLLAR, - ACTIONS(7079), 1, + ACTIONS(7039), 1, anon_sym_LPAREN2, - ACTIONS(7117), 1, + ACTIONS(7043), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7119), 1, + ACTIONS(7045), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7121), 1, + ACTIONS(7047), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7123), 1, + ACTIONS(7049), 1, aux_sym__immediate_decimal_token5, + ACTIONS(7069), 1, + anon_sym_DOT, STATE(4007), 1, sym_comment, - STATE(4587), 1, + STATE(4254), 1, sym__immediate_decimal, - ACTIONS(1577), 2, - ts_builtin_sym_end, - sym__space, - STATE(4850), 2, + STATE(4250), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1565), 11, + ACTIONS(1593), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365157,15 +367037,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [151335] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [154406] = 5, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(7053), 1, + aux_sym__immediate_decimal_token2, STATE(4008), 1, sym_comment, - ACTIONS(1763), 2, + ACTIONS(1573), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1765), 21, + ACTIONS(1575), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365187,19 +367071,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [151369] = 6, + [154443] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7131), 1, - anon_sym_DOT, - ACTIONS(7133), 1, + ACTIONS(7071), 1, aux_sym__immediate_decimal_token2, STATE(4009), 1, sym_comment, - ACTIONS(1755), 2, + ACTIONS(1681), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1757), 19, + ACTIONS(1683), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365219,70 +367101,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [151407] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - ACTIONS(4900), 1, - aux_sym_unquoted_token2, - ACTIONS(7135), 1, - anon_sym_DOT_DOT2, - ACTIONS(7139), 1, sym_filesize_unit, - ACTIONS(7141), 1, sym_duration_unit, - STATE(4010), 1, - sym_comment, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7137), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1721), 15, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [151453] = 13, + [154480] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2012), 1, + ACTIONS(1559), 1, + aux_sym_unquoted_token2, + ACTIONS(2066), 1, anon_sym_DOLLAR, - ACTIONS(7079), 1, + ACTIONS(7073), 1, anon_sym_LPAREN2, - ACTIONS(7083), 1, + ACTIONS(7075), 1, + anon_sym_DOT, + ACTIONS(7077), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7085), 1, + ACTIONS(7079), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7087), 1, + ACTIONS(7081), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7089), 1, + ACTIONS(7083), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7143), 1, - anon_sym_DOT, - STATE(4011), 1, + STATE(4010), 1, sym_comment, - STATE(4363), 1, + STATE(4197), 1, sym__immediate_decimal, - ACTIONS(1591), 2, + ACTIONS(1557), 2, ts_builtin_sym_end, sym__space, - STATE(4362), 2, + STATE(4383), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1581), 11, + ACTIONS(1543), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365294,69 +367144,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [151505] = 12, + [154535] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1591), 1, + ACTIONS(1659), 1, sym__space, - ACTIONS(4341), 1, + ACTIONS(1661), 1, + aux_sym_unquoted_token2, + ACTIONS(4125), 1, anon_sym_DOLLAR, - ACTIONS(7049), 1, + ACTIONS(7039), 1, anon_sym_LPAREN2, - ACTIONS(7057), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7059), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7145), 1, + ACTIONS(7085), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7147), 1, + ACTIONS(7087), 1, aux_sym__immediate_decimal_token3, - STATE(4012), 1, - sym_comment, - STATE(4714), 1, - sym__immediate_decimal, - STATE(4713), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1581), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [151555] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1693), 1, - sym__space, - ACTIONS(4341), 1, - anon_sym_DOLLAR, - ACTIONS(7049), 1, - anon_sym_LPAREN2, - ACTIONS(7057), 1, + ACTIONS(7089), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7059), 1, + ACTIONS(7091), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7145), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7147), 1, - aux_sym__immediate_decimal_token3, - STATE(4013), 1, + STATE(4011), 1, sym_comment, - STATE(4771), 1, + STATE(4320), 1, sym__immediate_decimal, - STATE(4767), 2, + STATE(4795), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1691), 13, + ACTIONS(1657), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365370,69 +367184,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [151605] = 12, + [154588] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1671), 1, + ACTIONS(1557), 1, sym__space, - ACTIONS(4341), 1, + ACTIONS(1559), 1, + aux_sym_unquoted_token2, + ACTIONS(4125), 1, anon_sym_DOLLAR, - ACTIONS(7049), 1, + ACTIONS(7039), 1, anon_sym_LPAREN2, - ACTIONS(7057), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7059), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7145), 1, + ACTIONS(7085), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7147), 1, + ACTIONS(7087), 1, aux_sym__immediate_decimal_token3, - STATE(4014), 1, - sym_comment, - STATE(4773), 1, - sym__immediate_decimal, - STATE(4772), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1663), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [151655] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1707), 1, - sym__space, - ACTIONS(4341), 1, - anon_sym_DOLLAR, - ACTIONS(7049), 1, - anon_sym_LPAREN2, - ACTIONS(7057), 1, + ACTIONS(7089), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7059), 1, + ACTIONS(7091), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7145), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7147), 1, - aux_sym__immediate_decimal_token3, - STATE(4015), 1, + STATE(4012), 1, sym_comment, - STATE(4777), 1, + STATE(4463), 1, sym__immediate_decimal, - STATE(4774), 2, + STATE(4683), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1705), 13, + ACTIONS(1543), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365446,56 +367224,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [151705] = 8, + [154641] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1769), 1, - anon_sym_DOT_DOT2, - ACTIONS(6392), 1, - anon_sym_DOT, - STATE(1642), 1, - sym_path, - STATE(1657), 1, - sym_cell_path, - STATE(3372), 1, - aux_sym_cell_path_repeat1, - STATE(4016), 1, + ACTIONS(7093), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7095), 1, + aux_sym__immediate_decimal_token2, + STATE(4013), 1, sym_comment, - ACTIONS(1771), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [151747] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1735), 1, + ACTIONS(1585), 2, anon_sym_DOT_DOT2, - ACTIONS(6392), 1, - anon_sym_DOT, - STATE(1642), 1, - sym_path, - STATE(1679), 1, - sym_cell_path, - STATE(3372), 1, - aux_sym_cell_path_repeat1, - STATE(4017), 1, - sym_comment, - ACTIONS(1737), 18, + aux_sym_unquoted_token2, + ACTIONS(1587), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365507,36 +367249,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [151789] = 11, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [154680] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1721), 1, - sym__space, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - ACTIONS(7149), 1, + ACTIONS(4866), 1, + aux_sym_unquoted_token2, + ACTIONS(7097), 1, anon_sym_DOT_DOT2, - ACTIONS(7153), 1, + ACTIONS(7101), 1, sym_filesize_unit, - ACTIONS(7155), 1, + ACTIONS(7103), 1, sym_duration_unit, - ACTIONS(7157), 1, - aux_sym_unquoted_token2, - STATE(4018), 1, + STATE(4014), 1, sym_comment, - STATE(7501), 1, + STATE(7707), 1, sym__expr_parenthesized_immediate, - ACTIONS(7151), 2, + ACTIONS(7099), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1709), 13, + ACTIONS(1719), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365550,20 +367291,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [151836] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [154727] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7159), 1, + ACTIONS(7105), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7161), 1, + ACTIONS(7107), 1, aux_sym__immediate_decimal_token2, - STATE(4019), 1, + STATE(4015), 1, sym_comment, ACTIONS(1739), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1741), 18, - ts_builtin_sym_end, + ACTIONS(1741), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365575,23 +367318,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [151873] = 5, + [154765] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7133), 1, - aux_sym__immediate_decimal_token2, - STATE(4020), 1, + STATE(4016), 1, sym_comment, - ACTIONS(1755), 2, + ACTIONS(1761), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1757), 19, + ACTIONS(1763), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365611,24 +367354,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [151908] = 6, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [154799] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7163), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7165), 1, + ACTIONS(7109), 1, aux_sym__immediate_decimal_token2, - STATE(4021), 1, + STATE(4017), 1, sym_comment, - ACTIONS(1623), 7, + ACTIONS(1681), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1683), 20, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1621), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365640,19 +367379,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [151945] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [154835] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7167), 1, + ACTIONS(7067), 1, aux_sym__immediate_decimal_token2, - STATE(4022), 1, + STATE(4018), 1, sym_comment, - ACTIONS(1783), 2, + ACTIONS(1573), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1785), 19, + ACTIONS(1575), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365664,24 +367410,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [151980] = 4, + sym_filesize_unit, + sym_duration_unit, + [154871] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4023), 1, + STATE(4019), 1, sym_comment, - ACTIONS(1607), 2, + ACTIONS(1681), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1609), 20, - ts_builtin_sym_end, + ACTIONS(1683), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365693,6 +367438,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -365701,21 +367448,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [152013] = 5, + [154905] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7169), 1, + ACTIONS(7111), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7113), 1, aux_sym__immediate_decimal_token2, - STATE(4024), 1, + STATE(4020), 1, sym_comment, - ACTIONS(1675), 6, + ACTIONS(1587), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1673), 15, + ACTIONS(1585), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365731,32 +367480,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [152048] = 12, + [154943] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4305), 1, + ACTIONS(1603), 1, + sym__space, + ACTIONS(4125), 1, anon_sym_DOLLAR, - ACTIONS(7079), 1, + ACTIONS(7039), 1, anon_sym_LPAREN2, - ACTIONS(7087), 1, + ACTIONS(7047), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7089), 1, + ACTIONS(7049), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7171), 1, + ACTIONS(7115), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7173), 1, + ACTIONS(7117), 1, aux_sym__immediate_decimal_token3, - STATE(4025), 1, + STATE(4021), 1, sym_comment, - STATE(4782), 1, + STATE(4681), 1, sym__immediate_decimal, - ACTIONS(1591), 2, - ts_builtin_sym_end, - sym__space, - STATE(4832), 2, + STATE(4680), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1581), 11, + ACTIONS(1593), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365768,62 +367516,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [152097] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7175), 1, - sym__newline, - STATE(4026), 2, - sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1294), 10, - sym_identifier, - anon_sym_DASH2, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(1296), 10, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token5, - [152132] = 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + [154993] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4305), 1, + ACTIONS(1661), 1, + aux_sym_unquoted_token2, + ACTIONS(4505), 1, anon_sym_DOLLAR, - ACTIONS(7079), 1, + ACTIONS(7073), 1, anon_sym_LPAREN2, - ACTIONS(7087), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7089), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7171), 1, + ACTIONS(7119), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7173), 1, + ACTIONS(7121), 1, aux_sym__immediate_decimal_token3, - STATE(4027), 1, + ACTIONS(7123), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7125), 1, + aux_sym__immediate_decimal_token5, + STATE(4022), 1, sym_comment, - STATE(4845), 1, + STATE(4570), 1, sym__immediate_decimal, - ACTIONS(1693), 2, + ACTIONS(1659), 2, ts_builtin_sym_end, sym__space, - STATE(4844), 2, + STATE(4992), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1691), 11, + ACTIONS(1657), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365835,32 +367557,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [152181] = 12, - ACTIONS(3), 1, + [155045] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4305), 1, - anon_sym_DOLLAR, - ACTIONS(7079), 1, - anon_sym_LPAREN2, - ACTIONS(7087), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7089), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7171), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7173), 1, - aux_sym__immediate_decimal_token3, - STATE(4028), 1, + STATE(4023), 1, sym_comment, - STATE(4847), 1, - sym__immediate_decimal, - ACTIONS(1671), 2, - ts_builtin_sym_end, - sym__space, - STATE(4846), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1663), 11, + ACTIONS(1573), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1575), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365872,32 +367577,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [152230] = 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [155079] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4305), 1, + ACTIONS(1559), 1, + aux_sym_unquoted_token2, + ACTIONS(4505), 1, anon_sym_DOLLAR, - ACTIONS(7079), 1, + ACTIONS(7073), 1, anon_sym_LPAREN2, - ACTIONS(7087), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7089), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7171), 1, + ACTIONS(7119), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7173), 1, + ACTIONS(7121), 1, aux_sym__immediate_decimal_token3, - STATE(4029), 1, + ACTIONS(7123), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7125), 1, + aux_sym__immediate_decimal_token5, + STATE(4024), 1, sym_comment, - STATE(4849), 1, + STATE(4604), 1, sym__immediate_decimal, - ACTIONS(1707), 2, + ACTIONS(1557), 2, ts_builtin_sym_end, sym__space, - STATE(4848), 2, + STATE(4927), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1705), 11, + ACTIONS(1543), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365909,47 +367626,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [152279] = 6, + [155131] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7178), 1, + ACTIONS(7127), 1, anon_sym_DOT, - ACTIONS(7180), 1, + ACTIONS(7129), 1, aux_sym__immediate_decimal_token2, - STATE(4030), 1, - sym_comment, - ACTIONS(1755), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1757), 18, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [152316] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4031), 1, + STATE(4025), 1, sym_comment, - ACTIONS(1621), 2, + ACTIONS(1765), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1623), 20, - ts_builtin_sym_end, + ACTIONS(1767), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365961,29 +367650,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [152349] = 5, + [155169] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7111), 1, - aux_sym__immediate_decimal_token2, - STATE(4032), 1, - sym_comment, - ACTIONS(1609), 6, + ACTIONS(1671), 1, sym__space, + ACTIONS(4125), 1, + anon_sym_DOLLAR, + ACTIONS(7039), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1607), 15, + ACTIONS(7047), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7049), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7115), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7117), 1, + aux_sym__immediate_decimal_token3, + STATE(4026), 1, + sym_comment, + STATE(4711), 1, + sym__immediate_decimal, + STATE(4710), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1663), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365997,18 +367696,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [152384] = 4, + [155219] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(4033), 1, - sym_comment, - ACTIONS(1673), 2, + ACTIONS(1747), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1675), 20, - ts_builtin_sym_end, + ACTIONS(6396), 1, + anon_sym_DOT, + STATE(1615), 1, + sym_path, + STATE(1652), 1, + sym_cell_path, + STATE(3392), 1, + aux_sym_cell_path_repeat1, + STATE(4027), 1, + sym_comment, + ACTIONS(1749), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366020,32 +367723,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [152417] = 6, - ACTIONS(3), 1, + [155261] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7182), 1, + ACTIONS(1733), 1, + anon_sym_DOT_DOT2, + ACTIONS(6396), 1, anon_sym_DOT, - ACTIONS(7184), 1, - aux_sym__immediate_decimal_token2, - STATE(4034), 1, + STATE(1615), 1, + sym_path, + STATE(1722), 1, + sym_cell_path, + STATE(3392), 1, + aux_sym_cell_path_repeat1, + STATE(4028), 1, sym_comment, - ACTIONS(1609), 7, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1607), 13, + ACTIONS(1737), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366057,64 +367757,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [152454] = 14, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [155303] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7186), 1, + ACTIONS(1675), 1, + sym__space, + ACTIONS(4125), 1, anon_sym_DOLLAR, - ACTIONS(7188), 1, + ACTIONS(7039), 1, anon_sym_LPAREN2, - ACTIONS(7190), 1, - anon_sym_DOT, - ACTIONS(7192), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7194), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7196), 1, + ACTIONS(7047), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7198), 1, + ACTIONS(7049), 1, aux_sym__immediate_decimal_token5, - STATE(4035), 1, + ACTIONS(7115), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7117), 1, + aux_sym__immediate_decimal_token3, + STATE(4029), 1, sym_comment, - STATE(4276), 1, + STATE(4713), 1, sym__immediate_decimal, - ACTIONS(1530), 2, - sym_identifier, - anon_sym_DASH2, - STATE(4578), 2, + STATE(4712), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1544), 9, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [152507] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1769), 1, - anon_sym_DOT_DOT2, - ACTIONS(6460), 1, - anon_sym_DOT, - STATE(1978), 1, - sym_path, - STATE(2127), 1, - sym_cell_path, - STATE(3403), 1, - aux_sym_cell_path_repeat1, - STATE(4036), 1, - sym_comment, - ACTIONS(1771), 17, - ts_builtin_sym_end, + ACTIONS(1673), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366126,28 +367800,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [152548] = 8, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [155353] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1735), 1, - anon_sym_DOT_DOT2, - ACTIONS(6460), 1, - anon_sym_DOT, - STATE(1978), 1, - sym_path, - STATE(2124), 1, - sym_cell_path, - STATE(3403), 1, - aux_sym_cell_path_repeat1, - STATE(4037), 1, + ACTIONS(1679), 1, + sym__space, + ACTIONS(4125), 1, + anon_sym_DOLLAR, + ACTIONS(7039), 1, + anon_sym_LPAREN2, + ACTIONS(7047), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7049), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7115), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7117), 1, + aux_sym__immediate_decimal_token3, + STATE(4030), 1, sym_comment, - ACTIONS(1737), 17, - ts_builtin_sym_end, + STATE(4715), 1, + sym__immediate_decimal, + STATE(4714), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1677), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366159,21 +367838,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [152589] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [155403] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4038), 1, + STATE(4031), 1, sym_comment, - ACTIONS(1763), 2, + ACTIONS(1585), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1765), 20, - ts_builtin_sym_end, + ACTIONS(1587), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366185,6 +367860,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -366193,19 +367870,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [152622] = 4, + [155437] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4039), 1, + ACTIONS(7131), 1, + anon_sym_DOT, + ACTIONS(7133), 1, + aux_sym__immediate_decimal_token2, + STATE(4032), 1, sym_comment, - ACTIONS(1609), 6, + ACTIONS(1575), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1607), 15, + ACTIONS(1573), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366221,52 +367902,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [152654] = 13, - ACTIONS(247), 1, + [155475] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7186), 1, + ACTIONS(2066), 1, anon_sym_DOLLAR, - ACTIONS(7188), 1, + ACTIONS(7073), 1, anon_sym_LPAREN2, - ACTIONS(7192), 1, + ACTIONS(7077), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7194), 1, + ACTIONS(7079), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7196), 1, + ACTIONS(7081), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7198), 1, + ACTIONS(7083), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7200), 1, + ACTIONS(7135), 1, anon_sym_DOT, - STATE(4040), 1, + STATE(4033), 1, sym_comment, - STATE(4577), 1, + STATE(4379), 1, sym__immediate_decimal, - ACTIONS(1581), 2, - sym_identifier, - anon_sym_DASH2, - STATE(4576), 2, + ACTIONS(1603), 2, + ts_builtin_sym_end, + sym__space, + STATE(4378), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1591), 9, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [152704] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4041), 1, - sym_comment, - ACTIONS(1755), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1757), 19, + ACTIONS(1593), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366278,32 +367941,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [152736] = 8, - ACTIONS(3), 1, + [155527] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7202), 1, - anon_sym_DOT, - STATE(4042), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + ACTIONS(4956), 1, + aux_sym_unquoted_token2, + ACTIONS(7137), 1, + anon_sym_DOT_DOT2, + ACTIONS(7141), 1, + sym_filesize_unit, + ACTIONS(7143), 1, + sym_duration_unit, + STATE(4034), 1, sym_comment, - STATE(4090), 1, - aux_sym_cell_path_repeat1, - STATE(4139), 1, - sym_path, - STATE(4234), 1, - sym_cell_path, - ACTIONS(1771), 3, - sym__space, + STATE(7463), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7139), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1769), 14, + ACTIONS(1719), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366315,24 +367974,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [152776] = 6, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [155573] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7204), 1, - anon_sym_DOT, - ACTIONS(7206), 1, + ACTIONS(7145), 1, aux_sym__immediate_decimal_token2, - STATE(4043), 1, + STATE(4035), 1, sym_comment, - ACTIONS(1757), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1755), 15, + ACTIONS(1785), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1787), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366346,17 +368001,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [152812] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [155608] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4044), 1, + STATE(4036), 1, sym_comment, - ACTIONS(1739), 2, + ACTIONS(1585), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1741), 19, + ACTIONS(1587), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366368,32 +368028,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [152844] = 8, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [155641] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7202), 1, - anon_sym_DOT, - STATE(4045), 1, + ACTIONS(7147), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7149), 1, + aux_sym__immediate_decimal_token2, + STATE(4037), 1, sym_comment, - STATE(4090), 1, - aux_sym_cell_path_repeat1, - STATE(4139), 1, - sym_path, - STATE(4240), 1, - sym_cell_path, - ACTIONS(1737), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1735), 14, + ACTIONS(1739), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1741), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366405,18 +368061,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [152884] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [155678] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(4046), 1, + ACTIONS(7129), 1, + aux_sym__immediate_decimal_token2, + STATE(4038), 1, sym_comment, - ACTIONS(1783), 2, + ACTIONS(1765), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1785), 19, + ACTIONS(1767), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366436,15 +368097,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [152916] = 4, + [155713] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4047), 1, + STATE(4039), 1, sym_comment, - ACTIONS(1890), 2, + ACTIONS(1681), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1892), 19, + ACTIONS(1683), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366456,22 +368118,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [152948] = 5, + sym_filesize_unit, + sym_duration_unit, + [155746] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7208), 1, + ACTIONS(7151), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7153), 1, aux_sym__immediate_decimal_token2, - STATE(4048), 1, + STATE(4040), 1, sym_comment, - ACTIONS(1675), 7, + ACTIONS(1587), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, @@ -366479,7 +368143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1673), 13, + ACTIONS(1585), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366493,19 +368157,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [152982] = 4, + [155783] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4041), 1, + sym_comment, + ACTIONS(1761), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1763), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [155816] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(4049), 1, + ACTIONS(4505), 1, + anon_sym_DOLLAR, + ACTIONS(7073), 1, + anon_sym_LPAREN2, + ACTIONS(7081), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7083), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7155), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7157), 1, + aux_sym__immediate_decimal_token3, + STATE(4042), 1, + sym_comment, + STATE(4979), 1, + sym__immediate_decimal, + ACTIONS(1671), 2, + ts_builtin_sym_end, + sym__space, + STATE(4977), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1663), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [155865] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4505), 1, + anon_sym_DOLLAR, + ACTIONS(7073), 1, + anon_sym_LPAREN2, + ACTIONS(7081), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7083), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7155), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7157), 1, + aux_sym__immediate_decimal_token3, + STATE(4043), 1, sym_comment, - ACTIONS(1623), 6, + STATE(4985), 1, + sym__immediate_decimal, + ACTIONS(1675), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1621), 15, + STATE(4982), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1673), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366517,23 +368260,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [153014] = 4, + [155914] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(4050), 1, + ACTIONS(4505), 1, + anon_sym_DOLLAR, + ACTIONS(7073), 1, + anon_sym_LPAREN2, + ACTIONS(7081), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7083), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7155), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7157), 1, + aux_sym__immediate_decimal_token3, + STATE(4044), 1, sym_comment, - ACTIONS(1675), 6, + STATE(4989), 1, + sym__immediate_decimal, + ACTIONS(1679), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1673), 15, + STATE(4988), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1677), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366545,34 +368297,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [153046] = 11, - ACTIONS(3), 1, + [155963] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - ACTIONS(7210), 1, + STATE(4045), 1, + sym_comment, + ACTIONS(1573), 2, anon_sym_DOT_DOT2, - ACTIONS(7214), 1, - sym_filesize_unit, - ACTIONS(7216), 1, - sym_duration_unit, - ACTIONS(7218), 1, aux_sym_unquoted_token2, - STATE(4051), 1, - sym_comment, - STATE(7412), 1, - sym__expr_parenthesized_immediate, - ACTIONS(1721), 2, + ACTIONS(1575), 20, ts_builtin_sym_end, - sym__space, - ACTIONS(7212), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1709), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366584,19 +368318,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [153092] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4052), 1, - sym_comment, - ACTIONS(1765), 6, - sym__space, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1763), 15, + [155996] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4505), 1, + anon_sym_DOLLAR, + ACTIONS(7073), 1, + anon_sym_LPAREN2, + ACTIONS(7081), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7083), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7155), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7157), 1, + aux_sym__immediate_decimal_token3, + STATE(4046), 1, + sym_comment, + STATE(4925), 1, + sym__immediate_decimal, + ACTIONS(1603), 2, + ts_builtin_sym_end, + sym__space, + STATE(4906), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1593), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366608,25 +368363,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [153124] = 6, + [156045] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7220), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7222), 1, + ACTIONS(7159), 1, aux_sym__immediate_decimal_token2, - STATE(4053), 1, + STATE(4047), 1, sym_comment, - ACTIONS(1741), 4, + ACTIONS(1683), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1739), 15, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1681), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366642,53 +368393,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [153160] = 6, + [156080] = 14, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7224), 1, - anon_sym_DOT, - ACTIONS(7226), 1, - aux_sym__immediate_decimal_token2, - STATE(4054), 1, - sym_comment, - ACTIONS(1607), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, + ACTIONS(1559), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(1609), 13, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7161), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + ACTIONS(7163), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [153196] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7228), 1, + ACTIONS(7165), 1, + anon_sym_DOT, + ACTIONS(7167), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7230), 1, - aux_sym__immediate_decimal_token2, - STATE(4055), 1, + ACTIONS(7169), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7171), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7173), 1, + aux_sym__immediate_decimal_token5, + STATE(4048), 1, sym_comment, - ACTIONS(1621), 6, + STATE(4255), 1, + sym__immediate_decimal, + ACTIONS(1543), 2, sym_identifier, anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1623), 13, + STATE(4525), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1557), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -366696,18 +368430,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [153232] = 4, + [156133] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(4056), 1, + ACTIONS(7175), 1, + sym__newline, + STATE(4049), 2, sym_comment, - ACTIONS(1290), 10, + aux_sym_shebang_repeat1, + ACTIONS(1294), 10, sym_identifier, anon_sym_DASH2, anon_sym_true, @@ -366718,9 +368451,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(1288), 11, + ACTIONS(1296), 10, anon_sym_EQ, - sym__newline, anon_sym_COLON, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -366730,24 +368462,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token5, - [153264] = 8, - ACTIONS(3), 1, + [156168] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7202), 1, + ACTIONS(7178), 1, anon_sym_DOT, - STATE(4057), 1, + ACTIONS(7180), 1, + aux_sym__immediate_decimal_token2, + STATE(4050), 1, sym_comment, - STATE(4090), 1, - aux_sym_cell_path_repeat1, - STATE(4139), 1, - sym_path, - STATE(4214), 1, - sym_cell_path, - ACTIONS(963), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(961), 14, + ACTIONS(1765), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1767), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366759,20 +368487,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [153304] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [156205] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7180), 1, - aux_sym__immediate_decimal_token2, - STATE(4058), 1, - sym_comment, - ACTIONS(1755), 2, + ACTIONS(1747), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1757), 18, + ACTIONS(6452), 1, + anon_sym_DOT, + STATE(2080), 1, + sym_path, + STATE(2140), 1, + sym_cell_path, + STATE(3458), 1, + aux_sym_cell_path_repeat1, + STATE(4051), 1, + sym_comment, + ACTIONS(1749), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -366788,24 +368524,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [153338] = 7, - ACTIONS(247), 1, + [156246] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym_unquoted_token2, - ACTIONS(1868), 1, - anon_sym_LPAREN2, - ACTIONS(7232), 1, - anon_sym_DOT_DOT2, - STATE(4059), 1, + ACTIONS(7133), 1, + aux_sym__immediate_decimal_token2, + STATE(4052), 1, sym_comment, - ACTIONS(7234), 2, + ACTIONS(1575), 6, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1874), 16, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1573), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366819,24 +368554,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [153376] = 7, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [156281] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, + ACTIONS(1719), 1, + sym__space, + ACTIONS(4543), 1, anon_sym_LPAREN2, - ACTIONS(1888), 1, - aux_sym_unquoted_token2, - ACTIONS(7236), 1, + ACTIONS(7182), 1, anon_sym_DOT_DOT2, - STATE(4060), 1, + ACTIONS(7186), 1, + sym_filesize_unit, + ACTIONS(7188), 1, + sym_duration_unit, + ACTIONS(7190), 1, + aux_sym_unquoted_token2, + STATE(4053), 1, sym_comment, - ACTIONS(7238), 2, + STATE(7494), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7184), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1886), 16, + ACTIONS(1707), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366850,20 +368592,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [153414] = 5, + [156328] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7240), 1, - aux_sym__immediate_decimal_token2, - STATE(4061), 1, - sym_comment, - ACTIONS(1783), 2, + ACTIONS(1733), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1785), 18, + ACTIONS(6452), 1, + anon_sym_DOT, + STATE(2080), 1, + sym_path, + STATE(2096), 1, + sym_cell_path, + STATE(3458), 1, + aux_sym_cell_path_repeat1, + STATE(4054), 1, + sym_comment, + ACTIONS(1737), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -366879,54 +368623,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [153448] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7188), 1, - anon_sym_LPAREN2, - ACTIONS(7242), 1, - anon_sym_DOLLAR, - ACTIONS(7244), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7246), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7248), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7250), 1, - aux_sym__immediate_decimal_token5, - STATE(4062), 1, - sym_comment, - STATE(4725), 1, - sym__immediate_decimal, - ACTIONS(1530), 2, - sym_identifier, - anon_sym_DASH2, - STATE(5061), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1544), 9, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [153498] = 5, + [156369] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7184), 1, + ACTIONS(7192), 1, + anon_sym_DOT, + ACTIONS(7194), 1, aux_sym__immediate_decimal_token2, - STATE(4063), 1, + STATE(4055), 1, sym_comment, - ACTIONS(1609), 7, + ACTIONS(1575), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, @@ -366934,7 +368642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1607), 13, + ACTIONS(1573), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366948,124 +368656,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [153532] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1579), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7188), 1, - anon_sym_LPAREN2, - ACTIONS(7242), 1, - anon_sym_DOLLAR, - ACTIONS(7244), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7246), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7248), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7250), 1, - aux_sym__immediate_decimal_token5, - STATE(4064), 1, - sym_comment, - STATE(4738), 1, - sym__immediate_decimal, - ACTIONS(1565), 2, - sym_identifier, - anon_sym_DASH2, - STATE(5074), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1577), 9, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [153582] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4065), 1, - sym_comment, - ACTIONS(1890), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1892), 18, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [153613] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7188), 1, - anon_sym_LPAREN2, - ACTIONS(7196), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7198), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7242), 1, - anon_sym_DOLLAR, - ACTIONS(7252), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7254), 1, - aux_sym__immediate_decimal_token3, - STATE(4066), 1, - sym_comment, - STATE(5073), 1, - sym__immediate_decimal, - ACTIONS(1705), 2, - sym_identifier, - anon_sym_DASH2, - STATE(5072), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1707), 9, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [153660] = 8, + [156406] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7256), 1, - anon_sym_DOT, - STATE(4067), 1, + ACTIONS(7196), 1, + aux_sym__immediate_decimal_token2, + STATE(4056), 1, sym_comment, - STATE(4097), 1, - aux_sym_cell_path_repeat1, - STATE(4273), 1, - sym_path, - STATE(4493), 1, - sym_cell_path, - ACTIONS(963), 4, + ACTIONS(1683), 7, ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(961), 12, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1681), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367078,19 +368684,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [153699] = 5, + aux_sym_unquoted_token2, + [156440] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7206), 1, + ACTIONS(7194), 1, aux_sym__immediate_decimal_token2, - STATE(4068), 1, + STATE(4057), 1, sym_comment, - ACTIONS(1757), 4, + ACTIONS(1575), 7, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1755), 15, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1573), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367102,25 +368712,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [153732] = 6, - ACTIONS(3), 1, + [156474] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_DOT, - STATE(4139), 1, - sym_path, - STATE(4069), 2, + STATE(4058), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(973), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(971), 14, + ACTIONS(1739), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1741), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367134,19 +368736,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [153767] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [156506] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1755), 1, - aux_sym_unquoted_token2, - ACTIONS(7261), 1, - anon_sym_DOT, - ACTIONS(7263), 1, - aux_sym__immediate_decimal_token2, - STATE(4070), 1, + STATE(4059), 1, sym_comment, - ACTIONS(1757), 17, + ACTIONS(1785), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1787), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367164,20 +368768,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [153802] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [156538] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4060), 1, + sym_comment, + ACTIONS(1290), 10, + sym_identifier, + anon_sym_DASH2, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(1288), 11, + anon_sym_EQ, + sym__newline, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token5, + [156570] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4071), 1, + STATE(4061), 1, sym_comment, - ACTIONS(1675), 7, - ts_builtin_sym_end, + ACTIONS(1683), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1673), 13, + ACTIONS(1681), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367189,23 +368822,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [153833] = 5, + [156602] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7226), 1, + ACTIONS(7198), 1, + anon_sym_DOT, + ACTIONS(7200), 1, aux_sym__immediate_decimal_token2, - STATE(4072), 1, + STATE(4062), 1, sym_comment, - ACTIONS(1607), 6, + ACTIONS(1573), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym__unquoted_in_list_token2, - ACTIONS(1609), 13, + ACTIONS(1575), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -367219,21 +368856,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [153866] = 5, + [156638] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4063), 1, + sym_comment, + ACTIONS(1841), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1843), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [156670] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7265), 1, + ACTIONS(7202), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7204), 1, aux_sym__immediate_decimal_token2, - STATE(4073), 1, + STATE(4064), 1, sym_comment, - ACTIONS(1673), 6, + ACTIONS(1585), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym__unquoted_in_list_token2, - ACTIONS(1675), 13, + ACTIONS(1587), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -367247,20 +368914,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [153899] = 4, - ACTIONS(3), 1, + [156706] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4074), 1, + ACTIONS(7206), 1, + aux_sym__immediate_decimal_token2, + STATE(4065), 1, sym_comment, - ACTIONS(1765), 7, + ACTIONS(1785), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1787), 18, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1763), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367272,27 +368937,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [153930] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [156740] = 13, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1559), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(7163), 1, + anon_sym_LPAREN2, + ACTIONS(7208), 1, + anon_sym_DOLLAR, + ACTIONS(7210), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7212), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7214), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7216), 1, + aux_sym__immediate_decimal_token5, + STATE(4066), 1, + sym_comment, + STATE(4744), 1, + sym__immediate_decimal, + ACTIONS(1543), 2, + sym_identifier, + anon_sym_DASH2, + STATE(5156), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1557), 9, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [156790] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7256), 1, - anon_sym_DOT, - STATE(4075), 1, + ACTIONS(7218), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7220), 1, + aux_sym__immediate_decimal_token2, + STATE(4067), 1, sym_comment, - STATE(4097), 1, - aux_sym_cell_path_repeat1, - STATE(4273), 1, - sym_path, - STATE(4385), 1, - sym_cell_path, - ACTIONS(1771), 4, - ts_builtin_sym_end, + ACTIONS(1741), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1769), 12, + ACTIONS(1739), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367304,26 +369006,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - [153969] = 9, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [156826] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1721), 1, - sym__space, - ACTIONS(4708), 1, - anon_sym_DOT_DOT2, - ACTIONS(7153), 1, - sym_filesize_unit, - ACTIONS(7155), 1, - sym_duration_unit, - ACTIONS(7157), 1, + ACTIONS(1804), 1, + anon_sym_LPAREN2, + ACTIONS(1812), 1, aux_sym_unquoted_token2, - STATE(4076), 1, + ACTIONS(7222), 1, + anon_sym_DOT_DOT2, + STATE(4068), 1, sym_comment, - ACTIONS(4710), 2, + ACTIONS(7224), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1709), 13, + ACTIONS(1810), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367337,22 +369038,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [154010] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [156864] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym_unquoted_token2, - ACTIONS(1868), 1, - anon_sym_LPAREN2, - ACTIONS(7267), 1, - anon_sym_DOT_DOT2, - STATE(4077), 1, + STATE(4069), 1, sym_comment, - ACTIONS(7269), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1874), 15, - ts_builtin_sym_end, + ACTIONS(1765), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1767), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367364,25 +369061,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [154047] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1880), 1, anon_sym_LPAREN2, - ACTIONS(1888), 1, - aux_sym_unquoted_token2, - ACTIONS(7271), 1, - anon_sym_DOT_DOT2, - STATE(4078), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [156896] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7226), 1, + anon_sym_DOT, + STATE(4070), 1, sym_comment, - ACTIONS(7273), 2, + STATE(4090), 1, + aux_sym_cell_path_repeat1, + STATE(4175), 1, + sym_path, + STATE(4293), 1, + sym_cell_path, + ACTIONS(963), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1886), 15, - ts_builtin_sym_end, + ACTIONS(961), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367394,19 +369098,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [154084] = 4, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [156936] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4079), 1, + STATE(4071), 1, sym_comment, - ACTIONS(1755), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1757), 18, - ts_builtin_sym_end, + ACTIONS(1587), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1585), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367418,31 +369125,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [154115] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [156968] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7256), 1, - anon_sym_DOT, - STATE(4080), 1, + STATE(4072), 1, sym_comment, - STATE(4097), 1, - aux_sym_cell_path_repeat1, - STATE(4273), 1, - sym_path, - STATE(4391), 1, - sym_cell_path, - ACTIONS(1737), 4, - ts_builtin_sym_end, + ACTIONS(1575), 6, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1735), 12, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1573), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367454,17 +369153,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - [154154] = 4, - ACTIONS(247), 1, + aux_sym_unquoted_token2, + [157000] = 11, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4081), 1, - sym_comment, - ACTIONS(1739), 2, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + ACTIONS(7228), 1, anon_sym_DOT_DOT2, + ACTIONS(7232), 1, + sym_filesize_unit, + ACTIONS(7234), 1, + sym_duration_unit, + ACTIONS(7236), 1, aux_sym_unquoted_token2, - ACTIONS(1741), 18, + STATE(4073), 1, + sym_comment, + STATE(7498), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1719), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(7230), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1707), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367476,25 +369192,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [154185] = 5, + [157046] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7275), 1, - aux_sym__immediate_decimal_token2, - STATE(4082), 1, + STATE(4074), 1, sym_comment, - ACTIONS(1785), 4, + ACTIONS(1763), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1783), 15, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1761), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367510,22 +369220,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [154218] = 6, + [157078] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7277), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7279), 1, - aux_sym__immediate_decimal_token2, - STATE(4083), 1, + ACTIONS(7226), 1, + anon_sym_DOT, + STATE(4075), 1, sym_comment, - ACTIONS(1741), 5, - ts_builtin_sym_end, + STATE(4090), 1, + aux_sym_cell_path_repeat1, + STATE(4175), 1, + sym_path, + STATE(4245), 1, + sym_cell_path, + ACTIONS(1749), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1739), 13, + ACTIONS(1747), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367537,22 +369249,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [154253] = 4, + [157118] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4084), 1, + ACTIONS(7238), 1, + anon_sym_DOT, + ACTIONS(7240), 1, + aux_sym__immediate_decimal_token2, + STATE(4076), 1, sym_comment, - ACTIONS(1609), 7, - ts_builtin_sym_end, + ACTIONS(1767), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1607), 13, + ACTIONS(1765), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367564,24 +369278,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [154284] = 6, + [157154] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7281), 1, + ACTIONS(7226), 1, anon_sym_DOT, - ACTIONS(7283), 1, - aux_sym__immediate_decimal_token2, - STATE(4085), 1, + STATE(4077), 1, sym_comment, - ACTIONS(1757), 5, - ts_builtin_sym_end, + STATE(4090), 1, + aux_sym_cell_path_repeat1, + STATE(4175), 1, + sym_path, + STATE(4236), 1, + sym_cell_path, + ACTIONS(1737), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1755), 13, + ACTIONS(1733), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367593,17 +369311,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [154319] = 4, + [157194] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(4086), 1, + ACTIONS(7180), 1, + aux_sym__immediate_decimal_token2, + STATE(4078), 1, sym_comment, - ACTIONS(1783), 2, + ACTIONS(1765), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1785), 18, + ACTIONS(1767), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -367622,61 +369343,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [154350] = 6, + [157228] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1739), 1, - aux_sym_unquoted_token2, - ACTIONS(7285), 1, + ACTIONS(7161), 1, + anon_sym_DOLLAR, + ACTIONS(7163), 1, + anon_sym_LPAREN2, + ACTIONS(7167), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7287), 1, - aux_sym__immediate_decimal_token2, - STATE(4087), 1, + ACTIONS(7169), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7171), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7173), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7242), 1, + anon_sym_DOT, + STATE(4079), 1, sym_comment, - ACTIONS(1741), 17, + STATE(4612), 1, + sym__immediate_decimal, + ACTIONS(1593), 2, + sym_identifier, + anon_sym_DASH2, + STATE(4607), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1603), 9, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [154385] = 12, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [157278] = 13, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7188), 1, + ACTIONS(1661), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(7163), 1, anon_sym_LPAREN2, - ACTIONS(7196), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7198), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7242), 1, + ACTIONS(7208), 1, anon_sym_DOLLAR, - ACTIONS(7252), 1, + ACTIONS(7210), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7254), 1, + ACTIONS(7212), 1, aux_sym__immediate_decimal_token3, - STATE(4088), 1, + ACTIONS(7214), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7216), 1, + aux_sym__immediate_decimal_token5, + STATE(4080), 1, sym_comment, - STATE(5060), 1, + STATE(4633), 1, sym__immediate_decimal, - ACTIONS(1581), 2, + ACTIONS(1657), 2, sym_identifier, anon_sym_DASH2, - STATE(5059), 2, + STATE(5064), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1591), 9, + ACTIONS(1659), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -367686,49 +369417,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [154432] = 4, - ACTIONS(3), 1, + [157328] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4089), 1, - sym_comment, - ACTIONS(1623), 7, - ts_builtin_sym_end, - sym__space, + ACTIONS(1559), 1, + aux_sym_unquoted_token2, + ACTIONS(1822), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1621), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(7244), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [154463] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7202), 1, - anon_sym_DOT, - STATE(4069), 1, - aux_sym_cell_path_repeat1, - STATE(4090), 1, + STATE(4081), 1, sym_comment, - STATE(4139), 1, - sym_path, - ACTIONS(969), 3, - sym__space, + ACTIONS(7246), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(967), 14, + ACTIONS(1828), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367742,67 +369445,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [154500] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5556), 1, - anon_sym_LPAREN2, - ACTIONS(7289), 1, - anon_sym_DOT_DOT2, - ACTIONS(7293), 1, - sym_filesize_unit, - ACTIONS(7295), 1, - sym_duration_unit, - ACTIONS(7297), 1, - aux_sym__unquoted_in_list_token2, - STATE(4091), 1, - sym_comment, - STATE(7401), 1, - sym__expr_parenthesized_immediate, - ACTIONS(1709), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(7291), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1721), 10, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [154545] = 12, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [157366] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7188), 1, + ACTIONS(7163), 1, anon_sym_LPAREN2, - ACTIONS(7196), 1, + ACTIONS(7171), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7198), 1, + ACTIONS(7173), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7242), 1, + ACTIONS(7208), 1, anon_sym_DOLLAR, - ACTIONS(7252), 1, + ACTIONS(7248), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7254), 1, + ACTIONS(7250), 1, aux_sym__immediate_decimal_token3, - STATE(4092), 1, + STATE(4082), 1, sym_comment, - STATE(5069), 1, + STATE(5017), 1, sym__immediate_decimal, - ACTIONS(1691), 2, + ACTIONS(1677), 2, sym_identifier, anon_sym_DASH2, - STATE(5068), 2, + STATE(5172), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1693), 9, + ACTIONS(1679), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -367812,32 +369483,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [154592] = 12, + [157413] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7188), 1, + ACTIONS(7163), 1, anon_sym_LPAREN2, - ACTIONS(7196), 1, + ACTIONS(7171), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7198), 1, + ACTIONS(7173), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7242), 1, + ACTIONS(7208), 1, anon_sym_DOLLAR, - ACTIONS(7252), 1, + ACTIONS(7248), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7254), 1, + ACTIONS(7250), 1, aux_sym__immediate_decimal_token3, - STATE(4093), 1, + STATE(4083), 1, sym_comment, - STATE(5071), 1, + STATE(5150), 1, sym__immediate_decimal, - ACTIONS(1663), 2, + ACTIONS(1593), 2, sym_identifier, anon_sym_DASH2, - STATE(5070), 2, + STATE(5108), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1671), 9, + ACTIONS(1603), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -367847,49 +369518,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [154639] = 8, - ACTIONS(247), 1, + [157460] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7299), 1, + ACTIONS(7240), 1, + aux_sym__immediate_decimal_token2, + STATE(4084), 1, + sym_comment, + ACTIONS(1767), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1765), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [157493] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7252), 1, anon_sym_DOT, - STATE(4094), 1, + STATE(4085), 1, sym_comment, - STATE(4135), 1, + STATE(4111), 1, aux_sym_cell_path_repeat1, - STATE(4304), 1, + STATE(4252), 1, sym_path, - STATE(4514), 1, + STATE(4422), 1, sym_cell_path, - ACTIONS(1735), 2, - anon_sym_DASH2, + ACTIONS(963), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(961), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + [157532] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4086), 1, + sym_comment, + ACTIONS(1739), 2, anon_sym_DOT_DOT2, - ACTIONS(1737), 13, - anon_sym_EQ, - sym_identifier, + aux_sym_unquoted_token2, + ACTIONS(1741), 18, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [157563] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7254), 1, + aux_sym__immediate_decimal_token2, + STATE(4087), 1, + sym_comment, + ACTIONS(1787), 4, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [154677] = 4, + ACTIONS(1785), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [157596] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(4095), 1, + ACTIONS(7200), 1, + aux_sym__immediate_decimal_token2, + STATE(4088), 1, sym_comment, - ACTIONS(1607), 6, + ACTIONS(1573), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym__unquoted_in_list_token2, - ACTIONS(1609), 13, + ACTIONS(1575), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -367903,59 +369660,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [154707] = 14, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2548), 1, - anon_sym_COMMA, - ACTIONS(7303), 1, - anon_sym_EQ, - ACTIONS(7305), 1, - sym__newline, - ACTIONS(7307), 1, - anon_sym_COLON, - ACTIONS(7309), 1, - anon_sym_LPAREN, - ACTIONS(7311), 1, - anon_sym_DASH2, - STATE(4096), 1, - sym_comment, - STATE(4296), 1, - sym_flag_capsule, - STATE(4297), 1, - aux_sym_parameter_repeat1, - STATE(5227), 1, - aux_sym_parameter_repeat2, - STATE(6696), 1, - aux_sym_shebang_repeat1, - STATE(5154), 2, - sym_param_type, - sym_param_value, - ACTIONS(7301), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [154757] = 7, + [157629] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7256), 1, - anon_sym_DOT, - STATE(4097), 1, + STATE(4089), 1, sym_comment, - STATE(4098), 1, - aux_sym_cell_path_repeat1, - STATE(4273), 1, - sym_path, - ACTIONS(969), 4, + ACTIONS(1683), 7, ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(967), 12, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1681), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367968,22 +369686,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [154793] = 6, + aux_sym_unquoted_token2, + [157660] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7313), 1, + ACTIONS(7226), 1, anon_sym_DOT, - STATE(4273), 1, - sym_path, - STATE(4098), 2, + STATE(4090), 1, sym_comment, + STATE(4107), 1, aux_sym_cell_path_repeat1, - ACTIONS(973), 4, - ts_builtin_sym_end, + STATE(4175), 1, + sym_path, + ACTIONS(969), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(971), 12, + ACTIONS(967), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367995,18 +369714,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - [154827] = 4, + [157697] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4099), 1, + STATE(4091), 1, sym_comment, - ACTIONS(1757), 4, + ACTIONS(1763), 7, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1755), 15, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1761), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368018,53 +369742,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [154857] = 8, + [157728] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7299), 1, - anon_sym_DOT, - STATE(4100), 1, + STATE(4092), 1, sym_comment, - STATE(4135), 1, - aux_sym_cell_path_repeat1, - STATE(4304), 1, - sym_path, - STATE(4572), 1, - sym_cell_path, - ACTIONS(961), 2, - anon_sym_DASH2, + ACTIONS(1765), 2, anon_sym_DOT_DOT2, - ACTIONS(963), 13, - anon_sym_EQ, - sym_identifier, + aux_sym_unquoted_token2, + ACTIONS(1767), 18, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [154895] = 4, + [157759] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(4101), 1, + ACTIONS(7256), 1, + aux_sym__immediate_decimal_token2, + STATE(4093), 1, sym_comment, - ACTIONS(1621), 6, + ACTIONS(1681), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym__unquoted_in_list_token2, - ACTIONS(1623), 13, + ACTIONS(1683), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -368078,17 +369799,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [154925] = 5, + [157792] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1042), 1, + ACTIONS(1559), 1, + aux_sym_unquoted_token2, + ACTIONS(1822), 1, + anon_sym_LPAREN2, + ACTIONS(7258), 1, anon_sym_DOT_DOT2, - STATE(4102), 1, + STATE(4094), 1, sym_comment, - ACTIONS(1044), 2, + ACTIONS(7260), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7316), 16, + ACTIONS(1828), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368100,22 +369826,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [154957] = 5, - ACTIONS(247), 1, + [157829] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1042), 1, - anon_sym_DOT_DOT2, - STATE(4103), 1, + ACTIONS(7262), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7264), 1, + aux_sym__immediate_decimal_token2, + STATE(4095), 1, sym_comment, - ACTIONS(1044), 2, + ACTIONS(1741), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7316), 16, + ACTIONS(1739), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368127,23 +369856,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [154989] = 5, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [157864] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7318), 1, - anon_sym_QMARK2, - STATE(4104), 1, + ACTIONS(7266), 1, + anon_sym_DOT, + ACTIONS(7268), 1, + aux_sym__immediate_decimal_token2, + STATE(4096), 1, sym_comment, - ACTIONS(986), 3, + ACTIONS(1767), 5, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(984), 15, + ACTIONS(1765), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368155,21 +369885,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, - [155021] = 5, - ACTIONS(247), 1, + aux_sym_unquoted_token2, + [157899] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1042), 1, - anon_sym_DOT_DOT2, - STATE(4105), 1, + ACTIONS(7252), 1, + anon_sym_DOT, + STATE(4097), 1, sym_comment, - ACTIONS(1044), 2, + STATE(4111), 1, + aux_sym_cell_path_repeat1, + STATE(4252), 1, + sym_path, + STATE(4423), 1, + sym_cell_path, + ACTIONS(1737), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7316), 16, + ACTIONS(1733), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368181,51 +369917,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [155053] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4106), 1, - sym_comment, - ACTIONS(1673), 6, - sym_identifier, - anon_sym_DASH2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1675), 13, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [155083] = 5, + [157938] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7283), 1, - aux_sym__immediate_decimal_token2, - STATE(4107), 1, + STATE(4098), 1, sym_comment, - ACTIONS(1757), 5, + ACTIONS(1587), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1755), 13, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1585), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368239,42 +369945,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [155115] = 4, + [157969] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4108), 1, + STATE(4099), 1, sym_comment, - ACTIONS(1763), 6, - sym_identifier, - anon_sym_DASH2, + ACTIONS(1785), 2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1765), 13, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [155145] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1755), 1, aux_sym_unquoted_token2, - ACTIONS(7263), 1, - aux_sym__immediate_decimal_token2, - STATE(4109), 1, - sym_comment, - ACTIONS(1757), 17, + ACTIONS(1787), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368286,22 +369966,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [155177] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [158000] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1783), 1, + ACTIONS(1804), 1, + anon_sym_LPAREN2, + ACTIONS(1812), 1, aux_sym_unquoted_token2, - ACTIONS(7320), 1, - aux_sym__immediate_decimal_token2, - STATE(4110), 1, + ACTIONS(7270), 1, + anon_sym_DOT_DOT2, + STATE(4100), 1, sym_comment, - ACTIONS(1785), 17, + ACTIONS(7272), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1810), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368313,27 +369999,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [155209] = 6, + [158037] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7322), 1, - anon_sym_DOT, - ACTIONS(7324), 1, - aux_sym__immediate_decimal_token2, - STATE(4111), 1, + ACTIONS(7163), 1, + anon_sym_LPAREN2, + ACTIONS(7171), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7173), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7208), 1, + anon_sym_DOLLAR, + ACTIONS(7248), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7250), 1, + aux_sym__immediate_decimal_token3, + STATE(4101), 1, sym_comment, - ACTIONS(1755), 4, + STATE(5148), 1, + sym__immediate_decimal, + ACTIONS(1663), 2, sym_identifier, anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1757), 13, + STATE(5132), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1671), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -368341,23 +370035,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + [158084] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7163), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [155243] = 4, + ACTIONS(7171), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7173), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7208), 1, + anon_sym_DOLLAR, + ACTIONS(7248), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7250), 1, + aux_sym__immediate_decimal_token3, + STATE(4102), 1, + sym_comment, + STATE(5170), 1, + sym__immediate_decimal, + ACTIONS(1673), 2, + sym_identifier, + anon_sym_DASH2, + STATE(5162), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1675), 9, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [158131] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(4112), 1, - sym_comment, - ACTIONS(1785), 4, + ACTIONS(1719), 1, sym__space, - anon_sym_LPAREN2, + ACTIONS(4722), 1, + anon_sym_DOT_DOT2, + ACTIONS(7186), 1, + sym_filesize_unit, + ACTIONS(7188), 1, + sym_duration_unit, + ACTIONS(7190), 1, + aux_sym_unquoted_token2, + STATE(4103), 1, + sym_comment, + ACTIONS(4724), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1783), 15, + ACTIONS(1707), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368371,28 +370104,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [155273] = 9, - ACTIONS(3), 1, + [158172] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4708), 1, - anon_sym_DOT_DOT2, - ACTIONS(7214), 1, - sym_filesize_unit, - ACTIONS(7216), 1, - sym_duration_unit, - ACTIONS(7218), 1, + ACTIONS(1765), 1, aux_sym_unquoted_token2, - STATE(4113), 1, + ACTIONS(7274), 1, + anon_sym_DOT, + ACTIONS(7276), 1, + aux_sym__immediate_decimal_token2, + STATE(4104), 1, sym_comment, - ACTIONS(1721), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4710), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1709), 11, + ACTIONS(1767), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368404,20 +370127,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [155313] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [158207] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7326), 1, - aux_sym__immediate_decimal_token2, - STATE(4114), 1, + STATE(4105), 1, sym_comment, - ACTIONS(1785), 5, + ACTIONS(1841), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1843), 18, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1783), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368429,21 +370154,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [155345] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [158238] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1755), 1, + ACTIONS(1739), 1, aux_sym_unquoted_token2, - ACTIONS(7328), 1, - anon_sym_DOT, - ACTIONS(7330), 1, + ACTIONS(7278), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7280), 1, aux_sym__immediate_decimal_token2, - STATE(4115), 1, + STATE(4106), 1, sym_comment, - ACTIONS(1757), 16, - ts_builtin_sym_end, + ACTIONS(1741), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368455,27 +370183,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [155379] = 8, + [158273] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, - anon_sym_LPAREN2, - ACTIONS(1886), 1, - sym__space, - ACTIONS(1888), 1, - aux_sym_unquoted_token2, - ACTIONS(7332), 1, - anon_sym_DOT_DOT2, - STATE(4116), 1, + ACTIONS(7282), 1, + anon_sym_DOT, + STATE(4175), 1, + sym_path, + STATE(4107), 2, sym_comment, - ACTIONS(7334), 2, + aux_sym_cell_path_repeat1, + ACTIONS(973), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1878), 13, + ACTIONS(971), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368489,17 +370217,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [155417] = 4, + anon_sym_DOT_DOT2, + [158308] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4117), 1, + STATE(4108), 1, sym_comment, - ACTIONS(1892), 4, + ACTIONS(1575), 7, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1890), 15, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1573), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368511,29 +370243,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [155447] = 8, + [158339] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7299), 1, - anon_sym_DOT, - STATE(4118), 1, + ACTIONS(5539), 1, + anon_sym_LPAREN2, + ACTIONS(7285), 1, + anon_sym_DOT_DOT2, + ACTIONS(7289), 1, + sym_filesize_unit, + ACTIONS(7291), 1, + sym_duration_unit, + ACTIONS(7293), 1, + aux_sym__unquoted_in_list_token2, + STATE(4109), 1, sym_comment, - STATE(4135), 1, - aux_sym_cell_path_repeat1, - STATE(4304), 1, - sym_path, - STATE(4510), 1, - sym_cell_path, - ACTIONS(1769), 2, + STATE(7529), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1707), 2, + sym_identifier, anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1771), 13, + ACTIONS(7287), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1719), 10, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -368543,18 +370279,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [155485] = 4, + [158384] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4119), 1, + ACTIONS(7252), 1, + anon_sym_DOT, + STATE(4110), 1, sym_comment, - ACTIONS(996), 3, + STATE(4111), 1, + aux_sym_cell_path_repeat1, + STATE(4252), 1, + sym_path, + STATE(4419), 1, + sym_cell_path, + ACTIONS(1749), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(994), 16, + ACTIONS(1747), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368566,21 +370309,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, anon_sym_DOT_DOT2, - anon_sym_DOT, - [155515] = 4, + [158423] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4120), 1, + ACTIONS(7252), 1, + anon_sym_DOT, + STATE(4111), 1, sym_comment, - ACTIONS(1000), 3, + STATE(4142), 1, + aux_sym_cell_path_repeat1, + STATE(4252), 1, + sym_path, + ACTIONS(969), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(998), 16, + ACTIONS(967), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368592,21 +370338,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, anon_sym_DOT_DOT2, - anon_sym_DOT, - [155545] = 4, - ACTIONS(3), 1, + [158459] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4121), 1, + STATE(4112), 1, sym_comment, - ACTIONS(1004), 3, - sym__space, + ACTIONS(1761), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1763), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1002), 16, + [158489] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1765), 1, + aux_sym_unquoted_token2, + ACTIONS(7295), 1, + anon_sym_DOT, + ACTIONS(7297), 1, + aux_sym__immediate_decimal_token2, + STATE(4113), 1, + sym_comment, + ACTIONS(1767), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368618,24 +370389,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [155575] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [158523] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1739), 1, + ACTIONS(7299), 1, + anon_sym_DOT, + STATE(4114), 1, + sym_comment, + STATE(4208), 1, + aux_sym_cell_path_repeat1, + STATE(4367), 1, + sym_path, + STATE(4622), 1, + sym_cell_path, + ACTIONS(961), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(963), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [158561] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4722), 1, + anon_sym_DOT_DOT2, + ACTIONS(7232), 1, + sym_filesize_unit, + ACTIONS(7234), 1, + sym_duration_unit, + ACTIONS(7236), 1, aux_sym_unquoted_token2, - ACTIONS(7336), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7338), 1, - aux_sym__immediate_decimal_token2, - STATE(4122), 1, + STATE(4115), 1, sym_comment, - ACTIONS(1741), 16, + ACTIONS(1719), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(4724), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1707), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368647,20 +370454,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [155609] = 4, + [158601] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4123), 1, + STATE(4116), 1, sym_comment, - ACTIONS(992), 3, + ACTIONS(1741), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(990), 16, + ACTIONS(1739), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368674,24 +370478,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, anon_sym_DOT_DOT2, - anon_sym_DOT, - [155639] = 6, + aux_sym_unquoted_token2, + [158631] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7340), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7342), 1, - aux_sym__immediate_decimal_token2, - STATE(4124), 1, + STATE(4117), 1, sym_comment, - ACTIONS(1739), 4, + ACTIONS(1573), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, aux_sym__unquoted_in_list_token2, - ACTIONS(1741), 13, + ACTIONS(1575), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -368705,18 +370506,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [155673] = 5, + [158661] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7344), 1, - anon_sym_QMARK2, - STATE(4125), 1, + STATE(4118), 1, sym_comment, - ACTIONS(980), 3, + ACTIONS(996), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(978), 15, + ACTIONS(994), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368730,19 +370529,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT2, anon_sym_DOT, - [155705] = 4, + [158691] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4126), 1, + ACTIONS(7301), 1, + anon_sym_QMARK2, + STATE(4119), 1, sym_comment, - ACTIONS(1741), 4, + ACTIONS(980), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1739), 15, + ACTIONS(978), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368757,24 +370558,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [155735] = 8, + anon_sym_DOT, + [158723] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym_unquoted_token2, - ACTIONS(1868), 1, + ACTIONS(1804), 1, anon_sym_LPAREN2, - ACTIONS(1874), 1, + ACTIONS(1810), 1, sym__space, - ACTIONS(7346), 1, + ACTIONS(1812), 1, + aux_sym_unquoted_token2, + ACTIONS(7303), 1, anon_sym_DOT_DOT2, - STATE(4127), 1, + STATE(4120), 1, sym_comment, - ACTIONS(7348), 2, + ACTIONS(7305), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1866), 13, + ACTIONS(1802), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368788,97 +370589,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [155773] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7350), 1, - anon_sym_DOT, - STATE(4304), 1, - sym_path, - ACTIONS(971), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - STATE(4128), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(973), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [155806] = 4, + [158761] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5683), 1, - anon_sym_DASH2, - STATE(4129), 1, + ACTIONS(1765), 1, + aux_sym_unquoted_token2, + ACTIONS(7276), 1, + aux_sym__immediate_decimal_token2, + STATE(4121), 1, sym_comment, - ACTIONS(5685), 17, - anon_sym_EQ, - sym_identifier, + ACTIONS(1767), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - [155835] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7324), 1, - aux_sym__immediate_decimal_token2, - STATE(4130), 1, - sym_comment, - ACTIONS(1755), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1757), 13, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [155866] = 6, + [158793] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7353), 1, - anon_sym_DOT, - ACTIONS(7355), 1, + ACTIONS(7307), 1, aux_sym__immediate_decimal_token2, - STATE(4131), 1, + STATE(4122), 1, sym_comment, - ACTIONS(1757), 2, + ACTIONS(1787), 5, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, - ACTIONS(1755), 14, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1785), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368890,23 +370641,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [155899] = 5, + [158825] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7357), 1, - aux_sym__immediate_decimal_token2, - STATE(4132), 1, + ACTIONS(7299), 1, + anon_sym_DOT, + STATE(4123), 1, sym_comment, - ACTIONS(1783), 4, - sym_identifier, + STATE(4208), 1, + aux_sym_cell_path_repeat1, + STATE(4367), 1, + sym_path, + STATE(4617), 1, + sym_cell_path, + ACTIONS(1747), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1785), 13, + ACTIONS(1749), 13, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -368916,23 +370671,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [155930] = 6, - ACTIONS(3), 1, + [158863] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2208), 1, - anon_sym_LPAREN2, - ACTIONS(2212), 1, - aux_sym_unquoted_token4, - STATE(4133), 1, + ACTIONS(1038), 1, + anon_sym_DOT_DOT2, + STATE(4124), 1, sym_comment, - ACTIONS(2206), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(2210), 13, + ACTIONS(1040), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7309), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368946,18 +370697,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [155963] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [158895] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4819), 1, + ACTIONS(1038), 1, anon_sym_DOT_DOT2, - STATE(4134), 1, + STATE(4125), 1, sym_comment, - ACTIONS(4821), 2, + ACTIONS(1040), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7316), 15, - ts_builtin_sym_end, + ACTIONS(7309), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368969,26 +370722,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [155994] = 7, + [158927] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7299), 1, - anon_sym_DOT, - STATE(4128), 1, - aux_sym_cell_path_repeat1, - STATE(4135), 1, + ACTIONS(7311), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7313), 1, + aux_sym__immediate_decimal_token2, + STATE(4126), 1, sym_comment, - STATE(4304), 1, - sym_path, - ACTIONS(967), 2, + ACTIONS(1739), 4, + sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(969), 13, + aux_sym__unquoted_in_list_token2, + ACTIONS(1741), 13, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -368998,50 +370752,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [156029] = 5, + [158961] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4819), 1, - anon_sym_DOT_DOT2, - STATE(4136), 1, + STATE(4127), 1, sym_comment, - ACTIONS(4821), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7316), 15, - ts_builtin_sym_end, + ACTIONS(1585), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1587), 13, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [156060] = 8, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [158991] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1771), 1, - sym__space, - ACTIONS(7359), 1, - anon_sym_DOT, - STATE(4137), 1, + STATE(4128), 1, sym_comment, - STATE(4234), 1, - sym_cell_path, - STATE(4287), 1, - aux_sym_cell_path_repeat1, - STATE(4540), 1, - sym_path, - ACTIONS(1769), 13, + ACTIONS(1787), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1785), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369055,42 +370805,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [156097] = 5, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [159021] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1755), 1, - aux_sym_unquoted_token2, - ACTIONS(7330), 1, - aux_sym__immediate_decimal_token2, - STATE(4138), 1, + STATE(4129), 1, sym_comment, - ACTIONS(1757), 16, - ts_builtin_sym_end, + ACTIONS(1681), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1683), 13, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_LPAREN2, - [156128] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [159051] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4139), 1, + STATE(4130), 1, sym_comment, - ACTIONS(1008), 3, + ACTIONS(1004), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1006), 15, + ACTIONS(1002), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369104,26 +370856,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT2, anon_sym_DOT, - [156157] = 8, - ACTIONS(3), 1, + [159081] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym_unquoted_token2, - ACTIONS(1868), 1, - anon_sym_LPAREN2, - ACTIONS(7361), 1, - anon_sym_DOT_DOT2, - STATE(4140), 1, + ACTIONS(7315), 1, + anon_sym_DOT, + ACTIONS(7317), 1, + aux_sym__immediate_decimal_token2, + STATE(4131), 1, sym_comment, - ACTIONS(1874), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7363), 2, + ACTIONS(1765), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1767), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1866), 11, + [159115] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1739), 1, + aux_sym_unquoted_token2, + ACTIONS(7319), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7321), 1, + aux_sym__immediate_decimal_token2, + STATE(4132), 1, + sym_comment, + ACTIONS(1741), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369135,20 +370911,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [156194] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [159149] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2216), 1, + ACTIONS(1559), 1, + aux_sym_unquoted_token2, + ACTIONS(1822), 1, anon_sym_LPAREN2, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - STATE(4141), 1, + ACTIONS(1828), 1, + sym__space, + ACTIONS(7323), 1, + anon_sym_DOT_DOT2, + STATE(4133), 1, sym_comment, - ACTIONS(2214), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(2218), 13, + ACTIONS(7325), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1820), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369162,49 +370945,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [156227] = 6, - ACTIONS(3), 1, + [159187] = 14, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2216), 1, - anon_sym_LPAREN2, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - STATE(4142), 1, - sym_comment, - ACTIONS(2222), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(2224), 13, + ACTIONS(2538), 1, + anon_sym_COMMA, + ACTIONS(7329), 1, + anon_sym_EQ, + ACTIONS(7331), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(7333), 1, + anon_sym_COLON, + ACTIONS(7335), 1, + anon_sym_LPAREN, + ACTIONS(7337), 1, + anon_sym_DASH2, + STATE(4134), 1, + sym_comment, + STATE(4299), 1, + sym_flag_capsule, + STATE(4306), 1, + aux_sym_parameter_repeat1, + STATE(5238), 1, + aux_sym_parameter_repeat2, + STATE(6777), 1, + aux_sym_shebang_repeat1, + STATE(5171), 2, + sym_param_type, + sym_param_value, + ACTIONS(7327), 7, + sym_identifier, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [156260] = 8, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [159237] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2100), 1, - sym__space, - ACTIONS(7359), 1, - anon_sym_DOT, - STATE(4143), 1, + ACTIONS(7339), 1, + anon_sym_QMARK2, + STATE(4135), 1, sym_comment, - STATE(4287), 1, - aux_sym_cell_path_repeat1, - STATE(4540), 1, - sym_path, - STATE(4641), 1, - sym_cell_path, - ACTIONS(2098), 13, + ACTIONS(986), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(984), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369218,22 +371006,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [156297] = 8, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [159269] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2104), 1, - sym__space, - ACTIONS(7359), 1, - anon_sym_DOT, - STATE(4144), 1, + STATE(4136), 1, sym_comment, - STATE(4287), 1, - aux_sym_cell_path_repeat1, - STATE(4540), 1, - sym_path, - STATE(4646), 1, - sym_cell_path, - ACTIONS(2102), 13, + ACTIONS(1000), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(998), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369247,17 +371031,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [156334] = 5, - ACTIONS(247), 1, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [159299] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1783), 1, - aux_sym_unquoted_token2, - ACTIONS(7365), 1, - aux_sym__immediate_decimal_token2, - STATE(4145), 1, + STATE(4137), 1, sym_comment, - ACTIONS(1785), 16, - ts_builtin_sym_end, + ACTIONS(1843), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1841), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369269,20 +371056,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [156365] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [159329] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4146), 1, + STATE(4138), 1, sym_comment, - ACTIONS(1012), 3, + ACTIONS(1767), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1010), 15, + ACTIONS(1765), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369297,17 +371085,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, - [156394] = 4, + aux_sym_unquoted_token2, + [159359] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4147), 1, + STATE(4139), 1, sym_comment, - ACTIONS(1016), 3, + ACTIONS(992), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1014), 15, + ACTIONS(990), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369321,19 +371109,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT2, anon_sym_DOT, - [156423] = 4, - ACTIONS(3), 1, + [159389] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4148), 1, + ACTIONS(7299), 1, + anon_sym_DOT, + STATE(4140), 1, sym_comment, - ACTIONS(996), 4, - ts_builtin_sym_end, - sym__space, + STATE(4208), 1, + aux_sym_cell_path_repeat1, + STATE(4367), 1, + sym_path, + STATE(4532), 1, + sym_cell_path, + ACTIONS(1733), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1737), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(994), 14, + [159427] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1038), 1, + anon_sym_DOT_DOT2, + STATE(4141), 1, + sym_comment, + ACTIONS(1040), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7309), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369345,20 +371164,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [156452] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [159459] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4149), 1, + ACTIONS(7341), 1, + anon_sym_DOT, + STATE(4252), 1, + sym_path, + STATE(4142), 2, sym_comment, - ACTIONS(1000), 4, + aux_sym_cell_path_repeat1, + ACTIONS(973), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(998), 14, + ACTIONS(971), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369370,20 +371196,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, anon_sym_DOT_DOT2, - anon_sym_DOT, - [156481] = 4, - ACTIONS(3), 1, + [159493] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4150), 1, + ACTIONS(1785), 1, + aux_sym_unquoted_token2, + ACTIONS(7344), 1, + aux_sym__immediate_decimal_token2, + STATE(4143), 1, sym_comment, - ACTIONS(1004), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1002), 14, + ACTIONS(1787), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369395,20 +371218,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [156510] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [159525] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4151), 1, + ACTIONS(7268), 1, + aux_sym__immediate_decimal_token2, + STATE(4144), 1, sym_comment, - ACTIONS(992), 4, + ACTIONS(1767), 5, ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(990), 14, + ACTIONS(1765), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369420,25 +371249,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, anon_sym_DOT_DOT2, - anon_sym_DOT, - [156539] = 8, + aux_sym_unquoted_token2, + [159557] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7359), 1, - anon_sym_DOT, - ACTIONS(7369), 1, + ACTIONS(1865), 1, sym__space, - STATE(4152), 1, + ACTIONS(7346), 1, + anon_sym_DOT, + STATE(4145), 1, sym_comment, - STATE(4287), 1, + STATE(4235), 1, aux_sym_cell_path_repeat1, - STATE(4540), 1, + STATE(4566), 1, sym_path, - STATE(4650), 1, + STATE(4758), 1, sym_cell_path, - ACTIONS(7367), 13, + ACTIONS(1863), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369452,22 +371280,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [156576] = 8, + [159594] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2108), 1, - sym__space, - ACTIONS(7359), 1, - anon_sym_DOT, - STATE(4153), 1, + STATE(4146), 1, sym_comment, - STATE(4287), 1, - aux_sym_cell_path_repeat1, - STATE(4540), 1, - sym_path, - STATE(4702), 1, - sym_cell_path, - ACTIONS(2106), 13, + ACTIONS(2268), 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + aux_sym_unquoted_token4, + ACTIONS(2270), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369481,22 +371304,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [156613] = 8, + anon_sym_LPAREN2, + [159623] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7359), 1, - anon_sym_DOT, - ACTIONS(7373), 1, + ACTIONS(1909), 1, sym__space, - STATE(4154), 1, + ACTIONS(7346), 1, + anon_sym_DOT, + STATE(4147), 1, sym_comment, - STATE(4287), 1, + STATE(4235), 1, aux_sym_cell_path_repeat1, - STATE(4540), 1, + STATE(4566), 1, sym_path, - STATE(4709), 1, + STATE(4791), 1, sym_cell_path, - ACTIONS(7371), 13, + ACTIONS(1907), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369510,24 +371334,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [156650] = 8, + [159660] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, - anon_sym_LPAREN2, - ACTIONS(1888), 1, - aux_sym_unquoted_token2, - ACTIONS(7375), 1, - anon_sym_DOT_DOT2, - STATE(4155), 1, - sym_comment, - ACTIONS(1886), 2, - ts_builtin_sym_end, + ACTIONS(1737), 1, sym__space, - ACTIONS(7377), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1878), 11, + ACTIONS(7346), 1, + anon_sym_DOT, + STATE(4148), 1, + sym_comment, + STATE(4235), 1, + aux_sym_cell_path_repeat1, + STATE(4236), 1, + sym_cell_path, + STATE(4566), 1, + sym_path, + ACTIONS(1733), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369539,16 +371361,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [156687] = 5, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [159697] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(4156), 1, + ACTIONS(2036), 1, + sym__space, + ACTIONS(7346), 1, + anon_sym_DOT, + STATE(4149), 1, sym_comment, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7379), 16, + STATE(4235), 1, + aux_sym_cell_path_repeat1, + STATE(4566), 1, + sym_path, + STATE(4786), 1, + sym_cell_path, + ACTIONS(2034), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369562,25 +371392,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [156718] = 8, + [159734] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1737), 1, - sym__space, - ACTIONS(7359), 1, - anon_sym_DOT, - STATE(4157), 1, + ACTIONS(2240), 1, + anon_sym_LPAREN2, + ACTIONS(2244), 1, + aux_sym_unquoted_token4, + STATE(4150), 1, sym_comment, - STATE(4240), 1, - sym_cell_path, - STATE(4287), 1, - aux_sym_cell_path_repeat1, - STATE(4540), 1, - sym_path, - ACTIONS(1735), 13, + ACTIONS(2238), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2242), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369594,14 +371419,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [156755] = 4, + [159767] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1755), 1, + ACTIONS(1559), 1, aux_sym_unquoted_token2, - STATE(4158), 1, + ACTIONS(1822), 1, + anon_sym_LPAREN2, + STATE(4151), 1, sym_comment, - ACTIONS(1757), 17, + ACTIONS(1828), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369618,15 +371445,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [156784] = 4, + [159798] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7348), 1, + anon_sym_DOT, + STATE(4367), 1, + sym_path, + ACTIONS(971), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + STATE(4152), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(973), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [159831] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5655), 1, + ACTIONS(5660), 1, anon_sym_DASH2, - STATE(4159), 1, + STATE(4153), 1, sym_comment, - ACTIONS(5657), 17, + ACTIONS(5662), 17, anon_sym_EQ, sym_identifier, sym__newline, @@ -369644,19 +371497,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [156813] = 6, - ACTIONS(3), 1, + [159860] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7381), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7383), 1, - aux_sym__immediate_decimal_token2, - STATE(4160), 1, + ACTIONS(5683), 1, + anon_sym_DASH2, + STATE(4154), 1, sym_comment, - ACTIONS(1741), 2, - sym__space, + ACTIONS(5685), 17, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [159889] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1661), 1, + aux_sym_unquoted_token2, + ACTIONS(2260), 1, anon_sym_LPAREN2, - ACTIONS(1739), 14, + STATE(4155), 1, + sym_comment, + ACTIONS(2262), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369670,18 +371545,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [156846] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [159920] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4819), 1, - anon_sym_DOT_DOT2, - STATE(4161), 1, + ACTIONS(1765), 1, + aux_sym_unquoted_token2, + ACTIONS(7297), 1, + aux_sym__immediate_decimal_token2, + STATE(4156), 1, sym_comment, - ACTIONS(4821), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7316), 15, + ACTIONS(1767), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -369697,14 +371573,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [156877] = 4, + anon_sym_LPAREN2, + [159951] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1739), 1, + ACTIONS(1785), 1, aux_sym_unquoted_token2, - STATE(4162), 1, + STATE(4157), 1, sym_comment, - ACTIONS(1741), 17, + ACTIONS(1787), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369722,14 +371599,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [156906] = 4, - ACTIONS(247), 1, + [159980] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1783), 1, - aux_sym_unquoted_token2, - STATE(4163), 1, + ACTIONS(7351), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7353), 1, + aux_sym__immediate_decimal_token2, + STATE(4158), 1, sym_comment, - ACTIONS(1785), 17, + ACTIONS(1741), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1739), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369743,43 +371625,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [156935] = 4, - ACTIONS(247), 1, + aux_sym_unquoted_token2, + [160013] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5687), 1, - anon_sym_DASH2, - STATE(4164), 1, + ACTIONS(7355), 1, + anon_sym_QMARK2, + STATE(4159), 1, sym_comment, - ACTIONS(5689), 17, - anon_sym_EQ, - sym_identifier, + ACTIONS(980), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(978), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [156964] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [160044] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7357), 1, + anon_sym_QMARK2, + STATE(4160), 1, + sym_comment, + ACTIONS(986), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(984), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [160075] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5691), 1, + ACTIONS(5650), 1, anon_sym_DASH2, - STATE(4165), 1, + STATE(4161), 1, sym_comment, - ACTIONS(5693), 17, + ACTIONS(5652), 17, anon_sym_EQ, sym_identifier, sym__newline, @@ -369797,22 +371703,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [156993] = 8, + [160104] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2084), 1, + ACTIONS(1933), 1, sym__space, - ACTIONS(7359), 1, + ACTIONS(7346), 1, anon_sym_DOT, - STATE(4166), 1, + STATE(4162), 1, sym_comment, - STATE(4287), 1, + STATE(4235), 1, aux_sym_cell_path_repeat1, - STATE(4540), 1, + STATE(4566), 1, sym_path, - STATE(4658), 1, + STATE(4788), 1, sym_cell_path, - ACTIONS(2082), 13, + ACTIONS(1931), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369826,14 +371732,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [157030] = 4, - ACTIONS(247), 1, + [160141] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1890), 1, - aux_sym_unquoted_token2, - STATE(4167), 1, + ACTIONS(1851), 1, + sym__space, + ACTIONS(7346), 1, + anon_sym_DOT, + STATE(4163), 1, sym_comment, - ACTIONS(1892), 17, + STATE(4235), 1, + aux_sym_cell_path_repeat1, + STATE(4566), 1, + sym_path, + STATE(4759), 1, + sym_cell_path, + ACTIONS(1847), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369847,20 +371761,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [157059] = 5, + [160178] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym_unquoted_token2, - ACTIONS(1868), 1, + ACTIONS(1804), 1, anon_sym_LPAREN2, - STATE(4168), 1, + ACTIONS(1812), 1, + aux_sym_unquoted_token2, + STATE(4164), 1, sym_comment, - ACTIONS(1874), 16, + ACTIONS(2232), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369877,22 +371787,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [157090] = 8, + [160209] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2092), 1, + ACTIONS(1749), 1, sym__space, - ACTIONS(7359), 1, + ACTIONS(7346), 1, anon_sym_DOT, - STATE(4169), 1, + STATE(4165), 1, sym_comment, - STATE(4287), 1, + STATE(4235), 1, aux_sym_cell_path_repeat1, - STATE(4540), 1, - sym_path, - STATE(4693), 1, + STATE(4245), 1, sym_cell_path, - ACTIONS(2090), 13, + STATE(4566), 1, + sym_path, + ACTIONS(1747), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369906,16 +371816,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [157127] = 5, + [160246] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1880), 1, + ACTIONS(7359), 1, + aux_sym__immediate_decimal_token2, + STATE(4166), 1, + sym_comment, + ACTIONS(1785), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1787), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_LPAREN2, - ACTIONS(1888), 1, - aux_sym_unquoted_token2, - STATE(4170), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [160277] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5691), 1, + anon_sym_DASH2, + STATE(4167), 1, + sym_comment, + ACTIONS(5693), 17, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [160306] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1873), 1, + sym__space, + ACTIONS(7346), 1, + anon_sym_DOT, + STATE(4168), 1, sym_comment, - ACTIONS(2189), 16, + STATE(4235), 1, + aux_sym_cell_path_repeat1, + STATE(4566), 1, + sym_path, + STATE(4764), 1, + sym_cell_path, + ACTIONS(1871), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369929,19 +371896,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [157158] = 5, + [160343] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1880), 1, - anon_sym_LPAREN2, - ACTIONS(1888), 1, + ACTIONS(1841), 1, aux_sym_unquoted_token2, - STATE(4171), 1, + STATE(4169), 1, sym_comment, - ACTIONS(1886), 16, + ACTIONS(1843), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369958,22 +371920,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [157189] = 8, + anon_sym_LPAREN2, + [160372] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1927), 1, + ACTIONS(1885), 1, sym__space, - ACTIONS(7359), 1, + ACTIONS(7346), 1, anon_sym_DOT, - STATE(4172), 1, + STATE(4170), 1, sym_comment, - STATE(4287), 1, + STATE(4235), 1, aux_sym_cell_path_repeat1, - STATE(4540), 1, + STATE(4566), 1, sym_path, - STATE(4736), 1, + STATE(4771), 1, sym_cell_path, - ACTIONS(1925), 13, + ACTIONS(1883), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369987,16 +371950,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [157226] = 5, - ACTIONS(247), 1, + [160409] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1579), 1, - aux_sym_unquoted_token2, - ACTIONS(2236), 1, + ACTIONS(2248), 1, anon_sym_LPAREN2, - STATE(4173), 1, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + STATE(4171), 1, sym_comment, - ACTIONS(2238), 16, + ACTIONS(2246), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2250), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370010,25 +371977,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [157257] = 8, + [160442] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1935), 1, - sym__space, - ACTIONS(7359), 1, - anon_sym_DOT, - STATE(4174), 1, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + STATE(4172), 1, sym_comment, - STATE(4287), 1, - aux_sym_cell_path_repeat1, - STATE(4540), 1, - sym_path, - STATE(4766), 1, - sym_cell_path, - ACTIONS(1933), 13, + ACTIONS(2254), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2256), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370042,22 +372004,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [157294] = 8, + [160475] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1946), 1, + ACTIONS(1901), 1, sym__space, - ACTIONS(7359), 1, + ACTIONS(7346), 1, anon_sym_DOT, - STATE(4175), 1, + STATE(4173), 1, sym_comment, - STATE(4287), 1, + STATE(4235), 1, aux_sym_cell_path_repeat1, - STATE(4540), 1, + STATE(4566), 1, sym_path, - STATE(4779), 1, + STATE(4790), 1, sym_cell_path, - ACTIONS(1944), 13, + ACTIONS(1899), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370071,16 +372033,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [157331] = 5, + [160512] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2254), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - ACTIONS(2258), 1, - aux_sym_unquoted_token2, - STATE(4176), 1, + STATE(4174), 1, sym_comment, - ACTIONS(2256), 16, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7361), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370097,22 +372059,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [157362] = 8, + [160543] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1950), 1, + STATE(4175), 1, + sym_comment, + ACTIONS(1008), 3, sym__space, - ACTIONS(7359), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1006), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, anon_sym_DOT, + [160572] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5679), 1, + anon_sym_DASH2, + STATE(4176), 1, + sym_comment, + ACTIONS(5681), 17, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [160601] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2226), 1, + anon_sym_LPAREN2, + ACTIONS(2228), 1, + aux_sym_unquoted_token4, STATE(4177), 1, sym_comment, - STATE(4287), 1, - aux_sym_cell_path_repeat1, - STATE(4540), 1, - sym_path, - STATE(4611), 1, - sym_cell_path, - ACTIONS(1948), 13, + ACTIONS(1026), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(1028), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370126,22 +372136,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [157399] = 8, + [160634] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1954), 1, + ACTIONS(1855), 1, sym__space, - ACTIONS(7359), 1, + ACTIONS(7346), 1, anon_sym_DOT, STATE(4178), 1, sym_comment, - STATE(4287), 1, + STATE(4235), 1, aux_sym_cell_path_repeat1, - STATE(4540), 1, + STATE(4566), 1, sym_path, - STATE(4612), 1, + STATE(4658), 1, sym_cell_path, - ACTIONS(1952), 13, + ACTIONS(1853), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370155,22 +372165,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [157436] = 8, + [160671] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1962), 1, - sym__space, - ACTIONS(7359), 1, - anon_sym_DOT, STATE(4179), 1, sym_comment, - STATE(4287), 1, - aux_sym_cell_path_repeat1, - STATE(4540), 1, - sym_path, - STATE(4615), 1, - sym_cell_path, - ACTIONS(1960), 13, + ACTIONS(1741), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1739), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370182,24 +372188,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [157473] = 8, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [160700] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1970), 1, - sym__space, - ACTIONS(7359), 1, - anon_sym_DOT, + ACTIONS(1804), 1, + anon_sym_LPAREN2, + ACTIONS(1812), 1, + aux_sym_unquoted_token2, STATE(4180), 1, sym_comment, - STATE(4287), 1, - aux_sym_cell_path_repeat1, - STATE(4540), 1, - sym_path, - STATE(4617), 1, - sym_cell_path, - ACTIONS(1968), 13, + ACTIONS(1810), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370213,22 +372213,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [157510] = 8, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [160731] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__space, - ACTIONS(7359), 1, - anon_sym_DOT, + ACTIONS(2274), 1, + anon_sym_LPAREN2, + ACTIONS(2278), 1, + aux_sym_unquoted_token2, STATE(4181), 1, sym_comment, - STATE(4287), 1, - aux_sym_cell_path_repeat1, - STATE(4540), 1, - sym_path, - STATE(4621), 1, - sym_cell_path, - ACTIONS(1972), 13, + ACTIONS(2276), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370242,22 +372239,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [157547] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [160762] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1986), 1, + ACTIONS(1889), 1, sym__space, - ACTIONS(7359), 1, + ACTIONS(7346), 1, anon_sym_DOT, STATE(4182), 1, sym_comment, - STATE(4287), 1, + STATE(4235), 1, aux_sym_cell_path_repeat1, - STATE(4540), 1, + STATE(4566), 1, sym_path, - STATE(4622), 1, + STATE(4773), 1, sym_cell_path, - ACTIONS(1984), 13, + ACTIONS(1887), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370271,22 +372271,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [157584] = 8, + [160799] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1990), 1, - sym__space, - ACTIONS(7359), 1, + ACTIONS(7363), 1, anon_sym_DOT, + ACTIONS(7365), 1, + aux_sym__immediate_decimal_token2, STATE(4183), 1, sym_comment, - STATE(4287), 1, - aux_sym_cell_path_repeat1, - STATE(4540), 1, - sym_path, - STATE(4623), 1, - sym_cell_path, - ACTIONS(1988), 13, + ACTIONS(1767), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1765), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370300,22 +372297,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [157621] = 8, + aux_sym_unquoted_token2, + [160832] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1994), 1, - sym__space, - ACTIONS(7359), 1, - anon_sym_DOT, + ACTIONS(1559), 1, + aux_sym_unquoted_token2, + ACTIONS(1822), 1, + anon_sym_LPAREN2, + ACTIONS(7367), 1, + anon_sym_DOT_DOT2, STATE(4184), 1, sym_comment, - STATE(4287), 1, - aux_sym_cell_path_repeat1, - STATE(4540), 1, - sym_path, - STATE(4624), 1, - sym_cell_path, - ACTIONS(1992), 13, + ACTIONS(1828), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7369), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1820), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370327,24 +372327,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [157658] = 8, - ACTIONS(3), 1, + [160869] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1998), 1, - sym__space, - ACTIONS(7359), 1, - anon_sym_DOT, + ACTIONS(4890), 1, + anon_sym_DOT_DOT2, STATE(4185), 1, sym_comment, - STATE(4287), 1, - aux_sym_cell_path_repeat1, - STATE(4540), 1, - sym_path, - STATE(4625), 1, - sym_cell_path, - ACTIONS(1996), 13, + ACTIONS(4892), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7309), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370356,24 +372350,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [157695] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [160900] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2002), 1, + ACTIONS(1940), 1, sym__space, - ACTIONS(7359), 1, + ACTIONS(7346), 1, anon_sym_DOT, STATE(4186), 1, sym_comment, - STATE(4287), 1, + STATE(4235), 1, aux_sym_cell_path_repeat1, - STATE(4540), 1, + STATE(4566), 1, sym_path, - STATE(4626), 1, + STATE(4718), 1, sym_cell_path, - ACTIONS(2000), 13, + ACTIONS(1938), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370387,22 +372382,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [157732] = 8, + [160937] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2006), 1, - sym__space, - ACTIONS(7359), 1, - anon_sym_DOT, STATE(4187), 1, sym_comment, - STATE(4287), 1, - aux_sym_cell_path_repeat1, - STATE(4540), 1, - sym_path, - STATE(4627), 1, - sym_cell_path, - ACTIONS(2004), 13, + ACTIONS(992), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(990), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370414,24 +372404,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [157769] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2070), 1, - sym__space, - ACTIONS(7359), 1, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, anon_sym_DOT, + [160966] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1765), 1, + aux_sym_unquoted_token2, STATE(4188), 1, sym_comment, - STATE(4287), 1, - aux_sym_cell_path_repeat1, - STATE(4540), 1, - sym_path, - STATE(4628), 1, - sym_cell_path, - ACTIONS(2068), 13, + ACTIONS(1767), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370445,22 +372428,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [157806] = 8, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [160995] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2074), 1, - sym__space, - ACTIONS(7359), 1, - anon_sym_DOT, + ACTIONS(4543), 1, + anon_sym_LPAREN2, STATE(4189), 1, sym_comment, - STATE(4287), 1, - aux_sym_cell_path_repeat1, - STATE(4540), 1, - sym_path, - STATE(4629), 1, - sym_cell_path, - ACTIONS(2072), 13, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7361), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370474,22 +372455,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [157843] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [161026] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1911), 1, + ACTIONS(1861), 1, sym__space, - ACTIONS(7359), 1, + ACTIONS(7346), 1, anon_sym_DOT, STATE(4190), 1, sym_comment, - STATE(4287), 1, + STATE(4235), 1, aux_sym_cell_path_repeat1, - STATE(4540), 1, + STATE(4566), 1, sym_path, - STATE(4630), 1, + STATE(4746), 1, sym_cell_path, - ACTIONS(1907), 13, + ACTIONS(1859), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370503,22 +372487,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [157880] = 8, + [161063] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1915), 1, + ACTIONS(1893), 1, sym__space, - ACTIONS(7359), 1, + ACTIONS(7346), 1, anon_sym_DOT, STATE(4191), 1, sym_comment, - STATE(4287), 1, + STATE(4235), 1, aux_sym_cell_path_repeat1, - STATE(4540), 1, + STATE(4566), 1, sym_path, - STATE(4631), 1, + STATE(4774), 1, sym_cell_path, - ACTIONS(1913), 13, + ACTIONS(1891), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370532,22 +372516,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [157917] = 8, + [161100] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + STATE(4192), 1, + sym_comment, + ACTIONS(1787), 5, + ts_builtin_sym_end, sym__space, - ACTIONS(7359), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1785), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [161129] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4193), 1, + sym_comment, + ACTIONS(1767), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1765), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [161158] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7346), 1, anon_sym_DOT, - STATE(4192), 1, + ACTIONS(7373), 1, + sym__space, + STATE(4194), 1, sym_comment, - STATE(4287), 1, + STATE(4235), 1, aux_sym_cell_path_repeat1, - STATE(4540), 1, + STATE(4566), 1, sym_path, - STATE(4639), 1, + STATE(4660), 1, sym_cell_path, - ACTIONS(1976), 13, + ACTIONS(7371), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370561,18 +372595,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [157954] = 4, + [161195] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4193), 1, + STATE(4195), 1, sym_comment, - ACTIONS(1757), 5, + ACTIONS(996), 4, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1755), 13, + ACTIONS(994), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370584,18 +372617,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_QMARK2, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [157983] = 5, - ACTIONS(247), 1, + anon_sym_DOT, + [161224] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4196), 1, + sym_comment, + ACTIONS(1000), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(998), 14, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [161253] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(1804), 1, anon_sym_LPAREN2, - STATE(4194), 1, + ACTIONS(1812), 1, + aux_sym_unquoted_token2, + ACTIONS(7375), 1, + anon_sym_DOT_DOT2, + STATE(4197), 1, sym_comment, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7379), 16, + ACTIONS(1810), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7377), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1802), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370607,19 +372674,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [158014] = 4, + [161290] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5651), 1, + ACTIONS(5687), 1, anon_sym_DASH2, - STATE(4195), 1, + STATE(4198), 1, sym_comment, - ACTIONS(5653), 17, + ACTIONS(5689), 17, anon_sym_EQ, sym_identifier, sym__newline, @@ -370637,22 +372699,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [158043] = 8, + [161319] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2096), 1, + ACTIONS(1897), 1, sym__space, - ACTIONS(7359), 1, + ACTIONS(7346), 1, anon_sym_DOT, - STATE(4196), 1, + STATE(4199), 1, sym_comment, - STATE(4287), 1, + STATE(4235), 1, aux_sym_cell_path_repeat1, - STATE(4540), 1, + STATE(4566), 1, sym_path, - STATE(4654), 1, + STATE(4775), 1, sym_cell_path, - ACTIONS(2094), 13, + ACTIONS(1895), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370666,18 +372728,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158080] = 4, - ACTIONS(3), 1, + [161356] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4197), 1, + ACTIONS(4890), 1, + anon_sym_DOT_DOT2, + STATE(4200), 1, sym_comment, - ACTIONS(1741), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, + ACTIONS(4892), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1739), 13, + ACTIONS(7309), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370689,24 +372751,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [158109] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [161387] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(963), 1, + ACTIONS(1881), 1, sym__space, - ACTIONS(7359), 1, + ACTIONS(7346), 1, anon_sym_DOT, - STATE(4198), 1, + STATE(4201), 1, sym_comment, - STATE(4214), 1, - sym_cell_path, - STATE(4287), 1, + STATE(4235), 1, aux_sym_cell_path_repeat1, - STATE(4540), 1, + STATE(4566), 1, sym_path, - ACTIONS(961), 13, + STATE(4769), 1, + sym_cell_path, + ACTIONS(1879), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370720,19 +372783,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158146] = 5, + [161424] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7385), 1, - anon_sym_QMARK2, - STATE(4199), 1, - sym_comment, - ACTIONS(980), 4, - ts_builtin_sym_end, + ACTIONS(2028), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(978), 13, + ACTIONS(7346), 1, + anon_sym_DOT, + STATE(4202), 1, + sym_comment, + STATE(4235), 1, + aux_sym_cell_path_repeat1, + STATE(4566), 1, + sym_path, + STATE(4784), 1, + sym_cell_path, + ACTIONS(2026), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370744,21 +372810,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [158177] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [161461] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7387), 1, - anon_sym_QMARK2, - STATE(4200), 1, + ACTIONS(4890), 1, + anon_sym_DOT_DOT2, + STATE(4203), 1, sym_comment, - ACTIONS(986), 4, - ts_builtin_sym_end, - sym__space, + ACTIONS(4892), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(984), 13, + ACTIONS(7309), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370770,20 +372835,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [158208] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [161492] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4201), 1, - sym_comment, - ACTIONS(1785), 5, - ts_builtin_sym_end, + ACTIONS(1869), 1, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1783), 13, + ACTIONS(7346), 1, + anon_sym_DOT, + STATE(4204), 1, + sym_comment, + STATE(4235), 1, + aux_sym_cell_path_repeat1, + STATE(4566), 1, + sym_path, + STATE(4676), 1, + sym_cell_path, + ACTIONS(1867), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370795,45 +372865,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [158237] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [161529] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5695), 1, - anon_sym_DASH2, - STATE(4202), 1, + ACTIONS(7317), 1, + aux_sym__immediate_decimal_token2, + STATE(4205), 1, sym_comment, - ACTIONS(5697), 17, - anon_sym_EQ, + ACTIONS(1765), 4, sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1767), 13, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [158266] = 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [161560] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4203), 1, + ACTIONS(1913), 1, + sym__space, + ACTIONS(7346), 1, + anon_sym_DOT, + STATE(4206), 1, sym_comment, - ACTIONS(1892), 5, - ts_builtin_sym_end, + STATE(4235), 1, + aux_sym_cell_path_repeat1, + STATE(4566), 1, + sym_path, + STATE(4777), 1, + sym_cell_path, + ACTIONS(1911), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [161597] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1917), 1, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1890), 13, + ACTIONS(7346), 1, + anon_sym_DOT, + STATE(4207), 1, + sym_comment, + STATE(4235), 1, + aux_sym_cell_path_repeat1, + STATE(4566), 1, + sym_path, + STATE(4779), 1, + sym_cell_path, + ACTIONS(1915), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370845,44 +372949,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [158295] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [161634] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5679), 1, - anon_sym_DASH2, - STATE(4204), 1, + ACTIONS(7299), 1, + anon_sym_DOT, + STATE(4152), 1, + aux_sym_cell_path_repeat1, + STATE(4208), 1, sym_comment, - ACTIONS(5681), 17, + STATE(4367), 1, + sym_path, + ACTIONS(967), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(969), 13, anon_sym_EQ, sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [158324] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [161669] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4205), 1, + ACTIONS(1739), 1, + aux_sym_unquoted_token2, + STATE(4209), 1, sym_comment, - ACTIONS(2248), 4, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - aux_sym_unquoted_token4, - ACTIONS(2250), 14, + ACTIONS(1741), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370896,17 +373000,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, - [158353] = 5, - ACTIONS(247), 1, + [161698] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(4206), 1, + ACTIONS(1921), 1, + sym__space, + ACTIONS(7346), 1, + anon_sym_DOT, + STATE(4210), 1, sym_comment, - STATE(7507), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7379), 16, + STATE(4235), 1, + aux_sym_cell_path_repeat1, + STATE(4566), 1, + sym_path, + STATE(4781), 1, + sym_cell_path, + ACTIONS(1919), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370920,23 +373033,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [158384] = 6, + [161735] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2202), 1, - anon_sym_LPAREN2, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(4207), 1, + STATE(4211), 1, sym_comment, - ACTIONS(1030), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(1032), 13, + ACTIONS(1004), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1002), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370948,25 +373055,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [158417] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7389), 1, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(4208), 1, + [161764] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(4212), 1, sym_comment, - STATE(4478), 1, - aux_sym_cell_path_repeat1, - STATE(4708), 1, - sym_path, - STATE(4843), 1, - sym_cell_path, - ACTIONS(1927), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1925), 11, + STATE(7681), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7361), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370978,19 +373079,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [158453] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [161795] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2165), 1, + ACTIONS(1929), 1, sym__space, - ACTIONS(7391), 1, - anon_sym_DOT_DOT2, - STATE(4209), 1, + ACTIONS(7346), 1, + anon_sym_DOT, + STATE(4213), 1, sym_comment, - ACTIONS(7393), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2159), 13, + STATE(4235), 1, + aux_sym_cell_path_repeat1, + STATE(4566), 1, + sym_path, + STATE(4782), 1, + sym_cell_path, + ACTIONS(1927), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371004,49 +373113,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158485] = 14, + [161832] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(435), 1, - sym_raw_string_begin, - ACTIONS(4231), 1, - anon_sym_DOLLAR, - ACTIONS(6671), 1, - anon_sym_LPAREN, - ACTIONS(7395), 1, - anon_sym_DQUOTE, - ACTIONS(7399), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(7401), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7403), 1, - sym__unquoted_naive, - STATE(2131), 1, - sym__inter_single_quotes, - STATE(2132), 1, - sym__inter_double_quotes, - STATE(4210), 1, - sym_comment, - ACTIONS(7397), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1821), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4873), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [158533] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1783), 1, - aux_sym_unquoted_token2, - STATE(4211), 1, + ACTIONS(2040), 1, + sym__space, + ACTIONS(7346), 1, + anon_sym_DOT, + STATE(4214), 1, sym_comment, - ACTIONS(1785), 16, - ts_builtin_sym_end, + STATE(4235), 1, + aux_sym_cell_path_repeat1, + STATE(4566), 1, + sym_path, + STATE(4787), 1, + sym_cell_path, + ACTIONS(2038), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371058,52 +373140,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [158561] = 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + [161869] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2548), 1, - anon_sym_COMMA, - ACTIONS(7303), 1, - anon_sym_EQ, - ACTIONS(7305), 1, - sym__newline, - ACTIONS(7307), 1, - anon_sym_COLON, - ACTIONS(7407), 1, + ACTIONS(5656), 1, anon_sym_DASH2, - STATE(4212), 1, + STATE(4215), 1, sym_comment, - STATE(4498), 1, - aux_sym_parameter_repeat1, - STATE(5228), 1, - aux_sym_parameter_repeat2, - STATE(6696), 1, - aux_sym_shebang_repeat1, - STATE(5154), 2, - sym_param_type, - sym_param_value, - ACTIONS(7405), 7, + ACTIONS(5658), 17, + anon_sym_EQ, sym_identifier, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [158605] = 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + [161898] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1546), 1, + ACTIONS(1785), 1, aux_sym_unquoted_token2, - ACTIONS(1868), 1, - anon_sym_LPAREN2, - STATE(4213), 1, + ACTIONS(7379), 1, + aux_sym__immediate_decimal_token2, + STATE(4216), 1, sym_comment, - ACTIONS(1874), 15, + ACTIONS(1787), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -371119,16 +373192,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [158635] = 4, + anon_sym_LPAREN2, + [161929] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4214), 1, + STATE(4217), 1, sym_comment, - ACTIONS(1020), 3, + ACTIONS(1843), 5, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1018), 14, + ACTIONS(1841), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371140,51 +373216,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - [158663] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(4215), 1, - sym_comment, - STATE(7396), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7379), 15, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [158693] = 8, + aux_sym_unquoted_token2, + [161958] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7389), 1, + ACTIONS(2032), 1, + sym__space, + ACTIONS(7346), 1, anon_sym_DOT, - STATE(4216), 1, + STATE(4218), 1, sym_comment, - STATE(4478), 1, + STATE(4235), 1, aux_sym_cell_path_repeat1, - STATE(4708), 1, + STATE(4566), 1, sym_path, - STATE(4879), 1, + STATE(4785), 1, sym_cell_path, - ACTIONS(2096), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2094), 11, + ACTIONS(2030), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371196,23 +373245,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [158729] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [161995] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7389), 1, + ACTIONS(1944), 1, + sym__space, + ACTIONS(7346), 1, anon_sym_DOT, - STATE(4217), 1, + STATE(4219), 1, sym_comment, - STATE(4391), 1, - sym_cell_path, - STATE(4478), 1, + STATE(4235), 1, aux_sym_cell_path_repeat1, - STATE(4708), 1, + STATE(4566), 1, sym_path, - ACTIONS(1737), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1735), 11, + STATE(4783), 1, + sym_cell_path, + ACTIONS(1942), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371224,17 +373274,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [158765] = 5, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [162032] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, - anon_sym_LPAREN2, - ACTIONS(1888), 1, - aux_sym_unquoted_token2, - STATE(4218), 1, + STATE(4220), 1, sym_comment, - ACTIONS(2189), 15, - ts_builtin_sym_end, + ACTIONS(1012), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1010), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371246,24 +373297,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [158795] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [162061] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2216), 1, - anon_sym_LPAREN2, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - STATE(4219), 1, + STATE(4221), 1, sym_comment, - ACTIONS(2214), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(2218), 12, - ts_builtin_sym_end, + ACTIONS(1016), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1014), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371275,17 +373322,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [158827] = 5, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [162090] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, - anon_sym_LPAREN2, - ACTIONS(1888), 1, - aux_sym_unquoted_token2, - STATE(4220), 1, + ACTIONS(2044), 1, + sym__space, + ACTIONS(7346), 1, + anon_sym_DOT, + STATE(4222), 1, sym_comment, - ACTIONS(1886), 15, - ts_builtin_sym_end, + STATE(4235), 1, + aux_sym_cell_path_repeat1, + STATE(4566), 1, + sym_path, + STATE(4719), 1, + sym_cell_path, + ACTIONS(2042), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371297,52 +373353,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [158857] = 14, + anon_sym_RPAREN, + anon_sym_RBRACE, + [162127] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2048), 1, - anon_sym_DQUOTE, - ACTIONS(2052), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2054), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2062), 1, - sym_raw_string_begin, - ACTIONS(4305), 1, - anon_sym_DOLLAR, - ACTIONS(5094), 1, - anon_sym_LPAREN, - ACTIONS(7409), 1, - sym__unquoted_naive, - STATE(4221), 1, - sym_comment, - STATE(4807), 1, - sym__inter_single_quotes, - STATE(4808), 1, - sym__inter_double_quotes, - ACTIONS(2050), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4517), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4903), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [158905] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1890), 1, - aux_sym_unquoted_token2, - STATE(4222), 1, + ACTIONS(7346), 1, + anon_sym_DOT, + ACTIONS(7383), 1, + sym__space, + STATE(4223), 1, sym_comment, - ACTIONS(1892), 16, - ts_builtin_sym_end, + STATE(4235), 1, + aux_sym_cell_path_repeat1, + STATE(4566), 1, + sym_path, + STATE(4720), 1, + sym_cell_path, + ACTIONS(7381), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371354,21 +373382,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [158933] = 5, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [162164] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(4223), 1, + ACTIONS(963), 1, + sym__space, + ACTIONS(7346), 1, + anon_sym_DOT, + STATE(4224), 1, sym_comment, - STATE(7396), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7379), 15, - ts_builtin_sym_end, + STATE(4235), 1, + aux_sym_cell_path_repeat1, + STATE(4293), 1, + sym_cell_path, + STATE(4566), 1, + sym_path, + ACTIONS(961), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371380,19 +373411,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [158963] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [162201] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4224), 1, + STATE(4225), 1, sym_comment, - ACTIONS(1783), 3, + ACTIONS(998), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1785), 14, + anon_sym_DOT, + ACTIONS(1000), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -371404,20 +373434,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [158991] = 5, - ACTIONS(247), 1, + [162229] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1579), 1, - aux_sym_unquoted_token2, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - STATE(4225), 1, + ACTIONS(7385), 1, + anon_sym_DOT, + STATE(4226), 1, sym_comment, - ACTIONS(2238), 15, + STATE(4515), 1, + aux_sym_cell_path_repeat1, + STATE(4780), 1, + sym_path, + STATE(4990), 1, + sym_cell_path, + ACTIONS(1917), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1915), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371429,18 +373465,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [159021] = 4, - ACTIONS(247), 1, + [162265] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1755), 1, - aux_sym_unquoted_token2, - STATE(4226), 1, + STATE(4227), 1, sym_comment, - ACTIONS(1757), 16, - ts_builtin_sym_end, + ACTIONS(2120), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2118), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371452,21 +373486,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [159049] = 5, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [162293] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(4227), 1, + ACTIONS(7385), 1, + anon_sym_DOT, + STATE(4228), 1, sym_comment, - STATE(7396), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7379), 15, + STATE(4515), 1, + aux_sym_cell_path_repeat1, + STATE(4780), 1, + sym_path, + STATE(5000), 1, + sym_cell_path, + ACTIONS(1921), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1919), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371478,20 +373517,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [159079] = 5, - ACTIONS(247), 1, + [162329] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2254), 1, + ACTIONS(7387), 1, + aux_sym__immediate_decimal_token2, + STATE(4229), 1, + sym_comment, + ACTIONS(1787), 2, + sym__space, anon_sym_LPAREN2, - ACTIONS(2258), 1, + ACTIONS(1785), 14, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_unquoted_token2, - STATE(4228), 1, + [162359] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7385), 1, + anon_sym_DOT, + STATE(4230), 1, sym_comment, - ACTIONS(2256), 15, + STATE(4515), 1, + aux_sym_cell_path_repeat1, + STATE(4780), 1, + sym_path, + STATE(4967), 1, + sym_cell_path, + ACTIONS(7383), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(7381), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371503,18 +373570,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [159109] = 4, - ACTIONS(247), 1, + [162395] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1739), 1, - aux_sym_unquoted_token2, - STATE(4229), 1, + ACTIONS(7385), 1, + anon_sym_DOT, + STATE(4231), 1, sym_comment, - ACTIONS(1741), 16, + STATE(4515), 1, + aux_sym_cell_path_repeat1, + STATE(4780), 1, + sym_path, + STATE(4842), 1, + sym_cell_path, + ACTIONS(1851), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1847), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371526,20 +373598,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [159137] = 4, + [162431] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4230), 1, + STATE(4232), 1, sym_comment, - ACTIONS(1890), 3, + ACTIONS(1841), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1892), 14, + ACTIONS(1843), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -371554,21 +373622,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [159165] = 6, + [162459] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2216), 1, - anon_sym_LPAREN2, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - STATE(4231), 1, + ACTIONS(7385), 1, + anon_sym_DOT, + STATE(4233), 1, sym_comment, - ACTIONS(2222), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(2224), 12, + STATE(4515), 1, + aux_sym_cell_path_repeat1, + STATE(4780), 1, + sym_path, + STATE(4800), 1, + sym_cell_path, + ACTIONS(1929), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1927), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371580,48 +373650,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [159197] = 5, - ACTIONS(3), 1, + [162495] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7411), 1, - aux_sym__immediate_decimal_token2, - STATE(4232), 1, - sym_comment, - ACTIONS(1785), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1783), 14, + ACTIONS(2538), 1, + anon_sym_COMMA, + ACTIONS(7329), 1, + anon_sym_EQ, + ACTIONS(7331), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(7333), 1, + anon_sym_COLON, + ACTIONS(7391), 1, + anon_sym_DASH2, + STATE(4234), 1, + sym_comment, + STATE(4289), 1, + aux_sym_parameter_repeat1, + STATE(5215), 1, + aux_sym_parameter_repeat2, + STATE(6777), 1, + aux_sym_shebang_repeat1, + STATE(5171), 2, + sym_param_type, + sym_param_value, + ACTIONS(7389), 7, + sym_identifier, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [159227] = 8, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [162539] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7389), 1, + ACTIONS(969), 1, + sym__space, + ACTIONS(7346), 1, anon_sym_DOT, - STATE(4233), 1, + STATE(4235), 1, sym_comment, - STATE(4478), 1, + STATE(4271), 1, aux_sym_cell_path_repeat1, - STATE(4708), 1, + STATE(4566), 1, sym_path, - STATE(4892), 1, - sym_cell_path, - ACTIONS(2108), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2106), 11, + ACTIONS(967), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371633,16 +373707,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [159263] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [162573] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4234), 1, + STATE(4236), 1, sym_comment, - ACTIONS(1737), 3, + ACTIONS(2054), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1735), 14, + ACTIONS(2052), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371657,50 +373733,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [159291] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2548), 1, - anon_sym_COMMA, - ACTIONS(7303), 1, - anon_sym_EQ, - ACTIONS(7305), 1, - sym__newline, - ACTIONS(7307), 1, - anon_sym_COLON, - ACTIONS(7415), 1, - anon_sym_DASH2, - STATE(4235), 1, - sym_comment, - STATE(4295), 1, - aux_sym_parameter_repeat1, - STATE(5167), 1, - aux_sym_parameter_repeat2, - STATE(6696), 1, - aux_sym_shebang_repeat1, - STATE(5154), 2, - sym_param_type, - sym_param_value, - ACTIONS(7413), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [159335] = 4, + [162601] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4236), 1, + ACTIONS(7385), 1, + anon_sym_DOT, + STATE(4237), 1, sym_comment, - ACTIONS(2248), 4, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - aux_sym_unquoted_token4, - ACTIONS(2250), 13, + STATE(4423), 1, + sym_cell_path, + STATE(4515), 1, + aux_sym_cell_path_repeat1, + STATE(4780), 1, + sym_path, + ACTIONS(1737), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1733), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371712,24 +373761,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, - [159363] = 8, + [162637] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7389), 1, + ACTIONS(7385), 1, anon_sym_DOT, - STATE(4237), 1, + STATE(4238), 1, sym_comment, - STATE(4478), 1, + STATE(4515), 1, aux_sym_cell_path_repeat1, - STATE(4708), 1, + STATE(4780), 1, sym_path, - STATE(4905), 1, + STATE(4805), 1, sym_cell_path, - ACTIONS(2104), 2, + ACTIONS(1944), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2102), 11, + ACTIONS(1942), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371741,64 +373789,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [159399] = 4, - ACTIONS(247), 1, + [162673] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4238), 1, - sym_comment, - ACTIONS(994), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, + ACTIONS(7385), 1, anon_sym_DOT, - ACTIONS(996), 14, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [159427] = 4, - ACTIONS(247), 1, - anon_sym_POUND, STATE(4239), 1, sym_comment, - ACTIONS(998), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1000), 14, - anon_sym_EQ, - sym_identifier, + STATE(4515), 1, + aux_sym_cell_path_repeat1, + STATE(4780), 1, + sym_path, + STATE(4807), 1, + sym_cell_path, + ACTIONS(2028), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2026), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [159455] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [162709] = 8, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7385), 1, + anon_sym_DOT, STATE(4240), 1, sym_comment, - ACTIONS(2127), 3, + STATE(4515), 1, + aux_sym_cell_path_repeat1, + STATE(4780), 1, + sym_path, + STATE(4813), 1, + sym_cell_path, + ACTIONS(1855), 2, + ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2125), 14, + ACTIONS(1853), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371810,50 +373845,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [159483] = 4, - ACTIONS(247), 1, + [162745] = 14, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2102), 1, + anon_sym_DQUOTE, + ACTIONS(2106), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2108), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2116), 1, + sym_raw_string_begin, + ACTIONS(4505), 1, + anon_sym_DOLLAR, + ACTIONS(5095), 1, + anon_sym_LPAREN, + ACTIONS(7393), 1, + sym__unquoted_naive, STATE(4241), 1, sym_comment, - ACTIONS(1002), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1004), 14, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [159511] = 8, + STATE(4891), 1, + sym__inter_single_quotes, + STATE(4896), 1, + sym__inter_double_quotes, + ACTIONS(2104), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4528), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4894), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [162793] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7389), 1, + ACTIONS(7385), 1, anon_sym_DOT, STATE(4242), 1, sym_comment, - STATE(4478), 1, + STATE(4515), 1, aux_sym_cell_path_repeat1, - STATE(4708), 1, + STATE(4780), 1, sym_path, - STATE(4893), 1, + STATE(4970), 1, sym_cell_path, - ACTIONS(7373), 2, + ACTIONS(1873), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7371), 11, + ACTIONS(1871), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371865,47 +373907,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [159547] = 4, - ACTIONS(247), 1, + [162829] = 8, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7385), 1, + anon_sym_DOT, STATE(4243), 1, sym_comment, - ACTIONS(990), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(992), 14, - anon_sym_EQ, - sym_identifier, + STATE(4515), 1, + aux_sym_cell_path_repeat1, + STATE(4780), 1, + sym_path, + STATE(4811), 1, + sym_cell_path, + ACTIONS(2032), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2030), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [159575] = 8, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [162865] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7389), 1, - anon_sym_DOT, + ACTIONS(2226), 1, + anon_sym_LPAREN2, + ACTIONS(2228), 1, + aux_sym_unquoted_token4, STATE(4244), 1, sym_comment, - STATE(4478), 1, - aux_sym_cell_path_repeat1, - STATE(4493), 1, - sym_cell_path, - STATE(4708), 1, - sym_path, - ACTIONS(963), 2, + ACTIONS(1026), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(1028), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(961), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371917,19 +373961,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [159611] = 6, + [162897] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1032), 1, - sym__space, - ACTIONS(7417), 1, - anon_sym_DOT_DOT2, STATE(4245), 1, sym_comment, - ACTIONS(7419), 2, + ACTIONS(1737), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1030), 13, + ACTIONS(1733), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371943,23 +373984,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159643] = 8, + anon_sym_DOT_DOT2, + [162925] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7389), 1, + ACTIONS(7385), 1, anon_sym_DOT, STATE(4246), 1, sym_comment, - STATE(4478), 1, + STATE(4515), 1, aux_sym_cell_path_repeat1, - STATE(4708), 1, + STATE(4780), 1, sym_path, - STATE(4825), 1, + STATE(4837), 1, sym_cell_path, - ACTIONS(2084), 2, + ACTIONS(1861), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2082), 11, + ACTIONS(1859), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371971,67 +374013,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [159679] = 4, - ACTIONS(247), 1, + [162961] = 8, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7385), 1, + anon_sym_DOT, STATE(4247), 1, sym_comment, - ACTIONS(1739), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1741), 14, - anon_sym_EQ, - sym_identifier, + STATE(4515), 1, + aux_sym_cell_path_repeat1, + STATE(4780), 1, + sym_path, + STATE(4817), 1, + sym_cell_path, + ACTIONS(7373), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7371), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [159707] = 5, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [162997] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7421), 1, - anon_sym_QMARK2, + ACTIONS(7385), 1, + anon_sym_DOT, STATE(4248), 1, sym_comment, - ACTIONS(978), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(980), 13, - anon_sym_EQ, - sym_identifier, + STATE(4515), 1, + aux_sym_cell_path_repeat1, + STATE(4780), 1, + sym_path, + STATE(4812), 1, + sym_cell_path, + ACTIONS(2036), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2034), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [159737] = 5, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [163033] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7423), 1, - anon_sym_QMARK2, STATE(4249), 1, sym_comment, - ACTIONS(984), 3, + ACTIONS(1739), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(986), 13, + aux_sym__unquoted_in_list_token2, + ACTIONS(1741), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -372043,19 +374090,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [159767] = 5, + [163061] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7355), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(2128), 1, + sym__space, + ACTIONS(7395), 1, + anon_sym_DOT_DOT2, STATE(4250), 1, sym_comment, - ACTIONS(1757), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1755), 14, + ACTIONS(7397), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2122), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372069,24 +374119,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [159797] = 8, - ACTIONS(3), 1, + [163093] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7389), 1, - anon_sym_DOT, + ACTIONS(1804), 1, + anon_sym_LPAREN2, + ACTIONS(1812), 1, + aux_sym_unquoted_token2, STATE(4251), 1, sym_comment, - STATE(4478), 1, - aux_sym_cell_path_repeat1, - STATE(4708), 1, - sym_path, - STATE(4836), 1, - sym_cell_path, - ACTIONS(2092), 2, + ACTIONS(2232), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(2090), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372098,19 +374141,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [159833] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [163123] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2173), 1, - sym__space, - ACTIONS(7425), 1, - anon_sym_DOT_DOT2, STATE(4252), 1, sym_comment, - ACTIONS(7427), 2, + ACTIONS(1008), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2167), 13, + ACTIONS(1006), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372122,21 +374166,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [159865] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2181), 1, - sym__space, - ACTIONS(7429), 1, anon_sym_DOT_DOT2, + anon_sym_DOT, + [163151] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1804), 1, + anon_sym_LPAREN2, + ACTIONS(1812), 1, + aux_sym_unquoted_token2, STATE(4253), 1, sym_comment, - ACTIONS(7431), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2175), 13, + ACTIONS(1810), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372148,21 +374190,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [159897] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [163181] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2139), 1, + ACTIONS(2136), 1, sym__space, - ACTIONS(7433), 1, + ACTIONS(7399), 1, anon_sym_DOT_DOT2, STATE(4254), 1, sym_comment, - ACTIONS(7435), 2, + ACTIONS(7401), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2133), 13, + ACTIONS(2130), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372176,16 +374219,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159929] = 4, + [163213] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(4255), 1, - sym_comment, - ACTIONS(1755), 3, + ACTIONS(1802), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, + ACTIONS(1804), 1, + anon_sym_LPAREN2, + ACTIONS(1812), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(1757), 14, + ACTIONS(7403), 1, + anon_sym_DOT_DOT2, + STATE(4255), 1, + sym_comment, + ACTIONS(7405), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1810), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -372197,50 +374247,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [159957] = 8, - ACTIONS(3), 1, + [163249] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7389), 1, - anon_sym_DOT, + ACTIONS(1765), 1, + aux_sym_unquoted_token2, STATE(4256), 1, sym_comment, - STATE(4385), 1, - sym_cell_path, - STATE(4478), 1, - aux_sym_cell_path_repeat1, - STATE(4708), 1, - sym_path, - ACTIONS(1771), 2, + ACTIONS(1767), 16, ts_builtin_sym_end, - sym__space, - ACTIONS(1769), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [159993] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7417), 1, - anon_sym_DOT_DOT2, - ACTIONS(7439), 1, - sym__space, - STATE(4257), 1, - sym_comment, - ACTIONS(7419), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7437), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372252,51 +374267,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [160025] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2202), 1, - anon_sym_LPAREN2, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(4258), 1, - sym_comment, - ACTIONS(1030), 3, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(1032), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [160057] = 8, + anon_sym_LPAREN2, + [163277] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7389), 1, + ACTIONS(7385), 1, anon_sym_DOT, - STATE(4259), 1, + STATE(4257), 1, sym_comment, - STATE(4478), 1, + STATE(4515), 1, aux_sym_cell_path_repeat1, - STATE(4708), 1, + STATE(4780), 1, sym_path, - STATE(4851), 1, + STATE(4814), 1, sym_cell_path, - ACTIONS(1935), 2, + ACTIONS(2040), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1933), 11, + ACTIONS(2038), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372308,23 +374299,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [160093] = 8, + [163313] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7389), 1, - anon_sym_DOT, - STATE(4260), 1, + STATE(4258), 1, sym_comment, - STATE(4478), 1, - aux_sym_cell_path_repeat1, - STATE(4708), 1, - sym_path, - STATE(4852), 1, - sym_cell_path, - ACTIONS(1946), 2, - ts_builtin_sym_end, + ACTIONS(2185), 3, sym__space, - ACTIONS(1944), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2183), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372336,57 +374320,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [160129] = 14, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [163341] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1846), 1, - anon_sym_DQUOTE, - ACTIONS(1850), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(1852), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1860), 1, + ACTIONS(435), 1, sym_raw_string_begin, - ACTIONS(4341), 1, + ACTIONS(4329), 1, anon_sym_DOLLAR, - ACTIONS(5118), 1, + ACTIONS(6667), 1, anon_sym_LPAREN, - ACTIONS(7441), 1, + ACTIONS(7407), 1, + anon_sym_DQUOTE, + ACTIONS(7411), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7413), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7415), 1, sym__unquoted_naive, - STATE(4261), 1, - sym_comment, - STATE(4689), 1, + STATE(2171), 1, sym__inter_single_quotes, - STATE(4701), 1, + STATE(2172), 1, sym__inter_double_quotes, - ACTIONS(1848), 2, + STATE(4259), 1, + sym_comment, + ACTIONS(7409), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4465), 2, + STATE(1771), 2, sym__raw_str, sym__str_double_quotes, - STATE(4715), 4, + STATE(4912), 4, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - [160177] = 8, + [163389] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7389), 1, + ACTIONS(7385), 1, anon_sym_DOT, - STATE(4262), 1, + STATE(4260), 1, sym_comment, - STATE(4478), 1, + STATE(4515), 1, aux_sym_cell_path_repeat1, - STATE(4708), 1, + STATE(4780), 1, sym_path, - STATE(4853), 1, + STATE(4815), 1, sym_cell_path, - ACTIONS(1950), 2, + ACTIONS(1933), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1948), 11, + ACTIONS(1931), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372398,23 +374385,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [160213] = 8, + [163425] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7389), 1, - anon_sym_DOT, - STATE(4263), 1, + ACTIONS(7417), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7419), 1, + aux_sym__immediate_decimal_token2, + STATE(4261), 1, sym_comment, - STATE(4478), 1, - aux_sym_cell_path_repeat1, - STATE(4708), 1, - sym_path, - STATE(4902), 1, - sym_cell_path, - ACTIONS(2100), 2, + ACTIONS(1741), 3, ts_builtin_sym_end, sym__space, - ACTIONS(2098), 11, + anon_sym_LPAREN2, + ACTIONS(1739), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372426,23 +374410,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [160249] = 8, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [163457] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7389), 1, - anon_sym_DOT, - STATE(4264), 1, + ACTIONS(1739), 1, + aux_sym_unquoted_token2, + STATE(4262), 1, sym_comment, - STATE(4478), 1, - aux_sym_cell_path_repeat1, - STATE(4708), 1, - sym_path, - STATE(4854), 1, - sym_cell_path, - ACTIONS(1954), 2, + ACTIONS(1741), 16, ts_builtin_sym_end, - sym__space, - ACTIONS(1952), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372454,14 +374431,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [160285] = 4, - ACTIONS(247), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [163485] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4864), 1, - aux_sym_unquoted_token2, - STATE(4265), 1, + ACTIONS(7385), 1, + anon_sym_DOT, + STATE(4263), 1, sym_comment, - ACTIONS(1721), 16, + STATE(4515), 1, + aux_sym_cell_path_repeat1, + STATE(4780), 1, + sym_path, + STATE(4824), 1, + sym_cell_path, + ACTIONS(1901), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1899), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372473,28 +374463,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [160313] = 8, + [163521] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1546), 1, + ACTIONS(1559), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(1866), 1, + ACTIONS(1820), 1, anon_sym_DASH2, - ACTIONS(1868), 1, + ACTIONS(1822), 1, anon_sym_LPAREN2, - ACTIONS(7443), 1, + ACTIONS(7421), 1, anon_sym_DOT_DOT2, - STATE(4266), 1, + STATE(4264), 1, sym_comment, - ACTIONS(7445), 2, + ACTIONS(7423), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1874), 11, + ACTIONS(1828), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -372506,23 +374491,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [160349] = 8, + [163557] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7389), 1, + ACTIONS(7385), 1, anon_sym_DOT, - STATE(4267), 1, + STATE(4265), 1, sym_comment, - STATE(4478), 1, + STATE(4515), 1, aux_sym_cell_path_repeat1, - STATE(4708), 1, + STATE(4780), 1, sym_path, - STATE(4855), 1, + STATE(4940), 1, sym_cell_path, - ACTIONS(1962), 2, + ACTIONS(1865), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1960), 11, + ACTIONS(1863), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372534,23 +374519,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [160385] = 8, + [163593] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7389), 1, + ACTIONS(7425), 1, anon_sym_DOT, - STATE(4268), 1, + ACTIONS(7427), 1, + aux_sym__immediate_decimal_token2, + STATE(4266), 1, sym_comment, - STATE(4478), 1, - aux_sym_cell_path_repeat1, - STATE(4708), 1, - sym_path, - STATE(4856), 1, - sym_cell_path, - ACTIONS(1970), 2, + ACTIONS(1767), 3, ts_builtin_sym_end, sym__space, - ACTIONS(1968), 11, + anon_sym_LPAREN2, + ACTIONS(1765), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372562,23 +374544,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [160421] = 8, + aux_sym_unquoted_token2, + [163625] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7389), 1, + ACTIONS(7385), 1, anon_sym_DOT, - STATE(4269), 1, + STATE(4267), 1, sym_comment, - STATE(4478), 1, + STATE(4515), 1, aux_sym_cell_path_repeat1, - STATE(4708), 1, + STATE(4780), 1, sym_path, - STATE(4857), 1, + STATE(4825), 1, sym_cell_path, - ACTIONS(1974), 2, + ACTIONS(1909), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1972), 11, + ACTIONS(1907), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372590,16 +374573,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [160457] = 4, + [163661] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4270), 1, - sym_comment, - ACTIONS(2131), 3, + ACTIONS(2152), 1, sym__space, + ACTIONS(7429), 1, + anon_sym_DOT_DOT2, + STATE(4268), 1, + sym_comment, + ACTIONS(7431), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2129), 14, + ACTIONS(2146), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372613,24 +374599,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [160485] = 8, + [163693] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7389), 1, - anon_sym_DOT, - STATE(4271), 1, + ACTIONS(121), 1, + sym_raw_string_begin, + ACTIONS(5803), 1, + anon_sym_LPAREN, + ACTIONS(5805), 1, + anon_sym_DOLLAR, + ACTIONS(7433), 1, + anon_sym_DQUOTE, + ACTIONS(7437), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7439), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7441), 1, + sym__unquoted_naive, + STATE(2537), 1, + sym__inter_single_quotes, + STATE(2538), 1, + sym__inter_double_quotes, + STATE(4269), 1, sym_comment, - STATE(4478), 1, - aux_sym_cell_path_repeat1, - STATE(4708), 1, - sym_path, - STATE(4906), 1, - sym_cell_path, - ACTIONS(7369), 2, - ts_builtin_sym_end, + ACTIONS(7435), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2093), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(5119), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [163741] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7445), 1, sym__space, - ACTIONS(7367), 11, + ACTIONS(7447), 1, + anon_sym_DOT_DOT2, + STATE(4270), 1, + sym_comment, + ACTIONS(7449), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7443), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372642,23 +374657,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [160521] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [163773] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7389), 1, + ACTIONS(973), 1, + sym__space, + ACTIONS(7451), 1, anon_sym_DOT, - STATE(4272), 1, + STATE(4566), 1, + sym_path, + STATE(4271), 2, sym_comment, - STATE(4478), 1, aux_sym_cell_path_repeat1, - STATE(4708), 1, - sym_path, - STATE(4858), 1, - sym_cell_path, - ACTIONS(1986), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1984), 11, + ACTIONS(971), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372670,17 +374683,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [160557] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [163805] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4273), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(4272), 1, sym_comment, - ACTIONS(1008), 4, + STATE(7470), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7361), 15, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1006), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372692,25 +374707,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [160585] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [163835] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7389), 1, - anon_sym_DOT, - STATE(4274), 1, + STATE(4273), 1, sym_comment, - STATE(4478), 1, - aux_sym_cell_path_repeat1, - STATE(4708), 1, - sym_path, - STATE(4859), 1, - sym_cell_path, - ACTIONS(1990), 2, + ACTIONS(1016), 4, ts_builtin_sym_end, sym__space, - ACTIONS(1988), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1014), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372722,23 +374732,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [160621] = 8, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [163863] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1996), 1, + anon_sym_DQUOTE, + ACTIONS(2000), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2002), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2010), 1, + sym_raw_string_begin, + ACTIONS(4125), 1, + anon_sym_DOLLAR, + ACTIONS(5123), 1, + anon_sym_LPAREN, + ACTIONS(7454), 1, + sym__unquoted_naive, + STATE(4274), 1, + sym_comment, + STATE(4731), 1, + sym__inter_single_quotes, + STATE(4732), 1, + sym__inter_double_quotes, + ACTIONS(1998), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4371), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4755), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [163911] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7389), 1, + ACTIONS(7385), 1, anon_sym_DOT, STATE(4275), 1, sym_comment, - STATE(4478), 1, + STATE(4515), 1, aux_sym_cell_path_repeat1, - STATE(4708), 1, + STATE(4780), 1, sym_path, - STATE(4860), 1, + STATE(4963), 1, sym_cell_path, - ACTIONS(1994), 2, + ACTIONS(2044), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1992), 11, + ACTIONS(2042), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372750,23 +374796,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [160657] = 8, + [163947] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1878), 1, - anon_sym_DASH2, - ACTIONS(1880), 1, - anon_sym_LPAREN2, - ACTIONS(1888), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7447), 1, - anon_sym_DOT_DOT2, STATE(4276), 1, sym_comment, - ACTIONS(7449), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1886), 11, + ACTIONS(1765), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1767), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -372778,47 +374817,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [160693] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4277), 1, - sym_comment, - ACTIONS(2185), 3, - sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2183), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [160721] = 8, - ACTIONS(3), 1, + [163975] = 9, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7389), 1, + ACTIONS(4894), 1, anon_sym_DOT, - STATE(4278), 1, - sym_comment, - STATE(4478), 1, + ACTIONS(7460), 1, + anon_sym_QMARK2, + STATE(1690), 1, aux_sym_cell_path_repeat1, - STATE(4708), 1, + STATE(1882), 1, sym_path, - STATE(4861), 1, + STATE(4277), 1, + sym_comment, + STATE(5022), 1, sym_cell_path, - ACTIONS(1998), 2, + ACTIONS(7456), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7458), 10, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [164013] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + STATE(4278), 1, + sym_comment, + ACTIONS(2254), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2256), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(1996), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372830,23 +374875,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [160757] = 8, - ACTIONS(3), 1, + [164045] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7389), 1, - anon_sym_DOT, + ACTIONS(4866), 1, + aux_sym_unquoted_token2, STATE(4279), 1, sym_comment, - STATE(4478), 1, - aux_sym_cell_path_repeat1, - STATE(4708), 1, - sym_path, - STATE(4862), 1, - sym_cell_path, - ACTIONS(2002), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2000), 11, + ACTIONS(1719), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372858,23 +374894,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [160793] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [164073] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7389), 1, + ACTIONS(7385), 1, anon_sym_DOT, STATE(4280), 1, sym_comment, - STATE(4478), 1, + STATE(4515), 1, aux_sym_cell_path_repeat1, - STATE(4708), 1, + STATE(4780), 1, sym_path, - STATE(4863), 1, + STATE(4981), 1, sym_cell_path, - ACTIONS(2006), 2, + ACTIONS(1869), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2004), 11, + ACTIONS(1867), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372886,23 +374927,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [160829] = 8, + [164109] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7389), 1, - anon_sym_DOT, STATE(4281), 1, sym_comment, - STATE(4478), 1, - aux_sym_cell_path_repeat1, - STATE(4708), 1, - sym_path, - STATE(4864), 1, - sym_cell_path, - ACTIONS(2070), 2, + ACTIONS(2268), 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + aux_sym_unquoted_token4, + ACTIONS(2270), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(2068), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372914,23 +374950,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [160865] = 8, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [164137] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7389), 1, - anon_sym_DOT, + ACTIONS(4543), 1, + anon_sym_LPAREN2, STATE(4282), 1, sym_comment, - STATE(4478), 1, - aux_sym_cell_path_repeat1, - STATE(4708), 1, - sym_path, - STATE(4866), 1, - sym_cell_path, - ACTIONS(2074), 2, + STATE(7470), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7361), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(2072), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372942,17 +374973,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [160901] = 4, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [164167] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1661), 1, + aux_sym_unquoted_token2, + ACTIONS(2260), 1, + anon_sym_LPAREN2, STATE(4283), 1, sym_comment, - ACTIONS(1012), 4, + ACTIONS(2262), 15, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1010), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372964,78 +374998,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [160929] = 4, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [164197] = 5, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(7462), 1, + anon_sym_QMARK2, STATE(4284), 1, sym_comment, - ACTIONS(1016), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1014), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(978), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT, - [160957] = 9, - ACTIONS(247), 1, + ACTIONS(980), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [164227] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4902), 1, + ACTIONS(7385), 1, anon_sym_DOT, - ACTIONS(7455), 1, - anon_sym_QMARK2, - STATE(1702), 1, - aux_sym_cell_path_repeat1, - STATE(1894), 1, - sym_path, STATE(4285), 1, sym_comment, - STATE(5017), 1, + STATE(4419), 1, sym_cell_path, - ACTIONS(7451), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7453), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [160995] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7389), 1, - anon_sym_DOT, - STATE(4286), 1, - sym_comment, - STATE(4478), 1, + STATE(4515), 1, aux_sym_cell_path_repeat1, - STATE(4708), 1, + STATE(4780), 1, sym_path, - STATE(4867), 1, - sym_cell_path, - ACTIONS(1911), 2, + ACTIONS(1749), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1907), 11, + ACTIONS(1747), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373047,47 +375054,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [161031] = 7, + [164263] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(969), 1, - sym__space, - ACTIONS(7359), 1, + ACTIONS(7385), 1, anon_sym_DOT, - STATE(4287), 1, + STATE(4286), 1, sym_comment, - STATE(4292), 1, + STATE(4515), 1, aux_sym_cell_path_repeat1, - STATE(4540), 1, + STATE(4780), 1, sym_path, - ACTIONS(967), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [161065] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7457), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7459), 1, - aux_sym__immediate_decimal_token2, - STATE(4288), 1, - sym_comment, - ACTIONS(1741), 3, + STATE(4915), 1, + sym_cell_path, + ACTIONS(1889), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1739), 12, + ACTIONS(1887), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373099,108 +375082,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [161097] = 8, + [164299] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7389), 1, + ACTIONS(7385), 1, anon_sym_DOT, - STATE(4289), 1, + STATE(4287), 1, sym_comment, - STATE(4478), 1, + STATE(4515), 1, aux_sym_cell_path_repeat1, - STATE(4708), 1, + STATE(4780), 1, sym_path, - STATE(4868), 1, + STATE(4934), 1, sym_cell_path, - ACTIONS(1915), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1913), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [161133] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(121), 1, - sym_raw_string_begin, - ACTIONS(5856), 1, - anon_sym_LPAREN, - ACTIONS(5858), 1, - anon_sym_DOLLAR, - ACTIONS(7461), 1, - anon_sym_DQUOTE, - ACTIONS(7465), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(7467), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7469), 1, - sym__unquoted_naive, - STATE(2457), 1, - sym__inter_single_quotes, - STATE(2488), 1, - sym__inter_double_quotes, - STATE(4290), 1, - sym_comment, - ACTIONS(7463), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2091), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(5097), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [161181] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2208), 1, - anon_sym_LPAREN2, - ACTIONS(2212), 1, - aux_sym_unquoted_token4, - STATE(4291), 1, - sym_comment, - ACTIONS(2206), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(2210), 12, + ACTIONS(1893), 2, ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [161213] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(973), 1, sym__space, - ACTIONS(7471), 1, - anon_sym_DOT, - STATE(4540), 1, - sym_path, - STATE(4292), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(971), 13, + ACTIONS(1891), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373212,25 +375110,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [161245] = 8, + [164335] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7389), 1, + ACTIONS(7385), 1, anon_sym_DOT, - STATE(4293), 1, + STATE(4288), 1, sym_comment, - STATE(4478), 1, + STATE(4515), 1, aux_sym_cell_path_repeat1, - STATE(4708), 1, + STATE(4780), 1, sym_path, - STATE(4875), 1, + STATE(4962), 1, sym_cell_path, - ACTIONS(1978), 2, + ACTIONS(1940), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1976), 11, + ACTIONS(1938), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373242,92 +375138,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [161281] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4902), 1, - anon_sym_DOT, - ACTIONS(7478), 1, - anon_sym_QMARK2, - STATE(1702), 1, - aux_sym_cell_path_repeat1, - STATE(1894), 1, - sym_path, - STATE(4294), 1, - sym_comment, - STATE(5029), 1, - sym_cell_path, - ACTIONS(7474), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7476), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [161319] = 12, + [164371] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2548), 1, + ACTIONS(2538), 1, anon_sym_COMMA, - ACTIONS(7303), 1, + ACTIONS(7329), 1, anon_sym_EQ, - ACTIONS(7305), 1, + ACTIONS(7331), 1, sym__newline, - ACTIONS(7307), 1, + ACTIONS(7333), 1, anon_sym_COLON, - ACTIONS(7482), 1, + ACTIONS(7466), 1, anon_sym_DASH2, - STATE(4295), 1, + STATE(4289), 1, sym_comment, - STATE(4498), 1, - aux_sym_parameter_repeat1, - STATE(5188), 1, - aux_sym_parameter_repeat2, - STATE(6696), 1, - aux_sym_shebang_repeat1, - STATE(5154), 2, - sym_param_type, - sym_param_value, - ACTIONS(7480), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [161363] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2548), 1, - anon_sym_COMMA, - ACTIONS(7303), 1, - anon_sym_EQ, - ACTIONS(7305), 1, - sym__newline, - ACTIONS(7307), 1, - anon_sym_COLON, - ACTIONS(7486), 1, - anon_sym_DASH2, - STATE(4212), 1, + STATE(4406), 1, aux_sym_parameter_repeat1, - STATE(4296), 1, - sym_comment, - STATE(5194), 1, + STATE(5222), 1, aux_sym_parameter_repeat2, - STATE(6696), 1, + STATE(6777), 1, aux_sym_shebang_repeat1, - STATE(5154), 2, + STATE(5171), 2, sym_param_type, sym_param_value, - ACTIONS(7484), 7, + ACTIONS(7464), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -373335,52 +375170,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [161407] = 12, + [164415] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2548), 1, - anon_sym_COMMA, - ACTIONS(7303), 1, - anon_sym_EQ, - ACTIONS(7305), 1, - sym__newline, - ACTIONS(7307), 1, - anon_sym_COLON, - ACTIONS(7490), 1, - anon_sym_DASH2, - STATE(4297), 1, - sym_comment, - STATE(4498), 1, - aux_sym_parameter_repeat1, - STATE(5195), 1, - aux_sym_parameter_repeat2, - STATE(6696), 1, - aux_sym_shebang_repeat1, - STATE(5154), 2, - sym_param_type, - sym_param_value, - ACTIONS(7488), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [161451] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7492), 1, - anon_sym_DOT, - ACTIONS(7494), 1, - aux_sym__immediate_decimal_token2, - STATE(4298), 1, + ACTIONS(2274), 1, + anon_sym_LPAREN2, + ACTIONS(2278), 1, + aux_sym_unquoted_token2, + STATE(4290), 1, sym_comment, - ACTIONS(1757), 3, + ACTIONS(2276), 15, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1755), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373392,75 +375192,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [161483] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1933), 1, - anon_sym_DASH2, - ACTIONS(7496), 1, - anon_sym_DOT, - STATE(4299), 1, - sym_comment, - STATE(4535), 1, - aux_sym_cell_path_repeat1, - STATE(4921), 1, - sym_cell_path, - STATE(4942), 1, - sym_path, - ACTIONS(1935), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [161518] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DASH2, - ACTIONS(7496), 1, - anon_sym_DOT, - STATE(4300), 1, - sym_comment, - STATE(4535), 1, - aux_sym_cell_path_repeat1, - STATE(4572), 1, - sym_cell_path, - STATE(4942), 1, - sym_path, - ACTIONS(963), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [161553] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7500), 1, anon_sym_and2, - ACTIONS(7502), 1, anon_sym_xor2, - ACTIONS(7504), 1, anon_sym_or2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4301), 1, + [164445] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2163), 1, + sym__space, + ACTIONS(7468), 1, + anon_sym_DOT_DOT2, + STATE(4291), 1, sym_comment, - ACTIONS(7498), 12, + ACTIONS(7470), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2157), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373473,44 +375220,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [161586] = 7, + anon_sym_RBRACE, + [164477] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7506), 1, - anon_sym_and2, - ACTIONS(7508), 1, - anon_sym_xor2, - ACTIONS(7510), 1, - anon_sym_or2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4302), 1, - sym_comment, - ACTIONS(7498), 12, + ACTIONS(2538), 1, + anon_sym_COMMA, + ACTIONS(7329), 1, + anon_sym_EQ, + ACTIONS(7331), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(7333), 1, + anon_sym_COLON, + ACTIONS(7474), 1, + anon_sym_DASH2, + STATE(4292), 1, + sym_comment, + STATE(4406), 1, + aux_sym_parameter_repeat1, + STATE(5223), 1, + aux_sym_parameter_repeat2, + STATE(6777), 1, + aux_sym_shebang_repeat1, + STATE(5171), 2, + sym_param_type, + sym_param_value, + ACTIONS(7472), 7, + sym_identifier, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - [161619] = 6, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [164521] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1757), 1, - sym__space, - ACTIONS(7206), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7512), 1, - anon_sym_DOT, - STATE(4303), 1, + STATE(4293), 1, sym_comment, - ACTIONS(1755), 13, + ACTIONS(1046), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1044), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373524,38 +375276,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [161650] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4304), 1, - sym_comment, - ACTIONS(1006), 3, - anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1008), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [161677] = 4, + [164549] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4305), 1, + ACTIONS(7385), 1, + anon_sym_DOT, + STATE(4294), 1, sym_comment, - ACTIONS(1757), 2, + STATE(4515), 1, + aux_sym_cell_path_repeat1, + STATE(4780), 1, + sym_path, + STATE(4966), 1, + sym_cell_path, + ACTIONS(1897), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1755), 14, + ACTIONS(1895), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373567,19 +375305,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [161704] = 4, + [164585] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(4306), 1, + ACTIONS(7476), 1, + anon_sym_QMARK2, + STATE(4295), 1, sym_comment, - ACTIONS(1010), 3, + ACTIONS(984), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(1012), 13, + ACTIONS(986), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -373593,16 +375330,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [161731] = 4, + [164615] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4307), 1, + STATE(4296), 1, sym_comment, - ACTIONS(1014), 3, + ACTIONS(994), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(1016), 13, + ACTIONS(996), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -373614,44 +375351,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [161758] = 8, + [164643] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2094), 1, - anon_sym_DASH2, - ACTIONS(7496), 1, + ACTIONS(4894), 1, anon_sym_DOT, - STATE(4308), 1, - sym_comment, - STATE(4535), 1, + ACTIONS(7482), 1, + anon_sym_QMARK2, + STATE(1690), 1, aux_sym_cell_path_repeat1, - STATE(4942), 1, + STATE(1882), 1, sym_path, - STATE(5129), 1, + STATE(4297), 1, + sym_comment, + STATE(5035), 1, sym_cell_path, - ACTIONS(2096), 11, + ACTIONS(7478), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7480), 10, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [164681] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2240), 1, + anon_sym_LPAREN2, + ACTIONS(2244), 1, + aux_sym_unquoted_token4, + STATE(4298), 1, + sym_comment, + ACTIONS(2238), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2242), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [164713] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2538), 1, + anon_sym_COMMA, + ACTIONS(7329), 1, anon_sym_EQ, + ACTIONS(7331), 1, + sym__newline, + ACTIONS(7333), 1, + anon_sym_COLON, + ACTIONS(7486), 1, + anon_sym_DASH2, + STATE(4292), 1, + aux_sym_parameter_repeat1, + STATE(4299), 1, + sym_comment, + STATE(5230), 1, + aux_sym_parameter_repeat2, + STATE(6777), 1, + aux_sym_shebang_repeat1, + STATE(5171), 2, + sym_param_type, + sym_param_value, + ACTIONS(7484), 7, sym_identifier, - sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [161793] = 4, - ACTIONS(3), 1, + [164757] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4309), 1, - sym_comment, - ACTIONS(1741), 2, - sym__space, + ACTIONS(4543), 1, anon_sym_LPAREN2, - ACTIONS(1739), 14, + STATE(4300), 1, + sym_comment, + STATE(7470), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7361), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373663,25 +375463,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [161820] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [164787] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1925), 1, - anon_sym_DASH2, - ACTIONS(7496), 1, - anon_sym_DOT, - STATE(4310), 1, + STATE(4301), 1, sym_comment, - STATE(4535), 1, - aux_sym_cell_path_repeat1, - STATE(4919), 1, - sym_cell_path, - STATE(4942), 1, - sym_path, - ACTIONS(1927), 11, + ACTIONS(1785), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1787), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -373693,18 +375487,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [161855] = 6, - ACTIONS(3), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [164815] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1546), 1, + ACTIONS(1785), 1, aux_sym_unquoted_token2, - ACTIONS(1868), 1, - anon_sym_LPAREN2, - ACTIONS(1874), 1, - sym__space, - STATE(4311), 1, + STATE(4302), 1, sym_comment, - ACTIONS(1866), 13, + ACTIONS(1787), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373716,17 +375510,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [161886] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [164843] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4312), 1, + ACTIONS(7385), 1, + anon_sym_DOT, + STATE(4303), 1, sym_comment, - ACTIONS(1785), 2, + STATE(4515), 1, + aux_sym_cell_path_repeat1, + STATE(4780), 1, + sym_path, + STATE(4973), 1, + sym_cell_path, + ACTIONS(1913), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1783), 14, + ACTIONS(1911), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373738,20 +375542,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [161913] = 5, - ACTIONS(3), 1, + [164879] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7514), 1, - anon_sym_QMARK2, - STATE(4313), 1, + ACTIONS(1559), 1, + aux_sym_unquoted_token2, + ACTIONS(1822), 1, + anon_sym_LPAREN2, + STATE(4304), 1, sym_comment, - ACTIONS(980), 2, - sym__space, - anon_sym_DOT, - ACTIONS(978), 13, + ACTIONS(1828), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373763,23 +375564,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [161942] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [164909] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7516), 1, - anon_sym_DOT, - ACTIONS(7518), 1, - aux_sym__immediate_decimal_token2, - STATE(4314), 1, + STATE(4305), 1, sym_comment, - ACTIONS(1755), 3, - sym_identifier, + ACTIONS(1002), 3, anon_sym_DASH2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1757), 11, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1004), 14, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -373789,19 +375588,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [161973] = 6, - ACTIONS(3), 1, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [164937] = 12, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1880), 1, - anon_sym_LPAREN2, - ACTIONS(1888), 1, + ACTIONS(2538), 1, + anon_sym_COMMA, + ACTIONS(7329), 1, + anon_sym_EQ, + ACTIONS(7331), 1, + sym__newline, + ACTIONS(7333), 1, + anon_sym_COLON, + ACTIONS(7490), 1, + anon_sym_DASH2, + STATE(4306), 1, + sym_comment, + STATE(4406), 1, + aux_sym_parameter_repeat1, + STATE(5231), 1, + aux_sym_parameter_repeat2, + STATE(6777), 1, + aux_sym_shebang_repeat1, + STATE(5171), 2, + sym_param_type, + sym_param_value, + ACTIONS(7488), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [164981] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1841), 1, aux_sym_unquoted_token2, - ACTIONS(2189), 1, - sym__space, - STATE(4315), 1, + STATE(4307), 1, sym_comment, - ACTIONS(2187), 13, + ACTIONS(1843), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373813,19 +375643,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [162004] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [165009] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7520), 1, - anon_sym_QMARK2, - STATE(4316), 1, - sym_comment, - ACTIONS(986), 2, + ACTIONS(1028), 1, sym__space, - anon_sym_DOT, - ACTIONS(984), 13, + ACTIONS(7447), 1, + anon_sym_DOT_DOT2, + STATE(4308), 1, + sym_comment, + ACTIONS(7449), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1026), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373839,18 +375673,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [162033] = 6, + [165041] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, + ACTIONS(2248), 1, anon_sym_LPAREN2, - ACTIONS(1886), 1, - sym__space, - ACTIONS(1888), 1, - aux_sym_unquoted_token2, - STATE(4317), 1, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + STATE(4309), 1, sym_comment, - ACTIONS(1878), 13, + ACTIONS(2246), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2250), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373862,20 +375699,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [162064] = 6, + [165073] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1579), 1, - aux_sym_unquoted_token2, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2238), 1, - sym__space, - STATE(4318), 1, + ACTIONS(7385), 1, + anon_sym_DOT, + STATE(4310), 1, sym_comment, - ACTIONS(2234), 13, + STATE(4422), 1, + sym_cell_path, + STATE(4515), 1, + aux_sym_cell_path_repeat1, + STATE(4780), 1, + sym_path, + ACTIONS(963), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(961), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373887,16 +375727,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [162095] = 4, - ACTIONS(247), 1, + [165109] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4319), 1, + STATE(4311), 1, sym_comment, - ACTIONS(7522), 15, + ACTIONS(1012), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1010), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373908,18 +375749,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [162122] = 4, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [165137] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4320), 1, + ACTIONS(7365), 1, + aux_sym__immediate_decimal_token2, + STATE(4312), 1, sym_comment, - ACTIONS(7522), 15, + ACTIONS(1767), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1765), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373932,21 +375774,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [162149] = 6, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [165167] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - ACTIONS(4971), 1, - sym__space, - STATE(4321), 1, + ACTIONS(7385), 1, + anon_sym_DOT, + STATE(4313), 1, sym_comment, - STATE(7999), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4973), 13, + STATE(4515), 1, + aux_sym_cell_path_repeat1, + STATE(4780), 1, + sym_path, + STATE(4998), 1, + sym_cell_path, + ACTIONS(1881), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1879), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373958,20 +375804,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [162180] = 6, + [165203] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - ACTIONS(4975), 1, - sym__space, - STATE(4322), 1, + ACTIONS(7385), 1, + anon_sym_DOT, + STATE(4314), 1, sym_comment, - STATE(7999), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4977), 13, + STATE(4515), 1, + aux_sym_cell_path_repeat1, + STATE(4780), 1, + sym_path, + STATE(4886), 1, + sym_cell_path, + ACTIONS(1885), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1883), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373983,39 +375832,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [162211] = 4, + [165239] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4323), 1, + STATE(4315), 1, sym_comment, - STATE(4405), 1, - aux_sym_shebang_repeat1, - ACTIONS(7524), 15, + ACTIONS(990), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(992), 14, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [162238] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [165267] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4324), 1, + STATE(4316), 1, sym_comment, - STATE(4406), 1, + STATE(4473), 1, aux_sym_shebang_repeat1, - ACTIONS(7524), 15, + ACTIONS(7492), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374031,16 +375879,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [162265] = 5, - ACTIONS(247), 1, + [165294] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7500), 1, - anon_sym_and2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4325), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + ACTIONS(4920), 1, + sym__space, + STATE(4317), 1, sym_comment, - ACTIONS(7522), 14, + STATE(8105), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4922), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374053,18 +375903,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [162294] = 5, - ACTIONS(247), 1, + anon_sym_RBRACE, + [165325] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7506), 1, - anon_sym_and2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4326), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + ACTIONS(4926), 1, + sym__space, + STATE(4318), 1, sym_comment, - ACTIONS(7522), 14, + STATE(8105), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4928), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374077,20 +375928,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [162323] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + [165356] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7526), 1, - sym__newline, - ACTIONS(7529), 1, - anon_sym_and2, - STATE(4327), 1, + STATE(4319), 1, sym_comment, - STATE(4407), 1, - aux_sym_shebang_repeat1, - ACTIONS(7524), 13, + ACTIONS(1741), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1739), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374102,20 +375950,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [162354] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [165383] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7526), 1, - sym__newline, - ACTIONS(7531), 1, - anon_sym_and2, - STATE(4328), 1, + ACTIONS(2274), 1, + anon_sym_LPAREN2, + ACTIONS(2276), 1, + sym__space, + ACTIONS(2278), 1, + aux_sym_unquoted_token2, + STATE(4320), 1, sym_comment, - STATE(4408), 1, - aux_sym_shebang_repeat1, - ACTIONS(7524), 13, + ACTIONS(2272), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374127,20 +375976,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [162385] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + [165414] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7500), 1, - anon_sym_and2, - ACTIONS(7502), 1, - anon_sym_xor2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4329), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + ACTIONS(4932), 1, + sym__space, + STATE(4321), 1, sym_comment, - ACTIONS(7522), 13, + STATE(8105), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4934), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374153,19 +376001,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [162416] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + [165445] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7506), 1, - anon_sym_and2, - ACTIONS(7508), 1, - anon_sym_xor2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4330), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + ACTIONS(4936), 1, + sym__space, + STATE(4322), 1, sym_comment, - ACTIONS(7522), 13, + STATE(8105), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4938), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374178,19 +376026,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [162447] = 6, + anon_sym_RBRACE, + [165476] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2254), 1, - anon_sym_LPAREN2, - ACTIONS(2256), 1, + ACTIONS(7494), 1, + anon_sym_DOT, + STATE(4780), 1, + sym_path, + ACTIONS(973), 2, + ts_builtin_sym_end, sym__space, - ACTIONS(2258), 1, - aux_sym_unquoted_token2, - STATE(4331), 1, + STATE(4323), 2, sym_comment, - ACTIONS(2252), 13, + aux_sym_cell_path_repeat1, + ACTIONS(971), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374202,22 +376052,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [162478] = 7, + [165507] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(7529), 1, + ACTIONS(7499), 1, anon_sym_and2, - ACTIONS(7533), 1, + ACTIONS(7501), 1, anon_sym_xor2, - STATE(4332), 1, + ACTIONS(7503), 1, + anon_sym_or2, + STATE(4324), 1, sym_comment, - STATE(4409), 1, + STATE(4394), 1, aux_sym_shebang_repeat1, - ACTIONS(7524), 12, + ACTIONS(7497), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374229,21 +376079,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [162511] = 7, + [165542] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(7531), 1, + ACTIONS(7505), 1, anon_sym_and2, - ACTIONS(7535), 1, + ACTIONS(7507), 1, anon_sym_xor2, - STATE(4333), 1, + ACTIONS(7509), 1, + anon_sym_or2, + STATE(4325), 1, sym_comment, - STATE(4504), 1, + STATE(4405), 1, aux_sym_shebang_repeat1, - ACTIONS(7524), 12, + ACTIONS(7497), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374255,19 +376106,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [162544] = 6, + [165577] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - ACTIONS(4979), 1, - sym__space, - STATE(4334), 1, + STATE(4326), 1, sym_comment, - STATE(7999), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4981), 13, + ACTIONS(2185), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2183), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374279,20 +376128,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [162575] = 6, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [165604] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - ACTIONS(4983), 1, - sym__space, - STATE(4335), 1, + ACTIONS(7513), 1, + anon_sym_and2, + ACTIONS(7515), 1, + anon_sym_xor2, + ACTIONS(7517), 1, + anon_sym_or2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4327), 1, sym_comment, - STATE(7999), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4985), 13, + ACTIONS(7511), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374305,15 +376155,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [162606] = 4, + [165637] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(4336), 1, - sym_comment, - STATE(4415), 1, + ACTIONS(7519), 1, + anon_sym_and2, + ACTIONS(7521), 1, + anon_sym_xor2, + ACTIONS(7523), 1, + anon_sym_or2, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(7537), 15, + STATE(4328), 1, + sym_comment, + ACTIONS(7511), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374326,17 +376181,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [162633] = 4, + [165670] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(4337), 1, + ACTIONS(4894), 1, + anon_sym_DOT, + STATE(1690), 1, + aux_sym_cell_path_repeat1, + STATE(1882), 1, + sym_path, + STATE(4329), 1, sym_comment, - STATE(4416), 1, - aux_sym_shebang_repeat1, - ACTIONS(7537), 15, + STATE(5013), 1, + sym_cell_path, + ACTIONS(7525), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7527), 10, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [165705] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1871), 1, + anon_sym_DASH2, + ACTIONS(7529), 1, + anon_sym_DOT, + STATE(4330), 1, + sym_comment, + STATE(4552), 1, + aux_sym_cell_path_repeat1, + STATE(4820), 1, + sym_path, + STATE(4972), 1, + sym_cell_path, + ACTIONS(1873), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [165740] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4331), 1, + sym_comment, + ACTIONS(7309), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374349,21 +376253,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [162660] = 6, + [165765] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7529), 1, - anon_sym_and2, - ACTIONS(7539), 1, + ACTIONS(990), 1, + anon_sym_DASH2, + STATE(4332), 1, + sym_comment, + ACTIONS(992), 15, + anon_sym_EQ, + sym_identifier, sym__newline, - STATE(4338), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT, + [165792] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4333), 1, sym_comment, - STATE(4421), 1, - aux_sym_shebang_repeat1, - ACTIONS(7537), 13, + ACTIONS(7361), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374375,20 +376298,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [162691] = 6, + [165817] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7531), 1, - anon_sym_and2, - ACTIONS(7539), 1, - sym__newline, - STATE(4339), 1, + STATE(4334), 1, sym_comment, - STATE(4422), 1, - aux_sym_shebang_repeat1, - ACTIONS(7537), 13, + ACTIONS(7309), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374400,22 +376320,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [162722] = 7, - ACTIONS(247), 1, + [165842] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(7529), 1, - anon_sym_and2, - ACTIONS(7533), 1, - anon_sym_xor2, - STATE(4340), 1, + STATE(4335), 1, sym_comment, - STATE(4425), 1, - aux_sym_shebang_repeat1, - ACTIONS(7537), 12, + ACTIONS(1787), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1785), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374427,21 +376345,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [162755] = 7, - ACTIONS(247), 1, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [165869] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, ACTIONS(7531), 1, - anon_sym_and2, - ACTIONS(7535), 1, - anon_sym_xor2, - STATE(4341), 1, + anon_sym_DOT_DOT2, + STATE(4336), 1, sym_comment, - STATE(4426), 1, - aux_sym_shebang_repeat1, - ACTIONS(7537), 12, + ACTIONS(1028), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7533), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1026), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374452,16 +376372,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [162788] = 4, + [165900] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4342), 1, + STATE(4337), 1, sym_comment, - ACTIONS(7522), 15, + ACTIONS(7361), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374474,17 +376390,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [162815] = 4, + [165925] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4343), 1, + STATE(4338), 1, sym_comment, - ACTIONS(7522), 15, + ACTIONS(7309), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374497,17 +376412,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [162842] = 4, + [165950] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4344), 1, + STATE(4339), 1, sym_comment, - STATE(4429), 1, - aux_sym_shebang_repeat1, - ACTIONS(7524), 15, + ACTIONS(7361), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374520,17 +376434,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [162869] = 4, + [165975] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4345), 1, + STATE(4340), 1, sym_comment, - STATE(4430), 1, - aux_sym_shebang_repeat1, - ACTIONS(7524), 15, + ACTIONS(7535), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374543,19 +376456,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [162896] = 5, + [166000] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7500), 1, - anon_sym_and2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4346), 1, + STATE(4341), 1, sym_comment, - ACTIONS(7522), 14, + ACTIONS(7535), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374568,18 +376478,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [162925] = 5, + [166025] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7506), 1, + ACTIONS(7537), 1, anon_sym_and2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4347), 1, + STATE(4342), 1, sym_comment, - ACTIONS(7522), 14, + ACTIONS(7535), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374592,70 +376502,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [162954] = 6, + [166052] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7526), 1, - sym__newline, + ACTIONS(1879), 1, + anon_sym_DASH2, ACTIONS(7529), 1, - anon_sym_and2, - STATE(4348), 1, + anon_sym_DOT, + STATE(4343), 1, sym_comment, - STATE(4431), 1, - aux_sym_shebang_repeat1, - ACTIONS(7524), 13, - anon_sym_SEMI, + STATE(4552), 1, + aux_sym_cell_path_repeat1, + STATE(4802), 1, + sym_cell_path, + STATE(4820), 1, + sym_path, + ACTIONS(1881), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [162985] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [166087] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7526), 1, - sym__newline, - ACTIONS(7531), 1, - anon_sym_and2, - STATE(4349), 1, + ACTIONS(1883), 1, + anon_sym_DASH2, + ACTIONS(7529), 1, + anon_sym_DOT, + STATE(4344), 1, sym_comment, - STATE(4432), 1, - aux_sym_shebang_repeat1, - ACTIONS(7524), 13, - anon_sym_SEMI, + STATE(4552), 1, + aux_sym_cell_path_repeat1, + STATE(4818), 1, + sym_cell_path, + STATE(4820), 1, + sym_path, + ACTIONS(1885), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [163016] = 6, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [166122] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7500), 1, - anon_sym_and2, - ACTIONS(7502), 1, - anon_sym_xor2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4350), 1, + STATE(4345), 1, sym_comment, - ACTIONS(7522), 13, + ACTIONS(1843), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1841), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374668,19 +376580,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [163047] = 6, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [166149] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7506), 1, + ACTIONS(7539), 1, anon_sym_and2, - ACTIONS(7508), 1, - anon_sym_xor2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4351), 1, + STATE(4346), 1, sym_comment, - ACTIONS(7522), 13, + ACTIONS(7535), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374693,21 +376602,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_xor2, anon_sym_or2, - [163078] = 7, + [166176] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(7529), 1, + ACTIONS(7537), 1, anon_sym_and2, - ACTIONS(7533), 1, + ACTIONS(7541), 1, anon_sym_xor2, - STATE(4352), 1, + STATE(4347), 1, sym_comment, - STATE(4434), 1, - aux_sym_shebang_repeat1, - ACTIONS(7524), 12, + ACTIONS(7535), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374719,21 +376627,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_or2, - [163111] = 7, + [166205] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(7531), 1, + ACTIONS(7539), 1, anon_sym_and2, - ACTIONS(7535), 1, + ACTIONS(7543), 1, anon_sym_xor2, - STATE(4353), 1, + STATE(4348), 1, sym_comment, - STATE(4435), 1, - aux_sym_shebang_repeat1, - ACTIONS(7524), 12, + ACTIONS(7535), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374745,15 +376651,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_or2, - [163144] = 4, + [166234] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4354), 1, + STATE(4349), 1, sym_comment, - STATE(4437), 1, - aux_sym_shebang_repeat1, - ACTIONS(7537), 15, + ACTIONS(7535), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374766,17 +376671,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [163171] = 4, + [166259] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4355), 1, + STATE(4350), 1, sym_comment, - STATE(4438), 1, - aux_sym_shebang_repeat1, - ACTIONS(7537), 15, + ACTIONS(7535), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374789,46 +376693,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [163198] = 6, + [166284] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7529), 1, - anon_sym_and2, - ACTIONS(7539), 1, - sym__newline, - STATE(4356), 1, + ACTIONS(7545), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7547), 1, + aux_sym__immediate_decimal_token2, + STATE(4351), 1, sym_comment, - STATE(4441), 1, - aux_sym_shebang_repeat1, - ACTIONS(7537), 13, - anon_sym_SEMI, + ACTIONS(1739), 3, + sym_identifier, + anon_sym_DASH2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1741), 11, + anon_sym_EQ, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [163229] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [166315] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7531), 1, + ACTIONS(7537), 1, anon_sym_and2, - ACTIONS(7539), 1, - sym__newline, - STATE(4357), 1, + STATE(4352), 1, sym_comment, - STATE(4442), 1, - aux_sym_shebang_repeat1, - ACTIONS(7537), 13, + ACTIONS(7535), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374840,73 +376742,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [163260] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7542), 1, - anon_sym_DOT_DOT2, - STATE(4358), 1, - sym_comment, - ACTIONS(1032), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7544), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1030), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [163291] = 7, + [166342] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(7529), 1, + ACTIONS(7539), 1, anon_sym_and2, - ACTIONS(7533), 1, - anon_sym_xor2, - STATE(4359), 1, + STATE(4353), 1, sym_comment, - STATE(4445), 1, - aux_sym_shebang_repeat1, - ACTIONS(7537), 12, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [163324] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(7535), 15, sym__newline, - ACTIONS(7531), 1, - anon_sym_and2, - ACTIONS(7535), 1, - anon_sym_xor2, - STATE(4360), 1, - sym_comment, - STATE(4446), 1, - aux_sym_shebang_repeat1, - ACTIONS(7537), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374918,73 +376765,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_xor2, anon_sym_or2, - [163357] = 8, + [166369] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(7531), 1, + ACTIONS(7537), 1, anon_sym_and2, - ACTIONS(7535), 1, + ACTIONS(7541), 1, anon_sym_xor2, - ACTIONS(7548), 1, - anon_sym_or2, - STATE(4361), 1, - sym_comment, - STATE(4377), 1, - aux_sym_shebang_repeat1, - ACTIONS(7546), 11, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [163392] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7550), 1, - anon_sym_DOT_DOT2, - STATE(4362), 1, - sym_comment, - ACTIONS(2173), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7552), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2167), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [163423] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7554), 1, - anon_sym_DOT_DOT2, - STATE(4363), 1, + STATE(4354), 1, sym_comment, - ACTIONS(2181), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7556), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2175), 11, + ACTIONS(7535), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374996,47 +376789,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [163454] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_or2, + [166398] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(7529), 1, + ACTIONS(7539), 1, anon_sym_and2, - ACTIONS(7533), 1, + ACTIONS(7543), 1, anon_sym_xor2, - ACTIONS(7558), 1, - anon_sym_or2, - STATE(4364), 1, - sym_comment, - STATE(4376), 1, - aux_sym_shebang_repeat1, - ACTIONS(7546), 11, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [163489] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7560), 1, - anon_sym_DOT_DOT2, - STATE(4365), 1, + STATE(4355), 1, sym_comment, - ACTIONS(2139), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7562), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2133), 11, + ACTIONS(7535), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375048,42 +376813,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [163520] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1944), 1, - anon_sym_DASH2, - ACTIONS(7496), 1, - anon_sym_DOT, - STATE(4366), 1, - sym_comment, - STATE(4535), 1, - aux_sym_cell_path_repeat1, - STATE(4922), 1, - sym_cell_path, - STATE(4942), 1, - sym_path, - ACTIONS(1946), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [163555] = 4, + anon_sym_RBRACE, + anon_sym_or2, + [166427] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4367), 1, + STATE(4356), 1, sym_comment, - ACTIONS(1892), 2, + ACTIONS(2270), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(1890), 14, + ACTIONS(2268), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375097,50 +376838,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [163582] = 8, + aux_sym_unquoted_token4, + [166454] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1948), 1, + ACTIONS(1887), 1, anon_sym_DASH2, - ACTIONS(7496), 1, + ACTIONS(7529), 1, anon_sym_DOT, - STATE(4368), 1, + STATE(4357), 1, sym_comment, - STATE(4535), 1, + STATE(4552), 1, aux_sym_cell_path_repeat1, - STATE(4923), 1, - sym_cell_path, - STATE(4942), 1, + STATE(4820), 1, sym_path, - ACTIONS(1950), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [163617] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1952), 1, - anon_sym_DASH2, - ACTIONS(7496), 1, - anon_sym_DOT, - STATE(4369), 1, - sym_comment, - STATE(4535), 1, - aux_sym_cell_path_repeat1, - STATE(4924), 1, + STATE(4822), 1, sym_cell_path, - STATE(4942), 1, - sym_path, - ACTIONS(1954), 11, + ACTIONS(1889), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -375152,22 +376866,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [163652] = 8, + [166489] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1960), 1, + ACTIONS(1891), 1, anon_sym_DASH2, - ACTIONS(7496), 1, + ACTIONS(7529), 1, anon_sym_DOT, - STATE(4370), 1, + STATE(4358), 1, sym_comment, - STATE(4535), 1, + STATE(4552), 1, aux_sym_cell_path_repeat1, - STATE(4925), 1, - sym_cell_path, - STATE(4942), 1, + STATE(4820), 1, sym_path, - ACTIONS(1962), 11, + STATE(4835), 1, + sym_cell_path, + ACTIONS(1893), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -375179,22 +376893,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [163687] = 8, + [166524] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1968), 1, + ACTIONS(961), 1, anon_sym_DASH2, - ACTIONS(7496), 1, + ACTIONS(7529), 1, anon_sym_DOT, - STATE(4371), 1, + STATE(4359), 1, sym_comment, - STATE(4535), 1, + STATE(4552), 1, aux_sym_cell_path_repeat1, - STATE(4926), 1, + STATE(4622), 1, sym_cell_path, - STATE(4942), 1, + STATE(4820), 1, sym_path, - ACTIONS(1970), 11, + ACTIONS(963), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -375206,22 +376920,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [163722] = 8, + [166559] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1972), 1, + ACTIONS(1895), 1, anon_sym_DASH2, - ACTIONS(7496), 1, + ACTIONS(7529), 1, anon_sym_DOT, - STATE(4372), 1, + STATE(4360), 1, sym_comment, - STATE(4535), 1, + STATE(4552), 1, aux_sym_cell_path_repeat1, - STATE(4928), 1, - sym_cell_path, - STATE(4942), 1, + STATE(4820), 1, sym_path, - ACTIONS(1974), 11, + STATE(4904), 1, + sym_cell_path, + ACTIONS(1897), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -375233,22 +376947,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [163757] = 8, + [166594] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1984), 1, + ACTIONS(1911), 1, anon_sym_DASH2, - ACTIONS(7496), 1, + ACTIONS(7529), 1, anon_sym_DOT, - STATE(4373), 1, + STATE(4361), 1, sym_comment, - STATE(4535), 1, + STATE(4552), 1, aux_sym_cell_path_repeat1, - STATE(4929), 1, - sym_cell_path, - STATE(4942), 1, + STATE(4820), 1, sym_path, - ACTIONS(1986), 11, + STATE(4910), 1, + sym_cell_path, + ACTIONS(1913), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -375260,22 +376974,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [163792] = 8, + [166629] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1988), 1, + ACTIONS(1915), 1, anon_sym_DASH2, - ACTIONS(7496), 1, + ACTIONS(7529), 1, anon_sym_DOT, - STATE(4374), 1, + STATE(4362), 1, sym_comment, - STATE(4535), 1, + STATE(4552), 1, aux_sym_cell_path_repeat1, - STATE(4930), 1, - sym_cell_path, - STATE(4942), 1, + STATE(4820), 1, sym_path, - ACTIONS(1990), 11, + STATE(4943), 1, + sym_cell_path, + ACTIONS(1917), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -375287,22 +377001,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [163827] = 8, + [166664] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1992), 1, + ACTIONS(1919), 1, anon_sym_DASH2, - ACTIONS(7496), 1, + ACTIONS(7529), 1, anon_sym_DOT, - STATE(4375), 1, + STATE(4363), 1, sym_comment, - STATE(4535), 1, + STATE(4552), 1, aux_sym_cell_path_repeat1, - STATE(4931), 1, - sym_cell_path, - STATE(4942), 1, + STATE(4820), 1, sym_path, - ACTIONS(1994), 11, + STATE(4965), 1, + sym_cell_path, + ACTIONS(1921), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -375314,20 +377028,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [163862] = 7, - ACTIONS(247), 1, + [166699] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7500), 1, - anon_sym_and2, - ACTIONS(7502), 1, - anon_sym_xor2, - ACTIONS(7504), 1, - anon_sym_or2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4376), 1, + ACTIONS(1767), 1, + sym__space, + ACTIONS(7240), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7549), 1, + anon_sym_DOT, + STATE(4364), 1, sym_comment, - ACTIONS(7564), 12, + ACTIONS(1765), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375340,48 +377052,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [163895] = 7, + anon_sym_RBRACE, + [166730] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7506), 1, - anon_sym_and2, - ACTIONS(7508), 1, - anon_sym_xor2, - ACTIONS(7510), 1, - anon_sym_or2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4377), 1, + ACTIONS(1927), 1, + anon_sym_DASH2, + ACTIONS(7529), 1, + anon_sym_DOT, + STATE(4365), 1, sym_comment, - ACTIONS(7564), 12, + STATE(4552), 1, + aux_sym_cell_path_repeat1, + STATE(4820), 1, + sym_path, + STATE(4968), 1, + sym_cell_path, + ACTIONS(1929), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [163928] = 8, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [166765] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1996), 1, + ACTIONS(1942), 1, anon_sym_DASH2, - ACTIONS(7496), 1, + ACTIONS(7529), 1, anon_sym_DOT, - STATE(4378), 1, + STATE(4366), 1, sym_comment, - STATE(4535), 1, + STATE(4552), 1, aux_sym_cell_path_repeat1, - STATE(4932), 1, - sym_cell_path, - STATE(4942), 1, + STATE(4820), 1, sym_path, - ACTIONS(1998), 11, + STATE(4971), 1, + sym_cell_path, + ACTIONS(1944), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -375393,101 +377107,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [163963] = 8, + [166800] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(7529), 1, - anon_sym_and2, - ACTIONS(7533), 1, - anon_sym_xor2, - ACTIONS(7558), 1, - anon_sym_or2, - STATE(4301), 1, - aux_sym_shebang_repeat1, - STATE(4379), 1, + STATE(4367), 1, sym_comment, - ACTIONS(7566), 11, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [163998] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7568), 1, + ACTIONS(1006), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, - STATE(4380), 1, - sym_comment, - ACTIONS(2165), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7570), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2159), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [164029] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3857), 1, + anon_sym_DOT, + ACTIONS(1008), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(7531), 1, - anon_sym_and2, - ACTIONS(7535), 1, - anon_sym_xor2, - ACTIONS(7548), 1, - anon_sym_or2, - STATE(4302), 1, - aux_sym_shebang_repeat1, - STATE(4381), 1, - sym_comment, - ACTIONS(7566), 11, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [164064] = 8, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [166827] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2000), 1, + ACTIONS(2026), 1, anon_sym_DASH2, - ACTIONS(7496), 1, + ACTIONS(7529), 1, anon_sym_DOT, - STATE(4382), 1, + STATE(4368), 1, sym_comment, - STATE(4535), 1, + STATE(4552), 1, aux_sym_cell_path_repeat1, - STATE(4933), 1, - sym_cell_path, - STATE(4942), 1, + STATE(4820), 1, sym_path, - ACTIONS(2002), 11, + STATE(4983), 1, + sym_cell_path, + ACTIONS(2028), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -375499,49 +377157,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [164099] = 8, + [166862] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4902), 1, + ACTIONS(2030), 1, + anon_sym_DASH2, + ACTIONS(7529), 1, anon_sym_DOT, - STATE(1702), 1, + STATE(4369), 1, + sym_comment, + STATE(4552), 1, aux_sym_cell_path_repeat1, - STATE(1894), 1, + STATE(4820), 1, sym_path, - STATE(4383), 1, - sym_comment, - STATE(5020), 1, + STATE(4997), 1, sym_cell_path, - ACTIONS(7572), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7574), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [164134] = 8, + ACTIONS(2032), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [166897] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2004), 1, + ACTIONS(2034), 1, anon_sym_DASH2, - ACTIONS(7496), 1, + ACTIONS(7529), 1, anon_sym_DOT, - STATE(4384), 1, + STATE(4370), 1, sym_comment, - STATE(4535), 1, + STATE(4552), 1, aux_sym_cell_path_repeat1, - STATE(4934), 1, - sym_cell_path, - STATE(4942), 1, + STATE(4820), 1, sym_path, - ACTIONS(2006), 11, + STATE(4882), 1, + sym_cell_path, + ACTIONS(2036), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -375553,17 +377211,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [164169] = 4, + [166932] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4385), 1, + STATE(4371), 1, sym_comment, - ACTIONS(1737), 4, - ts_builtin_sym_end, + ACTIONS(992), 2, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1735), 12, + anon_sym_DOT, + ACTIONS(990), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375575,46 +377231,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [164196] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_QMARK2, + [166959] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1002), 1, - anon_sym_DASH2, - STATE(4386), 1, + STATE(4372), 1, sym_comment, - ACTIONS(1004), 15, + ACTIONS(1010), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1012), 13, anon_sym_EQ, sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [166986] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4373), 1, + sym_comment, + ACTIONS(1014), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, anon_sym_DOT, - [164223] = 8, + ACTIONS(1016), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [167013] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2068), 1, + ACTIONS(2038), 1, anon_sym_DASH2, - ACTIONS(7496), 1, + ACTIONS(7529), 1, anon_sym_DOT, - STATE(4387), 1, + STATE(4374), 1, sym_comment, - STATE(4535), 1, + STATE(4552), 1, aux_sym_cell_path_repeat1, - STATE(4935), 1, - sym_cell_path, - STATE(4942), 1, + STATE(4820), 1, sym_path, - ACTIONS(2070), 11, + STATE(4921), 1, + sym_cell_path, + ACTIONS(2040), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -375626,22 +377307,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [164258] = 8, + [167048] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2072), 1, + ACTIONS(1931), 1, anon_sym_DASH2, - ACTIONS(7496), 1, + ACTIONS(7529), 1, anon_sym_DOT, - STATE(4388), 1, + STATE(4375), 1, sym_comment, - STATE(4535), 1, + STATE(4552), 1, aux_sym_cell_path_repeat1, - STATE(4936), 1, - sym_cell_path, - STATE(4942), 1, + STATE(4820), 1, sym_path, - ACTIONS(2074), 11, + STATE(4923), 1, + sym_cell_path, + ACTIONS(1933), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -375653,22 +377334,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [164293] = 8, + [167083] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1907), 1, + ACTIONS(1899), 1, anon_sym_DASH2, - ACTIONS(7496), 1, + ACTIONS(7529), 1, anon_sym_DOT, - STATE(4389), 1, + STATE(4376), 1, sym_comment, - STATE(4535), 1, + STATE(4552), 1, aux_sym_cell_path_repeat1, - STATE(4937), 1, - sym_cell_path, - STATE(4942), 1, + STATE(4820), 1, sym_path, - ACTIONS(1911), 11, + STATE(4975), 1, + sym_cell_path, + ACTIONS(1901), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -375680,23 +377361,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [164328] = 8, + [167118] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4902), 1, + ACTIONS(4894), 1, anon_sym_DOT, - STATE(1702), 1, + STATE(1484), 1, + sym_cell_path, + STATE(1690), 1, aux_sym_cell_path_repeat1, - STATE(1894), 1, + STATE(1882), 1, sym_path, - STATE(4390), 1, + STATE(4377), 1, sym_comment, - STATE(5162), 1, - sym_cell_path, - ACTIONS(7576), 2, + ACTIONS(961), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(7578), 10, + ACTIONS(963), 10, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, @@ -375707,17 +377388,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - [164363] = 4, + [167153] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4391), 1, + ACTIONS(7551), 1, + anon_sym_DOT_DOT2, + STATE(4378), 1, sym_comment, - ACTIONS(2127), 4, + ACTIONS(2128), 2, ts_builtin_sym_end, sym__space, + ACTIONS(7553), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2125), 12, + ACTIONS(2122), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375729,23 +377413,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [167184] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7555), 1, anon_sym_DOT_DOT2, - [164390] = 8, + STATE(4379), 1, + sym_comment, + ACTIONS(2136), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7557), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2130), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [167215] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1913), 1, + ACTIONS(1859), 1, anon_sym_DASH2, - ACTIONS(7496), 1, + ACTIONS(7529), 1, anon_sym_DOT, - STATE(4392), 1, + STATE(4380), 1, sym_comment, - STATE(4535), 1, + STATE(4552), 1, aux_sym_cell_path_repeat1, - STATE(4938), 1, - sym_cell_path, - STATE(4942), 1, + STATE(4820), 1, sym_path, - ACTIONS(1915), 11, + STATE(4898), 1, + sym_cell_path, + ACTIONS(1861), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -375757,22 +377465,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [164425] = 8, + [167250] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2082), 1, + ACTIONS(1907), 1, anon_sym_DASH2, - ACTIONS(7496), 1, + ACTIONS(7529), 1, anon_sym_DOT, - STATE(4393), 1, + STATE(4381), 1, sym_comment, - STATE(4535), 1, + STATE(4552), 1, aux_sym_cell_path_repeat1, - STATE(4912), 1, - sym_cell_path, - STATE(4942), 1, + STATE(4820), 1, sym_path, - ACTIONS(2084), 11, + STATE(4986), 1, + sym_cell_path, + ACTIONS(1909), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -375784,20 +377492,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [164460] = 6, + [167285] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7542), 1, - anon_sym_DOT_DOT2, - STATE(4394), 1, - sym_comment, - ACTIONS(7439), 2, - ts_builtin_sym_end, + ACTIONS(4968), 1, sym__space, - ACTIONS(7544), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7437), 11, + ACTIONS(7559), 1, + sym_long_flag_identifier, + ACTIONS(7561), 1, + anon_sym_EQ2, + STATE(4382), 1, + sym_comment, + ACTIONS(4970), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375809,18 +377515,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [164491] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [167316] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2208), 1, - anon_sym_LPAREN2, - ACTIONS(2210), 1, - sym__space, - ACTIONS(2212), 1, - aux_sym_unquoted_token4, - STATE(4395), 1, + ACTIONS(7563), 1, + anon_sym_DOT_DOT2, + STATE(4383), 1, sym_comment, - ACTIONS(2206), 13, + ACTIONS(2152), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7565), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2146), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375832,20 +377542,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [164522] = 6, + [167347] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1032), 1, + ACTIONS(4974), 1, sym__space, - ACTIONS(2202), 1, - anon_sym_LPAREN2, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(4396), 1, + ACTIONS(7567), 1, + anon_sym_EQ2, + ACTIONS(7569), 1, + sym_short_flag_identifier, + STATE(4384), 1, sym_comment, - ACTIONS(1030), 13, + ACTIONS(4976), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375859,12 +377567,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [164553] = 3, - ACTIONS(247), 1, + [167378] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4397), 1, + ACTIONS(7571), 1, + anon_sym_QMARK2, + STATE(4385), 1, sym_comment, - ACTIONS(7316), 16, + ACTIONS(980), 2, + sym__space, + anon_sym_DOT, + ACTIONS(978), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375878,15 +377591,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [164578] = 3, - ACTIONS(247), 1, + [167407] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4398), 1, + ACTIONS(7573), 1, + anon_sym_QMARK2, + STATE(4386), 1, sym_comment, - ACTIONS(7379), 16, + ACTIONS(986), 2, + sym__space, + anon_sym_DOT, + ACTIONS(984), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375900,15 +377615,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [164603] = 3, - ACTIONS(247), 1, + [167436] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4399), 1, + STATE(4387), 1, sym_comment, - ACTIONS(7316), 16, + ACTIONS(2120), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2118), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375920,19 +377637,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [164628] = 4, + anon_sym_DOT_DOT2, + [167463] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(990), 1, + ACTIONS(7575), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7577), 1, + aux_sym__immediate_decimal_token2, + STATE(4388), 1, + sym_comment, + ACTIONS(1585), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1587), 12, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_DOT, + [167494] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1002), 1, anon_sym_DASH2, - STATE(4400), 1, + STATE(4389), 1, sym_comment, - ACTIONS(992), 15, + ACTIONS(1004), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -375948,18 +377686,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_QMARK2, anon_sym_DOT, - [164655] = 6, + [167521] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2216), 1, - anon_sym_LPAREN2, - ACTIONS(2218), 1, - sym__space, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - STATE(4401), 1, + STATE(4390), 1, sym_comment, - ACTIONS(2214), 13, + ACTIONS(996), 2, + sym__space, + anon_sym_DOT, + ACTIONS(994), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375973,18 +377708,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [164686] = 6, + anon_sym_QMARK2, + [167548] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1863), 1, + anon_sym_DASH2, + ACTIONS(7529), 1, + anon_sym_DOT, + STATE(4391), 1, + sym_comment, + STATE(4552), 1, + aux_sym_cell_path_repeat1, + STATE(4820), 1, + sym_path, + STATE(4991), 1, + sym_cell_path, + ACTIONS(1865), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [167583] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2216), 1, - anon_sym_LPAREN2, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - ACTIONS(2224), 1, - sym__space, - STATE(4402), 1, + ACTIONS(7579), 1, + anon_sym_DOT_DOT2, + STATE(4392), 1, sym_comment, - ACTIONS(2222), 13, + ACTIONS(2163), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7581), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2157), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375996,14 +377761,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [164717] = 3, - ACTIONS(247), 1, + [167614] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4403), 1, + STATE(4393), 1, sym_comment, - ACTIONS(7379), 16, + ACTIONS(1000), 2, + sym__space, + anon_sym_DOT, + ACTIONS(998), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376017,15 +377783,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_QMARK2, + [167641] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7513), 1, anon_sym_and2, + ACTIONS(7515), 1, anon_sym_xor2, + ACTIONS(7517), 1, anon_sym_or2, - [164742] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4404), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4394), 1, sym_comment, - ACTIONS(7316), 16, + ACTIONS(7583), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376038,18 +377810,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [164767] = 4, - ACTIONS(247), 1, + [167674] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4405), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + ACTIONS(7587), 1, + sym__space, + STATE(4395), 1, sym_comment, - ACTIONS(7580), 15, + STATE(7495), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7585), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376062,42 +377834,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [164794] = 4, + anon_sym_RBRACE, + [167705] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4406), 1, + ACTIONS(7589), 1, + anon_sym_DOT, + ACTIONS(7591), 1, + aux_sym__immediate_decimal_token2, + STATE(4396), 1, sym_comment, - ACTIONS(7580), 15, + ACTIONS(1765), 3, + sym_identifier, + anon_sym_DASH2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1767), 11, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [164821] = 5, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [167736] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4894), 1, + anon_sym_DOT, + STATE(1690), 1, + aux_sym_cell_path_repeat1, + STATE(1882), 1, + sym_path, + STATE(4397), 1, + sym_comment, + STATE(5133), 1, + sym_cell_path, + ACTIONS(7593), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7595), 10, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [167771] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7500), 1, + ACTIONS(7537), 1, anon_sym_and2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4407), 1, + ACTIONS(7541), 1, + anon_sym_xor2, + ACTIONS(7599), 1, + anon_sym_or2, + STATE(4398), 1, sym_comment, - ACTIONS(7580), 14, + ACTIONS(7597), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376110,18 +377911,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [164850] = 5, - ACTIONS(247), 1, + anon_sym_RBRACE, + [167802] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7506), 1, - anon_sym_and2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4408), 1, + ACTIONS(7427), 1, + aux_sym__immediate_decimal_token2, + STATE(4399), 1, sym_comment, - ACTIONS(7580), 14, + ACTIONS(1767), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1765), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376133,21 +377935,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [164879] = 6, + aux_sym_unquoted_token2, + [167831] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7500), 1, + ACTIONS(7539), 1, anon_sym_and2, - ACTIONS(7502), 1, + ACTIONS(7543), 1, anon_sym_xor2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4409), 1, + ACTIONS(7601), 1, + anon_sym_or2, + STATE(4400), 1, sym_comment, - ACTIONS(7580), 13, + ACTIONS(7597), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376160,63 +377960,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [164910] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4902), 1, - anon_sym_DOT, - STATE(1463), 1, - sym_cell_path, - STATE(1702), 1, - aux_sym_cell_path_repeat1, - STATE(1894), 1, - sym_path, - STATE(4410), 1, - sym_comment, - ACTIONS(961), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(963), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [164945] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(998), 1, - anon_sym_DASH2, - STATE(4411), 1, - sym_comment, - ACTIONS(1000), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT, - [164972] = 3, + [167862] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4412), 1, + STATE(4401), 1, sym_comment, - ACTIONS(7379), 16, + ACTIONS(6983), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376233,12 +377983,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [164997] = 3, + [167887] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4413), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4402), 1, sym_comment, - ACTIONS(7582), 16, + ACTIONS(7603), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376251,16 +378003,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [165022] = 3, + [167914] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4414), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4403), 1, sym_comment, - ACTIONS(7582), 16, + ACTIONS(7603), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376273,18 +378026,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [165047] = 4, + [167941] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + ACTIONS(7513), 1, + anon_sym_and2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(4415), 1, + STATE(4404), 1, sym_comment, - ACTIONS(7584), 15, + ACTIONS(7603), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376297,17 +378051,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [165074] = 4, + [167970] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + ACTIONS(7519), 1, + anon_sym_and2, + ACTIONS(7521), 1, + anon_sym_xor2, + ACTIONS(7523), 1, + anon_sym_or2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(4416), 1, + STATE(4405), 1, sym_comment, - ACTIONS(7584), 15, + ACTIONS(7583), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376320,17 +378079,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [165101] = 4, + [168003] = 9, ACTIONS(247), 1, anon_sym_POUND, - STATE(4417), 1, + ACTIONS(7607), 1, + anon_sym_EQ, + ACTIONS(7610), 1, + sym__newline, + ACTIONS(7613), 1, + anon_sym_COLON, + ACTIONS(7616), 1, + anon_sym_DASH2, + STATE(6777), 1, + aux_sym_shebang_repeat1, + STATE(4406), 2, sym_comment, - STATE(4474), 1, + aux_sym_parameter_repeat1, + STATE(5171), 2, + sym_param_type, + sym_param_value, + ACTIONS(7605), 8, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [168040] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7519), 1, + anon_sym_and2, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(7586), 15, + STATE(4407), 1, + sym_comment, + ACTIONS(7603), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376343,17 +378129,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [165128] = 4, + [168069] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(994), 1, + anon_sym_DASH2, + STATE(4408), 1, + sym_comment, + ACTIONS(996), 15, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT, + [168096] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7588), 1, + ACTIONS(7513), 1, anon_sym_and2, - STATE(4418), 1, + ACTIONS(7515), 1, + anon_sym_xor2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4409), 1, sym_comment, - ACTIONS(7582), 15, + ACTIONS(7603), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376366,17 +378178,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_xor2, anon_sym_or2, - [165155] = 4, + [168127] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7590), 1, + ACTIONS(7519), 1, anon_sym_and2, - STATE(4419), 1, + ACTIONS(7521), 1, + anon_sym_xor2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4410), 1, sym_comment, - ACTIONS(7582), 15, + ACTIONS(7603), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376389,17 +378203,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_xor2, anon_sym_or2, - [165182] = 4, + [168158] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4420), 1, - sym_comment, - STATE(4475), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(7586), 15, + STATE(4411), 1, + sym_comment, + ACTIONS(7603), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376415,16 +378227,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [165209] = 5, + [168185] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7500), 1, - anon_sym_and2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(4421), 1, + STATE(4412), 1, sym_comment, - ACTIONS(7584), 14, + ACTIONS(7603), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376437,18 +378247,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [165238] = 5, + [168212] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7506), 1, + ACTIONS(7513), 1, anon_sym_and2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(4422), 1, + STATE(4413), 1, sym_comment, - ACTIONS(7584), 14, + ACTIONS(7603), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376463,18 +378274,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [165267] = 6, + [168241] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7529), 1, + ACTIONS(7519), 1, anon_sym_and2, - ACTIONS(7592), 1, - sym__newline, - STATE(4423), 1, - sym_comment, - STATE(4476), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(7586), 13, + STATE(4414), 1, + sym_comment, + ACTIONS(7603), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376488,18 +378298,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [165298] = 6, + [168270] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7531), 1, - anon_sym_and2, - ACTIONS(7592), 1, + ACTIONS(3929), 1, sym__newline, - STATE(4424), 1, - sym_comment, - STATE(4477), 1, + ACTIONS(7499), 1, + anon_sym_and2, + ACTIONS(7501), 1, + anon_sym_xor2, + ACTIONS(7503), 1, + anon_sym_or2, + STATE(4327), 1, aux_sym_shebang_repeat1, - ACTIONS(7586), 13, + STATE(4415), 1, + sym_comment, + ACTIONS(7618), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376511,21 +378325,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [165329] = 6, + [168305] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7500), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(7505), 1, anon_sym_and2, - ACTIONS(7502), 1, + ACTIONS(7507), 1, anon_sym_xor2, - STATE(1816), 1, + ACTIONS(7509), 1, + anon_sym_or2, + STATE(4328), 1, aux_sym_shebang_repeat1, - STATE(4425), 1, + STATE(4416), 1, sym_comment, - ACTIONS(7584), 13, - sym__newline, + ACTIONS(7618), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376537,19 +378352,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [165360] = 6, + [168340] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7506), 1, + ACTIONS(7513), 1, anon_sym_and2, - ACTIONS(7508), 1, + ACTIONS(7515), 1, anon_sym_xor2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(4426), 1, + STATE(4417), 1, sym_comment, - ACTIONS(7584), 13, + ACTIONS(7603), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376563,20 +378377,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [165391] = 7, + [168371] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(7529), 1, + ACTIONS(7519), 1, anon_sym_and2, - ACTIONS(7533), 1, + ACTIONS(7521), 1, anon_sym_xor2, - STATE(4427), 1, - sym_comment, - STATE(4479), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - ACTIONS(7586), 12, + STATE(4418), 1, + sym_comment, + ACTIONS(7603), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376589,20 +378402,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [165424] = 7, - ACTIONS(247), 1, + [168402] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(7531), 1, - anon_sym_and2, - ACTIONS(7535), 1, - anon_sym_xor2, - STATE(4428), 1, + STATE(4419), 1, sym_comment, - STATE(4481), 1, - aux_sym_shebang_repeat1, - ACTIONS(7586), 12, + ACTIONS(1737), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1733), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376613,16 +378424,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [165457] = 4, + anon_sym_DOT_DOT2, + [168429] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4429), 1, + STATE(4420), 1, sym_comment, - ACTIONS(7580), 15, + STATE(4426), 1, + aux_sym_shebang_repeat1, + ACTIONS(7620), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376638,14 +378448,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [165484] = 4, - ACTIONS(247), 1, + [168456] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4430), 1, + ACTIONS(7531), 1, + anon_sym_DOT_DOT2, + STATE(4421), 1, sym_comment, - ACTIONS(7580), 15, + ACTIONS(7445), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7533), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7443), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376657,20 +378473,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [165511] = 5, - ACTIONS(247), 1, + [168487] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7500), 1, - anon_sym_and2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4431), 1, + STATE(4422), 1, sym_comment, - ACTIONS(7580), 14, + ACTIONS(1046), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1044), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376682,19 +378495,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [165540] = 5, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + [168514] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7506), 1, - anon_sym_and2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4432), 1, + STATE(4423), 1, sym_comment, - ACTIONS(7580), 14, + ACTIONS(2054), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2052), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376706,19 +378518,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [165569] = 5, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + [168541] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7588), 1, - anon_sym_and2, - ACTIONS(7595), 1, - anon_sym_xor2, - STATE(4433), 1, + STATE(4424), 1, sym_comment, - ACTIONS(7582), 14, + ACTIONS(1004), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1002), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376732,19 +378541,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_or2, - [165598] = 6, + anon_sym_QMARK2, + [168568] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7500), 1, - anon_sym_and2, - ACTIONS(7502), 1, - anon_sym_xor2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(4434), 1, + STATE(4425), 1, sym_comment, - ACTIONS(7580), 13, + ACTIONS(7622), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376757,19 +378562,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [165629] = 6, + [168595] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7506), 1, - anon_sym_and2, - ACTIONS(7508), 1, - anon_sym_xor2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(4435), 1, + STATE(4426), 1, sym_comment, - ACTIONS(7580), 13, + ACTIONS(7622), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376782,17 +378585,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [165660] = 5, + [168622] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7590), 1, + STATE(4427), 1, + sym_comment, + STATE(4453), 1, + aux_sym_shebang_repeat1, + ACTIONS(7624), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_and2, - ACTIONS(7597), 1, anon_sym_xor2, - STATE(4436), 1, + anon_sym_or2, + [168649] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4428), 1, sym_comment, - ACTIONS(7582), 14, + STATE(4454), 1, + aux_sym_shebang_repeat1, + ACTIONS(7624), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376805,16 +378631,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [165689] = 4, + [168676] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + ACTIONS(7513), 1, + anon_sym_and2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(4437), 1, + STATE(4429), 1, sym_comment, - ACTIONS(7584), 15, + ACTIONS(7622), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376827,17 +378656,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [165716] = 4, + [168705] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + ACTIONS(7519), 1, + anon_sym_and2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(4438), 1, + STATE(4430), 1, sym_comment, - ACTIONS(7584), 15, + ACTIONS(7622), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376850,18 +378680,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [165743] = 4, + [168734] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4439), 1, + ACTIONS(7499), 1, + anon_sym_and2, + ACTIONS(7626), 1, + sym__newline, + STATE(4431), 1, sym_comment, - STATE(4482), 1, + STATE(4467), 1, aux_sym_shebang_repeat1, - ACTIONS(7586), 15, - sym__newline, + ACTIONS(7624), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376873,18 +378705,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [165770] = 4, + [168765] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4440), 1, + ACTIONS(7505), 1, + anon_sym_and2, + ACTIONS(7626), 1, + sym__newline, + STATE(4432), 1, sym_comment, - STATE(4484), 1, + STATE(4468), 1, aux_sym_shebang_repeat1, - ACTIONS(7586), 15, - sym__newline, + ACTIONS(7624), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376896,19 +378730,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [165797] = 5, + [168796] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7500), 1, + ACTIONS(7513), 1, anon_sym_and2, - STATE(1816), 1, + ACTIONS(7515), 1, + anon_sym_xor2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(4441), 1, + STATE(4433), 1, sym_comment, - ACTIONS(7584), 14, + ACTIONS(7622), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376921,18 +378756,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [165826] = 5, + [168827] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7506), 1, + ACTIONS(7519), 1, anon_sym_and2, - STATE(1816), 1, + ACTIONS(7521), 1, + anon_sym_xor2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(4442), 1, + STATE(4434), 1, sym_comment, - ACTIONS(7584), 14, + ACTIONS(7622), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376945,20 +378781,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [165855] = 6, + [168858] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7529), 1, - anon_sym_and2, - ACTIONS(7592), 1, + ACTIONS(3929), 1, sym__newline, - STATE(4443), 1, + ACTIONS(7499), 1, + anon_sym_and2, + ACTIONS(7501), 1, + anon_sym_xor2, + STATE(4435), 1, sym_comment, - STATE(4485), 1, + STATE(4471), 1, aux_sym_shebang_repeat1, - ACTIONS(7586), 13, + ACTIONS(7624), 12, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_or2, + [168891] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1559), 1, + aux_sym_unquoted_token2, + ACTIONS(1822), 1, + anon_sym_LPAREN2, + ACTIONS(1828), 1, + sym__space, + STATE(4436), 1, + sym_comment, + ACTIONS(1820), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376970,20 +378832,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [165886] = 6, + anon_sym_RBRACE, + [168922] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7531), 1, - anon_sym_and2, - ACTIONS(7592), 1, + ACTIONS(3929), 1, sym__newline, - STATE(4444), 1, + ACTIONS(7505), 1, + anon_sym_and2, + ACTIONS(7507), 1, + anon_sym_xor2, + STATE(4437), 1, sym_comment, - STATE(4486), 1, + STATE(4472), 1, aux_sym_shebang_repeat1, - ACTIONS(7586), 13, + ACTIONS(7624), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376995,20 +378858,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [165917] = 6, + [168955] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7500), 1, - anon_sym_and2, - ACTIONS(7502), 1, - anon_sym_xor2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4445), 1, + STATE(4438), 1, sym_comment, - ACTIONS(7584), 13, + STATE(4474), 1, + aux_sym_shebang_repeat1, + ACTIONS(7492), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377021,20 +378879,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [165948] = 6, + [168982] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7506), 1, + ACTIONS(7499), 1, anon_sym_and2, - ACTIONS(7508), 1, - anon_sym_xor2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4446), 1, - sym_comment, - ACTIONS(7584), 13, + ACTIONS(7629), 1, sym__newline, + STATE(4439), 1, + sym_comment, + STATE(4478), 1, + aux_sym_shebang_repeat1, + ACTIONS(7492), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377046,21 +378905,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [165979] = 7, + [169013] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(7529), 1, + ACTIONS(7505), 1, anon_sym_and2, - ACTIONS(7533), 1, - anon_sym_xor2, - STATE(4447), 1, + ACTIONS(7629), 1, + sym__newline, + STATE(4440), 1, sym_comment, - STATE(4488), 1, + STATE(4479), 1, aux_sym_shebang_repeat1, - ACTIONS(7586), 12, + ACTIONS(7492), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377072,21 +378930,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [166012] = 7, + [169044] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(7531), 1, + ACTIONS(7499), 1, anon_sym_and2, - ACTIONS(7535), 1, + ACTIONS(7501), 1, anon_sym_xor2, - STATE(4448), 1, + STATE(4441), 1, sym_comment, - STATE(4489), 1, + STATE(4483), 1, aux_sym_shebang_repeat1, - ACTIONS(7586), 12, + ACTIONS(7492), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377099,13 +378958,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [166045] = 3, + [169077] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(4449), 1, - sym_comment, - ACTIONS(7582), 16, + ACTIONS(3929), 1, sym__newline, + ACTIONS(7505), 1, + anon_sym_and2, + ACTIONS(7507), 1, + anon_sym_xor2, + STATE(4442), 1, + sym_comment, + STATE(4485), 1, + aux_sym_shebang_repeat1, + ACTIONS(7492), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377117,16 +378983,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [166070] = 3, + [169110] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4450), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4443), 1, sym_comment, - ACTIONS(7582), 16, + ACTIONS(7622), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377139,18 +379004,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [166095] = 4, + [169137] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7588), 1, - anon_sym_and2, - STATE(4451), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4444), 1, sym_comment, - ACTIONS(7582), 15, + ACTIONS(7622), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377163,17 +379027,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [166122] = 4, + [169164] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7590), 1, - anon_sym_and2, - STATE(4452), 1, + STATE(4445), 1, sym_comment, - ACTIONS(7582), 15, + STATE(4492), 1, + aux_sym_shebang_repeat1, + ACTIONS(7624), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377186,19 +379050,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [166149] = 5, + [169191] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7588), 1, - anon_sym_and2, - ACTIONS(7595), 1, - anon_sym_xor2, - STATE(4453), 1, + STATE(4446), 1, sym_comment, - ACTIONS(7582), 14, + STATE(4493), 1, + aux_sym_shebang_repeat1, + ACTIONS(7624), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377211,41 +379073,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [166178] = 4, + [169218] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4454), 1, - sym_comment, - ACTIONS(2131), 4, - ts_builtin_sym_end, + ACTIONS(2240), 1, + anon_sym_LPAREN2, + ACTIONS(2242), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2129), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [166205] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7590), 1, - anon_sym_and2, - ACTIONS(7597), 1, - anon_sym_xor2, - STATE(4455), 1, + ACTIONS(2244), 1, + aux_sym_unquoted_token4, + STATE(4447), 1, sym_comment, - ACTIONS(7582), 14, + ACTIONS(2238), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377259,18 +379101,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_or2, - [166234] = 4, + [169249] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4456), 1, - sym_comment, - ACTIONS(2185), 4, - ts_builtin_sym_end, + ACTIONS(1028), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2183), 12, + ACTIONS(2226), 1, + anon_sym_LPAREN2, + ACTIONS(2228), 1, + aux_sym_unquoted_token4, + STATE(4448), 1, + sym_comment, + ACTIONS(1026), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377282,15 +379124,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [166261] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [169280] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(4319), 1, + ACTIONS(7513), 1, + anon_sym_and2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(4457), 1, + STATE(4449), 1, sym_comment, - ACTIONS(7599), 15, + ACTIONS(7622), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377303,17 +379148,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [166288] = 4, + [169309] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(4320), 1, + ACTIONS(7519), 1, + anon_sym_and2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(4458), 1, + STATE(4450), 1, sym_comment, - ACTIONS(7599), 15, + ACTIONS(7622), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377326,21 +379172,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [166315] = 6, + [169338] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7529), 1, + ACTIONS(7499), 1, anon_sym_and2, - ACTIONS(7601), 1, + ACTIONS(7626), 1, sym__newline, - STATE(4325), 1, - aux_sym_shebang_repeat1, - STATE(4459), 1, + STATE(4451), 1, sym_comment, - ACTIONS(7599), 13, + STATE(4494), 1, + aux_sym_shebang_repeat1, + ACTIONS(7624), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377354,18 +379199,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [166346] = 6, + [169369] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7531), 1, + ACTIONS(7505), 1, anon_sym_and2, - ACTIONS(7601), 1, + ACTIONS(7626), 1, sym__newline, - STATE(4326), 1, - aux_sym_shebang_repeat1, - STATE(4460), 1, + STATE(4452), 1, sym_comment, - ACTIONS(7599), 13, + STATE(4495), 1, + aux_sym_shebang_repeat1, + ACTIONS(7624), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377379,20 +379224,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [166377] = 7, + [169400] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(7529), 1, - anon_sym_and2, - ACTIONS(7533), 1, - anon_sym_xor2, - STATE(4329), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(4461), 1, + STATE(4453), 1, sym_comment, - ACTIONS(7599), 12, + ACTIONS(7632), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377404,21 +379244,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [166410] = 7, + [169427] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(7531), 1, - anon_sym_and2, - ACTIONS(7535), 1, - anon_sym_xor2, - STATE(4330), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(4462), 1, + STATE(4454), 1, sym_comment, - ACTIONS(7599), 12, + ACTIONS(7632), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377430,16 +379267,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [166443] = 4, - ACTIONS(3), 1, + [169454] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4463), 1, + ACTIONS(7513), 1, + anon_sym_and2, + ACTIONS(7515), 1, + anon_sym_xor2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4455), 1, sym_comment, - ACTIONS(2250), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2248), 14, + ACTIONS(7622), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377452,20 +379294,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token4, - [166470] = 6, - ACTIONS(3), 1, + anon_sym_or2, + [169485] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - ACTIONS(7606), 1, - sym__space, - STATE(4464), 1, + ACTIONS(7519), 1, + anon_sym_and2, + ACTIONS(7521), 1, + anon_sym_xor2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4456), 1, sym_comment, - STATE(7508), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7604), 13, + ACTIONS(7622), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377478,17 +379319,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [166501] = 4, - ACTIONS(3), 1, + anon_sym_or2, + [169516] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4465), 1, - sym_comment, - ACTIONS(996), 2, - sym__space, - anon_sym_DOT, - ACTIONS(994), 14, + ACTIONS(3929), 1, sym__newline, + ACTIONS(7499), 1, + anon_sym_and2, + ACTIONS(7501), 1, + anon_sym_xor2, + STATE(4457), 1, + sym_comment, + STATE(4496), 1, + aux_sym_shebang_repeat1, + ACTIONS(7624), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377500,21 +379345,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, - [166528] = 6, - ACTIONS(3), 1, + anon_sym_or2, + [169549] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4936), 1, - sym__space, - ACTIONS(7608), 1, - sym_long_flag_identifier, - ACTIONS(7610), 1, - anon_sym_EQ2, - STATE(4466), 1, - sym_comment, - ACTIONS(4938), 13, + ACTIONS(3929), 1, sym__newline, + ACTIONS(7505), 1, + anon_sym_and2, + ACTIONS(7507), 1, + anon_sym_xor2, + STATE(4458), 1, + sym_comment, + STATE(4497), 1, + aux_sym_shebang_repeat1, + ACTIONS(7624), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377526,16 +379371,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [166559] = 4, + anon_sym_or2, + [169582] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4900), 1, - aux_sym_unquoted_token2, - STATE(4467), 1, + STATE(4459), 1, sym_comment, - ACTIONS(1721), 15, - ts_builtin_sym_end, + STATE(4498), 1, + aux_sym_shebang_repeat1, + ACTIONS(7492), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377547,21 +379391,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [166586] = 6, - ACTIONS(3), 1, + [169609] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4956), 1, - sym__space, - ACTIONS(7612), 1, - anon_sym_EQ2, - ACTIONS(7614), 1, - sym_short_flag_identifier, - STATE(4468), 1, + STATE(4460), 1, sym_comment, - ACTIONS(4958), 13, + STATE(4499), 1, + aux_sym_shebang_repeat1, + ACTIONS(7492), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377574,41 +379415,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [166617] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7616), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7618), 1, - aux_sym__immediate_decimal_token2, - STATE(4469), 1, - sym_comment, - ACTIONS(1621), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(1623), 12, - anon_sym_in2, - anon_sym_QMARK2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_DOT, - [166648] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [169636] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4470), 1, - sym_comment, - ACTIONS(1000), 2, + ACTIONS(1804), 1, + anon_sym_LPAREN2, + ACTIONS(1812), 1, + aux_sym_unquoted_token2, + ACTIONS(2232), 1, sym__space, - anon_sym_DOT, - ACTIONS(998), 14, + STATE(4461), 1, + sym_comment, + ACTIONS(2230), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377622,16 +379443,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, - [166675] = 4, + [169667] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4471), 1, - sym_comment, - ACTIONS(1004), 2, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + ACTIONS(2250), 1, sym__space, - anon_sym_DOT, - ACTIONS(1002), 14, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + STATE(4462), 1, + sym_comment, + ACTIONS(2246), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377645,15 +379468,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, - [166702] = 4, - ACTIONS(247), 1, + [169698] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4342), 1, - aux_sym_shebang_repeat1, - STATE(4472), 1, + ACTIONS(1804), 1, + anon_sym_LPAREN2, + ACTIONS(1810), 1, + sym__space, + ACTIONS(1812), 1, + aux_sym_unquoted_token2, + STATE(4463), 1, sym_comment, - ACTIONS(7599), 15, + ACTIONS(1802), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377666,17 +379492,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [166729] = 4, - ACTIONS(247), 1, + anon_sym_RBRACE, + [169729] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4343), 1, - aux_sym_shebang_repeat1, - STATE(4473), 1, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + ACTIONS(2256), 1, + sym__space, + STATE(4464), 1, sym_comment, - ACTIONS(7599), 15, + ACTIONS(2254), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377689,18 +379517,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [166756] = 4, + anon_sym_RBRACE, + [169760] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4474), 1, - sym_comment, - ACTIONS(7620), 15, + ACTIONS(7499), 1, + anon_sym_and2, + ACTIONS(7629), 1, sym__newline, + STATE(4465), 1, + sym_comment, + STATE(4504), 1, + aux_sym_shebang_repeat1, + ACTIONS(7492), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377712,18 +379541,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [166783] = 4, + [169791] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4475), 1, - sym_comment, - ACTIONS(7620), 15, + ACTIONS(7505), 1, + anon_sym_and2, + ACTIONS(7629), 1, sym__newline, + STATE(4466), 1, + sym_comment, + STATE(4505), 1, + aux_sym_shebang_repeat1, + ACTIONS(7492), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377735,19 +379566,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [166810] = 5, + [169822] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7500), 1, + ACTIONS(7513), 1, anon_sym_and2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(4476), 1, + STATE(4467), 1, sym_comment, - ACTIONS(7620), 14, + ACTIONS(7632), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377762,16 +379592,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [166839] = 5, + [169851] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7506), 1, + ACTIONS(7519), 1, anon_sym_and2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(4477), 1, + STATE(4468), 1, sym_comment, - ACTIONS(7620), 14, + ACTIONS(7632), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377786,21 +379616,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [166868] = 7, + [169880] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7389), 1, - anon_sym_DOT, - STATE(4478), 1, + ACTIONS(7634), 1, + aux_sym__immediate_decimal_token2, + STATE(4469), 1, sym_comment, - STATE(4490), 1, - aux_sym_cell_path_repeat1, - STATE(4708), 1, - sym_path, - ACTIONS(969), 2, + ACTIONS(1787), 3, ts_builtin_sym_end, sym__space, - ACTIONS(967), 11, + anon_sym_LPAREN2, + ACTIONS(1785), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377812,19 +379639,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [166901] = 6, + aux_sym_unquoted_token2, + [169909] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7500), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(7499), 1, anon_sym_and2, - ACTIONS(7502), 1, + ACTIONS(7501), 1, anon_sym_xor2, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4479), 1, + STATE(4470), 1, sym_comment, - ACTIONS(7620), 13, - sym__newline, + STATE(4508), 1, + aux_sym_shebang_repeat1, + ACTIONS(7492), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377837,15 +379666,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [166932] = 4, - ACTIONS(3), 1, + [169942] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4480), 1, + ACTIONS(7513), 1, + anon_sym_and2, + ACTIONS(7515), 1, + anon_sym_xor2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4471), 1, sym_comment, - ACTIONS(992), 2, - sym__space, - anon_sym_DOT, - ACTIONS(990), 14, + ACTIONS(7632), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377858,20 +379690,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, - [166959] = 6, + anon_sym_or2, + [169973] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7506), 1, + ACTIONS(7519), 1, anon_sym_and2, - ACTIONS(7508), 1, + ACTIONS(7521), 1, anon_sym_xor2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(4481), 1, + STATE(4472), 1, sym_comment, - ACTIONS(7620), 13, + ACTIONS(7632), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377885,14 +379716,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [166990] = 4, + [170004] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(4482), 1, + STATE(4473), 1, sym_comment, - ACTIONS(7620), 15, + ACTIONS(7636), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377908,18 +379739,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [167017] = 6, + [170031] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7529), 1, - anon_sym_and2, - ACTIONS(7601), 1, - sym__newline, - STATE(4346), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(4483), 1, + STATE(4474), 1, sym_comment, - ACTIONS(7599), 13, + ACTIONS(7636), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377931,17 +379759,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [167048] = 4, + [170058] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + ACTIONS(7499), 1, + anon_sym_and2, + ACTIONS(7638), 1, + sym__newline, + STATE(4429), 1, aux_sym_shebang_repeat1, - STATE(4484), 1, + STATE(4475), 1, sym_comment, - ACTIONS(7620), 15, - sym__newline, + ACTIONS(7620), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377953,19 +379785,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [167075] = 5, + [170089] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7500), 1, - anon_sym_and2, - STATE(1816), 1, + STATE(4402), 1, aux_sym_shebang_repeat1, - STATE(4485), 1, + STATE(4476), 1, sym_comment, - ACTIONS(7620), 14, + ACTIONS(7641), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377978,18 +379807,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [167104] = 5, + [170116] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7506), 1, - anon_sym_and2, - STATE(1816), 1, + STATE(4403), 1, aux_sym_shebang_repeat1, - STATE(4486), 1, + STATE(4477), 1, sym_comment, - ACTIONS(7620), 14, + ACTIONS(7641), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378002,20 +379830,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [167133] = 6, + [170143] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7531), 1, + ACTIONS(7513), 1, anon_sym_and2, - ACTIONS(7601), 1, - sym__newline, - STATE(4347), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(4487), 1, + STATE(4478), 1, sym_comment, - ACTIONS(7599), 13, + ACTIONS(7636), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378029,18 +379857,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [167164] = 6, + [170172] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7500), 1, + ACTIONS(7519), 1, anon_sym_and2, - ACTIONS(7502), 1, - anon_sym_xor2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(4488), 1, + STATE(4479), 1, sym_comment, - ACTIONS(7620), 13, + ACTIONS(7636), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378053,20 +379879,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [167195] = 6, + [170201] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7506), 1, + ACTIONS(7499), 1, anon_sym_and2, - ACTIONS(7508), 1, - anon_sym_xor2, - STATE(1816), 1, + ACTIONS(7643), 1, + sym__newline, + STATE(4404), 1, aux_sym_shebang_repeat1, - STATE(4489), 1, + STATE(4480), 1, sym_comment, - ACTIONS(7620), 13, - sym__newline, + ACTIONS(7641), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378078,22 +379904,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [167226] = 6, - ACTIONS(3), 1, + [170232] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7622), 1, - anon_sym_DOT, - STATE(4708), 1, - sym_path, - ACTIONS(973), 2, - ts_builtin_sym_end, - sym__space, - STATE(4490), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(971), 11, + ACTIONS(3929), 1, sym__newline, + ACTIONS(7505), 1, + anon_sym_and2, + ACTIONS(7507), 1, + anon_sym_xor2, + STATE(4481), 1, + sym_comment, + STATE(4509), 1, + aux_sym_shebang_repeat1, + ACTIONS(7492), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378104,19 +379930,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [167257] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_or2, + [170265] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7494), 1, - aux_sym__immediate_decimal_token2, - STATE(4491), 1, - sym_comment, - ACTIONS(1757), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1755), 12, + ACTIONS(7505), 1, + anon_sym_and2, + ACTIONS(7643), 1, sym__newline, + STATE(4407), 1, + aux_sym_shebang_repeat1, + STATE(4482), 1, + sym_comment, + ACTIONS(7641), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378127,41 +379954,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [167286] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(994), 1, - anon_sym_DASH2, - STATE(4492), 1, - sym_comment, - ACTIONS(996), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT, - [167313] = 4, - ACTIONS(3), 1, + anon_sym_xor2, + anon_sym_or2, + [170296] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4493), 1, + ACTIONS(7513), 1, + anon_sym_and2, + ACTIONS(7515), 1, + anon_sym_xor2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4483), 1, sym_comment, - ACTIONS(1020), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1018), 12, + ACTIONS(7636), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378173,21 +379980,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [167340] = 7, + anon_sym_RPAREN, + anon_sym_or2, + [170327] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(7529), 1, + ACTIONS(7505), 1, anon_sym_and2, - ACTIONS(7533), 1, - anon_sym_xor2, - STATE(4350), 1, + ACTIONS(7638), 1, + sym__newline, + STATE(4430), 1, aux_sym_shebang_repeat1, - STATE(4494), 1, + STATE(4484), 1, sym_comment, - ACTIONS(7599), 12, + ACTIONS(7620), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378199,19 +380005,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [167373] = 5, - ACTIONS(3), 1, + [170358] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7625), 1, - aux_sym__immediate_decimal_token2, - STATE(4495), 1, + ACTIONS(7519), 1, + anon_sym_and2, + ACTIONS(7521), 1, + anon_sym_xor2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4485), 1, sym_comment, - ACTIONS(1785), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1783), 12, + ACTIONS(7636), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378223,21 +380030,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [167402] = 7, + anon_sym_RPAREN, + anon_sym_or2, + [170389] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(7531), 1, + ACTIONS(7499), 1, anon_sym_and2, - ACTIONS(7535), 1, + ACTIONS(7501), 1, anon_sym_xor2, - STATE(4351), 1, + STATE(4433), 1, aux_sym_shebang_repeat1, - STATE(4496), 1, + STATE(4486), 1, sym_comment, - ACTIONS(7599), 12, + ACTIONS(7620), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378250,22 +380058,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [167435] = 8, + [170422] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2090), 1, + ACTIONS(1867), 1, anon_sym_DASH2, - ACTIONS(7496), 1, + ACTIONS(7529), 1, anon_sym_DOT, - STATE(4497), 1, + STATE(4487), 1, sym_comment, - STATE(4535), 1, + STATE(4552), 1, aux_sym_cell_path_repeat1, - STATE(4917), 1, - sym_cell_path, - STATE(4942), 1, + STATE(4820), 1, sym_path, - ACTIONS(2092), 11, + STATE(5068), 1, + sym_cell_path, + ACTIONS(1869), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -378277,74 +380085,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [167470] = 9, + [170457] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7629), 1, - anon_sym_EQ, - ACTIONS(7632), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(7635), 1, - anon_sym_COLON, - ACTIONS(7638), 1, - anon_sym_DASH2, - STATE(6696), 1, + ACTIONS(7499), 1, + anon_sym_and2, + ACTIONS(7501), 1, + anon_sym_xor2, + STATE(4409), 1, aux_sym_shebang_repeat1, - STATE(4498), 2, + STATE(4488), 1, sym_comment, - aux_sym_parameter_repeat1, - STATE(5154), 2, - sym_param_type, - sym_param_value, - ACTIONS(7627), 8, - sym_identifier, + ACTIONS(7641), 12, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [167507] = 8, + anon_sym_or2, + [170490] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1976), 1, - anon_sym_DASH2, - ACTIONS(7496), 1, - anon_sym_DOT, - STATE(4499), 1, - sym_comment, - STATE(4535), 1, - aux_sym_cell_path_repeat1, - STATE(4942), 1, - sym_path, - STATE(5163), 1, - sym_cell_path, - ACTIONS(1978), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(3929), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [167542] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7588), 1, + ACTIONS(7505), 1, anon_sym_and2, - ACTIONS(7595), 1, + ACTIONS(7507), 1, anon_sym_xor2, - ACTIONS(7642), 1, - anon_sym_or2, - STATE(4500), 1, + STATE(4410), 1, + aux_sym_shebang_repeat1, + STATE(4489), 1, sym_comment, - ACTIONS(7640), 13, - sym__newline, + ACTIONS(7641), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378356,20 +380136,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [167573] = 6, + anon_sym_or2, + [170523] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7590), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(7505), 1, anon_sym_and2, - ACTIONS(7597), 1, + ACTIONS(7507), 1, anon_sym_xor2, - ACTIONS(7644), 1, - anon_sym_or2, - STATE(4501), 1, + STATE(4434), 1, + aux_sym_shebang_repeat1, + STATE(4490), 1, sym_comment, - ACTIONS(7640), 13, - sym__newline, + ACTIONS(7620), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378381,13 +380162,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [167604] = 3, - ACTIONS(247), 1, + anon_sym_or2, + [170556] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4502), 1, + STATE(4491), 1, sym_comment, - ACTIONS(6989), 16, + ACTIONS(1767), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1765), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378401,46 +380185,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [167629] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7646), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7648), 1, - aux_sym__immediate_decimal_token2, - STATE(4503), 1, - sym_comment, - ACTIONS(1739), 3, - sym_identifier, - anon_sym_DASH2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1741), 11, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [167660] = 6, + aux_sym_unquoted_token2, + [170583] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7506), 1, - anon_sym_and2, - ACTIONS(7508), 1, - anon_sym_xor2, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(4504), 1, + STATE(4492), 1, sym_comment, - ACTIONS(7580), 13, + ACTIONS(7632), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378453,14 +380206,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [167691] = 3, + [170610] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4505), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4493), 1, sym_comment, - ACTIONS(7582), 15, - ts_builtin_sym_end, + ACTIONS(7632), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378472,21 +380228,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [167715] = 6, - ACTIONS(3), 1, + [170637] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7652), 1, - sym__space, - ACTIONS(7654), 1, - aux_sym_record_entry_token1, - STATE(4506), 1, + ACTIONS(7513), 1, + anon_sym_and2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4494), 1, sym_comment, - STATE(4557), 1, - aux_sym_command_repeat1, - ACTIONS(7650), 12, + ACTIONS(7632), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378498,38 +380253,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [167745] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7658), 1, - anon_sym_DASH2, - ACTIONS(7660), 1, - anon_sym_DOT_DOT2, - STATE(4507), 1, - sym_comment, - ACTIONS(7662), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7656), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [167775] = 3, + anon_sym_xor2, + anon_sym_or2, + [170666] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(4508), 1, + ACTIONS(7519), 1, + anon_sym_and2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4495), 1, sym_comment, - ACTIONS(7316), 15, - ts_builtin_sym_end, + ACTIONS(7632), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378541,16 +380277,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, + anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [167799] = 3, + [170695] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4509), 1, + ACTIONS(7513), 1, + anon_sym_and2, + ACTIONS(7515), 1, + anon_sym_xor2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4496), 1, sym_comment, - ACTIONS(7379), 15, - ts_builtin_sym_end, + ACTIONS(7632), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378562,38 +380303,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, + anon_sym_RPAREN, anon_sym_or2, - [167823] = 4, + [170726] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4510), 1, + ACTIONS(7519), 1, + anon_sym_and2, + ACTIONS(7521), 1, + anon_sym_xor2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4497), 1, sym_comment, - ACTIONS(1735), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1737), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(7632), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [167849] = 3, + anon_sym_or2, + [170757] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4511), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4498), 1, sym_comment, - ACTIONS(7316), 15, - ts_builtin_sym_end, + ACTIONS(7636), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378605,16 +380349,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [167873] = 3, + [170784] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4512), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4499), 1, sym_comment, - ACTIONS(7379), 15, - ts_builtin_sym_end, + ACTIONS(7636), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378626,22 +380372,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [167897] = 6, - ACTIONS(3), 1, + [170811] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(4513), 1, + ACTIONS(4956), 1, + aux_sym_unquoted_token2, + STATE(4500), 1, sym_comment, - STATE(7418), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7606), 2, + ACTIONS(1719), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(7604), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378653,44 +380396,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [167927] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [170838] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4514), 1, - sym_comment, - ACTIONS(2125), 2, + ACTIONS(998), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(2127), 13, + STATE(4501), 1, + sym_comment, + ACTIONS(1000), 15, anon_sym_EQ, sym_identifier, sym__newline, - anon_sym_PIPE, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_GT2, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [167953] = 7, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT, + [170865] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7664), 1, - sym__newline, - STATE(772), 1, - aux_sym__pipe_separator, - STATE(4515), 1, - sym_comment, - STATE(5172), 1, + STATE(4411), 1, aux_sym_shebang_repeat1, - ACTIONS(7667), 3, + STATE(4502), 1, + sym_comment, + ACTIONS(7641), 15, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2538), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -378700,16 +380441,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [167985] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [170892] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2341), 1, - sym__space, - ACTIONS(7669), 1, - anon_sym_LBRACK2, - STATE(4516), 1, + STATE(4412), 1, + aux_sym_shebang_repeat1, + STATE(4503), 1, sym_comment, - ACTIONS(2337), 13, + ACTIONS(7641), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378722,17 +380465,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [168013] = 4, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [170919] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4517), 1, + ACTIONS(7513), 1, + anon_sym_and2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4504), 1, sym_comment, - ACTIONS(996), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT, - ACTIONS(994), 12, + ACTIONS(7636), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378744,20 +380489,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - [168039] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [170948] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7671), 1, - sym_long_flag_identifier, - ACTIONS(7673), 1, - anon_sym_EQ2, - STATE(4518), 1, + ACTIONS(7519), 1, + anon_sym_and2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4505), 1, sym_comment, - ACTIONS(4936), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4938), 11, + ACTIONS(7636), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378769,20 +380513,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [168069] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [170977] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7675), 1, - anon_sym_EQ2, - ACTIONS(7677), 1, - sym_short_flag_identifier, - STATE(4519), 1, - sym_comment, - ACTIONS(4956), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4958), 11, + ACTIONS(7499), 1, + anon_sym_and2, + ACTIONS(7643), 1, sym__newline, + STATE(4413), 1, + aux_sym_shebang_repeat1, + STATE(4506), 1, + sym_comment, + ACTIONS(7641), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378793,14 +380538,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [168099] = 3, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [171008] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4520), 1, - sym_comment, - ACTIONS(7582), 15, - ts_builtin_sym_end, + ACTIONS(7505), 1, + anon_sym_and2, + ACTIONS(7643), 1, sym__newline, + STATE(4414), 1, + aux_sym_shebang_repeat1, + STATE(4507), 1, + sym_comment, + ACTIONS(7641), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378811,89 +380563,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, + anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [168123] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7679), 1, - sym_identifier, - ACTIONS(7681), 1, - sym__newline, - ACTIONS(7683), 1, - anon_sym_RBRACK, - ACTIONS(7685), 1, - anon_sym_DOLLAR, - ACTIONS(7687), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7689), 1, - anon_sym_DASH_DASH, - ACTIONS(7691), 1, - anon_sym_DASH2, - STATE(4096), 1, - sym_param_long_flag, - STATE(4235), 1, - sym__param_name, - STATE(4521), 1, - sym_comment, - STATE(4532), 1, - aux_sym_shebang_repeat1, - STATE(4821), 1, - aux_sym_parameter_parens_repeat1, - STATE(5099), 1, - sym_param_rest, - STATE(5100), 1, - sym_param_opt, - STATE(5139), 1, - sym_param_short_flag, - STATE(5567), 1, - sym_parameter, - [168175] = 17, + [171039] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7679), 1, - sym_identifier, - ACTIONS(7681), 1, - sym__newline, - ACTIONS(7685), 1, - anon_sym_DOLLAR, - ACTIONS(7687), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7689), 1, - anon_sym_DASH_DASH, - ACTIONS(7691), 1, - anon_sym_DASH2, - ACTIONS(7693), 1, - anon_sym_RPAREN, - STATE(4096), 1, - sym_param_long_flag, - STATE(4235), 1, - sym__param_name, - STATE(4522), 1, - sym_comment, - STATE(4533), 1, + ACTIONS(7513), 1, + anon_sym_and2, + ACTIONS(7515), 1, + anon_sym_xor2, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(4823), 1, - aux_sym_parameter_parens_repeat1, - STATE(5099), 1, - sym_param_rest, - STATE(5100), 1, - sym_param_opt, - STATE(5139), 1, - sym_param_short_flag, - STATE(5567), 1, - sym_parameter, - [168227] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4523), 1, + STATE(4508), 1, sym_comment, - ACTIONS(1000), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT, - ACTIONS(998), 12, + ACTIONS(7636), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378905,14 +380589,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - [168253] = 3, + anon_sym_RPAREN, + anon_sym_or2, + [171070] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4524), 1, + ACTIONS(7519), 1, + anon_sym_and2, + ACTIONS(7521), 1, + anon_sym_xor2, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4509), 1, sym_comment, - ACTIONS(7316), 15, - ts_builtin_sym_end, + ACTIONS(7636), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378924,19 +380614,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, + anon_sym_RPAREN, anon_sym_or2, - [168277] = 4, - ACTIONS(3), 1, + [171101] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4525), 1, - sym_comment, - ACTIONS(1004), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT, - ACTIONS(1002), 12, + STATE(4443), 1, + aux_sym_shebang_repeat1, + STATE(4510), 1, + sym_comment, + ACTIONS(7620), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378948,17 +380635,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - [168303] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [171128] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4526), 1, + STATE(4444), 1, + aux_sym_shebang_repeat1, + STATE(4511), 1, sym_comment, - ACTIONS(992), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT, - ACTIONS(990), 12, + ACTIONS(7620), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378970,18 +380658,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - [168329] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [171155] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7697), 1, - sym__space, - STATE(4527), 1, - sym_comment, - STATE(4582), 1, - aux_sym_command_repeat1, - ACTIONS(7695), 13, + ACTIONS(7499), 1, + anon_sym_and2, + ACTIONS(7638), 1, sym__newline, + STATE(4449), 1, + aux_sym_shebang_repeat1, + STATE(4512), 1, + sym_comment, + ACTIONS(7620), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378993,17 +380685,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [168357] = 4, + anon_sym_xor2, + anon_sym_or2, + [171186] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7699), 1, + ACTIONS(7505), 1, anon_sym_and2, - STATE(4528), 1, - sym_comment, - ACTIONS(7582), 14, - ts_builtin_sym_end, + ACTIONS(7638), 1, sym__newline, + STATE(4450), 1, + aux_sym_shebang_repeat1, + STATE(4513), 1, + sym_comment, + ACTIONS(7620), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379014,67 +380709,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [168383] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7701), 1, - anon_sym_DOT, - ACTIONS(7703), 1, - aux_sym__immediate_decimal_token2, - STATE(4529), 1, - sym_comment, - ACTIONS(1607), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1609), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [168413] = 6, - ACTIONS(247), 1, + [171217] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7705), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7707), 1, - aux_sym__immediate_decimal_token2, - STATE(4530), 1, - sym_comment, - ACTIONS(1621), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, + ACTIONS(1661), 1, aux_sym_unquoted_token2, - ACTIONS(1623), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [168443] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7709), 1, - anon_sym_and2, - ACTIONS(7711), 1, - anon_sym_xor2, - STATE(4531), 1, + ACTIONS(2260), 1, + anon_sym_LPAREN2, + ACTIONS(2262), 1, + sym__space, + STATE(4514), 1, sym_comment, - ACTIONS(7582), 13, - ts_builtin_sym_end, + ACTIONS(2258), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379086,86 +380735,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or2, - [168471] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7679), 1, - sym_identifier, - ACTIONS(7681), 1, - sym__newline, - ACTIONS(7685), 1, - anon_sym_DOLLAR, - ACTIONS(7687), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7689), 1, - anon_sym_DASH_DASH, - ACTIONS(7691), 1, - anon_sym_DASH2, - ACTIONS(7713), 1, - anon_sym_RBRACK, - STATE(4096), 1, - sym_param_long_flag, - STATE(4235), 1, - sym__param_name, - STATE(4532), 1, - sym_comment, - STATE(4802), 1, - aux_sym_parameter_parens_repeat1, - STATE(5099), 1, - sym_param_rest, - STATE(5100), 1, - sym_param_opt, - STATE(5139), 1, - sym_param_short_flag, - STATE(5271), 1, - aux_sym_shebang_repeat1, - STATE(5567), 1, - sym_parameter, - [168523] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7679), 1, - sym_identifier, - ACTIONS(7681), 1, - sym__newline, - ACTIONS(7685), 1, - anon_sym_DOLLAR, - ACTIONS(7687), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7689), 1, - anon_sym_DASH_DASH, - ACTIONS(7691), 1, - anon_sym_DASH2, - ACTIONS(7715), 1, anon_sym_RPAREN, - STATE(4096), 1, - sym_param_long_flag, - STATE(4235), 1, - sym__param_name, - STATE(4533), 1, - sym_comment, - STATE(4806), 1, - aux_sym_parameter_parens_repeat1, - STATE(5099), 1, - sym_param_rest, - STATE(5100), 1, - sym_param_opt, - STATE(5139), 1, - sym_param_short_flag, - STATE(5271), 1, - aux_sym_shebang_repeat1, - STATE(5567), 1, - sym_parameter, - [168575] = 4, + anon_sym_RBRACE, + [171248] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4534), 1, + ACTIONS(7385), 1, + anon_sym_DOT, + STATE(4323), 1, + aux_sym_cell_path_repeat1, + STATE(4515), 1, sym_comment, - ACTIONS(1012), 2, + STATE(4780), 1, + sym_path, + ACTIONS(969), 2, + ts_builtin_sym_end, sym__space, - anon_sym_DOT, - ACTIONS(1010), 13, + ACTIONS(967), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379177,22 +380763,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [168601] = 7, + [171281] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(967), 1, + ACTIONS(1847), 1, anon_sym_DASH2, - ACTIONS(7496), 1, + ACTIONS(7529), 1, anon_sym_DOT, - STATE(4535), 1, + STATE(4516), 1, sym_comment, - STATE(4545), 1, + STATE(4552), 1, aux_sym_cell_path_repeat1, - STATE(4942), 1, + STATE(4820), 1, sym_path, - ACTIONS(969), 11, + STATE(5074), 1, + sym_cell_path, + ACTIONS(1851), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -379204,18 +380790,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [168633] = 5, + [171316] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7699), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(7499), 1, anon_sym_and2, - ACTIONS(7717), 1, + ACTIONS(7501), 1, anon_sym_xor2, - STATE(4536), 1, + STATE(4455), 1, + aux_sym_shebang_repeat1, + STATE(4517), 1, sym_comment, - ACTIONS(7582), 13, - ts_builtin_sym_end, - sym__newline, + ACTIONS(7620), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379226,17 +380814,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_or2, - [168661] = 4, - ACTIONS(3), 1, + [171349] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4537), 1, - sym_comment, - ACTIONS(1016), 2, - sym__space, - anon_sym_DOT, - ACTIONS(1014), 13, + ACTIONS(3929), 1, sym__newline, + ACTIONS(7499), 1, + anon_sym_and2, + ACTIONS(7501), 1, + anon_sym_xor2, + STATE(4417), 1, + aux_sym_shebang_repeat1, + STATE(4518), 1, + sym_comment, + ACTIONS(7641), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379248,14 +380841,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [168687] = 3, + anon_sym_or2, + [171382] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(4538), 1, - sym_comment, - ACTIONS(5152), 15, + ACTIONS(3929), 1, sym__newline, + ACTIONS(7505), 1, + anon_sym_and2, + ACTIONS(7507), 1, + anon_sym_xor2, + STATE(4418), 1, + aux_sym_shebang_repeat1, + STATE(4519), 1, + sym_comment, + ACTIONS(7641), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379267,40 +380867,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_catch, - [168711] = 3, + anon_sym_or2, + [171415] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(4539), 1, - sym_comment, - ACTIONS(7582), 15, - ts_builtin_sym_end, + ACTIONS(3929), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(7505), 1, anon_sym_and2, + ACTIONS(7507), 1, anon_sym_xor2, - anon_sym_or2, - [168735] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4540), 1, + STATE(4456), 1, + aux_sym_shebang_repeat1, + STATE(4520), 1, sym_comment, - ACTIONS(1008), 2, - sym__space, - anon_sym_DOT, - ACTIONS(1006), 13, - sym__newline, + ACTIONS(7620), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379312,16 +380893,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [168761] = 4, + anon_sym_or2, + [171448] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7709), 1, - anon_sym_and2, - STATE(4541), 1, + STATE(4425), 1, + aux_sym_shebang_repeat1, + STATE(4521), 1, sym_comment, - ACTIONS(7582), 14, - ts_builtin_sym_end, + ACTIONS(7620), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379333,21 +380913,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [168787] = 6, - ACTIONS(3), 1, + [171475] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym_unquoted_token2, - ACTIONS(1868), 1, - anon_sym_LPAREN2, - STATE(4542), 1, + ACTIONS(7646), 1, + aux_sym__immediate_decimal_token2, + STATE(4522), 1, + sym_comment, + ACTIONS(1573), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1575), 12, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_DOT, + [171503] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4523), 1, sym_comment, - ACTIONS(1874), 2, + ACTIONS(7535), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1866), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379359,12 +380958,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [168817] = 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [171527] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4543), 1, + STATE(4524), 1, sym_comment, - ACTIONS(7719), 15, + ACTIONS(7309), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379376,58 +380979,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_catch, - [168841] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7679), 1, - sym_identifier, - ACTIONS(7681), 1, - sym__newline, - ACTIONS(7685), 1, - anon_sym_DOLLAR, - ACTIONS(7687), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7689), 1, - anon_sym_DASH_DASH, - ACTIONS(7691), 1, - anon_sym_DASH2, - ACTIONS(7721), 1, - anon_sym_PIPE, - STATE(4096), 1, - sym_param_long_flag, - STATE(4235), 1, - sym__param_name, - STATE(4544), 1, - sym_comment, - STATE(4989), 1, - aux_sym_parameter_parens_repeat1, - STATE(5099), 1, - sym_param_rest, - STATE(5100), 1, - sym_param_opt, - STATE(5139), 1, - sym_param_short_flag, - STATE(5271), 1, - aux_sym_shebang_repeat1, - STATE(5567), 1, - sym_parameter, - [168893] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [171551] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(971), 1, + ACTIONS(2146), 1, anon_sym_DASH2, - ACTIONS(7723), 1, - anon_sym_DOT, - STATE(4942), 1, - sym_path, - STATE(4545), 2, + ACTIONS(7648), 1, + anon_sym_DOT_DOT2, + STATE(4525), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(973), 11, + ACTIONS(7650), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2152), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -379439,16 +381006,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [168923] = 4, + [171581] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4546), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(4526), 1, sym_comment, - ACTIONS(2250), 3, + STATE(8105), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4932), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(2248), 12, + ACTIONS(4934), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379460,16 +381030,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token4, - [168949] = 4, + [171611] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4547), 1, - sym_comment, - ACTIONS(5086), 2, + ACTIONS(2326), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(5088), 13, + ACTIONS(7652), 1, + anon_sym_LBRACK2, + STATE(4527), 1, + sym_comment, + ACTIONS(2322), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379483,15 +381053,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [168975] = 4, + [171639] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4548), 1, + STATE(4528), 1, sym_comment, - ACTIONS(5020), 2, + ACTIONS(992), 3, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(5022), 13, + anon_sym_DOT, + ACTIONS(990), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379503,14 +381074,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [169001] = 3, + anon_sym_QMARK2, + [171665] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(4549), 1, + ACTIONS(7654), 1, + anon_sym_and2, + ACTIONS(7656), 1, + anon_sym_xor2, + STATE(4529), 1, sym_comment, - ACTIONS(7379), 15, + ACTIONS(7535), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -379523,18 +381097,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [169025] = 4, - ACTIONS(247), 1, + [171693] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7709), 1, - anon_sym_and2, - STATE(4550), 1, + ACTIONS(7658), 1, + sym_long_flag_identifier, + ACTIONS(7660), 1, + anon_sym_EQ2, + STATE(4530), 1, sym_comment, - ACTIONS(7582), 14, + ACTIONS(4968), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(4970), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379546,21 +381122,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor2, - anon_sym_or2, - [169051] = 6, + [171723] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2216), 1, - anon_sym_LPAREN2, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - STATE(4551), 1, - sym_comment, - ACTIONS(2218), 2, - ts_builtin_sym_end, + ACTIONS(7664), 1, sym__space, - ACTIONS(2214), 11, + STATE(4531), 2, + sym_comment, + aux_sym_command_repeat1, + ACTIONS(7662), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379572,19 +381142,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [169081] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [171749] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7660), 1, - anon_sym_DOT_DOT2, - ACTIONS(7728), 1, - anon_sym_DASH2, - STATE(4552), 1, + STATE(4532), 1, sym_comment, - ACTIONS(7662), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7726), 11, + ACTIONS(2052), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(2054), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -379596,101 +381164,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [169111] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1721), 1, - sym__space, - ACTIONS(7157), 1, - aux_sym_unquoted_token2, - STATE(4553), 1, - sym_comment, - ACTIONS(1709), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [169139] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1880), 1, - anon_sym_LPAREN2, - ACTIONS(1888), 1, - aux_sym_unquoted_token2, - STATE(4554), 1, - sym_comment, - ACTIONS(2189), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2187), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [169169] = 17, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [171775] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7679), 1, + ACTIONS(7667), 1, sym_identifier, - ACTIONS(7681), 1, + ACTIONS(7669), 1, sym__newline, - ACTIONS(7685), 1, + ACTIONS(7671), 1, + anon_sym_RBRACK, + ACTIONS(7673), 1, anon_sym_DOLLAR, - ACTIONS(7687), 1, + ACTIONS(7675), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7689), 1, + ACTIONS(7677), 1, anon_sym_DASH_DASH, - ACTIONS(7691), 1, + ACTIONS(7679), 1, anon_sym_DASH2, - ACTIONS(7730), 1, - anon_sym_RBRACK, - STATE(4096), 1, + STATE(4134), 1, sym_param_long_flag, - STATE(4235), 1, + STATE(4234), 1, sym__param_name, - STATE(4555), 1, + STATE(4533), 1, sym_comment, - STATE(4569), 1, - aux_sym_shebang_repeat1, - STATE(4877), 1, + STATE(4878), 1, aux_sym_parameter_parens_repeat1, - STATE(5099), 1, + STATE(5010), 1, sym_param_rest, - STATE(5100), 1, + STATE(5134), 1, sym_param_opt, - STATE(5139), 1, + STATE(5174), 1, sym_param_short_flag, - STATE(5567), 1, + STATE(5344), 1, + aux_sym_shebang_repeat1, + STATE(5550), 1, sym_parameter, - [169221] = 6, + [171827] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, - anon_sym_LPAREN2, - ACTIONS(1888), 1, - aux_sym_unquoted_token2, - STATE(4556), 1, + STATE(4534), 1, sym_comment, - ACTIONS(1886), 2, + ACTIONS(1767), 3, ts_builtin_sym_end, sym__space, - ACTIONS(1878), 11, + anon_sym_LPAREN2, + ACTIONS(1765), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379702,16 +381222,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [169251] = 5, + aux_sym_unquoted_token2, + [171853] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7697), 1, - sym__space, - STATE(4557), 1, + ACTIONS(7268), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7681), 1, + anon_sym_DOT, + STATE(4535), 1, sym_comment, - STATE(4582), 1, - aux_sym_command_repeat1, - ACTIONS(7732), 13, + ACTIONS(1767), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1765), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379723,21 +381247,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [169279] = 6, + [171883] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(4558), 1, + ACTIONS(7683), 1, + anon_sym_EQ2, + ACTIONS(7685), 1, + sym_short_flag_identifier, + STATE(4536), 1, sym_comment, - STATE(7999), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4975), 2, + ACTIONS(4974), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4977), 11, + ACTIONS(4976), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379749,54 +381271,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [169309] = 17, + [171913] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7679), 1, + ACTIONS(7689), 1, + anon_sym_DASH2, + ACTIONS(7691), 1, + anon_sym_DOT_DOT2, + STATE(4537), 1, + sym_comment, + ACTIONS(7693), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7687), 11, + anon_sym_EQ, sym_identifier, - ACTIONS(7681), 1, sym__newline, - ACTIONS(7685), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7687), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7689), 1, anon_sym_DASH_DASH, - ACTIONS(7691), 1, - anon_sym_DASH2, - ACTIONS(7734), 1, - anon_sym_RPAREN, - STATE(4096), 1, - sym_param_long_flag, - STATE(4235), 1, - sym__param_name, - STATE(4559), 1, - sym_comment, - STATE(4570), 1, - aux_sym_shebang_repeat1, - STATE(4878), 1, - aux_sym_parameter_parens_repeat1, - STATE(5099), 1, - sym_param_rest, - STATE(5100), 1, - sym_param_opt, - STATE(5139), 1, - sym_param_short_flag, - STATE(5567), 1, - sym_parameter, - [169361] = 6, + [171943] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2216), 1, - anon_sym_LPAREN2, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - STATE(4560), 1, + STATE(4538), 1, sym_comment, - ACTIONS(2224), 2, + ACTIONS(996), 3, ts_builtin_sym_end, sym__space, - ACTIONS(2222), 11, + anon_sym_DOT, + ACTIONS(994), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379808,19 +381316,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [169391] = 6, + anon_sym_QMARK2, + [171969] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2208), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - ACTIONS(2212), 1, - aux_sym_unquoted_token4, - STATE(4561), 1, + STATE(4539), 1, sym_comment, - ACTIONS(2210), 2, + STATE(8105), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4936), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2206), 11, + ACTIONS(4938), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379832,41 +381341,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [169421] = 6, + [171999] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7736), 1, - anon_sym_DOT, - ACTIONS(7739), 1, - aux_sym__immediate_decimal_token2, - STATE(4562), 1, + ACTIONS(7695), 1, + anon_sym_and2, + ACTIONS(7697), 1, + anon_sym_xor2, + STATE(4540), 1, sym_comment, - ACTIONS(1607), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(1609), 11, - anon_sym_in2, - anon_sym_QMARK2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [169451] = 5, + ACTIONS(7535), 13, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_or2, + [172027] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7739), 1, + ACTIONS(7646), 1, aux_sym__immediate_decimal_token2, - STATE(4563), 1, + ACTIONS(7699), 1, + anon_sym_DOT, + STATE(4541), 1, sym_comment, - ACTIONS(1607), 2, + ACTIONS(1573), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(1609), 12, + ACTIONS(1575), 11, anon_sym_in2, anon_sym_QMARK2, anon_sym_not_DASHin2, @@ -379878,43 +381388,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_DOT, - [169479] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7741), 1, - aux_sym__immediate_decimal_token2, - STATE(4564), 1, - sym_comment, - ACTIONS(1783), 3, - sym_identifier, - anon_sym_DASH2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1785), 11, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [169507] = 6, + [172057] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1030), 1, + ACTIONS(2157), 1, anon_sym_DASH2, - ACTIONS(7660), 1, + ACTIONS(7702), 1, anon_sym_DOT_DOT2, - STATE(4565), 1, + STATE(4542), 1, sym_comment, - ACTIONS(7662), 2, + ACTIONS(7704), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1032), 11, + ACTIONS(2163), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -379926,19 +381412,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [169537] = 6, + [172087] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(4566), 1, + STATE(4543), 1, sym_comment, - STATE(7999), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4979), 2, + ACTIONS(1000), 3, ts_builtin_sym_end, sym__space, - ACTIONS(4981), 11, + anon_sym_DOT, + ACTIONS(998), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379950,19 +381433,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [169567] = 6, + anon_sym_QMARK2, + [172113] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(1661), 1, + aux_sym_unquoted_token2, + ACTIONS(2260), 1, anon_sym_LPAREN2, - STATE(4567), 1, + STATE(4544), 1, sym_comment, - STATE(7999), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4983), 2, + ACTIONS(2262), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4985), 11, + ACTIONS(2258), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379974,19 +381458,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [169597] = 6, + [172143] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1579), 1, - aux_sym_unquoted_token2, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - STATE(4568), 1, + ACTIONS(7708), 1, + sym__space, + ACTIONS(7710), 1, + aux_sym_record_entry_token1, + STATE(4545), 1, sym_comment, - ACTIONS(2238), 2, - ts_builtin_sym_end, + STATE(4571), 1, + aux_sym_command_repeat1, + ACTIONS(7706), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, + [172173] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7712), 1, sym__space, - ACTIONS(2234), 11, + STATE(4546), 1, + sym_comment, + STATE(4571), 1, + aux_sym_command_repeat1, + ACTIONS(7706), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379998,120 +381503,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [169627] = 17, + anon_sym_RPAREN, + anon_sym_RBRACE, + [172201] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7679), 1, + ACTIONS(7591), 1, + aux_sym__immediate_decimal_token2, + STATE(4547), 1, + sym_comment, + ACTIONS(1765), 3, sym_identifier, - ACTIONS(7681), 1, + anon_sym_DASH2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1767), 11, + anon_sym_EQ, sym__newline, - ACTIONS(7685), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7687), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7689), 1, anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [172229] = 6, + ACTIONS(247), 1, + anon_sym_POUND, ACTIONS(7691), 1, + anon_sym_DOT_DOT2, + ACTIONS(7716), 1, anon_sym_DASH2, - ACTIONS(7743), 1, - anon_sym_RBRACK, - STATE(4096), 1, - sym_param_long_flag, - STATE(4235), 1, - sym__param_name, - STATE(4569), 1, + STATE(4548), 1, sym_comment, - STATE(4884), 1, - aux_sym_parameter_parens_repeat1, - STATE(5099), 1, - sym_param_rest, - STATE(5100), 1, - sym_param_opt, - STATE(5139), 1, - sym_param_short_flag, - STATE(5271), 1, - aux_sym_shebang_repeat1, - STATE(5567), 1, - sym_parameter, - [169679] = 17, + ACTIONS(7693), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7714), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [172259] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7679), 1, + ACTIONS(7667), 1, sym_identifier, - ACTIONS(7681), 1, + ACTIONS(7669), 1, sym__newline, - ACTIONS(7685), 1, + ACTIONS(7673), 1, anon_sym_DOLLAR, - ACTIONS(7687), 1, + ACTIONS(7675), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7689), 1, + ACTIONS(7677), 1, anon_sym_DASH_DASH, - ACTIONS(7691), 1, + ACTIONS(7679), 1, anon_sym_DASH2, - ACTIONS(7745), 1, + ACTIONS(7718), 1, anon_sym_RPAREN, - STATE(4096), 1, + STATE(4134), 1, sym_param_long_flag, - STATE(4235), 1, + STATE(4234), 1, sym__param_name, - STATE(4570), 1, + STATE(4549), 1, sym_comment, - STATE(4885), 1, + STATE(4880), 1, aux_sym_parameter_parens_repeat1, - STATE(5099), 1, + STATE(5010), 1, sym_param_rest, - STATE(5100), 1, + STATE(5134), 1, sym_param_opt, - STATE(5139), 1, + STATE(5174), 1, sym_param_short_flag, - STATE(5271), 1, + STATE(5344), 1, aux_sym_shebang_repeat1, - STATE(5567), 1, + STATE(5550), 1, sym_parameter, - [169731] = 17, + [172311] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7679), 1, + ACTIONS(7667), 1, sym_identifier, - ACTIONS(7681), 1, + ACTIONS(7669), 1, sym__newline, - ACTIONS(7685), 1, + ACTIONS(7673), 1, anon_sym_DOLLAR, - ACTIONS(7687), 1, + ACTIONS(7675), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7689), 1, + ACTIONS(7677), 1, anon_sym_DASH_DASH, - ACTIONS(7691), 1, + ACTIONS(7679), 1, anon_sym_DASH2, - ACTIONS(7747), 1, - anon_sym_PIPE, - STATE(4096), 1, + ACTIONS(7720), 1, + anon_sym_RBRACK, + STATE(4134), 1, sym_param_long_flag, - STATE(4235), 1, + STATE(4234), 1, sym__param_name, - STATE(4544), 1, - aux_sym_shebang_repeat1, - STATE(4571), 1, + STATE(4550), 1, sym_comment, - STATE(4803), 1, + STATE(4932), 1, aux_sym_parameter_parens_repeat1, - STATE(5099), 1, + STATE(5010), 1, sym_param_rest, - STATE(5100), 1, + STATE(5134), 1, sym_param_opt, - STATE(5139), 1, + STATE(5174), 1, sym_param_short_flag, - STATE(5567), 1, + STATE(5344), 1, + aux_sym_shebang_repeat1, + STATE(5550), 1, sym_parameter, - [169783] = 4, + [172363] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4572), 1, + STATE(4551), 1, sym_comment, - ACTIONS(1018), 2, + ACTIONS(2183), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1020), 13, + ACTIONS(2185), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -380125,41 +381644,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [169809] = 5, + [172389] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7749), 1, - aux_sym__immediate_decimal_token2, - STATE(4573), 1, - sym_comment, - ACTIONS(1673), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(1675), 12, - anon_sym_in2, - anon_sym_QMARK2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(967), 1, + anon_sym_DASH2, + ACTIONS(7529), 1, anon_sym_DOT, - [169837] = 6, + STATE(4552), 1, + sym_comment, + STATE(4564), 1, + aux_sym_cell_path_repeat1, + STATE(4820), 1, + sym_path, + ACTIONS(969), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [172421] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7709), 1, - anon_sym_and2, - ACTIONS(7711), 1, - anon_sym_xor2, - ACTIONS(7751), 1, - anon_sym_or2, - STATE(4574), 1, + STATE(4553), 1, sym_comment, - ACTIONS(7640), 12, + ACTIONS(7535), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -380172,14 +381687,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [169867] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [172445] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7699), 1, + ACTIONS(7654), 1, anon_sym_and2, - STATE(4575), 1, + STATE(4554), 1, sym_comment, - ACTIONS(7582), 14, + ACTIONS(7535), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -380194,19 +381712,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_xor2, anon_sym_or2, - [169893] = 6, + [172471] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7722), 1, + anon_sym_QMARK2, + STATE(4555), 1, + sym_comment, + ACTIONS(980), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(978), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [172499] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2167), 1, + ACTIONS(7667), 1, + sym_identifier, + ACTIONS(7669), 1, + sym__newline, + ACTIONS(7673), 1, + anon_sym_DOLLAR, + ACTIONS(7675), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7677), 1, + anon_sym_DASH_DASH, + ACTIONS(7679), 1, anon_sym_DASH2, - ACTIONS(7753), 1, + ACTIONS(7724), 1, + anon_sym_RPAREN, + STATE(4134), 1, + sym_param_long_flag, + STATE(4234), 1, + sym__param_name, + STATE(4556), 1, + sym_comment, + STATE(4797), 1, + aux_sym_parameter_parens_repeat1, + STATE(5010), 1, + sym_param_rest, + STATE(5134), 1, + sym_param_opt, + STATE(5174), 1, + sym_param_short_flag, + STATE(5344), 1, + aux_sym_shebang_repeat1, + STATE(5550), 1, + sym_parameter, + [172551] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(4557), 1, + sym_comment, + STATE(8105), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4920), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4922), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [172581] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7691), 1, anon_sym_DOT_DOT2, - STATE(4576), 1, + ACTIONS(7728), 1, + anon_sym_DASH2, + STATE(4558), 1, sym_comment, - ACTIONS(7755), 2, + ACTIONS(7693), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2173), 11, + ACTIONS(7726), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -380218,43 +381818,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [169923] = 6, - ACTIONS(247), 1, + [172611] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2175), 1, - anon_sym_DASH2, - ACTIONS(7757), 1, - anon_sym_DOT_DOT2, - STATE(4577), 1, + STATE(4559), 1, sym_comment, - ACTIONS(7759), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2181), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5052), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(5054), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [172637] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4560), 1, + sym_comment, + ACTIONS(1787), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1785), 12, sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_unquoted_token2, + [172663] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7708), 1, + sym__space, + ACTIONS(7730), 1, + aux_sym_record_entry_token1, + STATE(4561), 1, + sym_comment, + STATE(4571), 1, + aux_sym_command_repeat1, + ACTIONS(7706), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, + [172693] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7712), 1, + sym__space, + STATE(4562), 1, + sym_comment, + STATE(4613), 1, + aux_sym_command_repeat1, + ACTIONS(7732), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [172721] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(4563), 1, + sym_comment, + STATE(8105), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4926), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4928), 11, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [169953] = 6, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [172751] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2133), 1, + ACTIONS(971), 1, anon_sym_DASH2, - ACTIONS(7761), 1, - anon_sym_DOT_DOT2, - STATE(4578), 1, + ACTIONS(7734), 1, + anon_sym_DOT, + STATE(4820), 1, + sym_path, + STATE(4564), 2, sym_comment, - ACTIONS(7763), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2139), 11, + aux_sym_cell_path_repeat1, + ACTIONS(973), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -380266,18 +381957,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [169983] = 6, + [172781] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7699), 1, - anon_sym_and2, - ACTIONS(7717), 1, - anon_sym_xor2, - ACTIONS(7765), 1, - anon_sym_or2, - STATE(4579), 1, + STATE(4565), 1, sym_comment, - ACTIONS(7640), 12, + ACTIONS(7361), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -380290,13 +381975,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [170013] = 3, - ACTIONS(247), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [172805] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4580), 1, + STATE(4566), 1, sym_comment, - ACTIONS(6989), 15, - ts_builtin_sym_end, + ACTIONS(1008), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1006), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380308,22 +381998,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [170037] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [172831] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2202), 1, - anon_sym_LPAREN2, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(4581), 1, + STATE(4567), 1, sym_comment, - ACTIONS(1032), 2, + ACTIONS(1004), 3, ts_builtin_sym_end, sym__space, - ACTIONS(1030), 11, + anon_sym_DOT, + ACTIONS(1002), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380335,15 +382021,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [170067] = 4, - ACTIONS(3), 1, + anon_sym_QMARK2, + [172857] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7769), 1, - sym__space, - STATE(4582), 2, + ACTIONS(7695), 1, + anon_sym_and2, + STATE(4568), 1, sym_comment, - aux_sym_command_repeat1, - ACTIONS(7767), 13, + ACTIONS(7535), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380355,17 +382042,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [170093] = 4, + anon_sym_xor2, + anon_sym_or2, + [172883] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4583), 1, - sym_comment, - ACTIONS(2129), 2, + ACTIONS(1026), 1, anon_sym_DASH2, + ACTIONS(7691), 1, anon_sym_DOT_DOT2, - ACTIONS(2131), 13, + STATE(4569), 1, + sym_comment, + ACTIONS(7693), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1028), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -380377,20 +382068,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [170119] = 5, + [172913] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7772), 1, - anon_sym_QMARK2, - STATE(4584), 1, + ACTIONS(2274), 1, + anon_sym_LPAREN2, + ACTIONS(2278), 1, + aux_sym_unquoted_token2, + STATE(4570), 1, sym_comment, - ACTIONS(980), 3, + ACTIONS(2276), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT, - ACTIONS(978), 11, + ACTIONS(2272), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380402,19 +382092,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [170147] = 6, + [172943] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7283), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7774), 1, - anon_sym_DOT, - STATE(4585), 1, - sym_comment, - ACTIONS(1757), 2, - ts_builtin_sym_end, + ACTIONS(7712), 1, sym__space, - ACTIONS(1755), 11, + STATE(4531), 1, + aux_sym_command_repeat1, + STATE(4571), 1, + sym_comment, + ACTIONS(7737), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380426,18 +382113,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [170177] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [172971] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7776), 1, - anon_sym_QMARK2, - STATE(4586), 1, + ACTIONS(7739), 1, + sym__newline, + STATE(774), 1, + aux_sym__pipe_separator, + STATE(4572), 1, sym_comment, - ACTIONS(986), 3, + STATE(5246), 1, + aux_sym_shebang_repeat1, + ACTIONS(7742), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2528), 9, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [173003] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7695), 1, + anon_sym_and2, + ACTIONS(7697), 1, + anon_sym_xor2, + STATE(4573), 1, + sym_comment, + ACTIONS(7535), 13, ts_builtin_sym_end, - sym__space, - anon_sym_DOT, - ACTIONS(984), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380449,19 +382162,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [170205] = 6, - ACTIONS(3), 1, + anon_sym_or2, + [173031] = 17, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2254), 1, - anon_sym_LPAREN2, - ACTIONS(2258), 1, - aux_sym_unquoted_token2, - STATE(4587), 1, + ACTIONS(7667), 1, + sym_identifier, + ACTIONS(7669), 1, + sym__newline, + ACTIONS(7673), 1, + anon_sym_DOLLAR, + ACTIONS(7675), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7677), 1, + anon_sym_DASH_DASH, + ACTIONS(7679), 1, + anon_sym_DASH2, + ACTIONS(7744), 1, + anon_sym_RPAREN, + STATE(4134), 1, + sym_param_long_flag, + STATE(4234), 1, + sym__param_name, + STATE(4549), 1, + aux_sym_shebang_repeat1, + STATE(4574), 1, sym_comment, - ACTIONS(2256), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2252), 11, + STATE(4879), 1, + aux_sym_parameter_parens_repeat1, + STATE(5010), 1, + sym_param_rest, + STATE(5134), 1, + sym_param_opt, + STATE(5174), 1, + sym_param_short_flag, + STATE(5550), 1, + sym_parameter, + [173083] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4575), 1, + sym_comment, + ACTIONS(5128), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380473,16 +382215,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [170235] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_catch, + [173107] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4588), 1, + ACTIONS(7654), 1, + anon_sym_and2, + ACTIONS(7656), 1, + anon_sym_xor2, + ACTIONS(7746), 1, + anon_sym_or2, + STATE(4576), 1, sym_comment, - ACTIONS(1757), 3, + ACTIONS(7597), 12, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1755), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380494,40 +382243,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [170261] = 6, - ACTIONS(247), 1, + [173137] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2159), 1, - anon_sym_DASH2, - ACTIONS(7778), 1, - anon_sym_DOT_DOT2, - STATE(4589), 1, + STATE(4577), 1, sym_comment, - ACTIONS(7780), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2165), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5062), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(5064), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [170291] = 4, + anon_sym_RBRACE, + [173163] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4590), 1, + STATE(4578), 1, sym_comment, - ACTIONS(2183), 2, + ACTIONS(2118), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(2185), 13, + ACTIONS(2120), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -380541,18 +382287,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [170317] = 6, - ACTIONS(3), 1, + [173189] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7652), 1, - sym__space, - ACTIONS(7782), 1, - aux_sym_record_entry_token1, - STATE(4557), 1, - aux_sym_command_repeat1, - STATE(4591), 1, + ACTIONS(7695), 1, + anon_sym_and2, + ACTIONS(7697), 1, + anon_sym_xor2, + ACTIONS(7748), 1, + anon_sym_or2, + STATE(4579), 1, sym_comment, - ACTIONS(7650), 12, + ACTIONS(7597), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380564,17 +382311,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [170347] = 5, + [173219] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7697), 1, - sym__space, - STATE(4557), 1, - aux_sym_command_repeat1, - STATE(4592), 1, + ACTIONS(7750), 1, + anon_sym_QMARK2, + STATE(4580), 1, sym_comment, - ACTIONS(7650), 13, + ACTIONS(986), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(984), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380586,48 +382334,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [170375] = 6, + [173247] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7660), 1, - anon_sym_DOT_DOT2, - ACTIONS(7786), 1, - anon_sym_DASH2, - STATE(4593), 1, - sym_comment, - ACTIONS(7662), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7784), 11, - anon_sym_EQ, + ACTIONS(7667), 1, sym_identifier, + ACTIONS(7669), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7673), 1, anon_sym_DOLLAR, + ACTIONS(7675), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7677), 1, anon_sym_DASH_DASH, - [170405] = 7, + ACTIONS(7679), 1, + anon_sym_DASH2, + ACTIONS(7752), 1, + anon_sym_RPAREN, + STATE(4134), 1, + sym_param_long_flag, + STATE(4234), 1, + sym__param_name, + STATE(4556), 1, + aux_sym_shebang_repeat1, + STATE(4581), 1, + sym_comment, + STATE(5001), 1, + aux_sym_parameter_parens_repeat1, + STATE(5010), 1, + sym_param_rest, + STATE(5134), 1, + sym_param_opt, + STATE(5174), 1, + sym_param_short_flag, + STATE(5550), 1, + sym_parameter, + [173299] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7788), 1, - sym__newline, - STATE(772), 1, - aux_sym__pipe_separator, - STATE(4594), 1, + STATE(4582), 1, sym_comment, - STATE(5172), 1, - aux_sym_shebang_repeat1, - ACTIONS(7791), 3, + ACTIONS(6983), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2538), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -380637,16 +382387,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [170437] = 4, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [173323] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4595), 1, + STATE(4583), 1, sym_comment, - ACTIONS(1741), 3, + ACTIONS(7361), 15, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1739), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380658,17 +382408,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [170463] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [173347] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5051), 1, - sym__space, - ACTIONS(7793), 1, - anon_sym_EQ2, - STATE(4596), 1, + ACTIONS(1804), 1, + anon_sym_LPAREN2, + ACTIONS(1812), 1, + aux_sym_unquoted_token2, + STATE(4584), 1, sym_comment, - ACTIONS(5053), 13, + ACTIONS(2232), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2230), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380680,18 +382435,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [170491] = 5, + [173377] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5014), 1, + ACTIONS(4996), 1, sym__space, - ACTIONS(7795), 1, + ACTIONS(7754), 1, anon_sym_EQ2, - STATE(4597), 1, + STATE(4585), 1, sym_comment, - ACTIONS(5016), 13, + ACTIONS(4998), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380705,16 +382458,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [170519] = 4, + [173405] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4598), 1, - sym_comment, - ACTIONS(1785), 3, - ts_builtin_sym_end, + ACTIONS(5056), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1783), 12, + ACTIONS(7756), 1, + anon_sym_EQ2, + STATE(4586), 1, + sym_comment, + ACTIONS(5058), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380726,17 +382479,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [170545] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [173433] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7709), 1, - anon_sym_and2, - ACTIONS(7711), 1, - anon_sym_xor2, - STATE(4599), 1, + STATE(4587), 1, sym_comment, - ACTIONS(7582), 13, + ACTIONS(7535), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -380749,17 +382499,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [170573] = 5, + [173457] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7699), 1, - anon_sym_and2, - ACTIONS(7717), 1, - anon_sym_xor2, - STATE(4600), 1, + STATE(4588), 1, sym_comment, - ACTIONS(7582), 13, + ACTIONS(7361), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -380772,14 +382520,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [170601] = 3, - ACTIONS(247), 1, + [173481] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4601), 1, + STATE(4589), 1, sym_comment, - ACTIONS(7582), 15, + ACTIONS(1741), 3, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1739), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380791,19 +382544,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [170625] = 4, + aux_sym_unquoted_token2, + [173507] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7758), 1, + aux_sym__immediate_decimal_token2, + STATE(4590), 1, + sym_comment, + ACTIONS(1681), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1683), 12, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_DOT, + [173535] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4602), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(4591), 1, sym_comment, - ACTIONS(1892), 3, + STATE(7506), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7587), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1890), 12, + ACTIONS(7585), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380815,72 +382592,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [170651] = 5, + [173565] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7518), 1, - aux_sym__immediate_decimal_token2, - STATE(4603), 1, - sym_comment, - ACTIONS(1755), 3, + ACTIONS(7667), 1, sym_identifier, - anon_sym_DASH2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1757), 11, - anon_sym_EQ, + ACTIONS(7669), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7673), 1, anon_sym_DOLLAR, + ACTIONS(7675), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7677), 1, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [170679] = 14, + ACTIONS(7679), 1, + anon_sym_DASH2, + ACTIONS(7760), 1, + anon_sym_PIPE, + STATE(4134), 1, + sym_param_long_flag, + STATE(4234), 1, + sym__param_name, + STATE(4592), 1, + sym_comment, + STATE(4605), 1, + aux_sym_shebang_repeat1, + STATE(4810), 1, + aux_sym_parameter_parens_repeat1, + STATE(5010), 1, + sym_param_rest, + STATE(5134), 1, + sym_param_opt, + STATE(5174), 1, + sym_param_short_flag, + STATE(5550), 1, + sym_parameter, + [173617] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7797), 1, + ACTIONS(7667), 1, sym_identifier, - ACTIONS(7802), 1, + ACTIONS(7669), 1, + sym__newline, + ACTIONS(7673), 1, anon_sym_DOLLAR, - ACTIONS(7805), 1, + ACTIONS(7675), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7808), 1, + ACTIONS(7677), 1, anon_sym_DASH_DASH, - ACTIONS(7811), 1, + ACTIONS(7679), 1, anon_sym_DASH2, - STATE(4096), 1, + ACTIONS(7762), 1, + anon_sym_RBRACK, + STATE(4134), 1, sym_param_long_flag, - STATE(4235), 1, + STATE(4234), 1, sym__param_name, - STATE(5099), 1, + STATE(4550), 1, + aux_sym_shebang_repeat1, + STATE(4593), 1, + sym_comment, + STATE(4995), 1, + aux_sym_parameter_parens_repeat1, + STATE(5010), 1, sym_param_rest, - STATE(5100), 1, + STATE(5134), 1, sym_param_opt, - STATE(5139), 1, + STATE(5174), 1, sym_param_short_flag, - STATE(5567), 1, + STATE(5550), 1, sym_parameter, - STATE(4604), 2, - sym_comment, - aux_sym_parameter_parens_repeat1, - ACTIONS(7800), 3, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - [170725] = 5, + [173669] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7697), 1, - sym__space, - STATE(4527), 1, - aux_sym_command_repeat1, - STATE(4605), 1, + STATE(4594), 1, sym_comment, - ACTIONS(7814), 13, + ACTIONS(1012), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1010), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380894,19 +382684,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [170753] = 6, - ACTIONS(3), 1, + [173695] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(4606), 1, + STATE(4595), 1, sym_comment, - STATE(7999), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4971), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4973), 11, + ACTIONS(7764), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380918,14 +382701,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [170783] = 4, + anon_sym_RPAREN, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_catch, + [173719] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2405), 1, - sym__space, - STATE(4607), 1, + ACTIONS(2240), 1, + anon_sym_LPAREN2, + ACTIONS(2244), 1, + aux_sym_unquoted_token4, + STATE(4596), 1, sym_comment, - ACTIONS(2403), 13, + ACTIONS(2242), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2238), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380937,16 +382729,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [170808] = 4, + [173749] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2494), 1, - sym__space, - STATE(4608), 1, + STATE(4597), 1, sym_comment, - ACTIONS(2492), 13, + ACTIONS(1843), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1841), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380958,18 +382750,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [170833] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [173775] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2510), 1, - sym__space, - STATE(4609), 1, - sym_comment, - ACTIONS(2508), 13, + ACTIONS(7766), 1, sym__newline, + STATE(774), 1, + aux_sym__pipe_separator, + STATE(4598), 1, + sym_comment, + STATE(5246), 1, + aux_sym_shebang_repeat1, + ACTIONS(7769), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2528), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -380979,20 +382776,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [170858] = 6, - ACTIONS(3), 1, + [173807] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7816), 1, - ts_builtin_sym_end, - ACTIONS(7818), 1, - sym__space, - STATE(4610), 1, + STATE(4599), 1, sym_comment, - STATE(4755), 1, - aux_sym_command_repeat1, - ACTIONS(7695), 11, + ACTIONS(7535), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381004,14 +382794,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [170887] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [173831] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7771), 1, + anon_sym_DOT, + ACTIONS(7773), 1, + aux_sym__immediate_decimal_token2, + STATE(4600), 1, + sym_comment, + ACTIONS(1573), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1575), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [173861] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2369), 1, - sym__space, - STATE(4611), 1, + ACTIONS(2226), 1, + anon_sym_LPAREN2, + ACTIONS(2228), 1, + aux_sym_unquoted_token4, + STATE(4601), 1, sym_comment, - ACTIONS(2367), 13, + ACTIONS(1028), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1026), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381023,16 +382845,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [173891] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7775), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7777), 1, + aux_sym__immediate_decimal_token2, + STATE(4602), 1, + sym_comment, + ACTIONS(1585), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1587), 10, + sym__newline, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [170912] = 4, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [173921] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__space, - STATE(4612), 1, + STATE(4603), 1, sym_comment, - ACTIONS(1972), 13, + ACTIONS(1016), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1014), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381046,14 +382891,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [170937] = 4, + [173947] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5685), 1, - sym__space, - STATE(4613), 1, + ACTIONS(1804), 1, + anon_sym_LPAREN2, + ACTIONS(1812), 1, + aux_sym_unquoted_token2, + STATE(4604), 1, sym_comment, - ACTIONS(5683), 13, + ACTIONS(1810), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1802), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381065,20 +382915,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [170962] = 6, + [173977] = 17, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5149), 1, + ACTIONS(7667), 1, + sym_identifier, + ACTIONS(7669), 1, sym__newline, - ACTIONS(7820), 1, - anon_sym_catch, - STATE(1816), 1, + ACTIONS(7673), 1, + anon_sym_DOLLAR, + ACTIONS(7675), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7677), 1, + anon_sym_DASH_DASH, + ACTIONS(7679), 1, + anon_sym_DASH2, + ACTIONS(7779), 1, + anon_sym_PIPE, + STATE(4134), 1, + sym_param_long_flag, + STATE(4234), 1, + sym__param_name, + STATE(4605), 1, + sym_comment, + STATE(4850), 1, + aux_sym_parameter_parens_repeat1, + STATE(5010), 1, + sym_param_rest, + STATE(5134), 1, + sym_param_opt, + STATE(5174), 1, + sym_param_short_flag, + STATE(5344), 1, aux_sym_shebang_repeat1, - STATE(4614), 1, + STATE(5550), 1, + sym_parameter, + [174029] = 17, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7667), 1, + sym_identifier, + ACTIONS(7669), 1, + sym__newline, + ACTIONS(7673), 1, + anon_sym_DOLLAR, + ACTIONS(7675), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7677), 1, + anon_sym_DASH_DASH, + ACTIONS(7679), 1, + anon_sym_DASH2, + ACTIONS(7781), 1, + anon_sym_RBRACK, + STATE(4134), 1, + sym_param_long_flag, + STATE(4234), 1, + sym__param_name, + STATE(4533), 1, + aux_sym_shebang_repeat1, + STATE(4606), 1, sym_comment, - ACTIONS(1296), 11, + STATE(4875), 1, + aux_sym_parameter_parens_repeat1, + STATE(5010), 1, + sym_param_rest, + STATE(5134), 1, + sym_param_opt, + STATE(5174), 1, + sym_param_short_flag, + STATE(5550), 1, + sym_parameter, + [174081] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2122), 1, + anon_sym_DASH2, + ACTIONS(7783), 1, + anon_sym_DOT_DOT2, + STATE(4607), 1, + sym_comment, + ACTIONS(7785), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2128), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [174111] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7695), 1, + anon_sym_and2, + STATE(4608), 1, + sym_comment, + ACTIONS(7535), 14, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381089,15 +383029,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [170991] = 4, + anon_sym_xor2, + anon_sym_or2, + [174137] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1990), 1, - sym__space, - STATE(4615), 1, + STATE(4609), 1, sym_comment, - ACTIONS(1988), 13, + ACTIONS(2270), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2268), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381109,16 +383052,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [171016] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token4, + [174163] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1032), 1, - sym__space, - STATE(4616), 1, + STATE(4610), 1, sym_comment, - ACTIONS(1030), 13, + ACTIONS(7309), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381130,16 +383071,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [174187] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7787), 1, + aux_sym__immediate_decimal_token2, + STATE(4611), 1, + sym_comment, + ACTIONS(1785), 3, + sym_identifier, + anon_sym_DASH2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1787), 11, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [171041] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [174215] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2130), 1, + anon_sym_DASH2, + ACTIONS(7789), 1, + anon_sym_DOT_DOT2, + STATE(4612), 1, + sym_comment, + ACTIONS(7791), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2136), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [174245] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1994), 1, + ACTIONS(7712), 1, sym__space, - STATE(4617), 1, + STATE(4531), 1, + aux_sym_command_repeat1, + STATE(4613), 1, sym_comment, - ACTIONS(1992), 13, + ACTIONS(7793), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381153,13 +383144,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [171066] = 3, + [174273] = 14, ACTIONS(247), 1, anon_sym_POUND, - STATE(4618), 1, + ACTIONS(7795), 1, + sym_identifier, + ACTIONS(7800), 1, + anon_sym_DOLLAR, + ACTIONS(7803), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7806), 1, + anon_sym_DASH_DASH, + ACTIONS(7809), 1, + anon_sym_DASH2, + STATE(4134), 1, + sym_param_long_flag, + STATE(4234), 1, + sym__param_name, + STATE(5010), 1, + sym_param_rest, + STATE(5134), 1, + sym_param_opt, + STATE(5174), 1, + sym_param_short_flag, + STATE(5550), 1, + sym_parameter, + STATE(4614), 2, + sym_comment, + aux_sym_parameter_parens_repeat1, + ACTIONS(7798), 3, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + [174319] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1559), 1, + aux_sym_unquoted_token2, + ACTIONS(1822), 1, + anon_sym_LPAREN2, + STATE(4615), 1, sym_comment, - ACTIONS(5152), 14, + ACTIONS(1828), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1820), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381171,51 +383200,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_else, - anon_sym_catch, - [171089] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4055), 1, - anon_sym_DOLLAR, - ACTIONS(7823), 1, - sym__newline, - ACTIONS(7825), 1, - sym__space, - ACTIONS(7827), 1, - anon_sym_DASH_DASH, - ACTIONS(7829), 1, - anon_sym_DASH2, - ACTIONS(7831), 1, - anon_sym_LBRACE, - STATE(1792), 1, - sym_block, - STATE(1793), 1, - sym_val_closure, - STATE(4619), 1, - sym_comment, - STATE(5696), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7409), 1, - sym__flag, - STATE(781), 2, - sym__blosure, - sym_val_variable, - STATE(4685), 2, - sym_short_flag, - sym_long_flag, - [171134] = 6, + [174349] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7833), 1, - sym__newline, - ACTIONS(7838), 1, - anon_sym_else, - STATE(4620), 1, + ACTIONS(7654), 1, + anon_sym_and2, + ACTIONS(7656), 1, + anon_sym_xor2, + STATE(4616), 1, sym_comment, - STATE(4710), 1, - aux_sym_shebang_repeat1, - ACTIONS(7836), 11, + ACTIONS(7535), 13, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381226,15 +383222,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_or2, + [174377] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4617), 1, + sym_comment, + ACTIONS(1733), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1737), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [171163] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [174403] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2439), 1, + ACTIONS(1719), 1, sym__space, - STATE(4621), 1, + ACTIONS(7190), 1, + aux_sym_unquoted_token2, + STATE(4618), 1, sym_comment, - ACTIONS(2437), 13, + ACTIONS(1707), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381248,14 +383268,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [171188] = 4, + [174431] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2006), 1, - sym__space, - STATE(4622), 1, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + STATE(4619), 1, sym_comment, - ACTIONS(2004), 13, + ACTIONS(2250), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2246), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381267,16 +383292,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [171213] = 4, + [174461] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2458), 1, - sym__space, - STATE(4623), 1, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + STATE(4620), 1, sym_comment, - ACTIONS(2456), 13, + ACTIONS(2256), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2254), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381288,16 +383316,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [171238] = 4, - ACTIONS(3), 1, + [174491] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2462), 1, - sym__space, - STATE(4624), 1, + STATE(4621), 1, sym_comment, - ACTIONS(2460), 13, + ACTIONS(7309), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381309,16 +383334,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [174515] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4622), 1, + sym_comment, + ACTIONS(1044), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1046), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [171263] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [174541] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2070), 1, - sym__space, - STATE(4625), 1, + ACTIONS(7654), 1, + anon_sym_and2, + STATE(4623), 1, sym_comment, - ACTIONS(2068), 13, + ACTIONS(7535), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381330,38 +383379,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [171288] = 4, + anon_sym_xor2, + anon_sym_or2, + [174567] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1911), 1, - sym__space, - STATE(4626), 1, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + ACTIONS(2252), 1, + aux_sym__unquoted_in_list_token4, + STATE(4624), 1, sym_comment, - ACTIONS(1907), 13, + ACTIONS(2250), 5, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [171313] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + ACTIONS(2246), 7, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [174596] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2345), 1, - sym__space, - STATE(4627), 1, + STATE(4625), 1, sym_comment, - ACTIONS(2343), 13, + ACTIONS(1585), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1587), 12, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_DOT, + [174621] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7812), 1, sym__newline, + ACTIONS(7817), 1, + anon_sym_else, + STATE(4626), 1, + sym_comment, + STATE(4669), 1, + aux_sym_shebang_repeat1, + ACTIONS(7815), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381373,16 +383448,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [171338] = 4, + [174650] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1559), 1, + aux_sym_unquoted_token2, + ACTIONS(3593), 1, + anon_sym_DOLLAR, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(7819), 1, + anon_sym_DOT, + ACTIONS(7823), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7825), 1, + aux_sym__immediate_decimal_token5, + STATE(4627), 1, + sym_comment, + STATE(5648), 1, + sym__immediate_decimal, + ACTIONS(7821), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6018), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1557), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [174691] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2353), 1, - sym__space, STATE(4628), 1, sym_comment, - ACTIONS(2351), 13, + ACTIONS(5660), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381393,18 +383495,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_RBRACE, - [171363] = 4, - ACTIONS(3), 1, + aux_sym_record_entry_token1, + [174714] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1915), 1, - sym__space, + ACTIONS(7827), 1, + sym__newline, + STATE(771), 1, + aux_sym__pipe_separator, STATE(4629), 1, sym_comment, - ACTIONS(1913), 13, - sym__newline, + STATE(5246), 1, + aux_sym_shebang_repeat1, + ACTIONS(7830), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2528), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -381414,16 +383521,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [171388] = 4, + [174745] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2357), 1, + ACTIONS(2432), 1, sym__space, STATE(4630), 1, sym_comment, - ACTIONS(2355), 13, + ACTIONS(2430), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381437,15 +383542,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [171413] = 4, - ACTIONS(3), 1, + [174770] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2361), 1, - sym__space, + ACTIONS(7832), 1, + sym__newline, + ACTIONS(7837), 1, + anon_sym_catch, STATE(4631), 1, sym_comment, - ACTIONS(2359), 13, - sym__newline, + STATE(4674), 1, + aux_sym_shebang_repeat1, + ACTIONS(7835), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381457,16 +383565,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [171438] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1721), 1, - sym__space, + [174799] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7839), 1, + sym__newline, + ACTIONS(7844), 1, + anon_sym_catch, STATE(4632), 1, sym_comment, - ACTIONS(1709), 13, - sym__newline, + STATE(4675), 1, + aux_sym_shebang_repeat1, + ACTIONS(7842), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381478,17 +383588,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [171463] = 5, + [174828] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2337), 1, + ACTIONS(2272), 1, anon_sym_DASH2, - ACTIONS(7840), 1, - anon_sym_LBRACK2, + ACTIONS(2274), 1, + anon_sym_LPAREN2, + ACTIONS(2278), 1, + aux_sym__unquoted_in_list_token2, STATE(4633), 1, sym_comment, - ACTIONS(2341), 12, + ACTIONS(2276), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -381500,16 +383611,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [171490] = 4, - ACTIONS(3), 1, + [174857] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2365), 1, - sym__space, + ACTIONS(7846), 1, + sym__newline, + ACTIONS(7851), 1, + anon_sym_catch, + STATE(4631), 1, + aux_sym_shebang_repeat1, STATE(4634), 1, sym_comment, - ACTIONS(2363), 13, - sym__newline, + ACTIONS(7849), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381521,42 +383634,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [171515] = 6, - ACTIONS(3), 1, + [174886] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2208), 1, - anon_sym_LPAREN2, - ACTIONS(2212), 1, - aux_sym__unquoted_in_list_token4, + ACTIONS(7855), 1, + anon_sym_AT, + ACTIONS(7857), 1, + anon_sym_DASH2, STATE(4635), 1, sym_comment, - ACTIONS(2210), 5, + STATE(5122), 1, + sym_param_cmd, + ACTIONS(7853), 11, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2206), 7, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH2, - [171544] = 6, + [174915] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7842), 1, - sym__newline, - ACTIONS(7844), 1, + ACTIONS(7861), 1, sym__space, STATE(4636), 1, sym_comment, - STATE(4643), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(7846), 11, + ACTIONS(7859), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381568,18 +383677,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [171573] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + [174940] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7848), 1, - sym__newline, - ACTIONS(7853), 1, - anon_sym_catch, + ACTIONS(7445), 1, + sym__space, STATE(4637), 1, sym_comment, - STATE(4664), 1, - aux_sym_shebang_repeat1, - ACTIONS(7851), 11, + ACTIONS(7443), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381591,17 +383698,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [171602] = 5, + anon_sym_RBRACE, + [174965] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7218), 1, - aux_sym_unquoted_token2, + ACTIONS(7865), 1, + sym__space, STATE(4638), 1, sym_comment, - ACTIONS(1721), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1709), 11, + ACTIONS(7863), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381613,14 +383718,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [171629] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [174990] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2096), 1, - sym__space, STATE(4639), 1, sym_comment, - ACTIONS(2094), 13, + ACTIONS(5052), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(5054), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381632,39 +383741,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [171654] = 6, + [175015] = 6, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(7855), 1, - sym__newline, - ACTIONS(7860), 1, - anon_sym_catch, + anon_sym_AT, + ACTIONS(7857), 1, + anon_sym_DASH2, STATE(4640), 1, sym_comment, - STATE(4666), 1, - aux_sym_shebang_repeat1, - ACTIONS(7858), 11, - anon_sym_SEMI, + STATE(5142), 1, + sym_param_cmd, + ACTIONS(7853), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [171683] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [175044] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2108), 1, + ACTIONS(7869), 1, sym__space, STATE(4641), 1, sym_comment, - ACTIONS(2106), 13, + ACTIONS(7867), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381678,16 +383785,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [171708] = 4, + [175069] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7873), 1, + sym__space, STATE(4642), 1, sym_comment, - ACTIONS(5086), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(5088), 11, + ACTIONS(7871), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381699,18 +383804,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [171733] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [175094] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7842), 1, + ACTIONS(5125), 1, sym__newline, - ACTIONS(7844), 1, - sym__space, + ACTIONS(7875), 1, + anon_sym_else, + STATE(1761), 1, + aux_sym_shebang_repeat1, STATE(4643), 1, sym_comment, - STATE(4698), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(7862), 11, + ACTIONS(1296), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381722,21 +383829,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [171762] = 7, - ACTIONS(247), 1, + [175123] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7864), 1, - sym__newline, - STATE(774), 1, - aux_sym__pipe_separator, + ACTIONS(7880), 1, + sym__space, STATE(4644), 1, sym_comment, - STATE(5172), 1, - aux_sym_shebang_repeat1, - ACTIONS(7867), 2, + ACTIONS(7878), 13, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2538), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -381746,15 +383848,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [171793] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [175148] = 4, ACTIONS(247), 1, anon_sym_POUND, STATE(4645), 1, sym_comment, - ACTIONS(1783), 2, + ACTIONS(1765), 2, anon_sym_DASH2, aux_sym__unquoted_in_list_token2, - ACTIONS(1785), 12, + ACTIONS(1767), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -381767,14 +383871,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - [171818] = 4, + [175173] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2514), 1, + ACTIONS(7587), 1, sym__space, STATE(4646), 1, sym_comment, - ACTIONS(2512), 13, + ACTIONS(7585), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381788,18 +383892,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [171843] = 6, + [175198] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7818), 1, - sym__space, - ACTIONS(7869), 1, - ts_builtin_sym_end, STATE(4647), 1, sym_comment, - STATE(4755), 1, - aux_sym_command_repeat1, - ACTIONS(7732), 11, + ACTIONS(1012), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(1010), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381811,60 +383913,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [171872] = 6, + [175223] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7871), 1, - anon_sym_DOT, - ACTIONS(7873), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(7884), 1, + anon_sym_catch, STATE(4648), 1, sym_comment, - ACTIONS(1607), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1609), 9, - ts_builtin_sym_end, + ACTIONS(7882), 13, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [171901] = 6, - ACTIONS(247), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [175248] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5556), 1, - anon_sym_LPAREN2, - ACTIONS(7728), 1, - anon_sym_DASH2, + ACTIONS(7886), 1, + sym__newline, + ACTIONS(7888), 1, + sym__space, STATE(4649), 1, sym_comment, - STATE(7405), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7726), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(4682), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(7890), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [171930] = 4, + [175277] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7373), 1, - sym__space, + ACTIONS(7236), 1, + aux_sym_unquoted_token2, STATE(4650), 1, sym_comment, - ACTIONS(7371), 13, + ACTIONS(1719), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1707), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381876,23 +383979,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [171955] = 7, - ACTIONS(247), 1, + [175304] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7875), 1, - sym__newline, - STATE(774), 1, - aux_sym__pipe_separator, + ACTIONS(7892), 1, + ts_builtin_sym_end, + ACTIONS(7894), 1, + sym__space, STATE(4651), 1, sym_comment, - STATE(5172), 1, - aux_sym_shebang_repeat1, - ACTIONS(7878), 2, + STATE(4691), 1, + aux_sym_command_repeat1, + ACTIONS(7737), 11, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2538), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -381902,41 +384002,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [171986] = 6, + [175333] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2216), 1, - anon_sym_LPAREN2, - ACTIONS(2220), 1, - aux_sym__unquoted_in_list_token4, + ACTIONS(2163), 1, + sym__space, STATE(4652), 1, sym_comment, - ACTIONS(2218), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2214), 7, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [172015] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7880), 1, + ACTIONS(2157), 13, sym__newline, - ACTIONS(7885), 1, - anon_sym_else, - STATE(4653), 1, - sym_comment, - STATE(4745), 1, - aux_sym_shebang_repeat1, - ACTIONS(7883), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381948,14 +384022,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [172044] = 4, + anon_sym_RBRACE, + [175358] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2502), 1, + ACTIONS(7894), 1, sym__space, - STATE(4654), 1, + ACTIONS(7896), 1, + ts_builtin_sym_end, + STATE(4651), 1, + aux_sym_command_repeat1, + STATE(4653), 1, sym_comment, - ACTIONS(2500), 13, + ACTIONS(7706), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381967,20 +384046,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [172069] = 6, - ACTIONS(247), 1, + [175387] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7887), 1, - sym__newline, - ACTIONS(7892), 1, - anon_sym_else, - STATE(4655), 1, + STATE(4654), 1, sym_comment, - STATE(4704), 1, - aux_sym_shebang_repeat1, - ACTIONS(7890), 11, + ACTIONS(1016), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(1014), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381991,16 +384067,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [172098] = 4, + [175412] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, - sym__space, - STATE(4656), 1, + STATE(4655), 1, sym_comment, - ACTIONS(2395), 13, + ACTIONS(5656), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382011,12 +384085,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_RBRACE, - [172123] = 4, + aux_sym_record_entry_token1, + [175435] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4657), 1, + STATE(4656), 1, sym_comment, ACTIONS(1739), 2, anon_sym_DASH2, @@ -382034,15 +384108,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - [172148] = 4, + [175460] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2092), 1, + ACTIONS(7886), 1, + sym__newline, + ACTIONS(7888), 1, sym__space, - STATE(4658), 1, + STATE(4657), 1, sym_comment, - ACTIONS(2090), 13, - sym__newline, + STATE(4687), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(7898), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382054,15 +384131,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [172173] = 4, + [175489] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7896), 1, + ACTIONS(2377), 1, sym__space, - STATE(4659), 1, + STATE(4658), 1, sym_comment, - ACTIONS(7894), 13, + ACTIONS(2375), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382076,35 +384152,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [172198] = 4, - ACTIONS(3), 1, + [175514] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2385), 1, - sym__space, - STATE(4660), 1, + ACTIONS(5539), 1, + anon_sym_LPAREN2, + ACTIONS(7689), 1, + anon_sym_DASH2, + STATE(4659), 1, sym_comment, - ACTIONS(2383), 13, + STATE(7578), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7687), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [172223] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [175543] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7439), 1, + ACTIONS(7902), 1, sym__space, - STATE(4661), 1, + STATE(4660), 1, sym_comment, - ACTIONS(7437), 13, + ACTIONS(7900), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382118,14 +384196,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [172248] = 4, + [175568] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7900), 1, - sym__space, - STATE(4662), 1, + ACTIONS(7904), 1, + anon_sym_EQ2, + STATE(4661), 1, sym_comment, - ACTIONS(7898), 13, + ACTIONS(5056), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5058), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382137,41 +384218,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [172273] = 4, + [175595] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2409), 1, - sym__space, - STATE(4663), 1, + STATE(4662), 1, sym_comment, - ACTIONS(2407), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [172298] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5149), 1, + ACTIONS(5062), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(5064), 11, sym__newline, - ACTIONS(7902), 1, - anon_sym_catch, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4664), 1, - sym_comment, - ACTIONS(1296), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382182,19 +384239,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [172327] = 6, + [175620] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5556), 1, + ACTIONS(5539), 1, anon_sym_LPAREN2, - ACTIONS(7907), 1, + ACTIONS(7716), 1, anon_sym_DASH2, - STATE(4665), 1, + STATE(4663), 1, sym_comment, - STATE(7562), 1, + STATE(7578), 1, sym__expr_parenthesized_immediate, - ACTIONS(7905), 11, + ACTIONS(7714), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -382206,41 +384262,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [172356] = 6, + [175649] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7909), 1, - sym__newline, - ACTIONS(7914), 1, - anon_sym_catch, - STATE(4614), 1, - aux_sym_shebang_repeat1, - STATE(4666), 1, + STATE(4664), 1, sym_comment, - ACTIONS(7912), 11, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [172385] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5556), 1, - anon_sym_LPAREN2, - ACTIONS(7918), 1, + ACTIONS(1785), 2, anon_sym_DASH2, - STATE(4667), 1, - sym_comment, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7916), 11, + aux_sym__unquoted_in_list_token2, + ACTIONS(1787), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -382252,61 +384282,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [172414] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7922), 1, - sym__space, - STATE(4668), 1, - sym_comment, - ACTIONS(7920), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [172439] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2482), 1, - sym__space, - STATE(4669), 1, - sym_comment, - ACTIONS(2480), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [172464] = 4, + anon_sym_LPAREN2, + [175674] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4670), 1, + ACTIONS(2226), 1, + anon_sym_LPAREN2, + ACTIONS(2228), 1, + aux_sym__unquoted_in_list_token4, + STATE(4665), 1, sym_comment, - ACTIONS(2250), 6, + ACTIONS(1028), 5, sym__newline, anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_LPAREN2, - ACTIONS(2248), 8, + ACTIONS(1026), 7, anon_sym_EQ, sym_identifier, anon_sym_COLON, @@ -382314,19 +384306,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_DASH2, - aux_sym__unquoted_in_list_token4, - [172489] = 6, + [175703] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5556), 1, + STATE(4666), 1, + sym_comment, + ACTIONS(1841), 2, + anon_sym_DASH2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1843), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_LPAREN2, - ACTIONS(7658), 1, + [175728] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1559), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1820), 1, anon_sym_DASH2, - STATE(4671), 1, + ACTIONS(1822), 1, + anon_sym_LPAREN2, + STATE(4667), 1, sym_comment, - STATE(7405), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7656), 11, + ACTIONS(1828), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -382338,16 +384350,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [172518] = 4, - ACTIONS(3), 1, + [175757] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2466), 1, - sym__space, - STATE(4672), 1, - sym_comment, - ACTIONS(2464), 13, + ACTIONS(7906), 1, sym__newline, + STATE(771), 1, + aux_sym__pipe_separator, + STATE(4668), 1, + sym_comment, + STATE(5246), 1, + aux_sym_shebang_repeat1, + ACTIONS(7909), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2528), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -382357,17 +384374,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [172543] = 4, - ACTIONS(3), 1, + [175788] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2470), 1, - sym__space, - STATE(4673), 1, - sym_comment, - ACTIONS(2468), 13, + ACTIONS(7911), 1, sym__newline, + ACTIONS(7916), 1, + anon_sym_else, + STATE(4669), 1, + sym_comment, + STATE(4693), 1, + aux_sym_shebang_repeat1, + ACTIONS(7914), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382379,18 +384397,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [172568] = 5, - ACTIONS(3), 1, + [175817] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7924), 1, - anon_sym_EQ2, - STATE(4674), 1, + STATE(4670), 1, + sym_comment, + ACTIONS(1573), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1575), 12, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_DOT, + [175842] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4671), 1, sym_comment, - ACTIONS(5051), 2, + ACTIONS(7764), 14, ts_builtin_sym_end, - sym__space, - ACTIONS(5053), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382402,18 +384436,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172595] = 6, + anon_sym_else, + anon_sym_catch, + [175865] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5149), 1, + ACTIONS(7918), 1, sym__newline, - ACTIONS(7926), 1, + ACTIONS(7923), 1, anon_sym_else, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4675), 1, + STATE(4672), 1, sym_comment, - ACTIONS(1296), 11, + STATE(4694), 1, + aux_sym_shebang_repeat1, + ACTIONS(7921), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382425,15 +384461,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [172624] = 4, - ACTIONS(3), 1, + [175894] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2165), 1, - sym__space, - STATE(4676), 1, - sym_comment, - ACTIONS(2159), 13, + ACTIONS(7925), 1, sym__newline, + ACTIONS(7930), 1, + anon_sym_else, + STATE(4673), 1, + sym_comment, + STATE(4699), 1, + aux_sym_shebang_repeat1, + ACTIONS(7928), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382445,20 +384484,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [172649] = 6, - ACTIONS(3), 1, + [175923] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7818), 1, - sym__space, - ACTIONS(7929), 1, - ts_builtin_sym_end, - STATE(4610), 1, - aux_sym_command_repeat1, - STATE(4677), 1, - sym_comment, - ACTIONS(7814), 11, + ACTIONS(5125), 1, sym__newline, + ACTIONS(7932), 1, + anon_sym_catch, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4674), 1, + sym_comment, + ACTIONS(1296), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382469,15 +384506,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172678] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + [175952] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7933), 1, - sym__space, - STATE(4678), 1, - sym_comment, - ACTIONS(7931), 13, + ACTIONS(7935), 1, sym__newline, + ACTIONS(7940), 1, + anon_sym_catch, + STATE(4675), 1, + sym_comment, + STATE(4706), 1, + aux_sym_shebang_repeat1, + ACTIONS(7938), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382489,15 +384530,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [172703] = 4, + [175981] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7937), 1, + ACTIONS(1851), 1, sym__space, - STATE(4679), 1, + STATE(4676), 1, sym_comment, - ACTIONS(7935), 13, + ACTIONS(1847), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382511,18 +384551,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [172728] = 6, + [176006] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7842), 1, - sym__newline, - ACTIONS(7844), 1, + ACTIONS(7894), 1, sym__space, - STATE(4680), 1, + ACTIONS(7942), 1, + ts_builtin_sym_end, + STATE(4677), 1, sym_comment, - STATE(4698), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(7939), 11, + STATE(4691), 1, + aux_sym_command_repeat1, + ACTIONS(7793), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382533,19 +384574,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [172757] = 6, - ACTIONS(247), 1, + [176035] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5149), 1, - sym__newline, - ACTIONS(7941), 1, - anon_sym_else, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4681), 1, + ACTIONS(2385), 1, + sym__space, + STATE(4678), 1, sym_comment, - ACTIONS(1296), 11, + ACTIONS(2383), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382557,58 +384594,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [172786] = 4, + anon_sym_RBRACE, + [176060] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4682), 1, - sym_comment, - ACTIONS(1607), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(1609), 12, - anon_sym_in2, - anon_sym_QMARK2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_DOT, - [172811] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2216), 1, + ACTIONS(5539), 1, anon_sym_LPAREN2, - ACTIONS(2220), 1, - aux_sym__unquoted_in_list_token4, - STATE(4683), 1, + ACTIONS(7946), 1, + anon_sym_DASH2, + STATE(4679), 1, sym_comment, - ACTIONS(2224), 5, + STATE(8050), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7944), 11, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2222), 7, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH2, - [172840] = 4, + [176089] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5689), 1, + ACTIONS(2128), 1, sym__space, - STATE(4684), 1, + STATE(4680), 1, sym_comment, - ACTIONS(5687), 13, + ACTIONS(2122), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382622,14 +384639,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [172865] = 4, + [176114] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5162), 1, + ACTIONS(2136), 1, sym__space, - STATE(4685), 1, + STATE(4681), 1, sym_comment, - ACTIONS(5164), 13, + ACTIONS(2130), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382643,45 +384660,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [172890] = 7, - ACTIONS(247), 1, + [176139] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7788), 1, + ACTIONS(7886), 1, sym__newline, - STATE(772), 1, - aux_sym__pipe_separator, - STATE(4686), 1, + ACTIONS(7888), 1, + sym__space, + STATE(4682), 1, sym_comment, - STATE(5172), 1, - aux_sym_shebang_repeat1, - ACTIONS(7791), 2, - ts_builtin_sym_end, - anon_sym_SEMI, - ACTIONS(2538), 9, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [172921] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7664), 1, - sym__newline, - STATE(772), 1, - aux_sym__pipe_separator, STATE(4687), 1, - sym_comment, - STATE(5172), 1, - aux_sym_shebang_repeat1, - ACTIONS(7667), 2, - ts_builtin_sym_end, + aux_sym__command_parenthesized_repeat1, + ACTIONS(7948), 11, anon_sym_SEMI, - ACTIONS(2538), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -382691,14 +384682,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172952] = 4, + anon_sym_RPAREN, + [176168] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5693), 1, + ACTIONS(2152), 1, sym__space, - STATE(4688), 1, + STATE(4683), 1, sym_comment, - ACTIONS(5691), 13, + ACTIONS(2146), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382712,14 +384704,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [172977] = 4, + [176193] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2349), 1, + ACTIONS(5097), 1, sym__space, - STATE(4689), 1, + STATE(4684), 1, sym_comment, - ACTIONS(2347), 13, + ACTIONS(5099), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382733,59 +384725,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173002] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7944), 1, - anon_sym_EQ2, - STATE(4690), 1, - sym_comment, - ACTIONS(5014), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5016), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [173029] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7946), 1, - sym__newline, - ACTIONS(7951), 1, - anon_sym_else, - STATE(4691), 1, - sym_comment, - STATE(4697), 1, - aux_sym_shebang_repeat1, - ACTIONS(7949), 11, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [173058] = 4, + [176218] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7606), 1, + ACTIONS(5119), 1, sym__space, - STATE(4692), 1, + STATE(4685), 1, sym_comment, - ACTIONS(7604), 13, + ACTIONS(5121), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382799,38 +384746,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173083] = 4, + [176243] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2401), 1, - sym__space, - STATE(4693), 1, + ACTIONS(2240), 1, + anon_sym_LPAREN2, + ACTIONS(2244), 1, + aux_sym__unquoted_in_list_token4, + STATE(4686), 1, sym_comment, - ACTIONS(2399), 13, + ACTIONS(2242), 5, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [173108] = 4, + anon_sym_COMMA, + ACTIONS(2238), 7, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [176272] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4694), 1, - sym_comment, - ACTIONS(5020), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(5022), 11, + ACTIONS(7950), 1, sym__newline, + ACTIONS(7953), 1, + sym__space, + STATE(4687), 2, + sym_comment, + aux_sym__command_parenthesized_repeat1, + ACTIONS(7956), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382841,15 +384790,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [173133] = 4, + anon_sym_RPAREN, + [176299] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4695), 1, + STATE(4688), 1, sym_comment, - ACTIONS(1621), 2, + ACTIONS(1681), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(1623), 12, + ACTIONS(1683), 12, anon_sym_in2, anon_sym_QMARK2, anon_sym_not_DASHin2, @@ -382862,81 +384812,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_DOT, - [173158] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7955), 1, - anon_sym_LT, - ACTIONS(7957), 1, - anon_sym_DASH2, - STATE(4696), 1, - sym_comment, - ACTIONS(7953), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [173185] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5149), 1, - sym__newline, - ACTIONS(7959), 1, - anon_sym_else, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4697), 1, - sym_comment, - ACTIONS(1296), 11, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [173214] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7962), 1, - sym__newline, - ACTIONS(7965), 1, - sym__space, - STATE(4698), 2, - sym_comment, - aux_sym__command_parenthesized_repeat1, - ACTIONS(7968), 11, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [173241] = 4, + [176324] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2443), 1, + ACTIONS(5658), 1, sym__space, - STATE(4699), 1, + STATE(4689), 1, sym_comment, - ACTIONS(2441), 13, + ACTIONS(5656), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382950,58 +384833,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173266] = 6, - ACTIONS(247), 1, + [176349] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1866), 1, - anon_sym_DASH2, - ACTIONS(1868), 1, + ACTIONS(2248), 1, anon_sym_LPAREN2, - STATE(4700), 1, + ACTIONS(2252), 1, + aux_sym__unquoted_in_list_token4, + STATE(4690), 1, sym_comment, - ACTIONS(1874), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2256), 5, sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(2254), 7, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [173295] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2349), 1, - sym__space, - STATE(4701), 1, - sym_comment, - ACTIONS(2347), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [173320] = 4, + anon_sym_DASH2, + [176378] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2381), 1, + ACTIONS(7958), 1, + ts_builtin_sym_end, + ACTIONS(7960), 1, sym__space, - STATE(4702), 1, + STATE(4691), 2, sym_comment, - ACTIONS(2379), 13, + aux_sym_command_repeat1, + ACTIONS(7662), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383013,22 +384878,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [173345] = 6, + [176405] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7970), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7972), 1, + ACTIONS(7963), 1, + anon_sym_DOT, + ACTIONS(7965), 1, aux_sym__immediate_decimal_token2, - STATE(4703), 1, + STATE(4692), 1, sym_comment, - ACTIONS(1621), 3, + ACTIONS(1573), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1623), 9, + ACTIONS(1575), 9, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -383038,18 +384901,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [173374] = 6, + [176434] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7974), 1, + ACTIONS(5125), 1, sym__newline, - ACTIONS(7979), 1, + ACTIONS(7967), 1, anon_sym_else, - STATE(4681), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(4704), 1, + STATE(4693), 1, sym_comment, - ACTIONS(7977), 11, + ACTIONS(1296), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383061,37 +384924,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [173403] = 5, + [176463] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7703), 1, - aux_sym__immediate_decimal_token2, - STATE(4705), 1, - sym_comment, - ACTIONS(1607), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1609), 10, + ACTIONS(7970), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [173430] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2377), 1, - sym__space, - STATE(4706), 1, + ACTIONS(7975), 1, + anon_sym_else, + STATE(4694), 1, sym_comment, - ACTIONS(2375), 13, - sym__newline, + STATE(4730), 1, + aux_sym_shebang_repeat1, + ACTIONS(7973), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383103,15 +384947,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [173455] = 3, + [176492] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4707), 1, + ACTIONS(2424), 1, + sym__space, + STATE(4695), 1, sym_comment, - ACTIONS(5679), 14, + ACTIONS(2422), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383122,18 +384966,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_record_entry_token1, - [173478] = 4, + [176517] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4708), 1, - sym_comment, - ACTIONS(1008), 3, - ts_builtin_sym_end, + ACTIONS(2428), 1, sym__space, - anon_sym_DOT, - ACTIONS(1006), 11, + STATE(4696), 1, + sym_comment, + ACTIONS(2426), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383145,14 +384987,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [173503] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [176542] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7983), 1, + ACTIONS(2438), 1, sym__space, - STATE(4709), 1, + STATE(4697), 1, sym_comment, - ACTIONS(7981), 13, + ACTIONS(2436), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383166,41 +385010,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173528] = 6, + [176567] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7985), 1, - sym__newline, - ACTIONS(7990), 1, - anon_sym_else, - STATE(4710), 1, + ACTIONS(7977), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7979), 1, + aux_sym__immediate_decimal_token2, + STATE(4698), 1, sym_comment, - STATE(4728), 1, - aux_sym_shebang_repeat1, - ACTIONS(7988), 11, + ACTIONS(1585), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1587), 9, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [173557] = 6, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [176596] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7992), 1, + ACTIONS(7981), 1, sym__newline, - ACTIONS(7997), 1, + ACTIONS(7986), 1, anon_sym_else, - STATE(4691), 1, - aux_sym_shebang_repeat1, - STATE(4711), 1, + STATE(4699), 1, sym_comment, - ACTIONS(7995), 11, + STATE(4737), 1, + aux_sym_shebang_repeat1, + ACTIONS(7984), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383212,78 +385056,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [173586] = 4, + [176625] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(4712), 1, - sym_comment, - ACTIONS(1673), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(1675), 12, - anon_sym_in2, - anon_sym_QMARK2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_DOT, - [173611] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2173), 1, - sym__space, - STATE(4713), 1, - sym_comment, - ACTIONS(2167), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [173636] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2181), 1, - sym__space, - STATE(4714), 1, - sym_comment, - ACTIONS(2175), 13, + ACTIONS(7988), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [173661] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8001), 1, - sym__space, - STATE(4715), 1, + ACTIONS(7993), 1, + anon_sym_else, + STATE(4700), 1, sym_comment, - ACTIONS(7999), 13, - sym__newline, + STATE(4738), 1, + aux_sym_shebang_repeat1, + ACTIONS(7991), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383295,36 +385079,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [173686] = 4, - ACTIONS(3), 1, + [176654] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2490), 1, - sym__space, - STATE(4716), 1, + ACTIONS(5539), 1, + anon_sym_LPAREN2, + ACTIONS(7997), 1, + anon_sym_DASH2, + STATE(4701), 1, sym_comment, - ACTIONS(2488), 13, + STATE(8050), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7995), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [173711] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [176683] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2139), 1, + ACTIONS(5132), 1, sym__space, - STATE(4717), 1, + STATE(4702), 1, sym_comment, - ACTIONS(2133), 13, + ACTIONS(5134), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383338,14 +385123,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173736] = 3, + [176708] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4718), 1, + ACTIONS(5136), 1, + sym__space, + STATE(4703), 1, sym_comment, - ACTIONS(5683), 14, + ACTIONS(5138), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383356,20 +385142,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_record_entry_token1, - [173759] = 5, + [176733] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8003), 1, + ACTIONS(7773), 1, aux_sym__immediate_decimal_token2, - STATE(4719), 1, + STATE(4704), 1, sym_comment, - ACTIONS(1673), 3, + ACTIONS(1573), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1675), 10, + ACTIONS(1575), 10, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -383380,15 +385166,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [173786] = 4, - ACTIONS(3), 1, + [176760] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5697), 1, - sym__space, - STATE(4720), 1, + ACTIONS(7855), 1, + anon_sym_AT, + ACTIONS(8001), 1, + anon_sym_DASH2, + STATE(4705), 1, sym_comment, - ACTIONS(5695), 13, + STATE(5147), 1, + sym_param_cmd, + ACTIONS(7999), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [176789] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5125), 1, sym__newline, + ACTIONS(8003), 1, + anon_sym_catch, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4706), 1, + sym_comment, + ACTIONS(1296), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383400,37 +385212,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [173811] = 4, - ACTIONS(3), 1, + [176818] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2506), 1, - sym__space, - STATE(4721), 1, + ACTIONS(8006), 1, + aux_sym__immediate_decimal_token2, + STATE(4707), 1, sym_comment, - ACTIONS(2504), 13, + ACTIONS(1681), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1683), 10, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [173836] = 4, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [176845] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(4722), 1, + ACTIONS(8008), 1, + anon_sym_QMARK2, + STATE(4708), 1, sym_comment, - ACTIONS(994), 2, + ACTIONS(978), 2, anon_sym_DASH2, anon_sym_DOT, - ACTIONS(996), 12, + ACTIONS(980), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -383442,19 +385256,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, - [173861] = 6, + [176872] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1880), 1, - anon_sym_LPAREN2, - ACTIONS(1888), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2187), 1, - anon_sym_DASH2, - STATE(4723), 1, + ACTIONS(8010), 1, + anon_sym_QMARK2, + STATE(4709), 1, sym_comment, - ACTIONS(2189), 11, + ACTIONS(984), 2, + anon_sym_DASH2, + anon_sym_DOT, + ACTIONS(986), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -383466,14 +385278,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [173890] = 4, + [176899] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5143), 1, + ACTIONS(2496), 1, sym__space, - STATE(4724), 1, + STATE(4710), 1, sym_comment, - ACTIONS(5145), 13, + ACTIONS(2494), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383487,37 +385299,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173915] = 6, - ACTIONS(247), 1, + [176924] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1878), 1, - anon_sym_DASH2, - ACTIONS(1880), 1, - anon_sym_LPAREN2, - ACTIONS(1888), 1, - aux_sym__unquoted_in_list_token2, - STATE(4725), 1, + ACTIONS(2500), 1, + sym__space, + STATE(4711), 1, sym_comment, - ACTIONS(1886), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2498), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [173944] = 4, + anon_sym_RBRACE, + [176949] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5128), 1, + ACTIONS(2516), 1, sym__space, - STATE(4726), 1, + STATE(4712), 1, sym_comment, - ACTIONS(5130), 13, + ACTIONS(2514), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383531,41 +385341,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173969] = 6, - ACTIONS(247), 1, + [176974] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7322), 1, - anon_sym_DOT, - ACTIONS(7324), 1, - aux_sym__immediate_decimal_token2, - STATE(4727), 1, + ACTIONS(2353), 1, + sym__space, + STATE(4713), 1, sym_comment, - ACTIONS(1755), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(1757), 10, - anon_sym_EQ, + ACTIONS(2351), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [173998] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + [176999] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5149), 1, - sym__newline, - ACTIONS(8005), 1, - anon_sym_else, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4728), 1, + ACTIONS(2357), 1, + sym__space, + STATE(4714), 1, sym_comment, - ACTIONS(1296), 11, + ACTIONS(2355), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383577,13 +385382,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [174027] = 3, - ACTIONS(247), 1, + anon_sym_RBRACE, + [177024] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4729), 1, + ACTIONS(2361), 1, + sym__space, + STATE(4715), 1, sym_comment, - ACTIONS(7719), 14, - ts_builtin_sym_end, + ACTIONS(2359), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383595,16 +385402,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_else, - anon_sym_catch, - [174050] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [177049] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2474), 1, + ACTIONS(2446), 1, sym__space, - STATE(4730), 1, + STATE(4716), 1, sym_comment, - ACTIONS(2472), 13, + ACTIONS(2444), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383618,56 +385425,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174075] = 4, - ACTIONS(247), 1, + [177074] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4731), 1, + ACTIONS(5662), 1, + sym__space, + STATE(4717), 1, sym_comment, - ACTIONS(998), 2, - anon_sym_DASH2, - anon_sym_DOT, - ACTIONS(1000), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(5660), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - [174100] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4732), 1, - sym_comment, - ACTIONS(1763), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(1765), 12, - anon_sym_in2, - anon_sym_QMARK2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_DOT, - [174125] = 4, + anon_sym_RBRACE, + [177099] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2478), 1, + ACTIONS(1855), 1, sym__space, - STATE(4733), 1, + STATE(4718), 1, sym_comment, - ACTIONS(2476), 13, + ACTIONS(1853), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383681,12 +385467,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174150] = 4, + [177124] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2373), 1, sym__space, - STATE(4734), 1, + STATE(4719), 1, sym_comment, ACTIONS(2371), 13, sym__newline, @@ -383702,37 +385488,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174175] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1579), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2234), 1, - anon_sym_DASH2, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - STATE(4735), 1, - sym_comment, - ACTIONS(2238), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [174204] = 4, + [177149] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2498), 1, + ACTIONS(7373), 1, sym__space, - STATE(4736), 1, + STATE(4720), 1, sym_comment, - ACTIONS(2496), 13, + ACTIONS(7371), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383746,15 +385509,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174229] = 4, + [177174] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4737), 1, + STATE(4721), 1, sym_comment, - ACTIONS(1002), 2, + ACTIONS(990), 2, anon_sym_DASH2, anon_sym_DOT, - ACTIONS(1004), 12, + ACTIONS(992), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -383767,20 +385530,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_QMARK2, - [174254] = 6, + [177199] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2252), 1, - anon_sym_DASH2, - ACTIONS(2254), 1, - anon_sym_LPAREN2, - ACTIONS(2258), 1, - aux_sym__unquoted_in_list_token2, - STATE(4738), 1, + ACTIONS(7315), 1, + anon_sym_DOT, + ACTIONS(7317), 1, + aux_sym__immediate_decimal_token2, + STATE(4722), 1, sym_comment, - ACTIONS(2256), 11, - anon_sym_EQ, + ACTIONS(1765), 2, sym_identifier, + anon_sym_DASH2, + ACTIONS(1767), 10, + anon_sym_EQ, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -383790,15 +385553,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [174283] = 4, + [177228] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4739), 1, + STATE(4723), 1, sym_comment, - ACTIONS(990), 2, + ACTIONS(994), 2, anon_sym_DASH2, anon_sym_DOT, - ACTIONS(992), 12, + ACTIONS(996), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -383811,38 +385574,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_QMARK2, - [174308] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2202), 1, - anon_sym_LPAREN2, - ACTIONS(2204), 1, - aux_sym__unquoted_in_list_token4, - STATE(4740), 1, - sym_comment, - ACTIONS(1032), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1030), 7, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [174337] = 4, + [177253] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4741), 1, + STATE(4724), 1, sym_comment, - ACTIONS(1890), 2, + ACTIONS(998), 2, anon_sym_DASH2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1892), 12, + anon_sym_DOT, + ACTIONS(1000), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -383854,18 +385594,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [174362] = 5, + anon_sym_QMARK2, + [177278] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8008), 1, - anon_sym_LBRACK2, - STATE(4742), 1, + ACTIONS(8012), 1, + anon_sym_EQ2, + STATE(4725), 1, sym_comment, - ACTIONS(2341), 2, + ACTIONS(4996), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2337), 11, + ACTIONS(4998), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383877,18 +385617,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [174389] = 6, + [177305] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5556), 1, - anon_sym_LPAREN2, - ACTIONS(8012), 1, - anon_sym_DASH2, - STATE(4743), 1, + STATE(4726), 1, sym_comment, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8010), 11, + ACTIONS(1002), 2, + anon_sym_DASH2, + anon_sym_DOT, + ACTIONS(1004), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -383900,16 +385637,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [174418] = 4, - ACTIONS(3), 1, + anon_sym_QMARK2, + [177330] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5681), 1, - sym__space, - STATE(4744), 1, - sym_comment, - ACTIONS(5679), 13, + ACTIONS(7766), 1, sym__newline, + STATE(774), 1, + aux_sym__pipe_separator, + STATE(4727), 1, + sym_comment, + STATE(5246), 1, + aux_sym_shebang_repeat1, + ACTIONS(7769), 2, + ts_builtin_sym_end, anon_sym_SEMI, + ACTIONS(2528), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -383919,20 +385662,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [174443] = 6, - ACTIONS(247), 1, + [177361] = 5, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8014), 1, - sym__newline, - ACTIONS(8019), 1, - anon_sym_else, - STATE(4675), 1, - aux_sym_shebang_repeat1, - STATE(4745), 1, + anon_sym_LBRACK2, + STATE(4728), 1, sym_comment, - ACTIONS(8017), 11, + ACTIONS(2326), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2322), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383943,15 +385684,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [174472] = 3, + [177388] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4746), 1, + ACTIONS(1028), 1, + sym__space, + STATE(4729), 1, sym_comment, - ACTIONS(5687), 14, + ACTIONS(1026), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -383962,18 +385703,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_record_entry_token1, - [174495] = 4, - ACTIONS(3), 1, + [177413] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4747), 1, + ACTIONS(5125), 1, + sym__newline, + ACTIONS(8016), 1, + anon_sym_else, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4730), 1, sym_comment, - ACTIONS(1012), 3, - ts_builtin_sym_end, + ACTIONS(1296), 11, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [177442] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2466), 1, sym__space, - anon_sym_DOT, - ACTIONS(1010), 11, + STATE(4731), 1, + sym_comment, + ACTIONS(2464), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383985,18 +385747,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [174520] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [177467] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7818), 1, + ACTIONS(2466), 1, sym__space, - ACTIONS(8021), 1, - ts_builtin_sym_end, - STATE(4647), 1, - aux_sym_command_repeat1, - STATE(4748), 1, + STATE(4732), 1, sym_comment, - ACTIONS(7650), 11, + ACTIONS(2464), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384008,14 +385768,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [174549] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [177492] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4749), 1, + ACTIONS(5681), 1, + sym__space, + STATE(4733), 1, sym_comment, - ACTIONS(5691), 14, + ACTIONS(5679), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384026,16 +385789,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_record_entry_token1, - [174572] = 4, + [177517] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5166), 1, + ACTIONS(2474), 1, sym__space, - STATE(4750), 1, + STATE(4734), 1, sym_comment, - ACTIONS(5168), 13, + ACTIONS(2472), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384049,14 +385812,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174597] = 4, + [177542] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5170), 1, + ACTIONS(5689), 1, sym__space, - STATE(4751), 1, + STATE(4735), 1, sym_comment, - ACTIONS(5172), 13, + ACTIONS(5687), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384070,18 +385833,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174622] = 6, + [177567] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8025), 1, - anon_sym_AT, - ACTIONS(8027), 1, + ACTIONS(8021), 1, + anon_sym_LT, + ACTIONS(8023), 1, anon_sym_DASH2, - STATE(4752), 1, + STATE(4736), 1, sym_comment, - STATE(5132), 1, - sym_param_cmd, - ACTIONS(8023), 11, + ACTIONS(8019), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -384091,42 +385852,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [174651] = 6, + [177594] = 6, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(5125), 1, + sym__newline, ACTIONS(8025), 1, - anon_sym_AT, - ACTIONS(8031), 1, - anon_sym_DASH2, - STATE(4753), 1, + anon_sym_else, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4737), 1, sym_comment, - STATE(5062), 1, - sym_param_cmd, - ACTIONS(8029), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + ACTIONS(1296), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [174680] = 4, - ACTIONS(3), 1, + [177623] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4754), 1, - sym_comment, - ACTIONS(1016), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT, - ACTIONS(1014), 11, + ACTIONS(8028), 1, sym__newline, + ACTIONS(8033), 1, + anon_sym_else, + STATE(4643), 1, + aux_sym_shebang_repeat1, + STATE(4738), 1, + sym_comment, + ACTIONS(8031), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384137,17 +385900,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [174705] = 5, + anon_sym_RPAREN, + [177652] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8033), 1, - ts_builtin_sym_end, - ACTIONS(8035), 1, + ACTIONS(2488), 1, sym__space, - STATE(4755), 2, + STATE(4739), 1, sym_comment, - aux_sym_command_repeat1, - ACTIONS(7767), 11, + ACTIONS(2486), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384159,14 +385920,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [174732] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [177677] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4756), 1, + ACTIONS(2512), 1, + sym__space, + STATE(4740), 1, sym_comment, - ACTIONS(5695), 14, + ACTIONS(2510), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384177,49 +385941,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_record_entry_token1, - [174755] = 12, + [177702] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym_unquoted_token2, - ACTIONS(3621), 1, + ACTIONS(8023), 1, + anon_sym_DASH2, + ACTIONS(8035), 1, + anon_sym_LT, + STATE(4741), 1, + sym_comment, + ACTIONS(8019), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(8038), 1, - anon_sym_DOT, - ACTIONS(8042), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8044), 1, - aux_sym__immediate_decimal_token5, - STATE(4757), 1, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [177729] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7894), 1, + sym__space, + ACTIONS(8037), 1, + ts_builtin_sym_end, + STATE(4677), 1, + aux_sym_command_repeat1, + STATE(4742), 1, sym_comment, - STATE(5651), 1, - sym__immediate_decimal, - ACTIONS(8040), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5982), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1544), 3, + ACTIONS(7732), 11, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [174796] = 6, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [177758] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8025), 1, - anon_sym_AT, - ACTIONS(8031), 1, + ACTIONS(1804), 1, + anon_sym_LPAREN2, + ACTIONS(1812), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2230), 1, anon_sym_DASH2, - STATE(4758), 1, + STATE(4743), 1, sym_comment, - STATE(5063), 1, - sym_param_cmd, - ACTIONS(8029), 11, + ACTIONS(2232), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -384231,18 +386011,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [174825] = 6, + [177787] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5556), 1, - anon_sym_LPAREN2, - ACTIONS(7786), 1, + ACTIONS(1802), 1, anon_sym_DASH2, - STATE(4759), 1, + ACTIONS(1804), 1, + anon_sym_LPAREN2, + ACTIONS(1812), 1, + aux_sym__unquoted_in_list_token2, + STATE(4744), 1, sym_comment, - STATE(7405), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7784), 11, + ACTIONS(1810), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -384254,16 +386034,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [174854] = 4, - ACTIONS(3), 1, + [177816] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5096), 1, - sym__space, - STATE(4760), 1, - sym_comment, - ACTIONS(5098), 13, + ACTIONS(7739), 1, sym__newline, + STATE(774), 1, + aux_sym__pipe_separator, + STATE(4745), 1, + sym_comment, + STATE(5246), 1, + aux_sym_shebang_repeat1, + ACTIONS(7742), 2, + ts_builtin_sym_end, anon_sym_SEMI, + ACTIONS(2528), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -384273,20 +386058,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [174879] = 6, + [177847] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7842), 1, - sym__newline, - ACTIONS(7844), 1, + ACTIONS(1865), 1, sym__space, - STATE(4680), 1, - aux_sym__command_parenthesized_repeat1, - STATE(4761), 1, + STATE(4746), 1, sym_comment, - ACTIONS(8046), 11, + ACTIONS(1863), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384298,14 +386078,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [174908] = 4, + anon_sym_RBRACE, + [177872] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5100), 1, + ACTIONS(2400), 1, sym__space, - STATE(4762), 1, + STATE(4747), 1, sym_comment, - ACTIONS(5102), 13, + ACTIONS(2398), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384319,17 +386100,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174933] = 5, + [177897] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8048), 1, - anon_sym_QMARK2, - STATE(4763), 1, - sym_comment, - ACTIONS(978), 2, + ACTIONS(5539), 1, + anon_sym_LPAREN2, + ACTIONS(7728), 1, anon_sym_DASH2, - anon_sym_DOT, - ACTIONS(980), 11, + STATE(4748), 1, + sym_comment, + STATE(7578), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7726), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -384341,14 +386123,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [174960] = 4, + [177926] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5174), 1, + ACTIONS(2404), 1, sym__space, - STATE(4764), 1, + STATE(4749), 1, sym_comment, - ACTIONS(5176), 13, + ACTIONS(2402), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384362,35 +386144,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174985] = 4, - ACTIONS(3), 1, + [177951] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5178), 1, - sym__space, - STATE(4765), 1, + ACTIONS(7855), 1, + anon_sym_AT, + ACTIONS(8041), 1, + anon_sym_DASH2, + STATE(4750), 1, sym_comment, - ACTIONS(5180), 13, + STATE(5093), 1, + sym_param_cmd, + ACTIONS(8039), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [175010] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [177980] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1950), 1, + ACTIONS(2480), 1, sym__space, - STATE(4766), 1, + STATE(4751), 1, sym_comment, - ACTIONS(1948), 13, + ACTIONS(2478), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384404,14 +386188,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175035] = 4, + [178005] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2393), 1, + ACTIONS(2349), 1, sym__space, - STATE(4767), 1, + STATE(4752), 1, sym_comment, - ACTIONS(2391), 13, + ACTIONS(2347), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384425,15 +386209,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175060] = 4, - ACTIONS(247), 1, + [178030] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8052), 1, - anon_sym_catch, - STATE(4768), 1, + STATE(4753), 1, sym_comment, - ACTIONS(8050), 13, + ACTIONS(5679), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384444,61 +386227,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_RBRACE, - [175085] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4769), 1, - sym_comment, - ACTIONS(1755), 2, - anon_sym_DASH2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1757), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [175110] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5556), 1, - anon_sym_LPAREN2, - ACTIONS(8056), 1, - anon_sym_DASH2, - STATE(4770), 1, - sym_comment, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8054), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [175139] = 4, + aux_sym_record_entry_token1, + [178053] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2415), 1, - sym__space, - STATE(4771), 1, + STATE(4754), 1, sym_comment, - ACTIONS(2413), 13, + ACTIONS(5687), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384509,16 +386247,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_RBRACE, - [175164] = 4, + aux_sym_record_entry_token1, + [178076] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2423), 1, + ACTIONS(8045), 1, sym__space, - STATE(4772), 1, + STATE(4755), 1, sym_comment, - ACTIONS(2421), 13, + ACTIONS(8043), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384532,14 +386270,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175189] = 4, + [178101] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2427), 1, + ACTIONS(5170), 1, sym__space, - STATE(4773), 1, + STATE(4756), 1, sym_comment, - ACTIONS(2425), 13, + ACTIONS(5172), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384553,14 +386291,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175214] = 4, + [178126] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2431), 1, + ACTIONS(5174), 1, sym__space, - STATE(4774), 1, + STATE(4757), 1, sym_comment, - ACTIONS(2429), 13, + ACTIONS(5176), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384574,67 +386312,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175239] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4055), 1, - anon_sym_DOLLAR, - ACTIONS(7823), 1, - sym__newline, - ACTIONS(7825), 1, - sym__space, - ACTIONS(7827), 1, - anon_sym_DASH_DASH, - ACTIONS(7829), 1, - anon_sym_DASH2, - ACTIONS(7831), 1, - anon_sym_LBRACE, - STATE(1792), 1, - sym_block, - STATE(1793), 1, - sym_val_closure, - STATE(4775), 1, - sym_comment, - STATE(5696), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7409), 1, - sym__flag, - STATE(782), 2, - sym__blosure, - sym_val_variable, - STATE(4685), 2, - sym_short_flag, - sym_long_flag, - [175284] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8058), 1, - anon_sym_QMARK2, - STATE(4776), 1, - sym_comment, - ACTIONS(984), 2, - anon_sym_DASH2, - anon_sym_DOT, - ACTIONS(986), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [175311] = 4, + [178151] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2435), 1, + ACTIONS(2416), 1, sym__space, - STATE(4777), 1, + STATE(4758), 1, sym_comment, - ACTIONS(2433), 13, + ACTIONS(2414), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384648,37 +386333,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175336] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8025), 1, - anon_sym_AT, - ACTIONS(8062), 1, - anon_sym_DASH2, - STATE(4778), 1, - sym_comment, - STATE(5121), 1, - sym_param_cmd, - ACTIONS(8060), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [175365] = 4, + [178176] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2389), 1, + ACTIONS(2458), 1, sym__space, - STATE(4779), 1, + STATE(4759), 1, sym_comment, - ACTIONS(2387), 13, + ACTIONS(2456), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384692,77 +386354,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175390] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8064), 1, - sym__newline, - ACTIONS(8069), 1, - anon_sym_catch, - STATE(4637), 1, - aux_sym_shebang_repeat1, - STATE(4780), 1, - sym_comment, - ACTIONS(8067), 11, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [175419] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7957), 1, - anon_sym_DASH2, - ACTIONS(8071), 1, - anon_sym_LT, - STATE(4781), 1, - sym_comment, - ACTIONS(7953), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [175446] = 4, + [178201] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4782), 1, - sym_comment, - ACTIONS(2181), 2, - ts_builtin_sym_end, + ACTIONS(2392), 1, sym__space, - ACTIONS(2175), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [175470] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4783), 1, + STATE(4760), 1, sym_comment, - ACTIONS(6827), 13, + ACTIONS(2390), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384776,64 +386375,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175492] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym_unquoted_token2, - ACTIONS(3621), 1, - anon_sym_DOLLAR, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(8073), 1, - anon_sym_DOT, - ACTIONS(8077), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8079), 1, - aux_sym__immediate_decimal_token5, - STATE(4784), 1, - sym_comment, - STATE(5959), 1, - sym__immediate_decimal, - ACTIONS(1544), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8075), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5982), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [175532] = 4, + [178226] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7957), 1, - anon_sym_DASH2, - STATE(4785), 1, + STATE(4761), 1, sym_comment, - ACTIONS(7953), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [175556] = 4, + ACTIONS(1761), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1763), 12, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_DOT, + [178251] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4786), 1, + STATE(4762), 1, sym_comment, - ACTIONS(5166), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5168), 11, + ACTIONS(5691), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384844,34 +386414,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [175580] = 4, + anon_sym_RBRACE, + aux_sym_record_entry_token1, + [178274] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4787), 1, - sym_comment, - ACTIONS(5170), 2, - ts_builtin_sym_end, + ACTIONS(2412), 1, sym__space, - ACTIONS(5172), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [175604] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4788), 1, + STATE(4763), 1, sym_comment, - ACTIONS(8081), 12, + ACTIONS(2410), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384884,15 +386436,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [175628] = 4, - ACTIONS(247), 1, + anon_sym_RBRACE, + [178299] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8085), 1, - anon_sym_else, - STATE(4789), 1, + ACTIONS(2408), 1, + sym__space, + STATE(4764), 1, sym_comment, - ACTIONS(8083), 12, - ts_builtin_sym_end, + ACTIONS(2406), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384904,56 +386456,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [175652] = 5, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [178324] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1709), 1, - anon_sym_DASH2, - ACTIONS(7297), 1, - aux_sym__unquoted_in_list_token2, - STATE(4790), 1, + STATE(4765), 1, sym_comment, - ACTIONS(1721), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2270), 6, sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_LPAREN2, + ACTIONS(2268), 8, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175678] = 4, + anon_sym_DASH2, + aux_sym__unquoted_in_list_token4, + [178349] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4791), 1, - sym_comment, - ACTIONS(5174), 2, - ts_builtin_sym_end, + ACTIONS(5079), 1, sym__space, - ACTIONS(5176), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [175702] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4792), 1, + STATE(4766), 1, sym_comment, - ACTIONS(5178), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5180), 11, + ACTIONS(5081), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384965,32 +386498,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [175726] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6052), 1, - anon_sym_DASH2, - STATE(4793), 1, - sym_comment, - ACTIONS(6054), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [175750] = 3, - ACTIONS(247), 1, + anon_sym_RBRACE, + [178374] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4794), 1, + ACTIONS(5083), 1, + sym__space, + STATE(4767), 1, sym_comment, - ACTIONS(8087), 13, + ACTIONS(5085), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385004,34 +386521,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175772] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8091), 1, - anon_sym_DASH2, - STATE(4795), 1, - sym_comment, - ACTIONS(8089), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [175796] = 4, + [178399] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8095), 1, + ACTIONS(5539), 1, + anon_sym_LPAREN2, + ACTIONS(8049), 1, anon_sym_DASH2, - STATE(4796), 1, + STATE(4768), 1, sym_comment, - ACTIONS(8093), 12, + STATE(8050), 1, + sym__expr_parenthesized_immediate, + ACTIONS(8047), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -385041,15 +386542,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175820] = 3, - ACTIONS(247), 1, + [178428] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4797), 1, + ACTIONS(1889), 1, + sym__space, + STATE(4769), 1, sym_comment, - ACTIONS(8097), 13, + ACTIONS(1887), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385063,54 +386565,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175842] = 4, - ACTIONS(247), 1, + [178453] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8101), 1, - anon_sym_DASH2, - STATE(4798), 1, + ACTIONS(5693), 1, + sym__space, + STATE(4770), 1, sym_comment, - ACTIONS(8099), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(5691), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [175866] = 4, - ACTIONS(247), 1, + anon_sym_RBRACE, + [178478] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8105), 1, - anon_sym_DASH2, - STATE(4799), 1, + ACTIONS(2345), 1, + sym__space, + STATE(4771), 1, sym_comment, - ACTIONS(8103), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2343), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [175890] = 4, + anon_sym_RBRACE, + [178503] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8109), 1, + ACTIONS(1661), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2258), 1, anon_sym_DASH2, - STATE(4800), 1, + ACTIONS(2260), 1, + anon_sym_LPAREN2, + STATE(4772), 1, sym_comment, - ACTIONS(8107), 12, + ACTIONS(2262), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -385120,100 +386628,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175914] = 4, - ACTIONS(247), 1, + [178532] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8113), 1, - anon_sym_DASH2, - STATE(4801), 1, + ACTIONS(2442), 1, + sym__space, + STATE(4773), 1, sym_comment, - ACTIONS(8111), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2440), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [175938] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7679), 1, - sym_identifier, - ACTIONS(7685), 1, - anon_sym_DOLLAR, - ACTIONS(7687), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7689), 1, - anon_sym_DASH_DASH, - ACTIONS(7691), 1, - anon_sym_DASH2, - ACTIONS(8115), 1, - anon_sym_RBRACK, - STATE(4096), 1, - sym_param_long_flag, - STATE(4235), 1, - sym__param_name, - STATE(4604), 1, - aux_sym_parameter_parens_repeat1, - STATE(4802), 1, - sym_comment, - STATE(5099), 1, - sym_param_rest, - STATE(5100), 1, - sym_param_opt, - STATE(5139), 1, - sym_param_short_flag, - STATE(5567), 1, - sym_parameter, - [175984] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7679), 1, - sym_identifier, - ACTIONS(7685), 1, - anon_sym_DOLLAR, - ACTIONS(7687), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7689), 1, - anon_sym_DASH_DASH, - ACTIONS(7691), 1, - anon_sym_DASH2, - ACTIONS(7721), 1, - anon_sym_PIPE, - STATE(4096), 1, - sym_param_long_flag, - STATE(4235), 1, - sym__param_name, - STATE(4604), 1, - aux_sym_parameter_parens_repeat1, - STATE(4803), 1, - sym_comment, - STATE(5099), 1, - sym_param_rest, - STATE(5100), 1, - sym_param_opt, - STATE(5139), 1, - sym_param_short_flag, - STATE(5567), 1, - sym_parameter, - [176030] = 4, + anon_sym_RBRACE, + [178557] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4804), 1, - sym_comment, - ACTIONS(1032), 2, - ts_builtin_sym_end, + ACTIONS(1917), 1, sym__space, - ACTIONS(1030), 11, + STATE(4774), 1, + sym_comment, + ACTIONS(1915), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385225,12 +386670,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176054] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [178582] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4805), 1, + ACTIONS(1929), 1, + sym__space, + STATE(4775), 1, sym_comment, - ACTIONS(8117), 13, + ACTIONS(1927), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385244,46 +386693,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [176076] = 15, + [178607] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7679), 1, + ACTIONS(5539), 1, + anon_sym_LPAREN2, + ACTIONS(8053), 1, + anon_sym_DASH2, + STATE(4776), 1, + sym_comment, + STATE(8050), 1, + sym__expr_parenthesized_immediate, + ACTIONS(8051), 11, + anon_sym_EQ, sym_identifier, - ACTIONS(7685), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7687), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7689), 1, anon_sym_DASH_DASH, - ACTIONS(7691), 1, - anon_sym_DASH2, - ACTIONS(8119), 1, - anon_sym_RPAREN, - STATE(4096), 1, - sym_param_long_flag, - STATE(4235), 1, - sym__param_name, - STATE(4604), 1, - aux_sym_parameter_parens_repeat1, - STATE(4806), 1, - sym_comment, - STATE(5099), 1, - sym_param_rest, - STATE(5100), 1, - sym_param_opt, - STATE(5139), 1, - sym_param_short_flag, - STATE(5567), 1, - sym_parameter, - [176122] = 4, + [178636] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4807), 1, - sym_comment, - ACTIONS(2349), 2, - ts_builtin_sym_end, + ACTIONS(1944), 1, sym__space, - ACTIONS(2347), 11, + STATE(4777), 1, + sym_comment, + ACTIONS(1942), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385295,15 +386735,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176146] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [178661] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4808), 1, + STATE(4778), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(5128), 14, ts_builtin_sym_end, - sym__space, - ACTIONS(2347), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385315,15 +386755,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176170] = 4, + anon_sym_else, + anon_sym_catch, + [178684] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4809), 1, - sym_comment, - ACTIONS(2506), 2, - ts_builtin_sym_end, + ACTIONS(2492), 1, sym__space, - ACTIONS(2504), 11, + STATE(4779), 1, + sym_comment, + ACTIONS(2490), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385335,16 +386776,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176194] = 5, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [178709] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(8121), 1, - sym__newline, - STATE(4810), 1, + STATE(4780), 1, sym_comment, - ACTIONS(8123), 11, + ACTIONS(1008), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(1006), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385355,58 +386799,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [176220] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7873), 1, - aux_sym__immediate_decimal_token2, - STATE(4811), 1, - sym_comment, - ACTIONS(1607), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1609), 9, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [176246] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8125), 1, - aux_sym__immediate_decimal_token2, - STATE(4812), 1, - sym_comment, - ACTIONS(1673), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1675), 9, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [176272] = 4, + [178734] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4813), 1, - sym_comment, - ACTIONS(2165), 2, - ts_builtin_sym_end, + ACTIONS(2036), 1, sym__space, - ACTIONS(2159), 11, + STATE(4781), 1, + sym_comment, + ACTIONS(2034), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385418,36 +386818,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176296] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4814), 1, - sym_comment, - ACTIONS(1607), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1609), 10, - sym__newline, - anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [176320] = 5, - ACTIONS(247), 1, + [178759] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(8127), 1, - sym__newline, - STATE(4815), 1, + ACTIONS(2369), 1, + sym__space, + STATE(4782), 1, sym_comment, - ACTIONS(8129), 11, + ACTIONS(2367), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385458,16 +386839,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - [176346] = 4, + [178784] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4816), 1, - sym_comment, - ACTIONS(2494), 2, - ts_builtin_sym_end, + ACTIONS(2381), 1, sym__space, - ACTIONS(2492), 11, + STATE(4783), 1, + sym_comment, + ACTIONS(2379), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385479,15 +386860,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176370] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [178809] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4817), 1, - sym_comment, - ACTIONS(2510), 2, - ts_builtin_sym_end, + ACTIONS(2040), 1, sym__space, - ACTIONS(2508), 11, + STATE(4784), 1, + sym_comment, + ACTIONS(2038), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385499,196 +386881,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176394] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4818), 1, - sym_comment, - ACTIONS(1621), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1623), 10, - sym__newline, - anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [176418] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(8131), 1, - anon_sym_DOLLAR, - ACTIONS(8133), 1, - anon_sym_DASH_DASH, - ACTIONS(8135), 1, - anon_sym_DASH2, - ACTIONS(8137), 1, - anon_sym_LBRACE, - STATE(1792), 1, - sym_block, - STATE(1793), 1, - sym_val_closure, - STATE(4819), 1, - sym_comment, - STATE(5011), 1, - aux_sym_ctrl_do_repeat1, - STATE(6126), 1, - sym__flag, - STATE(778), 2, - sym__blosure, - sym_val_variable, - STATE(6104), 2, - sym_short_flag, - sym_long_flag, - [176460] = 4, - ACTIONS(247), 1, + [178834] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4820), 1, + ACTIONS(1901), 1, + sym__space, + STATE(4785), 1, sym_comment, - ACTIONS(1673), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1675), 10, + ACTIONS(1899), 13, sym__newline, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [176484] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7679), 1, - sym_identifier, - ACTIONS(7685), 1, - anon_sym_DOLLAR, - ACTIONS(7687), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7689), 1, - anon_sym_DASH_DASH, - ACTIONS(7691), 1, - anon_sym_DASH2, - ACTIONS(7713), 1, - anon_sym_RBRACK, - STATE(4096), 1, - sym_param_long_flag, - STATE(4235), 1, - sym__param_name, - STATE(4604), 1, - aux_sym_parameter_parens_repeat1, - STATE(4821), 1, - sym_comment, - STATE(5099), 1, - sym_param_rest, - STATE(5100), 1, - sym_param_opt, - STATE(5139), 1, - sym_param_short_flag, - STATE(5567), 1, - sym_parameter, - [176530] = 4, - ACTIONS(247), 1, + [178859] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4822), 1, + ACTIONS(2450), 1, + sym__space, + STATE(4786), 1, sym_comment, - ACTIONS(1763), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1765), 10, + ACTIONS(2448), 13, sym__newline, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [176554] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7679), 1, - sym_identifier, - ACTIONS(7685), 1, - anon_sym_DOLLAR, - ACTIONS(7687), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7689), 1, - anon_sym_DASH_DASH, - ACTIONS(7691), 1, - anon_sym_DASH2, - ACTIONS(7715), 1, - anon_sym_RPAREN, - STATE(4096), 1, - sym_param_long_flag, - STATE(4235), 1, - sym__param_name, - STATE(4604), 1, - aux_sym_parameter_parens_repeat1, - STATE(4823), 1, - sym_comment, - STATE(5099), 1, - sym_param_rest, - STATE(5100), 1, - sym_param_opt, - STATE(5139), 1, - sym_param_short_flag, - STATE(5567), 1, - sym_parameter, - [176600] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1530), 1, anon_sym_RBRACE, - ACTIONS(1544), 1, - sym__entry_separator, - ACTIONS(1546), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(3097), 1, - anon_sym_DOLLAR, - ACTIONS(8139), 1, - anon_sym_LPAREN2, - ACTIONS(8141), 1, - anon_sym_DOT, - ACTIONS(8143), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8145), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8147), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8149), 1, - aux_sym__immediate_decimal_token5, - STATE(4824), 1, - sym_comment, - STATE(5627), 1, - sym__immediate_decimal, - STATE(5811), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [176644] = 4, + [178884] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4825), 1, - sym_comment, - ACTIONS(2092), 2, - ts_builtin_sym_end, + ACTIONS(2454), 1, sym__space, - ACTIONS(2090), 11, + STATE(4787), 1, + sym_comment, + ACTIONS(2452), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385700,15 +386944,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176668] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [178909] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4826), 1, - sym_comment, - ACTIONS(2385), 2, - ts_builtin_sym_end, + ACTIONS(1909), 1, sym__space, - ACTIONS(2383), 11, + STATE(4788), 1, + sym_comment, + ACTIONS(1907), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385720,15 +386965,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176692] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [178934] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4827), 1, - sym_comment, - ACTIONS(2482), 2, - ts_builtin_sym_end, + ACTIONS(2420), 1, sym__space, - ACTIONS(2480), 11, + STATE(4789), 1, + sym_comment, + ACTIONS(2418), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385740,15 +386986,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176716] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [178959] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4828), 1, - sym_comment, - ACTIONS(2466), 2, - ts_builtin_sym_end, + ACTIONS(2470), 1, sym__space, - ACTIONS(2464), 11, + STATE(4790), 1, + sym_comment, + ACTIONS(2468), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385760,15 +387007,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176740] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [178984] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4829), 1, - sym_comment, - ACTIONS(2470), 2, - ts_builtin_sym_end, + ACTIONS(2484), 1, sym__space, - ACTIONS(2468), 11, + STATE(4791), 1, + sym_comment, + ACTIONS(2482), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385780,15 +387028,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176764] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179009] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4830), 1, - sym_comment, - ACTIONS(2377), 2, - ts_builtin_sym_end, + ACTIONS(1719), 1, sym__space, - ACTIONS(2375), 11, + STATE(4792), 1, + sym_comment, + ACTIONS(1707), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385800,14 +387049,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176788] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179034] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6048), 1, + ACTIONS(2322), 1, anon_sym_DASH2, - STATE(4831), 1, + ACTIONS(8055), 1, + anon_sym_LBRACK2, + STATE(4793), 1, sym_comment, - ACTIONS(6050), 12, + ACTIONS(2326), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385819,17 +387072,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [176812] = 4, + anon_sym_LBRACE, + [179061] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4832), 1, - sym_comment, - ACTIONS(2173), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2167), 11, + ACTIONS(7886), 1, sym__newline, + ACTIONS(7888), 1, + sym__space, + STATE(4657), 1, + aux_sym__command_parenthesized_repeat1, + STATE(4794), 1, + sym_comment, + ACTIONS(8057), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385840,15 +387095,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176836] = 4, + anon_sym_RPAREN, + [179090] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4833), 1, - sym_comment, - ACTIONS(2139), 2, - ts_builtin_sym_end, + ACTIONS(2365), 1, sym__space, - ACTIONS(2133), 11, + STATE(4795), 1, + sym_comment, + ACTIONS(2363), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385860,15 +387115,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176860] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179115] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4834), 1, + ACTIONS(8061), 1, + anon_sym_DASH2, + STATE(4796), 1, + sym_comment, + ACTIONS(8059), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [179139] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7667), 1, + sym_identifier, + ACTIONS(7673), 1, + anon_sym_DOLLAR, + ACTIONS(7675), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7677), 1, + anon_sym_DASH_DASH, + ACTIONS(7679), 1, + anon_sym_DASH2, + ACTIONS(8063), 1, + anon_sym_RPAREN, + STATE(4134), 1, + sym_param_long_flag, + STATE(4234), 1, + sym__param_name, + STATE(4614), 1, + aux_sym_parameter_parens_repeat1, + STATE(4797), 1, + sym_comment, + STATE(5010), 1, + sym_param_rest, + STATE(5134), 1, + sym_param_opt, + STATE(5174), 1, + sym_param_short_flag, + STATE(5550), 1, + sym_parameter, + [179185] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8067), 1, + anon_sym_DASH2, + STATE(4798), 1, + sym_comment, + ACTIONS(8065), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [179209] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8069), 1, + anon_sym_catch, + STATE(4799), 1, sym_comment, - ACTIONS(5143), 2, + ACTIONS(7882), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(5145), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385880,15 +387208,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176884] = 4, + [179233] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4835), 1, + STATE(4800), 1, sym_comment, - ACTIONS(5128), 2, + ACTIONS(2369), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5130), 11, + ACTIONS(2367), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385900,15 +387228,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176908] = 4, - ACTIONS(3), 1, + [179257] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4836), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4801), 1, sym_comment, - ACTIONS(2401), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2399), 11, + ACTIONS(8071), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385920,15 +387247,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176932] = 4, + anon_sym_RPAREN, + [179281] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1887), 1, + anon_sym_DASH2, + STATE(4802), 1, + sym_comment, + ACTIONS(1889), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [179305] = 14, ACTIONS(3), 1, anon_sym_POUND, - STATE(4837), 1, + ACTIONS(1543), 1, + anon_sym_RBRACE, + ACTIONS(1557), 1, + sym__entry_separator, + ACTIONS(1559), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(3097), 1, + anon_sym_DOLLAR, + ACTIONS(8073), 1, + anon_sym_LPAREN2, + ACTIONS(8075), 1, + anon_sym_DOT, + ACTIONS(8077), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8079), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8081), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8083), 1, + aux_sym__immediate_decimal_token5, + STATE(4803), 1, sym_comment, - ACTIONS(2474), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2472), 11, + STATE(5722), 1, + sym__immediate_decimal, + STATE(5966), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [179349] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4804), 1, + sym_comment, + ACTIONS(6823), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385940,15 +387315,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176956] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179371] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4838), 1, + STATE(4805), 1, sym_comment, - ACTIONS(2478), 2, + ACTIONS(2381), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2476), 11, + ACTIONS(2379), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385960,15 +387337,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176980] = 4, - ACTIONS(3), 1, + [179395] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4839), 1, + STATE(4806), 1, sym_comment, - ACTIONS(2373), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2371), 11, + ACTIONS(8085), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385980,15 +387354,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177004] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179417] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4840), 1, + STATE(4807), 1, sym_comment, - ACTIONS(2490), 2, + ACTIONS(2040), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2488), 11, + ACTIONS(2038), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386000,15 +387376,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177028] = 4, - ACTIONS(3), 1, + [179441] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4841), 1, + STATE(4808), 1, sym_comment, - ACTIONS(5096), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5098), 11, + ACTIONS(8087), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386020,15 +387393,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177052] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179463] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4842), 1, + STATE(4809), 1, sym_comment, - ACTIONS(5100), 2, + ACTIONS(5693), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5102), 11, + ACTIONS(5691), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386040,15 +387415,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177076] = 4, + [179487] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7667), 1, + sym_identifier, + ACTIONS(7673), 1, + anon_sym_DOLLAR, + ACTIONS(7675), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7677), 1, + anon_sym_DASH_DASH, + ACTIONS(7679), 1, + anon_sym_DASH2, + ACTIONS(7779), 1, + anon_sym_PIPE, + STATE(4134), 1, + sym_param_long_flag, + STATE(4234), 1, + sym__param_name, + STATE(4614), 1, + aux_sym_parameter_parens_repeat1, + STATE(4810), 1, + sym_comment, + STATE(5010), 1, + sym_param_rest, + STATE(5134), 1, + sym_param_opt, + STATE(5174), 1, + sym_param_short_flag, + STATE(5550), 1, + sym_parameter, + [179533] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4843), 1, + STATE(4811), 1, sym_comment, - ACTIONS(2498), 2, + ACTIONS(1901), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2496), 11, + ACTIONS(1899), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386060,15 +387466,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177100] = 4, + [179557] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4844), 1, + STATE(4812), 1, sym_comment, - ACTIONS(2393), 2, + ACTIONS(2450), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2391), 11, + ACTIONS(2448), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386080,15 +387486,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177124] = 4, + [179581] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4845), 1, + STATE(4813), 1, sym_comment, - ACTIONS(2415), 2, + ACTIONS(2377), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2413), 11, + ACTIONS(2375), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386100,15 +387506,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177148] = 4, + [179605] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4846), 1, + STATE(4814), 1, sym_comment, - ACTIONS(2423), 2, + ACTIONS(2454), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2421), 11, + ACTIONS(2452), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386120,15 +387526,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177172] = 4, + [179629] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4847), 1, + STATE(4815), 1, sym_comment, - ACTIONS(2427), 2, + ACTIONS(1909), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2425), 11, + ACTIONS(1907), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386140,15 +387546,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177196] = 4, + [179653] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8091), 1, + anon_sym_DASH2, + STATE(4816), 1, + sym_comment, + ACTIONS(8089), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [179677] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4848), 1, + STATE(4817), 1, sym_comment, - ACTIONS(2431), 2, + ACTIONS(7902), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2429), 11, + ACTIONS(7900), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386160,15 +387586,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177220] = 4, + [179701] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2343), 1, + anon_sym_DASH2, + STATE(4818), 1, + sym_comment, + ACTIONS(2345), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [179725] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4849), 1, + STATE(4819), 1, sym_comment, - ACTIONS(2435), 2, + ACTIONS(7861), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2433), 11, + ACTIONS(7859), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386180,15 +387626,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177244] = 4, + [179749] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4820), 1, + sym_comment, + ACTIONS(1006), 2, + anon_sym_DASH2, + anon_sym_DOT, + ACTIONS(1008), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [179773] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4850), 1, + STATE(4821), 1, sym_comment, - ACTIONS(2443), 2, + ACTIONS(7445), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2441), 11, + ACTIONS(7443), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386200,15 +387666,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177268] = 4, + [179797] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2440), 1, + anon_sym_DASH2, + STATE(4822), 1, + sym_comment, + ACTIONS(2442), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [179821] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4851), 1, + STATE(4823), 1, sym_comment, - ACTIONS(1950), 2, + ACTIONS(7865), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1948), 11, + ACTIONS(7863), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386220,15 +387706,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177292] = 4, + [179845] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4852), 1, + STATE(4824), 1, sym_comment, - ACTIONS(2389), 2, + ACTIONS(2470), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2387), 11, + ACTIONS(2468), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386240,15 +387726,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177316] = 4, + [179869] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4853), 1, + STATE(4825), 1, sym_comment, - ACTIONS(2369), 2, + ACTIONS(2484), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2367), 11, + ACTIONS(2482), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386260,15 +387746,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177340] = 4, - ACTIONS(3), 1, + [179893] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4854), 1, + STATE(4826), 1, sym_comment, - ACTIONS(1974), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1972), 11, + STATE(4855), 1, + aux_sym_shebang_repeat1, + ACTIONS(8093), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386280,15 +387765,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177364] = 4, + anon_sym_RPAREN, + [179917] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4855), 1, + STATE(4827), 1, sym_comment, - ACTIONS(1990), 2, + ACTIONS(7869), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1988), 11, + ACTIONS(7867), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386300,35 +387786,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177388] = 4, - ACTIONS(3), 1, + [179941] = 11, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4856), 1, + ACTIONS(1559), 1, + aux_sym_unquoted_token2, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(8095), 1, + anon_sym_DOLLAR, + ACTIONS(8099), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8101), 1, + aux_sym__immediate_decimal_token5, + STATE(4828), 1, sym_comment, - ACTIONS(1994), 2, - ts_builtin_sym_end, + STATE(6308), 1, + sym__immediate_decimal, + ACTIONS(8097), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3451), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1557), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [179979] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4033), 1, + anon_sym_DOLLAR, + ACTIONS(8103), 1, + sym__newline, + ACTIONS(8105), 1, sym__space, - ACTIONS(1992), 11, + ACTIONS(8107), 1, + anon_sym_DASH_DASH, + ACTIONS(8109), 1, + anon_sym_DASH2, + ACTIONS(8111), 1, + anon_sym_LBRACE, + STATE(1770), 1, + sym_block, + STATE(1772), 1, + sym_val_closure, + STATE(4829), 1, + sym_comment, + STATE(5649), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(792), 2, + sym__blosure, + sym_val_variable, + STATE(7564), 2, + sym_short_flag, + sym_long_flag, + [180021] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6060), 1, + anon_sym_DASH2, + STATE(4830), 1, + sym_comment, + ACTIONS(6062), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [177412] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [180045] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4857), 1, + STATE(4831), 1, sym_comment, - ACTIONS(2439), 2, + ACTIONS(7873), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2437), 11, + ACTIONS(7871), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386340,15 +387882,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177436] = 4, + [180069] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4858), 1, + STATE(4832), 1, sym_comment, - ACTIONS(2006), 2, + ACTIONS(7880), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2004), 11, + ACTIONS(7878), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386360,15 +387902,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177460] = 4, + [180093] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4859), 1, - sym_comment, - ACTIONS(2458), 2, - ts_builtin_sym_end, + ACTIONS(8115), 1, sym__space, - ACTIONS(2456), 11, + STATE(4833), 1, + sym_comment, + ACTIONS(8113), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386380,15 +387921,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177484] = 4, + anon_sym_RPAREN, + [180117] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2464), 1, + anon_sym_DASH2, + STATE(4834), 1, + sym_comment, + ACTIONS(2466), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [180141] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1915), 1, + anon_sym_DASH2, + STATE(4835), 1, + sym_comment, + ACTIONS(1917), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [180165] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2464), 1, + anon_sym_DASH2, + STATE(4836), 1, + sym_comment, + ACTIONS(2466), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [180189] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4860), 1, + STATE(4837), 1, sym_comment, - ACTIONS(2462), 2, + ACTIONS(1865), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2460), 11, + ACTIONS(1863), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386400,15 +388002,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177508] = 4, + [180213] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2478), 1, + anon_sym_DASH2, + STATE(4838), 1, + sym_comment, + ACTIONS(2480), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [180237] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4861), 1, + STATE(4839), 1, sym_comment, - ACTIONS(2070), 2, + ACTIONS(5083), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2068), 11, + ACTIONS(5085), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386420,15 +388042,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177532] = 4, + [180261] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4862), 1, + STATE(4840), 1, sym_comment, - ACTIONS(1911), 2, + ACTIONS(7587), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1907), 11, + ACTIONS(7585), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386440,16 +388062,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177556] = 4, - ACTIONS(3), 1, + [180285] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4863), 1, - sym_comment, - ACTIONS(2345), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2343), 11, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(8117), 1, sym__newline, + STATE(4841), 1, + sym_comment, + ACTIONS(8085), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386460,15 +388082,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177580] = 4, + anon_sym_RBRACE, + [180311] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4864), 1, + STATE(4842), 1, sym_comment, - ACTIONS(2353), 2, + ACTIONS(2458), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2351), 11, + ACTIONS(2456), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386480,12 +388103,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177604] = 3, - ACTIONS(247), 1, + [180335] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4865), 1, + STATE(4843), 1, sym_comment, - ACTIONS(8151), 13, + ACTIONS(2400), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2398), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386497,17 +388123,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [177626] = 4, + [180359] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4866), 1, + STATE(4844), 1, sym_comment, - ACTIONS(1915), 2, + ACTIONS(1719), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1913), 11, + ACTIONS(1707), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386519,15 +388143,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177650] = 4, + [180383] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4867), 1, + STATE(4845), 1, sym_comment, - ACTIONS(2357), 2, + ACTIONS(2412), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2355), 11, + ACTIONS(2410), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386539,15 +388163,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177674] = 4, + [180407] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7965), 1, + aux_sym__immediate_decimal_token2, + STATE(4846), 1, + sym_comment, + ACTIONS(1573), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1575), 9, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [180433] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4868), 1, + STATE(4847), 1, sym_comment, - ACTIONS(2361), 2, + ACTIONS(2420), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2359), 11, + ACTIONS(2418), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386559,15 +388204,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177698] = 4, + [180457] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2347), 1, + anon_sym_DASH2, + STATE(4848), 1, + sym_comment, + ACTIONS(2349), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [180481] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2402), 1, + anon_sym_DASH2, + STATE(4849), 1, + sym_comment, + ACTIONS(2404), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [180505] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7667), 1, + sym_identifier, + ACTIONS(7673), 1, + anon_sym_DOLLAR, + ACTIONS(7675), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7677), 1, + anon_sym_DASH_DASH, + ACTIONS(7679), 1, + anon_sym_DASH2, + ACTIONS(8119), 1, + anon_sym_PIPE, + STATE(4134), 1, + sym_param_long_flag, + STATE(4234), 1, + sym__param_name, + STATE(4614), 1, + aux_sym_parameter_parens_repeat1, + STATE(4850), 1, + sym_comment, + STATE(5010), 1, + sym_param_rest, + STATE(5134), 1, + sym_param_opt, + STATE(5174), 1, + sym_param_short_flag, + STATE(5550), 1, + sym_parameter, + [180551] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4869), 1, + STATE(4851), 1, sym_comment, - ACTIONS(5685), 2, + ACTIONS(5689), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5683), 11, + ACTIONS(5687), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386579,15 +388295,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177722] = 4, + [180575] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4870), 1, + STATE(4852), 1, sym_comment, - ACTIONS(1721), 2, + ACTIONS(2446), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1709), 11, + ACTIONS(2444), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386599,34 +388315,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177746] = 4, - ACTIONS(3), 1, + [180599] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4871), 1, + ACTIONS(8121), 1, + aux_sym__immediate_decimal_token2, + STATE(4853), 1, sym_comment, - ACTIONS(2365), 2, + ACTIONS(1681), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1683), 9, ts_builtin_sym_end, - sym__space, - ACTIONS(2363), 11, sym__newline, anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [180625] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2472), 1, + anon_sym_DASH2, + STATE(4854), 1, + sym_comment, + ACTIONS(2474), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [177770] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [180649] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(4872), 1, + STATE(4855), 1, sym_comment, - ACTIONS(8153), 12, + ACTIONS(8123), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386639,12 +388376,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [177794] = 3, + [180673] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4873), 1, + ACTIONS(8127), 1, + anon_sym_DASH2, + STATE(4856), 1, + sym_comment, + ACTIONS(8125), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [180697] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4857), 1, + sym_comment, + ACTIONS(1573), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1575), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [180721] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4033), 1, + anon_sym_DOLLAR, + ACTIONS(8103), 1, + sym__newline, + ACTIONS(8105), 1, + sym__space, + ACTIONS(8107), 1, + anon_sym_DASH_DASH, + ACTIONS(8109), 1, + anon_sym_DASH2, + ACTIONS(8111), 1, + anon_sym_LBRACE, + STATE(1770), 1, + sym_block, + STATE(1772), 1, + sym_val_closure, + STATE(4858), 1, + sym_comment, + STATE(5649), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(790), 2, + sym__blosure, + sym_val_variable, + STATE(7564), 2, + sym_short_flag, + sym_long_flag, + [180763] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4859), 1, + sym_comment, + ACTIONS(1585), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1587), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [180787] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4860), 1, sym_comment, - ACTIONS(8001), 13, + ACTIONS(5144), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386658,14 +388484,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [177816] = 4, + [180809] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4788), 1, - aux_sym_shebang_repeat1, - STATE(4874), 1, + STATE(4861), 1, sym_comment, - ACTIONS(8155), 12, + ACTIONS(5148), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386678,15 +388502,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [177840] = 4, + anon_sym_RBRACE, + [180831] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4862), 1, + sym_comment, + ACTIONS(1681), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1683), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [180855] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4863), 1, + sym_comment, + ACTIONS(1761), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1763), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [180879] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4875), 1, + STATE(4864), 1, sym_comment, - ACTIONS(2096), 2, + ACTIONS(2432), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2094), 11, + ACTIONS(2430), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386698,14 +388563,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177864] = 4, + [180903] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8159), 1, - sym__space, - STATE(4876), 1, + STATE(4865), 1, sym_comment, - ACTIONS(8157), 12, + ACTIONS(5662), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5660), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386717,78 +388583,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [177888] = 15, + [180927] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7679), 1, - sym_identifier, - ACTIONS(7685), 1, - anon_sym_DOLLAR, - ACTIONS(7687), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7689), 1, - anon_sym_DASH_DASH, - ACTIONS(7691), 1, + ACTIONS(1707), 1, anon_sym_DASH2, - ACTIONS(7743), 1, - anon_sym_RBRACK, - STATE(4096), 1, - sym_param_long_flag, - STATE(4235), 1, - sym__param_name, - STATE(4604), 1, - aux_sym_parameter_parens_repeat1, - STATE(4877), 1, + ACTIONS(7293), 1, + aux_sym__unquoted_in_list_token2, + STATE(4866), 1, sym_comment, - STATE(5099), 1, - sym_param_rest, - STATE(5100), 1, - sym_param_opt, - STATE(5139), 1, - sym_param_short_flag, - STATE(5567), 1, - sym_parameter, - [177934] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7679), 1, + ACTIONS(1719), 11, + anon_sym_EQ, sym_identifier, - ACTIONS(7685), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7687), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7689), 1, anon_sym_DASH_DASH, - ACTIONS(7691), 1, - anon_sym_DASH2, - ACTIONS(7745), 1, - anon_sym_RPAREN, - STATE(4096), 1, - sym_param_long_flag, - STATE(4235), 1, - sym__param_name, - STATE(4604), 1, - aux_sym_parameter_parens_repeat1, - STATE(4878), 1, - sym_comment, - STATE(5099), 1, - sym_param_rest, - STATE(5100), 1, - sym_param_opt, - STATE(5139), 1, - sym_param_short_flag, - STATE(5567), 1, - sym_parameter, - [177980] = 4, + [180953] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4879), 1, + STATE(4867), 1, sym_comment, - ACTIONS(2502), 2, + ACTIONS(2404), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2500), 11, + ACTIONS(2402), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386800,15 +388624,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [178004] = 4, + [180977] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1707), 1, + anon_sym_DASH2, + ACTIONS(4722), 1, + anon_sym_DOT_DOT2, + ACTIONS(6450), 1, + aux_sym_unquoted_token2, + ACTIONS(8129), 1, + sym_filesize_unit, + ACTIONS(8131), 1, + sym_duration_unit, + STATE(4868), 1, + sym_comment, + ACTIONS(4724), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1719), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [181011] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6054), 1, + anon_sym_DASH2, + STATE(4869), 1, + sym_comment, + ACTIONS(6056), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [181035] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4880), 1, + STATE(4870), 1, sym_comment, - ACTIONS(7896), 2, + ACTIONS(5658), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7894), 11, + ACTIONS(5656), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386820,15 +388689,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [178028] = 4, - ACTIONS(3), 1, + [181059] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4881), 1, + STATE(4871), 1, sym_comment, - ACTIONS(2397), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2395), 11, + ACTIONS(8133), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386840,15 +388706,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [178052] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [181081] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4882), 1, + STATE(4872), 1, sym_comment, - ACTIONS(2405), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2403), 11, + ACTIONS(1010), 2, + anon_sym_DASH2, + anon_sym_DOT, + ACTIONS(1012), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [181105] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4873), 1, + sym_comment, + ACTIONS(1014), 2, + anon_sym_DASH2, + anon_sym_DOT, + ACTIONS(1016), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [181129] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4874), 1, + sym_comment, + ACTIONS(8135), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386860,15 +388765,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [178076] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [181151] = 15, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4883), 1, + ACTIONS(7667), 1, + sym_identifier, + ACTIONS(7671), 1, + anon_sym_RBRACK, + ACTIONS(7673), 1, + anon_sym_DOLLAR, + ACTIONS(7675), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7677), 1, + anon_sym_DASH_DASH, + ACTIONS(7679), 1, + anon_sym_DASH2, + STATE(4134), 1, + sym_param_long_flag, + STATE(4234), 1, + sym__param_name, + STATE(4614), 1, + aux_sym_parameter_parens_repeat1, + STATE(4875), 1, sym_comment, - ACTIONS(7439), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7437), 11, + STATE(5010), 1, + sym_param_rest, + STATE(5134), 1, + sym_param_opt, + STATE(5174), 1, + sym_param_short_flag, + STATE(5550), 1, + sym_parameter, + [181197] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(4876), 1, + sym_comment, + ACTIONS(8137), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386880,97 +388815,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [178100] = 15, + anon_sym_RPAREN, + anon_sym_RBRACE, + [181219] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7679), 1, + ACTIONS(1661), 1, + aux_sym_unquoted_token2, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(8095), 1, + anon_sym_DOLLAR, + ACTIONS(8099), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8101), 1, + aux_sym__immediate_decimal_token5, + STATE(4877), 1, + sym_comment, + STATE(6396), 1, + sym__immediate_decimal, + ACTIONS(8097), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3426), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1659), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [181257] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7667), 1, sym_identifier, - ACTIONS(7685), 1, + ACTIONS(7673), 1, anon_sym_DOLLAR, - ACTIONS(7687), 1, + ACTIONS(7675), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7689), 1, + ACTIONS(7677), 1, anon_sym_DASH_DASH, - ACTIONS(7691), 1, + ACTIONS(7679), 1, anon_sym_DASH2, - ACTIONS(8161), 1, + ACTIONS(8139), 1, anon_sym_RBRACK, - STATE(4096), 1, + STATE(4134), 1, sym_param_long_flag, - STATE(4235), 1, + STATE(4234), 1, sym__param_name, - STATE(4604), 1, + STATE(4614), 1, aux_sym_parameter_parens_repeat1, - STATE(4884), 1, + STATE(4878), 1, sym_comment, - STATE(5099), 1, + STATE(5010), 1, sym_param_rest, - STATE(5100), 1, + STATE(5134), 1, sym_param_opt, - STATE(5139), 1, + STATE(5174), 1, sym_param_short_flag, - STATE(5567), 1, + STATE(5550), 1, sym_parameter, - [178146] = 15, + [181303] = 15, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(7667), 1, + sym_identifier, + ACTIONS(7673), 1, + anon_sym_DOLLAR, + ACTIONS(7675), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7677), 1, + anon_sym_DASH_DASH, ACTIONS(7679), 1, + anon_sym_DASH2, + ACTIONS(7718), 1, + anon_sym_RPAREN, + STATE(4134), 1, + sym_param_long_flag, + STATE(4234), 1, + sym__param_name, + STATE(4614), 1, + aux_sym_parameter_parens_repeat1, + STATE(4879), 1, + sym_comment, + STATE(5010), 1, + sym_param_rest, + STATE(5134), 1, + sym_param_opt, + STATE(5174), 1, + sym_param_short_flag, + STATE(5550), 1, + sym_parameter, + [181349] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7667), 1, sym_identifier, - ACTIONS(7685), 1, + ACTIONS(7673), 1, anon_sym_DOLLAR, - ACTIONS(7687), 1, + ACTIONS(7675), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7689), 1, + ACTIONS(7677), 1, anon_sym_DASH_DASH, - ACTIONS(7691), 1, + ACTIONS(7679), 1, anon_sym_DASH2, - ACTIONS(8163), 1, + ACTIONS(8141), 1, anon_sym_RPAREN, - STATE(4096), 1, + STATE(4134), 1, sym_param_long_flag, - STATE(4235), 1, + STATE(4234), 1, sym__param_name, - STATE(4604), 1, + STATE(4614), 1, aux_sym_parameter_parens_repeat1, - STATE(4885), 1, + STATE(4880), 1, sym_comment, - STATE(5099), 1, + STATE(5010), 1, sym_param_rest, - STATE(5100), 1, + STATE(5134), 1, sym_param_opt, - STATE(5139), 1, + STATE(5174), 1, sym_param_short_flag, - STATE(5567), 1, + STATE(5550), 1, sym_parameter, - [178192] = 4, - ACTIONS(3), 1, + [181395] = 12, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4886), 1, + ACTIONS(1559), 1, + aux_sym_unquoted_token2, + ACTIONS(3593), 1, + anon_sym_DOLLAR, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(8143), 1, + anon_sym_DOT, + ACTIONS(8147), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8149), 1, + aux_sym__immediate_decimal_token5, + STATE(4881), 1, sym_comment, - ACTIONS(7900), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7898), 11, + STATE(5823), 1, + sym__immediate_decimal, + ACTIONS(1557), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(8145), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6018), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [181435] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2448), 1, + anon_sym_DASH2, + STATE(4882), 1, + sym_comment, + ACTIONS(2450), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [178216] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [181459] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4887), 1, + STATE(4883), 1, sym_comment, - ACTIONS(7922), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7920), 11, + ACTIONS(8151), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386982,35 +389002,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [178240] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [181481] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4888), 1, + ACTIONS(1707), 1, + anon_sym_DASH2, + STATE(4884), 1, sym_comment, - ACTIONS(7933), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7931), 11, + ACTIONS(1719), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [178264] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [181505] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4889), 1, + STATE(4885), 1, sym_comment, - ACTIONS(2409), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2407), 11, + ACTIONS(8153), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387022,15 +389041,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [178288] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [181527] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4890), 1, + STATE(4886), 1, sym_comment, - ACTIONS(7937), 2, + ACTIONS(2345), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7935), 11, + ACTIONS(2343), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387042,15 +389063,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [178312] = 4, - ACTIONS(3), 1, + [181551] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4891), 1, + STATE(4801), 1, + aux_sym_shebang_repeat1, + STATE(4887), 1, sym_comment, - ACTIONS(7606), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7604), 11, + ACTIONS(8155), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387062,15 +389082,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [178336] = 4, + anon_sym_RPAREN, + [181575] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4892), 1, + STATE(4888), 1, sym_comment, - ACTIONS(2381), 2, + ACTIONS(1028), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2379), 11, + ACTIONS(1026), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387082,15 +389103,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [178360] = 4, + [181599] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8159), 1, + anon_sym_DASH2, + STATE(4889), 1, + sym_comment, + ACTIONS(8157), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [181623] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8163), 1, + anon_sym_DASH2, + STATE(4890), 1, + sym_comment, + ACTIONS(8161), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [181647] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4893), 1, + STATE(4891), 1, sym_comment, - ACTIONS(7983), 2, + ACTIONS(2466), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7981), 11, + ACTIONS(2464), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387102,32 +389163,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [178384] = 4, + [181671] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4872), 1, - aux_sym_shebang_repeat1, - STATE(4894), 1, + ACTIONS(8023), 1, + anon_sym_DASH2, + STATE(4892), 1, sym_comment, - ACTIONS(8165), 12, + ACTIONS(8019), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [178408] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [181695] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4895), 1, + ACTIONS(2444), 1, + anon_sym_DASH2, + STATE(4893), 1, + sym_comment, + ACTIONS(2446), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [181719] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4894), 1, sym_comment, - ACTIONS(8167), 13, + ACTIONS(8045), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(8043), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387139,14 +389223,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178430] = 3, + [181743] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4896), 1, + STATE(4895), 1, sym_comment, - ACTIONS(8169), 13, + ACTIONS(8165), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387160,12 +389242,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [178452] = 3, - ACTIONS(247), 1, + [181765] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4897), 1, + STATE(4896), 1, sym_comment, - ACTIONS(8171), 13, + ACTIONS(2466), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2464), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387177,43 +389262,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178474] = 11, - ACTIONS(247), 1, + [181789] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1579), 1, - aux_sym_unquoted_token2, - ACTIONS(6205), 1, + ACTIONS(1543), 1, + anon_sym_RBRACK, + ACTIONS(1557), 1, + sym__entry_separator, + ACTIONS(1559), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(3097), 1, + anon_sym_DOLLAR, + ACTIONS(8073), 1, anon_sym_LPAREN2, + ACTIONS(8167), 1, + anon_sym_DOT, + ACTIONS(8169), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8171), 1, + aux_sym__immediate_decimal_token3, ACTIONS(8173), 1, - anon_sym_DOLLAR, - ACTIONS(8177), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8179), 1, + ACTIONS(8175), 1, aux_sym__immediate_decimal_token5, - STATE(4898), 1, + STATE(4897), 1, sym_comment, - STATE(6288), 1, + STATE(5685), 1, sym__immediate_decimal, - ACTIONS(8175), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3431), 2, + STATE(5966), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1577), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [178512] = 4, + [181833] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8183), 1, + ACTIONS(1863), 1, anon_sym_DASH2, - STATE(4899), 1, + STATE(4898), 1, sym_comment, - ACTIONS(8181), 12, + ACTIONS(1865), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -387223,15 +389309,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [178536] = 3, - ACTIONS(247), 1, + anon_sym_LBRACE, + [181857] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4899), 1, + sym_comment, + ACTIONS(2480), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2478), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [181881] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(4900), 1, sym_comment, - ACTIONS(8185), 13, + ACTIONS(2349), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2347), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387243,18 +389352,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178558] = 4, + [181905] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8187), 1, - anon_sym_catch, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(8177), 1, + sym__newline, STATE(4901), 1, sym_comment, - ACTIONS(8050), 12, - ts_builtin_sym_end, - sym__newline, + ACTIONS(8087), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387265,15 +389372,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [178582] = 4, + anon_sym_RBRACE, + [181931] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4902), 1, sym_comment, - ACTIONS(2108), 2, + ACTIONS(2385), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2106), 11, + ACTIONS(2383), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387285,15 +389393,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [178606] = 4, - ACTIONS(3), 1, + [181955] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(4903), 1, sym_comment, - ACTIONS(8001), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7999), 11, + ACTIONS(8179), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387305,14 +389410,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [178630] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [181977] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8189), 1, - anon_sym_else, + ACTIONS(1927), 1, + anon_sym_DASH2, STATE(4904), 1, sym_comment, - ACTIONS(8083), 12, + ACTIONS(1929), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [182001] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4905), 1, + sym_comment, + ACTIONS(5170), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5172), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387324,16 +389452,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [178654] = 4, + [182025] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4905), 1, + STATE(4906), 1, sym_comment, - ACTIONS(2514), 2, + ACTIONS(2128), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2512), 11, + ACTIONS(2122), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387345,15 +389472,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [178678] = 4, + [182049] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4906), 1, + STATE(4907), 1, sym_comment, - ACTIONS(7373), 2, + ACTIONS(5174), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7371), 11, + ACTIONS(5176), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387365,14 +389492,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [178702] = 4, + [182073] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1030), 1, + ACTIONS(8183), 1, anon_sym_DASH2, - STATE(4907), 1, + STATE(4908), 1, sym_comment, - ACTIONS(1032), 12, + ACTIONS(8181), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -387382,17 +389509,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [178726] = 4, + [182097] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2504), 1, + STATE(4909), 1, + sym_comment, + ACTIONS(8185), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [182119] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1942), 1, anon_sym_DASH2, - STATE(4908), 1, + STATE(4910), 1, sym_comment, - ACTIONS(2506), 12, + ACTIONS(1944), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -387405,45 +389551,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [178750] = 14, - ACTIONS(3), 1, + [182143] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1530), 1, - anon_sym_RBRACK, - ACTIONS(1544), 1, - sym__entry_separator, - ACTIONS(1546), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(3097), 1, - anon_sym_DOLLAR, - ACTIONS(8139), 1, - anon_sym_LPAREN2, - ACTIONS(8191), 1, - anon_sym_DOT, - ACTIONS(8193), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8195), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8197), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8199), 1, - aux_sym__immediate_decimal_token5, - STATE(4909), 1, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(8117), 1, + sym__newline, + STATE(4911), 1, sym_comment, - STATE(5711), 1, - sym__immediate_decimal, - STATE(5811), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [178794] = 4, - ACTIONS(3), 1, + ACTIONS(8085), 11, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, + [182169] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(4910), 1, + STATE(4912), 1, sym_comment, - ACTIONS(5697), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5695), 11, + ACTIONS(8045), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387455,12 +389589,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [178818] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [182191] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(4911), 1, + STATE(4913), 1, sym_comment, - ACTIONS(8201), 13, + ACTIONS(8187), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387474,101 +389610,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [178840] = 4, + [182213] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2090), 1, - anon_sym_DASH2, - STATE(4912), 1, + STATE(4914), 1, sym_comment, - ACTIONS(2092), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8189), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [178864] = 4, - ACTIONS(247), 1, + anon_sym_RBRACE, + [182235] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2383), 1, - anon_sym_DASH2, - STATE(4913), 1, + STATE(4915), 1, sym_comment, - ACTIONS(2385), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2442), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2440), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [178888] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [182259] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2480), 1, - anon_sym_DASH2, - STATE(4914), 1, + STATE(4916), 1, sym_comment, - ACTIONS(2482), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8191), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [178912] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1591), 1, - sym__entry_separator, - ACTIONS(3097), 1, - anon_sym_DOLLAR, - ACTIONS(8139), 1, - anon_sym_LPAREN2, - ACTIONS(8193), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8195), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8197), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8199), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8203), 1, - anon_sym_DOT, - STATE(4915), 1, - sym_comment, - STATE(5764), 1, - sym__immediate_decimal, - ACTIONS(1581), 2, - anon_sym_RBRACK, anon_sym_RBRACE, - STATE(5920), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [178954] = 3, - ACTIONS(247), 1, + [182281] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4916), 1, + STATE(4917), 1, sym_comment, - ACTIONS(8205), 13, + ACTIONS(2474), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2472), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387580,16 +389688,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178976] = 4, + [182305] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2399), 1, + ACTIONS(2390), 1, anon_sym_DASH2, - STATE(4917), 1, + STATE(4918), 1, sym_comment, - ACTIONS(2401), 12, + ACTIONS(2392), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -387602,34 +389708,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [179000] = 4, + [182329] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2488), 1, - anon_sym_DASH2, - STATE(4918), 1, + STATE(4919), 1, sym_comment, - ACTIONS(2490), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8193), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [179024] = 4, + anon_sym_RBRACE, + [182351] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2496), 1, + ACTIONS(2410), 1, anon_sym_DASH2, - STATE(4919), 1, + STATE(4920), 1, sym_comment, - ACTIONS(2498), 12, + ACTIONS(2412), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -387642,41 +389747,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [179048] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym_unquoted_token2, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(8173), 1, - anon_sym_DOLLAR, - ACTIONS(8177), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8179), 1, - aux_sym__immediate_decimal_token5, - STATE(4920), 1, - sym_comment, - STATE(6670), 1, - sym__immediate_decimal, - ACTIONS(8175), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3436), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1544), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [179086] = 4, + [182375] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1948), 1, + ACTIONS(2452), 1, anon_sym_DASH2, STATE(4921), 1, sym_comment, - ACTIONS(1950), 12, + ACTIONS(2454), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -387689,14 +389767,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [179110] = 4, + [182399] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2387), 1, + ACTIONS(2398), 1, anon_sym_DASH2, STATE(4922), 1, sym_comment, - ACTIONS(2389), 12, + ACTIONS(2400), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -387709,14 +389787,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [179134] = 4, + [182423] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2367), 1, + ACTIONS(1907), 1, anon_sym_DASH2, STATE(4923), 1, sym_comment, - ACTIONS(2369), 12, + ACTIONS(1909), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -387729,299 +389807,327 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [179158] = 4, + [182447] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1972), 1, - anon_sym_DASH2, STATE(4924), 1, sym_comment, - ACTIONS(1974), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8195), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [179182] = 4, - ACTIONS(247), 1, + anon_sym_RBRACE, + [182469] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1988), 1, - anon_sym_DASH2, STATE(4925), 1, sym_comment, - ACTIONS(1990), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2136), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2130), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [179206] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [182493] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1992), 1, - anon_sym_DASH2, STATE(4926), 1, sym_comment, - ACTIONS(1994), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8197), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [179230] = 9, - ACTIONS(247), 1, + anon_sym_RBRACE, + [182515] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1709), 1, - anon_sym_DASH2, - ACTIONS(4708), 1, - anon_sym_DOT_DOT2, - ACTIONS(6458), 1, - aux_sym_unquoted_token2, - ACTIONS(8207), 1, - sym_filesize_unit, - ACTIONS(8209), 1, - sym_duration_unit, STATE(4927), 1, sym_comment, - ACTIONS(4710), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1721), 6, + ACTIONS(2152), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2146), 11, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [179264] = 4, - ACTIONS(247), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [182539] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2437), 1, - anon_sym_DASH2, STATE(4928), 1, sym_comment, - ACTIONS(2439), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(5097), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5099), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [179288] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [182563] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2004), 1, - anon_sym_DASH2, STATE(4929), 1, sym_comment, - ACTIONS(2006), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(5119), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5121), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [179312] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [182587] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2456), 1, - anon_sym_DASH2, STATE(4930), 1, sym_comment, - ACTIONS(2458), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(6831), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [179336] = 4, - ACTIONS(247), 1, + anon_sym_RBRACE, + [182609] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2460), 1, - anon_sym_DASH2, STATE(4931), 1, sym_comment, - ACTIONS(2462), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2163), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2157), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [179360] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [182633] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2068), 1, - anon_sym_DASH2, - STATE(4932), 1, - sym_comment, - ACTIONS(2070), 12, - anon_sym_EQ, + ACTIONS(7667), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7673), 1, anon_sym_DOLLAR, + ACTIONS(7675), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7677), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [179384] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1907), 1, + ACTIONS(7679), 1, anon_sym_DASH2, + ACTIONS(8199), 1, + anon_sym_RBRACK, + STATE(4134), 1, + sym_param_long_flag, + STATE(4234), 1, + sym__param_name, + STATE(4614), 1, + aux_sym_parameter_parens_repeat1, + STATE(4932), 1, + sym_comment, + STATE(5010), 1, + sym_param_rest, + STATE(5134), 1, + sym_param_opt, + STATE(5174), 1, + sym_param_short_flag, + STATE(5550), 1, + sym_parameter, + [182679] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1603), 1, + sym__entry_separator, + ACTIONS(3097), 1, + anon_sym_DOLLAR, + ACTIONS(8073), 1, + anon_sym_LPAREN2, + ACTIONS(8169), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8171), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8173), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8175), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8201), 1, + anon_sym_DOT, STATE(4933), 1, sym_comment, - ACTIONS(1911), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + STATE(5958), 1, + sym__immediate_decimal, + ACTIONS(1593), 2, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [179408] = 4, - ACTIONS(247), 1, + anon_sym_RBRACE, + STATE(5955), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [182721] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2343), 1, - anon_sym_DASH2, STATE(4934), 1, sym_comment, - ACTIONS(2345), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(1917), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1915), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [179432] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [182745] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2351), 1, + ACTIONS(1543), 1, anon_sym_DASH2, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(6203), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6205), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6414), 1, + anon_sym_DOT, + ACTIONS(8203), 1, + anon_sym_DOLLAR, STATE(4935), 1, sym_comment, - ACTIONS(2353), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + STATE(6007), 1, + sym__immediate_decimal, + ACTIONS(1557), 2, anon_sym_DASH_DASH, anon_sym_LBRACE, - [179456] = 4, + ACTIONS(6201), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6012), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [182785] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1913), 1, - anon_sym_DASH2, + ACTIONS(8207), 1, + anon_sym_else, STATE(4936), 1, sym_comment, - ACTIONS(1915), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8205), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [179480] = 4, + [182809] = 12, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2355), 1, + ACTIONS(1593), 1, anon_sym_DASH2, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(6199), 1, + anon_sym_DOT, + ACTIONS(6203), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6205), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8203), 1, + anon_sym_DOLLAR, STATE(4937), 1, sym_comment, - ACTIONS(2357), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + STATE(6011), 1, + sym__immediate_decimal, + ACTIONS(1603), 2, anon_sym_DASH_DASH, anon_sym_LBRACE, - [179504] = 4, + ACTIONS(6201), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6010), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [182849] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2359), 1, + ACTIONS(2418), 1, anon_sym_DASH2, STATE(4938), 1, sym_comment, - ACTIONS(2361), 12, + ACTIONS(2420), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -388034,55 +390140,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [179528] = 4, + [182873] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1709), 1, - anon_sym_DASH2, + ACTIONS(8209), 1, + anon_sym_else, STATE(4939), 1, sym_comment, - ACTIONS(1721), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8205), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [179552] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, + [182897] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2363), 1, - anon_sym_DASH2, STATE(4940), 1, sym_comment, - ACTIONS(2365), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2416), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2414), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [179576] = 4, - ACTIONS(3), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [182921] = 4, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(8211), 1, + anon_sym_else, STATE(4941), 1, sym_comment, - ACTIONS(5689), 2, + ACTIONS(8205), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(5687), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388094,35 +390200,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [179600] = 4, - ACTIONS(247), 1, + [182945] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(4942), 1, sym_comment, - ACTIONS(1006), 2, - anon_sym_DASH2, - anon_sym_DOT, - ACTIONS(1008), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2424), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2422), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [179624] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [182969] = 4, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(2490), 1, + anon_sym_DASH2, STATE(4943), 1, sym_comment, - ACTIONS(1010), 2, - anon_sym_DASH2, - anon_sym_DOT, - ACTIONS(1012), 11, + ACTIONS(2492), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -388134,95 +390239,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [179648] = 4, - ACTIONS(247), 1, + anon_sym_LBRACE, + [182993] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(4944), 1, sym_comment, - ACTIONS(1014), 2, - anon_sym_DASH2, - anon_sym_DOT, - ACTIONS(1016), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2428), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2426), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [179672] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [183017] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8213), 1, - anon_sym_DASH2, STATE(4945), 1, sym_comment, - ACTIONS(8211), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2438), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2436), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [179696] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [183041] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2395), 1, - anon_sym_DASH2, STATE(4946), 1, sym_comment, - ACTIONS(2397), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2488), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2486), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [179720] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [183065] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2403), 1, - anon_sym_DASH2, STATE(4947), 1, sym_comment, - ACTIONS(2405), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2392), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2390), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [179744] = 4, - ACTIONS(3), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [183089] = 3, + ACTIONS(247), 1, anon_sym_POUND, STATE(4948), 1, sym_comment, - ACTIONS(5693), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5691), 11, + ACTIONS(8213), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388234,36 +390337,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [179768] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [183111] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2407), 1, - anon_sym_DASH2, + ACTIONS(7812), 1, + sym__newline, + ACTIONS(8215), 1, + anon_sym_else, STATE(4949), 1, sym_comment, - ACTIONS(2409), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(4950), 1, + aux_sym_shebang_repeat1, + ACTIONS(7815), 10, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [179792] = 4, - ACTIONS(3), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [183139] = 6, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(7911), 1, + sym__newline, + ACTIONS(8217), 1, + anon_sym_else, STATE(4950), 1, sym_comment, - ACTIONS(5681), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5679), 11, - sym__newline, + STATE(4953), 1, + aux_sym_shebang_repeat1, + ACTIONS(7914), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388274,16 +390383,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [179816] = 4, - ACTIONS(3), 1, + [183167] = 6, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(7918), 1, + sym__newline, + ACTIONS(8219), 1, + anon_sym_else, STATE(4951), 1, sym_comment, - ACTIONS(5162), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5164), 11, - sym__newline, + STATE(4954), 1, + aux_sym_shebang_repeat1, + ACTIONS(7921), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388294,53 +390405,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [179840] = 4, + [183195] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2347), 1, - anon_sym_DASH2, + ACTIONS(7925), 1, + sym__newline, + ACTIONS(8221), 1, + anon_sym_else, STATE(4952), 1, sym_comment, - ACTIONS(2349), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(4955), 1, + aux_sym_shebang_repeat1, + ACTIONS(7928), 10, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [179864] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [183223] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2347), 1, - anon_sym_DASH2, + ACTIONS(5125), 1, + sym__newline, + ACTIONS(8223), 1, + anon_sym_else, + STATE(1761), 1, + aux_sym_shebang_repeat1, STATE(4953), 1, sym_comment, - ACTIONS(2349), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, + ACTIONS(1296), 10, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [179888] = 3, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [183251] = 6, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(7970), 1, + sym__newline, + ACTIONS(8226), 1, + anon_sym_else, STATE(4954), 1, sym_comment, - ACTIONS(8123), 13, - sym__newline, + STATE(4957), 1, + aux_sym_shebang_repeat1, + ACTIONS(7973), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388351,15 +390471,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179910] = 3, + [183279] = 6, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(7981), 1, + sym__newline, + ACTIONS(8228), 1, + anon_sym_else, STATE(4955), 1, sym_comment, - ACTIONS(8129), 13, - sym__newline, + STATE(4958), 1, + aux_sym_shebang_repeat1, + ACTIONS(7984), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388370,15 +390493,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179932] = 3, + [183307] = 6, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(7988), 1, + sym__newline, + ACTIONS(8230), 1, + anon_sym_else, STATE(4956), 1, sym_comment, - ACTIONS(5120), 13, - sym__newline, + STATE(4959), 1, + aux_sym_shebang_repeat1, + ACTIONS(7991), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388389,18 +390515,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179954] = 5, + [183335] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(8121), 1, + ACTIONS(5125), 1, sym__newline, + ACTIONS(8232), 1, + anon_sym_else, + STATE(1761), 1, + aux_sym_shebang_repeat1, STATE(4957), 1, sym_comment, - ACTIONS(8123), 11, + ACTIONS(1296), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388411,17 +390537,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [179980] = 5, + [183363] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(8127), 1, + ACTIONS(5125), 1, sym__newline, + ACTIONS(8235), 1, + anon_sym_else, + STATE(1761), 1, + aux_sym_shebang_repeat1, STATE(4958), 1, sym_comment, - ACTIONS(8129), 11, + ACTIONS(1296), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388432,82 +390559,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [180006] = 13, + [183391] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(8131), 1, - anon_sym_DOLLAR, - ACTIONS(8133), 1, - anon_sym_DASH_DASH, - ACTIONS(8135), 1, - anon_sym_DASH2, - ACTIONS(8137), 1, - anon_sym_LBRACE, - STATE(1792), 1, - sym_block, - STATE(1793), 1, - sym_val_closure, + ACTIONS(8028), 1, + sym__newline, + ACTIONS(8238), 1, + anon_sym_else, STATE(4959), 1, sym_comment, - STATE(5011), 1, - aux_sym_ctrl_do_repeat1, - STATE(6126), 1, - sym__flag, - STATE(778), 2, - sym__blosure, - sym_val_variable, - STATE(6104), 2, - sym_short_flag, - sym_long_flag, - [180048] = 4, + STATE(4960), 1, + aux_sym_shebang_repeat1, + ACTIONS(8031), 10, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [183419] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2492), 1, - anon_sym_DASH2, + ACTIONS(5125), 1, + sym__newline, + ACTIONS(8240), 1, + anon_sym_else, + STATE(1761), 1, + aux_sym_shebang_repeat1, STATE(4960), 1, sym_comment, - ACTIONS(2494), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, + ACTIONS(1296), 10, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [180072] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [183447] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2508), 1, - anon_sym_DASH2, + ACTIONS(3593), 1, + anon_sym_DOLLAR, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(6199), 1, + anon_sym_DOT, + ACTIONS(6203), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6205), 1, + aux_sym__immediate_decimal_token5, STATE(4961), 1, sym_comment, - ACTIONS(2510), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(6017), 1, + sym__immediate_decimal, + ACTIONS(6201), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6016), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1603), 3, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [180096] = 3, - ACTIONS(247), 1, + anon_sym_if, + anon_sym_EQ_GT, + [183485] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(4962), 1, sym_comment, - ACTIONS(5124), 13, + ACTIONS(1855), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1853), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388519,14 +390650,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [180118] = 3, - ACTIONS(247), 1, + [183509] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(4963), 1, sym_comment, - ACTIONS(8215), 13, + ACTIONS(2373), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2371), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388538,14 +390670,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [180140] = 3, - ACTIONS(247), 1, + [183533] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(4964), 1, sym_comment, - ACTIONS(8217), 13, + ACTIONS(5132), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5134), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388557,14 +390690,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [180162] = 3, + [183557] = 4, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(2034), 1, + anon_sym_DASH2, STATE(4965), 1, sym_comment, - ACTIONS(8219), 13, + ACTIONS(2036), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [183581] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4966), 1, + sym_comment, + ACTIONS(1929), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1927), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388576,14 +390730,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [180184] = 3, - ACTIONS(247), 1, + [183605] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4966), 1, + STATE(4967), 1, sym_comment, - ACTIONS(8221), 13, + ACTIONS(7373), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7371), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388595,14 +390750,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [180206] = 3, + [183629] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(4967), 1, + ACTIONS(2367), 1, + anon_sym_DASH2, + STATE(4968), 1, + sym_comment, + ACTIONS(2369), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [183653] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4969), 1, sym_comment, - ACTIONS(6833), 13, + ACTIONS(5136), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5138), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388614,44 +390790,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [180228] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1530), 1, - anon_sym_DASH2, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(6211), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6435), 1, - anon_sym_DOT, - ACTIONS(8223), 1, - anon_sym_DOLLAR, - STATE(4968), 1, - sym_comment, - STATE(5969), 1, - sym__immediate_decimal, - ACTIONS(1544), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(6209), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5974), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [180268] = 4, - ACTIONS(247), 1, + [183677] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8225), 1, - anon_sym_else, - STATE(4969), 1, + STATE(4970), 1, sym_comment, - ACTIONS(8083), 12, + ACTIONS(2408), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2406), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388663,43 +390810,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [180292] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1581), 1, - anon_sym_DASH2, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(6207), 1, - anon_sym_DOT, - ACTIONS(6211), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8223), 1, - anon_sym_DOLLAR, - STATE(4970), 1, - sym_comment, - STATE(5973), 1, - sym__immediate_decimal, - ACTIONS(1591), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(6209), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5972), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [180332] = 4, + [183701] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2464), 1, + ACTIONS(2379), 1, anon_sym_DASH2, STATE(4971), 1, sym_comment, - ACTIONS(2466), 12, + ACTIONS(2381), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -388712,14 +390830,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [180356] = 4, + [183725] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2468), 1, + ACTIONS(2406), 1, anon_sym_DASH2, STATE(4972), 1, sym_comment, - ACTIONS(2470), 12, + ACTIONS(2408), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -388732,18 +390850,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [180380] = 6, - ACTIONS(247), 1, + [183749] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7833), 1, - sym__newline, - ACTIONS(8227), 1, - anon_sym_else, STATE(4973), 1, sym_comment, - STATE(4974), 1, - aux_sym_shebang_repeat1, - ACTIONS(7836), 10, + ACTIONS(1944), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1942), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388754,84 +390870,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180408] = 6, + [183773] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7985), 1, - sym__newline, - ACTIONS(8229), 1, - anon_sym_else, + ACTIONS(2486), 1, + anon_sym_DASH2, STATE(4974), 1, sym_comment, - STATE(4977), 1, - aux_sym_shebang_repeat1, - ACTIONS(7988), 10, - anon_sym_SEMI, + ACTIONS(2488), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [180436] = 6, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [183797] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7880), 1, - sym__newline, - ACTIONS(8231), 1, - anon_sym_else, + ACTIONS(2468), 1, + anon_sym_DASH2, STATE(4975), 1, sym_comment, - STATE(4978), 1, - aux_sym_shebang_repeat1, - ACTIONS(7883), 10, - anon_sym_SEMI, + ACTIONS(2470), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [180464] = 6, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [183821] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7887), 1, - sym__newline, - ACTIONS(8233), 1, - anon_sym_else, + ACTIONS(8245), 1, + anon_sym_DASH2, STATE(4976), 1, sym_comment, - STATE(4979), 1, - aux_sym_shebang_repeat1, - ACTIONS(7890), 10, - anon_sym_SEMI, + ACTIONS(8243), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [180492] = 6, - ACTIONS(247), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [183845] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5149), 1, - sym__newline, - ACTIONS(8235), 1, - anon_sym_else, - STATE(1816), 1, - aux_sym_shebang_repeat1, STATE(4977), 1, sym_comment, - ACTIONS(1296), 10, + ACTIONS(2496), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2494), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388842,18 +390950,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180520] = 6, - ACTIONS(247), 1, + [183869] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8014), 1, - sym__newline, - ACTIONS(8238), 1, - anon_sym_else, STATE(4978), 1, sym_comment, - STATE(4981), 1, - aux_sym_shebang_repeat1, - ACTIONS(8017), 10, + ACTIONS(5681), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5679), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388864,18 +390970,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180548] = 6, - ACTIONS(247), 1, + [183893] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7974), 1, - sym__newline, - ACTIONS(8240), 1, - anon_sym_else, STATE(4979), 1, sym_comment, - STATE(4982), 1, - aux_sym_shebang_repeat1, - ACTIONS(7977), 10, + ACTIONS(2500), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2498), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388886,18 +390990,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180576] = 6, + [183917] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7992), 1, - sym__newline, - ACTIONS(8242), 1, - anon_sym_else, STATE(4980), 1, sym_comment, - STATE(4983), 1, - aux_sym_shebang_repeat1, - ACTIONS(7995), 10, + ACTIONS(8247), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388908,18 +391007,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180604] = 6, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [183939] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5149), 1, - sym__newline, - ACTIONS(8244), 1, - anon_sym_else, - STATE(1816), 1, - aux_sym_shebang_repeat1, STATE(4981), 1, sym_comment, - ACTIONS(1296), 10, + ACTIONS(1851), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1847), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388930,18 +391029,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180632] = 6, - ACTIONS(247), 1, + [183963] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5149), 1, - sym__newline, - ACTIONS(8247), 1, - anon_sym_else, - STATE(1816), 1, - aux_sym_shebang_repeat1, STATE(4982), 1, sym_comment, - ACTIONS(1296), 10, + ACTIONS(2516), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2514), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388952,18 +391049,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180660] = 6, + [183987] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7946), 1, - sym__newline, - ACTIONS(8250), 1, - anon_sym_else, + ACTIONS(2038), 1, + anon_sym_DASH2, STATE(4983), 1, sym_comment, + ACTIONS(2040), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [184011] = 3, + ACTIONS(247), 1, + anon_sym_POUND, STATE(4984), 1, - aux_sym_shebang_repeat1, - ACTIONS(7949), 10, + sym_comment, + ACTIONS(8249), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388974,18 +391086,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180688] = 6, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [184033] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5149), 1, - sym__newline, - ACTIONS(8252), 1, - anon_sym_else, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4984), 1, + STATE(4985), 1, sym_comment, - ACTIONS(1296), 10, + ACTIONS(2353), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2351), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388996,59 +391108,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180716] = 11, + [184057] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3621), 1, - anon_sym_DOLLAR, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(6207), 1, - anon_sym_DOT, - ACTIONS(6211), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, - aux_sym__immediate_decimal_token5, - STATE(4985), 1, + ACTIONS(2482), 1, + anon_sym_DASH2, + STATE(4986), 1, sym_comment, - STATE(5981), 1, - sym__immediate_decimal, - ACTIONS(6209), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5980), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1591), 3, + ACTIONS(2484), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [180754] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [184081] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8257), 1, + ACTIONS(2510), 1, anon_sym_DASH2, - STATE(4986), 1, + STATE(4987), 1, sym_comment, - ACTIONS(8255), 12, + ACTIONS(2512), 12, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180778] = 3, - ACTIONS(247), 1, + anon_sym_LBRACE, + [184105] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4987), 1, + STATE(4988), 1, sym_comment, - ACTIONS(8259), 13, + ACTIONS(2357), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2355), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389060,14 +391168,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [180800] = 3, - ACTIONS(247), 1, + [184129] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4988), 1, + STATE(4989), 1, sym_comment, - ACTIONS(8261), 13, + ACTIONS(2361), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2359), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389079,45 +391188,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [180822] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7679), 1, - sym_identifier, - ACTIONS(7685), 1, - anon_sym_DOLLAR, - ACTIONS(7687), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7689), 1, - anon_sym_DASH_DASH, - ACTIONS(7691), 1, - anon_sym_DASH2, - ACTIONS(8263), 1, - anon_sym_PIPE, - STATE(4096), 1, - sym_param_long_flag, - STATE(4235), 1, - sym__param_name, - STATE(4604), 1, - aux_sym_parameter_parens_repeat1, - STATE(4989), 1, - sym_comment, - STATE(5099), 1, - sym_param_rest, - STATE(5100), 1, - sym_param_opt, - STATE(5139), 1, - sym_param_short_flag, - STATE(5567), 1, - sym_parameter, - [180868] = 3, - ACTIONS(247), 1, + [184153] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(4990), 1, sym_comment, - ACTIONS(8265), 13, + ACTIONS(2492), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2490), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389129,14 +391208,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [180890] = 3, + [184177] = 4, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(2414), 1, + anon_sym_DASH2, STATE(4991), 1, sym_comment, - ACTIONS(8267), 13, + ACTIONS(2416), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [184201] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4992), 1, + sym_comment, + ACTIONS(2365), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2363), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389148,18 +391248,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [180912] = 5, + [184225] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8271), 1, - anon_sym_QMARK, - ACTIONS(8273), 1, + ACTIONS(2430), 1, anon_sym_DASH2, - STATE(4992), 1, + STATE(4993), 1, sym_comment, - ACTIONS(8269), 11, + ACTIONS(2432), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -389171,14 +391267,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180938] = 4, + anon_sym_LBRACE, + [184249] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2472), 1, + ACTIONS(8253), 1, anon_sym_DASH2, - STATE(4993), 1, + STATE(4994), 1, sym_comment, - ACTIONS(2474), 11, + ACTIONS(8251), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -389188,63 +391285,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180961] = 6, + [184273] = 15, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8275), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8277), 1, - aux_sym__immediate_decimal_token2, - STATE(4994), 1, - sym_comment, - ACTIONS(1623), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1621), 6, + ACTIONS(7667), 1, sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [180988] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8133), 1, + ACTIONS(7673), 1, + anon_sym_DOLLAR, + ACTIONS(7675), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7677), 1, anon_sym_DASH_DASH, - ACTIONS(8135), 1, + ACTIONS(7679), 1, anon_sym_DASH2, - ACTIONS(8279), 1, - anon_sym_DOLLAR, - ACTIONS(8281), 1, - anon_sym_LBRACE, - STATE(1888), 1, - sym_block, - STATE(1889), 1, - sym_val_closure, + ACTIONS(7720), 1, + anon_sym_RBRACK, + STATE(4134), 1, + sym_param_long_flag, + STATE(4234), 1, + sym__param_name, + STATE(4614), 1, + aux_sym_parameter_parens_repeat1, STATE(4995), 1, sym_comment, - STATE(5032), 1, - aux_sym_ctrl_do_repeat1, - STATE(6126), 1, - sym__flag, - STATE(790), 2, - sym__blosure, - sym_val_variable, - STATE(6104), 2, - sym_short_flag, - sym_long_flag, - [181027] = 3, + STATE(5010), 1, + sym_param_rest, + STATE(5134), 1, + sym_param_opt, + STATE(5174), 1, + sym_param_short_flag, + STATE(5550), 1, + sym_parameter, + [184319] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(4996), 1, sym_comment, - ACTIONS(8167), 12, - ts_builtin_sym_end, + ACTIONS(8255), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389256,112 +391336,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [181048] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [184341] = 4, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1899), 1, + anon_sym_DASH2, STATE(4997), 1, sym_comment, - ACTIONS(8169), 12, - ts_builtin_sym_end, + ACTIONS(1901), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [181069] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8131), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(8133), 1, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - ACTIONS(8135), 1, - anon_sym_DASH2, - ACTIONS(8137), 1, anon_sym_LBRACE, - STATE(1792), 1, - sym_block, - STATE(1793), 1, - sym_val_closure, - STATE(4998), 1, - sym_comment, - STATE(5011), 1, - aux_sym_ctrl_do_repeat1, - STATE(6126), 1, - sym__flag, - STATE(778), 2, - sym__blosure, - sym_val_variable, - STATE(6104), 2, - sym_short_flag, - sym_long_flag, - [181108] = 13, + [184365] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5410), 1, - anon_sym_LPAREN2, - ACTIONS(5414), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5416), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5805), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8283), 1, - anon_sym_RBRACK, - ACTIONS(8285), 1, - anon_sym_DOLLAR, - ACTIONS(8287), 1, - anon_sym_DOLLAR2, - ACTIONS(8289), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8291), 1, - aux_sym__immediate_decimal_token5, - STATE(2800), 1, - sym__immediate_decimal, - STATE(4999), 1, - sym_comment, - STATE(2873), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [181149] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1544), 1, - anon_sym_LBRACE, - ACTIONS(1546), 1, - aux_sym_unquoted_token2, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(8293), 1, - anon_sym_DOLLAR, - ACTIONS(8295), 1, - anon_sym_DOT, - ACTIONS(8299), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8301), 1, - aux_sym__immediate_decimal_token5, - STATE(5000), 1, - sym_comment, - STATE(6144), 1, - sym__immediate_decimal, - ACTIONS(8297), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6018), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [181188] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5001), 1, + STATE(4998), 1, sym_comment, - ACTIONS(8303), 12, + ACTIONS(1889), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1887), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389373,35 +391378,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [181209] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5002), 1, - sym_comment, - ACTIONS(7013), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7019), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7015), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7017), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [181236] = 3, - ACTIONS(247), 1, + [184389] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5003), 1, + STATE(4999), 1, sym_comment, - ACTIONS(8171), 12, + ACTIONS(2512), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2510), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389413,12 +391398,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [181257] = 3, - ACTIONS(247), 1, + [184413] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5004), 1, + STATE(5000), 1, sym_comment, - ACTIONS(8305), 12, + ACTIONS(2036), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2034), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389430,14 +391418,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [184437] = 15, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7667), 1, + sym_identifier, + ACTIONS(7673), 1, + anon_sym_DOLLAR, + ACTIONS(7675), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7677), 1, + anon_sym_DASH_DASH, + ACTIONS(7679), 1, + anon_sym_DASH2, + ACTIONS(7724), 1, anon_sym_RPAREN, - [181278] = 3, + STATE(4134), 1, + sym_param_long_flag, + STATE(4234), 1, + sym__param_name, + STATE(4614), 1, + aux_sym_parameter_parens_repeat1, + STATE(5001), 1, + sym_comment, + STATE(5010), 1, + sym_param_rest, + STATE(5134), 1, + sym_param_opt, + STATE(5174), 1, + sym_param_short_flag, + STATE(5550), 1, + sym_parameter, + [184483] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5005), 1, + ACTIONS(1026), 1, + anon_sym_DASH2, + STATE(5002), 1, sym_comment, - ACTIONS(8151), 12, + ACTIONS(1028), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [184507] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8259), 1, + anon_sym_QMARK, + ACTIONS(8261), 1, + anon_sym_DASH2, + STATE(5003), 1, + sym_comment, + ACTIONS(8257), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [184533] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5004), 1, + sym_comment, + ACTIONS(5079), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(5081), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389449,41 +391510,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [181299] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1530), 1, - anon_sym_RBRACK, - ACTIONS(1544), 1, - sym__entry_separator, - ACTIONS(1546), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(8139), 1, - anon_sym_LPAREN2, - ACTIONS(8307), 1, - anon_sym_DOLLAR, - ACTIONS(8309), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8311), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8313), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8315), 1, - aux_sym__immediate_decimal_token5, - STATE(5006), 1, - sym_comment, - STATE(6237), 1, - sym__immediate_decimal, - STATE(6941), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [181340] = 3, + [184557] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(5007), 1, - sym_comment, - ACTIONS(8317), 12, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(8177), 1, sym__newline, + STATE(5005), 1, + sym_comment, + ACTIONS(8087), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -389494,13 +391530,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [181361] = 3, + anon_sym_RBRACE, + [184583] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5008), 1, + STATE(5006), 1, sym_comment, - ACTIONS(8319), 12, + ACTIONS(8263), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389513,13 +391549,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [181382] = 3, + [184604] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5009), 1, + STATE(5007), 1, sym_comment, - ACTIONS(8261), 12, - ts_builtin_sym_end, + ACTIONS(8265), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389531,13 +391566,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [181403] = 3, + anon_sym_RPAREN, + [184625] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5010), 1, + STATE(5008), 1, sym_comment, - ACTIONS(8185), 12, - ts_builtin_sym_end, + ACTIONS(6969), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389549,40 +391584,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [181424] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8131), 1, - anon_sym_DOLLAR, - ACTIONS(8133), 1, - anon_sym_DASH_DASH, - ACTIONS(8135), 1, - anon_sym_DASH2, - ACTIONS(8137), 1, - anon_sym_LBRACE, - STATE(1792), 1, - sym_block, - STATE(1793), 1, - sym_val_closure, - STATE(5011), 1, - sym_comment, - STATE(5561), 1, - aux_sym_ctrl_do_repeat1, - STATE(6126), 1, - sym__flag, - STATE(780), 2, - sym__blosure, - sym_val_variable, - STATE(6104), 2, - sym_short_flag, - sym_long_flag, - [181463] = 3, + anon_sym_RPAREN, + [184646] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5012), 1, + STATE(5009), 1, sym_comment, - ACTIONS(8215), 12, - ts_builtin_sym_end, + ACTIONS(8267), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389594,33 +391602,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [181484] = 6, + anon_sym_RPAREN, + [184667] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - STATE(774), 1, - aux_sym__pipe_separator, - STATE(5013), 1, + ACTIONS(8271), 1, + anon_sym_DASH2, + STATE(5010), 1, sym_comment, - STATE(5172), 1, - aux_sym_shebang_repeat1, - ACTIONS(2538), 9, + ACTIONS(8269), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [181511] = 3, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [184690] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5014), 1, + STATE(5011), 1, sym_comment, - ACTIONS(8217), 12, + ACTIONS(8153), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -389633,14 +391640,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [181532] = 4, + [184711] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7728), 1, + ACTIONS(2157), 1, anon_sym_DASH2, - STATE(5015), 1, + STATE(5012), 1, sym_comment, - ACTIONS(7726), 11, + ACTIONS(2163), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -389652,36 +391659,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181555] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5016), 1, - sym_comment, - ACTIONS(6991), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6997), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6993), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6995), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [181582] = 4, + [184734] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5017), 1, + STATE(5013), 1, sym_comment, - ACTIONS(7572), 2, + ACTIONS(8273), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(7574), 10, + ACTIONS(8275), 10, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, @@ -389692,12 +391678,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - [181605] = 3, + [184757] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5018), 1, + STATE(5014), 1, sym_comment, - ACTIONS(8129), 12, + ACTIONS(6823), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -389710,12 +391696,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [181626] = 3, + [184778] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5019), 1, + STATE(5015), 1, sym_comment, - ACTIONS(8321), 12, + ACTIONS(8277), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389728,57 +391714,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [181647] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5020), 1, - sym_comment, - ACTIONS(8323), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(8325), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [181670] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1579), 1, - aux_sym_unquoted_token2, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(8173), 1, - anon_sym_DOLLAR, - ACTIONS(8329), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8331), 1, - aux_sym__immediate_decimal_token5, - STATE(5021), 1, - sym_comment, - STATE(7081), 1, - sym__immediate_decimal, - ACTIONS(1577), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8327), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3431), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [181707] = 3, + [184799] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5022), 1, + STATE(5016), 1, sym_comment, - ACTIONS(6985), 12, + ACTIONS(8279), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389791,68 +391732,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [181728] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1565), 1, - anon_sym_RBRACK, - ACTIONS(1577), 1, - sym__entry_separator, - ACTIONS(1579), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(8139), 1, - anon_sym_LPAREN2, - ACTIONS(8307), 1, - anon_sym_DOLLAR, - ACTIONS(8309), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8311), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8313), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8315), 1, - aux_sym__immediate_decimal_token5, - STATE(5023), 1, - sym_comment, - STATE(6512), 1, - sym__immediate_decimal, - STATE(6977), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [181769] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym_unquoted_token2, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(8173), 1, - anon_sym_DOLLAR, - ACTIONS(8329), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8331), 1, - aux_sym__immediate_decimal_token5, - STATE(5024), 1, - sym_comment, - STATE(6807), 1, - sym__immediate_decimal, - ACTIONS(1544), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8327), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3436), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [181806] = 4, + [184820] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8335), 1, + ACTIONS(2359), 1, anon_sym_DASH2, - STATE(5025), 1, + STATE(5017), 1, sym_comment, - ACTIONS(8333), 11, + ACTIONS(2361), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -389864,82 +391751,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181829] = 6, + [184843] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8337), 1, - anon_sym_DOT, - ACTIONS(8339), 1, - aux_sym__immediate_decimal_token2, - STATE(5026), 1, + STATE(5018), 1, sym_comment, - ACTIONS(1607), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1609), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [181856] = 12, + ACTIONS(8281), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [184864] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5019), 1, + sym_comment, + ACTIONS(8283), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [184885] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1693), 1, - sym__entry_separator, - ACTIONS(8139), 1, + ACTIONS(5462), 1, anon_sym_LPAREN2, - ACTIONS(8197), 1, + ACTIONS(5466), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5468), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5727), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8285), 1, + anon_sym_RBRACK, + ACTIONS(8287), 1, + anon_sym_DOLLAR, + ACTIONS(8289), 1, + anon_sym_DOLLAR2, + ACTIONS(8291), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8199), 1, + ACTIONS(8293), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8307), 1, - anon_sym_DOLLAR, - ACTIONS(8341), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8343), 1, - aux_sym__immediate_decimal_token3, - STATE(5027), 1, - sym_comment, - STATE(6810), 1, + STATE(2857), 1, sym__immediate_decimal, - ACTIONS(1691), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(6806), 2, + STATE(5020), 1, + sym_comment, + STATE(2894), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [181895] = 4, + [184926] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7786), 1, - anon_sym_DASH2, - STATE(5028), 1, + STATE(5021), 1, sym_comment, - ACTIONS(7784), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8295), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [181918] = 4, + [184947] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5029), 1, + STATE(5022), 1, sym_comment, - ACTIONS(7576), 2, + ACTIONS(7525), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(7578), 10, + ACTIONS(7527), 10, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, @@ -389950,43 +391852,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - [181941] = 12, - ACTIONS(3), 1, + [184970] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1671), 1, - sym__entry_separator, - ACTIONS(8139), 1, - anon_sym_LPAREN2, - ACTIONS(8197), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8199), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8307), 1, - anon_sym_DOLLAR, - ACTIONS(8341), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8343), 1, - aux_sym__immediate_decimal_token3, - STATE(5030), 1, + STATE(5023), 1, sym_comment, - STATE(6829), 1, - sym__immediate_decimal, - ACTIONS(1663), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(6822), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [181980] = 4, + ACTIONS(8297), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [184991] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5031), 1, + STATE(5024), 1, sym_comment, - ACTIONS(1607), 3, + ACTIONS(1585), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1609), 9, + ACTIONS(1587), 9, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -389996,67 +391889,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [182003] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8133), 1, - anon_sym_DASH_DASH, - ACTIONS(8135), 1, - anon_sym_DASH2, - ACTIONS(8279), 1, - anon_sym_DOLLAR, - ACTIONS(8281), 1, - anon_sym_LBRACE, - STATE(1888), 1, - sym_block, - STATE(1889), 1, - sym_val_closure, - STATE(5032), 1, - sym_comment, - STATE(5561), 1, - aux_sym_ctrl_do_repeat1, - STATE(6126), 1, - sym__flag, - STATE(791), 2, - sym__blosure, - sym_val_variable, - STATE(6104), 2, - sym_short_flag, - sym_long_flag, - [182042] = 12, + [185014] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1707), 1, - sym__entry_separator, - ACTIONS(8139), 1, + ACTIONS(5462), 1, anon_sym_LPAREN2, - ACTIONS(8197), 1, + ACTIONS(5466), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5468), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5727), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8287), 1, + anon_sym_DOLLAR, + ACTIONS(8289), 1, + anon_sym_DOLLAR2, + ACTIONS(8291), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8199), 1, + ACTIONS(8293), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8307), 1, - anon_sym_DOLLAR, - ACTIONS(8341), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8343), 1, - aux_sym__immediate_decimal_token3, - STATE(5033), 1, - sym_comment, - STATE(6883), 1, - sym__immediate_decimal, - ACTIONS(1705), 2, + ACTIONS(8299), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(6882), 2, + STATE(2857), 1, + sym__immediate_decimal, + STATE(5025), 1, + sym_comment, + STATE(2894), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [182081] = 3, + [185055] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5026), 1, + sym_comment, + ACTIONS(8301), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [185076] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5027), 1, + sym_comment, + ACTIONS(8303), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [185097] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5034), 1, + STATE(5028), 1, sym_comment, - ACTIONS(5120), 12, - ts_builtin_sym_end, + ACTIONS(8305), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390068,37 +391970,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [182102] = 6, + anon_sym_RPAREN, + [185118] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8345), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8347), 1, - aux_sym__immediate_decimal_token2, - STATE(5035), 1, + STATE(5029), 1, sym_comment, - ACTIONS(1621), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1623), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [182129] = 4, + ACTIONS(8307), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [185139] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5036), 1, + STATE(5030), 1, sym_comment, - ACTIONS(1621), 3, + ACTIONS(1681), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1623), 9, + ACTIONS(1683), 9, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -390108,13 +392008,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [182152] = 3, + [185162] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5037), 1, + STATE(5031), 1, sym_comment, - ACTIONS(5124), 12, - ts_builtin_sym_end, + ACTIONS(8309), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390126,40 +392025,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [182173] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2550), 1, - anon_sym_DOLLAR, - ACTIONS(5302), 1, - anon_sym_LPAREN2, - ACTIONS(5306), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5308), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5310), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(5566), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8287), 1, - anon_sym_DOLLAR2, - ACTIONS(8349), 1, - anon_sym_RBRACK, - ACTIONS(8351), 1, - aux_sym__immediate_decimal_token1, - STATE(2698), 1, - sym__immediate_decimal, - STATE(5038), 1, - sym_comment, - STATE(2839), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [182214] = 3, + anon_sym_RPAREN, + [185183] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5039), 1, + STATE(5032), 1, sym_comment, - ACTIONS(8353), 12, + ACTIONS(8187), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390171,45 +392044,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [182235] = 13, + [185204] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5410), 1, + ACTIONS(1675), 1, + sym__entry_separator, + ACTIONS(8073), 1, anon_sym_LPAREN2, - ACTIONS(5414), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5416), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5805), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8285), 1, - anon_sym_DOLLAR, - ACTIONS(8287), 1, - anon_sym_DOLLAR2, - ACTIONS(8289), 1, + ACTIONS(8173), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8291), 1, + ACTIONS(8175), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8355), 1, - anon_sym_RBRACK, - STATE(2800), 1, - sym__immediate_decimal, - STATE(5040), 1, + ACTIONS(8311), 1, + anon_sym_DOLLAR, + ACTIONS(8313), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8315), 1, + aux_sym__immediate_decimal_token3, + STATE(5033), 1, sym_comment, - STATE(2873), 2, + STATE(7145), 1, + sym__immediate_decimal, + ACTIONS(1673), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(7144), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [182276] = 4, + [185243] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5041), 1, + STATE(5034), 1, sym_comment, - ACTIONS(1673), 3, + ACTIONS(1761), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1675), 9, + ACTIONS(1763), 9, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -390219,12 +392090,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [182299] = 3, + [185266] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5042), 1, + STATE(5035), 1, + sym_comment, + ACTIONS(7593), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7595), 10, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [185289] = 12, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(8317), 1, + anon_sym_DOLLAR, + ACTIONS(8319), 1, + anon_sym_DASH_DASH, + ACTIONS(8321), 1, + anon_sym_DASH2, + ACTIONS(8323), 1, + anon_sym_LBRACE, + STATE(1770), 1, + sym_block, + STATE(1772), 1, + sym_val_closure, + STATE(5036), 1, + sym_comment, + STATE(5217), 1, + aux_sym_ctrl_do_repeat1, + STATE(800), 2, + sym__blosure, + sym_val_variable, + STATE(6035), 2, + sym_short_flag, + sym_long_flag, + [185328] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5037), 1, sym_comment, - ACTIONS(8357), 12, + ACTIONS(6909), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390237,12 +392154,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [182320] = 3, + [185349] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5043), 1, + STATE(5038), 1, + sym_comment, + ACTIONS(8325), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [185370] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2383), 1, + anon_sym_DASH2, + STATE(5039), 1, + sym_comment, + ACTIONS(2385), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [185393] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7728), 1, + anon_sym_DASH2, + STATE(5040), 1, + sym_comment, + ACTIONS(7726), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [185416] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1543), 1, + anon_sym_RBRACK, + ACTIONS(1557), 1, + sym__entry_separator, + ACTIONS(1559), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(8073), 1, + anon_sym_LPAREN2, + ACTIONS(8311), 1, + anon_sym_DOLLAR, + ACTIONS(8327), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8329), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8331), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8333), 1, + aux_sym__immediate_decimal_token5, + STATE(5041), 1, + sym_comment, + STATE(6797), 1, + sym__immediate_decimal, + STATE(7221), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185457] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5042), 1, sym_comment, - ACTIONS(8359), 12, + ACTIONS(8335), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390255,12 +392256,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [182341] = 3, + [185478] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5789), 1, + sym__newline, + ACTIONS(8337), 1, + anon_sym_DASH2, + STATE(5043), 1, + sym_comment, + ACTIONS(1288), 2, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5792), 8, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [185505] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(5044), 1, sym_comment, - ACTIONS(8361), 12, + ACTIONS(8339), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390273,12 +392295,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [182362] = 3, + [185526] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(5045), 1, sym_comment, - ACTIONS(8363), 12, + ACTIONS(8341), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390291,12 +392313,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [182383] = 3, + [185547] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(5046), 1, sym_comment, - ACTIONS(8365), 12, + ACTIONS(8343), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390309,31 +392331,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [182404] = 4, + [185568] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2159), 1, - anon_sym_DASH2, STATE(5047), 1, sym_comment, - ACTIONS(2165), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8345), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [182427] = 3, + [185589] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(5048), 1, sym_comment, - ACTIONS(8367), 12, + ACTIONS(8347), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390346,14 +392367,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [182448] = 3, + [185610] = 6, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(7812), 1, + sym__newline, + ACTIONS(8349), 1, + anon_sym_else, STATE(5049), 1, sym_comment, - ACTIONS(8369), 12, - sym__newline, - anon_sym_SEMI, + STATE(5058), 1, + aux_sym_shebang_repeat1, + ACTIONS(7815), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -390363,13 +392388,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [182469] = 3, + [185637] = 12, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(8317), 1, + anon_sym_DOLLAR, + ACTIONS(8319), 1, + anon_sym_DASH_DASH, + ACTIONS(8321), 1, + anon_sym_DASH2, + ACTIONS(8323), 1, + anon_sym_LBRACE, + STATE(1770), 1, + sym_block, + STATE(1772), 1, + sym_val_closure, STATE(5050), 1, sym_comment, - ACTIONS(8371), 12, + STATE(5217), 1, + aux_sym_ctrl_do_repeat1, + STATE(800), 2, + sym__blosure, + sym_val_variable, + STATE(6035), 2, + sym_short_flag, + sym_long_flag, + [185676] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5051), 1, + sym_comment, + ACTIONS(8351), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390382,40 +392433,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [182490] = 13, + [185697] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1565), 1, - anon_sym_RBRACE, - ACTIONS(1577), 1, + ACTIONS(1679), 1, sym__entry_separator, - ACTIONS(1579), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(8139), 1, + ACTIONS(8073), 1, anon_sym_LPAREN2, - ACTIONS(8307), 1, + ACTIONS(8173), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8175), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8311), 1, anon_sym_DOLLAR, - ACTIONS(8373), 1, + ACTIONS(8313), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8375), 1, + ACTIONS(8315), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8377), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8379), 1, - aux_sym__immediate_decimal_token5, - STATE(5051), 1, + STATE(5052), 1, sym_comment, - STATE(6244), 1, + STATE(7156), 1, sym__immediate_decimal, - STATE(6977), 2, + ACTIONS(1677), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(7147), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [182531] = 3, + [185736] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5052), 1, + ACTIONS(7689), 1, + anon_sym_DASH2, + STATE(5053), 1, + sym_comment, + ACTIONS(7687), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [185759] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5054), 1, sym_comment, - ACTIONS(8381), 12, + ACTIONS(8133), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390427,13 +392497,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [182552] = 3, + [185780] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5053), 1, + STATE(5055), 1, sym_comment, - ACTIONS(8383), 12, + ACTIONS(8189), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390445,53 +392515,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [182573] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5054), 1, - sym_comment, - ACTIONS(1763), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1765), 9, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [182596] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8385), 1, - anon_sym_DOT, - ACTIONS(8387), 1, - aux_sym__immediate_decimal_token2, - STATE(5055), 1, - sym_comment, - ACTIONS(1607), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1609), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [182623] = 3, + [185801] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(5056), 1, sym_comment, - ACTIONS(8201), 12, + ACTIONS(8085), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -390504,13 +392533,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [182644] = 3, + [185822] = 3, ACTIONS(247), 1, anon_sym_POUND, STATE(5057), 1, sym_comment, - ACTIONS(8123), 12, - ts_builtin_sym_end, + ACTIONS(8353), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390522,109 +392550,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [182665] = 4, + anon_sym_RPAREN, + [185843] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2375), 1, - anon_sym_DASH2, + ACTIONS(7911), 1, + sym__newline, + ACTIONS(8355), 1, + anon_sym_else, STATE(5058), 1, sym_comment, - ACTIONS(2377), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(5070), 1, + aux_sym_shebang_repeat1, + ACTIONS(7914), 9, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [182688] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [185870] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2167), 1, - anon_sym_DASH2, + ACTIONS(7918), 1, + sym__newline, + ACTIONS(8357), 1, + anon_sym_else, STATE(5059), 1, sym_comment, - ACTIONS(2173), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(5071), 1, + aux_sym_shebang_repeat1, + ACTIONS(7921), 9, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [182711] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [185897] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2175), 1, - anon_sym_DASH2, + ACTIONS(7925), 1, + sym__newline, + ACTIONS(8359), 1, + anon_sym_else, STATE(5060), 1, sym_comment, - ACTIONS(2181), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(5072), 1, + aux_sym_shebang_repeat1, + ACTIONS(7928), 9, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [182734] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [185924] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2133), 1, - anon_sym_DASH2, + ACTIONS(8361), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8363), 1, + aux_sym__immediate_decimal_token2, STATE(5061), 1, sym_comment, - ACTIONS(2139), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(1585), 4, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [182757] = 4, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1587), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [185951] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8391), 1, - anon_sym_DASH2, STATE(5062), 1, sym_comment, - ACTIONS(8389), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7017), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7023), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(7019), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(7021), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [185978] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5063), 1, + sym_comment, + ACTIONS(8365), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [182780] = 4, + [185999] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8391), 1, + ACTIONS(2363), 1, anon_sym_DASH2, - STATE(5063), 1, + STATE(5064), 1, sym_comment, - ACTIONS(8389), 11, + ACTIONS(2365), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -390636,12 +392693,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182803] = 3, + [186022] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(5064), 1, + ACTIONS(1661), 1, + aux_sym_unquoted_token2, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(8095), 1, + anon_sym_DOLLAR, + ACTIONS(8369), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8371), 1, + aux_sym__immediate_decimal_token5, + STATE(5065), 1, + sym_comment, + STATE(6911), 1, + sym__immediate_decimal, + ACTIONS(1659), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(8367), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3426), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [186059] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5066), 1, sym_comment, - ACTIONS(8393), 12, + ACTIONS(8373), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390654,12 +392737,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [182824] = 3, + [186080] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5065), 1, + STATE(5067), 1, sym_comment, - ACTIONS(8395), 12, + ACTIONS(8185), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390671,53 +392755,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [182845] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2476), 1, - anon_sym_DASH2, - STATE(5066), 1, - sym_comment, - ACTIONS(2478), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [182868] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2371), 1, - anon_sym_DASH2, - STATE(5067), 1, - sym_comment, - ACTIONS(2373), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [182891] = 4, + [186101] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2391), 1, + ACTIONS(1847), 1, anon_sym_DASH2, STATE(5068), 1, sym_comment, - ACTIONS(2393), 11, + ACTIONS(1851), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -390729,90 +392774,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182914] = 4, + [186124] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2413), 1, - anon_sym_DASH2, + ACTIONS(8375), 1, + anon_sym_DOT, + ACTIONS(8377), 1, + aux_sym__immediate_decimal_token2, STATE(5069), 1, sym_comment, - ACTIONS(2415), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1575), 4, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182937] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1573), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [186151] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2421), 1, - anon_sym_DASH2, + ACTIONS(5125), 1, + sym__newline, + ACTIONS(8379), 1, + anon_sym_else, + STATE(1761), 1, + aux_sym_shebang_repeat1, STATE(5070), 1, sym_comment, - ACTIONS(2423), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + ACTIONS(1296), 9, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [182960] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [186178] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2425), 1, - anon_sym_DASH2, + ACTIONS(7970), 1, + sym__newline, + ACTIONS(8382), 1, + anon_sym_else, STATE(5071), 1, sym_comment, - ACTIONS(2427), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(5077), 1, + aux_sym_shebang_repeat1, + ACTIONS(7973), 9, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [182983] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [186205] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2429), 1, - anon_sym_DASH2, + ACTIONS(7981), 1, + sym__newline, + ACTIONS(8384), 1, + anon_sym_else, STATE(5072), 1, sym_comment, - ACTIONS(2431), 11, - anon_sym_EQ, - sym_identifier, + STATE(5078), 1, + aux_sym_shebang_repeat1, + ACTIONS(7984), 9, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [186232] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7988), 1, sym__newline, + ACTIONS(8386), 1, + anon_sym_else, + STATE(5073), 1, + sym_comment, + STATE(5079), 1, + aux_sym_shebang_repeat1, + ACTIONS(7991), 9, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [183006] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [186259] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2433), 1, + ACTIONS(2456), 1, anon_sym_DASH2, - STATE(5073), 1, + STATE(5074), 1, sym_comment, - ACTIONS(2435), 11, + ACTIONS(2458), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -390824,14 +392898,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183029] = 4, + [186282] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2441), 1, + ACTIONS(8390), 1, anon_sym_DASH2, - STATE(5074), 1, + STATE(5075), 1, sym_comment, - ACTIONS(2443), 11, + ACTIONS(8388), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -390843,51 +392917,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183052] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5075), 1, - sym_comment, - ACTIONS(8267), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [183073] = 3, - ACTIONS(247), 1, + [186305] = 13, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1657), 1, + anon_sym_RBRACK, + ACTIONS(1659), 1, + sym__entry_separator, + ACTIONS(1661), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(8073), 1, + anon_sym_LPAREN2, + ACTIONS(8311), 1, + anon_sym_DOLLAR, + ACTIONS(8327), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8329), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8331), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8333), 1, + aux_sym__immediate_decimal_token5, STATE(5076), 1, sym_comment, - ACTIONS(8087), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [183094] = 3, + STATE(6545), 1, + sym__immediate_decimal, + STATE(7161), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [186346] = 6, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(5125), 1, + sym__newline, + ACTIONS(8392), 1, + anon_sym_else, + STATE(1761), 1, + aux_sym_shebang_repeat1, STATE(5077), 1, sym_comment, - ACTIONS(8265), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(1296), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -390897,14 +392966,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183115] = 3, + [186373] = 6, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(5125), 1, + sym__newline, + ACTIONS(8395), 1, + anon_sym_else, + STATE(1761), 1, + aux_sym_shebang_repeat1, STATE(5078), 1, sym_comment, - ACTIONS(8397), 12, - sym__newline, - anon_sym_SEMI, + ACTIONS(1296), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -390914,15 +392987,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [183136] = 3, + [186400] = 6, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(8028), 1, + sym__newline, + ACTIONS(8398), 1, + anon_sym_else, STATE(5079), 1, sym_comment, - ACTIONS(8399), 12, - sym__newline, - anon_sym_SEMI, + STATE(5080), 1, + aux_sym_shebang_repeat1, + ACTIONS(8031), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -390932,15 +393008,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [183157] = 3, + [186427] = 6, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(5125), 1, + sym__newline, + ACTIONS(8400), 1, + anon_sym_else, + STATE(1761), 1, + aux_sym_shebang_repeat1, STATE(5080), 1, sym_comment, - ACTIONS(8401), 12, - sym__newline, - anon_sym_SEMI, + ACTIONS(1296), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -390950,15 +393029,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [183178] = 3, + [186454] = 11, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1543), 1, + anon_sym_DASH2, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(6203), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6205), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8403), 1, + anon_sym_DOLLAR, + STATE(3615), 1, + sym__immediate_decimal, STATE(5081), 1, sym_comment, - ACTIONS(8403), 12, + ACTIONS(1557), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(6285), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3451), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [186491] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, sym__newline, - anon_sym_SEMI, + STATE(771), 1, + aux_sym__pipe_separator, + STATE(5082), 1, + sym_comment, + STATE(5246), 1, + aux_sym_shebang_repeat1, + ACTIONS(2528), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -390968,15 +393076,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [183199] = 3, + [186518] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(5082), 1, + ACTIONS(1657), 1, + anon_sym_DASH2, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(6203), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6205), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8403), 1, + anon_sym_DOLLAR, + STATE(3625), 1, + sym__immediate_decimal, + STATE(5083), 1, sym_comment, - ACTIONS(8405), 12, + ACTIONS(1659), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(6285), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3426), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [186555] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, sym__newline, - anon_sym_SEMI, + STATE(774), 1, + aux_sym__pipe_separator, + STATE(5084), 1, + sym_comment, + STATE(5246), 1, + aux_sym_shebang_repeat1, + ACTIONS(2528), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -390986,13 +393123,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [183220] = 3, + [186582] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(5083), 1, + ACTIONS(1593), 1, + anon_sym_DASH2, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(6203), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6205), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8403), 1, + anon_sym_DOLLAR, + STATE(3450), 1, + sym__immediate_decimal, + STATE(5085), 1, + sym_comment, + ACTIONS(1603), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(6285), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3449), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [186619] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1663), 1, + anon_sym_DASH2, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(6203), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6205), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8403), 1, + anon_sym_DOLLAR, + STATE(3438), 1, + sym__immediate_decimal, + STATE(5086), 1, + sym_comment, + ACTIONS(1671), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(6285), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3457), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [186656] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1673), 1, + anon_sym_DASH2, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(6203), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6205), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8403), 1, + anon_sym_DOLLAR, + STATE(3444), 1, + sym__immediate_decimal, + STATE(5087), 1, + sym_comment, + ACTIONS(1675), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(6285), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3439), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [186693] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1677), 1, + anon_sym_DASH2, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(6203), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6205), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8403), 1, + anon_sym_DOLLAR, + STATE(3453), 1, + sym__immediate_decimal, + STATE(5088), 1, + sym_comment, + ACTIONS(1679), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(6285), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3448), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [186730] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1603), 1, + sym__entry_separator, + ACTIONS(8073), 1, + anon_sym_LPAREN2, + ACTIONS(8173), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8175), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8311), 1, + anon_sym_DOLLAR, + ACTIONS(8313), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8315), 1, + aux_sym__immediate_decimal_token3, + STATE(5089), 1, + sym_comment, + STATE(7075), 1, + sym__immediate_decimal, + ACTIONS(1593), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(7060), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [186769] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5090), 1, sym_comment, - ACTIONS(8407), 12, + ACTIONS(8137), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391004,13 +393272,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [183241] = 3, + [186790] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5084), 1, + STATE(5091), 1, sym_comment, - ACTIONS(8409), 12, + ACTIONS(8179), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391022,34 +393290,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [183262] = 6, + [186811] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8411), 1, - anon_sym_DOT, - ACTIONS(8413), 1, + ACTIONS(8405), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8407), 1, aux_sym__immediate_decimal_token2, - STATE(5085), 1, + STATE(5092), 1, sym_comment, - ACTIONS(1609), 4, + ACTIONS(1587), 4, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1607), 6, + ACTIONS(1585), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [183289] = 3, + [186838] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5086), 1, + ACTIONS(8411), 1, + anon_sym_DASH2, + STATE(5093), 1, sym_comment, - ACTIONS(8415), 12, + ACTIONS(8409), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [186861] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5094), 1, + sym_comment, + ACTIONS(8193), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391061,13 +393348,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [183310] = 3, + [186882] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5087), 1, + STATE(5095), 1, sym_comment, - ACTIONS(8417), 12, + ACTIONS(8413), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391080,12 +393366,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [183331] = 3, + [186903] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5088), 1, + ACTIONS(2422), 1, + anon_sym_DASH2, + STATE(5096), 1, + sym_comment, + ACTIONS(2424), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [186926] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5097), 1, sym_comment, - ACTIONS(8419), 12, + ACTIONS(8415), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391098,12 +393403,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [183352] = 3, + [186947] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5089), 1, + STATE(5098), 1, sym_comment, - ACTIONS(8421), 12, + ACTIONS(8151), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391115,13 +393421,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [183373] = 3, + [186968] = 12, ACTIONS(247), 1, anon_sym_POUND, - STATE(5090), 1, + ACTIONS(1557), 1, + anon_sym_LBRACE, + ACTIONS(1559), 1, + aux_sym_unquoted_token2, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(8417), 1, + anon_sym_DOLLAR, + ACTIONS(8419), 1, + anon_sym_DOT, + ACTIONS(8423), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8425), 1, + aux_sym__immediate_decimal_token5, + STATE(5099), 1, sym_comment, - ACTIONS(8423), 12, + STATE(6176), 1, + sym__immediate_decimal, + ACTIONS(8421), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6094), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [187007] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5100), 1, + sym_comment, + ACTIONS(8255), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391133,13 +393466,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [183394] = 3, + [187028] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1543), 1, + anon_sym_RBRACE, + ACTIONS(1557), 1, + sym__entry_separator, + ACTIONS(3097), 1, + anon_sym_DOLLAR, + ACTIONS(8073), 1, + anon_sym_LPAREN2, + ACTIONS(8169), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8171), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8173), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8175), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8427), 1, + anon_sym_DOT, + STATE(5101), 1, + sym_comment, + STATE(6060), 1, + sym__immediate_decimal, + STATE(5966), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [187069] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5091), 1, + STATE(5102), 1, sym_comment, - ACTIONS(8425), 12, + ACTIONS(8135), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391151,13 +393512,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [183415] = 3, + [187090] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5092), 1, + STATE(5103), 1, sym_comment, - ACTIONS(8427), 12, + ACTIONS(8191), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391169,31 +393530,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [183436] = 3, - ACTIONS(247), 1, + [187111] = 13, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5093), 1, + ACTIONS(1543), 1, + anon_sym_RBRACE, + ACTIONS(1557), 1, + sym__entry_separator, + ACTIONS(1559), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(8073), 1, + anon_sym_LPAREN2, + ACTIONS(8311), 1, + anon_sym_DOLLAR, + ACTIONS(8429), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8431), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8433), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8435), 1, + aux_sym__immediate_decimal_token5, + STATE(5104), 1, sym_comment, - ACTIONS(8429), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [183457] = 3, + STATE(6482), 1, + sym__immediate_decimal, + STATE(7221), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [187152] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5094), 1, + STATE(5105), 1, sym_comment, - ACTIONS(8431), 12, + ACTIONS(8437), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391206,13 +393576,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [183478] = 3, + [187173] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5095), 1, + STATE(5106), 1, sym_comment, - ACTIONS(8205), 12, - ts_builtin_sym_end, + ACTIONS(8439), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391224,40 +393593,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183499] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1591), 1, - sym__entry_separator, - ACTIONS(8139), 1, - anon_sym_LPAREN2, - ACTIONS(8197), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8199), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8307), 1, - anon_sym_DOLLAR, - ACTIONS(8341), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8343), 1, - aux_sym__immediate_decimal_token3, - STATE(5096), 1, - sym_comment, - STATE(6903), 1, - sym__immediate_decimal, - ACTIONS(1581), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(6896), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [183538] = 3, + anon_sym_RPAREN, + [187194] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5097), 1, + STATE(5107), 1, sym_comment, - ACTIONS(8001), 12, - ts_builtin_sym_end, + ACTIONS(8441), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391269,14 +393611,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183559] = 4, + anon_sym_RPAREN, + [187215] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7658), 1, + ACTIONS(2122), 1, anon_sym_DASH2, - STATE(5098), 1, + STATE(5108), 1, sym_comment, - ACTIONS(7656), 11, + ACTIONS(2128), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -391288,33 +393631,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183582] = 4, + [187238] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8435), 1, - anon_sym_DASH2, - STATE(5099), 1, + STATE(5109), 1, sym_comment, - ACTIONS(8433), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8443), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [183605] = 4, + [187259] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8439), 1, + ACTIONS(2426), 1, anon_sym_DASH2, - STATE(5100), 1, + STATE(5110), 1, sym_comment, - ACTIONS(8437), 11, + ACTIONS(2428), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -391326,12 +393668,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183628] = 3, + [187282] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5101), 1, + STATE(5111), 1, sym_comment, - ACTIONS(8441), 12, + ACTIONS(8445), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391344,14 +393686,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [183649] = 4, + [187303] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(6203), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6205), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8095), 1, + anon_sym_DOLLAR, + STATE(3450), 1, + sym__immediate_decimal, + STATE(5112), 1, + sym_comment, + ACTIONS(6285), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3449), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1603), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [187338] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(6203), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6205), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8095), 1, + anon_sym_DOLLAR, + STATE(3438), 1, + sym__immediate_decimal, + STATE(5113), 1, + sym_comment, + ACTIONS(6285), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3457), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1671), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [187373] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(6203), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6205), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8095), 1, + anon_sym_DOLLAR, + STATE(3444), 1, + sym__immediate_decimal, + STATE(5114), 1, + sym_comment, + ACTIONS(6285), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3439), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1675), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [187408] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(6203), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6205), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8095), 1, + anon_sym_DOLLAR, + STATE(3453), 1, + sym__immediate_decimal, + STATE(5115), 1, + sym_comment, + ACTIONS(6285), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3448), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1679), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [187443] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8445), 1, + ACTIONS(2436), 1, anon_sym_DASH2, - STATE(5102), 1, + STATE(5116), 1, sym_comment, - ACTIONS(8443), 11, + ACTIONS(2438), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -391363,10 +393805,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183672] = 3, + [187466] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5103), 1, + STATE(5117), 1, sym_comment, ACTIONS(8447), 12, sym__newline, @@ -391381,10 +393823,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [183693] = 3, + [187487] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5104), 1, + STATE(5118), 1, sym_comment, ACTIONS(8449), 12, sym__newline, @@ -391399,40 +393841,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [183714] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5410), 1, - anon_sym_LPAREN2, - ACTIONS(5414), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5416), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5805), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8285), 1, - anon_sym_DOLLAR, - ACTIONS(8287), 1, - anon_sym_DOLLAR2, - ACTIONS(8289), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8291), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8349), 1, - anon_sym_RBRACK, - STATE(2800), 1, - sym__immediate_decimal, - STATE(5105), 1, - sym_comment, - STATE(2873), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [183755] = 3, + [187508] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5106), 1, + STATE(5119), 1, sym_comment, - ACTIONS(6953), 12, + ACTIONS(8045), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391444,19 +393859,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [183776] = 6, + [187529] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7833), 1, - sym__newline, - ACTIONS(8451), 1, - anon_sym_else, - STATE(5107), 1, + STATE(5120), 1, sym_comment, - STATE(5109), 1, - aux_sym_shebang_repeat1, - ACTIONS(7836), 9, + ACTIONS(8451), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -391466,13 +393876,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183803] = 3, + anon_sym_RPAREN, + [187550] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5108), 1, + STATE(5121), 1, sym_comment, - ACTIONS(8097), 12, - ts_builtin_sym_end, + ACTIONS(8453), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391484,18 +393894,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183824] = 6, + anon_sym_RPAREN, + [187571] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7985), 1, + ACTIONS(8457), 1, + anon_sym_DASH2, + STATE(5122), 1, + sym_comment, + ACTIONS(8455), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(8453), 1, - anon_sym_else, - STATE(5109), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [187594] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5123), 1, sym_comment, - STATE(5113), 1, - aux_sym_shebang_repeat1, - ACTIONS(7988), 9, + ACTIONS(8195), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -391505,18 +393932,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183851] = 6, + [187615] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5462), 1, + anon_sym_LPAREN2, + ACTIONS(5466), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5468), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5727), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8287), 1, + anon_sym_DOLLAR, + ACTIONS(8289), 1, + anon_sym_DOLLAR2, + ACTIONS(8291), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8293), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8459), 1, + anon_sym_RBRACK, + STATE(2857), 1, + sym__immediate_decimal, + STATE(5124), 1, + sym_comment, + STATE(2894), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [187656] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7880), 1, - sym__newline, - ACTIONS(8455), 1, + ACTIONS(8461), 1, anon_sym_else, - STATE(5110), 1, + STATE(5125), 1, sym_comment, - STATE(5114), 1, - aux_sym_shebang_repeat1, - ACTIONS(7883), 9, + ACTIONS(8205), 11, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -391526,18 +393979,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183878] = 6, + [187679] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7887), 1, - sym__newline, - ACTIONS(8457), 1, - anon_sym_else, - STATE(5111), 1, + STATE(5126), 1, sym_comment, - STATE(5115), 1, - aux_sym_shebang_repeat1, - ACTIONS(7890), 9, + ACTIONS(8197), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -391547,81 +393997,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183905] = 6, + [187700] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8459), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8461), 1, + ACTIONS(8463), 1, + anon_sym_DOT, + ACTIONS(8465), 1, aux_sym__immediate_decimal_token2, - STATE(5112), 1, + STATE(5127), 1, sym_comment, - ACTIONS(1621), 4, + ACTIONS(1573), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1623), 6, + ACTIONS(1575), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [183932] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5149), 1, - sym__newline, - ACTIONS(8463), 1, - anon_sym_else, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(5113), 1, - sym_comment, - ACTIONS(1296), 9, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [183959] = 6, + [187727] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8014), 1, - sym__newline, - ACTIONS(8466), 1, - anon_sym_else, - STATE(5114), 1, + STATE(5128), 1, sym_comment, - STATE(5117), 1, - aux_sym_shebang_repeat1, - ACTIONS(8017), 9, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [183986] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7974), 1, + ACTIONS(8467), 12, sym__newline, - ACTIONS(8468), 1, - anon_sym_else, - STATE(5115), 1, - sym_comment, - STATE(5118), 1, - aux_sym_shebang_repeat1, - ACTIONS(7977), 9, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -391631,39 +394035,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [184013] = 6, + anon_sym_RPAREN, + [187748] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7992), 1, - sym__newline, - ACTIONS(8470), 1, - anon_sym_else, - STATE(5116), 1, + STATE(5129), 1, sym_comment, - STATE(5119), 1, - aux_sym_shebang_repeat1, - ACTIONS(7995), 9, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [184040] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5149), 1, + ACTIONS(8213), 12, + ts_builtin_sym_end, sym__newline, - ACTIONS(8472), 1, - anon_sym_else, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(5117), 1, - sym_comment, - ACTIONS(1296), 9, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -391673,60 +394054,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [184067] = 6, - ACTIONS(247), 1, + [187769] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5149), 1, - sym__newline, - ACTIONS(8475), 1, - anon_sym_else, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(5118), 1, + ACTIONS(1657), 1, + anon_sym_RBRACE, + ACTIONS(1659), 1, + sym__entry_separator, + ACTIONS(1661), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(8073), 1, + anon_sym_LPAREN2, + ACTIONS(8311), 1, + anon_sym_DOLLAR, + ACTIONS(8429), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8431), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8433), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8435), 1, + aux_sym__immediate_decimal_token5, + STATE(5130), 1, sym_comment, - ACTIONS(1296), 9, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [184094] = 6, + STATE(6578), 1, + sym__immediate_decimal, + STATE(7161), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [187810] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7946), 1, - sym__newline, - ACTIONS(8478), 1, - anon_sym_else, - STATE(5119), 1, + STATE(5131), 1, sym_comment, - STATE(5120), 1, - aux_sym_shebang_repeat1, - ACTIONS(7949), 9, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [184121] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5149), 1, + ACTIONS(8469), 12, sym__newline, - ACTIONS(8480), 1, - anon_sym_else, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(5120), 1, - sym_comment, - ACTIONS(1296), 9, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -391736,14 +394099,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [184148] = 4, + anon_sym_RPAREN, + [187831] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8485), 1, + ACTIONS(2494), 1, anon_sym_DASH2, - STATE(5121), 1, + STATE(5132), 1, sym_comment, - ACTIONS(8483), 11, + ACTIONS(2496), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -391755,188 +394119,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [184171] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1530), 1, - anon_sym_DASH2, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(6211), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8487), 1, - anon_sym_DOLLAR, - STATE(3619), 1, - sym__immediate_decimal, - STATE(5122), 1, - sym_comment, - ACTIONS(1544), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(6229), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3436), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [184208] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1565), 1, - anon_sym_DASH2, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(6211), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8487), 1, - anon_sym_DOLLAR, - STATE(3607), 1, - sym__immediate_decimal, - STATE(5123), 1, - sym_comment, - ACTIONS(1577), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(6229), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3431), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [184245] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1581), 1, - anon_sym_DASH2, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(6211), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8487), 1, - anon_sym_DOLLAR, - STATE(3434), 1, - sym__immediate_decimal, - STATE(5124), 1, - sym_comment, - ACTIONS(1591), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(6229), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3433), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [184282] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1691), 1, - anon_sym_DASH2, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(6211), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8487), 1, - anon_sym_DOLLAR, - STATE(3424), 1, - sym__immediate_decimal, - STATE(5125), 1, - sym_comment, - ACTIONS(1693), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(6229), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3423), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [184319] = 11, + [187854] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1663), 1, - anon_sym_DASH2, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(6211), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8487), 1, - anon_sym_DOLLAR, - STATE(3427), 1, - sym__immediate_decimal, - STATE(5126), 1, + STATE(5133), 1, sym_comment, - ACTIONS(1671), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(6229), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3425), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [184356] = 11, + ACTIONS(8471), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(8473), 10, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [187877] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1705), 1, + ACTIONS(8477), 1, anon_sym_DASH2, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(6211), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8487), 1, - anon_sym_DOLLAR, - STATE(3430), 1, - sym__immediate_decimal, - STATE(5127), 1, - sym_comment, - ACTIONS(1707), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(6229), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3428), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [184393] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5128), 1, + STATE(5134), 1, sym_comment, - ACTIONS(6827), 12, - ts_builtin_sym_end, + ACTIONS(8475), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [184414] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [187900] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2500), 1, + ACTIONS(8481), 1, anon_sym_DASH2, - STATE(5129), 1, + STATE(5135), 1, sym_comment, - ACTIONS(2502), 11, + ACTIONS(8479), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -391948,12 +394176,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [184437] = 3, + [187923] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5130), 1, + STATE(5136), 1, sym_comment, - ACTIONS(8117), 12, + ACTIONS(8087), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -391966,13 +394194,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [184458] = 3, + [187944] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5131), 1, + STATE(5137), 1, sym_comment, - ACTIONS(8219), 12, - ts_builtin_sym_end, + ACTIONS(8483), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391984,12 +394211,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [184479] = 4, + anon_sym_RPAREN, + [187965] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8487), 1, + anon_sym_DASH2, + STATE(5138), 1, + sym_comment, + ACTIONS(8485), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [187988] = 4, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(8491), 1, anon_sym_DASH2, - STATE(5132), 1, + STATE(5139), 1, sym_comment, ACTIONS(8489), 11, anon_sym_EQ, @@ -392003,13 +394250,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [184502] = 3, + [188011] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5133), 1, + STATE(5140), 1, sym_comment, - ACTIONS(8221), 12, - ts_builtin_sym_end, + ACTIONS(8493), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392021,40 +394267,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [184523] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5410), 1, - anon_sym_LPAREN2, - ACTIONS(5414), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5416), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5805), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8285), 1, - anon_sym_DOLLAR, - ACTIONS(8287), 1, - anon_sym_DOLLAR2, - ACTIONS(8289), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8291), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8493), 1, - anon_sym_RBRACK, - STATE(2800), 1, - sym__immediate_decimal, - STATE(5134), 1, - sym_comment, - STATE(2873), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [184564] = 9, + anon_sym_RPAREN, + [188032] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1709), 1, + ACTIONS(1707), 1, anon_sym_DASH2, - ACTIONS(4708), 1, + ACTIONS(4722), 1, anon_sym_DOT_DOT2, ACTIONS(8495), 1, sym_filesize_unit, @@ -392062,89 +394281,70 @@ static const uint16_t ts_small_parse_table[] = { sym_duration_unit, ACTIONS(8499), 1, aux_sym_unquoted_token2, - STATE(5135), 1, + STATE(5141), 1, sym_comment, - ACTIONS(4710), 2, + ACTIONS(4724), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1721), 5, + ACTIONS(1719), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [184597] = 3, + [188065] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5136), 1, + ACTIONS(8457), 1, + anon_sym_DASH2, + STATE(5142), 1, sym_comment, - ACTIONS(8501), 12, + ACTIONS(8455), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [184618] = 13, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [188088] = 11, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1530), 1, - anon_sym_RBRACE, - ACTIONS(1544), 1, - sym__entry_separator, - ACTIONS(1546), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(8139), 1, + ACTIONS(1559), 1, + aux_sym_unquoted_token2, + ACTIONS(6197), 1, anon_sym_LPAREN2, - ACTIONS(8307), 1, + ACTIONS(8095), 1, anon_sym_DOLLAR, - ACTIONS(8373), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8375), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8377), 1, + ACTIONS(8369), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8379), 1, + ACTIONS(8371), 1, aux_sym__immediate_decimal_token5, - STATE(5137), 1, + STATE(5143), 1, sym_comment, - STATE(6709), 1, + STATE(7436), 1, sym__immediate_decimal, - STATE(6941), 2, + ACTIONS(1557), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(8367), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3451), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [184659] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5138), 1, - sym_comment, - ACTIONS(8503), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [184680] = 4, + [188125] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8507), 1, + ACTIONS(8503), 1, anon_sym_DASH2, - STATE(5139), 1, + STATE(5144), 1, sym_comment, - ACTIONS(8505), 11, + ACTIONS(8501), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -392156,12 +394356,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [184703] = 3, + [188148] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5140), 1, + STATE(5145), 1, sym_comment, - ACTIONS(8509), 12, + ACTIONS(8165), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392173,13 +394374,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [184724] = 3, + [188169] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5141), 1, + STATE(5146), 1, sym_comment, - ACTIONS(8511), 12, + ACTIONS(6831), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392191,136 +394392,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [184745] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(6211), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8173), 1, - anon_sym_DOLLAR, - STATE(3434), 1, - sym__immediate_decimal, - STATE(5142), 1, - sym_comment, - ACTIONS(6229), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3433), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1591), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [184780] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(6211), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8173), 1, - anon_sym_DOLLAR, - STATE(3424), 1, - sym__immediate_decimal, - STATE(5143), 1, - sym_comment, - ACTIONS(6229), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3423), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1693), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [184815] = 10, + [188190] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(6211), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8173), 1, - anon_sym_DOLLAR, - STATE(3427), 1, - sym__immediate_decimal, - STATE(5144), 1, + ACTIONS(8507), 1, + anon_sym_DASH2, + STATE(5147), 1, sym_comment, - ACTIONS(6229), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3425), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1671), 3, + ACTIONS(8505), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [184850] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(6211), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8173), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - STATE(3430), 1, - sym__immediate_decimal, - STATE(5145), 1, - sym_comment, - ACTIONS(6229), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3428), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1707), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [184885] = 6, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [188213] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5701), 1, - sym__newline, - ACTIONS(8513), 1, + ACTIONS(2498), 1, anon_sym_DASH2, - STATE(5146), 1, + STATE(5148), 1, sym_comment, - ACTIONS(1288), 2, + ACTIONS(2500), 11, anon_sym_EQ, - anon_sym_COLON, - ACTIONS(5704), 8, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [184912] = 4, + [188236] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8515), 1, - anon_sym_else, - STATE(5147), 1, + STATE(5149), 1, sym_comment, - ACTIONS(8083), 11, + ACTIONS(8509), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392332,14 +394447,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [184935] = 4, + anon_sym_RPAREN, + [188257] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8519), 1, + ACTIONS(2130), 1, anon_sym_DASH2, - STATE(5148), 1, + STATE(5150), 1, sym_comment, - ACTIONS(8517), 11, + ACTIONS(2136), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -392351,33 +394467,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [184958] = 4, + [188280] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8523), 1, - anon_sym_DASH2, - STATE(5149), 1, + ACTIONS(8511), 1, + anon_sym_DOT, + ACTIONS(8513), 1, + aux_sym__immediate_decimal_token2, + STATE(5151), 1, sym_comment, - ACTIONS(8521), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1573), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1575), 7, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [184981] = 4, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [188307] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8527), 1, + ACTIONS(7716), 1, anon_sym_DASH2, - STATE(5150), 1, + STATE(5152), 1, sym_comment, - ACTIONS(8525), 11, + ACTIONS(7714), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -392389,40 +394507,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [185004] = 13, - ACTIONS(3), 1, + [188330] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1530), 1, - anon_sym_RBRACE, - ACTIONS(1544), 1, - sym__entry_separator, - ACTIONS(3097), 1, - anon_sym_DOLLAR, - ACTIONS(8139), 1, - anon_sym_LPAREN2, - ACTIONS(8193), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8195), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8197), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8199), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8529), 1, - anon_sym_DOT, - STATE(5151), 1, + STATE(5153), 1, sym_comment, - STATE(6033), 1, - sym__immediate_decimal, - STATE(5811), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [185045] = 3, + ACTIONS(8515), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [188351] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5152), 1, + STATE(5154), 1, sym_comment, - ACTIONS(8531), 12, + ACTIONS(8517), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392435,33 +394543,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [185066] = 4, + [188372] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8535), 1, - anon_sym_DASH2, - STATE(5153), 1, + STATE(5155), 1, sym_comment, - ACTIONS(8533), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8519), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [185089] = 4, + [188393] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8539), 1, + ACTIONS(2146), 1, anon_sym_DASH2, - STATE(5154), 1, + STATE(5156), 1, sym_comment, - ACTIONS(8537), 11, + ACTIONS(2152), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -392473,12 +394580,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [185112] = 3, + [188416] = 11, ACTIONS(247), 1, anon_sym_POUND, - STATE(5155), 1, + ACTIONS(6195), 1, + anon_sym_DOLLAR, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(6414), 1, + anon_sym_DOT, + ACTIONS(8423), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8425), 1, + aux_sym__immediate_decimal_token5, + STATE(5157), 1, + sym_comment, + STATE(6077), 1, + sym__immediate_decimal, + ACTIONS(1557), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(8421), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6094), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [188453] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6195), 1, + anon_sym_DOLLAR, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(6199), 1, + anon_sym_DOT, + ACTIONS(8423), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8425), 1, + aux_sym__immediate_decimal_token5, + STATE(5158), 1, + sym_comment, + STATE(6093), 1, + sym__immediate_decimal, + ACTIONS(1603), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(8421), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6091), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [188490] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2540), 1, + anon_sym_DOLLAR, + ACTIONS(5278), 1, + anon_sym_LPAREN2, + ACTIONS(5282), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5284), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5286), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5549), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8289), 1, + anon_sym_DOLLAR2, + ACTIONS(8299), 1, + anon_sym_RBRACK, + ACTIONS(8521), 1, + aux_sym__immediate_decimal_token1, + STATE(2667), 1, + sym__immediate_decimal, + STATE(5159), 1, + sym_comment, + STATE(2810), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [188531] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5160), 1, sym_comment, - ACTIONS(8541), 12, + ACTIONS(8247), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392490,14 +394678,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [188552] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5161), 1, + sym_comment, + ACTIONS(1573), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1575), 9, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [188575] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2514), 1, + anon_sym_DASH2, + STATE(5162), 1, + sym_comment, + ACTIONS(2516), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [185133] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [188598] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5156), 1, + STATE(5163), 1, sym_comment, - ACTIONS(8259), 12, - ts_builtin_sym_end, + ACTIONS(8523), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392509,70 +394733,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [185154] = 11, - ACTIONS(247), 1, + anon_sym_RPAREN, + [188619] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6203), 1, - anon_sym_DOLLAR, - ACTIONS(6205), 1, + ACTIONS(1671), 1, + sym__entry_separator, + ACTIONS(8073), 1, anon_sym_LPAREN2, - ACTIONS(6435), 1, - anon_sym_DOT, - ACTIONS(8299), 1, + ACTIONS(8173), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8301), 1, + ACTIONS(8175), 1, aux_sym__immediate_decimal_token5, - STATE(5157), 1, - sym_comment, - STATE(6015), 1, - sym__immediate_decimal, - ACTIONS(1544), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(8297), 2, + ACTIONS(8311), 1, + anon_sym_DOLLAR, + ACTIONS(8313), 1, aux_sym__immediate_decimal_token1, + ACTIONS(8315), 1, aux_sym__immediate_decimal_token3, - STATE(6018), 2, + STATE(5164), 1, + sym_comment, + STATE(7135), 1, + sym__immediate_decimal, + ACTIONS(1663), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(7131), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [185191] = 11, - ACTIONS(247), 1, + [188658] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6203), 1, - anon_sym_DOLLAR, - ACTIONS(6205), 1, + ACTIONS(5462), 1, anon_sym_LPAREN2, - ACTIONS(6207), 1, - anon_sym_DOT, - ACTIONS(8299), 1, + ACTIONS(5466), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5468), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5727), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8287), 1, + anon_sym_DOLLAR, + ACTIONS(8289), 1, + anon_sym_DOLLAR2, + ACTIONS(8291), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8301), 1, + ACTIONS(8293), 1, aux_sym__immediate_decimal_token5, - STATE(5158), 1, - sym_comment, - STATE(6017), 1, + ACTIONS(8525), 1, + anon_sym_RBRACK, + STATE(2857), 1, sym__immediate_decimal, - ACTIONS(1591), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(8297), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6016), 2, + STATE(5165), 1, + sym_comment, + STATE(2894), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [185228] = 6, + [188699] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - STATE(772), 1, - aux_sym__pipe_separator, - STATE(5159), 1, + ACTIONS(8527), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8529), 1, + aux_sym__immediate_decimal_token2, + STATE(5166), 1, sym_comment, - STATE(5172), 1, - aux_sym_shebang_repeat1, - ACTIONS(2538), 9, + ACTIONS(1585), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1587), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [188726] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5167), 1, + sym_comment, + ACTIONS(8249), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -392582,12 +394828,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [185255] = 3, + [188747] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5160), 1, + STATE(5168), 1, sym_comment, - ACTIONS(8543), 12, + ACTIONS(5144), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392599,52 +394846,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [188768] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8533), 1, + anon_sym_DASH2, + STATE(5169), 1, + sym_comment, + ACTIONS(8531), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [185276] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [188791] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5161), 1, + ACTIONS(2351), 1, + anon_sym_DASH2, + STATE(5170), 1, sym_comment, - ACTIONS(8545), 12, + ACTIONS(2353), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [185297] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [188814] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5162), 1, + ACTIONS(8537), 1, + anon_sym_DASH2, + STATE(5171), 1, sym_comment, - ACTIONS(8547), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(8549), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [185320] = 4, + ACTIONS(8535), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [188837] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2094), 1, + ACTIONS(2355), 1, anon_sym_DASH2, - STATE(5163), 1, + STATE(5172), 1, sym_comment, - ACTIONS(2096), 11, + ACTIONS(2357), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -392656,12 +394922,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [185343] = 3, + [188860] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5164), 1, + STATE(5173), 1, sym_comment, - ACTIONS(8551), 12, + ACTIONS(8539), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392674,12 +394940,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [185364] = 3, + [188881] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5165), 1, + ACTIONS(8543), 1, + anon_sym_DASH2, + STATE(5174), 1, + sym_comment, + ACTIONS(8541), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [188904] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5175), 1, sym_comment, - ACTIONS(6833), 12, + ACTIONS(5148), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -392692,12 +394977,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [185385] = 3, + [188925] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(5166), 1, + STATE(5176), 1, + sym_comment, + ACTIONS(6985), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6991), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6987), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6989), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [188952] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5177), 1, sym_comment, - ACTIONS(8553), 12, + ACTIONS(8545), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392710,633 +395016,558 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [185406] = 6, + [188973] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7482), 1, - anon_sym_DASH2, - STATE(5167), 1, + ACTIONS(8547), 1, + anon_sym_DOT, + ACTIONS(8549), 1, + aux_sym__immediate_decimal_token2, + STATE(5178), 1, sym_comment, - STATE(5221), 1, - aux_sym_parameter_repeat2, - ACTIONS(2548), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(7480), 7, - sym_identifier, + ACTIONS(1573), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1575), 7, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [185432] = 10, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [188999] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6205), 1, + ACTIONS(6197), 1, anon_sym_LPAREN2, - ACTIONS(6412), 1, + ACTIONS(6420), 1, anon_sym_DOLLAR, - ACTIONS(8299), 1, + ACTIONS(8423), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8301), 1, + ACTIONS(8425), 1, aux_sym__immediate_decimal_token5, - STATE(3424), 1, + STATE(3615), 1, sym__immediate_decimal, - STATE(5168), 1, + STATE(5179), 1, sym_comment, - ACTIONS(1693), 2, + ACTIONS(1557), 2, sym__newline, anon_sym_LBRACE, - ACTIONS(8555), 2, + ACTIONS(8551), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3423), 2, + STATE(3451), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [185466] = 11, + [189033] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1544), 1, - anon_sym_LBRACE, - ACTIONS(1546), 1, + ACTIONS(8553), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8555), 1, + aux_sym__immediate_decimal_token2, + STATE(5180), 1, + sym_comment, + ACTIONS(1587), 3, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1585), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, aux_sym_unquoted_token2, - ACTIONS(6205), 1, + [189059] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6197), 1, anon_sym_LPAREN2, - ACTIONS(6412), 1, + ACTIONS(6420), 1, anon_sym_DOLLAR, - ACTIONS(8559), 1, + ACTIONS(8423), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8561), 1, + ACTIONS(8425), 1, aux_sym__immediate_decimal_token5, - STATE(5169), 1, - sym_comment, - STATE(7421), 1, + STATE(3625), 1, sym__immediate_decimal, - ACTIONS(8557), 2, + STATE(5181), 1, + sym_comment, + ACTIONS(1659), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(8551), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3436), 2, + STATE(3426), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [185502] = 8, + [189093] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1948), 1, + ACTIONS(3495), 1, + aux_sym_expr_unary_token1, + ACTIONS(6283), 1, + anon_sym_DOLLAR, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(8557), 1, anon_sym_DASH2, - ACTIONS(8563), 1, - anon_sym_DOT, - STATE(3508), 1, - sym_cell_path, - STATE(5170), 1, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(5182), 1, sym_comment, - STATE(5321), 1, - aux_sym_cell_path_repeat1, - STATE(5504), 1, - sym_path, - ACTIONS(1950), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [185532] = 8, - ACTIONS(247), 1, + ACTIONS(3361), 2, + anon_sym_true, + anon_sym_false, + STATE(2139), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [189125] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1952), 1, - anon_sym_DASH2, - ACTIONS(8563), 1, + ACTIONS(8559), 1, anon_sym_DOT, - STATE(3498), 1, - sym_cell_path, - STATE(5171), 1, + ACTIONS(8561), 1, + aux_sym__immediate_decimal_token2, + STATE(5183), 1, sym_comment, - STATE(5321), 1, - aux_sym_cell_path_repeat1, - STATE(5504), 1, - sym_path, - ACTIONS(1954), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + ACTIONS(1573), 3, anon_sym_RBRACE, - anon_sym_as, - [185562] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(5172), 1, - sym_comment, - ACTIONS(2613), 9, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [185586] = 10, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1575), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [189151] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6205), 1, + ACTIONS(1603), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, anon_sym_LPAREN2, - ACTIONS(6412), 1, + ACTIONS(6199), 1, + anon_sym_DOT, + ACTIONS(8417), 1, anon_sym_DOLLAR, - ACTIONS(8299), 1, + ACTIONS(8423), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8301), 1, + ACTIONS(8425), 1, aux_sym__immediate_decimal_token5, - STATE(3427), 1, - sym__immediate_decimal, - STATE(5173), 1, + STATE(5184), 1, sym_comment, - ACTIONS(1671), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(8555), 2, + STATE(6093), 1, + sym__immediate_decimal, + ACTIONS(8421), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3425), 2, + STATE(6091), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [185620] = 8, + [189187] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1960), 1, + ACTIONS(1847), 1, anon_sym_DASH2, ACTIONS(8563), 1, anon_sym_DOT, - STATE(3510), 1, + STATE(3501), 1, sym_cell_path, - STATE(5174), 1, + STATE(5185), 1, sym_comment, - STATE(5321), 1, + STATE(5263), 1, aux_sym_cell_path_repeat1, - STATE(5504), 1, + STATE(5510), 1, sym_path, - ACTIONS(1962), 6, + ACTIONS(1851), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [185650] = 8, + [189217] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8319), 1, + anon_sym_DASH_DASH, + ACTIONS(8321), 1, + anon_sym_DASH2, + ACTIONS(8565), 1, + anon_sym_DOLLAR, + ACTIONS(8567), 1, + anon_sym_LBRACE, + STATE(1867), 1, + sym_block, + STATE(1960), 1, + sym_val_closure, + STATE(5186), 1, + sym_comment, + STATE(5236), 1, + aux_sym_ctrl_do_repeat1, + STATE(816), 2, + sym__blosure, + sym_val_variable, + STATE(6035), 2, + sym_short_flag, + sym_long_flag, + [189253] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1968), 1, + ACTIONS(1915), 1, anon_sym_DASH2, ACTIONS(8563), 1, anon_sym_DOT, - STATE(3525), 1, + STATE(3504), 1, sym_cell_path, - STATE(5175), 1, + STATE(5187), 1, sym_comment, - STATE(5321), 1, + STATE(5263), 1, aux_sym_cell_path_repeat1, - STATE(5504), 1, + STATE(5510), 1, sym_path, - ACTIONS(1970), 6, + ACTIONS(1917), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [185680] = 8, + [189283] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1972), 1, + ACTIONS(1927), 1, anon_sym_DASH2, ACTIONS(8563), 1, anon_sym_DOT, - STATE(3493), 1, + STATE(3509), 1, sym_cell_path, - STATE(5176), 1, + STATE(5188), 1, sym_comment, - STATE(5321), 1, + STATE(5263), 1, aux_sym_cell_path_repeat1, - STATE(5504), 1, + STATE(5510), 1, sym_path, - ACTIONS(1974), 6, + ACTIONS(1929), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [185710] = 8, + [189313] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8465), 1, + aux_sym__immediate_decimal_token2, + STATE(5189), 1, + sym_comment, + ACTIONS(1573), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1575), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [189337] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1984), 1, + ACTIONS(2038), 1, anon_sym_DASH2, ACTIONS(8563), 1, anon_sym_DOT, - STATE(3494), 1, + STATE(3498), 1, sym_cell_path, - STATE(5177), 1, + STATE(5190), 1, sym_comment, - STATE(5321), 1, + STATE(5263), 1, aux_sym_cell_path_repeat1, - STATE(5504), 1, + STATE(5510), 1, sym_path, - ACTIONS(1986), 6, + ACTIONS(2040), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [185740] = 8, + [189367] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1988), 1, + ACTIONS(1871), 1, anon_sym_DASH2, ACTIONS(8563), 1, anon_sym_DOT, - STATE(3520), 1, + STATE(3499), 1, sym_cell_path, - STATE(5178), 1, + STATE(5191), 1, sym_comment, - STATE(5321), 1, + STATE(5263), 1, aux_sym_cell_path_repeat1, - STATE(5504), 1, + STATE(5510), 1, sym_path, - ACTIONS(1990), 6, + ACTIONS(1873), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [185770] = 5, - ACTIONS(3), 1, + [189397] = 10, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8565), 1, - aux_sym__immediate_decimal_token2, - STATE(5179), 1, - sym_comment, - ACTIONS(1673), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1675), 6, + ACTIONS(6197), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [185794] = 7, + ACTIONS(6420), 1, + anon_sym_DOLLAR, + ACTIONS(8423), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8425), 1, + aux_sym__immediate_decimal_token5, + STATE(3438), 1, + sym__immediate_decimal, + STATE(5192), 1, + sym_comment, + ACTIONS(1671), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(8551), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3457), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [189431] = 9, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(3405), 1, + aux_sym_expr_unary_token1, ACTIONS(8569), 1, - anon_sym_DASH_DASH, - ACTIONS(8572), 1, + anon_sym_LPAREN, + ACTIONS(8571), 1, + anon_sym_DOLLAR, + ACTIONS(8573), 1, anon_sym_DASH2, - STATE(5642), 1, - sym__flag, - STATE(5180), 2, - sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(5593), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8567), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_as, - [185822] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8575), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8577), 1, - aux_sym__immediate_decimal_token2, - STATE(5181), 1, + STATE(3908), 1, + sym__expr_unary_minus, + STATE(5193), 1, sym_comment, - ACTIONS(1621), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1623), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [185848] = 10, + ACTIONS(5115), 2, + anon_sym_true, + anon_sym_false, + STATE(3866), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [189463] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6205), 1, + ACTIONS(6197), 1, anon_sym_LPAREN2, - ACTIONS(6412), 1, + ACTIONS(6420), 1, anon_sym_DOLLAR, - ACTIONS(8299), 1, + ACTIONS(8423), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8301), 1, + ACTIONS(8425), 1, aux_sym__immediate_decimal_token5, - STATE(3430), 1, + STATE(3450), 1, sym__immediate_decimal, - STATE(5182), 1, + STATE(5194), 1, sym_comment, - ACTIONS(1707), 2, + ACTIONS(1603), 2, sym__newline, anon_sym_LBRACE, - ACTIONS(8555), 2, + ACTIONS(8551), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3428), 2, + STATE(3449), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [185882] = 8, + [189497] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8575), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8577), 1, + aux_sym__immediate_decimal_token2, + STATE(5195), 1, + sym_comment, + ACTIONS(1585), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1587), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [189523] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1976), 1, + ACTIONS(1907), 1, anon_sym_DASH2, ACTIONS(8563), 1, anon_sym_DOT, - STATE(3501), 1, + STATE(3527), 1, sym_cell_path, - STATE(5183), 1, + STATE(5196), 1, sym_comment, - STATE(5321), 1, + STATE(5263), 1, aux_sym_cell_path_repeat1, - STATE(5504), 1, + STATE(5510), 1, sym_path, - ACTIONS(1978), 6, + ACTIONS(1909), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [185912] = 8, + [189553] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1992), 1, + ACTIONS(1895), 1, anon_sym_DASH2, ACTIONS(8563), 1, anon_sym_DOT, - STATE(3522), 1, + STATE(3549), 1, sym_cell_path, - STATE(5184), 1, + STATE(5197), 1, sym_comment, - STATE(5321), 1, + STATE(5263), 1, aux_sym_cell_path_repeat1, - STATE(5504), 1, + STATE(5510), 1, sym_path, - ACTIONS(1994), 6, + ACTIONS(1897), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [185942] = 11, + [189583] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1577), 1, + ACTIONS(1557), 1, anon_sym_LBRACE, - ACTIONS(1579), 1, + ACTIONS(1559), 1, aux_sym_unquoted_token2, - ACTIONS(6205), 1, + ACTIONS(6197), 1, anon_sym_LPAREN2, - ACTIONS(6412), 1, + ACTIONS(6420), 1, anon_sym_DOLLAR, - ACTIONS(8559), 1, + ACTIONS(8581), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8561), 1, + ACTIONS(8583), 1, aux_sym__immediate_decimal_token5, - STATE(5185), 1, + STATE(5198), 1, sym_comment, - STATE(7467), 1, + STATE(7555), 1, sym__immediate_decimal, - ACTIONS(8557), 2, + ACTIONS(8579), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3431), 2, + STATE(3451), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [185978] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8579), 1, - aux_sym__immediate_decimal_token2, - STATE(5186), 1, - sym_comment, - ACTIONS(1673), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1675), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [186002] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8583), 1, - anon_sym_DASH_DASH, - ACTIONS(8585), 1, - anon_sym_DASH2, - ACTIONS(8587), 1, - anon_sym_as, - STATE(5187), 1, - sym_comment, - STATE(5189), 1, - aux_sym_ctrl_do_repeat1, - STATE(5642), 1, - sym__flag, - STATE(5593), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8581), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [186034] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8591), 1, - anon_sym_DASH2, - STATE(5188), 1, - sym_comment, - STATE(5221), 1, - aux_sym_parameter_repeat2, - ACTIONS(2548), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(8589), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [186060] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8583), 1, - anon_sym_DASH_DASH, - ACTIONS(8585), 1, - anon_sym_DASH2, - ACTIONS(8595), 1, - anon_sym_as, - STATE(5180), 1, - aux_sym_ctrl_do_repeat1, - STATE(5189), 1, - sym_comment, - STATE(5642), 1, - sym__flag, - STATE(5593), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8593), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [186092] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3495), 1, - aux_sym_expr_unary_token1, - ACTIONS(6227), 1, - anon_sym_DOLLAR, - ACTIONS(6671), 1, - anon_sym_LPAREN, - ACTIONS(8597), 1, - anon_sym_DASH2, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(5190), 1, - sym_comment, - ACTIONS(3361), 2, - anon_sym_true, - anon_sym_false, - STATE(2155), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [186124] = 9, - ACTIONS(83), 1, - aux_sym_expr_unary_token1, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5856), 1, - anon_sym_LPAREN, - ACTIONS(8599), 1, - anon_sym_DOLLAR, - ACTIONS(8601), 1, - anon_sym_DASH2, - STATE(2478), 1, - sym__expr_unary_minus, - STATE(5191), 1, - sym_comment, - ACTIONS(3437), 2, - anon_sym_true, - anon_sym_false, - STATE(2524), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [186156] = 8, + [189619] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1996), 1, + ACTIONS(1931), 1, anon_sym_DASH2, ACTIONS(8563), 1, anon_sym_DOT, - STATE(3511), 1, + STATE(3500), 1, sym_cell_path, - STATE(5192), 1, + STATE(5199), 1, sym_comment, - STATE(5321), 1, + STATE(5263), 1, aux_sym_cell_path_repeat1, - STATE(5504), 1, + STATE(5510), 1, sym_path, - ACTIONS(1998), 6, + ACTIONS(1933), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [186186] = 8, + [189649] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2000), 1, + ACTIONS(2030), 1, anon_sym_DASH2, ACTIONS(8563), 1, anon_sym_DOT, - STATE(3523), 1, + STATE(3532), 1, sym_cell_path, - STATE(5193), 1, + STATE(5200), 1, sym_comment, - STATE(5321), 1, + STATE(5263), 1, aux_sym_cell_path_repeat1, - STATE(5504), 1, + STATE(5510), 1, sym_path, - ACTIONS(2002), 6, + ACTIONS(2032), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [186216] = 6, - ACTIONS(247), 1, + [189679] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7407), 1, - anon_sym_DASH2, - STATE(5194), 1, - sym_comment, - STATE(5221), 1, - aux_sym_parameter_repeat2, - ACTIONS(2548), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(7405), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(1543), 1, + anon_sym_RBRACE, + ACTIONS(1557), 1, + sym__entry_separator, + ACTIONS(8073), 1, + anon_sym_LPAREN2, + ACTIONS(8173), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8175), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8311), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [186242] = 6, + ACTIONS(8313), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8315), 1, + aux_sym__immediate_decimal_token3, + STATE(5201), 1, + sym_comment, + STATE(7533), 1, + sym__immediate_decimal, + STATE(7221), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [189717] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8605), 1, + ACTIONS(8590), 1, anon_sym_DASH2, - STATE(5195), 1, - sym_comment, - STATE(5221), 1, - aux_sym_parameter_repeat2, - ACTIONS(2548), 2, + ACTIONS(8587), 2, sym__newline, anon_sym_COMMA, - ACTIONS(8603), 7, + STATE(5202), 2, + sym_comment, + aux_sym_parameter_repeat2, + ACTIONS(8585), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -393344,568 +395575,456 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [186268] = 7, + [189741] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(967), 1, - anon_sym_DASH2, - ACTIONS(8607), 1, - anon_sym_DOT, - STATE(5196), 1, + ACTIONS(8377), 1, + aux_sym__immediate_decimal_token2, + STATE(5203), 1, sym_comment, - STATE(5224), 1, - aux_sym_cell_path_repeat1, - STATE(5483), 1, - sym_path, - ACTIONS(969), 7, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_COLON, + ACTIONS(1575), 4, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [186296] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1573), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [189765] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2004), 1, + ACTIONS(1883), 1, anon_sym_DASH2, ACTIONS(8563), 1, anon_sym_DOT, - STATE(3490), 1, + STATE(3545), 1, sym_cell_path, - STATE(5197), 1, + STATE(5204), 1, sym_comment, - STATE(5321), 1, + STATE(5263), 1, aux_sym_cell_path_repeat1, - STATE(5504), 1, + STATE(5510), 1, sym_path, - ACTIONS(2006), 6, + ACTIONS(1885), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [186326] = 8, + [189795] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2068), 1, + ACTIONS(1879), 1, anon_sym_DASH2, ACTIONS(8563), 1, anon_sym_DOT, - STATE(3491), 1, + STATE(3520), 1, sym_cell_path, - STATE(5198), 1, + STATE(5205), 1, sym_comment, - STATE(5321), 1, + STATE(5263), 1, aux_sym_cell_path_repeat1, - STATE(5504), 1, + STATE(5510), 1, sym_path, - ACTIONS(2070), 6, + ACTIONS(1881), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [186356] = 8, - ACTIONS(247), 1, + [189825] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2072), 1, - anon_sym_DASH2, - ACTIONS(8563), 1, - anon_sym_DOT, - STATE(3500), 1, - sym_cell_path, - STATE(5199), 1, + ACTIONS(8592), 1, + aux_sym__immediate_decimal_token2, + STATE(5206), 1, sym_comment, - STATE(5321), 1, - aux_sym_cell_path_repeat1, - STATE(5504), 1, - sym_path, - ACTIONS(2074), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + ACTIONS(1681), 4, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_as, - [186386] = 8, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1683), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [189849] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1907), 1, + ACTIONS(2034), 1, anon_sym_DASH2, ACTIONS(8563), 1, anon_sym_DOT, - STATE(3505), 1, + STATE(3539), 1, sym_cell_path, - STATE(5200), 1, + STATE(5207), 1, sym_comment, - STATE(5321), 1, + STATE(5263), 1, aux_sym_cell_path_repeat1, - STATE(5504), 1, + STATE(5510), 1, sym_path, - ACTIONS(1911), 6, + ACTIONS(2036), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [186416] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8583), 1, - anon_sym_DASH_DASH, - ACTIONS(8585), 1, - anon_sym_DASH2, - ACTIONS(8611), 1, - anon_sym_as, - STATE(5201), 1, - sym_comment, - STATE(5235), 1, - aux_sym_ctrl_do_repeat1, - STATE(5642), 1, - sym__flag, - STATE(5593), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8609), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [186448] = 8, + [189879] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1913), 1, + ACTIONS(1899), 1, anon_sym_DASH2, ACTIONS(8563), 1, anon_sym_DOT, - STATE(3507), 1, + STATE(3505), 1, sym_cell_path, - STATE(5202), 1, + STATE(5208), 1, sym_comment, - STATE(5321), 1, + STATE(5263), 1, aux_sym_cell_path_repeat1, - STATE(5504), 1, + STATE(5510), 1, sym_path, - ACTIONS(1915), 6, + ACTIONS(1901), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [186478] = 9, - ACTIONS(203), 1, - aux_sym_expr_unary_token1, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6671), 1, - anon_sym_LPAREN, - ACTIONS(8173), 1, - anon_sym_DOLLAR, - ACTIONS(8597), 1, - anon_sym_DASH2, - STATE(2145), 1, - sym__expr_unary_minus, - STATE(5203), 1, - sym_comment, - ACTIONS(3361), 2, - anon_sym_true, - anon_sym_false, - STATE(2155), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [186510] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8613), 1, - anon_sym_else, - STATE(5204), 1, - sym_comment, - ACTIONS(8083), 10, - sym__newline, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [186532] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8413), 1, - aux_sym__immediate_decimal_token2, - STATE(5205), 1, - sym_comment, - ACTIONS(1609), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1607), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [186556] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8615), 1, - aux_sym__immediate_decimal_token2, - STATE(5206), 1, - sym_comment, - ACTIONS(1675), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1673), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [186580] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3451), 1, - aux_sym_expr_unary_token1, - ACTIONS(8617), 1, - anon_sym_LPAREN, - ACTIONS(8619), 1, - anon_sym_DOLLAR, - ACTIONS(8621), 1, - anon_sym_DASH2, - STATE(3850), 1, - sym__expr_unary_minus, - STATE(5207), 1, - sym_comment, - ACTIONS(5010), 2, - anon_sym_true, - anon_sym_false, - STATE(3894), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [186612] = 8, + [189909] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2082), 1, + ACTIONS(1911), 1, anon_sym_DASH2, ACTIONS(8563), 1, anon_sym_DOT, - STATE(3502), 1, + STATE(3503), 1, sym_cell_path, - STATE(5208), 1, + STATE(5209), 1, sym_comment, - STATE(5321), 1, + STATE(5263), 1, aux_sym_cell_path_repeat1, - STATE(5504), 1, + STATE(5510), 1, sym_path, - ACTIONS(2084), 6, + ACTIONS(1913), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [186642] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1565), 1, - anon_sym_RBRACE, - ACTIONS(1577), 1, - sym__entry_separator, - ACTIONS(8139), 1, - anon_sym_LPAREN2, - ACTIONS(8197), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8199), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8307), 1, - anon_sym_DOLLAR, - ACTIONS(8341), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8343), 1, - aux_sym__immediate_decimal_token3, - STATE(5209), 1, - sym_comment, - STATE(7406), 1, - sym__immediate_decimal, - STATE(6977), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [186680] = 11, + [189939] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1591), 1, + ACTIONS(1557), 1, anon_sym_LBRACE, - ACTIONS(6205), 1, + ACTIONS(6197), 1, anon_sym_LPAREN2, - ACTIONS(6207), 1, + ACTIONS(6414), 1, anon_sym_DOT, - ACTIONS(8293), 1, + ACTIONS(8417), 1, anon_sym_DOLLAR, - ACTIONS(8299), 1, + ACTIONS(8423), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8301), 1, + ACTIONS(8425), 1, aux_sym__immediate_decimal_token5, STATE(5210), 1, sym_comment, - STATE(6017), 1, + STATE(6077), 1, sym__immediate_decimal, - ACTIONS(8297), 2, + ACTIONS(8421), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6016), 2, + STATE(6094), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186716] = 11, + [189975] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1544), 1, - anon_sym_LBRACE, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(6435), 1, - anon_sym_DOT, - ACTIONS(8293), 1, - anon_sym_DOLLAR, - ACTIONS(8299), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8301), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(8513), 1, + aux_sym__immediate_decimal_token2, STATE(5211), 1, sym_comment, - STATE(6015), 1, - sym__immediate_decimal, - ACTIONS(8297), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6018), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [186752] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(6412), 1, + ACTIONS(1573), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1575), 7, anon_sym_DOLLAR, - ACTIONS(8299), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8301), 1, - aux_sym__immediate_decimal_token5, - STATE(3434), 1, - sym__immediate_decimal, - STATE(5212), 1, - sym_comment, - ACTIONS(1591), 2, - sym__newline, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(8555), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3433), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [186786] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [189999] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2090), 1, + ACTIONS(1867), 1, anon_sym_DASH2, ACTIONS(8563), 1, anon_sym_DOT, - STATE(3528), 1, + STATE(3535), 1, sym_cell_path, - STATE(5213), 1, + STATE(5212), 1, sym_comment, - STATE(5321), 1, + STATE(5263), 1, aux_sym_cell_path_repeat1, - STATE(5504), 1, + STATE(5510), 1, sym_path, - ACTIONS(2092), 6, + ACTIONS(1869), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [186816] = 6, + [190029] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8623), 1, + ACTIONS(8317), 1, + anon_sym_DOLLAR, + ACTIONS(8319), 1, + anon_sym_DASH_DASH, + ACTIONS(8321), 1, + anon_sym_DASH2, + ACTIONS(8323), 1, + anon_sym_LBRACE, + STATE(1770), 1, + sym_block, + STATE(1772), 1, + sym_val_closure, + STATE(5213), 1, + sym_comment, + STATE(5217), 1, + aux_sym_ctrl_do_repeat1, + STATE(800), 2, + sym__blosure, + sym_val_variable, + STATE(6035), 2, + sym_short_flag, + sym_long_flag, + [190065] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1657), 1, + anon_sym_RBRACE, + ACTIONS(1659), 1, + sym__entry_separator, + ACTIONS(8073), 1, + anon_sym_LPAREN2, + ACTIONS(8173), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8175), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8311), 1, + anon_sym_DOLLAR, + ACTIONS(8313), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8625), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(8315), 1, + aux_sym__immediate_decimal_token3, STATE(5214), 1, sym_comment, - ACTIONS(1621), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1623), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [186842] = 9, + STATE(7586), 1, + sym__immediate_decimal, + STATE(7161), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [190103] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3521), 1, - aux_sym_expr_unary_token1, - ACTIONS(5856), 1, - anon_sym_LPAREN, - ACTIONS(6349), 1, - anon_sym_DOLLAR, - ACTIONS(8601), 1, + ACTIONS(7466), 1, anon_sym_DASH2, - STATE(2478), 1, - sym__expr_unary_minus, + STATE(5202), 1, + aux_sym_parameter_repeat2, STATE(5215), 1, sym_comment, - ACTIONS(3437), 2, - anon_sym_true, - anon_sym_false, - STATE(2524), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [186874] = 8, + ACTIONS(2538), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(7464), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [190129] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1925), 1, + ACTIONS(1859), 1, anon_sym_DASH2, ACTIONS(8563), 1, anon_sym_DOT, - STATE(3480), 1, + STATE(3533), 1, sym_cell_path, STATE(5216), 1, sym_comment, - STATE(5321), 1, + STATE(5263), 1, aux_sym_cell_path_repeat1, - STATE(5504), 1, + STATE(5510), 1, sym_path, - ACTIONS(1927), 6, + ACTIONS(1861), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [186904] = 10, + [190159] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(6412), 1, + ACTIONS(8317), 1, anon_sym_DOLLAR, - ACTIONS(8299), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8301), 1, - aux_sym__immediate_decimal_token5, - STATE(3619), 1, - sym__immediate_decimal, + ACTIONS(8319), 1, + anon_sym_DASH_DASH, + ACTIONS(8321), 1, + anon_sym_DASH2, + ACTIONS(8323), 1, + anon_sym_LBRACE, + STATE(1770), 1, + sym_block, + STATE(1772), 1, + sym_val_closure, STATE(5217), 1, sym_comment, - ACTIONS(1544), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(8555), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3436), 2, - sym__expr_parenthesized_immediate, + STATE(5642), 1, + aux_sym_ctrl_do_repeat1, + STATE(780), 2, + sym__blosure, sym_val_variable, - [186938] = 6, + STATE(6035), 2, + sym_short_flag, + sym_long_flag, + [190195] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8627), 1, + ACTIONS(8594), 1, anon_sym_DOT, - ACTIONS(8629), 1, + ACTIONS(8596), 1, aux_sym__immediate_decimal_token2, STATE(5218), 1, sym_comment, - ACTIONS(1609), 3, + ACTIONS(1575), 3, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1607), 6, + ACTIONS(1573), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [186964] = 8, + [190221] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1557), 1, + anon_sym_EQ_GT, + ACTIONS(3593), 1, + anon_sym_DOLLAR, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(6203), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6205), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6414), 1, + anon_sym_DOT, + STATE(5219), 1, + sym_comment, + STATE(6812), 1, + sym__immediate_decimal, + ACTIONS(6201), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6018), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [190257] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8598), 1, + anon_sym_else, + STATE(5220), 1, + sym_comment, + ACTIONS(8205), 10, + sym__newline, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [190279] = 8, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(961), 1, anon_sym_DASH2, - ACTIONS(8607), 1, + ACTIONS(8563), 1, anon_sym_DOT, - STATE(3175), 1, + STATE(3196), 1, sym_cell_path, - STATE(5196), 1, - aux_sym_cell_path_repeat1, - STATE(5219), 1, + STATE(5221), 1, sym_comment, - STATE(5483), 1, + STATE(5263), 1, + aux_sym_cell_path_repeat1, + STATE(5510), 1, sym_path, ACTIONS(963), 6, - anon_sym_EQ, sym__newline, - anon_sym_COLON, - anon_sym_DOLLAR, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [186994] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_as, + [190309] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8387), 1, - aux_sym__immediate_decimal_token2, - STATE(5220), 1, + ACTIONS(8602), 1, + anon_sym_DASH2, + STATE(5202), 1, + aux_sym_parameter_repeat2, + STATE(5222), 1, sym_comment, - ACTIONS(1607), 4, + ACTIONS(2538), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(8600), 7, + sym_identifier, + anon_sym_PIPE, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1609), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [187018] = 5, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [190335] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8636), 1, + ACTIONS(8606), 1, anon_sym_DASH2, - ACTIONS(8633), 2, + STATE(5202), 1, + aux_sym_parameter_repeat2, + STATE(5223), 1, + sym_comment, + ACTIONS(2538), 2, sym__newline, anon_sym_COMMA, - STATE(5221), 2, - sym_comment, - aux_sym_parameter_repeat2, - ACTIONS(8631), 7, + ACTIONS(8604), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -393913,64 +396032,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [187042] = 8, + [190361] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2094), 1, + ACTIONS(1919), 1, anon_sym_DASH2, ACTIONS(8563), 1, anon_sym_DOT, - STATE(3504), 1, + STATE(3506), 1, sym_cell_path, - STATE(5222), 1, + STATE(5224), 1, sym_comment, - STATE(5321), 1, + STATE(5263), 1, aux_sym_cell_path_repeat1, - STATE(5504), 1, + STATE(5510), 1, sym_path, - ACTIONS(2096), 6, + ACTIONS(1921), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [187072] = 12, - ACTIONS(3), 1, + [190391] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1530), 1, - anon_sym_RBRACE, - ACTIONS(1544), 1, - sym__entry_separator, - ACTIONS(8139), 1, - anon_sym_LPAREN2, - ACTIONS(8197), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8199), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8307), 1, - anon_sym_DOLLAR, - ACTIONS(8341), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8343), 1, - aux_sym__immediate_decimal_token3, - STATE(5223), 1, + ACTIONS(8608), 1, + aux_sym__immediate_decimal_token2, + STATE(5225), 1, sym_comment, - STATE(7394), 1, - sym__immediate_decimal, - STATE(6941), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [187110] = 6, + ACTIONS(1681), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1683), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [190415] = 6, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(971), 1, anon_sym_DASH2, - ACTIONS(8638), 1, + ACTIONS(8610), 1, anon_sym_DOT, - STATE(5483), 1, + STATE(5393), 1, sym_path, - STATE(5224), 2, + STATE(5226), 2, sym_comment, aux_sym_cell_path_repeat1, ACTIONS(973), 7, @@ -393981,63 +396093,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [187136] = 10, + [190441] = 9, + ACTIONS(203), 1, + aux_sym_expr_unary_token1, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6205), 1, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, + anon_sym_DOLLAR, + ACTIONS(8557), 1, + anon_sym_DASH2, + STATE(2131), 1, + sym__expr_unary_minus, + STATE(5227), 1, + sym_comment, + ACTIONS(3361), 2, + anon_sym_true, + anon_sym_false, + STATE(2139), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [190473] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6197), 1, anon_sym_LPAREN2, - ACTIONS(6412), 1, + ACTIONS(6420), 1, anon_sym_DOLLAR, - ACTIONS(8299), 1, + ACTIONS(8423), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8301), 1, + ACTIONS(8425), 1, aux_sym__immediate_decimal_token5, - STATE(3607), 1, + STATE(3453), 1, sym__immediate_decimal, - STATE(5225), 1, + STATE(5228), 1, sym_comment, - ACTIONS(1577), 2, + ACTIONS(1679), 2, sym__newline, anon_sym_LBRACE, - ACTIONS(8555), 2, + ACTIONS(8551), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3431), 2, + STATE(3448), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [187170] = 6, + [190507] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8641), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8643), 1, - aux_sym__immediate_decimal_token2, - STATE(5226), 1, - sym_comment, - ACTIONS(1623), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1621), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, + ACTIONS(1659), 1, + anon_sym_LBRACE, + ACTIONS(1661), 1, aux_sym_unquoted_token2, - [187196] = 6, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(6420), 1, + anon_sym_DOLLAR, + ACTIONS(8581), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8583), 1, + aux_sym__immediate_decimal_token5, + STATE(5229), 1, + sym_comment, + STATE(7553), 1, + sym__immediate_decimal, + ACTIONS(8579), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3426), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [190543] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7490), 1, + ACTIONS(7474), 1, anon_sym_DASH2, - STATE(5221), 1, + STATE(5202), 1, aux_sym_parameter_repeat2, - STATE(5227), 1, + STATE(5230), 1, sym_comment, - ACTIONS(2548), 2, + ACTIONS(2538), 2, sym__newline, anon_sym_COMMA, - ACTIONS(7488), 7, + ACTIONS(7472), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -394045,19 +396185,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [187222] = 6, + [190569] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8647), 1, + ACTIONS(8615), 1, anon_sym_DASH2, - STATE(5221), 1, + STATE(5202), 1, aux_sym_parameter_repeat2, - STATE(5228), 1, + STATE(5231), 1, sym_comment, - ACTIONS(2548), 2, + ACTIONS(2538), 2, sym__newline, anon_sym_COMMA, - ACTIONS(8645), 7, + ACTIONS(8613), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -394065,1983 +396205,2226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [187248] = 12, + [190595] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(6412), 1, + ACTIONS(3521), 1, + aux_sym_expr_unary_token1, + ACTIONS(5803), 1, + anon_sym_LPAREN, + ACTIONS(6369), 1, anon_sym_DOLLAR, - ACTIONS(8649), 1, - sym_identifier, - ACTIONS(8651), 1, - anon_sym_DASH_DASH, - ACTIONS(8653), 1, + ACTIONS(8617), 1, anon_sym_DASH2, - STATE(5229), 1, + STATE(2523), 1, + sym__expr_unary_minus, + STATE(5232), 1, sym_comment, - STATE(5349), 1, - aux_sym_ctrl_do_repeat1, - STATE(5480), 1, + ACTIONS(3469), 2, + anon_sym_true, + anon_sym_false, + STATE(2544), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, sym_val_variable, - STATE(6126), 1, - sym__flag, - STATE(6716), 1, - sym__variable_name, - STATE(6104), 2, - sym_short_flag, - sym_long_flag, - [187286] = 8, + [190627] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1933), 1, + ACTIONS(8619), 1, + aux_sym__immediate_decimal_token2, + STATE(5233), 1, + sym_comment, + ACTIONS(1683), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1681), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [190651] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1887), 1, anon_sym_DASH2, ACTIONS(8563), 1, anon_sym_DOT, - STATE(3484), 1, + STATE(3513), 1, sym_cell_path, - STATE(5230), 1, + STATE(5234), 1, sym_comment, - STATE(5321), 1, + STATE(5263), 1, aux_sym_cell_path_repeat1, - STATE(5504), 1, + STATE(5510), 1, sym_path, - ACTIONS(1935), 6, + ACTIONS(1889), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [187316] = 8, + [190681] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(1942), 1, anon_sym_DASH2, ACTIONS(8563), 1, anon_sym_DOT, - STATE(3175), 1, + STATE(3519), 1, sym_cell_path, - STATE(5231), 1, + STATE(5235), 1, sym_comment, - STATE(5321), 1, + STATE(5263), 1, aux_sym_cell_path_repeat1, - STATE(5504), 1, + STATE(5510), 1, sym_path, - ACTIONS(963), 6, + ACTIONS(1944), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [187346] = 12, + [190711] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(6412), 1, - anon_sym_DOLLAR, - ACTIONS(8649), 1, - sym_identifier, - ACTIONS(8651), 1, + ACTIONS(8319), 1, anon_sym_DASH_DASH, - ACTIONS(8653), 1, + ACTIONS(8321), 1, anon_sym_DASH2, - STATE(5232), 1, + ACTIONS(8565), 1, + anon_sym_DOLLAR, + ACTIONS(8567), 1, + anon_sym_LBRACE, + STATE(1867), 1, + sym_block, + STATE(1960), 1, + sym_val_closure, + STATE(5236), 1, sym_comment, - STATE(5349), 1, + STATE(5642), 1, aux_sym_ctrl_do_repeat1, - STATE(5480), 1, + STATE(813), 2, + sym__blosure, sym_val_variable, - STATE(6126), 1, - sym__flag, - STATE(6716), 1, - sym__variable_name, - STATE(6104), 2, + STATE(6035), 2, sym_short_flag, sym_long_flag, - [187384] = 6, + [190747] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8655), 1, + ACTIONS(2026), 1, + anon_sym_DASH2, + ACTIONS(8563), 1, anon_sym_DOT, - ACTIONS(8657), 1, - aux_sym__immediate_decimal_token2, - STATE(5233), 1, + STATE(3550), 1, + sym_cell_path, + STATE(5237), 1, sym_comment, - ACTIONS(1607), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1609), 7, + STATE(5263), 1, + aux_sym_cell_path_repeat1, + STATE(5510), 1, + sym_path, + ACTIONS(2028), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [190777] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7490), 1, + anon_sym_DASH2, + STATE(5202), 1, + aux_sym_parameter_repeat2, + STATE(5238), 1, + sym_comment, + ACTIONS(2538), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(7488), 7, + sym_identifier, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [187410] = 8, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [190803] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1944), 1, + ACTIONS(961), 1, + anon_sym_DASH2, + ACTIONS(8621), 1, + anon_sym_DOT, + STATE(3196), 1, + sym_cell_path, + STATE(5239), 1, + sym_comment, + STATE(5242), 1, + aux_sym_cell_path_repeat1, + STATE(5393), 1, + sym_path, + ACTIONS(963), 6, + anon_sym_EQ, + sym__newline, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [190833] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1891), 1, anon_sym_DASH2, ACTIONS(8563), 1, anon_sym_DOT, - STATE(3517), 1, + STATE(3531), 1, sym_cell_path, - STATE(5234), 1, + STATE(5240), 1, sym_comment, - STATE(5321), 1, + STATE(5263), 1, aux_sym_cell_path_repeat1, - STATE(5504), 1, + STATE(5510), 1, sym_path, - ACTIONS(1946), 6, + ACTIONS(1893), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [187440] = 9, + [190863] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8583), 1, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(6420), 1, + anon_sym_DOLLAR, + ACTIONS(8423), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8425), 1, + aux_sym__immediate_decimal_token5, + STATE(3444), 1, + sym__immediate_decimal, + STATE(5241), 1, + sym_comment, + ACTIONS(1675), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(8551), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3439), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [190897] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(967), 1, + anon_sym_DASH2, + ACTIONS(8621), 1, + anon_sym_DOT, + STATE(5226), 1, + aux_sym_cell_path_repeat1, + STATE(5242), 1, + sym_comment, + STATE(5393), 1, + sym_path, + ACTIONS(969), 7, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_COLON, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - ACTIONS(8585), 1, + anon_sym_LBRACE, + [190925] = 9, + ACTIONS(83), 1, + aux_sym_expr_unary_token1, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5803), 1, + anon_sym_LPAREN, + ACTIONS(8617), 1, anon_sym_DASH2, - ACTIONS(8661), 1, - anon_sym_as, - STATE(5180), 1, - aux_sym_ctrl_do_repeat1, - STATE(5235), 1, + ACTIONS(8623), 1, + anon_sym_DOLLAR, + STATE(2523), 1, + sym__expr_unary_minus, + STATE(5243), 1, sym_comment, - STATE(5642), 1, - sym__flag, - STATE(5593), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8659), 4, + ACTIONS(3469), 2, + anon_sym_true, + anon_sym_false, + STATE(2544), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [190957] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1863), 1, + anon_sym_DASH2, + ACTIONS(8563), 1, + anon_sym_DOT, + STATE(3534), 1, + sym_cell_path, + STATE(5244), 1, + sym_comment, + STATE(5263), 1, + aux_sym_cell_path_repeat1, + STATE(5510), 1, + sym_path, + ACTIONS(1865), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [187472] = 6, + anon_sym_as, + [190987] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8663), 1, - anon_sym_DOT, - ACTIONS(8665), 1, + ACTIONS(8625), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8627), 1, aux_sym__immediate_decimal_token2, - STATE(5236), 1, + STATE(5245), 1, sym_comment, - ACTIONS(1607), 3, + ACTIONS(1585), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1609), 6, + ACTIONS(1587), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [187498] = 5, + [191013] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8339), 1, - aux_sym__immediate_decimal_token2, - STATE(5237), 1, + ACTIONS(3929), 1, + sym__newline, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(5246), 1, + sym_comment, + ACTIONS(2621), 9, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [191037] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8073), 1, + anon_sym_LPAREN2, + ACTIONS(8311), 1, + anon_sym_DOLLAR, + ACTIONS(8429), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8431), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8433), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8435), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8629), 1, + aux_sym__unquoted_in_record_token3, + STATE(5247), 1, sym_comment, - ACTIONS(1607), 3, + STATE(6377), 1, + sym__immediate_decimal, + STATE(7189), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [191072] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1707), 1, anon_sym_DASH2, + ACTIONS(4722), 1, anon_sym_DOT_DOT2, + ACTIONS(8631), 1, + sym_filesize_unit, + ACTIONS(8633), 1, + sym_duration_unit, + ACTIONS(8635), 1, aux_sym_unquoted_token2, - ACTIONS(1609), 7, + STATE(5248), 1, + sym_comment, + ACTIONS(4724), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1719), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + [191103] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8596), 1, + aux_sym__immediate_decimal_token2, + STATE(5249), 1, + sym_comment, + ACTIONS(1575), 3, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1573), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [187522] = 11, + aux_sym_unquoted_token2, + [191126] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1544), 1, - anon_sym_EQ_GT, - ACTIONS(3621), 1, - anon_sym_DOLLAR, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(6211), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6435), 1, + ACTIONS(8637), 1, + aux_sym__immediate_decimal_token2, + STATE(5250), 1, + sym_comment, + ACTIONS(1683), 3, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1681), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [191149] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8639), 1, anon_sym_DOT, - STATE(5238), 1, + ACTIONS(8641), 1, + aux_sym__immediate_decimal_token2, + STATE(5251), 1, sym_comment, - STATE(6738), 1, - sym__immediate_decimal, - ACTIONS(6209), 2, + ACTIONS(1573), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1575), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [191174] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8643), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5982), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [187558] = 11, + ACTIONS(8645), 1, + aux_sym__immediate_decimal_token2, + STATE(5252), 1, + sym_comment, + ACTIONS(1585), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1587), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [191199] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5410), 1, + ACTIONS(5462), 1, anon_sym_LPAREN2, - ACTIONS(5414), 1, + ACTIONS(5466), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5416), 1, + ACTIONS(5468), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5805), 1, + ACTIONS(5727), 1, aux_sym__unquoted_in_list_token3, - ACTIONS(8285), 1, + ACTIONS(8287), 1, anon_sym_DOLLAR, - ACTIONS(8289), 1, - aux_sym__immediate_decimal_token4, ACTIONS(8291), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8293), 1, aux_sym__immediate_decimal_token5, - STATE(2800), 1, + STATE(2857), 1, sym__immediate_decimal, - STATE(5239), 1, + STATE(5253), 1, sym_comment, - STATE(2873), 2, + STATE(2894), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [187593] = 11, + [191234] = 11, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(6420), 1, + anon_sym_DOLLAR, + ACTIONS(8647), 1, + sym_identifier, + ACTIONS(8649), 1, + anon_sym_DASH_DASH, + ACTIONS(8651), 1, + anon_sym_DASH2, + STATE(5254), 1, + sym_comment, + STATE(5392), 1, + aux_sym_ctrl_do_repeat1, + STATE(5398), 1, + sym_val_variable, + STATE(6365), 1, + sym__variable_name, + STATE(6035), 2, + sym_short_flag, + sym_long_flag, + [191269] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8337), 1, + anon_sym_DASH2, + STATE(5255), 1, + sym_comment, + ACTIONS(5792), 9, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [191290] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8139), 1, - anon_sym_LPAREN2, - ACTIONS(8307), 1, + ACTIONS(3097), 1, anon_sym_DOLLAR, - ACTIONS(8309), 1, + ACTIONS(8073), 1, + anon_sym_LPAREN2, + ACTIONS(8169), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8311), 1, + ACTIONS(8171), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8313), 1, + ACTIONS(8173), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8315), 1, + ACTIONS(8175), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8667), 1, + ACTIONS(8653), 1, aux_sym__unquoted_in_list_token3, - STATE(5240), 1, + STATE(5256), 1, sym_comment, - STATE(6385), 1, + STATE(5683), 1, sym__immediate_decimal, - STATE(7333), 2, + STATE(5744), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [187628] = 6, + [191325] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8669), 1, + ACTIONS(8655), 1, anon_sym_DOT, - ACTIONS(8671), 1, + ACTIONS(8657), 1, aux_sym__immediate_decimal_token2, - STATE(5241), 1, + STATE(5257), 1, sym_comment, - ACTIONS(1609), 3, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1607), 5, - sym_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [187653] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1709), 1, - anon_sym_DASH2, - ACTIONS(4708), 1, + ACTIONS(1573), 2, anon_sym_DOT_DOT2, - ACTIONS(8673), 1, - sym_filesize_unit, - ACTIONS(8675), 1, - sym_duration_unit, - ACTIONS(8677), 1, aux_sym_unquoted_token2, - STATE(5242), 1, - sym_comment, - ACTIONS(4710), 2, + ACTIONS(1575), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1721), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [187684] = 11, - ACTIONS(247), 1, + sym_filesize_unit, + sym_duration_unit, + [191350] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6349), 1, + ACTIONS(8073), 1, + anon_sym_LPAREN2, + ACTIONS(8311), 1, anon_sym_DOLLAR, - ACTIONS(8651), 1, - anon_sym_DASH_DASH, + ACTIONS(8327), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8329), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8331), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8333), 1, + aux_sym__immediate_decimal_token5, ACTIONS(8653), 1, - anon_sym_DASH2, - ACTIONS(8679), 1, - sym_identifier, - STATE(5243), 1, - sym_comment, + aux_sym__unquoted_in_list_token3, STATE(5258), 1, - aux_sym_ctrl_do_repeat1, - STATE(6126), 1, - sym__flag, - STATE(6930), 1, - sym__variable_name, - STATE(7151), 1, + sym_comment, + STATE(6774), 1, + sym__immediate_decimal, + STATE(7189), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(6104), 2, - sym_short_flag, - sym_long_flag, - [187719] = 6, - ACTIONS(3), 1, + [191385] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8681), 1, + ACTIONS(8659), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8683), 1, + ACTIONS(8661), 1, aux_sym__immediate_decimal_token2, - STATE(5244), 1, + STATE(5259), 1, sym_comment, - ACTIONS(1621), 3, - sym__newline, + ACTIONS(1585), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1623), 5, - sym__space, + ACTIONS(1587), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [187744] = 6, - ACTIONS(247), 1, + [191410] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8685), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8687), 1, - aux_sym__immediate_decimal_token2, - STATE(5245), 1, + STATE(5260), 1, sym_comment, - ACTIONS(1623), 3, - anon_sym_DOLLAR, + ACTIONS(1573), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1575), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1621), 5, - sym_identifier, - anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [187769] = 8, + sym__entry_separator, + [191431] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8689), 1, + ACTIONS(8663), 1, anon_sym_DOT, - STATE(5246), 1, + STATE(5261), 1, sym_comment, - STATE(5477), 1, + STATE(5459), 1, aux_sym_cell_path_repeat1, - STATE(5631), 1, + STATE(5675), 1, sym_path, - STATE(5741), 1, + STATE(5755), 1, sym_cell_path, - ACTIONS(1769), 3, + ACTIONS(961), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - ACTIONS(1771), 3, + ACTIONS(963), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [187798] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8691), 1, - anon_sym_DOT, - ACTIONS(8693), 1, - aux_sym__immediate_decimal_token2, - STATE(5247), 1, - sym_comment, - ACTIONS(1607), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1609), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [187823] = 4, - ACTIONS(247), 1, + [191460] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5248), 1, + STATE(5262), 1, sym_comment, - ACTIONS(1609), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1607), 6, - sym_identifier, - anon_sym_DASH2, + ACTIONS(1585), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [187844] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5249), 1, - sym_comment, - ACTIONS(1623), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + aux_sym__unquoted_in_list_token2, + ACTIONS(1587), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1621), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [187865] = 5, + sym__entry_separator, + [191481] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(978), 1, + ACTIONS(967), 1, anon_sym_DASH2, - ACTIONS(8695), 1, - anon_sym_QMARK2, - STATE(5250), 1, + ACTIONS(8563), 1, + anon_sym_DOT, + STATE(5263), 1, sym_comment, - ACTIONS(980), 8, - anon_sym_EQ, - sym_identifier, + STATE(5264), 1, + aux_sym_cell_path_repeat1, + STATE(5510), 1, + sym_path, + ACTIONS(969), 6, sym__newline, - anon_sym_COLON, - anon_sym_DOLLAR, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - [187888] = 5, + anon_sym_RBRACE, + anon_sym_as, + [191508] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(984), 1, + ACTIONS(971), 1, anon_sym_DASH2, - ACTIONS(8697), 1, - anon_sym_QMARK2, - STATE(5251), 1, + ACTIONS(8665), 1, + anon_sym_DOT, + STATE(5510), 1, + sym_path, + STATE(5264), 2, sym_comment, - ACTIONS(986), 8, - anon_sym_EQ, - sym_identifier, + aux_sym_cell_path_repeat1, + ACTIONS(973), 6, sym__newline, - anon_sym_COLON, - anon_sym_DOLLAR, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - [187911] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + anon_sym_as, + [191533] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8699), 1, + ACTIONS(8668), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8701), 1, + ACTIONS(8670), 1, aux_sym__immediate_decimal_token2, - STATE(5252), 1, + STATE(5265), 1, sym_comment, - ACTIONS(1621), 2, + ACTIONS(1739), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1623), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, + aux_sym__unquoted_in_list_token2, + ACTIONS(1741), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [187936] = 10, - ACTIONS(247), 1, + sym__entry_separator, + [191558] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5663), 1, - anon_sym_DQUOTE, - ACTIONS(5667), 1, - sym_raw_string_begin, - ACTIONS(8703), 1, - sym_identifier, - ACTIONS(8705), 1, - anon_sym_GT2, - STATE(5253), 1, + ACTIONS(2997), 1, + anon_sym_DOLLAR, + ACTIONS(4063), 1, + anon_sym_LPAREN2, + ACTIONS(4067), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(4069), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4569), 1, + aux_sym_unquoted_token3, + ACTIONS(8672), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8674), 1, + aux_sym__immediate_decimal_token5, + STATE(1493), 1, + sym__immediate_decimal, + STATE(5266), 1, sym_comment, - STATE(5301), 1, - aux_sym_collection_type_repeat1, - STATE(5491), 1, - sym_val_string, - ACTIONS(5665), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5556), 2, - sym__raw_str, - sym__str_double_quotes, - [187969] = 4, - ACTIONS(247), 1, + STATE(1642), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [191593] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5254), 1, + STATE(5267), 1, sym_comment, - ACTIONS(1675), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(1681), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1683), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1673), 6, - sym_identifier, - anon_sym_DASH2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [191614] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4419), 1, + anon_sym_DOLLAR, + ACTIONS(4487), 1, + anon_sym_LPAREN2, + ACTIONS(4489), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(4491), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4569), 1, + aux_sym_unquoted_token3, + ACTIONS(8676), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8678), 1, + aux_sym__immediate_decimal_token5, + STATE(1712), 1, + sym__immediate_decimal, + STATE(5268), 1, + sym_comment, + STATE(1878), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [191649] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1707), 1, + anon_sym_RBRACK, + ACTIONS(1719), 1, + sym__entry_separator, + ACTIONS(5539), 1, + anon_sym_LPAREN2, + ACTIONS(8653), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(8680), 1, anon_sym_DOT_DOT2, + ACTIONS(8684), 1, sym_filesize_unit, + ACTIONS(8686), 1, sym_duration_unit, - aux_sym_unquoted_token2, - [187990] = 8, + STATE(5269), 1, + sym_comment, + STATE(7608), 1, + sym__expr_parenthesized_immediate, + ACTIONS(8682), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [191684] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6487), 1, - anon_sym_DOT, - STATE(3175), 1, - sym_cell_path, - STATE(3451), 1, - aux_sym_cell_path_repeat1, - STATE(3559), 1, - sym_path, - STATE(5255), 1, + ACTIONS(4722), 1, + anon_sym_DOT_DOT2, + ACTIONS(8635), 1, + aux_sym_unquoted_token2, + ACTIONS(8688), 1, + sym_filesize_unit, + ACTIONS(8690), 1, + sym_duration_unit, + STATE(5270), 1, sym_comment, - ACTIONS(961), 2, + ACTIONS(1707), 2, + sym_identifier, anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(963), 4, + ACTIONS(1719), 2, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(4724), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [188019] = 4, - ACTIONS(247), 1, + [191715] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5271), 1, + sym_comment, + ACTIONS(1761), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1763), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [191736] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5553), 1, + anon_sym_LPAREN2, + ACTIONS(5555), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5557), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5727), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8692), 1, + anon_sym_DOLLAR, + ACTIONS(8694), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8696), 1, + aux_sym__immediate_decimal_token5, + STATE(3064), 1, + sym__immediate_decimal, + STATE(5272), 1, + sym_comment, + STATE(3134), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [191771] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5256), 1, + ACTIONS(8698), 1, + anon_sym_DOT, + ACTIONS(8700), 1, + aux_sym__immediate_decimal_token2, + STATE(5273), 1, sym_comment, ACTIONS(1765), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1767), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1763), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [188040] = 11, + sym__entry_separator, + [191796] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5461), 1, + ACTIONS(3627), 1, anon_sym_DOLLAR, - ACTIONS(5463), 1, + ACTIONS(7163), 1, anon_sym_LPAREN2, - ACTIONS(5465), 1, + ACTIONS(7167), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5467), 1, + ACTIONS(7169), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7293), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8702), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5469), 1, + ACTIONS(8704), 1, aux_sym__immediate_decimal_token5, - ACTIONS(5566), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8707), 1, - aux_sym__immediate_decimal_token1, - STATE(2900), 1, + STATE(4264), 1, sym__immediate_decimal, - STATE(5257), 1, + STATE(5274), 1, sym_comment, - STATE(3081), 2, + STATE(4542), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [188075] = 11, - ACTIONS(247), 1, + [191831] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6349), 1, + ACTIONS(7163), 1, + anon_sym_LPAREN2, + ACTIONS(7210), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7212), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7293), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8706), 1, anon_sym_DOLLAR, - ACTIONS(8651), 1, - anon_sym_DASH_DASH, - ACTIONS(8653), 1, - anon_sym_DASH2, - ACTIONS(8679), 1, - sym_identifier, - STATE(5258), 1, + ACTIONS(8708), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8710), 1, + aux_sym__immediate_decimal_token5, + STATE(4667), 1, + sym__immediate_decimal, + STATE(5275), 1, sym_comment, - STATE(5609), 1, - aux_sym_ctrl_do_repeat1, - STATE(6126), 1, - sym__flag, - STATE(7151), 1, + STATE(5012), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(7166), 1, - sym__variable_name, - STATE(6104), 2, - sym_short_flag, - sym_long_flag, - [188110] = 11, + [191866] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4864), 1, + ACTIONS(4866), 1, aux_sym_unquoted_token3, - ACTIONS(5200), 1, + ACTIONS(5214), 1, anon_sym_DOLLAR, - ACTIONS(6205), 1, + ACTIONS(6197), 1, anon_sym_LPAREN2, - ACTIONS(8075), 1, + ACTIONS(7821), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8709), 1, + ACTIONS(8712), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8711), 1, + ACTIONS(8714), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8713), 1, + ACTIONS(8716), 1, aux_sym__immediate_decimal_token5, - STATE(5259), 1, + STATE(5276), 1, sym_comment, - STATE(5836), 1, + STATE(5632), 1, sym__immediate_decimal, - STATE(5970), 2, + STATE(6008), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [188145] = 11, + [191901] = 11, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3291), 1, anon_sym_DOLLAR, - ACTIONS(4864), 1, + ACTIONS(4866), 1, aux_sym_unquoted_token3, - ACTIONS(6205), 1, + ACTIONS(6197), 1, anon_sym_LPAREN2, - ACTIONS(8327), 1, + ACTIONS(8097), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8715), 1, + ACTIONS(8718), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8717), 1, + ACTIONS(8720), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8719), 1, + ACTIONS(8722), 1, aux_sym__immediate_decimal_token5, - STATE(5260), 1, + STATE(5277), 1, sym_comment, - STATE(6951), 1, - sym__immediate_decimal, - STATE(3439), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [188180] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5499), 1, - anon_sym_LPAREN2, - ACTIONS(5501), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5503), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5805), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8721), 1, - anon_sym_DOLLAR, - ACTIONS(8723), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8725), 1, - aux_sym__immediate_decimal_token5, - STATE(3040), 1, + STATE(6655), 1, sym__immediate_decimal, - STATE(5261), 1, - sym_comment, - STATE(3131), 2, + STATE(3445), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [188215] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4708), 1, - anon_sym_DOT_DOT2, - ACTIONS(8677), 1, - aux_sym_unquoted_token2, - ACTIONS(8727), 1, - sym_filesize_unit, - ACTIONS(8729), 1, - sym_duration_unit, - STATE(5262), 1, - sym_comment, - ACTIONS(1709), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(1721), 2, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - ACTIONS(4710), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [188246] = 11, + [191936] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1810), 1, + ACTIONS(2066), 1, anon_sym_DOLLAR, - ACTIONS(7049), 1, + ACTIONS(7073), 1, anon_sym_LPAREN2, - ACTIONS(7053), 1, + ACTIONS(7077), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7055), 1, + ACTIONS(7079), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7057), 1, + ACTIONS(7081), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7059), 1, + ACTIONS(7083), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7157), 1, + ACTIONS(7236), 1, aux_sym_unquoted_token3, - STATE(4127), 1, + STATE(4184), 1, sym__immediate_decimal, - STATE(5263), 1, + STATE(5278), 1, sym_comment, - STATE(4209), 2, + STATE(4392), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [188281] = 11, + [191971] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4341), 1, + ACTIONS(4505), 1, anon_sym_DOLLAR, - ACTIONS(7049), 1, + ACTIONS(7073), 1, anon_sym_LPAREN2, - ACTIONS(7101), 1, + ACTIONS(7119), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7103), 1, + ACTIONS(7121), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7105), 1, + ACTIONS(7123), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7107), 1, + ACTIONS(7125), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7157), 1, + ACTIONS(7236), 1, aux_sym_unquoted_token3, - STATE(4311), 1, + STATE(4615), 1, sym__immediate_decimal, - STATE(5264), 1, + STATE(5279), 1, sym_comment, - STATE(4676), 2, + STATE(4931), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [188316] = 9, + [192006] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8731), 1, - anon_sym_DASH_DASH, - ACTIONS(8733), 1, + ACTIONS(1859), 1, anon_sym_DASH2, - ACTIONS(8735), 1, - anon_sym_as, - STATE(5265), 1, + ACTIONS(8724), 1, + anon_sym_DOT, + STATE(5280), 1, sym_comment, - STATE(5266), 1, - aux_sym_ctrl_do_repeat1, - STATE(5949), 1, - sym__flag, - STATE(5994), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8593), 3, + STATE(5404), 1, + aux_sym_cell_path_repeat1, + STATE(5633), 1, + sym_path, + STATE(5976), 1, + sym_cell_path, + ACTIONS(1861), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [188347] = 7, + anon_sym_DASH_DASH, + anon_sym_as, + [192035] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8737), 1, - anon_sym_DASH_DASH, - ACTIONS(8740), 1, + ACTIONS(5644), 1, + anon_sym_DQUOTE, + ACTIONS(5648), 1, + sym_raw_string_begin, + ACTIONS(8726), 1, + sym_identifier, + ACTIONS(8728), 1, + anon_sym_GT2, + STATE(5281), 1, + sym_comment, + STATE(5353), 1, + aux_sym_collection_type_repeat1, + STATE(5614), 1, + sym_val_string, + ACTIONS(5646), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5539), 2, + sym__raw_str, + sym__str_double_quotes, + [192068] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(978), 1, anon_sym_DASH2, - STATE(5949), 1, - sym__flag, - STATE(5266), 2, + ACTIONS(8730), 1, + anon_sym_QMARK2, + STATE(5282), 1, sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(5994), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8567), 4, - ts_builtin_sym_end, + ACTIONS(980), 8, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, - anon_sym_as, - [188374] = 9, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + [192091] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8731), 1, + ACTIONS(984), 1, + anon_sym_DASH2, + ACTIONS(8732), 1, + anon_sym_QMARK2, + STATE(5283), 1, + sym_comment, + ACTIONS(986), 8, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_COLON, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - ACTIONS(8733), 1, + anon_sym_LBRACE, + anon_sym_DOT, + [192114] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1863), 1, anon_sym_DASH2, - ACTIONS(8743), 1, - anon_sym_as, - STATE(5267), 1, + ACTIONS(8724), 1, + anon_sym_DOT, + STATE(5284), 1, sym_comment, - STATE(5286), 1, - aux_sym_ctrl_do_repeat1, - STATE(5949), 1, - sym__flag, - STATE(5994), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8609), 3, + STATE(5404), 1, + aux_sym_cell_path_repeat1, + STATE(5633), 1, + sym_path, + STATE(5988), 1, + sym_cell_path, + ACTIONS(1865), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [188405] = 11, + anon_sym_DASH_DASH, + anon_sym_as, + [192143] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1532), 1, - anon_sym_DOLLAR, - ACTIONS(1534), 1, + ACTIONS(1617), 1, anon_sym_LPAREN2, - ACTIONS(1538), 1, + ACTIONS(1621), 1, aux_sym__immediate_decimal_token3, - ACTIONS(1540), 1, + ACTIONS(1623), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1781), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(3811), 1, + anon_sym_DOLLAR, + ACTIONS(8734), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1542), 1, + ACTIONS(8736), 1, aux_sym__immediate_decimal_token5, - ACTIONS(1723), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(8745), 1, - aux_sym__immediate_decimal_token1, - STATE(385), 1, + STATE(408), 1, sym__immediate_decimal, - STATE(5268), 1, + STATE(5285), 1, sym_comment, - STATE(510), 2, + STATE(519), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [188440] = 11, + [192178] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1567), 1, - anon_sym_DOLLAR, - ACTIONS(1569), 1, + ACTIONS(1693), 1, anon_sym_LPAREN2, - ACTIONS(1571), 1, + ACTIONS(1695), 1, aux_sym__immediate_decimal_token3, - ACTIONS(1573), 1, + ACTIONS(1697), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1781), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8738), 1, + anon_sym_DOLLAR, + ACTIONS(8740), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1575), 1, + ACTIONS(8742), 1, aux_sym__immediate_decimal_token5, - ACTIONS(1723), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(8747), 1, - aux_sym__immediate_decimal_token1, - STATE(544), 1, + STATE(585), 1, sym__immediate_decimal, - STATE(5269), 1, + STATE(5286), 1, sym_comment, - STATE(622), 2, + STATE(704), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [188475] = 10, + [192213] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5663), 1, + ACTIONS(5644), 1, anon_sym_DQUOTE, - ACTIONS(5667), 1, + ACTIONS(5648), 1, sym_raw_string_begin, - ACTIONS(8703), 1, + ACTIONS(8726), 1, sym_identifier, - ACTIONS(8749), 1, + ACTIONS(8744), 1, anon_sym_GT2, - STATE(5270), 1, + STATE(5287), 1, sym_comment, - STATE(5274), 1, + STATE(5291), 1, aux_sym_collection_type_repeat1, - STATE(5491), 1, + STATE(5614), 1, sym_val_string, - ACTIONS(5665), 2, + ACTIONS(5646), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5556), 2, + STATE(5539), 2, sym__raw_str, sym__str_double_quotes, - [188508] = 5, + [192246] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1294), 1, + ACTIONS(1867), 1, anon_sym_DASH2, - ACTIONS(8751), 1, - sym__newline, - STATE(5271), 2, + ACTIONS(8724), 1, + anon_sym_DOT, + STATE(5288), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1296), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + STATE(5404), 1, + aux_sym_cell_path_repeat1, + STATE(5633), 1, + sym_path, + STATE(5787), 1, + sym_cell_path, + ACTIONS(1869), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - [188531] = 11, - ACTIONS(3), 1, + anon_sym_as, + [192275] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2864), 1, - anon_sym_DOLLAR, - ACTIONS(4033), 1, - anon_sym_LPAREN2, - ACTIONS(4037), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(4039), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4674), 1, - aux_sym_unquoted_token3, - ACTIONS(8754), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8756), 1, - aux_sym__immediate_decimal_token5, - STATE(1468), 1, - sym__immediate_decimal, - STATE(5272), 1, + ACTIONS(8748), 1, + anon_sym_DASH_DASH, + ACTIONS(8750), 1, + anon_sym_DASH2, + ACTIONS(8752), 1, + anon_sym_as, + STATE(5289), 1, sym_comment, - STATE(1620), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [188566] = 8, + STATE(5324), 1, + aux_sym_ctrl_do_repeat1, + STATE(5676), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8746), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [192304] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2090), 1, + ACTIONS(1847), 1, anon_sym_DASH2, - ACTIONS(8758), 1, + ACTIONS(8724), 1, anon_sym_DOT, - STATE(5273), 1, + STATE(5290), 1, sym_comment, - STATE(5410), 1, + STATE(5404), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5633), 1, sym_path, - STATE(5827), 1, + STATE(5800), 1, sym_cell_path, - ACTIONS(2092), 5, + ACTIONS(1851), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [188595] = 10, + [192333] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5663), 1, + ACTIONS(5644), 1, anon_sym_DQUOTE, - ACTIONS(5667), 1, + ACTIONS(5648), 1, sym_raw_string_begin, - ACTIONS(8703), 1, + ACTIONS(8726), 1, sym_identifier, - ACTIONS(8760), 1, + ACTIONS(8754), 1, anon_sym_GT2, - STATE(5274), 1, + STATE(5291), 1, sym_comment, - STATE(5346), 1, + STATE(5353), 1, aux_sym_collection_type_repeat1, - STATE(5491), 1, + STATE(5614), 1, sym_val_string, - ACTIONS(5665), 2, + ACTIONS(5646), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5556), 2, + STATE(5539), 2, sym__raw_str, sym__str_double_quotes, - [188628] = 11, + [192366] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4219), 1, + ACTIONS(3097), 1, anon_sym_DOLLAR, - ACTIONS(4221), 1, + ACTIONS(8073), 1, anon_sym_LPAREN2, - ACTIONS(4223), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(4225), 1, + ACTIONS(8077), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4674), 1, - aux_sym_unquoted_token3, - ACTIONS(8762), 1, + ACTIONS(8079), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8081), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8764), 1, + ACTIONS(8083), 1, aux_sym__immediate_decimal_token5, - STATE(1729), 1, - sym__immediate_decimal, - STATE(5275), 1, + ACTIONS(8629), 1, + aux_sym__unquoted_in_record_token3, + STATE(5292), 1, sym_comment, - STATE(1892), 2, + STATE(5680), 1, + sym__immediate_decimal, + STATE(5744), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [188663] = 8, + [192401] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8689), 1, - anon_sym_DOT, - STATE(5276), 1, - sym_comment, - STATE(5477), 1, - aux_sym_cell_path_repeat1, - STATE(5631), 1, - sym_path, - STATE(5854), 1, - sym_cell_path, - ACTIONS(1735), 3, - anon_sym_RBRACK, + ACTIONS(1707), 1, anon_sym_RBRACE, + ACTIONS(1709), 1, + anon_sym_LPAREN2, + ACTIONS(1719), 1, + sym__entry_separator, + ACTIONS(8629), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(8756), 1, anon_sym_DOT_DOT2, - ACTIONS(1737), 3, + ACTIONS(8760), 1, + sym_filesize_unit, + ACTIONS(8762), 1, + sym_duration_unit, + STATE(5293), 1, + sym_comment, + STATE(7647), 1, + sym__expr_parenthesized_immediate, + ACTIONS(8758), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [188692] = 11, + [192436] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6412), 1, - anon_sym_DOLLAR, - ACTIONS(8649), 1, - sym_identifier, - ACTIONS(8651), 1, - anon_sym_DASH_DASH, - ACTIONS(8653), 1, + ACTIONS(1871), 1, anon_sym_DASH2, - STATE(5277), 1, - sym_comment, - STATE(5349), 1, - aux_sym_ctrl_do_repeat1, - STATE(5480), 1, - sym_val_variable, - STATE(6126), 1, - sym__flag, - STATE(6716), 1, - sym__variable_name, - STATE(6104), 2, - sym_short_flag, - sym_long_flag, - [188727] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3573), 1, - anon_sym_DOLLAR, - ACTIONS(7188), 1, - anon_sym_LPAREN2, - ACTIONS(7192), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7194), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7297), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8766), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8768), 1, - aux_sym__immediate_decimal_token5, - STATE(4266), 1, - sym__immediate_decimal, - STATE(5278), 1, - sym_comment, - STATE(4589), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [188762] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7188), 1, - anon_sym_LPAREN2, - ACTIONS(7244), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7246), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7297), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8770), 1, - anon_sym_DOLLAR, - ACTIONS(8772), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8774), 1, - aux_sym__immediate_decimal_token5, - STATE(4700), 1, - sym__immediate_decimal, - STATE(5279), 1, + ACTIONS(8724), 1, + anon_sym_DOT, + STATE(5294), 1, sym_comment, - STATE(5047), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [188797] = 9, + STATE(5404), 1, + aux_sym_cell_path_repeat1, + STATE(5633), 1, + sym_path, + STATE(5889), 1, + sym_cell_path, + ACTIONS(1873), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [192465] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8731), 1, - anon_sym_DASH_DASH, - ACTIONS(8733), 1, + ACTIONS(1879), 1, anon_sym_DASH2, - ACTIONS(8776), 1, - anon_sym_as, - STATE(5265), 1, - aux_sym_ctrl_do_repeat1, - STATE(5280), 1, + ACTIONS(8724), 1, + anon_sym_DOT, + STATE(5295), 1, sym_comment, - STATE(5949), 1, - sym__flag, - STATE(5994), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8581), 3, + STATE(5404), 1, + aux_sym_cell_path_repeat1, + STATE(5633), 1, + sym_path, + STATE(5890), 1, + sym_cell_path, + ACTIONS(1881), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [188828] = 8, + anon_sym_DASH_DASH, + anon_sym_as, + [192494] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1925), 1, + ACTIONS(1883), 1, anon_sym_DASH2, - ACTIONS(8758), 1, + ACTIONS(8724), 1, anon_sym_DOT, - STATE(5281), 1, + STATE(5296), 1, sym_comment, - STATE(5410), 1, + STATE(5404), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5633), 1, sym_path, - STATE(5958), 1, + STATE(5891), 1, sym_cell_path, - ACTIONS(1927), 5, + ACTIONS(1885), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [188857] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4864), 1, - aux_sym_unquoted_token3, - ACTIONS(5200), 1, - anon_sym_DOLLAR, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(8040), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8778), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8780), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8782), 1, - aux_sym__immediate_decimal_token5, - STATE(5282), 1, - sym_comment, - STATE(5632), 1, - sym__immediate_decimal, - STATE(5970), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [188892] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3291), 1, - anon_sym_DOLLAR, - ACTIONS(4864), 1, - aux_sym_unquoted_token3, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(8175), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8784), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8786), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8788), 1, - aux_sym__immediate_decimal_token5, - STATE(5283), 1, - sym_comment, - STATE(6697), 1, - sym__immediate_decimal, - STATE(3439), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [188927] = 8, + [192523] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2082), 1, + ACTIONS(1887), 1, anon_sym_DASH2, - ACTIONS(8758), 1, + ACTIONS(8724), 1, anon_sym_DOT, - STATE(5284), 1, + STATE(5297), 1, sym_comment, - STATE(5410), 1, + STATE(5404), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5633), 1, sym_path, - STATE(5778), 1, + STATE(5909), 1, sym_cell_path, - ACTIONS(2084), 5, + ACTIONS(1889), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [188956] = 8, + [192552] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1933), 1, + ACTIONS(1891), 1, anon_sym_DASH2, - ACTIONS(8758), 1, + ACTIONS(8724), 1, anon_sym_DOT, - STATE(5285), 1, + STATE(5298), 1, sym_comment, - STATE(5410), 1, + STATE(5404), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5633), 1, sym_path, - STATE(5971), 1, + STATE(5911), 1, sym_cell_path, - ACTIONS(1935), 5, + ACTIONS(1893), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [188985] = 9, + [192581] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8731), 1, - anon_sym_DASH_DASH, - ACTIONS(8733), 1, + ACTIONS(1895), 1, anon_sym_DASH2, - ACTIONS(8790), 1, - anon_sym_as, - STATE(5266), 1, - aux_sym_ctrl_do_repeat1, - STATE(5286), 1, + ACTIONS(8724), 1, + anon_sym_DOT, + STATE(5299), 1, sym_comment, - STATE(5949), 1, - sym__flag, - STATE(5994), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8659), 3, + STATE(5404), 1, + aux_sym_cell_path_repeat1, + STATE(5633), 1, + sym_path, + STATE(5914), 1, + sym_cell_path, + ACTIONS(1897), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [189016] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4213), 1, - anon_sym_DOLLAR, - ACTIONS(4864), 1, - aux_sym_unquoted_token3, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(8557), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8792), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8794), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8796), 1, - aux_sym__immediate_decimal_token5, - STATE(5287), 1, - sym_comment, - STATE(7451), 1, - sym__immediate_decimal, - STATE(3439), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [189051] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2621), 1, - anon_sym_DOLLAR, - ACTIONS(4021), 1, - anon_sym_LPAREN2, - ACTIONS(4025), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(4027), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4259), 1, - aux_sym_unquoted_token3, - ACTIONS(8798), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8800), 1, - aux_sym__immediate_decimal_token5, - STATE(1448), 1, - sym__immediate_decimal, - STATE(5288), 1, - sym_comment, - STATE(1543), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [189086] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4055), 1, - anon_sym_DOLLAR, - ACTIONS(4057), 1, - anon_sym_LPAREN2, - ACTIONS(4059), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(4061), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4259), 1, - aux_sym_unquoted_token3, - ACTIONS(8802), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8804), 1, - aux_sym__immediate_decimal_token5, - STATE(1622), 1, - sym__immediate_decimal, - STATE(5289), 1, - sym_comment, - STATE(1832), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [189121] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5663), 1, - anon_sym_DQUOTE, - ACTIONS(5667), 1, - sym_raw_string_begin, - ACTIONS(8703), 1, - sym_identifier, - ACTIONS(8806), 1, - anon_sym_GT2, - STATE(5290), 1, - sym_comment, - STATE(5291), 1, - aux_sym_collection_type_repeat1, - STATE(5491), 1, - sym_val_string, - ACTIONS(5665), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5556), 2, - sym__raw_str, - sym__str_double_quotes, - [189154] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5663), 1, - anon_sym_DQUOTE, - ACTIONS(5667), 1, - sym_raw_string_begin, - ACTIONS(8703), 1, - sym_identifier, - ACTIONS(8808), 1, - anon_sym_GT2, - STATE(5291), 1, - sym_comment, - STATE(5346), 1, - aux_sym_collection_type_repeat1, - STATE(5491), 1, - sym_val_string, - ACTIONS(5665), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5556), 2, - sym__raw_str, - sym__str_double_quotes, - [189187] = 8, + anon_sym_DASH_DASH, + anon_sym_as, + [192610] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1944), 1, + ACTIONS(1911), 1, anon_sym_DASH2, - ACTIONS(8758), 1, + ACTIONS(8724), 1, anon_sym_DOT, - STATE(5292), 1, + STATE(5300), 1, sym_comment, - STATE(5410), 1, + STATE(5404), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5633), 1, sym_path, - STATE(5988), 1, + STATE(5916), 1, sym_cell_path, - ACTIONS(1946), 5, + ACTIONS(1913), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [189216] = 8, + [192639] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1948), 1, + ACTIONS(1915), 1, anon_sym_DASH2, - ACTIONS(8758), 1, + ACTIONS(8724), 1, anon_sym_DOT, - STATE(5293), 1, + STATE(5301), 1, sym_comment, - STATE(5410), 1, + STATE(5404), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5633), 1, sym_path, - STATE(5880), 1, + STATE(5928), 1, sym_cell_path, - ACTIONS(1950), 5, + ACTIONS(1917), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [189245] = 8, + [192668] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1952), 1, + ACTIONS(1919), 1, anon_sym_DASH2, - ACTIONS(8758), 1, + ACTIONS(8724), 1, anon_sym_DOT, - STATE(5294), 1, + STATE(5302), 1, sym_comment, - STATE(5410), 1, + STATE(5404), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5633), 1, sym_path, - STATE(5978), 1, + STATE(5929), 1, sym_cell_path, - ACTIONS(1954), 5, + ACTIONS(1921), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [189274] = 8, + [192697] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1960), 1, + ACTIONS(961), 1, anon_sym_DASH2, - ACTIONS(8758), 1, + ACTIONS(8724), 1, anon_sym_DOT, - STATE(5295), 1, + STATE(5303), 1, sym_comment, - STATE(5410), 1, + STATE(5404), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5633), 1, sym_path, - STATE(5907), 1, + STATE(5956), 1, sym_cell_path, - ACTIONS(1962), 5, + ACTIONS(963), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [189303] = 8, + [192726] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1968), 1, + ACTIONS(1927), 1, anon_sym_DASH2, - ACTIONS(8758), 1, + ACTIONS(8724), 1, anon_sym_DOT, - STATE(5296), 1, + STATE(5304), 1, sym_comment, - STATE(5410), 1, + STATE(5404), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5633), 1, sym_path, - STATE(5914), 1, + STATE(5932), 1, sym_cell_path, - ACTIONS(1970), 5, + ACTIONS(1929), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [189332] = 8, + [192755] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1972), 1, + ACTIONS(1942), 1, anon_sym_DASH2, - ACTIONS(8758), 1, + ACTIONS(8724), 1, anon_sym_DOT, - STATE(5297), 1, + STATE(5305), 1, sym_comment, - STATE(5410), 1, + STATE(5404), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5633), 1, sym_path, - STATE(5739), 1, + STATE(5933), 1, sym_cell_path, - ACTIONS(1974), 5, + ACTIONS(1944), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [189361] = 8, + [192784] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1984), 1, + ACTIONS(2026), 1, anon_sym_DASH2, - ACTIONS(8758), 1, + ACTIONS(8724), 1, anon_sym_DOT, - STATE(5298), 1, + STATE(5306), 1, sym_comment, - STATE(5410), 1, + STATE(5404), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5633), 1, sym_path, - STATE(5753), 1, + STATE(5934), 1, sym_cell_path, - ACTIONS(1986), 5, + ACTIONS(2028), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [189390] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8810), 1, - aux_sym__immediate_decimal_token2, - STATE(5299), 1, - sym_comment, - ACTIONS(1673), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1675), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [189413] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1709), 1, - anon_sym_RBRACK, - ACTIONS(1721), 1, - sym__entry_separator, - ACTIONS(5556), 1, - anon_sym_LPAREN2, - ACTIONS(8667), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(8812), 1, - anon_sym_DOT_DOT2, - ACTIONS(8816), 1, - sym_filesize_unit, - ACTIONS(8818), 1, - sym_duration_unit, - STATE(5300), 1, - sym_comment, - STATE(7456), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8814), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [189448] = 10, + [192813] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5663), 1, - anon_sym_DQUOTE, - ACTIONS(5667), 1, - sym_raw_string_begin, - ACTIONS(8703), 1, - sym_identifier, - ACTIONS(8820), 1, - anon_sym_GT2, - STATE(5301), 1, + ACTIONS(2030), 1, + anon_sym_DASH2, + ACTIONS(8724), 1, + anon_sym_DOT, + STATE(5307), 1, sym_comment, - STATE(5346), 1, - aux_sym_collection_type_repeat1, - STATE(5491), 1, - sym_val_string, - ACTIONS(5665), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5556), 2, - sym__raw_str, - sym__str_double_quotes, - [189481] = 8, + STATE(5404), 1, + aux_sym_cell_path_repeat1, + STATE(5633), 1, + sym_path, + STATE(5938), 1, + sym_cell_path, + ACTIONS(2032), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [192842] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(2034), 1, anon_sym_DASH2, - ACTIONS(8758), 1, + ACTIONS(8724), 1, anon_sym_DOT, - STATE(5302), 1, + STATE(5308), 1, sym_comment, - STATE(5410), 1, + STATE(5404), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5633), 1, sym_path, - STATE(5886), 1, + STATE(5941), 1, sym_cell_path, - ACTIONS(963), 5, + ACTIONS(2036), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [189510] = 11, + [192871] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3517), 1, + ACTIONS(5438), 1, anon_sym_DOLLAR, - ACTIONS(4900), 1, - aux_sym_unquoted_token3, - ACTIONS(6335), 1, + ACTIONS(5440), 1, anon_sym_LPAREN2, - ACTIONS(7037), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8822), 1, + ACTIONS(5442), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8824), 1, + ACTIONS(5444), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8826), 1, + ACTIONS(5446), 1, aux_sym__immediate_decimal_token5, - STATE(4077), 1, + ACTIONS(5549), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8764), 1, + aux_sym__immediate_decimal_token1, + STATE(2888), 1, sym__immediate_decimal, - STATE(5303), 1, + STATE(5309), 1, sym_comment, - STATE(3534), 2, + STATE(3049), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [189545] = 11, - ACTIONS(3), 1, + [192906] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4900), 1, - aux_sym_unquoted_token3, - ACTIONS(5858), 1, - anon_sym_DOLLAR, - ACTIONS(6335), 1, - anon_sym_LPAREN2, - ACTIONS(7043), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8828), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8830), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8832), 1, - aux_sym__immediate_decimal_token5, - STATE(4213), 1, - sym__immediate_decimal, - STATE(5304), 1, + ACTIONS(2038), 1, + anon_sym_DASH2, + ACTIONS(8724), 1, + anon_sym_DOT, + STATE(5310), 1, sym_comment, - STATE(3741), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [189580] = 11, + STATE(5404), 1, + aux_sym_cell_path_repeat1, + STATE(5633), 1, + sym_path, + STATE(5942), 1, + sym_cell_path, + ACTIONS(2040), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [192935] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3491), 1, - anon_sym_DOLLAR, - ACTIONS(4864), 1, + ACTIONS(4866), 1, aux_sym_unquoted_token3, - ACTIONS(6205), 1, + ACTIONS(5214), 1, + anon_sym_DOLLAR, + ACTIONS(6197), 1, anon_sym_LPAREN2, - ACTIONS(7023), 1, + ACTIONS(8145), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8834), 1, + ACTIONS(8766), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8836), 1, + ACTIONS(8768), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8838), 1, + ACTIONS(8770), 1, aux_sym__immediate_decimal_token5, - STATE(4059), 1, - sym__immediate_decimal, - STATE(5305), 1, + STATE(5311), 1, sym_comment, - STATE(3519), 2, + STATE(5767), 1, + sym__immediate_decimal, + STATE(6008), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [189615] = 11, + [192970] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4231), 1, + ACTIONS(3291), 1, anon_sym_DOLLAR, - ACTIONS(4864), 1, + ACTIONS(4866), 1, aux_sym_unquoted_token3, - ACTIONS(6205), 1, + ACTIONS(6197), 1, anon_sym_LPAREN2, - ACTIONS(7029), 1, + ACTIONS(8367), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8840), 1, + ACTIONS(8772), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8842), 1, + ACTIONS(8774), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8844), 1, + ACTIONS(8776), 1, aux_sym__immediate_decimal_token5, - STATE(4168), 1, - sym__immediate_decimal, - STATE(5306), 1, + STATE(5312), 1, sym_comment, - STATE(3439), 2, + STATE(7211), 1, + sym__immediate_decimal, + STATE(3445), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [189650] = 8, + [193005] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1988), 1, + ACTIONS(1931), 1, anon_sym_DASH2, - ACTIONS(8758), 1, + ACTIONS(8724), 1, anon_sym_DOT, - STATE(5307), 1, + STATE(5313), 1, sym_comment, - STATE(5410), 1, + STATE(5404), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5633), 1, sym_path, - STATE(5917), 1, + STATE(5943), 1, sym_cell_path, - ACTIONS(1990), 5, + ACTIONS(1933), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [189679] = 8, + [193034] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1992), 1, + ACTIONS(1899), 1, anon_sym_DASH2, - ACTIONS(8758), 1, + ACTIONS(8724), 1, anon_sym_DOT, - STATE(5308), 1, + STATE(5314), 1, sym_comment, - STATE(5410), 1, + STATE(5404), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5633), 1, sym_path, - STATE(5922), 1, + STATE(5948), 1, sym_cell_path, - ACTIONS(1994), 5, + ACTIONS(1901), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [189708] = 8, + [193063] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1996), 1, + ACTIONS(1907), 1, anon_sym_DASH2, - ACTIONS(8758), 1, + ACTIONS(8724), 1, anon_sym_DOT, - STATE(5309), 1, + STATE(5315), 1, sym_comment, - STATE(5410), 1, + STATE(5404), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5633), 1, sym_path, - STATE(5955), 1, + STATE(5949), 1, sym_cell_path, - ACTIONS(1998), 5, + ACTIONS(1909), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [189737] = 8, + [193092] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1960), 1, + anon_sym_DOLLAR, + ACTIONS(7039), 1, + anon_sym_LPAREN2, + ACTIONS(7043), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7045), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7047), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7049), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7190), 1, + aux_sym_unquoted_token3, + STATE(4133), 1, + sym__immediate_decimal, + STATE(5316), 1, + sym_comment, + STATE(4291), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [193127] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4125), 1, + anon_sym_DOLLAR, + ACTIONS(7039), 1, + anon_sym_LPAREN2, + ACTIONS(7085), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7087), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7089), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7091), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7190), 1, + aux_sym_unquoted_token3, + STATE(4436), 1, + sym__immediate_decimal, + STATE(5317), 1, + sym_comment, + STATE(4652), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [193162] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3977), 1, + anon_sym_DOLLAR, + ACTIONS(4866), 1, + aux_sym_unquoted_token3, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(8421), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8778), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8780), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8782), 1, + aux_sym__immediate_decimal_token5, + STATE(5318), 1, + sym_comment, + STATE(6082), 1, + sym__immediate_decimal, + STATE(6221), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [193197] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4455), 1, + anon_sym_DOLLAR, + ACTIONS(4866), 1, + aux_sym_unquoted_token3, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(8579), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8784), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8786), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8788), 1, + aux_sym__immediate_decimal_token5, + STATE(5319), 1, + sym_comment, + STATE(7686), 1, + sym__immediate_decimal, + STATE(3445), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [193232] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2000), 1, - anon_sym_DASH2, - ACTIONS(8758), 1, - anon_sym_DOT, - STATE(5310), 1, + ACTIONS(5644), 1, + anon_sym_DQUOTE, + ACTIONS(5648), 1, + sym_raw_string_begin, + ACTIONS(8726), 1, + sym_identifier, + ACTIONS(8790), 1, + anon_sym_GT2, + STATE(5281), 1, + aux_sym_collection_type_repeat1, + STATE(5320), 1, sym_comment, - STATE(5410), 1, - aux_sym_cell_path_repeat1, - STATE(5625), 1, - sym_path, - STATE(5965), 1, - sym_cell_path, - ACTIONS(2002), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [189766] = 8, + STATE(5614), 1, + sym_val_string, + ACTIONS(5646), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5539), 2, + sym__raw_str, + sym__str_double_quotes, + [193265] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1545), 1, + anon_sym_DOLLAR, + ACTIONS(1547), 1, + anon_sym_LPAREN2, + ACTIONS(1551), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1553), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1555), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(1721), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8792), 1, + aux_sym__immediate_decimal_token1, + STATE(385), 1, + sym__immediate_decimal, + STATE(5321), 1, + sym_comment, + STATE(500), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [193300] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1647), 1, + anon_sym_DOLLAR, + ACTIONS(1649), 1, + anon_sym_LPAREN2, + ACTIONS(1651), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1653), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1655), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(1721), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8794), 1, + aux_sym__immediate_decimal_token1, + STATE(523), 1, + sym__immediate_decimal, + STATE(5322), 1, + sym_comment, + STATE(615), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [193335] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2004), 1, - anon_sym_DASH2, - ACTIONS(8758), 1, - anon_sym_DOT, - STATE(5311), 1, + ACTIONS(5644), 1, + anon_sym_DQUOTE, + ACTIONS(5648), 1, + sym_raw_string_begin, + ACTIONS(8726), 1, + sym_identifier, + ACTIONS(8796), 1, + anon_sym_GT2, + STATE(5323), 1, sym_comment, - STATE(5410), 1, - aux_sym_cell_path_repeat1, - STATE(5625), 1, - sym_path, - STATE(5756), 1, - sym_cell_path, - ACTIONS(2006), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [189795] = 8, + STATE(5326), 1, + aux_sym_collection_type_repeat1, + STATE(5614), 1, + sym_val_string, + ACTIONS(5646), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5539), 2, + sym__raw_str, + sym__str_double_quotes, + [193368] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2068), 1, + ACTIONS(8748), 1, + anon_sym_DASH_DASH, + ACTIONS(8750), 1, anon_sym_DASH2, - ACTIONS(8758), 1, - anon_sym_DOT, - STATE(5312), 1, + ACTIONS(8800), 1, + anon_sym_as, + STATE(5324), 1, sym_comment, - STATE(5410), 1, - aux_sym_cell_path_repeat1, - STATE(5625), 1, - sym_path, - STATE(5779), 1, - sym_cell_path, - ACTIONS(2070), 5, - ts_builtin_sym_end, + STATE(5357), 1, + aux_sym_ctrl_do_repeat1, + STATE(5676), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8798), 4, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [189824] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [193397] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2072), 1, + ACTIONS(8748), 1, + anon_sym_DASH_DASH, + ACTIONS(8750), 1, anon_sym_DASH2, - ACTIONS(8758), 1, - anon_sym_DOT, - STATE(5313), 1, + ACTIONS(8804), 1, + anon_sym_as, + STATE(5325), 1, sym_comment, - STATE(5410), 1, - aux_sym_cell_path_repeat1, - STATE(5625), 1, - sym_path, - STATE(5781), 1, - sym_cell_path, - ACTIONS(2074), 5, - ts_builtin_sym_end, + STATE(5329), 1, + aux_sym_ctrl_do_repeat1, + STATE(5676), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8802), 4, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [189853] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8689), 1, - anon_sym_DOT, - STATE(5314), 1, - sym_comment, - STATE(5477), 1, - aux_sym_cell_path_repeat1, - STATE(5631), 1, - sym_path, - STATE(5832), 1, - sym_cell_path, - ACTIONS(961), 3, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(963), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [189882] = 8, + [193426] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1907), 1, - anon_sym_DASH2, - ACTIONS(8758), 1, - anon_sym_DOT, - STATE(5315), 1, + ACTIONS(5644), 1, + anon_sym_DQUOTE, + ACTIONS(5648), 1, + sym_raw_string_begin, + ACTIONS(8726), 1, + sym_identifier, + ACTIONS(8806), 1, + anon_sym_GT2, + STATE(5326), 1, sym_comment, - STATE(5410), 1, - aux_sym_cell_path_repeat1, - STATE(5625), 1, - sym_path, - STATE(5824), 1, - sym_cell_path, - ACTIONS(1911), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [189911] = 4, + STATE(5353), 1, + aux_sym_collection_type_repeat1, + STATE(5614), 1, + sym_val_string, + ACTIONS(5646), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5539), 2, + sym__raw_str, + sym__str_double_quotes, + [193459] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(5316), 1, + ACTIONS(8808), 1, + anon_sym_DOT, + ACTIONS(8810), 1, + aux_sym__immediate_decimal_token2, + STATE(5327), 1, sym_comment, - ACTIONS(1607), 3, - anon_sym_DASH2, + ACTIONS(1575), 3, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1573), 5, + sym_identifier, anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, aux_sym_unquoted_token2, - ACTIONS(1609), 7, + [193484] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8812), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8814), 1, + aux_sym__immediate_decimal_token2, + STATE(5328), 1, + sym_comment, + ACTIONS(1587), 3, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1585), 5, + sym_identifier, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [189932] = 11, + aux_sym_unquoted_token2, + [193509] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8748), 1, + anon_sym_DASH_DASH, + ACTIONS(8750), 1, + anon_sym_DASH2, + ACTIONS(8818), 1, + anon_sym_as, + STATE(5329), 1, + sym_comment, + STATE(5357), 1, + aux_sym_ctrl_do_repeat1, + STATE(5676), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8816), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [193538] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2012), 1, + ACTIONS(2629), 1, anon_sym_DOLLAR, - ACTIONS(7079), 1, + ACTIONS(4017), 1, anon_sym_LPAREN2, - ACTIONS(7083), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7085), 1, + ACTIONS(4021), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7087), 1, + ACTIONS(4023), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4553), 1, + aux_sym_unquoted_token3, + ACTIONS(8820), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7089), 1, + ACTIONS(8822), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7218), 1, - aux_sym_unquoted_token3, - STATE(4140), 1, + STATE(1426), 1, sym__immediate_decimal, - STATE(5317), 1, + STATE(5330), 1, sym_comment, - STATE(4380), 2, + STATE(1517), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [189967] = 11, + [193573] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4305), 1, + ACTIONS(4033), 1, anon_sym_DOLLAR, - ACTIONS(7079), 1, + ACTIONS(4035), 1, anon_sym_LPAREN2, - ACTIONS(7117), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7119), 1, + ACTIONS(4037), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7121), 1, + ACTIONS(4039), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4553), 1, + aux_sym_unquoted_token3, + ACTIONS(8824), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7123), 1, + ACTIONS(8826), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7218), 1, - aux_sym_unquoted_token3, - STATE(4542), 1, + STATE(1581), 1, sym__immediate_decimal, - STATE(5318), 1, + STATE(5331), 1, sym_comment, - STATE(4813), 2, + STATE(1845), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [190002] = 4, + [193608] = 10, ACTIONS(247), 1, anon_sym_POUND, - STATE(5319), 1, + ACTIONS(5644), 1, + anon_sym_DQUOTE, + ACTIONS(5648), 1, + sym_raw_string_begin, + ACTIONS(8726), 1, + sym_identifier, + ACTIONS(8828), 1, + anon_sym_GT2, + STATE(5332), 1, + sym_comment, + STATE(5333), 1, + aux_sym_collection_type_repeat1, + STATE(5614), 1, + sym_val_string, + ACTIONS(5646), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5539), 2, + sym__raw_str, + sym__str_double_quotes, + [193641] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5644), 1, + anon_sym_DQUOTE, + ACTIONS(5648), 1, + sym_raw_string_begin, + ACTIONS(8726), 1, + sym_identifier, + ACTIONS(8830), 1, + anon_sym_GT2, + STATE(5333), 1, + sym_comment, + STATE(5353), 1, + aux_sym_collection_type_repeat1, + STATE(5614), 1, + sym_val_string, + ACTIONS(5646), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5539), 2, + sym__raw_str, + sym__str_double_quotes, + [193674] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5334), 1, sym_comment, - ACTIONS(1621), 3, + ACTIONS(1573), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1623), 7, + ACTIONS(1575), 7, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, @@ -396049,55 +398432,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [190023] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8846), 1, - anon_sym_DOT, - ACTIONS(8848), 1, - aux_sym__immediate_decimal_token2, - STATE(5320), 1, - sym_comment, - ACTIONS(1755), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1757), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [190048] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(967), 1, - anon_sym_DASH2, - ACTIONS(8563), 1, - anon_sym_DOT, - STATE(5321), 1, - sym_comment, - STATE(5326), 1, - aux_sym_cell_path_repeat1, - STATE(5504), 1, - sym_path, - ACTIONS(969), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [190075] = 4, + [193695] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5322), 1, + STATE(5335), 1, sym_comment, - ACTIONS(1673), 3, + ACTIONS(1585), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1675), 7, + ACTIONS(1587), 7, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, @@ -396105,101 +398449,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [190096] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1913), 1, - anon_sym_DASH2, - ACTIONS(8758), 1, - anon_sym_DOT, - STATE(5323), 1, - sym_comment, - STATE(5410), 1, - aux_sym_cell_path_repeat1, - STATE(5625), 1, - sym_path, - STATE(5834), 1, - sym_cell_path, - ACTIONS(1915), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [190125] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(8649), 1, - sym_identifier, - ACTIONS(8850), 1, - anon_sym_DOLLAR, - ACTIONS(8852), 1, - anon_sym_DASH_DASH, - ACTIONS(8854), 1, - anon_sym_DASH2, - STATE(5324), 1, - sym_comment, - STATE(5480), 1, - sym_val_variable, - STATE(5964), 1, - sym__variable_name, - STATE(6744), 1, - sym__flag, - STATE(6104), 2, - sym_short_flag, - sym_long_flag, - [190160] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1976), 1, - anon_sym_DASH2, - ACTIONS(8758), 1, - anon_sym_DOT, - STATE(5325), 1, - sym_comment, - STATE(5410), 1, - aux_sym_cell_path_repeat1, - STATE(5625), 1, - sym_path, - STATE(5831), 1, - sym_cell_path, - ACTIONS(1978), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [190189] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(971), 1, - anon_sym_DASH2, - ACTIONS(8856), 1, - anon_sym_DOT, - STATE(5504), 1, - sym_path, - STATE(5326), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(973), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [190214] = 4, + [193716] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5327), 1, + STATE(5336), 1, sym_comment, - ACTIONS(1763), 3, + ACTIONS(1681), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1765), 7, + ACTIONS(1683), 7, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, @@ -396207,136 +398466,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [190235] = 11, + [193737] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3097), 1, + ACTIONS(3517), 1, anon_sym_DOLLAR, - ACTIONS(8139), 1, + ACTIONS(4956), 1, + aux_sym_unquoted_token3, + ACTIONS(6333), 1, anon_sym_LPAREN2, - ACTIONS(8143), 1, + ACTIONS(7033), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8145), 1, + ACTIONS(8832), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8147), 1, + ACTIONS(8834), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8149), 1, + ACTIONS(8836), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8859), 1, - aux_sym__unquoted_in_record_token3, - STATE(5328), 1, - sym_comment, - STATE(5683), 1, + STATE(4094), 1, sym__immediate_decimal, - STATE(5957), 2, + STATE(5337), 1, + sym_comment, + STATE(3572), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [190270] = 11, + [193772] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8139), 1, - anon_sym_LPAREN2, - ACTIONS(8307), 1, + ACTIONS(4956), 1, + aux_sym_unquoted_token3, + ACTIONS(5805), 1, anon_sym_DOLLAR, - ACTIONS(8373), 1, + ACTIONS(6333), 1, + anon_sym_LPAREN2, + ACTIONS(7055), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8375), 1, + ACTIONS(8838), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8377), 1, + ACTIONS(8840), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8379), 1, + ACTIONS(8842), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8859), 1, - aux_sym__unquoted_in_record_token3, - STATE(5329), 1, - sym_comment, - STATE(6658), 1, + STATE(4304), 1, sym__immediate_decimal, - STATE(7333), 2, + STATE(5338), 1, + sym_comment, + STATE(3754), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [190305] = 11, + [193807] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5339), 1, + sym_comment, + ACTIONS(1761), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1763), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [193828] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1595), 1, + ACTIONS(3491), 1, + anon_sym_DOLLAR, + ACTIONS(4866), 1, + aux_sym_unquoted_token3, + ACTIONS(6197), 1, anon_sym_LPAREN2, - ACTIONS(1599), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1601), 1, + ACTIONS(7011), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1781), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(3765), 1, - anon_sym_DOLLAR, - ACTIONS(8861), 1, + ACTIONS(8844), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8846), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8863), 1, + ACTIONS(8848), 1, aux_sym__immediate_decimal_token5, - STATE(406), 1, + STATE(4081), 1, sym__immediate_decimal, - STATE(5330), 1, + STATE(5340), 1, sym_comment, - STATE(530), 2, + STATE(3522), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [190340] = 11, + [193863] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1681), 1, + ACTIONS(4329), 1, + anon_sym_DOLLAR, + ACTIONS(4866), 1, + aux_sym_unquoted_token3, + ACTIONS(6197), 1, anon_sym_LPAREN2, - ACTIONS(1683), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1685), 1, + ACTIONS(7025), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1781), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(8865), 1, - anon_sym_DOLLAR, - ACTIONS(8867), 1, + ACTIONS(8850), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8852), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8869), 1, + ACTIONS(8854), 1, aux_sym__immediate_decimal_token5, - STATE(583), 1, + STATE(4151), 1, sym__immediate_decimal, - STATE(5331), 1, + STATE(5341), 1, sym_comment, - STATE(757), 2, + STATE(3445), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [190375] = 10, + [193898] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5663), 1, - anon_sym_DQUOTE, - ACTIONS(5667), 1, - sym_raw_string_begin, - ACTIONS(8703), 1, - sym_identifier, - ACTIONS(8871), 1, - anon_sym_GT2, - STATE(5332), 1, + ACTIONS(8549), 1, + aux_sym__immediate_decimal_token2, + STATE(5342), 1, sym_comment, - STATE(5345), 1, - aux_sym_collection_type_repeat1, - STATE(5491), 1, - sym_val_string, - ACTIONS(5665), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5556), 2, - sym__raw_str, - sym__str_double_quotes, - [190408] = 5, + ACTIONS(1573), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1575), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [193921] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8657), 1, + ACTIONS(8856), 1, aux_sym__immediate_decimal_token2, - STATE(5333), 1, + STATE(5343), 1, sym_comment, - ACTIONS(1607), 2, + ACTIONS(1681), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1609), 7, + ACTIONS(1683), 7, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, @@ -396344,493 +398615,673 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [190431] = 4, - ACTIONS(3), 1, + [193944] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5334), 1, + ACTIONS(1294), 1, + anon_sym_DASH2, + ACTIONS(8858), 1, + sym__newline, + STATE(5344), 2, sym_comment, - ACTIONS(1763), 4, + aux_sym_shebang_repeat1, + ACTIONS(1296), 7, + sym_identifier, + anon_sym_PIPE, anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [193967] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8561), 1, + aux_sym__immediate_decimal_token2, + STATE(5345), 1, + sym_comment, + ACTIONS(1573), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1765), 6, + aux_sym__unquoted_in_record_token2, + ACTIONS(1575), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [190452] = 4, + [193990] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5335), 1, + ACTIONS(8861), 1, + aux_sym__immediate_decimal_token2, + STATE(5346), 1, sym_comment, - ACTIONS(1621), 4, - anon_sym_RBRACK, + ACTIONS(1681), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1623), 6, + aux_sym__unquoted_in_record_token2, + ACTIONS(1683), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [190473] = 6, - ACTIONS(3), 1, + [194013] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8873), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8875), 1, - aux_sym__immediate_decimal_token2, - STATE(5336), 1, + STATE(5347), 1, sym_comment, - ACTIONS(1739), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1741), 4, - anon_sym_LPAREN2, + ACTIONS(1575), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [190498] = 11, + ACTIONS(1573), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [194034] = 11, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3363), 1, + ACTIONS(3365), 1, aux_sym_record_entry_token1, - ACTIONS(8649), 1, - sym_identifier, - ACTIONS(8850), 1, + ACTIONS(6420), 1, anon_sym_DOLLAR, - ACTIONS(8852), 1, + ACTIONS(8647), 1, + sym_identifier, + ACTIONS(8649), 1, anon_sym_DASH_DASH, - ACTIONS(8854), 1, + ACTIONS(8651), 1, anon_sym_DASH2, - STATE(5337), 1, + STATE(5348), 1, sym_comment, - STATE(5480), 1, + STATE(5392), 1, + aux_sym_ctrl_do_repeat1, + STATE(5398), 1, sym_val_variable, - STATE(5964), 1, + STATE(6365), 1, sym__variable_name, - STATE(6744), 1, - sym__flag, - STATE(6104), 2, + STATE(6035), 2, sym_short_flag, sym_long_flag, - [190533] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3985), 1, - anon_sym_DOLLAR, - ACTIONS(4864), 1, - aux_sym_unquoted_token3, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(8297), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8877), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8879), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8881), 1, - aux_sym__immediate_decimal_token5, - STATE(5338), 1, - sym_comment, - STATE(6072), 1, - sym__immediate_decimal, - STATE(6160), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [190568] = 4, - ACTIONS(3), 1, + [194069] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5339), 1, + STATE(5349), 1, sym_comment, - ACTIONS(1673), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1675), 6, - anon_sym_LPAREN2, + ACTIONS(1587), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1585), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [190589] = 5, + aux_sym_unquoted_token2, + [194090] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8883), 1, - aux_sym__immediate_decimal_token2, - STATE(5340), 1, + STATE(5350), 1, sym_comment, - ACTIONS(1673), 2, + ACTIONS(1683), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1681), 6, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, aux_sym_unquoted_token2, - ACTIONS(1675), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + [194111] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5351), 1, + sym_comment, + ACTIONS(1763), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1761), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [190612] = 10, + aux_sym_unquoted_token2, + [194132] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8663), 1, + anon_sym_DOT, + STATE(5352), 1, + sym_comment, + STATE(5459), 1, + aux_sym_cell_path_repeat1, + STATE(5675), 1, + sym_path, + STATE(6003), 1, + sym_cell_path, + ACTIONS(1747), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(1749), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [194161] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8863), 1, + sym_identifier, + ACTIONS(8866), 1, + anon_sym_GT2, + ACTIONS(8868), 1, + anon_sym_DQUOTE, + ACTIONS(8874), 1, + sym_raw_string_begin, + STATE(5614), 1, + sym_val_string, + ACTIONS(8871), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5353), 2, + sym_comment, + aux_sym_collection_type_repeat1, + STATE(5539), 2, + sym__raw_str, + sym__str_double_quotes, + [194192] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1544), 1, + ACTIONS(1557), 1, anon_sym_EQ_GT, - ACTIONS(6205), 1, + ACTIONS(6197), 1, anon_sym_LPAREN2, - ACTIONS(6211), 1, + ACTIONS(6203), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, + ACTIONS(6205), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8173), 1, + ACTIONS(8095), 1, anon_sym_DOLLAR, - STATE(3619), 1, + STATE(3615), 1, sym__immediate_decimal, - STATE(5341), 1, + STATE(5354), 1, sym_comment, - ACTIONS(6229), 2, + ACTIONS(6285), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3436), 2, + STATE(3451), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [190645] = 10, + [194225] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1577), 1, + ACTIONS(1659), 1, anon_sym_EQ_GT, - ACTIONS(6205), 1, + ACTIONS(6197), 1, anon_sym_LPAREN2, - ACTIONS(6211), 1, + ACTIONS(6203), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, + ACTIONS(6205), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8173), 1, + ACTIONS(8095), 1, anon_sym_DOLLAR, - STATE(3607), 1, + STATE(3625), 1, sym__immediate_decimal, - STATE(5342), 1, + STATE(5355), 1, sym_comment, - ACTIONS(6229), 2, + ACTIONS(6285), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3431), 2, + STATE(3426), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [190678] = 11, + [194258] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1709), 1, + ACTIONS(8663), 1, + anon_sym_DOT, + STATE(5356), 1, + sym_comment, + STATE(5459), 1, + aux_sym_cell_path_repeat1, + STATE(5675), 1, + sym_path, + STATE(5772), 1, + sym_cell_path, + ACTIONS(1733), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(1711), 1, - anon_sym_LPAREN2, - ACTIONS(1721), 1, - sym__entry_separator, - ACTIONS(8859), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(8885), 1, anon_sym_DOT_DOT2, - ACTIONS(8889), 1, - sym_filesize_unit, - ACTIONS(8891), 1, - sym_duration_unit, - STATE(5343), 1, - sym_comment, - STATE(7393), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8887), 2, + ACTIONS(1737), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [190713] = 5, + sym__entry_separator, + [194287] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8629), 1, - aux_sym__immediate_decimal_token2, - STATE(5344), 1, - sym_comment, - ACTIONS(1609), 3, + ACTIONS(8879), 1, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1607), 6, - sym_identifier, + ACTIONS(8882), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [190736] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5663), 1, - anon_sym_DQUOTE, - ACTIONS(5667), 1, - sym_raw_string_begin, - ACTIONS(8703), 1, - sym_identifier, - ACTIONS(8893), 1, - anon_sym_GT2, - STATE(5345), 1, + STATE(5357), 2, sym_comment, - STATE(5346), 1, - aux_sym_collection_type_repeat1, - STATE(5491), 1, - sym_val_string, - ACTIONS(5665), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5556), 2, - sym__raw_str, - sym__str_double_quotes, - [190769] = 9, + aux_sym_ctrl_do_repeat1, + STATE(5676), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8877), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_as, + [194312] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8895), 1, - sym_identifier, - ACTIONS(8898), 1, - anon_sym_GT2, - ACTIONS(8900), 1, - anon_sym_DQUOTE, - ACTIONS(8906), 1, - sym_raw_string_begin, - STATE(5491), 1, - sym_val_string, - ACTIONS(8903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5346), 2, + ACTIONS(6483), 1, + anon_sym_DOT, + STATE(3196), 1, + sym_cell_path, + STATE(3476), 1, + aux_sym_cell_path_repeat1, + STATE(3576), 1, + sym_path, + STATE(5358), 1, sym_comment, - aux_sym_collection_type_repeat1, - STATE(5556), 2, - sym__raw_str, - sym__str_double_quotes, - [190800] = 6, - ACTIONS(3), 1, + ACTIONS(961), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(963), 4, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [194341] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8909), 1, + ACTIONS(8885), 1, anon_sym_DOT, - ACTIONS(8911), 1, + ACTIONS(8887), 1, aux_sym__immediate_decimal_token2, - STATE(5347), 1, + STATE(5359), 1, sym_comment, - ACTIONS(1607), 3, - sym__newline, + ACTIONS(1573), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1609), 5, - sym__space, + ACTIONS(1575), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [190825] = 4, + [194365] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8513), 1, + ACTIONS(1891), 1, anon_sym_DASH2, - STATE(5348), 1, + ACTIONS(8621), 1, + anon_sym_DOT, + STATE(4835), 1, + sym_cell_path, + STATE(5242), 1, + aux_sym_cell_path_repeat1, + STATE(5360), 1, sym_comment, - ACTIONS(5704), 9, + STATE(5393), 1, + sym_path, + ACTIONS(1893), 4, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [190846] = 11, + anon_sym_LBRACE, + [194393] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6412), 1, - anon_sym_DOLLAR, - ACTIONS(8649), 1, + ACTIONS(1895), 1, + anon_sym_DASH2, + ACTIONS(8621), 1, + anon_sym_DOT, + STATE(4904), 1, + sym_cell_path, + STATE(5242), 1, + aux_sym_cell_path_repeat1, + STATE(5361), 1, + sym_comment, + STATE(5393), 1, + sym_path, + ACTIONS(1897), 4, sym_identifier, - ACTIONS(8651), 1, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - ACTIONS(8653), 1, + anon_sym_LBRACE, + [194421] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1911), 1, anon_sym_DASH2, - STATE(5349), 1, + ACTIONS(8621), 1, + anon_sym_DOT, + STATE(4910), 1, + sym_cell_path, + STATE(5242), 1, + aux_sym_cell_path_repeat1, + STATE(5362), 1, sym_comment, - STATE(5480), 1, - sym_val_variable, - STATE(5609), 1, - aux_sym_ctrl_do_repeat1, - STATE(6126), 1, - sym__flag, - STATE(6254), 1, - sym__variable_name, - STATE(6104), 2, - sym_short_flag, - sym_long_flag, - [190881] = 5, - ACTIONS(3), 1, + STATE(5393), 1, + sym_path, + ACTIONS(1913), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [194449] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8665), 1, - aux_sym__immediate_decimal_token2, - STATE(5350), 1, + ACTIONS(1915), 1, + anon_sym_DASH2, + ACTIONS(8621), 1, + anon_sym_DOT, + STATE(4943), 1, + sym_cell_path, + STATE(5242), 1, + aux_sym_cell_path_repeat1, + STATE(5363), 1, sym_comment, - ACTIONS(1607), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1609), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [190904] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3097), 1, + STATE(5393), 1, + sym_path, + ACTIONS(1917), 4, + sym_identifier, anon_sym_DOLLAR, - ACTIONS(8139), 1, - anon_sym_LPAREN2, - ACTIONS(8193), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8195), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8197), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8199), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8667), 1, - aux_sym__unquoted_in_list_token3, - STATE(5351), 1, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [194477] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1919), 1, + anon_sym_DASH2, + ACTIONS(8621), 1, + anon_sym_DOT, + STATE(4965), 1, + sym_cell_path, + STATE(5242), 1, + aux_sym_cell_path_repeat1, + STATE(5364), 1, sym_comment, - STATE(5725), 1, - sym__immediate_decimal, - STATE(5957), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [190939] = 5, + STATE(5393), 1, + sym_path, + ACTIONS(1921), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [194505] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8913), 1, - aux_sym__immediate_decimal_token2, - STATE(5352), 1, + ACTIONS(1927), 1, + anon_sym_DASH2, + ACTIONS(8621), 1, + anon_sym_DOT, + STATE(4968), 1, + sym_cell_path, + STATE(5242), 1, + aux_sym_cell_path_repeat1, + STATE(5365), 1, sym_comment, - ACTIONS(1675), 3, + STATE(5393), 1, + sym_path, + ACTIONS(1929), 4, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1673), 6, + anon_sym_LBRACE, + [194533] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1942), 1, + anon_sym_DASH2, + ACTIONS(8621), 1, + anon_sym_DOT, + STATE(4971), 1, + sym_cell_path, + STATE(5242), 1, + aux_sym_cell_path_repeat1, + STATE(5366), 1, + sym_comment, + STATE(5393), 1, + sym_path, + ACTIONS(1944), 4, sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [194561] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2026), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [190962] = 8, + ACTIONS(8621), 1, + anon_sym_DOT, + STATE(4983), 1, + sym_cell_path, + STATE(5242), 1, + aux_sym_cell_path_repeat1, + STATE(5367), 1, + sym_comment, + STATE(5393), 1, + sym_path, + ACTIONS(2028), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [194589] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2094), 1, + ACTIONS(2030), 1, anon_sym_DASH2, - ACTIONS(8758), 1, + ACTIONS(8621), 1, anon_sym_DOT, - STATE(5353), 1, + STATE(4997), 1, + sym_cell_path, + STATE(5242), 1, + aux_sym_cell_path_repeat1, + STATE(5368), 1, sym_comment, - STATE(5410), 1, + STATE(5393), 1, + sym_path, + ACTIONS(2032), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [194617] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2034), 1, + anon_sym_DASH2, + ACTIONS(8621), 1, + anon_sym_DOT, + STATE(4882), 1, + sym_cell_path, + STATE(5242), 1, aux_sym_cell_path_repeat1, - STATE(5625), 1, + STATE(5369), 1, + sym_comment, + STATE(5393), 1, sym_path, - STATE(5816), 1, + ACTIONS(2036), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [194645] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2038), 1, + anon_sym_DASH2, + ACTIONS(8621), 1, + anon_sym_DOT, + STATE(4921), 1, sym_cell_path, - ACTIONS(2096), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + STATE(5242), 1, + aux_sym_cell_path_repeat1, + STATE(5370), 1, + sym_comment, + STATE(5393), 1, + sym_path, + ACTIONS(2040), 4, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_as, - [190991] = 4, - ACTIONS(3), 1, + anon_sym_LBRACE, + [194673] = 8, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5354), 1, + ACTIONS(1931), 1, + anon_sym_DASH2, + ACTIONS(8621), 1, + anon_sym_DOT, + STATE(4923), 1, + sym_cell_path, + STATE(5242), 1, + aux_sym_cell_path_repeat1, + STATE(5371), 1, sym_comment, - ACTIONS(1607), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1609), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [191012] = 8, + STATE(5393), 1, + sym_path, + ACTIONS(1933), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [194701] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1976), 1, + ACTIONS(1899), 1, anon_sym_DASH2, - ACTIONS(8607), 1, + ACTIONS(8621), 1, anon_sym_DOT, - STATE(5196), 1, + STATE(4975), 1, + sym_cell_path, + STATE(5242), 1, aux_sym_cell_path_repeat1, - STATE(5355), 1, + STATE(5372), 1, sym_comment, - STATE(5483), 1, + STATE(5393), 1, sym_path, - STATE(5948), 1, - sym_cell_path, - ACTIONS(1978), 4, + ACTIONS(1901), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [191040] = 6, + [194729] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8915), 1, + ACTIONS(1907), 1, + anon_sym_DASH2, + ACTIONS(8621), 1, anon_sym_DOT, - ACTIONS(8917), 1, - aux_sym__immediate_decimal_token2, - STATE(5356), 1, + STATE(4986), 1, + sym_cell_path, + STATE(5242), 1, + aux_sym_cell_path_repeat1, + STATE(5373), 1, sym_comment, - ACTIONS(1607), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1609), 5, - anon_sym_in2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [191064] = 4, + STATE(5393), 1, + sym_path, + ACTIONS(1909), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [194757] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5357), 1, + STATE(5374), 1, sym_comment, - ACTIONS(1765), 3, + ACTIONS(1683), 3, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1763), 6, + ACTIONS(1681), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [191084] = 4, + [194777] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8657), 1, + aux_sym__immediate_decimal_token2, + STATE(5375), 1, + sym_comment, + ACTIONS(1573), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1575), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [194799] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8889), 1, + anon_sym_EQ2, + ACTIONS(8891), 1, + sym_short_flag_identifier, + STATE(5376), 1, + sym_comment, + ACTIONS(4976), 3, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(4974), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [194823] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(990), 1, + anon_sym_DASH2, + STATE(5377), 1, + sym_comment, + ACTIONS(992), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_DOT, + [194843] = 4, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(994), 1, anon_sym_DASH2, - STATE(5358), 1, + STATE(5378), 1, sym_comment, ACTIONS(996), 8, sym__newline, @@ -396841,12 +399292,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_QMARK2, anon_sym_DOT, - [191104] = 4, + [194863] = 4, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(998), 1, anon_sym_DASH2, - STATE(5359), 1, + STATE(5379), 1, sym_comment, ACTIONS(1000), 8, sym__newline, @@ -396857,12 +399308,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_QMARK2, anon_sym_DOT, - [191124] = 4, + [194883] = 4, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(1002), 1, anon_sym_DASH2, - STATE(5360), 1, + STATE(5380), 1, sym_comment, ACTIONS(1004), 8, sym__newline, @@ -396873,1275 +399324,1395 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_QMARK2, anon_sym_DOT, - [191144] = 8, + [194903] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2082), 1, - anon_sym_DASH2, - ACTIONS(8607), 1, - anon_sym_DOT, - STATE(4912), 1, - sym_cell_path, - STATE(5196), 1, - aux_sym_cell_path_repeat1, - STATE(5361), 1, + ACTIONS(6195), 1, + anon_sym_DOLLAR, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(6203), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6205), 1, + aux_sym__immediate_decimal_token5, + STATE(3669), 1, + sym__immediate_decimal, + STATE(5381), 1, sym_comment, - STATE(5483), 1, - sym_path, - ACTIONS(2084), 4, - sym_identifier, + ACTIONS(6201), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3522), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194933] = 10, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6420), 1, anon_sym_DOLLAR, + ACTIONS(8647), 1, + sym_identifier, + ACTIONS(8649), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [191172] = 9, + ACTIONS(8651), 1, + anon_sym_DASH2, + STATE(5382), 1, + sym_comment, + STATE(5392), 1, + aux_sym_ctrl_do_repeat1, + STATE(5398), 1, + sym_val_variable, + STATE(6365), 1, + sym__variable_name, + STATE(6035), 2, + sym_short_flag, + sym_long_flag, + [194965] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1721), 1, - anon_sym_DASH_DASH, - ACTIONS(4708), 1, - anon_sym_DOT_DOT2, - ACTIONS(8677), 1, + ACTIONS(4866), 1, aux_sym_unquoted_token2, - ACTIONS(8919), 1, + ACTIONS(8893), 1, + anon_sym_DOT_DOT2, + ACTIONS(8897), 1, sym_filesize_unit, - ACTIONS(8921), 1, + ACTIONS(8899), 1, sym_duration_unit, - STATE(5362), 1, - sym_comment, - ACTIONS(1709), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(4710), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [191202] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8923), 1, - anon_sym_DOT, - STATE(5631), 1, - sym_path, - STATE(5363), 2, + STATE(5383), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(971), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(973), 3, + ACTIONS(8895), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [191226] = 4, + ACTIONS(1719), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [194993] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(990), 1, - anon_sym_DASH2, - STATE(5364), 1, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(6203), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6205), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6283), 1, + anon_sym_DOLLAR, + STATE(3610), 1, + sym__immediate_decimal, + STATE(5384), 1, sym_comment, - ACTIONS(992), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT, - [191246] = 8, + ACTIONS(6285), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3445), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [195023] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2094), 1, - anon_sym_DASH2, - ACTIONS(8607), 1, - anon_sym_DOT, - STATE(5196), 1, - aux_sym_cell_path_repeat1, - STATE(5365), 1, + STATE(5385), 1, sym_comment, - STATE(5483), 1, - sym_path, - STATE(5768), 1, - sym_cell_path, - ACTIONS(2096), 4, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(1763), 3, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [191274] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8926), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8928), 1, - aux_sym__immediate_decimal_token2, - STATE(5366), 1, - sym_comment, - ACTIONS(1621), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1623), 5, - anon_sym_in2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1761), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [191298] = 6, + aux_sym_unquoted_token2, + [195043] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8932), 1, - anon_sym_COMMA, - ACTIONS(8934), 1, - anon_sym_AT, - STATE(5367), 1, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(8417), 1, + anon_sym_DOLLAR, + ACTIONS(8423), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8425), 1, + aux_sym__immediate_decimal_token5, + STATE(5386), 1, sym_comment, - STATE(5652), 1, - sym_param_cmd, - ACTIONS(8930), 6, - sym_raw_string_begin, - sym_identifier, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [191322] = 6, + STATE(6050), 1, + sym__immediate_decimal, + ACTIONS(8421), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6221), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [195073] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8934), 1, - anon_sym_AT, - ACTIONS(8938), 1, - anon_sym_COMMA, - STATE(5368), 1, + ACTIONS(8901), 1, + anon_sym_LT, + STATE(5387), 1, sym_comment, - STATE(5653), 1, - sym_param_cmd, - ACTIONS(8936), 6, + ACTIONS(8019), 8, sym_raw_string_begin, sym_identifier, + anon_sym_COMMA, anon_sym_GT2, + anon_sym_AT, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [191346] = 8, + [195093] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2090), 1, - anon_sym_DASH2, - ACTIONS(8607), 1, - anon_sym_DOT, - STATE(4917), 1, - sym_cell_path, - STATE(5196), 1, - aux_sym_cell_path_repeat1, - STATE(5369), 1, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(6420), 1, + anon_sym_DOLLAR, + ACTIONS(8423), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8425), 1, + aux_sym__immediate_decimal_token5, + STATE(3610), 1, + sym__immediate_decimal, + STATE(5388), 1, sym_comment, - STATE(5483), 1, - sym_path, - ACTIONS(2092), 4, - sym_identifier, + ACTIONS(8551), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3445), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [195123] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6333), 1, + anon_sym_LPAREN2, + ACTIONS(6339), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6341), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6369), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [191374] = 6, + STATE(3972), 1, + sym__immediate_decimal, + STATE(5389), 1, + sym_comment, + ACTIONS(6371), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3754), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [195153] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8940), 1, - anon_sym_DOT, - ACTIONS(8942), 1, + ACTIONS(8903), 1, aux_sym__immediate_decimal_token2, - STATE(5370), 1, + STATE(5390), 1, sym_comment, - ACTIONS(1755), 2, + ACTIONS(1681), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1757), 5, + ACTIONS(1683), 6, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [191398] = 6, - ACTIONS(247), 1, + sym_filesize_unit, + sym_duration_unit, + [195175] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8944), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8946), 1, + ACTIONS(8641), 1, aux_sym__immediate_decimal_token2, - STATE(5371), 1, + STATE(5391), 1, sym_comment, - ACTIONS(1621), 2, + ACTIONS(1573), 3, + sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1623), 5, - anon_sym_LBRACE, + ACTIONS(1575), 5, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [191422] = 9, + [195197] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6203), 1, + ACTIONS(6420), 1, anon_sym_DOLLAR, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(6211), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, - aux_sym__immediate_decimal_token5, - STATE(3666), 1, - sym__immediate_decimal, - STATE(5372), 1, - sym_comment, - ACTIONS(6209), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3519), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [191452] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8948), 1, - anon_sym_EQ2, - ACTIONS(8950), 1, - sym_short_flag_identifier, - STATE(5373), 1, - sym_comment, - ACTIONS(4958), 3, + ACTIONS(8647), 1, + sym_identifier, + ACTIONS(8649), 1, anon_sym_DASH_DASH, + ACTIONS(8651), 1, anon_sym_DASH2, - anon_sym_as, - ACTIONS(4956), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [191476] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8952), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8954), 1, - aux_sym__immediate_decimal_token2, - STATE(5374), 1, + STATE(5392), 1, sym_comment, - ACTIONS(1739), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1741), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [191500] = 8, + STATE(5398), 1, + sym_val_variable, + STATE(5693), 1, + aux_sym_ctrl_do_repeat1, + STATE(6744), 1, + sym__variable_name, + STATE(6035), 2, + sym_short_flag, + sym_long_flag, + [195229] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1925), 1, + ACTIONS(1006), 1, anon_sym_DASH2, - ACTIONS(8607), 1, - anon_sym_DOT, - STATE(4919), 1, - sym_cell_path, - STATE(5196), 1, - aux_sym_cell_path_repeat1, - STATE(5375), 1, + STATE(5393), 1, sym_comment, - STATE(5483), 1, - sym_path, - ACTIONS(1927), 4, + ACTIONS(1008), 8, + anon_sym_EQ, sym_identifier, + sym__newline, + anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [191528] = 9, + anon_sym_DOT, + [195249] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(6211), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6227), 1, - anon_sym_DOLLAR, - STATE(3602), 1, - sym__immediate_decimal, - STATE(5376), 1, + ACTIONS(8905), 1, + anon_sym_DASH_DASH, + ACTIONS(8907), 1, + anon_sym_DASH2, + ACTIONS(8909), 1, + anon_sym_as, + STATE(5394), 1, sym_comment, - ACTIONS(6229), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3439), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [191558] = 6, + STATE(5428), 1, + aux_sym_ctrl_do_repeat1, + STATE(5998), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8816), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [195277] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8956), 1, + ACTIONS(8911), 1, sym_long_flag_identifier, - ACTIONS(8958), 1, + ACTIONS(8913), 1, anon_sym_EQ2, - STATE(5377), 1, + STATE(5395), 1, sym_comment, - ACTIONS(4938), 2, + ACTIONS(4970), 2, anon_sym_DASH2, anon_sym_as, - ACTIONS(4936), 5, + ACTIONS(4968), 5, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, - [191582] = 7, + [195301] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8960), 1, - anon_sym_DOT, - STATE(1894), 1, - sym_path, - STATE(3175), 1, - sym_cell_path, - STATE(5378), 1, + ACTIONS(6369), 1, + anon_sym_DOLLAR, + ACTIONS(8649), 1, + anon_sym_DASH_DASH, + ACTIONS(8651), 1, + anon_sym_DASH2, + ACTIONS(8915), 1, + sym_identifier, + STATE(5396), 1, sym_comment, - STATE(5608), 1, - aux_sym_cell_path_repeat1, - ACTIONS(963), 5, + STATE(5693), 1, + aux_sym_ctrl_do_repeat1, + STATE(7086), 1, + sym_val_variable, + STATE(7259), 1, + sym__variable_name, + STATE(6035), 2, + sym_short_flag, + sym_long_flag, + [195333] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8919), 1, + anon_sym_DASH2, + STATE(5397), 1, + sym_comment, + ACTIONS(8917), 8, + anon_sym_EQ, sym__newline, anon_sym_SEMI, + anon_sym_COLON, anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_RBRACE, - [191608] = 8, + [195353] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1933), 1, + ACTIONS(8923), 1, anon_sym_DASH2, - ACTIONS(8607), 1, - anon_sym_DOT, - STATE(4921), 1, - sym_cell_path, - STATE(5196), 1, - aux_sym_cell_path_repeat1, - STATE(5379), 1, + STATE(5398), 1, sym_comment, - STATE(5483), 1, - sym_path, - ACTIONS(1935), 4, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(8921), 8, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [191636] = 8, + anon_sym_in2, + anon_sym_RBRACE, + [195373] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1944), 1, - anon_sym_DASH2, - ACTIONS(8607), 1, - anon_sym_DOT, - STATE(4922), 1, - sym_cell_path, - STATE(5196), 1, - aux_sym_cell_path_repeat1, - STATE(5380), 1, - sym_comment, - STATE(5483), 1, - sym_path, - ACTIONS(1946), 4, - sym_identifier, + ACTIONS(6369), 1, anon_sym_DOLLAR, + ACTIONS(8649), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [191664] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1948), 1, + ACTIONS(8651), 1, anon_sym_DASH2, - ACTIONS(8607), 1, - anon_sym_DOT, - STATE(4923), 1, - sym_cell_path, - STATE(5196), 1, - aux_sym_cell_path_repeat1, - STATE(5381), 1, - sym_comment, - STATE(5483), 1, - sym_path, - ACTIONS(1950), 4, + ACTIONS(8915), 1, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [191692] = 8, + STATE(5396), 1, + aux_sym_ctrl_do_repeat1, + STATE(5399), 1, + sym_comment, + STATE(7086), 1, + sym_val_variable, + STATE(7183), 1, + sym__variable_name, + STATE(6035), 2, + sym_short_flag, + sym_long_flag, + [195405] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1952), 1, - anon_sym_DASH2, - ACTIONS(8607), 1, + ACTIONS(8925), 1, anon_sym_DOT, - STATE(4924), 1, + STATE(1882), 1, + sym_path, + STATE(2128), 1, sym_cell_path, - STATE(5196), 1, - aux_sym_cell_path_repeat1, - STATE(5382), 1, + STATE(5400), 1, sym_comment, - STATE(5483), 1, - sym_path, - ACTIONS(1954), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + STATE(5562), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1861), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LBRACE, - [191720] = 9, + anon_sym_RBRACE, + [195431] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4221), 1, + ACTIONS(7073), 1, anon_sym_LPAREN2, - ACTIONS(4565), 1, + ACTIONS(8927), 1, + anon_sym_DOLLAR, + ACTIONS(8929), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4567), 1, + ACTIONS(8931), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8279), 1, - anon_sym_DOLLAR, - STATE(1908), 1, + STATE(4544), 1, sym__immediate_decimal, - STATE(5383), 1, + STATE(5401), 1, sym_comment, - ACTIONS(4563), 2, + ACTIONS(7119), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1907), 2, + STATE(4945), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [191750] = 6, + [195461] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8962), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8964), 1, + ACTIONS(8700), 1, aux_sym__immediate_decimal_token2, - STATE(5384), 1, + STATE(5402), 1, sym_comment, - ACTIONS(1739), 3, + ACTIONS(1765), 4, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1741), 4, + aux_sym__unquoted_in_list_token2, + ACTIONS(1767), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [191774] = 8, + [195483] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8933), 1, + aux_sym__immediate_decimal_token2, + STATE(5403), 1, + sym_comment, + ACTIONS(1681), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1683), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [195505] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1960), 1, + ACTIONS(967), 1, anon_sym_DASH2, - ACTIONS(8607), 1, + ACTIONS(8724), 1, anon_sym_DOT, - STATE(4925), 1, - sym_cell_path, - STATE(5196), 1, - aux_sym_cell_path_repeat1, - STATE(5385), 1, + STATE(5404), 1, sym_comment, - STATE(5483), 1, + STATE(5429), 1, + aux_sym_cell_path_repeat1, + STATE(5633), 1, sym_path, - ACTIONS(1962), 4, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(969), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [191802] = 8, + anon_sym_as, + [195531] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1968), 1, - anon_sym_DASH2, - ACTIONS(8607), 1, - anon_sym_DOT, - STATE(4926), 1, - sym_cell_path, - STATE(5196), 1, - aux_sym_cell_path_repeat1, - STATE(5386), 1, + ACTIONS(5551), 1, + anon_sym_DOLLAR, + ACTIONS(5553), 1, + anon_sym_LPAREN2, + ACTIONS(5559), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5561), 1, + aux_sym__immediate_decimal_token5, + STATE(3036), 1, + sym__immediate_decimal, + STATE(5405), 1, sym_comment, - STATE(5483), 1, - sym_path, - ACTIONS(1970), 4, - sym_identifier, + ACTIONS(5557), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3157), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [195561] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4487), 1, + anon_sym_LPAREN2, + ACTIONS(4493), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4495), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8565), 1, + anon_sym_DOLLAR, + STATE(1704), 1, + sym__immediate_decimal, + STATE(5406), 1, + sym_comment, + ACTIONS(4491), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1907), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [195591] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6331), 1, anon_sym_DOLLAR, + ACTIONS(6333), 1, + anon_sym_LPAREN2, + ACTIONS(6339), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6341), 1, + aux_sym__immediate_decimal_token5, + STATE(3796), 1, + sym__immediate_decimal, + STATE(5407), 1, + sym_comment, + ACTIONS(6337), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3572), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [195621] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(978), 1, + anon_sym_DASH2, + ACTIONS(8935), 1, + anon_sym_QMARK2, + STATE(5408), 1, + sym_comment, + ACTIONS(980), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [191830] = 9, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT, + [195643] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8139), 1, + ACTIONS(6197), 1, anon_sym_LPAREN2, - ACTIONS(8966), 1, + ACTIONS(6420), 1, anon_sym_DOLLAR, - ACTIONS(8968), 1, + ACTIONS(8581), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8970), 1, + ACTIONS(8583), 1, aux_sym__immediate_decimal_token5, - STATE(5387), 1, + STATE(5409), 1, sym_comment, - STATE(6083), 1, + STATE(7710), 1, sym__immediate_decimal, - ACTIONS(8193), 2, + ACTIONS(8579), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5957), 2, + STATE(3429), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [191860] = 9, + [195673] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6205), 1, + ACTIONS(6333), 1, anon_sym_LPAREN2, - ACTIONS(6211), 1, + ACTIONS(6339), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, + ACTIONS(6341), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8487), 1, + ACTIONS(6369), 1, anon_sym_DOLLAR, - STATE(3602), 1, + STATE(3822), 1, sym__immediate_decimal, - STATE(5388), 1, + STATE(5410), 1, sym_comment, - ACTIONS(6229), 2, + ACTIONS(6371), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3439), 2, + STATE(3821), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [191890] = 8, + [195703] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1972), 1, - anon_sym_DASH2, - ACTIONS(8607), 1, - anon_sym_DOT, - STATE(4928), 1, - sym_cell_path, - STATE(5196), 1, - aux_sym_cell_path_repeat1, - STATE(5389), 1, - sym_comment, - STATE(5483), 1, - sym_path, - ACTIONS(1974), 4, - sym_identifier, + ACTIONS(6333), 1, + anon_sym_LPAREN2, + ACTIONS(6339), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6341), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6369), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [191918] = 8, + STATE(3991), 1, + sym__immediate_decimal, + STATE(5411), 1, + sym_comment, + ACTIONS(6371), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3828), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [195733] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8937), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8939), 1, + aux_sym__immediate_decimal_token2, + STATE(5412), 1, + sym_comment, + ACTIONS(1739), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1741), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [195757] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1984), 1, + ACTIONS(1010), 1, anon_sym_DASH2, - ACTIONS(8607), 1, - anon_sym_DOT, - STATE(4929), 1, - sym_cell_path, - STATE(5196), 1, - aux_sym_cell_path_repeat1, - STATE(5390), 1, + STATE(5413), 1, sym_comment, - STATE(5483), 1, - sym_path, - ACTIONS(1986), 4, + ACTIONS(1012), 8, + anon_sym_EQ, sym_identifier, + sym__newline, + anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [191946] = 8, + anon_sym_DOT, + [195777] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1988), 1, - anon_sym_DASH2, - ACTIONS(8607), 1, - anon_sym_DOT, - STATE(4930), 1, - sym_cell_path, - STATE(5196), 1, - aux_sym_cell_path_repeat1, - STATE(5391), 1, + ACTIONS(8810), 1, + aux_sym__immediate_decimal_token2, + STATE(5414), 1, sym_comment, - STATE(5483), 1, - sym_path, - ACTIONS(1990), 4, - sym_identifier, + ACTIONS(1575), 3, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [191974] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1573), 5, + sym_identifier, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [195799] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1992), 1, + ACTIONS(1014), 1, anon_sym_DASH2, - ACTIONS(8607), 1, - anon_sym_DOT, - STATE(4931), 1, - sym_cell_path, - STATE(5196), 1, - aux_sym_cell_path_repeat1, - STATE(5392), 1, + STATE(5415), 1, sym_comment, - STATE(5483), 1, - sym_path, - ACTIONS(1994), 4, + ACTIONS(1016), 8, + anon_sym_EQ, sym_identifier, + sym__newline, + anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [192002] = 8, + anon_sym_DOT, + [195819] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1996), 1, - anon_sym_DASH2, - ACTIONS(8607), 1, + ACTIONS(8925), 1, anon_sym_DOT, - STATE(4932), 1, + STATE(1882), 1, + sym_path, + STATE(3196), 1, sym_cell_path, - STATE(5196), 1, - aux_sym_cell_path_repeat1, - STATE(5393), 1, + STATE(5416), 1, sym_comment, - STATE(5483), 1, - sym_path, - ACTIONS(1998), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + STATE(5562), 1, + aux_sym_cell_path_repeat1, + ACTIONS(963), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LBRACE, - [192030] = 8, + anon_sym_RBRACE, + [195845] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2000), 1, - anon_sym_DASH2, - ACTIONS(8607), 1, - anon_sym_DOT, - STATE(4933), 1, - sym_cell_path, - STATE(5196), 1, - aux_sym_cell_path_repeat1, - STATE(5394), 1, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(8095), 1, + anon_sym_DOLLAR, + ACTIONS(8099), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8101), 1, + aux_sym__immediate_decimal_token5, + STATE(5417), 1, sym_comment, - STATE(5483), 1, - sym_path, - ACTIONS(2002), 4, - sym_identifier, + STATE(6346), 1, + sym__immediate_decimal, + ACTIONS(8097), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3429), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [195875] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8941), 1, + aux_sym__immediate_decimal_token2, + STATE(5418), 1, + sym_comment, + ACTIONS(1683), 3, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [192058] = 9, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1681), 5, + sym_identifier, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [195897] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7049), 1, + ACTIONS(4487), 1, anon_sym_LPAREN2, - ACTIONS(8972), 1, - anon_sym_DOLLAR, - ACTIONS(8974), 1, + ACTIONS(4579), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8976), 1, + ACTIONS(4581), 1, aux_sym__immediate_decimal_token5, - STATE(4318), 1, + ACTIONS(8565), 1, + anon_sym_DOLLAR, + STATE(1906), 1, sym__immediate_decimal, - STATE(5395), 1, + STATE(5419), 1, sym_comment, - ACTIONS(7101), 2, + ACTIONS(4577), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4734), 2, + STATE(1905), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192088] = 9, + [195927] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6205), 1, + ACTIONS(8943), 1, + anon_sym_DOT, + ACTIONS(8945), 1, + aux_sym__immediate_decimal_token2, + STATE(5420), 1, + sym_comment, + ACTIONS(1765), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1767), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [195951] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8073), 1, anon_sym_LPAREN2, - ACTIONS(8173), 1, + ACTIONS(8947), 1, anon_sym_DOLLAR, - ACTIONS(8329), 1, + ACTIONS(8949), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8331), 1, + ACTIONS(8951), 1, aux_sym__immediate_decimal_token5, - STATE(5396), 1, + STATE(5421), 1, sym_comment, - STATE(6986), 1, + STATE(6103), 1, sym__immediate_decimal, - ACTIONS(8327), 2, + ACTIONS(8169), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3408), 2, + STATE(5744), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192118] = 8, + [195981] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2004), 1, - anon_sym_DASH2, - ACTIONS(8607), 1, - anon_sym_DOT, - STATE(4934), 1, - sym_cell_path, - STATE(5196), 1, - aux_sym_cell_path_repeat1, - STATE(5397), 1, - sym_comment, - STATE(5483), 1, - sym_path, - ACTIONS(2006), 4, - sym_identifier, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(6203), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6205), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8403), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [192146] = 8, + STATE(3610), 1, + sym__immediate_decimal, + STATE(5422), 1, + sym_comment, + ACTIONS(6285), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3445), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [196011] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2068), 1, + ACTIONS(984), 1, anon_sym_DASH2, - ACTIONS(8607), 1, + ACTIONS(8953), 1, + anon_sym_QMARK2, + STATE(5423), 1, + sym_comment, + ACTIONS(986), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, anon_sym_DOT, - STATE(4935), 1, - sym_cell_path, - STATE(5196), 1, - aux_sym_cell_path_repeat1, - STATE(5398), 1, + [196033] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5424), 1, sym_comment, - STATE(5483), 1, - sym_path, - ACTIONS(2070), 4, + ACTIONS(1575), 3, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1573), 6, sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [196053] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7039), 1, + anon_sym_LPAREN2, + ACTIONS(8955), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [192174] = 8, + ACTIONS(8957), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8959), 1, + aux_sym__immediate_decimal_token5, + STATE(4514), 1, + sym__immediate_decimal, + STATE(5425), 1, + sym_comment, + ACTIONS(7085), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4697), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [196083] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2072), 1, - anon_sym_DASH2, - ACTIONS(8607), 1, + ACTIONS(6197), 1, + anon_sym_LPAREN2, + ACTIONS(8095), 1, + anon_sym_DOLLAR, + ACTIONS(8369), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8371), 1, + aux_sym__immediate_decimal_token5, + STATE(5426), 1, + sym_comment, + STATE(7124), 1, + sym__immediate_decimal, + ACTIONS(8367), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3429), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [196113] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8925), 1, anon_sym_DOT, - STATE(4936), 1, + STATE(1882), 1, + sym_path, + STATE(2124), 1, sym_cell_path, - STATE(5196), 1, - aux_sym_cell_path_repeat1, - STATE(5399), 1, + STATE(5427), 1, sym_comment, - STATE(5483), 1, - sym_path, - ACTIONS(2074), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + STATE(5562), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1865), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LBRACE, - [192202] = 8, + anon_sym_RBRACE, + [196139] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1907), 1, + ACTIONS(8961), 1, + anon_sym_DASH_DASH, + ACTIONS(8964), 1, anon_sym_DASH2, - ACTIONS(8607), 1, - anon_sym_DOT, - STATE(4937), 1, - sym_cell_path, - STATE(5196), 1, - aux_sym_cell_path_repeat1, - STATE(5400), 1, + STATE(5428), 2, sym_comment, - STATE(5483), 1, - sym_path, - ACTIONS(1911), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [192230] = 8, + aux_sym_ctrl_do_repeat1, + STATE(5998), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8877), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_as, + [196163] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1913), 1, + ACTIONS(971), 1, anon_sym_DASH2, - ACTIONS(8607), 1, + ACTIONS(8967), 1, anon_sym_DOT, - STATE(4938), 1, - sym_cell_path, - STATE(5196), 1, - aux_sym_cell_path_repeat1, - STATE(5401), 1, - sym_comment, - STATE(5483), 1, + STATE(5633), 1, sym_path, - ACTIONS(1915), 4, - sym_identifier, - anon_sym_DOLLAR, + STATE(5429), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(973), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [192258] = 9, + anon_sym_as, + [196187] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7079), 1, + ACTIONS(7073), 1, anon_sym_LPAREN2, - ACTIONS(8978), 1, + ACTIONS(8927), 1, anon_sym_DOLLAR, - ACTIONS(8980), 1, + ACTIONS(8970), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8982), 1, + ACTIONS(8972), 1, aux_sym__immediate_decimal_token5, - STATE(4838), 1, + STATE(4944), 1, sym__immediate_decimal, - STATE(5402), 1, + STATE(5430), 1, sym_comment, - ACTIONS(7171), 2, + ACTIONS(7155), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4837), 2, + STATE(4942), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192288] = 9, + [196217] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8974), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8976), 1, + aux_sym__immediate_decimal_token2, + STATE(5431), 1, + sym_comment, + ACTIONS(1739), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1741), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [196241] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6205), 1, + ACTIONS(8073), 1, anon_sym_LPAREN2, - ACTIONS(6211), 1, + ACTIONS(8949), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, + ACTIONS(8951), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6227), 1, + ACTIONS(8978), 1, anon_sym_DOLLAR, - STATE(3588), 1, - sym__immediate_decimal, - STATE(5403), 1, + STATE(5432), 1, sym_comment, - ACTIONS(6229), 2, + STATE(7568), 1, + sym__immediate_decimal, + ACTIONS(8313), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3408), 2, + STATE(7189), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192318] = 9, + [196271] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8139), 1, + ACTIONS(8073), 1, anon_sym_LPAREN2, - ACTIONS(8968), 1, + ACTIONS(8949), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8970), 1, + ACTIONS(8951), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8984), 1, + ACTIONS(8978), 1, anon_sym_DOLLAR, - STATE(5404), 1, + STATE(5433), 1, sym_comment, - STATE(7482), 1, + STATE(6935), 1, sym__immediate_decimal, - ACTIONS(8341), 2, + ACTIONS(8313), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(7333), 2, + STATE(6934), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192348] = 9, + [196301] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8139), 1, + ACTIONS(6197), 1, anon_sym_LPAREN2, - ACTIONS(8984), 1, - anon_sym_DOLLAR, - ACTIONS(8986), 1, + ACTIONS(6203), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8988), 1, + ACTIONS(6205), 1, aux_sym__immediate_decimal_token5, - STATE(5405), 1, - sym_comment, - STATE(6255), 1, + ACTIONS(6283), 1, + anon_sym_DOLLAR, + STATE(3616), 1, sym__immediate_decimal, - ACTIONS(8309), 2, + STATE(5434), 1, + sym_comment, + ACTIONS(6285), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6899), 2, + STATE(3429), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192378] = 10, + [196331] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8649), 1, + ACTIONS(1887), 1, + anon_sym_DASH2, + ACTIONS(8621), 1, + anon_sym_DOT, + STATE(4822), 1, + sym_cell_path, + STATE(5242), 1, + aux_sym_cell_path_repeat1, + STATE(5393), 1, + sym_path, + STATE(5435), 1, + sym_comment, + ACTIONS(1889), 4, sym_identifier, - ACTIONS(8850), 1, anon_sym_DOLLAR, - ACTIONS(8852), 1, anon_sym_DASH_DASH, - ACTIONS(8854), 1, - anon_sym_DASH2, - STATE(5406), 1, - sym_comment, - STATE(5480), 1, - sym_val_variable, - STATE(5817), 1, - sym__variable_name, - STATE(6332), 1, - sym__flag, - STATE(6104), 2, - sym_short_flag, - sym_long_flag, - [192410] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5407), 1, - sym_comment, - ACTIONS(1673), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1675), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [192430] = 9, + anon_sym_LBRACE, + [196359] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6205), 1, + ACTIONS(8073), 1, anon_sym_LPAREN2, - ACTIONS(6412), 1, + ACTIONS(8978), 1, anon_sym_DOLLAR, - ACTIONS(8299), 1, + ACTIONS(8980), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8301), 1, + ACTIONS(8982), 1, aux_sym__immediate_decimal_token5, - STATE(3407), 1, - sym__immediate_decimal, - STATE(5408), 1, + STATE(5436), 1, sym_comment, - ACTIONS(8555), 2, + STATE(6513), 1, + sym__immediate_decimal, + ACTIONS(8429), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3405), 2, + STATE(6938), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192460] = 9, + [196389] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6205), 1, + ACTIONS(7039), 1, anon_sym_LPAREN2, - ACTIONS(6412), 1, + ACTIONS(8955), 1, anon_sym_DOLLAR, - ACTIONS(8299), 1, + ACTIONS(8984), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8301), 1, + ACTIONS(8986), 1, aux_sym__immediate_decimal_token5, - STATE(3588), 1, + STATE(4696), 1, sym__immediate_decimal, - STATE(5409), 1, + STATE(5437), 1, sym_comment, - ACTIONS(8555), 2, + ACTIONS(7115), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3408), 2, + STATE(4695), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192490] = 7, + [196419] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(967), 1, - anon_sym_DASH2, - ACTIONS(8758), 1, - anon_sym_DOT, - STATE(5410), 1, + ACTIONS(8990), 1, + anon_sym_COMMA, + ACTIONS(8992), 1, + anon_sym_AT, + STATE(5438), 1, sym_comment, - STATE(5482), 1, - aux_sym_cell_path_repeat1, - STATE(5625), 1, - sym_path, - ACTIONS(969), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [192516] = 9, + STATE(5656), 1, + sym_param_cmd, + ACTIONS(8988), 6, + sym_raw_string_begin, + sym_identifier, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [196443] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8139), 1, - anon_sym_LPAREN2, - ACTIONS(8984), 1, - anon_sym_DOLLAR, - ACTIONS(8990), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8992), 1, - aux_sym__immediate_decimal_token5, - STATE(5411), 1, + STATE(5439), 1, sym_comment, - STATE(6230), 1, - sym__immediate_decimal, - ACTIONS(8373), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6899), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [192546] = 9, + ACTIONS(1573), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1575), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [196463] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7049), 1, + ACTIONS(8073), 1, anon_sym_LPAREN2, - ACTIONS(8972), 1, + ACTIONS(8978), 1, anon_sym_DOLLAR, ACTIONS(8994), 1, aux_sym__immediate_decimal_token4, ACTIONS(8996), 1, aux_sym__immediate_decimal_token5, - STATE(4733), 1, - sym__immediate_decimal, - STATE(5412), 1, + STATE(5440), 1, sym_comment, - ACTIONS(7145), 2, + STATE(6359), 1, + sym__immediate_decimal, + ACTIONS(8327), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4730), 2, + STATE(6938), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192576] = 5, + [196493] = 8, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(8905), 1, + anon_sym_DASH_DASH, + ACTIONS(8907), 1, + anon_sym_DASH2, ACTIONS(8998), 1, - aux_sym__immediate_decimal_token2, - STATE(5413), 1, + anon_sym_as, + STATE(5441), 1, sym_comment, - ACTIONS(1675), 3, - anon_sym_DOLLAR, + STATE(5458), 1, + aux_sym_ctrl_do_repeat1, + STATE(5998), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8746), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [196521] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5442), 1, + sym_comment, + ACTIONS(1587), 3, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1673), 5, + ACTIONS(1585), 6, sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [192598] = 9, + [196541] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4057), 1, + ACTIONS(4035), 1, anon_sym_LPAREN2, - ACTIONS(4063), 1, + ACTIONS(4041), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4065), 1, + ACTIONS(4043), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8131), 1, + ACTIONS(8317), 1, anon_sym_DOLLAR, - STATE(1635), 1, + STATE(1594), 1, sym__immediate_decimal, - STATE(5414), 1, + STATE(5443), 1, sym_comment, - ACTIONS(4061), 2, + ACTIONS(4039), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1841), 2, + STATE(1853), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192628] = 9, + [196571] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6205), 1, + ACTIONS(6197), 1, anon_sym_LPAREN2, - ACTIONS(6211), 1, + ACTIONS(6203), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, + ACTIONS(6205), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8487), 1, + ACTIONS(8403), 1, anon_sym_DOLLAR, - STATE(3407), 1, + STATE(3443), 1, sym__immediate_decimal, - STATE(5415), 1, + STATE(5444), 1, sym_comment, - ACTIONS(6229), 2, + ACTIONS(6285), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3405), 2, + STATE(3455), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192658] = 6, - ACTIONS(247), 1, + [196601] = 6, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9000), 1, anon_sym_DOT, ACTIONS(9002), 1, aux_sym__immediate_decimal_token2, - STATE(5416), 1, + STATE(5445), 1, + sym_comment, + ACTIONS(1765), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1767), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [196625] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5446), 1, sym_comment, - ACTIONS(1607), 2, + ACTIONS(1585), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1609), 5, - anon_sym_LBRACE, + ACTIONS(1587), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [192682] = 9, + [196645] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6333), 1, anon_sym_LPAREN2, - ACTIONS(6349), 1, + ACTIONS(6369), 1, anon_sym_DOLLAR, - ACTIONS(7045), 1, + ACTIONS(7057), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7047), 1, + ACTIONS(7059), 1, aux_sym__immediate_decimal_token5, - STATE(4225), 1, + STATE(4283), 1, sym__immediate_decimal, - STATE(5417), 1, + STATE(5447), 1, sym_comment, - ACTIONS(7043), 2, + ACTIONS(7055), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3818), 2, + STATE(3828), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192712] = 9, + [196675] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4057), 1, + ACTIONS(4035), 1, anon_sym_LPAREN2, - ACTIONS(4511), 1, + ACTIONS(4413), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4513), 1, + ACTIONS(4415), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8131), 1, + ACTIONS(8317), 1, anon_sym_DOLLAR, - STATE(1840), 1, + STATE(1835), 1, sym__immediate_decimal, - STATE(5418), 1, - sym_comment, - ACTIONS(4509), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1839), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [192742] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5419), 1, - sym_comment, - ACTIONS(1763), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1765), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [192762] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(8293), 1, - anon_sym_DOLLAR, - ACTIONS(8299), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8301), 1, - aux_sym__immediate_decimal_token5, - STATE(5420), 1, + STATE(5448), 1, sym_comment, - STATE(6009), 1, - sym__immediate_decimal, - ACTIONS(8297), 2, + ACTIONS(4411), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6160), 2, + STATE(1832), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192792] = 9, + [196705] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6205), 1, + ACTIONS(6197), 1, anon_sym_LPAREN2, - ACTIONS(6227), 1, + ACTIONS(6283), 1, anon_sym_DOLLAR, - ACTIONS(7031), 1, + ACTIONS(7027), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7033), 1, + ACTIONS(7029), 1, aux_sym__immediate_decimal_token5, - STATE(4173), 1, + STATE(4155), 1, sym__immediate_decimal, - STATE(5421), 1, + STATE(5449), 1, sym_comment, - ACTIONS(7029), 2, + ACTIONS(7025), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3408), 2, + STATE(3429), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192822] = 9, + [196735] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5497), 1, - anon_sym_DOLLAR, - ACTIONS(5499), 1, - anon_sym_LPAREN2, - ACTIONS(5636), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5638), 1, - aux_sym__immediate_decimal_token5, - STATE(3136), 1, - sym__immediate_decimal, - STATE(5422), 1, + ACTIONS(9004), 1, + anon_sym_LT, + STATE(5450), 1, sym_comment, - ACTIONS(5634), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3132), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [192852] = 9, + ACTIONS(8019), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_AT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [196755] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(6412), 1, + ACTIONS(5551), 1, anon_sym_DOLLAR, - ACTIONS(8299), 1, + ACTIONS(5553), 1, + anon_sym_LPAREN2, + ACTIONS(5572), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8301), 1, + ACTIONS(5574), 1, aux_sym__immediate_decimal_token5, - STATE(3602), 1, + STATE(3155), 1, sym__immediate_decimal, - STATE(5423), 1, + STATE(5451), 1, sym_comment, - ACTIONS(8555), 2, + ACTIONS(5570), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3439), 2, + STATE(3153), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192882] = 4, + [196785] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1010), 1, - anon_sym_DASH2, - STATE(5424), 1, + STATE(5452), 1, sym_comment, - ACTIONS(1012), 8, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - [192902] = 4, + ACTIONS(1681), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1683), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [196805] = 4, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(1290), 1, anon_sym_DASH2, - STATE(5425), 1, + STATE(5453), 1, sym_comment, ACTIONS(1288), 8, sym_identifier, @@ -398152,127 +400723,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [192922] = 7, + [196825] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8960), 1, - anon_sym_DOT, - STATE(1894), 1, - sym_path, - STATE(2120), 1, - sym_cell_path, - STATE(5426), 1, + STATE(5454), 1, sym_comment, - STATE(5608), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2092), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [192948] = 10, + ACTIONS(1761), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1763), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [196845] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8649), 1, - sym_identifier, - ACTIONS(8850), 1, + ACTIONS(7163), 1, + anon_sym_LPAREN2, + ACTIONS(7208), 1, anon_sym_DOLLAR, - ACTIONS(8852), 1, - anon_sym_DASH_DASH, - ACTIONS(8854), 1, - anon_sym_DASH2, - STATE(5427), 1, + ACTIONS(7214), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7216), 1, + aux_sym__immediate_decimal_token5, + STATE(4772), 1, + sym__immediate_decimal, + STATE(5455), 1, sym_comment, - STATE(5480), 1, + ACTIONS(7212), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5116), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(5964), 1, - sym__variable_name, - STATE(6744), 1, - sym__flag, - STATE(6104), 2, - sym_short_flag, - sym_long_flag, - [192980] = 9, + [196875] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7188), 1, + ACTIONS(7163), 1, anon_sym_LPAREN2, - ACTIONS(7196), 1, + ACTIONS(7171), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7198), 1, + ACTIONS(7173), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7242), 1, + ACTIONS(7208), 1, anon_sym_DOLLAR, - STATE(5066), 1, + STATE(5110), 1, sym__immediate_decimal, - STATE(5428), 1, + STATE(5456), 1, sym_comment, - ACTIONS(7254), 2, + ACTIONS(7250), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4993), 2, + STATE(5096), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193010] = 6, - ACTIONS(247), 1, + [196905] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9004), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9006), 1, - aux_sym__immediate_decimal_token2, - STATE(5429), 1, + STATE(5457), 1, sym_comment, - ACTIONS(1739), 2, + ACTIONS(1573), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1741), 5, - sym__newline, - anon_sym_LBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1575), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [193034] = 4, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [196925] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1014), 1, + ACTIONS(8905), 1, + anon_sym_DASH_DASH, + ACTIONS(8907), 1, anon_sym_DASH2, - STATE(5430), 1, + ACTIONS(9006), 1, + anon_sym_as, + STATE(5428), 1, + aux_sym_ctrl_do_repeat1, + STATE(5458), 1, sym_comment, - ACTIONS(1016), 8, - anon_sym_EQ, - sym_identifier, + STATE(5998), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8798), 3, + ts_builtin_sym_end, sym__newline, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - [193054] = 9, - ACTIONS(247), 1, + anon_sym_SEMI, + [196953] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(6412), 1, - anon_sym_DOLLAR, - ACTIONS(8559), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8561), 1, - aux_sym__immediate_decimal_token5, - STATE(5431), 1, + ACTIONS(8663), 1, + anon_sym_DOT, + STATE(5459), 1, sym_comment, - STATE(7429), 1, - sym__immediate_decimal, - ACTIONS(8557), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3408), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [193084] = 9, + STATE(5471), 1, + aux_sym_cell_path_repeat1, + STATE(5675), 1, + sym_path, + ACTIONS(967), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(969), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [196979] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5463), 1, + ACTIONS(5440), 1, anon_sym_LPAREN2, ACTIONS(9008), 1, anon_sym_DOLLAR, @@ -398280,1133 +400847,1674 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token4, ACTIONS(9012), 1, aux_sym__immediate_decimal_token5, - STATE(2868), 1, + STATE(2891), 1, sym__immediate_decimal, - STATE(5432), 1, + STATE(5460), 1, sym_comment, - ACTIONS(8707), 2, + ACTIONS(8764), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3029), 2, + STATE(3022), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193114] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9014), 1, - aux_sym__immediate_decimal_token2, - STATE(5433), 1, - sym_comment, - ACTIONS(1783), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1785), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [193136] = 9, + [197009] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5463), 1, + ACTIONS(5440), 1, anon_sym_LPAREN2, ACTIONS(9008), 1, anon_sym_DOLLAR, - ACTIONS(9018), 1, + ACTIONS(9016), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9020), 1, + ACTIONS(9018), 1, aux_sym__immediate_decimal_token5, - STATE(3012), 1, + STATE(3079), 1, sym__immediate_decimal, - STATE(5434), 1, + STATE(5461), 1, sym_comment, - ACTIONS(9016), 2, + ACTIONS(9014), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3002), 2, + STATE(3078), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193166] = 9, + [197039] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1679), 1, + ACTIONS(1691), 1, anon_sym_DOLLAR, - ACTIONS(1681), 1, + ACTIONS(1693), 1, anon_sym_LPAREN2, - ACTIONS(1687), 1, + ACTIONS(1699), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1689), 1, + ACTIONS(1701), 1, aux_sym__immediate_decimal_token5, - STATE(586), 1, + STATE(596), 1, sym__immediate_decimal, - STATE(5435), 1, + STATE(5462), 1, sym_comment, - ACTIONS(1685), 2, + ACTIONS(1697), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(713), 2, + STATE(711), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193196] = 9, + [197069] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1679), 1, + ACTIONS(1691), 1, anon_sym_DOLLAR, - ACTIONS(1681), 1, + ACTIONS(1693), 1, anon_sym_LPAREN2, - ACTIONS(1751), 1, + ACTIONS(1757), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1753), 1, + ACTIONS(1759), 1, aux_sym__immediate_decimal_token5, - STATE(711), 1, + STATE(710), 1, sym__immediate_decimal, - STATE(5436), 1, + STATE(5463), 1, sym_comment, - ACTIONS(1749), 2, + ACTIONS(1755), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(708), 2, + STATE(709), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193226] = 9, + [197099] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5464), 1, + sym_comment, + ACTIONS(1585), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1587), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [197119] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1569), 1, + ACTIONS(1649), 1, anon_sym_LPAREN2, - ACTIONS(9022), 1, + ACTIONS(9020), 1, anon_sym_DOLLAR, - ACTIONS(9024), 1, + ACTIONS(9022), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9026), 1, + ACTIONS(9024), 1, aux_sym__immediate_decimal_token5, - STATE(532), 1, + STATE(543), 1, sym__immediate_decimal, - STATE(5437), 1, + STATE(5465), 1, sym_comment, - ACTIONS(8747), 2, + ACTIONS(8794), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(626), 2, + STATE(648), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193256] = 9, + [197149] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1569), 1, + ACTIONS(1649), 1, anon_sym_LPAREN2, - ACTIONS(9022), 1, + ACTIONS(9020), 1, anon_sym_DOLLAR, - ACTIONS(9030), 1, + ACTIONS(9028), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9032), 1, + ACTIONS(9030), 1, aux_sym__immediate_decimal_token5, - STATE(674), 1, + STATE(644), 1, sym__immediate_decimal, - STATE(5438), 1, + STATE(5466), 1, sym_comment, - ACTIONS(9028), 2, + ACTIONS(9026), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(672), 2, + STATE(643), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193286] = 4, + [197179] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9034), 1, - anon_sym_LT, - STATE(5439), 1, + ACTIONS(8905), 1, + anon_sym_DASH_DASH, + ACTIONS(8907), 1, + anon_sym_DASH2, + ACTIONS(9032), 1, + anon_sym_as, + STATE(5394), 1, + aux_sym_ctrl_do_repeat1, + STATE(5467), 1, sym_comment, - ACTIONS(7953), 8, - sym_raw_string_begin, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_AT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [193306] = 5, + STATE(5998), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8802), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [197207] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9036), 1, - aux_sym__immediate_decimal_token2, - STATE(5440), 1, + STATE(5468), 1, sym_comment, - ACTIONS(1673), 3, - sym__newline, + ACTIONS(1681), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1675), 5, - sym__space, + aux_sym__unquoted_in_record_token2, + ACTIONS(1683), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [193328] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4227), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4229), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8279), 1, - anon_sym_DOLLAR, - STATE(1671), 1, - sym__immediate_decimal, - STATE(5441), 1, - sym_comment, - ACTIONS(4225), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1909), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [193358] = 5, - ACTIONS(247), 1, + sym__entry_separator, + [197227] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8693), 1, - aux_sym__immediate_decimal_token2, - STATE(5442), 1, + STATE(5469), 1, sym_comment, - ACTIONS(1607), 2, + ACTIONS(1761), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1609), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, + aux_sym__unquoted_in_record_token2, + ACTIONS(1763), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [193380] = 5, + sym__entry_separator, + [197247] = 9, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1719), 1, + anon_sym_DASH_DASH, + ACTIONS(4722), 1, + anon_sym_DOT_DOT2, + ACTIONS(8635), 1, + aux_sym_unquoted_token2, + ACTIONS(9034), 1, + sym_filesize_unit, + ACTIONS(9036), 1, + sym_duration_unit, + STATE(5470), 1, + sym_comment, + ACTIONS(1707), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(4724), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [197277] = 6, + ACTIONS(3), 1, + anon_sym_POUND, ACTIONS(9038), 1, - aux_sym__immediate_decimal_token2, - STATE(5443), 1, + anon_sym_DOT, + STATE(5675), 1, + sym_path, + STATE(5471), 2, sym_comment, - ACTIONS(1673), 2, + aux_sym_cell_path_repeat1, + ACTIONS(971), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1675), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(973), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [193402] = 9, + sym__entry_separator, + [197301] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6333), 1, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(8647), 1, + sym_identifier, + ACTIONS(9041), 1, anon_sym_DOLLAR, - ACTIONS(6335), 1, + ACTIONS(9043), 1, + anon_sym_DASH_DASH, + ACTIONS(9045), 1, + anon_sym_DASH2, + STATE(5398), 1, + sym_val_variable, + STATE(5472), 1, + sym_comment, + STATE(6206), 1, + sym__variable_name, + STATE(6816), 2, + sym_short_flag, + sym_long_flag, + [197333] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6197), 1, anon_sym_LPAREN2, - ACTIONS(6341), 1, + ACTIONS(6203), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6343), 1, + ACTIONS(6205), 1, aux_sym__immediate_decimal_token5, - STATE(3820), 1, + ACTIONS(6283), 1, + anon_sym_DOLLAR, + STATE(3443), 1, sym__immediate_decimal, - STATE(5444), 1, + STATE(5473), 1, sym_comment, - ACTIONS(6339), 2, + ACTIONS(6285), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3534), 2, + STATE(3455), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193432] = 7, + [197363] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8960), 1, - anon_sym_DOT, - STATE(1894), 1, - sym_path, - STATE(2116), 1, - sym_cell_path, - STATE(5445), 1, + ACTIONS(8073), 1, + anon_sym_LPAREN2, + ACTIONS(8949), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8951), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8978), 1, + anon_sym_DOLLAR, + STATE(5474), 1, sym_comment, - STATE(5608), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2084), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [193458] = 5, + STATE(7621), 1, + sym__immediate_decimal, + ACTIONS(8313), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6938), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [197393] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(978), 1, - anon_sym_DASH2, - ACTIONS(9040), 1, - anon_sym_QMARK2, - STATE(5446), 1, + ACTIONS(9047), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9049), 1, + aux_sym__immediate_decimal_token2, + STATE(5475), 1, sym_comment, - ACTIONS(980), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT, - [193480] = 5, + ACTIONS(1739), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1741), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [197417] = 10, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(984), 1, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(8647), 1, + sym_identifier, + ACTIONS(9041), 1, + anon_sym_DOLLAR, + ACTIONS(9043), 1, + anon_sym_DASH_DASH, + ACTIONS(9045), 1, anon_sym_DASH2, - ACTIONS(9042), 1, - anon_sym_QMARK2, - STATE(5447), 1, + STATE(5398), 1, + sym_val_variable, + STATE(5476), 1, sym_comment, - ACTIONS(986), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT, - [193502] = 5, + STATE(6206), 1, + sym__variable_name, + STATE(6816), 2, + sym_short_flag, + sym_long_flag, + [197449] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8848), 1, + ACTIONS(9051), 1, aux_sym__immediate_decimal_token2, - STATE(5448), 1, + STATE(5477), 1, sym_comment, - ACTIONS(1755), 4, + ACTIONS(1785), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1757), 4, + ACTIONS(1787), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [193524] = 9, + [197471] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(8173), 1, - anon_sym_DOLLAR, - ACTIONS(8177), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8179), 1, - aux_sym__immediate_decimal_token5, - STATE(5449), 1, + ACTIONS(1867), 1, + anon_sym_DASH2, + ACTIONS(8621), 1, + anon_sym_DOT, + STATE(5242), 1, + aux_sym_cell_path_repeat1, + STATE(5393), 1, + sym_path, + STATE(5478), 1, sym_comment, - STATE(6287), 1, - sym__immediate_decimal, - ACTIONS(8175), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3408), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [193554] = 9, + STATE(5996), 1, + sym_cell_path, + ACTIONS(1869), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [197499] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(6211), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6227), 1, - anon_sym_DOLLAR, - STATE(3407), 1, - sym__immediate_decimal, - STATE(5450), 1, + ACTIONS(1859), 1, + anon_sym_DASH2, + ACTIONS(8621), 1, + anon_sym_DOT, + STATE(4898), 1, + sym_cell_path, + STATE(5242), 1, + aux_sym_cell_path_repeat1, + STATE(5393), 1, + sym_path, + STATE(5479), 1, sym_comment, - ACTIONS(6229), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3405), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [193584] = 9, + ACTIONS(1861), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [197527] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7079), 1, - anon_sym_LPAREN2, - ACTIONS(8978), 1, - anon_sym_DOLLAR, - ACTIONS(9044), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9046), 1, - aux_sym__immediate_decimal_token5, - STATE(4568), 1, - sym__immediate_decimal, - STATE(5451), 1, + ACTIONS(9053), 1, + anon_sym_DOT, + ACTIONS(9055), 1, + aux_sym__immediate_decimal_token2, + STATE(5480), 1, sym_comment, - ACTIONS(7117), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4839), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [193614] = 9, + ACTIONS(1765), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1767), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [197551] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8139), 1, + ACTIONS(6197), 1, anon_sym_LPAREN2, - ACTIONS(8968), 1, + ACTIONS(6203), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8970), 1, + ACTIONS(6205), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8984), 1, + ACTIONS(8403), 1, anon_sym_DOLLAR, - STATE(5452), 1, - sym_comment, - STATE(7349), 1, + STATE(3616), 1, sym__immediate_decimal, - ACTIONS(8341), 2, + STATE(5481), 1, + sym_comment, + ACTIONS(6285), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6899), 2, + STATE(3429), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193644] = 4, + [197581] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(5453), 1, + ACTIONS(9057), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9059), 1, + aux_sym__immediate_decimal_token2, + STATE(5482), 1, sym_comment, - ACTIONS(1607), 2, + ACTIONS(1585), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1609), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1587), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [193664] = 9, + [197605] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6205), 1, + ACTIONS(6197), 1, anon_sym_LPAREN2, - ACTIONS(6211), 1, + ACTIONS(6203), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, + ACTIONS(6205), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8487), 1, + ACTIONS(8203), 1, anon_sym_DOLLAR, - STATE(3588), 1, - sym__immediate_decimal, - STATE(5454), 1, + STATE(5483), 1, sym_comment, - ACTIONS(6229), 2, + STATE(6006), 1, + sym__immediate_decimal, + ACTIONS(6201), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3408), 2, + STATE(5977), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193694] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9048), 1, - anon_sym_DOT, - ACTIONS(9050), 1, - aux_sym__immediate_decimal_token2, - STATE(5455), 1, - sym_comment, - ACTIONS(1755), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1757), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [193718] = 9, + [197635] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6197), 1, anon_sym_LPAREN2, - ACTIONS(6341), 1, + ACTIONS(6203), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6343), 1, + ACTIONS(6205), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6349), 1, + ACTIONS(8095), 1, anon_sym_DOLLAR, - STATE(3801), 1, + STATE(3610), 1, sym__immediate_decimal, - STATE(5456), 1, + STATE(5484), 1, sym_comment, - ACTIONS(6351), 2, + ACTIONS(6285), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3798), 2, + STATE(3445), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193748] = 9, + [197665] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6205), 1, + ACTIONS(6197), 1, anon_sym_LPAREN2, - ACTIONS(6211), 1, + ACTIONS(6203), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, + ACTIONS(6205), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8223), 1, + ACTIONS(8095), 1, anon_sym_DOLLAR, - STATE(5457), 1, - sym_comment, - STATE(5736), 1, + STATE(3443), 1, sym__immediate_decimal, - ACTIONS(6209), 2, + STATE(5485), 1, + sym_comment, + ACTIONS(6285), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5887), 2, + STATE(3455), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193778] = 9, + [197695] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6205), 1, + ACTIONS(1847), 1, + anon_sym_DASH2, + ACTIONS(8621), 1, + anon_sym_DOT, + STATE(5242), 1, + aux_sym_cell_path_repeat1, + STATE(5393), 1, + sym_path, + STATE(5486), 1, + sym_comment, + STATE(6021), 1, + sym_cell_path, + ACTIONS(1851), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [197723] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1863), 1, + anon_sym_DASH2, + ACTIONS(8621), 1, + anon_sym_DOT, + STATE(4991), 1, + sym_cell_path, + STATE(5242), 1, + aux_sym_cell_path_repeat1, + STATE(5393), 1, + sym_path, + STATE(5487), 1, + sym_comment, + ACTIONS(1865), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [197751] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6197), 1, anon_sym_LPAREN2, - ACTIONS(6211), 1, + ACTIONS(6203), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, + ACTIONS(6205), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8173), 1, + ACTIONS(8095), 1, anon_sym_DOLLAR, - STATE(3602), 1, + STATE(3616), 1, sym__immediate_decimal, - STATE(5458), 1, + STATE(5488), 1, sym_comment, - ACTIONS(6229), 2, + ACTIONS(6285), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3439), 2, + STATE(3429), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193808] = 9, + [197781] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6205), 1, + ACTIONS(1871), 1, + anon_sym_DASH2, + ACTIONS(8621), 1, + anon_sym_DOT, + STATE(4972), 1, + sym_cell_path, + STATE(5242), 1, + aux_sym_cell_path_repeat1, + STATE(5393), 1, + sym_path, + STATE(5489), 1, + sym_comment, + ACTIONS(1873), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [197809] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9061), 1, + anon_sym_DOT, + ACTIONS(9063), 1, + aux_sym__immediate_decimal_token2, + STATE(5490), 1, + sym_comment, + ACTIONS(1573), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1575), 5, + anon_sym_in2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [197833] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3593), 1, + anon_sym_DOLLAR, + ACTIONS(6197), 1, anon_sym_LPAREN2, - ACTIONS(6211), 1, + ACTIONS(6203), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, + ACTIONS(6205), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8173), 1, - anon_sym_DOLLAR, - STATE(3407), 1, - sym__immediate_decimal, - STATE(5459), 1, + STATE(5491), 1, sym_comment, - ACTIONS(6229), 2, + STATE(6811), 1, + sym__immediate_decimal, + ACTIONS(6201), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3405), 2, + STATE(6008), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193838] = 4, + [197863] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(5460), 1, + ACTIONS(9065), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9067), 1, + aux_sym__immediate_decimal_token2, + STATE(5492), 1, sym_comment, - ACTIONS(1621), 2, + ACTIONS(1585), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1623), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1587), 5, + anon_sym_in2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [193858] = 9, + [197887] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(1879), 1, + anon_sym_DASH2, + ACTIONS(8621), 1, + anon_sym_DOT, + STATE(4802), 1, + sym_cell_path, + STATE(5242), 1, + aux_sym_cell_path_repeat1, + STATE(5393), 1, + sym_path, + STATE(5493), 1, + sym_comment, + ACTIONS(1881), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [197915] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1883), 1, + anon_sym_DASH2, + ACTIONS(8621), 1, + anon_sym_DOT, + STATE(4818), 1, + sym_cell_path, + STATE(5242), 1, + aux_sym_cell_path_repeat1, + STATE(5393), 1, + sym_path, + STATE(5494), 1, + sym_comment, + ACTIONS(1885), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [197943] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6195), 1, + anon_sym_DOLLAR, + ACTIONS(6197), 1, anon_sym_LPAREN2, - ACTIONS(6341), 1, + ACTIONS(8423), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6343), 1, + ACTIONS(8425), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6349), 1, - anon_sym_DOLLAR, - STATE(3954), 1, - sym__immediate_decimal, - STATE(5461), 1, + STATE(5495), 1, sym_comment, - ACTIONS(6351), 2, + STATE(6050), 1, + sym__immediate_decimal, + ACTIONS(8421), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3818), 2, + STATE(6221), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193888] = 6, + [197973] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9052), 1, - anon_sym_DOT, - ACTIONS(9054), 1, - aux_sym__immediate_decimal_token2, - STATE(5462), 1, - sym_comment, - ACTIONS(1755), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1757), 5, - sym__newline, - anon_sym_LBRACE, + ACTIONS(6197), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [193912] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5463), 1, - sym_comment, - ACTIONS(1673), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1675), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [193932] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5497), 1, + ACTIONS(6420), 1, anon_sym_DOLLAR, - ACTIONS(5499), 1, - anon_sym_LPAREN2, - ACTIONS(5505), 1, + ACTIONS(8423), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5507), 1, + ACTIONS(8425), 1, aux_sym__immediate_decimal_token5, - STATE(3076), 1, + STATE(3443), 1, sym__immediate_decimal, - STATE(5464), 1, + STATE(5496), 1, sym_comment, - ACTIONS(5503), 2, + ACTIONS(8551), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3118), 2, + STATE(3455), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193962] = 9, + [198003] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6205), 1, + ACTIONS(6197), 1, anon_sym_LPAREN2, - ACTIONS(6211), 1, + ACTIONS(6420), 1, + anon_sym_DOLLAR, + ACTIONS(8423), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, + ACTIONS(8425), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8173), 1, - anon_sym_DOLLAR, - STATE(3588), 1, + STATE(3616), 1, sym__immediate_decimal, - STATE(5465), 1, + STATE(5497), 1, sym_comment, - ACTIONS(6229), 2, + ACTIONS(8551), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3408), 2, + STATE(3429), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193992] = 4, + [198033] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9056), 1, - anon_sym_LT, - STATE(5466), 1, + ACTIONS(8992), 1, + anon_sym_AT, + ACTIONS(9071), 1, + anon_sym_COMMA, + STATE(5498), 1, sym_comment, - ACTIONS(7953), 8, + STATE(5652), 1, + sym_param_cmd, + ACTIONS(9069), 6, sym_raw_string_begin, sym_identifier, - anon_sym_COMMA, anon_sym_GT2, - anon_sym_AT, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [194012] = 9, + [198057] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3621), 1, - anon_sym_DOLLAR, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(6211), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6213), 1, - aux_sym__immediate_decimal_token5, - STATE(5467), 1, + ACTIONS(994), 1, + anon_sym_DASH2, + STATE(5499), 1, sym_comment, - STATE(6737), 1, - sym__immediate_decimal, - ACTIONS(6209), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5970), 2, - sym__expr_parenthesized_immediate, + ACTIONS(996), 7, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_DOT, + [198076] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8647), 1, + sym_identifier, + ACTIONS(9041), 1, + anon_sym_DOLLAR, + ACTIONS(9043), 1, + anon_sym_DASH_DASH, + ACTIONS(9045), 1, + anon_sym_DASH2, + STATE(5398), 1, sym_val_variable, - [194042] = 4, + STATE(5500), 1, + sym_comment, + STATE(6206), 1, + sym__variable_name, + STATE(6816), 2, + sym_short_flag, + sym_long_flag, + [198105] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9060), 1, + ACTIONS(5172), 1, anon_sym_DASH2, - STATE(5468), 1, + STATE(5501), 1, sym_comment, - ACTIONS(9058), 8, - anon_sym_EQ, + ACTIONS(5170), 7, sym__newline, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in2, anon_sym_RBRACE, - [194062] = 9, + anon_sym_as, + [198124] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8139), 1, - anon_sym_LPAREN2, - ACTIONS(8968), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8970), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8984), 1, - anon_sym_DOLLAR, - STATE(5469), 1, + ACTIONS(5176), 1, + anon_sym_DASH2, + STATE(5502), 1, sym_comment, - STATE(6886), 1, - sym__immediate_decimal, - ACTIONS(8341), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6853), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194092] = 4, + ACTIONS(5174), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_as, + [198143] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5470), 1, + ACTIONS(5138), 1, + anon_sym_DASH2, + STATE(5503), 1, + sym_comment, + ACTIONS(5136), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_as, + [198162] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5504), 1, + sym_comment, + ACTIONS(1765), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1767), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [198181] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5505), 1, sym_comment, - ACTIONS(1763), 2, + ACTIONS(1761), 3, + sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1765), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1763), 5, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [194112] = 4, + [198200] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(5471), 1, + ACTIONS(9073), 1, + anon_sym_DQUOTE, + ACTIONS(9077), 1, + aux_sym_path_token1, + ACTIONS(9079), 1, + sym_raw_string_begin, + STATE(1945), 1, + sym_val_string, + STATE(5506), 1, sym_comment, - ACTIONS(1609), 3, - anon_sym_DASH_DASH, + ACTIONS(9075), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1856), 2, + sym__raw_str, + sym__str_double_quotes, + [198227] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5507), 1, + sym_comment, + ACTIONS(996), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1607), 6, - sym_identifier, - anon_sym_DASH2, + sym__entry_separator, + ACTIONS(994), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [194132] = 8, + anon_sym_DOT, + [198246] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5508), 1, + sym_comment, + ACTIONS(1000), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(998), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [198265] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4864), 1, + ACTIONS(9081), 1, + aux_sym__immediate_decimal_token2, + STATE(5509), 1, + sym_comment, + ACTIONS(1785), 2, + anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(9062), 1, + ACTIONS(1787), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [198286] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1006), 1, + anon_sym_DASH2, + STATE(5510), 1, + sym_comment, + ACTIONS(1008), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT, + [198305] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1707), 1, + sym__newline, + ACTIONS(1719), 1, + sym__space, + ACTIONS(4722), 1, anon_sym_DOT_DOT2, - ACTIONS(9066), 1, + ACTIONS(7190), 1, + aux_sym_unquoted_token2, + ACTIONS(9083), 1, sym_filesize_unit, - ACTIONS(9068), 1, + ACTIONS(9085), 1, sym_duration_unit, - STATE(5472), 1, + STATE(5511), 1, sym_comment, - ACTIONS(9064), 2, + ACTIONS(4724), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1721), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [194160] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6335), 1, - anon_sym_LPAREN2, - ACTIONS(6341), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6343), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6349), 1, - anon_sym_DOLLAR, - STATE(3970), 1, - sym__immediate_decimal, - STATE(5473), 1, - sym_comment, - ACTIONS(6351), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3741), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194190] = 5, - ACTIONS(247), 1, + [198334] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8671), 1, + ACTIONS(9002), 1, aux_sym__immediate_decimal_token2, - STATE(5474), 1, + STATE(5512), 1, sym_comment, - ACTIONS(1609), 3, - anon_sym_DOLLAR, + ACTIONS(1765), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1767), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1607), 5, - sym_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [194212] = 4, + sym__entry_separator, + [198355] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5475), 1, + ACTIONS(9087), 1, + aux_sym__immediate_decimal_token2, + STATE(5513), 1, sym_comment, - ACTIONS(1607), 3, + ACTIONS(1785), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1609), 6, + ACTIONS(1787), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [194232] = 4, + [198376] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5476), 1, + ACTIONS(5081), 1, + anon_sym_DASH2, + STATE(5514), 1, + sym_comment, + ACTIONS(5079), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_as, + [198395] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5085), 1, + anon_sym_DASH2, + STATE(5515), 1, sym_comment, - ACTIONS(1623), 3, + ACTIONS(5083), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_as, + [198414] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5516), 1, + sym_comment, + ACTIONS(1575), 3, + anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1621), 6, + ACTIONS(1573), 5, sym_identifier, - anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [194252] = 7, - ACTIONS(3), 1, + [198433] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8689), 1, - anon_sym_DOT, - STATE(5363), 1, - aux_sym_cell_path_repeat1, - STATE(5477), 1, + STATE(5517), 1, sym_comment, - STATE(5631), 1, - sym_path, - ACTIONS(967), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(969), 3, + ACTIONS(1587), 3, + anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [194278] = 5, + ACTIONS(1585), 5, + sym_identifier, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [198452] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8911), 1, - aux_sym__immediate_decimal_token2, - STATE(5478), 1, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + STATE(5518), 1, sym_comment, - ACTIONS(1607), 3, + ACTIONS(2254), 3, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(2256), 4, sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [198473] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5519), 1, + sym_comment, + ACTIONS(1683), 3, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1681), 5, + sym_identifier, anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, aux_sym_unquoted_token2, - ACTIONS(1609), 5, - sym__space, + [198492] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5520), 1, + sym_comment, + ACTIONS(1763), 3, + anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1761), 5, + sym_identifier, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [194300] = 9, + aux_sym_unquoted_token2, + [198511] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6203), 1, - anon_sym_DOLLAR, - ACTIONS(6205), 1, - anon_sym_LPAREN2, - ACTIONS(8299), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8301), 1, - aux_sym__immediate_decimal_token5, - STATE(5479), 1, + ACTIONS(431), 1, + anon_sym_DQUOTE, + ACTIONS(435), 1, + sym_raw_string_begin, + ACTIONS(9089), 1, + aux_sym_path_token1, + STATE(1810), 1, + sym_val_string, + STATE(5521), 1, sym_comment, - STATE(6009), 1, - sym__immediate_decimal, - ACTIONS(8297), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6160), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194330] = 4, + ACTIONS(433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1771), 2, + sym__raw_str, + sym__str_double_quotes, + [198538] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5522), 1, + sym_comment, + ACTIONS(9091), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_AT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [198555] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9072), 1, + ACTIONS(1010), 1, anon_sym_DASH2, - STATE(5480), 1, + STATE(5523), 1, sym_comment, - ACTIONS(9070), 8, - anon_sym_EQ, + ACTIONS(1012), 7, sym__newline, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_in2, anon_sym_RBRACE, - [194350] = 4, + anon_sym_as, + anon_sym_DOT, + [198574] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5481), 1, + ACTIONS(1014), 1, + anon_sym_DASH2, + STATE(5524), 1, sym_comment, - ACTIONS(1675), 3, + ACTIONS(1016), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1673), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [194370] = 6, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT, + [198593] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(971), 1, + ACTIONS(978), 1, anon_sym_DASH2, - ACTIONS(9074), 1, - anon_sym_DOT, - STATE(5625), 1, - sym_path, - STATE(5482), 2, + ACTIONS(9093), 1, + anon_sym_QMARK2, + STATE(5525), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(973), 5, + ACTIONS(980), 6, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [194394] = 4, + anon_sym_DOT, + [198614] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1006), 1, + ACTIONS(9095), 1, + anon_sym_DOT, + ACTIONS(9097), 1, + aux_sym__immediate_decimal_token2, + STATE(5526), 1, + sym_comment, + ACTIONS(1765), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1767), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [198637] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(984), 1, anon_sym_DASH2, - STATE(5483), 1, + ACTIONS(9099), 1, + anon_sym_QMARK2, + STATE(5527), 1, sym_comment, - ACTIONS(1008), 8, - anon_sym_EQ, - sym_identifier, + ACTIONS(986), 6, + ts_builtin_sym_end, sym__newline, - anon_sym_COLON, - anon_sym_DOLLAR, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_as, anon_sym_DOT, - [194414] = 4, + [198658] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5484), 1, + STATE(5528), 1, sym_comment, - ACTIONS(1621), 3, + ACTIONS(1739), 4, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1623), 6, + aux_sym__unquoted_in_list_token2, + ACTIONS(1741), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [194434] = 9, + [198677] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2244), 1, + aux_sym_unquoted_token4, + STATE(5529), 1, + sym_comment, + ACTIONS(2238), 3, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(2242), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [198698] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7188), 1, - anon_sym_LPAREN2, - ACTIONS(7242), 1, - anon_sym_DOLLAR, - ACTIONS(7248), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7250), 1, - aux_sym__immediate_decimal_token5, - STATE(4735), 1, - sym__immediate_decimal, - STATE(5485), 1, + ACTIONS(9101), 1, + anon_sym_DQUOTE, + ACTIONS(9105), 1, + aux_sym_path_token1, + ACTIONS(9107), 1, + sym_raw_string_begin, + STATE(2588), 1, + sym_val_string, + STATE(5530), 1, sym_comment, - ACTIONS(7246), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5067), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194464] = 9, + ACTIONS(9103), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2573), 2, + sym__raw_str, + sym__str_double_quotes, + [198725] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8945), 1, + aux_sym__immediate_decimal_token2, + STATE(5531), 1, + sym_comment, + ACTIONS(1765), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1767), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [198746] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9109), 1, + anon_sym_DQUOTE, + ACTIONS(9113), 1, + aux_sym_path_token1, + ACTIONS(9115), 1, + sym_raw_string_begin, + STATE(1414), 1, + sym_val_string, + STATE(5532), 1, + sym_comment, + ACTIONS(9111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1417), 2, + sym__raw_str, + sym__str_double_quotes, + [198773] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9117), 1, + anon_sym_DQUOTE, + ACTIONS(9121), 1, + aux_sym_path_token1, + ACTIONS(9123), 1, + sym_raw_string_begin, + STATE(5533), 1, + sym_comment, + STATE(6236), 1, + sym_val_string, + ACTIONS(9119), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(6045), 2, + sym__raw_str, + sym__str_double_quotes, + [198800] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7823), 1, + STATE(5534), 1, + sym_comment, + ACTIONS(1004), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1002), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [198819] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5535), 1, + sym_comment, + ACTIONS(2268), 4, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + aux_sym_unquoted_token4, + ACTIONS(2270), 4, sym__newline, - ACTIONS(7825), 1, - sym__space, - ACTIONS(7827), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [198838] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5536), 1, + sym_comment, + ACTIONS(8251), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_AT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [198855] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4001), 1, + anon_sym_DQUOTE, + ACTIONS(4005), 1, + sym_raw_string_begin, + ACTIONS(9089), 1, + aux_sym_path_token1, + STATE(1810), 1, + sym_val_string, + STATE(5537), 1, + sym_comment, + ACTIONS(4003), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4332), 2, + sym__raw_str, + sym__str_double_quotes, + [198882] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8647), 1, + sym_identifier, + ACTIONS(9041), 1, + anon_sym_DOLLAR, + ACTIONS(9043), 1, anon_sym_DASH_DASH, - ACTIONS(7829), 1, + ACTIONS(9045), 1, anon_sym_DASH2, - STATE(5486), 1, + STATE(5398), 1, + sym_val_variable, + STATE(5538), 1, sym_comment, - STATE(5696), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7409), 1, - sym__flag, - STATE(4685), 2, + STATE(6148), 1, + sym__variable_name, + STATE(6274), 2, sym_short_flag, sym_long_flag, - [194493] = 3, + [198911] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5487), 1, + STATE(5539), 1, sym_comment, - ACTIONS(8103), 8, + ACTIONS(992), 8, sym_raw_string_begin, sym_identifier, + anon_sym_COLON, anon_sym_COMMA, anon_sym_GT2, - anon_sym_AT, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [194510] = 8, - ACTIONS(235), 1, - anon_sym_DQUOTE, + [198928] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(249), 1, + ACTIONS(3127), 1, + anon_sym_DQUOTE, + ACTIONS(3133), 1, sym_raw_string_begin, - ACTIONS(9077), 1, + ACTIONS(9125), 1, aux_sym_path_token1, - STATE(1538), 1, + STATE(5540), 1, + sym_comment, + STATE(5572), 1, sym_val_string, - STATE(5488), 1, + ACTIONS(3129), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5625), 2, + sym__raw_str, + sym__str_double_quotes, + [198955] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5541), 1, sym_comment, - ACTIONS(237), 2, + ACTIONS(8065), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_AT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [198972] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5542), 1, + sym_comment, + ACTIONS(1785), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1787), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [198991] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5543), 1, + sym_comment, + ACTIONS(996), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [199008] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9127), 1, + anon_sym_DQUOTE, + ACTIONS(9131), 1, + aux_sym_path_token1, + ACTIONS(9133), 1, + sym_raw_string_begin, + STATE(5544), 1, + sym_comment, + STATE(6228), 1, + sym_val_string, + ACTIONS(9129), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1551), 2, + STATE(6170), 2, sym__raw_str, sym__str_double_quotes, - [194537] = 4, + [199035] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(998), 1, - anon_sym_DASH2, - STATE(5489), 1, + ACTIONS(9135), 1, + sym_long_flag_identifier, + ACTIONS(9137), 1, + anon_sym_EQ2, + STATE(5545), 1, sym_comment, - ACTIONS(1000), 7, + ACTIONS(4970), 2, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(4968), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT, - [194556] = 4, + [199058] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5546), 1, + sym_comment, + ACTIONS(1000), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [199075] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9139), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9141), 1, + aux_sym__immediate_decimal_token2, + STATE(5547), 1, + sym_comment, + ACTIONS(1739), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1741), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [199098] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5490), 1, + STATE(5548), 1, sym_comment, - ACTIONS(1783), 4, + ACTIONS(1841), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1785), 4, + ACTIONS(1843), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [194575] = 5, + [199117] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9081), 1, + ACTIONS(9143), 1, + anon_sym_DQUOTE, + ACTIONS(9147), 1, + aux_sym_path_token1, + ACTIONS(9149), 1, + sym_raw_string_begin, + STATE(1541), 1, + sym_val_string, + STATE(5549), 1, + sym_comment, + ACTIONS(9145), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1673), 2, + sym__raw_str, + sym__str_double_quotes, + [199144] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9153), 1, + anon_sym_DASH2, + STATE(5550), 1, + sym_comment, + ACTIONS(9151), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [199163] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5551), 1, + sym_comment, + ACTIONS(1004), 8, + sym_raw_string_begin, + sym_identifier, anon_sym_COLON, - ACTIONS(9083), 1, anon_sym_COMMA, - STATE(5491), 1, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [199180] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5552), 1, sym_comment, - ACTIONS(9079), 6, + ACTIONS(8019), 8, sym_raw_string_begin, sym_identifier, + anon_sym_COMMA, anon_sym_GT2, + anon_sym_AT, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [194596] = 8, + [199197] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9085), 1, + STATE(5553), 1, + sym_comment, + ACTIONS(8059), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_AT, anon_sym_DQUOTE, - ACTIONS(9089), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [199214] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9155), 1, + anon_sym_DQUOTE, + ACTIONS(9159), 1, aux_sym_path_token1, - ACTIONS(9091), 1, + ACTIONS(9161), 1, sym_raw_string_begin, - STATE(1705), 1, + STATE(1398), 1, sym_val_string, - STATE(5492), 1, + STATE(5554), 1, sym_comment, - ACTIONS(9087), 2, + ACTIONS(9157), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1699), 2, + STATE(1365), 2, sym__raw_str, sym__str_double_quotes, - [194623] = 3, + [199241] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5493), 1, + STATE(5555), 1, sym_comment, - ACTIONS(8107), 8, + ACTIONS(8161), 8, sym_raw_string_begin, sym_identifier, anon_sym_COMMA, @@ -399415,1670 +402523,1076 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [194640] = 5, - ACTIONS(3), 1, + [199258] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9093), 1, - aux_sym__immediate_decimal_token2, - STATE(5494), 1, + STATE(5556), 1, sym_comment, - ACTIONS(1783), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1785), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [194661] = 8, + ACTIONS(8181), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_AT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [199275] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3431), 1, + anon_sym_DQUOTE, + ACTIONS(3441), 1, + sym_raw_string_begin, + ACTIONS(9163), 1, + aux_sym_path_token1, + STATE(3560), 1, + sym_val_string, + STATE(5557), 1, + sym_comment, + ACTIONS(3433), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3562), 2, + sym__raw_str, + sym__str_double_quotes, + [199302] = 8, ACTIONS(235), 1, anon_sym_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(249), 1, sym_raw_string_begin, - ACTIONS(9095), 1, + ACTIONS(9147), 1, aux_sym_path_token1, - STATE(1782), 1, + STATE(1541), 1, sym_val_string, - STATE(5495), 1, + STATE(5558), 1, sym_comment, ACTIONS(237), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1551), 2, + STATE(1544), 2, sym__raw_str, sym__str_double_quotes, - [194688] = 8, + [199329] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9097), 1, + STATE(5559), 1, + sym_comment, + ACTIONS(8157), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_AT, anon_sym_DQUOTE, - ACTIONS(9101), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [199346] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(961), 1, + anon_sym_DOT_DOT2, + ACTIONS(6416), 1, + anon_sym_DOT, + STATE(1615), 1, + sym_path, + STATE(3196), 1, + sym_cell_path, + STATE(3416), 1, + aux_sym_cell_path_repeat1, + STATE(5560), 1, + sym_comment, + ACTIONS(963), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [199373] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9165), 1, + anon_sym_DQUOTE, + ACTIONS(9169), 1, aux_sym_path_token1, - ACTIONS(9103), 1, + ACTIONS(9171), 1, sym_raw_string_begin, - STATE(1393), 1, + STATE(1694), 1, sym_val_string, - STATE(5496), 1, + STATE(5561), 1, sym_comment, - ACTIONS(9099), 2, + ACTIONS(9167), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1403), 2, + STATE(1667), 2, sym__raw_str, sym__str_double_quotes, - [194715] = 4, - ACTIONS(3), 1, + [199400] = 6, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5497), 1, + ACTIONS(8925), 1, + anon_sym_DOT, + STATE(1882), 1, + sym_path, + STATE(5562), 1, sym_comment, - ACTIONS(996), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(994), 5, - anon_sym_RBRACK, + STATE(5563), 1, + aux_sym_cell_path_repeat1, + ACTIONS(969), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [194734] = 4, - ACTIONS(3), 1, + [199423] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5498), 1, + ACTIONS(9173), 1, + anon_sym_DOT, + STATE(1882), 1, + sym_path, + STATE(5563), 2, sym_comment, - ACTIONS(1607), 3, + aux_sym_cell_path_repeat1, + ACTIONS(973), 5, sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + [199444] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9176), 1, + aux_sym__immediate_decimal_token2, + STATE(5564), 1, + sym_comment, + ACTIONS(1785), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1609), 5, - sym__space, + ACTIONS(1787), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [194753] = 8, + [199465] = 8, + ACTIONS(235), 1, + anon_sym_DQUOTE, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9105), 1, + ACTIONS(249), 1, + sym_raw_string_begin, + ACTIONS(9178), 1, + aux_sym_path_token1, + STATE(1795), 1, + sym_val_string, + STATE(5565), 1, + sym_comment, + ACTIONS(237), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1544), 2, + sym__raw_str, + sym__str_double_quotes, + [199492] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9180), 1, anon_sym_DQUOTE, - ACTIONS(9109), 1, + ACTIONS(9184), 1, aux_sym_path_token1, - ACTIONS(9111), 1, + ACTIONS(9186), 1, sym_raw_string_begin, - STATE(1872), 1, + STATE(1405), 1, sym_val_string, - STATE(5499), 1, + STATE(5566), 1, sym_comment, - ACTIONS(9107), 2, + ACTIONS(9182), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1431), 2, + STATE(1381), 2, sym__raw_str, sym__str_double_quotes, - [194780] = 7, + [199519] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8960), 1, - anon_sym_DOT, - STATE(1657), 1, - sym_cell_path, - STATE(1894), 1, - sym_path, - STATE(5500), 1, + ACTIONS(9077), 1, + aux_sym_path_token1, + ACTIONS(9109), 1, + anon_sym_DQUOTE, + ACTIONS(9115), 1, + sym_raw_string_begin, + STATE(1945), 1, + sym_val_string, + STATE(5567), 1, sym_comment, - STATE(5608), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1771), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [194805] = 8, + ACTIONS(9111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1417), 2, + sym__raw_str, + sym__str_double_quotes, + [199546] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2062), 1, + ACTIONS(2116), 1, sym_raw_string_begin, - ACTIONS(4329), 1, + ACTIONS(4529), 1, anon_sym_DQUOTE, - ACTIONS(9113), 1, + ACTIONS(9188), 1, aux_sym_path_token1, - STATE(4586), 1, + STATE(4580), 1, sym_val_string, - STATE(5501), 1, + STATE(5568), 1, sym_comment, - ACTIONS(4331), 2, + ACTIONS(4531), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4517), 2, + STATE(4528), 2, sym__raw_str, sym__str_double_quotes, - [194832] = 4, + [199573] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5502), 1, + ACTIONS(5099), 1, + anon_sym_DASH2, + STATE(5569), 1, sym_comment, - ACTIONS(1623), 3, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1621), 5, - sym_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [194851] = 8, + ACTIONS(5097), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_as, + [199592] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9115), 1, + ACTIONS(9190), 1, anon_sym_DQUOTE, - ACTIONS(9119), 1, + ACTIONS(9194), 1, aux_sym_path_token1, - ACTIONS(9121), 1, + ACTIONS(9196), 1, sym_raw_string_begin, - STATE(2523), 1, + STATE(2516), 1, sym_val_string, - STATE(5503), 1, + STATE(5570), 1, sym_comment, - ACTIONS(9117), 2, + ACTIONS(9192), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2505), 2, + STATE(2524), 2, sym__raw_str, sym__str_double_quotes, - [194878] = 4, - ACTIONS(247), 1, + [199619] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1006), 1, - anon_sym_DASH2, - STATE(5504), 1, + ACTIONS(9198), 1, + anon_sym_QMARK2, + STATE(5571), 1, sym_comment, - ACTIONS(1008), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + ACTIONS(980), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(978), 4, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_as, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [199640] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9200), 1, + anon_sym_QMARK2, + STATE(5572), 1, + sym_comment, + ACTIONS(986), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(984), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, anon_sym_DOT, - [194897] = 8, + [199661] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9077), 1, + ACTIONS(9147), 1, aux_sym_path_token1, - ACTIONS(9123), 1, + ACTIONS(9155), 1, anon_sym_DQUOTE, - ACTIONS(9127), 1, + ACTIONS(9161), 1, sym_raw_string_begin, - STATE(1538), 1, + STATE(1541), 1, sym_val_string, - STATE(5505), 1, + STATE(5573), 1, sym_comment, - ACTIONS(9125), 2, + ACTIONS(9157), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1344), 2, + STATE(1365), 2, sym__raw_str, sym__str_double_quotes, - [194924] = 8, + [199688] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1860), 1, + ACTIONS(2010), 1, sym_raw_string_begin, - ACTIONS(4367), 1, + ACTIONS(4149), 1, anon_sym_DQUOTE, - ACTIONS(9129), 1, + ACTIONS(9202), 1, aux_sym_path_token1, - STATE(4316), 1, + STATE(4386), 1, sym_val_string, - STATE(5506), 1, + STATE(5574), 1, sym_comment, - ACTIONS(4369), 2, + ACTIONS(4151), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4465), 2, + STATE(4371), 2, sym__raw_str, sym__str_double_quotes, - [194951] = 8, + [199715] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9131), 1, + ACTIONS(9204), 1, anon_sym_DQUOTE, - ACTIONS(9135), 1, + ACTIONS(9208), 1, aux_sym_path_token1, - ACTIONS(9137), 1, + ACTIONS(9210), 1, sym_raw_string_begin, - STATE(1490), 1, + STATE(1469), 1, sym_val_string, - STATE(5507), 1, + STATE(5575), 1, sym_comment, - ACTIONS(9133), 2, + ACTIONS(9206), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1494), 2, + STATE(1477), 2, sym__raw_str, sym__str_double_quotes, - [194978] = 8, + [199742] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9139), 1, + ACTIONS(9212), 1, anon_sym_DQUOTE, - ACTIONS(9143), 1, + ACTIONS(9216), 1, aux_sym_path_token1, - ACTIONS(9145), 1, + ACTIONS(9218), 1, sym_raw_string_begin, - STATE(1626), 1, + STATE(1590), 1, sym_val_string, - STATE(5508), 1, + STATE(5576), 1, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9214), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1597), 2, + STATE(1619), 2, sym__raw_str, sym__str_double_quotes, - [195005] = 8, + [199769] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9147), 1, + ACTIONS(9220), 1, anon_sym_DQUOTE, - ACTIONS(9151), 1, + ACTIONS(9224), 1, aux_sym_path_token1, - ACTIONS(9153), 1, + ACTIONS(9226), 1, sym_raw_string_begin, - STATE(4200), 1, + STATE(4160), 1, sym_val_string, - STATE(5509), 1, + STATE(5577), 1, sym_comment, - ACTIONS(9149), 2, + ACTIONS(9222), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4148), 2, + STATE(4187), 2, sym__raw_str, sym__str_double_quotes, - [195032] = 8, + [199796] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9155), 1, + ACTIONS(9228), 1, anon_sym_DQUOTE, - ACTIONS(9159), 1, + ACTIONS(9232), 1, aux_sym_path_token1, - ACTIONS(9161), 1, + ACTIONS(9234), 1, sym_raw_string_begin, - STATE(2798), 1, + STATE(2816), 1, sym_val_string, - STATE(5510), 1, + STATE(5578), 1, sym_comment, - ACTIONS(9157), 2, + ACTIONS(9230), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2802), 2, + STATE(2830), 2, sym__raw_str, sym__str_double_quotes, - [195059] = 8, + [199823] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9163), 1, + ACTIONS(9236), 1, anon_sym_DQUOTE, - ACTIONS(9167), 1, + ACTIONS(9240), 1, aux_sym_path_token1, - ACTIONS(9169), 1, + ACTIONS(9242), 1, sym_raw_string_begin, - STATE(4104), 1, + STATE(4135), 1, sym_val_string, - STATE(5511), 1, + STATE(5579), 1, sym_comment, - ACTIONS(9165), 2, + ACTIONS(9238), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4119), 2, + STATE(4139), 2, sym__raw_str, sym__str_double_quotes, - [195086] = 8, + [199850] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4543), 1, + ACTIONS(4403), 1, anon_sym_DQUOTE, - ACTIONS(4547), 1, + ACTIONS(4407), 1, sym_raw_string_begin, - ACTIONS(9171), 1, + ACTIONS(9244), 1, aux_sym_path_token1, - STATE(3483), 1, + STATE(3526), 1, sym_val_string, - STATE(5512), 1, + STATE(5580), 1, sym_comment, - ACTIONS(4545), 2, + ACTIONS(4405), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3335), 2, + STATE(3343), 2, sym__raw_str, sym__str_double_quotes, - [195113] = 8, + [199877] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9173), 1, + ACTIONS(9246), 1, anon_sym_DQUOTE, - ACTIONS(9177), 1, + ACTIONS(9250), 1, aux_sym_path_token1, - ACTIONS(9179), 1, + ACTIONS(9252), 1, sym_raw_string_begin, - STATE(1414), 1, + STATE(1438), 1, sym_val_string, - STATE(5513), 1, + STATE(5581), 1, sym_comment, - ACTIONS(9175), 2, + ACTIONS(9248), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1430), 2, + STATE(1447), 2, sym__raw_str, sym__str_double_quotes, - [195140] = 8, + [199904] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9181), 1, + ACTIONS(9254), 1, anon_sym_DQUOTE, - ACTIONS(9185), 1, + ACTIONS(9258), 1, aux_sym_path_token1, - ACTIONS(9187), 1, + ACTIONS(9260), 1, sym_raw_string_begin, - STATE(2744), 1, + STATE(2779), 1, sym_val_string, - STATE(5514), 1, + STATE(5582), 1, sym_comment, - ACTIONS(9183), 2, + ACTIONS(9256), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2745), 2, + STATE(2791), 2, sym__raw_str, sym__str_double_quotes, - [195167] = 8, + [199931] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9189), 1, + ACTIONS(9262), 1, anon_sym_DQUOTE, - ACTIONS(9193), 1, + ACTIONS(9266), 1, aux_sym_path_token1, - ACTIONS(9195), 1, + ACTIONS(9268), 1, sym_raw_string_begin, - STATE(2987), 1, + STATE(2982), 1, sym_val_string, - STATE(5515), 1, + STATE(5583), 1, sym_comment, - ACTIONS(9191), 2, + ACTIONS(9264), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2990), 2, + STATE(3014), 2, sym__raw_str, sym__str_double_quotes, - [195194] = 8, + [199958] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9197), 1, + ACTIONS(9270), 1, anon_sym_DQUOTE, - ACTIONS(9201), 1, + ACTIONS(9274), 1, aux_sym_path_token1, - ACTIONS(9203), 1, + ACTIONS(9276), 1, sym_raw_string_begin, - STATE(492), 1, + STATE(486), 1, sym_val_string, - STATE(5516), 1, + STATE(5584), 1, sym_comment, - ACTIONS(9199), 2, + ACTIONS(9272), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(498), 2, + STATE(489), 2, sym__raw_str, sym__str_double_quotes, - [195221] = 8, + [199985] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9205), 1, + ACTIONS(9278), 1, anon_sym_DQUOTE, - ACTIONS(9209), 1, + ACTIONS(9282), 1, aux_sym_path_token1, - ACTIONS(9211), 1, + ACTIONS(9284), 1, sym_raw_string_begin, - STATE(576), 1, + STATE(568), 1, sym_val_string, - STATE(5517), 1, + STATE(5585), 1, sym_comment, - ACTIONS(9207), 2, + ACTIONS(9280), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(605), 2, + STATE(583), 2, sym__raw_str, sym__str_double_quotes, - [195248] = 8, + [200012] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3603), 1, + ACTIONS(3657), 1, anon_sym_DQUOTE, - ACTIONS(3613), 1, + ACTIONS(3667), 1, sym_raw_string_begin, - ACTIONS(9213), 1, + ACTIONS(9286), 1, aux_sym_path_token1, - STATE(4776), 1, + STATE(4709), 1, sym_val_string, - STATE(5518), 1, + STATE(5586), 1, sym_comment, - ACTIONS(3605), 2, + ACTIONS(3659), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4722), 2, + STATE(4721), 2, sym__raw_str, sym__str_double_quotes, - [195275] = 8, + [200039] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9215), 1, + ACTIONS(9288), 1, anon_sym_DQUOTE, - ACTIONS(9219), 1, + ACTIONS(9292), 1, aux_sym_path_token1, - ACTIONS(9221), 1, + ACTIONS(9294), 1, sym_raw_string_begin, - STATE(4249), 1, + STATE(4295), 1, sym_val_string, - STATE(5519), 1, + STATE(5587), 1, sym_comment, - ACTIONS(9217), 2, + ACTIONS(9290), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4238), 2, + STATE(4315), 2, sym__raw_str, sym__str_double_quotes, - [195302] = 8, + [200066] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4425), 1, + ACTIONS(4241), 1, anon_sym_DQUOTE, - ACTIONS(4435), 1, + ACTIONS(4251), 1, sym_raw_string_begin, - ACTIONS(9223), 1, + ACTIONS(9296), 1, aux_sym_path_token1, - STATE(3583), 1, + STATE(3595), 1, sym_val_string, - STATE(5520), 1, + STATE(5588), 1, sym_comment, - ACTIONS(4427), 2, + ACTIONS(4243), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3586), 2, + STATE(3573), 2, sym__raw_str, sym__str_double_quotes, - [195329] = 8, + [200093] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9225), 1, + ACTIONS(9298), 1, anon_sym_DQUOTE, - ACTIONS(9229), 1, + ACTIONS(9302), 1, aux_sym_path_token1, - ACTIONS(9231), 1, + ACTIONS(9304), 1, sym_raw_string_begin, - STATE(2652), 1, + STATE(2692), 1, sym_val_string, - STATE(5521), 1, + STATE(5589), 1, sym_comment, - ACTIONS(9227), 2, + ACTIONS(9300), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2660), 2, + STATE(2695), 2, sym__raw_str, sym__str_double_quotes, - [195356] = 8, + [200120] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9233), 1, + ACTIONS(9306), 1, anon_sym_DQUOTE, - ACTIONS(9237), 1, + ACTIONS(9310), 1, aux_sym_path_token1, - ACTIONS(9239), 1, + ACTIONS(9312), 1, sym_raw_string_begin, - STATE(2865), 1, + STATE(2924), 1, sym_val_string, - STATE(5522), 1, + STATE(5590), 1, sym_comment, - ACTIONS(9235), 2, + ACTIONS(9308), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2877), 2, + STATE(2905), 2, sym__raw_str, sym__str_double_quotes, - [195383] = 8, + [200147] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4495), 1, + ACTIONS(4109), 1, anon_sym_DQUOTE, - ACTIONS(4505), 1, + ACTIONS(4119), 1, sym_raw_string_begin, - ACTIONS(9241), 1, + ACTIONS(9314), 1, aux_sym_path_token1, - STATE(5523), 1, - sym_comment, - STATE(5595), 1, + STATE(5527), 1, sym_val_string, - ACTIONS(4497), 2, + STATE(5591), 1, + sym_comment, + ACTIONS(4111), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5530), 2, + STATE(5616), 2, sym__raw_str, sym__str_double_quotes, - [195410] = 8, + [200174] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9243), 1, + ACTIONS(9316), 1, anon_sym_DQUOTE, - ACTIONS(9247), 1, + ACTIONS(9320), 1, aux_sym_path_token1, - ACTIONS(9249), 1, + ACTIONS(9322), 1, sym_raw_string_begin, - STATE(5447), 1, + STATE(5423), 1, sym_val_string, - STATE(5524), 1, + STATE(5592), 1, sym_comment, - ACTIONS(9245), 2, + ACTIONS(9318), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5358), 2, + STATE(5377), 2, sym__raw_str, sym__str_double_quotes, - [195437] = 8, + [200201] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9251), 1, + ACTIONS(9324), 1, anon_sym_DQUOTE, - ACTIONS(9255), 1, + ACTIONS(9328), 1, aux_sym_path_token1, - ACTIONS(9257), 1, + ACTIONS(9330), 1, sym_raw_string_begin, STATE(156), 1, sym_val_string, - STATE(5525), 1, + STATE(5593), 1, sym_comment, - ACTIONS(9253), 2, + ACTIONS(9326), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(158), 2, + STATE(157), 2, sym__raw_str, sym__str_double_quotes, - [195464] = 8, + [200228] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9259), 1, + ACTIONS(9332), 1, anon_sym_DQUOTE, - ACTIONS(9263), 1, + ACTIONS(9336), 1, aux_sym_path_token1, - ACTIONS(9265), 1, + ACTIONS(9338), 1, sym_raw_string_begin, - STATE(535), 1, + STATE(546), 1, sym_val_string, - STATE(5526), 1, + STATE(5594), 1, sym_comment, - ACTIONS(9261), 2, + ACTIONS(9334), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(564), 2, + STATE(549), 2, sym__raw_str, sym__str_double_quotes, - [195491] = 8, + [200255] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9267), 1, + ACTIONS(9340), 1, anon_sym_DQUOTE, - ACTIONS(9271), 1, + ACTIONS(9344), 1, aux_sym_path_token1, - ACTIONS(9273), 1, + ACTIONS(9346), 1, sym_raw_string_begin, - STATE(416), 1, + STATE(437), 1, sym_val_string, - STATE(5527), 1, + STATE(5595), 1, sym_comment, - ACTIONS(9269), 2, + ACTIONS(9342), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(432), 2, + STATE(424), 2, sym__raw_str, sym__str_double_quotes, - [195518] = 8, + [200282] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9275), 1, + ACTIONS(9348), 1, anon_sym_DQUOTE, - ACTIONS(9279), 1, + ACTIONS(9352), 1, aux_sym_path_token1, - ACTIONS(9281), 1, + ACTIONS(9354), 1, sym_raw_string_begin, - STATE(392), 1, + STATE(397), 1, sym_val_string, - STATE(5528), 1, + STATE(5596), 1, sym_comment, - ACTIONS(9277), 2, + ACTIONS(9350), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(396), 2, + STATE(386), 2, sym__raw_str, sym__str_double_quotes, - [195545] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5529), 1, - sym_comment, - ACTIONS(1607), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1609), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [195564] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(994), 1, - anon_sym_DASH2, - STATE(5530), 1, - sym_comment, - ACTIONS(996), 7, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT, - [195583] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(5531), 1, - sym_comment, - ACTIONS(1030), 3, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - ACTIONS(1032), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [195604] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2212), 1, - aux_sym_unquoted_token4, - STATE(5532), 1, - sym_comment, - ACTIONS(2206), 3, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - ACTIONS(2210), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [195625] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5098), 1, - anon_sym_DASH2, - STATE(5533), 1, - sym_comment, - ACTIONS(5096), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_as, - [195644] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5534), 1, - sym_comment, - ACTIONS(1621), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1623), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [195663] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9050), 1, - aux_sym__immediate_decimal_token2, - STATE(5535), 1, - sym_comment, - ACTIONS(1755), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1757), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [195684] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9283), 1, - anon_sym_QMARK2, - STATE(5536), 1, - sym_comment, - ACTIONS(980), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(978), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [195705] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9285), 1, - aux_sym__immediate_decimal_token2, - STATE(5537), 1, - sym_comment, - ACTIONS(1673), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1675), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [195726] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5538), 1, - sym_comment, - ACTIONS(1755), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1757), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [195745] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9105), 1, + [200309] = 8, + ACTIONS(109), 1, anon_sym_DQUOTE, - ACTIONS(9111), 1, + ACTIONS(121), 1, sym_raw_string_begin, - ACTIONS(9287), 1, - aux_sym_path_token1, - STATE(1439), 1, - sym_val_string, - STATE(5539), 1, - sym_comment, - ACTIONS(9107), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1431), 2, - sym__raw_str, - sym__str_double_quotes, - [195772] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9289), 1, - anon_sym_DQUOTE, - ACTIONS(9293), 1, + ACTIONS(9356), 1, aux_sym_path_token1, - ACTIONS(9295), 1, - sym_raw_string_begin, - STATE(5540), 1, - sym_comment, - STATE(6008), 1, + STATE(2101), 1, sym_val_string, - ACTIONS(9291), 2, + STATE(5597), 1, + sym_comment, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6046), 2, + STATE(2093), 2, sym__raw_str, sym__str_double_quotes, - [195799] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - STATE(5541), 1, - sym_comment, - ACTIONS(2214), 3, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - ACTIONS(2218), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [195820] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5102), 1, - anon_sym_DASH2, - STATE(5542), 1, - sym_comment, - ACTIONS(5100), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_as, - [195839] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - STATE(5543), 1, - sym_comment, - ACTIONS(2222), 3, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - ACTIONS(2224), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [195860] = 5, + [200336] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9297), 1, + ACTIONS(9055), 1, aux_sym__immediate_decimal_token2, - STATE(5544), 1, + STATE(5598), 1, sym_comment, - ACTIONS(1783), 2, + ACTIONS(1765), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1785), 5, + ACTIONS(1767), 5, sym__newline, anon_sym_LBRACE, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [195881] = 4, + [200357] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5599), 1, + sym_comment, + ACTIONS(1573), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1575), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [200376] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5545), 1, + STATE(5600), 1, sym_comment, - ACTIONS(1673), 3, + ACTIONS(1573), 3, sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1675), 5, + ACTIONS(1575), 5, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [195900] = 6, + [200395] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9299), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9301), 1, + ACTIONS(8887), 1, aux_sym__immediate_decimal_token2, - STATE(5546), 1, + STATE(5601), 1, sym_comment, - ACTIONS(1739), 2, + ACTIONS(1573), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1741), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1575), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [195923] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5130), 1, - anon_sym_DASH2, - STATE(5547), 1, - sym_comment, - ACTIONS(5128), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_as, - [195942] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1709), 1, - anon_sym_DASH2, - ACTIONS(6458), 1, - aux_sym_unquoted_token2, - STATE(5548), 1, - sym_comment, - ACTIONS(1721), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [195963] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1002), 1, - anon_sym_DASH2, - STATE(5549), 1, - sym_comment, - ACTIONS(1004), 7, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT, - [195982] = 9, + sym_filesize_unit, + sym_duration_unit, + [200416] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1709), 1, + ACTIONS(1707), 1, sym_identifier, - ACTIONS(1721), 1, + ACTIONS(1719), 1, anon_sym_DOLLAR, - ACTIONS(4708), 1, + ACTIONS(4722), 1, anon_sym_DOT_DOT2, - ACTIONS(8677), 1, + ACTIONS(8635), 1, aux_sym_unquoted_token2, - ACTIONS(9303), 1, + ACTIONS(9358), 1, sym_filesize_unit, - ACTIONS(9305), 1, + ACTIONS(9360), 1, sym_duration_unit, - STATE(5550), 1, - sym_comment, - ACTIONS(4710), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [196011] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5551), 1, + STATE(5602), 1, sym_comment, - ACTIONS(1673), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1675), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(4724), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [196030] = 4, + [200445] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1010), 1, + ACTIONS(5121), 1, anon_sym_DASH2, - STATE(5552), 1, + STATE(5603), 1, sym_comment, - ACTIONS(1012), 7, + ACTIONS(5119), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_RBRACE, anon_sym_as, + [200464] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(961), 1, + anon_sym_DASH2, + ACTIONS(8621), 1, anon_sym_DOT, - [196049] = 8, + STATE(4622), 1, + sym_cell_path, + STATE(5242), 1, + aux_sym_cell_path_repeat1, + STATE(5393), 1, + sym_path, + STATE(5604), 1, + sym_comment, + ACTIONS(963), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [200491] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4864), 1, + ACTIONS(4866), 1, aux_sym_unquoted_token2, - ACTIONS(9307), 1, + ACTIONS(9362), 1, anon_sym_DOT_DOT2, - ACTIONS(9311), 1, + ACTIONS(9366), 1, sym_filesize_unit, - ACTIONS(9313), 1, + ACTIONS(9368), 1, sym_duration_unit, - STATE(5553), 1, + STATE(5605), 1, sym_comment, - ACTIONS(1721), 2, + ACTIONS(1719), 2, anon_sym_PIPE, anon_sym_EQ_GT, - ACTIONS(9309), 2, + ACTIONS(9364), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [196076] = 8, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(121), 1, - sym_raw_string_begin, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9315), 1, - aux_sym_path_token1, - STATE(2094), 1, - sym_val_string, - STATE(5554), 1, - sym_comment, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2091), 2, - sym__raw_str, - sym__str_double_quotes, - [196103] = 4, + [200518] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1014), 1, + ACTIONS(4998), 1, anon_sym_DASH2, - STATE(5555), 1, + ACTIONS(9370), 1, + anon_sym_EQ2, + STATE(5606), 1, sym_comment, - ACTIONS(1016), 7, + ACTIONS(4996), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - anon_sym_DOT, - [196122] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5556), 1, - sym_comment, - ACTIONS(996), 8, - sym_raw_string_begin, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [196139] = 5, + [200539] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5053), 1, + ACTIONS(5058), 1, anon_sym_DASH2, - ACTIONS(9317), 1, + ACTIONS(9372), 1, anon_sym_EQ2, - STATE(5557), 1, + STATE(5607), 1, sym_comment, - ACTIONS(5051), 6, + ACTIONS(5056), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [196160] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9002), 1, - aux_sym__immediate_decimal_token2, - STATE(5558), 1, - sym_comment, - ACTIONS(1607), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1609), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [196181] = 5, + [200560] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8942), 1, - aux_sym__immediate_decimal_token2, - STATE(5559), 1, + STATE(5608), 1, sym_comment, - ACTIONS(1755), 2, + ACTIONS(1585), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1757), 5, + ACTIONS(1587), 6, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [196202] = 6, - ACTIONS(247), 1, + sym_filesize_unit, + sym_duration_unit, + [200579] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9319), 1, - anon_sym_DOT, - ACTIONS(9321), 1, - aux_sym__immediate_decimal_token2, - STATE(5560), 1, + STATE(5609), 1, sym_comment, - ACTIONS(1755), 2, + ACTIONS(1585), 3, + sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1757), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1587), 5, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [196225] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9323), 1, - anon_sym_DASH_DASH, - ACTIONS(9326), 1, - anon_sym_DASH2, - STATE(6126), 1, - sym__flag, - ACTIONS(8567), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - STATE(5561), 2, - sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(6104), 2, - sym_short_flag, - sym_long_flag, - [196250] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3127), 1, - anon_sym_DQUOTE, - ACTIONS(3133), 1, - sym_raw_string_begin, - ACTIONS(9329), 1, - aux_sym_path_token1, - STATE(5562), 1, - sym_comment, - STATE(5568), 1, - sym_val_string, - ACTIONS(3129), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5497), 2, - sym__raw_str, - sym__str_double_quotes, - [196277] = 5, + sym_filesize_unit, + sym_duration_unit, + [200598] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5016), 1, + ACTIONS(1707), 1, anon_sym_DASH2, - ACTIONS(9331), 1, - anon_sym_EQ2, - STATE(5563), 1, + ACTIONS(6450), 1, + aux_sym_unquoted_token2, + STATE(5610), 1, sym_comment, - ACTIONS(5014), 6, + ACTIONS(1719), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [196298] = 3, + [200619] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(5564), 1, + ACTIONS(8925), 1, + anon_sym_DOT, + STATE(1652), 1, + sym_cell_path, + STATE(1882), 1, + sym_path, + STATE(5562), 1, + aux_sym_cell_path_repeat1, + STATE(5611), 1, sym_comment, - ACTIONS(8111), 8, - sym_raw_string_begin, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_AT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [196315] = 4, + ACTIONS(1749), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [200644] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5565), 1, + STATE(5612), 1, sym_comment, - ACTIONS(1765), 3, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1763), 5, - sym_identifier, + ACTIONS(1681), 2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, aux_sym_unquoted_token2, - [196334] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4009), 1, - anon_sym_DQUOTE, - ACTIONS(4013), 1, - sym_raw_string_begin, - ACTIONS(9333), 1, - aux_sym_path_token1, - STATE(5251), 1, - sym_val_string, - STATE(5566), 1, - sym_comment, - ACTIONS(4011), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4492), 2, - sym__raw_str, - sym__str_double_quotes, - [196361] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9337), 1, - anon_sym_DASH2, - STATE(5567), 1, - sym_comment, - ACTIONS(9335), 7, - sym_identifier, + ACTIONS(1683), 6, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [196380] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9339), 1, - anon_sym_QMARK2, - STATE(5568), 1, - sym_comment, - ACTIONS(986), 3, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(984), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [196401] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1709), 1, - sym__newline, - ACTIONS(1721), 1, - sym__space, - ACTIONS(4708), 1, - anon_sym_DOT_DOT2, - ACTIONS(7157), 1, - aux_sym_unquoted_token2, - ACTIONS(9341), 1, sym_filesize_unit, - ACTIONS(9343), 1, sym_duration_unit, - STATE(5569), 1, - sym_comment, - ACTIONS(4710), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [196430] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5168), 1, - anon_sym_DASH2, - STATE(5570), 1, - sym_comment, - ACTIONS(5166), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_as, - [196449] = 3, + [200663] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(5571), 1, - sym_comment, - ACTIONS(1000), 8, - sym_raw_string_begin, - sym_identifier, + ACTIONS(9376), 1, anon_sym_COLON, + ACTIONS(9378), 1, anon_sym_COMMA, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [196466] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5572), 1, + STATE(5613), 1, sym_comment, - ACTIONS(1004), 8, + ACTIONS(9374), 6, sym_raw_string_begin, sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, anon_sym_GT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [196483] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5573), 1, - sym_comment, - ACTIONS(1739), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1741), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [196502] = 3, + [200684] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(5574), 1, - sym_comment, - ACTIONS(9345), 8, - sym_raw_string_begin, - sym_identifier, + ACTIONS(9382), 1, + anon_sym_COLON, + ACTIONS(9384), 1, anon_sym_COMMA, - anon_sym_GT2, - anon_sym_AT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [196519] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9347), 1, - anon_sym_DQUOTE, - ACTIONS(9351), 1, - aux_sym_path_token1, - ACTIONS(9353), 1, - sym_raw_string_begin, - STATE(5575), 1, - sym_comment, - STATE(6092), 1, - sym_val_string, - ACTIONS(9349), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(6067), 2, - sym__raw_str, - sym__str_double_quotes, - [196546] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(978), 1, - anon_sym_DASH2, - ACTIONS(9355), 1, - anon_sym_QMARK2, - STATE(5576), 1, - sym_comment, - ACTIONS(980), 6, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT, - [196567] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5577), 1, + STATE(5614), 1, sym_comment, - ACTIONS(8093), 8, + ACTIONS(9380), 6, sym_raw_string_begin, sym_identifier, - anon_sym_COMMA, anon_sym_GT2, - anon_sym_AT, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [196584] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5578), 1, - sym_comment, - ACTIONS(992), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(990), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [196603] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5579), 1, - sym_comment, - ACTIONS(2248), 4, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - aux_sym_unquoted_token4, - ACTIONS(2250), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [196622] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5580), 1, - sym_comment, - ACTIONS(1675), 3, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1673), 5, - sym_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [196641] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5581), 1, - sym_comment, - ACTIONS(1763), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1765), 5, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [196660] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8917), 1, - aux_sym__immediate_decimal_token2, - STATE(5582), 1, - sym_comment, - ACTIONS(1607), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1609), 5, - anon_sym_in2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [196681] = 5, + [200705] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9357), 1, + ACTIONS(9063), 1, aux_sym__immediate_decimal_token2, - STATE(5583), 1, + STATE(5615), 1, sym_comment, - ACTIONS(1673), 2, + ACTIONS(1573), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1675), 5, + ACTIONS(1575), 5, anon_sym_in2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [196702] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5584), 1, - sym_comment, - ACTIONS(992), 8, - sym_raw_string_begin, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [196719] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9109), 1, - aux_sym_path_token1, - ACTIONS(9359), 1, - anon_sym_DQUOTE, - ACTIONS(9363), 1, - sym_raw_string_begin, - STATE(1872), 1, - sym_val_string, - STATE(5585), 1, - sym_comment, - ACTIONS(9361), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1877), 2, - sym__raw_str, - sym__str_double_quotes, - [196746] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5586), 1, - sym_comment, - ACTIONS(1000), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(998), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [196765] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5587), 1, - sym_comment, - ACTIONS(1621), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1623), 5, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [196784] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9077), 1, - aux_sym_path_token1, - ACTIONS(9365), 1, - anon_sym_DQUOTE, - ACTIONS(9369), 1, - sym_raw_string_begin, - STATE(1538), 1, - sym_val_string, - STATE(5588), 1, - sym_comment, - ACTIONS(9367), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1730), 2, - sym__raw_str, - sym__str_double_quotes, - [196811] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5172), 1, - anon_sym_DASH2, - STATE(5589), 1, - sym_comment, - ACTIONS(5170), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_as, - [196830] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9371), 1, - aux_sym__immediate_decimal_token2, - STATE(5590), 1, - sym_comment, - ACTIONS(1783), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1785), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [196851] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(431), 1, - anon_sym_DQUOTE, - ACTIONS(435), 1, - sym_raw_string_begin, - ACTIONS(9373), 1, - aux_sym_path_token1, - STATE(1819), 1, - sym_val_string, - STATE(5591), 1, - sym_comment, - ACTIONS(433), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1821), 2, - sym__raw_str, - sym__str_double_quotes, - [196878] = 4, + [200726] = 4, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(990), 1, anon_sym_DASH2, - STATE(5592), 1, + STATE(5616), 1, sym_comment, ACTIONS(992), 7, ts_builtin_sym_end, @@ -401088,332 +403602,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_QMARK2, anon_sym_DOT, - [196897] = 4, - ACTIONS(247), 1, + [200745] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5164), 1, - anon_sym_DASH2, - STATE(5593), 1, + ACTIONS(2228), 1, + aux_sym_unquoted_token4, + STATE(5617), 1, sym_comment, - ACTIONS(5162), 7, + ACTIONS(1026), 3, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(1028), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, anon_sym_RBRACE, - anon_sym_as, - [196916] = 8, - ACTIONS(247), 1, + [200766] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DASH2, - ACTIONS(8607), 1, - anon_sym_DOT, - STATE(4572), 1, - sym_cell_path, - STATE(5196), 1, - aux_sym_cell_path_repeat1, - STATE(5483), 1, - sym_path, - STATE(5594), 1, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + STATE(5618), 1, sym_comment, - ACTIONS(963), 3, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(2246), 3, anon_sym_DASH_DASH, - [196943] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(984), 1, anon_sym_DASH2, - ACTIONS(9375), 1, - anon_sym_QMARK2, - STATE(5595), 1, - sym_comment, - ACTIONS(986), 6, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, anon_sym_as, - anon_sym_DOT, - [196964] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9377), 1, - anon_sym_DQUOTE, - ACTIONS(9381), 1, - aux_sym_path_token1, - ACTIONS(9383), 1, - sym_raw_string_begin, - STATE(2568), 1, - sym_val_string, - STATE(5596), 1, - sym_comment, - ACTIONS(9379), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2573), 2, - sym__raw_str, - sym__str_double_quotes, - [196991] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5597), 1, - sym_comment, - ACTIONS(8099), 8, - sym_raw_string_begin, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_AT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [197008] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5598), 1, - sym_comment, - ACTIONS(1763), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1765), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [197027] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5599), 1, - sym_comment, - ACTIONS(1609), 3, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1607), 5, - sym_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [197046] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9054), 1, - aux_sym__immediate_decimal_token2, - STATE(5600), 1, - sym_comment, - ACTIONS(1755), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1757), 5, + ACTIONS(2250), 4, sym__newline, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [197067] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5601), 1, - sym_comment, - ACTIONS(1004), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1002), 5, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [197086] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4009), 1, - anon_sym_DQUOTE, - ACTIONS(4013), 1, - sym_raw_string_begin, - ACTIONS(9373), 1, - aux_sym_path_token1, - STATE(1819), 1, - sym_val_string, - STATE(5602), 1, - sym_comment, - ACTIONS(4011), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4492), 2, - sym__raw_str, - sym__str_double_quotes, - [197113] = 8, + [200787] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9123), 1, + ACTIONS(4001), 1, anon_sym_DQUOTE, - ACTIONS(9127), 1, + ACTIONS(4005), 1, sym_raw_string_begin, - ACTIONS(9385), 1, + ACTIONS(9386), 1, aux_sym_path_token1, - STATE(1377), 1, + STATE(5283), 1, sym_val_string, - STATE(5603), 1, + STATE(5619), 1, sym_comment, - ACTIONS(9125), 2, + ACTIONS(4003), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1344), 2, + STATE(4332), 2, sym__raw_str, sym__str_double_quotes, - [197140] = 6, + [200814] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9387), 1, - anon_sym_EQ2, - ACTIONS(9389), 1, - sym_short_flag_identifier, - STATE(5604), 1, + ACTIONS(998), 1, + anon_sym_DASH2, + STATE(5620), 1, sym_comment, - ACTIONS(4956), 3, + ACTIONS(1000), 7, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - ACTIONS(4958), 3, anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_DOT, + [200833] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9388), 1, + aux_sym__immediate_decimal_token2, + STATE(5621), 1, + sym_comment, + ACTIONS(1681), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1683), 5, + anon_sym_in2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [200854] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1002), 1, anon_sym_DASH2, + STATE(5622), 1, + sym_comment, + ACTIONS(1004), 7, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, anon_sym_as, - [197163] = 7, + anon_sym_QMARK2, + anon_sym_DOT, + [200873] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8960), 1, + ACTIONS(8925), 1, anon_sym_DOT, - STATE(1679), 1, + STATE(1722), 1, sym_cell_path, - STATE(1894), 1, + STATE(1882), 1, sym_path, - STATE(5605), 1, - sym_comment, - STATE(5608), 1, + STATE(5562), 1, aux_sym_cell_path_repeat1, + STATE(5623), 1, + sym_comment, ACTIONS(1737), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [197188] = 8, + [200898] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DOT_DOT2, - ACTIONS(6408), 1, - anon_sym_DOT, - STATE(1642), 1, - sym_path, - STATE(3175), 1, - sym_cell_path, - STATE(3390), 1, - aux_sym_cell_path_repeat1, - STATE(5606), 1, + STATE(5624), 1, sym_comment, - ACTIONS(963), 3, - anon_sym_LBRACE, + ACTIONS(1761), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1763), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [197215] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5607), 1, - sym_comment, - ACTIONS(7953), 8, - sym_raw_string_begin, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_AT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [197232] = 6, - ACTIONS(247), 1, + sym_filesize_unit, + sym_duration_unit, + [200917] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8960), 1, - anon_sym_DOT, - STATE(1894), 1, - sym_path, - STATE(5608), 1, + STATE(5625), 1, sym_comment, - STATE(5613), 1, - aux_sym_cell_path_repeat1, - ACTIONS(969), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, + ACTIONS(992), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(990), 5, + anon_sym_RBRACK, anon_sym_RBRACE, - [197255] = 7, - ACTIONS(247), 1, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [200936] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9391), 1, - anon_sym_DASH_DASH, - ACTIONS(9394), 1, - anon_sym_DASH2, - STATE(6126), 1, - sym__flag, - ACTIONS(8567), 2, - sym_identifier, - anon_sym_DOLLAR, - STATE(5609), 2, + STATE(5626), 1, sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(6104), 2, - sym_short_flag, - sym_long_flag, - [197280] = 6, + ACTIONS(1681), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1683), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [200955] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9397), 1, - sym_long_flag_identifier, - ACTIONS(9399), 1, + ACTIONS(9390), 1, anon_sym_EQ2, - STATE(5610), 1, + ACTIONS(9392), 1, + sym_short_flag_identifier, + STATE(5627), 1, sym_comment, - ACTIONS(4938), 2, - anon_sym_DASH2, - anon_sym_as, - ACTIONS(4936), 4, + ACTIONS(4974), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, + ACTIONS(4976), 3, anon_sym_DASH_DASH, - [197303] = 5, + anon_sym_DASH2, + anon_sym_as, + [200978] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9403), 1, - anon_sym_COLON, - ACTIONS(9405), 1, - anon_sym_COMMA, - STATE(5611), 1, + ACTIONS(9394), 1, + aux_sym__immediate_decimal_token2, + STATE(5628), 1, sym_comment, - ACTIONS(9401), 6, - sym_raw_string_begin, - sym_identifier, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [197324] = 4, + ACTIONS(1681), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1683), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [200999] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5176), 1, + ACTIONS(5134), 1, anon_sym_DASH2, - STATE(5612), 1, + STATE(5629), 1, sym_comment, - ACTIONS(5174), 7, + ACTIONS(5132), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -401421,489 +403810,680 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in2, anon_sym_RBRACE, anon_sym_as, - [197343] = 5, - ACTIONS(247), 1, + [201018] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9407), 1, + ACTIONS(1851), 1, + sym__entry_separator, + ACTIONS(9396), 1, anon_sym_DOT, - STATE(1894), 1, - sym_path, - STATE(5613), 2, + STATE(5630), 1, sym_comment, + STATE(5997), 1, aux_sym_cell_path_repeat1, - ACTIONS(973), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, + STATE(6783), 1, + sym_path, + STATE(7372), 1, + sym_cell_path, + ACTIONS(1847), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - [197364] = 4, + [201044] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(5614), 1, + ACTIONS(1921), 1, + sym__entry_separator, + ACTIONS(9396), 1, + anon_sym_DOT, + STATE(5631), 1, sym_comment, - ACTIONS(1890), 4, + STATE(5997), 1, + aux_sym_cell_path_repeat1, + STATE(6783), 1, + sym_path, + STATE(6987), 1, + sym_cell_path, + ACTIONS(1919), 2, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1892), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [197383] = 8, + [201070] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3477), 1, - anon_sym_DQUOTE, - ACTIONS(3487), 1, - sym_raw_string_begin, - ACTIONS(9410), 1, - aux_sym_path_token1, - STATE(3547), 1, - sym_val_string, - STATE(5615), 1, + ACTIONS(1559), 1, + aux_sym_unquoted_token2, + ACTIONS(9398), 1, + anon_sym_DOT_DOT2, + STATE(5632), 1, sym_comment, - ACTIONS(3479), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3584), 2, - sym__raw_str, - sym__str_double_quotes, - [197410] = 4, + ACTIONS(9400), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1828), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [201092] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5145), 1, + ACTIONS(1006), 1, anon_sym_DASH2, - STATE(5616), 1, + STATE(5633), 1, sym_comment, - ACTIONS(5143), 7, + ACTIONS(1008), 6, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_RBRACE, anon_sym_as, - [197429] = 4, - ACTIONS(247), 1, + anon_sym_DOT, + [201110] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1929), 1, + sym__entry_separator, + ACTIONS(9396), 1, + anon_sym_DOT, + STATE(5634), 1, + sym_comment, + STATE(5997), 1, + aux_sym_cell_path_repeat1, + STATE(6783), 1, + sym_path, + STATE(7004), 1, + sym_cell_path, + ACTIONS(1927), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [201136] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5180), 1, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + STATE(5635), 1, + sym_comment, + ACTIONS(2246), 3, + anon_sym_DASH_DASH, anon_sym_DASH2, - STATE(5617), 1, + anon_sym_as, + ACTIONS(2250), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [201156] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5636), 1, sym_comment, - ACTIONS(5178), 7, + ACTIONS(2270), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2268), 4, anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_RBRACE, + anon_sym_DASH2, anon_sym_as, - [197448] = 3, - ACTIONS(247), 1, + aux_sym_unquoted_token4, + [201174] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5618), 1, + ACTIONS(1944), 1, + sym__entry_separator, + ACTIONS(9396), 1, + anon_sym_DOT, + STATE(5637), 1, sym_comment, - ACTIONS(8089), 8, - sym_raw_string_begin, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_AT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [197465] = 4, + STATE(5997), 1, + aux_sym_cell_path_repeat1, + STATE(6783), 1, + sym_path, + STATE(7007), 1, + sym_cell_path, + ACTIONS(1942), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [201200] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2028), 1, + sym__entry_separator, + ACTIONS(9396), 1, + anon_sym_DOT, + STATE(5638), 1, + sym_comment, + STATE(5997), 1, + aux_sym_cell_path_repeat1, + STATE(6783), 1, + sym_path, + STATE(7012), 1, + sym_cell_path, + ACTIONS(2026), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [201226] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2032), 1, + sym__entry_separator, + ACTIONS(9396), 1, + anon_sym_DOT, + STATE(5639), 1, + sym_comment, + STATE(5997), 1, + aux_sym_cell_path_repeat1, + STATE(6783), 1, + sym_path, + STATE(7031), 1, + sym_cell_path, + ACTIONS(2030), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [201252] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5619), 1, + STATE(5640), 1, sym_comment, - ACTIONS(1755), 2, + ACTIONS(1841), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1757), 5, + ACTIONS(1843), 5, sym__newline, anon_sym_LBRACE, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [197483] = 8, + [201270] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, - anon_sym_LBRACE, - ACTIONS(9412), 1, - anon_sym_DASH_DASH, - ACTIONS(9414), 1, - anon_sym_DASH2, - STATE(5620), 1, - sym_comment, - STATE(6595), 1, - sym_block, - STATE(7367), 1, - sym__flag, - STATE(6104), 2, - sym_short_flag, - sym_long_flag, - [197509] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2212), 1, - aux_sym_unquoted_token4, - STATE(5621), 1, + STATE(5641), 1, sym_comment, - ACTIONS(2206), 3, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - ACTIONS(2210), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [197529] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1721), 1, - anon_sym_LBRACE, - ACTIONS(4708), 1, + ACTIONS(1739), 2, anon_sym_DOT_DOT2, - ACTIONS(4864), 1, aux_sym_unquoted_token2, - ACTIONS(9416), 1, - sym_filesize_unit, - ACTIONS(9418), 1, - sym_duration_unit, - STATE(5622), 1, - sym_comment, - ACTIONS(4710), 2, + ACTIONS(1741), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [197555] = 3, + [201288] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(5623), 1, + ACTIONS(9402), 1, + anon_sym_DASH_DASH, + ACTIONS(9405), 1, + anon_sym_DASH2, + ACTIONS(8877), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + STATE(5642), 2, sym_comment, - ACTIONS(5689), 7, - sym_raw_string_begin, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [197571] = 8, + aux_sym_ctrl_do_repeat1, + STATE(6035), 2, + sym_short_flag, + sym_long_flag, + [201310] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1994), 1, + ACTIONS(1865), 1, sym__entry_separator, - ACTIONS(9420), 1, + ACTIONS(9396), 1, anon_sym_DOT, - STATE(5624), 1, + STATE(5643), 1, sym_comment, - STATE(5950), 1, + STATE(5997), 1, aux_sym_cell_path_repeat1, - STATE(6234), 1, + STATE(6783), 1, sym_path, - STATE(6768), 1, + STATE(6916), 1, sym_cell_path, - ACTIONS(1992), 2, + ACTIONS(1863), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [197597] = 4, + [201336] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1006), 1, - anon_sym_DASH2, - STATE(5625), 1, - sym_comment, - ACTIONS(1008), 6, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, + ACTIONS(1559), 1, + aux_sym_unquoted_token2, + ACTIONS(8423), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8425), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9408), 1, anon_sym_DOT, - [197615] = 8, + STATE(5644), 1, + sym_comment, + STATE(6059), 1, + sym__immediate_decimal, + ACTIONS(8421), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [201362] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6186), 1, + STATE(5645), 1, + sym_comment, + ACTIONS(1739), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1741), 5, + sym__newline, anon_sym_LBRACE, - ACTIONS(9412), 1, - anon_sym_DASH_DASH, - ACTIONS(9414), 1, - anon_sym_DASH2, - STATE(5626), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [201380] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9410), 1, + anon_sym_DOT, + STATE(5646), 1, sym_comment, - STATE(6801), 1, - sym_block, - STATE(7509), 1, - sym__flag, - STATE(6104), 2, - sym_short_flag, - sym_long_flag, - [197641] = 8, + STATE(5764), 1, + aux_sym_cell_path_repeat1, + STATE(6319), 1, + sym_path, + STATE(6819), 1, + sym_cell_path, + ACTIONS(1847), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [201404] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1878), 1, + STATE(5647), 1, + sym_comment, + ACTIONS(1765), 3, anon_sym_RBRACE, - ACTIONS(1880), 1, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1767), 4, anon_sym_LPAREN2, - ACTIONS(1886), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1888), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(9422), 1, + [201422] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1812), 1, + aux_sym_unquoted_token2, + ACTIONS(9412), 1, anon_sym_DOT_DOT2, - STATE(5627), 1, + STATE(5648), 1, sym_comment, - ACTIONS(9424), 2, + ACTIONS(9414), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [197667] = 4, + ACTIONS(1810), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [201444] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9416), 1, + sym__newline, + ACTIONS(9419), 1, + sym__space, + STATE(5649), 2, + sym_comment, + aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(3543), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_LBRACE, + [201464] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(5628), 1, + ACTIONS(9097), 1, + aux_sym__immediate_decimal_token2, + STATE(5650), 1, sym_comment, - ACTIONS(1673), 2, + ACTIONS(1765), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1675), 5, - anon_sym_LBRACE, + ACTIONS(1767), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [197685] = 3, + [201484] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1855), 1, + sym__entry_separator, + ACTIONS(9396), 1, + anon_sym_DOT, + STATE(5651), 1, + sym_comment, + STATE(5997), 1, + aux_sym_cell_path_repeat1, + STATE(6783), 1, + sym_path, + STATE(7206), 1, + sym_cell_path, + ACTIONS(1853), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [201510] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5629), 1, + ACTIONS(9424), 1, + anon_sym_COMMA, + STATE(5652), 1, sym_comment, - ACTIONS(5693), 7, + ACTIONS(9422), 6, sym_raw_string_begin, sym_identifier, - anon_sym_COMMA, anon_sym_GT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [197701] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym_unquoted_token2, - ACTIONS(8299), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8301), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9426), 1, - anon_sym_DOT, - STATE(5630), 1, - sym_comment, - STATE(6115), 1, - sym__immediate_decimal, - ACTIONS(8297), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [197727] = 4, + [201528] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5631), 1, + STATE(5653), 1, sym_comment, - ACTIONS(1008), 3, + ACTIONS(1739), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1741), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1006), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [197745] = 6, + [201546] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym_unquoted_token2, - ACTIONS(9428), 1, + STATE(5654), 1, + sym_comment, + ACTIONS(8089), 7, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [201562] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1707), 1, + anon_sym_RBRACE, + ACTIONS(1719), 1, + sym__entry_separator, + ACTIONS(9426), 1, anon_sym_DOT_DOT2, - STATE(5632), 1, + ACTIONS(9430), 1, + sym_filesize_unit, + ACTIONS(9432), 1, + sym_duration_unit, + STATE(5655), 1, sym_comment, - ACTIONS(9430), 2, + ACTIONS(9428), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1874), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [197767] = 3, + [201588] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5633), 1, + ACTIONS(9436), 1, + anon_sym_COMMA, + STATE(5656), 1, sym_comment, - ACTIONS(8211), 7, + ACTIONS(9434), 6, sym_raw_string_begin, sym_identifier, - anon_sym_COMMA, anon_sym_GT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [197783] = 8, + [201606] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1998), 1, + ACTIONS(1889), 1, sym__entry_separator, - ACTIONS(9420), 1, + ACTIONS(9396), 1, anon_sym_DOT, - STATE(5634), 1, + STATE(5657), 1, sym_comment, - STATE(5950), 1, + STATE(5997), 1, aux_sym_cell_path_repeat1, - STATE(6234), 1, + STATE(6783), 1, sym_path, - STATE(6770), 1, + STATE(7392), 1, sym_cell_path, - ACTIONS(1996), 2, + ACTIONS(1887), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [197809] = 8, + [201632] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9412), 1, - anon_sym_DASH_DASH, - ACTIONS(9414), 1, - anon_sym_DASH2, - ACTIONS(9432), 1, - anon_sym_LBRACE, - STATE(5635), 1, + ACTIONS(4894), 1, + anon_sym_DOT, + STATE(1690), 1, + aux_sym_cell_path_repeat1, + STATE(1882), 1, + sym_path, + STATE(5658), 1, sym_comment, - STATE(7177), 1, - sym_val_record, - STATE(7361), 1, - sym__flag, - STATE(6104), 2, - sym_short_flag, - sym_long_flag, - [197835] = 5, + STATE(6972), 1, + sym_cell_path, + ACTIONS(5866), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [201656] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - STATE(5636), 1, + ACTIONS(1893), 1, + sym__entry_separator, + ACTIONS(9396), 1, + anon_sym_DOT, + STATE(5659), 1, sym_comment, - ACTIONS(2214), 3, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - ACTIONS(2218), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [197855] = 5, - ACTIONS(3), 1, + STATE(5997), 1, + aux_sym_cell_path_repeat1, + STATE(6783), 1, + sym_path, + STATE(7438), 1, + sym_cell_path, + ACTIONS(1891), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [201682] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - STATE(5637), 1, + ACTIONS(4894), 1, + anon_sym_DOT, + STATE(1690), 1, + aux_sym_cell_path_repeat1, + STATE(1882), 1, + sym_path, + STATE(5660), 1, sym_comment, - ACTIONS(2222), 3, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - ACTIONS(2224), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [197875] = 8, + STATE(7379), 1, + sym_cell_path, + ACTIONS(5945), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [201706] = 9, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(9438), 1, + anon_sym_alias, + ACTIONS(9440), 1, + anon_sym_const, + ACTIONS(9442), 1, + anon_sym_def, + ACTIONS(9444), 1, + anon_sym_extern, + ACTIONS(9446), 1, + anon_sym_module, + ACTIONS(9448), 1, + anon_sym_use, + STATE(5661), 1, + sym_comment, + [201734] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2108), 1, + ACTIONS(1909), 1, sym__entry_separator, - ACTIONS(9420), 1, + ACTIONS(9396), 1, anon_sym_DOT, - STATE(5638), 1, + STATE(5662), 1, sym_comment, - STATE(5950), 1, + STATE(5997), 1, aux_sym_cell_path_repeat1, - STATE(6234), 1, + STATE(6783), 1, sym_path, - STATE(7207), 1, + STATE(7217), 1, sym_cell_path, - ACTIONS(2106), 2, + ACTIONS(1907), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [197901] = 5, + [201760] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5053), 1, - anon_sym_DASH2, - ACTIONS(9434), 1, - anon_sym_EQ2, - STATE(5639), 1, + STATE(5663), 1, sym_comment, - ACTIONS(5051), 5, - ts_builtin_sym_end, + ACTIONS(1841), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1843), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [201778] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5664), 1, + sym_comment, + ACTIONS(1765), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1767), 5, sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [197921] = 8, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [201796] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2002), 1, + STATE(5665), 1, + sym_comment, + ACTIONS(1785), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1787), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(9420), 1, - anon_sym_DOT, - STATE(5640), 1, + [201814] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5666), 1, sym_comment, - STATE(5950), 1, - aux_sym_cell_path_repeat1, - STATE(6234), 1, - sym_path, - STATE(6800), 1, - sym_cell_path, - ACTIONS(2000), 2, + ACTIONS(1012), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1010), 4, anon_sym_RBRACK, anon_sym_RBRACE, - [197947] = 8, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [201832] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + STATE(5667), 1, + sym_comment, + ACTIONS(1016), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(9420), 1, + ACTIONS(1014), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(5641), 1, + [201850] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9410), 1, + anon_sym_DOT, + STATE(5668), 1, sym_comment, - STATE(5950), 1, + STATE(5764), 1, aux_sym_cell_path_repeat1, - STATE(6234), 1, + STATE(6319), 1, sym_path, - STATE(7314), 1, + STATE(7006), 1, sym_cell_path, - ACTIONS(1976), 2, + ACTIONS(1867), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - [197973] = 4, + sym__entry_separator, + sym__table_head_separator, + [201874] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9438), 1, - anon_sym_DASH2, - STATE(5642), 1, + STATE(5669), 1, sym_comment, - ACTIONS(9436), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + ACTIONS(5685), 7, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [201890] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5670), 1, + sym_comment, + ACTIONS(1573), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1575), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [201908] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1897), 1, + sym__entry_separator, + ACTIONS(9396), 1, + anon_sym_DOT, + STATE(5671), 1, + sym_comment, + STATE(5997), 1, + aux_sym_cell_path_repeat1, + STATE(6783), 1, + sym_path, + STATE(6829), 1, + sym_cell_path, + ACTIONS(1895), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_as, - [197991] = 3, + [201934] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5643), 1, + STATE(5672), 1, sym_comment, - ACTIONS(5697), 7, + ACTIONS(5652), 7, sym_raw_string_begin, sym_identifier, anon_sym_COMMA, @@ -401911,3190 +404491,3099 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198007] = 4, + [201950] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1010), 1, + ACTIONS(9450), 1, + aux_sym__immediate_decimal_token2, + STATE(5673), 1, + sym_comment, + ACTIONS(1785), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1787), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [201970] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1707), 1, anon_sym_DASH2, - STATE(5644), 1, + ACTIONS(8499), 1, + aux_sym_unquoted_token2, + STATE(5674), 1, sym_comment, - ACTIONS(1012), 6, + ACTIONS(1719), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - anon_sym_DOT, - [198025] = 4, - ACTIONS(247), 1, + [201990] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5645), 1, + STATE(5675), 1, sym_comment, - ACTIONS(1607), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1609), 5, - anon_sym_in2, + ACTIONS(1008), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [198043] = 8, + sym__entry_separator, + ACTIONS(1006), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [202008] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6186), 1, - anon_sym_LBRACE, - ACTIONS(9412), 1, - anon_sym_DASH_DASH, - ACTIONS(9414), 1, + ACTIONS(9454), 1, anon_sym_DASH2, - STATE(5646), 1, + STATE(5676), 1, sym_comment, - STATE(6907), 1, - sym_block, - STATE(7452), 1, - sym__flag, - STATE(6104), 2, - sym_short_flag, - sym_long_flag, - [198069] = 8, - ACTIONS(247), 1, + ACTIONS(9452), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [202026] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6186), 1, - anon_sym_LBRACE, - ACTIONS(9412), 1, + STATE(5677), 1, + sym_comment, + ACTIONS(1841), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1843), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [202044] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8103), 1, + sym__newline, + ACTIONS(8105), 1, + sym__space, + ACTIONS(8107), 1, anon_sym_DASH_DASH, - ACTIONS(9414), 1, + ACTIONS(8109), 1, anon_sym_DASH2, - STATE(5647), 1, + STATE(5649), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(5678), 1, sym_comment, - STATE(6957), 1, - sym_block, - STATE(7399), 1, - sym__flag, - STATE(6104), 2, + STATE(7564), 2, sym_short_flag, sym_long_flag, - [198095] = 8, + [202070] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2096), 1, + ACTIONS(1869), 1, sym__entry_separator, - ACTIONS(9420), 1, + ACTIONS(9396), 1, anon_sym_DOT, - STATE(5648), 1, + STATE(5679), 1, sym_comment, - STATE(5950), 1, + STATE(5997), 1, aux_sym_cell_path_repeat1, - STATE(6234), 1, + STATE(6783), 1, sym_path, - STATE(7341), 1, + STATE(7017), 1, sym_cell_path, - ACTIONS(2094), 2, + ACTIONS(1867), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [198121] = 8, - ACTIONS(247), 1, + [202096] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6186), 1, - anon_sym_LBRACE, - ACTIONS(9412), 1, - anon_sym_DASH_DASH, - ACTIONS(9414), 1, - anon_sym_DASH2, - STATE(5649), 1, + ACTIONS(1559), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1820), 1, + anon_sym_RBRACE, + ACTIONS(1822), 1, + anon_sym_LPAREN2, + ACTIONS(1828), 1, + sym__entry_separator, + ACTIONS(9456), 1, + anon_sym_DOT_DOT2, + STATE(5680), 1, sym_comment, - STATE(6974), 1, - sym_block, - STATE(7417), 1, - sym__flag, - STATE(6104), 2, - sym_short_flag, - sym_long_flag, - [198147] = 4, - ACTIONS(247), 1, + ACTIONS(9458), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [202122] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1014), 1, - anon_sym_DASH2, - STATE(5650), 1, - sym_comment, - ACTIONS(1016), 6, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, + ACTIONS(1873), 1, + sym__entry_separator, + ACTIONS(9396), 1, anon_sym_DOT, - [198165] = 6, + STATE(5681), 1, + sym_comment, + STATE(5997), 1, + aux_sym_cell_path_repeat1, + STATE(6783), 1, + sym_path, + STATE(7074), 1, + sym_cell_path, + ACTIONS(1871), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [202148] = 9, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1888), 1, - aux_sym_unquoted_token2, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(9438), 1, + anon_sym_alias, ACTIONS(9440), 1, + anon_sym_const, + ACTIONS(9442), 1, + anon_sym_def, + ACTIONS(9444), 1, + anon_sym_extern, + ACTIONS(9446), 1, + anon_sym_module, + ACTIONS(9448), 1, + anon_sym_use, + STATE(5682), 1, + sym_comment, + [202176] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1559), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1820), 1, + anon_sym_RBRACK, + ACTIONS(1822), 1, + anon_sym_LPAREN2, + ACTIONS(1828), 1, + sym__entry_separator, + ACTIONS(9460), 1, anon_sym_DOT_DOT2, - STATE(5651), 1, + STATE(5683), 1, sym_comment, - ACTIONS(9442), 2, + ACTIONS(9462), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1886), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [198187] = 4, - ACTIONS(247), 1, + [202202] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9446), 1, - anon_sym_COMMA, - STATE(5652), 1, + ACTIONS(1881), 1, + sym__entry_separator, + ACTIONS(9396), 1, + anon_sym_DOT, + STATE(5684), 1, sym_comment, - ACTIONS(9444), 6, - sym_raw_string_begin, - sym_identifier, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [198205] = 4, - ACTIONS(247), 1, + STATE(5997), 1, + aux_sym_cell_path_repeat1, + STATE(6783), 1, + sym_path, + STATE(7184), 1, + sym_cell_path, + ACTIONS(1879), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [202228] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9450), 1, - anon_sym_COMMA, - STATE(5653), 1, + ACTIONS(1802), 1, + anon_sym_RBRACK, + ACTIONS(1804), 1, + anon_sym_LPAREN2, + ACTIONS(1810), 1, + sym__entry_separator, + ACTIONS(1812), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(9464), 1, + anon_sym_DOT_DOT2, + STATE(5685), 1, sym_comment, - ACTIONS(9448), 6, - sym_raw_string_begin, - sym_identifier, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [198223] = 4, + ACTIONS(9466), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [202254] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5654), 1, + STATE(5686), 1, sym_comment, - ACTIONS(1621), 2, + ACTIONS(1585), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1623), 5, - anon_sym_in2, + ACTIONS(1587), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [198241] = 8, - ACTIONS(247), 1, + [202272] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9452), 1, - sym_identifier, - ACTIONS(9454), 1, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + STATE(5687), 1, + sym_comment, + ACTIONS(2254), 3, anon_sym_DASH_DASH, - ACTIONS(9456), 1, anon_sym_DASH2, - STATE(5655), 1, + anon_sym_as, + ACTIONS(2256), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [202292] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1913), 1, + sym__entry_separator, + ACTIONS(9396), 1, + anon_sym_DOT, + STATE(5688), 1, sym_comment, - STATE(5705), 1, - aux_sym_ctrl_do_repeat1, - STATE(6126), 1, - sym__flag, - STATE(6104), 2, - sym_short_flag, - sym_long_flag, - [198267] = 8, - ACTIONS(247), 1, + STATE(5997), 1, + aux_sym_cell_path_repeat1, + STATE(6783), 1, + sym_path, + STATE(6832), 1, + sym_cell_path, + ACTIONS(1911), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [202318] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6186), 1, - anon_sym_LBRACE, - ACTIONS(9412), 1, + ACTIONS(2228), 1, + aux_sym_unquoted_token4, + STATE(5689), 1, + sym_comment, + ACTIONS(1026), 3, anon_sym_DASH_DASH, - ACTIONS(9414), 1, anon_sym_DASH2, - STATE(5656), 1, + anon_sym_as, + ACTIONS(1028), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [202338] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2244), 1, + aux_sym_unquoted_token4, + STATE(5690), 1, sym_comment, - STATE(6794), 1, - sym_block, - STATE(7388), 1, - sym__flag, - STATE(6104), 2, - sym_short_flag, - sym_long_flag, - [198293] = 8, + ACTIONS(2238), 3, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(2242), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [202358] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6186), 1, - anon_sym_LBRACE, - ACTIONS(9412), 1, - anon_sym_DASH_DASH, - ACTIONS(9414), 1, - anon_sym_DASH2, - STATE(5657), 1, + STATE(5691), 1, + sym_comment, + ACTIONS(1761), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1763), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [202376] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1940), 1, + sym__entry_separator, + ACTIONS(9396), 1, + anon_sym_DOT, + STATE(5692), 1, sym_comment, - STATE(6797), 1, - sym_block, - STATE(7434), 1, - sym__flag, - STATE(6104), 2, - sym_short_flag, - sym_long_flag, - [198319] = 8, + STATE(5997), 1, + aux_sym_cell_path_repeat1, + STATE(6783), 1, + sym_path, + STATE(7437), 1, + sym_cell_path, + ACTIONS(1938), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [202402] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6186), 1, - anon_sym_LBRACE, - ACTIONS(9412), 1, + ACTIONS(9468), 1, anon_sym_DASH_DASH, - ACTIONS(9414), 1, + ACTIONS(9471), 1, anon_sym_DASH2, - STATE(5658), 1, + ACTIONS(8877), 2, + sym_identifier, + anon_sym_DOLLAR, + STATE(5693), 2, sym_comment, - STATE(6799), 1, - sym_block, - STATE(7464), 1, - sym__flag, - STATE(6104), 2, + aux_sym_ctrl_do_repeat1, + STATE(6035), 2, sym_short_flag, sym_long_flag, - [198345] = 7, + [202424] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9458), 1, + ACTIONS(1861), 1, + sym__entry_separator, + ACTIONS(9396), 1, anon_sym_DOT, - STATE(5659), 1, + STATE(5694), 1, sym_comment, - STATE(5931), 1, + STATE(5997), 1, aux_sym_cell_path_repeat1, - STATE(6532), 1, + STATE(6783), 1, sym_path, - STATE(6805), 1, + STATE(7178), 1, sym_cell_path, - ACTIONS(2094), 3, + ACTIONS(1859), 2, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [198369] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5660), 1, - sym_comment, - ACTIONS(1783), 3, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1785), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [198387] = 4, + [202450] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(5661), 1, - sym_comment, - ACTIONS(1012), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(2044), 1, sym__entry_separator, - ACTIONS(1010), 4, + ACTIONS(9396), 1, + anon_sym_DOT, + STATE(5695), 1, + sym_comment, + STATE(5997), 1, + aux_sym_cell_path_repeat1, + STATE(6783), 1, + sym_path, + STATE(7448), 1, + sym_cell_path, + ACTIONS(2042), 2, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [198405] = 4, + [202476] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(5662), 1, - sym_comment, - ACTIONS(1016), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(963), 1, sym__entry_separator, - ACTIONS(1014), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, + ACTIONS(9396), 1, anon_sym_DOT, - [198423] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5663), 1, + STATE(5696), 1, sym_comment, - ACTIONS(1739), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1741), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [198441] = 8, + STATE(5755), 1, + sym_cell_path, + STATE(5997), 1, + aux_sym_cell_path_repeat1, + STATE(6783), 1, + sym_path, + ACTIONS(961), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [202502] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1927), 1, + ACTIONS(1885), 1, sym__entry_separator, - ACTIONS(9420), 1, + ACTIONS(9396), 1, anon_sym_DOT, - STATE(5664), 1, + STATE(5697), 1, sym_comment, - STATE(5950), 1, + STATE(5997), 1, aux_sym_cell_path_repeat1, - STATE(6234), 1, + STATE(6783), 1, sym_path, - STATE(7129), 1, + STATE(7191), 1, sym_cell_path, - ACTIONS(1925), 2, + ACTIONS(1883), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [198467] = 8, + [202528] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6186), 1, + ACTIONS(1719), 1, anon_sym_LBRACE, - ACTIONS(9412), 1, - anon_sym_DASH_DASH, - ACTIONS(9414), 1, - anon_sym_DASH2, - STATE(5665), 1, + ACTIONS(4866), 1, + aux_sym_unquoted_token2, + ACTIONS(9474), 1, + anon_sym_DOT_DOT2, + ACTIONS(9478), 1, + sym_filesize_unit, + ACTIONS(9480), 1, + sym_duration_unit, + STATE(5698), 1, sym_comment, - STATE(6845), 1, - sym_block, - STATE(7440), 1, - sym__flag, - STATE(6104), 2, - sym_short_flag, - sym_long_flag, - [198493] = 4, + ACTIONS(9476), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [202554] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(5666), 1, + ACTIONS(5058), 1, + anon_sym_DASH2, + ACTIONS(9482), 1, + anon_sym_EQ2, + STATE(5699), 1, sym_comment, - ACTIONS(1621), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1623), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [198511] = 4, + ACTIONS(5056), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [202574] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5667), 1, + STATE(5700), 1, sym_comment, - ACTIONS(1673), 2, + ACTIONS(1573), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1675), 5, + ACTIONS(1575), 5, anon_sym_in2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [198529] = 4, + [202592] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(5668), 1, + ACTIONS(2036), 1, + sym__entry_separator, + ACTIONS(9396), 1, + anon_sym_DOT, + STATE(5701), 1, sym_comment, - ACTIONS(1755), 3, + STATE(5997), 1, + aux_sym_cell_path_repeat1, + STATE(6783), 1, + sym_path, + STATE(7208), 1, + sym_cell_path, + ACTIONS(2034), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1757), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [198547] = 5, + [202618] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1709), 1, + ACTIONS(4998), 1, anon_sym_DASH2, - ACTIONS(8499), 1, - aux_sym_unquoted_token2, - STATE(5669), 1, + ACTIONS(9484), 1, + anon_sym_EQ2, + STATE(5702), 1, sym_comment, - ACTIONS(1721), 5, + ACTIONS(4996), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [198567] = 4, + [202638] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2040), 1, + sym__entry_separator, + ACTIONS(9396), 1, + anon_sym_DOT, + STATE(5703), 1, + sym_comment, + STATE(5997), 1, + aux_sym_cell_path_repeat1, + STATE(6783), 1, + sym_path, + STATE(7209), 1, + sym_cell_path, + ACTIONS(2038), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [202664] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5670), 1, + STATE(5704), 1, sym_comment, - ACTIONS(1607), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1609), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [198585] = 4, + ACTIONS(5662), 7, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [202680] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(5671), 1, + ACTIONS(1559), 1, + aux_sym_unquoted_token2, + ACTIONS(8423), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8425), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9486), 1, + anon_sym_DOT, + STATE(5705), 1, sym_comment, - ACTIONS(1739), 2, + STATE(6303), 1, + sym__immediate_decimal, + ACTIONS(8421), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [202706] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1933), 1, + sym__entry_separator, + ACTIONS(9396), 1, + anon_sym_DOT, + STATE(5706), 1, + sym_comment, + STATE(5997), 1, + aux_sym_cell_path_repeat1, + STATE(6783), 1, + sym_path, + STATE(7210), 1, + sym_cell_path, + ACTIONS(1931), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [202732] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1719), 1, + anon_sym_LBRACE, + ACTIONS(4722), 1, anon_sym_DOT_DOT2, + ACTIONS(4866), 1, aux_sym_unquoted_token2, - ACTIONS(1741), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(9478), 1, + sym_filesize_unit, + ACTIONS(9480), 1, + sym_duration_unit, + STATE(5707), 1, + sym_comment, + ACTIONS(4724), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [198603] = 4, + [202758] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5672), 1, + STATE(5708), 1, sym_comment, - ACTIONS(1763), 2, + ACTIONS(1585), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1765), 5, + ACTIONS(1587), 5, anon_sym_in2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [198621] = 4, + [202776] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5673), 1, + STATE(5709), 1, + sym_comment, + ACTIONS(5693), 7, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [202792] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5710), 1, sym_comment, - ACTIONS(1783), 2, + ACTIONS(1785), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1785), 5, + ACTIONS(1787), 5, sym__newline, anon_sym_LBRACE, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [198639] = 8, + [202810] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(961), 1, + anon_sym_DASH2, + ACTIONS(6524), 1, + anon_sym_DOT, + STATE(3196), 1, + sym_cell_path, + STATE(3502), 1, + aux_sym_cell_path_repeat1, + STATE(3607), 1, + sym_path, + STATE(5711), 1, + sym_comment, + ACTIONS(963), 2, + anon_sym_DASH_DASH, + anon_sym_in2, + [202836] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5712), 1, + sym_comment, + ACTIONS(1681), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1683), 5, + anon_sym_in2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [202854] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2092), 1, + ACTIONS(1901), 1, sym__entry_separator, - ACTIONS(9420), 1, + ACTIONS(9396), 1, anon_sym_DOT, - STATE(5674), 1, + STATE(5713), 1, sym_comment, - STATE(5950), 1, + STATE(5997), 1, aux_sym_cell_path_repeat1, - STATE(6234), 1, + STATE(6783), 1, sym_path, - STATE(6818), 1, + STATE(7212), 1, sym_cell_path, - ACTIONS(2090), 2, + ACTIONS(1899), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [198665] = 9, + [202880] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(9460), 1, - anon_sym_alias, - ACTIONS(9462), 1, - anon_sym_const, - ACTIONS(9464), 1, - anon_sym_def, - ACTIONS(9466), 1, - anon_sym_extern, - ACTIONS(9468), 1, - anon_sym_module, - ACTIONS(9470), 1, - anon_sym_use, - STATE(5675), 1, + STATE(5714), 1, sym_comment, - [198693] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1709), 1, - anon_sym_RBRACE, - ACTIONS(1721), 1, - sym__entry_separator, - ACTIONS(9472), 1, + ACTIONS(1761), 2, anon_sym_DOT_DOT2, - ACTIONS(9476), 1, + aux_sym_unquoted_token2, + ACTIONS(1763), 5, + anon_sym_in2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, - ACTIONS(9478), 1, sym_duration_unit, - STATE(5676), 1, + [202898] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5715), 1, sym_comment, - ACTIONS(9474), 2, + ACTIONS(1765), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1767), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [198719] = 5, + [202916] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2337), 1, + ACTIONS(2322), 1, anon_sym_DASH2, - ACTIONS(9480), 1, + ACTIONS(9488), 1, anon_sym_LBRACK2, - STATE(5677), 1, + STATE(5716), 1, sym_comment, - ACTIONS(2341), 5, + ACTIONS(2326), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [198739] = 8, - ACTIONS(3), 1, + [202936] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1950), 1, - sym__entry_separator, - ACTIONS(9420), 1, + ACTIONS(1010), 1, + anon_sym_DASH2, + STATE(5717), 1, + sym_comment, + ACTIONS(1012), 6, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_DOT, - STATE(5678), 1, + [202954] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5718), 1, sym_comment, - STATE(5950), 1, - aux_sym_cell_path_repeat1, - STATE(6234), 1, - sym_path, - STATE(6871), 1, - sym_cell_path, - ACTIONS(1948), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [198765] = 9, + ACTIONS(5681), 7, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [202970] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(9460), 1, - anon_sym_alias, - ACTIONS(9462), 1, - anon_sym_const, - ACTIONS(9464), 1, - anon_sym_def, - ACTIONS(9466), 1, - anon_sym_extern, - ACTIONS(9468), 1, - anon_sym_module, - ACTIONS(9470), 1, - anon_sym_use, - STATE(5679), 1, + STATE(5719), 1, sym_comment, - [198793] = 5, + ACTIONS(5689), 7, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [202986] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9482), 1, - aux_sym__immediate_decimal_token2, - STATE(5680), 1, + STATE(5720), 1, sym_comment, - ACTIONS(1783), 2, + ACTIONS(1785), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1785), 4, + ACTIONS(1787), 5, anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [198813] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4902), 1, - anon_sym_DOT, - STATE(1702), 1, - aux_sym_cell_path_repeat1, - STATE(1894), 1, - sym_path, - STATE(5681), 1, - sym_comment, - STATE(6842), 1, - sym_cell_path, - ACTIONS(5891), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [198837] = 5, + [203004] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5016), 1, + ACTIONS(1014), 1, anon_sym_DASH2, - ACTIONS(9484), 1, - anon_sym_EQ2, - STATE(5682), 1, + STATE(5721), 1, sym_comment, - ACTIONS(5014), 5, + ACTIONS(1016), 6, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [198857] = 8, + anon_sym_DOT, + [203022] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(1866), 1, + ACTIONS(1802), 1, anon_sym_RBRACE, - ACTIONS(1868), 1, + ACTIONS(1804), 1, anon_sym_LPAREN2, - ACTIONS(1874), 1, + ACTIONS(1810), 1, sym__entry_separator, - ACTIONS(9486), 1, + ACTIONS(1812), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(9490), 1, anon_sym_DOT_DOT2, - STATE(5683), 1, + STATE(5722), 1, sym_comment, - ACTIONS(9488), 2, + ACTIONS(9492), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [198883] = 8, + [203048] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9454), 1, - anon_sym_DASH_DASH, - ACTIONS(9456), 1, - anon_sym_DASH2, - ACTIONS(9490), 1, - sym_identifier, - STATE(5684), 1, + ACTIONS(1719), 1, + anon_sym_in2, + ACTIONS(4722), 1, + anon_sym_DOT_DOT2, + ACTIONS(4866), 1, + aux_sym_unquoted_token2, + ACTIONS(9494), 1, + sym_filesize_unit, + ACTIONS(9496), 1, + sym_duration_unit, + STATE(5723), 1, sym_comment, - STATE(5698), 1, - aux_sym_ctrl_do_repeat1, - STATE(6126), 1, - sym__flag, - STATE(6104), 2, - sym_short_flag, - sym_long_flag, - [198909] = 3, + ACTIONS(4724), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [203074] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5685), 1, + STATE(5724), 1, sym_comment, - ACTIONS(5681), 7, - sym_raw_string_begin, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [198925] = 8, + ACTIONS(1681), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1683), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [203092] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1954), 1, + ACTIONS(1917), 1, sym__entry_separator, - ACTIONS(9420), 1, + ACTIONS(9396), 1, anon_sym_DOT, - STATE(5686), 1, + STATE(5725), 1, sym_comment, - STATE(5950), 1, + STATE(5997), 1, aux_sym_cell_path_repeat1, - STATE(6234), 1, + STATE(6783), 1, sym_path, - STATE(6872), 1, + STATE(6984), 1, sym_cell_path, - ACTIONS(1952), 2, + ACTIONS(1915), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [198951] = 8, + [203118] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, - anon_sym_LBRACE, - ACTIONS(9412), 1, - anon_sym_DASH_DASH, - ACTIONS(9414), 1, - anon_sym_DASH2, - STATE(5687), 1, + STATE(5726), 1, sym_comment, - STATE(6265), 1, - sym_block, - STATE(7382), 1, - sym__flag, - STATE(6104), 2, - sym_short_flag, - sym_long_flag, - [198977] = 4, + ACTIONS(5658), 7, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [203134] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5688), 1, + STATE(5727), 1, + sym_comment, + ACTIONS(9498), 6, + sym_raw_string_begin, + sym_identifier, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [203149] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9500), 1, + anon_sym_LBRACE, + STATE(4860), 1, + sym_block, + STATE(4861), 1, + sym_val_closure, + STATE(5031), 1, + sym__blosure, + STATE(5728), 1, sym_comment, - ACTIONS(1763), 2, + STATE(5836), 1, + aux_sym_shebang_repeat1, + [203174] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9502), 1, + anon_sym_LPAREN, + ACTIONS(9506), 1, + anon_sym_DQUOTE2, + STATE(5729), 1, + sym_comment, + STATE(5739), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6311), 1, + sym_expr_interpolated, + ACTIONS(9504), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [203197] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4956), 1, + aux_sym_unquoted_token3, + ACTIONS(8421), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8778), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8780), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8782), 1, + aux_sym__immediate_decimal_token5, + STATE(5730), 1, + sym_comment, + STATE(6318), 1, + sym__immediate_decimal, + [203222] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8421), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8778), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8780), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8782), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9508), 1, + aux_sym_unquoted_token3, + STATE(5731), 1, + sym_comment, + STATE(6318), 1, + sym__immediate_decimal, + [203247] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8579), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8784), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8786), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8788), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9508), 1, + aux_sym_unquoted_token3, + STATE(5732), 1, + sym_comment, + STATE(8149), 1, + sym__immediate_decimal, + [203272] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4722), 1, anon_sym_DOT_DOT2, + ACTIONS(9508), 1, aux_sym_unquoted_token2, - ACTIONS(1765), 5, - anon_sym_LBRACE, + STATE(5733), 1, + sym_comment, + ACTIONS(4724), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(9510), 2, sym_filesize_unit, sym_duration_unit, - [198995] = 4, - ACTIONS(247), 1, + [203293] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5689), 1, + ACTIONS(4956), 1, + aux_sym_unquoted_token3, + ACTIONS(8421), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8778), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8780), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8782), 1, + aux_sym__immediate_decimal_token5, + STATE(5734), 1, sym_comment, - ACTIONS(1890), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1892), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [199013] = 5, - ACTIONS(247), 1, + STATE(6089), 1, + sym__immediate_decimal, + [203318] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9321), 1, - aux_sym__immediate_decimal_token2, - STATE(5690), 1, + ACTIONS(4956), 1, + aux_sym_unquoted_token3, + ACTIONS(8579), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8784), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8786), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8788), 1, + aux_sym__immediate_decimal_token5, + STATE(5735), 1, sym_comment, - ACTIONS(1755), 2, + STATE(8149), 1, + sym__immediate_decimal, + [203343] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4722), 1, anon_sym_DOT_DOT2, + ACTIONS(4956), 1, aux_sym_unquoted_token2, - ACTIONS(1757), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, + STATE(5736), 1, + sym_comment, + ACTIONS(4724), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [199033] = 7, + ACTIONS(9510), 2, + sym_filesize_unit, + sym_duration_unit, + [203364] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2250), 1, + anon_sym_LBRACE, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + STATE(5737), 1, + sym_comment, + ACTIONS(2246), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [203383] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + ACTIONS(2256), 1, + anon_sym_LBRACE, + STATE(5738), 1, + sym_comment, + ACTIONS(2254), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [203402] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9502), 1, + anon_sym_LPAREN, + ACTIONS(9512), 1, + anon_sym_DQUOTE2, + STATE(5739), 1, + sym_comment, + STATE(5953), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6311), 1, + sym_expr_interpolated, + ACTIONS(9504), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [203425] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4902), 1, - anon_sym_DOT, - STATE(1702), 1, - aux_sym_cell_path_repeat1, - STATE(1894), 1, - sym_path, - STATE(5691), 1, + ACTIONS(9514), 1, + sym__newline, + ACTIONS(9516), 1, + anon_sym_SEMI, + ACTIONS(9518), 1, + anon_sym_RPAREN, + STATE(252), 1, + aux_sym__parenthesized_body_repeat1, + STATE(5740), 1, sym_comment, - STATE(7098), 1, - sym_cell_path, - ACTIONS(5814), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [199057] = 8, + STATE(6771), 1, + aux_sym__block_body_repeat1, + STATE(6852), 1, + aux_sym_shebang_repeat1, + [203450] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1962), 1, - sym__entry_separator, - ACTIONS(9420), 1, - anon_sym_DOT, - STATE(5692), 1, + ACTIONS(4956), 1, + aux_sym_unquoted_token3, + ACTIONS(8579), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8784), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8786), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8788), 1, + aux_sym__immediate_decimal_token5, + STATE(5741), 1, sym_comment, - STATE(5950), 1, - aux_sym_cell_path_repeat1, - STATE(6234), 1, - sym_path, - STATE(6947), 1, - sym_cell_path, - ACTIONS(1960), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [199083] = 4, + STATE(7507), 1, + sym__immediate_decimal, + [203475] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(5693), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + ACTIONS(9522), 1, + anon_sym_RBRACK, + STATE(5742), 1, sym_comment, - ACTIONS(1783), 2, + STATE(6129), 1, + aux_sym_shebang_repeat1, + STATE(6831), 1, + sym_val_list, + STATE(7281), 1, + aux_sym_val_table_repeat1, + [203500] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4722), 1, anon_sym_DOT_DOT2, + ACTIONS(9524), 1, aux_sym_unquoted_token2, - ACTIONS(1785), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + STATE(5743), 1, + sym_comment, + ACTIONS(4724), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [199101] = 8, - ACTIONS(247), 1, + ACTIONS(9510), 2, + sym_filesize_unit, + sym_duration_unit, + [203521] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DASH2, - ACTIONS(6538), 1, - anon_sym_DOT, - STATE(3175), 1, - sym_cell_path, - STATE(3482), 1, - aux_sym_cell_path_repeat1, - STATE(3600), 1, - sym_path, - STATE(5694), 1, + ACTIONS(2163), 1, + sym__entry_separator, + ACTIONS(9526), 1, + anon_sym_DOT_DOT2, + STATE(5744), 1, sym_comment, - ACTIONS(963), 2, - anon_sym_DASH_DASH, - anon_sym_in2, - [199127] = 8, + ACTIONS(2157), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9528), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [203542] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9412), 1, + ACTIONS(9530), 1, anon_sym_DASH_DASH, - ACTIONS(9414), 1, + ACTIONS(9532), 1, anon_sym_DASH2, - ACTIONS(9492), 1, + ACTIONS(9534), 1, anon_sym_LBRACE, - STATE(5695), 1, + STATE(5745), 1, sym_comment, - STATE(6605), 1, + STATE(6595), 1, sym_val_record, - STATE(7472), 1, - sym__flag, - STATE(6104), 2, + STATE(7648), 2, sym_short_flag, sym_long_flag, - [199153] = 5, + [203565] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9494), 1, - sym__newline, - ACTIONS(9497), 1, - sym__space, - STATE(5696), 2, + ACTIONS(9502), 1, + anon_sym_LPAREN, + ACTIONS(9536), 1, + anon_sym_DQUOTE2, + STATE(5746), 1, sym_comment, - aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(3553), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_LBRACE, - [199173] = 8, + STATE(5953), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6311), 1, + sym_expr_interpolated, + ACTIONS(9504), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [203588] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1970), 1, - sym__entry_separator, - ACTIONS(9420), 1, - anon_sym_DOT, - STATE(5697), 1, + ACTIONS(6450), 1, + aux_sym_unquoted_token3, + ACTIONS(8421), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8778), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8780), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8782), 1, + aux_sym__immediate_decimal_token5, + STATE(5747), 1, sym_comment, - STATE(5950), 1, - aux_sym_cell_path_repeat1, - STATE(6234), 1, - sym_path, - STATE(6991), 1, - sym_cell_path, - ACTIONS(1968), 2, + STATE(6089), 1, + sym__immediate_decimal, + [203613] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6450), 1, + aux_sym_unquoted_token3, + ACTIONS(8579), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8784), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8786), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8788), 1, + aux_sym__immediate_decimal_token5, + STATE(5748), 1, + sym_comment, + STATE(7507), 1, + sym__immediate_decimal, + [203638] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + ACTIONS(9538), 1, anon_sym_RBRACK, + STATE(5749), 1, + sym_comment, + STATE(6131), 1, + aux_sym_shebang_repeat1, + STATE(6907), 1, + sym_val_list, + STATE(7284), 1, + aux_sym_val_table_repeat1, + [203663] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9534), 1, + anon_sym_LBRACE, + STATE(5750), 1, + sym_comment, + STATE(6709), 1, + sym_val_record, + ACTIONS(9540), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - [199199] = 8, + [203682] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9454), 1, + ACTIONS(9542), 1, + sym_identifier, + ACTIONS(9544), 1, anon_sym_DASH_DASH, - ACTIONS(9456), 1, + ACTIONS(9546), 1, anon_sym_DASH2, - ACTIONS(9500), 1, - sym_identifier, - STATE(5698), 1, + STATE(5751), 1, sym_comment, - STATE(5705), 1, + STATE(5773), 1, aux_sym_ctrl_do_repeat1, - STATE(6126), 1, - sym__flag, - STATE(6104), 2, + STATE(6035), 2, sym_short_flag, sym_long_flag, - [199225] = 4, - ACTIONS(3), 1, + [203705] = 5, + ACTIONS(247), 1, anon_sym_POUND, - STATE(5699), 1, + ACTIONS(9534), 1, + anon_sym_LBRACE, + STATE(5752), 1, sym_comment, - ACTIONS(2250), 3, - ts_builtin_sym_end, + STATE(6742), 1, + sym_val_record, + ACTIONS(9548), 4, sym__newline, anon_sym_SEMI, - ACTIONS(2248), 4, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - aux_sym_unquoted_token4, - [199243] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [203724] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1721), 1, - anon_sym_LBRACE, - ACTIONS(4864), 1, + ACTIONS(1559), 1, aux_sym_unquoted_token2, - ACTIONS(9416), 1, - sym_filesize_unit, - ACTIONS(9418), 1, - sym_duration_unit, - ACTIONS(9502), 1, - anon_sym_DOT_DOT2, - STATE(5700), 1, + ACTIONS(8581), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8583), 1, + aux_sym__immediate_decimal_token5, + STATE(5753), 1, sym_comment, - ACTIONS(9504), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [199269] = 5, + STATE(7519), 1, + sym__immediate_decimal, + ACTIONS(8579), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [203747] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(5701), 1, + ACTIONS(9502), 1, + anon_sym_LPAREN, + ACTIONS(9550), 1, + anon_sym_DQUOTE2, + STATE(5754), 1, sym_comment, - ACTIONS(1030), 3, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - ACTIONS(1032), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [199289] = 8, + STATE(5953), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6311), 1, + sym_expr_interpolated, + ACTIONS(9504), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [203770] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2006), 1, - sym__entry_separator, - ACTIONS(9420), 1, - anon_sym_DOT, - STATE(5702), 1, + STATE(5755), 1, sym_comment, - STATE(5950), 1, - aux_sym_cell_path_repeat1, - STATE(6234), 1, - sym_path, - STATE(6866), 1, - sym_cell_path, - ACTIONS(2004), 2, + ACTIONS(1044), 3, anon_sym_RBRACK, anon_sym_RBRACE, - [199315] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(963), 1, + anon_sym_DOT_DOT2, + ACTIONS(1046), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(9420), 1, - anon_sym_DOT, - STATE(5703), 1, + [203787] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1739), 1, + aux_sym_unquoted_token2, + ACTIONS(9552), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9554), 1, + aux_sym__immediate_decimal_token2, + STATE(5756), 1, sym_comment, - STATE(5832), 1, - sym_cell_path, - STATE(5950), 1, - aux_sym_cell_path_repeat1, - STATE(6234), 1, - sym_path, - ACTIONS(961), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [199341] = 4, + ACTIONS(1741), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [203808] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(5757), 1, + sym_comment, + ACTIONS(9556), 6, + sym_raw_string_begin, + sym_identifier, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [203823] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6182), 1, + anon_sym_LBRACE, + ACTIONS(9530), 1, + anon_sym_DASH_DASH, + ACTIONS(9532), 1, + anon_sym_DASH2, + STATE(5758), 1, + sym_comment, + STATE(7274), 1, + sym_block, + STATE(7581), 1, + sym_short_flag, + STATE(7711), 1, + sym_long_flag, + [203848] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5704), 1, + STATE(5759), 1, sym_comment, - ACTIONS(1890), 3, + ACTIONS(2183), 3, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1892), 4, - anon_sym_LPAREN2, + ACTIONS(2185), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [199359] = 7, + [203865] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9558), 1, + anon_sym_alias, + ACTIONS(9560), 1, + anon_sym_const, + ACTIONS(9562), 1, + anon_sym_def, + ACTIONS(9564), 1, + anon_sym_extern, + ACTIONS(9566), 1, + anon_sym_module, + ACTIONS(9568), 1, + anon_sym_use, + STATE(5760), 1, + sym_comment, + [203890] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + ACTIONS(9570), 1, + anon_sym_RBRACK, + STATE(5761), 1, + sym_comment, + STATE(6081), 1, + aux_sym_shebang_repeat1, + STATE(6913), 1, + sym_val_list, + STATE(7234), 1, + aux_sym_val_table_repeat1, + [203915] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(8403), 1, + anon_sym_DOLLAR, + ACTIONS(8647), 1, + sym_identifier, + STATE(5398), 1, + sym_val_variable, + STATE(5762), 1, + sym_comment, + STATE(6237), 1, + sym__variable_name, + STATE(6282), 1, + sym__assignment_pattern, + [203940] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8567), 1, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(8403), 1, + anon_sym_DOLLAR, + ACTIONS(8647), 1, sym_identifier, - ACTIONS(9506), 1, - anon_sym_DASH_DASH, - ACTIONS(9509), 1, - anon_sym_DASH2, - STATE(6126), 1, - sym__flag, - STATE(5705), 2, + STATE(5398), 1, + sym_val_variable, + STATE(5763), 1, sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(6104), 2, - sym_short_flag, - sym_long_flag, - [199383] = 8, + STATE(6237), 1, + sym__variable_name, + STATE(6283), 1, + sym__assignment_pattern, + [203965] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__entry_separator, - ACTIONS(9420), 1, + ACTIONS(9410), 1, anon_sym_DOT, - STATE(5706), 1, + STATE(5764), 1, sym_comment, - STATE(5950), 1, + STATE(5775), 1, aux_sym_cell_path_repeat1, - STATE(6234), 1, + STATE(6319), 1, sym_path, - STATE(7343), 1, - sym_cell_path, - ACTIONS(1972), 2, + ACTIONS(967), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - [199409] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9454), 1, - anon_sym_DASH_DASH, - ACTIONS(9456), 1, - anon_sym_DASH2, - ACTIONS(9512), 1, - sym_identifier, - STATE(5655), 1, - aux_sym_ctrl_do_repeat1, - STATE(5707), 1, - sym_comment, - STATE(6126), 1, - sym__flag, - STATE(6104), 2, - sym_short_flag, - sym_long_flag, - [199435] = 4, + sym__entry_separator, + sym__table_head_separator, + [203986] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5708), 1, + ACTIONS(9572), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9574), 1, + aux_sym__immediate_decimal_token2, + STATE(5765), 1, sym_comment, - ACTIONS(1739), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1741), 4, + ACTIONS(1739), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1741), 2, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - [199453] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6184), 1, - anon_sym_LBRACE, - ACTIONS(9412), 1, - anon_sym_DASH_DASH, - ACTIONS(9414), 1, - anon_sym_DASH2, - STATE(5709), 1, - sym_comment, - STATE(6219), 1, - sym_block, - STATE(7539), 1, - sym__flag, - STATE(6104), 2, - sym_short_flag, - sym_long_flag, - [199479] = 8, - ACTIONS(247), 1, + [204007] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym_unquoted_token2, - ACTIONS(8299), 1, + ACTIONS(8579), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8784), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8786), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8301), 1, + ACTIONS(8788), 1, aux_sym__immediate_decimal_token5, - ACTIONS(9514), 1, - anon_sym_DOT, - STATE(5710), 1, + ACTIONS(9524), 1, + aux_sym_unquoted_token3, + STATE(5766), 1, sym_comment, - STATE(6710), 1, + STATE(8149), 1, sym__immediate_decimal, - ACTIONS(8297), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [199505] = 8, - ACTIONS(3), 1, + [204032] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1878), 1, - anon_sym_RBRACK, - ACTIONS(1880), 1, - anon_sym_LPAREN2, - ACTIONS(1886), 1, - sym__entry_separator, - ACTIONS(1888), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(9516), 1, + ACTIONS(1559), 1, + aux_sym_unquoted_token2, + ACTIONS(9576), 1, anon_sym_DOT_DOT2, - STATE(5711), 1, + STATE(5767), 1, sym_comment, - ACTIONS(9518), 2, + ACTIONS(1828), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(9578), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [199531] = 3, + [204053] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(5712), 1, + STATE(5768), 1, sym_comment, - ACTIONS(5685), 7, + ACTIONS(9580), 6, sym_raw_string_begin, sym_identifier, - anon_sym_COMMA, anon_sym_GT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [199547] = 7, - ACTIONS(3), 1, + [204068] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9458), 1, - anon_sym_DOT, - STATE(5713), 1, + ACTIONS(6182), 1, + anon_sym_LBRACE, + ACTIONS(9530), 1, + anon_sym_DASH_DASH, + ACTIONS(9532), 1, + anon_sym_DASH2, + STATE(5769), 1, sym_comment, - STATE(5931), 1, - aux_sym_cell_path_repeat1, - STATE(6532), 1, - sym_path, - STATE(7072), 1, - sym_cell_path, - ACTIONS(1976), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [199571] = 8, - ACTIONS(3), 1, + STATE(7040), 1, + sym_block, + STATE(7620), 1, + sym_short_flag, + STATE(7657), 1, + sym_long_flag, + [204093] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1935), 1, - sym__entry_separator, - ACTIONS(9420), 1, - anon_sym_DOT, - STATE(5714), 1, - sym_comment, - STATE(5950), 1, - aux_sym_cell_path_repeat1, - STATE(6234), 1, - sym_path, - STATE(7196), 1, - sym_cell_path, - ACTIONS(1933), 2, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + ACTIONS(9582), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [199597] = 8, + STATE(5770), 1, + sym_comment, + STATE(6084), 1, + aux_sym_shebang_repeat1, + STATE(7223), 1, + sym_val_list, + STATE(7241), 1, + aux_sym_val_table_repeat1, + [204118] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - ACTIONS(9412), 1, + ACTIONS(9530), 1, anon_sym_DASH_DASH, - ACTIONS(9414), 1, + ACTIONS(9532), 1, anon_sym_DASH2, - STATE(5715), 1, + STATE(5771), 1, sym_comment, - STATE(6592), 1, + STATE(7108), 1, sym_block, - STATE(7360), 1, - sym__flag, - STATE(6104), 2, + STATE(7677), 1, sym_short_flag, + STATE(7678), 1, sym_long_flag, - [199623] = 8, + [204143] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2070), 1, - sym__entry_separator, - ACTIONS(9420), 1, - anon_sym_DOT, - STATE(5716), 1, + STATE(5772), 1, sym_comment, - STATE(5950), 1, - aux_sym_cell_path_repeat1, - STATE(6234), 1, - sym_path, - STATE(6876), 1, - sym_cell_path, - ACTIONS(2068), 2, + ACTIONS(2052), 3, anon_sym_RBRACK, anon_sym_RBRACE, - [199649] = 8, + anon_sym_DOT_DOT2, + ACTIONS(2054), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [204160] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, - anon_sym_LBRACE, - ACTIONS(9412), 1, + ACTIONS(9544), 1, anon_sym_DASH_DASH, - ACTIONS(9414), 1, + ACTIONS(9546), 1, anon_sym_DASH2, - STATE(5717), 1, + ACTIONS(9584), 1, + sym_identifier, + STATE(5773), 1, sym_comment, - STATE(6669), 1, - sym_block, - STATE(7362), 1, - sym__flag, - STATE(6104), 2, + STATE(5980), 1, + aux_sym_ctrl_do_repeat1, + STATE(6035), 2, sym_short_flag, sym_long_flag, - [199675] = 8, + [204183] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - ACTIONS(9412), 1, + ACTIONS(9530), 1, anon_sym_DASH_DASH, - ACTIONS(9414), 1, + ACTIONS(9532), 1, anon_sym_DASH2, - STATE(5718), 1, + STATE(5774), 1, sym_comment, - STATE(6268), 1, + STATE(7177), 1, sym_block, - STATE(7403), 1, - sym__flag, - STATE(6104), 2, + STATE(7497), 1, sym_short_flag, + STATE(7670), 1, sym_long_flag, - [199701] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5719), 1, - sym_comment, - ACTIONS(5653), 7, - sym_raw_string_begin, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [199717] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5720), 1, - sym_comment, - ACTIONS(5657), 7, - sym_raw_string_begin, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [199733] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5721), 1, - sym_comment, - ACTIONS(1890), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1892), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [199751] = 8, + [204208] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2084), 1, - sym__entry_separator, - ACTIONS(9420), 1, + ACTIONS(9586), 1, anon_sym_DOT, - STATE(5722), 1, - sym_comment, - STATE(5950), 1, - aux_sym_cell_path_repeat1, - STATE(6234), 1, + STATE(6319), 1, sym_path, - STATE(7028), 1, - sym_cell_path, - ACTIONS(2082), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [199777] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1986), 1, - sym__entry_separator, - ACTIONS(9420), 1, - anon_sym_DOT, - STATE(5723), 1, + STATE(5775), 2, sym_comment, - STATE(5950), 1, aux_sym_cell_path_repeat1, - STATE(6234), 1, - sym_path, - STATE(7344), 1, - sym_cell_path, - ACTIONS(1984), 2, + ACTIONS(971), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - [199803] = 4, - ACTIONS(247), 1, + sym__entry_separator, + sym__table_head_separator, + [204227] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5724), 1, + ACTIONS(4866), 1, + aux_sym_unquoted_token3, + ACTIONS(8421), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8778), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8780), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8782), 1, + aux_sym__immediate_decimal_token5, + STATE(5776), 1, sym_comment, - ACTIONS(1755), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1757), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [199821] = 8, + STATE(6089), 1, + sym__immediate_decimal, + [204252] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1866), 1, - anon_sym_RBRACK, - ACTIONS(1868), 1, - anon_sym_LPAREN2, - ACTIONS(1874), 1, - sym__entry_separator, - ACTIONS(9520), 1, - anon_sym_DOT_DOT2, - STATE(5725), 1, + ACTIONS(4866), 1, + aux_sym_unquoted_token3, + ACTIONS(8579), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8784), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8786), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8788), 1, + aux_sym__immediate_decimal_token5, + STATE(5777), 1, sym_comment, - ACTIONS(9522), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [199847] = 8, + STATE(7507), 1, + sym__immediate_decimal, + [204277] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - ACTIONS(9412), 1, + ACTIONS(9530), 1, anon_sym_DASH_DASH, - ACTIONS(9414), 1, + ACTIONS(9532), 1, anon_sym_DASH2, - STATE(5726), 1, + STATE(5778), 1, sym_comment, - STATE(6270), 1, + STATE(6856), 1, sym_block, - STATE(7351), 1, - sym__flag, - STATE(6104), 2, - sym_short_flag, + STATE(7457), 1, sym_long_flag, - [199873] = 8, - ACTIONS(3), 1, + STATE(7579), 1, + sym_short_flag, + [204302] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2100), 1, - sym__entry_separator, - ACTIONS(9420), 1, - anon_sym_DOT, - STATE(5727), 1, + ACTIONS(6182), 1, + anon_sym_LBRACE, + ACTIONS(9530), 1, + anon_sym_DASH_DASH, + ACTIONS(9532), 1, + anon_sym_DASH2, + STATE(5779), 1, sym_comment, - STATE(5950), 1, - aux_sym_cell_path_repeat1, - STATE(6234), 1, - sym_path, - STATE(7052), 1, - sym_cell_path, - ACTIONS(2098), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [199899] = 8, - ACTIONS(3), 1, + STATE(6954), 1, + sym_block, + STATE(7479), 1, + sym_long_flag, + STATE(7663), 1, + sym_short_flag, + [204327] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1915), 1, - sym__entry_separator, - ACTIONS(9420), 1, - anon_sym_DOT, - STATE(5728), 1, + ACTIONS(6182), 1, + anon_sym_LBRACE, + ACTIONS(9530), 1, + anon_sym_DASH_DASH, + ACTIONS(9532), 1, + anon_sym_DASH2, + STATE(5780), 1, sym_comment, - STATE(5950), 1, - aux_sym_cell_path_repeat1, - STATE(6234), 1, - sym_path, - STATE(6905), 1, - sym_cell_path, - ACTIONS(1913), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [199925] = 8, - ACTIONS(3), 1, + STATE(7204), 1, + sym_block, + STATE(7513), 1, + sym_short_flag, + STATE(7514), 1, + sym_long_flag, + [204352] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1946), 1, - sym__entry_separator, - ACTIONS(9420), 1, - anon_sym_DOT, - STATE(5729), 1, + ACTIONS(6182), 1, + anon_sym_LBRACE, + ACTIONS(9530), 1, + anon_sym_DASH_DASH, + ACTIONS(9532), 1, + anon_sym_DASH2, + STATE(5781), 1, sym_comment, - STATE(5950), 1, - aux_sym_cell_path_repeat1, - STATE(6234), 1, - sym_path, - STATE(7332), 1, - sym_cell_path, - ACTIONS(1944), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [199951] = 8, - ACTIONS(3), 1, + STATE(7214), 1, + sym_block, + STATE(7526), 1, + sym_short_flag, + STATE(7531), 1, + sym_long_flag, + [204377] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1990), 1, - sym__entry_separator, - ACTIONS(9420), 1, - anon_sym_DOT, - STATE(5730), 1, + ACTIONS(1661), 1, + aux_sym_unquoted_token2, + ACTIONS(8581), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8583), 1, + aux_sym__immediate_decimal_token5, + STATE(5782), 1, sym_comment, - STATE(5950), 1, - aux_sym_cell_path_repeat1, - STATE(6234), 1, - sym_path, - STATE(6751), 1, - sym_cell_path, - ACTIONS(1988), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [199977] = 8, - ACTIONS(3), 1, + STATE(7764), 1, + sym__immediate_decimal, + ACTIONS(8579), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [204400] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2074), 1, - sym__entry_separator, - ACTIONS(9420), 1, - anon_sym_DOT, - STATE(5731), 1, + ACTIONS(6182), 1, + anon_sym_LBRACE, + ACTIONS(9530), 1, + anon_sym_DASH_DASH, + ACTIONS(9532), 1, + anon_sym_DASH2, + STATE(5783), 1, sym_comment, - STATE(5950), 1, - aux_sym_cell_path_repeat1, - STATE(6234), 1, - sym_path, - STATE(6877), 1, - sym_cell_path, - ACTIONS(2072), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [200003] = 8, + STATE(7261), 1, + sym_block, + STATE(7567), 1, + sym_short_flag, + STATE(7569), 1, + sym_long_flag, + [204425] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2104), 1, - sym__entry_separator, - ACTIONS(9420), 1, - anon_sym_DOT, - STATE(5732), 1, - sym_comment, - STATE(5950), 1, - aux_sym_cell_path_repeat1, - STATE(6234), 1, - sym_path, - STATE(7060), 1, - sym_cell_path, - ACTIONS(2102), 2, + ACTIONS(7371), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [200029] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1911), 1, + ACTIONS(7373), 1, sym__entry_separator, - ACTIONS(9420), 1, + ACTIONS(9396), 1, anon_sym_DOT, - STATE(5733), 1, + STATE(5784), 1, sym_comment, - STATE(5950), 1, + STATE(5997), 1, aux_sym_cell_path_repeat1, - STATE(6234), 1, + STATE(6783), 1, sym_path, - STATE(6897), 1, + STATE(7511), 1, sym_cell_path, - ACTIONS(1907), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [200055] = 8, + [204450] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, - anon_sym_LBRACE, - ACTIONS(9412), 1, - anon_sym_DASH_DASH, - ACTIONS(9414), 1, - anon_sym_DASH2, - STATE(5734), 1, + STATE(5785), 1, sym_comment, - STATE(6272), 1, - sym_block, - STATE(7390), 1, - sym__flag, - STATE(6104), 2, - sym_short_flag, - sym_long_flag, - [200081] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1721), 1, - anon_sym_in2, - ACTIONS(4708), 1, + ACTIONS(1765), 2, anon_sym_DOT_DOT2, - ACTIONS(4864), 1, aux_sym_unquoted_token2, - ACTIONS(9524), 1, - sym_filesize_unit, - ACTIONS(9526), 1, - sym_duration_unit, - STATE(5735), 1, - sym_comment, - ACTIONS(4710), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [200107] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1866), 1, - anon_sym_DASH2, - ACTIONS(9528), 1, - anon_sym_DOT_DOT2, - STATE(5736), 1, - sym_comment, - ACTIONS(1874), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(9530), 2, + ACTIONS(1767), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [200128] = 5, - ACTIONS(247), 1, + [204467] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6184), 1, - anon_sym_LBRACE, - STATE(5737), 1, + ACTIONS(9589), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9591), 1, + aux_sym__immediate_decimal_token2, + STATE(5786), 1, sym_comment, - STATE(6236), 1, - sym_block, - ACTIONS(9532), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1739), 2, anon_sym_RBRACE, - [200147] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - ACTIONS(9536), 1, - anon_sym_RBRACK, - STATE(5738), 1, - sym_comment, - STATE(6183), 1, - aux_sym_shebang_repeat1, - STATE(6858), 1, - sym_val_list, - STATE(7246), 1, - aux_sym_val_table_repeat1, - [200172] = 4, + aux_sym__unquoted_in_record_token2, + ACTIONS(1741), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [204488] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2437), 1, + ACTIONS(1847), 1, anon_sym_DASH2, - STATE(5739), 1, + STATE(5787), 1, sym_comment, - ACTIONS(2439), 5, + ACTIONS(1851), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [200189] = 8, + [204505] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - ACTIONS(9538), 1, + ACTIONS(9593), 1, anon_sym_RBRACK, - STATE(5740), 1, + STATE(5788), 1, sym_comment, - STATE(6184), 1, + STATE(6087), 1, aux_sym_shebang_repeat1, - STATE(6862), 1, + STATE(7076), 1, sym_val_list, - STATE(7248), 1, + STATE(7237), 1, aux_sym_val_table_repeat1, - [200214] = 4, + [204530] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5741), 1, + ACTIONS(3690), 1, + sym__space, + STATE(5789), 1, sym_comment, - ACTIONS(1735), 3, + ACTIONS(3688), 5, + sym__newline, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_LBRACE, + [204547] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1028), 1, + sym__entry_separator, + ACTIONS(9595), 1, + anon_sym_DOT_DOT2, + STATE(5790), 1, + sym_comment, + ACTIONS(1026), 2, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1737), 3, + ACTIONS(9597), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [200231] = 5, + [204568] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - STATE(5742), 1, - sym_comment, - STATE(6242), 1, - sym_block, - ACTIONS(9532), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [200250] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2395), 1, + ACTIONS(9530), 1, + anon_sym_DASH_DASH, + ACTIONS(9532), 1, anon_sym_DASH2, - STATE(5743), 1, + STATE(5791), 1, sym_comment, - ACTIONS(2397), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [200267] = 7, + STATE(6978), 1, + sym_block, + STATE(7462), 1, + sym_short_flag, + STATE(7496), 1, + sym_long_flag, + [204593] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9540), 1, + ACTIONS(9502), 1, anon_sym_LPAREN, - ACTIONS(9544), 1, + ACTIONS(9599), 1, anon_sym_DQUOTE2, - STATE(5744), 1, + STATE(5792), 1, sym_comment, - STATE(5748), 1, + STATE(5796), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6665), 1, + STATE(6311), 1, sym_expr_interpolated, - ACTIONS(9542), 2, + ACTIONS(9504), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [200290] = 8, + [204616] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8297), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8499), 1, + ACTIONS(4866), 1, aux_sym_unquoted_token3, - ACTIONS(8877), 1, + ACTIONS(8421), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8778), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8879), 1, + ACTIONS(8780), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8881), 1, + ACTIONS(8782), 1, aux_sym__immediate_decimal_token5, - STATE(5745), 1, + STATE(5793), 1, sym_comment, - STATE(6732), 1, + STATE(6318), 1, sym__immediate_decimal, - [200315] = 8, + [204641] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8499), 1, + ACTIONS(4866), 1, aux_sym_unquoted_token3, - ACTIONS(8557), 1, + ACTIONS(8579), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8792), 1, + ACTIONS(8784), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8794), 1, + ACTIONS(8786), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8796), 1, + ACTIONS(8788), 1, aux_sym__immediate_decimal_token5, - STATE(5746), 1, + STATE(5794), 1, sym_comment, - STATE(7655), 1, + STATE(8149), 1, sym__immediate_decimal, - [200340] = 5, - ACTIONS(3), 1, + [204666] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - ACTIONS(2224), 1, - anon_sym_LBRACE, - STATE(5747), 1, + ACTIONS(4722), 1, + anon_sym_DOT_DOT2, + ACTIONS(4866), 1, + aux_sym_unquoted_token2, + STATE(5795), 1, sym_comment, - ACTIONS(2222), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [200359] = 7, + ACTIONS(4724), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(9510), 2, + sym_filesize_unit, + sym_duration_unit, + [204687] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9540), 1, + ACTIONS(9502), 1, anon_sym_LPAREN, - ACTIONS(9546), 1, + ACTIONS(9601), 1, anon_sym_DQUOTE2, - STATE(5748), 1, + STATE(5796), 1, sym_comment, - STATE(5805), 1, + STATE(5953), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6665), 1, + STATE(6311), 1, sym_expr_interpolated, - ACTIONS(9542), 2, + ACTIONS(9504), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [200382] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4864), 1, - aux_sym_unquoted_token3, - ACTIONS(8297), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8877), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8879), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8881), 1, - aux_sym__immediate_decimal_token5, - STATE(5749), 1, - sym_comment, - STATE(6093), 1, - sym__immediate_decimal, - [200407] = 8, + [204710] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - ACTIONS(9548), 1, + ACTIONS(9603), 1, anon_sym_RBRACK, - STATE(5750), 1, + STATE(5797), 1, sym_comment, - STATE(6185), 1, + STATE(6155), 1, aux_sym_shebang_repeat1, - STATE(6884), 1, + STATE(7190), 1, sym_val_list, - STATE(7252), 1, + STATE(7306), 1, aux_sym_val_table_repeat1, - [200432] = 8, - ACTIONS(3), 1, + [204735] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4864), 1, - aux_sym_unquoted_token3, - ACTIONS(8557), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8792), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8794), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8796), 1, - aux_sym__immediate_decimal_token5, - STATE(5751), 1, + ACTIONS(6182), 1, + anon_sym_LBRACE, + ACTIONS(9530), 1, + anon_sym_DASH_DASH, + ACTIONS(9532), 1, + anon_sym_DASH2, + STATE(5798), 1, sym_comment, - STATE(7475), 1, - sym__immediate_decimal, - [200457] = 8, + STATE(7005), 1, + sym_block, + STATE(7548), 1, + sym_short_flag, + STATE(7554), 1, + sym_long_flag, + [204760] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - ACTIONS(9550), 1, - anon_sym_RBRACK, - STATE(5752), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(5799), 1, sym_comment, - STATE(6172), 1, - aux_sym_shebang_repeat1, - STATE(7210), 1, - aux_sym_val_table_repeat1, - STATE(7324), 1, - sym_val_list, - [200482] = 4, + STATE(6252), 1, + sym_block, + ACTIONS(9605), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [204779] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2004), 1, + ACTIONS(2456), 1, anon_sym_DASH2, - STATE(5753), 1, + STATE(5800), 1, sym_comment, - ACTIONS(2006), 5, + ACTIONS(2458), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [200499] = 8, + [204796] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(5801), 1, + sym_comment, + STATE(6291), 1, + sym_block, + ACTIONS(9607), 4, sym__newline, - ACTIONS(9534), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [204815] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, anon_sym_LBRACK, - ACTIONS(9552), 1, + ACTIONS(9609), 1, anon_sym_RBRACK, - STATE(5754), 1, + STATE(5802), 1, sym_comment, - STATE(6186), 1, + STATE(6156), 1, aux_sym_shebang_repeat1, - STATE(6889), 1, + STATE(7195), 1, sym_val_list, - STATE(7254), 1, + STATE(7308), 1, aux_sym_val_table_repeat1, - [200524] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9540), 1, - anon_sym_LPAREN, - ACTIONS(9554), 1, - anon_sym_DQUOTE2, - STATE(5755), 1, - sym_comment, - STATE(5828), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6665), 1, - sym_expr_interpolated, - ACTIONS(9542), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [200547] = 4, + [204840] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2343), 1, - anon_sym_DASH2, - STATE(5756), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(5803), 1, sym_comment, - ACTIONS(2345), 5, - ts_builtin_sym_end, + STATE(6292), 1, + sym_block, + ACTIONS(9607), 4, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [200564] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [204859] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - ACTIONS(9556), 1, - anon_sym_RBRACK, - STATE(5757), 1, + ACTIONS(6182), 1, + anon_sym_LBRACE, + ACTIONS(9530), 1, + anon_sym_DASH_DASH, + ACTIONS(9532), 1, + anon_sym_DASH2, + STATE(5804), 1, sym_comment, - STATE(6170), 1, - aux_sym_shebang_repeat1, - STATE(7175), 1, - sym_val_list, - STATE(7200), 1, - aux_sym_val_table_repeat1, - [200589] = 4, + STATE(7036), 1, + sym_block, + STATE(7561), 1, + sym_short_flag, + STATE(7582), 1, + sym_long_flag, + [204884] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5022), 1, + ACTIONS(6182), 1, + anon_sym_LBRACE, + ACTIONS(9530), 1, + anon_sym_DASH_DASH, + ACTIONS(9532), 1, anon_sym_DASH2, - STATE(5758), 1, + STATE(5805), 1, sym_comment, - ACTIONS(5020), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [200606] = 7, - ACTIONS(3), 1, + STATE(7057), 1, + sym_block, + STATE(7615), 1, + sym_short_flag, + STATE(7616), 1, + sym_long_flag, + [204909] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9540), 1, - anon_sym_LPAREN, - ACTIONS(9558), 1, - anon_sym_DQUOTE2, - STATE(5759), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + ACTIONS(9530), 1, + anon_sym_DASH_DASH, + ACTIONS(9532), 1, + anon_sym_DASH2, + STATE(5806), 1, sym_comment, - STATE(5763), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6665), 1, - sym_expr_interpolated, - ACTIONS(9542), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [200629] = 8, - ACTIONS(3), 1, + STATE(6345), 1, + sym_block, + STATE(7510), 1, + sym_short_flag, + STATE(7512), 1, + sym_long_flag, + [204934] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6458), 1, - aux_sym_unquoted_token3, - ACTIONS(8297), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8877), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8879), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8881), 1, - aux_sym__immediate_decimal_token5, - STATE(5760), 1, + STATE(5807), 1, sym_comment, - STATE(6732), 1, - sym__immediate_decimal, - [200654] = 8, - ACTIONS(3), 1, + ACTIONS(1739), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1741), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [204951] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6458), 1, - aux_sym_unquoted_token3, - ACTIONS(8557), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8792), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8794), 1, + ACTIONS(1559), 1, + aux_sym_unquoted_token2, + ACTIONS(8581), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8796), 1, + ACTIONS(8583), 1, aux_sym__immediate_decimal_token5, - STATE(5761), 1, + STATE(5808), 1, sym_comment, - STATE(7655), 1, + STATE(7766), 1, sym__immediate_decimal, - [200679] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5616), 1, - aux_sym_unquoted_token3, - ACTIONS(8297), 1, + ACTIONS(8579), 2, aux_sym__immediate_decimal_token1, - ACTIONS(8877), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8879), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8881), 1, - aux_sym__immediate_decimal_token5, - STATE(5762), 1, - sym_comment, - STATE(6732), 1, - sym__immediate_decimal, - [200704] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9540), 1, - anon_sym_LPAREN, - ACTIONS(9560), 1, - anon_sym_DQUOTE2, - STATE(5763), 1, - sym_comment, - STATE(5805), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6665), 1, - sym_expr_interpolated, - ACTIONS(9542), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [200727] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2181), 1, - sym__entry_separator, - ACTIONS(9562), 1, - anon_sym_DOT_DOT2, - STATE(5764), 1, - sym_comment, - ACTIONS(2175), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9564), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [200748] = 8, + [204974] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - ACTIONS(9566), 1, - anon_sym_RBRACK, - STATE(5765), 1, + STATE(5809), 1, sym_comment, - STATE(6188), 1, - aux_sym_shebang_repeat1, - STATE(6913), 1, - sym_val_list, - STATE(7260), 1, - aux_sym_val_table_repeat1, - [200773] = 8, + ACTIONS(9611), 6, + sym_raw_string_begin, + sym_identifier, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [204989] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - ACTIONS(9568), 1, - anon_sym_RBRACK, - STATE(5766), 1, + STATE(5810), 1, sym_comment, - STATE(6189), 1, - aux_sym_shebang_repeat1, - STATE(6918), 1, - sym_val_list, - STATE(7262), 1, - aux_sym_val_table_repeat1, - [200798] = 6, + ACTIONS(9613), 6, + sym_raw_string_begin, + sym_identifier, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [205004] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1755), 1, + ACTIONS(1765), 1, aux_sym_unquoted_token2, - ACTIONS(9570), 1, + ACTIONS(9615), 1, anon_sym_DOT, - ACTIONS(9572), 1, + ACTIONS(9617), 1, aux_sym__immediate_decimal_token2, - STATE(5767), 1, + STATE(5811), 1, sym_comment, - ACTIONS(1757), 3, + ACTIONS(1767), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [200819] = 4, + [205025] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2500), 1, + ACTIONS(6182), 1, + anon_sym_LBRACE, + ACTIONS(9530), 1, + anon_sym_DASH_DASH, + ACTIONS(9532), 1, anon_sym_DASH2, - STATE(5768), 1, + STATE(5812), 1, sym_comment, - ACTIONS(2502), 5, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - sym__table_head_separator, - [200836] = 3, - ACTIONS(247), 1, + STATE(7073), 1, + sym_block, + STATE(7623), 1, + sym_short_flag, + STATE(7625), 1, + sym_long_flag, + [205050] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5769), 1, + ACTIONS(9502), 1, + anon_sym_LPAREN, + ACTIONS(9619), 1, + anon_sym_DQUOTE2, + STATE(5813), 1, sym_comment, - ACTIONS(9574), 6, - sym_raw_string_begin, - sym_identifier, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [200851] = 3, - ACTIONS(247), 1, + STATE(5816), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6311), 1, + sym_expr_interpolated, + ACTIONS(9504), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [205073] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5770), 1, + ACTIONS(5580), 1, + aux_sym_unquoted_token3, + ACTIONS(8421), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8778), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8780), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8782), 1, + aux_sym__immediate_decimal_token5, + STATE(5814), 1, sym_comment, - ACTIONS(9576), 6, - sym_raw_string_begin, - sym_identifier, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [200866] = 7, + STATE(6318), 1, + sym__immediate_decimal, + [205098] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5580), 1, + aux_sym_unquoted_token3, + ACTIONS(8579), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8784), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8786), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8788), 1, + aux_sym__immediate_decimal_token5, + STATE(5815), 1, + sym_comment, + STATE(8149), 1, + sym__immediate_decimal, + [205123] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9540), 1, + ACTIONS(9502), 1, anon_sym_LPAREN, - ACTIONS(9578), 1, + ACTIONS(9621), 1, anon_sym_DQUOTE2, - STATE(5771), 1, + STATE(5816), 1, sym_comment, - STATE(5772), 1, + STATE(5953), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6665), 1, + STATE(6311), 1, sym_expr_interpolated, - ACTIONS(9542), 2, + ACTIONS(9504), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [200889] = 7, + [205146] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + ACTIONS(9623), 1, + anon_sym_RBRACK, + STATE(5817), 1, + sym_comment, + STATE(6159), 1, + aux_sym_shebang_repeat1, + STATE(7316), 1, + aux_sym_val_table_repeat1, + STATE(7447), 1, + sym_val_list, + [205171] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9540), 1, - anon_sym_LPAREN, - ACTIONS(9580), 1, - anon_sym_DQUOTE2, - STATE(5772), 1, + ACTIONS(2270), 1, + anon_sym_LBRACE, + STATE(5818), 1, sym_comment, - STATE(5805), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6665), 1, - sym_expr_interpolated, - ACTIONS(9542), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [200912] = 7, + ACTIONS(2268), 5, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + aux_sym_unquoted_token4, + [205188] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym_unquoted_token2, - ACTIONS(8559), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8561), 1, - aux_sym__immediate_decimal_token5, - STATE(5773), 1, + ACTIONS(6683), 1, + anon_sym_DOT_DOT2, + STATE(5819), 1, sym_comment, - STATE(7404), 1, - sym__immediate_decimal, - ACTIONS(8557), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [200935] = 8, + ACTIONS(6685), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5926), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [205207] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6182), 1, + anon_sym_LBRACE, + ACTIONS(9530), 1, + anon_sym_DASH_DASH, + ACTIONS(9532), 1, + anon_sym_DASH2, + STATE(5820), 1, + sym_comment, + STATE(7097), 1, + sym_block, + STATE(7643), 1, + sym_short_flag, + STATE(7645), 1, + sym_long_flag, + [205232] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(9514), 1, sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - ACTIONS(9582), 1, - anon_sym_RBRACK, - STATE(5774), 1, + ACTIONS(9516), 1, + anon_sym_SEMI, + ACTIONS(9625), 1, + anon_sym_RPAREN, + STATE(252), 1, + aux_sym__parenthesized_body_repeat1, + STATE(5821), 1, sym_comment, - STATE(6190), 1, + STATE(6325), 1, + aux_sym__block_body_repeat1, + STATE(6852), 1, aux_sym_shebang_repeat1, - STATE(6935), 1, - sym_val_list, - STATE(7268), 1, - aux_sym_val_table_repeat1, - [200960] = 8, + [205257] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - ACTIONS(9584), 1, + ACTIONS(9627), 1, anon_sym_RBRACK, - STATE(5775), 1, + STATE(5822), 1, sym_comment, - STATE(6191), 1, + STATE(6160), 1, aux_sym_shebang_repeat1, - STATE(6940), 1, + STATE(6822), 1, sym_val_list, - STATE(7271), 1, + STATE(7319), 1, aux_sym_val_table_repeat1, - [200985] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9540), 1, - anon_sym_LPAREN, - ACTIONS(9586), 1, - anon_sym_DQUOTE2, - STATE(5776), 1, - sym_comment, - STATE(5805), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6665), 1, - sym_expr_interpolated, - ACTIONS(9542), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [201008] = 7, - ACTIONS(3), 1, + [205282] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9540), 1, - anon_sym_LPAREN, - ACTIONS(9588), 1, - anon_sym_DQUOTE2, - STATE(5777), 1, + ACTIONS(1812), 1, + aux_sym_unquoted_token2, + ACTIONS(9629), 1, + anon_sym_DOT_DOT2, + STATE(5823), 1, sym_comment, - STATE(5820), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6665), 1, - sym_expr_interpolated, - ACTIONS(9542), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [201031] = 4, + ACTIONS(1810), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(9631), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [205303] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2090), 1, + ACTIONS(2464), 1, anon_sym_DASH2, - STATE(5778), 1, + STATE(5824), 1, sym_comment, - ACTIONS(2092), 5, + ACTIONS(2466), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [201048] = 4, + [205320] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2351), 1, + ACTIONS(2464), 1, anon_sym_DASH2, - STATE(5779), 1, + STATE(5825), 1, sym_comment, - ACTIONS(2353), 5, + ACTIONS(2466), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [201065] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9540), 1, - anon_sym_LPAREN, - ACTIONS(9590), 1, - anon_sym_DQUOTE2, - STATE(5780), 1, - sym_comment, - STATE(5782), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6665), 1, - sym_expr_interpolated, - ACTIONS(9542), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [201088] = 4, + [205337] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1913), 1, - anon_sym_DASH2, - STATE(5781), 1, + ACTIONS(6683), 1, + anon_sym_DOT_DOT2, + STATE(5826), 1, sym_comment, - ACTIONS(1915), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [201105] = 7, + ACTIONS(6685), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5933), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [205356] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9540), 1, + ACTIONS(9502), 1, anon_sym_LPAREN, - ACTIONS(9592), 1, + ACTIONS(9633), 1, anon_sym_DQUOTE2, - STATE(5782), 1, + STATE(5827), 1, sym_comment, - STATE(5805), 1, + STATE(5832), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6665), 1, + STATE(6311), 1, sym_expr_interpolated, - ACTIONS(9542), 2, + ACTIONS(9504), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [201128] = 8, + [205379] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - ACTIONS(9594), 1, - anon_sym_RBRACK, - STATE(5783), 1, + ACTIONS(9500), 1, + anon_sym_LBRACE, + STATE(4860), 1, + sym_block, + STATE(4861), 1, + sym_val_closure, + STATE(5045), 1, + sym__blosure, + STATE(5828), 1, sym_comment, - STATE(6192), 1, + STATE(5999), 1, aux_sym_shebang_repeat1, - STATE(6956), 1, - sym_val_list, - STATE(7275), 1, - aux_sym_val_table_repeat1, - [201153] = 8, + [205404] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - ACTIONS(9596), 1, - anon_sym_RBRACK, - STATE(5784), 1, + ACTIONS(2472), 1, + anon_sym_DASH2, + STATE(5829), 1, sym_comment, - STATE(6193), 1, - aux_sym_shebang_repeat1, - STATE(6961), 1, - sym_val_list, - STATE(7277), 1, - aux_sym_val_table_repeat1, - [201178] = 8, + ACTIONS(2474), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [205421] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8297), 1, + ACTIONS(8421), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8877), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8879), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8881), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9598), 1, + ACTIONS(8635), 1, aux_sym_unquoted_token3, - STATE(5785), 1, - sym_comment, - STATE(6732), 1, - sym__immediate_decimal, - [201203] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1579), 1, - aux_sym_unquoted_token2, - ACTIONS(8559), 1, + ACTIONS(8778), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8780), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8561), 1, + ACTIONS(8782), 1, aux_sym__immediate_decimal_token5, - STATE(5786), 1, + STATE(5830), 1, sym_comment, - STATE(7982), 1, + STATE(6318), 1, sym__immediate_decimal, - ACTIONS(8557), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [201226] = 8, + [205446] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8557), 1, + ACTIONS(8579), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8792), 1, + ACTIONS(8635), 1, + aux_sym_unquoted_token3, + ACTIONS(8784), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8794), 1, + ACTIONS(8786), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8796), 1, + ACTIONS(8788), 1, aux_sym__immediate_decimal_token5, - ACTIONS(9598), 1, - aux_sym_unquoted_token3, - STATE(5787), 1, + STATE(5831), 1, sym_comment, - STATE(7655), 1, + STATE(8149), 1, sym__immediate_decimal, - [201251] = 7, + [205471] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9540), 1, + ACTIONS(9502), 1, anon_sym_LPAREN, - ACTIONS(9600), 1, + ACTIONS(9635), 1, anon_sym_DQUOTE2, - STATE(5788), 1, + STATE(5832), 1, sym_comment, - STATE(5790), 1, + STATE(5953), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6665), 1, + STATE(6311), 1, sym_expr_interpolated, - ACTIONS(9542), 2, + ACTIONS(9504), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [201274] = 8, + [205494] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - ACTIONS(9602), 1, + ACTIONS(9637), 1, anon_sym_RBRACK, - STATE(5789), 1, + STATE(5833), 1, sym_comment, - STATE(6145), 1, + STATE(6164), 1, aux_sym_shebang_repeat1, - STATE(7127), 1, - aux_sym_val_table_repeat1, - STATE(7140), 1, + STATE(6846), 1, sym_val_list, - [201299] = 7, + STATE(7323), 1, + aux_sym_val_table_repeat1, + [205519] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9540), 1, - anon_sym_LPAREN, - ACTIONS(9604), 1, - anon_sym_DQUOTE2, - STATE(5790), 1, + STATE(5834), 1, sym_comment, - STATE(5805), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6665), 1, - sym_expr_interpolated, - ACTIONS(9542), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [201322] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - ACTIONS(9606), 1, + ACTIONS(2118), 3, anon_sym_RBRACK, - STATE(5791), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(2120), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [205536] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6184), 1, + sym__entry_separator, + ACTIONS(9396), 1, + anon_sym_DOT, + ACTIONS(9639), 1, + anon_sym_RBRACE, + STATE(5835), 1, sym_comment, - STATE(6194), 1, - aux_sym_shebang_repeat1, - STATE(6980), 1, - sym_val_list, - STATE(7282), 1, - aux_sym_val_table_repeat1, - [201347] = 8, + STATE(5997), 1, + aux_sym_cell_path_repeat1, + STATE(6783), 1, + sym_path, + STATE(7178), 1, + sym_cell_path, + [205561] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - ACTIONS(9608), 1, - anon_sym_RBRACK, - STATE(5792), 1, - sym_comment, - STATE(6195), 1, + ACTIONS(9500), 1, + anon_sym_LBRACE, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(6984), 1, - sym_val_list, - STATE(7284), 1, - aux_sym_val_table_repeat1, - [201372] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(8487), 1, - anon_sym_DOLLAR, - ACTIONS(8649), 1, - sym_identifier, - STATE(5480), 1, - sym_val_variable, - STATE(5793), 1, - sym_comment, - STATE(6099), 1, - sym__variable_name, - STATE(6650), 1, - sym__assignment_pattern, - [201397] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5176), 1, - anon_sym_DASH2, - STATE(5794), 1, + STATE(4860), 1, + sym_block, + STATE(4861), 1, + sym_val_closure, + STATE(5117), 1, + sym__blosure, + STATE(5836), 1, sym_comment, - ACTIONS(5174), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [201414] = 8, + [205586] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9464), 1, + ACTIONS(9442), 1, anon_sym_def, - ACTIONS(9466), 1, + ACTIONS(9444), 1, anon_sym_extern, - ACTIONS(9468), 1, + ACTIONS(9446), 1, anon_sym_module, - ACTIONS(9470), 1, + ACTIONS(9448), 1, anon_sym_use, - ACTIONS(9610), 1, + ACTIONS(9642), 1, anon_sym_alias, - ACTIONS(9612), 1, + ACTIONS(9644), 1, anon_sym_const, - STATE(5795), 1, - sym_comment, - [201439] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2250), 1, - anon_sym_LBRACE, - STATE(5796), 1, - sym_comment, - ACTIONS(2248), 5, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - aux_sym_unquoted_token4, - [201456] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - ACTIONS(9614), 1, - anon_sym_RBRACK, - STATE(5797), 1, + STATE(5837), 1, sym_comment, - STATE(6196), 1, - aux_sym_shebang_repeat1, - STATE(6999), 1, - sym_val_list, - STATE(7289), 1, - aux_sym_val_table_repeat1, - [201481] = 8, + [205611] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - ACTIONS(9616), 1, + ACTIONS(9646), 1, anon_sym_RBRACK, - STATE(5798), 1, + STATE(5838), 1, sym_comment, - STATE(6197), 1, + STATE(6165), 1, aux_sym_shebang_repeat1, - STATE(7003), 1, + STATE(6849), 1, sym_val_list, - STATE(7292), 1, + STATE(7325), 1, aux_sym_val_table_repeat1, - [201506] = 4, + [205636] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5180), 1, + ACTIONS(2486), 1, anon_sym_DASH2, - STATE(5799), 1, + STATE(5839), 1, sym_comment, - ACTIONS(5178), 5, + ACTIONS(2488), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [201523] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6685), 1, - anon_sym_DOT_DOT2, - STATE(5800), 1, - sym_comment, - ACTIONS(6687), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5936), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [201542] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - ACTIONS(9618), 1, - anon_sym_RBRACK, - STATE(5801), 1, - sym_comment, - STATE(6143), 1, - aux_sym_shebang_repeat1, - STATE(7051), 1, - sym_val_list, - STATE(7121), 1, - aux_sym_val_table_repeat1, - [201567] = 8, + [205653] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - ACTIONS(9620), 1, - anon_sym_RBRACK, - STATE(5802), 1, + ACTIONS(2510), 1, + anon_sym_DASH2, + STATE(5840), 1, sym_comment, - STATE(6198), 1, - aux_sym_shebang_repeat1, - STATE(7015), 1, - sym_val_list, - STATE(7297), 1, - aux_sym_val_table_repeat1, - [201592] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(2512), 5, + ts_builtin_sym_end, sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - ACTIONS(9622), 1, - anon_sym_RBRACK, - STATE(5803), 1, - sym_comment, - STATE(6199), 1, - aux_sym_shebang_repeat1, - STATE(7018), 1, - sym_val_list, - STATE(7300), 1, - aux_sym_val_table_repeat1, - [201617] = 6, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [205670] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4708), 1, - anon_sym_DOT_DOT2, - ACTIONS(9598), 1, - aux_sym_unquoted_token2, - STATE(5804), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + ACTIONS(9530), 1, + anon_sym_DASH_DASH, + ACTIONS(9532), 1, + anon_sym_DASH2, + STATE(5841), 1, sym_comment, - ACTIONS(4710), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(9624), 2, - sym_filesize_unit, - sym_duration_unit, - [201638] = 6, + STATE(6389), 1, + sym_block, + STATE(7592), 1, + sym_short_flag, + STATE(7593), 1, + sym_long_flag, + [205695] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9626), 1, + ACTIONS(9502), 1, anon_sym_LPAREN, - ACTIONS(9632), 1, + ACTIONS(9648), 1, anon_sym_DQUOTE2, - STATE(6665), 1, + STATE(5842), 1, + sym_comment, + STATE(5846), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6311), 1, sym_expr_interpolated, - ACTIONS(9629), 2, + ACTIONS(9504), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - STATE(5805), 2, - sym_comment, - aux_sym__inter_double_quotes_repeat1, - [201659] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - ACTIONS(9634), 1, - anon_sym_RBRACK, - STATE(5806), 1, - sym_comment, - STATE(6200), 1, - aux_sym_shebang_repeat1, - STATE(7030), 1, - sym_val_list, - STATE(7304), 1, - aux_sym_val_table_repeat1, - [201684] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - ACTIONS(9636), 1, - anon_sym_RBRACK, - STATE(5807), 1, - sym_comment, - STATE(6201), 1, - aux_sym_shebang_repeat1, - STATE(7033), 1, - sym_val_list, - STATE(7307), 1, - aux_sym_val_table_repeat1, - [201709] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9638), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9640), 1, - aux_sym__immediate_decimal_token2, - STATE(5808), 1, - sym_comment, - ACTIONS(1739), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1741), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [201730] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9460), 1, - anon_sym_alias, - ACTIONS(9462), 1, - anon_sym_const, - ACTIONS(9464), 1, - anon_sym_def, - ACTIONS(9466), 1, - anon_sym_extern, - ACTIONS(9468), 1, - anon_sym_module, - ACTIONS(9470), 1, - anon_sym_use, - STATE(5809), 1, - sym_comment, - [201755] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6685), 1, - anon_sym_DOT_DOT2, - STATE(5810), 1, - sym_comment, - ACTIONS(6687), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5943), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [201774] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2139), 1, - sym__entry_separator, - ACTIONS(9642), 1, - anon_sym_DOT_DOT2, - STATE(5811), 1, - sym_comment, - ACTIONS(2133), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9644), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [201795] = 8, + [205718] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4764), 1, + ACTIONS(4762), 1, aux_sym_unquoted_token3, - ACTIONS(8297), 1, + ACTIONS(8421), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8877), 1, + ACTIONS(8778), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8879), 1, + ACTIONS(8780), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8881), 1, + ACTIONS(8782), 1, aux_sym__immediate_decimal_token5, - STATE(5812), 1, + STATE(5843), 1, sym_comment, - STATE(6732), 1, + STATE(6318), 1, sym__immediate_decimal, - [201820] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(617), 1, - anon_sym_RPAREN, - ACTIONS(9646), 1, - sym__newline, - ACTIONS(9648), 1, - anon_sym_SEMI, - STATE(231), 1, - aux_sym__parenthesized_body_repeat1, - STATE(5813), 1, - sym_comment, - STATE(6687), 1, - aux_sym__block_body_repeat1, - STATE(6772), 1, - aux_sym_shebang_repeat1, - [201845] = 8, + [205743] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4764), 1, + ACTIONS(4762), 1, aux_sym_unquoted_token3, - ACTIONS(8557), 1, + ACTIONS(8579), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8792), 1, + ACTIONS(8784), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8794), 1, + ACTIONS(8786), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8796), 1, + ACTIONS(8788), 1, aux_sym__immediate_decimal_token5, - STATE(5814), 1, + STATE(5844), 1, sym_comment, - STATE(7655), 1, + STATE(8149), 1, sym__immediate_decimal, - [201870] = 4, + [205768] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2464), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + ACTIONS(9530), 1, + anon_sym_DASH_DASH, + ACTIONS(9532), 1, anon_sym_DASH2, - STATE(5815), 1, + STATE(5845), 1, sym_comment, - ACTIONS(2466), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [201887] = 4, - ACTIONS(247), 1, + STATE(6390), 1, + sym_block, + STATE(7594), 1, + sym_short_flag, + STATE(7595), 1, + sym_long_flag, + [205793] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2500), 1, - anon_sym_DASH2, - STATE(5816), 1, + ACTIONS(9502), 1, + anon_sym_LPAREN, + ACTIONS(9650), 1, + anon_sym_DQUOTE2, + STATE(5846), 1, sym_comment, - ACTIONS(2502), 5, - ts_builtin_sym_end, + STATE(5953), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6311), 1, + sym_expr_interpolated, + ACTIONS(9504), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [205816] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [201904] = 7, + ACTIONS(9520), 1, + anon_sym_LBRACK, + ACTIONS(9652), 1, + anon_sym_RBRACK, + STATE(5847), 1, + sym_comment, + STATE(6168), 1, + aux_sym_shebang_repeat1, + STATE(6872), 1, + sym_val_list, + STATE(7330), 1, + aux_sym_val_table_repeat1, + [205841] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9650), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + ACTIONS(9530), 1, anon_sym_DASH_DASH, - ACTIONS(9652), 1, + ACTIONS(9532), 1, anon_sym_DASH2, - ACTIONS(9654), 1, - anon_sym_in2, - STATE(5817), 1, + STATE(5848), 1, sym_comment, - STATE(7809), 1, - sym__flag, - STATE(5593), 2, + STATE(6391), 1, + sym_block, + STATE(7596), 1, sym_short_flag, + STATE(7597), 1, sym_long_flag, - [201927] = 4, + [205866] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2468), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + ACTIONS(9530), 1, + anon_sym_DASH_DASH, + ACTIONS(9532), 1, anon_sym_DASH2, - STATE(5818), 1, + STATE(5849), 1, sym_comment, - ACTIONS(2470), 5, - ts_builtin_sym_end, + STATE(6392), 1, + sym_block, + STATE(7599), 1, + sym_short_flag, + STATE(7600), 1, + sym_long_flag, + [205891] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [201944] = 5, - ACTIONS(3), 1, + ACTIONS(9520), 1, + anon_sym_LBRACK, + ACTIONS(9654), 1, + anon_sym_RBRACK, + STATE(5850), 1, + sym_comment, + STATE(6169), 1, + aux_sym_shebang_repeat1, + STATE(6875), 1, + sym_val_list, + STATE(7333), 1, + aux_sym_val_table_repeat1, + [205916] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2210), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - ACTIONS(2212), 1, - aux_sym_unquoted_token4, - STATE(5819), 1, - sym_comment, - ACTIONS(2206), 4, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(9530), 1, anon_sym_DASH_DASH, + ACTIONS(9532), 1, anon_sym_DASH2, - [201963] = 7, + STATE(5851), 1, + sym_comment, + STATE(6393), 1, + sym_block, + STATE(7601), 1, + sym_short_flag, + STATE(7603), 1, + sym_long_flag, + [205941] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9540), 1, + ACTIONS(9502), 1, anon_sym_LPAREN, ACTIONS(9656), 1, anon_sym_DQUOTE2, - STATE(5805), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5820), 1, + STATE(5852), 1, sym_comment, - STATE(6665), 1, + STATE(5855), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6311), 1, sym_expr_interpolated, - ACTIONS(9542), 2, + ACTIONS(9504), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [201986] = 5, + [205964] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2218), 1, - anon_sym_LBRACE, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - STATE(5821), 1, + ACTIONS(7236), 1, + aux_sym_unquoted_token3, + ACTIONS(8421), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8778), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8780), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8782), 1, + aux_sym__immediate_decimal_token5, + STATE(5853), 1, sym_comment, - ACTIONS(2214), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [202005] = 8, + STATE(6318), 1, + sym__immediate_decimal, + [205989] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5616), 1, + ACTIONS(7236), 1, aux_sym_unquoted_token3, - ACTIONS(8557), 1, + ACTIONS(8579), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8792), 1, + ACTIONS(8784), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8794), 1, + ACTIONS(8786), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8796), 1, + ACTIONS(8788), 1, aux_sym__immediate_decimal_token5, - STATE(5822), 1, + STATE(5854), 1, sym_comment, - STATE(7655), 1, + STATE(8149), 1, sym__immediate_decimal, - [202030] = 8, + [206014] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9502), 1, + anon_sym_LPAREN, + ACTIONS(9658), 1, + anon_sym_DQUOTE2, + STATE(5855), 1, + sym_comment, + STATE(5953), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6311), 1, + sym_expr_interpolated, + ACTIONS(9504), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [206037] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - ACTIONS(9658), 1, + ACTIONS(9660), 1, anon_sym_RBRACK, - STATE(5823), 1, + STATE(5856), 1, sym_comment, - STATE(6169), 1, + STATE(6171), 1, aux_sym_shebang_repeat1, - STATE(7162), 1, + STATE(6894), 1, sym_val_list, - STATE(7197), 1, + STATE(7340), 1, aux_sym_val_table_repeat1, - [202055] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2355), 1, - anon_sym_DASH2, - STATE(5824), 1, - sym_comment, - ACTIONS(2357), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [202072] = 8, + [206062] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - ACTIONS(9660), 1, + ACTIONS(9662), 1, anon_sym_RBRACK, - STATE(5825), 1, + STATE(5857), 1, sym_comment, - STATE(6173), 1, + STATE(6172), 1, aux_sym_shebang_repeat1, - STATE(6759), 1, + STATE(6898), 1, sym_val_list, - STATE(7215), 1, + STATE(7343), 1, aux_sym_val_table_repeat1, - [202097] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5826), 1, - sym_comment, - ACTIONS(2183), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(2185), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [202114] = 4, + [206087] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2399), 1, + ACTIONS(9544), 1, + anon_sym_DASH_DASH, + ACTIONS(9546), 1, anon_sym_DASH2, - STATE(5827), 1, + ACTIONS(9664), 1, + sym_identifier, + STATE(5858), 1, sym_comment, - ACTIONS(2401), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [202131] = 7, + STATE(5980), 1, + aux_sym_ctrl_do_repeat1, + STATE(6035), 2, + sym_short_flag, + sym_long_flag, + [206110] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9540), 1, + ACTIONS(9502), 1, anon_sym_LPAREN, - ACTIONS(9662), 1, + ACTIONS(9666), 1, anon_sym_DQUOTE2, - STATE(5805), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5828), 1, + STATE(5859), 1, sym_comment, - STATE(6665), 1, + STATE(5862), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6311), 1, sym_expr_interpolated, - ACTIONS(9542), 2, + ACTIONS(9504), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [202154] = 7, + [206133] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7190), 1, + aux_sym_unquoted_token3, + ACTIONS(8421), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8778), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8780), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8782), 1, + aux_sym__immediate_decimal_token5, + STATE(5860), 1, + sym_comment, + STATE(6318), 1, + sym__immediate_decimal, + [206158] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7190), 1, + aux_sym_unquoted_token3, + ACTIONS(8579), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8784), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8786), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8788), 1, + aux_sym__immediate_decimal_token5, + STATE(5861), 1, + sym_comment, + STATE(8149), 1, + sym__immediate_decimal, + [206183] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9540), 1, + ACTIONS(9502), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9668), 1, anon_sym_DQUOTE2, - STATE(5829), 1, + STATE(5862), 1, sym_comment, - STATE(5927), 1, + STATE(5953), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6665), 1, + STATE(6311), 1, sym_expr_interpolated, - ACTIONS(9542), 2, + ACTIONS(9504), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [202177] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4956), 1, - anon_sym_DOLLAR, - ACTIONS(9666), 1, - anon_sym_EQ2, - ACTIONS(9668), 1, - sym_short_flag_identifier, - STATE(5830), 1, - sym_comment, - ACTIONS(4958), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [202198] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2094), 1, - anon_sym_DASH2, - STATE(5831), 1, - sym_comment, - ACTIONS(2096), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [202215] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5832), 1, - sym_comment, - ACTIONS(1018), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1020), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [202232] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9650), 1, - anon_sym_DASH_DASH, - ACTIONS(9652), 1, - anon_sym_DASH2, - ACTIONS(9670), 1, - anon_sym_in2, - STATE(5833), 1, - sym_comment, - STATE(7689), 1, - sym__flag, - STATE(5593), 2, - sym_short_flag, - sym_long_flag, - [202255] = 4, + [206206] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2359), 1, + ACTIONS(2402), 1, anon_sym_DASH2, - STATE(5834), 1, + STATE(5863), 1, sym_comment, - ACTIONS(2361), 5, + ACTIONS(2404), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [202272] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1032), 1, - anon_sym_LBRACE, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(5835), 1, - sym_comment, - ACTIONS(1030), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [202291] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym_unquoted_token2, - ACTIONS(9672), 1, - anon_sym_DOT_DOT2, - STATE(5836), 1, - sym_comment, - ACTIONS(1874), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(9674), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [202312] = 8, + [206223] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - ACTIONS(9676), 1, + ACTIONS(9670), 1, anon_sym_RBRACK, - STATE(5837), 1, + STATE(5864), 1, sym_comment, STATE(6174), 1, aux_sym_shebang_repeat1, - STATE(6763), 1, + STATE(6927), 1, sym_val_list, - STATE(7218), 1, + STATE(7350), 1, aux_sym_val_table_repeat1, - [202337] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(8487), 1, - anon_sym_DOLLAR, - ACTIONS(8649), 1, - sym_identifier, - STATE(5480), 1, - sym_val_variable, - STATE(5838), 1, - sym_comment, - STATE(6099), 1, - sym__variable_name, - STATE(6648), 1, - sym__assignment_pattern, - [202362] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(8487), 1, - anon_sym_DOLLAR, - ACTIONS(8649), 1, - sym_identifier, - STATE(5480), 1, - sym_val_variable, - STATE(5839), 1, - sym_comment, - STATE(6099), 1, - sym__variable_name, - STATE(6649), 1, - sym__assignment_pattern, - [202387] = 8, + [206248] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(8487), 1, - anon_sym_DOLLAR, - ACTIONS(8649), 1, - sym_identifier, - STATE(5480), 1, - sym_val_variable, - STATE(5840), 1, - sym_comment, - STATE(6099), 1, - sym__variable_name, - STATE(6650), 1, - sym__assignment_pattern, - [202412] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8297), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8877), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8879), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8881), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9678), 1, - aux_sym_unquoted_token3, - STATE(5841), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9500), 1, + anon_sym_LBRACE, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4860), 1, + sym_block, + STATE(4861), 1, + sym_val_closure, + STATE(5016), 1, + sym__blosure, + STATE(5865), 1, sym_comment, - STATE(6732), 1, - sym__immediate_decimal, - [202437] = 4, + [206273] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2407), 1, + ACTIONS(2478), 1, anon_sym_DASH2, - STATE(5842), 1, + STATE(5866), 1, sym_comment, - ACTIONS(2409), 5, + ACTIONS(2480), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [202454] = 4, + [206290] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2347), 1, - anon_sym_DASH2, - STATE(5843), 1, - sym_comment, - ACTIONS(2349), 5, - ts_builtin_sym_end, + ACTIONS(3929), 1, sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [202471] = 4, + ACTIONS(9520), 1, + anon_sym_LBRACK, + ACTIONS(9672), 1, + anon_sym_RBRACK, + STATE(5867), 1, + sym_comment, + STATE(6175), 1, + aux_sym_shebang_repeat1, + STATE(6932), 1, + sym_val_list, + STATE(7353), 1, + aux_sym_val_table_repeat1, + [206315] = 4, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(2347), 1, anon_sym_DASH2, - STATE(5844), 1, + STATE(5868), 1, sym_comment, ACTIONS(2349), 5, ts_builtin_sym_end, @@ -405102,29729 +407591,31296 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [202488] = 8, + [206332] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(8487), 1, - anon_sym_DOLLAR, - ACTIONS(8649), 1, - sym_identifier, - STATE(5480), 1, - sym_val_variable, - STATE(5845), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9500), 1, + anon_sym_LBRACE, + STATE(4860), 1, + sym_block, + STATE(4861), 1, + sym_val_closure, + STATE(5016), 1, + sym__blosure, + STATE(5869), 1, sym_comment, - STATE(6099), 1, - sym__variable_name, - STATE(6649), 1, - sym__assignment_pattern, - [202513] = 6, - ACTIONS(247), 1, + STATE(6026), 1, + aux_sym_shebang_repeat1, + [206357] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1739), 1, - aux_sym_unquoted_token2, - ACTIONS(9680), 1, + ACTIONS(9502), 1, + anon_sym_LPAREN, + ACTIONS(9674), 1, + anon_sym_DQUOTE2, + STATE(5870), 1, + sym_comment, + STATE(5874), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6311), 1, + sym_expr_interpolated, + ACTIONS(9504), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [206380] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6458), 1, + aux_sym_unquoted_token3, + ACTIONS(8421), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9682), 1, - aux_sym__immediate_decimal_token2, - STATE(5846), 1, + ACTIONS(8778), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8780), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8782), 1, + aux_sym__immediate_decimal_token5, + STATE(5871), 1, sym_comment, - ACTIONS(1741), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [202534] = 8, + STATE(6318), 1, + sym__immediate_decimal, + [206405] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4900), 1, + ACTIONS(6458), 1, aux_sym_unquoted_token3, - ACTIONS(8297), 1, + ACTIONS(8579), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8877), 1, + ACTIONS(8784), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8879), 1, + ACTIONS(8786), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8881), 1, + ACTIONS(8788), 1, aux_sym__immediate_decimal_token5, - STATE(5847), 1, + STATE(5872), 1, sym_comment, - STATE(6732), 1, + STATE(8149), 1, sym__immediate_decimal, - [202559] = 4, - ACTIONS(247), 1, + [206430] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5145), 1, - anon_sym_DASH2, - STATE(5848), 1, + ACTIONS(9676), 1, + anon_sym_DOT, + ACTIONS(9678), 1, + aux_sym__immediate_decimal_token2, + STATE(5873), 1, sym_comment, - ACTIONS(5143), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [202576] = 8, + ACTIONS(1765), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1767), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [206451] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9502), 1, + anon_sym_LPAREN, + ACTIONS(9680), 1, + anon_sym_DQUOTE2, + STATE(5874), 1, + sym_comment, + STATE(5953), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6311), 1, + sym_expr_interpolated, + ACTIONS(9504), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [206474] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(9684), 1, + ACTIONS(9500), 1, anon_sym_LBRACE, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(4956), 1, + STATE(4860), 1, sym_block, - STATE(4962), 1, + STATE(4861), 1, sym_val_closure, - STATE(5064), 1, + STATE(5018), 1, sym__blosure, - STATE(5849), 1, + STATE(5875), 1, sym_comment, - [202601] = 8, + [206499] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - ACTIONS(9686), 1, + ACTIONS(9682), 1, anon_sym_RBRACK, - STATE(5850), 1, + STATE(5876), 1, sym_comment, - STATE(6157), 1, + STATE(6177), 1, aux_sym_shebang_repeat1, - STATE(7157), 1, + STATE(6958), 1, + sym_val_list, + STATE(7359), 1, aux_sym_val_table_repeat1, - STATE(7199), 1, + [206524] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9500), 1, + anon_sym_LBRACE, + STATE(4860), 1, + sym_block, + STATE(4861), 1, + sym_val_closure, + STATE(5018), 1, + sym__blosure, + STATE(5877), 1, + sym_comment, + STATE(6027), 1, + aux_sym_shebang_repeat1, + [206549] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + ACTIONS(9684), 1, + anon_sym_RBRACK, + STATE(5878), 1, + sym_comment, + STATE(6178), 1, + aux_sym_shebang_repeat1, + STATE(6962), 1, sym_val_list, - [202626] = 4, + STATE(7362), 1, + aux_sym_val_table_repeat1, + [206574] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5851), 1, + ACTIONS(1026), 1, + anon_sym_DASH2, + STATE(5879), 1, sym_comment, - ACTIONS(1783), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1785), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [202643] = 8, - ACTIONS(3), 1, + ACTIONS(1028), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [206591] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4900), 1, - aux_sym_unquoted_token3, - ACTIONS(8557), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8792), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8794), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8796), 1, - aux_sym__immediate_decimal_token5, - STATE(5852), 1, + ACTIONS(2390), 1, + anon_sym_DASH2, + STATE(5880), 1, sym_comment, - STATE(7655), 1, - sym__immediate_decimal, - [202668] = 7, + ACTIONS(2392), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [206608] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9540), 1, + ACTIONS(9502), 1, anon_sym_LPAREN, - ACTIONS(9688), 1, + ACTIONS(9686), 1, anon_sym_DQUOTE2, - STATE(5853), 1, + STATE(5881), 1, sym_comment, - STATE(5936), 1, + STATE(5884), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6665), 1, + STATE(6311), 1, sym_expr_interpolated, - ACTIONS(9542), 2, + ACTIONS(9504), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [202691] = 4, + [206631] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(5854), 1, + ACTIONS(4730), 1, + aux_sym_unquoted_token3, + ACTIONS(8421), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8778), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8780), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8782), 1, + aux_sym__immediate_decimal_token5, + STATE(5882), 1, sym_comment, - ACTIONS(2125), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(2127), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [202708] = 6, - ACTIONS(247), 1, + STATE(6318), 1, + sym__immediate_decimal, + [206656] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4708), 1, - anon_sym_DOT_DOT2, - ACTIONS(4900), 1, - aux_sym_unquoted_token2, - STATE(5855), 1, + ACTIONS(4730), 1, + aux_sym_unquoted_token3, + ACTIONS(8579), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8784), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8786), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8788), 1, + aux_sym__immediate_decimal_token5, + STATE(5883), 1, sym_comment, - ACTIONS(4710), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(9624), 2, - sym_filesize_unit, - sym_duration_unit, - [202729] = 7, + STATE(8149), 1, + sym__immediate_decimal, + [206681] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9540), 1, + ACTIONS(9502), 1, anon_sym_LPAREN, - ACTIONS(9690), 1, + ACTIONS(9688), 1, anon_sym_DQUOTE2, - STATE(5856), 1, + STATE(5884), 1, sym_comment, - STATE(5865), 1, + STATE(5953), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6665), 1, + STATE(6311), 1, sym_expr_interpolated, - ACTIONS(9542), 2, + ACTIONS(9504), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [202752] = 8, + [206704] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6192), 1, - sym__entry_separator, - ACTIONS(9420), 1, + ACTIONS(9690), 1, anon_sym_DOT, ACTIONS(9692), 1, - anon_sym_RBRACE, - STATE(5857), 1, - sym_comment, - STATE(5950), 1, - aux_sym_cell_path_repeat1, - STATE(6234), 1, - sym_path, - STATE(7028), 1, - sym_cell_path, - [202777] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9695), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9697), 1, aux_sym__immediate_decimal_token2, - STATE(5858), 1, + STATE(5885), 1, sym_comment, - ACTIONS(1739), 2, + ACTIONS(1765), 2, anon_sym_RBRACE, aux_sym__unquoted_in_record_token2, - ACTIONS(1741), 2, + ACTIONS(1767), 2, anon_sym_LPAREN2, sym__entry_separator, - [202798] = 4, + [206725] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(5859), 1, - sym_comment, - ACTIONS(1755), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1757), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [202815] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7218), 1, - aux_sym_unquoted_token3, - ACTIONS(8297), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8877), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8879), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8881), 1, - aux_sym__immediate_decimal_token5, - STATE(5860), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + ACTIONS(9694), 1, + anon_sym_RBRACK, + STATE(5886), 1, sym_comment, - STATE(6732), 1, - sym__immediate_decimal, - [202840] = 8, + STATE(6179), 1, + aux_sym_shebang_repeat1, + STATE(6985), 1, + sym_val_list, + STATE(7370), 1, + aux_sym_val_table_repeat1, + [206750] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9646), 1, + ACTIONS(629), 1, + anon_sym_RPAREN, + ACTIONS(9514), 1, sym__newline, - ACTIONS(9648), 1, + ACTIONS(9516), 1, anon_sym_SEMI, - ACTIONS(9699), 1, - anon_sym_RPAREN, - STATE(231), 1, + STATE(252), 1, aux_sym__parenthesized_body_repeat1, - STATE(5861), 1, + STATE(5887), 1, sym_comment, - STATE(6609), 1, + STATE(6289), 1, aux_sym__block_body_repeat1, - STATE(6772), 1, + STATE(6852), 1, aux_sym_shebang_repeat1, - [202865] = 4, + [206775] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2504), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + ACTIONS(9696), 1, + anon_sym_RBRACK, + STATE(5888), 1, + sym_comment, + STATE(6180), 1, + aux_sym_shebang_repeat1, + STATE(6991), 1, + sym_val_list, + STATE(7373), 1, + aux_sym_val_table_repeat1, + [206800] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2406), 1, anon_sym_DASH2, - STATE(5862), 1, + STATE(5889), 1, sym_comment, - ACTIONS(2506), 5, + ACTIONS(2408), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [202882] = 4, - ACTIONS(3), 1, + [206817] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3657), 1, - sym__space, - STATE(5863), 1, + ACTIONS(1887), 1, + anon_sym_DASH2, + STATE(5890), 1, sym_comment, - ACTIONS(3655), 5, + ACTIONS(1889), 5, + ts_builtin_sym_end, sym__newline, - anon_sym_DOLLAR, + anon_sym_SEMI, anon_sym_DASH_DASH, + anon_sym_as, + [206834] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2343), 1, anon_sym_DASH2, + STATE(5891), 1, + sym_comment, + ACTIONS(2345), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [206851] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6180), 1, anon_sym_LBRACE, - [202899] = 8, + ACTIONS(9530), 1, + anon_sym_DASH_DASH, + ACTIONS(9532), 1, + anon_sym_DASH2, + STATE(5892), 1, + sym_comment, + STATE(6444), 1, + sym_block, + STATE(7652), 1, + sym_short_flag, + STATE(7654), 1, + sym_long_flag, + [206876] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7218), 1, + ACTIONS(9502), 1, + anon_sym_LPAREN, + ACTIONS(9698), 1, + anon_sym_DQUOTE2, + STATE(5893), 1, + sym_comment, + STATE(5896), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6311), 1, + sym_expr_interpolated, + ACTIONS(9504), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [206899] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8421), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8499), 1, aux_sym_unquoted_token3, - ACTIONS(8557), 1, + ACTIONS(8778), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8780), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8782), 1, + aux_sym__immediate_decimal_token5, + STATE(5894), 1, + sym_comment, + STATE(6318), 1, + sym__immediate_decimal, + [206924] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8499), 1, + aux_sym_unquoted_token3, + ACTIONS(8579), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8792), 1, + ACTIONS(8784), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8794), 1, + ACTIONS(8786), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8796), 1, + ACTIONS(8788), 1, aux_sym__immediate_decimal_token5, - STATE(5864), 1, + STATE(5895), 1, sym_comment, - STATE(7655), 1, + STATE(8149), 1, sym__immediate_decimal, - [202924] = 7, + [206949] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9540), 1, + ACTIONS(9502), 1, anon_sym_LPAREN, - ACTIONS(9701), 1, + ACTIONS(9700), 1, anon_sym_DQUOTE2, - STATE(5805), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5865), 1, + STATE(5896), 1, sym_comment, - STATE(6665), 1, + STATE(5953), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6311), 1, sym_expr_interpolated, - ACTIONS(9542), 2, + ACTIONS(9504), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [202947] = 4, + [206972] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1709), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + ACTIONS(9530), 1, + anon_sym_DASH_DASH, + ACTIONS(9532), 1, anon_sym_DASH2, - STATE(5866), 1, + STATE(5897), 1, sym_comment, - ACTIONS(1721), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [202964] = 8, + STATE(6453), 1, + sym_block, + STATE(7655), 1, + sym_short_flag, + STATE(7656), 1, + sym_long_flag, + [206997] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - ACTIONS(9703), 1, + ACTIONS(9702), 1, anon_sym_RBRACK, - STATE(5867), 1, + STATE(5898), 1, sym_comment, - STATE(6081), 1, + STATE(6183), 1, aux_sym_shebang_repeat1, - STATE(7116), 1, + STATE(7016), 1, sym_val_list, - STATE(7118), 1, + STATE(7380), 1, aux_sym_val_table_repeat1, - [202989] = 4, + [207022] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5098), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + ACTIONS(9530), 1, + anon_sym_DASH_DASH, + ACTIONS(9532), 1, anon_sym_DASH2, - STATE(5868), 1, + STATE(5899), 1, sym_comment, - ACTIONS(5096), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + STATE(6459), 1, + sym_block, + STATE(7660), 1, + sym_short_flag, + STATE(7661), 1, + sym_long_flag, + [207047] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6180), 1, + anon_sym_LBRACE, + ACTIONS(9530), 1, anon_sym_DASH_DASH, - anon_sym_as, - [203006] = 8, + ACTIONS(9532), 1, + anon_sym_DASH2, + STATE(5900), 1, + sym_comment, + STATE(6460), 1, + sym_block, + STATE(7664), 1, + sym_short_flag, + STATE(7666), 1, + sym_long_flag, + [207072] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - ACTIONS(9705), 1, + ACTIONS(9704), 1, anon_sym_RBRACK, - STATE(5869), 1, + STATE(5901), 1, sym_comment, - STATE(6175), 1, + STATE(6184), 1, aux_sym_shebang_repeat1, - STATE(6784), 1, + STATE(7020), 1, sym_val_list, - STATE(7224), 1, + STATE(7382), 1, aux_sym_val_table_repeat1, - [203031] = 4, + [207097] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5102), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + ACTIONS(9530), 1, + anon_sym_DASH_DASH, + ACTIONS(9532), 1, anon_sym_DASH2, - STATE(5870), 1, + STATE(5902), 1, sym_comment, - ACTIONS(5100), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [203048] = 8, + STATE(6464), 1, + sym_block, + STATE(7667), 1, + sym_short_flag, + STATE(7669), 1, + sym_long_flag, + [207122] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - ACTIONS(9707), 1, - anon_sym_RBRACK, - STATE(5871), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + ACTIONS(9530), 1, + anon_sym_DASH_DASH, + ACTIONS(9532), 1, + anon_sym_DASH2, + STATE(5903), 1, sym_comment, - STATE(6209), 1, - aux_sym_shebang_repeat1, - STATE(7244), 1, - sym_val_list, - STATE(7331), 1, - aux_sym_val_table_repeat1, - [203073] = 8, + STATE(6465), 1, + sym_block, + STATE(7671), 1, + sym_short_flag, + STATE(7672), 1, + sym_long_flag, + [207147] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9684), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4956), 1, - sym_block, - STATE(4962), 1, - sym_val_closure, - STATE(5164), 1, - sym__blosure, - STATE(5872), 1, + ACTIONS(9530), 1, + anon_sym_DASH_DASH, + ACTIONS(9532), 1, + anon_sym_DASH2, + STATE(5904), 1, sym_comment, - [203098] = 8, + STATE(6477), 1, + sym_block, + STATE(7676), 1, + sym_short_flag, + STATE(7679), 1, + sym_long_flag, + [207172] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - ACTIONS(9709), 1, - anon_sym_RBRACK, - STATE(5873), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + ACTIONS(9530), 1, + anon_sym_DASH_DASH, + ACTIONS(9532), 1, + anon_sym_DASH2, + STATE(5905), 1, sym_comment, - STATE(6176), 1, - aux_sym_shebang_repeat1, - STATE(6788), 1, - sym_val_list, - STATE(7226), 1, - aux_sym_val_table_repeat1, - [203123] = 6, + STATE(6479), 1, + sym_block, + STATE(7682), 1, + sym_short_flag, + STATE(7683), 1, + sym_long_flag, + [207197] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9711), 1, - anon_sym_DOT, - ACTIONS(9713), 1, - aux_sym__immediate_decimal_token2, - STATE(5874), 1, + ACTIONS(9502), 1, + anon_sym_LPAREN, + ACTIONS(9706), 1, + anon_sym_DQUOTE2, + STATE(5906), 1, sym_comment, - ACTIONS(1755), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1757), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [203144] = 8, - ACTIONS(247), 1, + STATE(5910), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6311), 1, + sym_expr_interpolated, + ACTIONS(9504), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [207220] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(8487), 1, - anon_sym_DOLLAR, - ACTIONS(8649), 1, - sym_identifier, - STATE(5480), 1, - sym_val_variable, - STATE(5875), 1, + ACTIONS(6450), 1, + aux_sym_unquoted_token3, + ACTIONS(8421), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8778), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8780), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8782), 1, + aux_sym__immediate_decimal_token5, + STATE(5907), 1, sym_comment, - STATE(6099), 1, - sym__variable_name, - STATE(6648), 1, - sym__assignment_pattern, - [203169] = 5, + STATE(6318), 1, + sym__immediate_decimal, + [207245] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9715), 1, - anon_sym_DOT, - STATE(6532), 1, - sym_path, - STATE(5876), 2, + ACTIONS(6450), 1, + aux_sym_unquoted_token3, + ACTIONS(8579), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8784), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8786), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8788), 1, + aux_sym__immediate_decimal_token5, + STATE(5908), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(971), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [203188] = 4, + STATE(8149), 1, + sym__immediate_decimal, + [207270] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2363), 1, + ACTIONS(2440), 1, anon_sym_DASH2, - STATE(5877), 1, + STATE(5909), 1, sym_comment, - ACTIONS(2365), 5, + ACTIONS(2442), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [203205] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7371), 1, - anon_sym_RBRACK, - ACTIONS(7373), 1, - sym__entry_separator, - ACTIONS(9420), 1, - anon_sym_DOT, - STATE(5878), 1, - sym_comment, - STATE(5950), 1, - aux_sym_cell_path_repeat1, - STATE(6234), 1, - sym_path, - STATE(7383), 1, - sym_cell_path, - [203230] = 8, + [207287] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2078), 1, - anon_sym_RBRACE, - ACTIONS(2080), 1, - sym__entry_separator, - ACTIONS(9420), 1, - anon_sym_DOT, - STATE(5879), 1, + ACTIONS(9502), 1, + anon_sym_LPAREN, + ACTIONS(9708), 1, + anon_sym_DQUOTE2, + STATE(5910), 1, sym_comment, - STATE(5950), 1, - aux_sym_cell_path_repeat1, - STATE(6234), 1, - sym_path, - STATE(7531), 1, - sym_cell_path, - [203255] = 4, + STATE(5953), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6311), 1, + sym_expr_interpolated, + ACTIONS(9504), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [207310] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2367), 1, + ACTIONS(1915), 1, anon_sym_DASH2, - STATE(5880), 1, + STATE(5911), 1, sym_comment, - ACTIONS(2369), 5, + ACTIONS(1917), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [203272] = 8, + [207327] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9718), 1, - anon_sym_alias, - ACTIONS(9720), 1, - anon_sym_const, - ACTIONS(9722), 1, - anon_sym_def, - ACTIONS(9724), 1, - anon_sym_extern, - ACTIONS(9726), 1, - anon_sym_module, - ACTIONS(9728), 1, - anon_sym_use, - STATE(5881), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + ACTIONS(9710), 1, + anon_sym_RBRACK, + STATE(5912), 1, sym_comment, - [203297] = 8, + STATE(6185), 1, + aux_sym_shebang_repeat1, + STATE(7039), 1, + sym_val_list, + STATE(7386), 1, + aux_sym_val_table_repeat1, + [207352] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9646), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(9648), 1, - anon_sym_SEMI, - ACTIONS(9730), 1, - anon_sym_RPAREN, - STATE(231), 1, - aux_sym__parenthesized_body_repeat1, - STATE(5882), 1, + ACTIONS(9520), 1, + anon_sym_LBRACK, + ACTIONS(9712), 1, + anon_sym_RBRACK, + STATE(5913), 1, sym_comment, - STATE(6519), 1, - aux_sym__block_body_repeat1, - STATE(6772), 1, + STATE(6186), 1, aux_sym_shebang_repeat1, - [203322] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9540), 1, - anon_sym_LPAREN, - ACTIONS(9732), 1, - anon_sym_DQUOTE2, - STATE(5883), 1, - sym_comment, - STATE(5893), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6665), 1, - sym_expr_interpolated, - ACTIONS(9542), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [203345] = 4, + STATE(7044), 1, + sym_val_list, + STATE(7389), 1, + aux_sym_val_table_repeat1, + [207377] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2383), 1, + ACTIONS(1927), 1, anon_sym_DASH2, - STATE(5884), 1, + STATE(5914), 1, sym_comment, - ACTIONS(2385), 5, + ACTIONS(1929), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [203362] = 4, - ACTIONS(247), 1, + [207394] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5088), 1, - anon_sym_DASH2, - STATE(5885), 1, + ACTIONS(9502), 1, + anon_sym_LPAREN, + ACTIONS(9714), 1, + anon_sym_DQUOTE2, + STATE(5915), 1, sym_comment, - ACTIONS(5086), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [203379] = 4, + STATE(5917), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6311), 1, + sym_expr_interpolated, + ACTIONS(9504), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [207417] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1018), 1, + ACTIONS(1942), 1, anon_sym_DASH2, - STATE(5886), 1, + STATE(5916), 1, sym_comment, - ACTIONS(1020), 5, + ACTIONS(1944), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [203396] = 6, - ACTIONS(247), 1, + [207434] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2159), 1, - anon_sym_DASH2, - ACTIONS(9734), 1, - anon_sym_DOT_DOT2, - STATE(5887), 1, + ACTIONS(9502), 1, + anon_sym_LPAREN, + ACTIONS(9716), 1, + anon_sym_DQUOTE2, + STATE(5917), 1, sym_comment, - ACTIONS(2165), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(9736), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [203417] = 4, + STATE(5953), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6311), 1, + sym_expr_interpolated, + ACTIONS(9504), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [207457] = 8, ACTIONS(247), 1, anon_sym_POUND, - STATE(5888), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + ACTIONS(9718), 1, + anon_sym_RBRACK, + STATE(5918), 1, sym_comment, - ACTIONS(1890), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1892), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [203434] = 8, + STATE(6190), 1, + aux_sym_shebang_repeat1, + STATE(7063), 1, + sym_val_list, + STATE(7394), 1, + aux_sym_val_table_repeat1, + [207482] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(9684), 1, - anon_sym_LBRACE, - STATE(4956), 1, - sym_block, - STATE(4962), 1, - sym_val_closure, - STATE(5164), 1, - sym__blosure, - STATE(5889), 1, + ACTIONS(9520), 1, + anon_sym_LBRACK, + ACTIONS(9720), 1, + anon_sym_RBRACK, + STATE(5919), 1, sym_comment, - STATE(5918), 1, + STATE(6191), 1, aux_sym_shebang_repeat1, - [203459] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7157), 1, - aux_sym_unquoted_token3, - ACTIONS(8297), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8877), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8879), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8881), 1, - aux_sym__immediate_decimal_token5, - STATE(5890), 1, - sym_comment, - STATE(6732), 1, - sym__immediate_decimal, - [203484] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7157), 1, - aux_sym_unquoted_token3, - ACTIONS(8557), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8792), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8794), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8796), 1, - aux_sym__immediate_decimal_token5, - STATE(5891), 1, - sym_comment, - STATE(7655), 1, - sym__immediate_decimal, - [203509] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8557), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8792), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8794), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8796), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9678), 1, - aux_sym_unquoted_token3, - STATE(5892), 1, - sym_comment, - STATE(7655), 1, - sym__immediate_decimal, - [203534] = 7, + STATE(7067), 1, + sym_val_list, + STATE(7396), 1, + aux_sym_val_table_repeat1, + [207507] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9540), 1, + ACTIONS(9502), 1, anon_sym_LPAREN, - ACTIONS(9738), 1, + ACTIONS(9722), 1, anon_sym_DQUOTE2, - STATE(5805), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5893), 1, + STATE(5920), 1, sym_comment, - STATE(6665), 1, + STATE(5921), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6311), 1, sym_expr_interpolated, - ACTIONS(9542), 2, + ACTIONS(9504), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [203557] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5894), 1, - sym_comment, - ACTIONS(1739), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1741), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [203574] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6458), 1, - aux_sym_unquoted_token3, - ACTIONS(8297), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8877), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8879), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8881), 1, - aux_sym__immediate_decimal_token5, - STATE(5895), 1, - sym_comment, - STATE(6093), 1, - sym__immediate_decimal, - [203599] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9684), 1, - anon_sym_LBRACE, - STATE(4956), 1, - sym_block, - STATE(4962), 1, - sym_val_closure, - STATE(5064), 1, - sym__blosure, - STATE(5872), 1, - aux_sym_shebang_repeat1, - STATE(5896), 1, - sym_comment, - [203624] = 7, + [207530] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9540), 1, + ACTIONS(9502), 1, anon_sym_LPAREN, - ACTIONS(9740), 1, + ACTIONS(9724), 1, anon_sym_DQUOTE2, - STATE(5897), 1, + STATE(5921), 1, sym_comment, - STATE(5913), 1, + STATE(5953), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6665), 1, + STATE(6311), 1, sym_expr_interpolated, - ACTIONS(9542), 2, + ACTIONS(9504), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [203647] = 4, + [207553] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5130), 1, - anon_sym_DASH2, - STATE(5898), 1, - sym_comment, - ACTIONS(5128), 5, - ts_builtin_sym_end, + ACTIONS(3929), 1, sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [203664] = 8, + ACTIONS(9520), 1, + anon_sym_LBRACK, + ACTIONS(9726), 1, + anon_sym_RBRACK, + STATE(5922), 1, + sym_comment, + STATE(6192), 1, + aux_sym_shebang_repeat1, + STATE(7080), 1, + sym_val_list, + STATE(7400), 1, + aux_sym_val_table_repeat1, + [207578] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - ACTIONS(9742), 1, + ACTIONS(9728), 1, anon_sym_RBRACK, - STATE(5899), 1, + STATE(5923), 1, sym_comment, - STATE(6177), 1, + STATE(6193), 1, aux_sym_shebang_repeat1, - STATE(6809), 1, + STATE(7084), 1, sym_val_list, - STATE(7231), 1, + STATE(7402), 1, aux_sym_val_table_repeat1, - [203689] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6458), 1, - aux_sym_unquoted_token3, - ACTIONS(8557), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8792), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8794), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8796), 1, - aux_sym__immediate_decimal_token5, - STATE(5900), 1, - sym_comment, - STATE(7475), 1, - sym__immediate_decimal, - [203714] = 8, + [207603] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8297), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8677), 1, - aux_sym_unquoted_token3, - ACTIONS(8877), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8879), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8881), 1, - aux_sym__immediate_decimal_token5, - STATE(5901), 1, + ACTIONS(9502), 1, + anon_sym_LPAREN, + ACTIONS(9730), 1, + anon_sym_DQUOTE2, + STATE(5746), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(5924), 1, sym_comment, - STATE(6732), 1, - sym__immediate_decimal, - [203739] = 8, + STATE(6311), 1, + sym_expr_interpolated, + ACTIONS(9504), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [207626] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8557), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8677), 1, - aux_sym_unquoted_token3, - ACTIONS(8792), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8794), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8796), 1, - aux_sym__immediate_decimal_token5, - STATE(5902), 1, + ACTIONS(9502), 1, + anon_sym_LPAREN, + ACTIONS(9732), 1, + anon_sym_DQUOTE2, + STATE(5925), 1, sym_comment, - STATE(7655), 1, - sym__immediate_decimal, - [203764] = 8, + STATE(5926), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6311), 1, + sym_expr_interpolated, + ACTIONS(9504), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [207649] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4864), 1, - aux_sym_unquoted_token3, - ACTIONS(8297), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8877), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8879), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8881), 1, - aux_sym__immediate_decimal_token5, - STATE(5903), 1, + ACTIONS(9502), 1, + anon_sym_LPAREN, + ACTIONS(9734), 1, + anon_sym_DQUOTE2, + STATE(5926), 1, sym_comment, - STATE(6732), 1, - sym__immediate_decimal, - [203789] = 5, + STATE(5953), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6311), 1, + sym_expr_interpolated, + ACTIONS(9504), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [207672] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, - anon_sym_LBRACE, - STATE(5904), 1, - sym_comment, - STATE(6327), 1, - sym_block, - ACTIONS(9744), 4, + ACTIONS(3929), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [203808] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4864), 1, - aux_sym_unquoted_token3, - ACTIONS(8557), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8792), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8794), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8796), 1, - aux_sym__immediate_decimal_token5, - STATE(5905), 1, + ACTIONS(9520), 1, + anon_sym_LBRACK, + ACTIONS(9736), 1, + anon_sym_RBRACK, + STATE(5927), 1, sym_comment, - STATE(7655), 1, - sym__immediate_decimal, - [203833] = 6, + STATE(6195), 1, + aux_sym_shebang_repeat1, + STATE(7103), 1, + sym_val_list, + STATE(7408), 1, + aux_sym_val_table_repeat1, + [207697] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4708), 1, - anon_sym_DOT_DOT2, - ACTIONS(4864), 1, - aux_sym_unquoted_token2, - STATE(5906), 1, + ACTIONS(2490), 1, + anon_sym_DASH2, + STATE(5928), 1, sym_comment, - ACTIONS(4710), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(9624), 2, - sym_filesize_unit, - sym_duration_unit, - [203854] = 4, + ACTIONS(2492), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [207714] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1988), 1, + ACTIONS(2034), 1, anon_sym_DASH2, - STATE(5907), 1, + STATE(5929), 1, sym_comment, - ACTIONS(1990), 5, + ACTIONS(2036), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [203871] = 8, + [207731] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(9684), 1, - anon_sym_LBRACE, - STATE(4956), 1, - sym_block, - STATE(4962), 1, - sym_val_closure, - STATE(5136), 1, - sym__blosure, - STATE(5908), 1, + ACTIONS(9520), 1, + anon_sym_LBRACK, + ACTIONS(9738), 1, + anon_sym_RBRACK, + STATE(5930), 1, sym_comment, - STATE(5925), 1, + STATE(6196), 1, aux_sym_shebang_repeat1, - [203896] = 8, + STATE(7113), 1, + sym_val_list, + STATE(7412), 1, + aux_sym_val_table_repeat1, + [207756] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - ACTIONS(9746), 1, + ACTIONS(9740), 1, anon_sym_RBRACK, - STATE(5909), 1, + STATE(5931), 1, sym_comment, - STATE(6178), 1, + STATE(6197), 1, aux_sym_shebang_repeat1, - STATE(6813), 1, + STATE(7117), 1, sym_val_list, - STATE(7233), 1, + STATE(7414), 1, aux_sym_val_table_repeat1, - [203921] = 4, + [207781] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2492), 1, + ACTIONS(2367), 1, anon_sym_DASH2, - STATE(5910), 1, + STATE(5932), 1, sym_comment, - ACTIONS(2494), 5, + ACTIONS(2369), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [203938] = 4, + [207798] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2508), 1, + ACTIONS(2379), 1, anon_sym_DASH2, - STATE(5911), 1, + STATE(5933), 1, sym_comment, - ACTIONS(2510), 5, + ACTIONS(2381), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [203955] = 4, + [207815] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2480), 1, + ACTIONS(2038), 1, anon_sym_DASH2, - STATE(5912), 1, + STATE(5934), 1, sym_comment, - ACTIONS(2482), 5, + ACTIONS(2040), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [203972] = 7, + [207832] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + ACTIONS(9742), 1, + anon_sym_RBRACK, + STATE(5935), 1, + sym_comment, + STATE(6198), 1, + aux_sym_shebang_repeat1, + STATE(7129), 1, + sym_val_list, + STATE(7418), 1, + aux_sym_val_table_repeat1, + [207857] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + ACTIONS(9744), 1, + anon_sym_RBRACK, + STATE(5936), 1, + sym_comment, + STATE(6199), 1, + aux_sym_shebang_repeat1, + STATE(7134), 1, + sym_val_list, + STATE(7420), 1, + aux_sym_val_table_repeat1, + [207882] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9540), 1, - anon_sym_LPAREN, - ACTIONS(9748), 1, - anon_sym_DQUOTE2, - STATE(5805), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5913), 1, + ACTIONS(2018), 1, + anon_sym_RBRACE, + ACTIONS(2020), 1, + sym__entry_separator, + ACTIONS(9396), 1, + anon_sym_DOT, + STATE(5937), 1, sym_comment, - STATE(6665), 1, - sym_expr_interpolated, - ACTIONS(9542), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [203995] = 4, + STATE(5997), 1, + aux_sym_cell_path_repeat1, + STATE(6783), 1, + sym_path, + STATE(7478), 1, + sym_cell_path, + [207907] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1992), 1, + ACTIONS(1899), 1, anon_sym_DASH2, - STATE(5914), 1, + STATE(5938), 1, sym_comment, - ACTIONS(1994), 5, + ACTIONS(1901), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [204012] = 8, + [207924] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - ACTIONS(9750), 1, + ACTIONS(9746), 1, anon_sym_RBRACK, - STATE(5915), 1, + STATE(5939), 1, sym_comment, - STATE(6158), 1, + STATE(6200), 1, aux_sym_shebang_repeat1, - STATE(6785), 1, + STATE(7149), 1, sym_val_list, - STATE(7159), 1, + STATE(7424), 1, aux_sym_val_table_repeat1, - [204037] = 8, + [207949] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - ACTIONS(9752), 1, + ACTIONS(9748), 1, anon_sym_RBRACK, - STATE(5916), 1, + STATE(5940), 1, sym_comment, - STATE(6167), 1, + STATE(6201), 1, aux_sym_shebang_repeat1, - STATE(7068), 1, + STATE(7153), 1, sym_val_list, - STATE(7189), 1, + STATE(7426), 1, aux_sym_val_table_repeat1, - [204062] = 4, + [207974] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2456), 1, + ACTIONS(2448), 1, anon_sym_DASH2, - STATE(5917), 1, + STATE(5941), 1, sym_comment, - ACTIONS(2458), 5, + ACTIONS(2450), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [204079] = 8, + [207991] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(2452), 1, + anon_sym_DASH2, + STATE(5942), 1, + sym_comment, + ACTIONS(2454), 5, + ts_builtin_sym_end, sym__newline, - ACTIONS(9684), 1, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [208008] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1907), 1, + anon_sym_DASH2, + STATE(5943), 1, + sym_comment, + ACTIONS(1909), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [208025] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4956), 1, - sym_block, - STATE(4962), 1, - sym_val_closure, - STATE(5052), 1, - sym__blosure, - STATE(5918), 1, + ACTIONS(9530), 1, + anon_sym_DASH_DASH, + ACTIONS(9532), 1, + anon_sym_DASH2, + STATE(5944), 1, sym_comment, - [204104] = 7, + STATE(6604), 1, + sym_block, + STATE(7688), 1, + sym_short_flag, + STATE(7689), 1, + sym_long_flag, + [208050] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym_unquoted_token2, - ACTIONS(8559), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8561), 1, - aux_sym__immediate_decimal_token5, - STATE(5919), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + ACTIONS(9530), 1, + anon_sym_DASH_DASH, + ACTIONS(9532), 1, + anon_sym_DASH2, + STATE(5945), 1, sym_comment, - STATE(7686), 1, - sym__immediate_decimal, - ACTIONS(8557), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [204127] = 6, - ACTIONS(3), 1, + STATE(6607), 1, + sym_block, + STATE(7690), 1, + sym_short_flag, + STATE(7691), 1, + sym_long_flag, + [208075] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2173), 1, - sym__entry_separator, - ACTIONS(9754), 1, - anon_sym_DOT_DOT2, - STATE(5920), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + ACTIONS(9530), 1, + anon_sym_DASH_DASH, + ACTIONS(9532), 1, + anon_sym_DASH2, + STATE(5946), 1, sym_comment, - ACTIONS(2167), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9756), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [204148] = 8, + STATE(6737), 1, + sym_block, + STATE(7692), 1, + sym_short_flag, + STATE(7694), 1, + sym_long_flag, + [208100] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - ACTIONS(9758), 1, - anon_sym_RBRACK, - STATE(5921), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + ACTIONS(9530), 1, + anon_sym_DASH_DASH, + ACTIONS(9532), 1, + anon_sym_DASH2, + STATE(5947), 1, sym_comment, - STATE(6168), 1, - aux_sym_shebang_repeat1, - STATE(7075), 1, - sym_val_list, - STATE(7191), 1, - aux_sym_val_table_repeat1, - [204173] = 4, + STATE(6738), 1, + sym_block, + STATE(7696), 1, + sym_short_flag, + STATE(7697), 1, + sym_long_flag, + [208125] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2460), 1, + ACTIONS(2468), 1, anon_sym_DASH2, - STATE(5922), 1, + STATE(5948), 1, sym_comment, - ACTIONS(2462), 5, + ACTIONS(2470), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [204190] = 8, - ACTIONS(3), 1, + [208142] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4900), 1, - aux_sym_unquoted_token3, - ACTIONS(8297), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8877), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8879), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8881), 1, - aux_sym__immediate_decimal_token5, - STATE(5923), 1, + ACTIONS(2482), 1, + anon_sym_DASH2, + STATE(5949), 1, sym_comment, - STATE(6093), 1, - sym__immediate_decimal, - [204215] = 8, - ACTIONS(3), 1, + ACTIONS(2484), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [208159] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4900), 1, - aux_sym_unquoted_token3, - ACTIONS(8557), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8792), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8794), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8796), 1, - aux_sym__immediate_decimal_token5, - STATE(5924), 1, + ACTIONS(1707), 1, + anon_sym_DASH2, + STATE(5950), 1, sym_comment, - STATE(7475), 1, - sym__immediate_decimal, - [204240] = 8, + ACTIONS(1719), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [208176] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9684), 1, - anon_sym_LBRACE, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4956), 1, - sym_block, - STATE(4962), 1, - sym_val_closure, - STATE(5155), 1, - sym__blosure, - STATE(5925), 1, + ACTIONS(2444), 1, + anon_sym_DASH2, + STATE(5951), 1, sym_comment, - [204265] = 4, + ACTIONS(2446), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [208193] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2403), 1, + ACTIONS(5054), 1, anon_sym_DASH2, - STATE(5926), 1, + STATE(5952), 1, sym_comment, - ACTIONS(2405), 5, + ACTIONS(5052), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [204282] = 7, + [208210] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9540), 1, + ACTIONS(9750), 1, anon_sym_LPAREN, - ACTIONS(9760), 1, + ACTIONS(9756), 1, anon_sym_DQUOTE2, - STATE(5805), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5927), 1, - sym_comment, - STATE(6665), 1, + STATE(6311), 1, sym_expr_interpolated, - ACTIONS(9542), 2, + ACTIONS(9753), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [204305] = 8, + STATE(5953), 2, + sym_comment, + aux_sym__inter_double_quotes_repeat1, + [208231] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9684), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - STATE(4956), 1, + ACTIONS(9530), 1, + anon_sym_DASH_DASH, + ACTIONS(9532), 1, + anon_sym_DASH2, + STATE(5954), 1, + sym_comment, + STATE(7009), 1, sym_block, - STATE(4962), 1, - sym_val_closure, - STATE(5155), 1, - sym__blosure, - STATE(5928), 1, + STATE(7522), 1, + sym_short_flag, + STATE(7558), 1, + sym_long_flag, + [208256] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2128), 1, + sym__entry_separator, + ACTIONS(9758), 1, + anon_sym_DOT_DOT2, + STATE(5955), 1, sym_comment, - STATE(5934), 1, - aux_sym_shebang_repeat1, - [204330] = 4, + ACTIONS(2122), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9760), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [208277] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1030), 1, + ACTIONS(1044), 1, anon_sym_DASH2, - STATE(5929), 1, + STATE(5956), 1, sym_comment, - ACTIONS(1032), 5, + ACTIONS(1046), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [204347] = 8, + [208294] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9684), 1, - anon_sym_LBRACE, - STATE(4956), 1, - sym_block, - STATE(4962), 1, - sym_val_closure, - STATE(5039), 1, - sym__blosure, - STATE(5849), 1, - aux_sym_shebang_repeat1, - STATE(5930), 1, + ACTIONS(5064), 1, + anon_sym_DASH2, + STATE(5957), 1, sym_comment, - [204372] = 6, + ACTIONS(5062), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [208311] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9458), 1, - anon_sym_DOT, - STATE(5876), 1, - aux_sym_cell_path_repeat1, - STATE(5931), 1, - sym_comment, - STATE(6532), 1, - sym_path, - ACTIONS(967), 3, - anon_sym_RBRACK, + ACTIONS(2136), 1, sym__entry_separator, - sym__table_head_separator, - [204393] = 4, - ACTIONS(247), 1, - anon_sym_POUND, ACTIONS(9762), 1, - anon_sym_LT, - STATE(5932), 1, - sym_comment, - ACTIONS(7953), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [204410] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5933), 1, + anon_sym_DOT_DOT2, + STATE(5958), 1, sym_comment, - ACTIONS(2129), 3, + ACTIONS(2130), 2, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(2131), 3, + ACTIONS(9764), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [204427] = 8, + [208332] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9684), 1, - anon_sym_LBRACE, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4956), 1, - sym_block, - STATE(4962), 1, - sym_val_closure, - STATE(5053), 1, - sym__blosure, - STATE(5934), 1, + ACTIONS(5172), 1, + anon_sym_DASH2, + STATE(5959), 1, sym_comment, - [204452] = 7, + ACTIONS(5170), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [208349] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1579), 1, - aux_sym_unquoted_token2, - ACTIONS(8559), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8561), 1, - aux_sym__immediate_decimal_token5, - STATE(5935), 1, + ACTIONS(5176), 1, + anon_sym_DASH2, + STATE(5960), 1, sym_comment, - STATE(7374), 1, - sym__immediate_decimal, - ACTIONS(8557), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [204475] = 7, + ACTIONS(5174), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [208366] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9540), 1, - anon_sym_LPAREN, - ACTIONS(9764), 1, - anon_sym_DQUOTE2, - STATE(5805), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5936), 1, + ACTIONS(2242), 1, + anon_sym_LBRACE, + ACTIONS(2244), 1, + aux_sym_unquoted_token4, + STATE(5961), 1, sym_comment, - STATE(6665), 1, - sym_expr_interpolated, - ACTIONS(9542), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [204498] = 7, + ACTIONS(2238), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [208385] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9540), 1, - anon_sym_LPAREN, - ACTIONS(9766), 1, - anon_sym_DQUOTE2, - STATE(5937), 1, + ACTIONS(1028), 1, + anon_sym_LBRACE, + ACTIONS(2228), 1, + aux_sym_unquoted_token4, + STATE(5962), 1, sym_comment, - STATE(5942), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6665), 1, - sym_expr_interpolated, - ACTIONS(9542), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [204521] = 8, - ACTIONS(3), 1, + ACTIONS(1026), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [208404] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6485), 1, - aux_sym_unquoted_token3, - ACTIONS(8297), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8877), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8879), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8881), 1, - aux_sym__immediate_decimal_token5, - STATE(5938), 1, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(8403), 1, + anon_sym_DOLLAR, + ACTIONS(8647), 1, + sym_identifier, + STATE(5398), 1, + sym_val_variable, + STATE(5963), 1, sym_comment, - STATE(6732), 1, - sym__immediate_decimal, - [204546] = 8, - ACTIONS(3), 1, + STATE(6237), 1, + sym__variable_name, + STATE(6282), 1, + sym__assignment_pattern, + [208429] = 8, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6485), 1, - aux_sym_unquoted_token3, - ACTIONS(8557), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8792), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8794), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8796), 1, - aux_sym__immediate_decimal_token5, - STATE(5939), 1, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(8403), 1, + anon_sym_DOLLAR, + ACTIONS(8647), 1, + sym_identifier, + STATE(5398), 1, + sym_val_variable, + STATE(5964), 1, sym_comment, - STATE(7655), 1, - sym__immediate_decimal, - [204571] = 6, + STATE(6237), 1, + sym__variable_name, + STATE(6283), 1, + sym__assignment_pattern, + [208454] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(8403), 1, + anon_sym_DOLLAR, + ACTIONS(8647), 1, + sym_identifier, + STATE(5398), 1, + sym_val_variable, + STATE(5965), 1, + sym_comment, + STATE(6237), 1, + sym__variable_name, + STATE(6285), 1, + sym__assignment_pattern, + [208479] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(973), 1, + ACTIONS(2152), 1, sym__entry_separator, - ACTIONS(9768), 1, - anon_sym_DOT, - STATE(6234), 1, - sym_path, - ACTIONS(971), 2, + ACTIONS(9766), 1, + anon_sym_DOT_DOT2, + STATE(5966), 1, + sym_comment, + ACTIONS(2146), 2, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(5940), 2, + ACTIONS(9768), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [208500] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9530), 1, + anon_sym_DASH_DASH, + ACTIONS(9532), 1, + anon_sym_DASH2, + ACTIONS(9770), 1, + anon_sym_LBRACE, + STATE(5967), 1, sym_comment, - aux_sym_cell_path_repeat1, - [204592] = 5, + STATE(7188), 1, + sym_val_record, + STATE(7501), 2, + sym_short_flag, + sym_long_flag, + [208523] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, + ACTIONS(5081), 1, + anon_sym_DASH2, + STATE(5968), 1, + sym_comment, + ACTIONS(5079), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [208540] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5085), 1, + anon_sym_DASH2, + STATE(5969), 1, + sym_comment, + ACTIONS(5083), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [208557] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(5941), 1, + STATE(5970), 1, sym_comment, - STATE(6657), 1, + STATE(6328), 1, sym_block, - ACTIONS(9771), 4, + ACTIONS(9772), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [204611] = 7, - ACTIONS(3), 1, + [208576] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9540), 1, - anon_sym_LPAREN, - ACTIONS(9773), 1, - anon_sym_DQUOTE2, - STATE(5805), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5942), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(5971), 1, sym_comment, - STATE(6665), 1, - sym_expr_interpolated, - ACTIONS(9542), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [204634] = 6, + STATE(6329), 1, + sym_block, + ACTIONS(9772), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [208595] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4938), 1, + ACTIONS(4970), 1, anon_sym_DASH2, - ACTIONS(9775), 1, + ACTIONS(9774), 1, sym_long_flag_identifier, - ACTIONS(9777), 1, + ACTIONS(9776), 1, anon_sym_EQ2, - STATE(5943), 1, + STATE(5972), 1, sym_comment, - ACTIONS(4936), 3, + ACTIONS(4968), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [204655] = 6, + [208616] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(8403), 1, + anon_sym_DOLLAR, + ACTIONS(8647), 1, + sym_identifier, + STATE(5398), 1, + sym_val_variable, + STATE(5973), 1, + sym_comment, + STATE(6237), 1, + sym__variable_name, + STATE(6285), 1, + sym__assignment_pattern, + [208641] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9779), 1, + ACTIONS(4974), 1, + anon_sym_DOLLAR, + ACTIONS(9778), 1, anon_sym_EQ2, - ACTIONS(9781), 1, + ACTIONS(9780), 1, sym_short_flag_identifier, - STATE(5944), 1, + STATE(5974), 1, sym_comment, - ACTIONS(4956), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - ACTIONS(4958), 2, + ACTIONS(4976), 3, + sym_identifier, anon_sym_DASH_DASH, anon_sym_DASH2, - [204676] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9540), 1, - anon_sym_LPAREN, - ACTIONS(9783), 1, - anon_sym_DQUOTE2, - STATE(5945), 1, - sym_comment, - STATE(5979), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6665), 1, - sym_expr_interpolated, - ACTIONS(9542), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [204699] = 3, + [208662] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(5946), 1, + ACTIONS(9782), 1, + sym_long_flag_identifier, + ACTIONS(9784), 1, + anon_sym_EQ2, + STATE(5975), 1, sym_comment, - ACTIONS(9785), 6, - sym_raw_string_begin, + ACTIONS(4968), 2, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + ACTIONS(4970), 2, sym_identifier, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [204714] = 3, + anon_sym_DASH2, + [208683] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5947), 1, + ACTIONS(1863), 1, + anon_sym_DASH2, + STATE(5976), 1, sym_comment, - ACTIONS(9787), 6, - sym_raw_string_begin, - sym_identifier, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [204729] = 4, + ACTIONS(1865), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [208700] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2094), 1, + ACTIONS(2157), 1, anon_sym_DASH2, - STATE(5948), 1, + ACTIONS(9786), 1, + anon_sym_DOT_DOT2, + STATE(5977), 1, sym_comment, - ACTIONS(2096), 5, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(2163), 2, anon_sym_DASH_DASH, anon_sym_LBRACE, - sym__table_head_separator, - [204746] = 4, + ACTIONS(9788), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [208721] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9438), 1, + ACTIONS(2398), 1, anon_sym_DASH2, - STATE(5949), 1, + STATE(5978), 1, sym_comment, - ACTIONS(9436), 5, + ACTIONS(2400), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [204763] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(969), 1, - sym__entry_separator, - ACTIONS(9420), 1, - anon_sym_DOT, - STATE(5940), 1, - aux_sym_cell_path_repeat1, - STATE(5950), 1, - sym_comment, - STATE(6234), 1, - sym_path, - ACTIONS(967), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [204786] = 8, + [208738] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - ACTIONS(9789), 1, - anon_sym_RBRACK, - STATE(5951), 1, + ACTIONS(1661), 1, + aux_sym_unquoted_token2, + ACTIONS(8581), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8583), 1, + aux_sym__immediate_decimal_token5, + STATE(5979), 1, sym_comment, - STATE(6181), 1, - aux_sym_shebang_repeat1, - STATE(6837), 1, - sym_val_list, - STATE(7238), 1, - aux_sym_val_table_repeat1, - [204811] = 8, + STATE(7693), 1, + sym__immediate_decimal, + ACTIONS(8579), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [208761] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - ACTIONS(9791), 1, - anon_sym_RBRACK, - STATE(5952), 1, + ACTIONS(8877), 1, + sym_identifier, + ACTIONS(9790), 1, + anon_sym_DASH_DASH, + ACTIONS(9793), 1, + anon_sym_DASH2, + STATE(5980), 2, sym_comment, - STATE(6171), 1, - aux_sym_shebang_repeat1, - STATE(7208), 1, - aux_sym_val_table_repeat1, - STATE(7313), 1, - sym_val_list, - [204836] = 6, + aux_sym_ctrl_do_repeat1, + STATE(6035), 2, + sym_short_flag, + sym_long_flag, + [208782] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4708), 1, - anon_sym_DOT_DOT2, - ACTIONS(9678), 1, - aux_sym_unquoted_token2, - STATE(5953), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(5981), 1, sym_comment, - ACTIONS(4710), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(9624), 2, - sym_filesize_unit, - sym_duration_unit, - [204857] = 4, + STATE(6510), 1, + sym_block, + ACTIONS(9796), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [208801] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2488), 1, + ACTIONS(5134), 1, anon_sym_DASH2, - STATE(5954), 1, + STATE(5982), 1, sym_comment, - ACTIONS(2490), 5, + ACTIONS(5132), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [204874] = 4, + [208818] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2068), 1, + ACTIONS(5138), 1, anon_sym_DASH2, - STATE(5955), 1, + STATE(5983), 1, sym_comment, - ACTIONS(2070), 5, + ACTIONS(5136), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [204891] = 8, + [208835] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9684), 1, - anon_sym_LBRACE, - STATE(4956), 1, - sym_block, - STATE(4962), 1, - sym_val_closure, - STATE(5053), 1, - sym__blosure, - STATE(5956), 1, + STATE(5984), 1, sym_comment, - STATE(5962), 1, - aux_sym_shebang_repeat1, - [204916] = 6, + ACTIONS(9798), 6, + sym_raw_string_begin, + sym_identifier, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [208850] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9544), 1, + anon_sym_DASH_DASH, + ACTIONS(9546), 1, + anon_sym_DASH2, + ACTIONS(9800), 1, + sym_identifier, + STATE(5858), 1, + aux_sym_ctrl_do_repeat1, + STATE(5985), 1, + sym_comment, + STATE(6035), 2, + sym_short_flag, + sym_long_flag, + [208873] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2165), 1, + ACTIONS(1946), 1, + anon_sym_RBRACE, + ACTIONS(1948), 1, sym__entry_separator, - ACTIONS(9793), 1, - anon_sym_DOT_DOT2, - STATE(5957), 1, + ACTIONS(9396), 1, + anon_sym_DOT, + STATE(5986), 1, sym_comment, - ACTIONS(2159), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9795), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [204937] = 4, + STATE(5997), 1, + aux_sym_cell_path_repeat1, + STATE(6783), 1, + sym_path, + STATE(7640), 1, + sym_cell_path, + [208898] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2496), 1, + ACTIONS(2410), 1, anon_sym_DASH2, - STATE(5958), 1, + STATE(5987), 1, sym_comment, - ACTIONS(2498), 5, + ACTIONS(2412), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [204954] = 6, + [208915] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1888), 1, - aux_sym_unquoted_token2, - ACTIONS(9797), 1, - anon_sym_DOT_DOT2, - STATE(5959), 1, + ACTIONS(2414), 1, + anon_sym_DASH2, + STATE(5988), 1, sym_comment, - ACTIONS(1886), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(9799), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [204975] = 5, + ACTIONS(2416), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [208932] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9492), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - STATE(5960), 1, + ACTIONS(9530), 1, + anon_sym_DASH_DASH, + ACTIONS(9532), 1, + anon_sym_DASH2, + STATE(5989), 1, sym_comment, - STATE(6679), 1, - sym_val_record, - ACTIONS(9801), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [204994] = 5, + STATE(7143), 1, + sym_block, + STATE(7460), 1, + sym_short_flag, + STATE(7464), 1, + sym_long_flag, + [208957] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9492), 1, - anon_sym_LBRACE, - STATE(5961), 1, + ACTIONS(2418), 1, + anon_sym_DASH2, + STATE(5990), 1, sym_comment, - STATE(6235), 1, - sym_val_record, - ACTIONS(9803), 4, + ACTIONS(2420), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [205013] = 8, + anon_sym_DASH_DASH, + anon_sym_as, + [208974] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9684), 1, - anon_sym_LBRACE, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4956), 1, - sym_block, - STATE(4962), 1, - sym_val_closure, - STATE(5086), 1, - sym__blosure, - STATE(5962), 1, + STATE(5991), 1, sym_comment, - [205038] = 8, - ACTIONS(247), 1, + ACTIONS(1785), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1787), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [208991] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - ACTIONS(9805), 1, + ACTIONS(7381), 1, anon_sym_RBRACK, - STATE(5963), 1, + ACTIONS(7383), 1, + sym__entry_separator, + ACTIONS(9396), 1, + anon_sym_DOT, + STATE(5992), 1, sym_comment, - STATE(6182), 1, - aux_sym_shebang_repeat1, - STATE(6841), 1, - sym_val_list, - STATE(7241), 1, - aux_sym_val_table_repeat1, - [205063] = 7, + STATE(5997), 1, + aux_sym_cell_path_repeat1, + STATE(6783), 1, + sym_path, + STATE(7455), 1, + sym_cell_path, + [209016] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9650), 1, + ACTIONS(9802), 1, + anon_sym_EQ2, + ACTIONS(9804), 1, + sym_short_flag_identifier, + STATE(5993), 1, + sym_comment, + ACTIONS(4974), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + ACTIONS(4976), 2, anon_sym_DASH_DASH, - ACTIONS(9652), 1, anon_sym_DASH2, - ACTIONS(9807), 1, - anon_sym_in2, - STATE(5964), 1, + [209037] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9438), 1, + anon_sym_alias, + ACTIONS(9440), 1, + anon_sym_const, + ACTIONS(9442), 1, + anon_sym_def, + ACTIONS(9444), 1, + anon_sym_extern, + ACTIONS(9446), 1, + anon_sym_module, + ACTIONS(9448), 1, + anon_sym_use, + STATE(5994), 1, sym_comment, - STATE(7948), 1, - sym__flag, - STATE(5593), 2, + [209062] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6182), 1, + anon_sym_LBRACE, + ACTIONS(9530), 1, + anon_sym_DASH_DASH, + ACTIONS(9532), 1, + anon_sym_DASH2, + STATE(5995), 1, + sym_comment, + STATE(7163), 1, + sym_block, + STATE(7471), 1, sym_short_flag, + STATE(7475), 1, sym_long_flag, - [205086] = 4, + [209087] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1847), 1, + anon_sym_DASH2, + STATE(5996), 1, + sym_comment, + ACTIONS(1851), 5, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + sym__table_head_separator, + [209104] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(969), 1, + sym__entry_separator, + ACTIONS(9396), 1, + anon_sym_DOT, + STATE(5997), 1, + sym_comment, + STATE(6020), 1, + aux_sym_cell_path_repeat1, + STATE(6783), 1, + sym_path, + ACTIONS(967), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [209127] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1907), 1, + ACTIONS(9454), 1, anon_sym_DASH2, - STATE(5965), 1, + STATE(5998), 1, sym_comment, - ACTIONS(1911), 5, + ACTIONS(9452), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [205103] = 7, + [209144] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9650), 1, - anon_sym_DASH_DASH, - ACTIONS(9652), 1, - anon_sym_DASH2, - ACTIONS(9809), 1, - anon_sym_in2, - STATE(5966), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9500), 1, + anon_sym_LBRACE, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4860), 1, + sym_block, + STATE(4861), 1, + sym_val_closure, + STATE(5042), 1, + sym__blosure, + STATE(5999), 1, sym_comment, - STATE(7952), 1, - sym__flag, - STATE(5593), 2, - sym_short_flag, - sym_long_flag, - [205126] = 4, + [209169] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5168), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9500), 1, + anon_sym_LBRACE, + STATE(4860), 1, + sym_block, + STATE(4861), 1, + sym_val_closure, + STATE(5042), 1, + sym__blosure, + STATE(5865), 1, + aux_sym_shebang_repeat1, + STATE(6000), 1, + sym_comment, + [209194] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2430), 1, anon_sym_DASH2, - STATE(5967), 1, + STATE(6001), 1, sym_comment, - ACTIONS(5166), 5, + ACTIONS(2432), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [205143] = 4, + [209211] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5172), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9500), 1, + anon_sym_LBRACE, + STATE(4860), 1, + sym_block, + STATE(4861), 1, + sym_val_closure, + STATE(5046), 1, + sym__blosure, + STATE(5875), 1, + aux_sym_shebang_repeat1, + STATE(6002), 1, + sym_comment, + [209236] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6003), 1, + sym_comment, + ACTIONS(1733), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(1737), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [209253] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9806), 1, + anon_sym_LT, + STATE(6004), 1, + sym_comment, + ACTIONS(8019), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [209270] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8421), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8778), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8780), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8782), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9524), 1, + aux_sym_unquoted_token3, + STATE(6005), 1, + sym_comment, + STATE(6318), 1, + sym__immediate_decimal, + [209295] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1820), 1, anon_sym_DASH2, - STATE(5968), 1, + ACTIONS(9808), 1, + anon_sym_DOT_DOT2, + STATE(6006), 1, sym_comment, - ACTIONS(5170), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(1828), 2, anon_sym_DASH_DASH, - anon_sym_as, - [205160] = 6, + anon_sym_LBRACE, + ACTIONS(9810), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [209316] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1878), 1, + ACTIONS(1802), 1, anon_sym_DASH2, - ACTIONS(9811), 1, + ACTIONS(9812), 1, anon_sym_DOT_DOT2, - STATE(5969), 1, + STATE(6007), 1, sym_comment, - ACTIONS(1886), 2, + ACTIONS(1810), 2, anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(9813), 2, + ACTIONS(9814), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [205181] = 5, + [209337] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9815), 1, + ACTIONS(9816), 1, anon_sym_DOT_DOT2, - STATE(5970), 1, + STATE(6008), 1, sym_comment, - ACTIONS(9817), 2, + ACTIONS(9818), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2165), 3, + ACTIONS(2163), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [205200] = 4, + [209356] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1948), 1, + ACTIONS(5099), 1, anon_sym_DASH2, - STATE(5971), 1, + STATE(6009), 1, sym_comment, - ACTIONS(1950), 5, + ACTIONS(5097), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [205217] = 6, + [209373] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2167), 1, + ACTIONS(2122), 1, anon_sym_DASH2, - ACTIONS(9819), 1, + ACTIONS(9820), 1, anon_sym_DOT_DOT2, - STATE(5972), 1, + STATE(6010), 1, sym_comment, - ACTIONS(2173), 2, + ACTIONS(2128), 2, anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(9821), 2, + ACTIONS(9822), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [205238] = 6, + [209394] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2175), 1, + ACTIONS(2130), 1, anon_sym_DASH2, - ACTIONS(9823), 1, + ACTIONS(9824), 1, anon_sym_DOT_DOT2, - STATE(5973), 1, + STATE(6011), 1, sym_comment, - ACTIONS(2181), 2, + ACTIONS(2136), 2, anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(9825), 2, + ACTIONS(9826), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [205259] = 6, + [209415] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2133), 1, + ACTIONS(2146), 1, anon_sym_DASH2, - ACTIONS(9827), 1, + ACTIONS(9828), 1, anon_sym_DOT_DOT2, - STATE(5974), 1, + STATE(6012), 1, sym_comment, - ACTIONS(2139), 2, + ACTIONS(2152), 2, anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(9829), 2, + ACTIONS(9830), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [205280] = 3, + [209436] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(5975), 1, + ACTIONS(9832), 1, + anon_sym_LT, + STATE(6013), 1, sym_comment, - ACTIONS(9831), 6, - sym_raw_string_begin, - sym_identifier, + ACTIONS(8019), 5, + anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [205295] = 8, + anon_sym_AT, + anon_sym_LBRACE, + [209453] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9464), 1, + ACTIONS(9442), 1, anon_sym_def, - ACTIONS(9466), 1, + ACTIONS(9444), 1, anon_sym_extern, - ACTIONS(9468), 1, + ACTIONS(9446), 1, anon_sym_module, - ACTIONS(9470), 1, + ACTIONS(9448), 1, anon_sym_use, - ACTIONS(9833), 1, + ACTIONS(9834), 1, anon_sym_alias, - ACTIONS(9835), 1, + ACTIONS(9836), 1, anon_sym_const, - STATE(5976), 1, - sym_comment, - [205320] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6184), 1, - anon_sym_LBRACE, - STATE(5977), 1, + STATE(6014), 1, sym_comment, - STATE(6671), 1, - sym_block, - ACTIONS(9771), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [205339] = 4, + [209478] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1972), 1, + ACTIONS(5121), 1, anon_sym_DASH2, - STATE(5978), 1, + STATE(6015), 1, sym_comment, - ACTIONS(1974), 5, + ACTIONS(5119), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [205356] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9540), 1, - anon_sym_LPAREN, - ACTIONS(9837), 1, - anon_sym_DQUOTE2, - STATE(5805), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5979), 1, - sym_comment, - STATE(6665), 1, - sym_expr_interpolated, - ACTIONS(9542), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [205379] = 5, + [209495] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9839), 1, + ACTIONS(9838), 1, anon_sym_DOT_DOT2, - STATE(5980), 1, + STATE(6016), 1, sym_comment, - ACTIONS(9841), 2, + ACTIONS(9840), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2173), 3, + ACTIONS(2128), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [205398] = 5, + [209514] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9843), 1, + ACTIONS(9842), 1, anon_sym_DOT_DOT2, - STATE(5981), 1, + STATE(6017), 1, sym_comment, - ACTIONS(9845), 2, + ACTIONS(9844), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2181), 3, + ACTIONS(2136), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [205417] = 5, + [209533] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9847), 1, + ACTIONS(9846), 1, anon_sym_DOT_DOT2, - STATE(5982), 1, + STATE(6018), 1, sym_comment, - ACTIONS(9849), 2, + ACTIONS(9848), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2139), 3, + ACTIONS(2152), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [205436] = 8, + [209552] = 8, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9464), 1, + ACTIONS(9442), 1, anon_sym_def, - ACTIONS(9466), 1, + ACTIONS(9444), 1, anon_sym_extern, - ACTIONS(9468), 1, + ACTIONS(9446), 1, anon_sym_module, - ACTIONS(9470), 1, + ACTIONS(9448), 1, anon_sym_use, - ACTIONS(9851), 1, + ACTIONS(9850), 1, anon_sym_alias, - ACTIONS(9853), 1, + ACTIONS(9852), 1, anon_sym_const, - STATE(5983), 1, + STATE(6019), 1, + sym_comment, + [209577] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(973), 1, + sym__entry_separator, + ACTIONS(9854), 1, + anon_sym_DOT, + STATE(6783), 1, + sym_path, + ACTIONS(971), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(6020), 2, + sym_comment, + aux_sym_cell_path_repeat1, + [209598] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2456), 1, + anon_sym_DASH2, + STATE(6021), 1, + sym_comment, + ACTIONS(2458), 5, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + sym__table_head_separator, + [209615] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6022), 1, sym_comment, - [205461] = 7, + ACTIONS(1841), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1843), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [209632] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9540), 1, + ACTIONS(9502), 1, anon_sym_LPAREN, - ACTIONS(9855), 1, + ACTIONS(9857), 1, anon_sym_DQUOTE2, - STATE(5984), 1, - sym_comment, - STATE(5998), 1, + STATE(5754), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6665), 1, + STATE(6023), 1, + sym_comment, + STATE(6311), 1, sym_expr_interpolated, - ACTIONS(9542), 2, + ACTIONS(9504), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [205484] = 8, + [209655] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + ACTIONS(9859), 1, + anon_sym_RBRACK, + STATE(6024), 1, + sym_comment, + STATE(6240), 1, + aux_sym_shebang_repeat1, + STATE(6945), 1, + aux_sym_val_table_repeat1, + STATE(7100), 1, + sym_val_list, + [209680] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9442), 1, + anon_sym_def, + ACTIONS(9444), 1, + anon_sym_extern, + ACTIONS(9446), 1, + anon_sym_module, + ACTIONS(9448), 1, + anon_sym_use, + ACTIONS(9861), 1, + anon_sym_alias, + ACTIONS(9863), 1, + anon_sym_const, + STATE(6025), 1, + sym_comment, + [209705] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9500), 1, + anon_sym_LBRACE, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4860), 1, + sym_block, + STATE(4861), 1, + sym_val_closure, + STATE(5028), 1, + sym__blosure, + STATE(6026), 1, + sym_comment, + [209730] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9500), 1, + anon_sym_LBRACE, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4860), 1, + sym_block, + STATE(4861), 1, + sym_val_closure, + STATE(5031), 1, + sym__blosure, + STATE(6027), 1, + sym_comment, + [209755] = 8, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + ACTIONS(9865), 1, + anon_sym_RBRACK, + STATE(6028), 1, + sym_comment, + STATE(6194), 1, + aux_sym_shebang_repeat1, + STATE(7099), 1, + sym_val_list, + STATE(7406), 1, + aux_sym_val_table_repeat1, + [209780] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4716), 1, - aux_sym_unquoted_token3, - ACTIONS(8297), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8877), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8879), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8881), 1, - aux_sym__immediate_decimal_token5, - STATE(5985), 1, + ACTIONS(9867), 1, + anon_sym_LPAREN, + ACTIONS(9869), 1, + sym_unescaped_interpolated_content, + ACTIONS(9871), 1, + anon_sym_SQUOTE, + STATE(6029), 1, sym_comment, - STATE(6732), 1, - sym__immediate_decimal, - [205509] = 6, + STATE(6049), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7162), 1, + sym_expr_interpolated, + [209802] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1707), 1, + anon_sym_DASH2, + ACTIONS(8635), 1, + aux_sym_unquoted_token2, + STATE(6030), 1, + sym_comment, + ACTIONS(1719), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [209820] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9857), 1, - anon_sym_DOT, - ACTIONS(9859), 1, + ACTIONS(9867), 1, + anon_sym_LPAREN, + ACTIONS(9869), 1, + sym_unescaped_interpolated_content, + ACTIONS(9873), 1, + anon_sym_SQUOTE, + STATE(6031), 1, + sym_comment, + STATE(6049), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7162), 1, + sym_expr_interpolated, + [209842] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1785), 1, + aux_sym_unquoted_token2, + ACTIONS(9875), 1, aux_sym__immediate_decimal_token2, - STATE(5986), 1, + STATE(6032), 1, sym_comment, - ACTIONS(1755), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1757), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [205530] = 8, - ACTIONS(3), 1, + ACTIONS(1787), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [209860] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7367), 1, - anon_sym_RBRACK, - ACTIONS(7369), 1, - sym__entry_separator, - ACTIONS(9420), 1, + ACTIONS(1873), 1, + anon_sym_LBRACE, + ACTIONS(8925), 1, anon_sym_DOT, - STATE(5950), 1, - aux_sym_cell_path_repeat1, - STATE(5987), 1, - sym_comment, - STATE(6234), 1, + STATE(1882), 1, sym_path, - STATE(7477), 1, + STATE(2050), 1, sym_cell_path, - [205555] = 4, + STATE(5562), 1, + aux_sym_cell_path_repeat1, + STATE(6033), 1, + sym_comment, + [209882] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9867), 1, + anon_sym_LPAREN, + ACTIONS(9869), 1, + sym_unescaped_interpolated_content, + ACTIONS(9877), 1, + anon_sym_SQUOTE, + STATE(6034), 1, + sym_comment, + STATE(6039), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7162), 1, + sym_expr_interpolated, + [209904] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2387), 1, + ACTIONS(9454), 1, anon_sym_DASH2, - STATE(5988), 1, + STATE(6035), 1, sym_comment, - ACTIONS(2389), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(9452), 4, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_as, - [205572] = 6, + anon_sym_LBRACE, + [209920] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8403), 1, + anon_sym_DOLLAR, + ACTIONS(8647), 1, + sym_identifier, + STATE(5398), 1, + sym_val_variable, + STATE(6036), 1, + sym_comment, + STATE(6040), 1, + sym__variable_name, + STATE(7198), 1, + sym__assignment_pattern_parenthesized, + [209942] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6037), 1, + sym_comment, + ACTIONS(8251), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [209956] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9867), 1, + anon_sym_LPAREN, + ACTIONS(9869), 1, + sym_unescaped_interpolated_content, + ACTIONS(9879), 1, + anon_sym_SQUOTE, + STATE(6038), 1, + sym_comment, + STATE(6044), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7162), 1, + sym_expr_interpolated, + [209978] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9867), 1, + anon_sym_LPAREN, + ACTIONS(9869), 1, + sym_unescaped_interpolated_content, + ACTIONS(9881), 1, + anon_sym_SQUOTE, + STATE(6039), 1, + sym_comment, + STATE(6049), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7162), 1, + sym_expr_interpolated, + [210000] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9883), 1, + anon_sym_EQ, + ACTIONS(9885), 1, + anon_sym_COLON, + STATE(6040), 1, + sym_comment, + STATE(6862), 1, + aux_sym_shebang_repeat1, + STATE(7825), 1, + sym_param_type, + [210022] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1032), 1, + ACTIONS(2173), 1, + anon_sym_RBRACE, + ACTIONS(2175), 1, sym__entry_separator, - ACTIONS(9861), 1, + ACTIONS(9595), 1, anon_sym_DOT_DOT2, - STATE(5989), 1, + STATE(6041), 1, sym_comment, - ACTIONS(1030), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9863), 2, + ACTIONS(9597), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [205593] = 8, - ACTIONS(3), 1, + [210042] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4716), 1, - aux_sym_unquoted_token3, - ACTIONS(8557), 1, + ACTIONS(9887), 1, + anon_sym_PIPE, + ACTIONS(9889), 1, + anon_sym_if, + ACTIONS(9891), 1, + anon_sym_EQ_GT, + STATE(6042), 1, + sym_comment, + STATE(7025), 1, + aux_sym_match_pattern_repeat1, + STATE(7724), 1, + sym_match_guard, + [210064] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1739), 1, + aux_sym_unquoted_token2, + ACTIONS(9893), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8792), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8794), 1, + ACTIONS(9895), 1, + aux_sym__immediate_decimal_token2, + STATE(6043), 1, + sym_comment, + ACTIONS(1741), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [210084] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9867), 1, + anon_sym_LPAREN, + ACTIONS(9869), 1, + sym_unescaped_interpolated_content, + ACTIONS(9897), 1, + anon_sym_SQUOTE, + STATE(6044), 1, + sym_comment, + STATE(6049), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7162), 1, + sym_expr_interpolated, + [210106] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(992), 1, + anon_sym_DOT, + STATE(6045), 1, + sym_comment, + ACTIONS(990), 4, + anon_sym_RBRACK, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + [210122] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8581), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8796), 1, + ACTIONS(8583), 1, aux_sym__immediate_decimal_token5, - STATE(5990), 1, + STATE(6046), 1, sym_comment, - STATE(7655), 1, + STATE(7566), 1, sym__immediate_decimal, - [205618] = 8, + ACTIONS(8579), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [210142] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8403), 1, + anon_sym_DOLLAR, + ACTIONS(8647), 1, + sym_identifier, + STATE(5398), 1, + sym_val_variable, + STATE(6047), 1, + sym_comment, + STATE(6212), 1, + sym__variable_name, + STATE(7220), 1, + sym__assignment_pattern, + [210164] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1881), 1, + anon_sym_LBRACE, + ACTIONS(8925), 1, + anon_sym_DOT, + STATE(1882), 1, + sym_path, + STATE(2076), 1, + sym_cell_path, + STATE(5562), 1, + aux_sym_cell_path_repeat1, + STATE(6048), 1, + sym_comment, + [210186] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9899), 1, + anon_sym_LPAREN, + ACTIONS(9902), 1, + sym_unescaped_interpolated_content, + ACTIONS(9905), 1, + anon_sym_SQUOTE, + STATE(7162), 1, + sym_expr_interpolated, + STATE(6049), 2, + sym_comment, + aux_sym__inter_single_quotes_repeat1, + [210206] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9907), 1, + anon_sym_DOT_DOT2, + STATE(6050), 1, + sym_comment, + ACTIONS(1828), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(9909), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [210224] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2086), 1, + ACTIONS(9692), 1, + aux_sym__immediate_decimal_token2, + STATE(6051), 1, + sym_comment, + ACTIONS(1765), 2, anon_sym_RBRACE, - ACTIONS(2088), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1767), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(9420), 1, + [210242] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1885), 1, + anon_sym_LBRACE, + ACTIONS(8925), 1, anon_sym_DOT, - STATE(5950), 1, + STATE(1882), 1, + sym_path, + STATE(2083), 1, + sym_cell_path, + STATE(5562), 1, aux_sym_cell_path_repeat1, - STATE(5991), 1, + STATE(6052), 1, sym_comment, - STATE(6234), 1, - sym_path, - STATE(7518), 1, + [210264] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(963), 1, + aux_sym_record_entry_token1, + ACTIONS(6524), 1, + anon_sym_DOT, + STATE(1501), 1, sym_cell_path, - [205643] = 3, + STATE(3502), 1, + aux_sym_cell_path_repeat1, + STATE(3607), 1, + sym_path, + STATE(6053), 1, + sym_comment, + [210286] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(5992), 1, + ACTIONS(1869), 1, + anon_sym_LBRACE, + ACTIONS(8925), 1, + anon_sym_DOT, + STATE(1882), 1, + sym_path, + STATE(2163), 1, + sym_cell_path, + STATE(5562), 1, + aux_sym_cell_path_repeat1, + STATE(6054), 1, sym_comment, - ACTIONS(9865), 6, - sym_raw_string_begin, - sym_identifier, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [205658] = 4, + [210308] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1767), 1, + sym__entry_separator, + ACTIONS(8700), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9911), 1, + anon_sym_DOT, + STATE(6055), 1, + sym_comment, + ACTIONS(1765), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [210328] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2165), 1, + anon_sym_RBRACE, + ACTIONS(2171), 1, + sym__entry_separator, + ACTIONS(9595), 1, + anon_sym_DOT_DOT2, + STATE(6056), 1, + sym_comment, + ACTIONS(9597), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [210348] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6057), 1, + sym_comment, + ACTIONS(1004), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(1002), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + [210364] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9867), 1, - anon_sym_LT, - STATE(5993), 1, + STATE(6058), 1, sym_comment, - ACTIONS(7953), 5, + ACTIONS(8065), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [205675] = 4, + [210378] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5164), 1, - anon_sym_DASH2, - STATE(5994), 1, + ACTIONS(1804), 1, + anon_sym_LPAREN2, + ACTIONS(1812), 1, + aux_sym_unquoted_token2, + ACTIONS(9913), 1, + anon_sym_DOT_DOT2, + STATE(6059), 1, sym_comment, - ACTIONS(5162), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [205692] = 8, - ACTIONS(247), 1, + ACTIONS(9915), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [210398] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9464), 1, - anon_sym_def, - ACTIONS(9466), 1, - anon_sym_extern, - ACTIONS(9468), 1, - anon_sym_module, - ACTIONS(9470), 1, - anon_sym_use, - ACTIONS(9869), 1, - anon_sym_alias, - ACTIONS(9871), 1, - anon_sym_const, - STATE(5995), 1, + ACTIONS(1802), 1, + anon_sym_RBRACE, + ACTIONS(1810), 1, + sym__entry_separator, + ACTIONS(9917), 1, + anon_sym_DOT_DOT2, + STATE(6060), 1, sym_comment, - [205717] = 7, + ACTIONS(9919), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [210418] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9540), 1, + ACTIONS(9867), 1, anon_sym_LPAREN, - ACTIONS(9873), 1, - anon_sym_DQUOTE2, - STATE(5776), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5996), 1, + ACTIONS(9869), 1, + sym_unescaped_interpolated_content, + ACTIONS(9921), 1, + anon_sym_SQUOTE, + STATE(6061), 1, sym_comment, - STATE(6665), 1, + STATE(6065), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7162), 1, sym_expr_interpolated, - ACTIONS(9542), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [205740] = 5, + [210440] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, + ACTIONS(1765), 1, + aux_sym_unquoted_token2, + ACTIONS(9617), 1, + aux_sym__immediate_decimal_token2, + STATE(6062), 1, + sym_comment, + ACTIONS(1767), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [210458] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6182), 1, anon_sym_LBRACE, - STATE(5997), 1, + STATE(6063), 1, sym_comment, - STATE(6271), 1, + STATE(7453), 1, sym_block, - ACTIONS(9875), 4, + ACTIONS(9607), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [205759] = 7, + [210476] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9540), 1, + ACTIONS(9867), 1, anon_sym_LPAREN, - ACTIONS(9877), 1, - anon_sym_DQUOTE2, - STATE(5805), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5998), 1, + ACTIONS(9869), 1, + sym_unescaped_interpolated_content, + ACTIONS(9923), 1, + anon_sym_SQUOTE, + STATE(6064), 1, sym_comment, - STATE(6665), 1, + STATE(6088), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7162), 1, sym_expr_interpolated, - ACTIONS(9542), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [205782] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9879), 1, - sym_long_flag_identifier, - ACTIONS(9881), 1, - anon_sym_EQ2, - STATE(5999), 1, - sym_comment, - ACTIONS(4936), 2, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - ACTIONS(4938), 2, - sym_identifier, - anon_sym_DASH2, - [205803] = 5, - ACTIONS(247), 1, + [210498] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(221), 1, - aux_sym__block_body_repeat1, - STATE(6000), 1, + ACTIONS(9867), 1, + anon_sym_LPAREN, + ACTIONS(9869), 1, + sym_unescaped_interpolated_content, + ACTIONS(9925), 1, + anon_sym_SQUOTE, + STATE(6049), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6065), 1, sym_comment, - ACTIONS(139), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(615), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [205821] = 4, + STATE(7162), 1, + sym_expr_interpolated, + [210520] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5022), 1, + ACTIONS(5064), 1, anon_sym_DASH2, - STATE(6001), 1, + STATE(6066), 1, sym_comment, - ACTIONS(5020), 4, + ACTIONS(5062), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [205837] = 7, + [210536] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8487), 1, + ACTIONS(8403), 1, anon_sym_DOLLAR, - ACTIONS(8649), 1, + ACTIONS(8647), 1, sym_identifier, - STATE(5480), 1, + STATE(5398), 1, sym_val_variable, - STATE(6002), 1, - sym_comment, - STATE(6024), 1, + STATE(6040), 1, sym__variable_name, - STATE(7029), 1, - sym__assignment_pattern, - [205859] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(9883), 1, - anon_sym_use, - ACTIONS(9885), 1, - anon_sym_list, - ACTIONS(9887), 1, - anon_sym_hide, - ACTIONS(9889), 1, - anon_sym_new, - STATE(6003), 1, + STATE(6067), 1, sym_comment, - [205881] = 7, + STATE(7452), 1, + sym__assignment_pattern_parenthesized, + [210558] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1737), 1, - aux_sym_record_entry_token1, - ACTIONS(6538), 1, + ACTIONS(1889), 1, + anon_sym_LBRACE, + ACTIONS(8925), 1, anon_sym_DOT, - STATE(2022), 1, + STATE(1882), 1, + sym_path, + STATE(1991), 1, sym_cell_path, - STATE(3482), 1, + STATE(5562), 1, aux_sym_cell_path_repeat1, - STATE(3600), 1, - sym_path, - STATE(6004), 1, + STATE(6068), 1, sym_comment, - [205903] = 5, + [210580] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6186), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - STATE(6005), 1, + STATE(6069), 1, sym_comment, - STATE(6994), 1, + STATE(7091), 1, sym_block, - ACTIONS(9532), 3, + ACTIONS(9607), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [205921] = 5, + [210598] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(9927), 1, + anon_sym_use, + ACTIONS(9929), 1, + anon_sym_list, + ACTIONS(9931), 1, + anon_sym_hide, + ACTIONS(9933), 1, + anon_sym_new, + STATE(6070), 1, + sym_comment, + [210620] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6186), 1, + ACTIONS(1893), 1, anon_sym_LBRACE, - STATE(6006), 1, + ACTIONS(8925), 1, + anon_sym_DOT, + STATE(1882), 1, + sym_path, + STATE(1983), 1, + sym_cell_path, + STATE(5562), 1, + aux_sym_cell_path_repeat1, + STATE(6071), 1, sym_comment, - STATE(6998), 1, - sym_block, - ACTIONS(9532), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [205939] = 5, - ACTIONS(3), 1, + [210642] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(980), 1, + ACTIONS(1897), 1, + anon_sym_LBRACE, + ACTIONS(8925), 1, anon_sym_DOT, - ACTIONS(9891), 1, - anon_sym_QMARK2, - STATE(6007), 1, + STATE(1882), 1, + sym_path, + STATE(2003), 1, + sym_cell_path, + STATE(5562), 1, + aux_sym_cell_path_repeat1, + STATE(6072), 1, sym_comment, - ACTIONS(978), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [205957] = 5, + [210664] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(986), 1, - anon_sym_DOT, - ACTIONS(9893), 1, - anon_sym_QMARK2, - STATE(6008), 1, + ACTIONS(9935), 1, + aux_sym__immediate_decimal_token2, + STATE(6073), 1, sym_comment, - ACTIONS(984), 3, - anon_sym_RBRACK, + ACTIONS(1785), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1787), 2, + anon_sym_LPAREN2, sym__entry_separator, - sym__table_head_separator, - [205975] = 5, + [210682] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9895), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9885), 1, + anon_sym_COLON, + ACTIONS(9937), 1, + anon_sym_EQ, + STATE(6074), 1, + sym_comment, + STATE(6862), 1, + aux_sym_shebang_repeat1, + STATE(7717), 1, + sym_param_type, + [210704] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(224), 1, + aux_sym__block_body_repeat1, + STATE(6075), 1, + sym_comment, + ACTIONS(139), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(1459), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [210722] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4998), 1, + anon_sym_DASH2, + ACTIONS(9939), 1, + anon_sym_EQ2, + STATE(6076), 1, + sym_comment, + ACTIONS(4996), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [210740] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9941), 1, anon_sym_DOT_DOT2, - STATE(6009), 1, + STATE(6077), 1, sym_comment, - ACTIONS(1874), 2, + ACTIONS(1810), 2, sym__newline, anon_sym_LBRACE, - ACTIONS(9897), 2, + ACTIONS(9943), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [205993] = 6, + [210758] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1707), 1, + anon_sym_DASH2, + ACTIONS(8635), 1, + aux_sym_unquoted_token2, + STATE(6078), 1, + sym_comment, + ACTIONS(1719), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [210776] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9899), 1, - anon_sym_LPAREN, - ACTIONS(9902), 1, - sym_unescaped_interpolated_content, - ACTIONS(9905), 1, - anon_sym_SQUOTE, - STATE(6902), 1, - sym_expr_interpolated, - STATE(6010), 2, + ACTIONS(5918), 1, + anon_sym_RBRACK, + ACTIONS(5924), 1, + sym__entry_separator, + ACTIONS(9595), 1, + anon_sym_DOT_DOT2, + STATE(6079), 1, sym_comment, - aux_sym__inter_single_quotes_repeat1, - [206013] = 5, + ACTIONS(9597), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [210796] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6186), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - STATE(6011), 1, + STATE(6080), 1, sym_comment, - STATE(7281), 1, + STATE(7428), 1, sym_block, - ACTIONS(9771), 3, + ACTIONS(9605), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [206031] = 5, + [210814] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6081), 1, + sym_comment, + STATE(7064), 1, + sym_val_list, + STATE(7236), 1, + aux_sym_val_table_repeat1, + [210836] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6186), 1, + ACTIONS(1559), 1, + aux_sym_unquoted_token2, + ACTIONS(1828), 1, anon_sym_LBRACE, - STATE(6012), 1, + ACTIONS(9945), 1, + anon_sym_DOT_DOT2, + STATE(6082), 1, sym_comment, - STATE(7291), 1, - sym_block, - ACTIONS(9771), 3, - ts_builtin_sym_end, + ACTIONS(9947), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [210856] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9595), 1, + anon_sym_DOT_DOT2, + ACTIONS(9949), 1, + anon_sym_RBRACE, + ACTIONS(9951), 1, + sym__entry_separator, + STATE(6083), 1, + sym_comment, + ACTIONS(9597), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [210876] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, sym__newline, - anon_sym_SEMI, - [206049] = 7, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6084), 1, + sym_comment, + STATE(7126), 1, + sym_val_list, + STATE(7127), 1, + aux_sym_val_table_repeat1, + [210898] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9595), 1, + anon_sym_DOT_DOT2, + ACTIONS(9953), 1, + anon_sym_RBRACE, + ACTIONS(9955), 1, + sym__entry_separator, + STATE(6085), 1, + sym_comment, + ACTIONS(9597), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [210918] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1927), 1, + ACTIONS(1913), 1, anon_sym_LBRACE, - ACTIONS(8960), 1, + ACTIONS(8925), 1, anon_sym_DOT, - STATE(1894), 1, + STATE(1882), 1, sym_path, - STATE(1984), 1, + STATE(2057), 1, sym_cell_path, - STATE(5608), 1, + STATE(5562), 1, aux_sym_cell_path_repeat1, - STATE(6013), 1, + STATE(6086), 1, sym_comment, - [206071] = 3, + [210940] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(6014), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6087), 1, sym_comment, - ACTIONS(7953), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [206085] = 5, + STATE(7247), 1, + aux_sym_val_table_repeat1, + STATE(7253), 1, + sym_val_list, + [210962] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9867), 1, + anon_sym_LPAREN, + ACTIONS(9869), 1, + sym_unescaped_interpolated_content, + ACTIONS(9957), 1, + anon_sym_SQUOTE, + STATE(6049), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6088), 1, + sym_comment, + STATE(7162), 1, + sym_expr_interpolated, + [210984] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9907), 1, + ACTIONS(1559), 1, + aux_sym_unquoted_token2, + ACTIONS(1822), 1, + anon_sym_LPAREN2, + ACTIONS(9959), 1, anon_sym_DOT_DOT2, - STATE(6015), 1, + STATE(6089), 1, sym_comment, - ACTIONS(1886), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(9909), 2, + ACTIONS(9961), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [206103] = 5, + [211004] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9911), 1, + ACTIONS(8403), 1, + anon_sym_DOLLAR, + ACTIONS(8647), 1, + sym_identifier, + STATE(5398), 1, + sym_val_variable, + STATE(6090), 1, + sym_comment, + STATE(6212), 1, + sym__variable_name, + STATE(7205), 1, + sym__assignment_pattern, + [211026] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9963), 1, anon_sym_DOT_DOT2, - STATE(6016), 1, + STATE(6091), 1, sym_comment, - ACTIONS(2173), 2, + ACTIONS(2128), 2, sym__newline, anon_sym_LBRACE, - ACTIONS(9913), 2, + ACTIONS(9965), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [206121] = 5, + [211044] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9867), 1, + anon_sym_LPAREN, + ACTIONS(9869), 1, + sym_unescaped_interpolated_content, + ACTIONS(9967), 1, + anon_sym_SQUOTE, + STATE(6092), 1, + sym_comment, + STATE(6104), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7162), 1, + sym_expr_interpolated, + [211066] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9915), 1, + ACTIONS(9969), 1, anon_sym_DOT_DOT2, - STATE(6017), 1, + STATE(6093), 1, sym_comment, - ACTIONS(2181), 2, + ACTIONS(2136), 2, sym__newline, anon_sym_LBRACE, - ACTIONS(9917), 2, + ACTIONS(9971), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [206139] = 5, + [211084] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9919), 1, + ACTIONS(9973), 1, anon_sym_DOT_DOT2, - STATE(6018), 1, + STATE(6094), 1, sym_comment, - ACTIONS(2139), 2, + ACTIONS(2152), 2, sym__newline, anon_sym_LBRACE, - ACTIONS(9921), 2, + ACTIONS(9975), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [206157] = 6, + [211102] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1739), 1, - aux_sym_unquoted_token2, - ACTIONS(9923), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9925), 1, - aux_sym__immediate_decimal_token2, - STATE(6019), 1, + ACTIONS(8403), 1, + anon_sym_DOLLAR, + ACTIONS(8647), 1, + sym_identifier, + STATE(5398), 1, + sym_val_variable, + STATE(6095), 1, sym_comment, - ACTIONS(1741), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [206177] = 7, + STATE(6212), 1, + sym__variable_name, + STATE(6834), 1, + sym__assignment_pattern, + [211124] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1935), 1, - anon_sym_LBRACE, - ACTIONS(8960), 1, + ACTIONS(1737), 1, + aux_sym_record_entry_token1, + ACTIONS(6524), 1, anon_sym_DOT, - STATE(1894), 1, - sym_path, - STATE(1988), 1, + STATE(2089), 1, sym_cell_path, - STATE(5608), 1, + STATE(3502), 1, aux_sym_cell_path_repeat1, - STATE(6020), 1, + STATE(3607), 1, + sym_path, + STATE(6096), 1, sym_comment, - [206199] = 7, + [211146] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1946), 1, + ACTIONS(5058), 1, + anon_sym_DASH2, + ACTIONS(9977), 1, + anon_sym_EQ2, + STATE(6097), 1, + sym_comment, + ACTIONS(5056), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [211164] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1917), 1, anon_sym_LBRACE, - ACTIONS(8960), 1, + ACTIONS(8925), 1, anon_sym_DOT, - STATE(1894), 1, + STATE(1882), 1, sym_path, - STATE(1990), 1, + STATE(1992), 1, sym_cell_path, - STATE(5608), 1, + STATE(5562), 1, aux_sym_cell_path_repeat1, - STATE(6021), 1, + STATE(6098), 1, sym_comment, - [206221] = 7, + [211186] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1978), 1, - sym__table_head_separator, - ACTIONS(6538), 1, + ACTIONS(1921), 1, + anon_sym_LBRACE, + ACTIONS(8925), 1, anon_sym_DOT, - STATE(3482), 1, - aux_sym_cell_path_repeat1, - STATE(3600), 1, + STATE(1882), 1, sym_path, - STATE(5948), 1, + STATE(2001), 1, sym_cell_path, - STATE(6022), 1, + STATE(5562), 1, + aux_sym_cell_path_repeat1, + STATE(6099), 1, sym_comment, - [206243] = 7, - ACTIONS(247), 1, + [211208] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2096), 1, - sym__table_head_separator, - ACTIONS(6538), 1, + ACTIONS(996), 1, anon_sym_DOT, - STATE(3482), 1, - aux_sym_cell_path_repeat1, - STATE(3600), 1, - sym_path, - STATE(5768), 1, - sym_cell_path, - STATE(6023), 1, + STATE(6100), 1, sym_comment, - [206265] = 7, + ACTIONS(994), 4, + anon_sym_RBRACK, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + [211224] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9927), 1, - anon_sym_EQ, - ACTIONS(9929), 1, - anon_sym_COLON, - STATE(6024), 1, + ACTIONS(9979), 1, + anon_sym_EQ2, + ACTIONS(9981), 1, + sym_short_flag_identifier, + STATE(6101), 1, sym_comment, - STATE(7334), 1, - aux_sym_shebang_repeat1, - STATE(7820), 1, - sym_param_type, - [206287] = 5, - ACTIONS(247), 1, + ACTIONS(4976), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [211242] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(224), 1, - aux_sym__block_body_repeat1, - STATE(6025), 1, + ACTIONS(9678), 1, + aux_sym__immediate_decimal_token2, + STATE(6102), 1, sym_comment, - ACTIONS(139), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(1459), 2, - anon_sym_RPAREN, + ACTIONS(1765), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1767), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [211260] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1820), 1, anon_sym_RBRACE, - [206305] = 7, + ACTIONS(1828), 1, + sym__entry_separator, + ACTIONS(9983), 1, + anon_sym_DOT_DOT2, + STATE(6103), 1, + sym_comment, + ACTIONS(9985), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [211280] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9931), 1, + ACTIONS(9867), 1, anon_sym_LPAREN, - ACTIONS(9933), 1, + ACTIONS(9869), 1, sym_unescaped_interpolated_content, - ACTIONS(9935), 1, + ACTIONS(9987), 1, anon_sym_SQUOTE, - STATE(6026), 1, - sym_comment, - STATE(6032), 1, + STATE(6049), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6902), 1, - sym_expr_interpolated, - [206327] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9929), 1, - anon_sym_COLON, - ACTIONS(9937), 1, - anon_sym_EQ, - STATE(6027), 1, + STATE(6104), 1, sym_comment, - STATE(7334), 1, - aux_sym_shebang_repeat1, - STATE(7871), 1, - sym_param_type, - [206349] = 7, + STATE(7162), 1, + sym_expr_interpolated, + [211302] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1950), 1, + ACTIONS(1929), 1, anon_sym_LBRACE, - ACTIONS(8960), 1, + ACTIONS(8925), 1, anon_sym_DOT, - STATE(1894), 1, + STATE(1882), 1, sym_path, - STATE(1991), 1, + STATE(2010), 1, sym_cell_path, - STATE(5608), 1, + STATE(5562), 1, aux_sym_cell_path_repeat1, - STATE(6028), 1, + STATE(6105), 1, sym_comment, - [206371] = 7, + [211324] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1954), 1, + ACTIONS(1944), 1, anon_sym_LBRACE, - ACTIONS(8960), 1, + ACTIONS(8925), 1, anon_sym_DOT, - STATE(1894), 1, + STATE(1882), 1, sym_path, - STATE(1992), 1, + STATE(2011), 1, sym_cell_path, - STATE(5608), 1, + STATE(5562), 1, aux_sym_cell_path_repeat1, - STATE(6029), 1, + STATE(6106), 1, sym_comment, - [206393] = 7, + [211346] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1962), 1, + ACTIONS(2028), 1, anon_sym_LBRACE, - ACTIONS(8960), 1, + ACTIONS(8925), 1, anon_sym_DOT, - STATE(1894), 1, + STATE(1882), 1, sym_path, - STATE(1993), 1, + STATE(2012), 1, sym_cell_path, - STATE(5608), 1, + STATE(5562), 1, aux_sym_cell_path_repeat1, - STATE(6030), 1, + STATE(6107), 1, sym_comment, - [206415] = 7, + [211368] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1970), 1, + ACTIONS(2032), 1, anon_sym_LBRACE, - ACTIONS(8960), 1, + ACTIONS(8925), 1, anon_sym_DOT, - STATE(1894), 1, + STATE(1882), 1, sym_path, - STATE(1994), 1, + STATE(2015), 1, sym_cell_path, - STATE(5608), 1, + STATE(5562), 1, aux_sym_cell_path_repeat1, - STATE(6031), 1, + STATE(6108), 1, sym_comment, - [206437] = 7, - ACTIONS(3), 1, + [211390] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9931), 1, - anon_sym_LPAREN, - ACTIONS(9933), 1, - sym_unescaped_interpolated_content, - ACTIONS(9939), 1, - anon_sym_SQUOTE, - STATE(6010), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6032), 1, + ACTIONS(9770), 1, + anon_sym_LBRACE, + STATE(6109), 1, sym_comment, - STATE(6902), 1, - sym_expr_interpolated, - [206459] = 6, - ACTIONS(3), 1, + STATE(7179), 1, + sym_val_record, + ACTIONS(9540), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [211408] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1878), 1, - anon_sym_RBRACE, - ACTIONS(1886), 1, - sym__entry_separator, - ACTIONS(9941), 1, - anon_sym_DOT_DOT2, - STATE(6033), 1, + ACTIONS(8403), 1, + anon_sym_DOLLAR, + ACTIONS(8647), 1, + sym_identifier, + STATE(5398), 1, + sym_val_variable, + STATE(6110), 1, sym_comment, - ACTIONS(9943), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [206479] = 7, + STATE(6122), 1, + sym__variable_name, + STATE(6282), 1, + sym__assignment_pattern, + [211430] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(963), 1, - aux_sym_record_entry_token1, - ACTIONS(6538), 1, - anon_sym_DOT, - STATE(1454), 1, - sym_cell_path, - STATE(3482), 1, - aux_sym_cell_path_repeat1, - STATE(3600), 1, - sym_path, - STATE(6034), 1, + ACTIONS(8403), 1, + anon_sym_DOLLAR, + ACTIONS(8647), 1, + sym_identifier, + STATE(5398), 1, + sym_val_variable, + STATE(6111), 1, sym_comment, - [206501] = 7, + STATE(6122), 1, + sym__variable_name, + STATE(6283), 1, + sym__assignment_pattern, + [211452] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(8960), 1, - anon_sym_DOT, - STATE(1894), 1, - sym_path, - STATE(1997), 1, - sym_cell_path, - STATE(5608), 1, - aux_sym_cell_path_repeat1, - STATE(6035), 1, + ACTIONS(8403), 1, + anon_sym_DOLLAR, + ACTIONS(8647), 1, + sym_identifier, + STATE(5398), 1, + sym_val_variable, + STATE(6112), 1, sym_comment, - [206523] = 7, + STATE(6122), 1, + sym__variable_name, + STATE(6285), 1, + sym__assignment_pattern, + [211474] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1986), 1, + ACTIONS(2036), 1, anon_sym_LBRACE, - ACTIONS(8960), 1, + ACTIONS(8925), 1, anon_sym_DOT, - STATE(1894), 1, + STATE(1882), 1, sym_path, - STATE(1998), 1, + STATE(2016), 1, sym_cell_path, - STATE(5608), 1, + STATE(5562), 1, aux_sym_cell_path_repeat1, - STATE(6036), 1, + STATE(6113), 1, sym_comment, - [206545] = 7, + [211496] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1990), 1, + ACTIONS(2040), 1, anon_sym_LBRACE, - ACTIONS(8960), 1, + ACTIONS(8925), 1, anon_sym_DOT, - STATE(1894), 1, + STATE(1882), 1, sym_path, - STATE(1999), 1, + STATE(2018), 1, sym_cell_path, - STATE(5608), 1, + STATE(5562), 1, aux_sym_cell_path_repeat1, - STATE(6037), 1, + STATE(6114), 1, sym_comment, - [206567] = 7, + [211518] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1994), 1, - anon_sym_LBRACE, - ACTIONS(8960), 1, - anon_sym_DOT, - STATE(1894), 1, - sym_path, - STATE(2000), 1, - sym_cell_path, - STATE(5608), 1, - aux_sym_cell_path_repeat1, - STATE(6038), 1, + ACTIONS(8403), 1, + anon_sym_DOLLAR, + ACTIONS(8647), 1, + sym_identifier, + STATE(5398), 1, + sym_val_variable, + STATE(6115), 1, sym_comment, - [206589] = 7, + STATE(6122), 1, + sym__variable_name, + STATE(6494), 1, + sym__assignment_pattern, + [211540] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1998), 1, + ACTIONS(1933), 1, anon_sym_LBRACE, - ACTIONS(8960), 1, + ACTIONS(8925), 1, anon_sym_DOT, - STATE(1894), 1, + STATE(1882), 1, sym_path, - STATE(2001), 1, + STATE(2023), 1, sym_cell_path, - STATE(5608), 1, + STATE(5562), 1, aux_sym_cell_path_repeat1, - STATE(6039), 1, + STATE(6116), 1, sym_comment, - [206611] = 7, + [211562] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2002), 1, - anon_sym_LBRACE, - ACTIONS(8960), 1, - anon_sym_DOT, - STATE(1894), 1, - sym_path, - STATE(2004), 1, - sym_cell_path, - STATE(5608), 1, - aux_sym_cell_path_repeat1, - STATE(6040), 1, + ACTIONS(5081), 1, + anon_sym_DASH2, + STATE(6117), 1, sym_comment, - [206633] = 7, + ACTIONS(5079), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [211578] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2006), 1, + ACTIONS(1901), 1, anon_sym_LBRACE, - ACTIONS(8960), 1, + ACTIONS(8925), 1, anon_sym_DOT, - STATE(1894), 1, + STATE(1882), 1, sym_path, - STATE(2006), 1, + STATE(2046), 1, sym_cell_path, - STATE(5608), 1, + STATE(5562), 1, aux_sym_cell_path_repeat1, - STATE(6041), 1, + STATE(6118), 1, sym_comment, - [206655] = 7, + [211600] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2070), 1, - anon_sym_LBRACE, - ACTIONS(8960), 1, - anon_sym_DOT, - STATE(1894), 1, - sym_path, - STATE(2007), 1, - sym_cell_path, - STATE(5608), 1, - aux_sym_cell_path_repeat1, - STATE(6042), 1, + STATE(222), 1, + aux_sym__block_body_repeat1, + STATE(6119), 1, sym_comment, - [206677] = 7, + ACTIONS(139), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(1457), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [211618] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2074), 1, + ACTIONS(1909), 1, anon_sym_LBRACE, - ACTIONS(8960), 1, + ACTIONS(8925), 1, anon_sym_DOT, - STATE(1894), 1, + STATE(1882), 1, sym_path, - STATE(2008), 1, + STATE(2049), 1, sym_cell_path, - STATE(5608), 1, + STATE(5562), 1, aux_sym_cell_path_repeat1, - STATE(6043), 1, + STATE(6120), 1, sym_comment, - [206699] = 7, - ACTIONS(247), 1, + [211640] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1911), 1, - anon_sym_LBRACE, - ACTIONS(8960), 1, - anon_sym_DOT, - STATE(1894), 1, - sym_path, - STATE(2009), 1, - sym_cell_path, - STATE(5608), 1, - aux_sym_cell_path_repeat1, - STATE(6044), 1, + ACTIONS(9867), 1, + anon_sym_LPAREN, + ACTIONS(9869), 1, + sym_unescaped_interpolated_content, + ACTIONS(9989), 1, + anon_sym_SQUOTE, + STATE(6121), 1, sym_comment, - [206721] = 7, + STATE(6140), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7162), 1, + sym_expr_interpolated, + [211662] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1915), 1, - anon_sym_LBRACE, - ACTIONS(8960), 1, - anon_sym_DOT, - STATE(1894), 1, - sym_path, - STATE(2012), 1, - sym_cell_path, - STATE(5608), 1, - aux_sym_cell_path_repeat1, - STATE(6045), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9885), 1, + anon_sym_COLON, + ACTIONS(9991), 1, + anon_sym_EQ, + STATE(6122), 1, sym_comment, - [206743] = 4, - ACTIONS(3), 1, + STATE(6862), 1, + aux_sym_shebang_repeat1, + STATE(7937), 1, + sym_param_type, + [211684] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(996), 1, - anon_sym_DOT, - STATE(6046), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9885), 1, + anon_sym_COLON, + ACTIONS(9993), 1, + anon_sym_EQ, + STATE(6123), 1, sym_comment, - ACTIONS(994), 4, - anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - [206759] = 5, + STATE(6862), 1, + aux_sym_shebang_repeat1, + STATE(7794), 1, + sym_param_type, + [211706] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1755), 1, - aux_sym_unquoted_token2, - ACTIONS(9572), 1, - aux_sym__immediate_decimal_token2, - STATE(6047), 1, + STATE(6124), 1, sym_comment, - ACTIONS(1757), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [206777] = 4, + ACTIONS(8059), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [211720] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1000), 1, - anon_sym_DOT, - STATE(6048), 1, + ACTIONS(9867), 1, + anon_sym_LPAREN, + ACTIONS(9869), 1, + sym_unescaped_interpolated_content, + ACTIONS(9995), 1, + anon_sym_SQUOTE, + STATE(6049), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6125), 1, sym_comment, - ACTIONS(998), 4, - anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - [206793] = 4, + STATE(7162), 1, + sym_expr_interpolated, + [211742] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5176), 1, + ACTIONS(5054), 1, anon_sym_DASH2, - STATE(6049), 1, + STATE(6126), 1, sym_comment, - ACTIONS(5174), 4, + ACTIONS(5052), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [206809] = 4, + [211758] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5180), 1, + ACTIONS(4998), 1, anon_sym_DASH2, - STATE(6050), 1, + ACTIONS(9997), 1, + anon_sym_EQ2, + STATE(6127), 1, sym_comment, - ACTIONS(5178), 4, + ACTIONS(4996), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, + [211776] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6128), 1, + sym_comment, + ACTIONS(8161), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, anon_sym_LBRACE, - [206825] = 4, - ACTIONS(3), 1, + [211790] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1004), 1, - anon_sym_DOT, - STATE(6051), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6129), 1, sym_comment, - ACTIONS(1002), 4, - anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - [206841] = 5, + STATE(6904), 1, + sym_val_list, + STATE(7283), 1, + aux_sym_val_table_repeat1, + [211812] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6130), 1, + sym_comment, + ACTIONS(8181), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [211826] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6131), 1, + sym_comment, + STATE(7032), 1, + sym_val_list, + STATE(7287), 1, + aux_sym_val_table_repeat1, + [211848] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9713), 1, - aux_sym__immediate_decimal_token2, - STATE(6052), 1, + ACTIONS(9867), 1, + anon_sym_LPAREN, + ACTIONS(9869), 1, + sym_unescaped_interpolated_content, + ACTIONS(9999), 1, + anon_sym_SQUOTE, + STATE(6132), 1, sym_comment, - ACTIONS(1755), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1757), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [206859] = 5, + STATE(6142), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7162), 1, + sym_expr_interpolated, + [211870] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(222), 1, - aux_sym__block_body_repeat1, - STATE(6053), 1, + ACTIONS(4968), 1, + anon_sym_DASH_DASH, + ACTIONS(10001), 1, + sym_long_flag_identifier, + ACTIONS(10003), 1, + anon_sym_EQ2, + STATE(6133), 1, sym_comment, - ACTIONS(139), 2, + ACTIONS(4970), 2, + sym_identifier, + anon_sym_DASH2, + [211890] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8103), 1, sym__newline, - anon_sym_SEMI, - ACTIONS(1457), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [206877] = 5, + ACTIONS(8105), 1, + sym__space, + STATE(4858), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(6134), 1, + sym_comment, + STATE(6157), 1, + aux_sym_ctrl_do_parenthesized_repeat1, + STATE(7630), 1, + sym__flags_parenthesized, + [211912] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9432), 1, - anon_sym_LBRACE, - STATE(6054), 1, + ACTIONS(5058), 1, + anon_sym_DASH2, + ACTIONS(10005), 1, + anon_sym_EQ2, + STATE(6135), 1, sym_comment, - STATE(7161), 1, - sym_val_record, - ACTIONS(9801), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [206895] = 5, + ACTIONS(5056), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [211930] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9432), 1, - anon_sym_LBRACE, - STATE(6055), 1, + ACTIONS(5134), 1, + anon_sym_DASH2, + STATE(6136), 1, sym_comment, - STATE(7164), 1, - sym_val_record, - ACTIONS(9803), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [206913] = 3, + ACTIONS(5132), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [211946] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(6056), 1, + ACTIONS(5138), 1, + anon_sym_DASH2, + STATE(6137), 1, sym_comment, - ACTIONS(8111), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, + ACTIONS(5136), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - [206927] = 4, + [211962] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10007), 1, + anon_sym_DASH_DASH, + ACTIONS(10009), 1, + anon_sym_DASH2, + ACTIONS(10011), 1, + anon_sym_in2, + STATE(6138), 1, + sym_comment, + STATE(7999), 1, + sym_short_flag, + STATE(8122), 1, + sym_long_flag, + [211984] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(992), 1, + ACTIONS(9867), 1, + anon_sym_LPAREN, + ACTIONS(9869), 1, + sym_unescaped_interpolated_content, + ACTIONS(10013), 1, + anon_sym_SQUOTE, + STATE(6029), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6139), 1, + sym_comment, + STATE(7162), 1, + sym_expr_interpolated, + [212006] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9867), 1, + anon_sym_LPAREN, + ACTIONS(9869), 1, + sym_unescaped_interpolated_content, + ACTIONS(10015), 1, + anon_sym_SQUOTE, + STATE(6049), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6140), 1, + sym_comment, + STATE(7162), 1, + sym_expr_interpolated, + [212028] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1000), 1, anon_sym_DOT, - STATE(6057), 1, + STATE(6141), 1, sym_comment, - ACTIONS(990), 4, + ACTIONS(998), 4, anon_sym_RBRACK, anon_sym_QMARK2, sym__entry_separator, sym__table_head_separator, - [206943] = 6, - ACTIONS(247), 1, + [212044] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1755), 1, - aux_sym_unquoted_token2, - ACTIONS(9945), 1, - anon_sym_DOT, - ACTIONS(9947), 1, - aux_sym__immediate_decimal_token2, - STATE(6058), 1, + ACTIONS(9867), 1, + anon_sym_LPAREN, + ACTIONS(9869), 1, + sym_unescaped_interpolated_content, + ACTIONS(10017), 1, + anon_sym_SQUOTE, + STATE(6049), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6142), 1, sym_comment, - ACTIONS(1757), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [206963] = 4, + STATE(7162), 1, + sym_expr_interpolated, + [212066] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5168), 1, + ACTIONS(5085), 1, anon_sym_DASH2, - STATE(6059), 1, + STATE(6143), 1, sym_comment, - ACTIONS(5166), 4, + ACTIONS(5083), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [206979] = 4, + [212082] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9867), 1, + anon_sym_LPAREN, + ACTIONS(9869), 1, + sym_unescaped_interpolated_content, + ACTIONS(10019), 1, + anon_sym_SQUOTE, + STATE(6031), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6144), 1, + sym_comment, + STATE(7162), 1, + sym_expr_interpolated, + [212104] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9867), 1, + anon_sym_LPAREN, + ACTIONS(9869), 1, + sym_unescaped_interpolated_content, + ACTIONS(10021), 1, + anon_sym_SQUOTE, + STATE(6049), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6145), 1, + sym_comment, + STATE(7162), 1, + sym_expr_interpolated, + [212126] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5172), 1, + ACTIONS(8403), 1, + anon_sym_DOLLAR, + ACTIONS(8647), 1, + sym_identifier, + STATE(5398), 1, + sym_val_variable, + STATE(6123), 1, + sym__variable_name, + STATE(6146), 1, + sym_comment, + STATE(6283), 1, + sym__assignment_pattern, + [212148] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8403), 1, + anon_sym_DOLLAR, + ACTIONS(8647), 1, + sym_identifier, + STATE(5398), 1, + sym_val_variable, + STATE(6123), 1, + sym__variable_name, + STATE(6147), 1, + sym_comment, + STATE(6285), 1, + sym__assignment_pattern, + [212170] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10007), 1, + anon_sym_DASH_DASH, + ACTIONS(10009), 1, anon_sym_DASH2, - STATE(6060), 1, + ACTIONS(10023), 1, + anon_sym_in2, + STATE(6148), 1, sym_comment, - ACTIONS(5170), 4, + STATE(7713), 1, + sym_long_flag, + STATE(7966), 1, + sym_short_flag, + [212192] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8403), 1, + anon_sym_DOLLAR, + ACTIONS(8647), 1, sym_identifier, + STATE(5398), 1, + sym_val_variable, + STATE(6123), 1, + sym__variable_name, + STATE(6149), 1, + sym_comment, + STATE(6494), 1, + sym__assignment_pattern, + [212214] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8403), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [206995] = 4, + ACTIONS(8647), 1, + sym_identifier, + STATE(5398), 1, + sym_val_variable, + STATE(6150), 1, + sym_comment, + STATE(6237), 1, + sym__variable_name, + STATE(6282), 1, + sym__assignment_pattern, + [212236] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5145), 1, - anon_sym_DASH2, - STATE(6061), 1, + ACTIONS(8403), 1, + anon_sym_DOLLAR, + ACTIONS(8647), 1, + sym_identifier, + STATE(5398), 1, + sym_val_variable, + STATE(6151), 1, sym_comment, - ACTIONS(5143), 4, + STATE(6237), 1, + sym__variable_name, + STATE(6283), 1, + sym__assignment_pattern, + [212258] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8403), 1, + anon_sym_DOLLAR, + ACTIONS(8647), 1, sym_identifier, + STATE(5398), 1, + sym_val_variable, + STATE(6152), 1, + sym_comment, + STATE(6237), 1, + sym__variable_name, + STATE(6285), 1, + sym__assignment_pattern, + [212280] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9867), 1, + anon_sym_LPAREN, + ACTIONS(9869), 1, + sym_unescaped_interpolated_content, + ACTIONS(10025), 1, + anon_sym_SQUOTE, + STATE(6049), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6153), 1, + sym_comment, + STATE(7162), 1, + sym_expr_interpolated, + [212302] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8403), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(8647), 1, + sym_identifier, + STATE(5398), 1, + sym_val_variable, + STATE(6154), 1, + sym_comment, + STATE(6212), 1, + sym__variable_name, + STATE(6857), 1, + sym__assignment_pattern, + [212324] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6155), 1, + sym_comment, + STATE(7193), 1, + sym_val_list, + STATE(7307), 1, + aux_sym_val_table_repeat1, + [212346] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6156), 1, + sym_comment, + STATE(7199), 1, + sym_val_list, + STATE(7309), 1, + aux_sym_val_table_repeat1, + [212368] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10027), 1, + sym__newline, + ACTIONS(10030), 1, + sym__space, + STATE(5678), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7630), 1, + sym__flags_parenthesized, + STATE(6157), 2, + sym_comment, + aux_sym_ctrl_do_parenthesized_repeat1, + [212388] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1851), 1, anon_sym_LBRACE, - [207011] = 5, + ACTIONS(8925), 1, + anon_sym_DOT, + STATE(1882), 1, + sym_path, + STATE(2094), 1, + sym_cell_path, + STATE(5562), 1, + aux_sym_cell_path_repeat1, + STATE(6158), 1, + sym_comment, + [212410] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6159), 1, + sym_comment, + STATE(6820), 1, + sym_val_list, + STATE(7317), 1, + aux_sym_val_table_repeat1, + [212432] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6160), 1, + sym_comment, + STATE(6825), 1, + sym_val_list, + STATE(7320), 1, + aux_sym_val_table_repeat1, + [212454] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1783), 1, + ACTIONS(1765), 1, aux_sym_unquoted_token2, - ACTIONS(9949), 1, + ACTIONS(10033), 1, + anon_sym_DOT, + ACTIONS(10035), 1, aux_sym__immediate_decimal_token2, - STATE(6062), 1, + STATE(6161), 1, sym_comment, - ACTIONS(1785), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [207029] = 4, + ACTIONS(1767), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [212474] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5098), 1, + ACTIONS(5099), 1, anon_sym_DASH2, - STATE(6063), 1, + STATE(6162), 1, sym_comment, - ACTIONS(5096), 4, + ACTIONS(5097), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [207045] = 4, + [212490] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10037), 1, + aux_sym__immediate_decimal_token2, + STATE(6163), 1, + sym_comment, + ACTIONS(1785), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1787), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [212508] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6164), 1, + sym_comment, + STATE(6847), 1, + sym_val_list, + STATE(7324), 1, + aux_sym_val_table_repeat1, + [212530] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6165), 1, + sym_comment, + STATE(6853), 1, + sym_val_list, + STATE(7326), 1, + aux_sym_val_table_repeat1, + [212552] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5102), 1, - anon_sym_DASH2, - STATE(6064), 1, + ACTIONS(1749), 1, + aux_sym_record_entry_token1, + ACTIONS(6524), 1, + anon_sym_DOT, + STATE(2074), 1, + sym_cell_path, + STATE(3502), 1, + aux_sym_cell_path_repeat1, + STATE(3607), 1, + sym_path, + STATE(6166), 1, + sym_comment, + [212574] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9867), 1, + anon_sym_LPAREN, + ACTIONS(9869), 1, + sym_unescaped_interpolated_content, + ACTIONS(10039), 1, + anon_sym_SQUOTE, + STATE(6167), 1, sym_comment, - ACTIONS(5100), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [207061] = 4, + STATE(6181), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7162), 1, + sym_expr_interpolated, + [212596] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5130), 1, - anon_sym_DASH2, - STATE(6065), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6168), 1, sym_comment, - ACTIONS(5128), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [207077] = 6, + STATE(6873), 1, + sym_val_list, + STATE(7331), 1, + aux_sym_val_table_repeat1, + [212618] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8559), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8561), 1, - aux_sym__immediate_decimal_token5, - STATE(6066), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6169), 1, sym_comment, - STATE(7994), 1, - sym__immediate_decimal, - ACTIONS(8557), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [207097] = 4, + STATE(6879), 1, + sym_val_list, + STATE(7334), 1, + aux_sym_val_table_repeat1, + [212640] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6067), 1, + STATE(6170), 1, sym_comment, - ACTIONS(996), 2, + ACTIONS(992), 2, anon_sym_DOT, sym__entry_separator, - ACTIONS(994), 3, + ACTIONS(990), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_QMARK2, - [207113] = 4, - ACTIONS(3), 1, + [212656] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6068), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6171), 1, sym_comment, - ACTIONS(1000), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(998), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - [207129] = 4, - ACTIONS(3), 1, + STATE(6896), 1, + sym_val_list, + STATE(7341), 1, + aux_sym_val_table_repeat1, + [212678] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6069), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6172), 1, sym_comment, - ACTIONS(1004), 2, + STATE(6901), 1, + sym_val_list, + STATE(7344), 1, + aux_sym_val_table_repeat1, + [212700] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1869), 1, + sym__table_head_separator, + ACTIONS(6524), 1, anon_sym_DOT, - sym__entry_separator, - ACTIONS(1002), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - [207145] = 7, - ACTIONS(3), 1, + STATE(3502), 1, + aux_sym_cell_path_repeat1, + STATE(3607), 1, + sym_path, + STATE(5996), 1, + sym_cell_path, + STATE(6173), 1, + sym_comment, + [212722] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9931), 1, - anon_sym_LPAREN, - ACTIONS(9933), 1, - sym_unescaped_interpolated_content, - ACTIONS(9951), 1, - anon_sym_SQUOTE, - STATE(6070), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6174), 1, sym_comment, - STATE(6211), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6902), 1, - sym_expr_interpolated, - [207167] = 4, - ACTIONS(3), 1, + STATE(6930), 1, + sym_val_list, + STATE(7351), 1, + aux_sym_val_table_repeat1, + [212744] = 7, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6071), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6175), 1, sym_comment, - ACTIONS(992), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(990), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - [207183] = 6, + STATE(6936), 1, + sym_val_list, + STATE(7354), 1, + aux_sym_val_table_repeat1, + [212766] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym_unquoted_token2, - ACTIONS(1874), 1, + ACTIONS(1810), 1, anon_sym_LBRACE, - ACTIONS(9953), 1, + ACTIONS(1812), 1, + aux_sym_unquoted_token2, + ACTIONS(10041), 1, anon_sym_DOT_DOT2, - STATE(6072), 1, + STATE(6176), 1, sym_comment, - ACTIONS(9955), 2, + ACTIONS(10043), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [207203] = 7, - ACTIONS(3), 1, + [212786] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9931), 1, - anon_sym_LPAREN, - ACTIONS(9933), 1, - sym_unescaped_interpolated_content, - ACTIONS(9957), 1, - anon_sym_SQUOTE, - STATE(6073), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6177), 1, sym_comment, - STATE(6076), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6902), 1, - sym_expr_interpolated, - [207225] = 7, + STATE(6960), 1, + sym_val_list, + STATE(7360), 1, + aux_sym_val_table_repeat1, + [212808] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(9929), 1, - anon_sym_COLON, - ACTIONS(9959), 1, - anon_sym_EQ, - STATE(6074), 1, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6178), 1, sym_comment, - STATE(7334), 1, + STATE(6964), 1, + sym_val_list, + STATE(7363), 1, + aux_sym_val_table_repeat1, + [212830] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(7784), 1, - sym_param_type, - [207247] = 5, - ACTIONS(3), 1, + STATE(6179), 1, + sym_comment, + STATE(6989), 1, + sym_val_list, + STATE(7371), 1, + aux_sym_val_table_repeat1, + [212852] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9961), 1, - aux_sym__immediate_decimal_token2, - STATE(6075), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6180), 1, sym_comment, - ACTIONS(1783), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1785), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [207265] = 7, + STATE(6996), 1, + sym_val_list, + STATE(7374), 1, + aux_sym_val_table_repeat1, + [212874] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9931), 1, + ACTIONS(9867), 1, anon_sym_LPAREN, - ACTIONS(9933), 1, + ACTIONS(9869), 1, sym_unescaped_interpolated_content, - ACTIONS(9963), 1, + ACTIONS(10045), 1, anon_sym_SQUOTE, - STATE(6010), 1, + STATE(6049), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6076), 1, + STATE(6181), 1, sym_comment, - STATE(6902), 1, + STATE(7162), 1, sym_expr_interpolated, - [207287] = 5, + [212896] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1709), 1, + ACTIONS(5121), 1, anon_sym_DASH2, - ACTIONS(8677), 1, - aux_sym_unquoted_token2, - STATE(6077), 1, + STATE(6182), 1, sym_comment, - ACTIONS(1721), 3, + ACTIONS(5119), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [207305] = 7, + anon_sym_LBRACE, + [212912] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8487), 1, - anon_sym_DOLLAR, - ACTIONS(8649), 1, - sym_identifier, - STATE(5480), 1, - sym_val_variable, - STATE(6078), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6183), 1, sym_comment, - STATE(6111), 1, - sym__variable_name, - STATE(7296), 1, - sym__assignment_pattern_parenthesized, - [207327] = 6, - ACTIONS(3), 1, + STATE(7018), 1, + sym_val_list, + STATE(7381), 1, + aux_sym_val_table_repeat1, + [212934] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5928), 1, - anon_sym_RBRACK, - ACTIONS(5934), 1, - sym__entry_separator, - ACTIONS(9861), 1, - anon_sym_DOT_DOT2, - STATE(6079), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6184), 1, sym_comment, - ACTIONS(9863), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [207347] = 5, + STATE(7023), 1, + sym_val_list, + STATE(7383), 1, + aux_sym_val_table_repeat1, + [212956] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6186), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6185), 1, + sym_comment, + STATE(7042), 1, + sym_val_list, + STATE(7387), 1, + aux_sym_val_table_repeat1, + [212978] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6186), 1, + sym_comment, + STATE(7048), 1, + sym_val_list, + STATE(7390), 1, + aux_sym_val_table_repeat1, + [213000] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6182), 1, anon_sym_LBRACE, - STATE(6080), 1, + STATE(6187), 1, sym_comment, - STATE(6827), 1, + STATE(6886), 1, + sym_block, + ACTIONS(9772), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [213018] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6182), 1, + anon_sym_LBRACE, + STATE(6188), 1, + sym_comment, + STATE(6887), 1, sym_block, - ACTIONS(9744), 3, + ACTIONS(9772), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [207365] = 7, + [213036] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1851), 1, + sym__table_head_separator, + ACTIONS(6524), 1, + anon_sym_DOT, + STATE(3502), 1, + aux_sym_cell_path_repeat1, + STATE(3607), 1, + sym_path, + STATE(6021), 1, + sym_cell_path, + STATE(6189), 1, + sym_comment, + [213058] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(6081), 1, + STATE(6190), 1, sym_comment, - STATE(7134), 1, + STATE(7065), 1, sym_val_list, - STATE(7160), 1, + STATE(7395), 1, aux_sym_val_table_repeat1, - [207387] = 7, - ACTIONS(3), 1, + [213080] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9931), 1, - anon_sym_LPAREN, - ACTIONS(9933), 1, - sym_unescaped_interpolated_content, - ACTIONS(9965), 1, - anon_sym_SQUOTE, - STATE(6082), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6191), 1, sym_comment, - STATE(6084), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6902), 1, - sym_expr_interpolated, - [207409] = 6, - ACTIONS(3), 1, + STATE(7070), 1, + sym_val_list, + STATE(7397), 1, + aux_sym_val_table_repeat1, + [213102] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1866), 1, - anon_sym_RBRACE, - ACTIONS(1874), 1, - sym__entry_separator, - ACTIONS(9967), 1, - anon_sym_DOT_DOT2, - STATE(6083), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6192), 1, sym_comment, - ACTIONS(9969), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [207429] = 7, - ACTIONS(3), 1, + STATE(7082), 1, + sym_val_list, + STATE(7401), 1, + aux_sym_val_table_repeat1, + [213124] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9931), 1, - anon_sym_LPAREN, - ACTIONS(9933), 1, - sym_unescaped_interpolated_content, - ACTIONS(9971), 1, - anon_sym_SQUOTE, - STATE(6010), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6084), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6193), 1, sym_comment, - STATE(6902), 1, - sym_expr_interpolated, - [207451] = 7, - ACTIONS(3), 1, + STATE(7087), 1, + sym_val_list, + STATE(7403), 1, + aux_sym_val_table_repeat1, + [213146] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9931), 1, - anon_sym_LPAREN, - ACTIONS(9933), 1, - sym_unescaped_interpolated_content, - ACTIONS(9973), 1, - anon_sym_SQUOTE, - STATE(6085), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6194), 1, sym_comment, - STATE(6091), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6902), 1, - sym_expr_interpolated, - [207473] = 7, + STATE(7101), 1, + sym_val_list, + STATE(7407), 1, + aux_sym_val_table_repeat1, + [213168] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8487), 1, - anon_sym_DOLLAR, - ACTIONS(8649), 1, - sym_identifier, - STATE(5480), 1, - sym_val_variable, - STATE(6086), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6195), 1, sym_comment, - STATE(6099), 1, - sym__variable_name, - STATE(6648), 1, - sym__assignment_pattern, - [207495] = 7, + STATE(7105), 1, + sym_val_list, + STATE(7409), 1, + aux_sym_val_table_repeat1, + [213190] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8487), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6196), 1, + sym_comment, + STATE(7115), 1, + sym_val_list, + STATE(7413), 1, + aux_sym_val_table_repeat1, + [213212] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6197), 1, + sym_comment, + STATE(7119), 1, + sym_val_list, + STATE(7415), 1, + aux_sym_val_table_repeat1, + [213234] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6198), 1, + sym_comment, + STATE(7132), 1, + sym_val_list, + STATE(7419), 1, + aux_sym_val_table_repeat1, + [213256] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6199), 1, + sym_comment, + STATE(7137), 1, + sym_val_list, + STATE(7421), 1, + aux_sym_val_table_repeat1, + [213278] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6200), 1, + sym_comment, + STATE(7151), 1, + sym_val_list, + STATE(7425), 1, + aux_sym_val_table_repeat1, + [213300] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6201), 1, + sym_comment, + STATE(7157), 1, + sym_val_list, + STATE(7427), 1, + aux_sym_val_table_repeat1, + [213322] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8581), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8583), 1, + aux_sym__immediate_decimal_token5, + STATE(6202), 1, + sym_comment, + STATE(7735), 1, + sym__immediate_decimal, + ACTIONS(8579), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [213342] = 7, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8403), 1, anon_sym_DOLLAR, - ACTIONS(8649), 1, + ACTIONS(8647), 1, sym_identifier, - STATE(5480), 1, + STATE(5398), 1, sym_val_variable, - STATE(6087), 1, - sym_comment, - STATE(6099), 1, + STATE(6074), 1, sym__variable_name, - STATE(6649), 1, - sym__assignment_pattern, - [207517] = 7, + STATE(6203), 1, + sym_comment, + STATE(7454), 1, + sym__assignment_pattern_parenthesized, + [213364] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8487), 1, + ACTIONS(8403), 1, anon_sym_DOLLAR, - ACTIONS(8649), 1, + ACTIONS(8647), 1, sym_identifier, - STATE(5480), 1, + STATE(5398), 1, sym_val_variable, - STATE(6088), 1, - sym_comment, - STATE(6099), 1, + STATE(6074), 1, sym__variable_name, - STATE(6650), 1, - sym__assignment_pattern, - [207539] = 7, + STATE(6204), 1, + sym_comment, + STATE(7435), 1, + sym__assignment_pattern_parenthesized, + [213386] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8487), 1, + ACTIONS(8403), 1, anon_sym_DOLLAR, - ACTIONS(8649), 1, + ACTIONS(8647), 1, sym_identifier, - STATE(5480), 1, + STATE(5398), 1, sym_val_variable, - STATE(6024), 1, + STATE(6074), 1, sym__variable_name, - STATE(6089), 1, - sym_comment, - STATE(6996), 1, - sym__assignment_pattern, - [207561] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9975), 1, - anon_sym_QMARK2, - STATE(6090), 1, - sym_comment, - ACTIONS(978), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(980), 2, - anon_sym_DOT, - sym__entry_separator, - [207579] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9931), 1, - anon_sym_LPAREN, - ACTIONS(9933), 1, - sym_unescaped_interpolated_content, - ACTIONS(9977), 1, - anon_sym_SQUOTE, - STATE(6010), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6091), 1, + STATE(6205), 1, sym_comment, - STATE(6902), 1, - sym_expr_interpolated, - [207601] = 5, - ACTIONS(3), 1, + STATE(7452), 1, + sym__assignment_pattern_parenthesized, + [213408] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9979), 1, - anon_sym_QMARK2, - STATE(6092), 1, + ACTIONS(10007), 1, + anon_sym_DASH_DASH, + ACTIONS(10009), 1, + anon_sym_DASH2, + ACTIONS(10047), 1, + anon_sym_in2, + STATE(6206), 1, sym_comment, - ACTIONS(984), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(986), 2, - anon_sym_DOT, - sym__entry_separator, - [207619] = 6, + STATE(8114), 1, + sym_short_flag, + STATE(8115), 1, + sym_long_flag, + [213430] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym_unquoted_token2, - ACTIONS(1868), 1, - anon_sym_LPAREN2, - ACTIONS(9981), 1, - anon_sym_DOT_DOT2, - STATE(6093), 1, + STATE(6207), 1, sym_comment, - ACTIONS(9983), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [207639] = 7, - ACTIONS(3), 1, + ACTIONS(8019), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [213444] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9931), 1, - anon_sym_LPAREN, - ACTIONS(9933), 1, - sym_unescaped_interpolated_content, - ACTIONS(9985), 1, - anon_sym_SQUOTE, - STATE(6094), 1, + ACTIONS(8403), 1, + anon_sym_DOLLAR, + ACTIONS(8647), 1, + sym_identifier, + STATE(5398), 1, + sym_val_variable, + STATE(6040), 1, + sym__variable_name, + STATE(6208), 1, sym_comment, - STATE(6097), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6902), 1, - sym_expr_interpolated, - [207661] = 7, + STATE(7454), 1, + sym__assignment_pattern_parenthesized, + [213466] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8487), 1, + ACTIONS(8403), 1, anon_sym_DOLLAR, - ACTIONS(8649), 1, + ACTIONS(8647), 1, sym_identifier, - STATE(5480), 1, + STATE(5398), 1, sym_val_variable, - STATE(6024), 1, + STATE(6074), 1, sym__variable_name, - STATE(6095), 1, + STATE(6209), 1, sym_comment, - STATE(7013), 1, - sym__assignment_pattern, - [207683] = 7, - ACTIONS(3), 1, + STATE(7198), 1, + sym__assignment_pattern_parenthesized, + [213488] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9931), 1, - anon_sym_LPAREN, - ACTIONS(9933), 1, - sym_unescaped_interpolated_content, - ACTIONS(9987), 1, - anon_sym_SQUOTE, - STATE(6096), 1, + ACTIONS(10007), 1, + anon_sym_DASH_DASH, + ACTIONS(10009), 1, + anon_sym_DASH2, + ACTIONS(10049), 1, + anon_sym_in2, + STATE(6210), 1, sym_comment, - STATE(6106), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6902), 1, - sym_expr_interpolated, - [207705] = 7, + STATE(8119), 1, + sym_short_flag, + STATE(8120), 1, + sym_long_flag, + [213510] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9931), 1, + ACTIONS(9867), 1, anon_sym_LPAREN, - ACTIONS(9933), 1, + ACTIONS(9869), 1, sym_unescaped_interpolated_content, - ACTIONS(9989), 1, + ACTIONS(10051), 1, anon_sym_SQUOTE, - STATE(6010), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6097), 1, + STATE(6211), 1, sym_comment, - STATE(6902), 1, + STATE(6218), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7162), 1, sym_expr_interpolated, - [207727] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8487), 1, - anon_sym_DOLLAR, - ACTIONS(8649), 1, - sym_identifier, - STATE(5480), 1, - sym_val_variable, - STATE(6098), 1, - sym_comment, - STATE(6099), 1, - sym__variable_name, - STATE(6395), 1, - sym__assignment_pattern, - [207749] = 7, + [213532] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(9929), 1, + ACTIONS(9885), 1, anon_sym_COLON, - ACTIONS(9991), 1, + ACTIONS(10053), 1, anon_sym_EQ, - STATE(6099), 1, + STATE(6212), 1, sym_comment, - STATE(7334), 1, + STATE(6862), 1, aux_sym_shebang_repeat1, - STATE(7792), 1, + STATE(8140), 1, sym_param_type, - [207771] = 7, + [213554] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9931), 1, + ACTIONS(9867), 1, anon_sym_LPAREN, - ACTIONS(9933), 1, + ACTIONS(9869), 1, sym_unescaped_interpolated_content, - ACTIONS(9993), 1, + ACTIONS(10055), 1, anon_sym_SQUOTE, - STATE(6100), 1, - sym_comment, - STATE(6102), 1, + STATE(6125), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6902), 1, - sym_expr_interpolated, - [207793] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9995), 1, - sym__newline, - ACTIONS(9998), 1, - sym__space, - STATE(5486), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7426), 1, - sym__flags_parenthesized, - STATE(6101), 2, + STATE(6213), 1, sym_comment, - aux_sym_ctrl_do_parenthesized_repeat1, - [207813] = 7, + STATE(7162), 1, + sym_expr_interpolated, + [213576] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9931), 1, + ACTIONS(9867), 1, anon_sym_LPAREN, - ACTIONS(9933), 1, + ACTIONS(9869), 1, sym_unescaped_interpolated_content, - ACTIONS(10001), 1, + ACTIONS(10057), 1, anon_sym_SQUOTE, - STATE(6010), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6102), 1, + STATE(6214), 1, sym_comment, - STATE(6902), 1, + STATE(6216), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7162), 1, sym_expr_interpolated, - [207835] = 7, + [213598] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9931), 1, + ACTIONS(1004), 1, + anon_sym_DOT, + STATE(6215), 1, + sym_comment, + ACTIONS(1002), 4, + anon_sym_RBRACK, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + [213614] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9867), 1, anon_sym_LPAREN, - ACTIONS(9933), 1, + ACTIONS(9869), 1, sym_unescaped_interpolated_content, - ACTIONS(10003), 1, + ACTIONS(10059), 1, anon_sym_SQUOTE, - STATE(6103), 1, - sym_comment, - STATE(6105), 1, + STATE(6049), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6902), 1, + STATE(6216), 1, + sym_comment, + STATE(7162), 1, sym_expr_interpolated, - [207857] = 4, + [213636] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5164), 1, + ACTIONS(5172), 1, anon_sym_DASH2, - STATE(6104), 1, + STATE(6217), 1, sym_comment, - ACTIONS(5162), 4, + ACTIONS(5170), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [207873] = 7, + [213652] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9931), 1, + ACTIONS(9867), 1, anon_sym_LPAREN, - ACTIONS(9933), 1, + ACTIONS(9869), 1, sym_unescaped_interpolated_content, - ACTIONS(10005), 1, + ACTIONS(10061), 1, anon_sym_SQUOTE, - STATE(6010), 1, + STATE(6049), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6105), 1, + STATE(6218), 1, sym_comment, - STATE(6902), 1, + STATE(7162), 1, sym_expr_interpolated, - [207895] = 7, - ACTIONS(3), 1, + [213674] = 7, + ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(9927), 1, + anon_sym_use, + ACTIONS(9929), 1, + anon_sym_list, ACTIONS(9931), 1, - anon_sym_LPAREN, + anon_sym_hide, ACTIONS(9933), 1, - sym_unescaped_interpolated_content, - ACTIONS(10007), 1, - anon_sym_SQUOTE, - STATE(6010), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6106), 1, + anon_sym_new, + STATE(6219), 1, sym_comment, - STATE(6902), 1, - sym_expr_interpolated, - [207917] = 7, + [213696] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9931), 1, - anon_sym_LPAREN, - ACTIONS(9933), 1, - sym_unescaped_interpolated_content, - ACTIONS(10009), 1, - anon_sym_SQUOTE, - STATE(6107), 1, + ACTIONS(980), 1, + anon_sym_DOT, + ACTIONS(10063), 1, + anon_sym_QMARK2, + STATE(6220), 1, sym_comment, - STATE(6108), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6902), 1, - sym_expr_interpolated, - [207939] = 7, - ACTIONS(3), 1, + ACTIONS(978), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [213714] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9931), 1, - anon_sym_LPAREN, - ACTIONS(9933), 1, - sym_unescaped_interpolated_content, - ACTIONS(10011), 1, - anon_sym_SQUOTE, - STATE(6010), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6108), 1, + ACTIONS(10065), 1, + anon_sym_DOT_DOT2, + STATE(6221), 1, sym_comment, - STATE(6902), 1, - sym_expr_interpolated, - [207961] = 7, + ACTIONS(2163), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(10067), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [213732] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9931), 1, + ACTIONS(9867), 1, anon_sym_LPAREN, - ACTIONS(9933), 1, + ACTIONS(9869), 1, sym_unescaped_interpolated_content, - ACTIONS(10013), 1, + ACTIONS(10069), 1, anon_sym_SQUOTE, - STATE(6109), 1, + STATE(6222), 1, sym_comment, - STATE(6110), 1, + STATE(6225), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6902), 1, + STATE(7162), 1, sym_expr_interpolated, - [207983] = 7, + [213754] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9931), 1, - anon_sym_LPAREN, - ACTIONS(9933), 1, - sym_unescaped_interpolated_content, - ACTIONS(10015), 1, - anon_sym_SQUOTE, - STATE(6010), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6110), 1, - sym_comment, - STATE(6902), 1, - sym_expr_interpolated, - [208005] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9929), 1, - anon_sym_COLON, - ACTIONS(10017), 1, - anon_sym_EQ, - STATE(6111), 1, + ACTIONS(10071), 1, + anon_sym_QMARK2, + STATE(6223), 1, sym_comment, - STATE(7334), 1, - aux_sym_shebang_repeat1, - STATE(7939), 1, - sym_param_type, - [208027] = 6, + ACTIONS(978), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(980), 2, + anon_sym_DOT, + sym__entry_separator, + [213772] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8559), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8561), 1, - aux_sym__immediate_decimal_token5, - STATE(6112), 1, - sym_comment, - STATE(7354), 1, - sym__immediate_decimal, - ACTIONS(8557), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [208047] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9931), 1, - anon_sym_LPAREN, - ACTIONS(9933), 1, - sym_unescaped_interpolated_content, - ACTIONS(10019), 1, - anon_sym_SQUOTE, - STATE(6113), 1, + ACTIONS(9770), 1, + anon_sym_LBRACE, + STATE(6224), 1, sym_comment, - STATE(6114), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6902), 1, - sym_expr_interpolated, - [208069] = 7, + STATE(7227), 1, + sym_val_record, + ACTIONS(9548), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [213790] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9931), 1, + ACTIONS(9867), 1, anon_sym_LPAREN, - ACTIONS(9933), 1, + ACTIONS(9869), 1, sym_unescaped_interpolated_content, - ACTIONS(10021), 1, + ACTIONS(10073), 1, anon_sym_SQUOTE, - STATE(6010), 1, + STATE(6049), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6114), 1, + STATE(6225), 1, sym_comment, - STATE(6902), 1, + STATE(7162), 1, sym_expr_interpolated, - [208091] = 6, + [213812] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1880), 1, - anon_sym_LPAREN2, - ACTIONS(1888), 1, + ACTIONS(1765), 1, aux_sym_unquoted_token2, - ACTIONS(10023), 1, - anon_sym_DOT_DOT2, - STATE(6115), 1, + ACTIONS(10075), 1, + anon_sym_DOT, + ACTIONS(10077), 1, + aux_sym__immediate_decimal_token2, + STATE(6226), 1, sym_comment, - ACTIONS(10025), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [208111] = 7, + ACTIONS(1767), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [213832] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2096), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - ACTIONS(8960), 1, - anon_sym_DOT, - STATE(1894), 1, - sym_path, - STATE(2118), 1, - sym_cell_path, - STATE(5608), 1, - aux_sym_cell_path_repeat1, - STATE(6116), 1, + STATE(6227), 1, sym_comment, - [208133] = 7, + STATE(6959), 1, + sym_block, + ACTIONS(9796), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [213850] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9931), 1, - anon_sym_LPAREN, - ACTIONS(9933), 1, - sym_unescaped_interpolated_content, - ACTIONS(10027), 1, - anon_sym_SQUOTE, - STATE(6117), 1, + ACTIONS(10079), 1, + anon_sym_QMARK2, + STATE(6228), 1, + sym_comment, + ACTIONS(984), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(986), 2, + anon_sym_DOT, + sym__entry_separator, + [213868] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6229), 1, + sym_comment, + ACTIONS(996), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(994), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + [213884] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1739), 1, + aux_sym_unquoted_token2, + ACTIONS(10081), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10083), 1, + aux_sym__immediate_decimal_token2, + STATE(6230), 1, sym_comment, - STATE(6118), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6902), 1, - sym_expr_interpolated, - [208155] = 7, + ACTIONS(1741), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [213904] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9931), 1, - anon_sym_LPAREN, - ACTIONS(9933), 1, - sym_unescaped_interpolated_content, - ACTIONS(10029), 1, - anon_sym_SQUOTE, - STATE(6010), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6118), 1, + STATE(6231), 1, sym_comment, - STATE(6902), 1, - sym_expr_interpolated, - [208177] = 7, + ACTIONS(1000), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(998), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + [213920] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10031), 1, - anon_sym_PIPE, - ACTIONS(10033), 1, - anon_sym_if, - ACTIONS(10035), 1, - anon_sym_EQ_GT, - STATE(6119), 1, + ACTIONS(8403), 1, + anon_sym_DOLLAR, + ACTIONS(8647), 1, + sym_identifier, + STATE(5398), 1, + sym_val_variable, + STATE(6040), 1, + sym__variable_name, + STATE(6232), 1, sym_comment, - STATE(7103), 1, - aux_sym_match_pattern_repeat1, - STATE(7887), 1, - sym_match_guard, - [208199] = 7, + STATE(7435), 1, + sym__assignment_pattern_parenthesized, + [213942] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9931), 1, + ACTIONS(9867), 1, anon_sym_LPAREN, - ACTIONS(9933), 1, + ACTIONS(9869), 1, sym_unescaped_interpolated_content, - ACTIONS(10037), 1, + ACTIONS(10085), 1, anon_sym_SQUOTE, - STATE(6120), 1, - sym_comment, - STATE(6121), 1, + STATE(6153), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6902), 1, + STATE(6233), 1, + sym_comment, + STATE(7162), 1, sym_expr_interpolated, - [208221] = 7, - ACTIONS(3), 1, + [213964] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9931), 1, - anon_sym_LPAREN, - ACTIONS(9933), 1, - sym_unescaped_interpolated_content, - ACTIONS(10039), 1, - anon_sym_SQUOTE, - STATE(6010), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6121), 1, + STATE(221), 1, + aux_sym__block_body_repeat1, + STATE(6234), 1, sym_comment, - STATE(6902), 1, - sym_expr_interpolated, - [208243] = 7, - ACTIONS(3), 1, + ACTIONS(139), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(627), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [213982] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9931), 1, - anon_sym_LPAREN, - ACTIONS(9933), 1, - sym_unescaped_interpolated_content, - ACTIONS(10041), 1, - anon_sym_SQUOTE, - STATE(6122), 1, + ACTIONS(8403), 1, + anon_sym_DOLLAR, + ACTIONS(8647), 1, + sym_identifier, + STATE(5398), 1, + sym_val_variable, + STATE(6235), 1, sym_comment, - STATE(6123), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6902), 1, - sym_expr_interpolated, - [208265] = 7, + STATE(6237), 1, + sym__variable_name, + STATE(6494), 1, + sym__assignment_pattern, + [214004] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9931), 1, - anon_sym_LPAREN, - ACTIONS(9933), 1, - sym_unescaped_interpolated_content, - ACTIONS(10043), 1, - anon_sym_SQUOTE, - STATE(6010), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6123), 1, + ACTIONS(986), 1, + anon_sym_DOT, + ACTIONS(10087), 1, + anon_sym_QMARK2, + STATE(6236), 1, sym_comment, - STATE(6902), 1, - sym_expr_interpolated, - [208287] = 7, - ACTIONS(3), 1, + ACTIONS(984), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [214022] = 7, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9931), 1, - anon_sym_LPAREN, - ACTIONS(9933), 1, - sym_unescaped_interpolated_content, - ACTIONS(10045), 1, - anon_sym_SQUOTE, - STATE(6124), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9885), 1, + anon_sym_COLON, + ACTIONS(10089), 1, + anon_sym_EQ, + STATE(6237), 1, sym_comment, - STATE(6125), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6902), 1, - sym_expr_interpolated, - [208309] = 7, + STATE(6862), 1, + aux_sym_shebang_repeat1, + STATE(7861), 1, + sym_param_type, + [214044] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9931), 1, + ACTIONS(9867), 1, anon_sym_LPAREN, - ACTIONS(9933), 1, + ACTIONS(9869), 1, sym_unescaped_interpolated_content, - ACTIONS(10047), 1, + ACTIONS(10091), 1, anon_sym_SQUOTE, - STATE(6010), 1, + STATE(6145), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6125), 1, + STATE(6238), 1, sym_comment, - STATE(6902), 1, + STATE(7162), 1, sym_expr_interpolated, - [208331] = 4, + [214066] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9438), 1, + ACTIONS(5176), 1, anon_sym_DASH2, - STATE(6126), 1, + STATE(6239), 1, sym_comment, - ACTIONS(9436), 4, + ACTIONS(5174), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [208347] = 3, + [214082] = 7, ACTIONS(247), 1, anon_sym_POUND, - STATE(6127), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6240), 1, + sym_comment, + STATE(7224), 1, + sym_val_list, + STATE(7231), 1, + aux_sym_val_table_repeat1, + [214104] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8103), 1, + sym__newline, + ACTIONS(8105), 1, + sym__space, + STATE(4829), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(6134), 1, + aux_sym_ctrl_do_parenthesized_repeat1, + STATE(6241), 1, + sym_comment, + STATE(7630), 1, + sym__flags_parenthesized, + [214126] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6242), 1, sym_comment, - ACTIONS(8089), 5, + ACTIONS(8157), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [208361] = 7, + [214140] = 7, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8487), 1, + ACTIONS(8403), 1, anon_sym_DOLLAR, - ACTIONS(8649), 1, + ACTIONS(8647), 1, sym_identifier, - STATE(5480), 1, + STATE(5398), 1, sym_val_variable, - STATE(6024), 1, + STATE(6123), 1, sym__variable_name, - STATE(6128), 1, + STATE(6243), 1, sym_comment, - STATE(7062), 1, + STATE(6282), 1, sym__assignment_pattern, - [208383] = 3, + [214162] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6129), 1, + STATE(6244), 1, sym_comment, - ACTIONS(8093), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [208397] = 7, + ACTIONS(10093), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [214175] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8487), 1, - anon_sym_DOLLAR, - ACTIONS(8649), 1, - sym_identifier, - STATE(5480), 1, - sym_val_variable, - STATE(6111), 1, - sym__variable_name, - STATE(6130), 1, + ACTIONS(627), 1, + ts_builtin_sym_end, + STATE(227), 1, + aux_sym__block_body_repeat1, + STATE(6245), 1, sym_comment, - STATE(7084), 1, - sym__assignment_pattern_parenthesized, - [208419] = 5, + ACTIONS(25), 2, + sym__newline, + anon_sym_SEMI, + [214192] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(4626), 1, + sym_block, + STATE(6246), 1, + sym_comment, + STATE(6265), 1, + aux_sym_shebang_repeat1, + [214211] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9859), 1, - aux_sym__immediate_decimal_token2, - STATE(6131), 1, + ACTIONS(2326), 1, + sym__entry_separator, + ACTIONS(10095), 1, + anon_sym_LBRACK2, + STATE(6247), 1, sym_comment, - ACTIONS(1755), 2, + ACTIONS(2322), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1757), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [208437] = 5, + [214228] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1709), 1, - anon_sym_DASH2, - ACTIONS(8677), 1, - aux_sym_unquoted_token2, - STATE(6132), 1, + STATE(6248), 1, sym_comment, - ACTIONS(1721), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [208455] = 6, + ACTIONS(10097), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214241] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1757), 1, - sym__entry_separator, - ACTIONS(8848), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(10049), 1, - anon_sym_DOT, - STATE(6133), 1, + STATE(6249), 1, sym_comment, - ACTIONS(1755), 2, + ACTIONS(1010), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [208475] = 7, + ACTIONS(1012), 2, + anon_sym_DOT, + sym__entry_separator, + [214256] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LBRACE, - ACTIONS(8960), 1, - anon_sym_DOT, - STATE(1894), 1, - sym_path, - STATE(2115), 1, - sym_cell_path, - STATE(5608), 1, - aux_sym_cell_path_repeat1, - STATE(6134), 1, + STATE(6250), 1, sym_comment, - [208497] = 7, + ACTIONS(10099), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214269] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8487), 1, - anon_sym_DOLLAR, - ACTIONS(8649), 1, - sym_identifier, - STATE(5480), 1, - sym_val_variable, - STATE(6111), 1, - sym__variable_name, - STATE(6135), 1, + STATE(6251), 1, sym_comment, - STATE(6859), 1, - sym__assignment_pattern_parenthesized, - [208519] = 4, + ACTIONS(10101), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214282] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5088), 1, - anon_sym_DASH2, - STATE(6136), 1, + STATE(6252), 1, sym_comment, - ACTIONS(5086), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [208535] = 5, + ACTIONS(10103), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214295] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6186), 1, - anon_sym_LBRACE, - STATE(6137), 1, + STATE(6253), 1, sym_comment, - STATE(7111), 1, - sym_block, - ACTIONS(9875), 3, - ts_builtin_sym_end, + ACTIONS(10105), 4, sym__newline, anon_sym_SEMI, - [208553] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214308] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(9883), 1, - anon_sym_use, - ACTIONS(9885), 1, - anon_sym_list, - ACTIONS(9887), 1, - anon_sym_hide, - ACTIONS(9889), 1, - anon_sym_new, - STATE(6138), 1, + STATE(6254), 1, sym_comment, - [208575] = 6, + ACTIONS(10107), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214321] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9861), 1, - anon_sym_DOT_DOT2, - ACTIONS(10051), 1, + ACTIONS(1709), 1, + anon_sym_LPAREN2, + ACTIONS(2211), 1, anon_sym_RBRACE, - ACTIONS(10053), 1, + ACTIONS(2213), 1, sym__entry_separator, - STATE(6139), 1, + STATE(6255), 1, sym_comment, - ACTIONS(9863), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [208595] = 7, + STATE(8152), 1, + sym__expr_parenthesized_immediate, + [214340] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9929), 1, - anon_sym_COLON, - ACTIONS(10055), 1, - anon_sym_EQ, - STATE(6140), 1, + STATE(6256), 1, sym_comment, - STATE(7334), 1, - aux_sym_shebang_repeat1, - STATE(7561), 1, - sym_param_type, - [208617] = 7, + ACTIONS(10109), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214353] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1771), 1, - aux_sym_record_entry_token1, - ACTIONS(6538), 1, - anon_sym_DOT, - STATE(2016), 1, - sym_cell_path, - STATE(3482), 1, - aux_sym_cell_path_repeat1, - STATE(3600), 1, - sym_path, - STATE(6141), 1, + STATE(6257), 1, + sym_comment, + ACTIONS(10111), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214366] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2242), 1, + anon_sym_PIPE, + ACTIONS(2244), 1, + aux_sym_unquoted_token4, + STATE(6258), 1, + sym_comment, + ACTIONS(2238), 2, + anon_sym_if, + anon_sym_EQ_GT, + [214383] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1026), 1, + anon_sym_RBRACE, + ACTIONS(1028), 1, + sym__entry_separator, + ACTIONS(2226), 1, + anon_sym_LPAREN2, + ACTIONS(2228), 1, + aux_sym__unquoted_in_record_token4, + STATE(6259), 1, sym_comment, - [208639] = 5, + [214402] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5053), 1, - anon_sym_DASH2, - ACTIONS(10057), 1, - anon_sym_EQ2, - STATE(6142), 1, + STATE(6260), 1, sym_comment, - ACTIONS(5051), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [208657] = 7, + ACTIONS(10113), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214415] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1709), 1, + anon_sym_LPAREN2, + ACTIONS(2215), 1, + anon_sym_RBRACE, + ACTIONS(2217), 1, + sym__entry_separator, + STATE(6261), 1, + sym_comment, + STATE(8152), 1, + sym__expr_parenthesized_immediate, + [214434] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(9534), 1, + ACTIONS(10115), 1, anon_sym_LBRACK, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(6143), 1, + STATE(6262), 1, sym_comment, - STATE(7125), 1, - aux_sym_val_table_repeat1, - STATE(7138), 1, + STATE(7810), 1, sym_val_list, - [208679] = 6, + [214453] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6263), 1, + sym_comment, + ACTIONS(10117), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214466] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6264), 1, + sym_comment, + ACTIONS(10119), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214479] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1886), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(6180), 1, anon_sym_LBRACE, - ACTIONS(1888), 1, - aux_sym_unquoted_token2, - ACTIONS(10059), 1, - anon_sym_DOT_DOT2, - STATE(6144), 1, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4672), 1, + sym_block, + STATE(6265), 1, sym_comment, - ACTIONS(10061), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [208699] = 7, + [214498] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(1816), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(4673), 1, + sym_block, + STATE(6266), 1, + sym_comment, + STATE(6782), 1, aux_sym_shebang_repeat1, - STATE(6145), 1, + [214517] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4632), 1, + sym_block, + STATE(6267), 1, sym_comment, - STATE(7132), 1, - aux_sym_val_table_repeat1, - STATE(7322), 1, - sym_val_list, - [208721] = 6, + [214536] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9861), 1, - anon_sym_DOT_DOT2, - ACTIONS(10063), 1, - anon_sym_RBRACE, - ACTIONS(10065), 1, + ACTIONS(5539), 1, + anon_sym_LPAREN2, + ACTIONS(8051), 1, sym__entry_separator, - STATE(6146), 1, + ACTIONS(8053), 1, + anon_sym_RBRACK, + STATE(6268), 1, sym_comment, - ACTIONS(9863), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [208741] = 5, - ACTIONS(3), 1, + STATE(8050), 1, + sym__expr_parenthesized_immediate, + [214555] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10067), 1, - aux_sym__immediate_decimal_token2, - STATE(6147), 1, + STATE(6269), 1, sym_comment, - ACTIONS(1783), 2, + ACTIONS(10121), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1785), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [208759] = 5, + [214568] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10123), 1, + anon_sym_DQUOTE, + STATE(6270), 1, + sym_comment, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, + sym__escaped_str_content, + sym_escape_sequence, + [214585] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5016), 1, - anon_sym_DASH2, - ACTIONS(10069), 1, + ACTIONS(4974), 1, + anon_sym_DOLLAR, + ACTIONS(4976), 1, + sym_identifier, + ACTIONS(10127), 1, anon_sym_EQ2, - STATE(6148), 1, + ACTIONS(10129), 1, + sym_short_flag_identifier, + STATE(6271), 1, + sym_comment, + [214604] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1457), 1, + ts_builtin_sym_end, + STATE(277), 1, + aux_sym__block_body_repeat1, + STATE(6272), 1, + sym_comment, + ACTIONS(25), 2, + sym__newline, + anon_sym_SEMI, + [214621] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2250), 1, + anon_sym_PIPE, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + STATE(6273), 1, sym_comment, - ACTIONS(5014), 3, + ACTIONS(2246), 2, + anon_sym_if, + anon_sym_EQ_GT, + [214638] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8647), 1, + sym_identifier, + ACTIONS(9041), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + STATE(5398), 1, + sym_val_variable, + STATE(6138), 1, + sym__variable_name, + STATE(6274), 1, + sym_comment, + [214657] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + ACTIONS(2256), 1, + anon_sym_PIPE, + STATE(6275), 1, + sym_comment, + ACTIONS(2254), 2, + anon_sym_if, + anon_sym_EQ_GT, + [214674] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6276), 1, + sym_comment, + ACTIONS(5685), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACE, - [208777] = 5, + [214687] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10071), 1, - anon_sym_EQ2, - ACTIONS(10073), 1, - sym_short_flag_identifier, - STATE(6149), 1, + STATE(6277), 1, sym_comment, - ACTIONS(4958), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [208795] = 6, + ACTIONS(5652), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [214700] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2151), 1, + STATE(6278), 1, + sym_comment, + ACTIONS(1014), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(2153), 1, + ACTIONS(1016), 2, + anon_sym_DOT, sym__entry_separator, - ACTIONS(9861), 1, - anon_sym_DOT_DOT2, - STATE(6150), 1, + [214715] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6279), 1, sym_comment, - ACTIONS(9863), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [208815] = 7, + ACTIONS(6321), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [214728] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8487), 1, - anon_sym_DOLLAR, - ACTIONS(8649), 1, - sym_identifier, - STATE(5480), 1, - sym_val_variable, - STATE(6111), 1, - sym__variable_name, - STATE(6151), 1, + STATE(6280), 1, sym_comment, - STATE(7346), 1, - sym__assignment_pattern_parenthesized, - [208837] = 7, + ACTIONS(6323), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [214741] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8487), 1, - anon_sym_DOLLAR, - ACTIONS(8649), 1, + STATE(6281), 1, + sym_comment, + ACTIONS(10131), 4, sym_identifier, - STATE(5480), 1, - sym_val_variable, - STATE(6027), 1, - sym__variable_name, - STATE(6152), 1, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [214754] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6282), 1, sym_comment, - STATE(6648), 1, - sym__assignment_pattern, - [208859] = 7, + ACTIONS(10133), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214767] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8487), 1, - anon_sym_DOLLAR, - ACTIONS(8649), 1, - sym_identifier, - STATE(5480), 1, - sym_val_variable, - STATE(6027), 1, - sym__variable_name, - STATE(6153), 1, + STATE(6283), 1, sym_comment, - STATE(6649), 1, - sym__assignment_pattern, - [208881] = 7, + ACTIONS(10135), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214780] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10137), 1, + anon_sym_DQUOTE, + STATE(6284), 1, + sym_comment, + STATE(6295), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, + sym__escaped_str_content, + sym_escape_sequence, + [214797] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8487), 1, - anon_sym_DOLLAR, - ACTIONS(8649), 1, - sym_identifier, - STATE(5480), 1, - sym_val_variable, - STATE(6027), 1, - sym__variable_name, - STATE(6154), 1, + STATE(6285), 1, sym_comment, - STATE(6650), 1, - sym__assignment_pattern, - [208903] = 7, + ACTIONS(10139), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214810] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8487), 1, + ACTIONS(4968), 1, anon_sym_DOLLAR, - ACTIONS(8649), 1, + ACTIONS(4970), 1, sym_identifier, - STATE(5480), 1, - sym_val_variable, - STATE(6027), 1, - sym__variable_name, - STATE(6155), 1, + ACTIONS(10141), 1, + sym_long_flag_identifier, + ACTIONS(10143), 1, + anon_sym_EQ2, + STATE(6286), 1, sym_comment, - STATE(6395), 1, - sym__assignment_pattern, - [208925] = 5, + [214829] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5053), 1, - anon_sym_DASH2, - ACTIONS(10075), 1, - anon_sym_EQ2, - STATE(6156), 1, + STATE(6287), 1, sym_comment, - ACTIONS(5051), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [208943] = 7, + ACTIONS(10145), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214842] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + STATE(6288), 1, + sym_comment, + ACTIONS(10145), 4, sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6157), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214855] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9625), 1, + anon_sym_RPAREN, + STATE(6289), 1, sym_comment, STATE(6778), 1, - sym_val_list, - STATE(7158), 1, - aux_sym_val_table_repeat1, - [208965] = 7, + aux_sym__block_body_repeat1, + ACTIONS(10147), 2, + sym__newline, + anon_sym_SEMI, + [214872] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + STATE(6290), 1, + sym_comment, + ACTIONS(10149), 4, sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6158), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214885] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6291), 1, sym_comment, - STATE(6873), 1, - sym_val_list, - STATE(7163), 1, - aux_sym_val_table_repeat1, - [208987] = 6, + ACTIONS(10151), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214898] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1755), 1, + STATE(6292), 1, + sym_comment, + ACTIONS(10151), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214911] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1765), 1, aux_sym_unquoted_token2, ACTIONS(10077), 1, - anon_sym_DOT, - ACTIONS(10079), 1, aux_sym__immediate_decimal_token2, - STATE(6159), 1, + STATE(6293), 1, sym_comment, - ACTIONS(1757), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [209007] = 5, + ACTIONS(1767), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [214928] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10081), 1, - anon_sym_DOT_DOT2, - STATE(6160), 1, + STATE(6294), 1, sym_comment, - ACTIONS(2165), 2, + ACTIONS(10153), 4, sym__newline, - anon_sym_LBRACE, - ACTIONS(10083), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [209025] = 6, - ACTIONS(247), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214941] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4936), 1, - anon_sym_DASH_DASH, - ACTIONS(10085), 1, - sym_long_flag_identifier, - ACTIONS(10087), 1, - anon_sym_EQ2, - STATE(6161), 1, + ACTIONS(10155), 1, + anon_sym_DQUOTE, + STATE(6295), 1, sym_comment, - ACTIONS(4938), 2, - sym_identifier, - anon_sym_DASH2, - [209045] = 5, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, + sym__escaped_str_content, + sym_escape_sequence, + [214958] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6296), 1, + sym_comment, + ACTIONS(2268), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token4, + ACTIONS(2270), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [214973] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5016), 1, - anon_sym_DASH2, - ACTIONS(10089), 1, - anon_sym_EQ2, - STATE(6162), 1, + ACTIONS(10157), 1, + anon_sym_LBRACK, + ACTIONS(10159), 1, + anon_sym_LPAREN, + STATE(3175), 1, + sym_parameter_parens, + STATE(3176), 1, + sym_parameter_bracks, + STATE(6297), 1, sym_comment, - ACTIONS(5014), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [209063] = 7, + [214992] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8487), 1, - anon_sym_DOLLAR, - ACTIONS(8649), 1, - sym_identifier, - STATE(5480), 1, - sym_val_variable, - STATE(6074), 1, - sym__variable_name, - STATE(6163), 1, + ACTIONS(10161), 1, + anon_sym_LBRACK, + ACTIONS(10163), 1, + anon_sym_LPAREN, + STATE(6187), 1, + sym_parameter_parens, + STATE(6188), 1, + sym_parameter_bracks, + STATE(6298), 1, sym_comment, - STATE(6648), 1, - sym__assignment_pattern, - [209085] = 7, + [215011] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8487), 1, - anon_sym_DOLLAR, - ACTIONS(8649), 1, - sym_identifier, - STATE(5480), 1, - sym_val_variable, - STATE(6074), 1, - sym__variable_name, - STATE(6164), 1, + STATE(6299), 1, sym_comment, - STATE(6649), 1, - sym__assignment_pattern, - [209107] = 7, + ACTIONS(10165), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215024] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8487), 1, - anon_sym_DOLLAR, - ACTIONS(8649), 1, - sym_identifier, - STATE(5480), 1, - sym_val_variable, - STATE(6074), 1, - sym__variable_name, - STATE(6165), 1, + STATE(6300), 1, sym_comment, - STATE(6650), 1, - sym__assignment_pattern, - [209129] = 7, + ACTIONS(10167), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215037] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10169), 1, + anon_sym_LPAREN, + STATE(6301), 1, + sym_comment, + ACTIONS(10171), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [215052] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8487), 1, - anon_sym_DOLLAR, - ACTIONS(8649), 1, - sym_identifier, - STATE(5480), 1, - sym_val_variable, - STATE(6074), 1, - sym__variable_name, - STATE(6166), 1, + ACTIONS(1765), 1, + aux_sym_unquoted_token2, + STATE(6302), 1, sym_comment, - STATE(6395), 1, - sym__assignment_pattern, - [209151] = 7, + ACTIONS(1767), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [215067] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, + ACTIONS(1812), 1, + aux_sym_unquoted_token2, + ACTIONS(10173), 1, + anon_sym_DOT_DOT2, + STATE(6303), 1, + sym_comment, + ACTIONS(10175), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [215084] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(10177), 1, anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6167), 1, + ACTIONS(10179), 1, + anon_sym_RBRACK, + STATE(3396), 1, + aux_sym__multiple_types_repeat1, + STATE(6304), 1, sym_comment, - STATE(7073), 1, - sym_val_list, - STATE(7190), 1, - aux_sym_val_table_repeat1, - [209173] = 7, + [215103] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6168), 1, + ACTIONS(1812), 1, + aux_sym_unquoted_token2, + STATE(6305), 1, sym_comment, - STATE(7079), 1, - sym_val_list, - STATE(7192), 1, - aux_sym_val_table_repeat1, - [209195] = 7, + ACTIONS(2232), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [215118] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6169), 1, + STATE(6306), 1, sym_comment, - STATE(7168), 1, - sym_val_list, - STATE(7198), 1, - aux_sym_val_table_repeat1, - [209217] = 7, + ACTIONS(10181), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [215131] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6170), 1, + ACTIONS(1739), 1, + aux_sym_unquoted_token2, + STATE(6307), 1, sym_comment, - STATE(7186), 1, - sym_val_list, - STATE(7201), 1, - aux_sym_val_table_repeat1, - [209239] = 7, + ACTIONS(1741), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [215146] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6171), 1, + ACTIONS(1812), 1, + aux_sym_unquoted_token2, + STATE(6308), 1, sym_comment, - STATE(7209), 1, - aux_sym_val_table_repeat1, - STATE(7320), 1, - sym_val_list, - [209261] = 7, + ACTIONS(1810), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [215161] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6172), 1, + ACTIONS(1785), 1, + aux_sym_unquoted_token2, + ACTIONS(10183), 1, + aux_sym__immediate_decimal_token2, + STATE(6309), 1, sym_comment, - STATE(7211), 1, - aux_sym_val_table_repeat1, - STATE(7330), 1, - sym_val_list, - [209283] = 7, + ACTIONS(1787), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [215178] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, + ACTIONS(6653), 1, + anon_sym_DOT_DOT2, + ACTIONS(10185), 1, + anon_sym_LBRACE, + STATE(6310), 1, + sym_comment, + ACTIONS(6637), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [215195] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10187), 1, + anon_sym_LPAREN, + STATE(6311), 1, + sym_comment, + ACTIONS(10189), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [215210] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(10177), 1, anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6173), 1, + ACTIONS(10191), 1, + anon_sym_RBRACK, + STATE(3396), 1, + aux_sym__multiple_types_repeat1, + STATE(6312), 1, sym_comment, - STATE(6761), 1, - sym_val_list, - STATE(7216), 1, - aux_sym_val_table_repeat1, - [209305] = 7, + [215229] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6174), 1, + ACTIONS(1785), 1, + aux_sym_unquoted_token2, + STATE(6313), 1, sym_comment, - STATE(6766), 1, - sym_val_list, - STATE(7219), 1, - aux_sym_val_table_repeat1, - [209327] = 7, + ACTIONS(1787), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [215244] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, + ACTIONS(10157), 1, anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6175), 1, + ACTIONS(10159), 1, + anon_sym_LPAREN, + STATE(3185), 1, + sym_parameter_parens, + STATE(3187), 1, + sym_parameter_bracks, + STATE(6314), 1, sym_comment, - STATE(6786), 1, - sym_val_list, - STATE(7225), 1, - aux_sym_val_table_repeat1, - [209349] = 7, + [215263] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6176), 1, + ACTIONS(9927), 1, + anon_sym_use, + ACTIONS(9929), 1, + anon_sym_list, + ACTIONS(9931), 1, + anon_sym_hide, + ACTIONS(9933), 1, + anon_sym_new, + STATE(6315), 1, sym_comment, - STATE(6792), 1, - sym_val_list, - STATE(7227), 1, - aux_sym_val_table_repeat1, - [209371] = 7, + [215282] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6177), 1, + ACTIONS(1841), 1, + aux_sym_unquoted_token2, + STATE(6316), 1, sym_comment, - STATE(6811), 1, - sym_val_list, - STATE(7232), 1, - aux_sym_val_table_repeat1, - [209393] = 7, + ACTIONS(1843), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [215297] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10193), 1, + anon_sym_DQUOTE, + STATE(6317), 1, + sym_comment, + STATE(6357), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, + sym__escaped_str_content, + sym_escape_sequence, + [215314] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6178), 1, + ACTIONS(1559), 1, + aux_sym_unquoted_token2, + ACTIONS(10195), 1, + anon_sym_DOT_DOT2, + STATE(6318), 1, sym_comment, - STATE(6816), 1, - sym_val_list, - STATE(7234), 1, - aux_sym_val_table_repeat1, - [209415] = 7, + ACTIONS(10197), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [215331] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7823), 1, - sym__newline, - ACTIONS(7825), 1, - sym__space, - STATE(4619), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(6101), 1, - aux_sym_ctrl_do_parenthesized_repeat1, - STATE(6179), 1, + ACTIONS(1008), 1, + anon_sym_DOT, + STATE(6319), 1, sym_comment, - STATE(7426), 1, - sym__flags_parenthesized, - [209437] = 7, + ACTIONS(1006), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [215346] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7823), 1, - sym__newline, - ACTIONS(7825), 1, - sym__space, - STATE(4775), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(6179), 1, - aux_sym_ctrl_do_parenthesized_repeat1, - STATE(6180), 1, + ACTIONS(10199), 1, + anon_sym_LPAREN, + STATE(6320), 1, sym_comment, - STATE(7426), 1, - sym__flags_parenthesized, - [209459] = 7, - ACTIONS(247), 1, + ACTIONS(10201), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [215361] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(10177), 1, anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6181), 1, + ACTIONS(10203), 1, + anon_sym_RBRACK, + STATE(3396), 1, + aux_sym__multiple_types_repeat1, + STATE(6321), 1, sym_comment, - STATE(6839), 1, - sym_val_list, - STATE(7239), 1, - aux_sym_val_table_repeat1, - [209481] = 7, - ACTIONS(247), 1, + [215380] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(10177), 1, anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6182), 1, + ACTIONS(10205), 1, + anon_sym_RBRACK, + STATE(3396), 1, + aux_sym__multiple_types_repeat1, + STATE(6322), 1, sym_comment, - STATE(6846), 1, - sym_val_list, - STATE(7242), 1, - aux_sym_val_table_repeat1, - [209503] = 7, - ACTIONS(247), 1, + [215399] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(10177), 1, anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6183), 1, + ACTIONS(10207), 1, + anon_sym_RBRACK, + STATE(3396), 1, + aux_sym__multiple_types_repeat1, + STATE(6323), 1, sym_comment, - STATE(6860), 1, - sym_val_list, - STATE(7247), 1, - aux_sym_val_table_repeat1, - [209525] = 7, + [215418] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6184), 1, + STATE(6324), 1, sym_comment, - STATE(6864), 1, - sym_val_list, - STATE(7249), 1, - aux_sym_val_table_repeat1, - [209547] = 7, + ACTIONS(10209), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215431] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6185), 1, + ACTIONS(9518), 1, + anon_sym_RPAREN, + STATE(6325), 1, sym_comment, - STATE(6887), 1, - sym_val_list, - STATE(7253), 1, - aux_sym_val_table_repeat1, - [209569] = 7, + STATE(6778), 1, + aux_sym__block_body_repeat1, + ACTIONS(10147), 2, + sym__newline, + anon_sym_SEMI, + [215448] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6186), 1, + STATE(6326), 1, sym_comment, - STATE(6894), 1, - sym_val_list, - STATE(7255), 1, - aux_sym_val_table_repeat1, - [209591] = 3, + ACTIONS(10211), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215461] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6187), 1, + STATE(6327), 1, sym_comment, - ACTIONS(8099), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [209605] = 7, + ACTIONS(10211), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215474] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6188), 1, + STATE(6328), 1, sym_comment, - STATE(6916), 1, - sym_val_list, - STATE(7261), 1, - aux_sym_val_table_repeat1, - [209627] = 7, + ACTIONS(10213), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215487] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6189), 1, + STATE(6329), 1, sym_comment, - STATE(6922), 1, - sym_val_list, - STATE(7263), 1, - aux_sym_val_table_repeat1, - [209649] = 7, + ACTIONS(10213), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215500] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + STATE(6330), 1, + sym_comment, + ACTIONS(10215), 4, sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6190), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215513] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2238), 1, + anon_sym_RBRACK, + ACTIONS(2240), 1, + anon_sym_LPAREN2, + ACTIONS(2242), 1, + sym__entry_separator, + ACTIONS(2244), 1, + aux_sym__unquoted_in_list_token4, + STATE(6331), 1, sym_comment, - STATE(6938), 1, - sym_val_list, - STATE(7269), 1, - aux_sym_val_table_repeat1, - [209671] = 7, + [215532] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, + ACTIONS(10157), 1, anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6191), 1, + ACTIONS(10159), 1, + anon_sym_LPAREN, + STATE(5801), 1, + sym_parameter_parens, + STATE(5803), 1, + sym_parameter_bracks, + STATE(6332), 1, sym_comment, - STATE(6943), 1, - sym_val_list, - STATE(7272), 1, - aux_sym_val_table_repeat1, - [209693] = 7, + [215551] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6192), 1, + STATE(6333), 1, sym_comment, - STATE(6959), 1, - sym_val_list, - STATE(7276), 1, - aux_sym_val_table_repeat1, - [209715] = 7, + ACTIONS(6281), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [215564] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6193), 1, + STATE(6334), 1, sym_comment, - STATE(6966), 1, - sym_val_list, - STATE(7278), 1, - aux_sym_val_table_repeat1, - [209737] = 7, + ACTIONS(6327), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [215577] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + STATE(6335), 1, + sym_comment, + ACTIONS(10217), 4, sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6194), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215590] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6336), 1, sym_comment, - STATE(6982), 1, - sym_val_list, - STATE(7283), 1, - aux_sym_val_table_repeat1, - [209759] = 7, + ACTIONS(1765), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1767), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [215605] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6195), 1, + STATE(6337), 1, sym_comment, - STATE(6988), 1, - sym_val_list, - STATE(7285), 1, - aux_sym_val_table_repeat1, - [209781] = 7, + ACTIONS(10217), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215618] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6196), 1, + STATE(6338), 1, sym_comment, - STATE(7001), 1, - sym_val_list, - STATE(7290), 1, - aux_sym_val_table_repeat1, - [209803] = 7, + ACTIONS(10211), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215631] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6197), 1, + STATE(6339), 1, sym_comment, - STATE(7007), 1, - sym_val_list, - STATE(7293), 1, - aux_sym_val_table_repeat1, - [209825] = 7, + ACTIONS(10211), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215644] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + STATE(6340), 1, + sym_comment, + ACTIONS(10219), 4, sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6198), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215657] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1026), 1, + anon_sym_RBRACK, + ACTIONS(1028), 1, + sym__entry_separator, + ACTIONS(2226), 1, + anon_sym_LPAREN2, + ACTIONS(2228), 1, + aux_sym__unquoted_in_list_token4, + STATE(6341), 1, sym_comment, - STATE(7016), 1, - sym_val_list, - STATE(7298), 1, - aux_sym_val_table_repeat1, - [209847] = 7, - ACTIONS(247), 1, + [215676] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(10177), 1, anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6199), 1, + ACTIONS(10221), 1, + anon_sym_RBRACK, + STATE(3396), 1, + aux_sym__multiple_types_repeat1, + STATE(6342), 1, sym_comment, - STATE(7021), 1, - sym_val_list, - STATE(7301), 1, - aux_sym_val_table_repeat1, - [209869] = 7, - ACTIONS(247), 1, + [215695] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(10177), 1, anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6200), 1, + ACTIONS(10223), 1, + anon_sym_RBRACK, + STATE(3396), 1, + aux_sym__multiple_types_repeat1, + STATE(6343), 1, sym_comment, - STATE(7031), 1, - sym_val_list, - STATE(7305), 1, - aux_sym_val_table_repeat1, - [209891] = 7, - ACTIONS(247), 1, + [215714] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(10177), 1, anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6201), 1, + ACTIONS(10225), 1, + anon_sym_RBRACK, + STATE(3396), 1, + aux_sym__multiple_types_repeat1, + STATE(6344), 1, sym_comment, - STATE(7036), 1, - sym_val_list, - STATE(7308), 1, - aux_sym_val_table_repeat1, - [209913] = 6, + [215733] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1739), 1, - aux_sym_unquoted_token2, - ACTIONS(10091), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10093), 1, - aux_sym__immediate_decimal_token2, - STATE(6202), 1, + STATE(6345), 1, sym_comment, - ACTIONS(1741), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [209933] = 7, + ACTIONS(10227), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215746] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8487), 1, - anon_sym_DOLLAR, - ACTIONS(8649), 1, - sym_identifier, - STATE(5480), 1, - sym_val_variable, - STATE(6140), 1, - sym__variable_name, - STATE(6203), 1, + ACTIONS(1661), 1, + aux_sym_unquoted_token2, + STATE(6346), 1, sym_comment, - STATE(7084), 1, - sym__assignment_pattern_parenthesized, - [209955] = 7, - ACTIONS(247), 1, + ACTIONS(2262), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [215761] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8487), 1, - anon_sym_DOLLAR, - ACTIONS(8649), 1, - sym_identifier, - STATE(5480), 1, - sym_val_variable, - STATE(6140), 1, - sym__variable_name, - STATE(6204), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(10177), 1, + anon_sym_LBRACK, + ACTIONS(10229), 1, + anon_sym_RBRACK, + STATE(3396), 1, + aux_sym__multiple_types_repeat1, + STATE(6347), 1, sym_comment, - STATE(6859), 1, - sym__assignment_pattern_parenthesized, - [209977] = 7, + [215780] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8487), 1, - anon_sym_DOLLAR, - ACTIONS(8649), 1, - sym_identifier, - STATE(5480), 1, - sym_val_variable, - STATE(6140), 1, - sym__variable_name, - STATE(6205), 1, + ACTIONS(1495), 1, + anon_sym_SEMI, + ACTIONS(3929), 1, + sym__newline, + STATE(252), 1, + aux_sym__parenthesized_body_repeat1, + STATE(6348), 1, sym_comment, - STATE(7346), 1, - sym__assignment_pattern_parenthesized, - [209999] = 7, + STATE(6852), 1, + aux_sym_shebang_repeat1, + [215799] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8487), 1, - anon_sym_DOLLAR, - ACTIONS(8649), 1, - sym_identifier, - STATE(5480), 1, - sym_val_variable, - STATE(6140), 1, - sym__variable_name, - STATE(6206), 1, + STATE(6349), 1, sym_comment, - STATE(7296), 1, - sym__assignment_pattern_parenthesized, - [210021] = 3, - ACTIONS(247), 1, + ACTIONS(10231), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215812] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6207), 1, + STATE(6350), 1, sym_comment, - ACTIONS(8103), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [210035] = 3, + ACTIONS(1765), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1767), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [215827] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6208), 1, + STATE(6351), 1, sym_comment, - ACTIONS(8107), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [210049] = 7, + ACTIONS(10233), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215840] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6209), 1, + STATE(6352), 1, sym_comment, - STATE(7025), 1, - sym_val_list, - STATE(7035), 1, - aux_sym_val_table_repeat1, - [210071] = 6, + ACTIONS(10235), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215853] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2155), 1, + STATE(6353), 1, + sym_comment, + ACTIONS(1739), 2, anon_sym_RBRACE, - ACTIONS(2157), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1741), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(9861), 1, - anon_sym_DOT_DOT2, - STATE(6210), 1, - sym_comment, - ACTIONS(9863), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [210091] = 7, + [215868] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9931), 1, - anon_sym_LPAREN, - ACTIONS(9933), 1, - sym_unescaped_interpolated_content, - ACTIONS(10095), 1, - anon_sym_SQUOTE, - STATE(6010), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6211), 1, + ACTIONS(1012), 1, + anon_sym_DOT, + STATE(6354), 1, sym_comment, - STATE(6902), 1, - sym_expr_interpolated, - [210113] = 6, + ACTIONS(1010), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [215883] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(10097), 1, - anon_sym_LBRACK, - ACTIONS(10099), 1, + ACTIONS(1016), 1, + anon_sym_DOT, + STATE(6355), 1, + sym_comment, + ACTIONS(1014), 3, anon_sym_RBRACK, - STATE(3383), 1, - aux_sym__multiple_types_repeat1, - STATE(6212), 1, + sym__entry_separator, + sym__table_head_separator, + [215898] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6356), 1, sym_comment, - [210132] = 5, + ACTIONS(1785), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1787), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [215913] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10101), 1, + ACTIONS(10237), 1, anon_sym_DQUOTE, - STATE(6213), 1, + STATE(6357), 1, sym_comment, - STATE(6243), 1, + STATE(6814), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [210149] = 3, + [215930] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6358), 1, + sym_comment, + ACTIONS(1841), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1843), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [215945] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1661), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2258), 1, + anon_sym_RBRACK, + ACTIONS(2260), 1, + anon_sym_LPAREN2, + ACTIONS(2262), 1, + sym__entry_separator, + STATE(6359), 1, + sym_comment, + [215964] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6214), 1, + STATE(6360), 1, sym_comment, - ACTIONS(10105), 4, + ACTIONS(10239), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [210162] = 3, + [215977] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6215), 1, + STATE(6361), 1, sym_comment, - ACTIONS(10105), 4, + ACTIONS(10239), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [210175] = 3, + [215990] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6216), 1, + STATE(6362), 1, sym_comment, - ACTIONS(10107), 4, + ACTIONS(10241), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [216003] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6363), 1, + sym_comment, + ACTIONS(10241), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [216016] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1707), 1, + anon_sym_DASH2, + ACTIONS(8635), 1, + aux_sym_unquoted_token2, + STATE(6364), 1, + sym_comment, + ACTIONS(1719), 2, + sym_identifier, + anon_sym_DASH_DASH, + [216033] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6365), 1, + sym_comment, + ACTIONS(10243), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [216046] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6366), 1, + sym_comment, + ACTIONS(6325), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [216059] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6367), 1, + sym_comment, + ACTIONS(6215), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [216072] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6368), 1, + sym_comment, + ACTIONS(10239), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [216085] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6369), 1, + sym_comment, + ACTIONS(10245), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [210188] = 6, + [216098] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6370), 1, + sym_comment, + ACTIONS(10239), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [216111] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6371), 1, + sym_comment, + ACTIONS(10247), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [216124] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5556), 1, - anon_sym_LPAREN2, - ACTIONS(8010), 1, - sym__entry_separator, - ACTIONS(8012), 1, - anon_sym_RBRACK, - STATE(6217), 1, + ACTIONS(10249), 1, + anon_sym_DQUOTE, + STATE(6372), 1, sym_comment, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - [210207] = 3, + STATE(6376), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, + sym__escaped_str_content, + sym_escape_sequence, + [216141] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6218), 1, + STATE(6373), 1, sym_comment, - ACTIONS(10109), 4, + ACTIONS(10251), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [210220] = 3, + [216154] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6219), 1, + STATE(6374), 1, sym_comment, - ACTIONS(10111), 4, + ACTIONS(10253), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [210233] = 3, + [216167] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6220), 1, + STATE(6375), 1, sym_comment, - ACTIONS(10109), 4, + ACTIONS(10255), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [210246] = 6, + [216180] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10257), 1, + anon_sym_DQUOTE, + STATE(6376), 1, + sym_comment, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, + sym__escaped_str_content, + sym_escape_sequence, + [216197] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1559), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1820), 1, + anon_sym_RBRACE, + ACTIONS(1822), 1, + anon_sym_LPAREN2, + ACTIONS(1828), 1, + sym__entry_separator, + STATE(6377), 1, + sym_comment, + [216216] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10113), 1, + ACTIONS(10157), 1, anon_sym_LBRACK, - ACTIONS(10115), 1, + ACTIONS(10159), 1, anon_sym_LPAREN, - STATE(6005), 1, + STATE(5970), 1, sym_parameter_parens, - STATE(6006), 1, + STATE(5971), 1, sym_parameter_bracks, - STATE(6221), 1, + STATE(6378), 1, sym_comment, - [210265] = 6, + [216235] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10117), 1, + ACTIONS(10259), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6222), 1, + STATE(6379), 1, sym_comment, - [210284] = 6, + [216254] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10119), 1, + ACTIONS(10261), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6223), 1, + STATE(6380), 1, sym_comment, - [210303] = 6, + [216273] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10121), 1, + ACTIONS(10263), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6224), 1, + STATE(6381), 1, sym_comment, - [210322] = 6, + [216292] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10123), 1, + ACTIONS(10265), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6225), 1, + STATE(6382), 1, sym_comment, - [210341] = 6, + [216311] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10125), 1, + ACTIONS(10267), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6226), 1, + STATE(6383), 1, sym_comment, - [210360] = 6, + [216330] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10127), 1, + ACTIONS(10269), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6227), 1, + STATE(6384), 1, sym_comment, - [210379] = 6, + [216349] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10129), 1, + ACTIONS(10271), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6228), 1, + STATE(6385), 1, sym_comment, - [210398] = 6, + [216368] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10131), 1, + ACTIONS(10273), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6229), 1, + STATE(6386), 1, sym_comment, - [210417] = 6, - ACTIONS(3), 1, + [216387] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1579), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(2234), 1, - anon_sym_RBRACE, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2238), 1, - sym__entry_separator, - STATE(6230), 1, + STATE(6387), 1, sym_comment, - [210436] = 3, + ACTIONS(10275), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [216400] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6231), 1, + STATE(6388), 1, sym_comment, - ACTIONS(10133), 4, + ACTIONS(10275), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [210449] = 3, + [216413] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6232), 1, + STATE(6389), 1, sym_comment, - ACTIONS(10135), 4, + ACTIONS(10277), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [210462] = 6, - ACTIONS(3), 1, + [216426] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1880), 1, - anon_sym_LPAREN2, - ACTIONS(1888), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2187), 1, - anon_sym_RBRACK, - ACTIONS(2189), 1, - sym__entry_separator, - STATE(6233), 1, + STATE(6390), 1, sym_comment, - [210481] = 4, - ACTIONS(3), 1, + ACTIONS(10277), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [216439] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6234), 1, + STATE(6391), 1, sym_comment, - ACTIONS(1006), 2, - anon_sym_RBRACK, + ACTIONS(10277), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(1008), 2, - anon_sym_DOT, - sym__entry_separator, - [210496] = 3, + [216452] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6235), 1, + STATE(6392), 1, sym_comment, - ACTIONS(10137), 4, + ACTIONS(10277), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [210509] = 3, + [216465] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6236), 1, + STATE(6393), 1, sym_comment, - ACTIONS(10139), 4, + ACTIONS(10279), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [210522] = 6, + [216478] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1878), 1, - anon_sym_RBRACK, - ACTIONS(1880), 1, + ACTIONS(5539), 1, anon_sym_LPAREN2, - ACTIONS(1886), 1, + ACTIONS(7944), 1, sym__entry_separator, - ACTIONS(1888), 1, - aux_sym__unquoted_in_list_token2, - STATE(6237), 1, + ACTIONS(7946), 1, + anon_sym_RBRACK, + STATE(6394), 1, sym_comment, - [210541] = 6, + STATE(8050), 1, + sym__expr_parenthesized_immediate, + [216497] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10141), 1, + ACTIONS(10281), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6238), 1, + STATE(6395), 1, sym_comment, - [210560] = 4, - ACTIONS(3), 1, + [216516] = 4, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6239), 1, + ACTIONS(2278), 1, + aux_sym_unquoted_token2, + STATE(6396), 1, sym_comment, - ACTIONS(1890), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1892), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [210575] = 3, + ACTIONS(2276), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [216531] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6240), 1, + STATE(6397), 1, sym_comment, - ACTIONS(10143), 4, + ACTIONS(10283), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [210588] = 5, + [216544] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1755), 1, - aux_sym_unquoted_token2, - ACTIONS(10079), 1, - aux_sym__immediate_decimal_token2, - STATE(6241), 1, + STATE(6398), 1, sym_comment, - ACTIONS(1757), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [210605] = 3, + ACTIONS(10285), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [216557] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6242), 1, + STATE(6399), 1, sym_comment, - ACTIONS(10139), 4, + ACTIONS(10287), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [210618] = 4, - ACTIONS(3), 1, + [216570] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10145), 1, - anon_sym_DQUOTE, - ACTIONS(10147), 2, - sym__escaped_str_content, - sym_escape_sequence, - STATE(6243), 2, + STATE(6400), 1, sym_comment, - aux_sym__str_double_quotes_repeat1, - [210633] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2252), 1, + ACTIONS(10287), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(2254), 1, - anon_sym_LPAREN2, - ACTIONS(2256), 1, - sym__entry_separator, - ACTIONS(2258), 1, - aux_sym__unquoted_in_record_token2, - STATE(6244), 1, - sym_comment, - [210652] = 3, + [216583] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6245), 1, + STATE(6401), 1, sym_comment, - ACTIONS(10150), 4, + ACTIONS(10289), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [210665] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10152), 1, - anon_sym_LBRACK, - ACTIONS(10154), 1, - anon_sym_LPAREN, - STATE(3169), 1, - sym_parameter_parens, - STATE(3170), 1, - sym_parameter_bracks, - STATE(6246), 1, - sym_comment, - [210684] = 5, + [216596] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10156), 1, + ACTIONS(10291), 1, anon_sym_DQUOTE, - STATE(6247), 1, + STATE(6402), 1, sym_comment, - STATE(6252), 1, + STATE(6406), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [210701] = 3, + [216613] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6248), 1, + STATE(6403), 1, sym_comment, - ACTIONS(10158), 4, + ACTIONS(10293), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [210714] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5556), 1, - anon_sym_LPAREN2, - ACTIONS(8054), 1, - sym__entry_separator, - ACTIONS(8056), 1, - anon_sym_RBRACK, - STATE(6249), 1, - sym_comment, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - [210733] = 3, + [216626] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6250), 1, + STATE(6404), 1, sym_comment, - ACTIONS(10160), 4, + ACTIONS(10295), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [210746] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(10097), 1, - anon_sym_LBRACK, - ACTIONS(10162), 1, - anon_sym_RBRACK, - STATE(3383), 1, - aux_sym__multiple_types_repeat1, - STATE(6251), 1, - sym_comment, - [210765] = 5, - ACTIONS(3), 1, + [216639] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10164), 1, - anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6252), 1, + STATE(6405), 1, sym_comment, - ACTIONS(10103), 2, - sym__escaped_str_content, - sym_escape_sequence, - [210782] = 5, + ACTIONS(10297), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [216652] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10166), 1, + ACTIONS(10299), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6253), 1, + STATE(6406), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [210799] = 3, + [216669] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(6254), 1, - sym_comment, - ACTIONS(10168), 4, + ACTIONS(3929), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [210812] = 6, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(4634), 1, + sym_block, + STATE(6267), 1, + aux_sym_shebang_repeat1, + STATE(6407), 1, + sym_comment, + [216688] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1579), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2234), 1, + STATE(6408), 1, + sym_comment, + ACTIONS(1739), 2, anon_sym_RBRACK, - ACTIONS(2236), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1741), 2, anon_sym_LPAREN2, - ACTIONS(2238), 1, sym__entry_separator, - STATE(6255), 1, - sym_comment, - [210831] = 6, + [216703] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10170), 1, + ACTIONS(10301), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6256), 1, + STATE(6409), 1, sym_comment, - [210850] = 6, + [216722] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10172), 1, + ACTIONS(10303), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6257), 1, + STATE(6410), 1, sym_comment, - [210869] = 6, + [216741] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10174), 1, + ACTIONS(10305), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6258), 1, + STATE(6411), 1, sym_comment, - [210888] = 6, + [216760] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10176), 1, + ACTIONS(10307), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6259), 1, + STATE(6412), 1, sym_comment, - [210907] = 6, + [216779] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10178), 1, + ACTIONS(10309), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6260), 1, + STATE(6413), 1, sym_comment, - [210926] = 6, + [216798] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10180), 1, + ACTIONS(10311), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6261), 1, + STATE(6414), 1, sym_comment, - [210945] = 6, + [216817] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10182), 1, + ACTIONS(10313), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6262), 1, + STATE(6415), 1, sym_comment, - [210964] = 6, + [216836] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10184), 1, + ACTIONS(10315), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6263), 1, + STATE(6416), 1, sym_comment, - [210983] = 3, - ACTIONS(247), 1, + [216855] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6264), 1, - sym_comment, - ACTIONS(10186), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2238), 1, anon_sym_RBRACE, - [210996] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6265), 1, + ACTIONS(2240), 1, + anon_sym_LPAREN2, + ACTIONS(2242), 1, + sym__entry_separator, + ACTIONS(2244), 1, + aux_sym__unquoted_in_record_token4, + STATE(6417), 1, sym_comment, - ACTIONS(10188), 4, + [216874] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4968), 1, + sym__space, + ACTIONS(4970), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [211009] = 3, + ACTIONS(10317), 1, + sym_long_flag_identifier, + ACTIONS(10319), 1, + anon_sym_EQ2, + STATE(6418), 1, + sym_comment, + [216893] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6266), 1, + STATE(6419), 1, sym_comment, - ACTIONS(10190), 4, + ACTIONS(10321), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [211022] = 5, + [216906] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10192), 1, + ACTIONS(10323), 1, anon_sym_DQUOTE, - STATE(6267), 1, + STATE(6420), 1, sym_comment, - STATE(6274), 1, + STATE(6422), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [211039] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6268), 1, - sym_comment, - ACTIONS(10194), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [211052] = 4, + [216923] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1888), 1, + ACTIONS(1785), 1, aux_sym_unquoted_token2, - STATE(6269), 1, - sym_comment, - ACTIONS(2189), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [211067] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6270), 1, - sym_comment, - ACTIONS(10196), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [211080] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6271), 1, - sym_comment, - ACTIONS(10198), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [211093] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6272), 1, - sym_comment, - ACTIONS(10196), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [211106] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10152), 1, - anon_sym_LBRACK, - ACTIONS(10154), 1, - anon_sym_LPAREN, - STATE(3161), 1, - sym_parameter_bracks, - STATE(3164), 1, - sym_parameter_parens, - STATE(6273), 1, + ACTIONS(10325), 1, + aux_sym__immediate_decimal_token2, + STATE(6421), 1, sym_comment, - [211125] = 5, + ACTIONS(1787), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [216940] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10200), 1, + ACTIONS(10327), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6274), 1, + STATE(6422), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [211142] = 3, + [216957] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6275), 1, + STATE(6423), 1, sym_comment, - ACTIONS(10202), 4, + ACTIONS(10329), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [211155] = 3, + [216970] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6276), 1, + STATE(6424), 1, sym_comment, - ACTIONS(10204), 4, + ACTIONS(10329), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [211168] = 3, + [216983] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(6277), 1, + ACTIONS(9500), 1, + anon_sym_LBRACE, + STATE(4860), 1, + sym_block, + STATE(4861), 1, + sym_val_closure, + STATE(4885), 1, + sym__blosure, + STATE(6425), 1, sym_comment, - ACTIONS(10206), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [211181] = 3, + [217002] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(6278), 1, + ACTIONS(4866), 1, + aux_sym_unquoted_token2, + STATE(6426), 1, sym_comment, - ACTIONS(10208), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [211194] = 6, + ACTIONS(1719), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [217017] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10210), 1, + ACTIONS(10331), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6279), 1, + STATE(6427), 1, sym_comment, - [211213] = 6, + [217036] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10212), 1, + ACTIONS(10333), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6280), 1, + STATE(6428), 1, sym_comment, - [211232] = 6, + [217055] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10214), 1, + ACTIONS(10335), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6281), 1, + STATE(6429), 1, sym_comment, - [211251] = 6, + [217074] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10216), 1, + ACTIONS(10337), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6282), 1, + STATE(6430), 1, sym_comment, - [211270] = 6, + [217093] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10218), 1, + ACTIONS(10339), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6283), 1, + STATE(6431), 1, sym_comment, - [211289] = 6, + [217112] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10220), 1, + ACTIONS(10341), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6284), 1, + STATE(6432), 1, sym_comment, - [211308] = 6, + [217131] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10222), 1, + ACTIONS(10343), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6285), 1, + STATE(6433), 1, sym_comment, - [211327] = 6, + [217150] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10224), 1, + ACTIONS(10345), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6286), 1, - sym_comment, - [211346] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1579), 1, - aux_sym_unquoted_token2, - STATE(6287), 1, + STATE(6434), 1, sym_comment, - ACTIONS(2238), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [211361] = 4, + [217169] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2258), 1, - aux_sym_unquoted_token2, - STATE(6288), 1, + STATE(6435), 1, sym_comment, - ACTIONS(2256), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [211376] = 6, - ACTIONS(247), 1, + ACTIONS(10329), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217182] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9883), 1, - anon_sym_use, - ACTIONS(9885), 1, - anon_sym_list, - ACTIONS(9887), 1, - anon_sym_hide, - ACTIONS(9889), 1, - anon_sym_new, - STATE(6289), 1, + ACTIONS(2228), 1, + aux_sym_unquoted_token4, + STATE(6436), 1, sym_comment, - [211395] = 3, + ACTIONS(1026), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [217197] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6290), 1, + STATE(6437), 1, sym_comment, - ACTIONS(10226), 4, + ACTIONS(10347), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [211408] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10228), 1, - anon_sym_DQUOTE, - STATE(6291), 1, - sym_comment, - STATE(6296), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, - sym__escaped_str_content, - sym_escape_sequence, - [211425] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2214), 1, - anon_sym_RBRACE, - ACTIONS(2216), 1, - anon_sym_LPAREN2, - ACTIONS(2218), 1, - sym__entry_separator, - ACTIONS(2220), 1, - aux_sym__unquoted_in_record_token4, - STATE(6292), 1, - sym_comment, - [211444] = 6, + [217210] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2216), 1, - anon_sym_LPAREN2, - ACTIONS(2220), 1, - aux_sym__unquoted_in_record_token4, - ACTIONS(2222), 1, - anon_sym_RBRACE, - ACTIONS(2224), 1, - sym__entry_separator, - STATE(6293), 1, + ACTIONS(4974), 1, + sym__space, + ACTIONS(4976), 1, + sym__newline, + ACTIONS(10349), 1, + anon_sym_EQ2, + ACTIONS(10351), 1, + sym_short_flag_identifier, + STATE(6438), 1, sym_comment, - [211463] = 5, + [217229] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10230), 1, + ACTIONS(10353), 1, anon_sym_DQUOTE, - STATE(6294), 1, + STATE(6439), 1, sym_comment, - STATE(6346), 1, + STATE(6441), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [211480] = 3, + [217246] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6295), 1, + STATE(6440), 1, sym_comment, - ACTIONS(10232), 4, + ACTIONS(10329), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [211493] = 5, + [217259] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10234), 1, + ACTIONS(10355), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6296), 1, + STATE(6441), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [211510] = 3, + [217276] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6297), 1, + STATE(6442), 1, sym_comment, - ACTIONS(10236), 4, + ACTIONS(10329), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [211523] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6661), 1, - anon_sym_DOT_DOT2, - ACTIONS(10238), 1, - anon_sym_LBRACE, - STATE(6298), 1, - sym_comment, - ACTIONS(6639), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [211540] = 3, + [217289] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6299), 1, + STATE(6443), 1, sym_comment, - ACTIONS(10240), 4, + ACTIONS(10329), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [211553] = 6, + [217302] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10152), 1, - anon_sym_LBRACK, - ACTIONS(10154), 1, - anon_sym_LPAREN, - STATE(5737), 1, - sym_parameter_parens, - STATE(5742), 1, - sym_parameter_bracks, - STATE(6300), 1, + STATE(6444), 1, sym_comment, - [211572] = 6, + ACTIONS(10357), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217315] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10242), 1, + ACTIONS(10359), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6301), 1, + STATE(6445), 1, sym_comment, - [211591] = 6, + [217334] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10244), 1, + ACTIONS(10361), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6302), 1, + STATE(6446), 1, sym_comment, - [211610] = 6, + [217353] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10246), 1, + ACTIONS(10363), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6303), 1, + STATE(6447), 1, sym_comment, - [211629] = 6, + [217372] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10248), 1, + ACTIONS(10365), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6304), 1, + STATE(6448), 1, sym_comment, - [211648] = 6, + [217391] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10250), 1, + ACTIONS(10367), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6305), 1, + STATE(6449), 1, sym_comment, - [211667] = 6, + [217410] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10252), 1, + ACTIONS(10369), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6306), 1, + STATE(6450), 1, sym_comment, - [211686] = 6, + [217429] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10254), 1, + ACTIONS(10371), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6307), 1, + STATE(6451), 1, sym_comment, - [211705] = 6, + [217448] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10256), 1, + ACTIONS(10373), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6308), 1, + STATE(6452), 1, sym_comment, - [211724] = 6, - ACTIONS(3), 1, + [217467] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5556), 1, - anon_sym_LPAREN2, - ACTIONS(7905), 1, - sym__entry_separator, - ACTIONS(7907), 1, - anon_sym_RBRACK, - STATE(6309), 1, + STATE(6453), 1, sym_comment, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - [211743] = 3, + ACTIONS(10357), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217480] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6310), 1, + STATE(6454), 1, sym_comment, - ACTIONS(10258), 4, + ACTIONS(10375), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [211756] = 5, + [217493] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6455), 1, + sym_comment, + ACTIONS(10329), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217506] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10260), 1, + ACTIONS(10377), 1, anon_sym_DQUOTE, - STATE(6311), 1, + STATE(6456), 1, sym_comment, - STATE(6315), 1, + STATE(6461), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [211773] = 3, + [217523] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6312), 1, + STATE(6457), 1, sym_comment, - ACTIONS(8181), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_AT, + ACTIONS(5681), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACE, - [211786] = 6, - ACTIONS(3), 1, + [217536] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(10097), 1, - anon_sym_LBRACK, - ACTIONS(10262), 1, - anon_sym_RBRACK, - STATE(3383), 1, - aux_sym__multiple_types_repeat1, - STATE(6313), 1, + STATE(6458), 1, sym_comment, - [211805] = 6, + ACTIONS(10329), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217549] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4956), 1, - anon_sym_DOLLAR, - ACTIONS(4958), 1, - sym_identifier, - ACTIONS(10264), 1, - anon_sym_EQ2, - ACTIONS(10266), 1, - sym_short_flag_identifier, - STATE(6314), 1, + STATE(6459), 1, + sym_comment, + ACTIONS(10357), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217562] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6460), 1, sym_comment, - [211824] = 5, + ACTIONS(10357), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217575] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10268), 1, + ACTIONS(10379), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6315), 1, + STATE(6461), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [211841] = 4, - ACTIONS(3), 1, + [217592] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6316), 1, + STATE(6462), 1, sym_comment, - ACTIONS(2248), 2, + ACTIONS(10381), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym__unquoted_in_record_token4, - ACTIONS(2250), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [211856] = 4, - ACTIONS(3), 1, + [217605] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6317), 1, + STATE(6463), 1, sym_comment, - ACTIONS(1010), 2, - anon_sym_RBRACK, + ACTIONS(10381), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(1012), 2, - anon_sym_DOT, - sym__entry_separator, - [211871] = 4, - ACTIONS(3), 1, + [217618] = 3, + ACTIONS(247), 1, anon_sym_POUND, - STATE(6318), 1, + STATE(6464), 1, sym_comment, - ACTIONS(1014), 2, - anon_sym_RBRACK, + ACTIONS(10383), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(1016), 2, - anon_sym_DOT, + [217631] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6465), 1, + sym_comment, + ACTIONS(10383), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217644] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2246), 1, + anon_sym_RBRACE, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + ACTIONS(2250), 1, sym__entry_separator, - [211886] = 6, + ACTIONS(2252), 1, + aux_sym__unquoted_in_record_token4, + STATE(6466), 1, + sym_comment, + [217663] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10270), 1, + ACTIONS(10385), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6319), 1, + STATE(6467), 1, sym_comment, - [211905] = 6, + [217682] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10272), 1, + ACTIONS(10387), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6320), 1, + STATE(6468), 1, sym_comment, - [211924] = 6, + [217701] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10274), 1, + ACTIONS(10389), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6321), 1, + STATE(6469), 1, sym_comment, - [211943] = 6, + [217720] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10276), 1, + ACTIONS(10391), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6322), 1, + STATE(6470), 1, sym_comment, - [211962] = 6, + [217739] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10278), 1, + ACTIONS(10393), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6323), 1, + STATE(6471), 1, sym_comment, - [211981] = 6, + [217758] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10280), 1, + ACTIONS(10395), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6324), 1, + STATE(6472), 1, sym_comment, - [212000] = 6, + [217777] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10282), 1, + ACTIONS(10397), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6325), 1, + STATE(6473), 1, sym_comment, - [212019] = 6, + [217796] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10284), 1, + ACTIONS(10399), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6326), 1, + STATE(6474), 1, sym_comment, - [212038] = 3, - ACTIONS(247), 1, + [217815] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6327), 1, - sym_comment, - ACTIONS(10286), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + ACTIONS(2252), 1, + aux_sym__unquoted_in_record_token4, + ACTIONS(2254), 1, anon_sym_RBRACE, - [212051] = 3, + ACTIONS(2256), 1, + sym__entry_separator, + STATE(6475), 1, + sym_comment, + [217834] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6328), 1, + STATE(6476), 1, sym_comment, - ACTIONS(10288), 4, + ACTIONS(10401), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [212064] = 5, + [217847] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6477), 1, + sym_comment, + ACTIONS(10383), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [217860] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10290), 1, + ACTIONS(10403), 1, anon_sym_DQUOTE, - STATE(6329), 1, + STATE(6478), 1, sym_comment, - STATE(6334), 1, + STATE(6480), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [212081] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10152), 1, - anon_sym_LBRACK, - ACTIONS(10154), 1, - anon_sym_LPAREN, - STATE(3157), 1, - sym_parameter_parens, - STATE(3158), 1, - sym_parameter_bracks, - STATE(6330), 1, - sym_comment, - [212100] = 3, + [217877] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6331), 1, + STATE(6479), 1, sym_comment, - ACTIONS(10292), 4, + ACTIONS(10383), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [212113] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8649), 1, - sym_identifier, - ACTIONS(8850), 1, - anon_sym_DOLLAR, - STATE(5480), 1, - sym_val_variable, - STATE(5833), 1, - sym__variable_name, - STATE(6332), 1, - sym_comment, - [212132] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1012), 1, - anon_sym_DOT, - STATE(6333), 1, - sym_comment, - ACTIONS(1010), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [212147] = 5, + [217890] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10294), 1, + ACTIONS(10405), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6334), 1, + STATE(6480), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [212164] = 4, + [217907] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_DOT, - STATE(6335), 1, - sym_comment, - ACTIONS(1014), 3, - anon_sym_RBRACK, + ACTIONS(1804), 1, + anon_sym_LPAREN2, + ACTIONS(1812), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2230), 1, + anon_sym_RBRACE, + ACTIONS(2232), 1, sym__entry_separator, - sym__table_head_separator, - [212179] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(6184), 1, - anon_sym_LBRACE, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4653), 1, - sym_block, - STATE(6336), 1, - sym_comment, - [212198] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(6184), 1, - anon_sym_LBRACE, - STATE(4655), 1, - sym_block, - STATE(6337), 1, + STATE(6481), 1, sym_comment, - STATE(6615), 1, - aux_sym_shebang_repeat1, - [212217] = 6, + [217926] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(1802), 1, + anon_sym_RBRACE, + ACTIONS(1804), 1, + anon_sym_LPAREN2, + ACTIONS(1810), 1, sym__entry_separator, - ACTIONS(10097), 1, - anon_sym_LBRACK, - ACTIONS(10296), 1, - anon_sym_RBRACK, - STATE(3383), 1, - aux_sym__multiple_types_repeat1, - STATE(6338), 1, + ACTIONS(1812), 1, + aux_sym__unquoted_in_record_token2, + STATE(6482), 1, sym_comment, - [212236] = 6, + [217945] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10298), 1, + ACTIONS(10407), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6339), 1, + STATE(6483), 1, sym_comment, - [212255] = 6, + [217964] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10300), 1, + ACTIONS(10409), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6340), 1, + STATE(6484), 1, sym_comment, - [212274] = 6, + [217983] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10302), 1, + ACTIONS(10411), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6341), 1, + STATE(6485), 1, sym_comment, - [212293] = 6, + [218002] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10304), 1, + ACTIONS(10413), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6342), 1, + STATE(6486), 1, sym_comment, - [212312] = 6, + [218021] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10306), 1, + ACTIONS(10415), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6343), 1, + STATE(6487), 1, sym_comment, - [212331] = 6, + [218040] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10308), 1, + ACTIONS(10417), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6344), 1, + STATE(6488), 1, sym_comment, - [212350] = 6, + [218059] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10310), 1, + ACTIONS(10419), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6345), 1, - sym_comment, - [212369] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10312), 1, - anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6346), 1, + STATE(6489), 1, sym_comment, - ACTIONS(10103), 2, - sym__escaped_str_content, - sym_escape_sequence, - [212386] = 6, + [218078] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10314), 1, + ACTIONS(10421), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6347), 1, + STATE(6490), 1, sym_comment, - [212405] = 3, + [218097] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6348), 1, + STATE(6491), 1, sym_comment, - ACTIONS(10316), 4, + ACTIONS(10423), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [212418] = 5, + [218110] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10318), 1, + ACTIONS(10425), 1, anon_sym_DQUOTE, - STATE(6349), 1, + STATE(6492), 1, sym_comment, - STATE(6351), 1, + STATE(6493), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [212435] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6350), 1, - sym_comment, - ACTIONS(5693), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [212448] = 5, + [218127] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10320), 1, + ACTIONS(10427), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6351), 1, + STATE(6493), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [212465] = 6, + [218144] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6494), 1, + sym_comment, + ACTIONS(10429), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218157] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(10097), 1, - anon_sym_LBRACK, - ACTIONS(10322), 1, + STATE(6495), 1, + sym_comment, + ACTIONS(1785), 2, anon_sym_RBRACK, - STATE(3383), 1, - aux_sym__multiple_types_repeat1, - STATE(6352), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1787), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [218172] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10431), 1, + anon_sym_LBRACE, + STATE(5011), 1, + sym__blosure, + STATE(5168), 1, + sym_block, + STATE(5175), 1, + sym_val_closure, + STATE(6496), 1, sym_comment, - [212484] = 5, + [218191] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10324), 1, - anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6353), 1, + ACTIONS(5539), 1, + anon_sym_LPAREN2, + ACTIONS(7995), 1, + sym__entry_separator, + ACTIONS(7997), 1, + anon_sym_RBRACK, + STATE(6497), 1, sym_comment, - ACTIONS(10103), 2, - sym__escaped_str_content, - sym_escape_sequence, - [212501] = 6, + STATE(8050), 1, + sym__expr_parenthesized_immediate, + [218210] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10326), 1, + ACTIONS(10433), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6354), 1, + STATE(6498), 1, sym_comment, - [212520] = 6, + [218229] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10328), 1, + ACTIONS(10435), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6355), 1, + STATE(6499), 1, sym_comment, - [212539] = 6, + [218248] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10330), 1, + ACTIONS(10437), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6356), 1, + STATE(6500), 1, sym_comment, - [212558] = 6, + [218267] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10332), 1, + ACTIONS(10439), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6357), 1, + STATE(6501), 1, sym_comment, - [212577] = 6, + [218286] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10334), 1, + ACTIONS(10441), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6358), 1, + STATE(6502), 1, sym_comment, - [212596] = 6, + [218305] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10336), 1, + ACTIONS(10443), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6359), 1, + STATE(6503), 1, sym_comment, - [212615] = 6, + [218324] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10338), 1, + ACTIONS(10445), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6360), 1, + STATE(6504), 1, sym_comment, - [212634] = 6, + [218343] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10340), 1, + ACTIONS(10447), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6361), 1, + STATE(6505), 1, sym_comment, - [212653] = 3, + [218362] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6362), 1, + STATE(6506), 1, sym_comment, - ACTIONS(10342), 4, + ACTIONS(10449), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [212666] = 5, + [218375] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6507), 1, + sym_comment, + ACTIONS(10451), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218388] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10344), 1, + ACTIONS(10453), 1, anon_sym_DQUOTE, - STATE(6363), 1, + STATE(6508), 1, sym_comment, - STATE(6367), 1, + STATE(6509), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [212683] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2212), 1, - aux_sym_unquoted_token4, - STATE(6364), 1, - sym_comment, - ACTIONS(2206), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [212698] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10152), 1, - anon_sym_LBRACK, - ACTIONS(10154), 1, - anon_sym_LPAREN, - STATE(5941), 1, - sym_parameter_parens, - STATE(5977), 1, - sym_parameter_bracks, - STATE(6365), 1, - sym_comment, - [212717] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5556), 1, - anon_sym_LPAREN2, - ACTIONS(5928), 1, - anon_sym_RBRACK, - ACTIONS(5934), 1, - sym__entry_separator, - STATE(6366), 1, - sym_comment, - STATE(7436), 1, - sym__expr_parenthesized_immediate, - [212736] = 5, + [218405] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10346), 1, + ACTIONS(10455), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6367), 1, + STATE(6509), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [212753] = 3, + [218422] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6368), 1, + STATE(6510), 1, sym_comment, - ACTIONS(10348), 4, + ACTIONS(10457), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [212766] = 3, + [218435] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6369), 1, + STATE(6511), 1, + sym_comment, + ACTIONS(10459), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218448] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6512), 1, sym_comment, - ACTIONS(10350), 4, + ACTIONS(10461), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [212779] = 6, + [218461] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(1661), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2258), 1, + anon_sym_RBRACE, + ACTIONS(2260), 1, + anon_sym_LPAREN2, + ACTIONS(2262), 1, + sym__entry_separator, + STATE(6513), 1, + sym_comment, + [218480] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10352), 1, + ACTIONS(10463), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6370), 1, + STATE(6514), 1, sym_comment, - [212798] = 6, + [218499] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10354), 1, + ACTIONS(10465), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6371), 1, + STATE(6515), 1, sym_comment, - [212817] = 6, + [218518] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10356), 1, + ACTIONS(10467), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6372), 1, + STATE(6516), 1, sym_comment, - [212836] = 6, + [218537] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10358), 1, + ACTIONS(10469), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6373), 1, + STATE(6517), 1, sym_comment, - [212855] = 6, + [218556] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10360), 1, + ACTIONS(10471), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6374), 1, + STATE(6518), 1, sym_comment, - [212874] = 6, + [218575] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10362), 1, + ACTIONS(10473), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6375), 1, + STATE(6519), 1, sym_comment, - [212893] = 6, + [218594] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10364), 1, + ACTIONS(10475), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6376), 1, + STATE(6520), 1, sym_comment, - [212912] = 6, + [218613] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10366), 1, + ACTIONS(10477), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6377), 1, + STATE(6521), 1, sym_comment, - [212931] = 3, + [218632] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6378), 1, + STATE(6522), 1, sym_comment, - ACTIONS(10368), 4, + ACTIONS(10479), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [212944] = 3, + [218645] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6379), 1, + STATE(6523), 1, sym_comment, - ACTIONS(10370), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [212957] = 5, - ACTIONS(3), 1, + ACTIONS(10481), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218658] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - ACTIONS(5943), 1, - anon_sym_PIPE, - STATE(6380), 1, + STATE(6524), 1, sym_comment, - ACTIONS(5938), 2, - anon_sym_if, - anon_sym_EQ_GT, - [212974] = 5, - ACTIONS(3), 1, + ACTIONS(10483), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218671] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10372), 1, - anon_sym_DQUOTE, - STATE(6381), 1, + STATE(6525), 1, sym_comment, - STATE(6383), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, - sym__escaped_str_content, - sym_escape_sequence, - [212991] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4936), 1, - sym__space, - ACTIONS(4938), 1, + ACTIONS(10485), 4, sym__newline, - ACTIONS(10374), 1, - sym_long_flag_identifier, - ACTIONS(10376), 1, - anon_sym_EQ2, - STATE(6382), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218684] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6526), 1, sym_comment, - [213010] = 5, + ACTIONS(10487), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [218697] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10378), 1, + ACTIONS(10489), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6383), 1, + STATE(6527), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6528), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [213027] = 5, + [218714] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10380), 1, + ACTIONS(10491), 1, anon_sym_DQUOTE, - STATE(6353), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6384), 1, + STATE(6528), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [213044] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1866), 1, - anon_sym_RBRACK, - ACTIONS(1868), 1, - anon_sym_LPAREN2, - ACTIONS(1874), 1, - sym__entry_separator, - STATE(6385), 1, - sym_comment, - [213063] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6386), 1, - sym_comment, - ACTIONS(5685), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [213076] = 6, + [218731] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10382), 1, + ACTIONS(10493), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6387), 1, + STATE(6529), 1, sym_comment, - [213095] = 6, + [218750] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10384), 1, + ACTIONS(10495), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6388), 1, + STATE(6530), 1, sym_comment, - [213114] = 6, + [218769] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10386), 1, + ACTIONS(10497), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6389), 1, + STATE(6531), 1, sym_comment, - [213133] = 6, + [218788] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10388), 1, + ACTIONS(10499), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6390), 1, + STATE(6532), 1, sym_comment, - [213152] = 6, + [218807] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10390), 1, + ACTIONS(10501), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6391), 1, + STATE(6533), 1, sym_comment, - [213171] = 6, + [218826] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10392), 1, + ACTIONS(10503), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6392), 1, + STATE(6534), 1, sym_comment, - [213190] = 6, + [218845] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10394), 1, + ACTIONS(10505), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6393), 1, + STATE(6535), 1, sym_comment, - [213209] = 6, + [218864] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10396), 1, + ACTIONS(10507), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6394), 1, - sym_comment, - [213228] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6395), 1, + STATE(6536), 1, sym_comment, - ACTIONS(10398), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [213241] = 3, + [218883] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6396), 1, + STATE(6537), 1, sym_comment, - ACTIONS(10400), 4, + ACTIONS(10509), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [213254] = 5, + [218896] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6538), 1, + sym_comment, + ACTIONS(10511), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218909] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10402), 1, + ACTIONS(10513), 1, anon_sym_DQUOTE, - STATE(6397), 1, + STATE(6539), 1, sym_comment, - STATE(6400), 1, + STATE(6541), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [213271] = 4, + [218926] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2220), 1, + ACTIONS(2228), 1, aux_sym_unquoted_token4, - STATE(6398), 1, - sym_comment, - ACTIONS(2214), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [213286] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10404), 1, - anon_sym_LPAREN, - STATE(6399), 1, + ACTIONS(5933), 1, + anon_sym_PIPE, + STATE(6540), 1, sym_comment, - ACTIONS(10406), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [213301] = 5, + ACTIONS(5928), 2, + anon_sym_if, + anon_sym_EQ_GT, + [218943] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10408), 1, + ACTIONS(10515), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6400), 1, + STATE(6541), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [213318] = 6, + [218960] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4956), 1, - sym__space, - ACTIONS(4958), 1, + STATE(6542), 1, + sym_comment, + ACTIONS(1841), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1843), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [218975] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6543), 1, + sym_comment, + ACTIONS(10511), 4, sym__newline, - ACTIONS(10410), 1, - anon_sym_EQ2, - ACTIONS(10412), 1, - sym_short_flag_identifier, - STATE(6401), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218988] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6544), 1, sym_comment, - [213337] = 4, + ACTIONS(10511), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219001] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - STATE(6402), 1, + ACTIONS(2272), 1, + anon_sym_RBRACK, + ACTIONS(2274), 1, + anon_sym_LPAREN2, + ACTIONS(2276), 1, + sym__entry_separator, + ACTIONS(2278), 1, + aux_sym__unquoted_in_list_token2, + STATE(6545), 1, sym_comment, - ACTIONS(2222), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [213352] = 6, + [219020] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6546), 1, + sym_comment, + ACTIONS(10511), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219033] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10414), 1, + ACTIONS(10517), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6403), 1, + STATE(6547), 1, sym_comment, - [213371] = 6, + [219052] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10416), 1, + ACTIONS(10519), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6404), 1, + STATE(6548), 1, sym_comment, - [213390] = 6, + [219071] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10418), 1, + ACTIONS(10521), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6405), 1, + STATE(6549), 1, sym_comment, - [213409] = 6, + [219090] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10420), 1, + ACTIONS(10523), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6406), 1, + STATE(6550), 1, sym_comment, - [213428] = 6, + [219109] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10422), 1, + ACTIONS(10525), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6407), 1, + STATE(6551), 1, sym_comment, - [213447] = 6, + [219128] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10424), 1, + ACTIONS(10527), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6408), 1, + STATE(6552), 1, sym_comment, - [213466] = 6, + [219147] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10426), 1, + ACTIONS(10529), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6409), 1, + STATE(6553), 1, sym_comment, - [213485] = 6, + [219166] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10428), 1, + ACTIONS(10531), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6410), 1, + STATE(6554), 1, sym_comment, - [213504] = 3, + [219185] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6411), 1, + STATE(6555), 1, + sym_comment, + ACTIONS(10511), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219198] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6556), 1, + sym_comment, + ACTIONS(10511), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219211] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6557), 1, sym_comment, - ACTIONS(10430), 4, + ACTIONS(10533), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [213517] = 5, + [219224] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6558), 1, + sym_comment, + ACTIONS(10511), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219237] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10432), 1, + ACTIONS(10535), 1, anon_sym_DQUOTE, - STATE(6412), 1, + STATE(6559), 1, sym_comment, - STATE(6415), 1, + STATE(6560), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [213534] = 6, + [219254] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2214), 1, - anon_sym_RBRACK, - ACTIONS(2216), 1, - anon_sym_LPAREN2, - ACTIONS(2218), 1, - sym__entry_separator, - ACTIONS(2220), 1, - aux_sym__unquoted_in_list_token4, - STATE(6413), 1, + ACTIONS(10537), 1, + anon_sym_DQUOTE, + STATE(6560), 1, sym_comment, - [213553] = 4, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, + sym__escaped_str_content, + sym_escape_sequence, + [219271] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1463), 1, - anon_sym_RPAREN, - ACTIONS(10434), 2, + STATE(6561), 1, + sym_comment, + ACTIONS(10511), 4, sym__newline, anon_sym_SEMI, - STATE(6414), 2, - sym_comment, - aux_sym__block_body_repeat1, - [213568] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219284] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10437), 1, - anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6415), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(10177), 1, + anon_sym_LBRACK, + ACTIONS(10539), 1, + anon_sym_RBRACK, + STATE(3396), 1, + aux_sym__multiple_types_repeat1, + STATE(6562), 1, sym_comment, - ACTIONS(10103), 2, - sym__escaped_str_content, - sym_escape_sequence, - [213585] = 4, - ACTIONS(3), 1, + [219303] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10439), 1, - anon_sym_LPAREN, - STATE(6416), 1, + STATE(6563), 1, sym_comment, - ACTIONS(10441), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [213600] = 6, + ACTIONS(10541), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219316] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6564), 1, + sym_comment, + ACTIONS(10543), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [219329] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10443), 1, + ACTIONS(10545), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6417), 1, + STATE(6565), 1, sym_comment, - [213619] = 6, + [219348] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10445), 1, + ACTIONS(10547), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6418), 1, + STATE(6566), 1, sym_comment, - [213638] = 6, + [219367] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10447), 1, + ACTIONS(10549), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6419), 1, + STATE(6567), 1, sym_comment, - [213657] = 6, + [219386] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10449), 1, + ACTIONS(10551), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6420), 1, + STATE(6568), 1, sym_comment, - [213676] = 6, + [219405] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10451), 1, + ACTIONS(10553), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6421), 1, + STATE(6569), 1, sym_comment, - [213695] = 6, + [219424] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10453), 1, + ACTIONS(10555), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6422), 1, - sym_comment, - [213714] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(6184), 1, - anon_sym_LBRACE, - STATE(4780), 1, - sym_block, - STATE(6423), 1, + STATE(6570), 1, sym_comment, - STATE(6746), 1, - aux_sym_shebang_repeat1, - [213733] = 6, + [219443] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10455), 1, + ACTIONS(10557), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6424), 1, + STATE(6571), 1, sym_comment, - [213752] = 6, + [219462] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9684), 1, - anon_sym_LBRACE, - STATE(4805), 1, - sym__blosure, - STATE(4956), 1, - sym_block, - STATE(4962), 1, - sym_val_closure, - STATE(6425), 1, + STATE(6572), 1, sym_comment, - [213771] = 3, + ACTIONS(10541), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219475] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6426), 1, + STATE(6573), 1, sym_comment, - ACTIONS(10457), 4, + ACTIONS(10541), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219488] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6574), 1, + sym_comment, + ACTIONS(10559), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [213784] = 5, + [219501] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6575), 1, + sym_comment, + ACTIONS(10541), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219514] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10459), 1, + ACTIONS(10561), 1, anon_sym_DQUOTE, - STATE(6427), 1, + STATE(6576), 1, sym_comment, - STATE(6429), 1, + STATE(6577), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [213801] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2216), 1, - anon_sym_LPAREN2, - ACTIONS(2220), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(2222), 1, - anon_sym_RBRACK, - ACTIONS(2224), 1, - sym__entry_separator, - STATE(6428), 1, - sym_comment, - [213820] = 5, + [219531] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10461), 1, + ACTIONS(10563), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6429), 1, + STATE(6577), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [213837] = 6, + [219548] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(2272), 1, + anon_sym_RBRACE, + ACTIONS(2274), 1, + anon_sym_LPAREN2, + ACTIONS(2276), 1, + sym__entry_separator, + ACTIONS(2278), 1, + aux_sym__unquoted_in_record_token2, + STATE(6578), 1, + sym_comment, + [219567] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10463), 1, + ACTIONS(10565), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6430), 1, + STATE(6579), 1, sym_comment, - [213856] = 6, + [219586] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10465), 1, + ACTIONS(10567), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6431), 1, + STATE(6580), 1, sym_comment, - [213875] = 6, + [219605] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10467), 1, + ACTIONS(10569), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6432), 1, + STATE(6581), 1, sym_comment, - [213894] = 6, + [219624] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10469), 1, + ACTIONS(10571), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6433), 1, + STATE(6582), 1, sym_comment, - [213913] = 6, + [219643] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10471), 1, + ACTIONS(10573), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6434), 1, + STATE(6583), 1, sym_comment, - [213932] = 6, + [219662] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10473), 1, + ACTIONS(10575), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6435), 1, + STATE(6584), 1, sym_comment, - [213951] = 6, + [219681] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10475), 1, + ACTIONS(10577), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6436), 1, + STATE(6585), 1, sym_comment, - [213970] = 6, + [219700] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10477), 1, + ACTIONS(10579), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6437), 1, + STATE(6586), 1, sym_comment, - [213989] = 6, + [219719] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10479), 1, + ACTIONS(10581), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6438), 1, + STATE(6587), 1, sym_comment, - [214008] = 3, + [219738] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6439), 1, + STATE(6588), 1, sym_comment, - ACTIONS(10481), 4, + ACTIONS(10541), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219751] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6589), 1, + sym_comment, + ACTIONS(10541), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219764] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6590), 1, + sym_comment, + ACTIONS(10583), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [214021] = 5, + [219777] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2244), 1, + aux_sym_unquoted_token4, + STATE(6591), 1, + sym_comment, + ACTIONS(2238), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [219792] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10483), 1, + ACTIONS(10585), 1, anon_sym_DQUOTE, - STATE(6440), 1, + STATE(6592), 1, sym_comment, - STATE(6442), 1, + STATE(6593), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [214038] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1755), 1, - aux_sym_unquoted_token2, - STATE(6441), 1, - sym_comment, - ACTIONS(1757), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [214053] = 5, + [219809] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10485), 1, + ACTIONS(10587), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6442), 1, + STATE(6593), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [214070] = 3, + [219826] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(10177), 1, + anon_sym_LBRACK, + ACTIONS(10589), 1, + anon_sym_RBRACK, + STATE(3396), 1, + aux_sym__multiple_types_repeat1, + STATE(6594), 1, + sym_comment, + [219845] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6443), 1, + STATE(6595), 1, sym_comment, - ACTIONS(10350), 4, + ACTIONS(10591), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [214083] = 6, + [219858] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10487), 1, + ACTIONS(10593), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6444), 1, + STATE(6596), 1, sym_comment, - [214102] = 6, + [219877] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10489), 1, + ACTIONS(10595), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6445), 1, + STATE(6597), 1, sym_comment, - [214121] = 6, + [219896] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10491), 1, + ACTIONS(10597), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6446), 1, + STATE(6598), 1, sym_comment, - [214140] = 6, + [219915] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10493), 1, + ACTIONS(10599), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6447), 1, + STATE(6599), 1, sym_comment, - [214159] = 6, + [219934] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10495), 1, + ACTIONS(10601), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6448), 1, + STATE(6600), 1, sym_comment, - [214178] = 6, + [219953] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10497), 1, + ACTIONS(10603), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6449), 1, + STATE(6601), 1, sym_comment, - [214197] = 6, + [219972] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10499), 1, + ACTIONS(10605), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6450), 1, + STATE(6602), 1, sym_comment, - [214216] = 6, + [219991] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10501), 1, + ACTIONS(10607), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6451), 1, - sym_comment, - [214235] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(6452), 1, + STATE(6603), 1, sym_comment, - ACTIONS(1030), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [214250] = 3, + [220010] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6453), 1, + STATE(6604), 1, sym_comment, - ACTIONS(10503), 4, + ACTIONS(10609), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [214263] = 3, + [220023] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6454), 1, + STATE(6605), 1, sym_comment, - ACTIONS(10505), 4, + ACTIONS(10611), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [214276] = 5, + [220036] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10507), 1, + ACTIONS(10613), 1, anon_sym_DQUOTE, - STATE(6455), 1, + STATE(6606), 1, sym_comment, - STATE(6456), 1, + STATE(6608), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [214293] = 5, + [220053] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6607), 1, + sym_comment, + ACTIONS(10609), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220066] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10509), 1, + ACTIONS(10615), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6456), 1, + STATE(6608), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [214310] = 3, + [220083] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6457), 1, + STATE(6609), 1, sym_comment, - ACTIONS(10503), 4, + ACTIONS(10617), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [214323] = 6, + [220096] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10511), 1, + ACTIONS(10619), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6458), 1, + STATE(6610), 1, sym_comment, - [214342] = 6, + [220115] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10513), 1, + ACTIONS(10621), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6459), 1, + STATE(6611), 1, sym_comment, - [214361] = 6, + [220134] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10515), 1, + ACTIONS(10623), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6460), 1, + STATE(6612), 1, sym_comment, - [214380] = 6, + [220153] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10517), 1, + ACTIONS(10625), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6461), 1, + STATE(6613), 1, sym_comment, - [214399] = 6, + [220172] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10519), 1, + ACTIONS(10627), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6462), 1, + STATE(6614), 1, sym_comment, - [214418] = 6, + [220191] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10521), 1, + ACTIONS(10629), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6463), 1, + STATE(6615), 1, sym_comment, - [214437] = 6, + [220210] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10523), 1, + ACTIONS(10631), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6464), 1, + STATE(6616), 1, sym_comment, - [214456] = 6, + [220229] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10525), 1, + ACTIONS(10633), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6465), 1, + STATE(6617), 1, sym_comment, - [214475] = 5, - ACTIONS(247), 1, + [220248] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1457), 1, - ts_builtin_sym_end, - STATE(227), 1, - aux_sym__block_body_repeat1, - STATE(6466), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(10177), 1, + anon_sym_LBRACK, + ACTIONS(10635), 1, + anon_sym_RBRACK, + STATE(3396), 1, + aux_sym__multiple_types_repeat1, + STATE(6618), 1, sym_comment, - ACTIONS(25), 2, - sym__newline, - anon_sym_SEMI, - [214492] = 3, + [220267] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6467), 1, + STATE(6619), 1, sym_comment, - ACTIONS(10527), 4, + ACTIONS(10637), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [214505] = 5, + [220280] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10529), 1, + ACTIONS(10639), 1, anon_sym_DQUOTE, - STATE(6468), 1, + STATE(6620), 1, sym_comment, - STATE(6470), 1, + STATE(6621), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [214522] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6469), 1, - sym_comment, - ACTIONS(10531), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214535] = 5, + [220297] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10533), 1, + ACTIONS(10641), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6470), 1, + STATE(6621), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [214552] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6471), 1, - sym_comment, - ACTIONS(10535), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214565] = 6, + [220314] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10537), 1, + ACTIONS(10643), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6472), 1, + STATE(6622), 1, sym_comment, - [214584] = 6, + [220333] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10539), 1, + ACTIONS(10645), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6473), 1, + STATE(6623), 1, sym_comment, - [214603] = 6, + [220352] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10541), 1, + ACTIONS(10647), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6474), 1, + STATE(6624), 1, sym_comment, - [214622] = 6, + [220371] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10543), 1, + ACTIONS(10649), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6475), 1, + STATE(6625), 1, sym_comment, - [214641] = 6, + [220390] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10545), 1, + ACTIONS(10651), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6476), 1, + STATE(6626), 1, sym_comment, - [214660] = 6, + [220409] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10547), 1, + ACTIONS(10653), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6477), 1, + STATE(6627), 1, sym_comment, - [214679] = 6, + [220428] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10549), 1, + ACTIONS(10655), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6478), 1, + STATE(6628), 1, sym_comment, - [214698] = 6, + [220447] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10551), 1, + ACTIONS(10657), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6479), 1, - sym_comment, - [214717] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6480), 1, + STATE(6629), 1, sym_comment, - ACTIONS(10553), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214730] = 3, + [220466] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6481), 1, + STATE(6630), 1, sym_comment, - ACTIONS(10555), 4, + ACTIONS(10659), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [214743] = 5, + [220479] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10557), 1, + ACTIONS(10661), 1, anon_sym_DQUOTE, - STATE(6482), 1, + STATE(6631), 1, sym_comment, - STATE(6483), 1, + STATE(6632), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [214760] = 5, + [220496] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10559), 1, + ACTIONS(10663), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6483), 1, + STATE(6632), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [214777] = 6, + [220513] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10561), 1, + ACTIONS(10665), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6484), 1, + STATE(6633), 1, sym_comment, - [214796] = 6, + [220532] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10563), 1, + ACTIONS(10667), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6485), 1, + STATE(6634), 1, sym_comment, - [214815] = 6, + [220551] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10565), 1, + ACTIONS(10669), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6486), 1, + STATE(6635), 1, sym_comment, - [214834] = 6, + [220570] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10567), 1, + ACTIONS(10671), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6487), 1, + STATE(6636), 1, sym_comment, - [214853] = 6, + [220589] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10569), 1, + ACTIONS(10673), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6488), 1, + STATE(6637), 1, sym_comment, - [214872] = 6, + [220608] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10571), 1, + ACTIONS(10675), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6489), 1, + STATE(6638), 1, sym_comment, - [214891] = 6, + [220627] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10573), 1, + ACTIONS(10677), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6490), 1, + STATE(6639), 1, sym_comment, - [214910] = 6, + [220646] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10575), 1, + ACTIONS(10679), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6491), 1, + STATE(6640), 1, sym_comment, - [214929] = 3, + [220665] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6492), 1, + STATE(6641), 1, sym_comment, - ACTIONS(10577), 4, + ACTIONS(10681), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [214942] = 5, + [220678] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10579), 1, + ACTIONS(10683), 1, anon_sym_DQUOTE, - STATE(6493), 1, + STATE(6642), 1, sym_comment, - STATE(6494), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, - sym__escaped_str_content, - sym_escape_sequence, - [214959] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10581), 1, - anon_sym_DQUOTE, - STATE(6243), 1, + STATE(6644), 1, aux_sym__str_double_quotes_repeat1, - STATE(6494), 1, - sym_comment, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [214976] = 3, + [220695] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6495), 1, + STATE(6643), 1, sym_comment, - ACTIONS(10553), 4, + ACTIONS(10541), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [214989] = 3, + [220708] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10685), 1, + anon_sym_DQUOTE, + STATE(6644), 1, + sym_comment, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, + sym__escaped_str_content, + sym_escape_sequence, + [220725] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6496), 1, + STATE(6645), 1, sym_comment, - ACTIONS(10583), 4, + ACTIONS(10687), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [215002] = 5, + [220738] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10585), 1, + ACTIONS(10689), 1, anon_sym_DQUOTE, - STATE(6497), 1, + STATE(6646), 1, sym_comment, - STATE(6498), 1, + STATE(6648), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215019] = 5, + [220755] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6647), 1, + sym_comment, + ACTIONS(10541), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220768] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10587), 1, + ACTIONS(10691), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6498), 1, + STATE(6648), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215036] = 3, + [220785] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6499), 1, + STATE(6649), 1, sym_comment, - ACTIONS(10589), 4, + ACTIONS(10693), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [215049] = 5, + [220798] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10591), 1, + ACTIONS(10695), 1, anon_sym_DQUOTE, - STATE(6500), 1, + STATE(6650), 1, sym_comment, - STATE(6501), 1, + STATE(6651), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215066] = 5, + [220815] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10593), 1, + ACTIONS(10697), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6501), 1, + STATE(6651), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215083] = 3, + [220832] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6502), 1, + STATE(6652), 1, sym_comment, - ACTIONS(10595), 4, + ACTIONS(10699), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [215096] = 5, + [220845] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10597), 1, + ACTIONS(10701), 1, anon_sym_DQUOTE, - STATE(6503), 1, + STATE(6653), 1, sym_comment, - STATE(6504), 1, + STATE(6654), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215113] = 5, + [220862] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10599), 1, + ACTIONS(10703), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6504), 1, + STATE(6654), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215130] = 5, + [220879] = 4, ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10601), 1, - anon_sym_RBRACK, - STATE(5221), 1, - aux_sym_parameter_repeat2, - STATE(6505), 1, + anon_sym_POUND, + ACTIONS(1559), 1, + aux_sym_unquoted_token2, + STATE(6655), 1, sym_comment, - ACTIONS(2548), 2, - sym__newline, - anon_sym_COMMA, - [215147] = 3, + ACTIONS(1828), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [220894] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6506), 1, + STATE(6656), 1, sym_comment, - ACTIONS(10603), 4, + ACTIONS(10705), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [215160] = 5, + [220907] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10605), 1, + ACTIONS(10707), 1, anon_sym_DQUOTE, - STATE(6507), 1, + STATE(6657), 1, sym_comment, - STATE(6508), 1, + STATE(6658), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215177] = 5, + [220924] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10607), 1, + ACTIONS(10709), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6508), 1, + STATE(6658), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215194] = 3, + [220941] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6509), 1, + STATE(6659), 1, sym_comment, - ACTIONS(10609), 4, + ACTIONS(10711), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [215207] = 5, + [220954] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10611), 1, + ACTIONS(10713), 1, anon_sym_DQUOTE, - STATE(6510), 1, + STATE(6660), 1, sym_comment, - STATE(6511), 1, + STATE(6661), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215224] = 5, + [220971] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10613), 1, + ACTIONS(10715), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6511), 1, + STATE(6661), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215241] = 6, - ACTIONS(3), 1, + [220988] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2252), 1, - anon_sym_RBRACK, - ACTIONS(2254), 1, - anon_sym_LPAREN2, - ACTIONS(2256), 1, - sym__entry_separator, - ACTIONS(2258), 1, - aux_sym__unquoted_in_list_token2, - STATE(6512), 1, + STATE(6662), 1, sym_comment, - [215260] = 5, + ACTIONS(10717), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [221001] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10615), 1, + ACTIONS(10719), 1, anon_sym_DQUOTE, - STATE(6513), 1, + STATE(6663), 1, sym_comment, - STATE(6514), 1, + STATE(6664), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215277] = 5, + [221018] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10617), 1, + ACTIONS(10721), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6514), 1, + STATE(6664), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215294] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6515), 1, - sym_comment, - ACTIONS(10619), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215307] = 3, + [221035] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6516), 1, + STATE(6665), 1, sym_comment, - ACTIONS(10621), 4, + ACTIONS(10723), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [215320] = 5, + [221048] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10623), 1, + ACTIONS(10725), 1, anon_sym_DQUOTE, - STATE(6517), 1, + STATE(6666), 1, sym_comment, - STATE(6518), 1, + STATE(6667), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215337] = 5, + [221065] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10625), 1, + ACTIONS(10727), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6518), 1, + STATE(6667), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215354] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10629), 1, - anon_sym_RPAREN, - STATE(6414), 1, - aux_sym__block_body_repeat1, - STATE(6519), 1, - sym_comment, - ACTIONS(10627), 2, - sym__newline, - anon_sym_SEMI, - [215371] = 3, + [221082] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6520), 1, + STATE(6668), 1, sym_comment, - ACTIONS(10631), 4, + ACTIONS(10729), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [215384] = 5, + [221095] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10633), 1, + ACTIONS(10731), 1, anon_sym_DQUOTE, - STATE(6521), 1, + STATE(6669), 1, sym_comment, - STATE(6522), 1, + STATE(6670), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215401] = 5, + [221112] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10635), 1, + ACTIONS(10733), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6522), 1, + STATE(6670), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215418] = 3, + [221129] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6523), 1, + STATE(6671), 1, sym_comment, - ACTIONS(10637), 4, + ACTIONS(10735), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [215431] = 5, + [221142] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10639), 1, + ACTIONS(10737), 1, anon_sym_DQUOTE, - STATE(6524), 1, + STATE(6672), 1, sym_comment, - STATE(6525), 1, + STATE(6673), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215448] = 5, + [221159] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10641), 1, + ACTIONS(10739), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6525), 1, + STATE(6673), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215465] = 3, + [221176] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6526), 1, + STATE(6674), 1, sym_comment, - ACTIONS(10643), 4, + ACTIONS(10741), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [215478] = 5, + [221189] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10645), 1, + ACTIONS(10743), 1, anon_sym_DQUOTE, - STATE(6527), 1, + STATE(6675), 1, sym_comment, - STATE(6528), 1, + STATE(6676), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215495] = 5, + [221206] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10647), 1, + ACTIONS(10745), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6528), 1, + STATE(6676), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215512] = 3, + [221223] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6529), 1, + STATE(6677), 1, sym_comment, - ACTIONS(10649), 4, + ACTIONS(10747), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [215525] = 5, + [221236] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10651), 1, + ACTIONS(10749), 1, anon_sym_DQUOTE, - STATE(6530), 1, + STATE(6678), 1, sym_comment, - STATE(6531), 1, + STATE(6679), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215542] = 5, + [221253] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10653), 1, + ACTIONS(10751), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6531), 1, + STATE(6679), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215559] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1008), 1, - anon_sym_DOT, - STATE(6532), 1, - sym_comment, - ACTIONS(1006), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [215574] = 3, + [221270] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6533), 1, + STATE(6680), 1, sym_comment, - ACTIONS(10655), 4, + ACTIONS(10753), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [215587] = 5, + [221283] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10657), 1, + ACTIONS(10755), 1, anon_sym_DQUOTE, - STATE(6534), 1, + STATE(6681), 1, sym_comment, - STATE(6535), 1, + STATE(6682), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215604] = 5, + [221300] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10659), 1, + ACTIONS(10757), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6535), 1, + STATE(6682), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215621] = 3, + [221317] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6536), 1, + STATE(6683), 1, sym_comment, - ACTIONS(10661), 4, + ACTIONS(10759), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [215634] = 5, + [221330] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10663), 1, + ACTIONS(10761), 1, anon_sym_DQUOTE, - STATE(6537), 1, + STATE(6684), 1, sym_comment, - STATE(6538), 1, + STATE(6685), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215651] = 5, + [221347] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10665), 1, + ACTIONS(10763), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6538), 1, + STATE(6685), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215668] = 3, + [221364] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6539), 1, + STATE(6686), 1, sym_comment, - ACTIONS(10667), 4, + ACTIONS(10765), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [215681] = 5, + [221377] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10669), 1, + ACTIONS(10767), 1, anon_sym_DQUOTE, - STATE(6540), 1, + STATE(6687), 1, sym_comment, - STATE(6541), 1, + STATE(6688), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215698] = 5, + [221394] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10671), 1, + ACTIONS(10769), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6541), 1, + STATE(6688), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215715] = 3, + [221411] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6542), 1, + STATE(6689), 1, sym_comment, - ACTIONS(10673), 4, + ACTIONS(10771), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [215728] = 5, + [221424] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10675), 1, + ACTIONS(10773), 1, anon_sym_DQUOTE, - STATE(6543), 1, + STATE(6690), 1, sym_comment, - STATE(6544), 1, + STATE(6691), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215745] = 5, + [221441] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10677), 1, + ACTIONS(10775), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6544), 1, + STATE(6691), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215762] = 3, + [221458] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5539), 1, + anon_sym_LPAREN2, + ACTIONS(8047), 1, + sym__entry_separator, + ACTIONS(8049), 1, + anon_sym_RBRACK, + STATE(6692), 1, + sym_comment, + STATE(8050), 1, + sym__expr_parenthesized_immediate, + [221477] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6545), 1, + STATE(6693), 1, sym_comment, - ACTIONS(10679), 4, + ACTIONS(10777), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [215775] = 5, + [221490] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10681), 1, + ACTIONS(10779), 1, anon_sym_DQUOTE, - STATE(6546), 1, + STATE(6694), 1, sym_comment, - STATE(6547), 1, + STATE(6695), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215792] = 5, + [221507] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10683), 1, + ACTIONS(10781), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6547), 1, + STATE(6695), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215809] = 3, + [221524] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6548), 1, + STATE(6696), 1, + sym_comment, + ACTIONS(5693), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [221537] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6697), 1, sym_comment, - ACTIONS(10685), 4, + ACTIONS(10783), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [215822] = 5, + [221550] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10687), 1, + ACTIONS(10785), 1, anon_sym_DQUOTE, - STATE(6549), 1, + STATE(6698), 1, sym_comment, - STATE(6550), 1, + STATE(6699), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215839] = 5, + [221567] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10689), 1, + ACTIONS(10787), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6550), 1, + STATE(6699), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215856] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6551), 1, - sym_comment, - ACTIONS(1755), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1757), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [215871] = 3, + [221584] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6552), 1, + STATE(6700), 1, sym_comment, - ACTIONS(10691), 4, + ACTIONS(10789), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [215884] = 5, + [221597] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10693), 1, + ACTIONS(10791), 1, anon_sym_DQUOTE, - STATE(6553), 1, + STATE(6701), 1, sym_comment, - STATE(6554), 1, + STATE(6702), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215901] = 5, + [221614] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10695), 1, + ACTIONS(10793), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6554), 1, + STATE(6702), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215918] = 3, + [221631] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6555), 1, + STATE(6703), 1, sym_comment, - ACTIONS(10697), 4, + ACTIONS(10795), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [215931] = 5, + [221644] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10699), 1, + ACTIONS(10797), 1, anon_sym_DQUOTE, - STATE(6556), 1, + STATE(6704), 1, sym_comment, - STATE(6557), 1, + STATE(6705), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215948] = 5, + [221661] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10701), 1, + ACTIONS(10799), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6557), 1, + STATE(6705), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [215965] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6558), 1, - sym_comment, - ACTIONS(10619), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215978] = 3, + [221678] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6559), 1, + STATE(6706), 1, sym_comment, - ACTIONS(10703), 4, + ACTIONS(10801), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [215991] = 5, + [221691] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10705), 1, + ACTIONS(10803), 1, anon_sym_DQUOTE, - STATE(6560), 1, + STATE(6707), 1, sym_comment, - STATE(6561), 1, + STATE(6708), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [216008] = 5, + [221708] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10707), 1, + ACTIONS(10805), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6561), 1, + STATE(6708), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [216025] = 3, + [221725] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6562), 1, + STATE(6709), 1, + sym_comment, + ACTIONS(10807), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221738] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6710), 1, sym_comment, - ACTIONS(10709), 4, + ACTIONS(10809), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [216038] = 5, + [221751] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10711), 1, + ACTIONS(10811), 1, anon_sym_DQUOTE, - STATE(6563), 1, + STATE(6711), 1, sym_comment, - STATE(6564), 1, + STATE(6712), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [216055] = 5, + [221768] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10713), 1, + ACTIONS(10813), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6564), 1, + STATE(6712), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [216072] = 6, + [221785] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10152), 1, - anon_sym_LBRACK, - ACTIONS(10154), 1, - anon_sym_LPAREN, - STATE(3156), 1, - sym_parameter_bracks, - STATE(3167), 1, - sym_parameter_parens, - STATE(6565), 1, - sym_comment, - [216091] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6566), 1, + STATE(6713), 1, sym_comment, - ACTIONS(10715), 4, + ACTIONS(10815), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [216104] = 5, + [221798] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10717), 1, + ACTIONS(10817), 1, anon_sym_DQUOTE, - STATE(6567), 1, + STATE(6714), 1, sym_comment, - STATE(6568), 1, + STATE(6715), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [216121] = 5, + [221815] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10719), 1, + ACTIONS(10819), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6568), 1, + STATE(6715), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [216138] = 3, + [221832] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6569), 1, + STATE(6716), 1, sym_comment, - ACTIONS(10721), 4, + ACTIONS(10821), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [216151] = 5, + [221845] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10723), 1, + ACTIONS(10823), 1, anon_sym_DQUOTE, - STATE(6570), 1, + STATE(6717), 1, sym_comment, - STATE(6571), 1, + STATE(6718), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [216168] = 5, + [221862] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10725), 1, + ACTIONS(10825), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6571), 1, + STATE(6718), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [216185] = 3, + [221879] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6572), 1, + STATE(6719), 1, sym_comment, - ACTIONS(10727), 4, + ACTIONS(10827), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [216198] = 5, + [221892] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10729), 1, + ACTIONS(10829), 1, anon_sym_DQUOTE, - STATE(6573), 1, + STATE(6720), 1, sym_comment, - STATE(6574), 1, + STATE(6721), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [216215] = 5, + [221909] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10731), 1, + ACTIONS(10831), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6574), 1, + STATE(6721), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [216232] = 3, + [221926] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6575), 1, + STATE(6722), 1, sym_comment, - ACTIONS(10733), 4, + ACTIONS(10833), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [216245] = 5, + [221939] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10735), 1, + ACTIONS(10835), 1, anon_sym_DQUOTE, - STATE(6576), 1, + STATE(6723), 1, sym_comment, - STATE(6577), 1, + STATE(6724), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [216262] = 5, + [221956] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10737), 1, + ACTIONS(10837), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6577), 1, + STATE(6724), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [216279] = 3, + [221973] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6578), 1, + STATE(6725), 1, sym_comment, - ACTIONS(10739), 4, + ACTIONS(10839), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [216292] = 5, + [221986] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10741), 1, + ACTIONS(10841), 1, anon_sym_DQUOTE, - STATE(6579), 1, + STATE(6726), 1, sym_comment, - STATE(6580), 1, + STATE(6727), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [216309] = 5, + [222003] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10743), 1, + ACTIONS(10843), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6580), 1, + STATE(6727), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [216326] = 3, + [222020] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6581), 1, + STATE(6728), 1, sym_comment, - ACTIONS(10745), 4, + ACTIONS(10845), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [216339] = 5, + [222033] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10747), 1, + ACTIONS(10847), 1, anon_sym_DQUOTE, - STATE(6582), 1, + STATE(6729), 1, sym_comment, - STATE(6583), 1, + STATE(6730), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [216356] = 5, + [222050] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10749), 1, + ACTIONS(10849), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6583), 1, + STATE(6730), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [216373] = 5, + [222067] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10751), 1, + ACTIONS(10851), 1, anon_sym_DQUOTE, - STATE(6584), 1, + STATE(6731), 1, sym_comment, - STATE(6585), 1, + STATE(6732), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [216390] = 5, + [222084] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10753), 1, + ACTIONS(10853), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6585), 1, + STATE(6732), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [216407] = 5, + [222101] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10755), 1, + ACTIONS(10855), 1, anon_sym_DQUOTE, - STATE(6586), 1, + STATE(6733), 1, sym_comment, - STATE(6587), 1, + STATE(6734), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [216424] = 5, + [222118] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10757), 1, + ACTIONS(10857), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6587), 1, + STATE(6734), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [216441] = 5, + [222135] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10759), 1, + ACTIONS(10859), 1, anon_sym_DQUOTE, - STATE(6588), 1, + STATE(6735), 1, sym_comment, - STATE(6589), 1, + STATE(6736), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10103), 2, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [216458] = 5, + [222152] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10761), 1, + ACTIONS(10861), 1, anon_sym_DQUOTE, - STATE(6243), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6589), 1, + STATE(6736), 1, sym_comment, - ACTIONS(10103), 2, + STATE(6814), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10125), 2, sym__escaped_str_content, sym_escape_sequence, - [216475] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6590), 1, - sym_comment, - ACTIONS(10763), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [216488] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6591), 1, - sym_comment, - ACTIONS(10765), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [216501] = 3, + [222169] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6592), 1, + STATE(6737), 1, sym_comment, - ACTIONS(10767), 4, + ACTIONS(10609), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [216514] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10152), 1, - anon_sym_LBRACK, - ACTIONS(10154), 1, - anon_sym_LPAREN, - STATE(3153), 1, - sym_parameter_bracks, - STATE(3162), 1, - sym_parameter_parens, - STATE(6593), 1, - sym_comment, - [216533] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2341), 1, - sym__entry_separator, - ACTIONS(10769), 1, - anon_sym_LBRACK2, - STATE(6594), 1, - sym_comment, - ACTIONS(2337), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [216550] = 3, + [222182] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6595), 1, + STATE(6738), 1, sym_comment, - ACTIONS(10771), 4, + ACTIONS(10609), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [216563] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6661), 1, - anon_sym_DOT_DOT2, - ACTIONS(10773), 1, - anon_sym_LBRACE, - STATE(6596), 1, - sym_comment, - ACTIONS(6639), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [216580] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(10097), 1, - anon_sym_LBRACK, - ACTIONS(10775), 1, - anon_sym_RBRACK, - STATE(3383), 1, - aux_sym__multiple_types_repeat1, - STATE(6597), 1, - sym_comment, - [216599] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6598), 1, - sym_comment, - ACTIONS(1755), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1757), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [216614] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10113), 1, - anon_sym_LBRACK, - ACTIONS(10115), 1, - anon_sym_LPAREN, - STATE(6011), 1, - sym_parameter_parens, - STATE(6012), 1, - sym_parameter_bracks, - STATE(6599), 1, - sym_comment, - [216633] = 3, + [222195] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6600), 1, + STATE(6739), 1, sym_comment, - ACTIONS(10777), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [216646] = 6, + ACTIONS(10863), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [222208] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(10097), 1, - anon_sym_LBRACK, - ACTIONS(10779), 1, - anon_sym_RBRACK, - STATE(3383), 1, - aux_sym__multiple_types_repeat1, - STATE(6601), 1, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + STATE(6740), 1, sym_comment, - [216665] = 6, + ACTIONS(2246), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [222223] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2206), 1, - anon_sym_RBRACE, - ACTIONS(2208), 1, - anon_sym_LPAREN2, - ACTIONS(2210), 1, - sym__entry_separator, - ACTIONS(2212), 1, - aux_sym__unquoted_in_record_token4, - STATE(6602), 1, - sym_comment, - [216684] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6603), 1, - sym_comment, - ACTIONS(10781), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [216697] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6604), 1, - sym_comment, - ACTIONS(10783), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [216710] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6605), 1, - sym_comment, - ACTIONS(10785), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [216723] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6606), 1, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + STATE(6741), 1, sym_comment, - ACTIONS(10787), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [216736] = 3, + ACTIONS(2254), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [222238] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6607), 1, + STATE(6742), 1, sym_comment, - ACTIONS(10789), 4, + ACTIONS(10865), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [216749] = 3, + [222251] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6608), 1, + STATE(6743), 1, sym_comment, - ACTIONS(10791), 4, + ACTIONS(10867), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [216762] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9730), 1, - anon_sym_RPAREN, - STATE(6414), 1, - aux_sym__block_body_repeat1, - STATE(6609), 1, - sym_comment, - ACTIONS(10627), 2, - sym__newline, - anon_sym_SEMI, - [216779] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10152), 1, - anon_sym_LBRACK, - ACTIONS(10154), 1, - anon_sym_LPAREN, - STATE(3155), 1, - sym_parameter_parens, - STATE(3159), 1, - sym_parameter_bracks, - STATE(6610), 1, - sym_comment, - [216798] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10152), 1, - anon_sym_LBRACK, - ACTIONS(10154), 1, - anon_sym_LPAREN, - STATE(3160), 1, - sym_parameter_parens, - STATE(3168), 1, - sym_parameter_bracks, - STATE(6611), 1, - sym_comment, - [216817] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1711), 1, - anon_sym_LPAREN2, - ACTIONS(2278), 1, - anon_sym_RBRACE, - ACTIONS(2280), 1, - sym__entry_separator, - STATE(6612), 1, - sym_comment, - STATE(7703), 1, - sym__expr_parenthesized_immediate, - [216836] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6613), 1, - sym_comment, - ACTIONS(6223), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [216849] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1711), 1, - anon_sym_LPAREN2, - ACTIONS(2282), 1, - anon_sym_RBRACE, - ACTIONS(2284), 1, - sym__entry_separator, - STATE(6614), 1, - sym_comment, - STATE(7703), 1, - sym__expr_parenthesized_immediate, - [216868] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(6184), 1, - anon_sym_LBRACE, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4711), 1, - sym_block, - STATE(6615), 1, - sym_comment, - [216887] = 3, + [222264] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6616), 1, + STATE(6744), 1, sym_comment, - ACTIONS(10793), 4, + ACTIONS(10869), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [216900] = 6, + [222277] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10152), 1, + ACTIONS(10157), 1, anon_sym_LBRACK, - ACTIONS(10154), 1, + ACTIONS(10159), 1, anon_sym_LPAREN, - STATE(3154), 1, + STATE(3173), 1, sym_parameter_parens, - STATE(3166), 1, + STATE(3174), 1, sym_parameter_bracks, - STATE(6617), 1, - sym_comment, - [216919] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6618), 1, - sym_comment, - ACTIONS(10795), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [216932] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6619), 1, - sym_comment, - ACTIONS(10797), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [216945] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6620), 1, - sym_comment, - ACTIONS(10799), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [216958] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6621), 1, - sym_comment, - ACTIONS(1739), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1741), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [216973] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(10097), 1, - anon_sym_LBRACK, - ACTIONS(10801), 1, - anon_sym_RBRACK, - STATE(3383), 1, - aux_sym__multiple_types_repeat1, - STATE(6622), 1, + STATE(6745), 1, sym_comment, - [216992] = 3, + [222296] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(6623), 1, - sym_comment, - ACTIONS(6225), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(6653), 1, + anon_sym_DOT_DOT2, + ACTIONS(10871), 1, anon_sym_LBRACE, - [217005] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(10097), 1, - anon_sym_LBRACK, - ACTIONS(10803), 1, - anon_sym_RBRACK, - STATE(3383), 1, - aux_sym__multiple_types_repeat1, - STATE(6624), 1, - sym_comment, - [217024] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6625), 1, - sym_comment, - ACTIONS(10503), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [217037] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2218), 1, - anon_sym_PIPE, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - STATE(6626), 1, - sym_comment, - ACTIONS(2214), 2, - anon_sym_if, - anon_sym_EQ_GT, - [217054] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - ACTIONS(2224), 1, - anon_sym_PIPE, - STATE(6627), 1, + STATE(6746), 1, sym_comment, - ACTIONS(2222), 2, - anon_sym_if, - anon_sym_EQ_GT, - [217071] = 3, + ACTIONS(6637), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [222313] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6628), 1, + STATE(6747), 1, sym_comment, - ACTIONS(10503), 4, + ACTIONS(10873), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [217084] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(10097), 1, - anon_sym_LBRACK, - ACTIONS(10805), 1, - anon_sym_RBRACK, - STATE(3383), 1, - aux_sym__multiple_types_repeat1, - STATE(6629), 1, - sym_comment, - [217103] = 3, + [222326] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6630), 1, + STATE(6748), 1, sym_comment, - ACTIONS(10109), 4, + ACTIONS(10873), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [217116] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6631), 1, - sym_comment, - ACTIONS(1783), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1785), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [217131] = 3, + [222339] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6632), 1, + STATE(6749), 1, sym_comment, - ACTIONS(10807), 4, + ACTIONS(10873), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [217144] = 3, + [222352] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6633), 1, + STATE(6750), 1, sym_comment, - ACTIONS(10109), 4, + ACTIONS(10873), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [217157] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(10097), 1, - anon_sym_LBRACK, - ACTIONS(10809), 1, - anon_sym_RBRACK, - STATE(3383), 1, - aux_sym__multiple_types_repeat1, - STATE(6634), 1, - sym_comment, - [217176] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1739), 1, - aux_sym_unquoted_token2, - STATE(6635), 1, - sym_comment, - ACTIONS(1741), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [217191] = 3, + [222365] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6636), 1, + STATE(6751), 1, sym_comment, - ACTIONS(10811), 4, + ACTIONS(10873), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [217204] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10813), 1, - anon_sym_LBRACE, - STATE(5034), 1, - sym_block, - STATE(5037), 1, - sym_val_closure, - STATE(5130), 1, - sym__blosure, - STATE(6637), 1, - sym_comment, - [217223] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1755), 1, - aux_sym_unquoted_token2, - ACTIONS(9947), 1, - aux_sym__immediate_decimal_token2, - STATE(6638), 1, - sym_comment, - ACTIONS(1757), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [217240] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6639), 1, - sym_comment, - ACTIONS(5681), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [217253] = 3, + [222378] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6640), 1, + STATE(6752), 1, sym_comment, - ACTIONS(10815), 4, + ACTIONS(10873), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [217266] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6641), 1, - sym_comment, - ACTIONS(1890), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1892), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [217281] = 3, + [222391] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6642), 1, + STATE(6753), 1, sym_comment, - ACTIONS(10817), 4, + ACTIONS(10873), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [217294] = 3, + [222404] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6643), 1, + STATE(6754), 1, sym_comment, - ACTIONS(10819), 4, + ACTIONS(10873), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [217307] = 3, + [222417] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6644), 1, - sym_comment, - ACTIONS(5653), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [217320] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6645), 1, + STATE(6755), 1, sym_comment, - ACTIONS(5657), 4, + ACTIONS(5658), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [217333] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6646), 1, - sym_comment, - ACTIONS(10821), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [217346] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6647), 1, - sym_comment, - ACTIONS(10823), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [217359] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6648), 1, - sym_comment, - ACTIONS(10825), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [217372] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6649), 1, - sym_comment, - ACTIONS(10827), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [217385] = 3, + [222430] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6650), 1, + STATE(6756), 1, sym_comment, - ACTIONS(10829), 4, + ACTIONS(10875), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [217398] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4936), 1, - anon_sym_DOLLAR, - ACTIONS(4938), 1, - sym_identifier, - ACTIONS(10831), 1, - sym_long_flag_identifier, - ACTIONS(10833), 1, - anon_sym_EQ2, - STATE(6651), 1, - sym_comment, - [217417] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1491), 1, - anon_sym_SEMI, - ACTIONS(3857), 1, - sym__newline, - STATE(231), 1, - aux_sym__parenthesized_body_repeat1, - STATE(6652), 1, - sym_comment, - STATE(6772), 1, - aux_sym_shebang_repeat1, - [217436] = 3, + [222443] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6653), 1, + STATE(6757), 1, sym_comment, - ACTIONS(10835), 4, + ACTIONS(10877), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [217449] = 6, + [222456] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10837), 1, - anon_sym_use, - ACTIONS(10839), 1, - anon_sym_list, - ACTIONS(10841), 1, - anon_sym_hide, - ACTIONS(10843), 1, - anon_sym_new, - STATE(6654), 1, + ACTIONS(10157), 1, + anon_sym_LBRACK, + ACTIONS(10159), 1, + anon_sym_LPAREN, + STATE(3171), 1, + sym_parameter_parens, + STATE(3180), 1, + sym_parameter_bracks, + STATE(6758), 1, sym_comment, - [217468] = 3, + [222475] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(6655), 1, + ACTIONS(10157), 1, + anon_sym_LBRACK, + ACTIONS(10159), 1, + anon_sym_LPAREN, + STATE(3182), 1, + sym_parameter_parens, + STATE(3184), 1, + sym_parameter_bracks, + STATE(6759), 1, sym_comment, - ACTIONS(10845), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [217481] = 4, + [222494] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6656), 1, + STATE(6760), 1, sym_comment, - ACTIONS(2248), 2, + ACTIONS(2268), 2, anon_sym_RBRACK, aux_sym__unquoted_in_list_token4, - ACTIONS(2250), 2, + ACTIONS(2270), 2, anon_sym_LPAREN2, sym__entry_separator, - [217496] = 3, + [222509] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(6657), 1, + ACTIONS(10157), 1, + anon_sym_LBRACK, + ACTIONS(10159), 1, + anon_sym_LPAREN, + STATE(3172), 1, + sym_parameter_bracks, + STATE(3183), 1, + sym_parameter_parens, + STATE(6761), 1, + sym_comment, + [222528] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6762), 1, sym_comment, - ACTIONS(10847), 4, + ACTIONS(5689), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [217509] = 6, - ACTIONS(3), 1, + anon_sym_LBRACE, + [222541] = 6, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(1866), 1, - anon_sym_RBRACE, - ACTIONS(1868), 1, - anon_sym_LPAREN2, - ACTIONS(1874), 1, - sym__entry_separator, - STATE(6658), 1, + ACTIONS(10157), 1, + anon_sym_LBRACK, + ACTIONS(10159), 1, + anon_sym_LPAREN, + STATE(3177), 1, + sym_parameter_parens, + STATE(3178), 1, + sym_parameter_bracks, + STATE(6763), 1, sym_comment, - [217528] = 6, + [222560] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1711), 1, + ACTIONS(1709), 1, anon_sym_LPAREN2, - ACTIONS(2270), 1, + ACTIONS(2199), 1, anon_sym_RBRACE, - ACTIONS(2272), 1, + ACTIONS(2201), 1, sym__entry_separator, - STATE(6659), 1, + STATE(6764), 1, sym_comment, - STATE(7703), 1, + STATE(8152), 1, sym__expr_parenthesized_immediate, - [217547] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6660), 1, - sym_comment, - ACTIONS(10849), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [217560] = 6, + [222579] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10851), 1, + ACTIONS(10879), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6661), 1, + STATE(6765), 1, sym_comment, - [217579] = 6, + [222598] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1711), 1, + ACTIONS(1709), 1, anon_sym_LPAREN2, - ACTIONS(2274), 1, + ACTIONS(2207), 1, anon_sym_RBRACE, - ACTIONS(2276), 1, + ACTIONS(2209), 1, sym__entry_separator, - STATE(6662), 1, + STATE(6766), 1, sym_comment, - STATE(7703), 1, + STATE(8152), 1, sym__expr_parenthesized_immediate, - [217598] = 6, + [222617] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10853), 1, + ACTIONS(10881), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6663), 1, + STATE(6767), 1, + sym_comment, + [222636] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(10177), 1, + anon_sym_LBRACK, + ACTIONS(10883), 1, + anon_sym_RBRACK, + STATE(3396), 1, + aux_sym__multiple_types_repeat1, + STATE(6768), 1, sym_comment, - [217617] = 5, + [222655] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1709), 1, - anon_sym_DASH2, - ACTIONS(8677), 1, + ACTIONS(1765), 1, aux_sym_unquoted_token2, - STATE(6664), 1, + ACTIONS(10035), 1, + aux_sym__immediate_decimal_token2, + STATE(6769), 1, + sym_comment, + ACTIONS(1767), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [222672] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6770), 1, sym_comment, - ACTIONS(1721), 2, + ACTIONS(2268), 4, sym_identifier, anon_sym_DASH_DASH, - [217634] = 4, - ACTIONS(3), 1, + anon_sym_DASH2, + aux_sym_unquoted_token4, + [222685] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10855), 1, - anon_sym_LPAREN, - STATE(6665), 1, + ACTIONS(10885), 1, + anon_sym_RPAREN, + STATE(6771), 1, sym_comment, - ACTIONS(10857), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [217649] = 6, + STATE(6778), 1, + aux_sym__block_body_repeat1, + ACTIONS(10147), 2, + sym__newline, + anon_sym_SEMI, + [222702] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5556), 1, + ACTIONS(1709), 1, anon_sym_LPAREN2, - ACTIONS(7916), 1, + ACTIONS(2165), 1, + anon_sym_RBRACE, + ACTIONS(2171), 1, sym__entry_separator, - ACTIONS(7918), 1, - anon_sym_RBRACK, - STATE(6666), 1, + STATE(6772), 1, sym_comment, - STATE(7562), 1, + STATE(7611), 1, sym__expr_parenthesized_immediate, - [217668] = 6, + [222721] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6773), 1, + sym_comment, + ACTIONS(10887), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [222734] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1711), 1, + ACTIONS(1559), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1820), 1, + anon_sym_RBRACK, + ACTIONS(1822), 1, anon_sym_LPAREN2, - ACTIONS(2151), 1, - anon_sym_RBRACE, - ACTIONS(2153), 1, + ACTIONS(1828), 1, sym__entry_separator, - STATE(6667), 1, + STATE(6774), 1, sym_comment, - STATE(7369), 1, - sym__expr_parenthesized_immediate, - [217687] = 6, - ACTIONS(3), 1, + [222753] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(10097), 1, - anon_sym_LBRACK, - ACTIONS(10859), 1, - anon_sym_RBRACK, - STATE(3383), 1, - aux_sym__multiple_types_repeat1, - STATE(6668), 1, + ACTIONS(9055), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(10889), 1, + anon_sym_DOT, + STATE(6775), 1, sym_comment, - [217706] = 3, + ACTIONS(1767), 2, + sym__newline, + anon_sym_LBRACE, + [222770] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6669), 1, + STATE(6776), 1, sym_comment, - ACTIONS(10767), 4, + ACTIONS(5662), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [217719] = 4, + anon_sym_LBRACE, + [222783] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1888), 1, - aux_sym_unquoted_token2, - STATE(6670), 1, + ACTIONS(6665), 1, + sym__newline, + ACTIONS(10891), 1, + anon_sym_EQ, + ACTIONS(10893), 1, + anon_sym_COLON, + STATE(4049), 1, + aux_sym_shebang_repeat1, + STATE(6777), 1, sym_comment, - ACTIONS(1886), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [217734] = 3, + [222802] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(6671), 1, - sym_comment, - ACTIONS(10847), 4, + ACTIONS(1463), 1, + anon_sym_RPAREN, + ACTIONS(10895), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [217747] = 4, - ACTIONS(247), 1, + STATE(6778), 2, + sym_comment, + aux_sym__block_body_repeat1, + [222817] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4864), 1, - aux_sym_unquoted_token2, - STATE(6672), 1, + ACTIONS(1804), 1, + anon_sym_LPAREN2, + ACTIONS(1812), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2230), 1, + anon_sym_RBRACK, + ACTIONS(2232), 1, + sym__entry_separator, + STATE(6779), 1, sym_comment, - ACTIONS(1721), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [217762] = 5, + [222836] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5053), 1, + ACTIONS(4998), 1, anon_sym_DASH2, - ACTIONS(10861), 1, + ACTIONS(10898), 1, anon_sym_EQ2, - STATE(6673), 1, + STATE(6780), 1, sym_comment, - ACTIONS(5051), 2, + ACTIONS(4996), 2, sym_identifier, anon_sym_DASH_DASH, - [217779] = 3, + [222853] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(6674), 1, - sym_comment, - ACTIONS(10863), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [217792] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1459), 1, - ts_builtin_sym_end, - STATE(230), 1, - aux_sym__block_body_repeat1, - STATE(6675), 1, - sym_comment, - ACTIONS(25), 2, - sym__newline, - anon_sym_SEMI, - [217809] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5016), 1, + ACTIONS(5058), 1, anon_sym_DASH2, - ACTIONS(10865), 1, + ACTIONS(10900), 1, anon_sym_EQ2, - STATE(6676), 1, + STATE(6781), 1, sym_comment, - ACTIONS(5014), 2, + ACTIONS(5056), 2, sym_identifier, anon_sym_DASH_DASH, - [217826] = 4, + [222870] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4700), 1, + sym_block, + STATE(6782), 1, + sym_comment, + [222889] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2250), 1, - anon_sym_PIPE, - STATE(6677), 1, + STATE(6783), 1, sym_comment, - ACTIONS(2248), 3, - anon_sym_if, - anon_sym_EQ_GT, - aux_sym_unquoted_token4, - [217841] = 5, + ACTIONS(1006), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(1008), 2, + anon_sym_DOT, + sym__entry_separator, + [222904] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(615), 1, + ACTIONS(1459), 1, ts_builtin_sym_end, - STATE(303), 1, + STATE(280), 1, aux_sym__block_body_repeat1, - STATE(6678), 1, + STATE(6784), 1, sym_comment, ACTIONS(25), 2, sym__newline, anon_sym_SEMI, - [217858] = 3, - ACTIONS(247), 1, + [222921] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6679), 1, + ACTIONS(10902), 1, + anon_sym_DQUOTE, + STATE(6270), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6785), 1, sym_comment, - ACTIONS(10867), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [217871] = 5, - ACTIONS(247), 1, + ACTIONS(10125), 2, + sym__escaped_str_content, + sym_escape_sequence, + [222938] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1783), 1, - aux_sym_unquoted_token2, - ACTIONS(10869), 1, - aux_sym__immediate_decimal_token2, - STATE(6680), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(10177), 1, + anon_sym_LBRACK, + ACTIONS(10904), 1, + anon_sym_RBRACK, + STATE(3396), 1, + aux_sym__multiple_types_repeat1, + STATE(6786), 1, sym_comment, - ACTIONS(1785), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [217888] = 4, - ACTIONS(247), 1, + [222957] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1783), 1, - aux_sym_unquoted_token2, - STATE(6681), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(10177), 1, + anon_sym_LBRACK, + ACTIONS(10906), 1, + anon_sym_RBRACK, + STATE(3396), 1, + aux_sym__multiple_types_repeat1, + STATE(6787), 1, sym_comment, - ACTIONS(1785), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [217903] = 3, - ACTIONS(247), 1, + [222976] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6682), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(10177), 1, + anon_sym_LBRACK, + ACTIONS(10908), 1, + anon_sym_RBRACK, + STATE(3396), 1, + aux_sym__multiple_types_repeat1, + STATE(6788), 1, sym_comment, - ACTIONS(10871), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [217916] = 6, + [222995] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10873), 1, + ACTIONS(10910), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6683), 1, + STATE(6789), 1, sym_comment, - [217935] = 3, - ACTIONS(247), 1, + [223014] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6684), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(10177), 1, + anon_sym_LBRACK, + ACTIONS(10912), 1, + anon_sym_RBRACK, + STATE(3396), 1, + aux_sym__multiple_types_repeat1, + STATE(6790), 1, sym_comment, - ACTIONS(10875), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [217948] = 6, + [223033] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10877), 1, + ACTIONS(10914), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6685), 1, + STATE(6791), 1, sym_comment, - [217967] = 3, - ACTIONS(247), 1, + [223052] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6686), 1, + ACTIONS(2246), 1, + anon_sym_RBRACK, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + ACTIONS(2250), 1, + sym__entry_separator, + ACTIONS(2252), 1, + aux_sym__unquoted_in_list_token4, + STATE(6792), 1, sym_comment, - ACTIONS(6233), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [217980] = 5, + [223071] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + ACTIONS(2252), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(2254), 1, + anon_sym_RBRACK, + ACTIONS(2256), 1, + sym__entry_separator, + STATE(6793), 1, + sym_comment, + [223090] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9699), 1, - anon_sym_RPAREN, - STATE(6414), 1, - aux_sym__block_body_repeat1, - STATE(6687), 1, + ACTIONS(10157), 1, + anon_sym_LBRACK, + ACTIONS(10159), 1, + anon_sym_LPAREN, + STATE(3186), 1, + sym_parameter_parens, + STATE(3188), 1, + sym_parameter_bracks, + STATE(6794), 1, sym_comment, - ACTIONS(10627), 2, - sym__newline, - anon_sym_SEMI, - [217997] = 4, + [223109] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6688), 1, + ACTIONS(5539), 1, + anon_sym_LPAREN2, + ACTIONS(5918), 1, + anon_sym_RBRACK, + ACTIONS(5924), 1, + sym__entry_separator, + STATE(6795), 1, sym_comment, - ACTIONS(1739), 2, + STATE(7651), 1, + sym__expr_parenthesized_immediate, + [223128] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10161), 1, + anon_sym_LBRACK, + ACTIONS(10163), 1, + anon_sym_LPAREN, + STATE(6063), 1, + sym_parameter_parens, + STATE(6069), 1, + sym_parameter_bracks, + STATE(6796), 1, + sym_comment, + [223147] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1802), 1, anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1741), 2, + ACTIONS(1804), 1, anon_sym_LPAREN2, + ACTIONS(1810), 1, sym__entry_separator, - [218012] = 6, + ACTIONS(1812), 1, + aux_sym__unquoted_in_list_token2, + STATE(6797), 1, + sym_comment, + [223166] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(5049), 1, + sym_block, + STATE(6798), 1, + sym_comment, + STATE(6800), 1, + aux_sym_shebang_repeat1, + [223185] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, + ACTIONS(10177), 1, anon_sym_LBRACK, - ACTIONS(10879), 1, + ACTIONS(10916), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(3396), 1, aux_sym__multiple_types_repeat1, - STATE(6689), 1, + STATE(6799), 1, sym_comment, - [218031] = 3, + [223204] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(6690), 1, - sym_comment, - ACTIONS(10881), 4, + ACTIONS(3929), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218044] = 3, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(5059), 1, + sym_block, + STATE(6800), 1, + sym_comment, + [223223] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(6691), 1, - sym_comment, - ACTIONS(6345), 4, - ts_builtin_sym_end, + ACTIONS(3929), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6180), 1, anon_sym_LBRACE, - [218057] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1783), 1, - aux_sym_unquoted_token2, - ACTIONS(10883), 1, - aux_sym__immediate_decimal_token2, - STATE(6692), 1, + STATE(5060), 1, + sym_block, + STATE(6801), 1, sym_comment, - ACTIONS(1785), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [218074] = 3, + STATE(6802), 1, + aux_sym_shebang_repeat1, + [223242] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(6693), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(5073), 1, + sym_block, + STATE(6802), 1, sym_comment, - ACTIONS(10885), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [218087] = 4, + [223261] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1890), 1, - aux_sym_unquoted_token2, - STATE(6694), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(10115), 1, + anon_sym_LBRACK, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6803), 1, sym_comment, - ACTIONS(1892), 3, + STATE(7756), 1, + sym_val_list, + [223280] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2270), 1, anon_sym_PIPE, + STATE(6804), 1, + sym_comment, + ACTIONS(2268), 3, anon_sym_if, anon_sym_EQ_GT, - [218102] = 3, + aux_sym_unquoted_token4, + [223295] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1709), 1, + anon_sym_LPAREN2, + ACTIONS(2173), 1, + anon_sym_RBRACE, + ACTIONS(2175), 1, + sym__entry_separator, + STATE(6805), 1, + sym_comment, + STATE(7611), 1, + sym__expr_parenthesized_immediate, + [223314] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(6695), 1, + ACTIONS(10918), 1, + anon_sym_use, + ACTIONS(10920), 1, + anon_sym_list, + ACTIONS(10922), 1, + anon_sym_hide, + ACTIONS(10924), 1, + anon_sym_new, + STATE(6806), 1, sym_comment, - ACTIONS(6235), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [218115] = 6, + [223333] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6669), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(10887), 1, - anon_sym_EQ, - ACTIONS(10889), 1, - anon_sym_COLON, - STATE(4026), 1, - aux_sym_shebang_repeat1, - STATE(6696), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(4949), 1, + sym_block, + STATE(6807), 1, sym_comment, - [218134] = 4, + STATE(6808), 1, + aux_sym_shebang_repeat1, + [223352] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym_unquoted_token2, - STATE(6697), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(4951), 1, + sym_block, + STATE(6808), 1, sym_comment, - ACTIONS(1874), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [218149] = 3, + [223371] = 6, ACTIONS(247), 1, anon_sym_POUND, - STATE(6698), 1, - sym_comment, - ACTIONS(10891), 4, + ACTIONS(3929), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218162] = 6, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(4952), 1, + sym_block, + STATE(6809), 1, + sym_comment, + STATE(6810), 1, + aux_sym_shebang_repeat1, + [223390] = 6, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(3929), 1, sym__newline, - ACTIONS(10893), 1, - anon_sym_LBRACK, - STATE(1816), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(6699), 1, - sym_comment, - STATE(7946), 1, - sym_val_list, - [218181] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(10097), 1, - anon_sym_LBRACK, - ACTIONS(10895), 1, - anon_sym_RBRACK, - STATE(3383), 1, - aux_sym__multiple_types_repeat1, - STATE(6700), 1, + STATE(4956), 1, + sym_block, + STATE(6810), 1, sym_comment, - [218200] = 6, - ACTIONS(3), 1, + [223409] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(10097), 1, - anon_sym_LBRACK, - ACTIONS(10897), 1, - anon_sym_RBRACK, - STATE(3383), 1, - aux_sym__multiple_types_repeat1, - STATE(6701), 1, + ACTIONS(1828), 1, + anon_sym_EQ_GT, + ACTIONS(10926), 1, + anon_sym_DOT_DOT2, + STATE(6811), 1, sym_comment, - [218219] = 3, + ACTIONS(10928), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [223426] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(6702), 1, + ACTIONS(1810), 1, + anon_sym_EQ_GT, + ACTIONS(10930), 1, + anon_sym_DOT_DOT2, + STATE(6812), 1, sym_comment, - ACTIONS(6347), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [218232] = 3, + ACTIONS(10932), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [223443] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(6703), 1, + ACTIONS(10934), 1, + anon_sym_RBRACK, + STATE(5202), 1, + aux_sym_parameter_repeat2, + STATE(6813), 1, sym_comment, - ACTIONS(10899), 4, + ACTIONS(2538), 2, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218245] = 5, + anon_sym_COMMA, + [223460] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10901), 1, + ACTIONS(10936), 1, anon_sym_DQUOTE, - STATE(6253), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6704), 1, - sym_comment, - ACTIONS(10103), 2, + ACTIONS(10938), 2, sym__escaped_str_content, sym_escape_sequence, - [218262] = 3, + STATE(6814), 2, + sym_comment, + aux_sym__str_double_quotes_repeat1, + [223475] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6705), 1, + STATE(6815), 1, sym_comment, - ACTIONS(5697), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(8125), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_AT, anon_sym_LBRACE, - [218275] = 6, + [223488] = 6, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8647), 1, + sym_identifier, + ACTIONS(9041), 1, + anon_sym_DOLLAR, + STATE(5398), 1, + sym_val_variable, + STATE(6210), 1, + sym__variable_name, + STATE(6816), 1, + sym_comment, + [223507] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2206), 1, - anon_sym_RBRACK, - ACTIONS(2208), 1, - anon_sym_LPAREN2, - ACTIONS(2210), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(2212), 1, - aux_sym__unquoted_in_list_token4, - STATE(6706), 1, + ACTIONS(10177), 1, + anon_sym_LBRACK, + ACTIONS(10941), 1, + anon_sym_RBRACK, + STATE(3396), 1, + aux_sym__multiple_types_repeat1, + STATE(6817), 1, sym_comment, - [218294] = 6, + [223526] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, - anon_sym_LPAREN2, - ACTIONS(1888), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(2187), 1, - anon_sym_RBRACE, - ACTIONS(2189), 1, + ACTIONS(6489), 1, sym__entry_separator, - STATE(6707), 1, + ACTIONS(10943), 1, + anon_sym_RBRACK, + STATE(6767), 1, + aux_sym__multiple_types_repeat1, + STATE(6818), 1, sym_comment, - [218313] = 3, - ACTIONS(247), 1, + [223542] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6708), 1, + STATE(6819), 1, sym_comment, - ACTIONS(10903), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218326] = 6, + ACTIONS(2456), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [223554] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1878), 1, - anon_sym_RBRACE, - ACTIONS(1880), 1, - anon_sym_LPAREN2, - ACTIONS(1886), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(1888), 1, - aux_sym__unquoted_in_record_token2, - STATE(6709), 1, + ACTIONS(10945), 1, + anon_sym_RBRACK, + STATE(6410), 1, + aux_sym__multiple_types_repeat1, + STATE(6820), 1, sym_comment, - [218345] = 5, - ACTIONS(247), 1, + [223570] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1888), 1, - aux_sym_unquoted_token2, - ACTIONS(10905), 1, - anon_sym_DOT_DOT2, - STATE(6710), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(10947), 1, + anon_sym_RBRACK, + STATE(6411), 1, + aux_sym__multiple_types_repeat1, + STATE(6821), 1, sym_comment, - ACTIONS(10907), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [218362] = 6, + [223586] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1030), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(10949), 1, anon_sym_RBRACK, - ACTIONS(1032), 1, + STATE(6412), 1, + aux_sym__multiple_types_repeat1, + STATE(6822), 1, + sym_comment, + [223602] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(2202), 1, - anon_sym_LPAREN2, - ACTIONS(2204), 1, - aux_sym__unquoted_in_list_token4, - STATE(6711), 1, + ACTIONS(10951), 1, + anon_sym_RBRACK, + STATE(6413), 1, + aux_sym__multiple_types_repeat1, + STATE(6823), 1, sym_comment, - [218381] = 3, + [223618] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(6712), 1, + ACTIONS(10953), 1, + anon_sym_RBRACK, + ACTIONS(10955), 1, + sym_hex_digit, + STATE(6824), 1, sym_comment, - ACTIONS(10909), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [218394] = 5, - ACTIONS(247), 1, + STATE(6839), 1, + aux_sym_val_binary_repeat1, + [223634] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9054), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(10911), 1, - anon_sym_DOT, - STATE(6713), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(10957), 1, + anon_sym_RBRACK, + STATE(6414), 1, + aux_sym__multiple_types_repeat1, + STATE(6825), 1, sym_comment, - ACTIONS(1757), 2, - sym__newline, - anon_sym_LBRACE, - [218411] = 3, - ACTIONS(247), 1, + [223650] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6714), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(10959), 1, + anon_sym_RBRACK, + STATE(6415), 1, + aux_sym__multiple_types_repeat1, + STATE(6826), 1, sym_comment, - ACTIONS(10913), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + [223666] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2474), 1, + sym__entry_separator, + STATE(6827), 1, + sym_comment, + ACTIONS(2472), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - [218424] = 3, - ACTIONS(247), 1, + [223680] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6715), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(10961), 1, + anon_sym_RBRACK, + STATE(6416), 1, + aux_sym__multiple_types_repeat1, + STATE(6828), 1, sym_comment, - ACTIONS(10915), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + [223696] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1929), 1, + sym__entry_separator, + STATE(6829), 1, + sym_comment, + ACTIONS(1927), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - [218437] = 3, + [223710] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6716), 1, + STATE(6830), 1, sym_comment, - ACTIONS(10917), 4, + ACTIONS(10119), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218450] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6717), 1, - sym_comment, - ACTIONS(2248), 4, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH2, - aux_sym_unquoted_token4, - [218463] = 5, + [223722] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10919), 1, - anon_sym_DQUOTE, - STATE(6213), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6718), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(10963), 1, + anon_sym_RBRACK, + STATE(6312), 1, + aux_sym__multiple_types_repeat1, + STATE(6831), 1, sym_comment, - ACTIONS(10103), 2, - sym__escaped_str_content, - sym_escape_sequence, - [218480] = 6, + [223738] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(1944), 1, sym__entry_separator, - ACTIONS(10097), 1, - anon_sym_LBRACK, - ACTIONS(10921), 1, + STATE(6832), 1, + sym_comment, + ACTIONS(1942), 2, anon_sym_RBRACK, - STATE(3383), 1, - aux_sym__multiple_types_repeat1, - STATE(6719), 1, + anon_sym_RBRACE, + [223752] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10965), 1, + anon_sym_EQ2, + STATE(6833), 1, sym_comment, - [218499] = 3, + ACTIONS(4996), 2, + sym_identifier, + anon_sym_DOLLAR, + [223766] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6720), 1, + STATE(6834), 1, sym_comment, - ACTIONS(10135), 4, + ACTIONS(10135), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218512] = 3, + [223778] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + ACTIONS(7236), 1, + aux_sym_unquoted_token4, + STATE(6835), 1, + sym_comment, + STATE(7498), 1, + sym__expr_parenthesized_immediate, + [223794] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6721), 1, + STATE(6836), 1, sym_comment, - ACTIONS(10923), 4, + ACTIONS(10239), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218525] = 3, + [223806] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6722), 1, + STATE(6837), 1, sym_comment, - ACTIONS(5689), 4, + ACTIONS(10239), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [218538] = 6, + [223818] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(6184), 1, - anon_sym_LBRACE, - STATE(5107), 1, - sym_block, - STATE(6723), 1, + ACTIONS(10955), 1, + sym_hex_digit, + ACTIONS(10967), 1, + anon_sym_RBRACK, + STATE(6838), 1, sym_comment, - STATE(6724), 1, - aux_sym_shebang_repeat1, - [218557] = 6, + STATE(6844), 1, + aux_sym_val_binary_repeat1, + [223834] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(6184), 1, - anon_sym_LBRACE, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(5110), 1, - sym_block, - STATE(6724), 1, + ACTIONS(10969), 1, + anon_sym_RBRACK, + ACTIONS(10971), 1, + sym_hex_digit, + STATE(6839), 2, sym_comment, - [218576] = 6, - ACTIONS(247), 1, + aux_sym_val_binary_repeat1, + [223848] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(6184), 1, - anon_sym_LBRACE, - STATE(5111), 1, - sym_block, - STATE(6725), 1, + ACTIONS(10199), 1, + anon_sym_LPAREN, + STATE(6840), 1, sym_comment, - STATE(6726), 1, - aux_sym_shebang_repeat1, - [218595] = 6, + ACTIONS(10201), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [223862] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(6184), 1, - anon_sym_LBRACE, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(5116), 1, - sym_block, - STATE(6726), 1, + ACTIONS(1785), 1, + aux_sym_unquoted_token2, + STATE(6841), 1, sym_comment, - [218614] = 6, + ACTIONS(1787), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [223876] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(10893), 1, - anon_sym_LBRACK, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6727), 1, + STATE(6842), 1, sym_comment, - STATE(7590), 1, - sym_val_list, - [218633] = 5, + ACTIONS(10109), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [223888] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2210), 1, - anon_sym_PIPE, - ACTIONS(2212), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + ACTIONS(4553), 1, aux_sym_unquoted_token4, - STATE(6728), 1, + STATE(6843), 1, sym_comment, - ACTIONS(2206), 2, - anon_sym_if, - anon_sym_EQ_GT, - [218650] = 6, + STATE(7673), 1, + sym__expr_parenthesized_immediate, + [223904] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10955), 1, + sym_hex_digit, + ACTIONS(10974), 1, + anon_sym_RBRACK, + STATE(6839), 1, + aux_sym_val_binary_repeat1, + STATE(6844), 1, + sym_comment, + [223920] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10955), 1, + sym_hex_digit, + ACTIONS(10976), 1, + anon_sym_RBRACK, + STATE(6839), 1, + aux_sym_val_binary_repeat1, + STATE(6845), 1, + sym_comment, + [223936] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, - anon_sym_LBRACK, - ACTIONS(10925), 1, + ACTIONS(10978), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(6427), 1, aux_sym__multiple_types_repeat1, - STATE(6729), 1, + STATE(6846), 1, sym_comment, - [218669] = 6, + [223952] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, - anon_sym_LBRACK, - ACTIONS(10927), 1, + ACTIONS(10980), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(6428), 1, aux_sym__multiple_types_repeat1, - STATE(6730), 1, + STATE(6847), 1, sym_comment, - [218688] = 6, + [223968] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10097), 1, - anon_sym_LBRACK, - ACTIONS(10929), 1, + ACTIONS(10982), 1, anon_sym_RBRACK, - STATE(3383), 1, + STATE(6429), 1, aux_sym__multiple_types_repeat1, - STATE(6731), 1, + STATE(6848), 1, sym_comment, - [218707] = 5, - ACTIONS(247), 1, + [223984] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym_unquoted_token2, - ACTIONS(10931), 1, - anon_sym_DOT_DOT2, - STATE(6732), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(10984), 1, + anon_sym_RBRACK, + STATE(6430), 1, + aux_sym__multiple_types_repeat1, + STATE(6849), 1, sym_comment, - ACTIONS(10933), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [218724] = 6, + [224000] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(6184), 1, - anon_sym_LBRACE, - STATE(4973), 1, - sym_block, - STATE(6733), 1, + STATE(6850), 1, sym_comment, - STATE(6734), 1, - aux_sym_shebang_repeat1, - [218743] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(10329), 3, + ts_builtin_sym_end, sym__newline, - ACTIONS(6184), 1, - anon_sym_LBRACE, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4975), 1, - sym_block, - STATE(6734), 1, - sym_comment, - [218762] = 6, - ACTIONS(247), 1, + anon_sym_SEMI, + [224012] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(6184), 1, - anon_sym_LBRACE, - STATE(4976), 1, - sym_block, - STATE(6735), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(10986), 1, + anon_sym_RBRACK, + STATE(6431), 1, + aux_sym__multiple_types_repeat1, + STATE(6851), 1, sym_comment, - STATE(6736), 1, - aux_sym_shebang_repeat1, - [218781] = 6, + [224028] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, + ACTIONS(1534), 1, + anon_sym_SEMI, + ACTIONS(3929), 1, sym__newline, - ACTIONS(6184), 1, - anon_sym_LBRACE, - STATE(1816), 1, + STATE(1761), 1, aux_sym_shebang_repeat1, - STATE(4980), 1, - sym_block, - STATE(6736), 1, - sym_comment, - [218800] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1874), 1, - anon_sym_EQ_GT, - ACTIONS(10935), 1, - anon_sym_DOT_DOT2, - STATE(6737), 1, + STATE(6852), 1, sym_comment, - ACTIONS(10937), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [218817] = 5, - ACTIONS(247), 1, + [224044] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1886), 1, - anon_sym_EQ_GT, - ACTIONS(10939), 1, - anon_sym_DOT_DOT2, - STATE(6738), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(10988), 1, + anon_sym_RBRACK, + STATE(6432), 1, + aux_sym__multiple_types_repeat1, + STATE(6853), 1, sym_comment, - ACTIONS(10941), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [218834] = 4, + [224060] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6739), 1, - sym_comment, - ACTIONS(1783), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1785), 2, - anon_sym_LPAREN2, + ACTIONS(6489), 1, sym__entry_separator, - [218849] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(6184), 1, - anon_sym_LBRACE, - STATE(4620), 1, - sym_block, - STATE(6336), 1, - aux_sym_shebang_repeat1, - STATE(6740), 1, + ACTIONS(10990), 1, + anon_sym_RBRACK, + STATE(6433), 1, + aux_sym__multiple_types_repeat1, + STATE(6854), 1, sym_comment, - [218868] = 6, + [224076] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1030), 1, - anon_sym_RBRACE, - ACTIONS(1032), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(2202), 1, - anon_sym_LPAREN2, - ACTIONS(2204), 1, - aux_sym__unquoted_in_record_token4, - STATE(6741), 1, + ACTIONS(10992), 1, + anon_sym_RBRACK, + STATE(6434), 1, + aux_sym__multiple_types_repeat1, + STATE(6855), 1, sym_comment, - [218887] = 3, + [224092] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6742), 1, + STATE(6856), 1, sym_comment, - ACTIONS(10943), 4, + ACTIONS(10357), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218900] = 3, + [224104] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6743), 1, + STATE(6857), 1, sym_comment, - ACTIONS(10903), 4, + ACTIONS(10139), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218913] = 6, + [224116] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8649), 1, - sym_identifier, - ACTIONS(8850), 1, - anon_sym_DOLLAR, - STATE(5480), 1, - sym_val_variable, - STATE(5966), 1, - sym__variable_name, - STATE(6744), 1, + ACTIONS(4970), 1, + anon_sym_in2, + ACTIONS(10994), 1, + sym_long_flag_identifier, + ACTIONS(10996), 1, + anon_sym_EQ2, + STATE(6858), 1, sym_comment, - [218932] = 6, - ACTIONS(3), 1, + [224132] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1711), 1, - anon_sym_LPAREN2, - ACTIONS(2155), 1, - anon_sym_RBRACE, - ACTIONS(2157), 1, - sym__entry_separator, - STATE(6745), 1, + ACTIONS(4974), 1, + anon_sym_LBRACE, + ACTIONS(10998), 1, + anon_sym_EQ2, + ACTIONS(11000), 1, + sym_short_flag_identifier, + STATE(6859), 1, sym_comment, - STATE(7369), 1, - sym__expr_parenthesized_immediate, - [218951] = 6, + [224148] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(6184), 1, - anon_sym_LBRACE, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(4640), 1, - sym_block, - STATE(6746), 1, + STATE(6860), 1, sym_comment, - [218970] = 3, + ACTIONS(10241), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [224160] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(6747), 1, + ACTIONS(8635), 1, + aux_sym_unquoted_token2, + STATE(6861), 1, sym_comment, - ACTIONS(10945), 4, + ACTIONS(1719), 2, sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [218983] = 5, + anon_sym_DOLLAR, + [224174] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10947), 1, - anon_sym_RBRACK, - ACTIONS(10949), 1, - sym_hex_digit, - STATE(6748), 1, + ACTIONS(3929), 1, + sym__newline, + ACTIONS(11002), 1, + anon_sym_COLON, + STATE(1761), 1, + aux_sym_shebang_repeat1, + STATE(6862), 1, sym_comment, - STATE(6852), 1, - aux_sym_val_binary_repeat1, - [218999] = 3, + [224190] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6749), 1, + STATE(6863), 1, sym_comment, - ACTIONS(10232), 3, + ACTIONS(10241), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [219011] = 4, - ACTIONS(3), 1, + [224202] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2490), 1, - sym__entry_separator, - STATE(6750), 1, - sym_comment, - ACTIONS(2488), 2, + ACTIONS(10955), 1, + sym_hex_digit, + ACTIONS(11004), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [219025] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2458), 1, - sym__entry_separator, - STATE(6751), 1, + STATE(6864), 1, sym_comment, - ACTIONS(2456), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [219039] = 3, + STATE(6870), 1, + aux_sym_val_binary_repeat1, + [224218] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6752), 1, + STATE(6865), 1, sym_comment, - ACTIONS(10807), 3, + ACTIONS(10511), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [219051] = 5, + [224230] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6221), 1, - anon_sym_AT, - ACTIONS(8029), 1, - anon_sym_EQ, - STATE(5062), 1, - sym_param_cmd, - STATE(6753), 1, + STATE(6866), 1, sym_comment, - [219067] = 3, + ACTIONS(10511), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [224242] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6754), 1, + STATE(6867), 1, sym_comment, - ACTIONS(10863), 3, + ACTIONS(10209), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [219079] = 5, + [224254] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10949), 1, - sym_hex_digit, - ACTIONS(10951), 1, - anon_sym_RBRACK, - STATE(6755), 1, + STATE(6868), 1, sym_comment, - STATE(6757), 1, - aux_sym_val_binary_repeat1, - [219095] = 5, + ACTIONS(10511), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [224266] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - ACTIONS(6458), 1, + ACTIONS(6450), 1, aux_sym_unquoted_token4, - STATE(6756), 1, + STATE(6869), 1, sym_comment, - STATE(7386), 1, + STATE(7632), 1, sym__expr_parenthesized_immediate, - [219111] = 5, + [224282] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10949), 1, + ACTIONS(10955), 1, sym_hex_digit, - ACTIONS(10953), 1, + ACTIONS(11006), 1, anon_sym_RBRACK, - STATE(6757), 1, - sym_comment, - STATE(6852), 1, + STATE(6839), 1, aux_sym_val_binary_repeat1, - [219127] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8677), 1, - aux_sym_unquoted_token2, - STATE(6758), 1, - sym_comment, - ACTIONS(1721), 2, - sym_identifier, - anon_sym_DOLLAR, - [219141] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(10955), 1, - anon_sym_RBRACK, - STATE(6301), 1, - aux_sym__multiple_types_repeat1, - STATE(6759), 1, + STATE(6870), 1, sym_comment, - [219157] = 5, + [224298] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(6219), 1, anon_sym_AT, - ACTIONS(8029), 1, - anon_sym_EQ, - STATE(5063), 1, - sym_param_cmd, - STATE(6760), 1, + ACTIONS(11008), 1, + anon_sym_GT2, + STATE(6871), 1, sym_comment, - [219173] = 5, + STATE(7819), 1, + sym_param_cmd, + [224314] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10957), 1, + ACTIONS(11010), 1, anon_sym_RBRACK, - STATE(6302), 1, + STATE(6445), 1, aux_sym__multiple_types_repeat1, - STATE(6761), 1, + STATE(6872), 1, sym_comment, - [219189] = 5, + [224330] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10959), 1, + ACTIONS(11012), 1, anon_sym_RBRACK, - STATE(6303), 1, + STATE(6446), 1, aux_sym__multiple_types_repeat1, - STATE(6762), 1, + STATE(6873), 1, sym_comment, - [219205] = 5, + [224346] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10961), 1, + ACTIONS(11014), 1, anon_sym_RBRACK, - STATE(6304), 1, + STATE(6447), 1, aux_sym__multiple_types_repeat1, - STATE(6763), 1, - sym_comment, - [219221] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4938), 1, - anon_sym_in2, - ACTIONS(10963), 1, - sym_long_flag_identifier, - ACTIONS(10965), 1, - anon_sym_EQ2, - STATE(6764), 1, + STATE(6874), 1, sym_comment, - [219237] = 5, + [224362] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10967), 1, + ACTIONS(11016), 1, anon_sym_RBRACK, - STATE(6305), 1, + STATE(6448), 1, aux_sym__multiple_types_repeat1, - STATE(6765), 1, + STATE(6875), 1, sym_comment, - [219253] = 5, + [224378] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(5883), 1, sym__entry_separator, - ACTIONS(10969), 1, + ACTIONS(11018), 1, anon_sym_RBRACK, - STATE(6306), 1, + STATE(2803), 1, aux_sym__multiple_types_repeat1, - STATE(6766), 1, + STATE(6876), 1, sym_comment, - [219269] = 5, + [224394] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10971), 1, + ACTIONS(11020), 1, anon_sym_RBRACK, - STATE(6307), 1, + STATE(6449), 1, aux_sym__multiple_types_repeat1, - STATE(6767), 1, + STATE(6877), 1, sym_comment, - [219285] = 4, + [224410] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2462), 1, + ACTIONS(2446), 1, sym__entry_separator, - STATE(6768), 1, + STATE(6878), 1, sym_comment, - ACTIONS(2460), 2, + ACTIONS(2444), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [219299] = 5, + [224424] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10973), 1, + ACTIONS(11022), 1, anon_sym_RBRACK, - STATE(6308), 1, + STATE(6450), 1, aux_sym__multiple_types_repeat1, - STATE(6769), 1, + STATE(6879), 1, sym_comment, - [219315] = 4, + [224440] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2070), 1, + ACTIONS(6489), 1, sym__entry_separator, - STATE(6770), 1, + ACTIONS(11024), 1, + anon_sym_RBRACK, + STATE(6451), 1, + aux_sym__multiple_types_repeat1, + STATE(6880), 1, + sym_comment, + [224456] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6881), 1, + sym_comment, + ACTIONS(10451), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [224468] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6882), 1, sym_comment, - ACTIONS(2068), 2, + ACTIONS(10211), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [224480] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(11026), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [219329] = 5, + STATE(6452), 1, + aux_sym__multiple_types_repeat1, + STATE(6883), 1, + sym_comment, + [224496] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1711), 1, - anon_sym_LPAREN2, - ACTIONS(1723), 1, - aux_sym__unquoted_in_record_token4, - STATE(6771), 1, + ACTIONS(11028), 1, + anon_sym_DQUOTE, + STATE(6884), 1, sym_comment, - STATE(7364), 1, - sym__expr_parenthesized_immediate, - [219345] = 5, + ACTIONS(11030), 2, + sym__escaped_str_content, + sym_escape_sequence, + [224510] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1563), 1, - anon_sym_SEMI, - ACTIONS(3857), 1, - sym__newline, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(6772), 1, + STATE(6885), 1, sym_comment, - [219361] = 3, + ACTIONS(10211), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [224522] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6773), 1, + STATE(6886), 1, sym_comment, - ACTIONS(10531), 3, + ACTIONS(10213), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [219373] = 3, + [224534] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6774), 1, + STATE(6887), 1, sym_comment, - ACTIONS(10535), 3, + ACTIONS(10213), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [219385] = 3, + [224546] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(6775), 1, + ACTIONS(1785), 1, + aux_sym_unquoted_token2, + STATE(6888), 1, + sym_comment, + ACTIONS(1787), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [224560] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6889), 1, sym_comment, - ACTIONS(10619), 3, + ACTIONS(10511), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [219397] = 5, + [224572] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10949), 1, + ACTIONS(10955), 1, sym_hex_digit, - ACTIONS(10975), 1, + ACTIONS(11032), 1, anon_sym_RBRACK, - STATE(6776), 1, + STATE(6890), 1, sym_comment, - STATE(6782), 1, + STATE(6893), 1, aux_sym_val_binary_repeat1, - [219413] = 4, + [224588] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1888), 1, - aux_sym_unquoted_token2, - STATE(6777), 1, + STATE(6891), 1, sym_comment, - ACTIONS(2189), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [219427] = 5, - ACTIONS(3), 1, + ACTIONS(10329), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [224600] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(10977), 1, + STATE(6892), 1, + sym_comment, + ACTIONS(11034), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [224612] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10955), 1, + sym_hex_digit, + ACTIONS(11036), 1, anon_sym_RBRACK, - STATE(6622), 1, - aux_sym__multiple_types_repeat1, - STATE(6778), 1, + STATE(6839), 1, + aux_sym_val_binary_repeat1, + STATE(6893), 1, sym_comment, - [219443] = 4, + [224628] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2409), 1, + ACTIONS(6489), 1, sym__entry_separator, - STATE(6779), 1, - sym_comment, - ACTIONS(2407), 2, + ACTIONS(11038), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [219457] = 5, + STATE(6467), 1, + aux_sym__multiple_types_repeat1, + STATE(6894), 1, + sym_comment, + [224644] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5556), 1, + ACTIONS(1709), 1, anon_sym_LPAREN2, - ACTIONS(7297), 1, - aux_sym__unquoted_in_list_token4, - STATE(6780), 1, + ACTIONS(1721), 1, + aux_sym__unquoted_in_record_token4, + STATE(6895), 1, sym_comment, - STATE(7401), 1, + STATE(7504), 1, sym__expr_parenthesized_immediate, - [219473] = 5, + [224660] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2206), 1, - anon_sym_EQ_GT, - ACTIONS(2210), 1, - anon_sym_PIPE, - ACTIONS(2212), 1, - aux_sym_unquoted_token4, - STATE(6781), 1, - sym_comment, - [219489] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10949), 1, - sym_hex_digit, - ACTIONS(10979), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(11040), 1, anon_sym_RBRACK, - STATE(6782), 1, + STATE(6468), 1, + aux_sym__multiple_types_repeat1, + STATE(6896), 1, sym_comment, - STATE(6852), 1, - aux_sym_val_binary_repeat1, - [219505] = 5, + [224676] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10981), 1, + ACTIONS(11042), 1, anon_sym_RBRACK, - STATE(6624), 1, + STATE(6469), 1, aux_sym__multiple_types_repeat1, - STATE(6783), 1, + STATE(6897), 1, sym_comment, - [219521] = 5, + [224692] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10983), 1, + ACTIONS(11044), 1, anon_sym_RBRACK, - STATE(6319), 1, + STATE(6470), 1, aux_sym__multiple_types_repeat1, - STATE(6784), 1, + STATE(6898), 1, sym_comment, - [219537] = 5, + [224708] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10985), 1, + ACTIONS(11046), 1, anon_sym_RBRACK, - STATE(6629), 1, + STATE(6471), 1, aux_sym__multiple_types_repeat1, - STATE(6785), 1, + STATE(6899), 1, sym_comment, - [219553] = 5, + [224724] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(2412), 1, sym__entry_separator, - ACTIONS(10987), 1, - anon_sym_RBRACK, - STATE(6320), 1, - aux_sym__multiple_types_repeat1, - STATE(6786), 1, + STATE(6900), 1, sym_comment, - [219569] = 5, + ACTIONS(2410), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [224738] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10989), 1, + ACTIONS(11048), 1, anon_sym_RBRACK, - STATE(6321), 1, + STATE(6472), 1, aux_sym__multiple_types_repeat1, - STATE(6787), 1, + STATE(6901), 1, sym_comment, - [219585] = 5, + [224754] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10991), 1, + ACTIONS(11050), 1, anon_sym_RBRACK, - STATE(6322), 1, + STATE(6473), 1, aux_sym__multiple_types_repeat1, - STATE(6788), 1, + STATE(6902), 1, sym_comment, - [219601] = 5, + [224770] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(8019), 1, sym__entry_separator, - ACTIONS(10993), 1, + ACTIONS(8023), 1, anon_sym_RBRACK, - STATE(6323), 1, - aux_sym__multiple_types_repeat1, - STATE(6789), 1, - sym_comment, - [219617] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6790), 1, + ACTIONS(11052), 1, + anon_sym_LT, + STATE(6903), 1, sym_comment, - ACTIONS(10105), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [219629] = 3, - ACTIONS(247), 1, + [224786] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6791), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(11054), 1, + anon_sym_RBRACK, + STATE(6321), 1, + aux_sym__multiple_types_repeat1, + STATE(6904), 1, sym_comment, - ACTIONS(10105), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [219641] = 5, + [224802] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10995), 1, + ACTIONS(11056), 1, anon_sym_RBRACK, - STATE(6324), 1, + STATE(6474), 1, aux_sym__multiple_types_repeat1, - STATE(6792), 1, + STATE(6905), 1, sym_comment, - [219657] = 5, + [224818] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(10997), 1, + ACTIONS(11058), 1, anon_sym_RBRACK, - STATE(6325), 1, + STATE(6322), 1, aux_sym__multiple_types_repeat1, - STATE(6793), 1, + STATE(6906), 1, sym_comment, - [219673] = 3, - ACTIONS(247), 1, + [224834] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6794), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(11060), 1, + anon_sym_RBRACK, + STATE(6323), 1, + aux_sym__multiple_types_repeat1, + STATE(6907), 1, sym_comment, - ACTIONS(10111), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [219685] = 5, + [224850] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(5883), 1, sym__entry_separator, - ACTIONS(10999), 1, + ACTIONS(11062), 1, anon_sym_RBRACK, - STATE(6326), 1, + STATE(2815), 1, aux_sym__multiple_types_repeat1, - STATE(6795), 1, + STATE(6908), 1, sym_comment, - [219701] = 3, + [224866] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6796), 1, + STATE(6909), 1, sym_comment, - ACTIONS(10158), 3, + ACTIONS(10511), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [219713] = 3, + [224878] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6797), 1, + STATE(6910), 1, sym_comment, - ACTIONS(10196), 3, + ACTIONS(10111), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [219725] = 3, + [224890] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(6798), 1, + ACTIONS(2278), 1, + aux_sym_unquoted_token2, + STATE(6911), 1, + sym_comment, + ACTIONS(2276), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [224904] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6219), 1, + anon_sym_AT, + ACTIONS(7853), 1, + anon_sym_EQ, + STATE(5122), 1, + sym_param_cmd, + STATE(6912), 1, + sym_comment, + [224920] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(11064), 1, + anon_sym_RBRACK, + STATE(6562), 1, + aux_sym__multiple_types_repeat1, + STATE(6913), 1, + sym_comment, + [224936] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6914), 1, sym_comment, - ACTIONS(10619), 3, + ACTIONS(10381), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [219737] = 3, + [224948] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6799), 1, + STATE(6915), 1, sym_comment, - ACTIONS(10196), 3, + ACTIONS(10381), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [219749] = 4, + [224960] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1911), 1, + ACTIONS(2416), 1, sym__entry_separator, - STATE(6800), 1, + STATE(6916), 1, sym_comment, - ACTIONS(1907), 2, + ACTIONS(2414), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [219763] = 3, + [224974] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(6801), 1, + ACTIONS(10955), 1, + sym_hex_digit, + ACTIONS(11066), 1, + anon_sym_RBRACK, + STATE(6917), 1, sym_comment, - ACTIONS(10771), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [219775] = 5, + STATE(6924), 1, + aux_sym_val_binary_repeat1, + [224990] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5014), 1, - sym__space, - ACTIONS(5016), 1, - sym__newline, - ACTIONS(11001), 1, - anon_sym_EQ2, - STATE(6802), 1, + ACTIONS(2420), 1, + sym__entry_separator, + STATE(6918), 1, sym_comment, - [219791] = 5, + ACTIONS(2418), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [225004] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10949), 1, - sym_hex_digit, - ACTIONS(11003), 1, - anon_sym_RBRACK, - STATE(6803), 1, + ACTIONS(6219), 1, + anon_sym_AT, + ACTIONS(7999), 1, + anon_sym_EQ, + STATE(5147), 1, + sym_param_cmd, + STATE(6919), 1, sym_comment, - STATE(6808), 1, - aux_sym_val_binary_repeat1, - [219807] = 5, + [225020] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4958), 1, - anon_sym_in2, - ACTIONS(11005), 1, - anon_sym_EQ2, - ACTIONS(11007), 1, - sym_short_flag_identifier, - STATE(6804), 1, + STATE(6920), 1, sym_comment, - [219823] = 3, + ACTIONS(10511), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225032] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6805), 1, - sym_comment, - ACTIONS(2500), 3, - anon_sym_RBRACK, + ACTIONS(6489), 1, sym__entry_separator, - sym__table_head_separator, - [219835] = 4, + ACTIONS(11068), 1, + anon_sym_RBRACK, + STATE(6594), 1, + aux_sym__multiple_types_repeat1, + STATE(6921), 1, + sym_comment, + [225048] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2393), 1, + ACTIONS(8019), 1, sym__entry_separator, - STATE(6806), 1, + ACTIONS(8023), 1, + anon_sym_RBRACK, + ACTIONS(11070), 1, + anon_sym_LT, + STATE(6922), 1, + sym_comment, + [225064] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6923), 1, sym_comment, - ACTIONS(2391), 2, + ACTIONS(10511), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225076] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10955), 1, + sym_hex_digit, + ACTIONS(11072), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [219849] = 4, + STATE(6839), 1, + aux_sym_val_binary_repeat1, + STATE(6924), 1, + sym_comment, + [225092] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1888), 1, + ACTIONS(1841), 1, aux_sym_unquoted_token2, - STATE(6807), 1, + STATE(6925), 1, sym_comment, - ACTIONS(1886), 2, + ACTIONS(1843), 2, anon_sym_PIPE, anon_sym_EQ_GT, - [219863] = 5, + [225106] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10949), 1, - sym_hex_digit, - ACTIONS(11009), 1, - anon_sym_RBRACK, - STATE(6808), 1, + STATE(6926), 1, sym_comment, - STATE(6852), 1, - aux_sym_val_binary_repeat1, - [219879] = 5, + ACTIONS(10511), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225118] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11011), 1, + ACTIONS(11074), 1, anon_sym_RBRACK, - STATE(6338), 1, + STATE(6483), 1, aux_sym__multiple_types_repeat1, - STATE(6809), 1, + STATE(6927), 1, + sym_comment, + [225134] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6928), 1, sym_comment, - [219895] = 4, + ACTIONS(6140), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [225146] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2415), 1, + ACTIONS(2290), 1, sym__entry_separator, - STATE(6810), 1, - sym_comment, - ACTIONS(2413), 2, - anon_sym_RBRACK, + ACTIONS(2314), 1, anon_sym_RBRACE, - [219909] = 5, + STATE(565), 1, + aux_sym__multiple_types_repeat1, + STATE(6929), 1, + sym_comment, + [225162] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11013), 1, + ACTIONS(11076), 1, anon_sym_RBRACK, - STATE(6339), 1, + STATE(6484), 1, aux_sym__multiple_types_repeat1, - STATE(6811), 1, + STATE(6930), 1, sym_comment, - [219925] = 5, + [225178] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11015), 1, + ACTIONS(11078), 1, anon_sym_RBRACK, - STATE(6340), 1, + STATE(6485), 1, aux_sym__multiple_types_repeat1, - STATE(6812), 1, + STATE(6931), 1, sym_comment, - [219941] = 5, + [225194] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11017), 1, + ACTIONS(11080), 1, anon_sym_RBRACK, - STATE(6341), 1, + STATE(6486), 1, aux_sym__multiple_types_repeat1, - STATE(6813), 1, + STATE(6932), 1, sym_comment, - [219957] = 5, + [225210] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11019), 1, + ACTIONS(11082), 1, anon_sym_RBRACK, - STATE(6701), 1, + STATE(6487), 1, aux_sym__multiple_types_repeat1, - STATE(6814), 1, + STATE(6933), 1, sym_comment, - [219973] = 5, + [225226] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(2424), 1, sym__entry_separator, - ACTIONS(11021), 1, + STATE(6934), 1, + sym_comment, + ACTIONS(2422), 2, anon_sym_RBRACK, - STATE(6342), 1, - aux_sym__multiple_types_repeat1, - STATE(6815), 1, + anon_sym_RBRACE, + [225240] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2428), 1, + sym__entry_separator, + STATE(6935), 1, sym_comment, - [219989] = 5, + ACTIONS(2426), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [225254] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11023), 1, + ACTIONS(11084), 1, anon_sym_RBRACK, - STATE(6343), 1, + STATE(6488), 1, aux_sym__multiple_types_repeat1, - STATE(6816), 1, + STATE(6936), 1, sym_comment, - [220005] = 5, + [225270] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11025), 1, + ACTIONS(11086), 1, anon_sym_RBRACK, - STATE(6344), 1, + STATE(6489), 1, aux_sym__multiple_types_repeat1, - STATE(6817), 1, + STATE(6937), 1, sym_comment, - [220021] = 4, + [225286] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2401), 1, + ACTIONS(2438), 1, sym__entry_separator, - STATE(6818), 1, + STATE(6938), 1, sym_comment, - ACTIONS(2399), 2, + ACTIONS(2436), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [220035] = 5, + [225300] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6939), 1, + sym_comment, + ACTIONS(10215), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225312] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11027), 1, + ACTIONS(11088), 1, anon_sym_RBRACK, - STATE(6345), 1, + STATE(6490), 1, aux_sym__multiple_types_repeat1, - STATE(6819), 1, + STATE(6940), 1, sym_comment, - [220051] = 3, + [225328] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(6820), 1, + ACTIONS(6219), 1, + anon_sym_AT, + ACTIONS(7853), 1, + anon_sym_EQ, + STATE(5142), 1, + sym_param_cmd, + STATE(6941), 1, sym_comment, - ACTIONS(10109), 3, + [225344] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6942), 1, + sym_comment, + ACTIONS(10329), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [220063] = 3, + [225356] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6821), 1, + STATE(6943), 1, sym_comment, - ACTIONS(11029), 3, + ACTIONS(10541), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [220075] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2423), 1, - sym__entry_separator, - STATE(6822), 1, - sym_comment, - ACTIONS(2421), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [220089] = 5, + [225368] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10949), 1, - sym_hex_digit, - ACTIONS(11031), 1, - anon_sym_RBRACK, - STATE(6823), 1, + ACTIONS(11090), 1, + anon_sym_LBRACK, + STATE(7644), 1, + sym_val_list, + STATE(6944), 2, sym_comment, - STATE(6949), 1, - aux_sym_val_binary_repeat1, - [220105] = 4, - ACTIONS(3), 1, + aux_sym_val_table_repeat1, + [225382] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2405), 1, - sym__entry_separator, - STATE(6824), 1, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(6921), 1, + sym_val_list, + STATE(6944), 1, + aux_sym_val_table_repeat1, + STATE(6945), 1, sym_comment, - ACTIONS(2403), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [220119] = 5, - ACTIONS(3), 1, + [225398] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2214), 1, - anon_sym_EQ_GT, - ACTIONS(2218), 1, - anon_sym_PIPE, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - STATE(6825), 1, + STATE(6946), 1, sym_comment, - [220135] = 4, - ACTIONS(3), 1, + ACTIONS(10329), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225410] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2377), 1, - sym__entry_separator, - STATE(6826), 1, + STATE(6947), 1, sym_comment, - ACTIONS(2375), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [220149] = 3, + ACTIONS(10541), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225422] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6827), 1, + STATE(6948), 1, sym_comment, - ACTIONS(10286), 3, + ACTIONS(10541), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [220161] = 5, + [225434] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - ACTIONS(2222), 1, - anon_sym_EQ_GT, - ACTIONS(2224), 1, - anon_sym_PIPE, - STATE(6828), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(11093), 1, + anon_sym_RBRACK, + STATE(3430), 1, + aux_sym__multiple_types_repeat1, + STATE(6949), 1, sym_comment, - [220177] = 4, - ACTIONS(3), 1, + [225450] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2427), 1, - sym__entry_separator, - STATE(6829), 1, + STATE(6950), 1, sym_comment, - ACTIONS(2425), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [220191] = 5, + ACTIONS(10541), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225462] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10949), 1, + ACTIONS(10955), 1, sym_hex_digit, - ACTIONS(11033), 1, + ACTIONS(11095), 1, anon_sym_RBRACK, - STATE(6830), 1, + STATE(6951), 1, sym_comment, - STATE(6834), 1, + STATE(6956), 1, aux_sym_val_binary_repeat1, - [220207] = 3, + [225478] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(11097), 1, + anon_sym_RBRACK, + STATE(3432), 1, + aux_sym__multiple_types_repeat1, + STATE(6952), 1, + sym_comment, + [225494] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6831), 1, + STATE(6953), 1, sym_comment, - ACTIONS(6140), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [220219] = 5, + ACTIONS(10541), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225506] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10949), 1, - sym_hex_digit, - ACTIONS(11035), 1, - anon_sym_RBRACK, - STATE(6832), 1, + STATE(6954), 1, sym_comment, - STATE(6962), 1, - aux_sym_val_binary_repeat1, - [220235] = 4, - ACTIONS(3), 1, + ACTIONS(10383), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225518] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11037), 1, - anon_sym_DQUOTE, - STATE(6833), 1, + STATE(6955), 1, sym_comment, - ACTIONS(11039), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220249] = 5, + ACTIONS(10329), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225530] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10949), 1, + ACTIONS(10955), 1, sym_hex_digit, - ACTIONS(11041), 1, + ACTIONS(11099), 1, anon_sym_RBRACK, - STATE(6834), 1, - sym_comment, - STATE(6852), 1, + STATE(6839), 1, aux_sym_val_binary_repeat1, - [220265] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6835), 1, + STATE(6956), 1, sym_comment, - ACTIONS(6140), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [220277] = 4, - ACTIONS(3), 1, + [225546] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11043), 1, - sym__table_head_separator, - STATE(6836), 1, + ACTIONS(4976), 1, + anon_sym_in2, + ACTIONS(11101), 1, + anon_sym_EQ2, + ACTIONS(11103), 1, + sym_short_flag_identifier, + STATE(6957), 1, sym_comment, - ACTIONS(1030), 2, - anon_sym_RBRACK, - sym__entry_separator, - [220291] = 5, + [225562] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11045), 1, + ACTIONS(11105), 1, anon_sym_RBRACK, - STATE(6354), 1, + STATE(6498), 1, aux_sym__multiple_types_repeat1, - STATE(6837), 1, + STATE(6958), 1, sym_comment, - [220307] = 3, + [225578] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6838), 1, + STATE(6959), 1, sym_comment, - ACTIONS(10292), 3, + ACTIONS(10457), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [220319] = 5, + [225590] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11047), 1, + ACTIONS(11107), 1, anon_sym_RBRACK, - STATE(6355), 1, + STATE(6499), 1, aux_sym__multiple_types_repeat1, - STATE(6839), 1, + STATE(6960), 1, sym_comment, - [220335] = 5, + [225606] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11049), 1, + ACTIONS(11109), 1, anon_sym_RBRACK, - STATE(6356), 1, + STATE(6500), 1, aux_sym__multiple_types_repeat1, - STATE(6840), 1, + STATE(6961), 1, sym_comment, - [220351] = 5, + [225622] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11051), 1, + ACTIONS(11111), 1, anon_sym_RBRACK, - STATE(6357), 1, + STATE(6501), 1, aux_sym__multiple_types_repeat1, - STATE(6841), 1, - sym_comment, - [220367] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6842), 1, + STATE(6962), 1, sym_comment, - ACTIONS(6144), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [220379] = 5, + [225638] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11053), 1, + ACTIONS(11113), 1, anon_sym_RBRACK, - STATE(6358), 1, + STATE(6502), 1, aux_sym__multiple_types_repeat1, - STATE(6843), 1, + STATE(6963), 1, sym_comment, - [220395] = 5, + [225654] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2206), 1, - sym__newline, - ACTIONS(2210), 1, - sym__space, - ACTIONS(2212), 1, - aux_sym_unquoted_token4, - STATE(6844), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(11115), 1, + anon_sym_RBRACK, + STATE(6503), 1, + aux_sym__multiple_types_repeat1, + STATE(6964), 1, sym_comment, - [220411] = 3, - ACTIONS(247), 1, + [225670] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6845), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(11117), 1, + anon_sym_RBRACK, + STATE(6504), 1, + aux_sym__multiple_types_repeat1, + STATE(6965), 1, sym_comment, - ACTIONS(10188), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [220423] = 5, + [225686] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11055), 1, + ACTIONS(11119), 1, anon_sym_RBRACK, - STATE(6359), 1, + STATE(3422), 1, aux_sym__multiple_types_repeat1, - STATE(6846), 1, + STATE(6966), 1, sym_comment, - [220439] = 5, + [225702] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11057), 1, + ACTIONS(11121), 1, anon_sym_RBRACK, - STATE(6360), 1, + STATE(6505), 1, aux_sym__multiple_types_repeat1, - STATE(6847), 1, + STATE(6967), 1, + sym_comment, + [225718] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6968), 1, + sym_comment, + ACTIONS(10217), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225730] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6969), 1, + sym_comment, + ACTIONS(10239), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225742] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11123), 1, + anon_sym_EQ2, + STATE(6970), 1, sym_comment, - [220455] = 5, + ACTIONS(5056), 2, + sym_identifier, + anon_sym_DOLLAR, + [225756] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3545), 1, + ACTIONS(1026), 1, sym__newline, - ACTIONS(3547), 1, + ACTIONS(1028), 1, sym__space, - STATE(1169), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(6848), 1, + ACTIONS(2228), 1, + aux_sym_unquoted_token4, + STATE(6971), 1, sym_comment, - [220471] = 5, - ACTIONS(3), 1, + [225772] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(11059), 1, - anon_sym_RBRACK, - STATE(6361), 1, - aux_sym__multiple_types_repeat1, - STATE(6849), 1, + STATE(6972), 1, sym_comment, - [220487] = 5, - ACTIONS(3), 1, + ACTIONS(6131), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [225784] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11061), 1, - anon_sym_POUND_BANG, - ACTIONS(11063), 1, + STATE(6973), 1, + sym_comment, + ACTIONS(10329), 3, + ts_builtin_sym_end, sym__newline, - STATE(6850), 1, + anon_sym_SEMI, + [225796] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6974), 1, sym_comment, - STATE(6900), 1, - aux_sym_shebang_repeat1, - [220503] = 5, - ACTIONS(3), 1, + ACTIONS(10217), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225808] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5714), 1, - sym__entry_separator, - ACTIONS(11065), 1, - anon_sym_RBRACK, - STATE(2694), 1, - aux_sym__multiple_types_repeat1, - STATE(6851), 1, + STATE(6975), 1, sym_comment, - [220519] = 4, + ACTIONS(10239), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225820] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11067), 1, - anon_sym_RBRACK, - ACTIONS(11069), 1, - sym_hex_digit, - STATE(6852), 2, + STATE(6976), 1, sym_comment, - aux_sym_val_binary_repeat1, - [220533] = 4, - ACTIONS(3), 1, + ACTIONS(10251), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225832] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2474), 1, - sym__entry_separator, - STATE(6853), 1, + STATE(6977), 1, sym_comment, - ACTIONS(2472), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [220547] = 5, + ACTIONS(10541), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225844] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10949), 1, + STATE(6978), 1, + sym_comment, + ACTIONS(10609), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225856] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10955), 1, sym_hex_digit, - ACTIONS(11072), 1, + ACTIONS(11125), 1, anon_sym_RBRACK, - STATE(6854), 1, + STATE(6979), 1, sym_comment, - STATE(6857), 1, + STATE(6983), 1, aux_sym_val_binary_repeat1, - [220563] = 4, - ACTIONS(3), 1, + [225872] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11074), 1, - anon_sym_LPAREN, - STATE(6855), 1, + STATE(6980), 1, sym_comment, - ACTIONS(11076), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [220577] = 5, + ACTIONS(10211), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225884] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(6184), 1, - anon_sym_LBRACE, - STATE(6684), 1, - sym_block, - STATE(6856), 1, + STATE(6981), 1, + sym_comment, + ACTIONS(10253), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225896] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6982), 1, sym_comment, - [220593] = 5, + ACTIONS(10211), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225908] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10949), 1, + ACTIONS(10955), 1, sym_hex_digit, - ACTIONS(11078), 1, + ACTIONS(11127), 1, anon_sym_RBRACK, - STATE(6852), 1, + STATE(6839), 1, aux_sym_val_binary_repeat1, - STATE(6857), 1, + STATE(6983), 1, sym_comment, - [220609] = 5, + [225924] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(2492), 1, sym__entry_separator, - ACTIONS(11080), 1, + STATE(6984), 1, + sym_comment, + ACTIONS(2490), 2, anon_sym_RBRACK, - STATE(6370), 1, + anon_sym_RBRACE, + [225938] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(11129), 1, + anon_sym_RBRACK, + STATE(6514), 1, aux_sym__multiple_types_repeat1, - STATE(6858), 1, + STATE(6985), 1, sym_comment, - [220625] = 3, + [225954] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6859), 1, + STATE(6986), 1, sym_comment, - ACTIONS(11082), 3, + ACTIONS(10219), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [220637] = 5, + [225966] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(2036), 1, sym__entry_separator, - ACTIONS(11084), 1, + STATE(6987), 1, + sym_comment, + ACTIONS(2034), 2, anon_sym_RBRACK, - STATE(6371), 1, - aux_sym__multiple_types_repeat1, - STATE(6860), 1, + anon_sym_RBRACE, + [225980] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(6988), 1, sym_comment, - [220653] = 5, + ACTIONS(10459), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [225992] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11086), 1, + ACTIONS(11131), 1, anon_sym_RBRACK, - STATE(6372), 1, + STATE(6515), 1, aux_sym__multiple_types_repeat1, - STATE(6861), 1, + STATE(6989), 1, sym_comment, - [220669] = 5, + [226008] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11088), 1, + ACTIONS(11133), 1, anon_sym_RBRACK, - STATE(6373), 1, + STATE(6516), 1, aux_sym__multiple_types_repeat1, - STATE(6862), 1, + STATE(6990), 1, sym_comment, - [220685] = 5, + [226024] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11090), 1, + ACTIONS(11135), 1, anon_sym_RBRACK, - STATE(6374), 1, + STATE(6517), 1, aux_sym__multiple_types_repeat1, - STATE(6863), 1, + STATE(6991), 1, sym_comment, - [220701] = 5, + [226040] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(5883), 1, sym__entry_separator, - ACTIONS(11092), 1, + ACTIONS(11137), 1, anon_sym_RBRACK, - STATE(6375), 1, + STATE(2804), 1, aux_sym__multiple_types_repeat1, - STATE(6864), 1, + STATE(6992), 1, sym_comment, - [220717] = 5, + [226056] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11094), 1, + ACTIONS(11139), 1, anon_sym_RBRACK, - STATE(6376), 1, + STATE(6518), 1, aux_sym__multiple_types_repeat1, - STATE(6865), 1, + STATE(6993), 1, sym_comment, - [220733] = 4, - ACTIONS(3), 1, + [226072] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2345), 1, - sym__entry_separator, - STATE(6866), 1, + STATE(6994), 1, sym_comment, - ACTIONS(2343), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [220747] = 5, - ACTIONS(247), 1, + ACTIONS(10479), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [226084] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6221), 1, - anon_sym_AT, - ACTIONS(11096), 1, - anon_sym_GT2, - STATE(6867), 1, + ACTIONS(5056), 1, + sym__space, + ACTIONS(5058), 1, + sym__newline, + ACTIONS(11141), 1, + anon_sym_EQ2, + STATE(6995), 1, sym_comment, - STATE(7849), 1, - sym_param_cmd, - [220763] = 5, + [226100] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11098), 1, + ACTIONS(11143), 1, anon_sym_RBRACK, - STATE(6377), 1, + STATE(6519), 1, aux_sym__multiple_types_repeat1, - STATE(6868), 1, + STATE(6996), 1, sym_comment, - [220779] = 5, + [226116] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11100), 1, + ACTIONS(11145), 1, anon_sym_RBRACK, - STATE(6661), 1, + STATE(6520), 1, aux_sym__multiple_types_repeat1, - STATE(6869), 1, - sym_comment, - [220795] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10033), 1, - anon_sym_if, - ACTIONS(11102), 1, - anon_sym_EQ_GT, - STATE(6870), 1, + STATE(6997), 1, sym_comment, - STATE(7887), 1, - sym_match_guard, - [220811] = 4, + [226132] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2369), 1, + ACTIONS(5883), 1, sym__entry_separator, - STATE(6871), 1, - sym_comment, - ACTIONS(2367), 2, + ACTIONS(11147), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [220825] = 4, + STATE(2805), 1, + aux_sym__multiple_types_repeat1, + STATE(6998), 1, + sym_comment, + [226148] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1974), 1, + ACTIONS(2392), 1, sym__entry_separator, - STATE(6872), 1, + STATE(6999), 1, sym_comment, - ACTIONS(1972), 2, + ACTIONS(2390), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [220839] = 5, + [226162] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11104), 1, + ACTIONS(11149), 1, anon_sym_RBRACK, - STATE(6663), 1, + STATE(6521), 1, aux_sym__multiple_types_repeat1, - STATE(6873), 1, + STATE(7000), 1, sym_comment, - [220855] = 5, + [226178] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(11106), 1, - anon_sym_RBRACK, - STATE(6668), 1, - aux_sym__multiple_types_repeat1, - STATE(6874), 1, + ACTIONS(11151), 1, + anon_sym_LPAREN, + STATE(7001), 1, sym_comment, - [220871] = 5, + ACTIONS(11153), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [226192] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10949), 1, - sym_hex_digit, - ACTIONS(11108), 1, - anon_sym_RBRACK, - STATE(6875), 1, + STATE(7002), 1, sym_comment, - STATE(6881), 1, - aux_sym_val_binary_repeat1, - [220887] = 4, + ACTIONS(10275), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [226204] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7003), 1, + sym_comment, + ACTIONS(10275), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [226216] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2353), 1, + ACTIONS(2369), 1, sym__entry_separator, - STATE(6876), 1, + STATE(7004), 1, sym_comment, - ACTIONS(2351), 2, + ACTIONS(2367), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [220901] = 4, + [226230] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7005), 1, + sym_comment, + ACTIONS(10277), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [226242] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1915), 1, - sym__entry_separator, - STATE(6877), 1, + STATE(7006), 1, sym_comment, - ACTIONS(1913), 2, + ACTIONS(1847), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - [220915] = 5, + sym__entry_separator, + sym__table_head_separator, + [226254] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - ACTIONS(5938), 1, - anon_sym_EQ_GT, - ACTIONS(5943), 1, - anon_sym_PIPE, - STATE(6878), 1, + ACTIONS(2381), 1, + sym__entry_separator, + STATE(7007), 1, sym_comment, - [220931] = 3, + ACTIONS(2379), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [226268] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(6879), 1, + ACTIONS(10955), 1, + sym_hex_digit, + ACTIONS(11155), 1, + anon_sym_RBRACK, + STATE(7008), 1, sym_comment, - ACTIONS(10815), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [220943] = 3, + STATE(7013), 1, + aux_sym_val_binary_repeat1, + [226284] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6880), 1, + STATE(7009), 1, sym_comment, - ACTIONS(10913), 3, + ACTIONS(10609), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [220955] = 5, + [226296] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10949), 1, - sym_hex_digit, - ACTIONS(11110), 1, - anon_sym_RBRACK, - STATE(6852), 1, - aux_sym_val_binary_repeat1, - STATE(6881), 1, + ACTIONS(9889), 1, + anon_sym_if, + ACTIONS(11157), 1, + anon_sym_EQ_GT, + STATE(7010), 1, sym_comment, - [220971] = 4, + STATE(7724), 1, + sym_match_guard, + [226312] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2431), 1, + ACTIONS(5883), 1, sym__entry_separator, - STATE(6882), 1, - sym_comment, - ACTIONS(2429), 2, + ACTIONS(11159), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [220985] = 4, + STATE(2825), 1, + aux_sym__multiple_types_repeat1, + STATE(7011), 1, + sym_comment, + [226328] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2435), 1, + ACTIONS(2040), 1, sym__entry_separator, - STATE(6883), 1, + STATE(7012), 1, sym_comment, - ACTIONS(2433), 2, + ACTIONS(2038), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [220999] = 5, + [226342] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10955), 1, + sym_hex_digit, + ACTIONS(11161), 1, + anon_sym_RBRACK, + STATE(6839), 1, + aux_sym_val_binary_repeat1, + STATE(7013), 1, + sym_comment, + [226358] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6040), 1, sym__entry_separator, - ACTIONS(11112), 1, - anon_sym_RBRACK, - STATE(6387), 1, + ACTIONS(11163), 1, + anon_sym_RBRACE, + STATE(2929), 1, aux_sym__multiple_types_repeat1, - STATE(6884), 1, + STATE(7014), 1, sym_comment, - [221015] = 5, + [226374] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6044), 1, + ACTIONS(6040), 1, sym__entry_separator, - ACTIONS(11114), 1, + ACTIONS(11165), 1, anon_sym_RBRACE, - STATE(2911), 1, + STATE(2930), 1, aux_sym__multiple_types_repeat1, - STATE(6885), 1, + STATE(7015), 1, sym_comment, - [221031] = 4, + [226390] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2478), 1, + ACTIONS(6489), 1, sym__entry_separator, - STATE(6886), 1, + ACTIONS(11167), 1, + anon_sym_RBRACK, + STATE(6529), 1, + aux_sym__multiple_types_repeat1, + STATE(7016), 1, + sym_comment, + [226406] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1851), 1, + sym__entry_separator, + STATE(7017), 1, sym_comment, - ACTIONS(2476), 2, + ACTIONS(1847), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [221045] = 5, + [226420] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11116), 1, + ACTIONS(11169), 1, anon_sym_RBRACK, - STATE(6388), 1, + STATE(6530), 1, aux_sym__multiple_types_repeat1, - STATE(6887), 1, + STATE(7018), 1, sym_comment, - [221061] = 5, + [226436] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11118), 1, + ACTIONS(11171), 1, anon_sym_RBRACK, - STATE(6389), 1, + STATE(6531), 1, aux_sym__multiple_types_repeat1, - STATE(6888), 1, + STATE(7019), 1, sym_comment, - [221077] = 5, + [226452] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11120), 1, + ACTIONS(11173), 1, anon_sym_RBRACK, - STATE(6390), 1, + STATE(6532), 1, aux_sym__multiple_types_repeat1, - STATE(6889), 1, - sym_comment, - [221093] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6890), 1, + STATE(7020), 1, sym_comment, - ACTIONS(10915), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [221105] = 5, + [226468] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11122), 1, + ACTIONS(11175), 1, anon_sym_RBRACK, - STATE(6391), 1, + STATE(6533), 1, aux_sym__multiple_types_repeat1, - STATE(6891), 1, - sym_comment, - [221121] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2214), 1, - sym__newline, - ACTIONS(2218), 1, - sym__space, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - STATE(6892), 1, + STATE(7021), 1, sym_comment, - [221137] = 5, - ACTIONS(3), 1, + [226484] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - ACTIONS(2222), 1, - sym__newline, - ACTIONS(2224), 1, - sym__space, - STATE(6893), 1, + ACTIONS(6219), 1, + anon_sym_AT, + ACTIONS(11177), 1, + anon_sym_GT2, + STATE(7022), 1, sym_comment, - [221153] = 5, + STATE(7957), 1, + sym_param_cmd, + [226500] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11124), 1, + ACTIONS(11179), 1, anon_sym_RBRACK, - STATE(6392), 1, + STATE(6534), 1, aux_sym__multiple_types_repeat1, - STATE(6894), 1, + STATE(7023), 1, sym_comment, - [221169] = 5, + [226516] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11126), 1, + ACTIONS(11181), 1, anon_sym_RBRACK, - STATE(6393), 1, + STATE(6535), 1, aux_sym__multiple_types_repeat1, - STATE(6895), 1, - sym_comment, - [221185] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2173), 1, - sym__entry_separator, - STATE(6896), 1, + STATE(7024), 1, sym_comment, - ACTIONS(2167), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [221199] = 4, - ACTIONS(3), 1, + [226532] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2357), 1, - sym__entry_separator, - STATE(6897), 1, + ACTIONS(9887), 1, + anon_sym_PIPE, + ACTIONS(11183), 1, + anon_sym_EQ_GT, + STATE(7025), 1, sym_comment, - ACTIONS(2355), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [221213] = 5, + STATE(7240), 1, + aux_sym_match_pattern_repeat1, + [226548] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11128), 1, + ACTIONS(11185), 1, anon_sym_RBRACK, - STATE(6394), 1, + STATE(6342), 1, aux_sym__multiple_types_repeat1, - STATE(6898), 1, + STATE(7026), 1, sym_comment, - [221229] = 4, + [226564] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2373), 1, + ACTIONS(6489), 1, sym__entry_separator, - STATE(6899), 1, - sym_comment, - ACTIONS(2371), 2, + ACTIONS(11187), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [221243] = 4, + STATE(6536), 1, + aux_sym__multiple_types_repeat1, + STATE(7027), 1, + sym_comment, + [226580] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1296), 1, anon_sym_POUND_BANG, - ACTIONS(11130), 1, + ACTIONS(11189), 1, sym__newline, - STATE(6900), 2, + STATE(7028), 2, sym_comment, aux_sym_shebang_repeat1, - [221257] = 3, - ACTIONS(247), 1, + [226594] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6901), 1, + ACTIONS(2385), 1, + sym__entry_separator, + STATE(7029), 1, sym_comment, - ACTIONS(10875), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [221269] = 4, + ACTIONS(2383), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [226608] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11133), 1, - anon_sym_LPAREN, - STATE(6902), 1, + ACTIONS(1709), 1, + anon_sym_LPAREN2, + ACTIONS(1781), 1, + aux_sym__unquoted_in_record_token4, + STATE(7030), 1, sym_comment, - ACTIONS(11135), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [221283] = 4, + STATE(7536), 1, + sym__expr_parenthesized_immediate, + [226624] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2181), 1, + ACTIONS(1901), 1, sym__entry_separator, - STATE(6903), 1, + STATE(7031), 1, sym_comment, - ACTIONS(2175), 2, + ACTIONS(1899), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [221297] = 4, - ACTIONS(247), 1, + [226638] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1755), 1, - aux_sym_unquoted_token2, - STATE(6904), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(11192), 1, + anon_sym_RBRACK, + STATE(6343), 1, + aux_sym__multiple_types_repeat1, + STATE(7032), 1, sym_comment, - ACTIONS(1757), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [221311] = 4, + [226654] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2361), 1, + ACTIONS(6489), 1, sym__entry_separator, - STATE(6905), 1, - sym_comment, - ACTIONS(2359), 2, + ACTIONS(11194), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [221325] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6906), 1, + STATE(6344), 1, + aux_sym__multiple_types_repeat1, + STATE(7033), 1, sym_comment, - ACTIONS(10943), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [221337] = 3, + [226670] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6907), 1, + STATE(7034), 1, sym_comment, - ACTIONS(10767), 3, + ACTIONS(10255), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [221349] = 5, + [226682] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10949), 1, + ACTIONS(10955), 1, sym_hex_digit, - ACTIONS(11137), 1, + ACTIONS(11196), 1, anon_sym_RBRACK, - STATE(6908), 1, + STATE(7035), 1, sym_comment, - STATE(6911), 1, + STATE(7037), 1, aux_sym_val_binary_repeat1, - [221365] = 3, + [226698] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6909), 1, + STATE(7036), 1, sym_comment, - ACTIONS(10348), 3, + ACTIONS(10277), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [221377] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2290), 1, - sym__entry_separator, - ACTIONS(11139), 1, - anon_sym_RBRACE, - STATE(584), 1, - aux_sym__multiple_types_repeat1, - STATE(6910), 1, - sym_comment, - [221393] = 5, + [226710] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10949), 1, + ACTIONS(10955), 1, sym_hex_digit, - ACTIONS(11141), 1, + ACTIONS(11198), 1, anon_sym_RBRACK, - STATE(6852), 1, + STATE(6839), 1, aux_sym_val_binary_repeat1, - STATE(6911), 1, + STATE(7037), 1, sym_comment, - [221409] = 3, - ACTIONS(247), 1, + [226726] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6912), 1, + ACTIONS(6040), 1, + sym__entry_separator, + ACTIONS(6110), 1, + anon_sym_RBRACE, + STATE(2971), 1, + aux_sym__multiple_types_repeat1, + STATE(7038), 1, sym_comment, - ACTIONS(11143), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [221421] = 5, + [226742] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11145), 1, + ACTIONS(11200), 1, anon_sym_RBRACK, - STATE(6403), 1, + STATE(6547), 1, aux_sym__multiple_types_repeat1, - STATE(6913), 1, - sym_comment, - [221437] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6914), 1, + STATE(7039), 1, sym_comment, - ACTIONS(10503), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [221449] = 3, + [226758] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6915), 1, + STATE(7040), 1, sym_comment, - ACTIONS(10503), 3, + ACTIONS(10357), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [221461] = 5, + [226770] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(5706), 1, sym__entry_separator, - ACTIONS(11147), 1, + ACTIONS(11202), 1, anon_sym_RBRACK, - STATE(6404), 1, + STATE(2709), 1, aux_sym__multiple_types_repeat1, - STATE(6916), 1, + STATE(7041), 1, sym_comment, - [221477] = 5, + [226786] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11149), 1, + ACTIONS(11204), 1, anon_sym_RBRACK, - STATE(6405), 1, + STATE(6548), 1, aux_sym__multiple_types_repeat1, - STATE(6917), 1, + STATE(7042), 1, sym_comment, - [221493] = 5, + [226802] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11151), 1, + ACTIONS(11206), 1, anon_sym_RBRACK, - STATE(6406), 1, + STATE(6549), 1, aux_sym__multiple_types_repeat1, - STATE(6918), 1, - sym_comment, - [221509] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10439), 1, - anon_sym_LPAREN, - STATE(6919), 1, + STATE(7043), 1, sym_comment, - ACTIONS(10441), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [221523] = 5, + [226818] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11153), 1, + ACTIONS(11208), 1, anon_sym_RBRACK, - STATE(6407), 1, + STATE(6550), 1, aux_sym__multiple_types_repeat1, - STATE(6920), 1, + STATE(7044), 1, sym_comment, - [221539] = 3, + [226834] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(6921), 1, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(6299), 1, + sym_block, + STATE(7045), 1, sym_comment, - ACTIONS(10133), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [221551] = 5, + [226850] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11155), 1, + ACTIONS(11210), 1, anon_sym_RBRACK, - STATE(6408), 1, + STATE(6551), 1, aux_sym__multiple_types_repeat1, - STATE(6922), 1, + STATE(7046), 1, sym_comment, - [221567] = 5, + [226866] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(2270), 1, + anon_sym_PIPE, + STATE(7047), 1, + sym_comment, + ACTIONS(2268), 2, + anon_sym_EQ_GT, + aux_sym_unquoted_token4, + [226880] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11157), 1, + ACTIONS(11212), 1, anon_sym_RBRACK, - STATE(6409), 1, + STATE(6552), 1, aux_sym__multiple_types_repeat1, - STATE(6923), 1, - sym_comment, - [221583] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1292), 1, - anon_sym_RPAREN, - STATE(6924), 1, + STATE(7048), 1, sym_comment, - ACTIONS(1285), 2, - sym__newline, - anon_sym_SEMI, - [221597] = 5, + [226896] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11159), 1, + ACTIONS(11214), 1, anon_sym_RBRACK, - STATE(6410), 1, + STATE(6553), 1, aux_sym__multiple_types_repeat1, - STATE(6925), 1, + STATE(7049), 1, sym_comment, - [221613] = 5, + [226912] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - ACTIONS(7218), 1, - aux_sym_unquoted_token4, - STATE(6926), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(11216), 1, + anon_sym_RBRACK, + STATE(6554), 1, + aux_sym__multiple_types_repeat1, + STATE(7050), 1, sym_comment, - STATE(7412), 1, - sym__expr_parenthesized_immediate, - [221629] = 3, + [226928] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6927), 1, + STATE(7051), 1, sym_comment, - ACTIONS(10811), 3, + ACTIONS(10153), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [221641] = 4, - ACTIONS(247), 1, + [226940] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11163), 1, - anon_sym_COMMA, - STATE(6928), 1, - sym_comment, - ACTIONS(11161), 2, + ACTIONS(5706), 1, + sym__entry_separator, + ACTIONS(11218), 1, anon_sym_RBRACK, - sym_hex_digit, - [221655] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6929), 1, + STATE(2674), 1, + aux_sym__multiple_types_repeat1, + STATE(7052), 1, sym_comment, - ACTIONS(10368), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [221667] = 3, - ACTIONS(247), 1, + [226956] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6930), 1, + ACTIONS(6040), 1, + sym__entry_separator, + ACTIONS(11220), 1, + anon_sym_RBRACE, + STATE(3015), 1, + aux_sym__multiple_types_repeat1, + STATE(7053), 1, sym_comment, - ACTIONS(10917), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [221679] = 3, - ACTIONS(247), 1, + [226972] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6931), 1, + ACTIONS(1719), 1, + sym__entry_separator, + STATE(7054), 1, sym_comment, - ACTIONS(1292), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [221691] = 3, + ACTIONS(1707), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [226986] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6932), 1, + STATE(7055), 1, sym_comment, - ACTIONS(5936), 3, + ACTIONS(5801), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [221703] = 5, + [226998] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10949), 1, + ACTIONS(10955), 1, sym_hex_digit, - ACTIONS(11165), 1, + ACTIONS(11222), 1, anon_sym_RBRACK, - STATE(6933), 1, + STATE(7056), 1, sym_comment, - STATE(6934), 1, + STATE(7061), 1, aux_sym_val_binary_repeat1, - [221719] = 5, + [227014] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10949), 1, - sym_hex_digit, - ACTIONS(11167), 1, + STATE(7057), 1, + sym_comment, + ACTIONS(10277), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [227026] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5883), 1, + sym__entry_separator, + ACTIONS(11224), 1, anon_sym_RBRACK, - STATE(6852), 1, - aux_sym_val_binary_repeat1, - STATE(6934), 1, + STATE(2817), 1, + aux_sym__multiple_types_repeat1, + STATE(7058), 1, sym_comment, - [221735] = 5, + [227042] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(5883), 1, sym__entry_separator, - ACTIONS(11169), 1, + ACTIONS(11226), 1, anon_sym_RBRACK, - STATE(6417), 1, + STATE(2818), 1, aux_sym__multiple_types_repeat1, - STATE(6935), 1, + STATE(7059), 1, sym_comment, - [221751] = 3, + [227058] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2128), 1, + sym__entry_separator, + STATE(7060), 1, + sym_comment, + ACTIONS(2122), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [227072] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(6936), 1, + ACTIONS(10955), 1, + sym_hex_digit, + ACTIONS(11228), 1, + anon_sym_RBRACK, + STATE(6839), 1, + aux_sym_val_binary_repeat1, + STATE(7061), 1, + sym_comment, + [227088] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7062), 1, sym_comment, - ACTIONS(10553), 3, + ACTIONS(8917), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [221763] = 5, + [227100] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6044), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(6060), 1, - anon_sym_RBRACE, - STATE(2926), 1, + ACTIONS(11230), 1, + anon_sym_RBRACK, + STATE(6817), 1, aux_sym__multiple_types_repeat1, - STATE(6937), 1, + STATE(7063), 1, sym_comment, - [221779] = 5, + [227116] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11171), 1, + ACTIONS(11232), 1, anon_sym_RBRACK, - STATE(6418), 1, + STATE(6765), 1, aux_sym__multiple_types_repeat1, - STATE(6938), 1, + STATE(7064), 1, sym_comment, - [221795] = 5, + [227132] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11173), 1, + ACTIONS(11234), 1, anon_sym_RBRACK, - STATE(6419), 1, + STATE(6565), 1, aux_sym__multiple_types_repeat1, - STATE(6939), 1, + STATE(7065), 1, sym_comment, - [221811] = 5, + [227148] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11175), 1, + ACTIONS(11236), 1, anon_sym_RBRACK, - STATE(6420), 1, + STATE(6566), 1, aux_sym__multiple_types_repeat1, - STATE(6940), 1, + STATE(7066), 1, sym_comment, - [221827] = 4, + [227164] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2139), 1, + ACTIONS(6489), 1, sym__entry_separator, - STATE(6941), 1, + ACTIONS(11238), 1, + anon_sym_RBRACK, + STATE(6567), 1, + aux_sym__multiple_types_repeat1, + STATE(7067), 1, sym_comment, - ACTIONS(2133), 2, + [227180] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(11240), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [221841] = 5, + STATE(6568), 1, + aux_sym__multiple_types_repeat1, + STATE(7068), 1, + sym_comment, + [227196] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(1707), 1, + anon_sym_RBRACK, + ACTIONS(1719), 1, sym__entry_separator, - ACTIONS(11177), 1, + ACTIONS(8653), 1, + aux_sym__unquoted_in_list_token2, + STATE(7069), 1, + sym_comment, + [227212] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(11242), 1, anon_sym_RBRACK, - STATE(6421), 1, + STATE(6569), 1, aux_sym__multiple_types_repeat1, - STATE(6942), 1, + STATE(7070), 1, sym_comment, - [221857] = 5, + [227228] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11179), 1, + ACTIONS(11244), 1, anon_sym_RBRACK, - STATE(6422), 1, + STATE(6570), 1, aux_sym__multiple_types_repeat1, - STATE(6943), 1, + STATE(7071), 1, sym_comment, - [221873] = 5, + [227244] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11181), 1, + ACTIONS(11246), 1, anon_sym_RBRACK, - STATE(6212), 1, + STATE(6571), 1, aux_sym__multiple_types_repeat1, - STATE(6944), 1, + STATE(7072), 1, sym_comment, - [221889] = 4, + [227260] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1739), 1, - aux_sym_unquoted_token2, - STATE(6945), 1, + STATE(7073), 1, sym_comment, - ACTIONS(1741), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [221903] = 5, + ACTIONS(10277), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [227272] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(2408), 1, sym__entry_separator, - ACTIONS(11183), 1, - anon_sym_RBRACK, - STATE(6424), 1, - aux_sym__multiple_types_repeat1, - STATE(6946), 1, + STATE(7074), 1, sym_comment, - [221919] = 4, + ACTIONS(2406), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [227286] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1990), 1, + ACTIONS(2136), 1, sym__entry_separator, - STATE(6947), 1, + STATE(7075), 1, sym_comment, - ACTIONS(1988), 2, + ACTIONS(2130), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [221933] = 5, + [227300] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11185), 1, + ACTIONS(11248), 1, anon_sym_RBRACK, - STATE(6683), 1, + STATE(6768), 1, aux_sym__multiple_types_repeat1, - STATE(6948), 1, - sym_comment, - [221949] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10949), 1, - sym_hex_digit, - ACTIONS(11187), 1, - anon_sym_RBRACK, - STATE(6852), 1, - aux_sym_val_binary_repeat1, - STATE(6949), 1, + STATE(7076), 1, sym_comment, - [221965] = 5, + [227316] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10949), 1, + ACTIONS(10955), 1, sym_hex_digit, - ACTIONS(11189), 1, + ACTIONS(11250), 1, anon_sym_RBRACK, - STATE(6950), 1, + STATE(7077), 1, sym_comment, - STATE(6955), 1, + STATE(7079), 1, aux_sym_val_binary_repeat1, - [221981] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym_unquoted_token2, - STATE(6951), 1, - sym_comment, - ACTIONS(1874), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [221995] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6952), 1, - sym_comment, - ACTIONS(10765), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [222007] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2290), 1, - sym__entry_separator, - ACTIONS(11191), 1, - anon_sym_RBRACE, - STATE(587), 1, - aux_sym__multiple_types_repeat1, - STATE(6953), 1, - sym_comment, - [222023] = 3, + [227332] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6954), 1, + STATE(7078), 1, sym_comment, - ACTIONS(10553), 3, + ACTIONS(10541), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [222035] = 5, + [227344] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10949), 1, + ACTIONS(10955), 1, sym_hex_digit, - ACTIONS(11193), 1, + ACTIONS(11252), 1, anon_sym_RBRACK, - STATE(6852), 1, + STATE(6839), 1, aux_sym_val_binary_repeat1, - STATE(6955), 1, + STATE(7079), 1, sym_comment, - [222051] = 5, + [227360] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11195), 1, + ACTIONS(11254), 1, anon_sym_RBRACK, - STATE(6431), 1, + STATE(6579), 1, aux_sym__multiple_types_repeat1, - STATE(6956), 1, + STATE(7080), 1, sym_comment, - [222067] = 3, + [227376] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6957), 1, + STATE(7081), 1, sym_comment, - ACTIONS(10767), 3, + ACTIONS(10541), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [222079] = 4, + [227388] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11197), 1, - sym__table_head_separator, - STATE(6958), 1, - sym_comment, - ACTIONS(1030), 2, - anon_sym_RBRACK, + ACTIONS(6489), 1, sym__entry_separator, - [222093] = 5, + ACTIONS(11256), 1, + anon_sym_RBRACK, + STATE(6580), 1, + aux_sym__multiple_types_repeat1, + STATE(7082), 1, + sym_comment, + [227404] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11199), 1, + ACTIONS(11258), 1, anon_sym_RBRACK, - STATE(6432), 1, + STATE(6581), 1, aux_sym__multiple_types_repeat1, - STATE(6959), 1, + STATE(7083), 1, sym_comment, - [222109] = 5, + [227420] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11201), 1, + ACTIONS(11260), 1, anon_sym_RBRACK, - STATE(6433), 1, + STATE(6582), 1, aux_sym__multiple_types_repeat1, - STATE(6960), 1, + STATE(7084), 1, sym_comment, - [222125] = 5, + [227436] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11203), 1, + ACTIONS(11262), 1, anon_sym_RBRACK, - STATE(6434), 1, + STATE(6583), 1, aux_sym__multiple_types_repeat1, - STATE(6961), 1, + STATE(7085), 1, sym_comment, - [222141] = 5, + [227452] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10949), 1, - sym_hex_digit, - ACTIONS(11205), 1, - anon_sym_RBRACK, - STATE(6852), 1, - aux_sym_val_binary_repeat1, - STATE(6962), 1, + STATE(7086), 1, sym_comment, - [222157] = 5, + ACTIONS(8921), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [227464] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11207), 1, + ACTIONS(11264), 1, anon_sym_RBRACK, - STATE(6435), 1, + STATE(6584), 1, aux_sym__multiple_types_repeat1, - STATE(6963), 1, + STATE(7087), 1, sym_comment, - [222173] = 5, + [227480] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2290), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(2306), 1, - anon_sym_RBRACE, - STATE(589), 1, + ACTIONS(11266), 1, + anon_sym_RBRACK, + STATE(6585), 1, aux_sym__multiple_types_repeat1, - STATE(6964), 1, + STATE(7088), 1, sym_comment, - [222189] = 5, + [227496] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5714), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11209), 1, + ACTIONS(11268), 1, anon_sym_RBRACK, - STATE(2658), 1, + STATE(6347), 1, aux_sym__multiple_types_repeat1, - STATE(6965), 1, + STATE(7089), 1, sym_comment, - [222205] = 5, + [227512] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11211), 1, + ACTIONS(11270), 1, anon_sym_RBRACK, - STATE(6436), 1, + STATE(6586), 1, aux_sym__multiple_types_repeat1, - STATE(6966), 1, + STATE(7090), 1, sym_comment, - [222221] = 5, - ACTIONS(3), 1, + [227528] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(11213), 1, - anon_sym_RBRACK, - STATE(6437), 1, - aux_sym__multiple_types_repeat1, - STATE(6967), 1, + STATE(7091), 1, sym_comment, - [222237] = 5, + ACTIONS(10151), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [227540] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5878), 1, - sym__entry_separator, - ACTIONS(11215), 1, + ACTIONS(6054), 1, anon_sym_RBRACK, - STATE(2791), 1, - aux_sym__multiple_types_repeat1, - STATE(6968), 1, + STATE(7092), 1, sym_comment, - [222253] = 4, + ACTIONS(6056), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [227554] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2482), 1, - sym__entry_separator, - STATE(6969), 1, + ACTIONS(5539), 1, + anon_sym_LPAREN2, + ACTIONS(7293), 1, + aux_sym__unquoted_in_list_token4, + STATE(7093), 1, sym_comment, - ACTIONS(2480), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [222267] = 5, + STATE(7529), 1, + sym__expr_parenthesized_immediate, + [227570] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11217), 1, + ACTIONS(11272), 1, anon_sym_RBRACK, - STATE(6438), 1, + STATE(6787), 1, aux_sym__multiple_types_repeat1, - STATE(6970), 1, - sym_comment, - [222283] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6971), 1, + STATE(7094), 1, sym_comment, - ACTIONS(10135), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [222295] = 3, + [227586] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6972), 1, + STATE(7095), 1, sym_comment, - ACTIONS(6158), 3, + ACTIONS(11274), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [222307] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1783), 1, - aux_sym_unquoted_token2, - STATE(6973), 1, - sym_comment, - ACTIONS(1785), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [222321] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6974), 1, - sym_comment, - ACTIONS(10194), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [222333] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6975), 1, - sym_comment, - ACTIONS(10135), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [222345] = 5, + [227598] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10949), 1, + ACTIONS(10955), 1, sym_hex_digit, - ACTIONS(11219), 1, - anon_sym_RBRACK, - STATE(6748), 1, - aux_sym_val_binary_repeat1, - STATE(6976), 1, - sym_comment, - [222361] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2443), 1, - sym__entry_separator, - STATE(6977), 1, - sym_comment, - ACTIONS(2441), 2, + ACTIONS(11276), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [222375] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5556), 1, - anon_sym_LPAREN2, - ACTIONS(8667), 1, - aux_sym__unquoted_in_list_token4, - STATE(6978), 1, + STATE(7096), 1, sym_comment, - STATE(7456), 1, - sym__expr_parenthesized_immediate, - [222391] = 3, + STATE(7098), 1, + aux_sym_val_binary_repeat1, + [227614] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6979), 1, - sym_comment, - ACTIONS(10781), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [222403] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(11221), 1, - anon_sym_RBRACK, - STATE(6444), 1, - aux_sym__multiple_types_repeat1, - STATE(6980), 1, - sym_comment, - [222419] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5051), 1, - sym__space, - ACTIONS(5053), 1, + STATE(7097), 1, + sym_comment, + ACTIONS(10279), 3, + ts_builtin_sym_end, sym__newline, - ACTIONS(11223), 1, - anon_sym_EQ2, - STATE(6981), 1, + anon_sym_SEMI, + [227626] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10955), 1, + sym_hex_digit, + ACTIONS(11278), 1, + anon_sym_RBRACK, + STATE(6839), 1, + aux_sym_val_binary_repeat1, + STATE(7098), 1, sym_comment, - [222435] = 5, + [227642] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11225), 1, + ACTIONS(11280), 1, anon_sym_RBRACK, - STATE(6445), 1, + STATE(6596), 1, aux_sym__multiple_types_repeat1, - STATE(6982), 1, + STATE(7099), 1, sym_comment, - [222451] = 5, + [227658] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11227), 1, + ACTIONS(11282), 1, anon_sym_RBRACK, - STATE(6446), 1, + STATE(6395), 1, aux_sym__multiple_types_repeat1, - STATE(6983), 1, + STATE(7100), 1, sym_comment, - [222467] = 5, + [227674] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11229), 1, + ACTIONS(11284), 1, anon_sym_RBRACK, - STATE(6447), 1, + STATE(6597), 1, aux_sym__multiple_types_repeat1, - STATE(6984), 1, + STATE(7101), 1, sym_comment, - [222483] = 5, + [227690] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11231), 1, + ACTIONS(11286), 1, anon_sym_RBRACK, - STATE(6448), 1, + STATE(6598), 1, aux_sym__multiple_types_repeat1, - STATE(6985), 1, - sym_comment, - [222499] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1579), 1, - aux_sym_unquoted_token2, - STATE(6986), 1, - sym_comment, - ACTIONS(2238), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [222513] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1890), 1, - aux_sym_unquoted_token2, - STATE(6987), 1, + STATE(7102), 1, sym_comment, - ACTIONS(1892), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [222527] = 5, + [227706] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11233), 1, + ACTIONS(11288), 1, anon_sym_RBRACK, - STATE(6449), 1, + STATE(6599), 1, aux_sym__multiple_types_repeat1, - STATE(6988), 1, + STATE(7103), 1, sym_comment, - [222543] = 5, + [227722] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11235), 1, + ACTIONS(11290), 1, anon_sym_RBRACK, - STATE(6450), 1, + STATE(6600), 1, aux_sym__multiple_types_repeat1, - STATE(6989), 1, + STATE(7104), 1, sym_comment, - [222559] = 5, + [227738] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6044), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(6062), 1, - anon_sym_RBRACE, - STATE(2933), 1, + ACTIONS(11292), 1, + anon_sym_RBRACK, + STATE(6601), 1, aux_sym__multiple_types_repeat1, - STATE(6990), 1, + STATE(7105), 1, sym_comment, - [222575] = 4, + [227754] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1994), 1, + ACTIONS(6489), 1, sym__entry_separator, - STATE(6991), 1, - sym_comment, - ACTIONS(1992), 2, + ACTIONS(11294), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [222589] = 5, + STATE(6602), 1, + aux_sym__multiple_types_repeat1, + STATE(7106), 1, + sym_comment, + [227770] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11237), 1, + ACTIONS(11296), 1, anon_sym_RBRACK, - STATE(6451), 1, + STATE(6603), 1, aux_sym__multiple_types_repeat1, - STATE(6992), 1, - sym_comment, - [222605] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6993), 1, + STATE(7107), 1, sym_comment, - ACTIONS(5748), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [222617] = 3, + [227786] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6994), 1, + STATE(7108), 1, sym_comment, - ACTIONS(10139), 3, + ACTIONS(10357), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [222629] = 3, + [227798] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6995), 1, + STATE(7109), 1, sym_comment, - ACTIONS(6162), 3, + ACTIONS(5926), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [222641] = 3, + [227810] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(6996), 1, + ACTIONS(4866), 1, + aux_sym_unquoted_token2, + STATE(7110), 1, sym_comment, - ACTIONS(10825), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [222653] = 5, - ACTIONS(3), 1, + ACTIONS(1719), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [227824] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - ACTIONS(4674), 1, - aux_sym_unquoted_token4, - STATE(6997), 1, + ACTIONS(10955), 1, + sym_hex_digit, + ACTIONS(11298), 1, + anon_sym_RBRACK, + STATE(7111), 1, sym_comment, - STATE(7437), 1, - sym__expr_parenthesized_immediate, - [222669] = 3, + STATE(7446), 1, + aux_sym_val_binary_repeat1, + [227840] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(6998), 1, + STATE(7112), 1, sym_comment, - ACTIONS(10139), 3, + ACTIONS(10481), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [222681] = 5, + [227852] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11239), 1, + ACTIONS(11300), 1, anon_sym_RBRACK, - STATE(6458), 1, + STATE(6610), 1, aux_sym__multiple_types_repeat1, - STATE(6999), 1, + STATE(7113), 1, sym_comment, - [222697] = 5, - ACTIONS(3), 1, + [227868] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1030), 1, - sym__newline, - ACTIONS(1032), 1, - sym__space, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(7000), 1, + STATE(7114), 1, sym_comment, - [222713] = 5, + ACTIONS(6152), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [227880] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11241), 1, + ACTIONS(11302), 1, anon_sym_RBRACK, - STATE(6459), 1, + STATE(6611), 1, aux_sym__multiple_types_repeat1, - STATE(7001), 1, + STATE(7115), 1, sym_comment, - [222729] = 5, + [227896] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11243), 1, + ACTIONS(11304), 1, anon_sym_RBRACK, - STATE(6460), 1, + STATE(6612), 1, aux_sym__multiple_types_repeat1, - STATE(7002), 1, + STATE(7116), 1, sym_comment, - [222745] = 5, + [227912] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11245), 1, + ACTIONS(11306), 1, anon_sym_RBRACK, - STATE(6461), 1, + STATE(6613), 1, aux_sym__multiple_types_repeat1, - STATE(7003), 1, - sym_comment, - [222761] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7004), 1, + STATE(7117), 1, sym_comment, - ACTIONS(11247), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [222773] = 5, + [227928] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11249), 1, + ACTIONS(11308), 1, anon_sym_RBRACK, - STATE(6462), 1, + STATE(6614), 1, aux_sym__multiple_types_repeat1, - STATE(7005), 1, - sym_comment, - [222789] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7006), 1, + STATE(7118), 1, sym_comment, - ACTIONS(10160), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [222801] = 5, + [227944] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11251), 1, + ACTIONS(11310), 1, anon_sym_RBRACK, - STATE(6463), 1, + STATE(6615), 1, aux_sym__multiple_types_repeat1, - STATE(7007), 1, + STATE(7119), 1, sym_comment, - [222817] = 5, + [227960] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11253), 1, + ACTIONS(11312), 1, anon_sym_RBRACK, - STATE(6464), 1, + STATE(6616), 1, aux_sym__multiple_types_repeat1, - STATE(7008), 1, + STATE(7120), 1, sym_comment, - [222833] = 4, + [227976] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1783), 1, - aux_sym_unquoted_token2, - STATE(7009), 1, + STATE(7121), 1, sym_comment, - ACTIONS(1785), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [222847] = 5, + ACTIONS(10483), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [227988] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(2432), 1, sym__entry_separator, - ACTIONS(11255), 1, - anon_sym_RBRACK, - STATE(6465), 1, - aux_sym__multiple_types_repeat1, - STATE(7010), 1, + STATE(7122), 1, sym_comment, - [222863] = 5, + ACTIONS(2430), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [228002] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5878), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11257), 1, + ACTIONS(11314), 1, anon_sym_RBRACK, - STATE(2783), 1, + STATE(6617), 1, aux_sym__multiple_types_repeat1, - STATE(7011), 1, + STATE(7123), 1, sym_comment, - [222879] = 3, + [228018] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(7012), 1, + ACTIONS(1661), 1, + aux_sym_unquoted_token2, + STATE(7124), 1, sym_comment, - ACTIONS(10923), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [222891] = 3, + ACTIONS(2262), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [228032] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7013), 1, + STATE(7125), 1, sym_comment, - ACTIONS(10827), 3, + ACTIONS(10485), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [222903] = 5, + [228044] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(11316), 1, + anon_sym_RBRACK, + STATE(6790), 1, + aux_sym__multiple_types_repeat1, + STATE(7126), 1, + sym_comment, + [228060] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(6184), 1, - anon_sym_LBRACE, - STATE(6653), 1, - sym_block, - STATE(7014), 1, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(6944), 1, + aux_sym_val_table_repeat1, + STATE(7127), 1, sym_comment, - [222919] = 5, + STATE(7365), 1, + sym_val_list, + [228076] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11259), 1, + ACTIONS(11318), 1, anon_sym_RBRACK, - STATE(6472), 1, + STATE(6791), 1, aux_sym__multiple_types_repeat1, - STATE(7015), 1, + STATE(7128), 1, sym_comment, - [222935] = 5, + [228092] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11261), 1, + ACTIONS(11320), 1, anon_sym_RBRACK, - STATE(6473), 1, + STATE(6622), 1, aux_sym__multiple_types_repeat1, - STATE(7016), 1, + STATE(7129), 1, + sym_comment, + [228108] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7130), 1, sym_comment, - [222951] = 5, + ACTIONS(11322), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [228120] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(2496), 1, sym__entry_separator, - ACTIONS(11263), 1, + STATE(7131), 1, + sym_comment, + ACTIONS(2494), 2, anon_sym_RBRACK, - STATE(6474), 1, + anon_sym_RBRACE, + [228134] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(11324), 1, + anon_sym_RBRACK, + STATE(6623), 1, aux_sym__multiple_types_repeat1, - STATE(7017), 1, + STATE(7132), 1, sym_comment, - [222967] = 5, + [228150] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11265), 1, + ACTIONS(11326), 1, anon_sym_RBRACK, - STATE(6475), 1, + STATE(6624), 1, aux_sym__multiple_types_repeat1, - STATE(7018), 1, + STATE(7133), 1, sym_comment, - [222983] = 5, + [228166] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11267), 1, + ACTIONS(11328), 1, anon_sym_RBRACK, - STATE(6476), 1, + STATE(6625), 1, aux_sym__multiple_types_repeat1, - STATE(7019), 1, + STATE(7134), 1, sym_comment, - [222999] = 4, + [228182] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2349), 1, + ACTIONS(2500), 1, sym__entry_separator, - STATE(7020), 1, + STATE(7135), 1, sym_comment, - ACTIONS(2347), 2, + ACTIONS(2498), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [223013] = 5, + [228196] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11269), 1, + ACTIONS(11330), 1, anon_sym_RBRACK, - STATE(6477), 1, + STATE(6626), 1, aux_sym__multiple_types_repeat1, - STATE(7021), 1, + STATE(7136), 1, sym_comment, - [223029] = 5, + [228212] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11271), 1, + ACTIONS(11332), 1, anon_sym_RBRACK, - STATE(6478), 1, + STATE(6627), 1, aux_sym__multiple_types_repeat1, - STATE(7022), 1, + STATE(7137), 1, sym_comment, - [223045] = 5, + [228228] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11273), 1, + ACTIONS(11334), 1, anon_sym_RBRACK, - STATE(6479), 1, + STATE(6628), 1, aux_sym__multiple_types_repeat1, - STATE(7023), 1, + STATE(7138), 1, + sym_comment, + [228244] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(7139), 1, sym_comment, - [223061] = 3, + ACTIONS(2268), 3, + sym_identifier, + anon_sym_DOLLAR, + aux_sym_unquoted_token4, + [228256] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7024), 1, + STATE(7140), 1, sym_comment, - ACTIONS(11275), 3, + ACTIONS(10231), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [223073] = 5, + [228268] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11277), 1, + ACTIONS(11336), 1, anon_sym_RBRACK, - STATE(6685), 1, + STATE(6629), 1, aux_sym__multiple_types_repeat1, - STATE(7025), 1, + STATE(7141), 1, sym_comment, - [223089] = 5, + [228284] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5714), 1, + ACTIONS(1028), 1, sym__entry_separator, - ACTIONS(11279), 1, + STATE(7142), 1, + sym_comment, + ACTIONS(1026), 2, anon_sym_RBRACK, - STATE(2664), 1, - aux_sym__multiple_types_repeat1, - STATE(7026), 1, + anon_sym_RBRACE, + [228298] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7143), 1, sym_comment, - [223105] = 4, + ACTIONS(10609), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228310] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2349), 1, + ACTIONS(2516), 1, sym__entry_separator, - STATE(7027), 1, + STATE(7144), 1, sym_comment, - ACTIONS(2347), 2, + ACTIONS(2514), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [223119] = 4, + [228324] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2092), 1, + ACTIONS(2353), 1, sym__entry_separator, - STATE(7028), 1, + STATE(7145), 1, sym_comment, - ACTIONS(2090), 2, + ACTIONS(2351), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [223133] = 3, + [228338] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7029), 1, + STATE(7146), 1, sym_comment, - ACTIONS(10829), 3, - ts_builtin_sym_end, + ACTIONS(11338), 3, sym__newline, anon_sym_SEMI, - [223145] = 5, + anon_sym_RPAREN, + [228350] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(2357), 1, sym__entry_separator, - ACTIONS(11281), 1, + STATE(7147), 1, + sym_comment, + ACTIONS(2355), 2, anon_sym_RBRACK, - STATE(6484), 1, - aux_sym__multiple_types_repeat1, - STATE(7030), 1, + anon_sym_RBRACE, + [228364] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7148), 1, sym_comment, - [223161] = 5, + ACTIONS(6156), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [228376] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11283), 1, + ACTIONS(11340), 1, anon_sym_RBRACK, - STATE(6485), 1, + STATE(6633), 1, aux_sym__multiple_types_repeat1, - STATE(7031), 1, + STATE(7149), 1, + sym_comment, + [228392] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7150), 1, sym_comment, - [223177] = 5, + ACTIONS(10167), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228404] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11285), 1, + ACTIONS(11342), 1, anon_sym_RBRACK, - STATE(6486), 1, + STATE(6634), 1, aux_sym__multiple_types_repeat1, - STATE(7032), 1, + STATE(7151), 1, sym_comment, - [223193] = 5, + [228420] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11287), 1, + ACTIONS(11344), 1, anon_sym_RBRACK, - STATE(6487), 1, + STATE(6635), 1, aux_sym__multiple_types_repeat1, - STATE(7033), 1, + STATE(7152), 1, sym_comment, - [223209] = 5, + [228436] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11289), 1, + ACTIONS(11346), 1, anon_sym_RBRACK, - STATE(6488), 1, + STATE(6636), 1, aux_sym__multiple_types_repeat1, - STATE(7034), 1, - sym_comment, - [223225] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(6814), 1, - sym_val_list, - STATE(7035), 1, + STATE(7153), 1, sym_comment, - STATE(7170), 1, - aux_sym_val_table_repeat1, - [223241] = 5, + [228452] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11291), 1, + ACTIONS(11348), 1, anon_sym_RBRACK, - STATE(6489), 1, + STATE(6637), 1, aux_sym__multiple_types_repeat1, - STATE(7036), 1, + STATE(7154), 1, + sym_comment, + [228468] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10955), 1, + sym_hex_digit, + ACTIONS(11350), 1, + anon_sym_RBRACK, + STATE(6845), 1, + aux_sym_val_binary_repeat1, + STATE(7155), 1, sym_comment, - [223257] = 5, + [228484] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(2361), 1, sym__entry_separator, - ACTIONS(11293), 1, - anon_sym_RBRACK, - STATE(6490), 1, - aux_sym__multiple_types_repeat1, - STATE(7037), 1, + STATE(7156), 1, sym_comment, - [223273] = 5, + ACTIONS(2359), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [228498] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11295), 1, + ACTIONS(11352), 1, anon_sym_RBRACK, - STATE(6689), 1, + STATE(6638), 1, aux_sym__multiple_types_repeat1, - STATE(7038), 1, + STATE(7157), 1, sym_comment, - [223289] = 5, + [228514] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11297), 1, + ACTIONS(11354), 1, anon_sym_RBRACK, - STATE(6491), 1, + STATE(6639), 1, aux_sym__multiple_types_repeat1, - STATE(7039), 1, + STATE(7158), 1, sym_comment, - [223305] = 3, + [228530] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7040), 1, + STATE(7159), 1, sym_comment, - ACTIONS(10787), 3, + ACTIONS(10233), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [223317] = 4, + [228542] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2212), 1, - aux_sym_unquoted_token4, - STATE(7041), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(11356), 1, + anon_sym_RBRACK, + STATE(6640), 1, + aux_sym__multiple_types_repeat1, + STATE(7160), 1, sym_comment, - ACTIONS(2206), 2, - sym_identifier, - anon_sym_DOLLAR, - [223331] = 4, + [228558] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(7042), 1, + ACTIONS(2365), 1, + sym__entry_separator, + STATE(7161), 1, sym_comment, - ACTIONS(1030), 2, - sym_identifier, - anon_sym_DOLLAR, - [223345] = 3, + ACTIONS(2363), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [228572] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11358), 1, + anon_sym_LPAREN, + STATE(7162), 1, + sym_comment, + ACTIONS(11360), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [228586] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7043), 1, + STATE(7163), 1, + sym_comment, + ACTIONS(10609), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228598] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7164), 1, sym_comment, - ACTIONS(5943), 3, + ACTIONS(5933), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [223357] = 3, + [228610] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5539), 1, + anon_sym_LPAREN2, + ACTIONS(5549), 1, + aux_sym__unquoted_in_list_token4, + STATE(7165), 1, + sym_comment, + STATE(7608), 1, + sym__expr_parenthesized_immediate, + [228626] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7044), 1, + STATE(7166), 1, sym_comment, - ACTIONS(10871), 3, + ACTIONS(10099), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [223369] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5878), 1, - sym__entry_separator, - ACTIONS(11299), 1, - anon_sym_RBRACK, - STATE(2809), 1, - aux_sym__multiple_types_repeat1, - STATE(7045), 1, - sym_comment, - [223385] = 5, - ACTIONS(3), 1, + [228638] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1709), 1, - anon_sym_RBRACK, - ACTIONS(1721), 1, - sym__entry_separator, - ACTIONS(8667), 1, - aux_sym__unquoted_in_list_token2, - STATE(7046), 1, + STATE(7167), 1, sym_comment, - [223401] = 5, - ACTIONS(3), 1, + ACTIONS(10461), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228650] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5878), 1, - sym__entry_separator, - ACTIONS(11301), 1, - anon_sym_RBRACK, - STATE(2779), 1, - aux_sym__multiple_types_repeat1, - STATE(7047), 1, + ACTIONS(1765), 1, + aux_sym_unquoted_token2, + STATE(7168), 1, sym_comment, - [223417] = 3, + ACTIONS(1767), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [228664] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7048), 1, + STATE(7169), 1, sym_comment, - ACTIONS(10783), 3, + ACTIONS(10329), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [223429] = 3, + [228676] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7049), 1, + STATE(7170), 1, sym_comment, - ACTIONS(10795), 3, + ACTIONS(10101), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [223441] = 3, + [228688] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7050), 1, + STATE(7171), 1, sym_comment, - ACTIONS(10817), 3, + ACTIONS(10617), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [223453] = 5, + [228700] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(11303), 1, - anon_sym_RBRACK, - STATE(6634), 1, - aux_sym__multiple_types_repeat1, - STATE(7051), 1, + ACTIONS(2240), 1, + anon_sym_LPAREN2, + ACTIONS(2244), 1, + aux_sym_unquoted_token4, + ACTIONS(11362), 1, + sym__space, + STATE(7172), 1, sym_comment, - [223469] = 4, - ACTIONS(3), 1, + [228716] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2108), 1, - sym__entry_separator, - STATE(7052), 1, + STATE(7173), 1, sym_comment, - ACTIONS(2106), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [223483] = 5, + ACTIONS(10247), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228728] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5556), 1, - anon_sym_LPAREN2, - ACTIONS(5566), 1, - aux_sym__unquoted_in_list_token4, - STATE(7053), 1, + ACTIONS(3557), 1, + sym__newline, + ACTIONS(3559), 1, + sym__space, + STATE(1171), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7174), 1, sym_comment, - STATE(7456), 1, - sym__expr_parenthesized_immediate, - [223499] = 3, + [228744] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7054), 1, + STATE(7175), 1, sym_comment, - ACTIONS(10835), 3, + ACTIONS(10329), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [223511] = 3, + [228756] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7055), 1, + STATE(7176), 1, + sym_comment, + ACTIONS(11364), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [228768] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7177), 1, sym_comment, - ACTIONS(10789), 3, + ACTIONS(10357), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [223523] = 5, + [228780] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(1865), 1, sym__entry_separator, - ACTIONS(10097), 1, - anon_sym_LBRACK, - STATE(3383), 1, - aux_sym__multiple_types_repeat1, - STATE(7056), 1, + STATE(7178), 1, sym_comment, - [223539] = 5, + ACTIONS(1863), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [228794] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6221), 1, - anon_sym_AT, - ACTIONS(11305), 1, - anon_sym_GT2, - STATE(7057), 1, + STATE(7179), 1, sym_comment, - STATE(7964), 1, - sym_param_cmd, - [223555] = 5, + ACTIONS(10807), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228806] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10949), 1, + ACTIONS(10955), 1, sym_hex_digit, - ACTIONS(11307), 1, + ACTIONS(11366), 1, anon_sym_RBRACK, - STATE(7058), 1, - sym_comment, - STATE(7066), 1, + STATE(6824), 1, aux_sym_val_binary_repeat1, - [223571] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7059), 1, + STATE(7180), 1, sym_comment, - ACTIONS(10791), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [223583] = 4, + [228822] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2514), 1, + ACTIONS(2400), 1, sym__entry_separator, - STATE(7060), 1, + STATE(7181), 1, sym_comment, - ACTIONS(2512), 2, + ACTIONS(2398), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [223597] = 4, - ACTIONS(3), 1, + [228836] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2385), 1, - sym__entry_separator, - STATE(7061), 1, - sym_comment, - ACTIONS(2383), 2, + ACTIONS(10955), 1, + sym_hex_digit, + ACTIONS(11368), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [223611] = 3, + STATE(7182), 1, + sym_comment, + STATE(7187), 1, + aux_sym_val_binary_repeat1, + [228852] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7062), 1, + STATE(7183), 1, sym_comment, - ACTIONS(10398), 3, + ACTIONS(10243), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [223623] = 3, - ACTIONS(247), 1, + [228864] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7063), 1, + ACTIONS(1889), 1, + sym__entry_separator, + STATE(7184), 1, sym_comment, - ACTIONS(6148), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [223635] = 3, + ACTIONS(1887), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [228878] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7064), 1, + STATE(7185), 1, sym_comment, - ACTIONS(11309), 3, + ACTIONS(10235), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [223647] = 5, + [228890] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - ACTIONS(7157), 1, + ACTIONS(7190), 1, aux_sym_unquoted_token4, - STATE(7065), 1, + STATE(7186), 1, sym_comment, - STATE(7501), 1, + STATE(7494), 1, sym__expr_parenthesized_immediate, - [223663] = 5, + [228906] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10949), 1, + ACTIONS(10955), 1, sym_hex_digit, - ACTIONS(11311), 1, + ACTIONS(11370), 1, anon_sym_RBRACK, - STATE(6852), 1, + STATE(6839), 1, aux_sym_val_binary_repeat1, - STATE(7066), 1, + STATE(7187), 1, sym_comment, - [223679] = 3, + [228922] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7067), 1, + STATE(7188), 1, sym_comment, - ACTIONS(10799), 3, + ACTIONS(10591), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [223691] = 5, + [228934] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(2163), 1, sym__entry_separator, - ACTIONS(11313), 1, - anon_sym_RBRACK, - STATE(6222), 1, - aux_sym__multiple_types_repeat1, - STATE(7068), 1, + STATE(7189), 1, sym_comment, - [223707] = 5, - ACTIONS(247), 1, + ACTIONS(2157), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [228948] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10949), 1, - sym_hex_digit, - ACTIONS(11315), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(11372), 1, anon_sym_RBRACK, - STATE(7069), 1, + STATE(6379), 1, + aux_sym__multiple_types_repeat1, + STATE(7190), 1, sym_comment, - STATE(7167), 1, - aux_sym_val_binary_repeat1, - [223723] = 3, - ACTIONS(247), 1, + [228964] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7070), 1, + ACTIONS(2345), 1, + sym__entry_separator, + STATE(7191), 1, sym_comment, - ACTIONS(11317), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [223735] = 3, + ACTIONS(2343), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [228978] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(7071), 1, - sym_comment, - ACTIONS(10903), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [223747] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7072), 1, + ACTIONS(4968), 1, + anon_sym_LBRACE, + ACTIONS(11374), 1, + sym_long_flag_identifier, + ACTIONS(11376), 1, + anon_sym_EQ2, + STATE(7192), 1, sym_comment, - ACTIONS(2094), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [223759] = 5, + [228994] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11319), 1, + ACTIONS(11378), 1, anon_sym_RBRACK, - STATE(6223), 1, + STATE(6380), 1, aux_sym__multiple_types_repeat1, - STATE(7073), 1, + STATE(7193), 1, sym_comment, - [223775] = 5, + [229010] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11321), 1, + ACTIONS(11380), 1, anon_sym_RBRACK, - STATE(6224), 1, + STATE(6381), 1, aux_sym__multiple_types_repeat1, - STATE(7074), 1, + STATE(7194), 1, sym_comment, - [223791] = 5, + [229026] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11323), 1, + ACTIONS(11382), 1, anon_sym_RBRACK, - STATE(6225), 1, + STATE(6382), 1, aux_sym__multiple_types_repeat1, - STATE(7075), 1, + STATE(7195), 1, sym_comment, - [223807] = 5, + [229042] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6221), 1, + ACTIONS(6219), 1, anon_sym_AT, - ACTIONS(11325), 1, + ACTIONS(11384), 1, anon_sym_GT2, - STATE(7076), 1, + STATE(7196), 1, sym_comment, - STATE(7868), 1, + STATE(7949), 1, sym_param_cmd, - [223823] = 5, + [229058] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11327), 1, + ACTIONS(11386), 1, anon_sym_RBRACK, - STATE(6226), 1, + STATE(6383), 1, aux_sym__multiple_types_repeat1, - STATE(7077), 1, + STATE(7197), 1, sym_comment, - [223839] = 5, - ACTIONS(3), 1, + [229074] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(11329), 1, - anon_sym_RBRACK, - STATE(6700), 1, - aux_sym__multiple_types_repeat1, - STATE(7078), 1, + STATE(7198), 1, sym_comment, - [223855] = 5, + ACTIONS(11388), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [229086] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11331), 1, + ACTIONS(11390), 1, anon_sym_RBRACK, - STATE(6227), 1, + STATE(6384), 1, aux_sym__multiple_types_repeat1, - STATE(7079), 1, + STATE(7199), 1, sym_comment, - [223871] = 5, + [229102] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11333), 1, + ACTIONS(11392), 1, anon_sym_RBRACK, - STATE(6228), 1, + STATE(6385), 1, aux_sym__multiple_types_repeat1, - STATE(7080), 1, - sym_comment, - [223887] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2258), 1, - aux_sym_unquoted_token2, - STATE(7081), 1, + STATE(7200), 1, sym_comment, - ACTIONS(2256), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [223901] = 5, + [229118] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11335), 1, + ACTIONS(11394), 1, anon_sym_RBRACK, - STATE(6229), 1, + STATE(6386), 1, aux_sym__multiple_types_repeat1, - STATE(7082), 1, + STATE(7201), 1, sym_comment, - [223917] = 3, + [229134] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7083), 1, + STATE(7202), 1, sym_comment, - ACTIONS(10881), 3, + ACTIONS(10165), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [223929] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7084), 1, - sym_comment, - ACTIONS(11337), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [223941] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7085), 1, - sym_comment, - ACTIONS(11339), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [223953] = 3, - ACTIONS(247), 1, + [229146] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7086), 1, - sym_comment, - ACTIONS(11341), 3, - anon_sym_PIPE, - anon_sym_if, + ACTIONS(2228), 1, + aux_sym_unquoted_token4, + ACTIONS(5928), 1, anon_sym_EQ_GT, - [223965] = 3, + ACTIONS(5933), 1, + anon_sym_PIPE, + STATE(7203), 1, + sym_comment, + [229162] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7087), 1, + STATE(7204), 1, sym_comment, - ACTIONS(10793), 3, + ACTIONS(10383), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [223977] = 3, + [229174] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7088), 1, + STATE(7205), 1, sym_comment, - ACTIONS(10797), 3, + ACTIONS(10133), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [223989] = 4, + [229186] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1721), 1, + ACTIONS(2377), 1, sym__entry_separator, - STATE(7089), 1, + STATE(7206), 1, sym_comment, - ACTIONS(1709), 2, + ACTIONS(2375), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [224003] = 4, + [229200] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11343), 1, + ACTIONS(11396), 1, sym__table_head_separator, - STATE(7090), 1, + STATE(7207), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1026), 2, anon_sym_RBRACK, sym__entry_separator, - [224017] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4936), 1, - anon_sym_LBRACE, - ACTIONS(11345), 1, - sym_long_flag_identifier, - ACTIONS(11347), 1, - anon_sym_EQ2, - STATE(7091), 1, - sym_comment, - [224033] = 4, + [229214] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6052), 1, - anon_sym_RBRACK, - STATE(7092), 1, - sym_comment, - ACTIONS(6054), 2, - anon_sym_LPAREN2, + ACTIONS(2450), 1, sym__entry_separator, - [224047] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(6184), 1, - anon_sym_LBRACE, - STATE(4768), 1, - sym_block, - STATE(7093), 1, - sym_comment, - [224063] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6221), 1, - anon_sym_AT, - ACTIONS(8023), 1, - anon_sym_EQ, - STATE(5132), 1, - sym_param_cmd, - STATE(7094), 1, - sym_comment, - [224079] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7095), 1, + STATE(7208), 1, sym_comment, - ACTIONS(6152), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [224091] = 5, - ACTIONS(247), 1, + ACTIONS(2448), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [229228] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(6184), 1, - anon_sym_LBRACE, - STATE(6653), 1, - sym_block, - STATE(7096), 1, + ACTIONS(2454), 1, + sym__entry_separator, + STATE(7209), 1, sym_comment, - [224107] = 4, + ACTIONS(2452), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [229242] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1032), 1, + ACTIONS(1909), 1, sym__entry_separator, - STATE(7097), 1, + STATE(7210), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1907), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [224121] = 3, + [229256] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(7098), 1, + ACTIONS(1559), 1, + aux_sym_unquoted_token2, + STATE(7211), 1, sym_comment, - ACTIONS(6129), 3, + ACTIONS(1828), 2, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, - [224133] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - STATE(7099), 1, - sym_comment, - ACTIONS(2214), 2, - sym_identifier, - anon_sym_DOLLAR, - [224147] = 4, + [229270] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - STATE(7100), 1, + ACTIONS(2470), 1, + sym__entry_separator, + STATE(7212), 1, sym_comment, - ACTIONS(2222), 2, - sym_identifier, - anon_sym_DOLLAR, - [224161] = 5, + ACTIONS(2468), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [229284] = 5, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(3365), 1, aux_sym_record_entry_token1, - ACTIONS(6184), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(6684), 1, + STATE(6290), 1, sym_block, - STATE(7101), 1, - sym_comment, - [224177] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2290), 1, - sym__entry_separator, - ACTIONS(11349), 1, - anon_sym_RBRACE, - STATE(570), 1, - aux_sym__multiple_types_repeat1, - STATE(7102), 1, + STATE(7213), 1, sym_comment, - [224193] = 5, + [229300] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10031), 1, - anon_sym_PIPE, - ACTIONS(11351), 1, - anon_sym_EQ_GT, - STATE(7103), 1, + STATE(7214), 1, sym_comment, - STATE(7143), 1, - aux_sym_match_pattern_repeat1, - [224209] = 5, - ACTIONS(3), 1, + ACTIONS(10383), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [229312] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6042), 1, - anon_sym_RBRACE, - ACTIONS(6044), 1, - sym__entry_separator, - STATE(2955), 1, - aux_sym__multiple_types_repeat1, - STATE(7104), 1, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(6299), 1, + sym_block, + STATE(7215), 1, sym_comment, - [224225] = 5, + [229328] = 5, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(3365), 1, aux_sym_record_entry_token1, - ACTIONS(6184), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(4768), 1, + STATE(4648), 1, sym_block, - STATE(7105), 1, + STATE(7216), 1, sym_comment, - [224241] = 4, - ACTIONS(247), 1, + [229344] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(314), 1, - aux_sym__block_body_repeat1, - STATE(7106), 1, + ACTIONS(2484), 1, + sym__entry_separator, + STATE(7217), 1, sym_comment, - ACTIONS(139), 2, - sym__newline, - anon_sym_SEMI, - [224255] = 5, - ACTIONS(247), 1, + ACTIONS(2482), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [229358] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6221), 1, - anon_sym_AT, - ACTIONS(8060), 1, - anon_sym_EQ, - STATE(5121), 1, - sym_param_cmd, - STATE(7107), 1, + ACTIONS(2238), 1, + sym__newline, + ACTIONS(2242), 1, + sym__space, + ACTIONS(2244), 1, + aux_sym_unquoted_token4, + STATE(7218), 1, sym_comment, - [224271] = 3, + [229374] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(7108), 1, + ACTIONS(1292), 1, + anon_sym_RPAREN, + STATE(7219), 1, sym_comment, - ACTIONS(10109), 3, - ts_builtin_sym_end, + ACTIONS(1285), 2, sym__newline, anon_sym_SEMI, - [224283] = 4, + [229388] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1890), 1, - aux_sym_unquoted_token2, - STATE(7109), 1, + STATE(7220), 1, sym_comment, - ACTIONS(1892), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [224297] = 4, - ACTIONS(247), 1, + ACTIONS(10429), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [229400] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1755), 1, - aux_sym_unquoted_token2, - STATE(7110), 1, + ACTIONS(2152), 1, + sym__entry_separator, + STATE(7221), 1, sym_comment, - ACTIONS(1757), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [224311] = 3, + ACTIONS(2146), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [229414] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7111), 1, + STATE(7222), 1, sym_comment, - ACTIONS(10198), 3, - ts_builtin_sym_end, + ACTIONS(1292), 3, sym__newline, anon_sym_SEMI, - [224323] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + [229426] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7112), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(11398), 1, + anon_sym_RBRACK, + STATE(6618), 1, + aux_sym__multiple_types_repeat1, + STATE(7223), 1, sym_comment, - ACTIONS(10202), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [224335] = 3, - ACTIONS(247), 1, + [229442] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7113), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(11400), 1, + anon_sym_RBRACK, + STATE(6587), 1, + aux_sym__multiple_types_repeat1, + STATE(7224), 1, sym_comment, - ACTIONS(10204), 3, - ts_builtin_sym_end, + [229458] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1707), 1, sym__newline, - anon_sym_SEMI, - [224347] = 4, + ACTIONS(1719), 1, + sym__space, + ACTIONS(7190), 1, + aux_sym_unquoted_token2, + STATE(7225), 1, + sym_comment, + [229474] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11353), 1, + ACTIONS(11402), 1, sym__table_head_separator, - STATE(7114), 1, + STATE(7226), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1026), 2, anon_sym_RBRACK, sym__entry_separator, - [224361] = 4, - ACTIONS(3), 1, + [229488] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2250), 1, - sym__space, - STATE(7115), 1, + STATE(7227), 1, sym_comment, - ACTIONS(2248), 2, + ACTIONS(10865), 3, + ts_builtin_sym_end, sym__newline, - aux_sym_unquoted_token4, - [224375] = 5, + anon_sym_SEMI, + [229500] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6038), 1, + anon_sym_RBRACE, + ACTIONS(6040), 1, sym__entry_separator, - ACTIONS(11355), 1, - anon_sym_RBRACK, - STATE(6601), 1, + STATE(2940), 1, aux_sym__multiple_types_repeat1, - STATE(7116), 1, + STATE(7228), 1, sym_comment, - [224391] = 3, - ACTIONS(247), 1, + [229516] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7117), 1, - sym_comment, - ACTIONS(10891), 3, - ts_builtin_sym_end, + ACTIONS(2246), 1, sym__newline, - anon_sym_SEMI, - [224403] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(7118), 1, + ACTIONS(2250), 1, + sym__space, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + STATE(7229), 1, sym_comment, - STATE(7169), 1, - sym_val_list, - STATE(7170), 1, - aux_sym_val_table_repeat1, - [224419] = 5, + [229532] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2208), 1, + ACTIONS(2240), 1, anon_sym_LPAREN2, - ACTIONS(2212), 1, + ACTIONS(2244), 1, aux_sym_unquoted_token4, - ACTIONS(11357), 1, + ACTIONS(11404), 1, sym__space, - STATE(7119), 1, - sym_comment, - [224435] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7953), 1, - sym__entry_separator, - ACTIONS(7957), 1, - anon_sym_RBRACK, - ACTIONS(11359), 1, - anon_sym_LT, - STATE(7120), 1, + STATE(7230), 1, sym_comment, - [224451] = 5, + [229548] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(7121), 1, - sym_comment, - STATE(7139), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - [224467] = 5, + STATE(7094), 1, + sym_val_list, + STATE(7231), 1, + sym_comment, + [229564] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - ACTIONS(4900), 1, + ACTIONS(2252), 1, aux_sym_unquoted_token4, - STATE(7122), 1, + ACTIONS(2254), 1, + sym__newline, + ACTIONS(2256), 1, + sym__space, + STATE(7232), 1, sym_comment, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - [224483] = 5, + [229580] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6044), 1, + ACTIONS(6040), 1, sym__entry_separator, - ACTIONS(11361), 1, - anon_sym_RBRACE, - STATE(2931), 1, - aux_sym__multiple_types_repeat1, - STATE(7123), 1, - sym_comment, - [224499] = 5, - ACTIONS(3), 1, - anon_sym_POUND, ACTIONS(6044), 1, - sym__entry_separator, - ACTIONS(11363), 1, anon_sym_RBRACE, - STATE(2920), 1, + STATE(2965), 1, aux_sym__multiple_types_repeat1, - STATE(7124), 1, + STATE(7233), 1, sym_comment, - [224515] = 5, + [229596] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(7125), 1, - sym_comment, - STATE(7170), 1, - aux_sym_val_table_repeat1, - STATE(7319), 1, + STATE(6818), 1, sym_val_list, - [224531] = 3, + STATE(6944), 1, + aux_sym_val_table_repeat1, + STATE(7234), 1, + sym_comment, + [229612] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(7126), 1, + ACTIONS(6219), 1, + anon_sym_AT, + ACTIONS(11406), 1, + anon_sym_GT2, + STATE(7235), 1, sym_comment, - ACTIONS(10109), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [224543] = 5, + STATE(7908), 1, + sym_param_cmd, + [229628] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(7127), 1, - sym_comment, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7323), 1, + STATE(7236), 1, + sym_comment, + STATE(7249), 1, sym_val_list, - [224559] = 5, - ACTIONS(3), 1, + [229644] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6044), 1, - sym__entry_separator, - ACTIONS(11365), 1, - anon_sym_RBRACE, - STATE(2921), 1, - aux_sym__multiple_types_repeat1, - STATE(7128), 1, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(6944), 1, + aux_sym_val_table_repeat1, + STATE(7237), 1, sym_comment, - [224575] = 4, + STATE(7254), 1, + sym_val_list, + [229660] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2498), 1, + ACTIONS(2466), 1, sym__entry_separator, - STATE(7129), 1, + STATE(7238), 1, sym_comment, - ACTIONS(2496), 2, + ACTIONS(2464), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [224589] = 4, + [229674] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2365), 1, + ACTIONS(2466), 1, sym__entry_separator, - STATE(7130), 1, + STATE(7239), 1, sym_comment, - ACTIONS(2363), 2, + ACTIONS(2464), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [224603] = 5, - ACTIONS(3), 1, + [229688] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1711), 1, - anon_sym_LPAREN2, - ACTIONS(1781), 1, - aux_sym__unquoted_in_record_token4, - STATE(7131), 1, + ACTIONS(11408), 1, + anon_sym_PIPE, + ACTIONS(11411), 1, + anon_sym_EQ_GT, + STATE(7240), 2, sym_comment, - STATE(7446), 1, - sym__expr_parenthesized_immediate, - [224619] = 5, + aux_sym_match_pattern_repeat1, + [229702] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(7078), 1, + STATE(6944), 1, + aux_sym_val_table_repeat1, + STATE(7128), 1, sym_val_list, - STATE(7132), 1, + STATE(7241), 1, sym_comment, - STATE(7170), 1, - aux_sym_val_table_repeat1, - [224635] = 5, + [229718] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(11367), 1, - anon_sym_EQ2, - ACTIONS(11369), 1, - sym_short_flag_identifier, - STATE(7133), 1, + STATE(7242), 1, sym_comment, - [224651] = 5, + ACTIONS(6136), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [229730] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6040), 1, sym__entry_separator, - ACTIONS(11371), 1, - anon_sym_RBRACK, - STATE(6597), 1, + ACTIONS(6066), 1, + anon_sym_RBRACE, + STATE(3000), 1, aux_sym__multiple_types_repeat1, - STATE(7134), 1, + STATE(7243), 1, sym_comment, - [224667] = 5, + [229746] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1709), 1, - anon_sym_RBRACE, - ACTIONS(1721), 1, + ACTIONS(5883), 1, sym__entry_separator, - ACTIONS(8859), 1, - aux_sym__unquoted_in_record_token2, - STATE(7135), 1, + ACTIONS(11413), 1, + anon_sym_RBRACK, + STATE(2819), 1, + aux_sym__multiple_types_repeat1, + STATE(7244), 1, + sym_comment, + [229762] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(4648), 1, + sym_block, + STATE(7245), 1, sym_comment, - [224683] = 5, + [229778] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5878), 1, + ACTIONS(6040), 1, sym__entry_separator, - ACTIONS(11373), 1, - anon_sym_RBRACK, - STATE(2844), 1, + ACTIONS(6076), 1, + anon_sym_RBRACE, + STATE(3006), 1, aux_sym__multiple_types_repeat1, - STATE(7136), 1, + STATE(7246), 1, + sym_comment, + [229794] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(6944), 1, + aux_sym_val_table_repeat1, + STATE(7247), 1, sym_comment, - [224699] = 5, + STATE(7329), 1, + sym_val_list, + [229810] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5878), 1, + ACTIONS(6040), 1, sym__entry_separator, - ACTIONS(11375), 1, - anon_sym_RBRACK, - STATE(2845), 1, + ACTIONS(6064), 1, + anon_sym_RBRACE, + STATE(2978), 1, aux_sym__multiple_types_repeat1, - STATE(7137), 1, + STATE(7248), 1, sym_comment, - [224715] = 5, + [229826] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11377), 1, + ACTIONS(11415), 1, anon_sym_RBRACK, - STATE(6729), 1, + STATE(6786), 1, aux_sym__multiple_types_repeat1, - STATE(7138), 1, + STATE(7249), 1, + sym_comment, + [229842] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7250), 1, + sym_comment, + ACTIONS(10097), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [229854] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7251), 1, + sym_comment, + ACTIONS(11417), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [229866] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7252), 1, sym_comment, - [224731] = 5, + ACTIONS(11419), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [229878] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11379), 1, + ACTIONS(11421), 1, anon_sym_RBRACK, - STATE(6730), 1, + STATE(6788), 1, aux_sym__multiple_types_repeat1, - STATE(7139), 1, + STATE(7253), 1, sym_comment, - [224747] = 5, + [229894] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(11381), 1, + ACTIONS(11423), 1, anon_sym_RBRACK, - STATE(6731), 1, + STATE(6789), 1, aux_sym__multiple_types_repeat1, - STATE(7140), 1, + STATE(7254), 1, sym_comment, - [224763] = 4, + [229910] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2327), 1, - anon_sym_RBRACE, - STATE(7141), 1, + ACTIONS(6060), 1, + anon_sym_RBRACK, + STATE(7255), 1, sym_comment, - ACTIONS(2329), 2, + ACTIONS(6062), 2, anon_sym_LPAREN2, sym__entry_separator, - [224777] = 5, + [229924] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10949), 1, - sym_hex_digit, - ACTIONS(11383), 1, - anon_sym_RBRACK, - STATE(7142), 1, + STATE(7256), 1, sym_comment, - STATE(7155), 1, - aux_sym_val_binary_repeat1, - [224793] = 4, + ACTIONS(10283), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [229936] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11385), 1, - anon_sym_PIPE, - ACTIONS(11388), 1, - anon_sym_EQ_GT, - STATE(7143), 2, + STATE(7257), 1, sym_comment, - aux_sym_match_pattern_repeat1, - [224807] = 5, + ACTIONS(10867), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [229948] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6044), 1, + ACTIONS(6040), 1, sym__entry_separator, - ACTIONS(6076), 1, + ACTIONS(11425), 1, anon_sym_RBRACE, - STATE(2974), 1, + STATE(2970), 1, aux_sym__multiple_types_repeat1, - STATE(7144), 1, + STATE(7258), 1, + sym_comment, + [229964] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7259), 1, + sym_comment, + ACTIONS(10869), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [229976] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1765), 1, + aux_sym_unquoted_token2, + STATE(7260), 1, + sym_comment, + ACTIONS(1767), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [229990] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7261), 1, + sym_comment, + ACTIONS(10383), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [230002] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7262), 1, + sym_comment, + ACTIONS(10285), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [230014] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1707), 1, + anon_sym_RBRACE, + ACTIONS(1719), 1, + sym__entry_separator, + ACTIONS(8629), 1, + aux_sym__unquoted_in_record_token2, + STATE(7263), 1, sym_comment, - [224823] = 5, + [230030] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6044), 1, + ACTIONS(2404), 1, sym__entry_separator, - ACTIONS(6070), 1, + STATE(7264), 1, + sym_comment, + ACTIONS(2402), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - STATE(2971), 1, - aux_sym__multiple_types_repeat1, - STATE(7145), 1, + [230044] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1739), 1, + aux_sym_unquoted_token2, + STATE(7265), 1, sym_comment, - [224839] = 3, + ACTIONS(1741), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [230058] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7146), 1, + STATE(7266), 1, sym_comment, - ACTIONS(10109), 3, + ACTIONS(10145), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [224851] = 4, + [230070] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2488), 1, + sym__entry_separator, + STATE(7267), 1, + sym_comment, + ACTIONS(2486), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [230084] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2333), 1, + ACTIONS(2318), 1, anon_sym_RBRACE, - STATE(7147), 1, + STATE(7268), 1, sym_comment, - ACTIONS(2335), 2, + ACTIONS(2320), 2, anon_sym_LPAREN2, sym__entry_separator, - [224865] = 3, + [230098] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2512), 1, + sym__entry_separator, + STATE(7269), 1, + sym_comment, + ACTIONS(2510), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [230112] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7148), 1, + STATE(7270), 1, sym_comment, - ACTIONS(9058), 3, + ACTIONS(10287), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [224877] = 5, - ACTIONS(3), 1, + [230124] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5714), 1, - sym__entry_separator, - ACTIONS(11390), 1, - anon_sym_RBRACK, - STATE(2653), 1, - aux_sym__multiple_types_repeat1, - STATE(7149), 1, + STATE(7271), 1, sym_comment, - [224893] = 5, + ACTIONS(10287), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [230136] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(1709), 1, anon_sym_LPAREN2, - ACTIONS(4864), 1, - aux_sym_unquoted_token4, - STATE(7150), 1, + ACTIONS(8629), 1, + aux_sym__unquoted_in_record_token4, + STATE(7272), 1, sym_comment, - STATE(7503), 1, + STATE(7647), 1, sym__expr_parenthesized_immediate, - [224909] = 3, + [230152] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7151), 1, + STATE(7273), 1, + sym_comment, + ACTIONS(10875), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [230164] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7274), 1, sym_comment, - ACTIONS(9070), 3, + ACTIONS(10227), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [224921] = 4, + [230176] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11392), 1, + ACTIONS(11427), 1, sym__table_head_separator, - STATE(7152), 1, + STATE(7275), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1026), 2, anon_sym_RBRACK, sym__entry_separator, - [224935] = 5, + [230190] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7276), 1, + sym_comment, + ACTIONS(10877), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [230202] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(11394), 1, - anon_sym_RBRACK, - STATE(3418), 1, - aux_sym__multiple_types_repeat1, - STATE(7153), 1, + ACTIONS(2244), 1, + aux_sym_unquoted_token4, + STATE(7277), 1, + sym_comment, + ACTIONS(2238), 2, + sym_identifier, + anon_sym_DOLLAR, + [230216] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2228), 1, + aux_sym_unquoted_token4, + STATE(7278), 1, sym_comment, - [224951] = 4, + ACTIONS(1026), 2, + sym_identifier, + anon_sym_DOLLAR, + [230230] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11396), 1, + ACTIONS(11429), 1, sym__table_head_separator, - STATE(7154), 1, + STATE(7279), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1026), 2, anon_sym_RBRACK, sym__entry_separator, - [224965] = 5, + [230244] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10949), 1, - sym_hex_digit, - ACTIONS(11398), 1, - anon_sym_RBRACK, - STATE(6852), 1, - aux_sym_val_binary_repeat1, - STATE(7155), 1, - sym_comment, - [224981] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6044), 1, - sym__entry_separator, - ACTIONS(6087), 1, - anon_sym_RBRACE, - STATE(2984), 1, - aux_sym__multiple_types_repeat1, - STATE(7156), 1, + STATE(7280), 1, sym_comment, - [224997] = 5, + ACTIONS(11431), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [230256] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6783), 1, + STATE(6906), 1, sym_val_list, - STATE(7157), 1, - sym_comment, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - [225013] = 5, + STATE(7281), 1, + sym_comment, + [230272] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(6869), 1, - sym_val_list, - STATE(7158), 1, + STATE(7282), 1, sym_comment, - STATE(7170), 1, - aux_sym_val_table_repeat1, - [225029] = 5, + ACTIONS(11433), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [230284] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6874), 1, + STATE(6944), 1, + aux_sym_val_table_repeat1, + STATE(7026), 1, sym_val_list, - STATE(7159), 1, + STATE(7283), 1, sym_comment, - STATE(7170), 1, - aux_sym_val_table_repeat1, - [225045] = 5, + [230300] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(7160), 1, - sym_comment, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7329), 1, + STATE(7033), 1, sym_val_list, - [225061] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7161), 1, + STATE(7284), 1, sym_comment, - ACTIONS(10867), 3, - ts_builtin_sym_end, + [230316] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4996), 1, + sym__space, + ACTIONS(4998), 1, sym__newline, - anon_sym_SEMI, - [225073] = 5, + ACTIONS(11435), 1, + anon_sym_EQ2, + STATE(7285), 1, + sym_comment, + [230332] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(2290), 1, sym__entry_separator, - ACTIONS(11400), 1, - anon_sym_RBRACK, - STATE(6256), 1, + ACTIONS(11437), 1, + anon_sym_RBRACE, + STATE(575), 1, aux_sym__multiple_types_repeat1, - STATE(7162), 1, + STATE(7286), 1, sym_comment, - [225089] = 5, + [230348] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6948), 1, + STATE(6944), 1, + aux_sym_val_table_repeat1, + STATE(7089), 1, sym_val_list, - STATE(7163), 1, + STATE(7287), 1, sym_comment, - STATE(7170), 1, - aux_sym_val_table_repeat1, - [225105] = 3, + [230364] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(11439), 1, + anon_sym_RBRACK, + STATE(3454), 1, + aux_sym__multiple_types_repeat1, + STATE(7288), 1, + sym_comment, + [230380] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7164), 1, + STATE(7289), 1, sym_comment, - ACTIONS(10137), 3, - ts_builtin_sym_end, + ACTIONS(11441), 3, sym__newline, anon_sym_SEMI, - [225117] = 3, + anon_sym_RPAREN, + [230392] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7165), 1, + STATE(7290), 1, sym_comment, - ACTIONS(10143), 3, + ACTIONS(10293), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [225129] = 3, + [230404] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7166), 1, + STATE(7291), 1, sym_comment, - ACTIONS(10168), 3, + ACTIONS(10295), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [225141] = 5, + [230416] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10949), 1, - sym_hex_digit, - ACTIONS(11402), 1, - anon_sym_RBRACK, - STATE(6852), 1, - aux_sym_val_binary_repeat1, - STATE(7167), 1, + STATE(7292), 1, sym_comment, - [225157] = 5, + ACTIONS(11443), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [230428] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(11404), 1, - anon_sym_RBRACK, - STATE(6257), 1, - aux_sym__multiple_types_repeat1, - STATE(7168), 1, + ACTIONS(11445), 1, + sym__table_head_separator, + STATE(7293), 1, sym_comment, - [225173] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(11406), 1, + ACTIONS(1026), 2, anon_sym_RBRACK, - STATE(6719), 1, - aux_sym__multiple_types_repeat1, - STATE(7169), 1, - sym_comment, - [225189] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11408), 1, - anon_sym_LBRACK, - STATE(7479), 1, - sym_val_list, - STATE(7170), 2, - sym_comment, - aux_sym_val_table_repeat1, - [225203] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6502), 1, sym__entry_separator, - ACTIONS(11411), 1, - anon_sym_RBRACK, - STATE(3420), 1, - aux_sym__multiple_types_repeat1, - STATE(7171), 1, - sym_comment, - [225219] = 5, + [230442] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(11413), 1, - anon_sym_RBRACK, - STATE(3441), 1, - aux_sym__multiple_types_repeat1, - STATE(7172), 1, + ACTIONS(2270), 1, + sym__space, + STATE(7294), 1, sym_comment, - [225235] = 5, + ACTIONS(2268), 2, + sym__newline, + aux_sym_unquoted_token4, + [230456] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(11415), 1, - anon_sym_RBRACK, - STATE(6258), 1, - aux_sym__multiple_types_repeat1, - STATE(7173), 1, - sym_comment, - [225251] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11417), 1, - anon_sym_EQ2, - STATE(7174), 1, + ACTIONS(11447), 1, + anon_sym_POUND_BANG, + ACTIONS(11449), 1, + sym__newline, + STATE(7028), 1, + aux_sym_shebang_repeat1, + STATE(7295), 1, sym_comment, - ACTIONS(5014), 2, - sym_identifier, - anon_sym_DOLLAR, - [225265] = 5, + [230472] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(11419), 1, - anon_sym_RBRACK, - STATE(6259), 1, - aux_sym__multiple_types_repeat1, - STATE(7175), 1, + ACTIONS(11451), 1, + sym__table_head_separator, + STATE(7296), 1, sym_comment, - [225281] = 3, + ACTIONS(1026), 2, + anon_sym_RBRACK, + sym__entry_separator, + [230486] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7176), 1, + STATE(7297), 1, sym_comment, - ACTIONS(10186), 3, + ACTIONS(10297), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [225293] = 3, + [230498] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7177), 1, + STATE(7298), 1, sym_comment, - ACTIONS(10785), 3, + ACTIONS(10145), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [225305] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(11421), 1, - anon_sym_RBRACK, - STATE(6260), 1, - aux_sym__multiple_types_repeat1, - STATE(7178), 1, - sym_comment, - [225321] = 3, + [230510] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7179), 1, + STATE(7299), 1, sym_comment, - ACTIONS(10208), 3, + ACTIONS(10873), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [225333] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2208), 1, - anon_sym_LPAREN2, - ACTIONS(2212), 1, - aux_sym_unquoted_token4, - ACTIONS(11423), 1, - sym__space, - STATE(7180), 1, - sym_comment, - [225349] = 3, + [230522] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7181), 1, + STATE(7300), 1, sym_comment, - ACTIONS(10236), 3, + ACTIONS(10873), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [225361] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1711), 1, - anon_sym_LPAREN2, - ACTIONS(8859), 1, - aux_sym__unquoted_in_record_token4, - STATE(7182), 1, - sym_comment, - STATE(7393), 1, - sym__expr_parenthesized_immediate, - [225377] = 4, + [230534] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11425), 1, + ACTIONS(11453), 1, sym__table_head_separator, - STATE(7183), 1, + STATE(7301), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1026), 2, anon_sym_RBRACK, sym__entry_separator, - [225391] = 4, - ACTIONS(3), 1, + [230548] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2250), 1, - anon_sym_PIPE, - STATE(7184), 1, + STATE(7302), 1, sym_comment, - ACTIONS(2248), 2, - anon_sym_EQ_GT, - aux_sym_unquoted_token4, - [225405] = 4, + ACTIONS(10873), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [230560] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11427), 1, + ACTIONS(11455), 1, sym__table_head_separator, - STATE(7185), 1, + STATE(7303), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1026), 2, anon_sym_RBRACK, sym__entry_separator, - [225419] = 5, - ACTIONS(3), 1, + [230574] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(11429), 1, - anon_sym_RBRACK, - STATE(6261), 1, - aux_sym__multiple_types_repeat1, - STATE(7186), 1, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(6290), 1, + sym_block, + STATE(7304), 1, sym_comment, - [225435] = 3, + [230590] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7187), 1, + STATE(7305), 1, sym_comment, - ACTIONS(10240), 3, + ACTIONS(10873), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [225447] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(11431), 1, - anon_sym_RBRACK, - STATE(6262), 1, - aux_sym__multiple_types_repeat1, - STATE(7188), 1, - sym_comment, - [225463] = 5, + [230602] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(7074), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7189), 1, + STATE(7194), 1, + sym_val_list, + STATE(7306), 1, sym_comment, - [225479] = 5, + [230618] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(7077), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7190), 1, + STATE(7197), 1, + sym_val_list, + STATE(7307), 1, sym_comment, - [225495] = 5, + [230634] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(7080), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7191), 1, + STATE(7200), 1, + sym_val_list, + STATE(7308), 1, sym_comment, - [225511] = 5, + [230650] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(7082), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7192), 1, + STATE(7201), 1, + sym_val_list, + STATE(7309), 1, sym_comment, - [225527] = 5, + [230666] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(2290), 1, sym__entry_separator, - ACTIONS(11433), 1, - anon_sym_RBRACK, - STATE(6263), 1, + ACTIONS(11457), 1, + anon_sym_RBRACE, + STATE(576), 1, aux_sym__multiple_types_repeat1, - STATE(7193), 1, + STATE(7310), 1, sym_comment, - [225543] = 4, + [230682] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7311), 1, + sym_comment, + ACTIONS(10873), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [230694] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11435), 1, + ACTIONS(11459), 1, sym__table_head_separator, - STATE(7194), 1, + STATE(7312), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1026), 2, anon_sym_RBRACK, sym__entry_separator, - [225557] = 4, + [230708] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11437), 1, + ACTIONS(6040), 1, + sym__entry_separator, + ACTIONS(6052), 1, + anon_sym_RBRACE, + STATE(2991), 1, + aux_sym__multiple_types_repeat1, + STATE(7313), 1, + sym_comment, + [230724] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11461), 1, sym__table_head_separator, - STATE(7195), 1, + STATE(7314), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1026), 2, anon_sym_RBRACK, sym__entry_separator, - [225571] = 4, + [230738] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1950), 1, - sym__entry_separator, - STATE(7196), 1, - sym_comment, - ACTIONS(1948), 2, - anon_sym_RBRACK, + ACTIONS(2298), 1, anon_sym_RBRACE, - [225585] = 5, + STATE(7315), 1, + sym_comment, + ACTIONS(2300), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [230752] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(7170), 1, - aux_sym_val_table_repeat1, - STATE(7173), 1, + STATE(6821), 1, sym_val_list, - STATE(7197), 1, + STATE(6944), 1, + aux_sym_val_table_repeat1, + STATE(7316), 1, sym_comment, - [225601] = 5, + [230768] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(7170), 1, - aux_sym_val_table_repeat1, - STATE(7178), 1, + STATE(6823), 1, sym_val_list, - STATE(7198), 1, + STATE(6944), 1, + aux_sym_val_table_repeat1, + STATE(7317), 1, sym_comment, - [225617] = 5, + [230784] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6040), 1, sym__entry_separator, - ACTIONS(11439), 1, - anon_sym_RBRACK, - STATE(6430), 1, + ACTIONS(6058), 1, + anon_sym_RBRACE, + STATE(2992), 1, aux_sym__multiple_types_repeat1, - STATE(7199), 1, + STATE(7318), 1, sym_comment, - [225633] = 5, + [230800] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(7170), 1, - aux_sym_val_table_repeat1, - STATE(7188), 1, + STATE(6826), 1, sym_val_list, - STATE(7200), 1, + STATE(6944), 1, + aux_sym_val_table_repeat1, + STATE(7319), 1, sym_comment, - [225649] = 5, + [230816] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(7170), 1, - aux_sym_val_table_repeat1, - STATE(7193), 1, + STATE(6828), 1, sym_val_list, - STATE(7201), 1, + STATE(6944), 1, + aux_sym_val_table_repeat1, + STATE(7320), 1, sym_comment, - [225665] = 4, + [230832] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11441), 1, + ACTIONS(11463), 1, sym__table_head_separator, - STATE(7202), 1, + STATE(7321), 1, + sym_comment, + ACTIONS(1026), 2, + anon_sym_RBRACK, + sym__entry_separator, + [230846] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11465), 1, + sym__table_head_separator, + STATE(7322), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1026), 2, anon_sym_RBRACK, sym__entry_separator, - [225679] = 3, + [230860] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(7203), 1, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(6848), 1, + sym_val_list, + STATE(6944), 1, + aux_sym_val_table_repeat1, + STATE(7323), 1, sym_comment, - ACTIONS(10503), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225691] = 3, + [230876] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(7204), 1, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(6851), 1, + sym_val_list, + STATE(6944), 1, + aux_sym_val_table_repeat1, + STATE(7324), 1, sym_comment, - ACTIONS(10350), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225703] = 4, + [230892] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(6854), 1, + sym_val_list, + STATE(6944), 1, + aux_sym_val_table_repeat1, + STATE(7325), 1, + sym_comment, + [230908] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(6855), 1, + sym_val_list, + STATE(6944), 1, + aux_sym_val_table_repeat1, + STATE(7326), 1, + sym_comment, + [230924] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11443), 1, + ACTIONS(11467), 1, sym__table_head_separator, - STATE(7205), 1, + STATE(7327), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1026), 2, anon_sym_RBRACK, sym__entry_separator, - [225717] = 3, - ACTIONS(247), 1, + [230938] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7206), 1, + ACTIONS(11469), 1, + sym__table_head_separator, + STATE(7328), 1, sym_comment, - ACTIONS(10350), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225729] = 4, + ACTIONS(1026), 2, + anon_sym_RBRACK, + sym__entry_separator, + [230952] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2381), 1, + ACTIONS(6489), 1, sym__entry_separator, - STATE(7207), 1, - sym_comment, - ACTIONS(2379), 2, + ACTIONS(11471), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [225743] = 5, + STATE(6799), 1, + aux_sym__multiple_types_repeat1, + STATE(7329), 1, + sym_comment, + [230968] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(7170), 1, + STATE(6874), 1, + sym_val_list, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7208), 1, + STATE(7330), 1, sym_comment, - STATE(7321), 1, - sym_val_list, - [225759] = 5, + [230984] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(7170), 1, + STATE(6877), 1, + sym_val_list, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7209), 1, + STATE(7331), 1, sym_comment, - STATE(7327), 1, - sym_val_list, - [225775] = 5, + [231000] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + STATE(7332), 1, + sym_comment, + ACTIONS(10873), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [231012] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(7170), 1, + STATE(6880), 1, + sym_val_list, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7210), 1, + STATE(7333), 1, sym_comment, - STATE(7336), 1, - sym_val_list, - [225791] = 5, + [231028] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(7170), 1, + STATE(6883), 1, + sym_val_list, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7211), 1, + STATE(7334), 1, sym_comment, - STATE(7342), 1, - sym_val_list, - [225807] = 4, + [231044] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11445), 1, + ACTIONS(11473), 1, sym__table_head_separator, - STATE(7212), 1, + STATE(7335), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1026), 2, anon_sym_RBRACK, sym__entry_separator, - [225821] = 4, + [231058] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2506), 1, - sym__entry_separator, - STATE(7213), 1, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + STATE(7336), 1, sym_comment, - ACTIONS(2504), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [225835] = 4, + ACTIONS(2246), 2, + sym_identifier, + anon_sym_DOLLAR, + [231072] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11447), 1, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + STATE(7337), 1, + sym_comment, + ACTIONS(2254), 2, + sym_identifier, + anon_sym_DOLLAR, + [231086] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11475), 1, sym__table_head_separator, - STATE(7214), 1, + STATE(7338), 1, + sym_comment, + ACTIONS(1026), 2, + anon_sym_RBRACK, + sym__entry_separator, + [231100] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7339), 1, sym_comment, - ACTIONS(1030), 2, - anon_sym_RBRACK, - sym__entry_separator, - [225849] = 5, + ACTIONS(10873), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [231112] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6762), 1, + STATE(6897), 1, sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7215), 1, + STATE(7340), 1, sym_comment, - [225865] = 5, + [231128] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6765), 1, + STATE(6899), 1, sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7216), 1, + STATE(7341), 1, sym_comment, - [225881] = 3, + [231144] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7217), 1, + STATE(7342), 1, sym_comment, - ACTIONS(10899), 3, + ACTIONS(10873), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [225893] = 5, + [231156] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6767), 1, + STATE(6902), 1, sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7218), 1, + STATE(7343), 1, sym_comment, - [225909] = 5, + [231172] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6769), 1, + STATE(6905), 1, sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7219), 1, + STATE(7344), 1, sym_comment, - [225925] = 4, + [231188] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11449), 1, + ACTIONS(11477), 1, sym__table_head_separator, - STATE(7220), 1, + STATE(7345), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1026), 2, anon_sym_RBRACK, sym__entry_separator, - [225939] = 3, - ACTIONS(247), 1, + [231202] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7221), 1, + ACTIONS(6489), 1, + sym__entry_separator, + ACTIONS(10177), 1, + anon_sym_LBRACK, + STATE(3396), 1, + aux_sym__multiple_types_repeat1, + STATE(7346), 1, sym_comment, - ACTIONS(10503), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225951] = 3, + [231218] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(7222), 1, + STATE(309), 1, + aux_sym__block_body_repeat1, + STATE(7347), 1, sym_comment, - ACTIONS(10819), 3, - ts_builtin_sym_end, + ACTIONS(139), 2, sym__newline, anon_sym_SEMI, - [225963] = 4, + [231232] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11451), 1, + ACTIONS(11479), 1, sym__table_head_separator, - STATE(7223), 1, + STATE(7348), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1026), 2, anon_sym_RBRACK, sym__entry_separator, - [225977] = 5, + [231246] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(1841), 1, + aux_sym_unquoted_token2, + STATE(7349), 1, + sym_comment, + ACTIONS(1843), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [231260] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6787), 1, + STATE(6931), 1, sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7224), 1, + STATE(7350), 1, sym_comment, - [225993] = 5, + [231276] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6789), 1, + STATE(6933), 1, sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7225), 1, + STATE(7351), 1, sym_comment, - [226009] = 5, + [231292] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + STATE(7352), 1, + sym_comment, + ACTIONS(6144), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [231304] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6793), 1, + STATE(6937), 1, sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7226), 1, + STATE(7353), 1, sym_comment, - [226025] = 5, + [231320] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6795), 1, + STATE(6940), 1, sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7227), 1, + STATE(7354), 1, sym_comment, - [226041] = 4, + [231336] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11453), 1, + ACTIONS(11481), 1, sym__table_head_separator, - STATE(7228), 1, + STATE(7355), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1026), 2, anon_sym_RBRACK, sym__entry_separator, - [226055] = 3, + [231350] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7229), 1, + STATE(7356), 1, sym_comment, - ACTIONS(10903), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226067] = 4, + ACTIONS(6144), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [231362] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11455), 1, + ACTIONS(11483), 1, sym__table_head_separator, - STATE(7230), 1, + STATE(7357), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1026), 2, anon_sym_RBRACK, sym__entry_separator, - [226081] = 5, + [231376] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + ACTIONS(4956), 1, + aux_sym_unquoted_token4, + STATE(7358), 1, + sym_comment, + STATE(7463), 1, + sym__expr_parenthesized_immediate, + [231392] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6812), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7231), 1, + STATE(6961), 1, + sym_val_list, + STATE(7359), 1, sym_comment, - [226097] = 5, + [231408] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6815), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7232), 1, + STATE(6963), 1, + sym_val_list, + STATE(7360), 1, + sym_comment, + [231424] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5706), 1, + sym__entry_separator, + ACTIONS(11485), 1, + anon_sym_RBRACK, + STATE(2704), 1, + aux_sym__multiple_types_repeat1, + STATE(7361), 1, sym_comment, - [226113] = 5, + [231440] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6817), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7233), 1, + STATE(6965), 1, + sym_val_list, + STATE(7362), 1, sym_comment, - [226129] = 5, + [231456] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6819), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7234), 1, + STATE(6967), 1, + sym_val_list, + STATE(7363), 1, sym_comment, - [226145] = 4, + [231472] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11457), 1, + ACTIONS(11487), 1, sym__table_head_separator, - STATE(7235), 1, + STATE(7364), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1026), 2, anon_sym_RBRACK, sym__entry_separator, - [226159] = 5, + [231486] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7953), 1, + ACTIONS(6489), 1, sym__entry_separator, - ACTIONS(7957), 1, + ACTIONS(11489), 1, anon_sym_RBRACK, - ACTIONS(11459), 1, - anon_sym_LT, - STATE(7236), 1, + STATE(6304), 1, + aux_sym__multiple_types_repeat1, + STATE(7365), 1, + sym_comment, + [231502] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7366), 1, sym_comment, - [226175] = 4, + ACTIONS(10113), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [231514] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11461), 1, + ACTIONS(11491), 1, sym__table_head_separator, - STATE(7237), 1, + STATE(7367), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1026), 2, anon_sym_RBRACK, sym__entry_separator, - [226189] = 5, + [231528] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2238), 1, + anon_sym_EQ_GT, + ACTIONS(2242), 1, + anon_sym_PIPE, + ACTIONS(2244), 1, + aux_sym_unquoted_token4, + STATE(7368), 1, + sym_comment, + [231544] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5706), 1, + sym__entry_separator, + ACTIONS(11493), 1, + anon_sym_RBRACK, + STATE(2673), 1, + aux_sym__multiple_types_repeat1, + STATE(7369), 1, + sym_comment, + [231560] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6840), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7238), 1, + STATE(6990), 1, + sym_val_list, + STATE(7370), 1, sym_comment, - [226205] = 5, + [231576] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6843), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7239), 1, + STATE(6993), 1, + sym_val_list, + STATE(7371), 1, sym_comment, - [226221] = 5, + [231592] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1709), 1, - sym__newline, - ACTIONS(1721), 1, - sym__space, - ACTIONS(7157), 1, - aux_sym_unquoted_token2, - STATE(7240), 1, + ACTIONS(2458), 1, + sym__entry_separator, + STATE(7372), 1, sym_comment, - [226237] = 5, + ACTIONS(2456), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [231606] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6847), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7241), 1, + STATE(6997), 1, + sym_val_list, + STATE(7373), 1, sym_comment, - [226253] = 5, + [231622] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6849), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7242), 1, + STATE(7000), 1, + sym_val_list, + STATE(7374), 1, sym_comment, - [226269] = 4, + [231638] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11463), 1, + ACTIONS(11495), 1, sym__table_head_separator, - STATE(7243), 1, + STATE(7375), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1026), 2, anon_sym_RBRACK, sym__entry_separator, - [226283] = 5, - ACTIONS(3), 1, + [231652] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(11465), 1, + ACTIONS(10955), 1, + sym_hex_digit, + ACTIONS(11497), 1, anon_sym_RBRACK, - STATE(6238), 1, - aux_sym__multiple_types_repeat1, - STATE(7244), 1, + STATE(7376), 1, sym_comment, - [226299] = 4, + STATE(7440), 1, + aux_sym_val_binary_repeat1, + [231668] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11467), 1, + ACTIONS(11499), 1, sym__table_head_separator, - STATE(7245), 1, + STATE(7377), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1026), 2, anon_sym_RBRACK, sym__entry_separator, - [226313] = 5, + [231682] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + ACTIONS(4569), 1, + aux_sym_unquoted_token4, + STATE(7378), 1, + sym_comment, + STATE(7700), 1, + sym__expr_parenthesized_immediate, + [231698] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + STATE(7379), 1, + sym_comment, + ACTIONS(6148), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [231710] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6861), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7246), 1, + STATE(7019), 1, + sym_val_list, + STATE(7380), 1, sym_comment, - [226329] = 5, + [231726] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6863), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7247), 1, + STATE(7021), 1, + sym_val_list, + STATE(7381), 1, sym_comment, - [226345] = 5, + [231742] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6865), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7248), 1, + STATE(7024), 1, + sym_val_list, + STATE(7382), 1, sym_comment, - [226361] = 5, + [231758] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6868), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7249), 1, + STATE(7027), 1, + sym_val_list, + STATE(7383), 1, sym_comment, - [226377] = 4, + [231774] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11469), 1, + ACTIONS(11501), 1, sym__table_head_separator, - STATE(7250), 1, + STATE(7384), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1026), 2, anon_sym_RBRACK, sym__entry_separator, - [226391] = 4, + [231788] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11471), 1, + ACTIONS(11503), 1, sym__table_head_separator, - STATE(7251), 1, + STATE(7385), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1026), 2, anon_sym_RBRACK, sym__entry_separator, - [226405] = 5, + [231802] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6888), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7252), 1, + STATE(7043), 1, + sym_val_list, + STATE(7386), 1, sym_comment, - [226421] = 5, + [231818] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6891), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7253), 1, + STATE(7046), 1, + sym_val_list, + STATE(7387), 1, + sym_comment, + [231834] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5539), 1, + anon_sym_LPAREN2, + ACTIONS(8653), 1, + aux_sym__unquoted_in_list_token4, + STATE(7388), 1, sym_comment, - [226437] = 5, + STATE(7608), 1, + sym__expr_parenthesized_immediate, + [231850] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6895), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7254), 1, + STATE(7049), 1, + sym_val_list, + STATE(7389), 1, sym_comment, - [226453] = 5, + [231866] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6898), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7255), 1, + STATE(7050), 1, + sym_val_list, + STATE(7390), 1, sym_comment, - [226469] = 4, + [231882] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11473), 1, + ACTIONS(11505), 1, sym__table_head_separator, - STATE(7256), 1, + STATE(7391), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1026), 2, anon_sym_RBRACK, sym__entry_separator, - [226483] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7257), 1, - sym_comment, - ACTIONS(10845), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226495] = 5, + [231896] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6044), 1, + ACTIONS(2442), 1, sym__entry_separator, - ACTIONS(6056), 1, - anon_sym_RBRACE, - STATE(2923), 1, - aux_sym__multiple_types_repeat1, - STATE(7258), 1, + STATE(7392), 1, sym_comment, - [226511] = 4, + ACTIONS(2440), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [231910] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11475), 1, + ACTIONS(11507), 1, sym__table_head_separator, - STATE(7259), 1, + STATE(7393), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1026), 2, anon_sym_RBRACK, sym__entry_separator, - [226525] = 5, + [231924] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6917), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7260), 1, + STATE(7066), 1, + sym_val_list, + STATE(7394), 1, sym_comment, - [226541] = 5, + [231940] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6920), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7261), 1, + STATE(7068), 1, + sym_val_list, + STATE(7395), 1, sym_comment, - [226557] = 5, + [231956] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6923), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7262), 1, + STATE(7071), 1, + sym_val_list, + STATE(7396), 1, sym_comment, - [226573] = 5, + [231972] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6925), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7263), 1, + STATE(7072), 1, + sym_val_list, + STATE(7397), 1, sym_comment, - [226589] = 4, + [231988] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11477), 1, + ACTIONS(11509), 1, sym__table_head_separator, - STATE(7264), 1, + STATE(7398), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1026), 2, anon_sym_RBRACK, sym__entry_separator, - [226603] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6044), 1, - sym__entry_separator, - ACTIONS(6058), 1, - anon_sym_RBRACE, - STATE(2924), 1, - aux_sym__multiple_types_repeat1, - STATE(7265), 1, - sym_comment, - [226619] = 4, + [232002] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11479), 1, + ACTIONS(11511), 1, sym__table_head_separator, - STATE(7266), 1, + STATE(7399), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1026), 2, anon_sym_RBRACK, sym__entry_separator, - [226633] = 4, - ACTIONS(3), 1, + [232016] = 5, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2397), 1, - sym__entry_separator, - STATE(7267), 1, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(6944), 1, + aux_sym_val_table_repeat1, + STATE(7083), 1, + sym_val_list, + STATE(7400), 1, sym_comment, - ACTIONS(2395), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [226647] = 5, + [232032] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6939), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7268), 1, + STATE(7085), 1, + sym_val_list, + STATE(7401), 1, sym_comment, - [226663] = 5, + [232048] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6942), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7269), 1, + STATE(7088), 1, + sym_val_list, + STATE(7402), 1, sym_comment, - [226679] = 5, + [232064] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10949), 1, - sym_hex_digit, - ACTIONS(11481), 1, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(6944), 1, + aux_sym_val_table_repeat1, + STATE(7090), 1, + sym_val_list, + STATE(7403), 1, + sym_comment, + [232080] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11513), 1, + sym__table_head_separator, + STATE(7404), 1, + sym_comment, + ACTIONS(1026), 2, anon_sym_RBRACK, - STATE(7270), 1, + sym__entry_separator, + [232094] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11515), 1, + sym__table_head_separator, + STATE(7405), 1, sym_comment, - STATE(7310), 1, - aux_sym_val_binary_repeat1, - [226695] = 5, + ACTIONS(1026), 2, + anon_sym_RBRACK, + sym__entry_separator, + [232108] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, STATE(6944), 1, + aux_sym_val_table_repeat1, + STATE(7102), 1, sym_val_list, - STATE(7170), 1, + STATE(7406), 1, + sym_comment, + [232124] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7271), 1, + STATE(7104), 1, + sym_val_list, + STATE(7407), 1, sym_comment, - [226711] = 5, + [232140] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6946), 1, + STATE(6944), 1, + aux_sym_val_table_repeat1, + STATE(7106), 1, sym_val_list, - STATE(7170), 1, + STATE(7408), 1, + sym_comment, + [232156] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7272), 1, + STATE(7107), 1, + sym_val_list, + STATE(7409), 1, sym_comment, - [226727] = 4, + [232172] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11483), 1, + ACTIONS(11517), 1, sym__table_head_separator, - STATE(7273), 1, + STATE(7410), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1026), 2, anon_sym_RBRACK, sym__entry_separator, - [226741] = 4, + [232186] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11485), 1, + ACTIONS(11519), 1, sym__table_head_separator, - STATE(7274), 1, + STATE(7411), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1026), 2, anon_sym_RBRACK, sym__entry_separator, - [226755] = 5, + [232200] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6960), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7275), 1, + STATE(7116), 1, + sym_val_list, + STATE(7412), 1, sym_comment, - [226771] = 5, + [232216] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6963), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7276), 1, + STATE(7118), 1, + sym_val_list, + STATE(7413), 1, sym_comment, - [226787] = 5, + [232232] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6967), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7277), 1, + STATE(7120), 1, + sym_val_list, + STATE(7414), 1, sym_comment, - [226803] = 5, + [232248] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6970), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7278), 1, + STATE(7123), 1, + sym_val_list, + STATE(7415), 1, sym_comment, - [226819] = 4, + [232264] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11487), 1, + ACTIONS(11521), 1, sym__table_head_separator, - STATE(7279), 1, + STATE(7416), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1026), 2, anon_sym_RBRACK, sym__entry_separator, - [226833] = 4, + [232278] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11489), 1, + ACTIONS(11523), 1, sym__table_head_separator, - STATE(7280), 1, + STATE(7417), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1026), 2, anon_sym_RBRACK, sym__entry_separator, - [226847] = 3, + [232292] = 5, ACTIONS(247), 1, anon_sym_POUND, - STATE(7281), 1, - sym_comment, - ACTIONS(10847), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226859] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6983), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7282), 1, + STATE(7133), 1, + sym_val_list, + STATE(7418), 1, sym_comment, - [226875] = 5, + [232308] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6985), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7283), 1, + STATE(7136), 1, + sym_val_list, + STATE(7419), 1, sym_comment, - [226891] = 5, + [232324] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6989), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7284), 1, + STATE(7138), 1, + sym_val_list, + STATE(7420), 1, sym_comment, - [226907] = 5, + [232340] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(6992), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7285), 1, + STATE(7141), 1, + sym_val_list, + STATE(7421), 1, sym_comment, - [226923] = 4, + [232356] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11491), 1, + ACTIONS(11525), 1, sym__table_head_separator, - STATE(7286), 1, + STATE(7422), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1026), 2, anon_sym_RBRACK, sym__entry_separator, - [226937] = 4, + [232370] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11493), 1, + ACTIONS(11527), 1, sym__table_head_separator, - STATE(7287), 1, + STATE(7423), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1026), 2, anon_sym_RBRACK, sym__entry_separator, - [226951] = 4, + [232384] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11495), 1, - anon_sym_EQ2, - STATE(7288), 1, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(6944), 1, + aux_sym_val_table_repeat1, + STATE(7152), 1, + sym_val_list, + STATE(7424), 1, sym_comment, - ACTIONS(5051), 2, - sym_identifier, - anon_sym_DOLLAR, - [226965] = 5, + [232400] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(7002), 1, - sym_val_list, - STATE(7170), 1, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7289), 1, + STATE(7154), 1, + sym_val_list, + STATE(7425), 1, sym_comment, - [226981] = 5, + [232416] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_LBRACK, - STATE(7005), 1, + STATE(6944), 1, + aux_sym_val_table_repeat1, + STATE(7158), 1, sym_val_list, - STATE(7170), 1, + STATE(7426), 1, + sym_comment, + [232432] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9520), 1, + anon_sym_LBRACK, + STATE(6944), 1, aux_sym_val_table_repeat1, - STATE(7290), 1, + STATE(7160), 1, + sym_val_list, + STATE(7427), 1, sym_comment, - [226997] = 3, + [232448] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7291), 1, + STATE(7428), 1, sym_comment, - ACTIONS(10847), 3, + ACTIONS(10103), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [227009] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(7008), 1, - sym_val_list, - STATE(7170), 1, - aux_sym_val_table_repeat1, - STATE(7292), 1, - sym_comment, - [227025] = 5, + [232460] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(7010), 1, - sym_val_list, - STATE(7170), 1, - aux_sym_val_table_repeat1, - STATE(7293), 1, + STATE(7429), 1, sym_comment, - [227041] = 4, + ACTIONS(10105), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [232472] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11497), 1, - sym__table_head_separator, - STATE(7294), 1, + ACTIONS(2246), 1, + anon_sym_EQ_GT, + ACTIONS(2250), 1, + anon_sym_PIPE, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + STATE(7430), 1, sym_comment, - ACTIONS(1030), 2, - anon_sym_RBRACK, - sym__entry_separator, - [227055] = 4, + [232488] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11499), 1, - sym__table_head_separator, - STATE(7295), 1, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + ACTIONS(2254), 1, + anon_sym_EQ_GT, + ACTIONS(2256), 1, + anon_sym_PIPE, + STATE(7431), 1, sym_comment, - ACTIONS(1030), 2, - anon_sym_RBRACK, - sym__entry_separator, - [227069] = 3, + [232504] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7296), 1, + STATE(7432), 1, sym_comment, - ACTIONS(11501), 3, + ACTIONS(10107), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [227081] = 5, + [232516] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(7017), 1, - sym_val_list, - STATE(7170), 1, - aux_sym_val_table_repeat1, - STATE(7297), 1, + STATE(7433), 1, sym_comment, - [227097] = 5, + ACTIONS(10121), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [232528] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(7019), 1, - sym_val_list, - STATE(7170), 1, - aux_sym_val_table_repeat1, - STATE(7298), 1, + ACTIONS(1812), 1, + aux_sym_unquoted_token2, + STATE(7434), 1, sym_comment, - [227113] = 3, + ACTIONS(2232), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [232542] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7299), 1, + STATE(7435), 1, sym_comment, - ACTIONS(11503), 3, + ACTIONS(11529), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [227125] = 5, + [232554] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(7022), 1, - sym_val_list, - STATE(7170), 1, - aux_sym_val_table_repeat1, - STATE(7300), 1, + ACTIONS(1812), 1, + aux_sym_unquoted_token2, + STATE(7436), 1, + sym_comment, + ACTIONS(1810), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [232568] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1855), 1, + sym__entry_separator, + STATE(7437), 1, + sym_comment, + ACTIONS(1853), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [232582] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1917), 1, + sym__entry_separator, + STATE(7438), 1, + sym_comment, + ACTIONS(1915), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [232596] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + ACTIONS(4866), 1, + aux_sym_unquoted_token4, + STATE(7439), 1, sym_comment, - [227141] = 5, + STATE(7707), 1, + sym__expr_parenthesized_immediate, + [232612] = 5, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(7023), 1, - sym_val_list, - STATE(7170), 1, - aux_sym_val_table_repeat1, - STATE(7301), 1, + ACTIONS(10955), 1, + sym_hex_digit, + ACTIONS(11531), 1, + anon_sym_RBRACK, + STATE(6839), 1, + aux_sym_val_binary_repeat1, + STATE(7440), 1, + sym_comment, + [232628] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7441), 1, + sym_comment, + ACTIONS(10117), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [232640] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11535), 1, + anon_sym_COMMA, + STATE(7442), 1, sym_comment, - [227157] = 4, + ACTIONS(11533), 2, + anon_sym_RBRACK, + sym_hex_digit, + [232654] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11505), 1, - sym__table_head_separator, - STATE(7302), 1, + ACTIONS(2290), 1, + sym__entry_separator, + ACTIONS(11537), 1, + anon_sym_RBRACE, + STATE(579), 1, + aux_sym__multiple_types_repeat1, + STATE(7443), 1, + sym_comment, + [232670] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6219), 1, + anon_sym_AT, + ACTIONS(8039), 1, + anon_sym_EQ, + STATE(5093), 1, + sym_param_cmd, + STATE(7444), 1, + sym_comment, + [232686] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1739), 1, + aux_sym_unquoted_token2, + STATE(7445), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(1741), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [232700] = 5, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(10955), 1, + sym_hex_digit, + ACTIONS(11539), 1, anon_sym_RBRACK, + STATE(6839), 1, + aux_sym_val_binary_repeat1, + STATE(7446), 1, + sym_comment, + [232716] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6489), 1, sym__entry_separator, - [227171] = 4, + ACTIONS(11541), 1, + anon_sym_RBRACK, + STATE(6409), 1, + aux_sym__multiple_types_repeat1, + STATE(7447), 1, + sym_comment, + [232732] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11507), 1, - sym__table_head_separator, - STATE(7303), 1, + ACTIONS(2373), 1, + sym__entry_separator, + STATE(7448), 1, sym_comment, - ACTIONS(1030), 2, + ACTIONS(2371), 2, anon_sym_RBRACK, + anon_sym_RBRACE, + [232746] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2480), 1, sym__entry_separator, - [227185] = 5, - ACTIONS(247), 1, + STATE(7449), 1, + sym_comment, + ACTIONS(2478), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [232760] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(7032), 1, - sym_val_list, - STATE(7170), 1, - aux_sym_val_table_repeat1, - STATE(7304), 1, + ACTIONS(2349), 1, + sym__entry_separator, + STATE(7450), 1, sym_comment, - [227201] = 5, + ACTIONS(2347), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [232774] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(7034), 1, - sym_val_list, - STATE(7170), 1, - aux_sym_val_table_repeat1, - STATE(7305), 1, + STATE(7451), 1, sym_comment, - [227217] = 3, + ACTIONS(10149), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [232786] = 3, ACTIONS(247), 1, anon_sym_POUND, - STATE(7306), 1, + STATE(7452), 1, sym_comment, - ACTIONS(11509), 3, + ACTIONS(11543), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [227229] = 5, + [232798] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(7037), 1, - sym_val_list, - STATE(7170), 1, - aux_sym_val_table_repeat1, - STATE(7307), 1, + STATE(7453), 1, sym_comment, - [227245] = 5, + ACTIONS(10151), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [232810] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(7039), 1, - sym_val_list, - STATE(7170), 1, - aux_sym_val_table_repeat1, - STATE(7308), 1, + STATE(7454), 1, sym_comment, - [227261] = 5, + ACTIONS(11545), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [232822] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - ACTIONS(4259), 1, - aux_sym_unquoted_token4, - STATE(7309), 1, + ACTIONS(7371), 1, + anon_sym_RBRACK, + ACTIONS(7373), 1, + sym__entry_separator, + STATE(7455), 1, sym_comment, - STATE(7504), 1, - sym__expr_parenthesized_immediate, - [227277] = 5, + [232835] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10949), 1, - sym_hex_digit, - ACTIONS(11511), 1, - anon_sym_RBRACK, - STATE(6852), 1, - aux_sym_val_binary_repeat1, - STATE(7310), 1, + ACTIONS(6182), 1, + anon_sym_LBRACE, + STATE(7451), 1, + sym_block, + STATE(7456), 1, sym_comment, - [227293] = 5, + [232848] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6221), 1, - anon_sym_AT, - ACTIONS(11513), 1, - anon_sym_GT2, - STATE(7311), 1, + ACTIONS(6182), 1, + anon_sym_LBRACE, + STATE(6926), 1, + sym_block, + STATE(7457), 1, sym_comment, - STATE(7739), 1, - sym_param_cmd, - [227309] = 4, + [232861] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2494), 1, - sym__entry_separator, - STATE(7312), 1, + ACTIONS(11547), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7458), 1, sym_comment, - ACTIONS(2492), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [227323] = 5, + STATE(7483), 1, + aux_sym__unquoted_with_expr_repeat1, + [232874] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(8157), 1, sym__entry_separator, - ACTIONS(11515), 1, + ACTIONS(8159), 1, anon_sym_RBRACK, - STATE(6279), 1, - aux_sym__multiple_types_repeat1, - STATE(7313), 1, + STATE(7459), 1, sym_comment, - [227339] = 4, - ACTIONS(3), 1, + [232887] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2096), 1, - sym__entry_separator, - STATE(7314), 1, + ACTIONS(6182), 1, + anon_sym_LBRACE, + STATE(7311), 1, + sym_block, + STATE(7460), 1, sym_comment, - ACTIONS(2094), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [227353] = 4, - ACTIONS(3), 1, + [232900] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2510), 1, - sym__entry_separator, - STATE(7315), 1, + ACTIONS(6182), 1, + anon_sym_LBRACE, + STATE(6975), 1, + sym_block, + STATE(7461), 1, sym_comment, - ACTIONS(2508), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [227367] = 5, - ACTIONS(3), 1, + [232913] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5878), 1, - sym__entry_separator, - ACTIONS(11517), 1, - anon_sym_RBRACK, - STATE(2832), 1, - aux_sym__multiple_types_repeat1, - STATE(7316), 1, + ACTIONS(6182), 1, + anon_sym_LBRACE, + STATE(7299), 1, + sym_block, + STATE(7462), 1, sym_comment, - [227383] = 5, + [232926] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5878), 1, - sym__entry_separator, - ACTIONS(11519), 1, - anon_sym_RBRACK, - STATE(2830), 1, - aux_sym__multiple_types_repeat1, - STATE(7317), 1, + ACTIONS(11549), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7463), 1, sym_comment, - [227399] = 3, + STATE(7488), 1, + aux_sym__unquoted_with_expr_repeat1, + [232939] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(7318), 1, + ACTIONS(6182), 1, + anon_sym_LBRACE, + STATE(7332), 1, + sym_block, + STATE(7464), 1, sym_comment, - ACTIONS(11521), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [227411] = 5, + [232952] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(11523), 1, - anon_sym_RBRACK, - STATE(6313), 1, - aux_sym__multiple_types_repeat1, - STATE(7319), 1, + ACTIONS(2240), 1, + anon_sym_LPAREN2, + ACTIONS(2244), 1, + aux_sym__unquoted_in_list_token4, + STATE(7465), 1, sym_comment, - [227427] = 5, + [232965] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(11525), 1, - anon_sym_RBRACK, - STATE(6280), 1, - aux_sym__multiple_types_repeat1, - STATE(7320), 1, + ACTIONS(11551), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7466), 1, sym_comment, - [227443] = 5, + STATE(7483), 1, + aux_sym__unquoted_with_expr_repeat1, + [232978] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(11527), 1, - anon_sym_RBRACK, - STATE(6281), 1, - aux_sym__multiple_types_repeat1, - STATE(7321), 1, + ACTIONS(2238), 1, + anon_sym_in2, + ACTIONS(2244), 1, + aux_sym_unquoted_token4, + STATE(7467), 1, sym_comment, - [227459] = 5, + [232991] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(8251), 1, sym__entry_separator, - ACTIONS(11529), 1, + ACTIONS(8253), 1, anon_sym_RBRACK, - STATE(6347), 1, - aux_sym__multiple_types_repeat1, - STATE(7322), 1, + STATE(7468), 1, sym_comment, - [227475] = 5, + [233004] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(8065), 1, sym__entry_separator, - ACTIONS(11531), 1, + ACTIONS(8067), 1, anon_sym_RBRACK, - STATE(6352), 1, - aux_sym__multiple_types_repeat1, - STATE(7323), 1, + STATE(7469), 1, sym_comment, - [227491] = 5, + [233017] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(11533), 1, - anon_sym_RBRACK, - STATE(6282), 1, - aux_sym__multiple_types_repeat1, - STATE(7324), 1, + ACTIONS(11553), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7470), 1, sym_comment, - [227507] = 3, + STATE(7489), 1, + aux_sym__unquoted_with_expr_repeat1, + [233030] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(7325), 1, + ACTIONS(6182), 1, + anon_sym_LBRACE, + STATE(7339), 1, + sym_block, + STATE(7471), 1, sym_comment, - ACTIONS(10849), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [227519] = 4, - ACTIONS(247), 1, + [233043] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4864), 1, - aux_sym_unquoted_token2, - STATE(7326), 1, + ACTIONS(11555), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7472), 1, sym_comment, - ACTIONS(1721), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [227533] = 5, + STATE(7698), 1, + aux_sym__unquoted_with_expr_repeat1, + [233056] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(11535), 1, + ACTIONS(11557), 1, anon_sym_RBRACK, - STATE(6283), 1, - aux_sym__multiple_types_repeat1, - STATE(7327), 1, + ACTIONS(11559), 1, + sym__entry_separator, + STATE(7473), 1, sym_comment, - [227549] = 4, + [233069] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1739), 1, - aux_sym_unquoted_token2, - STATE(7328), 1, - sym_comment, - ACTIONS(1741), 2, + ACTIONS(6180), 1, anon_sym_LBRACE, - anon_sym_LPAREN2, - [227563] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(11537), 1, - anon_sym_RBRACK, - STATE(6251), 1, - aux_sym__multiple_types_repeat1, - STATE(7329), 1, + STATE(6335), 1, + sym_block, + STATE(7474), 1, sym_comment, - [227579] = 5, - ACTIONS(3), 1, + [233082] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(11539), 1, - anon_sym_RBRACK, - STATE(6284), 1, - aux_sym__multiple_types_repeat1, - STATE(7330), 1, + ACTIONS(6182), 1, + anon_sym_LBRACE, + STATE(7342), 1, + sym_block, + STATE(7475), 1, sym_comment, - [227595] = 5, + [233095] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9534), 1, - anon_sym_LBRACK, - STATE(7038), 1, - sym_val_list, - STATE(7170), 1, - aux_sym_val_table_repeat1, - STATE(7331), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(4648), 1, + sym_block, + STATE(7476), 1, sym_comment, - [227611] = 4, + [233108] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2389), 1, - sym__entry_separator, - STATE(7332), 1, + ACTIONS(11561), 1, + sym__newline, + ACTIONS(11563), 1, + sym__space, + STATE(7477), 1, sym_comment, - ACTIONS(2387), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [227625] = 4, + [233121] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2165), 1, + ACTIONS(2394), 1, + anon_sym_RBRACE, + ACTIONS(2396), 1, sym__entry_separator, - STATE(7333), 1, + STATE(7478), 1, sym_comment, - ACTIONS(2159), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [227639] = 5, + [233134] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3857), 1, - sym__newline, - ACTIONS(11541), 1, - anon_sym_COLON, - STATE(1816), 1, - aux_sym_shebang_repeat1, - STATE(7334), 1, + ACTIONS(6182), 1, + anon_sym_LBRACE, + STATE(6947), 1, + sym_block, + STATE(7479), 1, sym_comment, - [227655] = 4, + [233147] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2466), 1, - sym__entry_separator, - STATE(7335), 1, + ACTIONS(2246), 1, + anon_sym_in2, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + STATE(7480), 1, sym_comment, - ACTIONS(2464), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [227669] = 5, + [233160] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(11543), 1, - anon_sym_RBRACK, - STATE(6285), 1, - aux_sym__multiple_types_repeat1, - STATE(7336), 1, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + ACTIONS(2254), 1, + anon_sym_in2, + STATE(7481), 1, sym_comment, - [227685] = 4, - ACTIONS(3), 1, + [233173] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2470), 1, - sym__entry_separator, - STATE(7337), 1, + ACTIONS(5539), 1, + anon_sym_LPAREN2, + STATE(7482), 1, sym_comment, - ACTIONS(2468), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [227699] = 4, + STATE(7608), 1, + sym__expr_parenthesized_immediate, + [233186] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6048), 1, - anon_sym_RBRACK, - STATE(7338), 1, + ACTIONS(11565), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7483), 2, + sym_comment, + aux_sym__unquoted_with_expr_repeat1, + [233197] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(6337), 1, + sym_block, + STATE(7484), 1, sym_comment, - ACTIONS(6050), 2, + [233210] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1709), 1, anon_sym_LPAREN2, - sym__entry_separator, - [227713] = 3, + STATE(7485), 1, + sym_comment, + STATE(8152), 1, + sym__expr_parenthesized_immediate, + [233223] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7339), 1, - sym_comment, - ACTIONS(2248), 3, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(2242), 1, + anon_sym_LBRACE, + ACTIONS(2244), 1, aux_sym_unquoted_token4, - [227725] = 5, + STATE(7486), 1, + sym_comment, + [233236] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(2230), 1, + anon_sym_RBRACE, + ACTIONS(2232), 1, sym__entry_separator, - ACTIONS(11545), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, - STATE(7340), 1, + STATE(7487), 1, sym_comment, - [227741] = 4, + [233249] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2502), 1, - sym__entry_separator, - STATE(7341), 1, + ACTIONS(11568), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7483), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7488), 1, sym_comment, - ACTIONS(2500), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [227755] = 5, + [233262] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - ACTIONS(11547), 1, - anon_sym_RBRACK, - STATE(6286), 1, - aux_sym__multiple_types_repeat1, - STATE(7342), 1, + ACTIONS(11570), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7483), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7489), 1, sym_comment, - [227771] = 4, + [233275] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2439), 1, + ACTIONS(2268), 1, + anon_sym_RBRACE, + ACTIONS(2270), 1, sym__entry_separator, - STATE(7343), 1, + STATE(7490), 1, sym_comment, - ACTIONS(2437), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [227785] = 4, + [233288] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2006), 1, + ACTIONS(2246), 1, + anon_sym_RBRACE, + ACTIONS(2250), 1, sym__entry_separator, - STATE(7344), 1, + STATE(7491), 1, sym_comment, - ACTIONS(2004), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [227799] = 3, - ACTIONS(247), 1, + [233301] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7345), 1, + ACTIONS(2254), 1, + anon_sym_RBRACE, + ACTIONS(2256), 1, + sym__entry_separator, + STATE(7492), 1, sym_comment, - ACTIONS(10777), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [227811] = 3, + [233314] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(7346), 1, - sym_comment, - ACTIONS(11549), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [227823] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5679), 1, - anon_sym_RBRACK, - ACTIONS(5681), 1, - sym__entry_separator, - STATE(7347), 1, + ACTIONS(5056), 1, + anon_sym_in2, + ACTIONS(11572), 1, + anon_sym_EQ2, + STATE(7493), 1, sym_comment, - [227836] = 4, + [233327] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2248), 1, - aux_sym_unquoted_token4, - ACTIONS(2250), 1, - anon_sym_LBRACE, - STATE(7348), 1, + ACTIONS(11574), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7494), 1, sym_comment, - [227849] = 4, + STATE(7499), 1, + aux_sym__unquoted_with_expr_repeat1, + [233340] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2234), 1, - anon_sym_RBRACE, - ACTIONS(2238), 1, - sym__entry_separator, - STATE(7349), 1, + ACTIONS(11576), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7495), 1, sym_comment, - [227862] = 4, + STATE(7500), 1, + aux_sym__unquoted_with_expr_repeat1, + [233353] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6186), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - STATE(6914), 1, + STATE(7300), 1, sym_block, - STATE(7350), 1, + STATE(7496), 1, sym_comment, - [227875] = 4, + [233366] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - STATE(6515), 1, + STATE(6909), 1, sym_block, - STATE(7351), 1, + STATE(7497), 1, sym_comment, - [227888] = 4, + [233379] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11551), 1, + ACTIONS(11578), 1, aux_sym__unquoted_with_expr_token1, - STATE(7352), 1, + STATE(7498), 1, sym_comment, - STATE(7491), 1, + STATE(7521), 1, aux_sym__unquoted_with_expr_repeat1, - [227901] = 4, - ACTIONS(247), 1, + [233392] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6184), 1, - anon_sym_LBRACE, - STATE(5147), 1, - sym_block, - STATE(7353), 1, + ACTIONS(11580), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7483), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7499), 1, sym_comment, - [227914] = 4, - ACTIONS(247), 1, + [233405] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1579), 1, - aux_sym_unquoted_token2, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - STATE(7354), 1, + ACTIONS(11582), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7483), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7500), 1, sym_comment, - [227927] = 4, + [233418] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6186), 1, + ACTIONS(9770), 1, anon_sym_LBRACE, - STATE(7203), 1, - sym_block, - STATE(7355), 1, + STATE(7150), 1, + sym_val_record, + STATE(7501), 1, sym_comment, - [227940] = 4, + [233431] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2214), 1, - anon_sym_in2, - ACTIONS(2220), 1, + ACTIONS(1028), 1, + anon_sym_LBRACE, + ACTIONS(2228), 1, aux_sym_unquoted_token4, - STATE(7356), 1, + STATE(7502), 1, sym_comment, - [227953] = 4, + [233444] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - ACTIONS(2222), 1, - anon_sym_in2, - STATE(7357), 1, + ACTIONS(2502), 1, + anon_sym_RBRACE, + ACTIONS(2504), 1, + sym__entry_separator, + STATE(7503), 1, sym_comment, - [227966] = 4, + [233457] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11553), 1, + ACTIONS(11584), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(7358), 1, + STATE(7504), 1, sym_comment, - STATE(7476), 1, + STATE(7634), 1, aux_sym__unquoted_in_record_with_expr_repeat1, - [227979] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(7359), 1, - sym_comment, - STATE(7503), 1, - sym__expr_parenthesized_immediate, - [227992] = 4, + [233470] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - STATE(6214), 1, + STATE(7171), 1, sym_block, - STATE(7360), 1, + STATE(7505), 1, sym_comment, - [228005] = 4, - ACTIONS(247), 1, + [233483] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9432), 1, - anon_sym_LBRACE, - STATE(6952), 1, - sym_val_record, - STATE(7361), 1, + ACTIONS(11586), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7506), 1, sym_comment, - [228018] = 4, + STATE(7525), 1, + aux_sym__unquoted_with_expr_repeat1, + [233496] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, - anon_sym_LBRACE, - STATE(6215), 1, - sym_block, - STATE(7362), 1, + ACTIONS(1559), 1, + aux_sym_unquoted_token2, + ACTIONS(1822), 1, + anon_sym_LPAREN2, + STATE(7507), 1, sym_comment, - [228031] = 4, + [233509] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5556), 1, + ACTIONS(5539), 1, anon_sym_LPAREN2, - STATE(7363), 1, + STATE(7508), 1, sym_comment, - STATE(7401), 1, + STATE(7529), 1, sym__expr_parenthesized_immediate, - [228044] = 4, - ACTIONS(3), 1, + [233522] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11555), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7364), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(6290), 1, + sym_block, + STATE(7509), 1, sym_comment, - STATE(7532), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [228057] = 3, + [233535] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(7365), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(6387), 1, + sym_block, + STATE(7510), 1, sym_comment, - ACTIONS(11557), 2, - anon_sym_RBRACK, - sym_hex_digit, - [228068] = 4, + [233548] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1030), 1, - anon_sym_in2, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(7366), 1, + ACTIONS(7900), 1, + anon_sym_RBRACK, + ACTIONS(7902), 1, + sym__entry_separator, + STATE(7511), 1, sym_comment, - [228081] = 4, + [233561] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(6636), 1, + STATE(6388), 1, sym_block, - STATE(7367), 1, + STATE(7512), 1, sym_comment, - [228094] = 4, - ACTIONS(3), 1, + [233574] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11559), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7368), 1, + ACTIONS(6182), 1, + anon_sym_LBRACE, + STATE(6948), 1, + sym_block, + STATE(7513), 1, sym_comment, - STATE(7533), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [228107] = 4, - ACTIONS(3), 1, + [233587] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11561), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7369), 1, + ACTIONS(6182), 1, + anon_sym_LBRACE, + STATE(6950), 1, + sym_block, + STATE(7514), 1, sym_comment, - STATE(7510), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [228120] = 4, + [233600] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2208), 1, - anon_sym_LPAREN2, - ACTIONS(2212), 1, - aux_sym_unquoted_token4, - STATE(7370), 1, + ACTIONS(11588), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7515), 1, sym_comment, - [228133] = 4, - ACTIONS(247), 1, + STATE(7517), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [233613] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(7371), 1, + ACTIONS(5650), 1, + anon_sym_RBRACK, + ACTIONS(5652), 1, + sym__entry_separator, + STATE(7516), 1, sym_comment, - STATE(7504), 1, - sym__expr_parenthesized_immediate, - [228146] = 4, + [233626] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8093), 1, - sym__entry_separator, - ACTIONS(8095), 1, - anon_sym_RBRACK, - STATE(7372), 1, + ACTIONS(11590), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7517), 2, sym_comment, - [228159] = 4, + aux_sym__unquoted_in_list_with_expr_repeat1, + [233637] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5556), 1, - anon_sym_LPAREN2, - STATE(7373), 1, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + ACTIONS(11593), 1, + anon_sym_make, + STATE(7518), 1, sym_comment, - STATE(7562), 1, - sym__expr_parenthesized_immediate, - [228172] = 4, + [233650] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2254), 1, + ACTIONS(1804), 1, anon_sym_LPAREN2, - ACTIONS(2258), 1, + ACTIONS(1812), 1, aux_sym_unquoted_token2, - STATE(7374), 1, - sym_comment, - [228185] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8103), 1, - sym__entry_separator, - ACTIONS(8105), 1, - anon_sym_RBRACK, - STATE(7375), 1, + STATE(7519), 1, sym_comment, - [228198] = 4, + [233663] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1888), 1, - aux_sym_unquoted_token2, - ACTIONS(2189), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - STATE(7376), 1, + STATE(7270), 1, + sym_block, + STATE(7520), 1, sym_comment, - [228211] = 4, - ACTIONS(247), 1, + [233676] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - ACTIONS(11563), 1, - anon_sym_make, - STATE(7377), 1, + ACTIONS(11595), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7483), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7521), 1, sym_comment, - [228224] = 4, + [233689] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5051), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - ACTIONS(11565), 1, - anon_sym_EQ2, - STATE(7378), 1, + STATE(7302), 1, + sym_block, + STATE(7522), 1, sym_comment, - [228237] = 4, + [233702] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11567), 1, + ACTIONS(11597), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(7379), 1, + STATE(7523), 1, sym_comment, - STATE(7476), 1, + STATE(7637), 1, aux_sym__unquoted_in_record_with_expr_repeat1, - [228250] = 4, + [233715] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11569), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7380), 1, + ACTIONS(5691), 1, + anon_sym_RBRACK, + ACTIONS(5693), 1, + sym__entry_separator, + STATE(7524), 1, sym_comment, - STATE(7491), 1, + [233728] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11599), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7483), 1, aux_sym__unquoted_with_expr_repeat1, - [228263] = 4, + STATE(7525), 1, + sym_comment, + [233741] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(7381), 1, + ACTIONS(6182), 1, + anon_sym_LBRACE, + STATE(6953), 1, + sym_block, + STATE(7526), 1, sym_comment, - STATE(7386), 1, - sym__expr_parenthesized_immediate, - [228276] = 4, + [233754] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - STATE(6742), 1, + STATE(4941), 1, sym_block, - STATE(7382), 1, + STATE(7527), 1, sym_comment, - [228289] = 4, + [233767] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7981), 1, - anon_sym_RBRACK, - ACTIONS(7983), 1, - sym__entry_separator, - STATE(7383), 1, + ACTIONS(11601), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7517), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + STATE(7528), 1, sym_comment, - [228302] = 4, + [233780] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11571), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7384), 1, + ACTIONS(11603), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7528), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + STATE(7529), 1, sym_comment, - STATE(7515), 1, + [233793] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1812), 1, + aux_sym_unquoted_token2, + ACTIONS(2232), 1, + anon_sym_LBRACE, + STATE(7530), 1, + sym_comment, + [233806] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6182), 1, + anon_sym_LBRACE, + STATE(6977), 1, + sym_block, + STATE(7531), 1, + sym_comment, + [233819] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11605), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7483), 1, aux_sym__unquoted_with_expr_repeat1, - [228315] = 4, + STATE(7532), 1, + sym_comment, + [233832] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2449), 1, + ACTIONS(1802), 1, anon_sym_RBRACE, - ACTIONS(2451), 1, + ACTIONS(1810), 1, sym__entry_separator, - STATE(7385), 1, + STATE(7533), 1, + sym_comment, + [233845] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(7498), 1, + sym__expr_parenthesized_immediate, + STATE(7534), 1, sym_comment, - [228328] = 4, + [233858] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11573), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7386), 1, + ACTIONS(11607), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7517), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + STATE(7535), 1, sym_comment, - STATE(7485), 1, - aux_sym__unquoted_with_expr_repeat1, - [228341] = 4, + [233871] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8107), 1, - sym__entry_separator, - ACTIONS(8109), 1, - anon_sym_RBRACK, - STATE(7387), 1, + ACTIONS(11609), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7536), 1, sym_comment, - [228354] = 4, - ACTIONS(247), 1, + STATE(7617), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [233884] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6186), 1, - anon_sym_LBRACE, - STATE(6774), 1, - sym_block, - STATE(7388), 1, + ACTIONS(11611), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7537), 1, + sym_comment, + STATE(7618), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [233897] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11613), 1, + anon_sym_RBRACE, + ACTIONS(11615), 1, + sym__entry_separator, + STATE(7538), 1, sym_comment, - [228367] = 4, + [233910] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(6708), 1, + STATE(6399), 1, sym_block, - STATE(7389), 1, + STATE(7539), 1, sym_comment, - [228380] = 4, + [233923] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(6558), 1, + STATE(6400), 1, sym_block, - STATE(7390), 1, + STATE(7540), 1, sym_comment, - [228393] = 4, + [233936] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11575), 1, + ACTIONS(9949), 1, anon_sym_RBRACE, - ACTIONS(11577), 1, + ACTIONS(9951), 1, sym__entry_separator, - STATE(7391), 1, + STATE(7541), 1, sym_comment, - [228406] = 4, + [233949] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11579), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7392), 1, + ACTIONS(11617), 1, + anon_sym_RBRACE, + ACTIONS(11619), 1, + sym__entry_separator, + STATE(7542), 1, sym_comment, - STATE(7511), 1, - aux_sym__unquoted_with_expr_repeat1, - [228419] = 4, + [233962] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11581), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7393), 1, + ACTIONS(5660), 1, + anon_sym_RBRACK, + ACTIONS(5662), 1, + sym__entry_separator, + STATE(7543), 1, sym_comment, - STATE(7500), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [228432] = 4, + [233975] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1878), 1, + ACTIONS(9953), 1, anon_sym_RBRACE, - ACTIONS(1886), 1, + ACTIONS(9955), 1, sym__entry_separator, - STATE(7394), 1, + STATE(7544), 1, sym_comment, - [228445] = 4, + [233988] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, + ACTIONS(1709), 1, + anon_sym_LPAREN2, + STATE(7536), 1, + sym__expr_parenthesized_immediate, + STATE(7545), 1, + sym_comment, + [234001] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7546), 1, + sym_comment, + ACTIONS(11411), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [234012] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6182), 1, anon_sym_LBRACE, - STATE(6743), 1, + STATE(7271), 1, sym_block, - STATE(7395), 1, + STATE(7547), 1, sym_comment, - [228458] = 4, - ACTIONS(3), 1, + [234025] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11583), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7396), 1, + ACTIONS(6182), 1, + anon_sym_LBRACE, + STATE(6850), 1, + sym_block, + STATE(7548), 1, sym_comment, - STATE(7528), 1, - aux_sym__unquoted_with_expr_repeat1, - [228471] = 4, + [234038] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(6360), 1, + sym_block, + STATE(7549), 1, + sym_comment, + [234051] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(6361), 1, + sym_block, + STATE(7550), 1, + sym_comment, + [234064] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5655), 1, - anon_sym_RBRACK, - ACTIONS(5657), 1, - sym__entry_separator, - STATE(7397), 1, + ACTIONS(2240), 1, + anon_sym_LPAREN2, + ACTIONS(2244), 1, + aux_sym__unquoted_in_record_token4, + STATE(7551), 1, sym_comment, - [228484] = 4, + [234077] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10051), 1, - anon_sym_RBRACE, - ACTIONS(10053), 1, + ACTIONS(6040), 1, sym__entry_separator, - STATE(7398), 1, + STATE(3060), 1, + aux_sym__multiple_types_repeat1, + STATE(7552), 1, sym_comment, - [228497] = 4, + [234090] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6186), 1, + ACTIONS(2276), 1, anon_sym_LBRACE, - STATE(6791), 1, + ACTIONS(2278), 1, + aux_sym_unquoted_token2, + STATE(7553), 1, + sym_comment, + [234103] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6182), 1, + anon_sym_LBRACE, + STATE(6891), 1, sym_block, - STATE(7399), 1, + STATE(7554), 1, sym_comment, - [228510] = 4, - ACTIONS(3), 1, + [234116] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2206), 1, - anon_sym_RBRACE, - ACTIONS(2210), 1, - sym__entry_separator, - STATE(7400), 1, + ACTIONS(1810), 1, + anon_sym_LBRACE, + ACTIONS(1812), 1, + aux_sym_unquoted_token2, + STATE(7555), 1, sym_comment, - [228523] = 4, + [234129] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11585), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7401), 1, + ACTIONS(11621), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7556), 1, sym_comment, - STATE(7442), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [228536] = 4, + STATE(7706), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [234142] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11587), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7402), 1, + ACTIONS(11623), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7557), 1, sym_comment, - STATE(7491), 1, - aux_sym__unquoted_with_expr_repeat1, - [228549] = 4, + STATE(7706), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [234155] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - STATE(6248), 1, + STATE(7305), 1, sym_block, - STATE(7403), 1, + STATE(7558), 1, sym_comment, - [228562] = 4, + [234168] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1880), 1, - anon_sym_LPAREN2, - ACTIONS(1888), 1, - aux_sym_unquoted_token2, - STATE(7404), 1, - sym_comment, - [228575] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11589), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7405), 1, + ACTIONS(11625), 1, + sym_identifier, + ACTIONS(11627), 1, + anon_sym_DOLLAR, + STATE(7559), 1, sym_comment, - STATE(7453), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [228588] = 4, + [234181] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2252), 1, - anon_sym_RBRACE, - ACTIONS(2256), 1, + ACTIONS(5656), 1, + anon_sym_RBRACK, + ACTIONS(5658), 1, sym__entry_separator, - STATE(7406), 1, + STATE(7560), 1, sym_comment, - [228601] = 4, + [234194] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6186), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - STATE(7071), 1, + STATE(6942), 1, sym_block, - STATE(7407), 1, + STATE(7561), 1, sym_comment, - [228614] = 4, + [234207] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5883), 1, + sym__entry_separator, + STATE(2892), 1, + aux_sym__multiple_types_repeat1, + STATE(7562), 1, + sym_comment, + [234220] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(5539), 1, anon_sym_LPAREN2, - STATE(7408), 1, + STATE(7563), 1, sym_comment, - STATE(7412), 1, + STATE(8050), 1, sym__expr_parenthesized_immediate, - [228627] = 4, + [234233] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11591), 1, + ACTIONS(11629), 1, sym__newline, - ACTIONS(11593), 1, + ACTIONS(11631), 1, sym__space, - STATE(7409), 1, + STATE(7564), 1, sym_comment, - [228640] = 4, + [234246] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11595), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7410), 1, + ACTIONS(11633), 1, + anon_sym_RBRACK, + ACTIONS(11635), 1, + sym__entry_separator, + STATE(7565), 1, sym_comment, - STATE(7491), 1, - aux_sym__unquoted_with_expr_repeat1, - [228653] = 4, - ACTIONS(3), 1, + [234259] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7953), 1, - sym__entry_separator, - ACTIONS(7957), 1, - anon_sym_RBRACK, - STATE(7411), 1, + ACTIONS(1661), 1, + aux_sym_unquoted_token2, + ACTIONS(2260), 1, + anon_sym_LPAREN2, + STATE(7566), 1, sym_comment, - [228666] = 4, - ACTIONS(3), 1, + [234272] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11597), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7402), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7412), 1, + ACTIONS(6182), 1, + anon_sym_LBRACE, + STATE(7078), 1, + sym_block, + STATE(7567), 1, sym_comment, - [228679] = 4, + [234285] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8181), 1, + ACTIONS(1820), 1, + anon_sym_RBRACE, + ACTIONS(1828), 1, sym__entry_separator, - ACTIONS(8183), 1, - anon_sym_RBRACK, - STATE(7413), 1, + STATE(7568), 1, sym_comment, - [228692] = 4, + [234298] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6186), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - STATE(7054), 1, + STATE(7081), 1, sym_block, - STATE(7414), 1, + STATE(7569), 1, + sym_comment, + [234311] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2240), 1, + anon_sym_LPAREN2, + ACTIONS(2244), 1, + aux_sym_unquoted_token4, + STATE(7570), 1, sym_comment, - [228705] = 4, + [234324] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6186), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - STATE(6915), 1, + STATE(6974), 1, sym_block, - STATE(7415), 1, + STATE(7571), 1, + sym_comment, + [234337] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(7572), 1, sym_comment, - [228718] = 4, + STATE(7700), 1, + sym__expr_parenthesized_immediate, + [234350] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11599), 1, + ACTIONS(8059), 1, + sym__entry_separator, + ACTIONS(8061), 1, anon_sym_RBRACK, - ACTIONS(11601), 1, + STATE(7573), 1, + sym_comment, + [234363] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2165), 1, + anon_sym_RBRACE, + ACTIONS(2171), 1, sym__entry_separator, - STATE(7416), 1, + STATE(7574), 1, sym_comment, - [228731] = 4, + [234376] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6186), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(6796), 1, + STATE(4936), 1, sym_block, - STATE(7417), 1, + STATE(7575), 1, sym_comment, - [228744] = 4, - ACTIONS(3), 1, + [234389] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11603), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7410), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7418), 1, + ACTIONS(1709), 1, + anon_sym_LPAREN2, + STATE(7576), 1, + sym_comment, + STATE(7647), 1, + sym__expr_parenthesized_immediate, + [234402] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(7577), 1, sym_comment, - [228757] = 4, + STATE(8105), 1, + sym__expr_parenthesized_immediate, + [234415] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5928), 1, - anon_sym_RBRACK, - ACTIONS(5934), 1, - sym__entry_separator, - STATE(7419), 1, + ACTIONS(11637), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7535), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + STATE(7578), 1, sym_comment, - [228770] = 4, + [234428] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5014), 1, - anon_sym_in2, - ACTIONS(11605), 1, - anon_sym_EQ2, - STATE(7420), 1, + ACTIONS(6182), 1, + anon_sym_LBRACE, + STATE(6923), 1, + sym_block, + STATE(7579), 1, sym_comment, - [228783] = 4, + [234441] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1886), 1, + ACTIONS(4996), 1, anon_sym_LBRACE, - ACTIONS(1888), 1, - aux_sym_unquoted_token2, - STATE(7421), 1, + ACTIONS(11639), 1, + anon_sym_EQ2, + STATE(7580), 1, sym_comment, - [228796] = 4, + [234454] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5014), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - ACTIONS(11607), 1, - anon_sym_EQ2, - STATE(7422), 1, + STATE(7002), 1, + sym_block, + STATE(7581), 1, sym_comment, - [228809] = 4, + [234467] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - STATE(6653), 1, + STATE(6946), 1, sym_block, - STATE(7423), 1, + STATE(7582), 1, sym_comment, - [228822] = 4, + [234480] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(7424), 1, + STATE(7463), 1, + sym__expr_parenthesized_immediate, + STATE(7583), 1, sym_comment, - STATE(7999), 1, + [234493] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1709), 1, + anon_sym_LPAREN2, + STATE(7504), 1, sym__expr_parenthesized_immediate, - [228835] = 4, + STATE(7584), 1, + sym_comment, + [234506] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11609), 1, + ACTIONS(2506), 1, anon_sym_RBRACE, - ACTIONS(11611), 1, + ACTIONS(2508), 1, sym__entry_separator, - STATE(7425), 1, + STATE(7585), 1, sym_comment, - [228848] = 4, + [234519] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11613), 1, - sym__newline, - ACTIONS(11615), 1, - sym__space, - STATE(7426), 1, - sym_comment, - [228861] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1711), 1, - anon_sym_LPAREN2, - STATE(7427), 1, + ACTIONS(2272), 1, + anon_sym_RBRACE, + ACTIONS(2276), 1, + sym__entry_separator, + STATE(7586), 1, sym_comment, - STATE(7446), 1, - sym__expr_parenthesized_immediate, - [228874] = 3, + [234532] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7428), 1, + ACTIONS(8161), 1, + sym__entry_separator, + ACTIONS(8163), 1, + anon_sym_RBRACK, + STATE(7587), 1, sym_comment, - ACTIONS(2248), 2, - anon_sym_in2, - aux_sym_unquoted_token4, - [228885] = 4, + [234545] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1579), 1, - aux_sym_unquoted_token2, - ACTIONS(2238), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(7429), 1, + STATE(6368), 1, + sym_block, + STATE(7588), 1, sym_comment, - [228898] = 4, + [234558] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5683), 1, - anon_sym_RBRACK, - ACTIONS(5685), 1, + ACTIONS(6489), 1, sym__entry_separator, - STATE(7430), 1, + STATE(3496), 1, + aux_sym__multiple_types_repeat1, + STATE(7589), 1, sym_comment, - [228911] = 4, + [234571] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(6469), 1, + STATE(6370), 1, sym_block, - STATE(7431), 1, + STATE(7590), 1, sym_comment, - [228924] = 4, + [234584] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5695), 1, - anon_sym_RBRACK, - ACTIONS(5697), 1, + ACTIONS(8181), 1, sym__entry_separator, - STATE(7432), 1, - sym_comment, - [228937] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11617), 1, + ACTIONS(8183), 1, anon_sym_RBRACK, - ACTIONS(11619), 1, - sym__entry_separator, - STATE(7433), 1, + STATE(7591), 1, sym_comment, - [228950] = 4, + [234597] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6186), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(6775), 1, + STATE(6423), 1, sym_block, - STATE(7434), 1, + STATE(7592), 1, sym_comment, - [228963] = 4, + [234610] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1721), 1, - anon_sym_in2, - ACTIONS(4864), 1, - aux_sym_unquoted_token2, - STATE(7435), 1, - sym_comment, - [228976] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11621), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7436), 1, - sym_comment, - STATE(7441), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [228989] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11623), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7352), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7437), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(6424), 1, + sym_block, + STATE(7593), 1, sym_comment, - [229002] = 4, + [234623] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(6453), 1, + STATE(6435), 1, sym_block, - STATE(7438), 1, + STATE(7594), 1, sym_comment, - [229015] = 4, + [234636] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(6457), 1, + STATE(6440), 1, sym_block, - STATE(7439), 1, + STATE(7595), 1, sym_comment, - [229028] = 4, + [234649] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6186), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(6906), 1, + STATE(6442), 1, sym_block, - STATE(7440), 1, - sym_comment, - [229041] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11625), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7441), 1, - sym_comment, - STATE(7462), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [229054] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11627), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7442), 1, + STATE(7596), 1, sym_comment, - STATE(7462), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [229067] = 4, + [234662] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11629), 1, - anon_sym_DASH2, - STATE(7443), 1, - sym_comment, - STATE(7963), 1, - sym_param_short_flag, - [229080] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2248), 1, - anon_sym_RBRACE, - ACTIONS(2250), 1, - sym__entry_separator, - STATE(7444), 1, - sym_comment, - [229093] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2187), 1, - anon_sym_RBRACE, - ACTIONS(2189), 1, - sym__entry_separator, - STATE(7445), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(6443), 1, + sym_block, + STATE(7597), 1, sym_comment, - [229106] = 4, - ACTIONS(3), 1, + [234675] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11631), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7358), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7446), 1, + ACTIONS(5056), 1, + anon_sym_LBRACE, + ACTIONS(11641), 1, + anon_sym_EQ2, + STATE(7598), 1, sym_comment, - [229119] = 4, + [234688] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(6625), 1, + STATE(6455), 1, sym_block, - STATE(7447), 1, + STATE(7599), 1, sym_comment, - [229132] = 4, + [234701] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(6628), 1, + STATE(6458), 1, sym_block, - STATE(7448), 1, - sym_comment, - [229145] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2208), 1, - anon_sym_LPAREN2, - ACTIONS(2212), 1, - aux_sym__unquoted_in_record_token4, - STATE(7449), 1, + STATE(7600), 1, sym_comment, - [229158] = 4, - ACTIONS(3), 1, + [234714] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5135), 1, - sym__entry_separator, - ACTIONS(5138), 1, - anon_sym_RBRACE, - STATE(7450), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(6462), 1, + sym_block, + STATE(7601), 1, sym_comment, - [229171] = 4, + [234727] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym_unquoted_token2, - ACTIONS(1874), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(7451), 1, + STATE(5220), 1, + sym_block, + STATE(7602), 1, sym_comment, - [229184] = 4, + [234740] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6186), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(6790), 1, + STATE(6463), 1, sym_block, - STATE(7452), 1, + STATE(7603), 1, sym_comment, - [229197] = 4, + [234753] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11633), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7453), 1, + ACTIONS(3565), 1, + sym__space, + STATE(1172), 1, + aux_sym_pipe_element_repeat1, + STATE(7604), 1, sym_comment, - STATE(7462), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [229210] = 4, + [234766] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10063), 1, - anon_sym_RBRACE, - ACTIONS(10065), 1, + ACTIONS(5706), 1, sym__entry_separator, - STATE(7454), 1, + STATE(2790), 1, + aux_sym__multiple_types_repeat1, + STATE(7605), 1, + sym_comment, + [234779] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1719), 1, + anon_sym_LBRACE, + ACTIONS(4866), 1, + aux_sym_unquoted_token2, + STATE(7606), 1, sym_comment, - [229223] = 4, + [234792] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(7437), 1, + STATE(7494), 1, sym__expr_parenthesized_immediate, - STATE(7455), 1, + STATE(7607), 1, sym_comment, - [229236] = 4, + [234805] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11635), 1, + ACTIONS(11643), 1, aux_sym__unquoted_in_list_with_expr_token1, - STATE(7456), 1, - sym_comment, - STATE(7542), 1, + STATE(7515), 1, aux_sym__unquoted_in_list_with_expr_repeat1, - [229249] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7457), 1, + STATE(7608), 1, sym_comment, - ACTIONS(11388), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [229260] = 4, - ACTIONS(3), 1, + [234818] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1032), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(7458), 1, + STATE(6836), 1, + sym_block, + STATE(7609), 1, sym_comment, - [229273] = 4, + [234831] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1721), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - ACTIONS(4864), 1, - aux_sym_unquoted_token2, - STATE(7459), 1, + STATE(5125), 1, + sym_block, + STATE(7610), 1, sym_comment, - [229286] = 4, + [234844] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11637), 1, - anon_sym_LPAREN2, - ACTIONS(11639), 1, - aux_sym__record_key_token1, - STATE(7460), 1, + ACTIONS(11645), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7557), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(7611), 1, sym_comment, - [229299] = 4, + [234857] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2151), 1, - anon_sym_RBRACE, - ACTIONS(2153), 1, + ACTIONS(8125), 1, sym__entry_separator, - STATE(7461), 1, + ACTIONS(8127), 1, + anon_sym_RBRACK, + STATE(7612), 1, sym_comment, - [229312] = 3, - ACTIONS(3), 1, + [234870] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11641), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7462), 2, + ACTIONS(4543), 1, + anon_sym_LPAREN2, + STATE(7613), 1, sym_comment, - aux_sym__unquoted_in_list_with_expr_repeat1, - [229323] = 4, + STATE(7707), 1, + sym__expr_parenthesized_immediate, + [234883] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11647), 1, + anon_sym_DASH2, + STATE(7614), 1, + sym_comment, + STATE(8014), 1, + sym_param_short_flag, + [234896] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6186), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - STATE(7221), 1, + STATE(6955), 1, sym_block, - STATE(7463), 1, + STATE(7615), 1, sym_comment, - [229336] = 4, + [234909] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6186), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - STATE(6798), 1, + STATE(6973), 1, sym_block, - STATE(7464), 1, + STATE(7616), 1, + sym_comment, + [234922] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11649), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7617), 1, + sym_comment, + STATE(7706), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [234935] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11651), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7618), 1, sym_comment, - [229349] = 4, + STATE(7706), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [234948] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1711), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(7465), 1, + STATE(7619), 1, sym_comment, - STATE(7703), 1, + STATE(7673), 1, sym__expr_parenthesized_immediate, - [229362] = 4, + [234961] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6182), 1, + anon_sym_LBRACE, + STATE(6865), 1, + sym_block, + STATE(7620), 1, + sym_comment, + [234974] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6044), 1, + ACTIONS(2258), 1, + anon_sym_RBRACE, + ACTIONS(2262), 1, sym__entry_separator, - STATE(3044), 1, - aux_sym__multiple_types_repeat1, - STATE(7466), 1, + STATE(7621), 1, sym_comment, - [229375] = 4, - ACTIONS(247), 1, + [234987] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2256), 1, + ACTIONS(2268), 1, + aux_sym_unquoted_token4, + ACTIONS(2270), 1, anon_sym_LBRACE, - ACTIONS(2258), 1, - aux_sym_unquoted_token2, - STATE(7467), 1, + STATE(7622), 1, sym_comment, - [229388] = 4, + [235000] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - STATE(4969), 1, + STATE(7169), 1, sym_block, - STATE(7468), 1, + STATE(7623), 1, sym_comment, - [229401] = 4, + [235013] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1711), 1, + ACTIONS(4543), 1, anon_sym_LPAREN2, - STATE(7393), 1, - sym__expr_parenthesized_immediate, - STATE(7469), 1, + STATE(7624), 1, sym_comment, - [229414] = 4, + STATE(7632), 1, + sym__expr_parenthesized_immediate, + [235026] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6186), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - STATE(7229), 1, + STATE(7175), 1, sym_block, - STATE(7470), 1, + STATE(7625), 1, sym_comment, - [229427] = 4, + [235039] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6186), 1, + STATE(7626), 1, + sym_comment, + ACTIONS(9091), 2, + anon_sym_GT2, + anon_sym_AT, + [235050] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2250), 1, anon_sym_LBRACE, - STATE(7204), 1, - sym_block, - STATE(7471), 1, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + STATE(7627), 1, sym_comment, - [229440] = 4, + [235063] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9492), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - STATE(6591), 1, - sym_val_record, - STATE(7472), 1, + STATE(4799), 1, + sym_block, + STATE(7628), 1, sym_comment, - [229453] = 4, + [235076] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2214), 1, - anon_sym_RBRACE, - ACTIONS(2218), 1, + ACTIONS(5679), 1, + anon_sym_RBRACK, + ACTIONS(5681), 1, sym__entry_separator, - STATE(7473), 1, + STATE(7629), 1, sym_comment, - [229466] = 4, + [235089] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2222), 1, - anon_sym_RBRACE, - ACTIONS(2224), 1, - sym__entry_separator, - STATE(7474), 1, + ACTIONS(11653), 1, + sym__newline, + ACTIONS(11655), 1, + sym__space, + STATE(7630), 1, sym_comment, - [229479] = 4, - ACTIONS(247), 1, + [235102] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym_unquoted_token2, - ACTIONS(1868), 1, - anon_sym_LPAREN2, - STATE(7475), 1, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + ACTIONS(2256), 1, + anon_sym_LBRACE, + STATE(7631), 1, sym_comment, - [229492] = 3, + [235115] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11644), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7476), 2, + ACTIONS(11657), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7632), 1, sym_comment, - aux_sym__unquoted_in_record_with_expr_repeat1, - [229503] = 4, + STATE(7642), 1, + aux_sym__unquoted_with_expr_repeat1, + [235128] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7371), 1, - anon_sym_RBRACK, - ACTIONS(7373), 1, - sym__entry_separator, - STATE(7477), 1, + ACTIONS(11659), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7633), 1, sym_comment, - [229516] = 4, + STATE(7646), 1, + aux_sym__unquoted_with_expr_repeat1, + [235141] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5687), 1, - anon_sym_RBRACK, - ACTIONS(5689), 1, - sym__entry_separator, - STATE(7478), 1, + ACTIONS(11661), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7634), 1, sym_comment, - [229529] = 4, + STATE(7706), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [235154] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - STATE(7056), 1, - aux_sym__multiple_types_repeat1, - STATE(7479), 1, + STATE(7635), 1, sym_comment, - [229542] = 4, - ACTIONS(247), 1, + ACTIONS(2268), 2, + anon_sym_in2, + aux_sym_unquoted_token4, + [235165] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(7384), 1, - sym__expr_parenthesized_immediate, - STATE(7480), 1, + ACTIONS(11663), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7517), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + STATE(7636), 1, sym_comment, - [229555] = 4, + [235178] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2290), 1, + ACTIONS(11665), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7637), 1, + sym_comment, + STATE(7706), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [235191] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5160), 1, sym__entry_separator, - STATE(627), 1, - aux_sym__multiple_types_repeat1, - STATE(7481), 1, + ACTIONS(5163), 1, + anon_sym_RBRACE, + STATE(7638), 1, sym_comment, - [229568] = 4, + [235204] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(2238), 1, anon_sym_RBRACE, - ACTIONS(1874), 1, + ACTIONS(2242), 1, sym__entry_separator, - STATE(7482), 1, + STATE(7639), 1, sym_comment, - [229581] = 4, + [235217] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - ACTIONS(2224), 1, - anon_sym_LBRACE, - STATE(7483), 1, + ACTIONS(2018), 1, + anon_sym_RBRACE, + ACTIONS(2020), 1, + sym__entry_separator, + STATE(7640), 1, sym_comment, - [229594] = 4, - ACTIONS(247), 1, + [235230] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1711), 1, - anon_sym_LPAREN2, - STATE(7364), 1, - sym__expr_parenthesized_immediate, - STATE(7484), 1, + ACTIONS(5687), 1, + anon_sym_RBRACK, + ACTIONS(5689), 1, + sym__entry_separator, + STATE(7641), 1, sym_comment, - [229607] = 4, + [235243] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11647), 1, + ACTIONS(11667), 1, aux_sym__unquoted_with_expr_token1, - STATE(7485), 1, - sym_comment, - STATE(7491), 1, + STATE(7483), 1, aux_sym__unquoted_with_expr_repeat1, - [229620] = 4, + STATE(7642), 1, + sym_comment, + [235256] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - STATE(6684), 1, + STATE(6914), 1, sym_block, - STATE(7486), 1, + STATE(7643), 1, sym_comment, - [229633] = 4, - ACTIONS(247), 1, + [235269] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5556), 1, - anon_sym_LPAREN2, - STATE(7456), 1, - sym__expr_parenthesized_immediate, - STATE(7487), 1, + ACTIONS(6489), 1, + sym__entry_separator, + STATE(7346), 1, + aux_sym__multiple_types_repeat1, + STATE(7644), 1, sym_comment, - [229646] = 3, + [235282] = 4, ACTIONS(247), 1, anon_sym_POUND, - STATE(7488), 1, + ACTIONS(6182), 1, + anon_sym_LBRACE, + STATE(6915), 1, + sym_block, + STATE(7645), 1, sym_comment, - ACTIONS(9345), 2, - anon_sym_GT2, - anon_sym_AT, - [229657] = 4, + [235295] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11649), 1, + ACTIONS(11669), 1, aux_sym__unquoted_with_expr_token1, - STATE(7380), 1, + STATE(7483), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(7489), 1, - sym_comment, - [229670] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5691), 1, - anon_sym_RBRACK, - ACTIONS(5693), 1, - sym__entry_separator, - STATE(7490), 1, + STATE(7646), 1, sym_comment, - [229683] = 3, + [235308] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11651), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7491), 2, + ACTIONS(11671), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7556), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(7647), 1, sym_comment, - aux_sym__unquoted_with_expr_repeat1, - [229694] = 4, + [235321] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - ACTIONS(11563), 1, - anon_sym_make, - STATE(7492), 1, + ACTIONS(9534), 1, + anon_sym_LBRACE, + STATE(6300), 1, + sym_val_record, + STATE(7648), 1, sym_comment, - [229707] = 4, + [235334] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11654), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7379), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7493), 1, + ACTIONS(5683), 1, + anon_sym_RBRACK, + ACTIONS(5685), 1, + sym__entry_separator, + STATE(7649), 1, sym_comment, - [229720] = 4, + [235347] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(6369), 1, + STATE(6299), 1, sym_block, - STATE(7494), 1, + STATE(7650), 1, + sym_comment, + [235360] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11673), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7636), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + STATE(7651), 1, sym_comment, - [229733] = 4, + [235373] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(6443), 1, + STATE(6538), 1, sym_block, - STATE(7495), 1, - sym_comment, - [229746] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3670), 1, - sym__space, - STATE(1181), 1, - aux_sym_pipe_element_repeat1, - STATE(7496), 1, + STATE(7652), 1, sym_comment, - [229759] = 4, + [235386] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11656), 1, + ACTIONS(11675), 1, anon_sym_RBRACK, - ACTIONS(11658), 1, + ACTIONS(11677), 1, sym__entry_separator, - STATE(7497), 1, + STATE(7653), 1, sym_comment, - [229772] = 4, - ACTIONS(3), 1, + [235399] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2206), 1, - anon_sym_in2, - ACTIONS(2212), 1, - aux_sym_unquoted_token4, - STATE(7498), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(6543), 1, + sym_block, + STATE(7654), 1, sym_comment, - [229785] = 4, - ACTIONS(3), 1, + [235412] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5714), 1, - sym__entry_separator, - STATE(2741), 1, - aux_sym__multiple_types_repeat1, - STATE(7499), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(6544), 1, + sym_block, + STATE(7655), 1, sym_comment, - [229798] = 4, - ACTIONS(3), 1, + [235425] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11660), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7476), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7500), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(6546), 1, + sym_block, + STATE(7656), 1, sym_comment, - [229811] = 4, - ACTIONS(3), 1, + [235438] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11662), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7501), 1, + ACTIONS(6182), 1, + anon_sym_LBRACE, + STATE(6866), 1, + sym_block, + STATE(7657), 1, sym_comment, - STATE(7519), 1, - aux_sym__unquoted_with_expr_repeat1, - [229824] = 4, + [235451] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(4768), 1, + STATE(6609), 1, sym_block, - STATE(7502), 1, + STATE(7658), 1, sym_comment, - [229837] = 4, + [235464] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11664), 1, + ACTIONS(11679), 1, aux_sym__unquoted_with_expr_token1, - STATE(7503), 1, - sym_comment, - STATE(7523), 1, + STATE(7483), 1, aux_sym__unquoted_with_expr_repeat1, - [229850] = 4, - ACTIONS(3), 1, + STATE(7659), 1, + sym_comment, + [235477] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11666), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7504), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(6555), 1, + sym_block, + STATE(7660), 1, sym_comment, - STATE(7516), 1, - aux_sym__unquoted_with_expr_repeat1, - [229863] = 4, - ACTIONS(3), 1, + [235490] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11668), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7505), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(6556), 1, + sym_block, + STATE(7661), 1, sym_comment, - STATE(7517), 1, - aux_sym__unquoted_with_expr_repeat1, - [229876] = 4, + [235503] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2208), 1, - anon_sym_LPAREN2, - ACTIONS(2212), 1, - aux_sym__unquoted_in_list_token4, - STATE(7506), 1, + ACTIONS(1026), 1, + anon_sym_in2, + ACTIONS(2228), 1, + aux_sym_unquoted_token4, + STATE(7662), 1, sym_comment, - [229889] = 4, - ACTIONS(3), 1, + [235516] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11670), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7507), 1, + ACTIONS(6182), 1, + anon_sym_LBRACE, + STATE(6943), 1, + sym_block, + STATE(7663), 1, sym_comment, - STATE(7525), 1, - aux_sym__unquoted_with_expr_repeat1, - [229902] = 4, - ACTIONS(3), 1, + [235529] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11672), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7508), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(6558), 1, + sym_block, + STATE(7664), 1, sym_comment, - STATE(7520), 1, - aux_sym__unquoted_with_expr_repeat1, - [229915] = 4, + [235542] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(4996), 1, + anon_sym_in2, + ACTIONS(11681), 1, + anon_sym_EQ2, + STATE(7665), 1, + sym_comment, + [235555] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6186), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(6927), 1, + STATE(6561), 1, sym_block, - STATE(7509), 1, + STATE(7666), 1, sym_comment, - [229928] = 4, - ACTIONS(3), 1, + [235568] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11674), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7476), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7510), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(6563), 1, + sym_block, + STATE(7667), 1, sym_comment, - [229941] = 4, - ACTIONS(3), 1, + [235581] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11676), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7491), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7511), 1, + ACTIONS(1719), 1, + anon_sym_in2, + ACTIONS(4866), 1, + aux_sym_unquoted_token2, + STATE(7668), 1, sym_comment, - [229954] = 4, - ACTIONS(3), 1, + [235594] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8099), 1, - sym__entry_separator, - ACTIONS(8101), 1, - anon_sym_RBRACK, - STATE(7512), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(6572), 1, + sym_block, + STATE(7669), 1, sym_comment, - [229967] = 4, - ACTIONS(3), 1, + [235607] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8089), 1, - sym__entry_separator, - ACTIONS(8091), 1, - anon_sym_RBRACK, - STATE(7513), 1, + ACTIONS(6182), 1, + anon_sym_LBRACE, + STATE(6920), 1, + sym_block, + STATE(7670), 1, sym_comment, - [229980] = 4, - ACTIONS(3), 1, + [235620] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11678), 1, - sym__newline, - ACTIONS(11680), 1, - sym__space, - STATE(7514), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(6573), 1, + sym_block, + STATE(7671), 1, sym_comment, - [229993] = 4, - ACTIONS(3), 1, + [235633] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11682), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7491), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7515), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(6575), 1, + sym_block, + STATE(7672), 1, sym_comment, - [230006] = 4, + [235646] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11684), 1, + ACTIONS(11683), 1, aux_sym__unquoted_with_expr_token1, - STATE(7491), 1, + STATE(7458), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(7516), 1, + STATE(7673), 1, sym_comment, - [230019] = 4, + [235659] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(4939), 1, + sym_block, + STATE(7674), 1, + sym_comment, + [235672] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11686), 1, + ACTIONS(11685), 1, aux_sym__unquoted_with_expr_token1, - STATE(7491), 1, + STATE(7466), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(7517), 1, + STATE(7675), 1, sym_comment, - [230032] = 4, - ACTIONS(3), 1, + [235685] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2484), 1, - anon_sym_RBRACE, - ACTIONS(2486), 1, - sym__entry_separator, - STATE(7518), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(6588), 1, + sym_block, + STATE(7676), 1, sym_comment, - [230045] = 4, - ACTIONS(3), 1, + [235698] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11688), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7491), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7519), 1, + ACTIONS(6182), 1, + anon_sym_LBRACE, + STATE(6868), 1, + sym_block, + STATE(7677), 1, + sym_comment, + [235711] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6182), 1, + anon_sym_LBRACE, + STATE(6889), 1, + sym_block, + STATE(7678), 1, + sym_comment, + [235724] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(6589), 1, + sym_block, + STATE(7679), 1, sym_comment, - [230058] = 4, + [235737] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6182), 1, + anon_sym_LBRACE, + STATE(6837), 1, + sym_block, + STATE(7680), 1, + sym_comment, + [235750] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11690), 1, + ACTIONS(11687), 1, aux_sym__unquoted_with_expr_token1, - STATE(7491), 1, + STATE(7659), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(7520), 1, + STATE(7681), 1, sym_comment, - [230071] = 4, - ACTIONS(3), 1, + [235763] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8111), 1, - sym__entry_separator, - ACTIONS(8113), 1, - anon_sym_RBRACK, - STATE(7521), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(6643), 1, + sym_block, + STATE(7682), 1, sym_comment, - [230084] = 4, + [235776] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11692), 1, - sym_identifier, - ACTIONS(11694), 1, - anon_sym_DOLLAR, - STATE(7522), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(6647), 1, + sym_block, + STATE(7683), 1, sym_comment, - [230097] = 4, + [235789] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11696), 1, + ACTIONS(11689), 1, aux_sym__unquoted_with_expr_token1, - STATE(7491), 1, + STATE(7483), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(7523), 1, + STATE(7684), 1, sym_comment, - [230110] = 4, + [235802] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5878), 1, - sym__entry_separator, - STATE(2862), 1, - aux_sym__multiple_types_repeat1, - STATE(7524), 1, + STATE(7685), 1, + sym_comment, + ACTIONS(1288), 2, + anon_sym_POUND_BANG, + sym__newline, + [235813] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1559), 1, + aux_sym_unquoted_token2, + ACTIONS(1828), 1, + anon_sym_LBRACE, + STATE(7686), 1, sym_comment, - [230123] = 4, + [235826] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11698), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7491), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7525), 1, + ACTIONS(2173), 1, + anon_sym_RBRACE, + ACTIONS(2175), 1, + sym__entry_separator, + STATE(7687), 1, sym_comment, - [230136] = 4, + [235839] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(4904), 1, + STATE(6747), 1, sym_block, - STATE(7526), 1, + STATE(7688), 1, sym_comment, - [230149] = 4, + [235852] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6186), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(4789), 1, + STATE(6748), 1, sym_block, - STATE(7527), 1, + STATE(7689), 1, sym_comment, - [230162] = 4, - ACTIONS(3), 1, + [235865] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11700), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7491), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7528), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(6749), 1, + sym_block, + STATE(7690), 1, sym_comment, - [230175] = 4, + [235878] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6186), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(6901), 1, + STATE(6750), 1, sym_block, - STATE(7529), 1, + STATE(7691), 1, sym_comment, - [230188] = 4, + [235891] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6186), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(6773), 1, + STATE(6751), 1, sym_block, - STATE(7530), 1, + STATE(7692), 1, sym_comment, - [230201] = 4, - ACTIONS(3), 1, + [235904] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2086), 1, - anon_sym_RBRACE, - ACTIONS(2088), 1, - sym__entry_separator, - STATE(7531), 1, + ACTIONS(2274), 1, + anon_sym_LPAREN2, + ACTIONS(2278), 1, + aux_sym_unquoted_token2, + STATE(7693), 1, sym_comment, - [230214] = 4, - ACTIONS(3), 1, + [235917] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11702), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7476), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7532), 1, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(6752), 1, + sym_block, + STATE(7694), 1, sym_comment, - [230227] = 4, - ACTIONS(3), 1, + [235930] = 4, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11704), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7476), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7533), 1, + ACTIONS(6182), 1, + anon_sym_LBRACE, + STATE(6968), 1, + sym_block, + STATE(7695), 1, sym_comment, - [230240] = 4, + [235943] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, + ACTIONS(6180), 1, anon_sym_LBRACE, - STATE(5204), 1, + STATE(6753), 1, sym_block, - STATE(7534), 1, + STATE(7696), 1, + sym_comment, + [235956] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6180), 1, + anon_sym_LBRACE, + STATE(6754), 1, + sym_block, + STATE(7697), 1, sym_comment, - [230253] = 4, + [235969] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5651), 1, - anon_sym_RBRACK, - ACTIONS(5653), 1, + ACTIONS(11691), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7483), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7698), 1, + sym_comment, + [235982] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2290), 1, sym__entry_separator, - STATE(7535), 1, + STATE(627), 1, + aux_sym__multiple_types_repeat1, + STATE(7699), 1, sym_comment, - [230266] = 4, + [235995] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2210), 1, - anon_sym_LBRACE, - ACTIONS(2212), 1, - aux_sym_unquoted_token4, - STATE(7536), 1, + ACTIONS(11693), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7684), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7700), 1, + sym_comment, + [236008] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + STATE(7701), 1, sym_comment, - [230279] = 4, + ACTIONS(11695), 2, + anon_sym_RBRACK, + sym_hex_digit, + [236019] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2155), 1, - anon_sym_RBRACE, - ACTIONS(2157), 1, + ACTIONS(8019), 1, sym__entry_separator, - STATE(7537), 1, + ACTIONS(8023), 1, + anon_sym_RBRACK, + STATE(7702), 1, sym_comment, - [230292] = 4, + [236032] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6186), 1, - anon_sym_LBRACE, - STATE(7206), 1, - sym_block, - STATE(7538), 1, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + ACTIONS(11593), 1, + anon_sym_make, + STATE(7703), 1, sym_comment, - [230305] = 4, + [236045] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6184), 1, + ACTIONS(6182), 1, anon_sym_LBRACE, - STATE(6471), 1, + STATE(7202), 1, sym_block, - STATE(7539), 1, + STATE(7704), 1, sym_comment, - [230318] = 3, + [236058] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7540), 1, + ACTIONS(5918), 1, + anon_sym_RBRACK, + ACTIONS(5924), 1, + sym__entry_separator, + STATE(7705), 1, sym_comment, - ACTIONS(1288), 2, - anon_sym_POUND_BANG, - sym__newline, - [230329] = 4, - ACTIONS(247), 1, + [236071] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6186), 1, - anon_sym_LBRACE, - STATE(4901), 1, - sym_block, - STATE(7541), 1, + ACTIONS(11697), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7706), 2, sym_comment, - [230342] = 4, + aux_sym__unquoted_in_record_with_expr_repeat1, + [236082] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11706), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7462), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - STATE(7542), 1, + ACTIONS(11700), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7532), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7707), 1, sym_comment, - [230355] = 4, + [236095] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2445), 1, - anon_sym_RBRACE, - ACTIONS(2447), 1, - sym__entry_separator, - STATE(7543), 1, + ACTIONS(11702), 1, + anon_sym_LPAREN2, + ACTIONS(11704), 1, + aux_sym__record_key_token1, + STATE(7708), 1, + sym_comment, + [236108] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6182), 1, + anon_sym_LBRACE, + STATE(6969), 1, + sym_block, + STATE(7709), 1, + sym_comment, + [236121] = 4, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1661), 1, + aux_sym_unquoted_token2, + ACTIONS(2262), 1, + anon_sym_LBRACE, + STATE(7710), 1, sym_comment, - [230368] = 4, + [236134] = 4, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5051), 1, - anon_sym_in2, - ACTIONS(11708), 1, - anon_sym_EQ2, - STATE(7544), 1, - sym_comment, - [230381] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6502), 1, - sym__entry_separator, - STATE(3470), 1, - aux_sym__multiple_types_repeat1, - STATE(7545), 1, + ACTIONS(6182), 1, + anon_sym_LBRACE, + STATE(7003), 1, + sym_block, + STATE(7711), 1, sym_comment, - [230394] = 4, + [236147] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_LPAREN2, - STATE(7501), 1, - sym__expr_parenthesized_immediate, - STATE(7546), 1, + ACTIONS(11706), 1, + anon_sym_RBRACK, + STATE(7712), 1, sym_comment, - [230407] = 4, - ACTIONS(3), 1, + [236157] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2218), 1, - anon_sym_LBRACE, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - STATE(7547), 1, + ACTIONS(11708), 1, + anon_sym_in2, + STATE(7713), 1, sym_comment, - [230420] = 3, + [236167] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11710), 1, - sym_raw_string_end, - STATE(7548), 1, + anon_sym_RBRACE, + STATE(7714), 1, sym_comment, - [230430] = 3, - ACTIONS(3), 1, + [236177] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11712), 1, - aux_sym_cmd_identifier_token41, - STATE(7549), 1, + sym_raw_string_end, + STATE(7715), 1, sym_comment, - [230440] = 3, + [236187] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11714), 1, - anon_sym_RBRACE, - STATE(7550), 1, + anon_sym_EQ, + STATE(7716), 1, sym_comment, - [230450] = 3, + [236197] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2331), 1, - aux_sym_record_entry_token1, - STATE(7551), 1, + ACTIONS(11716), 1, + anon_sym_EQ, + STATE(7717), 1, sym_comment, - [230460] = 3, + [236207] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11716), 1, - anon_sym_LBRACE, - STATE(7552), 1, + ACTIONS(11718), 1, + anon_sym_EQ_GT, + STATE(7718), 1, sym_comment, - [230470] = 3, + [236217] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11718), 1, + ACTIONS(11720), 1, anon_sym_RBRACE, - STATE(7553), 1, + STATE(7719), 1, sym_comment, - [230480] = 3, + [236227] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11720), 1, - anon_sym_RPAREN, - STATE(7554), 1, + ACTIONS(4762), 1, + aux_sym_unquoted_token2, + STATE(7720), 1, sym_comment, - [230490] = 3, + [236237] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11722), 1, - anon_sym_RPAREN2, - STATE(7555), 1, + sym_raw_string_end, + STATE(7721), 1, sym_comment, - [230500] = 3, - ACTIONS(3), 1, + [236247] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11724), 1, - sym__space, - STATE(7556), 1, + anon_sym_RPAREN, + STATE(7722), 1, sym_comment, - [230510] = 3, + [236257] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11726), 1, - sym_raw_string_end, - STATE(7557), 1, + anon_sym_LBRACE, + STATE(7723), 1, sym_comment, - [230520] = 3, + [236267] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11728), 1, - anon_sym_RBRACK, - STATE(7558), 1, + ACTIONS(11183), 1, + anon_sym_EQ_GT, + STATE(7724), 1, sym_comment, - [230530] = 3, + [236277] = 3, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11728), 1, + aux_sym_cmd_identifier_token41, + STATE(7725), 1, + sym_comment, + [236287] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9508), 1, + aux_sym_unquoted_token2, + STATE(7726), 1, + sym_comment, + [236297] = 3, + ACTIONS(247), 1, + anon_sym_POUND, ACTIONS(11730), 1, - aux_sym_shebang_token1, - STATE(7559), 1, + anon_sym_GT2, + STATE(7727), 1, sym_comment, - [230540] = 3, + [236307] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11732), 1, - anon_sym_EQ, - STATE(7560), 1, + sym_raw_string_end, + STATE(7728), 1, + sym_comment, + [236317] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8653), 1, + aux_sym__unquoted_in_list_token2, + STATE(7729), 1, sym_comment, - [230550] = 3, + [236327] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11734), 1, - anon_sym_EQ, - STATE(7561), 1, + anon_sym_RBRACE, + STATE(7730), 1, sym_comment, - [230560] = 3, - ACTIONS(3), 1, + [236337] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11736), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7562), 1, + anon_sym_RBRACE, + STATE(7731), 1, sym_comment, - [230570] = 3, + [236347] = 3, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(1721), 1, + aux_sym__unquoted_in_record_token2, + STATE(7732), 1, + sym_comment, + [236357] = 3, + ACTIONS(3), 1, + anon_sym_POUND, ACTIONS(11738), 1, - sym_raw_string_end, - STATE(7563), 1, + aux_sym_cmd_identifier_token41, + STATE(7733), 1, sym_comment, - [230580] = 3, - ACTIONS(247), 1, + [236367] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11740), 1, - anon_sym_RBRACE, - STATE(7564), 1, + ACTIONS(9508), 1, + aux_sym_unquoted_token4, + STATE(7734), 1, sym_comment, - [230590] = 3, + [236377] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4259), 1, + ACTIONS(1661), 1, aux_sym_unquoted_token2, - STATE(7565), 1, + STATE(7735), 1, sym_comment, - [230600] = 3, - ACTIONS(3), 1, + [236387] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6485), 1, - aux_sym_unquoted_token4, - STATE(7566), 1, + ACTIONS(11740), 1, + sym_raw_string_end, + STATE(7736), 1, sym_comment, - [230610] = 3, + [236397] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11742), 1, - anon_sym_RBRACK, - STATE(7567), 1, + sym_raw_string_end, + STATE(7737), 1, sym_comment, - [230620] = 3, + [236407] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11744), 1, - anon_sym_RPAREN, - STATE(7568), 1, + sym_identifier, + STATE(7738), 1, + sym_comment, + [236417] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8635), 1, + aux_sym_unquoted_token2, + STATE(7739), 1, + sym_comment, + [236427] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(509), 1, + anon_sym_RPAREN2, + STATE(7740), 1, + sym_comment, + [236437] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(5549), 1, + aux_sym__unquoted_in_list_token2, + STATE(7741), 1, sym_comment, - [230630] = 3, + [236447] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11746), 1, - anon_sym_RBRACE, - STATE(7569), 1, + anon_sym_RBRACK, + STATE(7742), 1, sym_comment, - [230640] = 3, + [236457] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11748), 1, - anon_sym_RBRACE, - STATE(7570), 1, + sym_raw_string_end, + STATE(7743), 1, sym_comment, - [230650] = 3, + [236467] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1723), 1, - aux_sym__unquoted_in_record_token2, - STATE(7571), 1, + ACTIONS(11750), 1, + sym__table_head_separator, + STATE(7744), 1, sym_comment, - [230660] = 3, + [236477] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4864), 1, + ACTIONS(6450), 1, aux_sym_unquoted_token2, - STATE(7572), 1, + STATE(7745), 1, sym_comment, - [230670] = 3, - ACTIONS(247), 1, + [236487] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11750), 1, - sym_raw_string_end, - STATE(7573), 1, + ACTIONS(6450), 1, + aux_sym_unquoted_token4, + STATE(7746), 1, sym_comment, - [230680] = 3, + [236497] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11752), 1, anon_sym_RBRACK, - STATE(7574), 1, + STATE(7747), 1, sym_comment, - [230690] = 3, + [236507] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11754), 1, anon_sym_RPAREN, - STATE(7575), 1, + STATE(7748), 1, sym_comment, - [230700] = 3, + [236517] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11756), 1, - anon_sym_RBRACE, - STATE(7576), 1, - sym_comment, - [230710] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11758), 1, - aux_sym_cmd_identifier_token41, - STATE(7577), 1, + anon_sym_RPAREN, + STATE(7749), 1, sym_comment, - [230720] = 3, + [236527] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1781), 1, - aux_sym__unquoted_in_record_token2, - STATE(7578), 1, + ACTIONS(11758), 1, + anon_sym_RPAREN, + STATE(7750), 1, sym_comment, - [230730] = 3, + [236537] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11760), 1, - anon_sym_RBRACK, - STATE(7579), 1, + sym_identifier, + STATE(7751), 1, sym_comment, - [230740] = 3, + [236547] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11762), 1, - anon_sym_RPAREN, - STATE(7580), 1, + anon_sym_RBRACE, + STATE(7752), 1, sym_comment, - [230750] = 3, + [236557] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11764), 1, - sym__table_head_separator, - STATE(7581), 1, - sym_comment, - [230760] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2129), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7582), 1, + anon_sym_RBRACE, + STATE(7753), 1, sym_comment, - [230770] = 3, + [236567] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11766), 1, anon_sym_RBRACE, - STATE(7583), 1, - sym_comment, - [230780] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11768), 1, - anon_sym_RPAREN, - STATE(7584), 1, + STATE(7754), 1, sym_comment, - [230790] = 3, + [236577] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4864), 1, - aux_sym_unquoted_token4, - STATE(7585), 1, + ACTIONS(11768), 1, + aux_sym_shebang_token1, + STATE(7755), 1, sym_comment, - [230800] = 3, + [236587] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11770), 1, - anon_sym_LPAREN2, - STATE(7586), 1, - sym_comment, - [230810] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4674), 1, - aux_sym_unquoted_token2, - STATE(7587), 1, + sym__table_head_separator, + STATE(7756), 1, sym_comment, - [230820] = 3, + [236597] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11772), 1, - aux_sym_cmd_identifier_token41, - STATE(7588), 1, + ACTIONS(7190), 1, + aux_sym_unquoted_token4, + STATE(7757), 1, sym_comment, - [230830] = 3, - ACTIONS(3), 1, + [236607] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5616), 1, - aux_sym_unquoted_token4, - STATE(7589), 1, + ACTIONS(11772), 1, + anon_sym_RBRACE, + STATE(7758), 1, sym_comment, - [230840] = 3, + [236617] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11774), 1, - sym__table_head_separator, - STATE(7590), 1, + anon_sym_make, + STATE(7759), 1, sym_comment, - [230850] = 3, + [236627] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11776), 1, - anon_sym_RBRACE, - STATE(7591), 1, + sym_raw_string_end, + STATE(7760), 1, sym_comment, - [230860] = 3, + [236637] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11778), 1, - sym_identifier, - STATE(7592), 1, + anon_sym_RBRACK, + STATE(7761), 1, sym_comment, - [230870] = 3, + [236647] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11780), 1, anon_sym_RBRACE, - STATE(7593), 1, + STATE(7762), 1, sym_comment, - [230880] = 3, - ACTIONS(3), 1, + [236657] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11782), 1, - sym__space, - STATE(7594), 1, + anon_sym_RBRACE, + STATE(7763), 1, + sym_comment, + [236667] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(2278), 1, + aux_sym_unquoted_token2, + STATE(7764), 1, sym_comment, - [230890] = 3, + [236677] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11784), 1, anon_sym_RBRACE, - STATE(7595), 1, + STATE(7765), 1, + sym_comment, + [236687] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(1812), 1, + aux_sym_unquoted_token2, + STATE(7766), 1, sym_comment, - [230900] = 3, + [236697] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11786), 1, - anon_sym_RBRACK, - STATE(7596), 1, + anon_sym_RBRACE, + STATE(7767), 1, sym_comment, - [230910] = 3, + [236707] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11788), 1, - anon_sym_RPAREN, - STATE(7597), 1, + sym_raw_string_end, + STATE(7768), 1, sym_comment, - [230920] = 3, + [236717] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11790), 1, anon_sym_RBRACE, - STATE(7598), 1, + STATE(7769), 1, sym_comment, - [230930] = 3, + [236727] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11792), 1, - anon_sym_RBRACE, - STATE(7599), 1, + anon_sym_DASH_GT, + STATE(7770), 1, sym_comment, - [230940] = 3, + [236737] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11794), 1, - anon_sym_RBRACE, - STATE(7600), 1, + anon_sym_RPAREN, + STATE(7771), 1, sym_comment, - [230950] = 3, + [236747] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11796), 1, anon_sym_RPAREN, - STATE(7601), 1, - sym_comment, - [230960] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2183), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7602), 1, + STATE(7772), 1, sym_comment, - [230970] = 3, + [236757] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11798), 1, anon_sym_RPAREN, - STATE(7603), 1, + STATE(7773), 1, sym_comment, - [230980] = 3, + [236767] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11800), 1, anon_sym_RBRACE, - STATE(7604), 1, + STATE(7774), 1, sym_comment, - [230990] = 3, + [236777] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11802), 1, anon_sym_RBRACE, - STATE(7605), 1, + STATE(7775), 1, sym_comment, - [231000] = 3, + [236787] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4801), 1, + ACTIONS(5681), 1, aux_sym_record_entry_token1, - STATE(7606), 1, + STATE(7776), 1, sym_comment, - [231010] = 3, + [236797] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11804), 1, - anon_sym_RBRACE, - STATE(7607), 1, + anon_sym_EQ, + STATE(7777), 1, sym_comment, - [231020] = 3, + [236807] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11806), 1, - anon_sym_EQ_GT, - STATE(7608), 1, + anon_sym_RPAREN, + STATE(7778), 1, sym_comment, - [231030] = 3, + [236817] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11808), 1, - anon_sym_LBRACE, - STATE(7609), 1, + ACTIONS(7236), 1, + aux_sym_unquoted_token2, + STATE(7779), 1, sym_comment, - [231040] = 3, - ACTIONS(3), 1, + [236827] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11810), 1, - aux_sym_cmd_identifier_token41, - STATE(7610), 1, + ACTIONS(5580), 1, + aux_sym_unquoted_token2, + STATE(7780), 1, sym_comment, - [231050] = 3, + [236837] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11812), 1, - sym_raw_string_end, - STATE(7611), 1, + ACTIONS(11808), 1, + anon_sym_RBRACE, + STATE(7781), 1, sym_comment, - [231060] = 3, + [236847] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11814), 1, - anon_sym_RBRACK, - STATE(7612), 1, + ACTIONS(5689), 1, + aux_sym_record_entry_token1, + STATE(7782), 1, sym_comment, - [231070] = 3, + [236857] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(509), 1, - anon_sym_RPAREN2, - STATE(7613), 1, + ACTIONS(11810), 1, + sym_raw_string_end, + STATE(7783), 1, sym_comment, - [231080] = 3, + [236867] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(521), 1, - anon_sym_RPAREN2, - STATE(7614), 1, + ACTIONS(11812), 1, + anon_sym_RBRACE, + STATE(7784), 1, sym_comment, - [231090] = 3, - ACTIONS(247), 1, + [236877] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11816), 1, - sym__table_head_separator, - STATE(7615), 1, + ACTIONS(4762), 1, + aux_sym_unquoted_token4, + STATE(7785), 1, sym_comment, - [231100] = 3, + [236887] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11818), 1, - anon_sym_RBRACE, - STATE(7616), 1, + ACTIONS(5658), 1, + aux_sym_record_entry_token1, + STATE(7786), 1, sym_comment, - [231110] = 3, - ACTIONS(247), 1, + [236897] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11820), 1, - sym_raw_string_end, - STATE(7617), 1, + ACTIONS(11814), 1, + aux_sym_cmd_identifier_token41, + STATE(7787), 1, sym_comment, - [231120] = 3, - ACTIONS(247), 1, + [236907] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11822), 1, - sym_raw_string_end, - STATE(7618), 1, + ACTIONS(4730), 1, + aux_sym_unquoted_token4, + STATE(7788), 1, sym_comment, - [231130] = 3, + [236917] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11824), 1, + ACTIONS(11816), 1, anon_sym_RBRACK, - STATE(7619), 1, + STATE(7789), 1, sym_comment, - [231140] = 3, - ACTIONS(3), 1, + [236927] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11826), 1, - aux_sym_cmd_identifier_token41, - STATE(7620), 1, + ACTIONS(11818), 1, + anon_sym_EQ, + STATE(7790), 1, sym_comment, - [231150] = 3, + [236937] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11828), 1, + ACTIONS(11820), 1, anon_sym_RPAREN, - STATE(7621), 1, + STATE(7791), 1, sym_comment, - [231160] = 3, + [236947] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8667), 1, - aux_sym__unquoted_in_list_token2, - STATE(7622), 1, + ACTIONS(8629), 1, + aux_sym__unquoted_in_record_token2, + STATE(7792), 1, sym_comment, - [231170] = 3, + [236957] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11830), 1, - anon_sym_RBRACE, - STATE(7623), 1, + ACTIONS(11822), 1, + sym_raw_string_end, + STATE(7793), 1, sym_comment, - [231180] = 3, - ACTIONS(3), 1, + [236967] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11639), 1, - aux_sym__record_key_token1, - STATE(7624), 1, + ACTIONS(11824), 1, + anon_sym_EQ, + STATE(7794), 1, sym_comment, - [231190] = 3, + [236977] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11832), 1, + ACTIONS(11826), 1, anon_sym_RPAREN, - STATE(7625), 1, + STATE(7795), 1, sym_comment, - [231200] = 3, + [236987] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8859), 1, - aux_sym__unquoted_in_record_token2, - STATE(7626), 1, + ACTIONS(11828), 1, + anon_sym_RBRACE, + STATE(7796), 1, sym_comment, - [231210] = 3, + [236997] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6458), 1, - aux_sym_unquoted_token2, - STATE(7627), 1, + ACTIONS(11830), 1, + anon_sym_RPAREN, + STATE(7797), 1, sym_comment, - [231220] = 3, + [237007] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11834), 1, + ACTIONS(11832), 1, anon_sym_RBRACE, - STATE(7628), 1, - sym_comment, - [231230] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11836), 1, - anon_sym_RPAREN, - STATE(7629), 1, + STATE(7798), 1, sym_comment, - [231240] = 3, + [237017] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6458), 1, - aux_sym_unquoted_token4, - STATE(7630), 1, + ACTIONS(11834), 1, + aux_sym_cmd_identifier_token41, + STATE(7799), 1, sym_comment, - [231250] = 3, + [237027] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(553), 1, - ts_builtin_sym_end, - STATE(7631), 1, + ACTIONS(11836), 1, + anon_sym_RPAREN, + STATE(7800), 1, sym_comment, - [231260] = 3, + [237037] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11838), 1, anon_sym_RBRACE, - STATE(7632), 1, + STATE(7801), 1, + sym_comment, + [237047] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2228), 1, + aux_sym_unquoted_token4, + STATE(7802), 1, sym_comment, - [231270] = 3, + [237057] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11840), 1, - anon_sym_RBRACK, - STATE(7633), 1, + sym_raw_string_content, + STATE(7803), 1, sym_comment, - [231280] = 3, + [237067] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11842), 1, - anon_sym_RPAREN, - STATE(7634), 1, + anon_sym_RBRACE, + STATE(7804), 1, sym_comment, - [231290] = 3, + [237077] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11844), 1, anon_sym_RPAREN, - STATE(7635), 1, + STATE(7805), 1, sym_comment, - [231300] = 3, + [237087] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11846), 1, - anon_sym_RBRACE, - STATE(7636), 1, + ACTIONS(5188), 1, + anon_sym_LBRACK2, + STATE(7806), 1, sym_comment, - [231310] = 3, + [237097] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11848), 1, - sym_raw_string_content, - STATE(7637), 1, + ACTIONS(9524), 1, + aux_sym_unquoted_token2, + STATE(7807), 1, sym_comment, - [231320] = 3, - ACTIONS(247), 1, + [237107] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5689), 1, - aux_sym_record_entry_token1, - STATE(7638), 1, + ACTIONS(4956), 1, + aux_sym_unquoted_token4, + STATE(7808), 1, sym_comment, - [231330] = 3, + [237117] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11850), 1, - anon_sym_RBRACE, - STATE(7639), 1, + ACTIONS(11846), 1, + sym_raw_string_end, + STATE(7809), 1, sym_comment, - [231340] = 3, + [237127] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5194), 1, - anon_sym_LBRACK2, - STATE(7640), 1, + ACTIONS(11848), 1, + sym__table_head_separator, + STATE(7810), 1, sym_comment, - [231350] = 3, + [237137] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11852), 1, - anon_sym_RPAREN, - STATE(7641), 1, + ACTIONS(3365), 1, + aux_sym_record_entry_token1, + STATE(7811), 1, sym_comment, - [231360] = 3, + [237147] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5805), 1, - aux_sym__unquoted_in_list_token4, - STATE(7642), 1, + ACTIONS(2118), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7812), 1, sym_comment, - [231370] = 3, - ACTIONS(247), 1, + [237157] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5693), 1, - aux_sym_record_entry_token1, - STATE(7643), 1, + ACTIONS(11850), 1, + aux_sym_cmd_identifier_token41, + STATE(7813), 1, sym_comment, - [231380] = 3, + [237167] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11854), 1, + ACTIONS(11852), 1, anon_sym_RBRACE, - STATE(7644), 1, + STATE(7814), 1, sym_comment, - [231390] = 3, + [237177] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3365), 1, - aux_sym_record_entry_token1, - STATE(7645), 1, + ACTIONS(11854), 1, + anon_sym_RBRACE, + STATE(7815), 1, sym_comment, - [231400] = 3, + [237187] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11856), 1, - anon_sym_RBRACE, - STATE(7646), 1, + sym_identifier, + STATE(7816), 1, sym_comment, - [231410] = 3, + [237197] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11858), 1, anon_sym_RBRACE, - STATE(7647), 1, - sym_comment, - [231420] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9678), 1, - aux_sym_unquoted_token2, - STATE(7648), 1, + STATE(7817), 1, sym_comment, - [231430] = 3, + [237207] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11860), 1, - anon_sym_RPAREN, - STATE(7649), 1, + anon_sym_EQ, + STATE(7818), 1, sym_comment, - [231440] = 3, + [237217] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11862), 1, - ts_builtin_sym_end, - STATE(7650), 1, + anon_sym_GT2, + STATE(7819), 1, sym_comment, - [231450] = 3, + [237227] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11864), 1, - aux_sym_cmd_identifier_token41, - STATE(7651), 1, + sym__space, + STATE(7820), 1, sym_comment, - [231460] = 3, + [237237] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11866), 1, anon_sym_RBRACE, - STATE(7652), 1, + STATE(7821), 1, sym_comment, - [231470] = 3, + [237247] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11868), 1, - anon_sym_RPAREN2, - STATE(7653), 1, + anon_sym_RPAREN, + STATE(7822), 1, sym_comment, - [231480] = 3, + [237257] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11870), 1, - sym_identifier, - STATE(7654), 1, - sym_comment, - [231490] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1546), 1, - aux_sym_unquoted_token2, - STATE(7655), 1, - sym_comment, - [231500] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(497), 1, - anon_sym_RPAREN2, - STATE(7656), 1, + anon_sym_EQ, + STATE(7823), 1, sym_comment, - [231510] = 3, + [237267] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11872), 1, - anon_sym_RBRACE, - STATE(7657), 1, - sym_comment, - [231520] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7157), 1, - aux_sym_unquoted_token2, - STATE(7658), 1, + sym_raw_string_end, + STATE(7824), 1, sym_comment, - [231530] = 3, + [237277] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11874), 1, - anon_sym_RBRACE, - STATE(7659), 1, + anon_sym_EQ, + STATE(7825), 1, sym_comment, - [231540] = 3, + [237287] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11876), 1, - anon_sym_RBRACE, - STATE(7660), 1, + anon_sym_RBRACK, + STATE(7826), 1, sym_comment, - [231550] = 3, - ACTIONS(247), 1, + [237297] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11878), 1, - anon_sym_RPAREN, - STATE(7661), 1, + aux_sym_cmd_identifier_token41, + STATE(7827), 1, sym_comment, - [231560] = 3, + [237307] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11880), 1, - sym_raw_string_end, - STATE(7662), 1, + anon_sym_LBRACE, + STATE(7828), 1, sym_comment, - [231570] = 3, + [237317] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11882), 1, - sym_raw_string_end, - STATE(7663), 1, + sym_param_short_flag_identifier, + STATE(7829), 1, sym_comment, - [231580] = 3, + [237327] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11884), 1, - anon_sym_RBRACK, - STATE(7664), 1, + ACTIONS(3363), 1, + aux_sym_record_entry_token1, + STATE(7830), 1, sym_comment, - [231590] = 3, + [237337] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11886), 1, - anon_sym_RPAREN, - STATE(7665), 1, + ACTIONS(11884), 1, + anon_sym_LBRACE, + STATE(7831), 1, sym_comment, - [231600] = 3, + [237347] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7218), 1, - aux_sym_unquoted_token4, - STATE(7666), 1, + ACTIONS(11886), 1, + aux_sym_cmd_identifier_token41, + STATE(7832), 1, sym_comment, - [231610] = 3, + [237357] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11888), 1, - anon_sym_RPAREN, - STATE(7667), 1, + sym_identifier, + STATE(7833), 1, sym_comment, - [231620] = 3, + [237367] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11890), 1, - anon_sym_RBRACK, - STATE(7668), 1, + sym_raw_string_end, + STATE(7834), 1, sym_comment, - [231630] = 3, + [237377] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11892), 1, - anon_sym_DASH_GT, - STATE(7669), 1, + anon_sym_LBRACE, + STATE(7835), 1, sym_comment, - [231640] = 3, + [237387] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11894), 1, - anon_sym_RPAREN, - STATE(7670), 1, + anon_sym_RBRACE, + STATE(7836), 1, sym_comment, - [231650] = 3, + [237397] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11896), 1, - anon_sym_RPAREN, - STATE(7671), 1, + anon_sym_RBRACE, + STATE(7837), 1, sym_comment, - [231660] = 3, + [237407] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11898), 1, - aux_sym_env_var_token2, - STATE(7672), 1, - sym_comment, - [231670] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8677), 1, - aux_sym_unquoted_token2, - STATE(7673), 1, + sym_raw_string_end, + STATE(7838), 1, sym_comment, - [231680] = 3, + [237417] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11900), 1, sym_raw_string_end, - STATE(7674), 1, + STATE(7839), 1, sym_comment, - [231690] = 3, + [237427] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11902), 1, - anon_sym_RBRACE, - STATE(7675), 1, + sym_raw_string_end, + STATE(7840), 1, sym_comment, - [231700] = 3, + [237437] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11904), 1, - anon_sym_RBRACE, - STATE(7676), 1, + anon_sym_RPAREN, + STATE(7841), 1, sym_comment, - [231710] = 3, - ACTIONS(3), 1, + [237447] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7157), 1, - aux_sym_unquoted_token4, - STATE(7677), 1, + ACTIONS(4730), 1, + aux_sym_unquoted_token2, + STATE(7842), 1, sym_comment, - [231720] = 3, + [237457] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11906), 1, anon_sym_RBRACK, - STATE(7678), 1, + STATE(7843), 1, sym_comment, - [231730] = 3, + [237467] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11908), 1, - anon_sym_EQ, - STATE(7679), 1, + anon_sym_RPAREN, + STATE(7844), 1, sym_comment, - [231740] = 3, + [237477] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11910), 1, - anon_sym_RPAREN, - STATE(7680), 1, + anon_sym_RBRACE, + STATE(7845), 1, sym_comment, - [231750] = 3, - ACTIONS(247), 1, + [237487] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2118), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7846), 1, + sym_comment, + [237497] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8635), 1, + aux_sym_unquoted_token4, + STATE(7847), 1, + sym_comment, + [237507] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11912), 1, - anon_sym_RBRACE, - STATE(7681), 1, + aux_sym_cmd_identifier_token41, + STATE(7848), 1, sym_comment, - [231760] = 3, + [237517] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11914), 1, - sym_identifier, - STATE(7682), 1, + sym_raw_string_end, + STATE(7849), 1, sym_comment, - [231770] = 3, + [237527] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11916), 1, anon_sym_RBRACE, - STATE(7683), 1, + STATE(7850), 1, sym_comment, - [231780] = 3, + [237537] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11918), 1, - anon_sym_RBRACE, - STATE(7684), 1, + sym_raw_string_end, + STATE(7851), 1, sym_comment, - [231790] = 3, + [237547] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11619), 1, - anon_sym_LBRACE, - STATE(7685), 1, + ACTIONS(4801), 1, + aux_sym_record_entry_token1, + STATE(7852), 1, sym_comment, - [231800] = 3, + [237557] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1888), 1, - aux_sym_unquoted_token2, - STATE(7686), 1, + ACTIONS(483), 1, + anon_sym_RPAREN2, + STATE(7853), 1, sym_comment, - [231810] = 3, + [237567] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11920), 1, - anon_sym_LBRACE, - STATE(7687), 1, + anon_sym_RBRACE, + STATE(7854), 1, sym_comment, - [231820] = 3, + [237577] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11922), 1, - ts_builtin_sym_end, - STATE(7688), 1, + anon_sym_EQ_GT, + STATE(7855), 1, sym_comment, - [231830] = 3, + [237587] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11924), 1, - anon_sym_in2, - STATE(7689), 1, + anon_sym_RPAREN, + STATE(7856), 1, sym_comment, - [231840] = 3, + [237597] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11926), 1, - anon_sym_RBRACK, - STATE(7690), 1, + sym_raw_string_end, + STATE(7857), 1, sym_comment, - [231850] = 3, + [237607] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11928), 1, - anon_sym_RBRACE, - STATE(7691), 1, + anon_sym_RPAREN2, + STATE(7858), 1, sym_comment, - [231860] = 3, + [237617] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11930), 1, - anon_sym_LBRACE, - STATE(7692), 1, - sym_comment, - [231870] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2129), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7693), 1, + anon_sym_RBRACK, + STATE(7859), 1, sym_comment, - [231880] = 3, + [237627] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11932), 1, - sym_raw_string_end, - STATE(7694), 1, + anon_sym_RBRACE, + STATE(7860), 1, sym_comment, - [231890] = 3, + [237637] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11934), 1, - anon_sym_RPAREN, - STATE(7695), 1, + anon_sym_EQ, + STATE(7861), 1, sym_comment, - [231900] = 3, - ACTIONS(3), 1, + [237647] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11936), 1, - aux_sym_cmd_identifier_token41, - STATE(7696), 1, + anon_sym_RBRACK, + STATE(7862), 1, sym_comment, - [231910] = 3, + [237657] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11938), 1, anon_sym_RPAREN, - STATE(7697), 1, + STATE(7863), 1, sym_comment, - [231920] = 3, + [237667] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11940), 1, sym_raw_string_content, - STATE(7698), 1, + STATE(7864), 1, sym_comment, - [231930] = 3, - ACTIONS(3), 1, + [237677] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11942), 1, - aux_sym_cmd_identifier_token41, - STATE(7699), 1, + sym_raw_string_end, + STATE(7865), 1, sym_comment, - [231940] = 3, + [237687] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11944), 1, - anon_sym_LBRACE, - STATE(7700), 1, + anon_sym_RPAREN, + STATE(7866), 1, sym_comment, - [231950] = 3, + [237697] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5147), 1, + ACTIONS(5152), 1, anon_sym_LBRACK2, - STATE(7701), 1, + STATE(7867), 1, sym_comment, - [231960] = 3, - ACTIONS(247), 1, + [237707] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11946), 1, - anon_sym_RPAREN, - STATE(7702), 1, + aux_sym_cmd_identifier_token41, + STATE(7868), 1, sym_comment, - [231970] = 3, - ACTIONS(3), 1, + [237717] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11948), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7703), 1, - sym_comment, - [231980] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2183), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7704), 1, + sym_identifier, + STATE(7869), 1, sym_comment, - [231990] = 3, + [237727] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11950), 1, - anon_sym_EQ, - STATE(7705), 1, - sym_comment, - [232000] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4900), 1, - aux_sym_unquoted_token2, - STATE(7706), 1, + anon_sym_RBRACK, + STATE(7870), 1, sym_comment, - [232010] = 3, + [237737] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11952), 1, sym_raw_string_end, - STATE(7707), 1, + STATE(7871), 1, + sym_comment, + [237747] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5727), 1, + aux_sym__unquoted_in_list_token4, + STATE(7872), 1, sym_comment, - [232020] = 3, + [237757] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11954), 1, - anon_sym_RPAREN, - STATE(7708), 1, + sym_raw_string_content, + STATE(7873), 1, sym_comment, - [232030] = 3, + [237767] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11956), 1, - anon_sym_RBRACK, - STATE(7709), 1, + anon_sym_RBRACE, + STATE(7874), 1, sym_comment, - [232040] = 3, + [237777] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11958), 1, - anon_sym_make, - STATE(7710), 1, + anon_sym_LBRACE, + STATE(7875), 1, sym_comment, - [232050] = 3, + [237787] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11960), 1, - anon_sym_RPAREN, - STATE(7711), 1, + ts_builtin_sym_end, + STATE(7876), 1, sym_comment, - [232060] = 3, + [237797] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10238), 1, - anon_sym_LBRACE, - STATE(7712), 1, - sym_comment, - [232070] = 3, - ACTIONS(3), 1, - anon_sym_POUND, ACTIONS(11962), 1, - aux_sym_cmd_identifier_token41, - STATE(7713), 1, + anon_sym_RBRACE, + STATE(7877), 1, sym_comment, - [232080] = 3, - ACTIONS(3), 1, + [237807] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11964), 1, - aux_sym_shebang_token1, - STATE(7714), 1, + anon_sym_RPAREN, + STATE(7878), 1, sym_comment, - [232090] = 3, + [237817] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11966), 1, - sym_raw_string_end, - STATE(7715), 1, + anon_sym_RBRACE, + STATE(7879), 1, sym_comment, - [232100] = 3, + [237827] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11968), 1, - sym_raw_string_end, - STATE(7716), 1, + anon_sym_RBRACK, + STATE(7880), 1, sym_comment, - [232110] = 3, + [237837] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(487), 1, - anon_sym_RPAREN2, - STATE(7717), 1, + ACTIONS(11970), 1, + anon_sym_RBRACE, + STATE(7881), 1, sym_comment, - [232120] = 3, + [237847] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11970), 1, + ACTIONS(11972), 1, anon_sym_RPAREN, - STATE(7718), 1, + STATE(7882), 1, sym_comment, - [232130] = 3, + [237857] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11972), 1, - sym_raw_string_end, - STATE(7719), 1, + ACTIONS(11974), 1, + anon_sym_RBRACE, + STATE(7883), 1, sym_comment, - [232140] = 3, + [237867] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11974), 1, - sym_raw_string_content, - STATE(7720), 1, + ACTIONS(4569), 1, + aux_sym_unquoted_token2, + STATE(7884), 1, sym_comment, - [232150] = 3, + [237877] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11976), 1, - anon_sym_RBRACE, - STATE(7721), 1, + sym_raw_string_end, + STATE(7885), 1, sym_comment, - [232160] = 3, + [237887] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8008), 1, - anon_sym_LBRACK2, - STATE(7722), 1, + ACTIONS(11978), 1, + sym_raw_string_content, + STATE(7886), 1, sym_comment, - [232170] = 3, - ACTIONS(3), 1, + [237897] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4900), 1, - aux_sym_unquoted_token4, - STATE(7723), 1, + ACTIONS(11980), 1, + anon_sym_RBRACE, + STATE(7887), 1, sym_comment, - [232180] = 3, + [237907] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11978), 1, - sym_raw_string_end, - STATE(7724), 1, + ACTIONS(8014), 1, + anon_sym_LBRACK2, + STATE(7888), 1, sym_comment, - [232190] = 3, + [237917] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11980), 1, - sym_raw_string_end, - STATE(7725), 1, + ACTIONS(5693), 1, + aux_sym_record_entry_token1, + STATE(7889), 1, sym_comment, - [232200] = 3, - ACTIONS(247), 1, + [237927] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11982), 1, - anon_sym_RPAREN, - STATE(7726), 1, + ACTIONS(5580), 1, + aux_sym_unquoted_token4, + STATE(7890), 1, sym_comment, - [232210] = 3, + [237937] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4716), 1, - aux_sym_unquoted_token2, - STATE(7727), 1, + ACTIONS(11982), 1, + anon_sym_RPAREN, + STATE(7891), 1, sym_comment, - [232220] = 3, + [237947] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11984), 1, - sym_raw_string_content, - STATE(7728), 1, + anon_sym_RBRACK, + STATE(7892), 1, sym_comment, - [232230] = 3, - ACTIONS(247), 1, + [237957] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11986), 1, - sym_identifier, - STATE(7729), 1, + aux_sym_cmd_identifier_token41, + STATE(7893), 1, sym_comment, - [232240] = 3, + [237967] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11988), 1, - anon_sym_RBRACK, - STATE(7730), 1, + anon_sym_RBRACE, + STATE(7894), 1, sym_comment, - [232250] = 3, + [237977] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11990), 1, sym_raw_string_end, - STATE(7731), 1, + STATE(7895), 1, + sym_comment, + [237987] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(7293), 1, + aux_sym__unquoted_in_list_token2, + STATE(7896), 1, sym_comment, - [232260] = 3, + [237997] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11992), 1, - anon_sym_RPAREN, - STATE(7732), 1, + anon_sym_RBRACE, + STATE(7897), 1, + sym_comment, + [238007] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6458), 1, + aux_sym_unquoted_token2, + STATE(7898), 1, sym_comment, - [232270] = 3, + [238017] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11994), 1, - anon_sym_RBRACE, - STATE(7733), 1, + anon_sym_RPAREN, + STATE(7899), 1, sym_comment, - [232280] = 3, + [238027] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11996), 1, - sym_raw_string_end, - STATE(7734), 1, + sym_long_flag_identifier, + STATE(7900), 1, sym_comment, - [232290] = 3, + [238037] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(11998), 1, sym_raw_string_content, - STATE(7735), 1, + STATE(7901), 1, sym_comment, - [232300] = 3, + [238047] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5993), 1, + ACTIONS(5997), 1, anon_sym_LBRACK2, - STATE(7736), 1, + STATE(7902), 1, sym_comment, - [232310] = 3, - ACTIONS(247), 1, + [238057] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(12000), 1, - anon_sym_EQ, - STATE(7737), 1, + aux_sym_cmd_identifier_token41, + STATE(7903), 1, sym_comment, - [232320] = 3, - ACTIONS(247), 1, + [238067] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12002), 1, - sym_raw_string_end, - STATE(7738), 1, + ACTIONS(8499), 1, + aux_sym_unquoted_token4, + STATE(7904), 1, sym_comment, - [232330] = 3, + [238077] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12004), 1, - anon_sym_GT2, - STATE(7739), 1, + ACTIONS(12002), 1, + sym_raw_string_end, + STATE(7905), 1, sym_comment, - [232340] = 3, + [238087] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12006), 1, - anon_sym_RBRACE, - STATE(7740), 1, + ACTIONS(4866), 1, + aux_sym_unquoted_token2, + STATE(7906), 1, sym_comment, - [232350] = 3, + [238097] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7297), 1, - aux_sym__unquoted_in_list_token2, - STATE(7741), 1, + ACTIONS(12004), 1, + anon_sym_RPAREN, + STATE(7907), 1, sym_comment, - [232360] = 3, + [238107] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(4764), 1, - aux_sym_unquoted_token2, - STATE(7742), 1, + ACTIONS(12006), 1, + anon_sym_GT2, + STATE(7908), 1, sym_comment, - [232370] = 3, + [238117] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12008), 1, - sym_raw_string_end, - STATE(7743), 1, + sym_identifier, + STATE(7909), 1, sym_comment, - [232380] = 3, + [238127] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12010), 1, - anon_sym_RBRACK, - STATE(7744), 1, - sym_comment, - [232390] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4716), 1, - aux_sym_unquoted_token4, - STATE(7745), 1, + sym_raw_string_end, + STATE(7910), 1, sym_comment, - [232400] = 3, + [238137] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12012), 1, anon_sym_RPAREN, - STATE(7746), 1, - sym_comment, - [232410] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9598), 1, - aux_sym_unquoted_token2, - STATE(7747), 1, + STATE(7911), 1, sym_comment, - [232420] = 3, + [238147] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12014), 1, - anon_sym_RPAREN, - STATE(7748), 1, + anon_sym_RBRACK, + STATE(7912), 1, sym_comment, - [232430] = 3, - ACTIONS(247), 1, + [238157] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12016), 1, - sym_raw_string_content, - STATE(7749), 1, + ACTIONS(4866), 1, + aux_sym_unquoted_token4, + STATE(7913), 1, sym_comment, - [232440] = 3, + [238167] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7669), 1, - anon_sym_LBRACK2, - STATE(7750), 1, + ACTIONS(12016), 1, + anon_sym_RPAREN2, + STATE(7914), 1, sym_comment, - [232450] = 3, + [238177] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12018), 1, - sym_raw_string_end, - STATE(7751), 1, + sym_raw_string_content, + STATE(7915), 1, sym_comment, - [232460] = 3, + [238187] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5697), 1, - aux_sym_record_entry_token1, - STATE(7752), 1, - sym_comment, - [232470] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9598), 1, - aux_sym_unquoted_token4, - STATE(7753), 1, + ACTIONS(7652), 1, + anon_sym_LBRACK2, + STATE(7916), 1, sym_comment, - [232480] = 3, + [238197] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12020), 1, - anon_sym_RBRACK, - STATE(7754), 1, + sym_raw_string_end, + STATE(7917), 1, sym_comment, - [232490] = 3, + [238207] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12022), 1, - sym_identifier, - STATE(7755), 1, - sym_comment, - [232500] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5566), 1, - aux_sym__unquoted_in_list_token2, - STATE(7756), 1, + anon_sym_RPAREN, + STATE(7918), 1, sym_comment, - [232510] = 3, + [238217] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12024), 1, - sym_raw_string_end, - STATE(7757), 1, + anon_sym_RBRACE, + STATE(7919), 1, sym_comment, - [232520] = 3, + [238227] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12026), 1, anon_sym_RBRACK, - STATE(7758), 1, + STATE(7920), 1, sym_comment, - [232530] = 3, - ACTIONS(3), 1, + [238237] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12028), 1, - aux_sym_comment_token1, - STATE(7759), 1, + anon_sym_GT2, + STATE(7921), 1, sym_comment, - [232540] = 3, + [238247] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12030), 1, - anon_sym_RPAREN, - STATE(7760), 1, + anon_sym_EQ, + STATE(7922), 1, sym_comment, - [232550] = 3, + [238257] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12032), 1, - anon_sym_RPAREN, - STATE(7761), 1, + anon_sym_RBRACE, + STATE(7923), 1, sym_comment, - [232560] = 3, + [238267] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12034), 1, - sym_raw_string_end, - STATE(7762), 1, + anon_sym_RBRACE, + STATE(7924), 1, sym_comment, - [232570] = 3, + [238277] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12036), 1, - sym_raw_string_content, - STATE(7763), 1, + ACTIONS(5662), 1, + aux_sym_record_entry_token1, + STATE(7925), 1, sym_comment, - [232580] = 3, + [238287] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(7840), 1, - anon_sym_LBRACK2, - STATE(7764), 1, + ACTIONS(12036), 1, + anon_sym_RBRACE, + STATE(7926), 1, sym_comment, - [232590] = 3, + [238297] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12038), 1, - anon_sym_RBRACE, - STATE(7765), 1, + sym_raw_string_end, + STATE(7927), 1, sym_comment, - [232600] = 3, + [238307] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12040), 1, - anon_sym_RBRACE, - STATE(7766), 1, + anon_sym_RPAREN, + STATE(7928), 1, sym_comment, - [232610] = 3, + [238317] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12042), 1, - anon_sym_RBRACE, - STATE(7767), 1, + sym_raw_string_content, + STATE(7929), 1, + sym_comment, + [238327] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8055), 1, + anon_sym_LBRACK2, + STATE(7930), 1, sym_comment, - [232620] = 3, + [238337] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12044), 1, - anon_sym_RPAREN, - STATE(7768), 1, + sym_raw_string_end, + STATE(7931), 1, sym_comment, - [232630] = 3, + [238347] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(8499), 1, + aux_sym_unquoted_token2, + STATE(7932), 1, + sym_comment, + [238357] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12046), 1, - sym_raw_string_end, - STATE(7769), 1, + anon_sym_RBRACK, + STATE(7933), 1, sym_comment, - [232640] = 3, + [238367] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12048), 1, - anon_sym_RBRACE, - STATE(7770), 1, + anon_sym_RPAREN, + STATE(7934), 1, sym_comment, - [232650] = 3, + [238377] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12050), 1, anon_sym_RBRACE, - STATE(7771), 1, + STATE(7935), 1, sym_comment, - [232660] = 3, + [238387] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12052), 1, anon_sym_RBRACE, - STATE(7772), 1, + STATE(7936), 1, sym_comment, - [232670] = 3, + [238397] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12054), 1, anon_sym_EQ, - STATE(7773), 1, + STATE(7937), 1, sym_comment, - [232680] = 3, - ACTIONS(247), 1, + [238407] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(12056), 1, - anon_sym_RPAREN, - STATE(7774), 1, + aux_sym_cmd_identifier_token41, + STATE(7938), 1, sym_comment, - [232690] = 3, + [238417] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12058), 1, sym_raw_string_end, - STATE(7775), 1, + STATE(7939), 1, sym_comment, - [232700] = 3, + [238427] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12060), 1, - sym_raw_string_content, - STATE(7776), 1, - sym_comment, - [232710] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6526), 1, - anon_sym_LBRACK2, - STATE(7777), 1, + sym_identifier, + STATE(7940), 1, sym_comment, - [232720] = 3, + [238437] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12062), 1, anon_sym_RBRACE, - STATE(7778), 1, + STATE(7941), 1, sym_comment, - [232730] = 3, + [238447] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12064), 1, - sym_identifier, - STATE(7779), 1, + sym_raw_string_content, + STATE(7942), 1, sym_comment, - [232740] = 3, - ACTIONS(3), 1, + [238457] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12066), 1, - aux_sym_cmd_identifier_token41, - STATE(7780), 1, + ACTIONS(6515), 1, + anon_sym_LBRACK2, + STATE(7943), 1, sym_comment, - [232750] = 3, + [238467] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12068), 1, - anon_sym_EQ, - STATE(7781), 1, + ACTIONS(12066), 1, + anon_sym_LBRACE, + STATE(7944), 1, sym_comment, - [232760] = 3, + [238477] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5681), 1, - aux_sym_record_entry_token1, - STATE(7782), 1, + ACTIONS(12068), 1, + anon_sym_RPAREN, + STATE(7945), 1, sym_comment, - [232770] = 3, + [238487] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12070), 1, - sym_raw_string_end, - STATE(7783), 1, + anon_sym_RBRACK, + STATE(7946), 1, sym_comment, - [232780] = 3, + [238497] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12072), 1, - anon_sym_EQ, - STATE(7784), 1, + anon_sym_RBRACK, + STATE(7947), 1, sym_comment, - [232790] = 3, + [238507] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12074), 1, - anon_sym_EQ, - STATE(7785), 1, + sym_raw_string_end, + STATE(7948), 1, sym_comment, - [232800] = 3, + [238517] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12076), 1, - anon_sym_RBRACE, - STATE(7786), 1, + anon_sym_GT2, + STATE(7949), 1, sym_comment, - [232810] = 3, + [238527] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12078), 1, anon_sym_RPAREN, - STATE(7787), 1, + STATE(7950), 1, sym_comment, - [232820] = 3, + [238537] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12080), 1, - sym_raw_string_end, - STATE(7788), 1, + anon_sym_RBRACE, + STATE(7951), 1, sym_comment, - [232830] = 3, + [238547] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12082), 1, - sym_raw_string_content, - STATE(7789), 1, + sym_raw_string_end, + STATE(7952), 1, sym_comment, - [232840] = 3, + [238557] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5057), 1, - anon_sym_LBRACK2, - STATE(7790), 1, + ACTIONS(12084), 1, + anon_sym_RPAREN, + STATE(7953), 1, sym_comment, - [232850] = 3, + [238567] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12084), 1, - anon_sym_RBRACE, - STATE(7791), 1, + ACTIONS(12086), 1, + sym_raw_string_content, + STATE(7954), 1, sym_comment, - [232860] = 3, + [238577] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12086), 1, - anon_sym_EQ, - STATE(7792), 1, + ACTIONS(5068), 1, + anon_sym_LBRACK2, + STATE(7955), 1, sym_comment, - [232870] = 3, + [238587] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12088), 1, - anon_sym_RBRACE, - STATE(7793), 1, + anon_sym_RPAREN, + STATE(7956), 1, sym_comment, - [232880] = 3, + [238597] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12090), 1, - sym_raw_string_end, - STATE(7794), 1, + anon_sym_GT2, + STATE(7957), 1, sym_comment, - [232890] = 3, + [238607] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12092), 1, - sym_raw_string_end, - STATE(7795), 1, + anon_sym_LPAREN2, + STATE(7958), 1, sym_comment, - [232900] = 3, + [238617] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12094), 1, - anon_sym_RBRACE, - STATE(7796), 1, + sym_raw_string_end, + STATE(7959), 1, sym_comment, - [232910] = 3, + [238627] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12096), 1, anon_sym_RBRACE, - STATE(7797), 1, - sym_comment, - [232920] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12098), 1, - aux_sym_cmd_identifier_token41, - STATE(7798), 1, + STATE(7960), 1, sym_comment, - [232930] = 3, + [238637] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5477), 1, - anon_sym_LBRACK2, - STATE(7799), 1, + ACTIONS(12098), 1, + sym_raw_string_end, + STATE(7961), 1, sym_comment, - [232940] = 3, + [238647] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12100), 1, - sym_raw_string_end, - STATE(7800), 1, + anon_sym_RBRACE, + STATE(7962), 1, sym_comment, - [232950] = 3, + [238657] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12102), 1, - sym_raw_string_content, - STATE(7801), 1, + anon_sym_LBRACE, + STATE(7963), 1, sym_comment, - [232960] = 3, + [238667] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6136), 1, - anon_sym_LBRACK2, - STATE(7802), 1, + ACTIONS(4553), 1, + aux_sym_unquoted_token2, + STATE(7964), 1, sym_comment, - [232970] = 3, + [238677] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4764), 1, + ACTIONS(6458), 1, aux_sym_unquoted_token4, - STATE(7803), 1, + STATE(7965), 1, sym_comment, - [232980] = 3, + [238687] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12104), 1, - sym_identifier, - STATE(7804), 1, + anon_sym_in2, + STATE(7966), 1, sym_comment, - [232990] = 3, + [238697] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12106), 1, - anon_sym_RBRACE, - STATE(7805), 1, + ACTIONS(1781), 1, + aux_sym__unquoted_in_record_token2, + STATE(7967), 1, sym_comment, - [233000] = 3, + [238707] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12108), 1, + ACTIONS(6116), 1, + anon_sym_LBRACK2, + STATE(7968), 1, + sym_comment, + [238717] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(12106), 1, anon_sym_RPAREN, - STATE(7806), 1, + STATE(7969), 1, sym_comment, - [233010] = 3, + [238727] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12110), 1, - anon_sym_RBRACK, - STATE(7807), 1, + ACTIONS(5727), 1, + aux_sym__unquoted_in_list_token2, + STATE(7970), 1, sym_comment, - [233020] = 3, + [238737] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12112), 1, - sym_raw_string_end, - STATE(7808), 1, + ACTIONS(12108), 1, + anon_sym_RBRACK, + STATE(7971), 1, sym_comment, - [233030] = 3, + [238747] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12114), 1, - anon_sym_in2, - STATE(7809), 1, + ACTIONS(12110), 1, + anon_sym_RBRACE, + STATE(7972), 1, sym_comment, - [233040] = 3, + [238757] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(3363), 1, - aux_sym_record_entry_token1, - STATE(7810), 1, + ACTIONS(12112), 1, + sym_raw_string_end, + STATE(7973), 1, sym_comment, - [233050] = 3, + [238767] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2220), 1, - aux_sym_unquoted_token4, - STATE(7811), 1, + ACTIONS(12114), 1, + aux_sym_cmd_identifier_token41, + STATE(7974), 1, sym_comment, - [233060] = 3, - ACTIONS(3), 1, + [238777] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12116), 1, - aux_sym_cmd_identifier_token41, - STATE(7812), 1, + anon_sym_RPAREN, + STATE(7975), 1, sym_comment, - [233070] = 3, + [238787] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12118), 1, anon_sym_RBRACE, - STATE(7813), 1, + STATE(7976), 1, sym_comment, - [233080] = 3, - ACTIONS(247), 1, + [238797] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(12120), 1, - sym_raw_string_content, - STATE(7814), 1, - sym_comment, - [233090] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6645), 1, - anon_sym_LBRACK2, - STATE(7815), 1, + aux_sym_cmd_identifier_token41, + STATE(7977), 1, sym_comment, - [233100] = 3, + [238807] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12122), 1, sym_raw_string_end, - STATE(7816), 1, - sym_comment, - [233110] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7218), 1, - aux_sym_unquoted_token2, - STATE(7817), 1, - sym_comment, - [233120] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2129), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7818), 1, - sym_comment, - [233130] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(493), 1, - anon_sym_RPAREN2, - STATE(7819), 1, + STATE(7978), 1, sym_comment, - [233140] = 3, + [238817] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12124), 1, - anon_sym_EQ, - STATE(7820), 1, + anon_sym_RBRACK, + STATE(7979), 1, sym_comment, - [233150] = 3, - ACTIONS(3), 1, + [238827] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8677), 1, - aux_sym_unquoted_token4, - STATE(7821), 1, + ACTIONS(12126), 1, + sym_raw_string_content, + STATE(7980), 1, sym_comment, - [233160] = 3, + [238837] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12126), 1, - anon_sym_RBRACE, - STATE(7822), 1, + ACTIONS(6641), 1, + anon_sym_LBRACK2, + STATE(7981), 1, sym_comment, - [233170] = 3, + [238847] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12128), 1, - anon_sym_LBRACE, - STATE(7823), 1, + anon_sym_RPAREN, + STATE(7982), 1, sym_comment, - [233180] = 3, + [238857] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12130), 1, - anon_sym_RBRACK, - STATE(7824), 1, + anon_sym_RBRACE, + STATE(7983), 1, sym_comment, - [233190] = 3, + [238867] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12132), 1, - anon_sym_LBRACE, - STATE(7825), 1, + anon_sym_RBRACK, + STATE(7984), 1, sym_comment, - [233200] = 3, + [238877] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12134), 1, - sym_raw_string_end, - STATE(7826), 1, + sym_raw_string_content, + STATE(7985), 1, + sym_comment, + [238887] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11704), 1, + aux_sym__record_key_token1, + STATE(7986), 1, sym_comment, - [233210] = 3, + [238897] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12136), 1, - sym_raw_string_content, - STATE(7827), 1, + ACTIONS(569), 1, + ts_builtin_sym_end, + STATE(7987), 1, sym_comment, - [233220] = 3, + [238907] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6111), 1, - anon_sym_LBRACK2, - STATE(7828), 1, + ACTIONS(12136), 1, + anon_sym_RPAREN, + STATE(7988), 1, sym_comment, - [233230] = 3, + [238917] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12138), 1, anon_sym_RBRACE, - STATE(7829), 1, + STATE(7989), 1, sym_comment, - [233240] = 3, + [238927] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12140), 1, - anon_sym_GT2, - STATE(7830), 1, + aux_sym_env_var_token2, + STATE(7990), 1, + sym_comment, + [238937] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(11593), 1, + anon_sym_make, + STATE(7991), 1, sym_comment, - [233250] = 3, + [238947] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12142), 1, - anon_sym_RBRACE, - STATE(7831), 1, + anon_sym_RPAREN, + STATE(7992), 1, sym_comment, - [233260] = 3, + [238957] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12144), 1, - anon_sym_RPAREN, - STATE(7832), 1, + sym_raw_string_content, + STATE(7993), 1, + sym_comment, + [238967] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6094), 1, + anon_sym_LBRACK2, + STATE(7994), 1, + sym_comment, + [238977] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9524), 1, + aux_sym_unquoted_token4, + STATE(7995), 1, sym_comment, - [233270] = 3, + [238987] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12146), 1, - anon_sym_RPAREN, - STATE(7833), 1, + anon_sym_EQ, + STATE(7996), 1, sym_comment, - [233280] = 3, + [238997] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12148), 1, anon_sym_RBRACE, - STATE(7834), 1, + STATE(7997), 1, sym_comment, - [233290] = 3, + [239007] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12150), 1, - sym_raw_string_end, - STATE(7835), 1, - sym_comment, - [233300] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(12132), 1, - anon_sym_LBRACE, - STATE(7836), 1, + anon_sym_RBRACE, + STATE(7998), 1, sym_comment, - [233310] = 3, + [239017] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12152), 1, - anon_sym_RBRACE, - STATE(7837), 1, + anon_sym_in2, + STATE(7999), 1, sym_comment, - [233320] = 3, - ACTIONS(247), 1, + [239027] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(12154), 1, - anon_sym_RBRACE, - STATE(7838), 1, + aux_sym_cmd_identifier_token41, + STATE(8000), 1, sym_comment, - [233330] = 3, + [239037] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12156), 1, - sym_identifier, - STATE(7839), 1, + anon_sym_RBRACK, + STATE(8001), 1, sym_comment, - [233340] = 3, - ACTIONS(247), 1, + [239047] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(12158), 1, - sym_raw_string_content, - STATE(7840), 1, + aux_sym_cmd_identifier_token41, + STATE(8002), 1, sym_comment, - [233350] = 3, + [239057] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(9480), 1, + ACTIONS(10095), 1, anon_sym_LBRACK2, - STATE(7841), 1, + STATE(8003), 1, sym_comment, - [233360] = 3, + [239067] = 3, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(493), 1, + anon_sym_RPAREN2, + STATE(8004), 1, + sym_comment, + [239077] = 3, + ACTIONS(3), 1, + anon_sym_POUND, ACTIONS(12160), 1, - anon_sym_RBRACE, - STATE(7842), 1, + aux_sym_comment_token1, + STATE(8005), 1, sym_comment, - [233370] = 3, + [239087] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12162), 1, - sym_raw_string_end, - STATE(7843), 1, + sym_raw_string_content, + STATE(8006), 1, + sym_comment, + [239097] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(9488), 1, + anon_sym_LBRACK2, + STATE(8007), 1, sym_comment, - [233380] = 3, + [239107] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12164), 1, - anon_sym_RPAREN, - STATE(7844), 1, + sym_identifier, + STATE(8008), 1, sym_comment, - [233390] = 3, + [239117] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12166), 1, - sym_raw_string_end, - STATE(7845), 1, + anon_sym_RBRACE, + STATE(8009), 1, sym_comment, - [233400] = 3, + [239127] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12168), 1, anon_sym_RBRACE, - STATE(7846), 1, + STATE(8010), 1, sym_comment, - [233410] = 3, + [239137] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12170), 1, anon_sym_RPAREN, - STATE(7847), 1, + STATE(8011), 1, sym_comment, - [233420] = 3, + [239147] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12172), 1, sym_raw_string_end, - STATE(7848), 1, + STATE(8012), 1, sym_comment, - [233430] = 3, + [239157] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12174), 1, - anon_sym_GT2, - STATE(7849), 1, + anon_sym_RPAREN, + STATE(8013), 1, sym_comment, - [233440] = 3, - ACTIONS(3), 1, + [239167] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12176), 1, - aux_sym_cmd_identifier_token41, - STATE(7850), 1, + anon_sym_RPAREN, + STATE(8014), 1, sym_comment, - [233450] = 3, + [239177] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12178), 1, anon_sym_RBRACE, - STATE(7851), 1, + STATE(8015), 1, sym_comment, - [233460] = 3, - ACTIONS(247), 1, + [239187] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(12180), 1, - anon_sym_RBRACE, - STATE(7852), 1, + sym__space, + STATE(8016), 1, sym_comment, - [233470] = 3, + [239197] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12182), 1, - sym_raw_string_content, - STATE(7853), 1, + anon_sym_RPAREN, + STATE(8017), 1, sym_comment, - [233480] = 3, + [239207] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2411), 1, - anon_sym_LBRACK2, - STATE(7854), 1, + ACTIONS(12184), 1, + anon_sym_RBRACE, + STATE(8018), 1, sym_comment, - [233490] = 3, + [239217] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12184), 1, - sym_raw_string_end, - STATE(7855), 1, + ACTIONS(12186), 1, + sym_raw_string_content, + STATE(8019), 1, sym_comment, - [233500] = 3, - ACTIONS(3), 1, + [239227] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12186), 1, - aux_sym_cmd_identifier_token41, - STATE(7856), 1, + ACTIONS(2434), 1, + anon_sym_LBRACK2, + STATE(8020), 1, sym_comment, - [233510] = 3, + [239237] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12188), 1, - anon_sym_GT2, - STATE(7857), 1, + anon_sym_RBRACE, + STATE(8021), 1, sym_comment, - [233520] = 3, - ACTIONS(3), 1, + [239247] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12190), 1, - aux_sym_cmd_identifier_token41, - STATE(7858), 1, + anon_sym_RPAREN, + STATE(8022), 1, sym_comment, - [233530] = 3, + [239257] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12192), 1, - sym_raw_string_end, - STATE(7859), 1, + anon_sym_RPAREN, + STATE(8023), 1, sym_comment, - [233540] = 3, - ACTIONS(247), 1, + [239267] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2183), 1, + aux_sym__unquoted_with_expr_token1, + STATE(8024), 1, + sym_comment, + [239277] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(12194), 1, - anon_sym_RBRACE, - STATE(7860), 1, + aux_sym_cmd_identifier_token41, + STATE(8025), 1, sym_comment, - [233550] = 3, + [239287] = 3, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(10871), 1, + anon_sym_LBRACE, + STATE(8026), 1, + sym_comment, + [239297] = 3, + ACTIONS(3), 1, + anon_sym_POUND, ACTIONS(12196), 1, - anon_sym_EQ, - STATE(7861), 1, + aux_sym_cmd_identifier_token41, + STATE(8027), 1, sym_comment, - [233560] = 3, + [239307] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12198), 1, - sym_raw_string_end, - STATE(7862), 1, + anon_sym_LBRACE, + STATE(8028), 1, sym_comment, - [233570] = 3, + [239317] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12200), 1, sym_raw_string_content, - STATE(7863), 1, + STATE(8029), 1, sym_comment, - [233580] = 3, + [239327] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2339), 1, + ACTIONS(2324), 1, anon_sym_LBRACK2, - STATE(7864), 1, + STATE(8030), 1, sym_comment, - [233590] = 3, + [239337] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12202), 1, - sym_raw_string_end, - STATE(7865), 1, + ACTIONS(505), 1, + anon_sym_RPAREN2, + STATE(8031), 1, sym_comment, - [233600] = 3, + [239347] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8499), 1, - aux_sym_unquoted_token2, - STATE(7866), 1, + ACTIONS(12202), 1, + sym_raw_string_end, + STATE(8032), 1, sym_comment, - [233610] = 3, + [239357] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12204), 1, - anon_sym_RBRACK, - STATE(7867), 1, + anon_sym_RPAREN, + STATE(8033), 1, sym_comment, - [233620] = 3, + [239367] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12206), 1, - anon_sym_GT2, - STATE(7868), 1, + sym_raw_string_end, + STATE(8034), 1, sym_comment, - [233630] = 3, + [239377] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12208), 1, anon_sym_RPAREN, - STATE(7869), 1, + STATE(8035), 1, sym_comment, - [233640] = 3, - ACTIONS(3), 1, + [239387] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12210), 1, - aux_sym_cmd_identifier_token41, - STATE(7870), 1, + anon_sym_RPAREN, + STATE(8036), 1, sym_comment, - [233650] = 3, + [239397] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12212), 1, - anon_sym_EQ, - STATE(7871), 1, + sym_raw_string_end, + STATE(8037), 1, sym_comment, - [233660] = 3, + [239407] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12214), 1, - anon_sym_RPAREN, - STATE(7872), 1, + anon_sym_RBRACK, + STATE(8038), 1, sym_comment, - [233670] = 3, + [239417] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12216), 1, sym_raw_string_content, - STATE(7873), 1, + STATE(8039), 1, sym_comment, - [233680] = 3, + [239427] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12218), 1, - anon_sym_RBRACE, - STATE(7874), 1, + anon_sym_RPAREN, + STATE(8040), 1, sym_comment, - [233690] = 3, + [239437] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12220), 1, - sym_raw_string_end, - STATE(7875), 1, + anon_sym_RBRACE, + STATE(8041), 1, sym_comment, - [233700] = 3, + [239447] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12222), 1, - anon_sym_RPAREN, - STATE(7876), 1, + anon_sym_LBRACE, + STATE(8042), 1, sym_comment, - [233710] = 3, + [239457] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12224), 1, - anon_sym_RBRACK, - STATE(7877), 1, + sym__table_head_separator, + STATE(8043), 1, sym_comment, - [233720] = 3, + [239467] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12226), 1, - anon_sym_RPAREN, - STATE(7878), 1, + anon_sym_RBRACE, + STATE(8044), 1, sym_comment, - [233730] = 3, + [239477] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12228), 1, - sym_raw_string_end, - STATE(7879), 1, + anon_sym_RBRACE, + STATE(8045), 1, sym_comment, - [233740] = 3, + [239487] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12230), 1, - anon_sym_RBRACE, - STATE(7880), 1, + sym_raw_string_end, + STATE(8046), 1, sym_comment, - [233750] = 3, + [239497] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12232), 1, - anon_sym_EQ, - STATE(7881), 1, + anon_sym_RPAREN, + STATE(8047), 1, sym_comment, - [233760] = 3, + [239507] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12234), 1, sym_raw_string_content, - STATE(7882), 1, + STATE(8048), 1, sym_comment, - [233770] = 3, + [239517] = 3, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(11559), 1, + anon_sym_LBRACE, + STATE(8049), 1, + sym_comment, + [239527] = 3, + ACTIONS(3), 1, + anon_sym_POUND, ACTIONS(12236), 1, - sym_raw_string_end, - STATE(7883), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(8050), 1, sym_comment, - [233780] = 3, + [239537] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12238), 1, - anon_sym_RPAREN2, - STATE(7884), 1, + anon_sym_EQ, + STATE(8051), 1, sym_comment, - [233790] = 3, + [239547] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12240), 1, anon_sym_EQ, - STATE(7885), 1, + STATE(8052), 1, sym_comment, - [233800] = 3, + [239557] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12242), 1, - sym_raw_string_end, - STATE(7886), 1, - sym_comment, - [233810] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11351), 1, - anon_sym_EQ_GT, - STATE(7887), 1, + anon_sym_RBRACE, + STATE(8053), 1, sym_comment, - [233820] = 3, + [239567] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5805), 1, - aux_sym__unquoted_in_list_token2, - STATE(7888), 1, + ACTIONS(7190), 1, + aux_sym_unquoted_token2, + STATE(8054), 1, sym_comment, - [233830] = 3, + [239577] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12244), 1, sym_raw_string_end, - STATE(7889), 1, + STATE(8055), 1, + sym_comment, + [239587] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7236), 1, + aux_sym_unquoted_token4, + STATE(8056), 1, sym_comment, - [233840] = 3, + [239597] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12246), 1, - anon_sym_RBRACK, - STATE(7890), 1, + sym_raw_string_content, + STATE(8057), 1, sym_comment, - [233850] = 3, + [239607] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12248), 1, - sym_raw_string_content, - STATE(7891), 1, + aux_sym_record_entry_token1, + STATE(8058), 1, sym_comment, - [233860] = 3, + [239617] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12250), 1, - sym_raw_string_content, - STATE(7892), 1, + anon_sym_RBRACE, + STATE(8059), 1, sym_comment, - [233870] = 3, + [239627] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12252), 1, - aux_sym_record_entry_token1, - STATE(7893), 1, + sym_raw_string_end, + STATE(8060), 1, sym_comment, - [233880] = 3, + [239637] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12254), 1, - anon_sym_RPAREN, - STATE(7894), 1, + aux_sym_record_entry_token1, + STATE(8061), 1, sym_comment, - [233890] = 3, + [239647] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12256), 1, anon_sym_RBRACE, - STATE(7895), 1, + STATE(8062), 1, sym_comment, - [233900] = 3, - ACTIONS(247), 1, + [239657] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11563), 1, - anon_sym_make, - STATE(7896), 1, + ACTIONS(2183), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(8063), 1, sym_comment, - [233910] = 3, + [239667] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12258), 1, - anon_sym_RBRACE, - STATE(7897), 1, + anon_sym_RPAREN, + STATE(8064), 1, sym_comment, - [233920] = 3, + [239677] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12260), 1, - anon_sym_EQ, - STATE(7898), 1, + anon_sym_LBRACE, + STATE(8065), 1, sym_comment, - [233930] = 3, + [239687] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12262), 1, - anon_sym_RBRACE, - STATE(7899), 1, + sym_raw_string_content, + STATE(8066), 1, sym_comment, - [233940] = 3, + [239697] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12264), 1, sym_raw_string_content, - STATE(7900), 1, + STATE(8067), 1, sym_comment, - [233950] = 3, + [239707] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12266), 1, sym_raw_string_content, - STATE(7901), 1, + STATE(8068), 1, sym_comment, - [233960] = 3, + [239717] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12268), 1, sym_raw_string_content, - STATE(7902), 1, + STATE(8069), 1, sym_comment, - [233970] = 3, + [239727] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12270), 1, sym_raw_string_content, - STATE(7903), 1, + STATE(8070), 1, sym_comment, - [233980] = 3, + [239737] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12272), 1, sym_raw_string_content, - STATE(7904), 1, + STATE(8071), 1, sym_comment, - [233990] = 3, + [239747] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12274), 1, sym_raw_string_content, - STATE(7905), 1, + STATE(8072), 1, sym_comment, - [234000] = 3, + [239757] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12276), 1, sym_raw_string_content, - STATE(7906), 1, + STATE(8073), 1, sym_comment, - [234010] = 3, + [239767] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12278), 1, sym_raw_string_content, - STATE(7907), 1, + STATE(8074), 1, sym_comment, - [234020] = 3, + [239777] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12280), 1, sym_raw_string_content, - STATE(7908), 1, + STATE(8075), 1, sym_comment, - [234030] = 3, + [239787] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12282), 1, sym_raw_string_content, - STATE(7909), 1, + STATE(8076), 1, sym_comment, - [234040] = 3, + [239797] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12284), 1, sym_raw_string_content, - STATE(7910), 1, + STATE(8077), 1, sym_comment, - [234050] = 3, + [239807] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12286), 1, sym_raw_string_content, - STATE(7911), 1, + STATE(8078), 1, sym_comment, - [234060] = 3, + [239817] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12288), 1, sym_raw_string_content, - STATE(7912), 1, + STATE(8079), 1, sym_comment, - [234070] = 3, + [239827] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12290), 1, sym_raw_string_content, - STATE(7913), 1, + STATE(8080), 1, sym_comment, - [234080] = 3, + [239837] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12292), 1, sym_raw_string_content, - STATE(7914), 1, + STATE(8081), 1, sym_comment, - [234090] = 3, + [239847] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12294), 1, sym_raw_string_content, - STATE(7915), 1, + STATE(8082), 1, sym_comment, - [234100] = 3, + [239857] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12296), 1, sym_raw_string_content, - STATE(7916), 1, + STATE(8083), 1, sym_comment, - [234110] = 3, + [239867] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12298), 1, sym_raw_string_content, - STATE(7917), 1, + STATE(8084), 1, sym_comment, - [234120] = 3, + [239877] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12300), 1, sym_raw_string_content, - STATE(7918), 1, + STATE(8085), 1, sym_comment, - [234130] = 3, + [239887] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12302), 1, sym_raw_string_content, - STATE(7919), 1, + STATE(8086), 1, sym_comment, - [234140] = 3, + [239897] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12304), 1, sym_raw_string_content, - STATE(7920), 1, + STATE(8087), 1, sym_comment, - [234150] = 3, + [239907] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12306), 1, sym_raw_string_content, - STATE(7921), 1, + STATE(8088), 1, sym_comment, - [234160] = 3, + [239917] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12308), 1, sym_raw_string_content, - STATE(7922), 1, + STATE(8089), 1, sym_comment, - [234170] = 3, + [239927] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12310), 1, sym_raw_string_content, - STATE(7923), 1, + STATE(8090), 1, sym_comment, - [234180] = 3, + [239937] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12312), 1, sym_raw_string_content, - STATE(7924), 1, + STATE(8091), 1, sym_comment, - [234190] = 3, + [239947] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12314), 1, sym_raw_string_content, - STATE(7925), 1, + STATE(8092), 1, sym_comment, - [234200] = 3, + [239957] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12316), 1, sym_raw_string_content, - STATE(7926), 1, + STATE(8093), 1, sym_comment, - [234210] = 3, + [239967] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12318), 1, sym_raw_string_content, - STATE(7927), 1, + STATE(8094), 1, sym_comment, - [234220] = 3, + [239977] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12320), 1, sym_raw_string_content, - STATE(7928), 1, + STATE(8095), 1, sym_comment, - [234230] = 3, + [239987] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12322), 1, sym_raw_string_content, - STATE(7929), 1, + STATE(8096), 1, sym_comment, - [234240] = 3, + [239997] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12324), 1, - sym_raw_string_content, - STATE(7930), 1, + anon_sym_RBRACE, + STATE(8097), 1, sym_comment, - [234250] = 3, + [240007] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(10769), 1, - anon_sym_LBRACK2, - STATE(7931), 1, + ACTIONS(12260), 1, + anon_sym_LBRACE, + STATE(8098), 1, sym_comment, - [234260] = 3, + [240017] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12326), 1, - anon_sym_RBRACE, - STATE(7932), 1, + ACTIONS(11702), 1, + anon_sym_LPAREN2, + STATE(8099), 1, sym_comment, - [234270] = 3, + [240027] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(11637), 1, - anon_sym_LPAREN2, - STATE(7933), 1, + ACTIONS(12326), 1, + anon_sym_LBRACE, + STATE(8100), 1, sym_comment, - [234280] = 3, - ACTIONS(247), 1, + [240037] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(12328), 1, - anon_sym_RPAREN, - STATE(7934), 1, + aux_sym_cmd_identifier_token41, + STATE(8101), 1, sym_comment, - [234290] = 3, + [240047] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12330), 1, - anon_sym_RBRACE, - STATE(7935), 1, + anon_sym_LBRACE, + STATE(8102), 1, sym_comment, - [234300] = 3, + [240057] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12332), 1, - anon_sym_RPAREN, - STATE(7936), 1, + anon_sym_GT2, + STATE(8103), 1, sym_comment, - [234310] = 3, + [240067] = 3, ACTIONS(247), 1, anon_sym_POUND, + ACTIONS(11958), 1, + anon_sym_LBRACE, + STATE(8104), 1, + sym_comment, + [240077] = 3, + ACTIONS(3), 1, + anon_sym_POUND, ACTIONS(12334), 1, - anon_sym_RBRACE, - STATE(7937), 1, + aux_sym__unquoted_with_expr_token1, + STATE(8105), 1, sym_comment, - [234320] = 3, + [240087] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12336), 1, - anon_sym_RPAREN, - STATE(7938), 1, + anon_sym_RBRACK, + STATE(8106), 1, sym_comment, - [234330] = 3, + [240097] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12338), 1, - anon_sym_EQ, - STATE(7939), 1, + anon_sym_RBRACK, + STATE(8107), 1, sym_comment, - [234340] = 3, - ACTIONS(3), 1, + [240107] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12340), 1, - aux_sym_cmd_identifier_token41, - STATE(7940), 1, + anon_sym_RPAREN, + STATE(8108), 1, sym_comment, - [234350] = 3, - ACTIONS(3), 1, + [240117] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12342), 1, - aux_sym_cmd_identifier_token41, - STATE(7941), 1, + anon_sym_RBRACE, + STATE(8109), 1, sym_comment, - [234360] = 3, + [240127] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12344), 1, - anon_sym_RPAREN, - STATE(7942), 1, + sym_raw_string_end, + STATE(8110), 1, sym_comment, - [234370] = 3, - ACTIONS(247), 1, + [240137] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12346), 1, - anon_sym_GT2, - STATE(7943), 1, + ACTIONS(2183), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(8111), 1, sym_comment, - [234380] = 3, + [240147] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(503), 1, - anon_sym_RPAREN2, - STATE(7944), 1, + ACTIONS(12346), 1, + anon_sym_RBRACE, + STATE(8112), 1, sym_comment, - [234390] = 3, + [240157] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12348), 1, - anon_sym_GT2, - STATE(7945), 1, + anon_sym_RPAREN, + STATE(8113), 1, sym_comment, - [234400] = 3, + [240167] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12350), 1, - sym__table_head_separator, - STATE(7946), 1, - sym_comment, - [234410] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9678), 1, - aux_sym_unquoted_token4, - STATE(7947), 1, + anon_sym_in2, + STATE(8114), 1, sym_comment, - [234420] = 3, + [240177] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12352), 1, anon_sym_in2, - STATE(7948), 1, + STATE(8115), 1, sym_comment, - [234430] = 3, + [240187] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12354), 1, - sym_long_flag_identifier, - STATE(7949), 1, + anon_sym_RBRACE, + STATE(8116), 1, sym_comment, - [234440] = 3, + [240197] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12356), 1, - anon_sym_RBRACE, - STATE(7950), 1, + anon_sym_RBRACK, + STATE(8117), 1, sym_comment, - [234450] = 3, + [240207] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12358), 1, - sym_raw_string_end, - STATE(7951), 1, + anon_sym_RBRACE, + STATE(8118), 1, sym_comment, - [234460] = 3, + [240217] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12360), 1, anon_sym_in2, - STATE(7952), 1, - sym_comment, - [234470] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10773), 1, - anon_sym_LBRACE, - STATE(7953), 1, + STATE(8119), 1, sym_comment, - [234480] = 3, + [240227] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12362), 1, - anon_sym_LBRACE, - STATE(7954), 1, + anon_sym_in2, + STATE(8120), 1, sym_comment, - [234490] = 3, + [240237] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12364), 1, - anon_sym_RPAREN, - STATE(7955), 1, + anon_sym_LBRACE, + STATE(8121), 1, sym_comment, - [234500] = 3, + [240247] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(513), 1, - anon_sym_RPAREN2, - STATE(7956), 1, + ACTIONS(12366), 1, + anon_sym_in2, + STATE(8122), 1, sym_comment, - [234510] = 3, + [240257] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12366), 1, + ACTIONS(12368), 1, anon_sym_RBRACE, - STATE(7957), 1, + STATE(8123), 1, sym_comment, - [234520] = 3, + [240267] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12368), 1, + ACTIONS(12370), 1, anon_sym_RPAREN, - STATE(7958), 1, + STATE(8124), 1, sym_comment, - [234530] = 3, - ACTIONS(247), 1, + [240277] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12370), 1, - anon_sym_RBRACE, - STATE(7959), 1, + ACTIONS(2252), 1, + aux_sym_unquoted_token4, + STATE(8125), 1, sym_comment, - [234540] = 3, + [240287] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12372), 1, - anon_sym_RBRACK, - STATE(7960), 1, + anon_sym_RBRACE, + STATE(8126), 1, sym_comment, - [234550] = 3, + [240297] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2183), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7961), 1, - sym_comment, - [234560] = 3, - ACTIONS(247), 1, - anon_sym_POUND, ACTIONS(12374), 1, - anon_sym_DASH_GT, - STATE(7962), 1, + aux_sym_shebang_token1, + STATE(8127), 1, sym_comment, - [234570] = 3, + [240307] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12376), 1, - anon_sym_RPAREN, - STATE(7963), 1, + anon_sym_RBRACE, + STATE(8128), 1, sym_comment, - [234580] = 3, + [240317] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12378), 1, - anon_sym_GT2, - STATE(7964), 1, + anon_sym_RPAREN, + STATE(8129), 1, sym_comment, - [234590] = 3, + [240327] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12380), 1, - anon_sym_RBRACE, - STATE(7965), 1, - sym_comment, - [234600] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6528), 1, - anon_sym_LPAREN2, - STATE(7966), 1, + sym_raw_string_end, + STATE(8130), 1, sym_comment, - [234610] = 3, + [240337] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12382), 1, - anon_sym_RBRACK, - STATE(7967), 1, + anon_sym_RBRACE, + STATE(8131), 1, sym_comment, - [234620] = 3, + [240347] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12384), 1, - sym_raw_string_end, - STATE(7968), 1, + anon_sym_RPAREN, + STATE(8132), 1, sym_comment, - [234630] = 3, + [240357] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12386), 1, - anon_sym_RBRACE, - STATE(7969), 1, + anon_sym_DASH_GT, + STATE(8133), 1, + sym_comment, + [240367] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(6554), 1, + anon_sym_LPAREN2, + STATE(8134), 1, sym_comment, - [234640] = 3, + [240377] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12388), 1, - anon_sym_LBRACE, - STATE(7970), 1, + anon_sym_RBRACE, + STATE(8135), 1, sym_comment, - [234650] = 3, + [240387] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12390), 1, - anon_sym_LBRACE, - STATE(7971), 1, + anon_sym_RPAREN, + STATE(8136), 1, sym_comment, - [234660] = 3, + [240397] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12392), 1, - aux_sym_record_entry_token1, - STATE(7972), 1, + anon_sym_EQ, + STATE(8137), 1, + sym_comment, + [240407] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12394), 1, + aux_sym_cmd_identifier_token41, + STATE(8138), 1, sym_comment, - [234670] = 3, + [240417] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(6485), 1, - aux_sym_unquoted_token2, - STATE(7973), 1, + ACTIONS(5481), 1, + anon_sym_LBRACK2, + STATE(8139), 1, sym_comment, - [234680] = 3, - ACTIONS(3), 1, + [240427] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(8499), 1, - aux_sym_unquoted_token4, - STATE(7974), 1, + ACTIONS(12396), 1, + anon_sym_EQ, + STATE(8140), 1, sym_comment, - [234690] = 3, + [240437] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12394), 1, - sym_param_short_flag_identifier, - STATE(7975), 1, + ACTIONS(487), 1, + anon_sym_RPAREN2, + STATE(8141), 1, sym_comment, - [234700] = 3, + [240447] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12396), 1, + ACTIONS(12398), 1, anon_sym_RBRACK, - STATE(7976), 1, + STATE(8142), 1, sym_comment, - [234710] = 3, + [240457] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12398), 1, - anon_sym_LBRACE, - STATE(7977), 1, + ACTIONS(501), 1, + anon_sym_RPAREN2, + STATE(8143), 1, sym_comment, - [234720] = 3, + [240467] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12400), 1, - sym_raw_string_end, - STATE(7978), 1, + anon_sym_GT2, + STATE(8144), 1, sym_comment, - [234730] = 3, + [240477] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12402), 1, - anon_sym_RBRACK, - STATE(7979), 1, + anon_sym_RBRACE, + STATE(8145), 1, sym_comment, - [234740] = 3, + [240487] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12404), 1, - anon_sym_RPAREN, - STATE(7980), 1, + anon_sym_RBRACE, + STATE(8146), 1, sym_comment, - [234750] = 3, + [240497] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12406), 1, - anon_sym_LBRACE, - STATE(7981), 1, + anon_sym_RBRACK, + STATE(8147), 1, sym_comment, - [234760] = 3, + [240507] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2258), 1, - aux_sym_unquoted_token2, - STATE(7982), 1, + ACTIONS(12408), 1, + anon_sym_RPAREN, + STATE(8148), 1, sym_comment, - [234770] = 3, + [240517] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12388), 1, - anon_sym_LBRACE, - STATE(7983), 1, + ACTIONS(1559), 1, + aux_sym_unquoted_token2, + STATE(8149), 1, sym_comment, - [234780] = 3, - ACTIONS(247), 1, + [240527] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12408), 1, - anon_sym_EQ_GT, - STATE(7984), 1, + ACTIONS(2118), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(8150), 1, sym_comment, - [234790] = 3, + [240537] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5685), 1, - aux_sym_record_entry_token1, - STATE(7985), 1, + ACTIONS(12410), 1, + anon_sym_RPAREN, + STATE(8151), 1, sym_comment, - [234800] = 3, - ACTIONS(247), 1, + [240547] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12410), 1, - anon_sym_RBRACE, - STATE(7986), 1, + ACTIONS(12412), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(8152), 1, sym_comment, - [234810] = 3, + [240557] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12412), 1, - anon_sym_RPAREN, - STATE(7987), 1, + ACTIONS(10185), 1, + anon_sym_LBRACE, + STATE(8153), 1, sym_comment, - [234820] = 3, + [240567] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12414), 1, - anon_sym_RBRACE, - STATE(7988), 1, + anon_sym_EQ, + STATE(8154), 1, sym_comment, - [234830] = 3, + [240577] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12416), 1, - anon_sym_RBRACE, - STATE(7989), 1, + sym_raw_string_end, + STATE(8155), 1, sym_comment, - [234840] = 3, + [240587] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12418), 1, - anon_sym_RPAREN, - STATE(7990), 1, + ACTIONS(517), 1, + anon_sym_RPAREN2, + STATE(8156), 1, sym_comment, - [234850] = 3, + [240597] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(5616), 1, - aux_sym_unquoted_token2, - STATE(7991), 1, + ACTIONS(12418), 1, + anon_sym_RPAREN, + STATE(8157), 1, sym_comment, - [234860] = 3, + [240607] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12420), 1, - anon_sym_RBRACK, - STATE(7992), 1, + anon_sym_RBRACE, + STATE(8158), 1, sym_comment, - [234870] = 3, + [240617] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12422), 1, - anon_sym_RPAREN, - STATE(7993), 1, + ts_builtin_sym_end, + STATE(8159), 1, sym_comment, - [234880] = 3, + [240627] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(1579), 1, + ACTIONS(4956), 1, aux_sym_unquoted_token2, - STATE(7994), 1, + STATE(8160), 1, sym_comment, - [234890] = 3, + [240637] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12424), 1, - anon_sym_RPAREN, - STATE(7995), 1, + sym_raw_string_end, + STATE(8161), 1, sym_comment, - [234900] = 3, - ACTIONS(3), 1, + [240647] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12426), 1, - aux_sym_cmd_identifier_token41, - STATE(7996), 1, + sym_raw_string_end, + STATE(8162), 1, sym_comment, - [234910] = 3, + [240657] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12428), 1, - anon_sym_LBRACE, - STATE(7997), 1, + anon_sym_RBRACE, + STATE(8163), 1, sym_comment, - [234920] = 3, + [240667] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12430), 1, - anon_sym_EQ, - STATE(7998), 1, + anon_sym_RBRACE, + STATE(8164), 1, sym_comment, - [234930] = 3, - ACTIONS(3), 1, + [240677] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12432), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7999), 1, + sym_raw_string_end, + STATE(8165), 1, sym_comment, - [234940] = 3, - ACTIONS(3), 1, + [240687] = 3, + ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(8000), 1, + ACTIONS(12434), 1, + anon_sym_EQ, + STATE(8166), 1, sym_comment, - [234950] = 3, + [240697] = 3, ACTIONS(247), 1, anon_sym_POUND, - ACTIONS(12434), 1, - anon_sym_RBRACE, - STATE(8001), 1, + ACTIONS(2306), 1, + aux_sym_record_entry_token1, + STATE(8167), 1, sym_comment, - [234960] = 3, + [240707] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12436), 1, - anon_sym_RBRACE, - STATE(8002), 1, + sym_raw_string_end, + STATE(8168), 1, sym_comment, - [234970] = 3, + [240717] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12438), 1, anon_sym_RBRACE, - STATE(8003), 1, + STATE(8169), 1, sym_comment, - [234980] = 3, - ACTIONS(3), 1, + [240727] = 3, + ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12440), 1, - aux_sym_cmd_identifier_token41, - STATE(8004), 1, + anon_sym_RBRACE, + STATE(8170), 1, sym_comment, - [234990] = 3, + [240737] = 3, ACTIONS(247), 1, anon_sym_POUND, ACTIONS(12442), 1, - anon_sym_RBRACE, - STATE(8005), 1, + anon_sym_RPAREN2, + STATE(8171), 1, sym_comment, - [235000] = 1, + [240747] = 3, + ACTIONS(247), 1, + anon_sym_POUND, ACTIONS(12444), 1, + sym_raw_string_end, + STATE(8172), 1, + sym_comment, + [240757] = 3, + ACTIONS(247), 1, + anon_sym_POUND, + ACTIONS(12446), 1, + sym_raw_string_content, + STATE(8173), 1, + sym_comment, + [240767] = 1, + ACTIONS(12448), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1735)] = 0, - [SMALL_STATE(1736)] = 103, - [SMALL_STATE(1737)] = 176, - [SMALL_STATE(1738)] = 249, - [SMALL_STATE(1739)] = 322, - [SMALL_STATE(1740)] = 395, - [SMALL_STATE(1741)] = 468, - [SMALL_STATE(1742)] = 541, - [SMALL_STATE(1743)] = 648, - [SMALL_STATE(1744)] = 721, - [SMALL_STATE(1745)] = 794, - [SMALL_STATE(1746)] = 867, - [SMALL_STATE(1747)] = 940, - [SMALL_STATE(1748)] = 1013, - [SMALL_STATE(1749)] = 1086, - [SMALL_STATE(1750)] = 1159, - [SMALL_STATE(1751)] = 1232, - [SMALL_STATE(1752)] = 1305, - [SMALL_STATE(1753)] = 1378, - [SMALL_STATE(1754)] = 1451, - [SMALL_STATE(1755)] = 1524, - [SMALL_STATE(1756)] = 1597, - [SMALL_STATE(1757)] = 1670, - [SMALL_STATE(1758)] = 1743, - [SMALL_STATE(1759)] = 1816, - [SMALL_STATE(1760)] = 1889, - [SMALL_STATE(1761)] = 1962, - [SMALL_STATE(1762)] = 2035, - [SMALL_STATE(1763)] = 2108, - [SMALL_STATE(1764)] = 2181, - [SMALL_STATE(1765)] = 2254, - [SMALL_STATE(1766)] = 2327, - [SMALL_STATE(1767)] = 2400, - [SMALL_STATE(1768)] = 2473, - [SMALL_STATE(1769)] = 2546, - [SMALL_STATE(1770)] = 2619, - [SMALL_STATE(1771)] = 2692, - [SMALL_STATE(1772)] = 2765, - [SMALL_STATE(1773)] = 2838, - [SMALL_STATE(1774)] = 2911, - [SMALL_STATE(1775)] = 2984, - [SMALL_STATE(1776)] = 3057, - [SMALL_STATE(1777)] = 3130, - [SMALL_STATE(1778)] = 3203, - [SMALL_STATE(1779)] = 3276, - [SMALL_STATE(1780)] = 3349, - [SMALL_STATE(1781)] = 3422, - [SMALL_STATE(1782)] = 3497, - [SMALL_STATE(1783)] = 3572, - [SMALL_STATE(1784)] = 3645, - [SMALL_STATE(1785)] = 3720, - [SMALL_STATE(1786)] = 3793, - [SMALL_STATE(1787)] = 3866, - [SMALL_STATE(1788)] = 3939, - [SMALL_STATE(1789)] = 4012, - [SMALL_STATE(1790)] = 4087, - [SMALL_STATE(1791)] = 4194, - [SMALL_STATE(1792)] = 4297, - [SMALL_STATE(1793)] = 4370, - [SMALL_STATE(1794)] = 4443, - [SMALL_STATE(1795)] = 4518, - [SMALL_STATE(1796)] = 4591, - [SMALL_STATE(1797)] = 4670, - [SMALL_STATE(1798)] = 4745, - [SMALL_STATE(1799)] = 4820, - [SMALL_STATE(1800)] = 4895, - [SMALL_STATE(1801)] = 4968, - [SMALL_STATE(1802)] = 5041, - [SMALL_STATE(1803)] = 5114, - [SMALL_STATE(1804)] = 5191, - [SMALL_STATE(1805)] = 5264, - [SMALL_STATE(1806)] = 5337, - [SMALL_STATE(1807)] = 5440, - [SMALL_STATE(1808)] = 5513, - [SMALL_STATE(1809)] = 5586, - [SMALL_STATE(1810)] = 5659, - [SMALL_STATE(1811)] = 5732, - [SMALL_STATE(1812)] = 5805, - [SMALL_STATE(1813)] = 5912, - [SMALL_STATE(1814)] = 5987, - [SMALL_STATE(1815)] = 6060, - [SMALL_STATE(1816)] = 6135, - [SMALL_STATE(1817)] = 6210, - [SMALL_STATE(1818)] = 6283, - [SMALL_STATE(1819)] = 6358, - [SMALL_STATE(1820)] = 6433, - [SMALL_STATE(1821)] = 6508, - [SMALL_STATE(1822)] = 6581, - [SMALL_STATE(1823)] = 6654, - [SMALL_STATE(1824)] = 6727, - [SMALL_STATE(1825)] = 6800, - [SMALL_STATE(1826)] = 6875, - [SMALL_STATE(1827)] = 6948, - [SMALL_STATE(1828)] = 7021, - [SMALL_STATE(1829)] = 7094, - [SMALL_STATE(1830)] = 7167, - [SMALL_STATE(1831)] = 7240, - [SMALL_STATE(1832)] = 7313, - [SMALL_STATE(1833)] = 7386, - [SMALL_STATE(1834)] = 7459, - [SMALL_STATE(1835)] = 7532, - [SMALL_STATE(1836)] = 7605, - [SMALL_STATE(1837)] = 7678, - [SMALL_STATE(1838)] = 7751, - [SMALL_STATE(1839)] = 7824, - [SMALL_STATE(1840)] = 7897, - [SMALL_STATE(1841)] = 7970, - [SMALL_STATE(1842)] = 8043, - [SMALL_STATE(1843)] = 8116, - [SMALL_STATE(1844)] = 8189, - [SMALL_STATE(1845)] = 8262, - [SMALL_STATE(1846)] = 8335, - [SMALL_STATE(1847)] = 8408, - [SMALL_STATE(1848)] = 8481, - [SMALL_STATE(1849)] = 8554, - [SMALL_STATE(1850)] = 8627, - [SMALL_STATE(1851)] = 8700, - [SMALL_STATE(1852)] = 8775, - [SMALL_STATE(1853)] = 8847, - [SMALL_STATE(1854)] = 8919, - [SMALL_STATE(1855)] = 8991, - [SMALL_STATE(1856)] = 9063, - [SMALL_STATE(1857)] = 9207, - [SMALL_STATE(1858)] = 9279, - [SMALL_STATE(1859)] = 9355, - [SMALL_STATE(1860)] = 9431, - [SMALL_STATE(1861)] = 9507, - [SMALL_STATE(1862)] = 9583, - [SMALL_STATE(1863)] = 9659, - [SMALL_STATE(1864)] = 9735, - [SMALL_STATE(1865)] = 9811, - [SMALL_STATE(1866)] = 9887, - [SMALL_STATE(1867)] = 9963, - [SMALL_STATE(1868)] = 10039, - [SMALL_STATE(1869)] = 10115, - [SMALL_STATE(1870)] = 10191, - [SMALL_STATE(1871)] = 10267, - [SMALL_STATE(1872)] = 10341, - [SMALL_STATE(1873)] = 10415, - [SMALL_STATE(1874)] = 10487, - [SMALL_STATE(1875)] = 10559, - [SMALL_STATE(1876)] = 10633, - [SMALL_STATE(1877)] = 10705, - [SMALL_STATE(1878)] = 10777, - [SMALL_STATE(1879)] = 10849, - [SMALL_STATE(1880)] = 10921, - [SMALL_STATE(1881)] = 10993, - [SMALL_STATE(1882)] = 11065, - [SMALL_STATE(1883)] = 11137, - [SMALL_STATE(1884)] = 11281, - [SMALL_STATE(1885)] = 11353, - [SMALL_STATE(1886)] = 11425, - [SMALL_STATE(1887)] = 11497, - [SMALL_STATE(1888)] = 11641, - [SMALL_STATE(1889)] = 11713, - [SMALL_STATE(1890)] = 11785, - [SMALL_STATE(1891)] = 11857, - [SMALL_STATE(1892)] = 11929, - [SMALL_STATE(1893)] = 12001, - [SMALL_STATE(1894)] = 12073, - [SMALL_STATE(1895)] = 12145, - [SMALL_STATE(1896)] = 12217, - [SMALL_STATE(1897)] = 12289, - [SMALL_STATE(1898)] = 12361, - [SMALL_STATE(1899)] = 12433, - [SMALL_STATE(1900)] = 12505, - [SMALL_STATE(1901)] = 12577, - [SMALL_STATE(1902)] = 12649, - [SMALL_STATE(1903)] = 12721, - [SMALL_STATE(1904)] = 12793, - [SMALL_STATE(1905)] = 12865, - [SMALL_STATE(1906)] = 12937, - [SMALL_STATE(1907)] = 13009, - [SMALL_STATE(1908)] = 13081, - [SMALL_STATE(1909)] = 13153, - [SMALL_STATE(1910)] = 13225, - [SMALL_STATE(1911)] = 13297, - [SMALL_STATE(1912)] = 13369, - [SMALL_STATE(1913)] = 13441, - [SMALL_STATE(1914)] = 13513, - [SMALL_STATE(1915)] = 13585, - [SMALL_STATE(1916)] = 13657, - [SMALL_STATE(1917)] = 13729, - [SMALL_STATE(1918)] = 13801, - [SMALL_STATE(1919)] = 13873, - [SMALL_STATE(1920)] = 13945, - [SMALL_STATE(1921)] = 14017, - [SMALL_STATE(1922)] = 14089, - [SMALL_STATE(1923)] = 14161, - [SMALL_STATE(1924)] = 14233, - [SMALL_STATE(1925)] = 14305, - [SMALL_STATE(1926)] = 14377, - [SMALL_STATE(1927)] = 14449, - [SMALL_STATE(1928)] = 14521, - [SMALL_STATE(1929)] = 14593, - [SMALL_STATE(1930)] = 14665, - [SMALL_STATE(1931)] = 14737, - [SMALL_STATE(1932)] = 14809, - [SMALL_STATE(1933)] = 14881, - [SMALL_STATE(1934)] = 14953, - [SMALL_STATE(1935)] = 15025, - [SMALL_STATE(1936)] = 15097, - [SMALL_STATE(1937)] = 15169, - [SMALL_STATE(1938)] = 15241, - [SMALL_STATE(1939)] = 15313, - [SMALL_STATE(1940)] = 15385, - [SMALL_STATE(1941)] = 15457, - [SMALL_STATE(1942)] = 15529, - [SMALL_STATE(1943)] = 15601, - [SMALL_STATE(1944)] = 15673, - [SMALL_STATE(1945)] = 15745, - [SMALL_STATE(1946)] = 15817, - [SMALL_STATE(1947)] = 15889, - [SMALL_STATE(1948)] = 15961, - [SMALL_STATE(1949)] = 16033, - [SMALL_STATE(1950)] = 16105, - [SMALL_STATE(1951)] = 16177, - [SMALL_STATE(1952)] = 16253, - [SMALL_STATE(1953)] = 16329, - [SMALL_STATE(1954)] = 16401, - [SMALL_STATE(1955)] = 16477, - [SMALL_STATE(1956)] = 16553, - [SMALL_STATE(1957)] = 16625, - [SMALL_STATE(1958)] = 16697, - [SMALL_STATE(1959)] = 16769, - [SMALL_STATE(1960)] = 16841, - [SMALL_STATE(1961)] = 16913, - [SMALL_STATE(1962)] = 16985, - [SMALL_STATE(1963)] = 17057, - [SMALL_STATE(1964)] = 17129, - [SMALL_STATE(1965)] = 17201, - [SMALL_STATE(1966)] = 17273, - [SMALL_STATE(1967)] = 17345, - [SMALL_STATE(1968)] = 17417, - [SMALL_STATE(1969)] = 17489, - [SMALL_STATE(1970)] = 17561, - [SMALL_STATE(1971)] = 17633, - [SMALL_STATE(1972)] = 17705, - [SMALL_STATE(1973)] = 17849, - [SMALL_STATE(1974)] = 17993, - [SMALL_STATE(1975)] = 18137, - [SMALL_STATE(1976)] = 18209, - [SMALL_STATE(1977)] = 18286, - [SMALL_STATE(1978)] = 18427, - [SMALL_STATE(1979)] = 18498, - [SMALL_STATE(1980)] = 18573, - [SMALL_STATE(1981)] = 18650, - [SMALL_STATE(1982)] = 18727, - [SMALL_STATE(1983)] = 18804, - [SMALL_STATE(1984)] = 18875, - [SMALL_STATE(1985)] = 18946, - [SMALL_STATE(1986)] = 19023, - [SMALL_STATE(1987)] = 19100, - [SMALL_STATE(1988)] = 19177, - [SMALL_STATE(1989)] = 19248, - [SMALL_STATE(1990)] = 19327, - [SMALL_STATE(1991)] = 19398, - [SMALL_STATE(1992)] = 19469, - [SMALL_STATE(1993)] = 19540, - [SMALL_STATE(1994)] = 19611, - [SMALL_STATE(1995)] = 19682, - [SMALL_STATE(1996)] = 19759, - [SMALL_STATE(1997)] = 19838, - [SMALL_STATE(1998)] = 19909, - [SMALL_STATE(1999)] = 19980, - [SMALL_STATE(2000)] = 20051, - [SMALL_STATE(2001)] = 20122, - [SMALL_STATE(2002)] = 20193, - [SMALL_STATE(2003)] = 20270, - [SMALL_STATE(2004)] = 20349, - [SMALL_STATE(2005)] = 20420, - [SMALL_STATE(2006)] = 20497, - [SMALL_STATE(2007)] = 20568, - [SMALL_STATE(2008)] = 20639, - [SMALL_STATE(2009)] = 20710, - [SMALL_STATE(2010)] = 20781, - [SMALL_STATE(2011)] = 20858, - [SMALL_STATE(2012)] = 20935, - [SMALL_STATE(2013)] = 21006, - [SMALL_STATE(2014)] = 21085, - [SMALL_STATE(2015)] = 21164, - [SMALL_STATE(2016)] = 21241, - [SMALL_STATE(2017)] = 21312, - [SMALL_STATE(2018)] = 21391, - [SMALL_STATE(2019)] = 21470, - [SMALL_STATE(2020)] = 21549, - [SMALL_STATE(2021)] = 21628, - [SMALL_STATE(2022)] = 21699, - [SMALL_STATE(2023)] = 21770, - [SMALL_STATE(2024)] = 21849, - [SMALL_STATE(2025)] = 21920, - [SMALL_STATE(2026)] = 21997, - [SMALL_STATE(2027)] = 22074, - [SMALL_STATE(2028)] = 22151, - [SMALL_STATE(2029)] = 22228, - [SMALL_STATE(2030)] = 22305, - [SMALL_STATE(2031)] = 22382, - [SMALL_STATE(2032)] = 22459, - [SMALL_STATE(2033)] = 22536, - [SMALL_STATE(2034)] = 22613, - [SMALL_STATE(2035)] = 22692, - [SMALL_STATE(2036)] = 22769, - [SMALL_STATE(2037)] = 22846, - [SMALL_STATE(2038)] = 22923, - [SMALL_STATE(2039)] = 23002, - [SMALL_STATE(2040)] = 23073, - [SMALL_STATE(2041)] = 23150, - [SMALL_STATE(2042)] = 23227, - [SMALL_STATE(2043)] = 23304, - [SMALL_STATE(2044)] = 23381, - [SMALL_STATE(2045)] = 23458, - [SMALL_STATE(2046)] = 23535, - [SMALL_STATE(2047)] = 23676, - [SMALL_STATE(2048)] = 23753, - [SMALL_STATE(2049)] = 23830, - [SMALL_STATE(2050)] = 23907, - [SMALL_STATE(2051)] = 23984, - [SMALL_STATE(2052)] = 24061, - [SMALL_STATE(2053)] = 24140, - [SMALL_STATE(2054)] = 24219, - [SMALL_STATE(2055)] = 24298, - [SMALL_STATE(2056)] = 24377, - [SMALL_STATE(2057)] = 24456, - [SMALL_STATE(2058)] = 24535, - [SMALL_STATE(2059)] = 24612, - [SMALL_STATE(2060)] = 24691, - [SMALL_STATE(2061)] = 24768, - [SMALL_STATE(2062)] = 24909, - [SMALL_STATE(2063)] = 25050, - [SMALL_STATE(2064)] = 25131, - [SMALL_STATE(2065)] = 25210, - [SMALL_STATE(2066)] = 25289, - [SMALL_STATE(2067)] = 25368, - [SMALL_STATE(2068)] = 25447, - [SMALL_STATE(2069)] = 25526, - [SMALL_STATE(2070)] = 25603, - [SMALL_STATE(2071)] = 25680, - [SMALL_STATE(2072)] = 25757, - [SMALL_STATE(2073)] = 25834, - [SMALL_STATE(2074)] = 25911, - [SMALL_STATE(2075)] = 25992, - [SMALL_STATE(2076)] = 26069, - [SMALL_STATE(2077)] = 26146, - [SMALL_STATE(2078)] = 26223, - [SMALL_STATE(2079)] = 26300, - [SMALL_STATE(2080)] = 26377, - [SMALL_STATE(2081)] = 26454, - [SMALL_STATE(2082)] = 26531, - [SMALL_STATE(2083)] = 26608, - [SMALL_STATE(2084)] = 26679, - [SMALL_STATE(2085)] = 26756, - [SMALL_STATE(2086)] = 26831, - [SMALL_STATE(2087)] = 26910, - [SMALL_STATE(2088)] = 26989, - [SMALL_STATE(2089)] = 27066, - [SMALL_STATE(2090)] = 27136, - [SMALL_STATE(2091)] = 27274, - [SMALL_STATE(2092)] = 27344, - [SMALL_STATE(2093)] = 27416, - [SMALL_STATE(2094)] = 27486, - [SMALL_STATE(2095)] = 27558, - [SMALL_STATE(2096)] = 27628, - [SMALL_STATE(2097)] = 27698, - [SMALL_STATE(2098)] = 27768, - [SMALL_STATE(2099)] = 27838, - [SMALL_STATE(2100)] = 27908, - [SMALL_STATE(2101)] = 27978, - [SMALL_STATE(2102)] = 28048, - [SMALL_STATE(2103)] = 28118, - [SMALL_STATE(2104)] = 28188, - [SMALL_STATE(2105)] = 28258, - [SMALL_STATE(2106)] = 28328, - [SMALL_STATE(2107)] = 28398, - [SMALL_STATE(2108)] = 28468, - [SMALL_STATE(2109)] = 28538, - [SMALL_STATE(2110)] = 28608, - [SMALL_STATE(2111)] = 28678, - [SMALL_STATE(2112)] = 28758, - [SMALL_STATE(2113)] = 28828, - [SMALL_STATE(2114)] = 28902, - [SMALL_STATE(2115)] = 28972, - [SMALL_STATE(2116)] = 29042, - [SMALL_STATE(2117)] = 29112, - [SMALL_STATE(2118)] = 29182, - [SMALL_STATE(2119)] = 29252, - [SMALL_STATE(2120)] = 29322, - [SMALL_STATE(2121)] = 29392, - [SMALL_STATE(2122)] = 29530, - [SMALL_STATE(2123)] = 29608, - [SMALL_STATE(2124)] = 29678, - [SMALL_STATE(2125)] = 29748, - [SMALL_STATE(2126)] = 29822, - [SMALL_STATE(2127)] = 29960, - [SMALL_STATE(2128)] = 30030, - [SMALL_STATE(2129)] = 30100, - [SMALL_STATE(2130)] = 30170, - [SMALL_STATE(2131)] = 30308, - [SMALL_STATE(2132)] = 30378, - [SMALL_STATE(2133)] = 30448, - [SMALL_STATE(2134)] = 30518, - [SMALL_STATE(2135)] = 30588, - [SMALL_STATE(2136)] = 30726, - [SMALL_STATE(2137)] = 30796, - [SMALL_STATE(2138)] = 30866, - [SMALL_STATE(2139)] = 30936, - [SMALL_STATE(2140)] = 31006, - [SMALL_STATE(2141)] = 31144, - [SMALL_STATE(2142)] = 31282, - [SMALL_STATE(2143)] = 31420, - [SMALL_STATE(2144)] = 31490, - [SMALL_STATE(2145)] = 31564, - [SMALL_STATE(2146)] = 31634, - [SMALL_STATE(2147)] = 31772, - [SMALL_STATE(2148)] = 31910, - [SMALL_STATE(2149)] = 32048, - [SMALL_STATE(2150)] = 32186, - [SMALL_STATE(2151)] = 32324, - [SMALL_STATE(2152)] = 32462, - [SMALL_STATE(2153)] = 32600, - [SMALL_STATE(2154)] = 32674, - [SMALL_STATE(2155)] = 32748, - [SMALL_STATE(2156)] = 32818, - [SMALL_STATE(2157)] = 32892, - [SMALL_STATE(2158)] = 33030, - [SMALL_STATE(2159)] = 33103, - [SMALL_STATE(2160)] = 33174, - [SMALL_STATE(2161)] = 33245, - [SMALL_STATE(2162)] = 33316, - [SMALL_STATE(2163)] = 33387, - [SMALL_STATE(2164)] = 33458, - [SMALL_STATE(2165)] = 33529, - [SMALL_STATE(2166)] = 33600, - [SMALL_STATE(2167)] = 33671, - [SMALL_STATE(2168)] = 33742, - [SMALL_STATE(2169)] = 33811, - [SMALL_STATE(2170)] = 33882, - [SMALL_STATE(2171)] = 33953, - [SMALL_STATE(2172)] = 34024, - [SMALL_STATE(2173)] = 34095, - [SMALL_STATE(2174)] = 34166, - [SMALL_STATE(2175)] = 34237, - [SMALL_STATE(2176)] = 34308, - [SMALL_STATE(2177)] = 34379, - [SMALL_STATE(2178)] = 34450, - [SMALL_STATE(2179)] = 34521, - [SMALL_STATE(2180)] = 34590, - [SMALL_STATE(2181)] = 34661, - [SMALL_STATE(2182)] = 34732, - [SMALL_STATE(2183)] = 34803, - [SMALL_STATE(2184)] = 34874, - [SMALL_STATE(2185)] = 34945, - [SMALL_STATE(2186)] = 35016, - [SMALL_STATE(2187)] = 35087, - [SMALL_STATE(2188)] = 35158, - [SMALL_STATE(2189)] = 35229, - [SMALL_STATE(2190)] = 35300, - [SMALL_STATE(2191)] = 35371, - [SMALL_STATE(2192)] = 35442, - [SMALL_STATE(2193)] = 35513, - [SMALL_STATE(2194)] = 35584, - [SMALL_STATE(2195)] = 35655, - [SMALL_STATE(2196)] = 35754, - [SMALL_STATE(2197)] = 35825, - [SMALL_STATE(2198)] = 35894, - [SMALL_STATE(2199)] = 35965, - [SMALL_STATE(2200)] = 36036, - [SMALL_STATE(2201)] = 36109, - [SMALL_STATE(2202)] = 36182, - [SMALL_STATE(2203)] = 36253, - [SMALL_STATE(2204)] = 36324, - [SMALL_STATE(2205)] = 36395, - [SMALL_STATE(2206)] = 36468, - [SMALL_STATE(2207)] = 36541, - [SMALL_STATE(2208)] = 36612, - [SMALL_STATE(2209)] = 36711, - [SMALL_STATE(2210)] = 36782, - [SMALL_STATE(2211)] = 36869, - [SMALL_STATE(2212)] = 36940, - [SMALL_STATE(2213)] = 37011, - [SMALL_STATE(2214)] = 37082, - [SMALL_STATE(2215)] = 37153, - [SMALL_STATE(2216)] = 37224, - [SMALL_STATE(2217)] = 37295, - [SMALL_STATE(2218)] = 37394, - [SMALL_STATE(2219)] = 37465, - [SMALL_STATE(2220)] = 37536, - [SMALL_STATE(2221)] = 37607, - [SMALL_STATE(2222)] = 37684, - [SMALL_STATE(2223)] = 37755, - [SMALL_STATE(2224)] = 37826, - [SMALL_STATE(2225)] = 37897, - [SMALL_STATE(2226)] = 37968, - [SMALL_STATE(2227)] = 38039, - [SMALL_STATE(2228)] = 38110, - [SMALL_STATE(2229)] = 38181, - [SMALL_STATE(2230)] = 38252, - [SMALL_STATE(2231)] = 38323, - [SMALL_STATE(2232)] = 38394, - [SMALL_STATE(2233)] = 38465, - [SMALL_STATE(2234)] = 38536, - [SMALL_STATE(2235)] = 38607, - [SMALL_STATE(2236)] = 38678, - [SMALL_STATE(2237)] = 38749, - [SMALL_STATE(2238)] = 38820, - [SMALL_STATE(2239)] = 38893, - [SMALL_STATE(2240)] = 38964, - [SMALL_STATE(2241)] = 39037, - [SMALL_STATE(2242)] = 39110, - [SMALL_STATE(2243)] = 39183, - [SMALL_STATE(2244)] = 39252, - [SMALL_STATE(2245)] = 39325, - [SMALL_STATE(2246)] = 39398, - [SMALL_STATE(2247)] = 39467, - [SMALL_STATE(2248)] = 39538, - [SMALL_STATE(2249)] = 39609, - [SMALL_STATE(2250)] = 39680, - [SMALL_STATE(2251)] = 39751, - [SMALL_STATE(2252)] = 39822, - [SMALL_STATE(2253)] = 39895, - [SMALL_STATE(2254)] = 39966, - [SMALL_STATE(2255)] = 40037, - [SMALL_STATE(2256)] = 40108, - [SMALL_STATE(2257)] = 40179, - [SMALL_STATE(2258)] = 40250, - [SMALL_STATE(2259)] = 40321, - [SMALL_STATE(2260)] = 40392, - [SMALL_STATE(2261)] = 40463, - [SMALL_STATE(2262)] = 40536, - [SMALL_STATE(2263)] = 40607, - [SMALL_STATE(2264)] = 40678, - [SMALL_STATE(2265)] = 40749, - [SMALL_STATE(2266)] = 40820, - [SMALL_STATE(2267)] = 40889, - [SMALL_STATE(2268)] = 40960, - [SMALL_STATE(2269)] = 41031, - [SMALL_STATE(2270)] = 41102, - [SMALL_STATE(2271)] = 41173, - [SMALL_STATE(2272)] = 41244, - [SMALL_STATE(2273)] = 41315, - [SMALL_STATE(2274)] = 41386, - [SMALL_STATE(2275)] = 41457, - [SMALL_STATE(2276)] = 41528, - [SMALL_STATE(2277)] = 41599, - [SMALL_STATE(2278)] = 41670, - [SMALL_STATE(2279)] = 41741, - [SMALL_STATE(2280)] = 41814, - [SMALL_STATE(2281)] = 41887, - [SMALL_STATE(2282)] = 41958, - [SMALL_STATE(2283)] = 42029, - [SMALL_STATE(2284)] = 42102, - [SMALL_STATE(2285)] = 42173, - [SMALL_STATE(2286)] = 42272, - [SMALL_STATE(2287)] = 42343, - [SMALL_STATE(2288)] = 42414, - [SMALL_STATE(2289)] = 42487, - [SMALL_STATE(2290)] = 42558, - [SMALL_STATE(2291)] = 42631, - [SMALL_STATE(2292)] = 42702, - [SMALL_STATE(2293)] = 42773, - [SMALL_STATE(2294)] = 42846, - [SMALL_STATE(2295)] = 42917, - [SMALL_STATE(2296)] = 42988, - [SMALL_STATE(2297)] = 43059, - [SMALL_STATE(2298)] = 43136, - [SMALL_STATE(2299)] = 43207, - [SMALL_STATE(2300)] = 43280, - [SMALL_STATE(2301)] = 43351, - [SMALL_STATE(2302)] = 43422, - [SMALL_STATE(2303)] = 43499, - [SMALL_STATE(2304)] = 43572, - [SMALL_STATE(2305)] = 43643, - [SMALL_STATE(2306)] = 43714, - [SMALL_STATE(2307)] = 43788, - [SMALL_STATE(2308)] = 43884, - [SMALL_STATE(2309)] = 43954, - [SMALL_STATE(2310)] = 44056, - [SMALL_STATE(2311)] = 44132, - [SMALL_STATE(2312)] = 44216, - [SMALL_STATE(2313)] = 44316, - [SMALL_STATE(2314)] = 44412, - [SMALL_STATE(2315)] = 44504, - [SMALL_STATE(2316)] = 44586, - [SMALL_STATE(2317)] = 44674, - [SMALL_STATE(2318)] = 44750, - [SMALL_STATE(2319)] = 44836, - [SMALL_STATE(2320)] = 44926, - [SMALL_STATE(2321)] = 45008, - [SMALL_STATE(2322)] = 45084, - [SMALL_STATE(2323)] = 45176, - [SMALL_STATE(2324)] = 45262, - [SMALL_STATE(2325)] = 45334, - [SMALL_STATE(2326)] = 45406, - [SMALL_STATE(2327)] = 45502, - [SMALL_STATE(2328)] = 45604, - [SMALL_STATE(2329)] = 45702, - [SMALL_STATE(2330)] = 45802, - [SMALL_STATE(2331)] = 45882, - [SMALL_STATE(2332)] = 45966, - [SMALL_STATE(2333)] = 46036, - [SMALL_STATE(2334)] = 46130, - [SMALL_STATE(2335)] = 46226, - [SMALL_STATE(2336)] = 46324, - [SMALL_STATE(2337)] = 46410, - [SMALL_STATE(2338)] = 46488, - [SMALL_STATE(2339)] = 46576, - [SMALL_STATE(2340)] = 46666, - [SMALL_STATE(2341)] = 46758, - [SMALL_STATE(2342)] = 46846, - [SMALL_STATE(2343)] = 46934, - [SMALL_STATE(2344)] = 47008, - [SMALL_STATE(2345)] = 47088, - [SMALL_STATE(2346)] = 47182, - [SMALL_STATE(2347)] = 47272, - [SMALL_STATE(2348)] = 47362, - [SMALL_STATE(2349)] = 47454, - [SMALL_STATE(2350)] = 47548, - [SMALL_STATE(2351)] = 47648, - [SMALL_STATE(2352)] = 47736, - [SMALL_STATE(2353)] = 47808, - [SMALL_STATE(2354)] = 47904, - [SMALL_STATE(2355)] = 48002, - [SMALL_STATE(2356)] = 48092, - [SMALL_STATE(2357)] = 48164, - [SMALL_STATE(2358)] = 48236, - [SMALL_STATE(2359)] = 48310, - [SMALL_STATE(2360)] = 48394, - [SMALL_STATE(2361)] = 48490, - [SMALL_STATE(2362)] = 48572, - [SMALL_STATE(2363)] = 48640, - [SMALL_STATE(2364)] = 48724, - [SMALL_STATE(2365)] = 48800, - [SMALL_STATE(2366)] = 48878, - [SMALL_STATE(2367)] = 48964, - [SMALL_STATE(2368)] = 49060, - [SMALL_STATE(2369)] = 49148, - [SMALL_STATE(2370)] = 49224, - [SMALL_STATE(2371)] = 49296, - [SMALL_STATE(2372)] = 49370, - [SMALL_STATE(2373)] = 49444, - [SMALL_STATE(2374)] = 49516, - [SMALL_STATE(2375)] = 49614, - [SMALL_STATE(2376)] = 49710, - [SMALL_STATE(2377)] = 49808, - [SMALL_STATE(2378)] = 49906, - [SMALL_STATE(2379)] = 50004, - [SMALL_STATE(2380)] = 50084, - [SMALL_STATE(2381)] = 50178, - [SMALL_STATE(2382)] = 50278, - [SMALL_STATE(2383)] = 50356, - [SMALL_STATE(2384)] = 50458, - [SMALL_STATE(2385)] = 50540, - [SMALL_STATE(2386)] = 50628, - [SMALL_STATE(2387)] = 50728, - [SMALL_STATE(2388)] = 50818, - [SMALL_STATE(2389)] = 50902, - [SMALL_STATE(2390)] = 51004, - [SMALL_STATE(2391)] = 51104, - [SMALL_STATE(2392)] = 51194, - [SMALL_STATE(2393)] = 51274, - [SMALL_STATE(2394)] = 51370, - [SMALL_STATE(2395)] = 51452, - [SMALL_STATE(2396)] = 51542, - [SMALL_STATE(2397)] = 51612, - [SMALL_STATE(2398)] = 51702, - [SMALL_STATE(2399)] = 51794, - [SMALL_STATE(2400)] = 51878, - [SMALL_STATE(2401)] = 51970, - [SMALL_STATE(2402)] = 52052, - [SMALL_STATE(2403)] = 52144, - [SMALL_STATE(2404)] = 52238, - [SMALL_STATE(2405)] = 52320, - [SMALL_STATE(2406)] = 52414, - [SMALL_STATE(2407)] = 52506, - [SMALL_STATE(2408)] = 52602, - [SMALL_STATE(2409)] = 52690, - [SMALL_STATE(2410)] = 52784, - [SMALL_STATE(2411)] = 52860, - [SMALL_STATE(2412)] = 52958, - [SMALL_STATE(2413)] = 53054, - [SMALL_STATE(2414)] = 53128, - [SMALL_STATE(2415)] = 53198, - [SMALL_STATE(2416)] = 53292, - [SMALL_STATE(2417)] = 53388, - [SMALL_STATE(2418)] = 53480, - [SMALL_STATE(2419)] = 53564, - [SMALL_STATE(2420)] = 53642, - [SMALL_STATE(2421)] = 53736, - [SMALL_STATE(2422)] = 53808, - [SMALL_STATE(2423)] = 53884, - [SMALL_STATE(2424)] = 53984, - [SMALL_STATE(2425)] = 54068, - [SMALL_STATE(2426)] = 54164, - [SMALL_STATE(2427)] = 54260, - [SMALL_STATE(2428)] = 54332, - [SMALL_STATE(2429)] = 54420, - [SMALL_STATE(2430)] = 54516, - [SMALL_STATE(2431)] = 54594, - [SMALL_STATE(2432)] = 54662, - [SMALL_STATE(2433)] = 54750, - [SMALL_STATE(2434)] = 54830, - [SMALL_STATE(2435)] = 54900, - [SMALL_STATE(2436)] = 54996, - [SMALL_STATE(2437)] = 55070, - [SMALL_STATE(2438)] = 55166, - [SMALL_STATE(2439)] = 55262, - [SMALL_STATE(2440)] = 55330, - [SMALL_STATE(2441)] = 55426, - [SMALL_STATE(2442)] = 55512, - [SMALL_STATE(2443)] = 55594, - [SMALL_STATE(2444)] = 55692, - [SMALL_STATE(2445)] = 55792, - [SMALL_STATE(2446)] = 55873, - [SMALL_STATE(2447)] = 55958, - [SMALL_STATE(2448)] = 56025, - [SMALL_STATE(2449)] = 56108, - [SMALL_STATE(2450)] = 56193, - [SMALL_STATE(2451)] = 56260, - [SMALL_STATE(2452)] = 56331, - [SMALL_STATE(2453)] = 56398, - [SMALL_STATE(2454)] = 56465, - [SMALL_STATE(2455)] = 56534, - [SMALL_STATE(2456)] = 56615, - [SMALL_STATE(2457)] = 56682, - [SMALL_STATE(2458)] = 56749, - [SMALL_STATE(2459)] = 56828, - [SMALL_STATE(2460)] = 56895, - [SMALL_STATE(2461)] = 56962, - [SMALL_STATE(2462)] = 57047, - [SMALL_STATE(2463)] = 57114, - [SMALL_STATE(2464)] = 57183, - [SMALL_STATE(2465)] = 57250, - [SMALL_STATE(2466)] = 57317, - [SMALL_STATE(2467)] = 57384, - [SMALL_STATE(2468)] = 57451, - [SMALL_STATE(2469)] = 57518, - [SMALL_STATE(2470)] = 57589, - [SMALL_STATE(2471)] = 57656, - [SMALL_STATE(2472)] = 57723, - [SMALL_STATE(2473)] = 57790, - [SMALL_STATE(2474)] = 57859, - [SMALL_STATE(2475)] = 57926, - [SMALL_STATE(2476)] = 57993, - [SMALL_STATE(2477)] = 58060, - [SMALL_STATE(2478)] = 58153, - [SMALL_STATE(2479)] = 58220, - [SMALL_STATE(2480)] = 58287, - [SMALL_STATE(2481)] = 58354, - [SMALL_STATE(2482)] = 58421, - [SMALL_STATE(2483)] = 58516, - [SMALL_STATE(2484)] = 58583, - [SMALL_STATE(2485)] = 58650, - [SMALL_STATE(2486)] = 58717, - [SMALL_STATE(2487)] = 58784, - [SMALL_STATE(2488)] = 58851, - [SMALL_STATE(2489)] = 58918, - [SMALL_STATE(2490)] = 58985, - [SMALL_STATE(2491)] = 59052, - [SMALL_STATE(2492)] = 59119, - [SMALL_STATE(2493)] = 59216, - [SMALL_STATE(2494)] = 59283, - [SMALL_STATE(2495)] = 59350, - [SMALL_STATE(2496)] = 59417, - [SMALL_STATE(2497)] = 59502, - [SMALL_STATE(2498)] = 59583, - [SMALL_STATE(2499)] = 59650, - [SMALL_STATE(2500)] = 59717, - [SMALL_STATE(2501)] = 59786, - [SMALL_STATE(2502)] = 59853, - [SMALL_STATE(2503)] = 59920, - [SMALL_STATE(2504)] = 59987, - [SMALL_STATE(2505)] = 60054, - [SMALL_STATE(2506)] = 60121, - [SMALL_STATE(2507)] = 60188, - [SMALL_STATE(2508)] = 60255, - [SMALL_STATE(2509)] = 60328, - [SMALL_STATE(2510)] = 60397, - [SMALL_STATE(2511)] = 60464, - [SMALL_STATE(2512)] = 60531, - [SMALL_STATE(2513)] = 60598, - [SMALL_STATE(2514)] = 60665, - [SMALL_STATE(2515)] = 60746, - [SMALL_STATE(2516)] = 60823, - [SMALL_STATE(2517)] = 60890, - [SMALL_STATE(2518)] = 60957, - [SMALL_STATE(2519)] = 61024, - [SMALL_STATE(2520)] = 61091, - [SMALL_STATE(2521)] = 61160, - [SMALL_STATE(2522)] = 61227, - [SMALL_STATE(2523)] = 61314, - [SMALL_STATE(2524)] = 61383, - [SMALL_STATE(2525)] = 61450, - [SMALL_STATE(2526)] = 61517, - [SMALL_STATE(2527)] = 61584, - [SMALL_STATE(2528)] = 61657, - [SMALL_STATE(2529)] = 61724, - [SMALL_STATE(2530)] = 61791, - [SMALL_STATE(2531)] = 61858, - [SMALL_STATE(2532)] = 61947, - [SMALL_STATE(2533)] = 62014, - [SMALL_STATE(2534)] = 62081, - [SMALL_STATE(2535)] = 62172, - [SMALL_STATE(2536)] = 62253, - [SMALL_STATE(2537)] = 62323, - [SMALL_STATE(2538)] = 62413, - [SMALL_STATE(2539)] = 62483, - [SMALL_STATE(2540)] = 62549, - [SMALL_STATE(2541)] = 62639, - [SMALL_STATE(2542)] = 62705, - [SMALL_STATE(2543)] = 62779, - [SMALL_STATE(2544)] = 62849, - [SMALL_STATE(2545)] = 62915, - [SMALL_STATE(2546)] = 62981, - [SMALL_STATE(2547)] = 63071, - [SMALL_STATE(2548)] = 63139, - [SMALL_STATE(2549)] = 63229, - [SMALL_STATE(2550)] = 63319, - [SMALL_STATE(2551)] = 63407, - [SMALL_STATE(2552)] = 63473, - [SMALL_STATE(2553)] = 63549, - [SMALL_STATE(2554)] = 63639, - [SMALL_STATE(2555)] = 63729, - [SMALL_STATE(2556)] = 63795, - [SMALL_STATE(2557)] = 63885, - [SMALL_STATE(2558)] = 63951, - [SMALL_STATE(2559)] = 64017, - [SMALL_STATE(2560)] = 64087, - [SMALL_STATE(2561)] = 64177, - [SMALL_STATE(2562)] = 64267, - [SMALL_STATE(2563)] = 64333, - [SMALL_STATE(2564)] = 64415, - [SMALL_STATE(2565)] = 64497, - [SMALL_STATE(2566)] = 64563, - [SMALL_STATE(2567)] = 64645, - [SMALL_STATE(2568)] = 64719, - [SMALL_STATE(2569)] = 64787, - [SMALL_STATE(2570)] = 64861, - [SMALL_STATE(2571)] = 64943, - [SMALL_STATE(2572)] = 65033, - [SMALL_STATE(2573)] = 65099, - [SMALL_STATE(2574)] = 65165, - [SMALL_STATE(2575)] = 65231, - [SMALL_STATE(2576)] = 65297, - [SMALL_STATE(2577)] = 65387, - [SMALL_STATE(2578)] = 65453, - [SMALL_STATE(2579)] = 65540, - [SMALL_STATE(2580)] = 65613, - [SMALL_STATE(2581)] = 65700, - [SMALL_STATE(2582)] = 65787, - [SMALL_STATE(2583)] = 65854, - [SMALL_STATE(2584)] = 65921, - [SMALL_STATE(2585)] = 65988, - [SMALL_STATE(2586)] = 66055, - [SMALL_STATE(2587)] = 66126, - [SMALL_STATE(2588)] = 66213, - [SMALL_STATE(2589)] = 66282, - [SMALL_STATE(2590)] = 66369, - [SMALL_STATE(2591)] = 66456, - [SMALL_STATE(2592)] = 66543, - [SMALL_STATE(2593)] = 66630, - [SMALL_STATE(2594)] = 66717, - [SMALL_STATE(2595)] = 66804, - [SMALL_STATE(2596)] = 66891, - [SMALL_STATE(2597)] = 66978, - [SMALL_STATE(2598)] = 67065, - [SMALL_STATE(2599)] = 67152, - [SMALL_STATE(2600)] = 67239, - [SMALL_STATE(2601)] = 67326, - [SMALL_STATE(2602)] = 67391, - [SMALL_STATE(2603)] = 67456, - [SMALL_STATE(2604)] = 67521, - [SMALL_STATE(2605)] = 67608, - [SMALL_STATE(2606)] = 67673, - [SMALL_STATE(2607)] = 67760, - [SMALL_STATE(2608)] = 67847, - [SMALL_STATE(2609)] = 67912, - [SMALL_STATE(2610)] = 67999, - [SMALL_STATE(2611)] = 68086, - [SMALL_STATE(2612)] = 68173, - [SMALL_STATE(2613)] = 68238, - [SMALL_STATE(2614)] = 68303, - [SMALL_STATE(2615)] = 68368, - [SMALL_STATE(2616)] = 68433, - [SMALL_STATE(2617)] = 68498, - [SMALL_STATE(2618)] = 68563, - [SMALL_STATE(2619)] = 68628, - [SMALL_STATE(2620)] = 68693, - [SMALL_STATE(2621)] = 68758, - [SMALL_STATE(2622)] = 68845, - [SMALL_STATE(2623)] = 68910, - [SMALL_STATE(2624)] = 68975, - [SMALL_STATE(2625)] = 69040, - [SMALL_STATE(2626)] = 69127, - [SMALL_STATE(2627)] = 69214, - [SMALL_STATE(2628)] = 69279, - [SMALL_STATE(2629)] = 69344, - [SMALL_STATE(2630)] = 69409, - [SMALL_STATE(2631)] = 69482, - [SMALL_STATE(2632)] = 69569, - [SMALL_STATE(2633)] = 69656, - [SMALL_STATE(2634)] = 69743, - [SMALL_STATE(2635)] = 69830, - [SMALL_STATE(2636)] = 69903, - [SMALL_STATE(2637)] = 69968, - [SMALL_STATE(2638)] = 70055, - [SMALL_STATE(2639)] = 70142, - [SMALL_STATE(2640)] = 70229, - [SMALL_STATE(2641)] = 70316, - [SMALL_STATE(2642)] = 70403, - [SMALL_STATE(2643)] = 70468, - [SMALL_STATE(2644)] = 70533, - [SMALL_STATE(2645)] = 70598, - [SMALL_STATE(2646)] = 70685, - [SMALL_STATE(2647)] = 70772, - [SMALL_STATE(2648)] = 70859, - [SMALL_STATE(2649)] = 70924, - [SMALL_STATE(2650)] = 70996, - [SMALL_STATE(2651)] = 71064, - [SMALL_STATE(2652)] = 71130, - [SMALL_STATE(2653)] = 71196, - [SMALL_STATE(2654)] = 71266, - [SMALL_STATE(2655)] = 71384, - [SMALL_STATE(2656)] = 71506, - [SMALL_STATE(2657)] = 71572, - [SMALL_STATE(2658)] = 71636, - [SMALL_STATE(2659)] = 71706, - [SMALL_STATE(2660)] = 71782, - [SMALL_STATE(2661)] = 71846, - [SMALL_STATE(2662)] = 71910, - [SMALL_STATE(2663)] = 71974, - [SMALL_STATE(2664)] = 72038, - [SMALL_STATE(2665)] = 72108, - [SMALL_STATE(2666)] = 72172, - [SMALL_STATE(2667)] = 72236, - [SMALL_STATE(2668)] = 72300, - [SMALL_STATE(2669)] = 72364, - [SMALL_STATE(2670)] = 72428, - [SMALL_STATE(2671)] = 72492, - [SMALL_STATE(2672)] = 72614, - [SMALL_STATE(2673)] = 72678, - [SMALL_STATE(2674)] = 72742, - [SMALL_STATE(2675)] = 72806, - [SMALL_STATE(2676)] = 72878, - [SMALL_STATE(2677)] = 72942, - [SMALL_STATE(2678)] = 73006, - [SMALL_STATE(2679)] = 73078, - [SMALL_STATE(2680)] = 73146, - [SMALL_STATE(2681)] = 73218, - [SMALL_STATE(2682)] = 73282, - [SMALL_STATE(2683)] = 73346, - [SMALL_STATE(2684)] = 73410, - [SMALL_STATE(2685)] = 73474, - [SMALL_STATE(2686)] = 73546, - [SMALL_STATE(2687)] = 73610, - [SMALL_STATE(2688)] = 73674, - [SMALL_STATE(2689)] = 73742, - [SMALL_STATE(2690)] = 73806, - [SMALL_STATE(2691)] = 73870, - [SMALL_STATE(2692)] = 73934, - [SMALL_STATE(2693)] = 73998, - [SMALL_STATE(2694)] = 74062, - [SMALL_STATE(2695)] = 74132, - [SMALL_STATE(2696)] = 74250, - [SMALL_STATE(2697)] = 74322, - [SMALL_STATE(2698)] = 74394, - [SMALL_STATE(2699)] = 74466, - [SMALL_STATE(2700)] = 74538, - [SMALL_STATE(2701)] = 74610, - [SMALL_STATE(2702)] = 74682, - [SMALL_STATE(2703)] = 74746, - [SMALL_STATE(2704)] = 74814, - [SMALL_STATE(2705)] = 74878, - [SMALL_STATE(2706)] = 74950, - [SMALL_STATE(2707)] = 75022, - [SMALL_STATE(2708)] = 75094, - [SMALL_STATE(2709)] = 75166, - [SMALL_STATE(2710)] = 75238, - [SMALL_STATE(2711)] = 75302, - [SMALL_STATE(2712)] = 75372, - [SMALL_STATE(2713)] = 75444, - [SMALL_STATE(2714)] = 75516, - [SMALL_STATE(2715)] = 75588, - [SMALL_STATE(2716)] = 75660, - [SMALL_STATE(2717)] = 75732, - [SMALL_STATE(2718)] = 75804, - [SMALL_STATE(2719)] = 75868, - [SMALL_STATE(2720)] = 75940, - [SMALL_STATE(2721)] = 76008, - [SMALL_STATE(2722)] = 76080, - [SMALL_STATE(2723)] = 76144, - [SMALL_STATE(2724)] = 76208, - [SMALL_STATE(2725)] = 76272, - [SMALL_STATE(2726)] = 76340, - [SMALL_STATE(2727)] = 76456, - [SMALL_STATE(2728)] = 76530, - [SMALL_STATE(2729)] = 76602, - [SMALL_STATE(2730)] = 76718, - [SMALL_STATE(2731)] = 76789, - [SMALL_STATE(2732)] = 76860, - [SMALL_STATE(2733)] = 76931, - [SMALL_STATE(2734)] = 77002, - [SMALL_STATE(2735)] = 77073, - [SMALL_STATE(2736)] = 77144, - [SMALL_STATE(2737)] = 77213, - [SMALL_STATE(2738)] = 77284, - [SMALL_STATE(2739)] = 77355, - [SMALL_STATE(2740)] = 77430, - [SMALL_STATE(2741)] = 77495, - [SMALL_STATE(2742)] = 77562, - [SMALL_STATE(2743)] = 77629, - [SMALL_STATE(2744)] = 77694, - [SMALL_STATE(2745)] = 77759, - [SMALL_STATE(2746)] = 77822, - [SMALL_STATE(2747)] = 77887, - [SMALL_STATE(2748)] = 77952, - [SMALL_STATE(2749)] = 78015, - [SMALL_STATE(2750)] = 78078, - [SMALL_STATE(2751)] = 78143, - [SMALL_STATE(2752)] = 78210, - [SMALL_STATE(2753)] = 78323, - [SMALL_STATE(2754)] = 78436, - [SMALL_STATE(2755)] = 78507, - [SMALL_STATE(2756)] = 78570, - [SMALL_STATE(2757)] = 78641, - [SMALL_STATE(2758)] = 78754, - [SMALL_STATE(2759)] = 78869, - [SMALL_STATE(2760)] = 78932, - [SMALL_STATE(2761)] = 79045, - [SMALL_STATE(2762)] = 79108, - [SMALL_STATE(2763)] = 79175, - [SMALL_STATE(2764)] = 79240, - [SMALL_STATE(2765)] = 79313, - [SMALL_STATE(2766)] = 79428, - [SMALL_STATE(2767)] = 79491, - [SMALL_STATE(2768)] = 79554, - [SMALL_STATE(2769)] = 79625, - [SMALL_STATE(2770)] = 79692, - [SMALL_STATE(2771)] = 79763, - [SMALL_STATE(2772)] = 79834, - [SMALL_STATE(2773)] = 79905, - [SMALL_STATE(2774)] = 79976, - [SMALL_STATE(2775)] = 80047, - [SMALL_STATE(2776)] = 80118, - [SMALL_STATE(2777)] = 80189, - [SMALL_STATE(2778)] = 80260, - [SMALL_STATE(2779)] = 80327, - [SMALL_STATE(2780)] = 80395, - [SMALL_STATE(2781)] = 80457, - [SMALL_STATE(2782)] = 80519, - [SMALL_STATE(2783)] = 80589, - [SMALL_STATE(2784)] = 80657, - [SMALL_STATE(2785)] = 80719, - [SMALL_STATE(2786)] = 80783, - [SMALL_STATE(2787)] = 80853, - [SMALL_STATE(2788)] = 80915, - [SMALL_STATE(2789)] = 80985, - [SMALL_STATE(2790)] = 81055, - [SMALL_STATE(2791)] = 81117, - [SMALL_STATE(2792)] = 81185, - [SMALL_STATE(2793)] = 81255, - [SMALL_STATE(2794)] = 81317, - [SMALL_STATE(2795)] = 81379, - [SMALL_STATE(2796)] = 81449, - [SMALL_STATE(2797)] = 81511, - [SMALL_STATE(2798)] = 81573, - [SMALL_STATE(2799)] = 81637, - [SMALL_STATE(2800)] = 81699, - [SMALL_STATE(2801)] = 81767, - [SMALL_STATE(2802)] = 81833, - [SMALL_STATE(2803)] = 81895, - [SMALL_STATE(2804)] = 81959, - [SMALL_STATE(2805)] = 82027, - [SMALL_STATE(2806)] = 82093, - [SMALL_STATE(2807)] = 82163, - [SMALL_STATE(2808)] = 82227, - [SMALL_STATE(2809)] = 82297, - [SMALL_STATE(2810)] = 82365, - [SMALL_STATE(2811)] = 82427, - [SMALL_STATE(2812)] = 82489, - [SMALL_STATE(2813)] = 82553, - [SMALL_STATE(2814)] = 82623, - [SMALL_STATE(2815)] = 82685, - [SMALL_STATE(2816)] = 82747, - [SMALL_STATE(2817)] = 82809, - [SMALL_STATE(2818)] = 82871, - [SMALL_STATE(2819)] = 82941, - [SMALL_STATE(2820)] = 83011, - [SMALL_STATE(2821)] = 83081, - [SMALL_STATE(2822)] = 83145, - [SMALL_STATE(2823)] = 83215, - [SMALL_STATE(2824)] = 83285, - [SMALL_STATE(2825)] = 83347, - [SMALL_STATE(2826)] = 83413, - [SMALL_STATE(2827)] = 83477, - [SMALL_STATE(2828)] = 83543, - [SMALL_STATE(2829)] = 83609, - [SMALL_STATE(2830)] = 83673, - [SMALL_STATE(2831)] = 83741, - [SMALL_STATE(2832)] = 83803, - [SMALL_STATE(2833)] = 83871, - [SMALL_STATE(2834)] = 83939, - [SMALL_STATE(2835)] = 84009, - [SMALL_STATE(2836)] = 84071, - [SMALL_STATE(2837)] = 84137, - [SMALL_STATE(2838)] = 84207, - [SMALL_STATE(2839)] = 84277, - [SMALL_STATE(2840)] = 84343, - [SMALL_STATE(2841)] = 84413, - [SMALL_STATE(2842)] = 84477, - [SMALL_STATE(2843)] = 84547, - [SMALL_STATE(2844)] = 84617, - [SMALL_STATE(2845)] = 84685, - [SMALL_STATE(2846)] = 84753, - [SMALL_STATE(2847)] = 84823, - [SMALL_STATE(2848)] = 84893, - [SMALL_STATE(2849)] = 84955, - [SMALL_STATE(2850)] = 85025, - [SMALL_STATE(2851)] = 85090, - [SMALL_STATE(2852)] = 85151, - [SMALL_STATE(2853)] = 85212, - [SMALL_STATE(2854)] = 85281, - [SMALL_STATE(2855)] = 85342, - [SMALL_STATE(2856)] = 85403, - [SMALL_STATE(2857)] = 85474, - [SMALL_STATE(2858)] = 85535, - [SMALL_STATE(2859)] = 85600, - [SMALL_STATE(2860)] = 85661, - [SMALL_STATE(2861)] = 85722, - [SMALL_STATE(2862)] = 85783, - [SMALL_STATE(2863)] = 85848, - [SMALL_STATE(2864)] = 85909, - [SMALL_STATE(2865)] = 85972, - [SMALL_STATE(2866)] = 86035, - [SMALL_STATE(2867)] = 86096, - [SMALL_STATE(2868)] = 86157, - [SMALL_STATE(2869)] = 86222, - [SMALL_STATE(2870)] = 86285, - [SMALL_STATE(2871)] = 86346, - [SMALL_STATE(2872)] = 86407, - [SMALL_STATE(2873)] = 86470, - [SMALL_STATE(2874)] = 86535, - [SMALL_STATE(2875)] = 86600, - [SMALL_STATE(2876)] = 86661, - [SMALL_STATE(2877)] = 86724, - [SMALL_STATE(2878)] = 86785, - [SMALL_STATE(2879)] = 86850, - [SMALL_STATE(2880)] = 86913, - [SMALL_STATE(2881)] = 86976, - [SMALL_STATE(2882)] = 87037, - [SMALL_STATE(2883)] = 87098, - [SMALL_STATE(2884)] = 87163, - [SMALL_STATE(2885)] = 87224, - [SMALL_STATE(2886)] = 87285, - [SMALL_STATE(2887)] = 87348, - [SMALL_STATE(2888)] = 87411, - [SMALL_STATE(2889)] = 87472, - [SMALL_STATE(2890)] = 87537, - [SMALL_STATE(2891)] = 87598, - [SMALL_STATE(2892)] = 87663, - [SMALL_STATE(2893)] = 87724, - [SMALL_STATE(2894)] = 87785, - [SMALL_STATE(2895)] = 87850, - [SMALL_STATE(2896)] = 87917, - [SMALL_STATE(2897)] = 87982, - [SMALL_STATE(2898)] = 88043, - [SMALL_STATE(2899)] = 88108, - [SMALL_STATE(2900)] = 88171, - [SMALL_STATE(2901)] = 88236, - [SMALL_STATE(2902)] = 88301, - [SMALL_STATE(2903)] = 88366, - [SMALL_STATE(2904)] = 88427, - [SMALL_STATE(2905)] = 88492, - [SMALL_STATE(2906)] = 88557, - [SMALL_STATE(2907)] = 88622, - [SMALL_STATE(2908)] = 88687, - [SMALL_STATE(2909)] = 88752, - [SMALL_STATE(2910)] = 88817, - [SMALL_STATE(2911)] = 88877, - [SMALL_STATE(2912)] = 88943, - [SMALL_STATE(2913)] = 89003, - [SMALL_STATE(2914)] = 89065, - [SMALL_STATE(2915)] = 89125, - [SMALL_STATE(2916)] = 89185, - [SMALL_STATE(2917)] = 89245, - [SMALL_STATE(2918)] = 89305, - [SMALL_STATE(2919)] = 89365, - [SMALL_STATE(2920)] = 89425, - [SMALL_STATE(2921)] = 89491, - [SMALL_STATE(2922)] = 89557, - [SMALL_STATE(2923)] = 89617, - [SMALL_STATE(2924)] = 89683, - [SMALL_STATE(2925)] = 89749, - [SMALL_STATE(2926)] = 89813, - [SMALL_STATE(2927)] = 89879, - [SMALL_STATE(2928)] = 89939, - [SMALL_STATE(2929)] = 89999, - [SMALL_STATE(2930)] = 90059, - [SMALL_STATE(2931)] = 90121, - [SMALL_STATE(2932)] = 90187, - [SMALL_STATE(2933)] = 90247, - [SMALL_STATE(2934)] = 90313, - [SMALL_STATE(2935)] = 90373, - [SMALL_STATE(2936)] = 90433, - [SMALL_STATE(2937)] = 90495, - [SMALL_STATE(2938)] = 90555, - [SMALL_STATE(2939)] = 90615, - [SMALL_STATE(2940)] = 90675, - [SMALL_STATE(2941)] = 90735, - [SMALL_STATE(2942)] = 90795, - [SMALL_STATE(2943)] = 90855, - [SMALL_STATE(2944)] = 90915, - [SMALL_STATE(2945)] = 90975, - [SMALL_STATE(2946)] = 91035, - [SMALL_STATE(2947)] = 91095, - [SMALL_STATE(2948)] = 91155, - [SMALL_STATE(2949)] = 91215, - [SMALL_STATE(2950)] = 91275, - [SMALL_STATE(2951)] = 91335, - [SMALL_STATE(2952)] = 91395, - [SMALL_STATE(2953)] = 91455, - [SMALL_STATE(2954)] = 91515, - [SMALL_STATE(2955)] = 91575, - [SMALL_STATE(2956)] = 91641, - [SMALL_STATE(2957)] = 91701, - [SMALL_STATE(2958)] = 91763, - [SMALL_STATE(2959)] = 91823, - [SMALL_STATE(2960)] = 91883, - [SMALL_STATE(2961)] = 91943, - [SMALL_STATE(2962)] = 92003, - [SMALL_STATE(2963)] = 92063, - [SMALL_STATE(2964)] = 92125, - [SMALL_STATE(2965)] = 92185, - [SMALL_STATE(2966)] = 92249, - [SMALL_STATE(2967)] = 92311, - [SMALL_STATE(2968)] = 92371, - [SMALL_STATE(2969)] = 92431, - [SMALL_STATE(2970)] = 92491, - [SMALL_STATE(2971)] = 92551, - [SMALL_STATE(2972)] = 92617, - [SMALL_STATE(2973)] = 92677, - [SMALL_STATE(2974)] = 92737, - [SMALL_STATE(2975)] = 92803, - [SMALL_STATE(2976)] = 92863, - [SMALL_STATE(2977)] = 92923, - [SMALL_STATE(2978)] = 92985, - [SMALL_STATE(2979)] = 93045, - [SMALL_STATE(2980)] = 93107, - [SMALL_STATE(2981)] = 93167, - [SMALL_STATE(2982)] = 93229, - [SMALL_STATE(2983)] = 93293, - [SMALL_STATE(2984)] = 93357, - [SMALL_STATE(2985)] = 93423, - [SMALL_STATE(2986)] = 93483, - [SMALL_STATE(2987)] = 93543, - [SMALL_STATE(2988)] = 93605, - [SMALL_STATE(2989)] = 93665, - [SMALL_STATE(2990)] = 93725, - [SMALL_STATE(2991)] = 93785, - [SMALL_STATE(2992)] = 93845, - [SMALL_STATE(2993)] = 93905, - [SMALL_STATE(2994)] = 93965, - [SMALL_STATE(2995)] = 94027, - [SMALL_STATE(2996)] = 94101, - [SMALL_STATE(2997)] = 94163, - [SMALL_STATE(2998)] = 94223, - [SMALL_STATE(2999)] = 94283, - [SMALL_STATE(3000)] = 94344, - [SMALL_STATE(3001)] = 94417, - [SMALL_STATE(3002)] = 94476, - [SMALL_STATE(3003)] = 94535, - [SMALL_STATE(3004)] = 94598, - [SMALL_STATE(3005)] = 94657, - [SMALL_STATE(3006)] = 94718, - [SMALL_STATE(3007)] = 94777, - [SMALL_STATE(3008)] = 94838, - [SMALL_STATE(3009)] = 94897, - [SMALL_STATE(3010)] = 94956, - [SMALL_STATE(3011)] = 95015, - [SMALL_STATE(3012)] = 95074, - [SMALL_STATE(3013)] = 95133, - [SMALL_STATE(3014)] = 95192, - [SMALL_STATE(3015)] = 95251, - [SMALL_STATE(3016)] = 95310, - [SMALL_STATE(3017)] = 95369, - [SMALL_STATE(3018)] = 95428, - [SMALL_STATE(3019)] = 95487, - [SMALL_STATE(3020)] = 95546, - [SMALL_STATE(3021)] = 95605, - [SMALL_STATE(3022)] = 95666, - [SMALL_STATE(3023)] = 95725, - [SMALL_STATE(3024)] = 95784, - [SMALL_STATE(3025)] = 95845, - [SMALL_STATE(3026)] = 95904, - [SMALL_STATE(3027)] = 95963, - [SMALL_STATE(3028)] = 96022, - [SMALL_STATE(3029)] = 96083, - [SMALL_STATE(3030)] = 96142, - [SMALL_STATE(3031)] = 96201, - [SMALL_STATE(3032)] = 96262, - [SMALL_STATE(3033)] = 96321, - [SMALL_STATE(3034)] = 96380, - [SMALL_STATE(3035)] = 96439, - [SMALL_STATE(3036)] = 96498, - [SMALL_STATE(3037)] = 96557, - [SMALL_STATE(3038)] = 96616, - [SMALL_STATE(3039)] = 96675, - [SMALL_STATE(3040)] = 96734, - [SMALL_STATE(3041)] = 96795, - [SMALL_STATE(3042)] = 96854, - [SMALL_STATE(3043)] = 96913, - [SMALL_STATE(3044)] = 96972, - [SMALL_STATE(3045)] = 97035, - [SMALL_STATE(3046)] = 97094, - [SMALL_STATE(3047)] = 97153, - [SMALL_STATE(3048)] = 97212, - [SMALL_STATE(3049)] = 97273, - [SMALL_STATE(3050)] = 97334, - [SMALL_STATE(3051)] = 97393, - [SMALL_STATE(3052)] = 97452, - [SMALL_STATE(3053)] = 97511, - [SMALL_STATE(3054)] = 97570, - [SMALL_STATE(3055)] = 97629, - [SMALL_STATE(3056)] = 97690, - [SMALL_STATE(3057)] = 97749, - [SMALL_STATE(3058)] = 97808, - [SMALL_STATE(3059)] = 97867, - [SMALL_STATE(3060)] = 97926, - [SMALL_STATE(3061)] = 97985, - [SMALL_STATE(3062)] = 98044, - [SMALL_STATE(3063)] = 98103, - [SMALL_STATE(3064)] = 98166, - [SMALL_STATE(3065)] = 98225, - [SMALL_STATE(3066)] = 98284, - [SMALL_STATE(3067)] = 98343, - [SMALL_STATE(3068)] = 98402, - [SMALL_STATE(3069)] = 98463, - [SMALL_STATE(3070)] = 98522, - [SMALL_STATE(3071)] = 98583, - [SMALL_STATE(3072)] = 98646, - [SMALL_STATE(3073)] = 98705, - [SMALL_STATE(3074)] = 98764, - [SMALL_STATE(3075)] = 98823, - [SMALL_STATE(3076)] = 98882, - [SMALL_STATE(3077)] = 98943, - [SMALL_STATE(3078)] = 99002, - [SMALL_STATE(3079)] = 99061, - [SMALL_STATE(3080)] = 99122, - [SMALL_STATE(3081)] = 99183, - [SMALL_STATE(3082)] = 99242, - [SMALL_STATE(3083)] = 99301, - [SMALL_STATE(3084)] = 99359, - [SMALL_STATE(3085)] = 99417, - [SMALL_STATE(3086)] = 99475, - [SMALL_STATE(3087)] = 99533, - [SMALL_STATE(3088)] = 99591, - [SMALL_STATE(3089)] = 99649, - [SMALL_STATE(3090)] = 99707, - [SMALL_STATE(3091)] = 99765, - [SMALL_STATE(3092)] = 99823, - [SMALL_STATE(3093)] = 99881, - [SMALL_STATE(3094)] = 99939, - [SMALL_STATE(3095)] = 99997, - [SMALL_STATE(3096)] = 100055, - [SMALL_STATE(3097)] = 100113, - [SMALL_STATE(3098)] = 100171, - [SMALL_STATE(3099)] = 100229, - [SMALL_STATE(3100)] = 100287, - [SMALL_STATE(3101)] = 100345, - [SMALL_STATE(3102)] = 100403, - [SMALL_STATE(3103)] = 100461, - [SMALL_STATE(3104)] = 100519, - [SMALL_STATE(3105)] = 100577, - [SMALL_STATE(3106)] = 100635, - [SMALL_STATE(3107)] = 100693, - [SMALL_STATE(3108)] = 100753, - [SMALL_STATE(3109)] = 100811, - [SMALL_STATE(3110)] = 100869, - [SMALL_STATE(3111)] = 100927, - [SMALL_STATE(3112)] = 100985, - [SMALL_STATE(3113)] = 101043, - [SMALL_STATE(3114)] = 101101, - [SMALL_STATE(3115)] = 101159, - [SMALL_STATE(3116)] = 101217, - [SMALL_STATE(3117)] = 101275, - [SMALL_STATE(3118)] = 101333, - [SMALL_STATE(3119)] = 101391, - [SMALL_STATE(3120)] = 101449, - [SMALL_STATE(3121)] = 101507, - [SMALL_STATE(3122)] = 101565, - [SMALL_STATE(3123)] = 101623, - [SMALL_STATE(3124)] = 101681, - [SMALL_STATE(3125)] = 101739, - [SMALL_STATE(3126)] = 101797, - [SMALL_STATE(3127)] = 101855, - [SMALL_STATE(3128)] = 101913, - [SMALL_STATE(3129)] = 101971, - [SMALL_STATE(3130)] = 102029, - [SMALL_STATE(3131)] = 102087, - [SMALL_STATE(3132)] = 102145, - [SMALL_STATE(3133)] = 102203, - [SMALL_STATE(3134)] = 102261, - [SMALL_STATE(3135)] = 102319, - [SMALL_STATE(3136)] = 102377, - [SMALL_STATE(3137)] = 102435, - [SMALL_STATE(3138)] = 102493, - [SMALL_STATE(3139)] = 102551, - [SMALL_STATE(3140)] = 102609, - [SMALL_STATE(3141)] = 102667, - [SMALL_STATE(3142)] = 102725, - [SMALL_STATE(3143)] = 102783, - [SMALL_STATE(3144)] = 102841, - [SMALL_STATE(3145)] = 102899, - [SMALL_STATE(3146)] = 102957, - [SMALL_STATE(3147)] = 103015, - [SMALL_STATE(3148)] = 103073, - [SMALL_STATE(3149)] = 103131, - [SMALL_STATE(3150)] = 103189, - [SMALL_STATE(3151)] = 103247, - [SMALL_STATE(3152)] = 103304, - [SMALL_STATE(3153)] = 103369, - [SMALL_STATE(3154)] = 103445, - [SMALL_STATE(3155)] = 103521, - [SMALL_STATE(3156)] = 103597, - [SMALL_STATE(3157)] = 103673, - [SMALL_STATE(3158)] = 103749, - [SMALL_STATE(3159)] = 103825, - [SMALL_STATE(3160)] = 103901, - [SMALL_STATE(3161)] = 103977, - [SMALL_STATE(3162)] = 104053, - [SMALL_STATE(3163)] = 104129, - [SMALL_STATE(3164)] = 104193, - [SMALL_STATE(3165)] = 104269, - [SMALL_STATE(3166)] = 104335, - [SMALL_STATE(3167)] = 104411, - [SMALL_STATE(3168)] = 104487, - [SMALL_STATE(3169)] = 104563, - [SMALL_STATE(3170)] = 104639, - [SMALL_STATE(3171)] = 104715, - [SMALL_STATE(3172)] = 104780, - [SMALL_STATE(3173)] = 104834, - [SMALL_STATE(3174)] = 104904, - [SMALL_STATE(3175)] = 104958, - [SMALL_STATE(3176)] = 105012, - [SMALL_STATE(3177)] = 105070, - [SMALL_STATE(3178)] = 105124, - [SMALL_STATE(3179)] = 105182, - [SMALL_STATE(3180)] = 105240, - [SMALL_STATE(3181)] = 105298, - [SMALL_STATE(3182)] = 105355, - [SMALL_STATE(3183)] = 105410, - [SMALL_STATE(3184)] = 105467, - [SMALL_STATE(3185)] = 105520, - [SMALL_STATE(3186)] = 105589, - [SMALL_STATE(3187)] = 105646, - [SMALL_STATE(3188)] = 105703, - [SMALL_STATE(3189)] = 105760, - [SMALL_STATE(3190)] = 105827, - [SMALL_STATE(3191)] = 105884, - [SMALL_STATE(3192)] = 105948, - [SMALL_STATE(3193)] = 106012, - [SMALL_STATE(3194)] = 106066, - [SMALL_STATE(3195)] = 106116, - [SMALL_STATE(3196)] = 106166, - [SMALL_STATE(3197)] = 106232, - [SMALL_STATE(3198)] = 106296, - [SMALL_STATE(3199)] = 106346, - [SMALL_STATE(3200)] = 106396, - [SMALL_STATE(3201)] = 106464, - [SMALL_STATE(3202)] = 106526, - [SMALL_STATE(3203)] = 106596, - [SMALL_STATE(3204)] = 106654, - [SMALL_STATE(3205)] = 106734, - [SMALL_STATE(3206)] = 106816, - [SMALL_STATE(3207)] = 106900, - [SMALL_STATE(3208)] = 106972, - [SMALL_STATE(3209)] = 107038, - [SMALL_STATE(3210)] = 107112, - [SMALL_STATE(3211)] = 107188, - [SMALL_STATE(3212)] = 107266, - [SMALL_STATE(3213)] = 107330, - [SMALL_STATE(3214)] = 107396, - [SMALL_STATE(3215)] = 107464, - [SMALL_STATE(3216)] = 107524, - [SMALL_STATE(3217)] = 107586, - [SMALL_STATE(3218)] = 107654, - [SMALL_STATE(3219)] = 107724, - [SMALL_STATE(3220)] = 107780, - [SMALL_STATE(3221)] = 107838, - [SMALL_STATE(3222)] = 107916, - [SMALL_STATE(3223)] = 107996, - [SMALL_STATE(3224)] = 108076, - [SMALL_STATE(3225)] = 108158, - [SMALL_STATE(3226)] = 108240, - [SMALL_STATE(3227)] = 108324, - [SMALL_STATE(3228)] = 108394, - [SMALL_STATE(3229)] = 108466, - [SMALL_STATE(3230)] = 108530, - [SMALL_STATE(3231)] = 108596, - [SMALL_STATE(3232)] = 108668, - [SMALL_STATE(3233)] = 108742, - [SMALL_STATE(3234)] = 108816, - [SMALL_STATE(3235)] = 108892, - [SMALL_STATE(3236)] = 108968, - [SMALL_STATE(3237)] = 109046, - [SMALL_STATE(3238)] = 109114, - [SMALL_STATE(3239)] = 109176, - [SMALL_STATE(3240)] = 109246, - [SMALL_STATE(3241)] = 109304, - [SMALL_STATE(3242)] = 109384, - [SMALL_STATE(3243)] = 109466, - [SMALL_STATE(3244)] = 109550, - [SMALL_STATE(3245)] = 109622, - [SMALL_STATE(3246)] = 109688, - [SMALL_STATE(3247)] = 109762, - [SMALL_STATE(3248)] = 109838, - [SMALL_STATE(3249)] = 109916, - [SMALL_STATE(3250)] = 109982, - [SMALL_STATE(3251)] = 110042, - [SMALL_STATE(3252)] = 110110, - [SMALL_STATE(3253)] = 110166, - [SMALL_STATE(3254)] = 110244, - [SMALL_STATE(3255)] = 110324, - [SMALL_STATE(3256)] = 110378, - [SMALL_STATE(3257)] = 110448, - [SMALL_STATE(3258)] = 110512, - [SMALL_STATE(3259)] = 110584, - [SMALL_STATE(3260)] = 110658, - [SMALL_STATE(3261)] = 110734, - [SMALL_STATE(3262)] = 110800, - [SMALL_STATE(3263)] = 110868, - [SMALL_STATE(3264)] = 110928, - [SMALL_STATE(3265)] = 110990, - [SMALL_STATE(3266)] = 111058, - [SMALL_STATE(3267)] = 111128, - [SMALL_STATE(3268)] = 111184, - [SMALL_STATE(3269)] = 111242, - [SMALL_STATE(3270)] = 111320, - [SMALL_STATE(3271)] = 111400, - [SMALL_STATE(3272)] = 111480, - [SMALL_STATE(3273)] = 111562, - [SMALL_STATE(3274)] = 111644, - [SMALL_STATE(3275)] = 111728, - [SMALL_STATE(3276)] = 111798, - [SMALL_STATE(3277)] = 111870, - [SMALL_STATE(3278)] = 111934, - [SMALL_STATE(3279)] = 112000, - [SMALL_STATE(3280)] = 112072, - [SMALL_STATE(3281)] = 112146, - [SMALL_STATE(3282)] = 112220, - [SMALL_STATE(3283)] = 112296, - [SMALL_STATE(3284)] = 112372, - [SMALL_STATE(3285)] = 112450, - [SMALL_STATE(3286)] = 112516, - [SMALL_STATE(3287)] = 112576, - [SMALL_STATE(3288)] = 112644, - [SMALL_STATE(3289)] = 112700, - [SMALL_STATE(3290)] = 112778, - [SMALL_STATE(3291)] = 112858, - [SMALL_STATE(3292)] = 112940, - [SMALL_STATE(3293)] = 113010, - [SMALL_STATE(3294)] = 113074, - [SMALL_STATE(3295)] = 113146, - [SMALL_STATE(3296)] = 113220, - [SMALL_STATE(3297)] = 113296, - [SMALL_STATE(3298)] = 113350, - [SMALL_STATE(3299)] = 113414, - [SMALL_STATE(3300)] = 113472, - [SMALL_STATE(3301)] = 113538, - [SMALL_STATE(3302)] = 113592, - [SMALL_STATE(3303)] = 113668, - [SMALL_STATE(3304)] = 113746, - [SMALL_STATE(3305)] = 113826, - [SMALL_STATE(3306)] = 113894, - [SMALL_STATE(3307)] = 113956, - [SMALL_STATE(3308)] = 114026, - [SMALL_STATE(3309)] = 114098, - [SMALL_STATE(3310)] = 114172, - [SMALL_STATE(3311)] = 114236, - [SMALL_STATE(3312)] = 114290, - [SMALL_STATE(3313)] = 114358, - [SMALL_STATE(3314)] = 114424, - [SMALL_STATE(3315)] = 114490, - [SMALL_STATE(3316)] = 114556, - [SMALL_STATE(3317)] = 114606, - [SMALL_STATE(3318)] = 114656, - [SMALL_STATE(3319)] = 114738, - [SMALL_STATE(3320)] = 114799, - [SMALL_STATE(3321)] = 114864, - [SMALL_STATE(3322)] = 114925, - [SMALL_STATE(3323)] = 114976, - [SMALL_STATE(3324)] = 115029, - [SMALL_STATE(3325)] = 115088, - [SMALL_STATE(3326)] = 115139, - [SMALL_STATE(3327)] = 115200, - [SMALL_STATE(3328)] = 115265, - [SMALL_STATE(3329)] = 115326, - [SMALL_STATE(3330)] = 115377, - [SMALL_STATE(3331)] = 115438, - [SMALL_STATE(3332)] = 115499, - [SMALL_STATE(3333)] = 115550, - [SMALL_STATE(3334)] = 115611, - [SMALL_STATE(3335)] = 115662, - [SMALL_STATE(3336)] = 115713, - [SMALL_STATE(3337)] = 115764, - [SMALL_STATE(3338)] = 115815, - [SMALL_STATE(3339)] = 115866, - [SMALL_STATE(3340)] = 115927, - [SMALL_STATE(3341)] = 116000, - [SMALL_STATE(3342)] = 116059, - [SMALL_STATE(3343)] = 116114, - [SMALL_STATE(3344)] = 116169, - [SMALL_STATE(3345)] = 116230, - [SMALL_STATE(3346)] = 116291, - [SMALL_STATE(3347)] = 116362, - [SMALL_STATE(3348)] = 116413, - [SMALL_STATE(3349)] = 116464, - [SMALL_STATE(3350)] = 116515, - [SMALL_STATE(3351)] = 116580, - [SMALL_STATE(3352)] = 116643, - [SMALL_STATE(3353)] = 116700, - [SMALL_STATE(3354)] = 116765, - [SMALL_STATE(3355)] = 116818, - [SMALL_STATE(3356)] = 116893, - [SMALL_STATE(3357)] = 116970, - [SMALL_STATE(3358)] = 117049, - [SMALL_STATE(3359)] = 117116, - [SMALL_STATE(3360)] = 117177, - [SMALL_STATE(3361)] = 117246, - [SMALL_STATE(3362)] = 117311, - [SMALL_STATE(3363)] = 117369, - [SMALL_STATE(3364)] = 117421, - [SMALL_STATE(3365)] = 117507, - [SMALL_STATE(3366)] = 117565, - [SMALL_STATE(3367)] = 117619, - [SMALL_STATE(3368)] = 117673, - [SMALL_STATE(3369)] = 117759, - [SMALL_STATE(3370)] = 117813, - [SMALL_STATE(3371)] = 117867, - [SMALL_STATE(3372)] = 117925, - [SMALL_STATE(3373)] = 117981, - [SMALL_STATE(3374)] = 118035, - [SMALL_STATE(3375)] = 118087, - [SMALL_STATE(3376)] = 118141, - [SMALL_STATE(3377)] = 118207, - [SMALL_STATE(3378)] = 118262, - [SMALL_STATE(3379)] = 118315, - [SMALL_STATE(3380)] = 118368, - [SMALL_STATE(3381)] = 118433, - [SMALL_STATE(3382)] = 118516, - [SMALL_STATE(3383)] = 118599, - [SMALL_STATE(3384)] = 118648, - [SMALL_STATE(3385)] = 118711, - [SMALL_STATE(3386)] = 118774, - [SMALL_STATE(3387)] = 118825, - [SMALL_STATE(3388)] = 118888, - [SMALL_STATE(3389)] = 118945, - [SMALL_STATE(3390)] = 119008, - [SMALL_STATE(3391)] = 119063, - [SMALL_STATE(3392)] = 119116, - [SMALL_STATE(3393)] = 119165, - [SMALL_STATE(3394)] = 119220, - [SMALL_STATE(3395)] = 119275, - [SMALL_STATE(3396)] = 119326, - [SMALL_STATE(3397)] = 119377, - [SMALL_STATE(3398)] = 119426, - [SMALL_STATE(3399)] = 119481, - [SMALL_STATE(3400)] = 119532, - [SMALL_STATE(3401)] = 119581, - [SMALL_STATE(3402)] = 119640, - [SMALL_STATE(3403)] = 119689, - [SMALL_STATE(3404)] = 119743, - [SMALL_STATE(3405)] = 119799, - [SMALL_STATE(3406)] = 119847, - [SMALL_STATE(3407)] = 119895, - [SMALL_STATE(3408)] = 119943, - [SMALL_STATE(3409)] = 119991, - [SMALL_STATE(3410)] = 120039, - [SMALL_STATE(3411)] = 120095, - [SMALL_STATE(3412)] = 120143, - [SMALL_STATE(3413)] = 120191, - [SMALL_STATE(3414)] = 120247, - [SMALL_STATE(3415)] = 120297, - [SMALL_STATE(3416)] = 120349, - [SMALL_STATE(3417)] = 120399, - [SMALL_STATE(3418)] = 120461, - [SMALL_STATE(3419)] = 120513, - [SMALL_STATE(3420)] = 120575, - [SMALL_STATE(3421)] = 120627, - [SMALL_STATE(3422)] = 120675, - [SMALL_STATE(3423)] = 120723, - [SMALL_STATE(3424)] = 120771, - [SMALL_STATE(3425)] = 120819, - [SMALL_STATE(3426)] = 120867, - [SMALL_STATE(3427)] = 120915, - [SMALL_STATE(3428)] = 120963, - [SMALL_STATE(3429)] = 121011, - [SMALL_STATE(3430)] = 121063, - [SMALL_STATE(3431)] = 121111, - [SMALL_STATE(3432)] = 121159, - [SMALL_STATE(3433)] = 121207, - [SMALL_STATE(3434)] = 121255, - [SMALL_STATE(3435)] = 121303, - [SMALL_STATE(3436)] = 121359, - [SMALL_STATE(3437)] = 121407, - [SMALL_STATE(3438)] = 121455, - [SMALL_STATE(3439)] = 121503, - [SMALL_STATE(3440)] = 121551, - [SMALL_STATE(3441)] = 121613, - [SMALL_STATE(3442)] = 121665, - [SMALL_STATE(3443)] = 121716, - [SMALL_STATE(3444)] = 121771, - [SMALL_STATE(3445)] = 121826, - [SMALL_STATE(3446)] = 121881, - [SMALL_STATE(3447)] = 121928, - [SMALL_STATE(3448)] = 121983, - [SMALL_STATE(3449)] = 122034, - [SMALL_STATE(3450)] = 122081, - [SMALL_STATE(3451)] = 122128, - [SMALL_STATE(3452)] = 122181, - [SMALL_STATE(3453)] = 122236, - [SMALL_STATE(3454)] = 122291, - [SMALL_STATE(3455)] = 122346, - [SMALL_STATE(3456)] = 122401, - [SMALL_STATE(3457)] = 122448, - [SMALL_STATE(3458)] = 122499, - [SMALL_STATE(3459)] = 122554, - [SMALL_STATE(3460)] = 122609, - [SMALL_STATE(3461)] = 122664, - [SMALL_STATE(3462)] = 122719, - [SMALL_STATE(3463)] = 122774, - [SMALL_STATE(3464)] = 122821, - [SMALL_STATE(3465)] = 122876, - [SMALL_STATE(3466)] = 122931, - [SMALL_STATE(3467)] = 122986, - [SMALL_STATE(3468)] = 123041, - [SMALL_STATE(3469)] = 123096, - [SMALL_STATE(3470)] = 123151, - [SMALL_STATE(3471)] = 123200, - [SMALL_STATE(3472)] = 123255, - [SMALL_STATE(3473)] = 123302, - [SMALL_STATE(3474)] = 123357, - [SMALL_STATE(3475)] = 123412, - [SMALL_STATE(3476)] = 123459, - [SMALL_STATE(3477)] = 123508, - [SMALL_STATE(3478)] = 123563, - [SMALL_STATE(3479)] = 123618, - [SMALL_STATE(3480)] = 123670, - [SMALL_STATE(3481)] = 123716, - [SMALL_STATE(3482)] = 123766, - [SMALL_STATE(3483)] = 123818, - [SMALL_STATE(3484)] = 123866, - [SMALL_STATE(3485)] = 123912, - [SMALL_STATE(3486)] = 123962, - [SMALL_STATE(3487)] = 124008, - [SMALL_STATE(3488)] = 124054, - [SMALL_STATE(3489)] = 124100, - [SMALL_STATE(3490)] = 124146, - [SMALL_STATE(3491)] = 124192, - [SMALL_STATE(3492)] = 124238, - [SMALL_STATE(3493)] = 124284, - [SMALL_STATE(3494)] = 124330, - [SMALL_STATE(3495)] = 124376, - [SMALL_STATE(3496)] = 124422, - [SMALL_STATE(3497)] = 124468, - [SMALL_STATE(3498)] = 124514, - [SMALL_STATE(3499)] = 124560, - [SMALL_STATE(3500)] = 124604, - [SMALL_STATE(3501)] = 124650, - [SMALL_STATE(3502)] = 124696, - [SMALL_STATE(3503)] = 124742, - [SMALL_STATE(3504)] = 124788, - [SMALL_STATE(3505)] = 124834, - [SMALL_STATE(3506)] = 124880, - [SMALL_STATE(3507)] = 124928, - [SMALL_STATE(3508)] = 124974, - [SMALL_STATE(3509)] = 125020, - [SMALL_STATE(3510)] = 125068, - [SMALL_STATE(3511)] = 125114, - [SMALL_STATE(3512)] = 125160, - [SMALL_STATE(3513)] = 125212, - [SMALL_STATE(3514)] = 125260, - [SMALL_STATE(3515)] = 125314, - [SMALL_STATE(3516)] = 125360, - [SMALL_STATE(3517)] = 125406, - [SMALL_STATE(3518)] = 125452, - [SMALL_STATE(3519)] = 125498, - [SMALL_STATE(3520)] = 125548, - [SMALL_STATE(3521)] = 125594, - [SMALL_STATE(3522)] = 125644, - [SMALL_STATE(3523)] = 125690, - [SMALL_STATE(3524)] = 125736, - [SMALL_STATE(3525)] = 125782, - [SMALL_STATE(3526)] = 125828, - [SMALL_STATE(3527)] = 125874, - [SMALL_STATE(3528)] = 125920, - [SMALL_STATE(3529)] = 125966, - [SMALL_STATE(3530)] = 126016, - [SMALL_STATE(3531)] = 126066, - [SMALL_STATE(3532)] = 126120, - [SMALL_STATE(3533)] = 126166, - [SMALL_STATE(3534)] = 126215, - [SMALL_STATE(3535)] = 126264, - [SMALL_STATE(3536)] = 126317, - [SMALL_STATE(3537)] = 126370, - [SMALL_STATE(3538)] = 126423, - [SMALL_STATE(3539)] = 126468, - [SMALL_STATE(3540)] = 126521, - [SMALL_STATE(3541)] = 126574, - [SMALL_STATE(3542)] = 126619, - [SMALL_STATE(3543)] = 126672, - [SMALL_STATE(3544)] = 126719, - [SMALL_STATE(3545)] = 126768, - [SMALL_STATE(3546)] = 126817, - [SMALL_STATE(3547)] = 126870, - [SMALL_STATE(3548)] = 126917, - [SMALL_STATE(3549)] = 126962, - [SMALL_STATE(3550)] = 127015, - [SMALL_STATE(3551)] = 127060, - [SMALL_STATE(3552)] = 127105, - [SMALL_STATE(3553)] = 127158, - [SMALL_STATE(3554)] = 127203, - [SMALL_STATE(3555)] = 127248, - [SMALL_STATE(3556)] = 127301, - [SMALL_STATE(3557)] = 127346, - [SMALL_STATE(3558)] = 127391, - [SMALL_STATE(3559)] = 127436, - [SMALL_STATE(3560)] = 127481, - [SMALL_STATE(3561)] = 127534, - [SMALL_STATE(3562)] = 127579, - [SMALL_STATE(3563)] = 127632, - [SMALL_STATE(3564)] = 127677, - [SMALL_STATE(3565)] = 127730, - [SMALL_STATE(3566)] = 127783, - [SMALL_STATE(3567)] = 127836, - [SMALL_STATE(3568)] = 127889, - [SMALL_STATE(3569)] = 127942, - [SMALL_STATE(3570)] = 127995, - [SMALL_STATE(3571)] = 128048, - [SMALL_STATE(3572)] = 128101, - [SMALL_STATE(3573)] = 128154, - [SMALL_STATE(3574)] = 128203, - [SMALL_STATE(3575)] = 128256, - [SMALL_STATE(3576)] = 128309, - [SMALL_STATE(3577)] = 128354, - [SMALL_STATE(3578)] = 128407, - [SMALL_STATE(3579)] = 128460, - [SMALL_STATE(3580)] = 128509, - [SMALL_STATE(3581)] = 128562, - [SMALL_STATE(3582)] = 128615, - [SMALL_STATE(3583)] = 128662, - [SMALL_STATE(3584)] = 128709, - [SMALL_STATE(3585)] = 128754, - [SMALL_STATE(3586)] = 128799, - [SMALL_STATE(3587)] = 128844, - [SMALL_STATE(3588)] = 128893, - [SMALL_STATE(3589)] = 128937, - [SMALL_STATE(3590)] = 128985, - [SMALL_STATE(3591)] = 129029, - [SMALL_STATE(3592)] = 129073, - [SMALL_STATE(3593)] = 129121, - [SMALL_STATE(3594)] = 129167, - [SMALL_STATE(3595)] = 129215, - [SMALL_STATE(3596)] = 129259, - [SMALL_STATE(3597)] = 129303, - [SMALL_STATE(3598)] = 129347, - [SMALL_STATE(3599)] = 129391, - [SMALL_STATE(3600)] = 129443, - [SMALL_STATE(3601)] = 129487, - [SMALL_STATE(3602)] = 129533, - [SMALL_STATE(3603)] = 129577, - [SMALL_STATE(3604)] = 129621, - [SMALL_STATE(3605)] = 129665, - [SMALL_STATE(3606)] = 129711, - [SMALL_STATE(3607)] = 129755, - [SMALL_STATE(3608)] = 129799, - [SMALL_STATE(3609)] = 129851, - [SMALL_STATE(3610)] = 129897, - [SMALL_STATE(3611)] = 129943, - [SMALL_STATE(3612)] = 129989, - [SMALL_STATE(3613)] = 130035, - [SMALL_STATE(3614)] = 130083, - [SMALL_STATE(3615)] = 130127, - [SMALL_STATE(3616)] = 130173, - [SMALL_STATE(3617)] = 130217, - [SMALL_STATE(3618)] = 130265, - [SMALL_STATE(3619)] = 130311, - [SMALL_STATE(3620)] = 130355, - [SMALL_STATE(3621)] = 130401, - [SMALL_STATE(3622)] = 130448, - [SMALL_STATE(3623)] = 130491, - [SMALL_STATE(3624)] = 130538, - [SMALL_STATE(3625)] = 130581, - [SMALL_STATE(3626)] = 130628, - [SMALL_STATE(3627)] = 130675, - [SMALL_STATE(3628)] = 130722, - [SMALL_STATE(3629)] = 130769, - [SMALL_STATE(3630)] = 130816, - [SMALL_STATE(3631)] = 130867, - [SMALL_STATE(3632)] = 130910, - [SMALL_STATE(3633)] = 130953, - [SMALL_STATE(3634)] = 130996, - [SMALL_STATE(3635)] = 131039, - [SMALL_STATE(3636)] = 131084, - [SMALL_STATE(3637)] = 131131, - [SMALL_STATE(3638)] = 131174, - [SMALL_STATE(3639)] = 131221, - [SMALL_STATE(3640)] = 131268, - [SMALL_STATE(3641)] = 131311, - [SMALL_STATE(3642)] = 131360, - [SMALL_STATE(3643)] = 131403, - [SMALL_STATE(3644)] = 131446, - [SMALL_STATE(3645)] = 131489, - [SMALL_STATE(3646)] = 131536, - [SMALL_STATE(3647)] = 131579, - [SMALL_STATE(3648)] = 131622, - [SMALL_STATE(3649)] = 131665, - [SMALL_STATE(3650)] = 131708, - [SMALL_STATE(3651)] = 131751, - [SMALL_STATE(3652)] = 131794, - [SMALL_STATE(3653)] = 131837, - [SMALL_STATE(3654)] = 131880, - [SMALL_STATE(3655)] = 131923, - [SMALL_STATE(3656)] = 131966, - [SMALL_STATE(3657)] = 132009, - [SMALL_STATE(3658)] = 132052, - [SMALL_STATE(3659)] = 132099, - [SMALL_STATE(3660)] = 132142, - [SMALL_STATE(3661)] = 132185, - [SMALL_STATE(3662)] = 132228, - [SMALL_STATE(3663)] = 132271, - [SMALL_STATE(3664)] = 132314, - [SMALL_STATE(3665)] = 132361, - [SMALL_STATE(3666)] = 132404, - [SMALL_STATE(3667)] = 132451, - [SMALL_STATE(3668)] = 132494, - [SMALL_STATE(3669)] = 132583, - [SMALL_STATE(3670)] = 132630, - [SMALL_STATE(3671)] = 132673, - [SMALL_STATE(3672)] = 132716, - [SMALL_STATE(3673)] = 132759, - [SMALL_STATE(3674)] = 132806, - [SMALL_STATE(3675)] = 132853, - [SMALL_STATE(3676)] = 132896, - [SMALL_STATE(3677)] = 132939, - [SMALL_STATE(3678)] = 132982, - [SMALL_STATE(3679)] = 133025, - [SMALL_STATE(3680)] = 133068, - [SMALL_STATE(3681)] = 133115, - [SMALL_STATE(3682)] = 133162, - [SMALL_STATE(3683)] = 133205, - [SMALL_STATE(3684)] = 133254, - [SMALL_STATE(3685)] = 133301, - [SMALL_STATE(3686)] = 133348, - [SMALL_STATE(3687)] = 133395, - [SMALL_STATE(3688)] = 133438, - [SMALL_STATE(3689)] = 133481, - [SMALL_STATE(3690)] = 133524, - [SMALL_STATE(3691)] = 133567, - [SMALL_STATE(3692)] = 133610, - [SMALL_STATE(3693)] = 133657, - [SMALL_STATE(3694)] = 133700, - [SMALL_STATE(3695)] = 133747, - [SMALL_STATE(3696)] = 133794, - [SMALL_STATE(3697)] = 133841, - [SMALL_STATE(3698)] = 133888, - [SMALL_STATE(3699)] = 133931, - [SMALL_STATE(3700)] = 133974, - [SMALL_STATE(3701)] = 134017, - [SMALL_STATE(3702)] = 134106, - [SMALL_STATE(3703)] = 134149, - [SMALL_STATE(3704)] = 134192, - [SMALL_STATE(3705)] = 134235, - [SMALL_STATE(3706)] = 134278, - [SMALL_STATE(3707)] = 134321, - [SMALL_STATE(3708)] = 134364, - [SMALL_STATE(3709)] = 134409, - [SMALL_STATE(3710)] = 134456, - [SMALL_STATE(3711)] = 134499, - [SMALL_STATE(3712)] = 134546, - [SMALL_STATE(3713)] = 134589, - [SMALL_STATE(3714)] = 134641, - [SMALL_STATE(3715)] = 134713, - [SMALL_STATE(3716)] = 134759, - [SMALL_STATE(3717)] = 134827, - [SMALL_STATE(3718)] = 134897, - [SMALL_STATE(3719)] = 134969, - [SMALL_STATE(3720)] = 135029, - [SMALL_STATE(3721)] = 135077, - [SMALL_STATE(3722)] = 135131, - [SMALL_STATE(3723)] = 135199, - [SMALL_STATE(3724)] = 135247, - [SMALL_STATE(3725)] = 135317, - [SMALL_STATE(3726)] = 135361, - [SMALL_STATE(3727)] = 135415, - [SMALL_STATE(3728)] = 135459, - [SMALL_STATE(3729)] = 135521, - [SMALL_STATE(3730)] = 135585, - [SMALL_STATE(3731)] = 135633, - [SMALL_STATE(3732)] = 135699, - [SMALL_STATE(3733)] = 135761, - [SMALL_STATE(3734)] = 135831, - [SMALL_STATE(3735)] = 135873, - [SMALL_STATE(3736)] = 135945, - [SMALL_STATE(3737)] = 136017, - [SMALL_STATE(3738)] = 136059, - [SMALL_STATE(3739)] = 136133, - [SMALL_STATE(3740)] = 136175, - [SMALL_STATE(3741)] = 136223, - [SMALL_STATE(3742)] = 136265, - [SMALL_STATE(3743)] = 136329, - [SMALL_STATE(3744)] = 136399, - [SMALL_STATE(3745)] = 136459, - [SMALL_STATE(3746)] = 136525, - [SMALL_STATE(3747)] = 136585, - [SMALL_STATE(3748)] = 136643, - [SMALL_STATE(3749)] = 136699, - [SMALL_STATE(3750)] = 136771, - [SMALL_STATE(3751)] = 136829, - [SMALL_STATE(3752)] = 136891, - [SMALL_STATE(3753)] = 136945, - [SMALL_STATE(3754)] = 136989, - [SMALL_STATE(3755)] = 137045, - [SMALL_STATE(3756)] = 137095, - [SMALL_STATE(3757)] = 137155, - [SMALL_STATE(3758)] = 137197, - [SMALL_STATE(3759)] = 137259, - [SMALL_STATE(3760)] = 137315, - [SMALL_STATE(3761)] = 137373, - [SMALL_STATE(3762)] = 137421, - [SMALL_STATE(3763)] = 137469, - [SMALL_STATE(3764)] = 137527, - [SMALL_STATE(3765)] = 137587, - [SMALL_STATE(3766)] = 137629, - [SMALL_STATE(3767)] = 137675, - [SMALL_STATE(3768)] = 137723, - [SMALL_STATE(3769)] = 137791, - [SMALL_STATE(3770)] = 137861, - [SMALL_STATE(3771)] = 137931, - [SMALL_STATE(3772)] = 137973, - [SMALL_STATE(3773)] = 138015, - [SMALL_STATE(3774)] = 138057, - [SMALL_STATE(3775)] = 138129, - [SMALL_STATE(3776)] = 138177, - [SMALL_STATE(3777)] = 138249, - [SMALL_STATE(3778)] = 138323, - [SMALL_STATE(3779)] = 138371, - [SMALL_STATE(3780)] = 138417, - [SMALL_STATE(3781)] = 138477, - [SMALL_STATE(3782)] = 138539, - [SMALL_STATE(3783)] = 138593, - [SMALL_STATE(3784)] = 138649, - [SMALL_STATE(3785)] = 138705, - [SMALL_STATE(3786)] = 138767, - [SMALL_STATE(3787)] = 138831, - [SMALL_STATE(3788)] = 138895, - [SMALL_STATE(3789)] = 138937, - [SMALL_STATE(3790)] = 139003, - [SMALL_STATE(3791)] = 139069, - [SMALL_STATE(3792)] = 139137, - [SMALL_STATE(3793)] = 139195, - [SMALL_STATE(3794)] = 139247, - [SMALL_STATE(3795)] = 139307, - [SMALL_STATE(3796)] = 139371, - [SMALL_STATE(3797)] = 139423, - [SMALL_STATE(3798)] = 139471, - [SMALL_STATE(3799)] = 139513, - [SMALL_STATE(3800)] = 139583, - [SMALL_STATE(3801)] = 139647, - [SMALL_STATE(3802)] = 139689, - [SMALL_STATE(3803)] = 139761, - [SMALL_STATE(3804)] = 139827, - [SMALL_STATE(3805)] = 139901, - [SMALL_STATE(3806)] = 139963, - [SMALL_STATE(3807)] = 140027, - [SMALL_STATE(3808)] = 140083, - [SMALL_STATE(3809)] = 140125, - [SMALL_STATE(3810)] = 140191, - [SMALL_STATE(3811)] = 140255, - [SMALL_STATE(3812)] = 140323, - [SMALL_STATE(3813)] = 140389, - [SMALL_STATE(3814)] = 140463, - [SMALL_STATE(3815)] = 140505, - [SMALL_STATE(3816)] = 140547, - [SMALL_STATE(3817)] = 140597, - [SMALL_STATE(3818)] = 140665, - [SMALL_STATE(3819)] = 140707, - [SMALL_STATE(3820)] = 140755, - [SMALL_STATE(3821)] = 140801, - [SMALL_STATE(3822)] = 140863, - [SMALL_STATE(3823)] = 140921, - [SMALL_STATE(3824)] = 140967, - [SMALL_STATE(3825)] = 141009, - [SMALL_STATE(3826)] = 141059, - [SMALL_STATE(3827)] = 141125, - [SMALL_STATE(3828)] = 141169, - [SMALL_STATE(3829)] = 141237, - [SMALL_STATE(3830)] = 141289, - [SMALL_STATE(3831)] = 141347, - [SMALL_STATE(3832)] = 141391, - [SMALL_STATE(3833)] = 141451, - [SMALL_STATE(3834)] = 141495, - [SMALL_STATE(3835)] = 141537, - [SMALL_STATE(3836)] = 141579, - [SMALL_STATE(3837)] = 141635, - [SMALL_STATE(3838)] = 141685, - [SMALL_STATE(3839)] = 141743, - [SMALL_STATE(3840)] = 141789, - [SMALL_STATE(3841)] = 141857, - [SMALL_STATE(3842)] = 141913, - [SMALL_STATE(3843)] = 141955, - [SMALL_STATE(3844)] = 142025, - [SMALL_STATE(3845)] = 142073, - [SMALL_STATE(3846)] = 142114, - [SMALL_STATE(3847)] = 142155, - [SMALL_STATE(3848)] = 142196, - [SMALL_STATE(3849)] = 142279, - [SMALL_STATE(3850)] = 142320, - [SMALL_STATE(3851)] = 142361, - [SMALL_STATE(3852)] = 142406, - [SMALL_STATE(3853)] = 142451, - [SMALL_STATE(3854)] = 142500, - [SMALL_STATE(3855)] = 142541, - [SMALL_STATE(3856)] = 142624, - [SMALL_STATE(3857)] = 142665, - [SMALL_STATE(3858)] = 142706, - [SMALL_STATE(3859)] = 142789, - [SMALL_STATE(3860)] = 142872, - [SMALL_STATE(3861)] = 142945, - [SMALL_STATE(3862)] = 142986, - [SMALL_STATE(3863)] = 143027, - [SMALL_STATE(3864)] = 143100, - [SMALL_STATE(3865)] = 143183, - [SMALL_STATE(3866)] = 143226, - [SMALL_STATE(3867)] = 143267, - [SMALL_STATE(3868)] = 143350, - [SMALL_STATE(3869)] = 143391, - [SMALL_STATE(3870)] = 143474, - [SMALL_STATE(3871)] = 143557, - [SMALL_STATE(3872)] = 143640, - [SMALL_STATE(3873)] = 143713, - [SMALL_STATE(3874)] = 143796, - [SMALL_STATE(3875)] = 143879, - [SMALL_STATE(3876)] = 143962, - [SMALL_STATE(3877)] = 144035, - [SMALL_STATE(3878)] = 144118, - [SMALL_STATE(3879)] = 144159, - [SMALL_STATE(3880)] = 144202, - [SMALL_STATE(3881)] = 144243, - [SMALL_STATE(3882)] = 144294, - [SMALL_STATE(3883)] = 144347, - [SMALL_STATE(3884)] = 144430, - [SMALL_STATE(3885)] = 144487, - [SMALL_STATE(3886)] = 144570, - [SMALL_STATE(3887)] = 144653, - [SMALL_STATE(3888)] = 144736, - [SMALL_STATE(3889)] = 144819, - [SMALL_STATE(3890)] = 144902, - [SMALL_STATE(3891)] = 144985, - [SMALL_STATE(3892)] = 145026, - [SMALL_STATE(3893)] = 145109, - [SMALL_STATE(3894)] = 145170, - [SMALL_STATE(3895)] = 145211, - [SMALL_STATE(3896)] = 145270, - [SMALL_STATE(3897)] = 145311, - [SMALL_STATE(3898)] = 145352, - [SMALL_STATE(3899)] = 145435, - [SMALL_STATE(3900)] = 145482, - [SMALL_STATE(3901)] = 145545, - [SMALL_STATE(3902)] = 145628, - [SMALL_STATE(3903)] = 145669, - [SMALL_STATE(3904)] = 145742, - [SMALL_STATE(3905)] = 145807, - [SMALL_STATE(3906)] = 145852, - [SMALL_STATE(3907)] = 145893, - [SMALL_STATE(3908)] = 145934, - [SMALL_STATE(3909)] = 146007, - [SMALL_STATE(3910)] = 146090, - [SMALL_STATE(3911)] = 146131, - [SMALL_STATE(3912)] = 146198, - [SMALL_STATE(3913)] = 146281, - [SMALL_STATE(3914)] = 146336, - [SMALL_STATE(3915)] = 146419, - [SMALL_STATE(3916)] = 146479, - [SMALL_STATE(3917)] = 146521, - [SMALL_STATE(3918)] = 146571, - [SMALL_STATE(3919)] = 146629, - [SMALL_STATE(3920)] = 146671, - [SMALL_STATE(3921)] = 146727, - [SMALL_STATE(3922)] = 146773, - [SMALL_STATE(3923)] = 146831, - [SMALL_STATE(3924)] = 146877, - [SMALL_STATE(3925)] = 146941, - [SMALL_STATE(3926)] = 146981, - [SMALL_STATE(3927)] = 147041, - [SMALL_STATE(3928)] = 147083, - [SMALL_STATE(3929)] = 147145, - [SMALL_STATE(3930)] = 147209, - [SMALL_STATE(3931)] = 147251, - [SMALL_STATE(3932)] = 147293, - [SMALL_STATE(3933)] = 147337, - [SMALL_STATE(3934)] = 147399, - [SMALL_STATE(3935)] = 147465, - [SMALL_STATE(3936)] = 147515, - [SMALL_STATE(3937)] = 147567, - [SMALL_STATE(3938)] = 147609, - [SMALL_STATE(3939)] = 147677, - [SMALL_STATE(3940)] = 147743, - [SMALL_STATE(3941)] = 147797, - [SMALL_STATE(3942)] = 147839, - [SMALL_STATE(3943)] = 147883, - [SMALL_STATE(3944)] = 147951, - [SMALL_STATE(3945)] = 148003, - [SMALL_STATE(3946)] = 148045, - [SMALL_STATE(3947)] = 148099, - [SMALL_STATE(3948)] = 148141, - [SMALL_STATE(3949)] = 148197, - [SMALL_STATE(3950)] = 148239, - [SMALL_STATE(3951)] = 148281, - [SMALL_STATE(3952)] = 148325, - [SMALL_STATE(3953)] = 148369, - [SMALL_STATE(3954)] = 148446, - [SMALL_STATE(3955)] = 148485, - [SMALL_STATE(3956)] = 148562, - [SMALL_STATE(3957)] = 148639, - [SMALL_STATE(3958)] = 148716, - [SMALL_STATE(3959)] = 148793, - [SMALL_STATE(3960)] = 148870, - [SMALL_STATE(3961)] = 148947, - [SMALL_STATE(3962)] = 149014, - [SMALL_STATE(3963)] = 149053, - [SMALL_STATE(3964)] = 149130, - [SMALL_STATE(3965)] = 149207, - [SMALL_STATE(3966)] = 149284, - [SMALL_STATE(3967)] = 149361, - [SMALL_STATE(3968)] = 149438, - [SMALL_STATE(3969)] = 149483, - [SMALL_STATE(3970)] = 149550, - [SMALL_STATE(3971)] = 149589, - [SMALL_STATE(3972)] = 149628, - [SMALL_STATE(3973)] = 149667, - [SMALL_STATE(3974)] = 149706, - [SMALL_STATE(3975)] = 149773, - [SMALL_STATE(3976)] = 149840, - [SMALL_STATE(3977)] = 149907, - [SMALL_STATE(3978)] = 149974, - [SMALL_STATE(3979)] = 150041, - [SMALL_STATE(3980)] = 150085, - [SMALL_STATE(3981)] = 150139, - [SMALL_STATE(3982)] = 150190, - [SMALL_STATE(3983)] = 150243, - [SMALL_STATE(3984)] = 150294, - [SMALL_STATE(3985)] = 150344, - [SMALL_STATE(3986)] = 150394, - [SMALL_STATE(3987)] = 150450, - [SMALL_STATE(3988)] = 150490, - [SMALL_STATE(3989)] = 150530, - [SMALL_STATE(3990)] = 150569, - [SMALL_STATE(3991)] = 150606, - [SMALL_STATE(3992)] = 150645, - [SMALL_STATE(3993)] = 150700, - [SMALL_STATE(3994)] = 150737, - [SMALL_STATE(3995)] = 150790, - [SMALL_STATE(3996)] = 150837, - [SMALL_STATE(3997)] = 150890, - [SMALL_STATE(3998)] = 150943, - [SMALL_STATE(3999)] = 150977, - [SMALL_STATE(4000)] = 151015, - [SMALL_STATE(4001)] = 151053, - [SMALL_STATE(4002)] = 151105, - [SMALL_STATE(4003)] = 151143, - [SMALL_STATE(4004)] = 151179, - [SMALL_STATE(4005)] = 151215, - [SMALL_STATE(4006)] = 151249, - [SMALL_STATE(4007)] = 151283, - [SMALL_STATE(4008)] = 151335, - [SMALL_STATE(4009)] = 151369, - [SMALL_STATE(4010)] = 151407, - [SMALL_STATE(4011)] = 151453, - [SMALL_STATE(4012)] = 151505, - [SMALL_STATE(4013)] = 151555, - [SMALL_STATE(4014)] = 151605, - [SMALL_STATE(4015)] = 151655, - [SMALL_STATE(4016)] = 151705, - [SMALL_STATE(4017)] = 151747, - [SMALL_STATE(4018)] = 151789, - [SMALL_STATE(4019)] = 151836, - [SMALL_STATE(4020)] = 151873, - [SMALL_STATE(4021)] = 151908, - [SMALL_STATE(4022)] = 151945, - [SMALL_STATE(4023)] = 151980, - [SMALL_STATE(4024)] = 152013, - [SMALL_STATE(4025)] = 152048, - [SMALL_STATE(4026)] = 152097, - [SMALL_STATE(4027)] = 152132, - [SMALL_STATE(4028)] = 152181, - [SMALL_STATE(4029)] = 152230, - [SMALL_STATE(4030)] = 152279, - [SMALL_STATE(4031)] = 152316, - [SMALL_STATE(4032)] = 152349, - [SMALL_STATE(4033)] = 152384, - [SMALL_STATE(4034)] = 152417, - [SMALL_STATE(4035)] = 152454, - [SMALL_STATE(4036)] = 152507, - [SMALL_STATE(4037)] = 152548, - [SMALL_STATE(4038)] = 152589, - [SMALL_STATE(4039)] = 152622, - [SMALL_STATE(4040)] = 152654, - [SMALL_STATE(4041)] = 152704, - [SMALL_STATE(4042)] = 152736, - [SMALL_STATE(4043)] = 152776, - [SMALL_STATE(4044)] = 152812, - [SMALL_STATE(4045)] = 152844, - [SMALL_STATE(4046)] = 152884, - [SMALL_STATE(4047)] = 152916, - [SMALL_STATE(4048)] = 152948, - [SMALL_STATE(4049)] = 152982, - [SMALL_STATE(4050)] = 153014, - [SMALL_STATE(4051)] = 153046, - [SMALL_STATE(4052)] = 153092, - [SMALL_STATE(4053)] = 153124, - [SMALL_STATE(4054)] = 153160, - [SMALL_STATE(4055)] = 153196, - [SMALL_STATE(4056)] = 153232, - [SMALL_STATE(4057)] = 153264, - [SMALL_STATE(4058)] = 153304, - [SMALL_STATE(4059)] = 153338, - [SMALL_STATE(4060)] = 153376, - [SMALL_STATE(4061)] = 153414, - [SMALL_STATE(4062)] = 153448, - [SMALL_STATE(4063)] = 153498, - [SMALL_STATE(4064)] = 153532, - [SMALL_STATE(4065)] = 153582, - [SMALL_STATE(4066)] = 153613, - [SMALL_STATE(4067)] = 153660, - [SMALL_STATE(4068)] = 153699, - [SMALL_STATE(4069)] = 153732, - [SMALL_STATE(4070)] = 153767, - [SMALL_STATE(4071)] = 153802, - [SMALL_STATE(4072)] = 153833, - [SMALL_STATE(4073)] = 153866, - [SMALL_STATE(4074)] = 153899, - [SMALL_STATE(4075)] = 153930, - [SMALL_STATE(4076)] = 153969, - [SMALL_STATE(4077)] = 154010, - [SMALL_STATE(4078)] = 154047, - [SMALL_STATE(4079)] = 154084, - [SMALL_STATE(4080)] = 154115, - [SMALL_STATE(4081)] = 154154, - [SMALL_STATE(4082)] = 154185, - [SMALL_STATE(4083)] = 154218, - [SMALL_STATE(4084)] = 154253, - [SMALL_STATE(4085)] = 154284, - [SMALL_STATE(4086)] = 154319, - [SMALL_STATE(4087)] = 154350, - [SMALL_STATE(4088)] = 154385, - [SMALL_STATE(4089)] = 154432, - [SMALL_STATE(4090)] = 154463, - [SMALL_STATE(4091)] = 154500, - [SMALL_STATE(4092)] = 154545, - [SMALL_STATE(4093)] = 154592, - [SMALL_STATE(4094)] = 154639, - [SMALL_STATE(4095)] = 154677, - [SMALL_STATE(4096)] = 154707, - [SMALL_STATE(4097)] = 154757, - [SMALL_STATE(4098)] = 154793, - [SMALL_STATE(4099)] = 154827, - [SMALL_STATE(4100)] = 154857, - [SMALL_STATE(4101)] = 154895, - [SMALL_STATE(4102)] = 154925, - [SMALL_STATE(4103)] = 154957, - [SMALL_STATE(4104)] = 154989, - [SMALL_STATE(4105)] = 155021, - [SMALL_STATE(4106)] = 155053, - [SMALL_STATE(4107)] = 155083, - [SMALL_STATE(4108)] = 155115, - [SMALL_STATE(4109)] = 155145, - [SMALL_STATE(4110)] = 155177, - [SMALL_STATE(4111)] = 155209, - [SMALL_STATE(4112)] = 155243, - [SMALL_STATE(4113)] = 155273, - [SMALL_STATE(4114)] = 155313, - [SMALL_STATE(4115)] = 155345, - [SMALL_STATE(4116)] = 155379, - [SMALL_STATE(4117)] = 155417, - [SMALL_STATE(4118)] = 155447, - [SMALL_STATE(4119)] = 155485, - [SMALL_STATE(4120)] = 155515, - [SMALL_STATE(4121)] = 155545, - [SMALL_STATE(4122)] = 155575, - [SMALL_STATE(4123)] = 155609, - [SMALL_STATE(4124)] = 155639, - [SMALL_STATE(4125)] = 155673, - [SMALL_STATE(4126)] = 155705, - [SMALL_STATE(4127)] = 155735, - [SMALL_STATE(4128)] = 155773, - [SMALL_STATE(4129)] = 155806, - [SMALL_STATE(4130)] = 155835, - [SMALL_STATE(4131)] = 155866, - [SMALL_STATE(4132)] = 155899, - [SMALL_STATE(4133)] = 155930, - [SMALL_STATE(4134)] = 155963, - [SMALL_STATE(4135)] = 155994, - [SMALL_STATE(4136)] = 156029, - [SMALL_STATE(4137)] = 156060, - [SMALL_STATE(4138)] = 156097, - [SMALL_STATE(4139)] = 156128, - [SMALL_STATE(4140)] = 156157, - [SMALL_STATE(4141)] = 156194, - [SMALL_STATE(4142)] = 156227, - [SMALL_STATE(4143)] = 156260, - [SMALL_STATE(4144)] = 156297, - [SMALL_STATE(4145)] = 156334, - [SMALL_STATE(4146)] = 156365, - [SMALL_STATE(4147)] = 156394, - [SMALL_STATE(4148)] = 156423, - [SMALL_STATE(4149)] = 156452, - [SMALL_STATE(4150)] = 156481, - [SMALL_STATE(4151)] = 156510, - [SMALL_STATE(4152)] = 156539, - [SMALL_STATE(4153)] = 156576, - [SMALL_STATE(4154)] = 156613, - [SMALL_STATE(4155)] = 156650, - [SMALL_STATE(4156)] = 156687, - [SMALL_STATE(4157)] = 156718, - [SMALL_STATE(4158)] = 156755, - [SMALL_STATE(4159)] = 156784, - [SMALL_STATE(4160)] = 156813, - [SMALL_STATE(4161)] = 156846, - [SMALL_STATE(4162)] = 156877, - [SMALL_STATE(4163)] = 156906, - [SMALL_STATE(4164)] = 156935, - [SMALL_STATE(4165)] = 156964, - [SMALL_STATE(4166)] = 156993, - [SMALL_STATE(4167)] = 157030, - [SMALL_STATE(4168)] = 157059, - [SMALL_STATE(4169)] = 157090, - [SMALL_STATE(4170)] = 157127, - [SMALL_STATE(4171)] = 157158, - [SMALL_STATE(4172)] = 157189, - [SMALL_STATE(4173)] = 157226, - [SMALL_STATE(4174)] = 157257, - [SMALL_STATE(4175)] = 157294, - [SMALL_STATE(4176)] = 157331, - [SMALL_STATE(4177)] = 157362, - [SMALL_STATE(4178)] = 157399, - [SMALL_STATE(4179)] = 157436, - [SMALL_STATE(4180)] = 157473, - [SMALL_STATE(4181)] = 157510, - [SMALL_STATE(4182)] = 157547, - [SMALL_STATE(4183)] = 157584, - [SMALL_STATE(4184)] = 157621, - [SMALL_STATE(4185)] = 157658, - [SMALL_STATE(4186)] = 157695, - [SMALL_STATE(4187)] = 157732, - [SMALL_STATE(4188)] = 157769, - [SMALL_STATE(4189)] = 157806, - [SMALL_STATE(4190)] = 157843, - [SMALL_STATE(4191)] = 157880, - [SMALL_STATE(4192)] = 157917, - [SMALL_STATE(4193)] = 157954, - [SMALL_STATE(4194)] = 157983, - [SMALL_STATE(4195)] = 158014, - [SMALL_STATE(4196)] = 158043, - [SMALL_STATE(4197)] = 158080, - [SMALL_STATE(4198)] = 158109, - [SMALL_STATE(4199)] = 158146, - [SMALL_STATE(4200)] = 158177, - [SMALL_STATE(4201)] = 158208, - [SMALL_STATE(4202)] = 158237, - [SMALL_STATE(4203)] = 158266, - [SMALL_STATE(4204)] = 158295, - [SMALL_STATE(4205)] = 158324, - [SMALL_STATE(4206)] = 158353, - [SMALL_STATE(4207)] = 158384, - [SMALL_STATE(4208)] = 158417, - [SMALL_STATE(4209)] = 158453, - [SMALL_STATE(4210)] = 158485, - [SMALL_STATE(4211)] = 158533, - [SMALL_STATE(4212)] = 158561, - [SMALL_STATE(4213)] = 158605, - [SMALL_STATE(4214)] = 158635, - [SMALL_STATE(4215)] = 158663, - [SMALL_STATE(4216)] = 158693, - [SMALL_STATE(4217)] = 158729, - [SMALL_STATE(4218)] = 158765, - [SMALL_STATE(4219)] = 158795, - [SMALL_STATE(4220)] = 158827, - [SMALL_STATE(4221)] = 158857, - [SMALL_STATE(4222)] = 158905, - [SMALL_STATE(4223)] = 158933, - [SMALL_STATE(4224)] = 158963, - [SMALL_STATE(4225)] = 158991, - [SMALL_STATE(4226)] = 159021, - [SMALL_STATE(4227)] = 159049, - [SMALL_STATE(4228)] = 159079, - [SMALL_STATE(4229)] = 159109, - [SMALL_STATE(4230)] = 159137, - [SMALL_STATE(4231)] = 159165, - [SMALL_STATE(4232)] = 159197, - [SMALL_STATE(4233)] = 159227, - [SMALL_STATE(4234)] = 159263, - [SMALL_STATE(4235)] = 159291, - [SMALL_STATE(4236)] = 159335, - [SMALL_STATE(4237)] = 159363, - [SMALL_STATE(4238)] = 159399, - [SMALL_STATE(4239)] = 159427, - [SMALL_STATE(4240)] = 159455, - [SMALL_STATE(4241)] = 159483, - [SMALL_STATE(4242)] = 159511, - [SMALL_STATE(4243)] = 159547, - [SMALL_STATE(4244)] = 159575, - [SMALL_STATE(4245)] = 159611, - [SMALL_STATE(4246)] = 159643, - [SMALL_STATE(4247)] = 159679, - [SMALL_STATE(4248)] = 159707, - [SMALL_STATE(4249)] = 159737, - [SMALL_STATE(4250)] = 159767, - [SMALL_STATE(4251)] = 159797, - [SMALL_STATE(4252)] = 159833, - [SMALL_STATE(4253)] = 159865, - [SMALL_STATE(4254)] = 159897, - [SMALL_STATE(4255)] = 159929, - [SMALL_STATE(4256)] = 159957, - [SMALL_STATE(4257)] = 159993, - [SMALL_STATE(4258)] = 160025, - [SMALL_STATE(4259)] = 160057, - [SMALL_STATE(4260)] = 160093, - [SMALL_STATE(4261)] = 160129, - [SMALL_STATE(4262)] = 160177, - [SMALL_STATE(4263)] = 160213, - [SMALL_STATE(4264)] = 160249, - [SMALL_STATE(4265)] = 160285, - [SMALL_STATE(4266)] = 160313, - [SMALL_STATE(4267)] = 160349, - [SMALL_STATE(4268)] = 160385, - [SMALL_STATE(4269)] = 160421, - [SMALL_STATE(4270)] = 160457, - [SMALL_STATE(4271)] = 160485, - [SMALL_STATE(4272)] = 160521, - [SMALL_STATE(4273)] = 160557, - [SMALL_STATE(4274)] = 160585, - [SMALL_STATE(4275)] = 160621, - [SMALL_STATE(4276)] = 160657, - [SMALL_STATE(4277)] = 160693, - [SMALL_STATE(4278)] = 160721, - [SMALL_STATE(4279)] = 160757, - [SMALL_STATE(4280)] = 160793, - [SMALL_STATE(4281)] = 160829, - [SMALL_STATE(4282)] = 160865, - [SMALL_STATE(4283)] = 160901, - [SMALL_STATE(4284)] = 160929, - [SMALL_STATE(4285)] = 160957, - [SMALL_STATE(4286)] = 160995, - [SMALL_STATE(4287)] = 161031, - [SMALL_STATE(4288)] = 161065, - [SMALL_STATE(4289)] = 161097, - [SMALL_STATE(4290)] = 161133, - [SMALL_STATE(4291)] = 161181, - [SMALL_STATE(4292)] = 161213, - [SMALL_STATE(4293)] = 161245, - [SMALL_STATE(4294)] = 161281, - [SMALL_STATE(4295)] = 161319, - [SMALL_STATE(4296)] = 161363, - [SMALL_STATE(4297)] = 161407, - [SMALL_STATE(4298)] = 161451, - [SMALL_STATE(4299)] = 161483, - [SMALL_STATE(4300)] = 161518, - [SMALL_STATE(4301)] = 161553, - [SMALL_STATE(4302)] = 161586, - [SMALL_STATE(4303)] = 161619, - [SMALL_STATE(4304)] = 161650, - [SMALL_STATE(4305)] = 161677, - [SMALL_STATE(4306)] = 161704, - [SMALL_STATE(4307)] = 161731, - [SMALL_STATE(4308)] = 161758, - [SMALL_STATE(4309)] = 161793, - [SMALL_STATE(4310)] = 161820, - [SMALL_STATE(4311)] = 161855, - [SMALL_STATE(4312)] = 161886, - [SMALL_STATE(4313)] = 161913, - [SMALL_STATE(4314)] = 161942, - [SMALL_STATE(4315)] = 161973, - [SMALL_STATE(4316)] = 162004, - [SMALL_STATE(4317)] = 162033, - [SMALL_STATE(4318)] = 162064, - [SMALL_STATE(4319)] = 162095, - [SMALL_STATE(4320)] = 162122, - [SMALL_STATE(4321)] = 162149, - [SMALL_STATE(4322)] = 162180, - [SMALL_STATE(4323)] = 162211, - [SMALL_STATE(4324)] = 162238, - [SMALL_STATE(4325)] = 162265, - [SMALL_STATE(4326)] = 162294, - [SMALL_STATE(4327)] = 162323, - [SMALL_STATE(4328)] = 162354, - [SMALL_STATE(4329)] = 162385, - [SMALL_STATE(4330)] = 162416, - [SMALL_STATE(4331)] = 162447, - [SMALL_STATE(4332)] = 162478, - [SMALL_STATE(4333)] = 162511, - [SMALL_STATE(4334)] = 162544, - [SMALL_STATE(4335)] = 162575, - [SMALL_STATE(4336)] = 162606, - [SMALL_STATE(4337)] = 162633, - [SMALL_STATE(4338)] = 162660, - [SMALL_STATE(4339)] = 162691, - [SMALL_STATE(4340)] = 162722, - [SMALL_STATE(4341)] = 162755, - [SMALL_STATE(4342)] = 162788, - [SMALL_STATE(4343)] = 162815, - [SMALL_STATE(4344)] = 162842, - [SMALL_STATE(4345)] = 162869, - [SMALL_STATE(4346)] = 162896, - [SMALL_STATE(4347)] = 162925, - [SMALL_STATE(4348)] = 162954, - [SMALL_STATE(4349)] = 162985, - [SMALL_STATE(4350)] = 163016, - [SMALL_STATE(4351)] = 163047, - [SMALL_STATE(4352)] = 163078, - [SMALL_STATE(4353)] = 163111, - [SMALL_STATE(4354)] = 163144, - [SMALL_STATE(4355)] = 163171, - [SMALL_STATE(4356)] = 163198, - [SMALL_STATE(4357)] = 163229, - [SMALL_STATE(4358)] = 163260, - [SMALL_STATE(4359)] = 163291, - [SMALL_STATE(4360)] = 163324, - [SMALL_STATE(4361)] = 163357, - [SMALL_STATE(4362)] = 163392, - [SMALL_STATE(4363)] = 163423, - [SMALL_STATE(4364)] = 163454, - [SMALL_STATE(4365)] = 163489, - [SMALL_STATE(4366)] = 163520, - [SMALL_STATE(4367)] = 163555, - [SMALL_STATE(4368)] = 163582, - [SMALL_STATE(4369)] = 163617, - [SMALL_STATE(4370)] = 163652, - [SMALL_STATE(4371)] = 163687, - [SMALL_STATE(4372)] = 163722, - [SMALL_STATE(4373)] = 163757, - [SMALL_STATE(4374)] = 163792, - [SMALL_STATE(4375)] = 163827, - [SMALL_STATE(4376)] = 163862, - [SMALL_STATE(4377)] = 163895, - [SMALL_STATE(4378)] = 163928, - [SMALL_STATE(4379)] = 163963, - [SMALL_STATE(4380)] = 163998, - [SMALL_STATE(4381)] = 164029, - [SMALL_STATE(4382)] = 164064, - [SMALL_STATE(4383)] = 164099, - [SMALL_STATE(4384)] = 164134, - [SMALL_STATE(4385)] = 164169, - [SMALL_STATE(4386)] = 164196, - [SMALL_STATE(4387)] = 164223, - [SMALL_STATE(4388)] = 164258, - [SMALL_STATE(4389)] = 164293, - [SMALL_STATE(4390)] = 164328, - [SMALL_STATE(4391)] = 164363, - [SMALL_STATE(4392)] = 164390, - [SMALL_STATE(4393)] = 164425, - [SMALL_STATE(4394)] = 164460, - [SMALL_STATE(4395)] = 164491, - [SMALL_STATE(4396)] = 164522, - [SMALL_STATE(4397)] = 164553, - [SMALL_STATE(4398)] = 164578, - [SMALL_STATE(4399)] = 164603, - [SMALL_STATE(4400)] = 164628, - [SMALL_STATE(4401)] = 164655, - [SMALL_STATE(4402)] = 164686, - [SMALL_STATE(4403)] = 164717, - [SMALL_STATE(4404)] = 164742, - [SMALL_STATE(4405)] = 164767, - [SMALL_STATE(4406)] = 164794, - [SMALL_STATE(4407)] = 164821, - [SMALL_STATE(4408)] = 164850, - [SMALL_STATE(4409)] = 164879, - [SMALL_STATE(4410)] = 164910, - [SMALL_STATE(4411)] = 164945, - [SMALL_STATE(4412)] = 164972, - [SMALL_STATE(4413)] = 164997, - [SMALL_STATE(4414)] = 165022, - [SMALL_STATE(4415)] = 165047, - [SMALL_STATE(4416)] = 165074, - [SMALL_STATE(4417)] = 165101, - [SMALL_STATE(4418)] = 165128, - [SMALL_STATE(4419)] = 165155, - [SMALL_STATE(4420)] = 165182, - [SMALL_STATE(4421)] = 165209, - [SMALL_STATE(4422)] = 165238, - [SMALL_STATE(4423)] = 165267, - [SMALL_STATE(4424)] = 165298, - [SMALL_STATE(4425)] = 165329, - [SMALL_STATE(4426)] = 165360, - [SMALL_STATE(4427)] = 165391, - [SMALL_STATE(4428)] = 165424, - [SMALL_STATE(4429)] = 165457, - [SMALL_STATE(4430)] = 165484, - [SMALL_STATE(4431)] = 165511, - [SMALL_STATE(4432)] = 165540, - [SMALL_STATE(4433)] = 165569, - [SMALL_STATE(4434)] = 165598, - [SMALL_STATE(4435)] = 165629, - [SMALL_STATE(4436)] = 165660, - [SMALL_STATE(4437)] = 165689, - [SMALL_STATE(4438)] = 165716, - [SMALL_STATE(4439)] = 165743, - [SMALL_STATE(4440)] = 165770, - [SMALL_STATE(4441)] = 165797, - [SMALL_STATE(4442)] = 165826, - [SMALL_STATE(4443)] = 165855, - [SMALL_STATE(4444)] = 165886, - [SMALL_STATE(4445)] = 165917, - [SMALL_STATE(4446)] = 165948, - [SMALL_STATE(4447)] = 165979, - [SMALL_STATE(4448)] = 166012, - [SMALL_STATE(4449)] = 166045, - [SMALL_STATE(4450)] = 166070, - [SMALL_STATE(4451)] = 166095, - [SMALL_STATE(4452)] = 166122, - [SMALL_STATE(4453)] = 166149, - [SMALL_STATE(4454)] = 166178, - [SMALL_STATE(4455)] = 166205, - [SMALL_STATE(4456)] = 166234, - [SMALL_STATE(4457)] = 166261, - [SMALL_STATE(4458)] = 166288, - [SMALL_STATE(4459)] = 166315, - [SMALL_STATE(4460)] = 166346, - [SMALL_STATE(4461)] = 166377, - [SMALL_STATE(4462)] = 166410, - [SMALL_STATE(4463)] = 166443, - [SMALL_STATE(4464)] = 166470, - [SMALL_STATE(4465)] = 166501, - [SMALL_STATE(4466)] = 166528, - [SMALL_STATE(4467)] = 166559, - [SMALL_STATE(4468)] = 166586, - [SMALL_STATE(4469)] = 166617, - [SMALL_STATE(4470)] = 166648, - [SMALL_STATE(4471)] = 166675, - [SMALL_STATE(4472)] = 166702, - [SMALL_STATE(4473)] = 166729, - [SMALL_STATE(4474)] = 166756, - [SMALL_STATE(4475)] = 166783, - [SMALL_STATE(4476)] = 166810, - [SMALL_STATE(4477)] = 166839, - [SMALL_STATE(4478)] = 166868, - [SMALL_STATE(4479)] = 166901, - [SMALL_STATE(4480)] = 166932, - [SMALL_STATE(4481)] = 166959, - [SMALL_STATE(4482)] = 166990, - [SMALL_STATE(4483)] = 167017, - [SMALL_STATE(4484)] = 167048, - [SMALL_STATE(4485)] = 167075, - [SMALL_STATE(4486)] = 167104, - [SMALL_STATE(4487)] = 167133, - [SMALL_STATE(4488)] = 167164, - [SMALL_STATE(4489)] = 167195, - [SMALL_STATE(4490)] = 167226, - [SMALL_STATE(4491)] = 167257, - [SMALL_STATE(4492)] = 167286, - [SMALL_STATE(4493)] = 167313, - [SMALL_STATE(4494)] = 167340, - [SMALL_STATE(4495)] = 167373, - [SMALL_STATE(4496)] = 167402, - [SMALL_STATE(4497)] = 167435, - [SMALL_STATE(4498)] = 167470, - [SMALL_STATE(4499)] = 167507, - [SMALL_STATE(4500)] = 167542, - [SMALL_STATE(4501)] = 167573, - [SMALL_STATE(4502)] = 167604, - [SMALL_STATE(4503)] = 167629, - [SMALL_STATE(4504)] = 167660, - [SMALL_STATE(4505)] = 167691, - [SMALL_STATE(4506)] = 167715, - [SMALL_STATE(4507)] = 167745, - [SMALL_STATE(4508)] = 167775, - [SMALL_STATE(4509)] = 167799, - [SMALL_STATE(4510)] = 167823, - [SMALL_STATE(4511)] = 167849, - [SMALL_STATE(4512)] = 167873, - [SMALL_STATE(4513)] = 167897, - [SMALL_STATE(4514)] = 167927, - [SMALL_STATE(4515)] = 167953, - [SMALL_STATE(4516)] = 167985, - [SMALL_STATE(4517)] = 168013, - [SMALL_STATE(4518)] = 168039, - [SMALL_STATE(4519)] = 168069, - [SMALL_STATE(4520)] = 168099, - [SMALL_STATE(4521)] = 168123, - [SMALL_STATE(4522)] = 168175, - [SMALL_STATE(4523)] = 168227, - [SMALL_STATE(4524)] = 168253, - [SMALL_STATE(4525)] = 168277, - [SMALL_STATE(4526)] = 168303, - [SMALL_STATE(4527)] = 168329, - [SMALL_STATE(4528)] = 168357, - [SMALL_STATE(4529)] = 168383, - [SMALL_STATE(4530)] = 168413, - [SMALL_STATE(4531)] = 168443, - [SMALL_STATE(4532)] = 168471, - [SMALL_STATE(4533)] = 168523, - [SMALL_STATE(4534)] = 168575, - [SMALL_STATE(4535)] = 168601, - [SMALL_STATE(4536)] = 168633, - [SMALL_STATE(4537)] = 168661, - [SMALL_STATE(4538)] = 168687, - [SMALL_STATE(4539)] = 168711, - [SMALL_STATE(4540)] = 168735, - [SMALL_STATE(4541)] = 168761, - [SMALL_STATE(4542)] = 168787, - [SMALL_STATE(4543)] = 168817, - [SMALL_STATE(4544)] = 168841, - [SMALL_STATE(4545)] = 168893, - [SMALL_STATE(4546)] = 168923, - [SMALL_STATE(4547)] = 168949, - [SMALL_STATE(4548)] = 168975, - [SMALL_STATE(4549)] = 169001, - [SMALL_STATE(4550)] = 169025, - [SMALL_STATE(4551)] = 169051, - [SMALL_STATE(4552)] = 169081, - [SMALL_STATE(4553)] = 169111, - [SMALL_STATE(4554)] = 169139, - [SMALL_STATE(4555)] = 169169, - [SMALL_STATE(4556)] = 169221, - [SMALL_STATE(4557)] = 169251, - [SMALL_STATE(4558)] = 169279, - [SMALL_STATE(4559)] = 169309, - [SMALL_STATE(4560)] = 169361, - [SMALL_STATE(4561)] = 169391, - [SMALL_STATE(4562)] = 169421, - [SMALL_STATE(4563)] = 169451, - [SMALL_STATE(4564)] = 169479, - [SMALL_STATE(4565)] = 169507, - [SMALL_STATE(4566)] = 169537, - [SMALL_STATE(4567)] = 169567, - [SMALL_STATE(4568)] = 169597, - [SMALL_STATE(4569)] = 169627, - [SMALL_STATE(4570)] = 169679, - [SMALL_STATE(4571)] = 169731, - [SMALL_STATE(4572)] = 169783, - [SMALL_STATE(4573)] = 169809, - [SMALL_STATE(4574)] = 169837, - [SMALL_STATE(4575)] = 169867, - [SMALL_STATE(4576)] = 169893, - [SMALL_STATE(4577)] = 169923, - [SMALL_STATE(4578)] = 169953, - [SMALL_STATE(4579)] = 169983, - [SMALL_STATE(4580)] = 170013, - [SMALL_STATE(4581)] = 170037, - [SMALL_STATE(4582)] = 170067, - [SMALL_STATE(4583)] = 170093, - [SMALL_STATE(4584)] = 170119, - [SMALL_STATE(4585)] = 170147, - [SMALL_STATE(4586)] = 170177, - [SMALL_STATE(4587)] = 170205, - [SMALL_STATE(4588)] = 170235, - [SMALL_STATE(4589)] = 170261, - [SMALL_STATE(4590)] = 170291, - [SMALL_STATE(4591)] = 170317, - [SMALL_STATE(4592)] = 170347, - [SMALL_STATE(4593)] = 170375, - [SMALL_STATE(4594)] = 170405, - [SMALL_STATE(4595)] = 170437, - [SMALL_STATE(4596)] = 170463, - [SMALL_STATE(4597)] = 170491, - [SMALL_STATE(4598)] = 170519, - [SMALL_STATE(4599)] = 170545, - [SMALL_STATE(4600)] = 170573, - [SMALL_STATE(4601)] = 170601, - [SMALL_STATE(4602)] = 170625, - [SMALL_STATE(4603)] = 170651, - [SMALL_STATE(4604)] = 170679, - [SMALL_STATE(4605)] = 170725, - [SMALL_STATE(4606)] = 170753, - [SMALL_STATE(4607)] = 170783, - [SMALL_STATE(4608)] = 170808, - [SMALL_STATE(4609)] = 170833, - [SMALL_STATE(4610)] = 170858, - [SMALL_STATE(4611)] = 170887, - [SMALL_STATE(4612)] = 170912, - [SMALL_STATE(4613)] = 170937, - [SMALL_STATE(4614)] = 170962, - [SMALL_STATE(4615)] = 170991, - [SMALL_STATE(4616)] = 171016, - [SMALL_STATE(4617)] = 171041, - [SMALL_STATE(4618)] = 171066, - [SMALL_STATE(4619)] = 171089, - [SMALL_STATE(4620)] = 171134, - [SMALL_STATE(4621)] = 171163, - [SMALL_STATE(4622)] = 171188, - [SMALL_STATE(4623)] = 171213, - [SMALL_STATE(4624)] = 171238, - [SMALL_STATE(4625)] = 171263, - [SMALL_STATE(4626)] = 171288, - [SMALL_STATE(4627)] = 171313, - [SMALL_STATE(4628)] = 171338, - [SMALL_STATE(4629)] = 171363, - [SMALL_STATE(4630)] = 171388, - [SMALL_STATE(4631)] = 171413, - [SMALL_STATE(4632)] = 171438, - [SMALL_STATE(4633)] = 171463, - [SMALL_STATE(4634)] = 171490, - [SMALL_STATE(4635)] = 171515, - [SMALL_STATE(4636)] = 171544, - [SMALL_STATE(4637)] = 171573, - [SMALL_STATE(4638)] = 171602, - [SMALL_STATE(4639)] = 171629, - [SMALL_STATE(4640)] = 171654, - [SMALL_STATE(4641)] = 171683, - [SMALL_STATE(4642)] = 171708, - [SMALL_STATE(4643)] = 171733, - [SMALL_STATE(4644)] = 171762, - [SMALL_STATE(4645)] = 171793, - [SMALL_STATE(4646)] = 171818, - [SMALL_STATE(4647)] = 171843, - [SMALL_STATE(4648)] = 171872, - [SMALL_STATE(4649)] = 171901, - [SMALL_STATE(4650)] = 171930, - [SMALL_STATE(4651)] = 171955, - [SMALL_STATE(4652)] = 171986, - [SMALL_STATE(4653)] = 172015, - [SMALL_STATE(4654)] = 172044, - [SMALL_STATE(4655)] = 172069, - [SMALL_STATE(4656)] = 172098, - [SMALL_STATE(4657)] = 172123, - [SMALL_STATE(4658)] = 172148, - [SMALL_STATE(4659)] = 172173, - [SMALL_STATE(4660)] = 172198, - [SMALL_STATE(4661)] = 172223, - [SMALL_STATE(4662)] = 172248, - [SMALL_STATE(4663)] = 172273, - [SMALL_STATE(4664)] = 172298, - [SMALL_STATE(4665)] = 172327, - [SMALL_STATE(4666)] = 172356, - [SMALL_STATE(4667)] = 172385, - [SMALL_STATE(4668)] = 172414, - [SMALL_STATE(4669)] = 172439, - [SMALL_STATE(4670)] = 172464, - [SMALL_STATE(4671)] = 172489, - [SMALL_STATE(4672)] = 172518, - [SMALL_STATE(4673)] = 172543, - [SMALL_STATE(4674)] = 172568, - [SMALL_STATE(4675)] = 172595, - [SMALL_STATE(4676)] = 172624, - [SMALL_STATE(4677)] = 172649, - [SMALL_STATE(4678)] = 172678, - [SMALL_STATE(4679)] = 172703, - [SMALL_STATE(4680)] = 172728, - [SMALL_STATE(4681)] = 172757, - [SMALL_STATE(4682)] = 172786, - [SMALL_STATE(4683)] = 172811, - [SMALL_STATE(4684)] = 172840, - [SMALL_STATE(4685)] = 172865, - [SMALL_STATE(4686)] = 172890, - [SMALL_STATE(4687)] = 172921, - [SMALL_STATE(4688)] = 172952, - [SMALL_STATE(4689)] = 172977, - [SMALL_STATE(4690)] = 173002, - [SMALL_STATE(4691)] = 173029, - [SMALL_STATE(4692)] = 173058, - [SMALL_STATE(4693)] = 173083, - [SMALL_STATE(4694)] = 173108, - [SMALL_STATE(4695)] = 173133, - [SMALL_STATE(4696)] = 173158, - [SMALL_STATE(4697)] = 173185, - [SMALL_STATE(4698)] = 173214, - [SMALL_STATE(4699)] = 173241, - [SMALL_STATE(4700)] = 173266, - [SMALL_STATE(4701)] = 173295, - [SMALL_STATE(4702)] = 173320, - [SMALL_STATE(4703)] = 173345, - [SMALL_STATE(4704)] = 173374, - [SMALL_STATE(4705)] = 173403, - [SMALL_STATE(4706)] = 173430, - [SMALL_STATE(4707)] = 173455, - [SMALL_STATE(4708)] = 173478, - [SMALL_STATE(4709)] = 173503, - [SMALL_STATE(4710)] = 173528, - [SMALL_STATE(4711)] = 173557, - [SMALL_STATE(4712)] = 173586, - [SMALL_STATE(4713)] = 173611, - [SMALL_STATE(4714)] = 173636, - [SMALL_STATE(4715)] = 173661, - [SMALL_STATE(4716)] = 173686, - [SMALL_STATE(4717)] = 173711, - [SMALL_STATE(4718)] = 173736, - [SMALL_STATE(4719)] = 173759, - [SMALL_STATE(4720)] = 173786, - [SMALL_STATE(4721)] = 173811, - [SMALL_STATE(4722)] = 173836, - [SMALL_STATE(4723)] = 173861, - [SMALL_STATE(4724)] = 173890, - [SMALL_STATE(4725)] = 173915, - [SMALL_STATE(4726)] = 173944, - [SMALL_STATE(4727)] = 173969, - [SMALL_STATE(4728)] = 173998, - [SMALL_STATE(4729)] = 174027, - [SMALL_STATE(4730)] = 174050, - [SMALL_STATE(4731)] = 174075, - [SMALL_STATE(4732)] = 174100, - [SMALL_STATE(4733)] = 174125, - [SMALL_STATE(4734)] = 174150, - [SMALL_STATE(4735)] = 174175, - [SMALL_STATE(4736)] = 174204, - [SMALL_STATE(4737)] = 174229, - [SMALL_STATE(4738)] = 174254, - [SMALL_STATE(4739)] = 174283, - [SMALL_STATE(4740)] = 174308, - [SMALL_STATE(4741)] = 174337, - [SMALL_STATE(4742)] = 174362, - [SMALL_STATE(4743)] = 174389, - [SMALL_STATE(4744)] = 174418, - [SMALL_STATE(4745)] = 174443, - [SMALL_STATE(4746)] = 174472, - [SMALL_STATE(4747)] = 174495, - [SMALL_STATE(4748)] = 174520, - [SMALL_STATE(4749)] = 174549, - [SMALL_STATE(4750)] = 174572, - [SMALL_STATE(4751)] = 174597, - [SMALL_STATE(4752)] = 174622, - [SMALL_STATE(4753)] = 174651, - [SMALL_STATE(4754)] = 174680, - [SMALL_STATE(4755)] = 174705, - [SMALL_STATE(4756)] = 174732, - [SMALL_STATE(4757)] = 174755, - [SMALL_STATE(4758)] = 174796, - [SMALL_STATE(4759)] = 174825, - [SMALL_STATE(4760)] = 174854, - [SMALL_STATE(4761)] = 174879, - [SMALL_STATE(4762)] = 174908, - [SMALL_STATE(4763)] = 174933, - [SMALL_STATE(4764)] = 174960, - [SMALL_STATE(4765)] = 174985, - [SMALL_STATE(4766)] = 175010, - [SMALL_STATE(4767)] = 175035, - [SMALL_STATE(4768)] = 175060, - [SMALL_STATE(4769)] = 175085, - [SMALL_STATE(4770)] = 175110, - [SMALL_STATE(4771)] = 175139, - [SMALL_STATE(4772)] = 175164, - [SMALL_STATE(4773)] = 175189, - [SMALL_STATE(4774)] = 175214, - [SMALL_STATE(4775)] = 175239, - [SMALL_STATE(4776)] = 175284, - [SMALL_STATE(4777)] = 175311, - [SMALL_STATE(4778)] = 175336, - [SMALL_STATE(4779)] = 175365, - [SMALL_STATE(4780)] = 175390, - [SMALL_STATE(4781)] = 175419, - [SMALL_STATE(4782)] = 175446, - [SMALL_STATE(4783)] = 175470, - [SMALL_STATE(4784)] = 175492, - [SMALL_STATE(4785)] = 175532, - [SMALL_STATE(4786)] = 175556, - [SMALL_STATE(4787)] = 175580, - [SMALL_STATE(4788)] = 175604, - [SMALL_STATE(4789)] = 175628, - [SMALL_STATE(4790)] = 175652, - [SMALL_STATE(4791)] = 175678, - [SMALL_STATE(4792)] = 175702, - [SMALL_STATE(4793)] = 175726, - [SMALL_STATE(4794)] = 175750, - [SMALL_STATE(4795)] = 175772, - [SMALL_STATE(4796)] = 175796, - [SMALL_STATE(4797)] = 175820, - [SMALL_STATE(4798)] = 175842, - [SMALL_STATE(4799)] = 175866, - [SMALL_STATE(4800)] = 175890, - [SMALL_STATE(4801)] = 175914, - [SMALL_STATE(4802)] = 175938, - [SMALL_STATE(4803)] = 175984, - [SMALL_STATE(4804)] = 176030, - [SMALL_STATE(4805)] = 176054, - [SMALL_STATE(4806)] = 176076, - [SMALL_STATE(4807)] = 176122, - [SMALL_STATE(4808)] = 176146, - [SMALL_STATE(4809)] = 176170, - [SMALL_STATE(4810)] = 176194, - [SMALL_STATE(4811)] = 176220, - [SMALL_STATE(4812)] = 176246, - [SMALL_STATE(4813)] = 176272, - [SMALL_STATE(4814)] = 176296, - [SMALL_STATE(4815)] = 176320, - [SMALL_STATE(4816)] = 176346, - [SMALL_STATE(4817)] = 176370, - [SMALL_STATE(4818)] = 176394, - [SMALL_STATE(4819)] = 176418, - [SMALL_STATE(4820)] = 176460, - [SMALL_STATE(4821)] = 176484, - [SMALL_STATE(4822)] = 176530, - [SMALL_STATE(4823)] = 176554, - [SMALL_STATE(4824)] = 176600, - [SMALL_STATE(4825)] = 176644, - [SMALL_STATE(4826)] = 176668, - [SMALL_STATE(4827)] = 176692, - [SMALL_STATE(4828)] = 176716, - [SMALL_STATE(4829)] = 176740, - [SMALL_STATE(4830)] = 176764, - [SMALL_STATE(4831)] = 176788, - [SMALL_STATE(4832)] = 176812, - [SMALL_STATE(4833)] = 176836, - [SMALL_STATE(4834)] = 176860, - [SMALL_STATE(4835)] = 176884, - [SMALL_STATE(4836)] = 176908, - [SMALL_STATE(4837)] = 176932, - [SMALL_STATE(4838)] = 176956, - [SMALL_STATE(4839)] = 176980, - [SMALL_STATE(4840)] = 177004, - [SMALL_STATE(4841)] = 177028, - [SMALL_STATE(4842)] = 177052, - [SMALL_STATE(4843)] = 177076, - [SMALL_STATE(4844)] = 177100, - [SMALL_STATE(4845)] = 177124, - [SMALL_STATE(4846)] = 177148, - [SMALL_STATE(4847)] = 177172, - [SMALL_STATE(4848)] = 177196, - [SMALL_STATE(4849)] = 177220, - [SMALL_STATE(4850)] = 177244, - [SMALL_STATE(4851)] = 177268, - [SMALL_STATE(4852)] = 177292, - [SMALL_STATE(4853)] = 177316, - [SMALL_STATE(4854)] = 177340, - [SMALL_STATE(4855)] = 177364, - [SMALL_STATE(4856)] = 177388, - [SMALL_STATE(4857)] = 177412, - [SMALL_STATE(4858)] = 177436, - [SMALL_STATE(4859)] = 177460, - [SMALL_STATE(4860)] = 177484, - [SMALL_STATE(4861)] = 177508, - [SMALL_STATE(4862)] = 177532, - [SMALL_STATE(4863)] = 177556, - [SMALL_STATE(4864)] = 177580, - [SMALL_STATE(4865)] = 177604, - [SMALL_STATE(4866)] = 177626, - [SMALL_STATE(4867)] = 177650, - [SMALL_STATE(4868)] = 177674, - [SMALL_STATE(4869)] = 177698, - [SMALL_STATE(4870)] = 177722, - [SMALL_STATE(4871)] = 177746, - [SMALL_STATE(4872)] = 177770, - [SMALL_STATE(4873)] = 177794, - [SMALL_STATE(4874)] = 177816, - [SMALL_STATE(4875)] = 177840, - [SMALL_STATE(4876)] = 177864, - [SMALL_STATE(4877)] = 177888, - [SMALL_STATE(4878)] = 177934, - [SMALL_STATE(4879)] = 177980, - [SMALL_STATE(4880)] = 178004, - [SMALL_STATE(4881)] = 178028, - [SMALL_STATE(4882)] = 178052, - [SMALL_STATE(4883)] = 178076, - [SMALL_STATE(4884)] = 178100, - [SMALL_STATE(4885)] = 178146, - [SMALL_STATE(4886)] = 178192, - [SMALL_STATE(4887)] = 178216, - [SMALL_STATE(4888)] = 178240, - [SMALL_STATE(4889)] = 178264, - [SMALL_STATE(4890)] = 178288, - [SMALL_STATE(4891)] = 178312, - [SMALL_STATE(4892)] = 178336, - [SMALL_STATE(4893)] = 178360, - [SMALL_STATE(4894)] = 178384, - [SMALL_STATE(4895)] = 178408, - [SMALL_STATE(4896)] = 178430, - [SMALL_STATE(4897)] = 178452, - [SMALL_STATE(4898)] = 178474, - [SMALL_STATE(4899)] = 178512, - [SMALL_STATE(4900)] = 178536, - [SMALL_STATE(4901)] = 178558, - [SMALL_STATE(4902)] = 178582, - [SMALL_STATE(4903)] = 178606, - [SMALL_STATE(4904)] = 178630, - [SMALL_STATE(4905)] = 178654, - [SMALL_STATE(4906)] = 178678, - [SMALL_STATE(4907)] = 178702, - [SMALL_STATE(4908)] = 178726, - [SMALL_STATE(4909)] = 178750, - [SMALL_STATE(4910)] = 178794, - [SMALL_STATE(4911)] = 178818, - [SMALL_STATE(4912)] = 178840, - [SMALL_STATE(4913)] = 178864, - [SMALL_STATE(4914)] = 178888, - [SMALL_STATE(4915)] = 178912, - [SMALL_STATE(4916)] = 178954, - [SMALL_STATE(4917)] = 178976, - [SMALL_STATE(4918)] = 179000, - [SMALL_STATE(4919)] = 179024, - [SMALL_STATE(4920)] = 179048, - [SMALL_STATE(4921)] = 179086, - [SMALL_STATE(4922)] = 179110, - [SMALL_STATE(4923)] = 179134, - [SMALL_STATE(4924)] = 179158, - [SMALL_STATE(4925)] = 179182, - [SMALL_STATE(4926)] = 179206, - [SMALL_STATE(4927)] = 179230, - [SMALL_STATE(4928)] = 179264, - [SMALL_STATE(4929)] = 179288, - [SMALL_STATE(4930)] = 179312, - [SMALL_STATE(4931)] = 179336, - [SMALL_STATE(4932)] = 179360, - [SMALL_STATE(4933)] = 179384, - [SMALL_STATE(4934)] = 179408, - [SMALL_STATE(4935)] = 179432, - [SMALL_STATE(4936)] = 179456, - [SMALL_STATE(4937)] = 179480, - [SMALL_STATE(4938)] = 179504, - [SMALL_STATE(4939)] = 179528, - [SMALL_STATE(4940)] = 179552, - [SMALL_STATE(4941)] = 179576, - [SMALL_STATE(4942)] = 179600, - [SMALL_STATE(4943)] = 179624, - [SMALL_STATE(4944)] = 179648, - [SMALL_STATE(4945)] = 179672, - [SMALL_STATE(4946)] = 179696, - [SMALL_STATE(4947)] = 179720, - [SMALL_STATE(4948)] = 179744, - [SMALL_STATE(4949)] = 179768, - [SMALL_STATE(4950)] = 179792, - [SMALL_STATE(4951)] = 179816, - [SMALL_STATE(4952)] = 179840, - [SMALL_STATE(4953)] = 179864, - [SMALL_STATE(4954)] = 179888, - [SMALL_STATE(4955)] = 179910, - [SMALL_STATE(4956)] = 179932, - [SMALL_STATE(4957)] = 179954, - [SMALL_STATE(4958)] = 179980, - [SMALL_STATE(4959)] = 180006, - [SMALL_STATE(4960)] = 180048, - [SMALL_STATE(4961)] = 180072, - [SMALL_STATE(4962)] = 180096, - [SMALL_STATE(4963)] = 180118, - [SMALL_STATE(4964)] = 180140, - [SMALL_STATE(4965)] = 180162, - [SMALL_STATE(4966)] = 180184, - [SMALL_STATE(4967)] = 180206, - [SMALL_STATE(4968)] = 180228, - [SMALL_STATE(4969)] = 180268, - [SMALL_STATE(4970)] = 180292, - [SMALL_STATE(4971)] = 180332, - [SMALL_STATE(4972)] = 180356, - [SMALL_STATE(4973)] = 180380, - [SMALL_STATE(4974)] = 180408, - [SMALL_STATE(4975)] = 180436, - [SMALL_STATE(4976)] = 180464, - [SMALL_STATE(4977)] = 180492, - [SMALL_STATE(4978)] = 180520, - [SMALL_STATE(4979)] = 180548, - [SMALL_STATE(4980)] = 180576, - [SMALL_STATE(4981)] = 180604, - [SMALL_STATE(4982)] = 180632, - [SMALL_STATE(4983)] = 180660, - [SMALL_STATE(4984)] = 180688, - [SMALL_STATE(4985)] = 180716, - [SMALL_STATE(4986)] = 180754, - [SMALL_STATE(4987)] = 180778, - [SMALL_STATE(4988)] = 180800, - [SMALL_STATE(4989)] = 180822, - [SMALL_STATE(4990)] = 180868, - [SMALL_STATE(4991)] = 180890, - [SMALL_STATE(4992)] = 180912, - [SMALL_STATE(4993)] = 180938, - [SMALL_STATE(4994)] = 180961, - [SMALL_STATE(4995)] = 180988, - [SMALL_STATE(4996)] = 181027, - [SMALL_STATE(4997)] = 181048, - [SMALL_STATE(4998)] = 181069, - [SMALL_STATE(4999)] = 181108, - [SMALL_STATE(5000)] = 181149, - [SMALL_STATE(5001)] = 181188, - [SMALL_STATE(5002)] = 181209, - [SMALL_STATE(5003)] = 181236, - [SMALL_STATE(5004)] = 181257, - [SMALL_STATE(5005)] = 181278, - [SMALL_STATE(5006)] = 181299, - [SMALL_STATE(5007)] = 181340, - [SMALL_STATE(5008)] = 181361, - [SMALL_STATE(5009)] = 181382, - [SMALL_STATE(5010)] = 181403, - [SMALL_STATE(5011)] = 181424, - [SMALL_STATE(5012)] = 181463, - [SMALL_STATE(5013)] = 181484, - [SMALL_STATE(5014)] = 181511, - [SMALL_STATE(5015)] = 181532, - [SMALL_STATE(5016)] = 181555, - [SMALL_STATE(5017)] = 181582, - [SMALL_STATE(5018)] = 181605, - [SMALL_STATE(5019)] = 181626, - [SMALL_STATE(5020)] = 181647, - [SMALL_STATE(5021)] = 181670, - [SMALL_STATE(5022)] = 181707, - [SMALL_STATE(5023)] = 181728, - [SMALL_STATE(5024)] = 181769, - [SMALL_STATE(5025)] = 181806, - [SMALL_STATE(5026)] = 181829, - [SMALL_STATE(5027)] = 181856, - [SMALL_STATE(5028)] = 181895, - [SMALL_STATE(5029)] = 181918, - [SMALL_STATE(5030)] = 181941, - [SMALL_STATE(5031)] = 181980, - [SMALL_STATE(5032)] = 182003, - [SMALL_STATE(5033)] = 182042, - [SMALL_STATE(5034)] = 182081, - [SMALL_STATE(5035)] = 182102, - [SMALL_STATE(5036)] = 182129, - [SMALL_STATE(5037)] = 182152, - [SMALL_STATE(5038)] = 182173, - [SMALL_STATE(5039)] = 182214, - [SMALL_STATE(5040)] = 182235, - [SMALL_STATE(5041)] = 182276, - [SMALL_STATE(5042)] = 182299, - [SMALL_STATE(5043)] = 182320, - [SMALL_STATE(5044)] = 182341, - [SMALL_STATE(5045)] = 182362, - [SMALL_STATE(5046)] = 182383, - [SMALL_STATE(5047)] = 182404, - [SMALL_STATE(5048)] = 182427, - [SMALL_STATE(5049)] = 182448, - [SMALL_STATE(5050)] = 182469, - [SMALL_STATE(5051)] = 182490, - [SMALL_STATE(5052)] = 182531, - [SMALL_STATE(5053)] = 182552, - [SMALL_STATE(5054)] = 182573, - [SMALL_STATE(5055)] = 182596, - [SMALL_STATE(5056)] = 182623, - [SMALL_STATE(5057)] = 182644, - [SMALL_STATE(5058)] = 182665, - [SMALL_STATE(5059)] = 182688, - [SMALL_STATE(5060)] = 182711, - [SMALL_STATE(5061)] = 182734, - [SMALL_STATE(5062)] = 182757, - [SMALL_STATE(5063)] = 182780, - [SMALL_STATE(5064)] = 182803, - [SMALL_STATE(5065)] = 182824, - [SMALL_STATE(5066)] = 182845, - [SMALL_STATE(5067)] = 182868, - [SMALL_STATE(5068)] = 182891, - [SMALL_STATE(5069)] = 182914, - [SMALL_STATE(5070)] = 182937, - [SMALL_STATE(5071)] = 182960, - [SMALL_STATE(5072)] = 182983, - [SMALL_STATE(5073)] = 183006, - [SMALL_STATE(5074)] = 183029, - [SMALL_STATE(5075)] = 183052, - [SMALL_STATE(5076)] = 183073, - [SMALL_STATE(5077)] = 183094, - [SMALL_STATE(5078)] = 183115, - [SMALL_STATE(5079)] = 183136, - [SMALL_STATE(5080)] = 183157, - [SMALL_STATE(5081)] = 183178, - [SMALL_STATE(5082)] = 183199, - [SMALL_STATE(5083)] = 183220, - [SMALL_STATE(5084)] = 183241, - [SMALL_STATE(5085)] = 183262, - [SMALL_STATE(5086)] = 183289, - [SMALL_STATE(5087)] = 183310, - [SMALL_STATE(5088)] = 183331, - [SMALL_STATE(5089)] = 183352, - [SMALL_STATE(5090)] = 183373, - [SMALL_STATE(5091)] = 183394, - [SMALL_STATE(5092)] = 183415, - [SMALL_STATE(5093)] = 183436, - [SMALL_STATE(5094)] = 183457, - [SMALL_STATE(5095)] = 183478, - [SMALL_STATE(5096)] = 183499, - [SMALL_STATE(5097)] = 183538, - [SMALL_STATE(5098)] = 183559, - [SMALL_STATE(5099)] = 183582, - [SMALL_STATE(5100)] = 183605, - [SMALL_STATE(5101)] = 183628, - [SMALL_STATE(5102)] = 183649, - [SMALL_STATE(5103)] = 183672, - [SMALL_STATE(5104)] = 183693, - [SMALL_STATE(5105)] = 183714, - [SMALL_STATE(5106)] = 183755, - [SMALL_STATE(5107)] = 183776, - [SMALL_STATE(5108)] = 183803, - [SMALL_STATE(5109)] = 183824, - [SMALL_STATE(5110)] = 183851, - [SMALL_STATE(5111)] = 183878, - [SMALL_STATE(5112)] = 183905, - [SMALL_STATE(5113)] = 183932, - [SMALL_STATE(5114)] = 183959, - [SMALL_STATE(5115)] = 183986, - [SMALL_STATE(5116)] = 184013, - [SMALL_STATE(5117)] = 184040, - [SMALL_STATE(5118)] = 184067, - [SMALL_STATE(5119)] = 184094, - [SMALL_STATE(5120)] = 184121, - [SMALL_STATE(5121)] = 184148, - [SMALL_STATE(5122)] = 184171, - [SMALL_STATE(5123)] = 184208, - [SMALL_STATE(5124)] = 184245, - [SMALL_STATE(5125)] = 184282, - [SMALL_STATE(5126)] = 184319, - [SMALL_STATE(5127)] = 184356, - [SMALL_STATE(5128)] = 184393, - [SMALL_STATE(5129)] = 184414, - [SMALL_STATE(5130)] = 184437, - [SMALL_STATE(5131)] = 184458, - [SMALL_STATE(5132)] = 184479, - [SMALL_STATE(5133)] = 184502, - [SMALL_STATE(5134)] = 184523, - [SMALL_STATE(5135)] = 184564, - [SMALL_STATE(5136)] = 184597, - [SMALL_STATE(5137)] = 184618, - [SMALL_STATE(5138)] = 184659, - [SMALL_STATE(5139)] = 184680, - [SMALL_STATE(5140)] = 184703, - [SMALL_STATE(5141)] = 184724, - [SMALL_STATE(5142)] = 184745, - [SMALL_STATE(5143)] = 184780, - [SMALL_STATE(5144)] = 184815, - [SMALL_STATE(5145)] = 184850, - [SMALL_STATE(5146)] = 184885, - [SMALL_STATE(5147)] = 184912, - [SMALL_STATE(5148)] = 184935, - [SMALL_STATE(5149)] = 184958, - [SMALL_STATE(5150)] = 184981, - [SMALL_STATE(5151)] = 185004, - [SMALL_STATE(5152)] = 185045, - [SMALL_STATE(5153)] = 185066, - [SMALL_STATE(5154)] = 185089, - [SMALL_STATE(5155)] = 185112, - [SMALL_STATE(5156)] = 185133, - [SMALL_STATE(5157)] = 185154, - [SMALL_STATE(5158)] = 185191, - [SMALL_STATE(5159)] = 185228, - [SMALL_STATE(5160)] = 185255, - [SMALL_STATE(5161)] = 185276, - [SMALL_STATE(5162)] = 185297, - [SMALL_STATE(5163)] = 185320, - [SMALL_STATE(5164)] = 185343, - [SMALL_STATE(5165)] = 185364, - [SMALL_STATE(5166)] = 185385, - [SMALL_STATE(5167)] = 185406, - [SMALL_STATE(5168)] = 185432, - [SMALL_STATE(5169)] = 185466, - [SMALL_STATE(5170)] = 185502, - [SMALL_STATE(5171)] = 185532, - [SMALL_STATE(5172)] = 185562, - [SMALL_STATE(5173)] = 185586, - [SMALL_STATE(5174)] = 185620, - [SMALL_STATE(5175)] = 185650, - [SMALL_STATE(5176)] = 185680, - [SMALL_STATE(5177)] = 185710, - [SMALL_STATE(5178)] = 185740, - [SMALL_STATE(5179)] = 185770, - [SMALL_STATE(5180)] = 185794, - [SMALL_STATE(5181)] = 185822, - [SMALL_STATE(5182)] = 185848, - [SMALL_STATE(5183)] = 185882, - [SMALL_STATE(5184)] = 185912, - [SMALL_STATE(5185)] = 185942, - [SMALL_STATE(5186)] = 185978, - [SMALL_STATE(5187)] = 186002, - [SMALL_STATE(5188)] = 186034, - [SMALL_STATE(5189)] = 186060, - [SMALL_STATE(5190)] = 186092, - [SMALL_STATE(5191)] = 186124, - [SMALL_STATE(5192)] = 186156, - [SMALL_STATE(5193)] = 186186, - [SMALL_STATE(5194)] = 186216, - [SMALL_STATE(5195)] = 186242, - [SMALL_STATE(5196)] = 186268, - [SMALL_STATE(5197)] = 186296, - [SMALL_STATE(5198)] = 186326, - [SMALL_STATE(5199)] = 186356, - [SMALL_STATE(5200)] = 186386, - [SMALL_STATE(5201)] = 186416, - [SMALL_STATE(5202)] = 186448, - [SMALL_STATE(5203)] = 186478, - [SMALL_STATE(5204)] = 186510, - [SMALL_STATE(5205)] = 186532, - [SMALL_STATE(5206)] = 186556, - [SMALL_STATE(5207)] = 186580, - [SMALL_STATE(5208)] = 186612, - [SMALL_STATE(5209)] = 186642, - [SMALL_STATE(5210)] = 186680, - [SMALL_STATE(5211)] = 186716, - [SMALL_STATE(5212)] = 186752, - [SMALL_STATE(5213)] = 186786, - [SMALL_STATE(5214)] = 186816, - [SMALL_STATE(5215)] = 186842, - [SMALL_STATE(5216)] = 186874, - [SMALL_STATE(5217)] = 186904, - [SMALL_STATE(5218)] = 186938, - [SMALL_STATE(5219)] = 186964, - [SMALL_STATE(5220)] = 186994, - [SMALL_STATE(5221)] = 187018, - [SMALL_STATE(5222)] = 187042, - [SMALL_STATE(5223)] = 187072, - [SMALL_STATE(5224)] = 187110, - [SMALL_STATE(5225)] = 187136, - [SMALL_STATE(5226)] = 187170, - [SMALL_STATE(5227)] = 187196, - [SMALL_STATE(5228)] = 187222, - [SMALL_STATE(5229)] = 187248, - [SMALL_STATE(5230)] = 187286, - [SMALL_STATE(5231)] = 187316, - [SMALL_STATE(5232)] = 187346, - [SMALL_STATE(5233)] = 187384, - [SMALL_STATE(5234)] = 187410, - [SMALL_STATE(5235)] = 187440, - [SMALL_STATE(5236)] = 187472, - [SMALL_STATE(5237)] = 187498, - [SMALL_STATE(5238)] = 187522, - [SMALL_STATE(5239)] = 187558, - [SMALL_STATE(5240)] = 187593, - [SMALL_STATE(5241)] = 187628, - [SMALL_STATE(5242)] = 187653, - [SMALL_STATE(5243)] = 187684, - [SMALL_STATE(5244)] = 187719, - [SMALL_STATE(5245)] = 187744, - [SMALL_STATE(5246)] = 187769, - [SMALL_STATE(5247)] = 187798, - [SMALL_STATE(5248)] = 187823, - [SMALL_STATE(5249)] = 187844, - [SMALL_STATE(5250)] = 187865, - [SMALL_STATE(5251)] = 187888, - [SMALL_STATE(5252)] = 187911, - [SMALL_STATE(5253)] = 187936, - [SMALL_STATE(5254)] = 187969, - [SMALL_STATE(5255)] = 187990, - [SMALL_STATE(5256)] = 188019, - [SMALL_STATE(5257)] = 188040, - [SMALL_STATE(5258)] = 188075, - [SMALL_STATE(5259)] = 188110, - [SMALL_STATE(5260)] = 188145, - [SMALL_STATE(5261)] = 188180, - [SMALL_STATE(5262)] = 188215, - [SMALL_STATE(5263)] = 188246, - [SMALL_STATE(5264)] = 188281, - [SMALL_STATE(5265)] = 188316, - [SMALL_STATE(5266)] = 188347, - [SMALL_STATE(5267)] = 188374, - [SMALL_STATE(5268)] = 188405, - [SMALL_STATE(5269)] = 188440, - [SMALL_STATE(5270)] = 188475, - [SMALL_STATE(5271)] = 188508, - [SMALL_STATE(5272)] = 188531, - [SMALL_STATE(5273)] = 188566, - [SMALL_STATE(5274)] = 188595, - [SMALL_STATE(5275)] = 188628, - [SMALL_STATE(5276)] = 188663, - [SMALL_STATE(5277)] = 188692, - [SMALL_STATE(5278)] = 188727, - [SMALL_STATE(5279)] = 188762, - [SMALL_STATE(5280)] = 188797, - [SMALL_STATE(5281)] = 188828, - [SMALL_STATE(5282)] = 188857, - [SMALL_STATE(5283)] = 188892, - [SMALL_STATE(5284)] = 188927, - [SMALL_STATE(5285)] = 188956, - [SMALL_STATE(5286)] = 188985, - [SMALL_STATE(5287)] = 189016, - [SMALL_STATE(5288)] = 189051, - [SMALL_STATE(5289)] = 189086, - [SMALL_STATE(5290)] = 189121, - [SMALL_STATE(5291)] = 189154, - [SMALL_STATE(5292)] = 189187, - [SMALL_STATE(5293)] = 189216, - [SMALL_STATE(5294)] = 189245, - [SMALL_STATE(5295)] = 189274, - [SMALL_STATE(5296)] = 189303, - [SMALL_STATE(5297)] = 189332, - [SMALL_STATE(5298)] = 189361, - [SMALL_STATE(5299)] = 189390, - [SMALL_STATE(5300)] = 189413, - [SMALL_STATE(5301)] = 189448, - [SMALL_STATE(5302)] = 189481, - [SMALL_STATE(5303)] = 189510, - [SMALL_STATE(5304)] = 189545, - [SMALL_STATE(5305)] = 189580, - [SMALL_STATE(5306)] = 189615, - [SMALL_STATE(5307)] = 189650, - [SMALL_STATE(5308)] = 189679, - [SMALL_STATE(5309)] = 189708, - [SMALL_STATE(5310)] = 189737, - [SMALL_STATE(5311)] = 189766, - [SMALL_STATE(5312)] = 189795, - [SMALL_STATE(5313)] = 189824, - [SMALL_STATE(5314)] = 189853, - [SMALL_STATE(5315)] = 189882, - [SMALL_STATE(5316)] = 189911, - [SMALL_STATE(5317)] = 189932, - [SMALL_STATE(5318)] = 189967, - [SMALL_STATE(5319)] = 190002, - [SMALL_STATE(5320)] = 190023, - [SMALL_STATE(5321)] = 190048, - [SMALL_STATE(5322)] = 190075, - [SMALL_STATE(5323)] = 190096, - [SMALL_STATE(5324)] = 190125, - [SMALL_STATE(5325)] = 190160, - [SMALL_STATE(5326)] = 190189, - [SMALL_STATE(5327)] = 190214, - [SMALL_STATE(5328)] = 190235, - [SMALL_STATE(5329)] = 190270, - [SMALL_STATE(5330)] = 190305, - [SMALL_STATE(5331)] = 190340, - [SMALL_STATE(5332)] = 190375, - [SMALL_STATE(5333)] = 190408, - [SMALL_STATE(5334)] = 190431, - [SMALL_STATE(5335)] = 190452, - [SMALL_STATE(5336)] = 190473, - [SMALL_STATE(5337)] = 190498, - [SMALL_STATE(5338)] = 190533, - [SMALL_STATE(5339)] = 190568, - [SMALL_STATE(5340)] = 190589, - [SMALL_STATE(5341)] = 190612, - [SMALL_STATE(5342)] = 190645, - [SMALL_STATE(5343)] = 190678, - [SMALL_STATE(5344)] = 190713, - [SMALL_STATE(5345)] = 190736, - [SMALL_STATE(5346)] = 190769, - [SMALL_STATE(5347)] = 190800, - [SMALL_STATE(5348)] = 190825, - [SMALL_STATE(5349)] = 190846, - [SMALL_STATE(5350)] = 190881, - [SMALL_STATE(5351)] = 190904, - [SMALL_STATE(5352)] = 190939, - [SMALL_STATE(5353)] = 190962, - [SMALL_STATE(5354)] = 190991, - [SMALL_STATE(5355)] = 191012, - [SMALL_STATE(5356)] = 191040, - [SMALL_STATE(5357)] = 191064, - [SMALL_STATE(5358)] = 191084, - [SMALL_STATE(5359)] = 191104, - [SMALL_STATE(5360)] = 191124, - [SMALL_STATE(5361)] = 191144, - [SMALL_STATE(5362)] = 191172, - [SMALL_STATE(5363)] = 191202, - [SMALL_STATE(5364)] = 191226, - [SMALL_STATE(5365)] = 191246, - [SMALL_STATE(5366)] = 191274, - [SMALL_STATE(5367)] = 191298, - [SMALL_STATE(5368)] = 191322, - [SMALL_STATE(5369)] = 191346, - [SMALL_STATE(5370)] = 191374, - [SMALL_STATE(5371)] = 191398, - [SMALL_STATE(5372)] = 191422, - [SMALL_STATE(5373)] = 191452, - [SMALL_STATE(5374)] = 191476, - [SMALL_STATE(5375)] = 191500, - [SMALL_STATE(5376)] = 191528, - [SMALL_STATE(5377)] = 191558, - [SMALL_STATE(5378)] = 191582, - [SMALL_STATE(5379)] = 191608, - [SMALL_STATE(5380)] = 191636, - [SMALL_STATE(5381)] = 191664, - [SMALL_STATE(5382)] = 191692, - [SMALL_STATE(5383)] = 191720, - [SMALL_STATE(5384)] = 191750, - [SMALL_STATE(5385)] = 191774, - [SMALL_STATE(5386)] = 191802, - [SMALL_STATE(5387)] = 191830, - [SMALL_STATE(5388)] = 191860, - [SMALL_STATE(5389)] = 191890, - [SMALL_STATE(5390)] = 191918, - [SMALL_STATE(5391)] = 191946, - [SMALL_STATE(5392)] = 191974, - [SMALL_STATE(5393)] = 192002, - [SMALL_STATE(5394)] = 192030, - [SMALL_STATE(5395)] = 192058, - [SMALL_STATE(5396)] = 192088, - [SMALL_STATE(5397)] = 192118, - [SMALL_STATE(5398)] = 192146, - [SMALL_STATE(5399)] = 192174, - [SMALL_STATE(5400)] = 192202, - [SMALL_STATE(5401)] = 192230, - [SMALL_STATE(5402)] = 192258, - [SMALL_STATE(5403)] = 192288, - [SMALL_STATE(5404)] = 192318, - [SMALL_STATE(5405)] = 192348, - [SMALL_STATE(5406)] = 192378, - [SMALL_STATE(5407)] = 192410, - [SMALL_STATE(5408)] = 192430, - [SMALL_STATE(5409)] = 192460, - [SMALL_STATE(5410)] = 192490, - [SMALL_STATE(5411)] = 192516, - [SMALL_STATE(5412)] = 192546, - [SMALL_STATE(5413)] = 192576, - [SMALL_STATE(5414)] = 192598, - [SMALL_STATE(5415)] = 192628, - [SMALL_STATE(5416)] = 192658, - [SMALL_STATE(5417)] = 192682, - [SMALL_STATE(5418)] = 192712, - [SMALL_STATE(5419)] = 192742, - [SMALL_STATE(5420)] = 192762, - [SMALL_STATE(5421)] = 192792, - [SMALL_STATE(5422)] = 192822, - [SMALL_STATE(5423)] = 192852, - [SMALL_STATE(5424)] = 192882, - [SMALL_STATE(5425)] = 192902, - [SMALL_STATE(5426)] = 192922, - [SMALL_STATE(5427)] = 192948, - [SMALL_STATE(5428)] = 192980, - [SMALL_STATE(5429)] = 193010, - [SMALL_STATE(5430)] = 193034, - [SMALL_STATE(5431)] = 193054, - [SMALL_STATE(5432)] = 193084, - [SMALL_STATE(5433)] = 193114, - [SMALL_STATE(5434)] = 193136, - [SMALL_STATE(5435)] = 193166, - [SMALL_STATE(5436)] = 193196, - [SMALL_STATE(5437)] = 193226, - [SMALL_STATE(5438)] = 193256, - [SMALL_STATE(5439)] = 193286, - [SMALL_STATE(5440)] = 193306, - [SMALL_STATE(5441)] = 193328, - [SMALL_STATE(5442)] = 193358, - [SMALL_STATE(5443)] = 193380, - [SMALL_STATE(5444)] = 193402, - [SMALL_STATE(5445)] = 193432, - [SMALL_STATE(5446)] = 193458, - [SMALL_STATE(5447)] = 193480, - [SMALL_STATE(5448)] = 193502, - [SMALL_STATE(5449)] = 193524, - [SMALL_STATE(5450)] = 193554, - [SMALL_STATE(5451)] = 193584, - [SMALL_STATE(5452)] = 193614, - [SMALL_STATE(5453)] = 193644, - [SMALL_STATE(5454)] = 193664, - [SMALL_STATE(5455)] = 193694, - [SMALL_STATE(5456)] = 193718, - [SMALL_STATE(5457)] = 193748, - [SMALL_STATE(5458)] = 193778, - [SMALL_STATE(5459)] = 193808, - [SMALL_STATE(5460)] = 193838, - [SMALL_STATE(5461)] = 193858, - [SMALL_STATE(5462)] = 193888, - [SMALL_STATE(5463)] = 193912, - [SMALL_STATE(5464)] = 193932, - [SMALL_STATE(5465)] = 193962, - [SMALL_STATE(5466)] = 193992, - [SMALL_STATE(5467)] = 194012, - [SMALL_STATE(5468)] = 194042, - [SMALL_STATE(5469)] = 194062, - [SMALL_STATE(5470)] = 194092, - [SMALL_STATE(5471)] = 194112, - [SMALL_STATE(5472)] = 194132, - [SMALL_STATE(5473)] = 194160, - [SMALL_STATE(5474)] = 194190, - [SMALL_STATE(5475)] = 194212, - [SMALL_STATE(5476)] = 194232, - [SMALL_STATE(5477)] = 194252, - [SMALL_STATE(5478)] = 194278, - [SMALL_STATE(5479)] = 194300, - [SMALL_STATE(5480)] = 194330, - [SMALL_STATE(5481)] = 194350, - [SMALL_STATE(5482)] = 194370, - [SMALL_STATE(5483)] = 194394, - [SMALL_STATE(5484)] = 194414, - [SMALL_STATE(5485)] = 194434, - [SMALL_STATE(5486)] = 194464, - [SMALL_STATE(5487)] = 194493, - [SMALL_STATE(5488)] = 194510, - [SMALL_STATE(5489)] = 194537, - [SMALL_STATE(5490)] = 194556, - [SMALL_STATE(5491)] = 194575, - [SMALL_STATE(5492)] = 194596, - [SMALL_STATE(5493)] = 194623, - [SMALL_STATE(5494)] = 194640, - [SMALL_STATE(5495)] = 194661, - [SMALL_STATE(5496)] = 194688, - [SMALL_STATE(5497)] = 194715, - [SMALL_STATE(5498)] = 194734, - [SMALL_STATE(5499)] = 194753, - [SMALL_STATE(5500)] = 194780, - [SMALL_STATE(5501)] = 194805, - [SMALL_STATE(5502)] = 194832, - [SMALL_STATE(5503)] = 194851, - [SMALL_STATE(5504)] = 194878, - [SMALL_STATE(5505)] = 194897, - [SMALL_STATE(5506)] = 194924, - [SMALL_STATE(5507)] = 194951, - [SMALL_STATE(5508)] = 194978, - [SMALL_STATE(5509)] = 195005, - [SMALL_STATE(5510)] = 195032, - [SMALL_STATE(5511)] = 195059, - [SMALL_STATE(5512)] = 195086, - [SMALL_STATE(5513)] = 195113, - [SMALL_STATE(5514)] = 195140, - [SMALL_STATE(5515)] = 195167, - [SMALL_STATE(5516)] = 195194, - [SMALL_STATE(5517)] = 195221, - [SMALL_STATE(5518)] = 195248, - [SMALL_STATE(5519)] = 195275, - [SMALL_STATE(5520)] = 195302, - [SMALL_STATE(5521)] = 195329, - [SMALL_STATE(5522)] = 195356, - [SMALL_STATE(5523)] = 195383, - [SMALL_STATE(5524)] = 195410, - [SMALL_STATE(5525)] = 195437, - [SMALL_STATE(5526)] = 195464, - [SMALL_STATE(5527)] = 195491, - [SMALL_STATE(5528)] = 195518, - [SMALL_STATE(5529)] = 195545, - [SMALL_STATE(5530)] = 195564, - [SMALL_STATE(5531)] = 195583, - [SMALL_STATE(5532)] = 195604, - [SMALL_STATE(5533)] = 195625, - [SMALL_STATE(5534)] = 195644, - [SMALL_STATE(5535)] = 195663, - [SMALL_STATE(5536)] = 195684, - [SMALL_STATE(5537)] = 195705, - [SMALL_STATE(5538)] = 195726, - [SMALL_STATE(5539)] = 195745, - [SMALL_STATE(5540)] = 195772, - [SMALL_STATE(5541)] = 195799, - [SMALL_STATE(5542)] = 195820, - [SMALL_STATE(5543)] = 195839, - [SMALL_STATE(5544)] = 195860, - [SMALL_STATE(5545)] = 195881, - [SMALL_STATE(5546)] = 195900, - [SMALL_STATE(5547)] = 195923, - [SMALL_STATE(5548)] = 195942, - [SMALL_STATE(5549)] = 195963, - [SMALL_STATE(5550)] = 195982, - [SMALL_STATE(5551)] = 196011, - [SMALL_STATE(5552)] = 196030, - [SMALL_STATE(5553)] = 196049, - [SMALL_STATE(5554)] = 196076, - [SMALL_STATE(5555)] = 196103, - [SMALL_STATE(5556)] = 196122, - [SMALL_STATE(5557)] = 196139, - [SMALL_STATE(5558)] = 196160, - [SMALL_STATE(5559)] = 196181, - [SMALL_STATE(5560)] = 196202, - [SMALL_STATE(5561)] = 196225, - [SMALL_STATE(5562)] = 196250, - [SMALL_STATE(5563)] = 196277, - [SMALL_STATE(5564)] = 196298, - [SMALL_STATE(5565)] = 196315, - [SMALL_STATE(5566)] = 196334, - [SMALL_STATE(5567)] = 196361, - [SMALL_STATE(5568)] = 196380, - [SMALL_STATE(5569)] = 196401, - [SMALL_STATE(5570)] = 196430, - [SMALL_STATE(5571)] = 196449, - [SMALL_STATE(5572)] = 196466, - [SMALL_STATE(5573)] = 196483, - [SMALL_STATE(5574)] = 196502, - [SMALL_STATE(5575)] = 196519, - [SMALL_STATE(5576)] = 196546, - [SMALL_STATE(5577)] = 196567, - [SMALL_STATE(5578)] = 196584, - [SMALL_STATE(5579)] = 196603, - [SMALL_STATE(5580)] = 196622, - [SMALL_STATE(5581)] = 196641, - [SMALL_STATE(5582)] = 196660, - [SMALL_STATE(5583)] = 196681, - [SMALL_STATE(5584)] = 196702, - [SMALL_STATE(5585)] = 196719, - [SMALL_STATE(5586)] = 196746, - [SMALL_STATE(5587)] = 196765, - [SMALL_STATE(5588)] = 196784, - [SMALL_STATE(5589)] = 196811, - [SMALL_STATE(5590)] = 196830, - [SMALL_STATE(5591)] = 196851, - [SMALL_STATE(5592)] = 196878, - [SMALL_STATE(5593)] = 196897, - [SMALL_STATE(5594)] = 196916, - [SMALL_STATE(5595)] = 196943, - [SMALL_STATE(5596)] = 196964, - [SMALL_STATE(5597)] = 196991, - [SMALL_STATE(5598)] = 197008, - [SMALL_STATE(5599)] = 197027, - [SMALL_STATE(5600)] = 197046, - [SMALL_STATE(5601)] = 197067, - [SMALL_STATE(5602)] = 197086, - [SMALL_STATE(5603)] = 197113, - [SMALL_STATE(5604)] = 197140, - [SMALL_STATE(5605)] = 197163, - [SMALL_STATE(5606)] = 197188, - [SMALL_STATE(5607)] = 197215, - [SMALL_STATE(5608)] = 197232, - [SMALL_STATE(5609)] = 197255, - [SMALL_STATE(5610)] = 197280, - [SMALL_STATE(5611)] = 197303, - [SMALL_STATE(5612)] = 197324, - [SMALL_STATE(5613)] = 197343, - [SMALL_STATE(5614)] = 197364, - [SMALL_STATE(5615)] = 197383, - [SMALL_STATE(5616)] = 197410, - [SMALL_STATE(5617)] = 197429, - [SMALL_STATE(5618)] = 197448, - [SMALL_STATE(5619)] = 197465, - [SMALL_STATE(5620)] = 197483, - [SMALL_STATE(5621)] = 197509, - [SMALL_STATE(5622)] = 197529, - [SMALL_STATE(5623)] = 197555, - [SMALL_STATE(5624)] = 197571, - [SMALL_STATE(5625)] = 197597, - [SMALL_STATE(5626)] = 197615, - [SMALL_STATE(5627)] = 197641, - [SMALL_STATE(5628)] = 197667, - [SMALL_STATE(5629)] = 197685, - [SMALL_STATE(5630)] = 197701, - [SMALL_STATE(5631)] = 197727, - [SMALL_STATE(5632)] = 197745, - [SMALL_STATE(5633)] = 197767, - [SMALL_STATE(5634)] = 197783, - [SMALL_STATE(5635)] = 197809, - [SMALL_STATE(5636)] = 197835, - [SMALL_STATE(5637)] = 197855, - [SMALL_STATE(5638)] = 197875, - [SMALL_STATE(5639)] = 197901, - [SMALL_STATE(5640)] = 197921, - [SMALL_STATE(5641)] = 197947, - [SMALL_STATE(5642)] = 197973, - [SMALL_STATE(5643)] = 197991, - [SMALL_STATE(5644)] = 198007, - [SMALL_STATE(5645)] = 198025, - [SMALL_STATE(5646)] = 198043, - [SMALL_STATE(5647)] = 198069, - [SMALL_STATE(5648)] = 198095, - [SMALL_STATE(5649)] = 198121, - [SMALL_STATE(5650)] = 198147, - [SMALL_STATE(5651)] = 198165, - [SMALL_STATE(5652)] = 198187, - [SMALL_STATE(5653)] = 198205, - [SMALL_STATE(5654)] = 198223, - [SMALL_STATE(5655)] = 198241, - [SMALL_STATE(5656)] = 198267, - [SMALL_STATE(5657)] = 198293, - [SMALL_STATE(5658)] = 198319, - [SMALL_STATE(5659)] = 198345, - [SMALL_STATE(5660)] = 198369, - [SMALL_STATE(5661)] = 198387, - [SMALL_STATE(5662)] = 198405, - [SMALL_STATE(5663)] = 198423, - [SMALL_STATE(5664)] = 198441, - [SMALL_STATE(5665)] = 198467, - [SMALL_STATE(5666)] = 198493, - [SMALL_STATE(5667)] = 198511, - [SMALL_STATE(5668)] = 198529, - [SMALL_STATE(5669)] = 198547, - [SMALL_STATE(5670)] = 198567, - [SMALL_STATE(5671)] = 198585, - [SMALL_STATE(5672)] = 198603, - [SMALL_STATE(5673)] = 198621, - [SMALL_STATE(5674)] = 198639, - [SMALL_STATE(5675)] = 198665, - [SMALL_STATE(5676)] = 198693, - [SMALL_STATE(5677)] = 198719, - [SMALL_STATE(5678)] = 198739, - [SMALL_STATE(5679)] = 198765, - [SMALL_STATE(5680)] = 198793, - [SMALL_STATE(5681)] = 198813, - [SMALL_STATE(5682)] = 198837, - [SMALL_STATE(5683)] = 198857, - [SMALL_STATE(5684)] = 198883, - [SMALL_STATE(5685)] = 198909, - [SMALL_STATE(5686)] = 198925, - [SMALL_STATE(5687)] = 198951, - [SMALL_STATE(5688)] = 198977, - [SMALL_STATE(5689)] = 198995, - [SMALL_STATE(5690)] = 199013, - [SMALL_STATE(5691)] = 199033, - [SMALL_STATE(5692)] = 199057, - [SMALL_STATE(5693)] = 199083, - [SMALL_STATE(5694)] = 199101, - [SMALL_STATE(5695)] = 199127, - [SMALL_STATE(5696)] = 199153, - [SMALL_STATE(5697)] = 199173, - [SMALL_STATE(5698)] = 199199, - [SMALL_STATE(5699)] = 199225, - [SMALL_STATE(5700)] = 199243, - [SMALL_STATE(5701)] = 199269, - [SMALL_STATE(5702)] = 199289, - [SMALL_STATE(5703)] = 199315, - [SMALL_STATE(5704)] = 199341, - [SMALL_STATE(5705)] = 199359, - [SMALL_STATE(5706)] = 199383, - [SMALL_STATE(5707)] = 199409, - [SMALL_STATE(5708)] = 199435, - [SMALL_STATE(5709)] = 199453, - [SMALL_STATE(5710)] = 199479, - [SMALL_STATE(5711)] = 199505, - [SMALL_STATE(5712)] = 199531, - [SMALL_STATE(5713)] = 199547, - [SMALL_STATE(5714)] = 199571, - [SMALL_STATE(5715)] = 199597, - [SMALL_STATE(5716)] = 199623, - [SMALL_STATE(5717)] = 199649, - [SMALL_STATE(5718)] = 199675, - [SMALL_STATE(5719)] = 199701, - [SMALL_STATE(5720)] = 199717, - [SMALL_STATE(5721)] = 199733, - [SMALL_STATE(5722)] = 199751, - [SMALL_STATE(5723)] = 199777, - [SMALL_STATE(5724)] = 199803, - [SMALL_STATE(5725)] = 199821, - [SMALL_STATE(5726)] = 199847, - [SMALL_STATE(5727)] = 199873, - [SMALL_STATE(5728)] = 199899, - [SMALL_STATE(5729)] = 199925, - [SMALL_STATE(5730)] = 199951, - [SMALL_STATE(5731)] = 199977, - [SMALL_STATE(5732)] = 200003, - [SMALL_STATE(5733)] = 200029, - [SMALL_STATE(5734)] = 200055, - [SMALL_STATE(5735)] = 200081, - [SMALL_STATE(5736)] = 200107, - [SMALL_STATE(5737)] = 200128, - [SMALL_STATE(5738)] = 200147, - [SMALL_STATE(5739)] = 200172, - [SMALL_STATE(5740)] = 200189, - [SMALL_STATE(5741)] = 200214, - [SMALL_STATE(5742)] = 200231, - [SMALL_STATE(5743)] = 200250, - [SMALL_STATE(5744)] = 200267, - [SMALL_STATE(5745)] = 200290, - [SMALL_STATE(5746)] = 200315, - [SMALL_STATE(5747)] = 200340, - [SMALL_STATE(5748)] = 200359, - [SMALL_STATE(5749)] = 200382, - [SMALL_STATE(5750)] = 200407, - [SMALL_STATE(5751)] = 200432, - [SMALL_STATE(5752)] = 200457, - [SMALL_STATE(5753)] = 200482, - [SMALL_STATE(5754)] = 200499, - [SMALL_STATE(5755)] = 200524, - [SMALL_STATE(5756)] = 200547, - [SMALL_STATE(5757)] = 200564, - [SMALL_STATE(5758)] = 200589, - [SMALL_STATE(5759)] = 200606, - [SMALL_STATE(5760)] = 200629, - [SMALL_STATE(5761)] = 200654, - [SMALL_STATE(5762)] = 200679, - [SMALL_STATE(5763)] = 200704, - [SMALL_STATE(5764)] = 200727, - [SMALL_STATE(5765)] = 200748, - [SMALL_STATE(5766)] = 200773, - [SMALL_STATE(5767)] = 200798, - [SMALL_STATE(5768)] = 200819, - [SMALL_STATE(5769)] = 200836, - [SMALL_STATE(5770)] = 200851, - [SMALL_STATE(5771)] = 200866, - [SMALL_STATE(5772)] = 200889, - [SMALL_STATE(5773)] = 200912, - [SMALL_STATE(5774)] = 200935, - [SMALL_STATE(5775)] = 200960, - [SMALL_STATE(5776)] = 200985, - [SMALL_STATE(5777)] = 201008, - [SMALL_STATE(5778)] = 201031, - [SMALL_STATE(5779)] = 201048, - [SMALL_STATE(5780)] = 201065, - [SMALL_STATE(5781)] = 201088, - [SMALL_STATE(5782)] = 201105, - [SMALL_STATE(5783)] = 201128, - [SMALL_STATE(5784)] = 201153, - [SMALL_STATE(5785)] = 201178, - [SMALL_STATE(5786)] = 201203, - [SMALL_STATE(5787)] = 201226, - [SMALL_STATE(5788)] = 201251, - [SMALL_STATE(5789)] = 201274, - [SMALL_STATE(5790)] = 201299, - [SMALL_STATE(5791)] = 201322, - [SMALL_STATE(5792)] = 201347, - [SMALL_STATE(5793)] = 201372, - [SMALL_STATE(5794)] = 201397, - [SMALL_STATE(5795)] = 201414, - [SMALL_STATE(5796)] = 201439, - [SMALL_STATE(5797)] = 201456, - [SMALL_STATE(5798)] = 201481, - [SMALL_STATE(5799)] = 201506, - [SMALL_STATE(5800)] = 201523, - [SMALL_STATE(5801)] = 201542, - [SMALL_STATE(5802)] = 201567, - [SMALL_STATE(5803)] = 201592, - [SMALL_STATE(5804)] = 201617, - [SMALL_STATE(5805)] = 201638, - [SMALL_STATE(5806)] = 201659, - [SMALL_STATE(5807)] = 201684, - [SMALL_STATE(5808)] = 201709, - [SMALL_STATE(5809)] = 201730, - [SMALL_STATE(5810)] = 201755, - [SMALL_STATE(5811)] = 201774, - [SMALL_STATE(5812)] = 201795, - [SMALL_STATE(5813)] = 201820, - [SMALL_STATE(5814)] = 201845, - [SMALL_STATE(5815)] = 201870, - [SMALL_STATE(5816)] = 201887, - [SMALL_STATE(5817)] = 201904, - [SMALL_STATE(5818)] = 201927, - [SMALL_STATE(5819)] = 201944, - [SMALL_STATE(5820)] = 201963, - [SMALL_STATE(5821)] = 201986, - [SMALL_STATE(5822)] = 202005, - [SMALL_STATE(5823)] = 202030, - [SMALL_STATE(5824)] = 202055, - [SMALL_STATE(5825)] = 202072, - [SMALL_STATE(5826)] = 202097, - [SMALL_STATE(5827)] = 202114, - [SMALL_STATE(5828)] = 202131, - [SMALL_STATE(5829)] = 202154, - [SMALL_STATE(5830)] = 202177, - [SMALL_STATE(5831)] = 202198, - [SMALL_STATE(5832)] = 202215, - [SMALL_STATE(5833)] = 202232, - [SMALL_STATE(5834)] = 202255, - [SMALL_STATE(5835)] = 202272, - [SMALL_STATE(5836)] = 202291, - [SMALL_STATE(5837)] = 202312, - [SMALL_STATE(5838)] = 202337, - [SMALL_STATE(5839)] = 202362, - [SMALL_STATE(5840)] = 202387, - [SMALL_STATE(5841)] = 202412, - [SMALL_STATE(5842)] = 202437, - [SMALL_STATE(5843)] = 202454, - [SMALL_STATE(5844)] = 202471, - [SMALL_STATE(5845)] = 202488, - [SMALL_STATE(5846)] = 202513, - [SMALL_STATE(5847)] = 202534, - [SMALL_STATE(5848)] = 202559, - [SMALL_STATE(5849)] = 202576, - [SMALL_STATE(5850)] = 202601, - [SMALL_STATE(5851)] = 202626, - [SMALL_STATE(5852)] = 202643, - [SMALL_STATE(5853)] = 202668, - [SMALL_STATE(5854)] = 202691, - [SMALL_STATE(5855)] = 202708, - [SMALL_STATE(5856)] = 202729, - [SMALL_STATE(5857)] = 202752, - [SMALL_STATE(5858)] = 202777, - [SMALL_STATE(5859)] = 202798, - [SMALL_STATE(5860)] = 202815, - [SMALL_STATE(5861)] = 202840, - [SMALL_STATE(5862)] = 202865, - [SMALL_STATE(5863)] = 202882, - [SMALL_STATE(5864)] = 202899, - [SMALL_STATE(5865)] = 202924, - [SMALL_STATE(5866)] = 202947, - [SMALL_STATE(5867)] = 202964, - [SMALL_STATE(5868)] = 202989, - [SMALL_STATE(5869)] = 203006, - [SMALL_STATE(5870)] = 203031, - [SMALL_STATE(5871)] = 203048, - [SMALL_STATE(5872)] = 203073, - [SMALL_STATE(5873)] = 203098, - [SMALL_STATE(5874)] = 203123, - [SMALL_STATE(5875)] = 203144, - [SMALL_STATE(5876)] = 203169, - [SMALL_STATE(5877)] = 203188, - [SMALL_STATE(5878)] = 203205, - [SMALL_STATE(5879)] = 203230, - [SMALL_STATE(5880)] = 203255, - [SMALL_STATE(5881)] = 203272, - [SMALL_STATE(5882)] = 203297, - [SMALL_STATE(5883)] = 203322, - [SMALL_STATE(5884)] = 203345, - [SMALL_STATE(5885)] = 203362, - [SMALL_STATE(5886)] = 203379, - [SMALL_STATE(5887)] = 203396, - [SMALL_STATE(5888)] = 203417, - [SMALL_STATE(5889)] = 203434, - [SMALL_STATE(5890)] = 203459, - [SMALL_STATE(5891)] = 203484, - [SMALL_STATE(5892)] = 203509, - [SMALL_STATE(5893)] = 203534, - [SMALL_STATE(5894)] = 203557, - [SMALL_STATE(5895)] = 203574, - [SMALL_STATE(5896)] = 203599, - [SMALL_STATE(5897)] = 203624, - [SMALL_STATE(5898)] = 203647, - [SMALL_STATE(5899)] = 203664, - [SMALL_STATE(5900)] = 203689, - [SMALL_STATE(5901)] = 203714, - [SMALL_STATE(5902)] = 203739, - [SMALL_STATE(5903)] = 203764, - [SMALL_STATE(5904)] = 203789, - [SMALL_STATE(5905)] = 203808, - [SMALL_STATE(5906)] = 203833, - [SMALL_STATE(5907)] = 203854, - [SMALL_STATE(5908)] = 203871, - [SMALL_STATE(5909)] = 203896, - [SMALL_STATE(5910)] = 203921, - [SMALL_STATE(5911)] = 203938, - [SMALL_STATE(5912)] = 203955, - [SMALL_STATE(5913)] = 203972, - [SMALL_STATE(5914)] = 203995, - [SMALL_STATE(5915)] = 204012, - [SMALL_STATE(5916)] = 204037, - [SMALL_STATE(5917)] = 204062, - [SMALL_STATE(5918)] = 204079, - [SMALL_STATE(5919)] = 204104, - [SMALL_STATE(5920)] = 204127, - [SMALL_STATE(5921)] = 204148, - [SMALL_STATE(5922)] = 204173, - [SMALL_STATE(5923)] = 204190, - [SMALL_STATE(5924)] = 204215, - [SMALL_STATE(5925)] = 204240, - [SMALL_STATE(5926)] = 204265, - [SMALL_STATE(5927)] = 204282, - [SMALL_STATE(5928)] = 204305, - [SMALL_STATE(5929)] = 204330, - [SMALL_STATE(5930)] = 204347, - [SMALL_STATE(5931)] = 204372, - [SMALL_STATE(5932)] = 204393, - [SMALL_STATE(5933)] = 204410, - [SMALL_STATE(5934)] = 204427, - [SMALL_STATE(5935)] = 204452, - [SMALL_STATE(5936)] = 204475, - [SMALL_STATE(5937)] = 204498, - [SMALL_STATE(5938)] = 204521, - [SMALL_STATE(5939)] = 204546, - [SMALL_STATE(5940)] = 204571, - [SMALL_STATE(5941)] = 204592, - [SMALL_STATE(5942)] = 204611, - [SMALL_STATE(5943)] = 204634, - [SMALL_STATE(5944)] = 204655, - [SMALL_STATE(5945)] = 204676, - [SMALL_STATE(5946)] = 204699, - [SMALL_STATE(5947)] = 204714, - [SMALL_STATE(5948)] = 204729, - [SMALL_STATE(5949)] = 204746, - [SMALL_STATE(5950)] = 204763, - [SMALL_STATE(5951)] = 204786, - [SMALL_STATE(5952)] = 204811, - [SMALL_STATE(5953)] = 204836, - [SMALL_STATE(5954)] = 204857, - [SMALL_STATE(5955)] = 204874, - [SMALL_STATE(5956)] = 204891, - [SMALL_STATE(5957)] = 204916, - [SMALL_STATE(5958)] = 204937, - [SMALL_STATE(5959)] = 204954, - [SMALL_STATE(5960)] = 204975, - [SMALL_STATE(5961)] = 204994, - [SMALL_STATE(5962)] = 205013, - [SMALL_STATE(5963)] = 205038, - [SMALL_STATE(5964)] = 205063, - [SMALL_STATE(5965)] = 205086, - [SMALL_STATE(5966)] = 205103, - [SMALL_STATE(5967)] = 205126, - [SMALL_STATE(5968)] = 205143, - [SMALL_STATE(5969)] = 205160, - [SMALL_STATE(5970)] = 205181, - [SMALL_STATE(5971)] = 205200, - [SMALL_STATE(5972)] = 205217, - [SMALL_STATE(5973)] = 205238, - [SMALL_STATE(5974)] = 205259, - [SMALL_STATE(5975)] = 205280, - [SMALL_STATE(5976)] = 205295, - [SMALL_STATE(5977)] = 205320, - [SMALL_STATE(5978)] = 205339, - [SMALL_STATE(5979)] = 205356, - [SMALL_STATE(5980)] = 205379, - [SMALL_STATE(5981)] = 205398, - [SMALL_STATE(5982)] = 205417, - [SMALL_STATE(5983)] = 205436, - [SMALL_STATE(5984)] = 205461, - [SMALL_STATE(5985)] = 205484, - [SMALL_STATE(5986)] = 205509, - [SMALL_STATE(5987)] = 205530, - [SMALL_STATE(5988)] = 205555, - [SMALL_STATE(5989)] = 205572, - [SMALL_STATE(5990)] = 205593, - [SMALL_STATE(5991)] = 205618, - [SMALL_STATE(5992)] = 205643, - [SMALL_STATE(5993)] = 205658, - [SMALL_STATE(5994)] = 205675, - [SMALL_STATE(5995)] = 205692, - [SMALL_STATE(5996)] = 205717, - [SMALL_STATE(5997)] = 205740, - [SMALL_STATE(5998)] = 205759, - [SMALL_STATE(5999)] = 205782, - [SMALL_STATE(6000)] = 205803, - [SMALL_STATE(6001)] = 205821, - [SMALL_STATE(6002)] = 205837, - [SMALL_STATE(6003)] = 205859, - [SMALL_STATE(6004)] = 205881, - [SMALL_STATE(6005)] = 205903, - [SMALL_STATE(6006)] = 205921, - [SMALL_STATE(6007)] = 205939, - [SMALL_STATE(6008)] = 205957, - [SMALL_STATE(6009)] = 205975, - [SMALL_STATE(6010)] = 205993, - [SMALL_STATE(6011)] = 206013, - [SMALL_STATE(6012)] = 206031, - [SMALL_STATE(6013)] = 206049, - [SMALL_STATE(6014)] = 206071, - [SMALL_STATE(6015)] = 206085, - [SMALL_STATE(6016)] = 206103, - [SMALL_STATE(6017)] = 206121, - [SMALL_STATE(6018)] = 206139, - [SMALL_STATE(6019)] = 206157, - [SMALL_STATE(6020)] = 206177, - [SMALL_STATE(6021)] = 206199, - [SMALL_STATE(6022)] = 206221, - [SMALL_STATE(6023)] = 206243, - [SMALL_STATE(6024)] = 206265, - [SMALL_STATE(6025)] = 206287, - [SMALL_STATE(6026)] = 206305, - [SMALL_STATE(6027)] = 206327, - [SMALL_STATE(6028)] = 206349, - [SMALL_STATE(6029)] = 206371, - [SMALL_STATE(6030)] = 206393, - [SMALL_STATE(6031)] = 206415, - [SMALL_STATE(6032)] = 206437, - [SMALL_STATE(6033)] = 206459, - [SMALL_STATE(6034)] = 206479, - [SMALL_STATE(6035)] = 206501, - [SMALL_STATE(6036)] = 206523, - [SMALL_STATE(6037)] = 206545, - [SMALL_STATE(6038)] = 206567, - [SMALL_STATE(6039)] = 206589, - [SMALL_STATE(6040)] = 206611, - [SMALL_STATE(6041)] = 206633, - [SMALL_STATE(6042)] = 206655, - [SMALL_STATE(6043)] = 206677, - [SMALL_STATE(6044)] = 206699, - [SMALL_STATE(6045)] = 206721, - [SMALL_STATE(6046)] = 206743, - [SMALL_STATE(6047)] = 206759, - [SMALL_STATE(6048)] = 206777, - [SMALL_STATE(6049)] = 206793, - [SMALL_STATE(6050)] = 206809, - [SMALL_STATE(6051)] = 206825, - [SMALL_STATE(6052)] = 206841, - [SMALL_STATE(6053)] = 206859, - [SMALL_STATE(6054)] = 206877, - [SMALL_STATE(6055)] = 206895, - [SMALL_STATE(6056)] = 206913, - [SMALL_STATE(6057)] = 206927, - [SMALL_STATE(6058)] = 206943, - [SMALL_STATE(6059)] = 206963, - [SMALL_STATE(6060)] = 206979, - [SMALL_STATE(6061)] = 206995, - [SMALL_STATE(6062)] = 207011, - [SMALL_STATE(6063)] = 207029, - [SMALL_STATE(6064)] = 207045, - [SMALL_STATE(6065)] = 207061, - [SMALL_STATE(6066)] = 207077, - [SMALL_STATE(6067)] = 207097, - [SMALL_STATE(6068)] = 207113, - [SMALL_STATE(6069)] = 207129, - [SMALL_STATE(6070)] = 207145, - [SMALL_STATE(6071)] = 207167, - [SMALL_STATE(6072)] = 207183, - [SMALL_STATE(6073)] = 207203, - [SMALL_STATE(6074)] = 207225, - [SMALL_STATE(6075)] = 207247, - [SMALL_STATE(6076)] = 207265, - [SMALL_STATE(6077)] = 207287, - [SMALL_STATE(6078)] = 207305, - [SMALL_STATE(6079)] = 207327, - [SMALL_STATE(6080)] = 207347, - [SMALL_STATE(6081)] = 207365, - [SMALL_STATE(6082)] = 207387, - [SMALL_STATE(6083)] = 207409, - [SMALL_STATE(6084)] = 207429, - [SMALL_STATE(6085)] = 207451, - [SMALL_STATE(6086)] = 207473, - [SMALL_STATE(6087)] = 207495, - [SMALL_STATE(6088)] = 207517, - [SMALL_STATE(6089)] = 207539, - [SMALL_STATE(6090)] = 207561, - [SMALL_STATE(6091)] = 207579, - [SMALL_STATE(6092)] = 207601, - [SMALL_STATE(6093)] = 207619, - [SMALL_STATE(6094)] = 207639, - [SMALL_STATE(6095)] = 207661, - [SMALL_STATE(6096)] = 207683, - [SMALL_STATE(6097)] = 207705, - [SMALL_STATE(6098)] = 207727, - [SMALL_STATE(6099)] = 207749, - [SMALL_STATE(6100)] = 207771, - [SMALL_STATE(6101)] = 207793, - [SMALL_STATE(6102)] = 207813, - [SMALL_STATE(6103)] = 207835, - [SMALL_STATE(6104)] = 207857, - [SMALL_STATE(6105)] = 207873, - [SMALL_STATE(6106)] = 207895, - [SMALL_STATE(6107)] = 207917, - [SMALL_STATE(6108)] = 207939, - [SMALL_STATE(6109)] = 207961, - [SMALL_STATE(6110)] = 207983, - [SMALL_STATE(6111)] = 208005, - [SMALL_STATE(6112)] = 208027, - [SMALL_STATE(6113)] = 208047, - [SMALL_STATE(6114)] = 208069, - [SMALL_STATE(6115)] = 208091, - [SMALL_STATE(6116)] = 208111, - [SMALL_STATE(6117)] = 208133, - [SMALL_STATE(6118)] = 208155, - [SMALL_STATE(6119)] = 208177, - [SMALL_STATE(6120)] = 208199, - [SMALL_STATE(6121)] = 208221, - [SMALL_STATE(6122)] = 208243, - [SMALL_STATE(6123)] = 208265, - [SMALL_STATE(6124)] = 208287, - [SMALL_STATE(6125)] = 208309, - [SMALL_STATE(6126)] = 208331, - [SMALL_STATE(6127)] = 208347, - [SMALL_STATE(6128)] = 208361, - [SMALL_STATE(6129)] = 208383, - [SMALL_STATE(6130)] = 208397, - [SMALL_STATE(6131)] = 208419, - [SMALL_STATE(6132)] = 208437, - [SMALL_STATE(6133)] = 208455, - [SMALL_STATE(6134)] = 208475, - [SMALL_STATE(6135)] = 208497, - [SMALL_STATE(6136)] = 208519, - [SMALL_STATE(6137)] = 208535, - [SMALL_STATE(6138)] = 208553, - [SMALL_STATE(6139)] = 208575, - [SMALL_STATE(6140)] = 208595, - [SMALL_STATE(6141)] = 208617, - [SMALL_STATE(6142)] = 208639, - [SMALL_STATE(6143)] = 208657, - [SMALL_STATE(6144)] = 208679, - [SMALL_STATE(6145)] = 208699, - [SMALL_STATE(6146)] = 208721, - [SMALL_STATE(6147)] = 208741, - [SMALL_STATE(6148)] = 208759, - [SMALL_STATE(6149)] = 208777, - [SMALL_STATE(6150)] = 208795, - [SMALL_STATE(6151)] = 208815, - [SMALL_STATE(6152)] = 208837, - [SMALL_STATE(6153)] = 208859, - [SMALL_STATE(6154)] = 208881, - [SMALL_STATE(6155)] = 208903, - [SMALL_STATE(6156)] = 208925, - [SMALL_STATE(6157)] = 208943, - [SMALL_STATE(6158)] = 208965, - [SMALL_STATE(6159)] = 208987, - [SMALL_STATE(6160)] = 209007, - [SMALL_STATE(6161)] = 209025, - [SMALL_STATE(6162)] = 209045, - [SMALL_STATE(6163)] = 209063, - [SMALL_STATE(6164)] = 209085, - [SMALL_STATE(6165)] = 209107, - [SMALL_STATE(6166)] = 209129, - [SMALL_STATE(6167)] = 209151, - [SMALL_STATE(6168)] = 209173, - [SMALL_STATE(6169)] = 209195, - [SMALL_STATE(6170)] = 209217, - [SMALL_STATE(6171)] = 209239, - [SMALL_STATE(6172)] = 209261, - [SMALL_STATE(6173)] = 209283, - [SMALL_STATE(6174)] = 209305, - [SMALL_STATE(6175)] = 209327, - [SMALL_STATE(6176)] = 209349, - [SMALL_STATE(6177)] = 209371, - [SMALL_STATE(6178)] = 209393, - [SMALL_STATE(6179)] = 209415, - [SMALL_STATE(6180)] = 209437, - [SMALL_STATE(6181)] = 209459, - [SMALL_STATE(6182)] = 209481, - [SMALL_STATE(6183)] = 209503, - [SMALL_STATE(6184)] = 209525, - [SMALL_STATE(6185)] = 209547, - [SMALL_STATE(6186)] = 209569, - [SMALL_STATE(6187)] = 209591, - [SMALL_STATE(6188)] = 209605, - [SMALL_STATE(6189)] = 209627, - [SMALL_STATE(6190)] = 209649, - [SMALL_STATE(6191)] = 209671, - [SMALL_STATE(6192)] = 209693, - [SMALL_STATE(6193)] = 209715, - [SMALL_STATE(6194)] = 209737, - [SMALL_STATE(6195)] = 209759, - [SMALL_STATE(6196)] = 209781, - [SMALL_STATE(6197)] = 209803, - [SMALL_STATE(6198)] = 209825, - [SMALL_STATE(6199)] = 209847, - [SMALL_STATE(6200)] = 209869, - [SMALL_STATE(6201)] = 209891, - [SMALL_STATE(6202)] = 209913, - [SMALL_STATE(6203)] = 209933, - [SMALL_STATE(6204)] = 209955, - [SMALL_STATE(6205)] = 209977, - [SMALL_STATE(6206)] = 209999, - [SMALL_STATE(6207)] = 210021, - [SMALL_STATE(6208)] = 210035, - [SMALL_STATE(6209)] = 210049, - [SMALL_STATE(6210)] = 210071, - [SMALL_STATE(6211)] = 210091, - [SMALL_STATE(6212)] = 210113, - [SMALL_STATE(6213)] = 210132, - [SMALL_STATE(6214)] = 210149, - [SMALL_STATE(6215)] = 210162, - [SMALL_STATE(6216)] = 210175, - [SMALL_STATE(6217)] = 210188, - [SMALL_STATE(6218)] = 210207, - [SMALL_STATE(6219)] = 210220, - [SMALL_STATE(6220)] = 210233, - [SMALL_STATE(6221)] = 210246, - [SMALL_STATE(6222)] = 210265, - [SMALL_STATE(6223)] = 210284, - [SMALL_STATE(6224)] = 210303, - [SMALL_STATE(6225)] = 210322, - [SMALL_STATE(6226)] = 210341, - [SMALL_STATE(6227)] = 210360, - [SMALL_STATE(6228)] = 210379, - [SMALL_STATE(6229)] = 210398, - [SMALL_STATE(6230)] = 210417, - [SMALL_STATE(6231)] = 210436, - [SMALL_STATE(6232)] = 210449, - [SMALL_STATE(6233)] = 210462, - [SMALL_STATE(6234)] = 210481, - [SMALL_STATE(6235)] = 210496, - [SMALL_STATE(6236)] = 210509, - [SMALL_STATE(6237)] = 210522, - [SMALL_STATE(6238)] = 210541, - [SMALL_STATE(6239)] = 210560, - [SMALL_STATE(6240)] = 210575, - [SMALL_STATE(6241)] = 210588, - [SMALL_STATE(6242)] = 210605, - [SMALL_STATE(6243)] = 210618, - [SMALL_STATE(6244)] = 210633, - [SMALL_STATE(6245)] = 210652, - [SMALL_STATE(6246)] = 210665, - [SMALL_STATE(6247)] = 210684, - [SMALL_STATE(6248)] = 210701, - [SMALL_STATE(6249)] = 210714, - [SMALL_STATE(6250)] = 210733, - [SMALL_STATE(6251)] = 210746, - [SMALL_STATE(6252)] = 210765, - [SMALL_STATE(6253)] = 210782, - [SMALL_STATE(6254)] = 210799, - [SMALL_STATE(6255)] = 210812, - [SMALL_STATE(6256)] = 210831, - [SMALL_STATE(6257)] = 210850, - [SMALL_STATE(6258)] = 210869, - [SMALL_STATE(6259)] = 210888, - [SMALL_STATE(6260)] = 210907, - [SMALL_STATE(6261)] = 210926, - [SMALL_STATE(6262)] = 210945, - [SMALL_STATE(6263)] = 210964, - [SMALL_STATE(6264)] = 210983, - [SMALL_STATE(6265)] = 210996, - [SMALL_STATE(6266)] = 211009, - [SMALL_STATE(6267)] = 211022, - [SMALL_STATE(6268)] = 211039, - [SMALL_STATE(6269)] = 211052, - [SMALL_STATE(6270)] = 211067, - [SMALL_STATE(6271)] = 211080, - [SMALL_STATE(6272)] = 211093, - [SMALL_STATE(6273)] = 211106, - [SMALL_STATE(6274)] = 211125, - [SMALL_STATE(6275)] = 211142, - [SMALL_STATE(6276)] = 211155, - [SMALL_STATE(6277)] = 211168, - [SMALL_STATE(6278)] = 211181, - [SMALL_STATE(6279)] = 211194, - [SMALL_STATE(6280)] = 211213, - [SMALL_STATE(6281)] = 211232, - [SMALL_STATE(6282)] = 211251, - [SMALL_STATE(6283)] = 211270, - [SMALL_STATE(6284)] = 211289, - [SMALL_STATE(6285)] = 211308, - [SMALL_STATE(6286)] = 211327, - [SMALL_STATE(6287)] = 211346, - [SMALL_STATE(6288)] = 211361, - [SMALL_STATE(6289)] = 211376, - [SMALL_STATE(6290)] = 211395, - [SMALL_STATE(6291)] = 211408, - [SMALL_STATE(6292)] = 211425, - [SMALL_STATE(6293)] = 211444, - [SMALL_STATE(6294)] = 211463, - [SMALL_STATE(6295)] = 211480, - [SMALL_STATE(6296)] = 211493, - [SMALL_STATE(6297)] = 211510, - [SMALL_STATE(6298)] = 211523, - [SMALL_STATE(6299)] = 211540, - [SMALL_STATE(6300)] = 211553, - [SMALL_STATE(6301)] = 211572, - [SMALL_STATE(6302)] = 211591, - [SMALL_STATE(6303)] = 211610, - [SMALL_STATE(6304)] = 211629, - [SMALL_STATE(6305)] = 211648, - [SMALL_STATE(6306)] = 211667, - [SMALL_STATE(6307)] = 211686, - [SMALL_STATE(6308)] = 211705, - [SMALL_STATE(6309)] = 211724, - [SMALL_STATE(6310)] = 211743, - [SMALL_STATE(6311)] = 211756, - [SMALL_STATE(6312)] = 211773, - [SMALL_STATE(6313)] = 211786, - [SMALL_STATE(6314)] = 211805, - [SMALL_STATE(6315)] = 211824, - [SMALL_STATE(6316)] = 211841, - [SMALL_STATE(6317)] = 211856, - [SMALL_STATE(6318)] = 211871, - [SMALL_STATE(6319)] = 211886, - [SMALL_STATE(6320)] = 211905, - [SMALL_STATE(6321)] = 211924, - [SMALL_STATE(6322)] = 211943, - [SMALL_STATE(6323)] = 211962, - [SMALL_STATE(6324)] = 211981, - [SMALL_STATE(6325)] = 212000, - [SMALL_STATE(6326)] = 212019, - [SMALL_STATE(6327)] = 212038, - [SMALL_STATE(6328)] = 212051, - [SMALL_STATE(6329)] = 212064, - [SMALL_STATE(6330)] = 212081, - [SMALL_STATE(6331)] = 212100, - [SMALL_STATE(6332)] = 212113, - [SMALL_STATE(6333)] = 212132, - [SMALL_STATE(6334)] = 212147, - [SMALL_STATE(6335)] = 212164, - [SMALL_STATE(6336)] = 212179, - [SMALL_STATE(6337)] = 212198, - [SMALL_STATE(6338)] = 212217, - [SMALL_STATE(6339)] = 212236, - [SMALL_STATE(6340)] = 212255, - [SMALL_STATE(6341)] = 212274, - [SMALL_STATE(6342)] = 212293, - [SMALL_STATE(6343)] = 212312, - [SMALL_STATE(6344)] = 212331, - [SMALL_STATE(6345)] = 212350, - [SMALL_STATE(6346)] = 212369, - [SMALL_STATE(6347)] = 212386, - [SMALL_STATE(6348)] = 212405, - [SMALL_STATE(6349)] = 212418, - [SMALL_STATE(6350)] = 212435, - [SMALL_STATE(6351)] = 212448, - [SMALL_STATE(6352)] = 212465, - [SMALL_STATE(6353)] = 212484, - [SMALL_STATE(6354)] = 212501, - [SMALL_STATE(6355)] = 212520, - [SMALL_STATE(6356)] = 212539, - [SMALL_STATE(6357)] = 212558, - [SMALL_STATE(6358)] = 212577, - [SMALL_STATE(6359)] = 212596, - [SMALL_STATE(6360)] = 212615, - [SMALL_STATE(6361)] = 212634, - [SMALL_STATE(6362)] = 212653, - [SMALL_STATE(6363)] = 212666, - [SMALL_STATE(6364)] = 212683, - [SMALL_STATE(6365)] = 212698, - [SMALL_STATE(6366)] = 212717, - [SMALL_STATE(6367)] = 212736, - [SMALL_STATE(6368)] = 212753, - [SMALL_STATE(6369)] = 212766, - [SMALL_STATE(6370)] = 212779, - [SMALL_STATE(6371)] = 212798, - [SMALL_STATE(6372)] = 212817, - [SMALL_STATE(6373)] = 212836, - [SMALL_STATE(6374)] = 212855, - [SMALL_STATE(6375)] = 212874, - [SMALL_STATE(6376)] = 212893, - [SMALL_STATE(6377)] = 212912, - [SMALL_STATE(6378)] = 212931, - [SMALL_STATE(6379)] = 212944, - [SMALL_STATE(6380)] = 212957, - [SMALL_STATE(6381)] = 212974, - [SMALL_STATE(6382)] = 212991, - [SMALL_STATE(6383)] = 213010, - [SMALL_STATE(6384)] = 213027, - [SMALL_STATE(6385)] = 213044, - [SMALL_STATE(6386)] = 213063, - [SMALL_STATE(6387)] = 213076, - [SMALL_STATE(6388)] = 213095, - [SMALL_STATE(6389)] = 213114, - [SMALL_STATE(6390)] = 213133, - [SMALL_STATE(6391)] = 213152, - [SMALL_STATE(6392)] = 213171, - [SMALL_STATE(6393)] = 213190, - [SMALL_STATE(6394)] = 213209, - [SMALL_STATE(6395)] = 213228, - [SMALL_STATE(6396)] = 213241, - [SMALL_STATE(6397)] = 213254, - [SMALL_STATE(6398)] = 213271, - [SMALL_STATE(6399)] = 213286, - [SMALL_STATE(6400)] = 213301, - [SMALL_STATE(6401)] = 213318, - [SMALL_STATE(6402)] = 213337, - [SMALL_STATE(6403)] = 213352, - [SMALL_STATE(6404)] = 213371, - [SMALL_STATE(6405)] = 213390, - [SMALL_STATE(6406)] = 213409, - [SMALL_STATE(6407)] = 213428, - [SMALL_STATE(6408)] = 213447, - [SMALL_STATE(6409)] = 213466, - [SMALL_STATE(6410)] = 213485, - [SMALL_STATE(6411)] = 213504, - [SMALL_STATE(6412)] = 213517, - [SMALL_STATE(6413)] = 213534, - [SMALL_STATE(6414)] = 213553, - [SMALL_STATE(6415)] = 213568, - [SMALL_STATE(6416)] = 213585, - [SMALL_STATE(6417)] = 213600, - [SMALL_STATE(6418)] = 213619, - [SMALL_STATE(6419)] = 213638, - [SMALL_STATE(6420)] = 213657, - [SMALL_STATE(6421)] = 213676, - [SMALL_STATE(6422)] = 213695, - [SMALL_STATE(6423)] = 213714, - [SMALL_STATE(6424)] = 213733, - [SMALL_STATE(6425)] = 213752, - [SMALL_STATE(6426)] = 213771, - [SMALL_STATE(6427)] = 213784, - [SMALL_STATE(6428)] = 213801, - [SMALL_STATE(6429)] = 213820, - [SMALL_STATE(6430)] = 213837, - [SMALL_STATE(6431)] = 213856, - [SMALL_STATE(6432)] = 213875, - [SMALL_STATE(6433)] = 213894, - [SMALL_STATE(6434)] = 213913, - [SMALL_STATE(6435)] = 213932, - [SMALL_STATE(6436)] = 213951, - [SMALL_STATE(6437)] = 213970, - [SMALL_STATE(6438)] = 213989, - [SMALL_STATE(6439)] = 214008, - [SMALL_STATE(6440)] = 214021, - [SMALL_STATE(6441)] = 214038, - [SMALL_STATE(6442)] = 214053, - [SMALL_STATE(6443)] = 214070, - [SMALL_STATE(6444)] = 214083, - [SMALL_STATE(6445)] = 214102, - [SMALL_STATE(6446)] = 214121, - [SMALL_STATE(6447)] = 214140, - [SMALL_STATE(6448)] = 214159, - [SMALL_STATE(6449)] = 214178, - [SMALL_STATE(6450)] = 214197, - [SMALL_STATE(6451)] = 214216, - [SMALL_STATE(6452)] = 214235, - [SMALL_STATE(6453)] = 214250, - [SMALL_STATE(6454)] = 214263, - [SMALL_STATE(6455)] = 214276, - [SMALL_STATE(6456)] = 214293, - [SMALL_STATE(6457)] = 214310, - [SMALL_STATE(6458)] = 214323, - [SMALL_STATE(6459)] = 214342, - [SMALL_STATE(6460)] = 214361, - [SMALL_STATE(6461)] = 214380, - [SMALL_STATE(6462)] = 214399, - [SMALL_STATE(6463)] = 214418, - [SMALL_STATE(6464)] = 214437, - [SMALL_STATE(6465)] = 214456, - [SMALL_STATE(6466)] = 214475, - [SMALL_STATE(6467)] = 214492, - [SMALL_STATE(6468)] = 214505, - [SMALL_STATE(6469)] = 214522, - [SMALL_STATE(6470)] = 214535, - [SMALL_STATE(6471)] = 214552, - [SMALL_STATE(6472)] = 214565, - [SMALL_STATE(6473)] = 214584, - [SMALL_STATE(6474)] = 214603, - [SMALL_STATE(6475)] = 214622, - [SMALL_STATE(6476)] = 214641, - [SMALL_STATE(6477)] = 214660, - [SMALL_STATE(6478)] = 214679, - [SMALL_STATE(6479)] = 214698, - [SMALL_STATE(6480)] = 214717, - [SMALL_STATE(6481)] = 214730, - [SMALL_STATE(6482)] = 214743, - [SMALL_STATE(6483)] = 214760, - [SMALL_STATE(6484)] = 214777, - [SMALL_STATE(6485)] = 214796, - [SMALL_STATE(6486)] = 214815, - [SMALL_STATE(6487)] = 214834, - [SMALL_STATE(6488)] = 214853, - [SMALL_STATE(6489)] = 214872, - [SMALL_STATE(6490)] = 214891, - [SMALL_STATE(6491)] = 214910, - [SMALL_STATE(6492)] = 214929, - [SMALL_STATE(6493)] = 214942, - [SMALL_STATE(6494)] = 214959, - [SMALL_STATE(6495)] = 214976, - [SMALL_STATE(6496)] = 214989, - [SMALL_STATE(6497)] = 215002, - [SMALL_STATE(6498)] = 215019, - [SMALL_STATE(6499)] = 215036, - [SMALL_STATE(6500)] = 215049, - [SMALL_STATE(6501)] = 215066, - [SMALL_STATE(6502)] = 215083, - [SMALL_STATE(6503)] = 215096, - [SMALL_STATE(6504)] = 215113, - [SMALL_STATE(6505)] = 215130, - [SMALL_STATE(6506)] = 215147, - [SMALL_STATE(6507)] = 215160, - [SMALL_STATE(6508)] = 215177, - [SMALL_STATE(6509)] = 215194, - [SMALL_STATE(6510)] = 215207, - [SMALL_STATE(6511)] = 215224, - [SMALL_STATE(6512)] = 215241, - [SMALL_STATE(6513)] = 215260, - [SMALL_STATE(6514)] = 215277, - [SMALL_STATE(6515)] = 215294, - [SMALL_STATE(6516)] = 215307, - [SMALL_STATE(6517)] = 215320, - [SMALL_STATE(6518)] = 215337, - [SMALL_STATE(6519)] = 215354, - [SMALL_STATE(6520)] = 215371, - [SMALL_STATE(6521)] = 215384, - [SMALL_STATE(6522)] = 215401, - [SMALL_STATE(6523)] = 215418, - [SMALL_STATE(6524)] = 215431, - [SMALL_STATE(6525)] = 215448, - [SMALL_STATE(6526)] = 215465, - [SMALL_STATE(6527)] = 215478, - [SMALL_STATE(6528)] = 215495, - [SMALL_STATE(6529)] = 215512, - [SMALL_STATE(6530)] = 215525, - [SMALL_STATE(6531)] = 215542, - [SMALL_STATE(6532)] = 215559, - [SMALL_STATE(6533)] = 215574, - [SMALL_STATE(6534)] = 215587, - [SMALL_STATE(6535)] = 215604, - [SMALL_STATE(6536)] = 215621, - [SMALL_STATE(6537)] = 215634, - [SMALL_STATE(6538)] = 215651, - [SMALL_STATE(6539)] = 215668, - [SMALL_STATE(6540)] = 215681, - [SMALL_STATE(6541)] = 215698, - [SMALL_STATE(6542)] = 215715, - [SMALL_STATE(6543)] = 215728, - [SMALL_STATE(6544)] = 215745, - [SMALL_STATE(6545)] = 215762, - [SMALL_STATE(6546)] = 215775, - [SMALL_STATE(6547)] = 215792, - [SMALL_STATE(6548)] = 215809, - [SMALL_STATE(6549)] = 215822, - [SMALL_STATE(6550)] = 215839, - [SMALL_STATE(6551)] = 215856, - [SMALL_STATE(6552)] = 215871, - [SMALL_STATE(6553)] = 215884, - [SMALL_STATE(6554)] = 215901, - [SMALL_STATE(6555)] = 215918, - [SMALL_STATE(6556)] = 215931, - [SMALL_STATE(6557)] = 215948, - [SMALL_STATE(6558)] = 215965, - [SMALL_STATE(6559)] = 215978, - [SMALL_STATE(6560)] = 215991, - [SMALL_STATE(6561)] = 216008, - [SMALL_STATE(6562)] = 216025, - [SMALL_STATE(6563)] = 216038, - [SMALL_STATE(6564)] = 216055, - [SMALL_STATE(6565)] = 216072, - [SMALL_STATE(6566)] = 216091, - [SMALL_STATE(6567)] = 216104, - [SMALL_STATE(6568)] = 216121, - [SMALL_STATE(6569)] = 216138, - [SMALL_STATE(6570)] = 216151, - [SMALL_STATE(6571)] = 216168, - [SMALL_STATE(6572)] = 216185, - [SMALL_STATE(6573)] = 216198, - [SMALL_STATE(6574)] = 216215, - [SMALL_STATE(6575)] = 216232, - [SMALL_STATE(6576)] = 216245, - [SMALL_STATE(6577)] = 216262, - [SMALL_STATE(6578)] = 216279, - [SMALL_STATE(6579)] = 216292, - [SMALL_STATE(6580)] = 216309, - [SMALL_STATE(6581)] = 216326, - [SMALL_STATE(6582)] = 216339, - [SMALL_STATE(6583)] = 216356, - [SMALL_STATE(6584)] = 216373, - [SMALL_STATE(6585)] = 216390, - [SMALL_STATE(6586)] = 216407, - [SMALL_STATE(6587)] = 216424, - [SMALL_STATE(6588)] = 216441, - [SMALL_STATE(6589)] = 216458, - [SMALL_STATE(6590)] = 216475, - [SMALL_STATE(6591)] = 216488, - [SMALL_STATE(6592)] = 216501, - [SMALL_STATE(6593)] = 216514, - [SMALL_STATE(6594)] = 216533, - [SMALL_STATE(6595)] = 216550, - [SMALL_STATE(6596)] = 216563, - [SMALL_STATE(6597)] = 216580, - [SMALL_STATE(6598)] = 216599, - [SMALL_STATE(6599)] = 216614, - [SMALL_STATE(6600)] = 216633, - [SMALL_STATE(6601)] = 216646, - [SMALL_STATE(6602)] = 216665, - [SMALL_STATE(6603)] = 216684, - [SMALL_STATE(6604)] = 216697, - [SMALL_STATE(6605)] = 216710, - [SMALL_STATE(6606)] = 216723, - [SMALL_STATE(6607)] = 216736, - [SMALL_STATE(6608)] = 216749, - [SMALL_STATE(6609)] = 216762, - [SMALL_STATE(6610)] = 216779, - [SMALL_STATE(6611)] = 216798, - [SMALL_STATE(6612)] = 216817, - [SMALL_STATE(6613)] = 216836, - [SMALL_STATE(6614)] = 216849, - [SMALL_STATE(6615)] = 216868, - [SMALL_STATE(6616)] = 216887, - [SMALL_STATE(6617)] = 216900, - [SMALL_STATE(6618)] = 216919, - [SMALL_STATE(6619)] = 216932, - [SMALL_STATE(6620)] = 216945, - [SMALL_STATE(6621)] = 216958, - [SMALL_STATE(6622)] = 216973, - [SMALL_STATE(6623)] = 216992, - [SMALL_STATE(6624)] = 217005, - [SMALL_STATE(6625)] = 217024, - [SMALL_STATE(6626)] = 217037, - [SMALL_STATE(6627)] = 217054, - [SMALL_STATE(6628)] = 217071, - [SMALL_STATE(6629)] = 217084, - [SMALL_STATE(6630)] = 217103, - [SMALL_STATE(6631)] = 217116, - [SMALL_STATE(6632)] = 217131, - [SMALL_STATE(6633)] = 217144, - [SMALL_STATE(6634)] = 217157, - [SMALL_STATE(6635)] = 217176, - [SMALL_STATE(6636)] = 217191, - [SMALL_STATE(6637)] = 217204, - [SMALL_STATE(6638)] = 217223, - [SMALL_STATE(6639)] = 217240, - [SMALL_STATE(6640)] = 217253, - [SMALL_STATE(6641)] = 217266, - [SMALL_STATE(6642)] = 217281, - [SMALL_STATE(6643)] = 217294, - [SMALL_STATE(6644)] = 217307, - [SMALL_STATE(6645)] = 217320, - [SMALL_STATE(6646)] = 217333, - [SMALL_STATE(6647)] = 217346, - [SMALL_STATE(6648)] = 217359, - [SMALL_STATE(6649)] = 217372, - [SMALL_STATE(6650)] = 217385, - [SMALL_STATE(6651)] = 217398, - [SMALL_STATE(6652)] = 217417, - [SMALL_STATE(6653)] = 217436, - [SMALL_STATE(6654)] = 217449, - [SMALL_STATE(6655)] = 217468, - [SMALL_STATE(6656)] = 217481, - [SMALL_STATE(6657)] = 217496, - [SMALL_STATE(6658)] = 217509, - [SMALL_STATE(6659)] = 217528, - [SMALL_STATE(6660)] = 217547, - [SMALL_STATE(6661)] = 217560, - [SMALL_STATE(6662)] = 217579, - [SMALL_STATE(6663)] = 217598, - [SMALL_STATE(6664)] = 217617, - [SMALL_STATE(6665)] = 217634, - [SMALL_STATE(6666)] = 217649, - [SMALL_STATE(6667)] = 217668, - [SMALL_STATE(6668)] = 217687, - [SMALL_STATE(6669)] = 217706, - [SMALL_STATE(6670)] = 217719, - [SMALL_STATE(6671)] = 217734, - [SMALL_STATE(6672)] = 217747, - [SMALL_STATE(6673)] = 217762, - [SMALL_STATE(6674)] = 217779, - [SMALL_STATE(6675)] = 217792, - [SMALL_STATE(6676)] = 217809, - [SMALL_STATE(6677)] = 217826, - [SMALL_STATE(6678)] = 217841, - [SMALL_STATE(6679)] = 217858, - [SMALL_STATE(6680)] = 217871, - [SMALL_STATE(6681)] = 217888, - [SMALL_STATE(6682)] = 217903, - [SMALL_STATE(6683)] = 217916, - [SMALL_STATE(6684)] = 217935, - [SMALL_STATE(6685)] = 217948, - [SMALL_STATE(6686)] = 217967, - [SMALL_STATE(6687)] = 217980, - [SMALL_STATE(6688)] = 217997, - [SMALL_STATE(6689)] = 218012, - [SMALL_STATE(6690)] = 218031, - [SMALL_STATE(6691)] = 218044, - [SMALL_STATE(6692)] = 218057, - [SMALL_STATE(6693)] = 218074, - [SMALL_STATE(6694)] = 218087, - [SMALL_STATE(6695)] = 218102, - [SMALL_STATE(6696)] = 218115, - [SMALL_STATE(6697)] = 218134, - [SMALL_STATE(6698)] = 218149, - [SMALL_STATE(6699)] = 218162, - [SMALL_STATE(6700)] = 218181, - [SMALL_STATE(6701)] = 218200, - [SMALL_STATE(6702)] = 218219, - [SMALL_STATE(6703)] = 218232, - [SMALL_STATE(6704)] = 218245, - [SMALL_STATE(6705)] = 218262, - [SMALL_STATE(6706)] = 218275, - [SMALL_STATE(6707)] = 218294, - [SMALL_STATE(6708)] = 218313, - [SMALL_STATE(6709)] = 218326, - [SMALL_STATE(6710)] = 218345, - [SMALL_STATE(6711)] = 218362, - [SMALL_STATE(6712)] = 218381, - [SMALL_STATE(6713)] = 218394, - [SMALL_STATE(6714)] = 218411, - [SMALL_STATE(6715)] = 218424, - [SMALL_STATE(6716)] = 218437, - [SMALL_STATE(6717)] = 218450, - [SMALL_STATE(6718)] = 218463, - [SMALL_STATE(6719)] = 218480, - [SMALL_STATE(6720)] = 218499, - [SMALL_STATE(6721)] = 218512, - [SMALL_STATE(6722)] = 218525, - [SMALL_STATE(6723)] = 218538, - [SMALL_STATE(6724)] = 218557, - [SMALL_STATE(6725)] = 218576, - [SMALL_STATE(6726)] = 218595, - [SMALL_STATE(6727)] = 218614, - [SMALL_STATE(6728)] = 218633, - [SMALL_STATE(6729)] = 218650, - [SMALL_STATE(6730)] = 218669, - [SMALL_STATE(6731)] = 218688, - [SMALL_STATE(6732)] = 218707, - [SMALL_STATE(6733)] = 218724, - [SMALL_STATE(6734)] = 218743, - [SMALL_STATE(6735)] = 218762, - [SMALL_STATE(6736)] = 218781, - [SMALL_STATE(6737)] = 218800, - [SMALL_STATE(6738)] = 218817, - [SMALL_STATE(6739)] = 218834, - [SMALL_STATE(6740)] = 218849, - [SMALL_STATE(6741)] = 218868, - [SMALL_STATE(6742)] = 218887, - [SMALL_STATE(6743)] = 218900, - [SMALL_STATE(6744)] = 218913, - [SMALL_STATE(6745)] = 218932, - [SMALL_STATE(6746)] = 218951, - [SMALL_STATE(6747)] = 218970, - [SMALL_STATE(6748)] = 218983, - [SMALL_STATE(6749)] = 218999, - [SMALL_STATE(6750)] = 219011, - [SMALL_STATE(6751)] = 219025, - [SMALL_STATE(6752)] = 219039, - [SMALL_STATE(6753)] = 219051, - [SMALL_STATE(6754)] = 219067, - [SMALL_STATE(6755)] = 219079, - [SMALL_STATE(6756)] = 219095, - [SMALL_STATE(6757)] = 219111, - [SMALL_STATE(6758)] = 219127, - [SMALL_STATE(6759)] = 219141, - [SMALL_STATE(6760)] = 219157, - [SMALL_STATE(6761)] = 219173, - [SMALL_STATE(6762)] = 219189, - [SMALL_STATE(6763)] = 219205, - [SMALL_STATE(6764)] = 219221, - [SMALL_STATE(6765)] = 219237, - [SMALL_STATE(6766)] = 219253, - [SMALL_STATE(6767)] = 219269, - [SMALL_STATE(6768)] = 219285, - [SMALL_STATE(6769)] = 219299, - [SMALL_STATE(6770)] = 219315, - [SMALL_STATE(6771)] = 219329, - [SMALL_STATE(6772)] = 219345, - [SMALL_STATE(6773)] = 219361, - [SMALL_STATE(6774)] = 219373, - [SMALL_STATE(6775)] = 219385, - [SMALL_STATE(6776)] = 219397, - [SMALL_STATE(6777)] = 219413, - [SMALL_STATE(6778)] = 219427, - [SMALL_STATE(6779)] = 219443, - [SMALL_STATE(6780)] = 219457, - [SMALL_STATE(6781)] = 219473, - [SMALL_STATE(6782)] = 219489, - [SMALL_STATE(6783)] = 219505, - [SMALL_STATE(6784)] = 219521, - [SMALL_STATE(6785)] = 219537, - [SMALL_STATE(6786)] = 219553, - [SMALL_STATE(6787)] = 219569, - [SMALL_STATE(6788)] = 219585, - [SMALL_STATE(6789)] = 219601, - [SMALL_STATE(6790)] = 219617, - [SMALL_STATE(6791)] = 219629, - [SMALL_STATE(6792)] = 219641, - [SMALL_STATE(6793)] = 219657, - [SMALL_STATE(6794)] = 219673, - [SMALL_STATE(6795)] = 219685, - [SMALL_STATE(6796)] = 219701, - [SMALL_STATE(6797)] = 219713, - [SMALL_STATE(6798)] = 219725, - [SMALL_STATE(6799)] = 219737, - [SMALL_STATE(6800)] = 219749, - [SMALL_STATE(6801)] = 219763, - [SMALL_STATE(6802)] = 219775, - [SMALL_STATE(6803)] = 219791, - [SMALL_STATE(6804)] = 219807, - [SMALL_STATE(6805)] = 219823, - [SMALL_STATE(6806)] = 219835, - [SMALL_STATE(6807)] = 219849, - [SMALL_STATE(6808)] = 219863, - [SMALL_STATE(6809)] = 219879, - [SMALL_STATE(6810)] = 219895, - [SMALL_STATE(6811)] = 219909, - [SMALL_STATE(6812)] = 219925, - [SMALL_STATE(6813)] = 219941, - [SMALL_STATE(6814)] = 219957, - [SMALL_STATE(6815)] = 219973, - [SMALL_STATE(6816)] = 219989, - [SMALL_STATE(6817)] = 220005, - [SMALL_STATE(6818)] = 220021, - [SMALL_STATE(6819)] = 220035, - [SMALL_STATE(6820)] = 220051, - [SMALL_STATE(6821)] = 220063, - [SMALL_STATE(6822)] = 220075, - [SMALL_STATE(6823)] = 220089, - [SMALL_STATE(6824)] = 220105, - [SMALL_STATE(6825)] = 220119, - [SMALL_STATE(6826)] = 220135, - [SMALL_STATE(6827)] = 220149, - [SMALL_STATE(6828)] = 220161, - [SMALL_STATE(6829)] = 220177, - [SMALL_STATE(6830)] = 220191, - [SMALL_STATE(6831)] = 220207, - [SMALL_STATE(6832)] = 220219, - [SMALL_STATE(6833)] = 220235, - [SMALL_STATE(6834)] = 220249, - [SMALL_STATE(6835)] = 220265, - [SMALL_STATE(6836)] = 220277, - [SMALL_STATE(6837)] = 220291, - [SMALL_STATE(6838)] = 220307, - [SMALL_STATE(6839)] = 220319, - [SMALL_STATE(6840)] = 220335, - [SMALL_STATE(6841)] = 220351, - [SMALL_STATE(6842)] = 220367, - [SMALL_STATE(6843)] = 220379, - [SMALL_STATE(6844)] = 220395, - [SMALL_STATE(6845)] = 220411, - [SMALL_STATE(6846)] = 220423, - [SMALL_STATE(6847)] = 220439, - [SMALL_STATE(6848)] = 220455, - [SMALL_STATE(6849)] = 220471, - [SMALL_STATE(6850)] = 220487, - [SMALL_STATE(6851)] = 220503, - [SMALL_STATE(6852)] = 220519, - [SMALL_STATE(6853)] = 220533, - [SMALL_STATE(6854)] = 220547, - [SMALL_STATE(6855)] = 220563, - [SMALL_STATE(6856)] = 220577, - [SMALL_STATE(6857)] = 220593, - [SMALL_STATE(6858)] = 220609, - [SMALL_STATE(6859)] = 220625, - [SMALL_STATE(6860)] = 220637, - [SMALL_STATE(6861)] = 220653, - [SMALL_STATE(6862)] = 220669, - [SMALL_STATE(6863)] = 220685, - [SMALL_STATE(6864)] = 220701, - [SMALL_STATE(6865)] = 220717, - [SMALL_STATE(6866)] = 220733, - [SMALL_STATE(6867)] = 220747, - [SMALL_STATE(6868)] = 220763, - [SMALL_STATE(6869)] = 220779, - [SMALL_STATE(6870)] = 220795, - [SMALL_STATE(6871)] = 220811, - [SMALL_STATE(6872)] = 220825, - [SMALL_STATE(6873)] = 220839, - [SMALL_STATE(6874)] = 220855, - [SMALL_STATE(6875)] = 220871, - [SMALL_STATE(6876)] = 220887, - [SMALL_STATE(6877)] = 220901, - [SMALL_STATE(6878)] = 220915, - [SMALL_STATE(6879)] = 220931, - [SMALL_STATE(6880)] = 220943, - [SMALL_STATE(6881)] = 220955, - [SMALL_STATE(6882)] = 220971, - [SMALL_STATE(6883)] = 220985, - [SMALL_STATE(6884)] = 220999, - [SMALL_STATE(6885)] = 221015, - [SMALL_STATE(6886)] = 221031, - [SMALL_STATE(6887)] = 221045, - [SMALL_STATE(6888)] = 221061, - [SMALL_STATE(6889)] = 221077, - [SMALL_STATE(6890)] = 221093, - [SMALL_STATE(6891)] = 221105, - [SMALL_STATE(6892)] = 221121, - [SMALL_STATE(6893)] = 221137, - [SMALL_STATE(6894)] = 221153, - [SMALL_STATE(6895)] = 221169, - [SMALL_STATE(6896)] = 221185, - [SMALL_STATE(6897)] = 221199, - [SMALL_STATE(6898)] = 221213, - [SMALL_STATE(6899)] = 221229, - [SMALL_STATE(6900)] = 221243, - [SMALL_STATE(6901)] = 221257, - [SMALL_STATE(6902)] = 221269, - [SMALL_STATE(6903)] = 221283, - [SMALL_STATE(6904)] = 221297, - [SMALL_STATE(6905)] = 221311, - [SMALL_STATE(6906)] = 221325, - [SMALL_STATE(6907)] = 221337, - [SMALL_STATE(6908)] = 221349, - [SMALL_STATE(6909)] = 221365, - [SMALL_STATE(6910)] = 221377, - [SMALL_STATE(6911)] = 221393, - [SMALL_STATE(6912)] = 221409, - [SMALL_STATE(6913)] = 221421, - [SMALL_STATE(6914)] = 221437, - [SMALL_STATE(6915)] = 221449, - [SMALL_STATE(6916)] = 221461, - [SMALL_STATE(6917)] = 221477, - [SMALL_STATE(6918)] = 221493, - [SMALL_STATE(6919)] = 221509, - [SMALL_STATE(6920)] = 221523, - [SMALL_STATE(6921)] = 221539, - [SMALL_STATE(6922)] = 221551, - [SMALL_STATE(6923)] = 221567, - [SMALL_STATE(6924)] = 221583, - [SMALL_STATE(6925)] = 221597, - [SMALL_STATE(6926)] = 221613, - [SMALL_STATE(6927)] = 221629, - [SMALL_STATE(6928)] = 221641, - [SMALL_STATE(6929)] = 221655, - [SMALL_STATE(6930)] = 221667, - [SMALL_STATE(6931)] = 221679, - [SMALL_STATE(6932)] = 221691, - [SMALL_STATE(6933)] = 221703, - [SMALL_STATE(6934)] = 221719, - [SMALL_STATE(6935)] = 221735, - [SMALL_STATE(6936)] = 221751, - [SMALL_STATE(6937)] = 221763, - [SMALL_STATE(6938)] = 221779, - [SMALL_STATE(6939)] = 221795, - [SMALL_STATE(6940)] = 221811, - [SMALL_STATE(6941)] = 221827, - [SMALL_STATE(6942)] = 221841, - [SMALL_STATE(6943)] = 221857, - [SMALL_STATE(6944)] = 221873, - [SMALL_STATE(6945)] = 221889, - [SMALL_STATE(6946)] = 221903, - [SMALL_STATE(6947)] = 221919, - [SMALL_STATE(6948)] = 221933, - [SMALL_STATE(6949)] = 221949, - [SMALL_STATE(6950)] = 221965, - [SMALL_STATE(6951)] = 221981, - [SMALL_STATE(6952)] = 221995, - [SMALL_STATE(6953)] = 222007, - [SMALL_STATE(6954)] = 222023, - [SMALL_STATE(6955)] = 222035, - [SMALL_STATE(6956)] = 222051, - [SMALL_STATE(6957)] = 222067, - [SMALL_STATE(6958)] = 222079, - [SMALL_STATE(6959)] = 222093, - [SMALL_STATE(6960)] = 222109, - [SMALL_STATE(6961)] = 222125, - [SMALL_STATE(6962)] = 222141, - [SMALL_STATE(6963)] = 222157, - [SMALL_STATE(6964)] = 222173, - [SMALL_STATE(6965)] = 222189, - [SMALL_STATE(6966)] = 222205, - [SMALL_STATE(6967)] = 222221, - [SMALL_STATE(6968)] = 222237, - [SMALL_STATE(6969)] = 222253, - [SMALL_STATE(6970)] = 222267, - [SMALL_STATE(6971)] = 222283, - [SMALL_STATE(6972)] = 222295, - [SMALL_STATE(6973)] = 222307, - [SMALL_STATE(6974)] = 222321, - [SMALL_STATE(6975)] = 222333, - [SMALL_STATE(6976)] = 222345, - [SMALL_STATE(6977)] = 222361, - [SMALL_STATE(6978)] = 222375, - [SMALL_STATE(6979)] = 222391, - [SMALL_STATE(6980)] = 222403, - [SMALL_STATE(6981)] = 222419, - [SMALL_STATE(6982)] = 222435, - [SMALL_STATE(6983)] = 222451, - [SMALL_STATE(6984)] = 222467, - [SMALL_STATE(6985)] = 222483, - [SMALL_STATE(6986)] = 222499, - [SMALL_STATE(6987)] = 222513, - [SMALL_STATE(6988)] = 222527, - [SMALL_STATE(6989)] = 222543, - [SMALL_STATE(6990)] = 222559, - [SMALL_STATE(6991)] = 222575, - [SMALL_STATE(6992)] = 222589, - [SMALL_STATE(6993)] = 222605, - [SMALL_STATE(6994)] = 222617, - [SMALL_STATE(6995)] = 222629, - [SMALL_STATE(6996)] = 222641, - [SMALL_STATE(6997)] = 222653, - [SMALL_STATE(6998)] = 222669, - [SMALL_STATE(6999)] = 222681, - [SMALL_STATE(7000)] = 222697, - [SMALL_STATE(7001)] = 222713, - [SMALL_STATE(7002)] = 222729, - [SMALL_STATE(7003)] = 222745, - [SMALL_STATE(7004)] = 222761, - [SMALL_STATE(7005)] = 222773, - [SMALL_STATE(7006)] = 222789, - [SMALL_STATE(7007)] = 222801, - [SMALL_STATE(7008)] = 222817, - [SMALL_STATE(7009)] = 222833, - [SMALL_STATE(7010)] = 222847, - [SMALL_STATE(7011)] = 222863, - [SMALL_STATE(7012)] = 222879, - [SMALL_STATE(7013)] = 222891, - [SMALL_STATE(7014)] = 222903, - [SMALL_STATE(7015)] = 222919, - [SMALL_STATE(7016)] = 222935, - [SMALL_STATE(7017)] = 222951, - [SMALL_STATE(7018)] = 222967, - [SMALL_STATE(7019)] = 222983, - [SMALL_STATE(7020)] = 222999, - [SMALL_STATE(7021)] = 223013, - [SMALL_STATE(7022)] = 223029, - [SMALL_STATE(7023)] = 223045, - [SMALL_STATE(7024)] = 223061, - [SMALL_STATE(7025)] = 223073, - [SMALL_STATE(7026)] = 223089, - [SMALL_STATE(7027)] = 223105, - [SMALL_STATE(7028)] = 223119, - [SMALL_STATE(7029)] = 223133, - [SMALL_STATE(7030)] = 223145, - [SMALL_STATE(7031)] = 223161, - [SMALL_STATE(7032)] = 223177, - [SMALL_STATE(7033)] = 223193, - [SMALL_STATE(7034)] = 223209, - [SMALL_STATE(7035)] = 223225, - [SMALL_STATE(7036)] = 223241, - [SMALL_STATE(7037)] = 223257, - [SMALL_STATE(7038)] = 223273, - [SMALL_STATE(7039)] = 223289, - [SMALL_STATE(7040)] = 223305, - [SMALL_STATE(7041)] = 223317, - [SMALL_STATE(7042)] = 223331, - [SMALL_STATE(7043)] = 223345, - [SMALL_STATE(7044)] = 223357, - [SMALL_STATE(7045)] = 223369, - [SMALL_STATE(7046)] = 223385, - [SMALL_STATE(7047)] = 223401, - [SMALL_STATE(7048)] = 223417, - [SMALL_STATE(7049)] = 223429, - [SMALL_STATE(7050)] = 223441, - [SMALL_STATE(7051)] = 223453, - [SMALL_STATE(7052)] = 223469, - [SMALL_STATE(7053)] = 223483, - [SMALL_STATE(7054)] = 223499, - [SMALL_STATE(7055)] = 223511, - [SMALL_STATE(7056)] = 223523, - [SMALL_STATE(7057)] = 223539, - [SMALL_STATE(7058)] = 223555, - [SMALL_STATE(7059)] = 223571, - [SMALL_STATE(7060)] = 223583, - [SMALL_STATE(7061)] = 223597, - [SMALL_STATE(7062)] = 223611, - [SMALL_STATE(7063)] = 223623, - [SMALL_STATE(7064)] = 223635, - [SMALL_STATE(7065)] = 223647, - [SMALL_STATE(7066)] = 223663, - [SMALL_STATE(7067)] = 223679, - [SMALL_STATE(7068)] = 223691, - [SMALL_STATE(7069)] = 223707, - [SMALL_STATE(7070)] = 223723, - [SMALL_STATE(7071)] = 223735, - [SMALL_STATE(7072)] = 223747, - [SMALL_STATE(7073)] = 223759, - [SMALL_STATE(7074)] = 223775, - [SMALL_STATE(7075)] = 223791, - [SMALL_STATE(7076)] = 223807, - [SMALL_STATE(7077)] = 223823, - [SMALL_STATE(7078)] = 223839, - [SMALL_STATE(7079)] = 223855, - [SMALL_STATE(7080)] = 223871, - [SMALL_STATE(7081)] = 223887, - [SMALL_STATE(7082)] = 223901, - [SMALL_STATE(7083)] = 223917, - [SMALL_STATE(7084)] = 223929, - [SMALL_STATE(7085)] = 223941, - [SMALL_STATE(7086)] = 223953, - [SMALL_STATE(7087)] = 223965, - [SMALL_STATE(7088)] = 223977, - [SMALL_STATE(7089)] = 223989, - [SMALL_STATE(7090)] = 224003, - [SMALL_STATE(7091)] = 224017, - [SMALL_STATE(7092)] = 224033, - [SMALL_STATE(7093)] = 224047, - [SMALL_STATE(7094)] = 224063, - [SMALL_STATE(7095)] = 224079, - [SMALL_STATE(7096)] = 224091, - [SMALL_STATE(7097)] = 224107, - [SMALL_STATE(7098)] = 224121, - [SMALL_STATE(7099)] = 224133, - [SMALL_STATE(7100)] = 224147, - [SMALL_STATE(7101)] = 224161, - [SMALL_STATE(7102)] = 224177, - [SMALL_STATE(7103)] = 224193, - [SMALL_STATE(7104)] = 224209, - [SMALL_STATE(7105)] = 224225, - [SMALL_STATE(7106)] = 224241, - [SMALL_STATE(7107)] = 224255, - [SMALL_STATE(7108)] = 224271, - [SMALL_STATE(7109)] = 224283, - [SMALL_STATE(7110)] = 224297, - [SMALL_STATE(7111)] = 224311, - [SMALL_STATE(7112)] = 224323, - [SMALL_STATE(7113)] = 224335, - [SMALL_STATE(7114)] = 224347, - [SMALL_STATE(7115)] = 224361, - [SMALL_STATE(7116)] = 224375, - [SMALL_STATE(7117)] = 224391, - [SMALL_STATE(7118)] = 224403, - [SMALL_STATE(7119)] = 224419, - [SMALL_STATE(7120)] = 224435, - [SMALL_STATE(7121)] = 224451, - [SMALL_STATE(7122)] = 224467, - [SMALL_STATE(7123)] = 224483, - [SMALL_STATE(7124)] = 224499, - [SMALL_STATE(7125)] = 224515, - [SMALL_STATE(7126)] = 224531, - [SMALL_STATE(7127)] = 224543, - [SMALL_STATE(7128)] = 224559, - [SMALL_STATE(7129)] = 224575, - [SMALL_STATE(7130)] = 224589, - [SMALL_STATE(7131)] = 224603, - [SMALL_STATE(7132)] = 224619, - [SMALL_STATE(7133)] = 224635, - [SMALL_STATE(7134)] = 224651, - [SMALL_STATE(7135)] = 224667, - [SMALL_STATE(7136)] = 224683, - [SMALL_STATE(7137)] = 224699, - [SMALL_STATE(7138)] = 224715, - [SMALL_STATE(7139)] = 224731, - [SMALL_STATE(7140)] = 224747, - [SMALL_STATE(7141)] = 224763, - [SMALL_STATE(7142)] = 224777, - [SMALL_STATE(7143)] = 224793, - [SMALL_STATE(7144)] = 224807, - [SMALL_STATE(7145)] = 224823, - [SMALL_STATE(7146)] = 224839, - [SMALL_STATE(7147)] = 224851, - [SMALL_STATE(7148)] = 224865, - [SMALL_STATE(7149)] = 224877, - [SMALL_STATE(7150)] = 224893, - [SMALL_STATE(7151)] = 224909, - [SMALL_STATE(7152)] = 224921, - [SMALL_STATE(7153)] = 224935, - [SMALL_STATE(7154)] = 224951, - [SMALL_STATE(7155)] = 224965, - [SMALL_STATE(7156)] = 224981, - [SMALL_STATE(7157)] = 224997, - [SMALL_STATE(7158)] = 225013, - [SMALL_STATE(7159)] = 225029, - [SMALL_STATE(7160)] = 225045, - [SMALL_STATE(7161)] = 225061, - [SMALL_STATE(7162)] = 225073, - [SMALL_STATE(7163)] = 225089, - [SMALL_STATE(7164)] = 225105, - [SMALL_STATE(7165)] = 225117, - [SMALL_STATE(7166)] = 225129, - [SMALL_STATE(7167)] = 225141, - [SMALL_STATE(7168)] = 225157, - [SMALL_STATE(7169)] = 225173, - [SMALL_STATE(7170)] = 225189, - [SMALL_STATE(7171)] = 225203, - [SMALL_STATE(7172)] = 225219, - [SMALL_STATE(7173)] = 225235, - [SMALL_STATE(7174)] = 225251, - [SMALL_STATE(7175)] = 225265, - [SMALL_STATE(7176)] = 225281, - [SMALL_STATE(7177)] = 225293, - [SMALL_STATE(7178)] = 225305, - [SMALL_STATE(7179)] = 225321, - [SMALL_STATE(7180)] = 225333, - [SMALL_STATE(7181)] = 225349, - [SMALL_STATE(7182)] = 225361, - [SMALL_STATE(7183)] = 225377, - [SMALL_STATE(7184)] = 225391, - [SMALL_STATE(7185)] = 225405, - [SMALL_STATE(7186)] = 225419, - [SMALL_STATE(7187)] = 225435, - [SMALL_STATE(7188)] = 225447, - [SMALL_STATE(7189)] = 225463, - [SMALL_STATE(7190)] = 225479, - [SMALL_STATE(7191)] = 225495, - [SMALL_STATE(7192)] = 225511, - [SMALL_STATE(7193)] = 225527, - [SMALL_STATE(7194)] = 225543, - [SMALL_STATE(7195)] = 225557, - [SMALL_STATE(7196)] = 225571, - [SMALL_STATE(7197)] = 225585, - [SMALL_STATE(7198)] = 225601, - [SMALL_STATE(7199)] = 225617, - [SMALL_STATE(7200)] = 225633, - [SMALL_STATE(7201)] = 225649, - [SMALL_STATE(7202)] = 225665, - [SMALL_STATE(7203)] = 225679, - [SMALL_STATE(7204)] = 225691, - [SMALL_STATE(7205)] = 225703, - [SMALL_STATE(7206)] = 225717, - [SMALL_STATE(7207)] = 225729, - [SMALL_STATE(7208)] = 225743, - [SMALL_STATE(7209)] = 225759, - [SMALL_STATE(7210)] = 225775, - [SMALL_STATE(7211)] = 225791, - [SMALL_STATE(7212)] = 225807, - [SMALL_STATE(7213)] = 225821, - [SMALL_STATE(7214)] = 225835, - [SMALL_STATE(7215)] = 225849, - [SMALL_STATE(7216)] = 225865, - [SMALL_STATE(7217)] = 225881, - [SMALL_STATE(7218)] = 225893, - [SMALL_STATE(7219)] = 225909, - [SMALL_STATE(7220)] = 225925, - [SMALL_STATE(7221)] = 225939, - [SMALL_STATE(7222)] = 225951, - [SMALL_STATE(7223)] = 225963, - [SMALL_STATE(7224)] = 225977, - [SMALL_STATE(7225)] = 225993, - [SMALL_STATE(7226)] = 226009, - [SMALL_STATE(7227)] = 226025, - [SMALL_STATE(7228)] = 226041, - [SMALL_STATE(7229)] = 226055, - [SMALL_STATE(7230)] = 226067, - [SMALL_STATE(7231)] = 226081, - [SMALL_STATE(7232)] = 226097, - [SMALL_STATE(7233)] = 226113, - [SMALL_STATE(7234)] = 226129, - [SMALL_STATE(7235)] = 226145, - [SMALL_STATE(7236)] = 226159, - [SMALL_STATE(7237)] = 226175, - [SMALL_STATE(7238)] = 226189, - [SMALL_STATE(7239)] = 226205, - [SMALL_STATE(7240)] = 226221, - [SMALL_STATE(7241)] = 226237, - [SMALL_STATE(7242)] = 226253, - [SMALL_STATE(7243)] = 226269, - [SMALL_STATE(7244)] = 226283, - [SMALL_STATE(7245)] = 226299, - [SMALL_STATE(7246)] = 226313, - [SMALL_STATE(7247)] = 226329, - [SMALL_STATE(7248)] = 226345, - [SMALL_STATE(7249)] = 226361, - [SMALL_STATE(7250)] = 226377, - [SMALL_STATE(7251)] = 226391, - [SMALL_STATE(7252)] = 226405, - [SMALL_STATE(7253)] = 226421, - [SMALL_STATE(7254)] = 226437, - [SMALL_STATE(7255)] = 226453, - [SMALL_STATE(7256)] = 226469, - [SMALL_STATE(7257)] = 226483, - [SMALL_STATE(7258)] = 226495, - [SMALL_STATE(7259)] = 226511, - [SMALL_STATE(7260)] = 226525, - [SMALL_STATE(7261)] = 226541, - [SMALL_STATE(7262)] = 226557, - [SMALL_STATE(7263)] = 226573, - [SMALL_STATE(7264)] = 226589, - [SMALL_STATE(7265)] = 226603, - [SMALL_STATE(7266)] = 226619, - [SMALL_STATE(7267)] = 226633, - [SMALL_STATE(7268)] = 226647, - [SMALL_STATE(7269)] = 226663, - [SMALL_STATE(7270)] = 226679, - [SMALL_STATE(7271)] = 226695, - [SMALL_STATE(7272)] = 226711, - [SMALL_STATE(7273)] = 226727, - [SMALL_STATE(7274)] = 226741, - [SMALL_STATE(7275)] = 226755, - [SMALL_STATE(7276)] = 226771, - [SMALL_STATE(7277)] = 226787, - [SMALL_STATE(7278)] = 226803, - [SMALL_STATE(7279)] = 226819, - [SMALL_STATE(7280)] = 226833, - [SMALL_STATE(7281)] = 226847, - [SMALL_STATE(7282)] = 226859, - [SMALL_STATE(7283)] = 226875, - [SMALL_STATE(7284)] = 226891, - [SMALL_STATE(7285)] = 226907, - [SMALL_STATE(7286)] = 226923, - [SMALL_STATE(7287)] = 226937, - [SMALL_STATE(7288)] = 226951, - [SMALL_STATE(7289)] = 226965, - [SMALL_STATE(7290)] = 226981, - [SMALL_STATE(7291)] = 226997, - [SMALL_STATE(7292)] = 227009, - [SMALL_STATE(7293)] = 227025, - [SMALL_STATE(7294)] = 227041, - [SMALL_STATE(7295)] = 227055, - [SMALL_STATE(7296)] = 227069, - [SMALL_STATE(7297)] = 227081, - [SMALL_STATE(7298)] = 227097, - [SMALL_STATE(7299)] = 227113, - [SMALL_STATE(7300)] = 227125, - [SMALL_STATE(7301)] = 227141, - [SMALL_STATE(7302)] = 227157, - [SMALL_STATE(7303)] = 227171, - [SMALL_STATE(7304)] = 227185, - [SMALL_STATE(7305)] = 227201, - [SMALL_STATE(7306)] = 227217, - [SMALL_STATE(7307)] = 227229, - [SMALL_STATE(7308)] = 227245, - [SMALL_STATE(7309)] = 227261, - [SMALL_STATE(7310)] = 227277, - [SMALL_STATE(7311)] = 227293, - [SMALL_STATE(7312)] = 227309, - [SMALL_STATE(7313)] = 227323, - [SMALL_STATE(7314)] = 227339, - [SMALL_STATE(7315)] = 227353, - [SMALL_STATE(7316)] = 227367, - [SMALL_STATE(7317)] = 227383, - [SMALL_STATE(7318)] = 227399, - [SMALL_STATE(7319)] = 227411, - [SMALL_STATE(7320)] = 227427, - [SMALL_STATE(7321)] = 227443, - [SMALL_STATE(7322)] = 227459, - [SMALL_STATE(7323)] = 227475, - [SMALL_STATE(7324)] = 227491, - [SMALL_STATE(7325)] = 227507, - [SMALL_STATE(7326)] = 227519, - [SMALL_STATE(7327)] = 227533, - [SMALL_STATE(7328)] = 227549, - [SMALL_STATE(7329)] = 227563, - [SMALL_STATE(7330)] = 227579, - [SMALL_STATE(7331)] = 227595, - [SMALL_STATE(7332)] = 227611, - [SMALL_STATE(7333)] = 227625, - [SMALL_STATE(7334)] = 227639, - [SMALL_STATE(7335)] = 227655, - [SMALL_STATE(7336)] = 227669, - [SMALL_STATE(7337)] = 227685, - [SMALL_STATE(7338)] = 227699, - [SMALL_STATE(7339)] = 227713, - [SMALL_STATE(7340)] = 227725, - [SMALL_STATE(7341)] = 227741, - [SMALL_STATE(7342)] = 227755, - [SMALL_STATE(7343)] = 227771, - [SMALL_STATE(7344)] = 227785, - [SMALL_STATE(7345)] = 227799, - [SMALL_STATE(7346)] = 227811, - [SMALL_STATE(7347)] = 227823, - [SMALL_STATE(7348)] = 227836, - [SMALL_STATE(7349)] = 227849, - [SMALL_STATE(7350)] = 227862, - [SMALL_STATE(7351)] = 227875, - [SMALL_STATE(7352)] = 227888, - [SMALL_STATE(7353)] = 227901, - [SMALL_STATE(7354)] = 227914, - [SMALL_STATE(7355)] = 227927, - [SMALL_STATE(7356)] = 227940, - [SMALL_STATE(7357)] = 227953, - [SMALL_STATE(7358)] = 227966, - [SMALL_STATE(7359)] = 227979, - [SMALL_STATE(7360)] = 227992, - [SMALL_STATE(7361)] = 228005, - [SMALL_STATE(7362)] = 228018, - [SMALL_STATE(7363)] = 228031, - [SMALL_STATE(7364)] = 228044, - [SMALL_STATE(7365)] = 228057, - [SMALL_STATE(7366)] = 228068, - [SMALL_STATE(7367)] = 228081, - [SMALL_STATE(7368)] = 228094, - [SMALL_STATE(7369)] = 228107, - [SMALL_STATE(7370)] = 228120, - [SMALL_STATE(7371)] = 228133, - [SMALL_STATE(7372)] = 228146, - [SMALL_STATE(7373)] = 228159, - [SMALL_STATE(7374)] = 228172, - [SMALL_STATE(7375)] = 228185, - [SMALL_STATE(7376)] = 228198, - [SMALL_STATE(7377)] = 228211, - [SMALL_STATE(7378)] = 228224, - [SMALL_STATE(7379)] = 228237, - [SMALL_STATE(7380)] = 228250, - [SMALL_STATE(7381)] = 228263, - [SMALL_STATE(7382)] = 228276, - [SMALL_STATE(7383)] = 228289, - [SMALL_STATE(7384)] = 228302, - [SMALL_STATE(7385)] = 228315, - [SMALL_STATE(7386)] = 228328, - [SMALL_STATE(7387)] = 228341, - [SMALL_STATE(7388)] = 228354, - [SMALL_STATE(7389)] = 228367, - [SMALL_STATE(7390)] = 228380, - [SMALL_STATE(7391)] = 228393, - [SMALL_STATE(7392)] = 228406, - [SMALL_STATE(7393)] = 228419, - [SMALL_STATE(7394)] = 228432, - [SMALL_STATE(7395)] = 228445, - [SMALL_STATE(7396)] = 228458, - [SMALL_STATE(7397)] = 228471, - [SMALL_STATE(7398)] = 228484, - [SMALL_STATE(7399)] = 228497, - [SMALL_STATE(7400)] = 228510, - [SMALL_STATE(7401)] = 228523, - [SMALL_STATE(7402)] = 228536, - [SMALL_STATE(7403)] = 228549, - [SMALL_STATE(7404)] = 228562, - [SMALL_STATE(7405)] = 228575, - [SMALL_STATE(7406)] = 228588, - [SMALL_STATE(7407)] = 228601, - [SMALL_STATE(7408)] = 228614, - [SMALL_STATE(7409)] = 228627, - [SMALL_STATE(7410)] = 228640, - [SMALL_STATE(7411)] = 228653, - [SMALL_STATE(7412)] = 228666, - [SMALL_STATE(7413)] = 228679, - [SMALL_STATE(7414)] = 228692, - [SMALL_STATE(7415)] = 228705, - [SMALL_STATE(7416)] = 228718, - [SMALL_STATE(7417)] = 228731, - [SMALL_STATE(7418)] = 228744, - [SMALL_STATE(7419)] = 228757, - [SMALL_STATE(7420)] = 228770, - [SMALL_STATE(7421)] = 228783, - [SMALL_STATE(7422)] = 228796, - [SMALL_STATE(7423)] = 228809, - [SMALL_STATE(7424)] = 228822, - [SMALL_STATE(7425)] = 228835, - [SMALL_STATE(7426)] = 228848, - [SMALL_STATE(7427)] = 228861, - [SMALL_STATE(7428)] = 228874, - [SMALL_STATE(7429)] = 228885, - [SMALL_STATE(7430)] = 228898, - [SMALL_STATE(7431)] = 228911, - [SMALL_STATE(7432)] = 228924, - [SMALL_STATE(7433)] = 228937, - [SMALL_STATE(7434)] = 228950, - [SMALL_STATE(7435)] = 228963, - [SMALL_STATE(7436)] = 228976, - [SMALL_STATE(7437)] = 228989, - [SMALL_STATE(7438)] = 229002, - [SMALL_STATE(7439)] = 229015, - [SMALL_STATE(7440)] = 229028, - [SMALL_STATE(7441)] = 229041, - [SMALL_STATE(7442)] = 229054, - [SMALL_STATE(7443)] = 229067, - [SMALL_STATE(7444)] = 229080, - [SMALL_STATE(7445)] = 229093, - [SMALL_STATE(7446)] = 229106, - [SMALL_STATE(7447)] = 229119, - [SMALL_STATE(7448)] = 229132, - [SMALL_STATE(7449)] = 229145, - [SMALL_STATE(7450)] = 229158, - [SMALL_STATE(7451)] = 229171, - [SMALL_STATE(7452)] = 229184, - [SMALL_STATE(7453)] = 229197, - [SMALL_STATE(7454)] = 229210, - [SMALL_STATE(7455)] = 229223, - [SMALL_STATE(7456)] = 229236, - [SMALL_STATE(7457)] = 229249, - [SMALL_STATE(7458)] = 229260, - [SMALL_STATE(7459)] = 229273, - [SMALL_STATE(7460)] = 229286, - [SMALL_STATE(7461)] = 229299, - [SMALL_STATE(7462)] = 229312, - [SMALL_STATE(7463)] = 229323, - [SMALL_STATE(7464)] = 229336, - [SMALL_STATE(7465)] = 229349, - [SMALL_STATE(7466)] = 229362, - [SMALL_STATE(7467)] = 229375, - [SMALL_STATE(7468)] = 229388, - [SMALL_STATE(7469)] = 229401, - [SMALL_STATE(7470)] = 229414, - [SMALL_STATE(7471)] = 229427, - [SMALL_STATE(7472)] = 229440, - [SMALL_STATE(7473)] = 229453, - [SMALL_STATE(7474)] = 229466, - [SMALL_STATE(7475)] = 229479, - [SMALL_STATE(7476)] = 229492, - [SMALL_STATE(7477)] = 229503, - [SMALL_STATE(7478)] = 229516, - [SMALL_STATE(7479)] = 229529, - [SMALL_STATE(7480)] = 229542, - [SMALL_STATE(7481)] = 229555, - [SMALL_STATE(7482)] = 229568, - [SMALL_STATE(7483)] = 229581, - [SMALL_STATE(7484)] = 229594, - [SMALL_STATE(7485)] = 229607, - [SMALL_STATE(7486)] = 229620, - [SMALL_STATE(7487)] = 229633, - [SMALL_STATE(7488)] = 229646, - [SMALL_STATE(7489)] = 229657, - [SMALL_STATE(7490)] = 229670, - [SMALL_STATE(7491)] = 229683, - [SMALL_STATE(7492)] = 229694, - [SMALL_STATE(7493)] = 229707, - [SMALL_STATE(7494)] = 229720, - [SMALL_STATE(7495)] = 229733, - [SMALL_STATE(7496)] = 229746, - [SMALL_STATE(7497)] = 229759, - [SMALL_STATE(7498)] = 229772, - [SMALL_STATE(7499)] = 229785, - [SMALL_STATE(7500)] = 229798, - [SMALL_STATE(7501)] = 229811, - [SMALL_STATE(7502)] = 229824, - [SMALL_STATE(7503)] = 229837, - [SMALL_STATE(7504)] = 229850, - [SMALL_STATE(7505)] = 229863, - [SMALL_STATE(7506)] = 229876, - [SMALL_STATE(7507)] = 229889, - [SMALL_STATE(7508)] = 229902, - [SMALL_STATE(7509)] = 229915, - [SMALL_STATE(7510)] = 229928, - [SMALL_STATE(7511)] = 229941, - [SMALL_STATE(7512)] = 229954, - [SMALL_STATE(7513)] = 229967, - [SMALL_STATE(7514)] = 229980, - [SMALL_STATE(7515)] = 229993, - [SMALL_STATE(7516)] = 230006, - [SMALL_STATE(7517)] = 230019, - [SMALL_STATE(7518)] = 230032, - [SMALL_STATE(7519)] = 230045, - [SMALL_STATE(7520)] = 230058, - [SMALL_STATE(7521)] = 230071, - [SMALL_STATE(7522)] = 230084, - [SMALL_STATE(7523)] = 230097, - [SMALL_STATE(7524)] = 230110, - [SMALL_STATE(7525)] = 230123, - [SMALL_STATE(7526)] = 230136, - [SMALL_STATE(7527)] = 230149, - [SMALL_STATE(7528)] = 230162, - [SMALL_STATE(7529)] = 230175, - [SMALL_STATE(7530)] = 230188, - [SMALL_STATE(7531)] = 230201, - [SMALL_STATE(7532)] = 230214, - [SMALL_STATE(7533)] = 230227, - [SMALL_STATE(7534)] = 230240, - [SMALL_STATE(7535)] = 230253, - [SMALL_STATE(7536)] = 230266, - [SMALL_STATE(7537)] = 230279, - [SMALL_STATE(7538)] = 230292, - [SMALL_STATE(7539)] = 230305, - [SMALL_STATE(7540)] = 230318, - [SMALL_STATE(7541)] = 230329, - [SMALL_STATE(7542)] = 230342, - [SMALL_STATE(7543)] = 230355, - [SMALL_STATE(7544)] = 230368, - [SMALL_STATE(7545)] = 230381, - [SMALL_STATE(7546)] = 230394, - [SMALL_STATE(7547)] = 230407, - [SMALL_STATE(7548)] = 230420, - [SMALL_STATE(7549)] = 230430, - [SMALL_STATE(7550)] = 230440, - [SMALL_STATE(7551)] = 230450, - [SMALL_STATE(7552)] = 230460, - [SMALL_STATE(7553)] = 230470, - [SMALL_STATE(7554)] = 230480, - [SMALL_STATE(7555)] = 230490, - [SMALL_STATE(7556)] = 230500, - [SMALL_STATE(7557)] = 230510, - [SMALL_STATE(7558)] = 230520, - [SMALL_STATE(7559)] = 230530, - [SMALL_STATE(7560)] = 230540, - [SMALL_STATE(7561)] = 230550, - [SMALL_STATE(7562)] = 230560, - [SMALL_STATE(7563)] = 230570, - [SMALL_STATE(7564)] = 230580, - [SMALL_STATE(7565)] = 230590, - [SMALL_STATE(7566)] = 230600, - [SMALL_STATE(7567)] = 230610, - [SMALL_STATE(7568)] = 230620, - [SMALL_STATE(7569)] = 230630, - [SMALL_STATE(7570)] = 230640, - [SMALL_STATE(7571)] = 230650, - [SMALL_STATE(7572)] = 230660, - [SMALL_STATE(7573)] = 230670, - [SMALL_STATE(7574)] = 230680, - [SMALL_STATE(7575)] = 230690, - [SMALL_STATE(7576)] = 230700, - [SMALL_STATE(7577)] = 230710, - [SMALL_STATE(7578)] = 230720, - [SMALL_STATE(7579)] = 230730, - [SMALL_STATE(7580)] = 230740, - [SMALL_STATE(7581)] = 230750, - [SMALL_STATE(7582)] = 230760, - [SMALL_STATE(7583)] = 230770, - [SMALL_STATE(7584)] = 230780, - [SMALL_STATE(7585)] = 230790, - [SMALL_STATE(7586)] = 230800, - [SMALL_STATE(7587)] = 230810, - [SMALL_STATE(7588)] = 230820, - [SMALL_STATE(7589)] = 230830, - [SMALL_STATE(7590)] = 230840, - [SMALL_STATE(7591)] = 230850, - [SMALL_STATE(7592)] = 230860, - [SMALL_STATE(7593)] = 230870, - [SMALL_STATE(7594)] = 230880, - [SMALL_STATE(7595)] = 230890, - [SMALL_STATE(7596)] = 230900, - [SMALL_STATE(7597)] = 230910, - [SMALL_STATE(7598)] = 230920, - [SMALL_STATE(7599)] = 230930, - [SMALL_STATE(7600)] = 230940, - [SMALL_STATE(7601)] = 230950, - [SMALL_STATE(7602)] = 230960, - [SMALL_STATE(7603)] = 230970, - [SMALL_STATE(7604)] = 230980, - [SMALL_STATE(7605)] = 230990, - [SMALL_STATE(7606)] = 231000, - [SMALL_STATE(7607)] = 231010, - [SMALL_STATE(7608)] = 231020, - [SMALL_STATE(7609)] = 231030, - [SMALL_STATE(7610)] = 231040, - [SMALL_STATE(7611)] = 231050, - [SMALL_STATE(7612)] = 231060, - [SMALL_STATE(7613)] = 231070, - [SMALL_STATE(7614)] = 231080, - [SMALL_STATE(7615)] = 231090, - [SMALL_STATE(7616)] = 231100, - [SMALL_STATE(7617)] = 231110, - [SMALL_STATE(7618)] = 231120, - [SMALL_STATE(7619)] = 231130, - [SMALL_STATE(7620)] = 231140, - [SMALL_STATE(7621)] = 231150, - [SMALL_STATE(7622)] = 231160, - [SMALL_STATE(7623)] = 231170, - [SMALL_STATE(7624)] = 231180, - [SMALL_STATE(7625)] = 231190, - [SMALL_STATE(7626)] = 231200, - [SMALL_STATE(7627)] = 231210, - [SMALL_STATE(7628)] = 231220, - [SMALL_STATE(7629)] = 231230, - [SMALL_STATE(7630)] = 231240, - [SMALL_STATE(7631)] = 231250, - [SMALL_STATE(7632)] = 231260, - [SMALL_STATE(7633)] = 231270, - [SMALL_STATE(7634)] = 231280, - [SMALL_STATE(7635)] = 231290, - [SMALL_STATE(7636)] = 231300, - [SMALL_STATE(7637)] = 231310, - [SMALL_STATE(7638)] = 231320, - [SMALL_STATE(7639)] = 231330, - [SMALL_STATE(7640)] = 231340, - [SMALL_STATE(7641)] = 231350, - [SMALL_STATE(7642)] = 231360, - [SMALL_STATE(7643)] = 231370, - [SMALL_STATE(7644)] = 231380, - [SMALL_STATE(7645)] = 231390, - [SMALL_STATE(7646)] = 231400, - [SMALL_STATE(7647)] = 231410, - [SMALL_STATE(7648)] = 231420, - [SMALL_STATE(7649)] = 231430, - [SMALL_STATE(7650)] = 231440, - [SMALL_STATE(7651)] = 231450, - [SMALL_STATE(7652)] = 231460, - [SMALL_STATE(7653)] = 231470, - [SMALL_STATE(7654)] = 231480, - [SMALL_STATE(7655)] = 231490, - [SMALL_STATE(7656)] = 231500, - [SMALL_STATE(7657)] = 231510, - [SMALL_STATE(7658)] = 231520, - [SMALL_STATE(7659)] = 231530, - [SMALL_STATE(7660)] = 231540, - [SMALL_STATE(7661)] = 231550, - [SMALL_STATE(7662)] = 231560, - [SMALL_STATE(7663)] = 231570, - [SMALL_STATE(7664)] = 231580, - [SMALL_STATE(7665)] = 231590, - [SMALL_STATE(7666)] = 231600, - [SMALL_STATE(7667)] = 231610, - [SMALL_STATE(7668)] = 231620, - [SMALL_STATE(7669)] = 231630, - [SMALL_STATE(7670)] = 231640, - [SMALL_STATE(7671)] = 231650, - [SMALL_STATE(7672)] = 231660, - [SMALL_STATE(7673)] = 231670, - [SMALL_STATE(7674)] = 231680, - [SMALL_STATE(7675)] = 231690, - [SMALL_STATE(7676)] = 231700, - [SMALL_STATE(7677)] = 231710, - [SMALL_STATE(7678)] = 231720, - [SMALL_STATE(7679)] = 231730, - [SMALL_STATE(7680)] = 231740, - [SMALL_STATE(7681)] = 231750, - [SMALL_STATE(7682)] = 231760, - [SMALL_STATE(7683)] = 231770, - [SMALL_STATE(7684)] = 231780, - [SMALL_STATE(7685)] = 231790, - [SMALL_STATE(7686)] = 231800, - [SMALL_STATE(7687)] = 231810, - [SMALL_STATE(7688)] = 231820, - [SMALL_STATE(7689)] = 231830, - [SMALL_STATE(7690)] = 231840, - [SMALL_STATE(7691)] = 231850, - [SMALL_STATE(7692)] = 231860, - [SMALL_STATE(7693)] = 231870, - [SMALL_STATE(7694)] = 231880, - [SMALL_STATE(7695)] = 231890, - [SMALL_STATE(7696)] = 231900, - [SMALL_STATE(7697)] = 231910, - [SMALL_STATE(7698)] = 231920, - [SMALL_STATE(7699)] = 231930, - [SMALL_STATE(7700)] = 231940, - [SMALL_STATE(7701)] = 231950, - [SMALL_STATE(7702)] = 231960, - [SMALL_STATE(7703)] = 231970, - [SMALL_STATE(7704)] = 231980, - [SMALL_STATE(7705)] = 231990, - [SMALL_STATE(7706)] = 232000, - [SMALL_STATE(7707)] = 232010, - [SMALL_STATE(7708)] = 232020, - [SMALL_STATE(7709)] = 232030, - [SMALL_STATE(7710)] = 232040, - [SMALL_STATE(7711)] = 232050, - [SMALL_STATE(7712)] = 232060, - [SMALL_STATE(7713)] = 232070, - [SMALL_STATE(7714)] = 232080, - [SMALL_STATE(7715)] = 232090, - [SMALL_STATE(7716)] = 232100, - [SMALL_STATE(7717)] = 232110, - [SMALL_STATE(7718)] = 232120, - [SMALL_STATE(7719)] = 232130, - [SMALL_STATE(7720)] = 232140, - [SMALL_STATE(7721)] = 232150, - [SMALL_STATE(7722)] = 232160, - [SMALL_STATE(7723)] = 232170, - [SMALL_STATE(7724)] = 232180, - [SMALL_STATE(7725)] = 232190, - [SMALL_STATE(7726)] = 232200, - [SMALL_STATE(7727)] = 232210, - [SMALL_STATE(7728)] = 232220, - [SMALL_STATE(7729)] = 232230, - [SMALL_STATE(7730)] = 232240, - [SMALL_STATE(7731)] = 232250, - [SMALL_STATE(7732)] = 232260, - [SMALL_STATE(7733)] = 232270, - [SMALL_STATE(7734)] = 232280, - [SMALL_STATE(7735)] = 232290, - [SMALL_STATE(7736)] = 232300, - [SMALL_STATE(7737)] = 232310, - [SMALL_STATE(7738)] = 232320, - [SMALL_STATE(7739)] = 232330, - [SMALL_STATE(7740)] = 232340, - [SMALL_STATE(7741)] = 232350, - [SMALL_STATE(7742)] = 232360, - [SMALL_STATE(7743)] = 232370, - [SMALL_STATE(7744)] = 232380, - [SMALL_STATE(7745)] = 232390, - [SMALL_STATE(7746)] = 232400, - [SMALL_STATE(7747)] = 232410, - [SMALL_STATE(7748)] = 232420, - [SMALL_STATE(7749)] = 232430, - [SMALL_STATE(7750)] = 232440, - [SMALL_STATE(7751)] = 232450, - [SMALL_STATE(7752)] = 232460, - [SMALL_STATE(7753)] = 232470, - [SMALL_STATE(7754)] = 232480, - [SMALL_STATE(7755)] = 232490, - [SMALL_STATE(7756)] = 232500, - [SMALL_STATE(7757)] = 232510, - [SMALL_STATE(7758)] = 232520, - [SMALL_STATE(7759)] = 232530, - [SMALL_STATE(7760)] = 232540, - [SMALL_STATE(7761)] = 232550, - [SMALL_STATE(7762)] = 232560, - [SMALL_STATE(7763)] = 232570, - [SMALL_STATE(7764)] = 232580, - [SMALL_STATE(7765)] = 232590, - [SMALL_STATE(7766)] = 232600, - [SMALL_STATE(7767)] = 232610, - [SMALL_STATE(7768)] = 232620, - [SMALL_STATE(7769)] = 232630, - [SMALL_STATE(7770)] = 232640, - [SMALL_STATE(7771)] = 232650, - [SMALL_STATE(7772)] = 232660, - [SMALL_STATE(7773)] = 232670, - [SMALL_STATE(7774)] = 232680, - [SMALL_STATE(7775)] = 232690, - [SMALL_STATE(7776)] = 232700, - [SMALL_STATE(7777)] = 232710, - [SMALL_STATE(7778)] = 232720, - [SMALL_STATE(7779)] = 232730, - [SMALL_STATE(7780)] = 232740, - [SMALL_STATE(7781)] = 232750, - [SMALL_STATE(7782)] = 232760, - [SMALL_STATE(7783)] = 232770, - [SMALL_STATE(7784)] = 232780, - [SMALL_STATE(7785)] = 232790, - [SMALL_STATE(7786)] = 232800, - [SMALL_STATE(7787)] = 232810, - [SMALL_STATE(7788)] = 232820, - [SMALL_STATE(7789)] = 232830, - [SMALL_STATE(7790)] = 232840, - [SMALL_STATE(7791)] = 232850, - [SMALL_STATE(7792)] = 232860, - [SMALL_STATE(7793)] = 232870, - [SMALL_STATE(7794)] = 232880, - [SMALL_STATE(7795)] = 232890, - [SMALL_STATE(7796)] = 232900, - [SMALL_STATE(7797)] = 232910, - [SMALL_STATE(7798)] = 232920, - [SMALL_STATE(7799)] = 232930, - [SMALL_STATE(7800)] = 232940, - [SMALL_STATE(7801)] = 232950, - [SMALL_STATE(7802)] = 232960, - [SMALL_STATE(7803)] = 232970, - [SMALL_STATE(7804)] = 232980, - [SMALL_STATE(7805)] = 232990, - [SMALL_STATE(7806)] = 233000, - [SMALL_STATE(7807)] = 233010, - [SMALL_STATE(7808)] = 233020, - [SMALL_STATE(7809)] = 233030, - [SMALL_STATE(7810)] = 233040, - [SMALL_STATE(7811)] = 233050, - [SMALL_STATE(7812)] = 233060, - [SMALL_STATE(7813)] = 233070, - [SMALL_STATE(7814)] = 233080, - [SMALL_STATE(7815)] = 233090, - [SMALL_STATE(7816)] = 233100, - [SMALL_STATE(7817)] = 233110, - [SMALL_STATE(7818)] = 233120, - [SMALL_STATE(7819)] = 233130, - [SMALL_STATE(7820)] = 233140, - [SMALL_STATE(7821)] = 233150, - [SMALL_STATE(7822)] = 233160, - [SMALL_STATE(7823)] = 233170, - [SMALL_STATE(7824)] = 233180, - [SMALL_STATE(7825)] = 233190, - [SMALL_STATE(7826)] = 233200, - [SMALL_STATE(7827)] = 233210, - [SMALL_STATE(7828)] = 233220, - [SMALL_STATE(7829)] = 233230, - [SMALL_STATE(7830)] = 233240, - [SMALL_STATE(7831)] = 233250, - [SMALL_STATE(7832)] = 233260, - [SMALL_STATE(7833)] = 233270, - [SMALL_STATE(7834)] = 233280, - [SMALL_STATE(7835)] = 233290, - [SMALL_STATE(7836)] = 233300, - [SMALL_STATE(7837)] = 233310, - [SMALL_STATE(7838)] = 233320, - [SMALL_STATE(7839)] = 233330, - [SMALL_STATE(7840)] = 233340, - [SMALL_STATE(7841)] = 233350, - [SMALL_STATE(7842)] = 233360, - [SMALL_STATE(7843)] = 233370, - [SMALL_STATE(7844)] = 233380, - [SMALL_STATE(7845)] = 233390, - [SMALL_STATE(7846)] = 233400, - [SMALL_STATE(7847)] = 233410, - [SMALL_STATE(7848)] = 233420, - [SMALL_STATE(7849)] = 233430, - [SMALL_STATE(7850)] = 233440, - [SMALL_STATE(7851)] = 233450, - [SMALL_STATE(7852)] = 233460, - [SMALL_STATE(7853)] = 233470, - [SMALL_STATE(7854)] = 233480, - [SMALL_STATE(7855)] = 233490, - [SMALL_STATE(7856)] = 233500, - [SMALL_STATE(7857)] = 233510, - [SMALL_STATE(7858)] = 233520, - [SMALL_STATE(7859)] = 233530, - [SMALL_STATE(7860)] = 233540, - [SMALL_STATE(7861)] = 233550, - [SMALL_STATE(7862)] = 233560, - [SMALL_STATE(7863)] = 233570, - [SMALL_STATE(7864)] = 233580, - [SMALL_STATE(7865)] = 233590, - [SMALL_STATE(7866)] = 233600, - [SMALL_STATE(7867)] = 233610, - [SMALL_STATE(7868)] = 233620, - [SMALL_STATE(7869)] = 233630, - [SMALL_STATE(7870)] = 233640, - [SMALL_STATE(7871)] = 233650, - [SMALL_STATE(7872)] = 233660, - [SMALL_STATE(7873)] = 233670, - [SMALL_STATE(7874)] = 233680, - [SMALL_STATE(7875)] = 233690, - [SMALL_STATE(7876)] = 233700, - [SMALL_STATE(7877)] = 233710, - [SMALL_STATE(7878)] = 233720, - [SMALL_STATE(7879)] = 233730, - [SMALL_STATE(7880)] = 233740, - [SMALL_STATE(7881)] = 233750, - [SMALL_STATE(7882)] = 233760, - [SMALL_STATE(7883)] = 233770, - [SMALL_STATE(7884)] = 233780, - [SMALL_STATE(7885)] = 233790, - [SMALL_STATE(7886)] = 233800, - [SMALL_STATE(7887)] = 233810, - [SMALL_STATE(7888)] = 233820, - [SMALL_STATE(7889)] = 233830, - [SMALL_STATE(7890)] = 233840, - [SMALL_STATE(7891)] = 233850, - [SMALL_STATE(7892)] = 233860, - [SMALL_STATE(7893)] = 233870, - [SMALL_STATE(7894)] = 233880, - [SMALL_STATE(7895)] = 233890, - [SMALL_STATE(7896)] = 233900, - [SMALL_STATE(7897)] = 233910, - [SMALL_STATE(7898)] = 233920, - [SMALL_STATE(7899)] = 233930, - [SMALL_STATE(7900)] = 233940, - [SMALL_STATE(7901)] = 233950, - [SMALL_STATE(7902)] = 233960, - [SMALL_STATE(7903)] = 233970, - [SMALL_STATE(7904)] = 233980, - [SMALL_STATE(7905)] = 233990, - [SMALL_STATE(7906)] = 234000, - [SMALL_STATE(7907)] = 234010, - [SMALL_STATE(7908)] = 234020, - [SMALL_STATE(7909)] = 234030, - [SMALL_STATE(7910)] = 234040, - [SMALL_STATE(7911)] = 234050, - [SMALL_STATE(7912)] = 234060, - [SMALL_STATE(7913)] = 234070, - [SMALL_STATE(7914)] = 234080, - [SMALL_STATE(7915)] = 234090, - [SMALL_STATE(7916)] = 234100, - [SMALL_STATE(7917)] = 234110, - [SMALL_STATE(7918)] = 234120, - [SMALL_STATE(7919)] = 234130, - [SMALL_STATE(7920)] = 234140, - [SMALL_STATE(7921)] = 234150, - [SMALL_STATE(7922)] = 234160, - [SMALL_STATE(7923)] = 234170, - [SMALL_STATE(7924)] = 234180, - [SMALL_STATE(7925)] = 234190, - [SMALL_STATE(7926)] = 234200, - [SMALL_STATE(7927)] = 234210, - [SMALL_STATE(7928)] = 234220, - [SMALL_STATE(7929)] = 234230, - [SMALL_STATE(7930)] = 234240, - [SMALL_STATE(7931)] = 234250, - [SMALL_STATE(7932)] = 234260, - [SMALL_STATE(7933)] = 234270, - [SMALL_STATE(7934)] = 234280, - [SMALL_STATE(7935)] = 234290, - [SMALL_STATE(7936)] = 234300, - [SMALL_STATE(7937)] = 234310, - [SMALL_STATE(7938)] = 234320, - [SMALL_STATE(7939)] = 234330, - [SMALL_STATE(7940)] = 234340, - [SMALL_STATE(7941)] = 234350, - [SMALL_STATE(7942)] = 234360, - [SMALL_STATE(7943)] = 234370, - [SMALL_STATE(7944)] = 234380, - [SMALL_STATE(7945)] = 234390, - [SMALL_STATE(7946)] = 234400, - [SMALL_STATE(7947)] = 234410, - [SMALL_STATE(7948)] = 234420, - [SMALL_STATE(7949)] = 234430, - [SMALL_STATE(7950)] = 234440, - [SMALL_STATE(7951)] = 234450, - [SMALL_STATE(7952)] = 234460, - [SMALL_STATE(7953)] = 234470, - [SMALL_STATE(7954)] = 234480, - [SMALL_STATE(7955)] = 234490, - [SMALL_STATE(7956)] = 234500, - [SMALL_STATE(7957)] = 234510, - [SMALL_STATE(7958)] = 234520, - [SMALL_STATE(7959)] = 234530, - [SMALL_STATE(7960)] = 234540, - [SMALL_STATE(7961)] = 234550, - [SMALL_STATE(7962)] = 234560, - [SMALL_STATE(7963)] = 234570, - [SMALL_STATE(7964)] = 234580, - [SMALL_STATE(7965)] = 234590, - [SMALL_STATE(7966)] = 234600, - [SMALL_STATE(7967)] = 234610, - [SMALL_STATE(7968)] = 234620, - [SMALL_STATE(7969)] = 234630, - [SMALL_STATE(7970)] = 234640, - [SMALL_STATE(7971)] = 234650, - [SMALL_STATE(7972)] = 234660, - [SMALL_STATE(7973)] = 234670, - [SMALL_STATE(7974)] = 234680, - [SMALL_STATE(7975)] = 234690, - [SMALL_STATE(7976)] = 234700, - [SMALL_STATE(7977)] = 234710, - [SMALL_STATE(7978)] = 234720, - [SMALL_STATE(7979)] = 234730, - [SMALL_STATE(7980)] = 234740, - [SMALL_STATE(7981)] = 234750, - [SMALL_STATE(7982)] = 234760, - [SMALL_STATE(7983)] = 234770, - [SMALL_STATE(7984)] = 234780, - [SMALL_STATE(7985)] = 234790, - [SMALL_STATE(7986)] = 234800, - [SMALL_STATE(7987)] = 234810, - [SMALL_STATE(7988)] = 234820, - [SMALL_STATE(7989)] = 234830, - [SMALL_STATE(7990)] = 234840, - [SMALL_STATE(7991)] = 234850, - [SMALL_STATE(7992)] = 234860, - [SMALL_STATE(7993)] = 234870, - [SMALL_STATE(7994)] = 234880, - [SMALL_STATE(7995)] = 234890, - [SMALL_STATE(7996)] = 234900, - [SMALL_STATE(7997)] = 234910, - [SMALL_STATE(7998)] = 234920, - [SMALL_STATE(7999)] = 234930, - [SMALL_STATE(8000)] = 234940, - [SMALL_STATE(8001)] = 234950, - [SMALL_STATE(8002)] = 234960, - [SMALL_STATE(8003)] = 234970, - [SMALL_STATE(8004)] = 234980, - [SMALL_STATE(8005)] = 234990, - [SMALL_STATE(8006)] = 235000, + [SMALL_STATE(1727)] = 0, + [SMALL_STATE(1728)] = 75, + [SMALL_STATE(1729)] = 152, + [SMALL_STATE(1730)] = 225, + [SMALL_STATE(1731)] = 298, + [SMALL_STATE(1732)] = 373, + [SMALL_STATE(1733)] = 446, + [SMALL_STATE(1734)] = 519, + [SMALL_STATE(1735)] = 592, + [SMALL_STATE(1736)] = 665, + [SMALL_STATE(1737)] = 738, + [SMALL_STATE(1738)] = 811, + [SMALL_STATE(1739)] = 918, + [SMALL_STATE(1740)] = 991, + [SMALL_STATE(1741)] = 1064, + [SMALL_STATE(1742)] = 1137, + [SMALL_STATE(1743)] = 1212, + [SMALL_STATE(1744)] = 1315, + [SMALL_STATE(1745)] = 1388, + [SMALL_STATE(1746)] = 1461, + [SMALL_STATE(1747)] = 1534, + [SMALL_STATE(1748)] = 1609, + [SMALL_STATE(1749)] = 1684, + [SMALL_STATE(1750)] = 1757, + [SMALL_STATE(1751)] = 1830, + [SMALL_STATE(1752)] = 1903, + [SMALL_STATE(1753)] = 2050, + [SMALL_STATE(1754)] = 2123, + [SMALL_STATE(1755)] = 2196, + [SMALL_STATE(1756)] = 2269, + [SMALL_STATE(1757)] = 2342, + [SMALL_STATE(1758)] = 2415, + [SMALL_STATE(1759)] = 2518, + [SMALL_STATE(1760)] = 2625, + [SMALL_STATE(1761)] = 2698, + [SMALL_STATE(1762)] = 2773, + [SMALL_STATE(1763)] = 2846, + [SMALL_STATE(1764)] = 2919, + [SMALL_STATE(1765)] = 2992, + [SMALL_STATE(1766)] = 3065, + [SMALL_STATE(1767)] = 3138, + [SMALL_STATE(1768)] = 3213, + [SMALL_STATE(1769)] = 3286, + [SMALL_STATE(1770)] = 3361, + [SMALL_STATE(1771)] = 3434, + [SMALL_STATE(1772)] = 3507, + [SMALL_STATE(1773)] = 3580, + [SMALL_STATE(1774)] = 3653, + [SMALL_STATE(1775)] = 3728, + [SMALL_STATE(1776)] = 3801, + [SMALL_STATE(1777)] = 3874, + [SMALL_STATE(1778)] = 3947, + [SMALL_STATE(1779)] = 4022, + [SMALL_STATE(1780)] = 4095, + [SMALL_STATE(1781)] = 4242, + [SMALL_STATE(1782)] = 4315, + [SMALL_STATE(1783)] = 4462, + [SMALL_STATE(1784)] = 4609, + [SMALL_STATE(1785)] = 4756, + [SMALL_STATE(1786)] = 4829, + [SMALL_STATE(1787)] = 4902, + [SMALL_STATE(1788)] = 4975, + [SMALL_STATE(1789)] = 5050, + [SMALL_STATE(1790)] = 5197, + [SMALL_STATE(1791)] = 5344, + [SMALL_STATE(1792)] = 5417, + [SMALL_STATE(1793)] = 5490, + [SMALL_STATE(1794)] = 5563, + [SMALL_STATE(1795)] = 5636, + [SMALL_STATE(1796)] = 5711, + [SMALL_STATE(1797)] = 5784, + [SMALL_STATE(1798)] = 5857, + [SMALL_STATE(1799)] = 5930, + [SMALL_STATE(1800)] = 6003, + [SMALL_STATE(1801)] = 6076, + [SMALL_STATE(1802)] = 6149, + [SMALL_STATE(1803)] = 6222, + [SMALL_STATE(1804)] = 6295, + [SMALL_STATE(1805)] = 6368, + [SMALL_STATE(1806)] = 6441, + [SMALL_STATE(1807)] = 6516, + [SMALL_STATE(1808)] = 6591, + [SMALL_STATE(1809)] = 6664, + [SMALL_STATE(1810)] = 6737, + [SMALL_STATE(1811)] = 6812, + [SMALL_STATE(1812)] = 6885, + [SMALL_STATE(1813)] = 6958, + [SMALL_STATE(1814)] = 7061, + [SMALL_STATE(1815)] = 7134, + [SMALL_STATE(1816)] = 7207, + [SMALL_STATE(1817)] = 7286, + [SMALL_STATE(1818)] = 7359, + [SMALL_STATE(1819)] = 7432, + [SMALL_STATE(1820)] = 7505, + [SMALL_STATE(1821)] = 7578, + [SMALL_STATE(1822)] = 7651, + [SMALL_STATE(1823)] = 7724, + [SMALL_STATE(1824)] = 7797, + [SMALL_STATE(1825)] = 7870, + [SMALL_STATE(1826)] = 7943, + [SMALL_STATE(1827)] = 8016, + [SMALL_STATE(1828)] = 8089, + [SMALL_STATE(1829)] = 8162, + [SMALL_STATE(1830)] = 8235, + [SMALL_STATE(1831)] = 8308, + [SMALL_STATE(1832)] = 8455, + [SMALL_STATE(1833)] = 8528, + [SMALL_STATE(1834)] = 8601, + [SMALL_STATE(1835)] = 8674, + [SMALL_STATE(1836)] = 8747, + [SMALL_STATE(1837)] = 8820, + [SMALL_STATE(1838)] = 8893, + [SMALL_STATE(1839)] = 8966, + [SMALL_STATE(1840)] = 9039, + [SMALL_STATE(1841)] = 9112, + [SMALL_STATE(1842)] = 9185, + [SMALL_STATE(1843)] = 9332, + [SMALL_STATE(1844)] = 9405, + [SMALL_STATE(1845)] = 9552, + [SMALL_STATE(1846)] = 9625, + [SMALL_STATE(1847)] = 9700, + [SMALL_STATE(1848)] = 9847, + [SMALL_STATE(1849)] = 9920, + [SMALL_STATE(1850)] = 10027, + [SMALL_STATE(1851)] = 10174, + [SMALL_STATE(1852)] = 10247, + [SMALL_STATE(1853)] = 10320, + [SMALL_STATE(1854)] = 10393, + [SMALL_STATE(1855)] = 10466, + [SMALL_STATE(1856)] = 10538, + [SMALL_STATE(1857)] = 10610, + [SMALL_STATE(1858)] = 10682, + [SMALL_STATE(1859)] = 10754, + [SMALL_STATE(1860)] = 10826, + [SMALL_STATE(1861)] = 10898, + [SMALL_STATE(1862)] = 10974, + [SMALL_STATE(1863)] = 11050, + [SMALL_STATE(1864)] = 11122, + [SMALL_STATE(1865)] = 11198, + [SMALL_STATE(1866)] = 11274, + [SMALL_STATE(1867)] = 11350, + [SMALL_STATE(1868)] = 11422, + [SMALL_STATE(1869)] = 11494, + [SMALL_STATE(1870)] = 11570, + [SMALL_STATE(1871)] = 11646, + [SMALL_STATE(1872)] = 11718, + [SMALL_STATE(1873)] = 11794, + [SMALL_STATE(1874)] = 11938, + [SMALL_STATE(1875)] = 12014, + [SMALL_STATE(1876)] = 12090, + [SMALL_STATE(1877)] = 12162, + [SMALL_STATE(1878)] = 12234, + [SMALL_STATE(1879)] = 12306, + [SMALL_STATE(1880)] = 12378, + [SMALL_STATE(1881)] = 12450, + [SMALL_STATE(1882)] = 12526, + [SMALL_STATE(1883)] = 12598, + [SMALL_STATE(1884)] = 12670, + [SMALL_STATE(1885)] = 12746, + [SMALL_STATE(1886)] = 12818, + [SMALL_STATE(1887)] = 12890, + [SMALL_STATE(1888)] = 12962, + [SMALL_STATE(1889)] = 13034, + [SMALL_STATE(1890)] = 13106, + [SMALL_STATE(1891)] = 13178, + [SMALL_STATE(1892)] = 13250, + [SMALL_STATE(1893)] = 13326, + [SMALL_STATE(1894)] = 13398, + [SMALL_STATE(1895)] = 13470, + [SMALL_STATE(1896)] = 13542, + [SMALL_STATE(1897)] = 13614, + [SMALL_STATE(1898)] = 13686, + [SMALL_STATE(1899)] = 13758, + [SMALL_STATE(1900)] = 13830, + [SMALL_STATE(1901)] = 13904, + [SMALL_STATE(1902)] = 13978, + [SMALL_STATE(1903)] = 14050, + [SMALL_STATE(1904)] = 14122, + [SMALL_STATE(1905)] = 14194, + [SMALL_STATE(1906)] = 14266, + [SMALL_STATE(1907)] = 14338, + [SMALL_STATE(1908)] = 14410, + [SMALL_STATE(1909)] = 14482, + [SMALL_STATE(1910)] = 14554, + [SMALL_STATE(1911)] = 14626, + [SMALL_STATE(1912)] = 14698, + [SMALL_STATE(1913)] = 14770, + [SMALL_STATE(1914)] = 14842, + [SMALL_STATE(1915)] = 14914, + [SMALL_STATE(1916)] = 14986, + [SMALL_STATE(1917)] = 15058, + [SMALL_STATE(1918)] = 15130, + [SMALL_STATE(1919)] = 15202, + [SMALL_STATE(1920)] = 15274, + [SMALL_STATE(1921)] = 15346, + [SMALL_STATE(1922)] = 15418, + [SMALL_STATE(1923)] = 15490, + [SMALL_STATE(1924)] = 15562, + [SMALL_STATE(1925)] = 15634, + [SMALL_STATE(1926)] = 15706, + [SMALL_STATE(1927)] = 15778, + [SMALL_STATE(1928)] = 15850, + [SMALL_STATE(1929)] = 15922, + [SMALL_STATE(1930)] = 15994, + [SMALL_STATE(1931)] = 16066, + [SMALL_STATE(1932)] = 16138, + [SMALL_STATE(1933)] = 16210, + [SMALL_STATE(1934)] = 16282, + [SMALL_STATE(1935)] = 16354, + [SMALL_STATE(1936)] = 16426, + [SMALL_STATE(1937)] = 16498, + [SMALL_STATE(1938)] = 16570, + [SMALL_STATE(1939)] = 16642, + [SMALL_STATE(1940)] = 16714, + [SMALL_STATE(1941)] = 16786, + [SMALL_STATE(1942)] = 16858, + [SMALL_STATE(1943)] = 16930, + [SMALL_STATE(1944)] = 17002, + [SMALL_STATE(1945)] = 17074, + [SMALL_STATE(1946)] = 17148, + [SMALL_STATE(1947)] = 17220, + [SMALL_STATE(1948)] = 17292, + [SMALL_STATE(1949)] = 17368, + [SMALL_STATE(1950)] = 17440, + [SMALL_STATE(1951)] = 17512, + [SMALL_STATE(1952)] = 17584, + [SMALL_STATE(1953)] = 17660, + [SMALL_STATE(1954)] = 17732, + [SMALL_STATE(1955)] = 17804, + [SMALL_STATE(1956)] = 17876, + [SMALL_STATE(1957)] = 17948, + [SMALL_STATE(1958)] = 18020, + [SMALL_STATE(1959)] = 18092, + [SMALL_STATE(1960)] = 18164, + [SMALL_STATE(1961)] = 18236, + [SMALL_STATE(1962)] = 18380, + [SMALL_STATE(1963)] = 18456, + [SMALL_STATE(1964)] = 18600, + [SMALL_STATE(1965)] = 18672, + [SMALL_STATE(1966)] = 18744, + [SMALL_STATE(1967)] = 18816, + [SMALL_STATE(1968)] = 18888, + [SMALL_STATE(1969)] = 18960, + [SMALL_STATE(1970)] = 19036, + [SMALL_STATE(1971)] = 19108, + [SMALL_STATE(1972)] = 19180, + [SMALL_STATE(1973)] = 19252, + [SMALL_STATE(1974)] = 19324, + [SMALL_STATE(1975)] = 19468, + [SMALL_STATE(1976)] = 19612, + [SMALL_STATE(1977)] = 19756, + [SMALL_STATE(1978)] = 19828, + [SMALL_STATE(1979)] = 19905, + [SMALL_STATE(1980)] = 19984, + [SMALL_STATE(1981)] = 20055, + [SMALL_STATE(1982)] = 20134, + [SMALL_STATE(1983)] = 20213, + [SMALL_STATE(1984)] = 20284, + [SMALL_STATE(1985)] = 20363, + [SMALL_STATE(1986)] = 20442, + [SMALL_STATE(1987)] = 20513, + [SMALL_STATE(1988)] = 20590, + [SMALL_STATE(1989)] = 20669, + [SMALL_STATE(1990)] = 20748, + [SMALL_STATE(1991)] = 20825, + [SMALL_STATE(1992)] = 20896, + [SMALL_STATE(1993)] = 20967, + [SMALL_STATE(1994)] = 21044, + [SMALL_STATE(1995)] = 21121, + [SMALL_STATE(1996)] = 21198, + [SMALL_STATE(1997)] = 21275, + [SMALL_STATE(1998)] = 21352, + [SMALL_STATE(1999)] = 21431, + [SMALL_STATE(2000)] = 21508, + [SMALL_STATE(2001)] = 21583, + [SMALL_STATE(2002)] = 21654, + [SMALL_STATE(2003)] = 21731, + [SMALL_STATE(2004)] = 21802, + [SMALL_STATE(2005)] = 21879, + [SMALL_STATE(2006)] = 21956, + [SMALL_STATE(2007)] = 22035, + [SMALL_STATE(2008)] = 22112, + [SMALL_STATE(2009)] = 22189, + [SMALL_STATE(2010)] = 22266, + [SMALL_STATE(2011)] = 22337, + [SMALL_STATE(2012)] = 22408, + [SMALL_STATE(2013)] = 22479, + [SMALL_STATE(2014)] = 22556, + [SMALL_STATE(2015)] = 22697, + [SMALL_STATE(2016)] = 22768, + [SMALL_STATE(2017)] = 22839, + [SMALL_STATE(2018)] = 22980, + [SMALL_STATE(2019)] = 23051, + [SMALL_STATE(2020)] = 23128, + [SMALL_STATE(2021)] = 23203, + [SMALL_STATE(2022)] = 23282, + [SMALL_STATE(2023)] = 23361, + [SMALL_STATE(2024)] = 23432, + [SMALL_STATE(2025)] = 23513, + [SMALL_STATE(2026)] = 23592, + [SMALL_STATE(2027)] = 23671, + [SMALL_STATE(2028)] = 23750, + [SMALL_STATE(2029)] = 23829, + [SMALL_STATE(2030)] = 23908, + [SMALL_STATE(2031)] = 23987, + [SMALL_STATE(2032)] = 24064, + [SMALL_STATE(2033)] = 24141, + [SMALL_STATE(2034)] = 24218, + [SMALL_STATE(2035)] = 24295, + [SMALL_STATE(2036)] = 24372, + [SMALL_STATE(2037)] = 24449, + [SMALL_STATE(2038)] = 24526, + [SMALL_STATE(2039)] = 24597, + [SMALL_STATE(2040)] = 24674, + [SMALL_STATE(2041)] = 24751, + [SMALL_STATE(2042)] = 24828, + [SMALL_STATE(2043)] = 24907, + [SMALL_STATE(2044)] = 24986, + [SMALL_STATE(2045)] = 25065, + [SMALL_STATE(2046)] = 25144, + [SMALL_STATE(2047)] = 25215, + [SMALL_STATE(2048)] = 25294, + [SMALL_STATE(2049)] = 25365, + [SMALL_STATE(2050)] = 25436, + [SMALL_STATE(2051)] = 25507, + [SMALL_STATE(2052)] = 25584, + [SMALL_STATE(2053)] = 25663, + [SMALL_STATE(2054)] = 25734, + [SMALL_STATE(2055)] = 25811, + [SMALL_STATE(2056)] = 25888, + [SMALL_STATE(2057)] = 25965, + [SMALL_STATE(2058)] = 26036, + [SMALL_STATE(2059)] = 26113, + [SMALL_STATE(2060)] = 26190, + [SMALL_STATE(2061)] = 26267, + [SMALL_STATE(2062)] = 26346, + [SMALL_STATE(2063)] = 26423, + [SMALL_STATE(2064)] = 26500, + [SMALL_STATE(2065)] = 26577, + [SMALL_STATE(2066)] = 26718, + [SMALL_STATE(2067)] = 26859, + [SMALL_STATE(2068)] = 26936, + [SMALL_STATE(2069)] = 27017, + [SMALL_STATE(2070)] = 27094, + [SMALL_STATE(2071)] = 27171, + [SMALL_STATE(2072)] = 27248, + [SMALL_STATE(2073)] = 27327, + [SMALL_STATE(2074)] = 27404, + [SMALL_STATE(2075)] = 27475, + [SMALL_STATE(2076)] = 27552, + [SMALL_STATE(2077)] = 27623, + [SMALL_STATE(2078)] = 27700, + [SMALL_STATE(2079)] = 27777, + [SMALL_STATE(2080)] = 27856, + [SMALL_STATE(2081)] = 27927, + [SMALL_STATE(2082)] = 28004, + [SMALL_STATE(2083)] = 28081, + [SMALL_STATE(2084)] = 28152, + [SMALL_STATE(2085)] = 28229, + [SMALL_STATE(2086)] = 28306, + [SMALL_STATE(2087)] = 28383, + [SMALL_STATE(2088)] = 28460, + [SMALL_STATE(2089)] = 28537, + [SMALL_STATE(2090)] = 28608, + [SMALL_STATE(2091)] = 28685, + [SMALL_STATE(2092)] = 28823, + [SMALL_STATE(2093)] = 28893, + [SMALL_STATE(2094)] = 28963, + [SMALL_STATE(2095)] = 29033, + [SMALL_STATE(2096)] = 29103, + [SMALL_STATE(2097)] = 29173, + [SMALL_STATE(2098)] = 29243, + [SMALL_STATE(2099)] = 29313, + [SMALL_STATE(2100)] = 29383, + [SMALL_STATE(2101)] = 29455, + [SMALL_STATE(2102)] = 29527, + [SMALL_STATE(2103)] = 29597, + [SMALL_STATE(2104)] = 29735, + [SMALL_STATE(2105)] = 29873, + [SMALL_STATE(2106)] = 30011, + [SMALL_STATE(2107)] = 30149, + [SMALL_STATE(2108)] = 30287, + [SMALL_STATE(2109)] = 30361, + [SMALL_STATE(2110)] = 30435, + [SMALL_STATE(2111)] = 30573, + [SMALL_STATE(2112)] = 30643, + [SMALL_STATE(2113)] = 30713, + [SMALL_STATE(2114)] = 30783, + [SMALL_STATE(2115)] = 30853, + [SMALL_STATE(2116)] = 30991, + [SMALL_STATE(2117)] = 31061, + [SMALL_STATE(2118)] = 31131, + [SMALL_STATE(2119)] = 31205, + [SMALL_STATE(2120)] = 31279, + [SMALL_STATE(2121)] = 31349, + [SMALL_STATE(2122)] = 31419, + [SMALL_STATE(2123)] = 31489, + [SMALL_STATE(2124)] = 31627, + [SMALL_STATE(2125)] = 31697, + [SMALL_STATE(2126)] = 31767, + [SMALL_STATE(2127)] = 31841, + [SMALL_STATE(2128)] = 31911, + [SMALL_STATE(2129)] = 31981, + [SMALL_STATE(2130)] = 32051, + [SMALL_STATE(2131)] = 32125, + [SMALL_STATE(2132)] = 32195, + [SMALL_STATE(2133)] = 32265, + [SMALL_STATE(2134)] = 32403, + [SMALL_STATE(2135)] = 32473, + [SMALL_STATE(2136)] = 32543, + [SMALL_STATE(2137)] = 32681, + [SMALL_STATE(2138)] = 32751, + [SMALL_STATE(2139)] = 32821, + [SMALL_STATE(2140)] = 32891, + [SMALL_STATE(2141)] = 32961, + [SMALL_STATE(2142)] = 33099, + [SMALL_STATE(2143)] = 33237, + [SMALL_STATE(2144)] = 33375, + [SMALL_STATE(2145)] = 33513, + [SMALL_STATE(2146)] = 33651, + [SMALL_STATE(2147)] = 33789, + [SMALL_STATE(2148)] = 33927, + [SMALL_STATE(2149)] = 34065, + [SMALL_STATE(2150)] = 34203, + [SMALL_STATE(2151)] = 34341, + [SMALL_STATE(2152)] = 34479, + [SMALL_STATE(2153)] = 34617, + [SMALL_STATE(2154)] = 34687, + [SMALL_STATE(2155)] = 34825, + [SMALL_STATE(2156)] = 34895, + [SMALL_STATE(2157)] = 35033, + [SMALL_STATE(2158)] = 35103, + [SMALL_STATE(2159)] = 35173, + [SMALL_STATE(2160)] = 35311, + [SMALL_STATE(2161)] = 35381, + [SMALL_STATE(2162)] = 35451, + [SMALL_STATE(2163)] = 35521, + [SMALL_STATE(2164)] = 35591, + [SMALL_STATE(2165)] = 35661, + [SMALL_STATE(2166)] = 35799, + [SMALL_STATE(2167)] = 35937, + [SMALL_STATE(2168)] = 36075, + [SMALL_STATE(2169)] = 36213, + [SMALL_STATE(2170)] = 36351, + [SMALL_STATE(2171)] = 36429, + [SMALL_STATE(2172)] = 36499, + [SMALL_STATE(2173)] = 36569, + [SMALL_STATE(2174)] = 36649, + [SMALL_STATE(2175)] = 36719, + [SMALL_STATE(2176)] = 36857, + [SMALL_STATE(2177)] = 36928, + [SMALL_STATE(2178)] = 36999, + [SMALL_STATE(2179)] = 37070, + [SMALL_STATE(2180)] = 37139, + [SMALL_STATE(2181)] = 37210, + [SMALL_STATE(2182)] = 37283, + [SMALL_STATE(2183)] = 37360, + [SMALL_STATE(2184)] = 37433, + [SMALL_STATE(2185)] = 37504, + [SMALL_STATE(2186)] = 37575, + [SMALL_STATE(2187)] = 37646, + [SMALL_STATE(2188)] = 37717, + [SMALL_STATE(2189)] = 37788, + [SMALL_STATE(2190)] = 37859, + [SMALL_STATE(2191)] = 37930, + [SMALL_STATE(2192)] = 38001, + [SMALL_STATE(2193)] = 38072, + [SMALL_STATE(2194)] = 38143, + [SMALL_STATE(2195)] = 38214, + [SMALL_STATE(2196)] = 38285, + [SMALL_STATE(2197)] = 38356, + [SMALL_STATE(2198)] = 38427, + [SMALL_STATE(2199)] = 38498, + [SMALL_STATE(2200)] = 38569, + [SMALL_STATE(2201)] = 38640, + [SMALL_STATE(2202)] = 38711, + [SMALL_STATE(2203)] = 38782, + [SMALL_STATE(2204)] = 38853, + [SMALL_STATE(2205)] = 38924, + [SMALL_STATE(2206)] = 38995, + [SMALL_STATE(2207)] = 39066, + [SMALL_STATE(2208)] = 39137, + [SMALL_STATE(2209)] = 39208, + [SMALL_STATE(2210)] = 39279, + [SMALL_STATE(2211)] = 39350, + [SMALL_STATE(2212)] = 39421, + [SMALL_STATE(2213)] = 39490, + [SMALL_STATE(2214)] = 39561, + [SMALL_STATE(2215)] = 39632, + [SMALL_STATE(2216)] = 39703, + [SMALL_STATE(2217)] = 39772, + [SMALL_STATE(2218)] = 39843, + [SMALL_STATE(2219)] = 39914, + [SMALL_STATE(2220)] = 39991, + [SMALL_STATE(2221)] = 40078, + [SMALL_STATE(2222)] = 40149, + [SMALL_STATE(2223)] = 40220, + [SMALL_STATE(2224)] = 40291, + [SMALL_STATE(2225)] = 40362, + [SMALL_STATE(2226)] = 40435, + [SMALL_STATE(2227)] = 40506, + [SMALL_STATE(2228)] = 40579, + [SMALL_STATE(2229)] = 40650, + [SMALL_STATE(2230)] = 40749, + [SMALL_STATE(2231)] = 40822, + [SMALL_STATE(2232)] = 40893, + [SMALL_STATE(2233)] = 40964, + [SMALL_STATE(2234)] = 41035, + [SMALL_STATE(2235)] = 41106, + [SMALL_STATE(2236)] = 41177, + [SMALL_STATE(2237)] = 41248, + [SMALL_STATE(2238)] = 41319, + [SMALL_STATE(2239)] = 41390, + [SMALL_STATE(2240)] = 41461, + [SMALL_STATE(2241)] = 41532, + [SMALL_STATE(2242)] = 41603, + [SMALL_STATE(2243)] = 41674, + [SMALL_STATE(2244)] = 41745, + [SMALL_STATE(2245)] = 41816, + [SMALL_STATE(2246)] = 41887, + [SMALL_STATE(2247)] = 41986, + [SMALL_STATE(2248)] = 42057, + [SMALL_STATE(2249)] = 42128, + [SMALL_STATE(2250)] = 42199, + [SMALL_STATE(2251)] = 42272, + [SMALL_STATE(2252)] = 42341, + [SMALL_STATE(2253)] = 42412, + [SMALL_STATE(2254)] = 42483, + [SMALL_STATE(2255)] = 42556, + [SMALL_STATE(2256)] = 42627, + [SMALL_STATE(2257)] = 42700, + [SMALL_STATE(2258)] = 42773, + [SMALL_STATE(2259)] = 42844, + [SMALL_STATE(2260)] = 42915, + [SMALL_STATE(2261)] = 42986, + [SMALL_STATE(2262)] = 43057, + [SMALL_STATE(2263)] = 43128, + [SMALL_STATE(2264)] = 43199, + [SMALL_STATE(2265)] = 43276, + [SMALL_STATE(2266)] = 43347, + [SMALL_STATE(2267)] = 43418, + [SMALL_STATE(2268)] = 43517, + [SMALL_STATE(2269)] = 43590, + [SMALL_STATE(2270)] = 43661, + [SMALL_STATE(2271)] = 43732, + [SMALL_STATE(2272)] = 43803, + [SMALL_STATE(2273)] = 43874, + [SMALL_STATE(2274)] = 43945, + [SMALL_STATE(2275)] = 44016, + [SMALL_STATE(2276)] = 44087, + [SMALL_STATE(2277)] = 44158, + [SMALL_STATE(2278)] = 44231, + [SMALL_STATE(2279)] = 44302, + [SMALL_STATE(2280)] = 44373, + [SMALL_STATE(2281)] = 44444, + [SMALL_STATE(2282)] = 44515, + [SMALL_STATE(2283)] = 44586, + [SMALL_STATE(2284)] = 44659, + [SMALL_STATE(2285)] = 44730, + [SMALL_STATE(2286)] = 44803, + [SMALL_STATE(2287)] = 44874, + [SMALL_STATE(2288)] = 44945, + [SMALL_STATE(2289)] = 45018, + [SMALL_STATE(2290)] = 45089, + [SMALL_STATE(2291)] = 45162, + [SMALL_STATE(2292)] = 45233, + [SMALL_STATE(2293)] = 45304, + [SMALL_STATE(2294)] = 45375, + [SMALL_STATE(2295)] = 45446, + [SMALL_STATE(2296)] = 45517, + [SMALL_STATE(2297)] = 45588, + [SMALL_STATE(2298)] = 45687, + [SMALL_STATE(2299)] = 45758, + [SMALL_STATE(2300)] = 45827, + [SMALL_STATE(2301)] = 45898, + [SMALL_STATE(2302)] = 45969, + [SMALL_STATE(2303)] = 46040, + [SMALL_STATE(2304)] = 46111, + [SMALL_STATE(2305)] = 46182, + [SMALL_STATE(2306)] = 46255, + [SMALL_STATE(2307)] = 46328, + [SMALL_STATE(2308)] = 46399, + [SMALL_STATE(2309)] = 46472, + [SMALL_STATE(2310)] = 46543, + [SMALL_STATE(2311)] = 46614, + [SMALL_STATE(2312)] = 46685, + [SMALL_STATE(2313)] = 46758, + [SMALL_STATE(2314)] = 46829, + [SMALL_STATE(2315)] = 46902, + [SMALL_STATE(2316)] = 46975, + [SMALL_STATE(2317)] = 47046, + [SMALL_STATE(2318)] = 47117, + [SMALL_STATE(2319)] = 47188, + [SMALL_STATE(2320)] = 47259, + [SMALL_STATE(2321)] = 47330, + [SMALL_STATE(2322)] = 47399, + [SMALL_STATE(2323)] = 47470, + [SMALL_STATE(2324)] = 47541, + [SMALL_STATE(2325)] = 47639, + [SMALL_STATE(2326)] = 47711, + [SMALL_STATE(2327)] = 47805, + [SMALL_STATE(2328)] = 47899, + [SMALL_STATE(2329)] = 47975, + [SMALL_STATE(2330)] = 48061, + [SMALL_STATE(2331)] = 48141, + [SMALL_STATE(2332)] = 48235, + [SMALL_STATE(2333)] = 48327, + [SMALL_STATE(2334)] = 48417, + [SMALL_STATE(2335)] = 48513, + [SMALL_STATE(2336)] = 48595, + [SMALL_STATE(2337)] = 48667, + [SMALL_STATE(2338)] = 48735, + [SMALL_STATE(2339)] = 48811, + [SMALL_STATE(2340)] = 48895, + [SMALL_STATE(2341)] = 48967, + [SMALL_STATE(2342)] = 49039, + [SMALL_STATE(2343)] = 49135, + [SMALL_STATE(2344)] = 49219, + [SMALL_STATE(2345)] = 49319, + [SMALL_STATE(2346)] = 49415, + [SMALL_STATE(2347)] = 49487, + [SMALL_STATE(2348)] = 49585, + [SMALL_STATE(2349)] = 49685, + [SMALL_STATE(2350)] = 49767, + [SMALL_STATE(2351)] = 49863, + [SMALL_STATE(2352)] = 49941, + [SMALL_STATE(2353)] = 50023, + [SMALL_STATE(2354)] = 50123, + [SMALL_STATE(2355)] = 50211, + [SMALL_STATE(2356)] = 50281, + [SMALL_STATE(2357)] = 50363, + [SMALL_STATE(2358)] = 50461, + [SMALL_STATE(2359)] = 50549, + [SMALL_STATE(2360)] = 50633, + [SMALL_STATE(2361)] = 50717, + [SMALL_STATE(2362)] = 50813, + [SMALL_STATE(2363)] = 50913, + [SMALL_STATE(2364)] = 51013, + [SMALL_STATE(2365)] = 51109, + [SMALL_STATE(2366)] = 51205, + [SMALL_STATE(2367)] = 51279, + [SMALL_STATE(2368)] = 51375, + [SMALL_STATE(2369)] = 51471, + [SMALL_STATE(2370)] = 51553, + [SMALL_STATE(2371)] = 51651, + [SMALL_STATE(2372)] = 51753, + [SMALL_STATE(2373)] = 51841, + [SMALL_STATE(2374)] = 51919, + [SMALL_STATE(2375)] = 52015, + [SMALL_STATE(2376)] = 52103, + [SMALL_STATE(2377)] = 52187, + [SMALL_STATE(2378)] = 52275, + [SMALL_STATE(2379)] = 52361, + [SMALL_STATE(2380)] = 52437, + [SMALL_STATE(2381)] = 52537, + [SMALL_STATE(2382)] = 52621, + [SMALL_STATE(2383)] = 52719, + [SMALL_STATE(2384)] = 52819, + [SMALL_STATE(2385)] = 52915, + [SMALL_STATE(2386)] = 52983, + [SMALL_STATE(2387)] = 53085, + [SMALL_STATE(2388)] = 53157, + [SMALL_STATE(2389)] = 53245, + [SMALL_STATE(2390)] = 53333, + [SMALL_STATE(2391)] = 53403, + [SMALL_STATE(2392)] = 53477, + [SMALL_STATE(2393)] = 53567, + [SMALL_STATE(2394)] = 53645, + [SMALL_STATE(2395)] = 53747, + [SMALL_STATE(2396)] = 53819, + [SMALL_STATE(2397)] = 53895, + [SMALL_STATE(2398)] = 53983, + [SMALL_STATE(2399)] = 54063, + [SMALL_STATE(2400)] = 54155, + [SMALL_STATE(2401)] = 54229, + [SMALL_STATE(2402)] = 54323, + [SMALL_STATE(2403)] = 54413, + [SMALL_STATE(2404)] = 54485, + [SMALL_STATE(2405)] = 54559, + [SMALL_STATE(2406)] = 54651, + [SMALL_STATE(2407)] = 54729, + [SMALL_STATE(2408)] = 54819, + [SMALL_STATE(2409)] = 54909, + [SMALL_STATE(2410)] = 54999, + [SMALL_STATE(2411)] = 55095, + [SMALL_STATE(2412)] = 55189, + [SMALL_STATE(2413)] = 55273, + [SMALL_STATE(2414)] = 55353, + [SMALL_STATE(2415)] = 55451, + [SMALL_STATE(2416)] = 55541, + [SMALL_STATE(2417)] = 55623, + [SMALL_STATE(2418)] = 55697, + [SMALL_STATE(2419)] = 55793, + [SMALL_STATE(2420)] = 55865, + [SMALL_STATE(2421)] = 55941, + [SMALL_STATE(2422)] = 56023, + [SMALL_STATE(2423)] = 56115, + [SMALL_STATE(2424)] = 56191, + [SMALL_STATE(2425)] = 56291, + [SMALL_STATE(2426)] = 56371, + [SMALL_STATE(2427)] = 56463, + [SMALL_STATE(2428)] = 56543, + [SMALL_STATE(2429)] = 56635, + [SMALL_STATE(2430)] = 56709, + [SMALL_STATE(2431)] = 56793, + [SMALL_STATE(2432)] = 56881, + [SMALL_STATE(2433)] = 56977, + [SMALL_STATE(2434)] = 57067, + [SMALL_STATE(2435)] = 57161, + [SMALL_STATE(2436)] = 57257, + [SMALL_STATE(2437)] = 57353, + [SMALL_STATE(2438)] = 57423, + [SMALL_STATE(2439)] = 57519, + [SMALL_STATE(2440)] = 57609, + [SMALL_STATE(2441)] = 57707, + [SMALL_STATE(2442)] = 57803, + [SMALL_STATE(2443)] = 57897, + [SMALL_STATE(2444)] = 57973, + [SMALL_STATE(2445)] = 58043, + [SMALL_STATE(2446)] = 58135, + [SMALL_STATE(2447)] = 58221, + [SMALL_STATE(2448)] = 58317, + [SMALL_STATE(2449)] = 58411, + [SMALL_STATE(2450)] = 58509, + [SMALL_STATE(2451)] = 58591, + [SMALL_STATE(2452)] = 58659, + [SMALL_STATE(2453)] = 58745, + [SMALL_STATE(2454)] = 58837, + [SMALL_STATE(2455)] = 58931, + [SMALL_STATE(2456)] = 59009, + [SMALL_STATE(2457)] = 59111, + [SMALL_STATE(2458)] = 59209, + [SMALL_STATE(2459)] = 59301, + [SMALL_STATE(2460)] = 59387, + [SMALL_STATE(2461)] = 59461, + [SMALL_STATE(2462)] = 59531, + [SMALL_STATE(2463)] = 59619, + [SMALL_STATE(2464)] = 59686, + [SMALL_STATE(2465)] = 59753, + [SMALL_STATE(2466)] = 59820, + [SMALL_STATE(2467)] = 59887, + [SMALL_STATE(2468)] = 59954, + [SMALL_STATE(2469)] = 60021, + [SMALL_STATE(2470)] = 60088, + [SMALL_STATE(2471)] = 60173, + [SMALL_STATE(2472)] = 60240, + [SMALL_STATE(2473)] = 60307, + [SMALL_STATE(2474)] = 60374, + [SMALL_STATE(2475)] = 60441, + [SMALL_STATE(2476)] = 60508, + [SMALL_STATE(2477)] = 60575, + [SMALL_STATE(2478)] = 60642, + [SMALL_STATE(2479)] = 60709, + [SMALL_STATE(2480)] = 60790, + [SMALL_STATE(2481)] = 60857, + [SMALL_STATE(2482)] = 60924, + [SMALL_STATE(2483)] = 60991, + [SMALL_STATE(2484)] = 61058, + [SMALL_STATE(2485)] = 61139, + [SMALL_STATE(2486)] = 61220, + [SMALL_STATE(2487)] = 61301, + [SMALL_STATE(2488)] = 61368, + [SMALL_STATE(2489)] = 61435, + [SMALL_STATE(2490)] = 61502, + [SMALL_STATE(2491)] = 61581, + [SMALL_STATE(2492)] = 61648, + [SMALL_STATE(2493)] = 61721, + [SMALL_STATE(2494)] = 61788, + [SMALL_STATE(2495)] = 61871, + [SMALL_STATE(2496)] = 61938, + [SMALL_STATE(2497)] = 62007, + [SMALL_STATE(2498)] = 62074, + [SMALL_STATE(2499)] = 62141, + [SMALL_STATE(2500)] = 62234, + [SMALL_STATE(2501)] = 62301, + [SMALL_STATE(2502)] = 62396, + [SMALL_STATE(2503)] = 62463, + [SMALL_STATE(2504)] = 62560, + [SMALL_STATE(2505)] = 62627, + [SMALL_STATE(2506)] = 62712, + [SMALL_STATE(2507)] = 62779, + [SMALL_STATE(2508)] = 62846, + [SMALL_STATE(2509)] = 62913, + [SMALL_STATE(2510)] = 62990, + [SMALL_STATE(2511)] = 63057, + [SMALL_STATE(2512)] = 63124, + [SMALL_STATE(2513)] = 63191, + [SMALL_STATE(2514)] = 63260, + [SMALL_STATE(2515)] = 63329, + [SMALL_STATE(2516)] = 63398, + [SMALL_STATE(2517)] = 63467, + [SMALL_STATE(2518)] = 63556, + [SMALL_STATE(2519)] = 63623, + [SMALL_STATE(2520)] = 63714, + [SMALL_STATE(2521)] = 63781, + [SMALL_STATE(2522)] = 63862, + [SMALL_STATE(2523)] = 63933, + [SMALL_STATE(2524)] = 64000, + [SMALL_STATE(2525)] = 64067, + [SMALL_STATE(2526)] = 64134, + [SMALL_STATE(2527)] = 64201, + [SMALL_STATE(2528)] = 64268, + [SMALL_STATE(2529)] = 64335, + [SMALL_STATE(2530)] = 64420, + [SMALL_STATE(2531)] = 64489, + [SMALL_STATE(2532)] = 64574, + [SMALL_STATE(2533)] = 64643, + [SMALL_STATE(2534)] = 64710, + [SMALL_STATE(2535)] = 64777, + [SMALL_STATE(2536)] = 64844, + [SMALL_STATE(2537)] = 64911, + [SMALL_STATE(2538)] = 64978, + [SMALL_STATE(2539)] = 65045, + [SMALL_STATE(2540)] = 65112, + [SMALL_STATE(2541)] = 65179, + [SMALL_STATE(2542)] = 65246, + [SMALL_STATE(2543)] = 65313, + [SMALL_STATE(2544)] = 65380, + [SMALL_STATE(2545)] = 65447, + [SMALL_STATE(2546)] = 65514, + [SMALL_STATE(2547)] = 65581, + [SMALL_STATE(2548)] = 65654, + [SMALL_STATE(2549)] = 65721, + [SMALL_STATE(2550)] = 65788, + [SMALL_STATE(2551)] = 65859, + [SMALL_STATE(2552)] = 65926, + [SMALL_STATE(2553)] = 65993, + [SMALL_STATE(2554)] = 66080, + [SMALL_STATE(2555)] = 66162, + [SMALL_STATE(2556)] = 66238, + [SMALL_STATE(2557)] = 66312, + [SMALL_STATE(2558)] = 66386, + [SMALL_STATE(2559)] = 66476, + [SMALL_STATE(2560)] = 66558, + [SMALL_STATE(2561)] = 66640, + [SMALL_STATE(2562)] = 66714, + [SMALL_STATE(2563)] = 66784, + [SMALL_STATE(2564)] = 66854, + [SMALL_STATE(2565)] = 66924, + [SMALL_STATE(2566)] = 66990, + [SMALL_STATE(2567)] = 67072, + [SMALL_STATE(2568)] = 67162, + [SMALL_STATE(2569)] = 67228, + [SMALL_STATE(2570)] = 67294, + [SMALL_STATE(2571)] = 67360, + [SMALL_STATE(2572)] = 67430, + [SMALL_STATE(2573)] = 67496, + [SMALL_STATE(2574)] = 67562, + [SMALL_STATE(2575)] = 67628, + [SMALL_STATE(2576)] = 67694, + [SMALL_STATE(2577)] = 67782, + [SMALL_STATE(2578)] = 67848, + [SMALL_STATE(2579)] = 67914, + [SMALL_STATE(2580)] = 68004, + [SMALL_STATE(2581)] = 68094, + [SMALL_STATE(2582)] = 68184, + [SMALL_STATE(2583)] = 68250, + [SMALL_STATE(2584)] = 68340, + [SMALL_STATE(2585)] = 68406, + [SMALL_STATE(2586)] = 68472, + [SMALL_STATE(2587)] = 68538, + [SMALL_STATE(2588)] = 68606, + [SMALL_STATE(2589)] = 68674, + [SMALL_STATE(2590)] = 68764, + [SMALL_STATE(2591)] = 68854, + [SMALL_STATE(2592)] = 68944, + [SMALL_STATE(2593)] = 69034, + [SMALL_STATE(2594)] = 69124, + [SMALL_STATE(2595)] = 69214, + [SMALL_STATE(2596)] = 69280, + [SMALL_STATE(2597)] = 69367, + [SMALL_STATE(2598)] = 69432, + [SMALL_STATE(2599)] = 69497, + [SMALL_STATE(2600)] = 69584, + [SMALL_STATE(2601)] = 69671, + [SMALL_STATE(2602)] = 69758, + [SMALL_STATE(2603)] = 69845, + [SMALL_STATE(2604)] = 69910, + [SMALL_STATE(2605)] = 69997, + [SMALL_STATE(2606)] = 70062, + [SMALL_STATE(2607)] = 70149, + [SMALL_STATE(2608)] = 70236, + [SMALL_STATE(2609)] = 70303, + [SMALL_STATE(2610)] = 70390, + [SMALL_STATE(2611)] = 70477, + [SMALL_STATE(2612)] = 70564, + [SMALL_STATE(2613)] = 70629, + [SMALL_STATE(2614)] = 70716, + [SMALL_STATE(2615)] = 70781, + [SMALL_STATE(2616)] = 70848, + [SMALL_STATE(2617)] = 70915, + [SMALL_STATE(2618)] = 71002, + [SMALL_STATE(2619)] = 71089, + [SMALL_STATE(2620)] = 71176, + [SMALL_STATE(2621)] = 71241, + [SMALL_STATE(2622)] = 71306, + [SMALL_STATE(2623)] = 71393, + [SMALL_STATE(2624)] = 71480, + [SMALL_STATE(2625)] = 71545, + [SMALL_STATE(2626)] = 71610, + [SMALL_STATE(2627)] = 71697, + [SMALL_STATE(2628)] = 71762, + [SMALL_STATE(2629)] = 71827, + [SMALL_STATE(2630)] = 71914, + [SMALL_STATE(2631)] = 72001, + [SMALL_STATE(2632)] = 72088, + [SMALL_STATE(2633)] = 72153, + [SMALL_STATE(2634)] = 72218, + [SMALL_STATE(2635)] = 72305, + [SMALL_STATE(2636)] = 72378, + [SMALL_STATE(2637)] = 72465, + [SMALL_STATE(2638)] = 72538, + [SMALL_STATE(2639)] = 72611, + [SMALL_STATE(2640)] = 72698, + [SMALL_STATE(2641)] = 72763, + [SMALL_STATE(2642)] = 72828, + [SMALL_STATE(2643)] = 72893, + [SMALL_STATE(2644)] = 72980, + [SMALL_STATE(2645)] = 73045, + [SMALL_STATE(2646)] = 73132, + [SMALL_STATE(2647)] = 73219, + [SMALL_STATE(2648)] = 73306, + [SMALL_STATE(2649)] = 73393, + [SMALL_STATE(2650)] = 73480, + [SMALL_STATE(2651)] = 73545, + [SMALL_STATE(2652)] = 73612, + [SMALL_STATE(2653)] = 73683, + [SMALL_STATE(2654)] = 73752, + [SMALL_STATE(2655)] = 73839, + [SMALL_STATE(2656)] = 73904, + [SMALL_STATE(2657)] = 73969, + [SMALL_STATE(2658)] = 74034, + [SMALL_STATE(2659)] = 74099, + [SMALL_STATE(2660)] = 74186, + [SMALL_STATE(2661)] = 74273, + [SMALL_STATE(2662)] = 74360, + [SMALL_STATE(2663)] = 74447, + [SMALL_STATE(2664)] = 74512, + [SMALL_STATE(2665)] = 74599, + [SMALL_STATE(2666)] = 74686, + [SMALL_STATE(2667)] = 74751, + [SMALL_STATE(2668)] = 74823, + [SMALL_STATE(2669)] = 74887, + [SMALL_STATE(2670)] = 74951, + [SMALL_STATE(2671)] = 75015, + [SMALL_STATE(2672)] = 75079, + [SMALL_STATE(2673)] = 75145, + [SMALL_STATE(2674)] = 75215, + [SMALL_STATE(2675)] = 75285, + [SMALL_STATE(2676)] = 75349, + [SMALL_STATE(2677)] = 75419, + [SMALL_STATE(2678)] = 75487, + [SMALL_STATE(2679)] = 75555, + [SMALL_STATE(2680)] = 75619, + [SMALL_STATE(2681)] = 75683, + [SMALL_STATE(2682)] = 75747, + [SMALL_STATE(2683)] = 75811, + [SMALL_STATE(2684)] = 75885, + [SMALL_STATE(2685)] = 75949, + [SMALL_STATE(2686)] = 76017, + [SMALL_STATE(2687)] = 76081, + [SMALL_STATE(2688)] = 76153, + [SMALL_STATE(2689)] = 76217, + [SMALL_STATE(2690)] = 76281, + [SMALL_STATE(2691)] = 76345, + [SMALL_STATE(2692)] = 76411, + [SMALL_STATE(2693)] = 76477, + [SMALL_STATE(2694)] = 76599, + [SMALL_STATE(2695)] = 76721, + [SMALL_STATE(2696)] = 76785, + [SMALL_STATE(2697)] = 76849, + [SMALL_STATE(2698)] = 76913, + [SMALL_STATE(2699)] = 76977, + [SMALL_STATE(2700)] = 77045, + [SMALL_STATE(2701)] = 77117, + [SMALL_STATE(2702)] = 77185, + [SMALL_STATE(2703)] = 77249, + [SMALL_STATE(2704)] = 77313, + [SMALL_STATE(2705)] = 77383, + [SMALL_STATE(2706)] = 77447, + [SMALL_STATE(2707)] = 77563, + [SMALL_STATE(2708)] = 77681, + [SMALL_STATE(2709)] = 77745, + [SMALL_STATE(2710)] = 77815, + [SMALL_STATE(2711)] = 77879, + [SMALL_STATE(2712)] = 77951, + [SMALL_STATE(2713)] = 78015, + [SMALL_STATE(2714)] = 78083, + [SMALL_STATE(2715)] = 78155, + [SMALL_STATE(2716)] = 78219, + [SMALL_STATE(2717)] = 78283, + [SMALL_STATE(2718)] = 78347, + [SMALL_STATE(2719)] = 78411, + [SMALL_STATE(2720)] = 78475, + [SMALL_STATE(2721)] = 78547, + [SMALL_STATE(2722)] = 78623, + [SMALL_STATE(2723)] = 78687, + [SMALL_STATE(2724)] = 78803, + [SMALL_STATE(2725)] = 78921, + [SMALL_STATE(2726)] = 78993, + [SMALL_STATE(2727)] = 79057, + [SMALL_STATE(2728)] = 79121, + [SMALL_STATE(2729)] = 79193, + [SMALL_STATE(2730)] = 79265, + [SMALL_STATE(2731)] = 79329, + [SMALL_STATE(2732)] = 79401, + [SMALL_STATE(2733)] = 79473, + [SMALL_STATE(2734)] = 79545, + [SMALL_STATE(2735)] = 79617, + [SMALL_STATE(2736)] = 79689, + [SMALL_STATE(2737)] = 79761, + [SMALL_STATE(2738)] = 79833, + [SMALL_STATE(2739)] = 79905, + [SMALL_STATE(2740)] = 79977, + [SMALL_STATE(2741)] = 80049, + [SMALL_STATE(2742)] = 80121, + [SMALL_STATE(2743)] = 80193, + [SMALL_STATE(2744)] = 80265, + [SMALL_STATE(2745)] = 80337, + [SMALL_STATE(2746)] = 80409, + [SMALL_STATE(2747)] = 80481, + [SMALL_STATE(2748)] = 80545, + [SMALL_STATE(2749)] = 80660, + [SMALL_STATE(2750)] = 80723, + [SMALL_STATE(2751)] = 80790, + [SMALL_STATE(2752)] = 80853, + [SMALL_STATE(2753)] = 80916, + [SMALL_STATE(2754)] = 80983, + [SMALL_STATE(2755)] = 81050, + [SMALL_STATE(2756)] = 81115, + [SMALL_STATE(2757)] = 81180, + [SMALL_STATE(2758)] = 81251, + [SMALL_STATE(2759)] = 81322, + [SMALL_STATE(2760)] = 81393, + [SMALL_STATE(2761)] = 81458, + [SMALL_STATE(2762)] = 81529, + [SMALL_STATE(2763)] = 81594, + [SMALL_STATE(2764)] = 81665, + [SMALL_STATE(2765)] = 81736, + [SMALL_STATE(2766)] = 81801, + [SMALL_STATE(2767)] = 81868, + [SMALL_STATE(2768)] = 81939, + [SMALL_STATE(2769)] = 82010, + [SMALL_STATE(2770)] = 82077, + [SMALL_STATE(2771)] = 82148, + [SMALL_STATE(2772)] = 82219, + [SMALL_STATE(2773)] = 82290, + [SMALL_STATE(2774)] = 82361, + [SMALL_STATE(2775)] = 82432, + [SMALL_STATE(2776)] = 82503, + [SMALL_STATE(2777)] = 82574, + [SMALL_STATE(2778)] = 82645, + [SMALL_STATE(2779)] = 82716, + [SMALL_STATE(2780)] = 82781, + [SMALL_STATE(2781)] = 82852, + [SMALL_STATE(2782)] = 82965, + [SMALL_STATE(2783)] = 83080, + [SMALL_STATE(2784)] = 83193, + [SMALL_STATE(2785)] = 83258, + [SMALL_STATE(2786)] = 83321, + [SMALL_STATE(2787)] = 83434, + [SMALL_STATE(2788)] = 83509, + [SMALL_STATE(2789)] = 83622, + [SMALL_STATE(2790)] = 83695, + [SMALL_STATE(2791)] = 83762, + [SMALL_STATE(2792)] = 83825, + [SMALL_STATE(2793)] = 83894, + [SMALL_STATE(2794)] = 83957, + [SMALL_STATE(2795)] = 84020, + [SMALL_STATE(2796)] = 84083, + [SMALL_STATE(2797)] = 84154, + [SMALL_STATE(2798)] = 84216, + [SMALL_STATE(2799)] = 84278, + [SMALL_STATE(2800)] = 84344, + [SMALL_STATE(2801)] = 84408, + [SMALL_STATE(2802)] = 84470, + [SMALL_STATE(2803)] = 84534, + [SMALL_STATE(2804)] = 84602, + [SMALL_STATE(2805)] = 84670, + [SMALL_STATE(2806)] = 84738, + [SMALL_STATE(2807)] = 84802, + [SMALL_STATE(2808)] = 84864, + [SMALL_STATE(2809)] = 84926, + [SMALL_STATE(2810)] = 84988, + [SMALL_STATE(2811)] = 85054, + [SMALL_STATE(2812)] = 85122, + [SMALL_STATE(2813)] = 85184, + [SMALL_STATE(2814)] = 85250, + [SMALL_STATE(2815)] = 85314, + [SMALL_STATE(2816)] = 85382, + [SMALL_STATE(2817)] = 85446, + [SMALL_STATE(2818)] = 85514, + [SMALL_STATE(2819)] = 85582, + [SMALL_STATE(2820)] = 85650, + [SMALL_STATE(2821)] = 85718, + [SMALL_STATE(2822)] = 85780, + [SMALL_STATE(2823)] = 85850, + [SMALL_STATE(2824)] = 85920, + [SMALL_STATE(2825)] = 85984, + [SMALL_STATE(2826)] = 86052, + [SMALL_STATE(2827)] = 86122, + [SMALL_STATE(2828)] = 86184, + [SMALL_STATE(2829)] = 86246, + [SMALL_STATE(2830)] = 86312, + [SMALL_STATE(2831)] = 86374, + [SMALL_STATE(2832)] = 86444, + [SMALL_STATE(2833)] = 86514, + [SMALL_STATE(2834)] = 86576, + [SMALL_STATE(2835)] = 86646, + [SMALL_STATE(2836)] = 86716, + [SMALL_STATE(2837)] = 86786, + [SMALL_STATE(2838)] = 86856, + [SMALL_STATE(2839)] = 86926, + [SMALL_STATE(2840)] = 86996, + [SMALL_STATE(2841)] = 87066, + [SMALL_STATE(2842)] = 87128, + [SMALL_STATE(2843)] = 87198, + [SMALL_STATE(2844)] = 87268, + [SMALL_STATE(2845)] = 87330, + [SMALL_STATE(2846)] = 87392, + [SMALL_STATE(2847)] = 87462, + [SMALL_STATE(2848)] = 87532, + [SMALL_STATE(2849)] = 87598, + [SMALL_STATE(2850)] = 87668, + [SMALL_STATE(2851)] = 87732, + [SMALL_STATE(2852)] = 87794, + [SMALL_STATE(2853)] = 87864, + [SMALL_STATE(2854)] = 87930, + [SMALL_STATE(2855)] = 87992, + [SMALL_STATE(2856)] = 88054, + [SMALL_STATE(2857)] = 88124, + [SMALL_STATE(2858)] = 88192, + [SMALL_STATE(2859)] = 88258, + [SMALL_STATE(2860)] = 88322, + [SMALL_STATE(2861)] = 88386, + [SMALL_STATE(2862)] = 88456, + [SMALL_STATE(2863)] = 88526, + [SMALL_STATE(2864)] = 88588, + [SMALL_STATE(2865)] = 88650, + [SMALL_STATE(2866)] = 88712, + [SMALL_STATE(2867)] = 88782, + [SMALL_STATE(2868)] = 88852, + [SMALL_STATE(2869)] = 88913, + [SMALL_STATE(2870)] = 88976, + [SMALL_STATE(2871)] = 89037, + [SMALL_STATE(2872)] = 89104, + [SMALL_STATE(2873)] = 89169, + [SMALL_STATE(2874)] = 89232, + [SMALL_STATE(2875)] = 89293, + [SMALL_STATE(2876)] = 89358, + [SMALL_STATE(2877)] = 89423, + [SMALL_STATE(2878)] = 89492, + [SMALL_STATE(2879)] = 89557, + [SMALL_STATE(2880)] = 89618, + [SMALL_STATE(2881)] = 89683, + [SMALL_STATE(2882)] = 89754, + [SMALL_STATE(2883)] = 89817, + [SMALL_STATE(2884)] = 89882, + [SMALL_STATE(2885)] = 89943, + [SMALL_STATE(2886)] = 90006, + [SMALL_STATE(2887)] = 90069, + [SMALL_STATE(2888)] = 90134, + [SMALL_STATE(2889)] = 90199, + [SMALL_STATE(2890)] = 90262, + [SMALL_STATE(2891)] = 90325, + [SMALL_STATE(2892)] = 90390, + [SMALL_STATE(2893)] = 90455, + [SMALL_STATE(2894)] = 90520, + [SMALL_STATE(2895)] = 90585, + [SMALL_STATE(2896)] = 90648, + [SMALL_STATE(2897)] = 90709, + [SMALL_STATE(2898)] = 90770, + [SMALL_STATE(2899)] = 90835, + [SMALL_STATE(2900)] = 90900, + [SMALL_STATE(2901)] = 90961, + [SMALL_STATE(2902)] = 91022, + [SMALL_STATE(2903)] = 91087, + [SMALL_STATE(2904)] = 91148, + [SMALL_STATE(2905)] = 91213, + [SMALL_STATE(2906)] = 91274, + [SMALL_STATE(2907)] = 91339, + [SMALL_STATE(2908)] = 91404, + [SMALL_STATE(2909)] = 91469, + [SMALL_STATE(2910)] = 91530, + [SMALL_STATE(2911)] = 91591, + [SMALL_STATE(2912)] = 91652, + [SMALL_STATE(2913)] = 91713, + [SMALL_STATE(2914)] = 91774, + [SMALL_STATE(2915)] = 91835, + [SMALL_STATE(2916)] = 91896, + [SMALL_STATE(2917)] = 91957, + [SMALL_STATE(2918)] = 92018, + [SMALL_STATE(2919)] = 92079, + [SMALL_STATE(2920)] = 92144, + [SMALL_STATE(2921)] = 92209, + [SMALL_STATE(2922)] = 92270, + [SMALL_STATE(2923)] = 92333, + [SMALL_STATE(2924)] = 92394, + [SMALL_STATE(2925)] = 92457, + [SMALL_STATE(2926)] = 92518, + [SMALL_STATE(2927)] = 92579, + [SMALL_STATE(2928)] = 92644, + [SMALL_STATE(2929)] = 92704, + [SMALL_STATE(2930)] = 92770, + [SMALL_STATE(2931)] = 92836, + [SMALL_STATE(2932)] = 92898, + [SMALL_STATE(2933)] = 92958, + [SMALL_STATE(2934)] = 93018, + [SMALL_STATE(2935)] = 93078, + [SMALL_STATE(2936)] = 93142, + [SMALL_STATE(2937)] = 93202, + [SMALL_STATE(2938)] = 93262, + [SMALL_STATE(2939)] = 93322, + [SMALL_STATE(2940)] = 93382, + [SMALL_STATE(2941)] = 93448, + [SMALL_STATE(2942)] = 93510, + [SMALL_STATE(2943)] = 93570, + [SMALL_STATE(2944)] = 93630, + [SMALL_STATE(2945)] = 93690, + [SMALL_STATE(2946)] = 93750, + [SMALL_STATE(2947)] = 93810, + [SMALL_STATE(2948)] = 93870, + [SMALL_STATE(2949)] = 93930, + [SMALL_STATE(2950)] = 93990, + [SMALL_STATE(2951)] = 94050, + [SMALL_STATE(2952)] = 94110, + [SMALL_STATE(2953)] = 94170, + [SMALL_STATE(2954)] = 94230, + [SMALL_STATE(2955)] = 94292, + [SMALL_STATE(2956)] = 94352, + [SMALL_STATE(2957)] = 94412, + [SMALL_STATE(2958)] = 94472, + [SMALL_STATE(2959)] = 94532, + [SMALL_STATE(2960)] = 94592, + [SMALL_STATE(2961)] = 94652, + [SMALL_STATE(2962)] = 94712, + [SMALL_STATE(2963)] = 94772, + [SMALL_STATE(2964)] = 94832, + [SMALL_STATE(2965)] = 94892, + [SMALL_STATE(2966)] = 94958, + [SMALL_STATE(2967)] = 95018, + [SMALL_STATE(2968)] = 95078, + [SMALL_STATE(2969)] = 95138, + [SMALL_STATE(2970)] = 95198, + [SMALL_STATE(2971)] = 95264, + [SMALL_STATE(2972)] = 95330, + [SMALL_STATE(2973)] = 95390, + [SMALL_STATE(2974)] = 95452, + [SMALL_STATE(2975)] = 95514, + [SMALL_STATE(2976)] = 95576, + [SMALL_STATE(2977)] = 95636, + [SMALL_STATE(2978)] = 95700, + [SMALL_STATE(2979)] = 95766, + [SMALL_STATE(2980)] = 95826, + [SMALL_STATE(2981)] = 95886, + [SMALL_STATE(2982)] = 95946, + [SMALL_STATE(2983)] = 96008, + [SMALL_STATE(2984)] = 96068, + [SMALL_STATE(2985)] = 96142, + [SMALL_STATE(2986)] = 96202, + [SMALL_STATE(2987)] = 96262, + [SMALL_STATE(2988)] = 96322, + [SMALL_STATE(2989)] = 96382, + [SMALL_STATE(2990)] = 96442, + [SMALL_STATE(2991)] = 96504, + [SMALL_STATE(2992)] = 96570, + [SMALL_STATE(2993)] = 96636, + [SMALL_STATE(2994)] = 96700, + [SMALL_STATE(2995)] = 96760, + [SMALL_STATE(2996)] = 96820, + [SMALL_STATE(2997)] = 96880, + [SMALL_STATE(2998)] = 96940, + [SMALL_STATE(2999)] = 97002, + [SMALL_STATE(3000)] = 97064, + [SMALL_STATE(3001)] = 97130, + [SMALL_STATE(3002)] = 97192, + [SMALL_STATE(3003)] = 97252, + [SMALL_STATE(3004)] = 97312, + [SMALL_STATE(3005)] = 97372, + [SMALL_STATE(3006)] = 97432, + [SMALL_STATE(3007)] = 97498, + [SMALL_STATE(3008)] = 97558, + [SMALL_STATE(3009)] = 97618, + [SMALL_STATE(3010)] = 97678, + [SMALL_STATE(3011)] = 97740, + [SMALL_STATE(3012)] = 97800, + [SMALL_STATE(3013)] = 97860, + [SMALL_STATE(3014)] = 97920, + [SMALL_STATE(3015)] = 97980, + [SMALL_STATE(3016)] = 98046, + [SMALL_STATE(3017)] = 98110, + [SMALL_STATE(3018)] = 98171, + [SMALL_STATE(3019)] = 98230, + [SMALL_STATE(3020)] = 98289, + [SMALL_STATE(3021)] = 98348, + [SMALL_STATE(3022)] = 98407, + [SMALL_STATE(3023)] = 98466, + [SMALL_STATE(3024)] = 98525, + [SMALL_STATE(3025)] = 98586, + [SMALL_STATE(3026)] = 98645, + [SMALL_STATE(3027)] = 98704, + [SMALL_STATE(3028)] = 98763, + [SMALL_STATE(3029)] = 98822, + [SMALL_STATE(3030)] = 98881, + [SMALL_STATE(3031)] = 98940, + [SMALL_STATE(3032)] = 99001, + [SMALL_STATE(3033)] = 99062, + [SMALL_STATE(3034)] = 99121, + [SMALL_STATE(3035)] = 99182, + [SMALL_STATE(3036)] = 99243, + [SMALL_STATE(3037)] = 99304, + [SMALL_STATE(3038)] = 99365, + [SMALL_STATE(3039)] = 99424, + [SMALL_STATE(3040)] = 99483, + [SMALL_STATE(3041)] = 99542, + [SMALL_STATE(3042)] = 99601, + [SMALL_STATE(3043)] = 99674, + [SMALL_STATE(3044)] = 99733, + [SMALL_STATE(3045)] = 99792, + [SMALL_STATE(3046)] = 99851, + [SMALL_STATE(3047)] = 99910, + [SMALL_STATE(3048)] = 99971, + [SMALL_STATE(3049)] = 100032, + [SMALL_STATE(3050)] = 100091, + [SMALL_STATE(3051)] = 100150, + [SMALL_STATE(3052)] = 100209, + [SMALL_STATE(3053)] = 100272, + [SMALL_STATE(3054)] = 100331, + [SMALL_STATE(3055)] = 100394, + [SMALL_STATE(3056)] = 100457, + [SMALL_STATE(3057)] = 100516, + [SMALL_STATE(3058)] = 100577, + [SMALL_STATE(3059)] = 100638, + [SMALL_STATE(3060)] = 100699, + [SMALL_STATE(3061)] = 100762, + [SMALL_STATE(3062)] = 100821, + [SMALL_STATE(3063)] = 100880, + [SMALL_STATE(3064)] = 100939, + [SMALL_STATE(3065)] = 101000, + [SMALL_STATE(3066)] = 101059, + [SMALL_STATE(3067)] = 101118, + [SMALL_STATE(3068)] = 101177, + [SMALL_STATE(3069)] = 101236, + [SMALL_STATE(3070)] = 101295, + [SMALL_STATE(3071)] = 101354, + [SMALL_STATE(3072)] = 101415, + [SMALL_STATE(3073)] = 101474, + [SMALL_STATE(3074)] = 101533, + [SMALL_STATE(3075)] = 101592, + [SMALL_STATE(3076)] = 101651, + [SMALL_STATE(3077)] = 101710, + [SMALL_STATE(3078)] = 101769, + [SMALL_STATE(3079)] = 101828, + [SMALL_STATE(3080)] = 101887, + [SMALL_STATE(3081)] = 101946, + [SMALL_STATE(3082)] = 102005, + [SMALL_STATE(3083)] = 102064, + [SMALL_STATE(3084)] = 102123, + [SMALL_STATE(3085)] = 102182, + [SMALL_STATE(3086)] = 102241, + [SMALL_STATE(3087)] = 102300, + [SMALL_STATE(3088)] = 102359, + [SMALL_STATE(3089)] = 102418, + [SMALL_STATE(3090)] = 102477, + [SMALL_STATE(3091)] = 102536, + [SMALL_STATE(3092)] = 102595, + [SMALL_STATE(3093)] = 102654, + [SMALL_STATE(3094)] = 102713, + [SMALL_STATE(3095)] = 102772, + [SMALL_STATE(3096)] = 102831, + [SMALL_STATE(3097)] = 102890, + [SMALL_STATE(3098)] = 102951, + [SMALL_STATE(3099)] = 103010, + [SMALL_STATE(3100)] = 103069, + [SMALL_STATE(3101)] = 103128, + [SMALL_STATE(3102)] = 103186, + [SMALL_STATE(3103)] = 103244, + [SMALL_STATE(3104)] = 103302, + [SMALL_STATE(3105)] = 103360, + [SMALL_STATE(3106)] = 103418, + [SMALL_STATE(3107)] = 103476, + [SMALL_STATE(3108)] = 103534, + [SMALL_STATE(3109)] = 103592, + [SMALL_STATE(3110)] = 103650, + [SMALL_STATE(3111)] = 103708, + [SMALL_STATE(3112)] = 103766, + [SMALL_STATE(3113)] = 103824, + [SMALL_STATE(3114)] = 103882, + [SMALL_STATE(3115)] = 103940, + [SMALL_STATE(3116)] = 103998, + [SMALL_STATE(3117)] = 104056, + [SMALL_STATE(3118)] = 104114, + [SMALL_STATE(3119)] = 104172, + [SMALL_STATE(3120)] = 104230, + [SMALL_STATE(3121)] = 104288, + [SMALL_STATE(3122)] = 104346, + [SMALL_STATE(3123)] = 104404, + [SMALL_STATE(3124)] = 104462, + [SMALL_STATE(3125)] = 104520, + [SMALL_STATE(3126)] = 104578, + [SMALL_STATE(3127)] = 104636, + [SMALL_STATE(3128)] = 104694, + [SMALL_STATE(3129)] = 104752, + [SMALL_STATE(3130)] = 104810, + [SMALL_STATE(3131)] = 104868, + [SMALL_STATE(3132)] = 104926, + [SMALL_STATE(3133)] = 104984, + [SMALL_STATE(3134)] = 105042, + [SMALL_STATE(3135)] = 105100, + [SMALL_STATE(3136)] = 105158, + [SMALL_STATE(3137)] = 105216, + [SMALL_STATE(3138)] = 105274, + [SMALL_STATE(3139)] = 105332, + [SMALL_STATE(3140)] = 105390, + [SMALL_STATE(3141)] = 105448, + [SMALL_STATE(3142)] = 105506, + [SMALL_STATE(3143)] = 105564, + [SMALL_STATE(3144)] = 105622, + [SMALL_STATE(3145)] = 105680, + [SMALL_STATE(3146)] = 105738, + [SMALL_STATE(3147)] = 105796, + [SMALL_STATE(3148)] = 105854, + [SMALL_STATE(3149)] = 105912, + [SMALL_STATE(3150)] = 105970, + [SMALL_STATE(3151)] = 106028, + [SMALL_STATE(3152)] = 106086, + [SMALL_STATE(3153)] = 106144, + [SMALL_STATE(3154)] = 106202, + [SMALL_STATE(3155)] = 106260, + [SMALL_STATE(3156)] = 106318, + [SMALL_STATE(3157)] = 106376, + [SMALL_STATE(3158)] = 106434, + [SMALL_STATE(3159)] = 106492, + [SMALL_STATE(3160)] = 106550, + [SMALL_STATE(3161)] = 106608, + [SMALL_STATE(3162)] = 106666, + [SMALL_STATE(3163)] = 106724, + [SMALL_STATE(3164)] = 106782, + [SMALL_STATE(3165)] = 106840, + [SMALL_STATE(3166)] = 106898, + [SMALL_STATE(3167)] = 106956, + [SMALL_STATE(3168)] = 107016, + [SMALL_STATE(3169)] = 107074, + [SMALL_STATE(3170)] = 107139, + [SMALL_STATE(3171)] = 107196, + [SMALL_STATE(3172)] = 107272, + [SMALL_STATE(3173)] = 107348, + [SMALL_STATE(3174)] = 107424, + [SMALL_STATE(3175)] = 107500, + [SMALL_STATE(3176)] = 107576, + [SMALL_STATE(3177)] = 107652, + [SMALL_STATE(3178)] = 107728, + [SMALL_STATE(3179)] = 107804, + [SMALL_STATE(3180)] = 107870, + [SMALL_STATE(3181)] = 107946, + [SMALL_STATE(3182)] = 108010, + [SMALL_STATE(3183)] = 108086, + [SMALL_STATE(3184)] = 108162, + [SMALL_STATE(3185)] = 108238, + [SMALL_STATE(3186)] = 108314, + [SMALL_STATE(3187)] = 108390, + [SMALL_STATE(3188)] = 108466, + [SMALL_STATE(3189)] = 108542, + [SMALL_STATE(3190)] = 108607, + [SMALL_STATE(3191)] = 108665, + [SMALL_STATE(3192)] = 108723, + [SMALL_STATE(3193)] = 108793, + [SMALL_STATE(3194)] = 108847, + [SMALL_STATE(3195)] = 108901, + [SMALL_STATE(3196)] = 108959, + [SMALL_STATE(3197)] = 109013, + [SMALL_STATE(3198)] = 109071, + [SMALL_STATE(3199)] = 109125, + [SMALL_STATE(3200)] = 109182, + [SMALL_STATE(3201)] = 109251, + [SMALL_STATE(3202)] = 109304, + [SMALL_STATE(3203)] = 109361, + [SMALL_STATE(3204)] = 109418, + [SMALL_STATE(3205)] = 109475, + [SMALL_STATE(3206)] = 109530, + [SMALL_STATE(3207)] = 109587, + [SMALL_STATE(3208)] = 109654, + [SMALL_STATE(3209)] = 109711, + [SMALL_STATE(3210)] = 109761, + [SMALL_STATE(3211)] = 109825, + [SMALL_STATE(3212)] = 109891, + [SMALL_STATE(3213)] = 109959, + [SMALL_STATE(3214)] = 110019, + [SMALL_STATE(3215)] = 110081, + [SMALL_STATE(3216)] = 110149, + [SMALL_STATE(3217)] = 110219, + [SMALL_STATE(3218)] = 110275, + [SMALL_STATE(3219)] = 110333, + [SMALL_STATE(3220)] = 110411, + [SMALL_STATE(3221)] = 110491, + [SMALL_STATE(3222)] = 110571, + [SMALL_STATE(3223)] = 110653, + [SMALL_STATE(3224)] = 110735, + [SMALL_STATE(3225)] = 110819, + [SMALL_STATE(3226)] = 110889, + [SMALL_STATE(3227)] = 110961, + [SMALL_STATE(3228)] = 111025, + [SMALL_STATE(3229)] = 111091, + [SMALL_STATE(3230)] = 111163, + [SMALL_STATE(3231)] = 111237, + [SMALL_STATE(3232)] = 111311, + [SMALL_STATE(3233)] = 111387, + [SMALL_STATE(3234)] = 111463, + [SMALL_STATE(3235)] = 111541, + [SMALL_STATE(3236)] = 111609, + [SMALL_STATE(3237)] = 111671, + [SMALL_STATE(3238)] = 111741, + [SMALL_STATE(3239)] = 111799, + [SMALL_STATE(3240)] = 111879, + [SMALL_STATE(3241)] = 111961, + [SMALL_STATE(3242)] = 112045, + [SMALL_STATE(3243)] = 112117, + [SMALL_STATE(3244)] = 112183, + [SMALL_STATE(3245)] = 112257, + [SMALL_STATE(3246)] = 112333, + [SMALL_STATE(3247)] = 112411, + [SMALL_STATE(3248)] = 112477, + [SMALL_STATE(3249)] = 112537, + [SMALL_STATE(3250)] = 112605, + [SMALL_STATE(3251)] = 112661, + [SMALL_STATE(3252)] = 112739, + [SMALL_STATE(3253)] = 112819, + [SMALL_STATE(3254)] = 112901, + [SMALL_STATE(3255)] = 112971, + [SMALL_STATE(3256)] = 113035, + [SMALL_STATE(3257)] = 113107, + [SMALL_STATE(3258)] = 113181, + [SMALL_STATE(3259)] = 113257, + [SMALL_STATE(3260)] = 113323, + [SMALL_STATE(3261)] = 113391, + [SMALL_STATE(3262)] = 113451, + [SMALL_STATE(3263)] = 113513, + [SMALL_STATE(3264)] = 113581, + [SMALL_STATE(3265)] = 113651, + [SMALL_STATE(3266)] = 113707, + [SMALL_STATE(3267)] = 113765, + [SMALL_STATE(3268)] = 113843, + [SMALL_STATE(3269)] = 113923, + [SMALL_STATE(3270)] = 114003, + [SMALL_STATE(3271)] = 114085, + [SMALL_STATE(3272)] = 114167, + [SMALL_STATE(3273)] = 114251, + [SMALL_STATE(3274)] = 114321, + [SMALL_STATE(3275)] = 114393, + [SMALL_STATE(3276)] = 114457, + [SMALL_STATE(3277)] = 114523, + [SMALL_STATE(3278)] = 114595, + [SMALL_STATE(3279)] = 114669, + [SMALL_STATE(3280)] = 114743, + [SMALL_STATE(3281)] = 114819, + [SMALL_STATE(3282)] = 114895, + [SMALL_STATE(3283)] = 114973, + [SMALL_STATE(3284)] = 115023, + [SMALL_STATE(3285)] = 115089, + [SMALL_STATE(3286)] = 115157, + [SMALL_STATE(3287)] = 115213, + [SMALL_STATE(3288)] = 115291, + [SMALL_STATE(3289)] = 115371, + [SMALL_STATE(3290)] = 115453, + [SMALL_STATE(3291)] = 115523, + [SMALL_STATE(3292)] = 115587, + [SMALL_STATE(3293)] = 115659, + [SMALL_STATE(3294)] = 115733, + [SMALL_STATE(3295)] = 115809, + [SMALL_STATE(3296)] = 115875, + [SMALL_STATE(3297)] = 115939, + [SMALL_STATE(3298)] = 115997, + [SMALL_STATE(3299)] = 116063, + [SMALL_STATE(3300)] = 116117, + [SMALL_STATE(3301)] = 116193, + [SMALL_STATE(3302)] = 116271, + [SMALL_STATE(3303)] = 116351, + [SMALL_STATE(3304)] = 116419, + [SMALL_STATE(3305)] = 116481, + [SMALL_STATE(3306)] = 116551, + [SMALL_STATE(3307)] = 116623, + [SMALL_STATE(3308)] = 116697, + [SMALL_STATE(3309)] = 116763, + [SMALL_STATE(3310)] = 116827, + [SMALL_STATE(3311)] = 116881, + [SMALL_STATE(3312)] = 116949, + [SMALL_STATE(3313)] = 117011, + [SMALL_STATE(3314)] = 117081, + [SMALL_STATE(3315)] = 117139, + [SMALL_STATE(3316)] = 117193, + [SMALL_STATE(3317)] = 117273, + [SMALL_STATE(3318)] = 117355, + [SMALL_STATE(3319)] = 117439, + [SMALL_STATE(3320)] = 117489, + [SMALL_STATE(3321)] = 117561, + [SMALL_STATE(3322)] = 117627, + [SMALL_STATE(3323)] = 117701, + [SMALL_STATE(3324)] = 117777, + [SMALL_STATE(3325)] = 117827, + [SMALL_STATE(3326)] = 117877, + [SMALL_STATE(3327)] = 117927, + [SMALL_STATE(3328)] = 118005, + [SMALL_STATE(3329)] = 118069, + [SMALL_STATE(3330)] = 118133, + [SMALL_STATE(3331)] = 118199, + [SMALL_STATE(3332)] = 118265, + [SMALL_STATE(3333)] = 118333, + [SMALL_STATE(3334)] = 118387, + [SMALL_STATE(3335)] = 118441, + [SMALL_STATE(3336)] = 118505, + [SMALL_STATE(3337)] = 118565, + [SMALL_STATE(3338)] = 118626, + [SMALL_STATE(3339)] = 118687, + [SMALL_STATE(3340)] = 118738, + [SMALL_STATE(3341)] = 118791, + [SMALL_STATE(3342)] = 118852, + [SMALL_STATE(3343)] = 118925, + [SMALL_STATE(3344)] = 118976, + [SMALL_STATE(3345)] = 119047, + [SMALL_STATE(3346)] = 119112, + [SMALL_STATE(3347)] = 119187, + [SMALL_STATE(3348)] = 119248, + [SMALL_STATE(3349)] = 119309, + [SMALL_STATE(3350)] = 119370, + [SMALL_STATE(3351)] = 119421, + [SMALL_STATE(3352)] = 119472, + [SMALL_STATE(3353)] = 119537, + [SMALL_STATE(3354)] = 119602, + [SMALL_STATE(3355)] = 119657, + [SMALL_STATE(3356)] = 119722, + [SMALL_STATE(3357)] = 119789, + [SMALL_STATE(3358)] = 119850, + [SMALL_STATE(3359)] = 119909, + [SMALL_STATE(3360)] = 119960, + [SMALL_STATE(3361)] = 120023, + [SMALL_STATE(3362)] = 120092, + [SMALL_STATE(3363)] = 120153, + [SMALL_STATE(3364)] = 120230, + [SMALL_STATE(3365)] = 120281, + [SMALL_STATE(3366)] = 120338, + [SMALL_STATE(3367)] = 120397, + [SMALL_STATE(3368)] = 120476, + [SMALL_STATE(3369)] = 120537, + [SMALL_STATE(3370)] = 120588, + [SMALL_STATE(3371)] = 120649, + [SMALL_STATE(3372)] = 120710, + [SMALL_STATE(3373)] = 120761, + [SMALL_STATE(3374)] = 120812, + [SMALL_STATE(3375)] = 120865, + [SMALL_STATE(3376)] = 120916, + [SMALL_STATE(3377)] = 120967, + [SMALL_STATE(3378)] = 121022, + [SMALL_STATE(3379)] = 121087, + [SMALL_STATE(3380)] = 121138, + [SMALL_STATE(3381)] = 121192, + [SMALL_STATE(3382)] = 121246, + [SMALL_STATE(3383)] = 121300, + [SMALL_STATE(3384)] = 121366, + [SMALL_STATE(3385)] = 121424, + [SMALL_STATE(3386)] = 121476, + [SMALL_STATE(3387)] = 121528, + [SMALL_STATE(3388)] = 121614, + [SMALL_STATE(3389)] = 121700, + [SMALL_STATE(3390)] = 121758, + [SMALL_STATE(3391)] = 121816, + [SMALL_STATE(3392)] = 121870, + [SMALL_STATE(3393)] = 121926, + [SMALL_STATE(3394)] = 121980, + [SMALL_STATE(3395)] = 122034, + [SMALL_STATE(3396)] = 122083, + [SMALL_STATE(3397)] = 122132, + [SMALL_STATE(3398)] = 122185, + [SMALL_STATE(3399)] = 122240, + [SMALL_STATE(3400)] = 122295, + [SMALL_STATE(3401)] = 122350, + [SMALL_STATE(3402)] = 122401, + [SMALL_STATE(3403)] = 122464, + [SMALL_STATE(3404)] = 122527, + [SMALL_STATE(3405)] = 122610, + [SMALL_STATE(3406)] = 122667, + [SMALL_STATE(3407)] = 122726, + [SMALL_STATE(3408)] = 122775, + [SMALL_STATE(3409)] = 122824, + [SMALL_STATE(3410)] = 122887, + [SMALL_STATE(3411)] = 122936, + [SMALL_STATE(3412)] = 122999, + [SMALL_STATE(3413)] = 123050, + [SMALL_STATE(3414)] = 123101, + [SMALL_STATE(3415)] = 123156, + [SMALL_STATE(3416)] = 123221, + [SMALL_STATE(3417)] = 123276, + [SMALL_STATE(3418)] = 123329, + [SMALL_STATE(3419)] = 123382, + [SMALL_STATE(3420)] = 123465, + [SMALL_STATE(3421)] = 123516, + [SMALL_STATE(3422)] = 123572, + [SMALL_STATE(3423)] = 123624, + [SMALL_STATE(3424)] = 123672, + [SMALL_STATE(3425)] = 123720, + [SMALL_STATE(3426)] = 123776, + [SMALL_STATE(3427)] = 123824, + [SMALL_STATE(3428)] = 123880, + [SMALL_STATE(3429)] = 123928, + [SMALL_STATE(3430)] = 123976, + [SMALL_STATE(3431)] = 124028, + [SMALL_STATE(3432)] = 124080, + [SMALL_STATE(3433)] = 124132, + [SMALL_STATE(3434)] = 124180, + [SMALL_STATE(3435)] = 124242, + [SMALL_STATE(3436)] = 124290, + [SMALL_STATE(3437)] = 124340, + [SMALL_STATE(3438)] = 124390, + [SMALL_STATE(3439)] = 124438, + [SMALL_STATE(3440)] = 124486, + [SMALL_STATE(3441)] = 124548, + [SMALL_STATE(3442)] = 124596, + [SMALL_STATE(3443)] = 124644, + [SMALL_STATE(3444)] = 124692, + [SMALL_STATE(3445)] = 124740, + [SMALL_STATE(3446)] = 124788, + [SMALL_STATE(3447)] = 124836, + [SMALL_STATE(3448)] = 124884, + [SMALL_STATE(3449)] = 124932, + [SMALL_STATE(3450)] = 124980, + [SMALL_STATE(3451)] = 125028, + [SMALL_STATE(3452)] = 125076, + [SMALL_STATE(3453)] = 125124, + [SMALL_STATE(3454)] = 125172, + [SMALL_STATE(3455)] = 125224, + [SMALL_STATE(3456)] = 125272, + [SMALL_STATE(3457)] = 125328, + [SMALL_STATE(3458)] = 125376, + [SMALL_STATE(3459)] = 125430, + [SMALL_STATE(3460)] = 125492, + [SMALL_STATE(3461)] = 125547, + [SMALL_STATE(3462)] = 125594, + [SMALL_STATE(3463)] = 125649, + [SMALL_STATE(3464)] = 125696, + [SMALL_STATE(3465)] = 125751, + [SMALL_STATE(3466)] = 125806, + [SMALL_STATE(3467)] = 125861, + [SMALL_STATE(3468)] = 125916, + [SMALL_STATE(3469)] = 125971, + [SMALL_STATE(3470)] = 126022, + [SMALL_STATE(3471)] = 126077, + [SMALL_STATE(3472)] = 126132, + [SMALL_STATE(3473)] = 126187, + [SMALL_STATE(3474)] = 126242, + [SMALL_STATE(3475)] = 126297, + [SMALL_STATE(3476)] = 126344, + [SMALL_STATE(3477)] = 126397, + [SMALL_STATE(3478)] = 126446, + [SMALL_STATE(3479)] = 126501, + [SMALL_STATE(3480)] = 126556, + [SMALL_STATE(3481)] = 126611, + [SMALL_STATE(3482)] = 126666, + [SMALL_STATE(3483)] = 126713, + [SMALL_STATE(3484)] = 126764, + [SMALL_STATE(3485)] = 126815, + [SMALL_STATE(3486)] = 126862, + [SMALL_STATE(3487)] = 126917, + [SMALL_STATE(3488)] = 126972, + [SMALL_STATE(3489)] = 127027, + [SMALL_STATE(3490)] = 127074, + [SMALL_STATE(3491)] = 127129, + [SMALL_STATE(3492)] = 127184, + [SMALL_STATE(3493)] = 127239, + [SMALL_STATE(3494)] = 127294, + [SMALL_STATE(3495)] = 127341, + [SMALL_STATE(3496)] = 127396, + [SMALL_STATE(3497)] = 127445, + [SMALL_STATE(3498)] = 127491, + [SMALL_STATE(3499)] = 127537, + [SMALL_STATE(3500)] = 127583, + [SMALL_STATE(3501)] = 127629, + [SMALL_STATE(3502)] = 127675, + [SMALL_STATE(3503)] = 127727, + [SMALL_STATE(3504)] = 127773, + [SMALL_STATE(3505)] = 127819, + [SMALL_STATE(3506)] = 127865, + [SMALL_STATE(3507)] = 127911, + [SMALL_STATE(3508)] = 127957, + [SMALL_STATE(3509)] = 128005, + [SMALL_STATE(3510)] = 128051, + [SMALL_STATE(3511)] = 128097, + [SMALL_STATE(3512)] = 128147, + [SMALL_STATE(3513)] = 128193, + [SMALL_STATE(3514)] = 128239, + [SMALL_STATE(3515)] = 128285, + [SMALL_STATE(3516)] = 128331, + [SMALL_STATE(3517)] = 128377, + [SMALL_STATE(3518)] = 128423, + [SMALL_STATE(3519)] = 128469, + [SMALL_STATE(3520)] = 128515, + [SMALL_STATE(3521)] = 128561, + [SMALL_STATE(3522)] = 128607, + [SMALL_STATE(3523)] = 128657, + [SMALL_STATE(3524)] = 128705, + [SMALL_STATE(3525)] = 128755, + [SMALL_STATE(3526)] = 128805, + [SMALL_STATE(3527)] = 128853, + [SMALL_STATE(3528)] = 128899, + [SMALL_STATE(3529)] = 128949, + [SMALL_STATE(3530)] = 128995, + [SMALL_STATE(3531)] = 129041, + [SMALL_STATE(3532)] = 129087, + [SMALL_STATE(3533)] = 129133, + [SMALL_STATE(3534)] = 129179, + [SMALL_STATE(3535)] = 129225, + [SMALL_STATE(3536)] = 129271, + [SMALL_STATE(3537)] = 129317, + [SMALL_STATE(3538)] = 129367, + [SMALL_STATE(3539)] = 129413, + [SMALL_STATE(3540)] = 129459, + [SMALL_STATE(3541)] = 129505, + [SMALL_STATE(3542)] = 129557, + [SMALL_STATE(3543)] = 129603, + [SMALL_STATE(3544)] = 129651, + [SMALL_STATE(3545)] = 129705, + [SMALL_STATE(3546)] = 129751, + [SMALL_STATE(3547)] = 129795, + [SMALL_STATE(3548)] = 129847, + [SMALL_STATE(3549)] = 129901, + [SMALL_STATE(3550)] = 129947, + [SMALL_STATE(3551)] = 129993, + [SMALL_STATE(3552)] = 130046, + [SMALL_STATE(3553)] = 130099, + [SMALL_STATE(3554)] = 130148, + [SMALL_STATE(3555)] = 130193, + [SMALL_STATE(3556)] = 130238, + [SMALL_STATE(3557)] = 130291, + [SMALL_STATE(3558)] = 130340, + [SMALL_STATE(3559)] = 130393, + [SMALL_STATE(3560)] = 130440, + [SMALL_STATE(3561)] = 130487, + [SMALL_STATE(3562)] = 130536, + [SMALL_STATE(3563)] = 130581, + [SMALL_STATE(3564)] = 130634, + [SMALL_STATE(3565)] = 130679, + [SMALL_STATE(3566)] = 130732, + [SMALL_STATE(3567)] = 130785, + [SMALL_STATE(3568)] = 130838, + [SMALL_STATE(3569)] = 130883, + [SMALL_STATE(3570)] = 130936, + [SMALL_STATE(3571)] = 130981, + [SMALL_STATE(3572)] = 131026, + [SMALL_STATE(3573)] = 131075, + [SMALL_STATE(3574)] = 131120, + [SMALL_STATE(3575)] = 131165, + [SMALL_STATE(3576)] = 131214, + [SMALL_STATE(3577)] = 131259, + [SMALL_STATE(3578)] = 131312, + [SMALL_STATE(3579)] = 131365, + [SMALL_STATE(3580)] = 131418, + [SMALL_STATE(3581)] = 131463, + [SMALL_STATE(3582)] = 131508, + [SMALL_STATE(3583)] = 131553, + [SMALL_STATE(3584)] = 131606, + [SMALL_STATE(3585)] = 131659, + [SMALL_STATE(3586)] = 131712, + [SMALL_STATE(3587)] = 131765, + [SMALL_STATE(3588)] = 131818, + [SMALL_STATE(3589)] = 131867, + [SMALL_STATE(3590)] = 131920, + [SMALL_STATE(3591)] = 131965, + [SMALL_STATE(3592)] = 132010, + [SMALL_STATE(3593)] = 132055, + [SMALL_STATE(3594)] = 132108, + [SMALL_STATE(3595)] = 132155, + [SMALL_STATE(3596)] = 132202, + [SMALL_STATE(3597)] = 132255, + [SMALL_STATE(3598)] = 132308, + [SMALL_STATE(3599)] = 132361, + [SMALL_STATE(3600)] = 132414, + [SMALL_STATE(3601)] = 132467, + [SMALL_STATE(3602)] = 132520, + [SMALL_STATE(3603)] = 132569, + [SMALL_STATE(3604)] = 132622, + [SMALL_STATE(3605)] = 132675, + [SMALL_STATE(3606)] = 132720, + [SMALL_STATE(3607)] = 132764, + [SMALL_STATE(3608)] = 132808, + [SMALL_STATE(3609)] = 132854, + [SMALL_STATE(3610)] = 132902, + [SMALL_STATE(3611)] = 132946, + [SMALL_STATE(3612)] = 132990, + [SMALL_STATE(3613)] = 133038, + [SMALL_STATE(3614)] = 133084, + [SMALL_STATE(3615)] = 133128, + [SMALL_STATE(3616)] = 133172, + [SMALL_STATE(3617)] = 133216, + [SMALL_STATE(3618)] = 133262, + [SMALL_STATE(3619)] = 133306, + [SMALL_STATE(3620)] = 133350, + [SMALL_STATE(3621)] = 133394, + [SMALL_STATE(3622)] = 133438, + [SMALL_STATE(3623)] = 133486, + [SMALL_STATE(3624)] = 133534, + [SMALL_STATE(3625)] = 133586, + [SMALL_STATE(3626)] = 133630, + [SMALL_STATE(3627)] = 133674, + [SMALL_STATE(3628)] = 133718, + [SMALL_STATE(3629)] = 133762, + [SMALL_STATE(3630)] = 133806, + [SMALL_STATE(3631)] = 133852, + [SMALL_STATE(3632)] = 133900, + [SMALL_STATE(3633)] = 133946, + [SMALL_STATE(3634)] = 133992, + [SMALL_STATE(3635)] = 134044, + [SMALL_STATE(3636)] = 134090, + [SMALL_STATE(3637)] = 134136, + [SMALL_STATE(3638)] = 134182, + [SMALL_STATE(3639)] = 134228, + [SMALL_STATE(3640)] = 134271, + [SMALL_STATE(3641)] = 134314, + [SMALL_STATE(3642)] = 134357, + [SMALL_STATE(3643)] = 134400, + [SMALL_STATE(3644)] = 134443, + [SMALL_STATE(3645)] = 134486, + [SMALL_STATE(3646)] = 134529, + [SMALL_STATE(3647)] = 134574, + [SMALL_STATE(3648)] = 134625, + [SMALL_STATE(3649)] = 134668, + [SMALL_STATE(3650)] = 134711, + [SMALL_STATE(3651)] = 134754, + [SMALL_STATE(3652)] = 134801, + [SMALL_STATE(3653)] = 134844, + [SMALL_STATE(3654)] = 134887, + [SMALL_STATE(3655)] = 134930, + [SMALL_STATE(3656)] = 134973, + [SMALL_STATE(3657)] = 135016, + [SMALL_STATE(3658)] = 135063, + [SMALL_STATE(3659)] = 135106, + [SMALL_STATE(3660)] = 135149, + [SMALL_STATE(3661)] = 135192, + [SMALL_STATE(3662)] = 135235, + [SMALL_STATE(3663)] = 135278, + [SMALL_STATE(3664)] = 135321, + [SMALL_STATE(3665)] = 135364, + [SMALL_STATE(3666)] = 135411, + [SMALL_STATE(3667)] = 135454, + [SMALL_STATE(3668)] = 135501, + [SMALL_STATE(3669)] = 135548, + [SMALL_STATE(3670)] = 135595, + [SMALL_STATE(3671)] = 135642, + [SMALL_STATE(3672)] = 135689, + [SMALL_STATE(3673)] = 135736, + [SMALL_STATE(3674)] = 135783, + [SMALL_STATE(3675)] = 135826, + [SMALL_STATE(3676)] = 135873, + [SMALL_STATE(3677)] = 135920, + [SMALL_STATE(3678)] = 135963, + [SMALL_STATE(3679)] = 136010, + [SMALL_STATE(3680)] = 136057, + [SMALL_STATE(3681)] = 136100, + [SMALL_STATE(3682)] = 136147, + [SMALL_STATE(3683)] = 136190, + [SMALL_STATE(3684)] = 136237, + [SMALL_STATE(3685)] = 136284, + [SMALL_STATE(3686)] = 136331, + [SMALL_STATE(3687)] = 136374, + [SMALL_STATE(3688)] = 136417, + [SMALL_STATE(3689)] = 136464, + [SMALL_STATE(3690)] = 136511, + [SMALL_STATE(3691)] = 136554, + [SMALL_STATE(3692)] = 136597, + [SMALL_STATE(3693)] = 136640, + [SMALL_STATE(3694)] = 136683, + [SMALL_STATE(3695)] = 136726, + [SMALL_STATE(3696)] = 136769, + [SMALL_STATE(3697)] = 136816, + [SMALL_STATE(3698)] = 136859, + [SMALL_STATE(3699)] = 136908, + [SMALL_STATE(3700)] = 136955, + [SMALL_STATE(3701)] = 137002, + [SMALL_STATE(3702)] = 137045, + [SMALL_STATE(3703)] = 137088, + [SMALL_STATE(3704)] = 137131, + [SMALL_STATE(3705)] = 137174, + [SMALL_STATE(3706)] = 137217, + [SMALL_STATE(3707)] = 137306, + [SMALL_STATE(3708)] = 137349, + [SMALL_STATE(3709)] = 137392, + [SMALL_STATE(3710)] = 137437, + [SMALL_STATE(3711)] = 137480, + [SMALL_STATE(3712)] = 137523, + [SMALL_STATE(3713)] = 137566, + [SMALL_STATE(3714)] = 137609, + [SMALL_STATE(3715)] = 137652, + [SMALL_STATE(3716)] = 137695, + [SMALL_STATE(3717)] = 137744, + [SMALL_STATE(3718)] = 137791, + [SMALL_STATE(3719)] = 137834, + [SMALL_STATE(3720)] = 137881, + [SMALL_STATE(3721)] = 137928, + [SMALL_STATE(3722)] = 137975, + [SMALL_STATE(3723)] = 138022, + [SMALL_STATE(3724)] = 138065, + [SMALL_STATE(3725)] = 138154, + [SMALL_STATE(3726)] = 138197, + [SMALL_STATE(3727)] = 138240, + [SMALL_STATE(3728)] = 138283, + [SMALL_STATE(3729)] = 138326, + [SMALL_STATE(3730)] = 138373, + [SMALL_STATE(3731)] = 138417, + [SMALL_STATE(3732)] = 138483, + [SMALL_STATE(3733)] = 138549, + [SMALL_STATE(3734)] = 138617, + [SMALL_STATE(3735)] = 138673, + [SMALL_STATE(3736)] = 138723, + [SMALL_STATE(3737)] = 138781, + [SMALL_STATE(3738)] = 138827, + [SMALL_STATE(3739)] = 138895, + [SMALL_STATE(3740)] = 138965, + [SMALL_STATE(3741)] = 139037, + [SMALL_STATE(3742)] = 139097, + [SMALL_STATE(3743)] = 139151, + [SMALL_STATE(3744)] = 139213, + [SMALL_STATE(3745)] = 139277, + [SMALL_STATE(3746)] = 139343, + [SMALL_STATE(3747)] = 139403, + [SMALL_STATE(3748)] = 139445, + [SMALL_STATE(3749)] = 139493, + [SMALL_STATE(3750)] = 139563, + [SMALL_STATE(3751)] = 139605, + [SMALL_STATE(3752)] = 139651, + [SMALL_STATE(3753)] = 139699, + [SMALL_STATE(3754)] = 139741, + [SMALL_STATE(3755)] = 139783, + [SMALL_STATE(3756)] = 139855, + [SMALL_STATE(3757)] = 139897, + [SMALL_STATE(3758)] = 139971, + [SMALL_STATE(3759)] = 140033, + [SMALL_STATE(3760)] = 140077, + [SMALL_STATE(3761)] = 140133, + [SMALL_STATE(3762)] = 140197, + [SMALL_STATE(3763)] = 140263, + [SMALL_STATE(3764)] = 140331, + [SMALL_STATE(3765)] = 140379, + [SMALL_STATE(3766)] = 140421, + [SMALL_STATE(3767)] = 140477, + [SMALL_STATE(3768)] = 140521, + [SMALL_STATE(3769)] = 140579, + [SMALL_STATE(3770)] = 140629, + [SMALL_STATE(3771)] = 140681, + [SMALL_STATE(3772)] = 140739, + [SMALL_STATE(3773)] = 140799, + [SMALL_STATE(3774)] = 140845, + [SMALL_STATE(3775)] = 140893, + [SMALL_STATE(3776)] = 140961, + [SMALL_STATE(3777)] = 141031, + [SMALL_STATE(3778)] = 141101, + [SMALL_STATE(3779)] = 141173, + [SMALL_STATE(3780)] = 141245, + [SMALL_STATE(3781)] = 141319, + [SMALL_STATE(3782)] = 141379, + [SMALL_STATE(3783)] = 141441, + [SMALL_STATE(3784)] = 141495, + [SMALL_STATE(3785)] = 141551, + [SMALL_STATE(3786)] = 141613, + [SMALL_STATE(3787)] = 141677, + [SMALL_STATE(3788)] = 141741, + [SMALL_STATE(3789)] = 141807, + [SMALL_STATE(3790)] = 141873, + [SMALL_STATE(3791)] = 141941, + [SMALL_STATE(3792)] = 141999, + [SMALL_STATE(3793)] = 142041, + [SMALL_STATE(3794)] = 142093, + [SMALL_STATE(3795)] = 142135, + [SMALL_STATE(3796)] = 142195, + [SMALL_STATE(3797)] = 142241, + [SMALL_STATE(3798)] = 142289, + [SMALL_STATE(3799)] = 142359, + [SMALL_STATE(3800)] = 142431, + [SMALL_STATE(3801)] = 142475, + [SMALL_STATE(3802)] = 142549, + [SMALL_STATE(3803)] = 142613, + [SMALL_STATE(3804)] = 142669, + [SMALL_STATE(3805)] = 142733, + [SMALL_STATE(3806)] = 142799, + [SMALL_STATE(3807)] = 142847, + [SMALL_STATE(3808)] = 142915, + [SMALL_STATE(3809)] = 142967, + [SMALL_STATE(3810)] = 143025, + [SMALL_STATE(3811)] = 143081, + [SMALL_STATE(3812)] = 143131, + [SMALL_STATE(3813)] = 143173, + [SMALL_STATE(3814)] = 143231, + [SMALL_STATE(3815)] = 143277, + [SMALL_STATE(3816)] = 143325, + [SMALL_STATE(3817)] = 143393, + [SMALL_STATE(3818)] = 143463, + [SMALL_STATE(3819)] = 143535, + [SMALL_STATE(3820)] = 143583, + [SMALL_STATE(3821)] = 143631, + [SMALL_STATE(3822)] = 143673, + [SMALL_STATE(3823)] = 143715, + [SMALL_STATE(3824)] = 143775, + [SMALL_STATE(3825)] = 143823, + [SMALL_STATE(3826)] = 143877, + [SMALL_STATE(3827)] = 143939, + [SMALL_STATE(3828)] = 144003, + [SMALL_STATE(3829)] = 144045, + [SMALL_STATE(3830)] = 144087, + [SMALL_STATE(3831)] = 144153, + [SMALL_STATE(3832)] = 144209, + [SMALL_STATE(3833)] = 144251, + [SMALL_STATE(3834)] = 144299, + [SMALL_STATE(3835)] = 144357, + [SMALL_STATE(3836)] = 144407, + [SMALL_STATE(3837)] = 144459, + [SMALL_STATE(3838)] = 144517, + [SMALL_STATE(3839)] = 144559, + [SMALL_STATE(3840)] = 144619, + [SMALL_STATE(3841)] = 144665, + [SMALL_STATE(3842)] = 144713, + [SMALL_STATE(3843)] = 144781, + [SMALL_STATE(3844)] = 144825, + [SMALL_STATE(3845)] = 144895, + [SMALL_STATE(3846)] = 144937, + [SMALL_STATE(3847)] = 145007, + [SMALL_STATE(3848)] = 145079, + [SMALL_STATE(3849)] = 145123, + [SMALL_STATE(3850)] = 145165, + [SMALL_STATE(3851)] = 145207, + [SMALL_STATE(3852)] = 145279, + [SMALL_STATE(3853)] = 145353, + [SMALL_STATE(3854)] = 145413, + [SMALL_STATE(3855)] = 145475, + [SMALL_STATE(3856)] = 145529, + [SMALL_STATE(3857)] = 145571, + [SMALL_STATE(3858)] = 145627, + [SMALL_STATE(3859)] = 145669, + [SMALL_STATE(3860)] = 145731, + [SMALL_STATE(3861)] = 145795, + [SMALL_STATE(3862)] = 145857, + [SMALL_STATE(3863)] = 145940, + [SMALL_STATE(3864)] = 146023, + [SMALL_STATE(3865)] = 146106, + [SMALL_STATE(3866)] = 146189, + [SMALL_STATE(3867)] = 146230, + [SMALL_STATE(3868)] = 146275, + [SMALL_STATE(3869)] = 146348, + [SMALL_STATE(3870)] = 146431, + [SMALL_STATE(3871)] = 146514, + [SMALL_STATE(3872)] = 146559, + [SMALL_STATE(3873)] = 146642, + [SMALL_STATE(3874)] = 146683, + [SMALL_STATE(3875)] = 146724, + [SMALL_STATE(3876)] = 146765, + [SMALL_STATE(3877)] = 146816, + [SMALL_STATE(3878)] = 146857, + [SMALL_STATE(3879)] = 146904, + [SMALL_STATE(3880)] = 146947, + [SMALL_STATE(3881)] = 146988, + [SMALL_STATE(3882)] = 147041, + [SMALL_STATE(3883)] = 147082, + [SMALL_STATE(3884)] = 147125, + [SMALL_STATE(3885)] = 147208, + [SMALL_STATE(3886)] = 147249, + [SMALL_STATE(3887)] = 147312, + [SMALL_STATE(3888)] = 147353, + [SMALL_STATE(3889)] = 147418, + [SMALL_STATE(3890)] = 147459, + [SMALL_STATE(3891)] = 147500, + [SMALL_STATE(3892)] = 147567, + [SMALL_STATE(3893)] = 147650, + [SMALL_STATE(3894)] = 147691, + [SMALL_STATE(3895)] = 147746, + [SMALL_STATE(3896)] = 147787, + [SMALL_STATE(3897)] = 147870, + [SMALL_STATE(3898)] = 147911, + [SMALL_STATE(3899)] = 147952, + [SMALL_STATE(3900)] = 148001, + [SMALL_STATE(3901)] = 148042, + [SMALL_STATE(3902)] = 148099, + [SMALL_STATE(3903)] = 148144, + [SMALL_STATE(3904)] = 148185, + [SMALL_STATE(3905)] = 148226, + [SMALL_STATE(3906)] = 148287, + [SMALL_STATE(3907)] = 148360, + [SMALL_STATE(3908)] = 148401, + [SMALL_STATE(3909)] = 148442, + [SMALL_STATE(3910)] = 148483, + [SMALL_STATE(3911)] = 148566, + [SMALL_STATE(3912)] = 148649, + [SMALL_STATE(3913)] = 148732, + [SMALL_STATE(3914)] = 148815, + [SMALL_STATE(3915)] = 148898, + [SMALL_STATE(3916)] = 148971, + [SMALL_STATE(3917)] = 149044, + [SMALL_STATE(3918)] = 149127, + [SMALL_STATE(3919)] = 149210, + [SMALL_STATE(3920)] = 149293, + [SMALL_STATE(3921)] = 149366, + [SMALL_STATE(3922)] = 149439, + [SMALL_STATE(3923)] = 149522, + [SMALL_STATE(3924)] = 149605, + [SMALL_STATE(3925)] = 149688, + [SMALL_STATE(3926)] = 149771, + [SMALL_STATE(3927)] = 149854, + [SMALL_STATE(3928)] = 149895, + [SMALL_STATE(3929)] = 149978, + [SMALL_STATE(3930)] = 150061, + [SMALL_STATE(3931)] = 150144, + [SMALL_STATE(3932)] = 150203, + [SMALL_STATE(3933)] = 150245, + [SMALL_STATE(3934)] = 150311, + [SMALL_STATE(3935)] = 150379, + [SMALL_STATE(3936)] = 150435, + [SMALL_STATE(3937)] = 150485, + [SMALL_STATE(3938)] = 150543, + [SMALL_STATE(3939)] = 150603, + [SMALL_STATE(3940)] = 150665, + [SMALL_STATE(3941)] = 150709, + [SMALL_STATE(3942)] = 150751, + [SMALL_STATE(3943)] = 150791, + [SMALL_STATE(3944)] = 150833, + [SMALL_STATE(3945)] = 150875, + [SMALL_STATE(3946)] = 150917, + [SMALL_STATE(3947)] = 150963, + [SMALL_STATE(3948)] = 151005, + [SMALL_STATE(3949)] = 151069, + [SMALL_STATE(3950)] = 151111, + [SMALL_STATE(3951)] = 151153, + [SMALL_STATE(3952)] = 151197, + [SMALL_STATE(3953)] = 151261, + [SMALL_STATE(3954)] = 151327, + [SMALL_STATE(3955)] = 151395, + [SMALL_STATE(3956)] = 151451, + [SMALL_STATE(3957)] = 151495, + [SMALL_STATE(3958)] = 151547, + [SMALL_STATE(3959)] = 151591, + [SMALL_STATE(3960)] = 151649, + [SMALL_STATE(3961)] = 151703, + [SMALL_STATE(3962)] = 151745, + [SMALL_STATE(3963)] = 151805, + [SMALL_STATE(3964)] = 151867, + [SMALL_STATE(3965)] = 151917, + [SMALL_STATE(3966)] = 151959, + [SMALL_STATE(3967)] = 152011, + [SMALL_STATE(3968)] = 152057, + [SMALL_STATE(3969)] = 152111, + [SMALL_STATE(3970)] = 152153, + [SMALL_STATE(3971)] = 152230, + [SMALL_STATE(3972)] = 152307, + [SMALL_STATE(3973)] = 152346, + [SMALL_STATE(3974)] = 152423, + [SMALL_STATE(3975)] = 152500, + [SMALL_STATE(3976)] = 152577, + [SMALL_STATE(3977)] = 152616, + [SMALL_STATE(3978)] = 152661, + [SMALL_STATE(3979)] = 152738, + [SMALL_STATE(3980)] = 152777, + [SMALL_STATE(3981)] = 152844, + [SMALL_STATE(3982)] = 152911, + [SMALL_STATE(3983)] = 152978, + [SMALL_STATE(3984)] = 153045, + [SMALL_STATE(3985)] = 153112, + [SMALL_STATE(3986)] = 153189, + [SMALL_STATE(3987)] = 153256, + [SMALL_STATE(3988)] = 153333, + [SMALL_STATE(3989)] = 153372, + [SMALL_STATE(3990)] = 153449, + [SMALL_STATE(3991)] = 153526, + [SMALL_STATE(3992)] = 153565, + [SMALL_STATE(3993)] = 153632, + [SMALL_STATE(3994)] = 153709, + [SMALL_STATE(3995)] = 153786, + [SMALL_STATE(3996)] = 153825, + [SMALL_STATE(3997)] = 153879, + [SMALL_STATE(3998)] = 153923, + [SMALL_STATE(3999)] = 153974, + [SMALL_STATE(4000)] = 154027, + [SMALL_STATE(4001)] = 154078, + [SMALL_STATE(4002)] = 154134, + [SMALL_STATE(4003)] = 154174, + [SMALL_STATE(4004)] = 154224, + [SMALL_STATE(4005)] = 154264, + [SMALL_STATE(4006)] = 154314, + [SMALL_STATE(4007)] = 154353, + [SMALL_STATE(4008)] = 154406, + [SMALL_STATE(4009)] = 154443, + [SMALL_STATE(4010)] = 154480, + [SMALL_STATE(4011)] = 154535, + [SMALL_STATE(4012)] = 154588, + [SMALL_STATE(4013)] = 154641, + [SMALL_STATE(4014)] = 154680, + [SMALL_STATE(4015)] = 154727, + [SMALL_STATE(4016)] = 154765, + [SMALL_STATE(4017)] = 154799, + [SMALL_STATE(4018)] = 154835, + [SMALL_STATE(4019)] = 154871, + [SMALL_STATE(4020)] = 154905, + [SMALL_STATE(4021)] = 154943, + [SMALL_STATE(4022)] = 154993, + [SMALL_STATE(4023)] = 155045, + [SMALL_STATE(4024)] = 155079, + [SMALL_STATE(4025)] = 155131, + [SMALL_STATE(4026)] = 155169, + [SMALL_STATE(4027)] = 155219, + [SMALL_STATE(4028)] = 155261, + [SMALL_STATE(4029)] = 155303, + [SMALL_STATE(4030)] = 155353, + [SMALL_STATE(4031)] = 155403, + [SMALL_STATE(4032)] = 155437, + [SMALL_STATE(4033)] = 155475, + [SMALL_STATE(4034)] = 155527, + [SMALL_STATE(4035)] = 155573, + [SMALL_STATE(4036)] = 155608, + [SMALL_STATE(4037)] = 155641, + [SMALL_STATE(4038)] = 155678, + [SMALL_STATE(4039)] = 155713, + [SMALL_STATE(4040)] = 155746, + [SMALL_STATE(4041)] = 155783, + [SMALL_STATE(4042)] = 155816, + [SMALL_STATE(4043)] = 155865, + [SMALL_STATE(4044)] = 155914, + [SMALL_STATE(4045)] = 155963, + [SMALL_STATE(4046)] = 155996, + [SMALL_STATE(4047)] = 156045, + [SMALL_STATE(4048)] = 156080, + [SMALL_STATE(4049)] = 156133, + [SMALL_STATE(4050)] = 156168, + [SMALL_STATE(4051)] = 156205, + [SMALL_STATE(4052)] = 156246, + [SMALL_STATE(4053)] = 156281, + [SMALL_STATE(4054)] = 156328, + [SMALL_STATE(4055)] = 156369, + [SMALL_STATE(4056)] = 156406, + [SMALL_STATE(4057)] = 156440, + [SMALL_STATE(4058)] = 156474, + [SMALL_STATE(4059)] = 156506, + [SMALL_STATE(4060)] = 156538, + [SMALL_STATE(4061)] = 156570, + [SMALL_STATE(4062)] = 156602, + [SMALL_STATE(4063)] = 156638, + [SMALL_STATE(4064)] = 156670, + [SMALL_STATE(4065)] = 156706, + [SMALL_STATE(4066)] = 156740, + [SMALL_STATE(4067)] = 156790, + [SMALL_STATE(4068)] = 156826, + [SMALL_STATE(4069)] = 156864, + [SMALL_STATE(4070)] = 156896, + [SMALL_STATE(4071)] = 156936, + [SMALL_STATE(4072)] = 156968, + [SMALL_STATE(4073)] = 157000, + [SMALL_STATE(4074)] = 157046, + [SMALL_STATE(4075)] = 157078, + [SMALL_STATE(4076)] = 157118, + [SMALL_STATE(4077)] = 157154, + [SMALL_STATE(4078)] = 157194, + [SMALL_STATE(4079)] = 157228, + [SMALL_STATE(4080)] = 157278, + [SMALL_STATE(4081)] = 157328, + [SMALL_STATE(4082)] = 157366, + [SMALL_STATE(4083)] = 157413, + [SMALL_STATE(4084)] = 157460, + [SMALL_STATE(4085)] = 157493, + [SMALL_STATE(4086)] = 157532, + [SMALL_STATE(4087)] = 157563, + [SMALL_STATE(4088)] = 157596, + [SMALL_STATE(4089)] = 157629, + [SMALL_STATE(4090)] = 157660, + [SMALL_STATE(4091)] = 157697, + [SMALL_STATE(4092)] = 157728, + [SMALL_STATE(4093)] = 157759, + [SMALL_STATE(4094)] = 157792, + [SMALL_STATE(4095)] = 157829, + [SMALL_STATE(4096)] = 157864, + [SMALL_STATE(4097)] = 157899, + [SMALL_STATE(4098)] = 157938, + [SMALL_STATE(4099)] = 157969, + [SMALL_STATE(4100)] = 158000, + [SMALL_STATE(4101)] = 158037, + [SMALL_STATE(4102)] = 158084, + [SMALL_STATE(4103)] = 158131, + [SMALL_STATE(4104)] = 158172, + [SMALL_STATE(4105)] = 158207, + [SMALL_STATE(4106)] = 158238, + [SMALL_STATE(4107)] = 158273, + [SMALL_STATE(4108)] = 158308, + [SMALL_STATE(4109)] = 158339, + [SMALL_STATE(4110)] = 158384, + [SMALL_STATE(4111)] = 158423, + [SMALL_STATE(4112)] = 158459, + [SMALL_STATE(4113)] = 158489, + [SMALL_STATE(4114)] = 158523, + [SMALL_STATE(4115)] = 158561, + [SMALL_STATE(4116)] = 158601, + [SMALL_STATE(4117)] = 158631, + [SMALL_STATE(4118)] = 158661, + [SMALL_STATE(4119)] = 158691, + [SMALL_STATE(4120)] = 158723, + [SMALL_STATE(4121)] = 158761, + [SMALL_STATE(4122)] = 158793, + [SMALL_STATE(4123)] = 158825, + [SMALL_STATE(4124)] = 158863, + [SMALL_STATE(4125)] = 158895, + [SMALL_STATE(4126)] = 158927, + [SMALL_STATE(4127)] = 158961, + [SMALL_STATE(4128)] = 158991, + [SMALL_STATE(4129)] = 159021, + [SMALL_STATE(4130)] = 159051, + [SMALL_STATE(4131)] = 159081, + [SMALL_STATE(4132)] = 159115, + [SMALL_STATE(4133)] = 159149, + [SMALL_STATE(4134)] = 159187, + [SMALL_STATE(4135)] = 159237, + [SMALL_STATE(4136)] = 159269, + [SMALL_STATE(4137)] = 159299, + [SMALL_STATE(4138)] = 159329, + [SMALL_STATE(4139)] = 159359, + [SMALL_STATE(4140)] = 159389, + [SMALL_STATE(4141)] = 159427, + [SMALL_STATE(4142)] = 159459, + [SMALL_STATE(4143)] = 159493, + [SMALL_STATE(4144)] = 159525, + [SMALL_STATE(4145)] = 159557, + [SMALL_STATE(4146)] = 159594, + [SMALL_STATE(4147)] = 159623, + [SMALL_STATE(4148)] = 159660, + [SMALL_STATE(4149)] = 159697, + [SMALL_STATE(4150)] = 159734, + [SMALL_STATE(4151)] = 159767, + [SMALL_STATE(4152)] = 159798, + [SMALL_STATE(4153)] = 159831, + [SMALL_STATE(4154)] = 159860, + [SMALL_STATE(4155)] = 159889, + [SMALL_STATE(4156)] = 159920, + [SMALL_STATE(4157)] = 159951, + [SMALL_STATE(4158)] = 159980, + [SMALL_STATE(4159)] = 160013, + [SMALL_STATE(4160)] = 160044, + [SMALL_STATE(4161)] = 160075, + [SMALL_STATE(4162)] = 160104, + [SMALL_STATE(4163)] = 160141, + [SMALL_STATE(4164)] = 160178, + [SMALL_STATE(4165)] = 160209, + [SMALL_STATE(4166)] = 160246, + [SMALL_STATE(4167)] = 160277, + [SMALL_STATE(4168)] = 160306, + [SMALL_STATE(4169)] = 160343, + [SMALL_STATE(4170)] = 160372, + [SMALL_STATE(4171)] = 160409, + [SMALL_STATE(4172)] = 160442, + [SMALL_STATE(4173)] = 160475, + [SMALL_STATE(4174)] = 160512, + [SMALL_STATE(4175)] = 160543, + [SMALL_STATE(4176)] = 160572, + [SMALL_STATE(4177)] = 160601, + [SMALL_STATE(4178)] = 160634, + [SMALL_STATE(4179)] = 160671, + [SMALL_STATE(4180)] = 160700, + [SMALL_STATE(4181)] = 160731, + [SMALL_STATE(4182)] = 160762, + [SMALL_STATE(4183)] = 160799, + [SMALL_STATE(4184)] = 160832, + [SMALL_STATE(4185)] = 160869, + [SMALL_STATE(4186)] = 160900, + [SMALL_STATE(4187)] = 160937, + [SMALL_STATE(4188)] = 160966, + [SMALL_STATE(4189)] = 160995, + [SMALL_STATE(4190)] = 161026, + [SMALL_STATE(4191)] = 161063, + [SMALL_STATE(4192)] = 161100, + [SMALL_STATE(4193)] = 161129, + [SMALL_STATE(4194)] = 161158, + [SMALL_STATE(4195)] = 161195, + [SMALL_STATE(4196)] = 161224, + [SMALL_STATE(4197)] = 161253, + [SMALL_STATE(4198)] = 161290, + [SMALL_STATE(4199)] = 161319, + [SMALL_STATE(4200)] = 161356, + [SMALL_STATE(4201)] = 161387, + [SMALL_STATE(4202)] = 161424, + [SMALL_STATE(4203)] = 161461, + [SMALL_STATE(4204)] = 161492, + [SMALL_STATE(4205)] = 161529, + [SMALL_STATE(4206)] = 161560, + [SMALL_STATE(4207)] = 161597, + [SMALL_STATE(4208)] = 161634, + [SMALL_STATE(4209)] = 161669, + [SMALL_STATE(4210)] = 161698, + [SMALL_STATE(4211)] = 161735, + [SMALL_STATE(4212)] = 161764, + [SMALL_STATE(4213)] = 161795, + [SMALL_STATE(4214)] = 161832, + [SMALL_STATE(4215)] = 161869, + [SMALL_STATE(4216)] = 161898, + [SMALL_STATE(4217)] = 161929, + [SMALL_STATE(4218)] = 161958, + [SMALL_STATE(4219)] = 161995, + [SMALL_STATE(4220)] = 162032, + [SMALL_STATE(4221)] = 162061, + [SMALL_STATE(4222)] = 162090, + [SMALL_STATE(4223)] = 162127, + [SMALL_STATE(4224)] = 162164, + [SMALL_STATE(4225)] = 162201, + [SMALL_STATE(4226)] = 162229, + [SMALL_STATE(4227)] = 162265, + [SMALL_STATE(4228)] = 162293, + [SMALL_STATE(4229)] = 162329, + [SMALL_STATE(4230)] = 162359, + [SMALL_STATE(4231)] = 162395, + [SMALL_STATE(4232)] = 162431, + [SMALL_STATE(4233)] = 162459, + [SMALL_STATE(4234)] = 162495, + [SMALL_STATE(4235)] = 162539, + [SMALL_STATE(4236)] = 162573, + [SMALL_STATE(4237)] = 162601, + [SMALL_STATE(4238)] = 162637, + [SMALL_STATE(4239)] = 162673, + [SMALL_STATE(4240)] = 162709, + [SMALL_STATE(4241)] = 162745, + [SMALL_STATE(4242)] = 162793, + [SMALL_STATE(4243)] = 162829, + [SMALL_STATE(4244)] = 162865, + [SMALL_STATE(4245)] = 162897, + [SMALL_STATE(4246)] = 162925, + [SMALL_STATE(4247)] = 162961, + [SMALL_STATE(4248)] = 162997, + [SMALL_STATE(4249)] = 163033, + [SMALL_STATE(4250)] = 163061, + [SMALL_STATE(4251)] = 163093, + [SMALL_STATE(4252)] = 163123, + [SMALL_STATE(4253)] = 163151, + [SMALL_STATE(4254)] = 163181, + [SMALL_STATE(4255)] = 163213, + [SMALL_STATE(4256)] = 163249, + [SMALL_STATE(4257)] = 163277, + [SMALL_STATE(4258)] = 163313, + [SMALL_STATE(4259)] = 163341, + [SMALL_STATE(4260)] = 163389, + [SMALL_STATE(4261)] = 163425, + [SMALL_STATE(4262)] = 163457, + [SMALL_STATE(4263)] = 163485, + [SMALL_STATE(4264)] = 163521, + [SMALL_STATE(4265)] = 163557, + [SMALL_STATE(4266)] = 163593, + [SMALL_STATE(4267)] = 163625, + [SMALL_STATE(4268)] = 163661, + [SMALL_STATE(4269)] = 163693, + [SMALL_STATE(4270)] = 163741, + [SMALL_STATE(4271)] = 163773, + [SMALL_STATE(4272)] = 163805, + [SMALL_STATE(4273)] = 163835, + [SMALL_STATE(4274)] = 163863, + [SMALL_STATE(4275)] = 163911, + [SMALL_STATE(4276)] = 163947, + [SMALL_STATE(4277)] = 163975, + [SMALL_STATE(4278)] = 164013, + [SMALL_STATE(4279)] = 164045, + [SMALL_STATE(4280)] = 164073, + [SMALL_STATE(4281)] = 164109, + [SMALL_STATE(4282)] = 164137, + [SMALL_STATE(4283)] = 164167, + [SMALL_STATE(4284)] = 164197, + [SMALL_STATE(4285)] = 164227, + [SMALL_STATE(4286)] = 164263, + [SMALL_STATE(4287)] = 164299, + [SMALL_STATE(4288)] = 164335, + [SMALL_STATE(4289)] = 164371, + [SMALL_STATE(4290)] = 164415, + [SMALL_STATE(4291)] = 164445, + [SMALL_STATE(4292)] = 164477, + [SMALL_STATE(4293)] = 164521, + [SMALL_STATE(4294)] = 164549, + [SMALL_STATE(4295)] = 164585, + [SMALL_STATE(4296)] = 164615, + [SMALL_STATE(4297)] = 164643, + [SMALL_STATE(4298)] = 164681, + [SMALL_STATE(4299)] = 164713, + [SMALL_STATE(4300)] = 164757, + [SMALL_STATE(4301)] = 164787, + [SMALL_STATE(4302)] = 164815, + [SMALL_STATE(4303)] = 164843, + [SMALL_STATE(4304)] = 164879, + [SMALL_STATE(4305)] = 164909, + [SMALL_STATE(4306)] = 164937, + [SMALL_STATE(4307)] = 164981, + [SMALL_STATE(4308)] = 165009, + [SMALL_STATE(4309)] = 165041, + [SMALL_STATE(4310)] = 165073, + [SMALL_STATE(4311)] = 165109, + [SMALL_STATE(4312)] = 165137, + [SMALL_STATE(4313)] = 165167, + [SMALL_STATE(4314)] = 165203, + [SMALL_STATE(4315)] = 165239, + [SMALL_STATE(4316)] = 165267, + [SMALL_STATE(4317)] = 165294, + [SMALL_STATE(4318)] = 165325, + [SMALL_STATE(4319)] = 165356, + [SMALL_STATE(4320)] = 165383, + [SMALL_STATE(4321)] = 165414, + [SMALL_STATE(4322)] = 165445, + [SMALL_STATE(4323)] = 165476, + [SMALL_STATE(4324)] = 165507, + [SMALL_STATE(4325)] = 165542, + [SMALL_STATE(4326)] = 165577, + [SMALL_STATE(4327)] = 165604, + [SMALL_STATE(4328)] = 165637, + [SMALL_STATE(4329)] = 165670, + [SMALL_STATE(4330)] = 165705, + [SMALL_STATE(4331)] = 165740, + [SMALL_STATE(4332)] = 165765, + [SMALL_STATE(4333)] = 165792, + [SMALL_STATE(4334)] = 165817, + [SMALL_STATE(4335)] = 165842, + [SMALL_STATE(4336)] = 165869, + [SMALL_STATE(4337)] = 165900, + [SMALL_STATE(4338)] = 165925, + [SMALL_STATE(4339)] = 165950, + [SMALL_STATE(4340)] = 165975, + [SMALL_STATE(4341)] = 166000, + [SMALL_STATE(4342)] = 166025, + [SMALL_STATE(4343)] = 166052, + [SMALL_STATE(4344)] = 166087, + [SMALL_STATE(4345)] = 166122, + [SMALL_STATE(4346)] = 166149, + [SMALL_STATE(4347)] = 166176, + [SMALL_STATE(4348)] = 166205, + [SMALL_STATE(4349)] = 166234, + [SMALL_STATE(4350)] = 166259, + [SMALL_STATE(4351)] = 166284, + [SMALL_STATE(4352)] = 166315, + [SMALL_STATE(4353)] = 166342, + [SMALL_STATE(4354)] = 166369, + [SMALL_STATE(4355)] = 166398, + [SMALL_STATE(4356)] = 166427, + [SMALL_STATE(4357)] = 166454, + [SMALL_STATE(4358)] = 166489, + [SMALL_STATE(4359)] = 166524, + [SMALL_STATE(4360)] = 166559, + [SMALL_STATE(4361)] = 166594, + [SMALL_STATE(4362)] = 166629, + [SMALL_STATE(4363)] = 166664, + [SMALL_STATE(4364)] = 166699, + [SMALL_STATE(4365)] = 166730, + [SMALL_STATE(4366)] = 166765, + [SMALL_STATE(4367)] = 166800, + [SMALL_STATE(4368)] = 166827, + [SMALL_STATE(4369)] = 166862, + [SMALL_STATE(4370)] = 166897, + [SMALL_STATE(4371)] = 166932, + [SMALL_STATE(4372)] = 166959, + [SMALL_STATE(4373)] = 166986, + [SMALL_STATE(4374)] = 167013, + [SMALL_STATE(4375)] = 167048, + [SMALL_STATE(4376)] = 167083, + [SMALL_STATE(4377)] = 167118, + [SMALL_STATE(4378)] = 167153, + [SMALL_STATE(4379)] = 167184, + [SMALL_STATE(4380)] = 167215, + [SMALL_STATE(4381)] = 167250, + [SMALL_STATE(4382)] = 167285, + [SMALL_STATE(4383)] = 167316, + [SMALL_STATE(4384)] = 167347, + [SMALL_STATE(4385)] = 167378, + [SMALL_STATE(4386)] = 167407, + [SMALL_STATE(4387)] = 167436, + [SMALL_STATE(4388)] = 167463, + [SMALL_STATE(4389)] = 167494, + [SMALL_STATE(4390)] = 167521, + [SMALL_STATE(4391)] = 167548, + [SMALL_STATE(4392)] = 167583, + [SMALL_STATE(4393)] = 167614, + [SMALL_STATE(4394)] = 167641, + [SMALL_STATE(4395)] = 167674, + [SMALL_STATE(4396)] = 167705, + [SMALL_STATE(4397)] = 167736, + [SMALL_STATE(4398)] = 167771, + [SMALL_STATE(4399)] = 167802, + [SMALL_STATE(4400)] = 167831, + [SMALL_STATE(4401)] = 167862, + [SMALL_STATE(4402)] = 167887, + [SMALL_STATE(4403)] = 167914, + [SMALL_STATE(4404)] = 167941, + [SMALL_STATE(4405)] = 167970, + [SMALL_STATE(4406)] = 168003, + [SMALL_STATE(4407)] = 168040, + [SMALL_STATE(4408)] = 168069, + [SMALL_STATE(4409)] = 168096, + [SMALL_STATE(4410)] = 168127, + [SMALL_STATE(4411)] = 168158, + [SMALL_STATE(4412)] = 168185, + [SMALL_STATE(4413)] = 168212, + [SMALL_STATE(4414)] = 168241, + [SMALL_STATE(4415)] = 168270, + [SMALL_STATE(4416)] = 168305, + [SMALL_STATE(4417)] = 168340, + [SMALL_STATE(4418)] = 168371, + [SMALL_STATE(4419)] = 168402, + [SMALL_STATE(4420)] = 168429, + [SMALL_STATE(4421)] = 168456, + [SMALL_STATE(4422)] = 168487, + [SMALL_STATE(4423)] = 168514, + [SMALL_STATE(4424)] = 168541, + [SMALL_STATE(4425)] = 168568, + [SMALL_STATE(4426)] = 168595, + [SMALL_STATE(4427)] = 168622, + [SMALL_STATE(4428)] = 168649, + [SMALL_STATE(4429)] = 168676, + [SMALL_STATE(4430)] = 168705, + [SMALL_STATE(4431)] = 168734, + [SMALL_STATE(4432)] = 168765, + [SMALL_STATE(4433)] = 168796, + [SMALL_STATE(4434)] = 168827, + [SMALL_STATE(4435)] = 168858, + [SMALL_STATE(4436)] = 168891, + [SMALL_STATE(4437)] = 168922, + [SMALL_STATE(4438)] = 168955, + [SMALL_STATE(4439)] = 168982, + [SMALL_STATE(4440)] = 169013, + [SMALL_STATE(4441)] = 169044, + [SMALL_STATE(4442)] = 169077, + [SMALL_STATE(4443)] = 169110, + [SMALL_STATE(4444)] = 169137, + [SMALL_STATE(4445)] = 169164, + [SMALL_STATE(4446)] = 169191, + [SMALL_STATE(4447)] = 169218, + [SMALL_STATE(4448)] = 169249, + [SMALL_STATE(4449)] = 169280, + [SMALL_STATE(4450)] = 169309, + [SMALL_STATE(4451)] = 169338, + [SMALL_STATE(4452)] = 169369, + [SMALL_STATE(4453)] = 169400, + [SMALL_STATE(4454)] = 169427, + [SMALL_STATE(4455)] = 169454, + [SMALL_STATE(4456)] = 169485, + [SMALL_STATE(4457)] = 169516, + [SMALL_STATE(4458)] = 169549, + [SMALL_STATE(4459)] = 169582, + [SMALL_STATE(4460)] = 169609, + [SMALL_STATE(4461)] = 169636, + [SMALL_STATE(4462)] = 169667, + [SMALL_STATE(4463)] = 169698, + [SMALL_STATE(4464)] = 169729, + [SMALL_STATE(4465)] = 169760, + [SMALL_STATE(4466)] = 169791, + [SMALL_STATE(4467)] = 169822, + [SMALL_STATE(4468)] = 169851, + [SMALL_STATE(4469)] = 169880, + [SMALL_STATE(4470)] = 169909, + [SMALL_STATE(4471)] = 169942, + [SMALL_STATE(4472)] = 169973, + [SMALL_STATE(4473)] = 170004, + [SMALL_STATE(4474)] = 170031, + [SMALL_STATE(4475)] = 170058, + [SMALL_STATE(4476)] = 170089, + [SMALL_STATE(4477)] = 170116, + [SMALL_STATE(4478)] = 170143, + [SMALL_STATE(4479)] = 170172, + [SMALL_STATE(4480)] = 170201, + [SMALL_STATE(4481)] = 170232, + [SMALL_STATE(4482)] = 170265, + [SMALL_STATE(4483)] = 170296, + [SMALL_STATE(4484)] = 170327, + [SMALL_STATE(4485)] = 170358, + [SMALL_STATE(4486)] = 170389, + [SMALL_STATE(4487)] = 170422, + [SMALL_STATE(4488)] = 170457, + [SMALL_STATE(4489)] = 170490, + [SMALL_STATE(4490)] = 170523, + [SMALL_STATE(4491)] = 170556, + [SMALL_STATE(4492)] = 170583, + [SMALL_STATE(4493)] = 170610, + [SMALL_STATE(4494)] = 170637, + [SMALL_STATE(4495)] = 170666, + [SMALL_STATE(4496)] = 170695, + [SMALL_STATE(4497)] = 170726, + [SMALL_STATE(4498)] = 170757, + [SMALL_STATE(4499)] = 170784, + [SMALL_STATE(4500)] = 170811, + [SMALL_STATE(4501)] = 170838, + [SMALL_STATE(4502)] = 170865, + [SMALL_STATE(4503)] = 170892, + [SMALL_STATE(4504)] = 170919, + [SMALL_STATE(4505)] = 170948, + [SMALL_STATE(4506)] = 170977, + [SMALL_STATE(4507)] = 171008, + [SMALL_STATE(4508)] = 171039, + [SMALL_STATE(4509)] = 171070, + [SMALL_STATE(4510)] = 171101, + [SMALL_STATE(4511)] = 171128, + [SMALL_STATE(4512)] = 171155, + [SMALL_STATE(4513)] = 171186, + [SMALL_STATE(4514)] = 171217, + [SMALL_STATE(4515)] = 171248, + [SMALL_STATE(4516)] = 171281, + [SMALL_STATE(4517)] = 171316, + [SMALL_STATE(4518)] = 171349, + [SMALL_STATE(4519)] = 171382, + [SMALL_STATE(4520)] = 171415, + [SMALL_STATE(4521)] = 171448, + [SMALL_STATE(4522)] = 171475, + [SMALL_STATE(4523)] = 171503, + [SMALL_STATE(4524)] = 171527, + [SMALL_STATE(4525)] = 171551, + [SMALL_STATE(4526)] = 171581, + [SMALL_STATE(4527)] = 171611, + [SMALL_STATE(4528)] = 171639, + [SMALL_STATE(4529)] = 171665, + [SMALL_STATE(4530)] = 171693, + [SMALL_STATE(4531)] = 171723, + [SMALL_STATE(4532)] = 171749, + [SMALL_STATE(4533)] = 171775, + [SMALL_STATE(4534)] = 171827, + [SMALL_STATE(4535)] = 171853, + [SMALL_STATE(4536)] = 171883, + [SMALL_STATE(4537)] = 171913, + [SMALL_STATE(4538)] = 171943, + [SMALL_STATE(4539)] = 171969, + [SMALL_STATE(4540)] = 171999, + [SMALL_STATE(4541)] = 172027, + [SMALL_STATE(4542)] = 172057, + [SMALL_STATE(4543)] = 172087, + [SMALL_STATE(4544)] = 172113, + [SMALL_STATE(4545)] = 172143, + [SMALL_STATE(4546)] = 172173, + [SMALL_STATE(4547)] = 172201, + [SMALL_STATE(4548)] = 172229, + [SMALL_STATE(4549)] = 172259, + [SMALL_STATE(4550)] = 172311, + [SMALL_STATE(4551)] = 172363, + [SMALL_STATE(4552)] = 172389, + [SMALL_STATE(4553)] = 172421, + [SMALL_STATE(4554)] = 172445, + [SMALL_STATE(4555)] = 172471, + [SMALL_STATE(4556)] = 172499, + [SMALL_STATE(4557)] = 172551, + [SMALL_STATE(4558)] = 172581, + [SMALL_STATE(4559)] = 172611, + [SMALL_STATE(4560)] = 172637, + [SMALL_STATE(4561)] = 172663, + [SMALL_STATE(4562)] = 172693, + [SMALL_STATE(4563)] = 172721, + [SMALL_STATE(4564)] = 172751, + [SMALL_STATE(4565)] = 172781, + [SMALL_STATE(4566)] = 172805, + [SMALL_STATE(4567)] = 172831, + [SMALL_STATE(4568)] = 172857, + [SMALL_STATE(4569)] = 172883, + [SMALL_STATE(4570)] = 172913, + [SMALL_STATE(4571)] = 172943, + [SMALL_STATE(4572)] = 172971, + [SMALL_STATE(4573)] = 173003, + [SMALL_STATE(4574)] = 173031, + [SMALL_STATE(4575)] = 173083, + [SMALL_STATE(4576)] = 173107, + [SMALL_STATE(4577)] = 173137, + [SMALL_STATE(4578)] = 173163, + [SMALL_STATE(4579)] = 173189, + [SMALL_STATE(4580)] = 173219, + [SMALL_STATE(4581)] = 173247, + [SMALL_STATE(4582)] = 173299, + [SMALL_STATE(4583)] = 173323, + [SMALL_STATE(4584)] = 173347, + [SMALL_STATE(4585)] = 173377, + [SMALL_STATE(4586)] = 173405, + [SMALL_STATE(4587)] = 173433, + [SMALL_STATE(4588)] = 173457, + [SMALL_STATE(4589)] = 173481, + [SMALL_STATE(4590)] = 173507, + [SMALL_STATE(4591)] = 173535, + [SMALL_STATE(4592)] = 173565, + [SMALL_STATE(4593)] = 173617, + [SMALL_STATE(4594)] = 173669, + [SMALL_STATE(4595)] = 173695, + [SMALL_STATE(4596)] = 173719, + [SMALL_STATE(4597)] = 173749, + [SMALL_STATE(4598)] = 173775, + [SMALL_STATE(4599)] = 173807, + [SMALL_STATE(4600)] = 173831, + [SMALL_STATE(4601)] = 173861, + [SMALL_STATE(4602)] = 173891, + [SMALL_STATE(4603)] = 173921, + [SMALL_STATE(4604)] = 173947, + [SMALL_STATE(4605)] = 173977, + [SMALL_STATE(4606)] = 174029, + [SMALL_STATE(4607)] = 174081, + [SMALL_STATE(4608)] = 174111, + [SMALL_STATE(4609)] = 174137, + [SMALL_STATE(4610)] = 174163, + [SMALL_STATE(4611)] = 174187, + [SMALL_STATE(4612)] = 174215, + [SMALL_STATE(4613)] = 174245, + [SMALL_STATE(4614)] = 174273, + [SMALL_STATE(4615)] = 174319, + [SMALL_STATE(4616)] = 174349, + [SMALL_STATE(4617)] = 174377, + [SMALL_STATE(4618)] = 174403, + [SMALL_STATE(4619)] = 174431, + [SMALL_STATE(4620)] = 174461, + [SMALL_STATE(4621)] = 174491, + [SMALL_STATE(4622)] = 174515, + [SMALL_STATE(4623)] = 174541, + [SMALL_STATE(4624)] = 174567, + [SMALL_STATE(4625)] = 174596, + [SMALL_STATE(4626)] = 174621, + [SMALL_STATE(4627)] = 174650, + [SMALL_STATE(4628)] = 174691, + [SMALL_STATE(4629)] = 174714, + [SMALL_STATE(4630)] = 174745, + [SMALL_STATE(4631)] = 174770, + [SMALL_STATE(4632)] = 174799, + [SMALL_STATE(4633)] = 174828, + [SMALL_STATE(4634)] = 174857, + [SMALL_STATE(4635)] = 174886, + [SMALL_STATE(4636)] = 174915, + [SMALL_STATE(4637)] = 174940, + [SMALL_STATE(4638)] = 174965, + [SMALL_STATE(4639)] = 174990, + [SMALL_STATE(4640)] = 175015, + [SMALL_STATE(4641)] = 175044, + [SMALL_STATE(4642)] = 175069, + [SMALL_STATE(4643)] = 175094, + [SMALL_STATE(4644)] = 175123, + [SMALL_STATE(4645)] = 175148, + [SMALL_STATE(4646)] = 175173, + [SMALL_STATE(4647)] = 175198, + [SMALL_STATE(4648)] = 175223, + [SMALL_STATE(4649)] = 175248, + [SMALL_STATE(4650)] = 175277, + [SMALL_STATE(4651)] = 175304, + [SMALL_STATE(4652)] = 175333, + [SMALL_STATE(4653)] = 175358, + [SMALL_STATE(4654)] = 175387, + [SMALL_STATE(4655)] = 175412, + [SMALL_STATE(4656)] = 175435, + [SMALL_STATE(4657)] = 175460, + [SMALL_STATE(4658)] = 175489, + [SMALL_STATE(4659)] = 175514, + [SMALL_STATE(4660)] = 175543, + [SMALL_STATE(4661)] = 175568, + [SMALL_STATE(4662)] = 175595, + [SMALL_STATE(4663)] = 175620, + [SMALL_STATE(4664)] = 175649, + [SMALL_STATE(4665)] = 175674, + [SMALL_STATE(4666)] = 175703, + [SMALL_STATE(4667)] = 175728, + [SMALL_STATE(4668)] = 175757, + [SMALL_STATE(4669)] = 175788, + [SMALL_STATE(4670)] = 175817, + [SMALL_STATE(4671)] = 175842, + [SMALL_STATE(4672)] = 175865, + [SMALL_STATE(4673)] = 175894, + [SMALL_STATE(4674)] = 175923, + [SMALL_STATE(4675)] = 175952, + [SMALL_STATE(4676)] = 175981, + [SMALL_STATE(4677)] = 176006, + [SMALL_STATE(4678)] = 176035, + [SMALL_STATE(4679)] = 176060, + [SMALL_STATE(4680)] = 176089, + [SMALL_STATE(4681)] = 176114, + [SMALL_STATE(4682)] = 176139, + [SMALL_STATE(4683)] = 176168, + [SMALL_STATE(4684)] = 176193, + [SMALL_STATE(4685)] = 176218, + [SMALL_STATE(4686)] = 176243, + [SMALL_STATE(4687)] = 176272, + [SMALL_STATE(4688)] = 176299, + [SMALL_STATE(4689)] = 176324, + [SMALL_STATE(4690)] = 176349, + [SMALL_STATE(4691)] = 176378, + [SMALL_STATE(4692)] = 176405, + [SMALL_STATE(4693)] = 176434, + [SMALL_STATE(4694)] = 176463, + [SMALL_STATE(4695)] = 176492, + [SMALL_STATE(4696)] = 176517, + [SMALL_STATE(4697)] = 176542, + [SMALL_STATE(4698)] = 176567, + [SMALL_STATE(4699)] = 176596, + [SMALL_STATE(4700)] = 176625, + [SMALL_STATE(4701)] = 176654, + [SMALL_STATE(4702)] = 176683, + [SMALL_STATE(4703)] = 176708, + [SMALL_STATE(4704)] = 176733, + [SMALL_STATE(4705)] = 176760, + [SMALL_STATE(4706)] = 176789, + [SMALL_STATE(4707)] = 176818, + [SMALL_STATE(4708)] = 176845, + [SMALL_STATE(4709)] = 176872, + [SMALL_STATE(4710)] = 176899, + [SMALL_STATE(4711)] = 176924, + [SMALL_STATE(4712)] = 176949, + [SMALL_STATE(4713)] = 176974, + [SMALL_STATE(4714)] = 176999, + [SMALL_STATE(4715)] = 177024, + [SMALL_STATE(4716)] = 177049, + [SMALL_STATE(4717)] = 177074, + [SMALL_STATE(4718)] = 177099, + [SMALL_STATE(4719)] = 177124, + [SMALL_STATE(4720)] = 177149, + [SMALL_STATE(4721)] = 177174, + [SMALL_STATE(4722)] = 177199, + [SMALL_STATE(4723)] = 177228, + [SMALL_STATE(4724)] = 177253, + [SMALL_STATE(4725)] = 177278, + [SMALL_STATE(4726)] = 177305, + [SMALL_STATE(4727)] = 177330, + [SMALL_STATE(4728)] = 177361, + [SMALL_STATE(4729)] = 177388, + [SMALL_STATE(4730)] = 177413, + [SMALL_STATE(4731)] = 177442, + [SMALL_STATE(4732)] = 177467, + [SMALL_STATE(4733)] = 177492, + [SMALL_STATE(4734)] = 177517, + [SMALL_STATE(4735)] = 177542, + [SMALL_STATE(4736)] = 177567, + [SMALL_STATE(4737)] = 177594, + [SMALL_STATE(4738)] = 177623, + [SMALL_STATE(4739)] = 177652, + [SMALL_STATE(4740)] = 177677, + [SMALL_STATE(4741)] = 177702, + [SMALL_STATE(4742)] = 177729, + [SMALL_STATE(4743)] = 177758, + [SMALL_STATE(4744)] = 177787, + [SMALL_STATE(4745)] = 177816, + [SMALL_STATE(4746)] = 177847, + [SMALL_STATE(4747)] = 177872, + [SMALL_STATE(4748)] = 177897, + [SMALL_STATE(4749)] = 177926, + [SMALL_STATE(4750)] = 177951, + [SMALL_STATE(4751)] = 177980, + [SMALL_STATE(4752)] = 178005, + [SMALL_STATE(4753)] = 178030, + [SMALL_STATE(4754)] = 178053, + [SMALL_STATE(4755)] = 178076, + [SMALL_STATE(4756)] = 178101, + [SMALL_STATE(4757)] = 178126, + [SMALL_STATE(4758)] = 178151, + [SMALL_STATE(4759)] = 178176, + [SMALL_STATE(4760)] = 178201, + [SMALL_STATE(4761)] = 178226, + [SMALL_STATE(4762)] = 178251, + [SMALL_STATE(4763)] = 178274, + [SMALL_STATE(4764)] = 178299, + [SMALL_STATE(4765)] = 178324, + [SMALL_STATE(4766)] = 178349, + [SMALL_STATE(4767)] = 178374, + [SMALL_STATE(4768)] = 178399, + [SMALL_STATE(4769)] = 178428, + [SMALL_STATE(4770)] = 178453, + [SMALL_STATE(4771)] = 178478, + [SMALL_STATE(4772)] = 178503, + [SMALL_STATE(4773)] = 178532, + [SMALL_STATE(4774)] = 178557, + [SMALL_STATE(4775)] = 178582, + [SMALL_STATE(4776)] = 178607, + [SMALL_STATE(4777)] = 178636, + [SMALL_STATE(4778)] = 178661, + [SMALL_STATE(4779)] = 178684, + [SMALL_STATE(4780)] = 178709, + [SMALL_STATE(4781)] = 178734, + [SMALL_STATE(4782)] = 178759, + [SMALL_STATE(4783)] = 178784, + [SMALL_STATE(4784)] = 178809, + [SMALL_STATE(4785)] = 178834, + [SMALL_STATE(4786)] = 178859, + [SMALL_STATE(4787)] = 178884, + [SMALL_STATE(4788)] = 178909, + [SMALL_STATE(4789)] = 178934, + [SMALL_STATE(4790)] = 178959, + [SMALL_STATE(4791)] = 178984, + [SMALL_STATE(4792)] = 179009, + [SMALL_STATE(4793)] = 179034, + [SMALL_STATE(4794)] = 179061, + [SMALL_STATE(4795)] = 179090, + [SMALL_STATE(4796)] = 179115, + [SMALL_STATE(4797)] = 179139, + [SMALL_STATE(4798)] = 179185, + [SMALL_STATE(4799)] = 179209, + [SMALL_STATE(4800)] = 179233, + [SMALL_STATE(4801)] = 179257, + [SMALL_STATE(4802)] = 179281, + [SMALL_STATE(4803)] = 179305, + [SMALL_STATE(4804)] = 179349, + [SMALL_STATE(4805)] = 179371, + [SMALL_STATE(4806)] = 179395, + [SMALL_STATE(4807)] = 179417, + [SMALL_STATE(4808)] = 179441, + [SMALL_STATE(4809)] = 179463, + [SMALL_STATE(4810)] = 179487, + [SMALL_STATE(4811)] = 179533, + [SMALL_STATE(4812)] = 179557, + [SMALL_STATE(4813)] = 179581, + [SMALL_STATE(4814)] = 179605, + [SMALL_STATE(4815)] = 179629, + [SMALL_STATE(4816)] = 179653, + [SMALL_STATE(4817)] = 179677, + [SMALL_STATE(4818)] = 179701, + [SMALL_STATE(4819)] = 179725, + [SMALL_STATE(4820)] = 179749, + [SMALL_STATE(4821)] = 179773, + [SMALL_STATE(4822)] = 179797, + [SMALL_STATE(4823)] = 179821, + [SMALL_STATE(4824)] = 179845, + [SMALL_STATE(4825)] = 179869, + [SMALL_STATE(4826)] = 179893, + [SMALL_STATE(4827)] = 179917, + [SMALL_STATE(4828)] = 179941, + [SMALL_STATE(4829)] = 179979, + [SMALL_STATE(4830)] = 180021, + [SMALL_STATE(4831)] = 180045, + [SMALL_STATE(4832)] = 180069, + [SMALL_STATE(4833)] = 180093, + [SMALL_STATE(4834)] = 180117, + [SMALL_STATE(4835)] = 180141, + [SMALL_STATE(4836)] = 180165, + [SMALL_STATE(4837)] = 180189, + [SMALL_STATE(4838)] = 180213, + [SMALL_STATE(4839)] = 180237, + [SMALL_STATE(4840)] = 180261, + [SMALL_STATE(4841)] = 180285, + [SMALL_STATE(4842)] = 180311, + [SMALL_STATE(4843)] = 180335, + [SMALL_STATE(4844)] = 180359, + [SMALL_STATE(4845)] = 180383, + [SMALL_STATE(4846)] = 180407, + [SMALL_STATE(4847)] = 180433, + [SMALL_STATE(4848)] = 180457, + [SMALL_STATE(4849)] = 180481, + [SMALL_STATE(4850)] = 180505, + [SMALL_STATE(4851)] = 180551, + [SMALL_STATE(4852)] = 180575, + [SMALL_STATE(4853)] = 180599, + [SMALL_STATE(4854)] = 180625, + [SMALL_STATE(4855)] = 180649, + [SMALL_STATE(4856)] = 180673, + [SMALL_STATE(4857)] = 180697, + [SMALL_STATE(4858)] = 180721, + [SMALL_STATE(4859)] = 180763, + [SMALL_STATE(4860)] = 180787, + [SMALL_STATE(4861)] = 180809, + [SMALL_STATE(4862)] = 180831, + [SMALL_STATE(4863)] = 180855, + [SMALL_STATE(4864)] = 180879, + [SMALL_STATE(4865)] = 180903, + [SMALL_STATE(4866)] = 180927, + [SMALL_STATE(4867)] = 180953, + [SMALL_STATE(4868)] = 180977, + [SMALL_STATE(4869)] = 181011, + [SMALL_STATE(4870)] = 181035, + [SMALL_STATE(4871)] = 181059, + [SMALL_STATE(4872)] = 181081, + [SMALL_STATE(4873)] = 181105, + [SMALL_STATE(4874)] = 181129, + [SMALL_STATE(4875)] = 181151, + [SMALL_STATE(4876)] = 181197, + [SMALL_STATE(4877)] = 181219, + [SMALL_STATE(4878)] = 181257, + [SMALL_STATE(4879)] = 181303, + [SMALL_STATE(4880)] = 181349, + [SMALL_STATE(4881)] = 181395, + [SMALL_STATE(4882)] = 181435, + [SMALL_STATE(4883)] = 181459, + [SMALL_STATE(4884)] = 181481, + [SMALL_STATE(4885)] = 181505, + [SMALL_STATE(4886)] = 181527, + [SMALL_STATE(4887)] = 181551, + [SMALL_STATE(4888)] = 181575, + [SMALL_STATE(4889)] = 181599, + [SMALL_STATE(4890)] = 181623, + [SMALL_STATE(4891)] = 181647, + [SMALL_STATE(4892)] = 181671, + [SMALL_STATE(4893)] = 181695, + [SMALL_STATE(4894)] = 181719, + [SMALL_STATE(4895)] = 181743, + [SMALL_STATE(4896)] = 181765, + [SMALL_STATE(4897)] = 181789, + [SMALL_STATE(4898)] = 181833, + [SMALL_STATE(4899)] = 181857, + [SMALL_STATE(4900)] = 181881, + [SMALL_STATE(4901)] = 181905, + [SMALL_STATE(4902)] = 181931, + [SMALL_STATE(4903)] = 181955, + [SMALL_STATE(4904)] = 181977, + [SMALL_STATE(4905)] = 182001, + [SMALL_STATE(4906)] = 182025, + [SMALL_STATE(4907)] = 182049, + [SMALL_STATE(4908)] = 182073, + [SMALL_STATE(4909)] = 182097, + [SMALL_STATE(4910)] = 182119, + [SMALL_STATE(4911)] = 182143, + [SMALL_STATE(4912)] = 182169, + [SMALL_STATE(4913)] = 182191, + [SMALL_STATE(4914)] = 182213, + [SMALL_STATE(4915)] = 182235, + [SMALL_STATE(4916)] = 182259, + [SMALL_STATE(4917)] = 182281, + [SMALL_STATE(4918)] = 182305, + [SMALL_STATE(4919)] = 182329, + [SMALL_STATE(4920)] = 182351, + [SMALL_STATE(4921)] = 182375, + [SMALL_STATE(4922)] = 182399, + [SMALL_STATE(4923)] = 182423, + [SMALL_STATE(4924)] = 182447, + [SMALL_STATE(4925)] = 182469, + [SMALL_STATE(4926)] = 182493, + [SMALL_STATE(4927)] = 182515, + [SMALL_STATE(4928)] = 182539, + [SMALL_STATE(4929)] = 182563, + [SMALL_STATE(4930)] = 182587, + [SMALL_STATE(4931)] = 182609, + [SMALL_STATE(4932)] = 182633, + [SMALL_STATE(4933)] = 182679, + [SMALL_STATE(4934)] = 182721, + [SMALL_STATE(4935)] = 182745, + [SMALL_STATE(4936)] = 182785, + [SMALL_STATE(4937)] = 182809, + [SMALL_STATE(4938)] = 182849, + [SMALL_STATE(4939)] = 182873, + [SMALL_STATE(4940)] = 182897, + [SMALL_STATE(4941)] = 182921, + [SMALL_STATE(4942)] = 182945, + [SMALL_STATE(4943)] = 182969, + [SMALL_STATE(4944)] = 182993, + [SMALL_STATE(4945)] = 183017, + [SMALL_STATE(4946)] = 183041, + [SMALL_STATE(4947)] = 183065, + [SMALL_STATE(4948)] = 183089, + [SMALL_STATE(4949)] = 183111, + [SMALL_STATE(4950)] = 183139, + [SMALL_STATE(4951)] = 183167, + [SMALL_STATE(4952)] = 183195, + [SMALL_STATE(4953)] = 183223, + [SMALL_STATE(4954)] = 183251, + [SMALL_STATE(4955)] = 183279, + [SMALL_STATE(4956)] = 183307, + [SMALL_STATE(4957)] = 183335, + [SMALL_STATE(4958)] = 183363, + [SMALL_STATE(4959)] = 183391, + [SMALL_STATE(4960)] = 183419, + [SMALL_STATE(4961)] = 183447, + [SMALL_STATE(4962)] = 183485, + [SMALL_STATE(4963)] = 183509, + [SMALL_STATE(4964)] = 183533, + [SMALL_STATE(4965)] = 183557, + [SMALL_STATE(4966)] = 183581, + [SMALL_STATE(4967)] = 183605, + [SMALL_STATE(4968)] = 183629, + [SMALL_STATE(4969)] = 183653, + [SMALL_STATE(4970)] = 183677, + [SMALL_STATE(4971)] = 183701, + [SMALL_STATE(4972)] = 183725, + [SMALL_STATE(4973)] = 183749, + [SMALL_STATE(4974)] = 183773, + [SMALL_STATE(4975)] = 183797, + [SMALL_STATE(4976)] = 183821, + [SMALL_STATE(4977)] = 183845, + [SMALL_STATE(4978)] = 183869, + [SMALL_STATE(4979)] = 183893, + [SMALL_STATE(4980)] = 183917, + [SMALL_STATE(4981)] = 183939, + [SMALL_STATE(4982)] = 183963, + [SMALL_STATE(4983)] = 183987, + [SMALL_STATE(4984)] = 184011, + [SMALL_STATE(4985)] = 184033, + [SMALL_STATE(4986)] = 184057, + [SMALL_STATE(4987)] = 184081, + [SMALL_STATE(4988)] = 184105, + [SMALL_STATE(4989)] = 184129, + [SMALL_STATE(4990)] = 184153, + [SMALL_STATE(4991)] = 184177, + [SMALL_STATE(4992)] = 184201, + [SMALL_STATE(4993)] = 184225, + [SMALL_STATE(4994)] = 184249, + [SMALL_STATE(4995)] = 184273, + [SMALL_STATE(4996)] = 184319, + [SMALL_STATE(4997)] = 184341, + [SMALL_STATE(4998)] = 184365, + [SMALL_STATE(4999)] = 184389, + [SMALL_STATE(5000)] = 184413, + [SMALL_STATE(5001)] = 184437, + [SMALL_STATE(5002)] = 184483, + [SMALL_STATE(5003)] = 184507, + [SMALL_STATE(5004)] = 184533, + [SMALL_STATE(5005)] = 184557, + [SMALL_STATE(5006)] = 184583, + [SMALL_STATE(5007)] = 184604, + [SMALL_STATE(5008)] = 184625, + [SMALL_STATE(5009)] = 184646, + [SMALL_STATE(5010)] = 184667, + [SMALL_STATE(5011)] = 184690, + [SMALL_STATE(5012)] = 184711, + [SMALL_STATE(5013)] = 184734, + [SMALL_STATE(5014)] = 184757, + [SMALL_STATE(5015)] = 184778, + [SMALL_STATE(5016)] = 184799, + [SMALL_STATE(5017)] = 184820, + [SMALL_STATE(5018)] = 184843, + [SMALL_STATE(5019)] = 184864, + [SMALL_STATE(5020)] = 184885, + [SMALL_STATE(5021)] = 184926, + [SMALL_STATE(5022)] = 184947, + [SMALL_STATE(5023)] = 184970, + [SMALL_STATE(5024)] = 184991, + [SMALL_STATE(5025)] = 185014, + [SMALL_STATE(5026)] = 185055, + [SMALL_STATE(5027)] = 185076, + [SMALL_STATE(5028)] = 185097, + [SMALL_STATE(5029)] = 185118, + [SMALL_STATE(5030)] = 185139, + [SMALL_STATE(5031)] = 185162, + [SMALL_STATE(5032)] = 185183, + [SMALL_STATE(5033)] = 185204, + [SMALL_STATE(5034)] = 185243, + [SMALL_STATE(5035)] = 185266, + [SMALL_STATE(5036)] = 185289, + [SMALL_STATE(5037)] = 185328, + [SMALL_STATE(5038)] = 185349, + [SMALL_STATE(5039)] = 185370, + [SMALL_STATE(5040)] = 185393, + [SMALL_STATE(5041)] = 185416, + [SMALL_STATE(5042)] = 185457, + [SMALL_STATE(5043)] = 185478, + [SMALL_STATE(5044)] = 185505, + [SMALL_STATE(5045)] = 185526, + [SMALL_STATE(5046)] = 185547, + [SMALL_STATE(5047)] = 185568, + [SMALL_STATE(5048)] = 185589, + [SMALL_STATE(5049)] = 185610, + [SMALL_STATE(5050)] = 185637, + [SMALL_STATE(5051)] = 185676, + [SMALL_STATE(5052)] = 185697, + [SMALL_STATE(5053)] = 185736, + [SMALL_STATE(5054)] = 185759, + [SMALL_STATE(5055)] = 185780, + [SMALL_STATE(5056)] = 185801, + [SMALL_STATE(5057)] = 185822, + [SMALL_STATE(5058)] = 185843, + [SMALL_STATE(5059)] = 185870, + [SMALL_STATE(5060)] = 185897, + [SMALL_STATE(5061)] = 185924, + [SMALL_STATE(5062)] = 185951, + [SMALL_STATE(5063)] = 185978, + [SMALL_STATE(5064)] = 185999, + [SMALL_STATE(5065)] = 186022, + [SMALL_STATE(5066)] = 186059, + [SMALL_STATE(5067)] = 186080, + [SMALL_STATE(5068)] = 186101, + [SMALL_STATE(5069)] = 186124, + [SMALL_STATE(5070)] = 186151, + [SMALL_STATE(5071)] = 186178, + [SMALL_STATE(5072)] = 186205, + [SMALL_STATE(5073)] = 186232, + [SMALL_STATE(5074)] = 186259, + [SMALL_STATE(5075)] = 186282, + [SMALL_STATE(5076)] = 186305, + [SMALL_STATE(5077)] = 186346, + [SMALL_STATE(5078)] = 186373, + [SMALL_STATE(5079)] = 186400, + [SMALL_STATE(5080)] = 186427, + [SMALL_STATE(5081)] = 186454, + [SMALL_STATE(5082)] = 186491, + [SMALL_STATE(5083)] = 186518, + [SMALL_STATE(5084)] = 186555, + [SMALL_STATE(5085)] = 186582, + [SMALL_STATE(5086)] = 186619, + [SMALL_STATE(5087)] = 186656, + [SMALL_STATE(5088)] = 186693, + [SMALL_STATE(5089)] = 186730, + [SMALL_STATE(5090)] = 186769, + [SMALL_STATE(5091)] = 186790, + [SMALL_STATE(5092)] = 186811, + [SMALL_STATE(5093)] = 186838, + [SMALL_STATE(5094)] = 186861, + [SMALL_STATE(5095)] = 186882, + [SMALL_STATE(5096)] = 186903, + [SMALL_STATE(5097)] = 186926, + [SMALL_STATE(5098)] = 186947, + [SMALL_STATE(5099)] = 186968, + [SMALL_STATE(5100)] = 187007, + [SMALL_STATE(5101)] = 187028, + [SMALL_STATE(5102)] = 187069, + [SMALL_STATE(5103)] = 187090, + [SMALL_STATE(5104)] = 187111, + [SMALL_STATE(5105)] = 187152, + [SMALL_STATE(5106)] = 187173, + [SMALL_STATE(5107)] = 187194, + [SMALL_STATE(5108)] = 187215, + [SMALL_STATE(5109)] = 187238, + [SMALL_STATE(5110)] = 187259, + [SMALL_STATE(5111)] = 187282, + [SMALL_STATE(5112)] = 187303, + [SMALL_STATE(5113)] = 187338, + [SMALL_STATE(5114)] = 187373, + [SMALL_STATE(5115)] = 187408, + [SMALL_STATE(5116)] = 187443, + [SMALL_STATE(5117)] = 187466, + [SMALL_STATE(5118)] = 187487, + [SMALL_STATE(5119)] = 187508, + [SMALL_STATE(5120)] = 187529, + [SMALL_STATE(5121)] = 187550, + [SMALL_STATE(5122)] = 187571, + [SMALL_STATE(5123)] = 187594, + [SMALL_STATE(5124)] = 187615, + [SMALL_STATE(5125)] = 187656, + [SMALL_STATE(5126)] = 187679, + [SMALL_STATE(5127)] = 187700, + [SMALL_STATE(5128)] = 187727, + [SMALL_STATE(5129)] = 187748, + [SMALL_STATE(5130)] = 187769, + [SMALL_STATE(5131)] = 187810, + [SMALL_STATE(5132)] = 187831, + [SMALL_STATE(5133)] = 187854, + [SMALL_STATE(5134)] = 187877, + [SMALL_STATE(5135)] = 187900, + [SMALL_STATE(5136)] = 187923, + [SMALL_STATE(5137)] = 187944, + [SMALL_STATE(5138)] = 187965, + [SMALL_STATE(5139)] = 187988, + [SMALL_STATE(5140)] = 188011, + [SMALL_STATE(5141)] = 188032, + [SMALL_STATE(5142)] = 188065, + [SMALL_STATE(5143)] = 188088, + [SMALL_STATE(5144)] = 188125, + [SMALL_STATE(5145)] = 188148, + [SMALL_STATE(5146)] = 188169, + [SMALL_STATE(5147)] = 188190, + [SMALL_STATE(5148)] = 188213, + [SMALL_STATE(5149)] = 188236, + [SMALL_STATE(5150)] = 188257, + [SMALL_STATE(5151)] = 188280, + [SMALL_STATE(5152)] = 188307, + [SMALL_STATE(5153)] = 188330, + [SMALL_STATE(5154)] = 188351, + [SMALL_STATE(5155)] = 188372, + [SMALL_STATE(5156)] = 188393, + [SMALL_STATE(5157)] = 188416, + [SMALL_STATE(5158)] = 188453, + [SMALL_STATE(5159)] = 188490, + [SMALL_STATE(5160)] = 188531, + [SMALL_STATE(5161)] = 188552, + [SMALL_STATE(5162)] = 188575, + [SMALL_STATE(5163)] = 188598, + [SMALL_STATE(5164)] = 188619, + [SMALL_STATE(5165)] = 188658, + [SMALL_STATE(5166)] = 188699, + [SMALL_STATE(5167)] = 188726, + [SMALL_STATE(5168)] = 188747, + [SMALL_STATE(5169)] = 188768, + [SMALL_STATE(5170)] = 188791, + [SMALL_STATE(5171)] = 188814, + [SMALL_STATE(5172)] = 188837, + [SMALL_STATE(5173)] = 188860, + [SMALL_STATE(5174)] = 188881, + [SMALL_STATE(5175)] = 188904, + [SMALL_STATE(5176)] = 188925, + [SMALL_STATE(5177)] = 188952, + [SMALL_STATE(5178)] = 188973, + [SMALL_STATE(5179)] = 188999, + [SMALL_STATE(5180)] = 189033, + [SMALL_STATE(5181)] = 189059, + [SMALL_STATE(5182)] = 189093, + [SMALL_STATE(5183)] = 189125, + [SMALL_STATE(5184)] = 189151, + [SMALL_STATE(5185)] = 189187, + [SMALL_STATE(5186)] = 189217, + [SMALL_STATE(5187)] = 189253, + [SMALL_STATE(5188)] = 189283, + [SMALL_STATE(5189)] = 189313, + [SMALL_STATE(5190)] = 189337, + [SMALL_STATE(5191)] = 189367, + [SMALL_STATE(5192)] = 189397, + [SMALL_STATE(5193)] = 189431, + [SMALL_STATE(5194)] = 189463, + [SMALL_STATE(5195)] = 189497, + [SMALL_STATE(5196)] = 189523, + [SMALL_STATE(5197)] = 189553, + [SMALL_STATE(5198)] = 189583, + [SMALL_STATE(5199)] = 189619, + [SMALL_STATE(5200)] = 189649, + [SMALL_STATE(5201)] = 189679, + [SMALL_STATE(5202)] = 189717, + [SMALL_STATE(5203)] = 189741, + [SMALL_STATE(5204)] = 189765, + [SMALL_STATE(5205)] = 189795, + [SMALL_STATE(5206)] = 189825, + [SMALL_STATE(5207)] = 189849, + [SMALL_STATE(5208)] = 189879, + [SMALL_STATE(5209)] = 189909, + [SMALL_STATE(5210)] = 189939, + [SMALL_STATE(5211)] = 189975, + [SMALL_STATE(5212)] = 189999, + [SMALL_STATE(5213)] = 190029, + [SMALL_STATE(5214)] = 190065, + [SMALL_STATE(5215)] = 190103, + [SMALL_STATE(5216)] = 190129, + [SMALL_STATE(5217)] = 190159, + [SMALL_STATE(5218)] = 190195, + [SMALL_STATE(5219)] = 190221, + [SMALL_STATE(5220)] = 190257, + [SMALL_STATE(5221)] = 190279, + [SMALL_STATE(5222)] = 190309, + [SMALL_STATE(5223)] = 190335, + [SMALL_STATE(5224)] = 190361, + [SMALL_STATE(5225)] = 190391, + [SMALL_STATE(5226)] = 190415, + [SMALL_STATE(5227)] = 190441, + [SMALL_STATE(5228)] = 190473, + [SMALL_STATE(5229)] = 190507, + [SMALL_STATE(5230)] = 190543, + [SMALL_STATE(5231)] = 190569, + [SMALL_STATE(5232)] = 190595, + [SMALL_STATE(5233)] = 190627, + [SMALL_STATE(5234)] = 190651, + [SMALL_STATE(5235)] = 190681, + [SMALL_STATE(5236)] = 190711, + [SMALL_STATE(5237)] = 190747, + [SMALL_STATE(5238)] = 190777, + [SMALL_STATE(5239)] = 190803, + [SMALL_STATE(5240)] = 190833, + [SMALL_STATE(5241)] = 190863, + [SMALL_STATE(5242)] = 190897, + [SMALL_STATE(5243)] = 190925, + [SMALL_STATE(5244)] = 190957, + [SMALL_STATE(5245)] = 190987, + [SMALL_STATE(5246)] = 191013, + [SMALL_STATE(5247)] = 191037, + [SMALL_STATE(5248)] = 191072, + [SMALL_STATE(5249)] = 191103, + [SMALL_STATE(5250)] = 191126, + [SMALL_STATE(5251)] = 191149, + [SMALL_STATE(5252)] = 191174, + [SMALL_STATE(5253)] = 191199, + [SMALL_STATE(5254)] = 191234, + [SMALL_STATE(5255)] = 191269, + [SMALL_STATE(5256)] = 191290, + [SMALL_STATE(5257)] = 191325, + [SMALL_STATE(5258)] = 191350, + [SMALL_STATE(5259)] = 191385, + [SMALL_STATE(5260)] = 191410, + [SMALL_STATE(5261)] = 191431, + [SMALL_STATE(5262)] = 191460, + [SMALL_STATE(5263)] = 191481, + [SMALL_STATE(5264)] = 191508, + [SMALL_STATE(5265)] = 191533, + [SMALL_STATE(5266)] = 191558, + [SMALL_STATE(5267)] = 191593, + [SMALL_STATE(5268)] = 191614, + [SMALL_STATE(5269)] = 191649, + [SMALL_STATE(5270)] = 191684, + [SMALL_STATE(5271)] = 191715, + [SMALL_STATE(5272)] = 191736, + [SMALL_STATE(5273)] = 191771, + [SMALL_STATE(5274)] = 191796, + [SMALL_STATE(5275)] = 191831, + [SMALL_STATE(5276)] = 191866, + [SMALL_STATE(5277)] = 191901, + [SMALL_STATE(5278)] = 191936, + [SMALL_STATE(5279)] = 191971, + [SMALL_STATE(5280)] = 192006, + [SMALL_STATE(5281)] = 192035, + [SMALL_STATE(5282)] = 192068, + [SMALL_STATE(5283)] = 192091, + [SMALL_STATE(5284)] = 192114, + [SMALL_STATE(5285)] = 192143, + [SMALL_STATE(5286)] = 192178, + [SMALL_STATE(5287)] = 192213, + [SMALL_STATE(5288)] = 192246, + [SMALL_STATE(5289)] = 192275, + [SMALL_STATE(5290)] = 192304, + [SMALL_STATE(5291)] = 192333, + [SMALL_STATE(5292)] = 192366, + [SMALL_STATE(5293)] = 192401, + [SMALL_STATE(5294)] = 192436, + [SMALL_STATE(5295)] = 192465, + [SMALL_STATE(5296)] = 192494, + [SMALL_STATE(5297)] = 192523, + [SMALL_STATE(5298)] = 192552, + [SMALL_STATE(5299)] = 192581, + [SMALL_STATE(5300)] = 192610, + [SMALL_STATE(5301)] = 192639, + [SMALL_STATE(5302)] = 192668, + [SMALL_STATE(5303)] = 192697, + [SMALL_STATE(5304)] = 192726, + [SMALL_STATE(5305)] = 192755, + [SMALL_STATE(5306)] = 192784, + [SMALL_STATE(5307)] = 192813, + [SMALL_STATE(5308)] = 192842, + [SMALL_STATE(5309)] = 192871, + [SMALL_STATE(5310)] = 192906, + [SMALL_STATE(5311)] = 192935, + [SMALL_STATE(5312)] = 192970, + [SMALL_STATE(5313)] = 193005, + [SMALL_STATE(5314)] = 193034, + [SMALL_STATE(5315)] = 193063, + [SMALL_STATE(5316)] = 193092, + [SMALL_STATE(5317)] = 193127, + [SMALL_STATE(5318)] = 193162, + [SMALL_STATE(5319)] = 193197, + [SMALL_STATE(5320)] = 193232, + [SMALL_STATE(5321)] = 193265, + [SMALL_STATE(5322)] = 193300, + [SMALL_STATE(5323)] = 193335, + [SMALL_STATE(5324)] = 193368, + [SMALL_STATE(5325)] = 193397, + [SMALL_STATE(5326)] = 193426, + [SMALL_STATE(5327)] = 193459, + [SMALL_STATE(5328)] = 193484, + [SMALL_STATE(5329)] = 193509, + [SMALL_STATE(5330)] = 193538, + [SMALL_STATE(5331)] = 193573, + [SMALL_STATE(5332)] = 193608, + [SMALL_STATE(5333)] = 193641, + [SMALL_STATE(5334)] = 193674, + [SMALL_STATE(5335)] = 193695, + [SMALL_STATE(5336)] = 193716, + [SMALL_STATE(5337)] = 193737, + [SMALL_STATE(5338)] = 193772, + [SMALL_STATE(5339)] = 193807, + [SMALL_STATE(5340)] = 193828, + [SMALL_STATE(5341)] = 193863, + [SMALL_STATE(5342)] = 193898, + [SMALL_STATE(5343)] = 193921, + [SMALL_STATE(5344)] = 193944, + [SMALL_STATE(5345)] = 193967, + [SMALL_STATE(5346)] = 193990, + [SMALL_STATE(5347)] = 194013, + [SMALL_STATE(5348)] = 194034, + [SMALL_STATE(5349)] = 194069, + [SMALL_STATE(5350)] = 194090, + [SMALL_STATE(5351)] = 194111, + [SMALL_STATE(5352)] = 194132, + [SMALL_STATE(5353)] = 194161, + [SMALL_STATE(5354)] = 194192, + [SMALL_STATE(5355)] = 194225, + [SMALL_STATE(5356)] = 194258, + [SMALL_STATE(5357)] = 194287, + [SMALL_STATE(5358)] = 194312, + [SMALL_STATE(5359)] = 194341, + [SMALL_STATE(5360)] = 194365, + [SMALL_STATE(5361)] = 194393, + [SMALL_STATE(5362)] = 194421, + [SMALL_STATE(5363)] = 194449, + [SMALL_STATE(5364)] = 194477, + [SMALL_STATE(5365)] = 194505, + [SMALL_STATE(5366)] = 194533, + [SMALL_STATE(5367)] = 194561, + [SMALL_STATE(5368)] = 194589, + [SMALL_STATE(5369)] = 194617, + [SMALL_STATE(5370)] = 194645, + [SMALL_STATE(5371)] = 194673, + [SMALL_STATE(5372)] = 194701, + [SMALL_STATE(5373)] = 194729, + [SMALL_STATE(5374)] = 194757, + [SMALL_STATE(5375)] = 194777, + [SMALL_STATE(5376)] = 194799, + [SMALL_STATE(5377)] = 194823, + [SMALL_STATE(5378)] = 194843, + [SMALL_STATE(5379)] = 194863, + [SMALL_STATE(5380)] = 194883, + [SMALL_STATE(5381)] = 194903, + [SMALL_STATE(5382)] = 194933, + [SMALL_STATE(5383)] = 194965, + [SMALL_STATE(5384)] = 194993, + [SMALL_STATE(5385)] = 195023, + [SMALL_STATE(5386)] = 195043, + [SMALL_STATE(5387)] = 195073, + [SMALL_STATE(5388)] = 195093, + [SMALL_STATE(5389)] = 195123, + [SMALL_STATE(5390)] = 195153, + [SMALL_STATE(5391)] = 195175, + [SMALL_STATE(5392)] = 195197, + [SMALL_STATE(5393)] = 195229, + [SMALL_STATE(5394)] = 195249, + [SMALL_STATE(5395)] = 195277, + [SMALL_STATE(5396)] = 195301, + [SMALL_STATE(5397)] = 195333, + [SMALL_STATE(5398)] = 195353, + [SMALL_STATE(5399)] = 195373, + [SMALL_STATE(5400)] = 195405, + [SMALL_STATE(5401)] = 195431, + [SMALL_STATE(5402)] = 195461, + [SMALL_STATE(5403)] = 195483, + [SMALL_STATE(5404)] = 195505, + [SMALL_STATE(5405)] = 195531, + [SMALL_STATE(5406)] = 195561, + [SMALL_STATE(5407)] = 195591, + [SMALL_STATE(5408)] = 195621, + [SMALL_STATE(5409)] = 195643, + [SMALL_STATE(5410)] = 195673, + [SMALL_STATE(5411)] = 195703, + [SMALL_STATE(5412)] = 195733, + [SMALL_STATE(5413)] = 195757, + [SMALL_STATE(5414)] = 195777, + [SMALL_STATE(5415)] = 195799, + [SMALL_STATE(5416)] = 195819, + [SMALL_STATE(5417)] = 195845, + [SMALL_STATE(5418)] = 195875, + [SMALL_STATE(5419)] = 195897, + [SMALL_STATE(5420)] = 195927, + [SMALL_STATE(5421)] = 195951, + [SMALL_STATE(5422)] = 195981, + [SMALL_STATE(5423)] = 196011, + [SMALL_STATE(5424)] = 196033, + [SMALL_STATE(5425)] = 196053, + [SMALL_STATE(5426)] = 196083, + [SMALL_STATE(5427)] = 196113, + [SMALL_STATE(5428)] = 196139, + [SMALL_STATE(5429)] = 196163, + [SMALL_STATE(5430)] = 196187, + [SMALL_STATE(5431)] = 196217, + [SMALL_STATE(5432)] = 196241, + [SMALL_STATE(5433)] = 196271, + [SMALL_STATE(5434)] = 196301, + [SMALL_STATE(5435)] = 196331, + [SMALL_STATE(5436)] = 196359, + [SMALL_STATE(5437)] = 196389, + [SMALL_STATE(5438)] = 196419, + [SMALL_STATE(5439)] = 196443, + [SMALL_STATE(5440)] = 196463, + [SMALL_STATE(5441)] = 196493, + [SMALL_STATE(5442)] = 196521, + [SMALL_STATE(5443)] = 196541, + [SMALL_STATE(5444)] = 196571, + [SMALL_STATE(5445)] = 196601, + [SMALL_STATE(5446)] = 196625, + [SMALL_STATE(5447)] = 196645, + [SMALL_STATE(5448)] = 196675, + [SMALL_STATE(5449)] = 196705, + [SMALL_STATE(5450)] = 196735, + [SMALL_STATE(5451)] = 196755, + [SMALL_STATE(5452)] = 196785, + [SMALL_STATE(5453)] = 196805, + [SMALL_STATE(5454)] = 196825, + [SMALL_STATE(5455)] = 196845, + [SMALL_STATE(5456)] = 196875, + [SMALL_STATE(5457)] = 196905, + [SMALL_STATE(5458)] = 196925, + [SMALL_STATE(5459)] = 196953, + [SMALL_STATE(5460)] = 196979, + [SMALL_STATE(5461)] = 197009, + [SMALL_STATE(5462)] = 197039, + [SMALL_STATE(5463)] = 197069, + [SMALL_STATE(5464)] = 197099, + [SMALL_STATE(5465)] = 197119, + [SMALL_STATE(5466)] = 197149, + [SMALL_STATE(5467)] = 197179, + [SMALL_STATE(5468)] = 197207, + [SMALL_STATE(5469)] = 197227, + [SMALL_STATE(5470)] = 197247, + [SMALL_STATE(5471)] = 197277, + [SMALL_STATE(5472)] = 197301, + [SMALL_STATE(5473)] = 197333, + [SMALL_STATE(5474)] = 197363, + [SMALL_STATE(5475)] = 197393, + [SMALL_STATE(5476)] = 197417, + [SMALL_STATE(5477)] = 197449, + [SMALL_STATE(5478)] = 197471, + [SMALL_STATE(5479)] = 197499, + [SMALL_STATE(5480)] = 197527, + [SMALL_STATE(5481)] = 197551, + [SMALL_STATE(5482)] = 197581, + [SMALL_STATE(5483)] = 197605, + [SMALL_STATE(5484)] = 197635, + [SMALL_STATE(5485)] = 197665, + [SMALL_STATE(5486)] = 197695, + [SMALL_STATE(5487)] = 197723, + [SMALL_STATE(5488)] = 197751, + [SMALL_STATE(5489)] = 197781, + [SMALL_STATE(5490)] = 197809, + [SMALL_STATE(5491)] = 197833, + [SMALL_STATE(5492)] = 197863, + [SMALL_STATE(5493)] = 197887, + [SMALL_STATE(5494)] = 197915, + [SMALL_STATE(5495)] = 197943, + [SMALL_STATE(5496)] = 197973, + [SMALL_STATE(5497)] = 198003, + [SMALL_STATE(5498)] = 198033, + [SMALL_STATE(5499)] = 198057, + [SMALL_STATE(5500)] = 198076, + [SMALL_STATE(5501)] = 198105, + [SMALL_STATE(5502)] = 198124, + [SMALL_STATE(5503)] = 198143, + [SMALL_STATE(5504)] = 198162, + [SMALL_STATE(5505)] = 198181, + [SMALL_STATE(5506)] = 198200, + [SMALL_STATE(5507)] = 198227, + [SMALL_STATE(5508)] = 198246, + [SMALL_STATE(5509)] = 198265, + [SMALL_STATE(5510)] = 198286, + [SMALL_STATE(5511)] = 198305, + [SMALL_STATE(5512)] = 198334, + [SMALL_STATE(5513)] = 198355, + [SMALL_STATE(5514)] = 198376, + [SMALL_STATE(5515)] = 198395, + [SMALL_STATE(5516)] = 198414, + [SMALL_STATE(5517)] = 198433, + [SMALL_STATE(5518)] = 198452, + [SMALL_STATE(5519)] = 198473, + [SMALL_STATE(5520)] = 198492, + [SMALL_STATE(5521)] = 198511, + [SMALL_STATE(5522)] = 198538, + [SMALL_STATE(5523)] = 198555, + [SMALL_STATE(5524)] = 198574, + [SMALL_STATE(5525)] = 198593, + [SMALL_STATE(5526)] = 198614, + [SMALL_STATE(5527)] = 198637, + [SMALL_STATE(5528)] = 198658, + [SMALL_STATE(5529)] = 198677, + [SMALL_STATE(5530)] = 198698, + [SMALL_STATE(5531)] = 198725, + [SMALL_STATE(5532)] = 198746, + [SMALL_STATE(5533)] = 198773, + [SMALL_STATE(5534)] = 198800, + [SMALL_STATE(5535)] = 198819, + [SMALL_STATE(5536)] = 198838, + [SMALL_STATE(5537)] = 198855, + [SMALL_STATE(5538)] = 198882, + [SMALL_STATE(5539)] = 198911, + [SMALL_STATE(5540)] = 198928, + [SMALL_STATE(5541)] = 198955, + [SMALL_STATE(5542)] = 198972, + [SMALL_STATE(5543)] = 198991, + [SMALL_STATE(5544)] = 199008, + [SMALL_STATE(5545)] = 199035, + [SMALL_STATE(5546)] = 199058, + [SMALL_STATE(5547)] = 199075, + [SMALL_STATE(5548)] = 199098, + [SMALL_STATE(5549)] = 199117, + [SMALL_STATE(5550)] = 199144, + [SMALL_STATE(5551)] = 199163, + [SMALL_STATE(5552)] = 199180, + [SMALL_STATE(5553)] = 199197, + [SMALL_STATE(5554)] = 199214, + [SMALL_STATE(5555)] = 199241, + [SMALL_STATE(5556)] = 199258, + [SMALL_STATE(5557)] = 199275, + [SMALL_STATE(5558)] = 199302, + [SMALL_STATE(5559)] = 199329, + [SMALL_STATE(5560)] = 199346, + [SMALL_STATE(5561)] = 199373, + [SMALL_STATE(5562)] = 199400, + [SMALL_STATE(5563)] = 199423, + [SMALL_STATE(5564)] = 199444, + [SMALL_STATE(5565)] = 199465, + [SMALL_STATE(5566)] = 199492, + [SMALL_STATE(5567)] = 199519, + [SMALL_STATE(5568)] = 199546, + [SMALL_STATE(5569)] = 199573, + [SMALL_STATE(5570)] = 199592, + [SMALL_STATE(5571)] = 199619, + [SMALL_STATE(5572)] = 199640, + [SMALL_STATE(5573)] = 199661, + [SMALL_STATE(5574)] = 199688, + [SMALL_STATE(5575)] = 199715, + [SMALL_STATE(5576)] = 199742, + [SMALL_STATE(5577)] = 199769, + [SMALL_STATE(5578)] = 199796, + [SMALL_STATE(5579)] = 199823, + [SMALL_STATE(5580)] = 199850, + [SMALL_STATE(5581)] = 199877, + [SMALL_STATE(5582)] = 199904, + [SMALL_STATE(5583)] = 199931, + [SMALL_STATE(5584)] = 199958, + [SMALL_STATE(5585)] = 199985, + [SMALL_STATE(5586)] = 200012, + [SMALL_STATE(5587)] = 200039, + [SMALL_STATE(5588)] = 200066, + [SMALL_STATE(5589)] = 200093, + [SMALL_STATE(5590)] = 200120, + [SMALL_STATE(5591)] = 200147, + [SMALL_STATE(5592)] = 200174, + [SMALL_STATE(5593)] = 200201, + [SMALL_STATE(5594)] = 200228, + [SMALL_STATE(5595)] = 200255, + [SMALL_STATE(5596)] = 200282, + [SMALL_STATE(5597)] = 200309, + [SMALL_STATE(5598)] = 200336, + [SMALL_STATE(5599)] = 200357, + [SMALL_STATE(5600)] = 200376, + [SMALL_STATE(5601)] = 200395, + [SMALL_STATE(5602)] = 200416, + [SMALL_STATE(5603)] = 200445, + [SMALL_STATE(5604)] = 200464, + [SMALL_STATE(5605)] = 200491, + [SMALL_STATE(5606)] = 200518, + [SMALL_STATE(5607)] = 200539, + [SMALL_STATE(5608)] = 200560, + [SMALL_STATE(5609)] = 200579, + [SMALL_STATE(5610)] = 200598, + [SMALL_STATE(5611)] = 200619, + [SMALL_STATE(5612)] = 200644, + [SMALL_STATE(5613)] = 200663, + [SMALL_STATE(5614)] = 200684, + [SMALL_STATE(5615)] = 200705, + [SMALL_STATE(5616)] = 200726, + [SMALL_STATE(5617)] = 200745, + [SMALL_STATE(5618)] = 200766, + [SMALL_STATE(5619)] = 200787, + [SMALL_STATE(5620)] = 200814, + [SMALL_STATE(5621)] = 200833, + [SMALL_STATE(5622)] = 200854, + [SMALL_STATE(5623)] = 200873, + [SMALL_STATE(5624)] = 200898, + [SMALL_STATE(5625)] = 200917, + [SMALL_STATE(5626)] = 200936, + [SMALL_STATE(5627)] = 200955, + [SMALL_STATE(5628)] = 200978, + [SMALL_STATE(5629)] = 200999, + [SMALL_STATE(5630)] = 201018, + [SMALL_STATE(5631)] = 201044, + [SMALL_STATE(5632)] = 201070, + [SMALL_STATE(5633)] = 201092, + [SMALL_STATE(5634)] = 201110, + [SMALL_STATE(5635)] = 201136, + [SMALL_STATE(5636)] = 201156, + [SMALL_STATE(5637)] = 201174, + [SMALL_STATE(5638)] = 201200, + [SMALL_STATE(5639)] = 201226, + [SMALL_STATE(5640)] = 201252, + [SMALL_STATE(5641)] = 201270, + [SMALL_STATE(5642)] = 201288, + [SMALL_STATE(5643)] = 201310, + [SMALL_STATE(5644)] = 201336, + [SMALL_STATE(5645)] = 201362, + [SMALL_STATE(5646)] = 201380, + [SMALL_STATE(5647)] = 201404, + [SMALL_STATE(5648)] = 201422, + [SMALL_STATE(5649)] = 201444, + [SMALL_STATE(5650)] = 201464, + [SMALL_STATE(5651)] = 201484, + [SMALL_STATE(5652)] = 201510, + [SMALL_STATE(5653)] = 201528, + [SMALL_STATE(5654)] = 201546, + [SMALL_STATE(5655)] = 201562, + [SMALL_STATE(5656)] = 201588, + [SMALL_STATE(5657)] = 201606, + [SMALL_STATE(5658)] = 201632, + [SMALL_STATE(5659)] = 201656, + [SMALL_STATE(5660)] = 201682, + [SMALL_STATE(5661)] = 201706, + [SMALL_STATE(5662)] = 201734, + [SMALL_STATE(5663)] = 201760, + [SMALL_STATE(5664)] = 201778, + [SMALL_STATE(5665)] = 201796, + [SMALL_STATE(5666)] = 201814, + [SMALL_STATE(5667)] = 201832, + [SMALL_STATE(5668)] = 201850, + [SMALL_STATE(5669)] = 201874, + [SMALL_STATE(5670)] = 201890, + [SMALL_STATE(5671)] = 201908, + [SMALL_STATE(5672)] = 201934, + [SMALL_STATE(5673)] = 201950, + [SMALL_STATE(5674)] = 201970, + [SMALL_STATE(5675)] = 201990, + [SMALL_STATE(5676)] = 202008, + [SMALL_STATE(5677)] = 202026, + [SMALL_STATE(5678)] = 202044, + [SMALL_STATE(5679)] = 202070, + [SMALL_STATE(5680)] = 202096, + [SMALL_STATE(5681)] = 202122, + [SMALL_STATE(5682)] = 202148, + [SMALL_STATE(5683)] = 202176, + [SMALL_STATE(5684)] = 202202, + [SMALL_STATE(5685)] = 202228, + [SMALL_STATE(5686)] = 202254, + [SMALL_STATE(5687)] = 202272, + [SMALL_STATE(5688)] = 202292, + [SMALL_STATE(5689)] = 202318, + [SMALL_STATE(5690)] = 202338, + [SMALL_STATE(5691)] = 202358, + [SMALL_STATE(5692)] = 202376, + [SMALL_STATE(5693)] = 202402, + [SMALL_STATE(5694)] = 202424, + [SMALL_STATE(5695)] = 202450, + [SMALL_STATE(5696)] = 202476, + [SMALL_STATE(5697)] = 202502, + [SMALL_STATE(5698)] = 202528, + [SMALL_STATE(5699)] = 202554, + [SMALL_STATE(5700)] = 202574, + [SMALL_STATE(5701)] = 202592, + [SMALL_STATE(5702)] = 202618, + [SMALL_STATE(5703)] = 202638, + [SMALL_STATE(5704)] = 202664, + [SMALL_STATE(5705)] = 202680, + [SMALL_STATE(5706)] = 202706, + [SMALL_STATE(5707)] = 202732, + [SMALL_STATE(5708)] = 202758, + [SMALL_STATE(5709)] = 202776, + [SMALL_STATE(5710)] = 202792, + [SMALL_STATE(5711)] = 202810, + [SMALL_STATE(5712)] = 202836, + [SMALL_STATE(5713)] = 202854, + [SMALL_STATE(5714)] = 202880, + [SMALL_STATE(5715)] = 202898, + [SMALL_STATE(5716)] = 202916, + [SMALL_STATE(5717)] = 202936, + [SMALL_STATE(5718)] = 202954, + [SMALL_STATE(5719)] = 202970, + [SMALL_STATE(5720)] = 202986, + [SMALL_STATE(5721)] = 203004, + [SMALL_STATE(5722)] = 203022, + [SMALL_STATE(5723)] = 203048, + [SMALL_STATE(5724)] = 203074, + [SMALL_STATE(5725)] = 203092, + [SMALL_STATE(5726)] = 203118, + [SMALL_STATE(5727)] = 203134, + [SMALL_STATE(5728)] = 203149, + [SMALL_STATE(5729)] = 203174, + [SMALL_STATE(5730)] = 203197, + [SMALL_STATE(5731)] = 203222, + [SMALL_STATE(5732)] = 203247, + [SMALL_STATE(5733)] = 203272, + [SMALL_STATE(5734)] = 203293, + [SMALL_STATE(5735)] = 203318, + [SMALL_STATE(5736)] = 203343, + [SMALL_STATE(5737)] = 203364, + [SMALL_STATE(5738)] = 203383, + [SMALL_STATE(5739)] = 203402, + [SMALL_STATE(5740)] = 203425, + [SMALL_STATE(5741)] = 203450, + [SMALL_STATE(5742)] = 203475, + [SMALL_STATE(5743)] = 203500, + [SMALL_STATE(5744)] = 203521, + [SMALL_STATE(5745)] = 203542, + [SMALL_STATE(5746)] = 203565, + [SMALL_STATE(5747)] = 203588, + [SMALL_STATE(5748)] = 203613, + [SMALL_STATE(5749)] = 203638, + [SMALL_STATE(5750)] = 203663, + [SMALL_STATE(5751)] = 203682, + [SMALL_STATE(5752)] = 203705, + [SMALL_STATE(5753)] = 203724, + [SMALL_STATE(5754)] = 203747, + [SMALL_STATE(5755)] = 203770, + [SMALL_STATE(5756)] = 203787, + [SMALL_STATE(5757)] = 203808, + [SMALL_STATE(5758)] = 203823, + [SMALL_STATE(5759)] = 203848, + [SMALL_STATE(5760)] = 203865, + [SMALL_STATE(5761)] = 203890, + [SMALL_STATE(5762)] = 203915, + [SMALL_STATE(5763)] = 203940, + [SMALL_STATE(5764)] = 203965, + [SMALL_STATE(5765)] = 203986, + [SMALL_STATE(5766)] = 204007, + [SMALL_STATE(5767)] = 204032, + [SMALL_STATE(5768)] = 204053, + [SMALL_STATE(5769)] = 204068, + [SMALL_STATE(5770)] = 204093, + [SMALL_STATE(5771)] = 204118, + [SMALL_STATE(5772)] = 204143, + [SMALL_STATE(5773)] = 204160, + [SMALL_STATE(5774)] = 204183, + [SMALL_STATE(5775)] = 204208, + [SMALL_STATE(5776)] = 204227, + [SMALL_STATE(5777)] = 204252, + [SMALL_STATE(5778)] = 204277, + [SMALL_STATE(5779)] = 204302, + [SMALL_STATE(5780)] = 204327, + [SMALL_STATE(5781)] = 204352, + [SMALL_STATE(5782)] = 204377, + [SMALL_STATE(5783)] = 204400, + [SMALL_STATE(5784)] = 204425, + [SMALL_STATE(5785)] = 204450, + [SMALL_STATE(5786)] = 204467, + [SMALL_STATE(5787)] = 204488, + [SMALL_STATE(5788)] = 204505, + [SMALL_STATE(5789)] = 204530, + [SMALL_STATE(5790)] = 204547, + [SMALL_STATE(5791)] = 204568, + [SMALL_STATE(5792)] = 204593, + [SMALL_STATE(5793)] = 204616, + [SMALL_STATE(5794)] = 204641, + [SMALL_STATE(5795)] = 204666, + [SMALL_STATE(5796)] = 204687, + [SMALL_STATE(5797)] = 204710, + [SMALL_STATE(5798)] = 204735, + [SMALL_STATE(5799)] = 204760, + [SMALL_STATE(5800)] = 204779, + [SMALL_STATE(5801)] = 204796, + [SMALL_STATE(5802)] = 204815, + [SMALL_STATE(5803)] = 204840, + [SMALL_STATE(5804)] = 204859, + [SMALL_STATE(5805)] = 204884, + [SMALL_STATE(5806)] = 204909, + [SMALL_STATE(5807)] = 204934, + [SMALL_STATE(5808)] = 204951, + [SMALL_STATE(5809)] = 204974, + [SMALL_STATE(5810)] = 204989, + [SMALL_STATE(5811)] = 205004, + [SMALL_STATE(5812)] = 205025, + [SMALL_STATE(5813)] = 205050, + [SMALL_STATE(5814)] = 205073, + [SMALL_STATE(5815)] = 205098, + [SMALL_STATE(5816)] = 205123, + [SMALL_STATE(5817)] = 205146, + [SMALL_STATE(5818)] = 205171, + [SMALL_STATE(5819)] = 205188, + [SMALL_STATE(5820)] = 205207, + [SMALL_STATE(5821)] = 205232, + [SMALL_STATE(5822)] = 205257, + [SMALL_STATE(5823)] = 205282, + [SMALL_STATE(5824)] = 205303, + [SMALL_STATE(5825)] = 205320, + [SMALL_STATE(5826)] = 205337, + [SMALL_STATE(5827)] = 205356, + [SMALL_STATE(5828)] = 205379, + [SMALL_STATE(5829)] = 205404, + [SMALL_STATE(5830)] = 205421, + [SMALL_STATE(5831)] = 205446, + [SMALL_STATE(5832)] = 205471, + [SMALL_STATE(5833)] = 205494, + [SMALL_STATE(5834)] = 205519, + [SMALL_STATE(5835)] = 205536, + [SMALL_STATE(5836)] = 205561, + [SMALL_STATE(5837)] = 205586, + [SMALL_STATE(5838)] = 205611, + [SMALL_STATE(5839)] = 205636, + [SMALL_STATE(5840)] = 205653, + [SMALL_STATE(5841)] = 205670, + [SMALL_STATE(5842)] = 205695, + [SMALL_STATE(5843)] = 205718, + [SMALL_STATE(5844)] = 205743, + [SMALL_STATE(5845)] = 205768, + [SMALL_STATE(5846)] = 205793, + [SMALL_STATE(5847)] = 205816, + [SMALL_STATE(5848)] = 205841, + [SMALL_STATE(5849)] = 205866, + [SMALL_STATE(5850)] = 205891, + [SMALL_STATE(5851)] = 205916, + [SMALL_STATE(5852)] = 205941, + [SMALL_STATE(5853)] = 205964, + [SMALL_STATE(5854)] = 205989, + [SMALL_STATE(5855)] = 206014, + [SMALL_STATE(5856)] = 206037, + [SMALL_STATE(5857)] = 206062, + [SMALL_STATE(5858)] = 206087, + [SMALL_STATE(5859)] = 206110, + [SMALL_STATE(5860)] = 206133, + [SMALL_STATE(5861)] = 206158, + [SMALL_STATE(5862)] = 206183, + [SMALL_STATE(5863)] = 206206, + [SMALL_STATE(5864)] = 206223, + [SMALL_STATE(5865)] = 206248, + [SMALL_STATE(5866)] = 206273, + [SMALL_STATE(5867)] = 206290, + [SMALL_STATE(5868)] = 206315, + [SMALL_STATE(5869)] = 206332, + [SMALL_STATE(5870)] = 206357, + [SMALL_STATE(5871)] = 206380, + [SMALL_STATE(5872)] = 206405, + [SMALL_STATE(5873)] = 206430, + [SMALL_STATE(5874)] = 206451, + [SMALL_STATE(5875)] = 206474, + [SMALL_STATE(5876)] = 206499, + [SMALL_STATE(5877)] = 206524, + [SMALL_STATE(5878)] = 206549, + [SMALL_STATE(5879)] = 206574, + [SMALL_STATE(5880)] = 206591, + [SMALL_STATE(5881)] = 206608, + [SMALL_STATE(5882)] = 206631, + [SMALL_STATE(5883)] = 206656, + [SMALL_STATE(5884)] = 206681, + [SMALL_STATE(5885)] = 206704, + [SMALL_STATE(5886)] = 206725, + [SMALL_STATE(5887)] = 206750, + [SMALL_STATE(5888)] = 206775, + [SMALL_STATE(5889)] = 206800, + [SMALL_STATE(5890)] = 206817, + [SMALL_STATE(5891)] = 206834, + [SMALL_STATE(5892)] = 206851, + [SMALL_STATE(5893)] = 206876, + [SMALL_STATE(5894)] = 206899, + [SMALL_STATE(5895)] = 206924, + [SMALL_STATE(5896)] = 206949, + [SMALL_STATE(5897)] = 206972, + [SMALL_STATE(5898)] = 206997, + [SMALL_STATE(5899)] = 207022, + [SMALL_STATE(5900)] = 207047, + [SMALL_STATE(5901)] = 207072, + [SMALL_STATE(5902)] = 207097, + [SMALL_STATE(5903)] = 207122, + [SMALL_STATE(5904)] = 207147, + [SMALL_STATE(5905)] = 207172, + [SMALL_STATE(5906)] = 207197, + [SMALL_STATE(5907)] = 207220, + [SMALL_STATE(5908)] = 207245, + [SMALL_STATE(5909)] = 207270, + [SMALL_STATE(5910)] = 207287, + [SMALL_STATE(5911)] = 207310, + [SMALL_STATE(5912)] = 207327, + [SMALL_STATE(5913)] = 207352, + [SMALL_STATE(5914)] = 207377, + [SMALL_STATE(5915)] = 207394, + [SMALL_STATE(5916)] = 207417, + [SMALL_STATE(5917)] = 207434, + [SMALL_STATE(5918)] = 207457, + [SMALL_STATE(5919)] = 207482, + [SMALL_STATE(5920)] = 207507, + [SMALL_STATE(5921)] = 207530, + [SMALL_STATE(5922)] = 207553, + [SMALL_STATE(5923)] = 207578, + [SMALL_STATE(5924)] = 207603, + [SMALL_STATE(5925)] = 207626, + [SMALL_STATE(5926)] = 207649, + [SMALL_STATE(5927)] = 207672, + [SMALL_STATE(5928)] = 207697, + [SMALL_STATE(5929)] = 207714, + [SMALL_STATE(5930)] = 207731, + [SMALL_STATE(5931)] = 207756, + [SMALL_STATE(5932)] = 207781, + [SMALL_STATE(5933)] = 207798, + [SMALL_STATE(5934)] = 207815, + [SMALL_STATE(5935)] = 207832, + [SMALL_STATE(5936)] = 207857, + [SMALL_STATE(5937)] = 207882, + [SMALL_STATE(5938)] = 207907, + [SMALL_STATE(5939)] = 207924, + [SMALL_STATE(5940)] = 207949, + [SMALL_STATE(5941)] = 207974, + [SMALL_STATE(5942)] = 207991, + [SMALL_STATE(5943)] = 208008, + [SMALL_STATE(5944)] = 208025, + [SMALL_STATE(5945)] = 208050, + [SMALL_STATE(5946)] = 208075, + [SMALL_STATE(5947)] = 208100, + [SMALL_STATE(5948)] = 208125, + [SMALL_STATE(5949)] = 208142, + [SMALL_STATE(5950)] = 208159, + [SMALL_STATE(5951)] = 208176, + [SMALL_STATE(5952)] = 208193, + [SMALL_STATE(5953)] = 208210, + [SMALL_STATE(5954)] = 208231, + [SMALL_STATE(5955)] = 208256, + [SMALL_STATE(5956)] = 208277, + [SMALL_STATE(5957)] = 208294, + [SMALL_STATE(5958)] = 208311, + [SMALL_STATE(5959)] = 208332, + [SMALL_STATE(5960)] = 208349, + [SMALL_STATE(5961)] = 208366, + [SMALL_STATE(5962)] = 208385, + [SMALL_STATE(5963)] = 208404, + [SMALL_STATE(5964)] = 208429, + [SMALL_STATE(5965)] = 208454, + [SMALL_STATE(5966)] = 208479, + [SMALL_STATE(5967)] = 208500, + [SMALL_STATE(5968)] = 208523, + [SMALL_STATE(5969)] = 208540, + [SMALL_STATE(5970)] = 208557, + [SMALL_STATE(5971)] = 208576, + [SMALL_STATE(5972)] = 208595, + [SMALL_STATE(5973)] = 208616, + [SMALL_STATE(5974)] = 208641, + [SMALL_STATE(5975)] = 208662, + [SMALL_STATE(5976)] = 208683, + [SMALL_STATE(5977)] = 208700, + [SMALL_STATE(5978)] = 208721, + [SMALL_STATE(5979)] = 208738, + [SMALL_STATE(5980)] = 208761, + [SMALL_STATE(5981)] = 208782, + [SMALL_STATE(5982)] = 208801, + [SMALL_STATE(5983)] = 208818, + [SMALL_STATE(5984)] = 208835, + [SMALL_STATE(5985)] = 208850, + [SMALL_STATE(5986)] = 208873, + [SMALL_STATE(5987)] = 208898, + [SMALL_STATE(5988)] = 208915, + [SMALL_STATE(5989)] = 208932, + [SMALL_STATE(5990)] = 208957, + [SMALL_STATE(5991)] = 208974, + [SMALL_STATE(5992)] = 208991, + [SMALL_STATE(5993)] = 209016, + [SMALL_STATE(5994)] = 209037, + [SMALL_STATE(5995)] = 209062, + [SMALL_STATE(5996)] = 209087, + [SMALL_STATE(5997)] = 209104, + [SMALL_STATE(5998)] = 209127, + [SMALL_STATE(5999)] = 209144, + [SMALL_STATE(6000)] = 209169, + [SMALL_STATE(6001)] = 209194, + [SMALL_STATE(6002)] = 209211, + [SMALL_STATE(6003)] = 209236, + [SMALL_STATE(6004)] = 209253, + [SMALL_STATE(6005)] = 209270, + [SMALL_STATE(6006)] = 209295, + [SMALL_STATE(6007)] = 209316, + [SMALL_STATE(6008)] = 209337, + [SMALL_STATE(6009)] = 209356, + [SMALL_STATE(6010)] = 209373, + [SMALL_STATE(6011)] = 209394, + [SMALL_STATE(6012)] = 209415, + [SMALL_STATE(6013)] = 209436, + [SMALL_STATE(6014)] = 209453, + [SMALL_STATE(6015)] = 209478, + [SMALL_STATE(6016)] = 209495, + [SMALL_STATE(6017)] = 209514, + [SMALL_STATE(6018)] = 209533, + [SMALL_STATE(6019)] = 209552, + [SMALL_STATE(6020)] = 209577, + [SMALL_STATE(6021)] = 209598, + [SMALL_STATE(6022)] = 209615, + [SMALL_STATE(6023)] = 209632, + [SMALL_STATE(6024)] = 209655, + [SMALL_STATE(6025)] = 209680, + [SMALL_STATE(6026)] = 209705, + [SMALL_STATE(6027)] = 209730, + [SMALL_STATE(6028)] = 209755, + [SMALL_STATE(6029)] = 209780, + [SMALL_STATE(6030)] = 209802, + [SMALL_STATE(6031)] = 209820, + [SMALL_STATE(6032)] = 209842, + [SMALL_STATE(6033)] = 209860, + [SMALL_STATE(6034)] = 209882, + [SMALL_STATE(6035)] = 209904, + [SMALL_STATE(6036)] = 209920, + [SMALL_STATE(6037)] = 209942, + [SMALL_STATE(6038)] = 209956, + [SMALL_STATE(6039)] = 209978, + [SMALL_STATE(6040)] = 210000, + [SMALL_STATE(6041)] = 210022, + [SMALL_STATE(6042)] = 210042, + [SMALL_STATE(6043)] = 210064, + [SMALL_STATE(6044)] = 210084, + [SMALL_STATE(6045)] = 210106, + [SMALL_STATE(6046)] = 210122, + [SMALL_STATE(6047)] = 210142, + [SMALL_STATE(6048)] = 210164, + [SMALL_STATE(6049)] = 210186, + [SMALL_STATE(6050)] = 210206, + [SMALL_STATE(6051)] = 210224, + [SMALL_STATE(6052)] = 210242, + [SMALL_STATE(6053)] = 210264, + [SMALL_STATE(6054)] = 210286, + [SMALL_STATE(6055)] = 210308, + [SMALL_STATE(6056)] = 210328, + [SMALL_STATE(6057)] = 210348, + [SMALL_STATE(6058)] = 210364, + [SMALL_STATE(6059)] = 210378, + [SMALL_STATE(6060)] = 210398, + [SMALL_STATE(6061)] = 210418, + [SMALL_STATE(6062)] = 210440, + [SMALL_STATE(6063)] = 210458, + [SMALL_STATE(6064)] = 210476, + [SMALL_STATE(6065)] = 210498, + [SMALL_STATE(6066)] = 210520, + [SMALL_STATE(6067)] = 210536, + [SMALL_STATE(6068)] = 210558, + [SMALL_STATE(6069)] = 210580, + [SMALL_STATE(6070)] = 210598, + [SMALL_STATE(6071)] = 210620, + [SMALL_STATE(6072)] = 210642, + [SMALL_STATE(6073)] = 210664, + [SMALL_STATE(6074)] = 210682, + [SMALL_STATE(6075)] = 210704, + [SMALL_STATE(6076)] = 210722, + [SMALL_STATE(6077)] = 210740, + [SMALL_STATE(6078)] = 210758, + [SMALL_STATE(6079)] = 210776, + [SMALL_STATE(6080)] = 210796, + [SMALL_STATE(6081)] = 210814, + [SMALL_STATE(6082)] = 210836, + [SMALL_STATE(6083)] = 210856, + [SMALL_STATE(6084)] = 210876, + [SMALL_STATE(6085)] = 210898, + [SMALL_STATE(6086)] = 210918, + [SMALL_STATE(6087)] = 210940, + [SMALL_STATE(6088)] = 210962, + [SMALL_STATE(6089)] = 210984, + [SMALL_STATE(6090)] = 211004, + [SMALL_STATE(6091)] = 211026, + [SMALL_STATE(6092)] = 211044, + [SMALL_STATE(6093)] = 211066, + [SMALL_STATE(6094)] = 211084, + [SMALL_STATE(6095)] = 211102, + [SMALL_STATE(6096)] = 211124, + [SMALL_STATE(6097)] = 211146, + [SMALL_STATE(6098)] = 211164, + [SMALL_STATE(6099)] = 211186, + [SMALL_STATE(6100)] = 211208, + [SMALL_STATE(6101)] = 211224, + [SMALL_STATE(6102)] = 211242, + [SMALL_STATE(6103)] = 211260, + [SMALL_STATE(6104)] = 211280, + [SMALL_STATE(6105)] = 211302, + [SMALL_STATE(6106)] = 211324, + [SMALL_STATE(6107)] = 211346, + [SMALL_STATE(6108)] = 211368, + [SMALL_STATE(6109)] = 211390, + [SMALL_STATE(6110)] = 211408, + [SMALL_STATE(6111)] = 211430, + [SMALL_STATE(6112)] = 211452, + [SMALL_STATE(6113)] = 211474, + [SMALL_STATE(6114)] = 211496, + [SMALL_STATE(6115)] = 211518, + [SMALL_STATE(6116)] = 211540, + [SMALL_STATE(6117)] = 211562, + [SMALL_STATE(6118)] = 211578, + [SMALL_STATE(6119)] = 211600, + [SMALL_STATE(6120)] = 211618, + [SMALL_STATE(6121)] = 211640, + [SMALL_STATE(6122)] = 211662, + [SMALL_STATE(6123)] = 211684, + [SMALL_STATE(6124)] = 211706, + [SMALL_STATE(6125)] = 211720, + [SMALL_STATE(6126)] = 211742, + [SMALL_STATE(6127)] = 211758, + [SMALL_STATE(6128)] = 211776, + [SMALL_STATE(6129)] = 211790, + [SMALL_STATE(6130)] = 211812, + [SMALL_STATE(6131)] = 211826, + [SMALL_STATE(6132)] = 211848, + [SMALL_STATE(6133)] = 211870, + [SMALL_STATE(6134)] = 211890, + [SMALL_STATE(6135)] = 211912, + [SMALL_STATE(6136)] = 211930, + [SMALL_STATE(6137)] = 211946, + [SMALL_STATE(6138)] = 211962, + [SMALL_STATE(6139)] = 211984, + [SMALL_STATE(6140)] = 212006, + [SMALL_STATE(6141)] = 212028, + [SMALL_STATE(6142)] = 212044, + [SMALL_STATE(6143)] = 212066, + [SMALL_STATE(6144)] = 212082, + [SMALL_STATE(6145)] = 212104, + [SMALL_STATE(6146)] = 212126, + [SMALL_STATE(6147)] = 212148, + [SMALL_STATE(6148)] = 212170, + [SMALL_STATE(6149)] = 212192, + [SMALL_STATE(6150)] = 212214, + [SMALL_STATE(6151)] = 212236, + [SMALL_STATE(6152)] = 212258, + [SMALL_STATE(6153)] = 212280, + [SMALL_STATE(6154)] = 212302, + [SMALL_STATE(6155)] = 212324, + [SMALL_STATE(6156)] = 212346, + [SMALL_STATE(6157)] = 212368, + [SMALL_STATE(6158)] = 212388, + [SMALL_STATE(6159)] = 212410, + [SMALL_STATE(6160)] = 212432, + [SMALL_STATE(6161)] = 212454, + [SMALL_STATE(6162)] = 212474, + [SMALL_STATE(6163)] = 212490, + [SMALL_STATE(6164)] = 212508, + [SMALL_STATE(6165)] = 212530, + [SMALL_STATE(6166)] = 212552, + [SMALL_STATE(6167)] = 212574, + [SMALL_STATE(6168)] = 212596, + [SMALL_STATE(6169)] = 212618, + [SMALL_STATE(6170)] = 212640, + [SMALL_STATE(6171)] = 212656, + [SMALL_STATE(6172)] = 212678, + [SMALL_STATE(6173)] = 212700, + [SMALL_STATE(6174)] = 212722, + [SMALL_STATE(6175)] = 212744, + [SMALL_STATE(6176)] = 212766, + [SMALL_STATE(6177)] = 212786, + [SMALL_STATE(6178)] = 212808, + [SMALL_STATE(6179)] = 212830, + [SMALL_STATE(6180)] = 212852, + [SMALL_STATE(6181)] = 212874, + [SMALL_STATE(6182)] = 212896, + [SMALL_STATE(6183)] = 212912, + [SMALL_STATE(6184)] = 212934, + [SMALL_STATE(6185)] = 212956, + [SMALL_STATE(6186)] = 212978, + [SMALL_STATE(6187)] = 213000, + [SMALL_STATE(6188)] = 213018, + [SMALL_STATE(6189)] = 213036, + [SMALL_STATE(6190)] = 213058, + [SMALL_STATE(6191)] = 213080, + [SMALL_STATE(6192)] = 213102, + [SMALL_STATE(6193)] = 213124, + [SMALL_STATE(6194)] = 213146, + [SMALL_STATE(6195)] = 213168, + [SMALL_STATE(6196)] = 213190, + [SMALL_STATE(6197)] = 213212, + [SMALL_STATE(6198)] = 213234, + [SMALL_STATE(6199)] = 213256, + [SMALL_STATE(6200)] = 213278, + [SMALL_STATE(6201)] = 213300, + [SMALL_STATE(6202)] = 213322, + [SMALL_STATE(6203)] = 213342, + [SMALL_STATE(6204)] = 213364, + [SMALL_STATE(6205)] = 213386, + [SMALL_STATE(6206)] = 213408, + [SMALL_STATE(6207)] = 213430, + [SMALL_STATE(6208)] = 213444, + [SMALL_STATE(6209)] = 213466, + [SMALL_STATE(6210)] = 213488, + [SMALL_STATE(6211)] = 213510, + [SMALL_STATE(6212)] = 213532, + [SMALL_STATE(6213)] = 213554, + [SMALL_STATE(6214)] = 213576, + [SMALL_STATE(6215)] = 213598, + [SMALL_STATE(6216)] = 213614, + [SMALL_STATE(6217)] = 213636, + [SMALL_STATE(6218)] = 213652, + [SMALL_STATE(6219)] = 213674, + [SMALL_STATE(6220)] = 213696, + [SMALL_STATE(6221)] = 213714, + [SMALL_STATE(6222)] = 213732, + [SMALL_STATE(6223)] = 213754, + [SMALL_STATE(6224)] = 213772, + [SMALL_STATE(6225)] = 213790, + [SMALL_STATE(6226)] = 213812, + [SMALL_STATE(6227)] = 213832, + [SMALL_STATE(6228)] = 213850, + [SMALL_STATE(6229)] = 213868, + [SMALL_STATE(6230)] = 213884, + [SMALL_STATE(6231)] = 213904, + [SMALL_STATE(6232)] = 213920, + [SMALL_STATE(6233)] = 213942, + [SMALL_STATE(6234)] = 213964, + [SMALL_STATE(6235)] = 213982, + [SMALL_STATE(6236)] = 214004, + [SMALL_STATE(6237)] = 214022, + [SMALL_STATE(6238)] = 214044, + [SMALL_STATE(6239)] = 214066, + [SMALL_STATE(6240)] = 214082, + [SMALL_STATE(6241)] = 214104, + [SMALL_STATE(6242)] = 214126, + [SMALL_STATE(6243)] = 214140, + [SMALL_STATE(6244)] = 214162, + [SMALL_STATE(6245)] = 214175, + [SMALL_STATE(6246)] = 214192, + [SMALL_STATE(6247)] = 214211, + [SMALL_STATE(6248)] = 214228, + [SMALL_STATE(6249)] = 214241, + [SMALL_STATE(6250)] = 214256, + [SMALL_STATE(6251)] = 214269, + [SMALL_STATE(6252)] = 214282, + [SMALL_STATE(6253)] = 214295, + [SMALL_STATE(6254)] = 214308, + [SMALL_STATE(6255)] = 214321, + [SMALL_STATE(6256)] = 214340, + [SMALL_STATE(6257)] = 214353, + [SMALL_STATE(6258)] = 214366, + [SMALL_STATE(6259)] = 214383, + [SMALL_STATE(6260)] = 214402, + [SMALL_STATE(6261)] = 214415, + [SMALL_STATE(6262)] = 214434, + [SMALL_STATE(6263)] = 214453, + [SMALL_STATE(6264)] = 214466, + [SMALL_STATE(6265)] = 214479, + [SMALL_STATE(6266)] = 214498, + [SMALL_STATE(6267)] = 214517, + [SMALL_STATE(6268)] = 214536, + [SMALL_STATE(6269)] = 214555, + [SMALL_STATE(6270)] = 214568, + [SMALL_STATE(6271)] = 214585, + [SMALL_STATE(6272)] = 214604, + [SMALL_STATE(6273)] = 214621, + [SMALL_STATE(6274)] = 214638, + [SMALL_STATE(6275)] = 214657, + [SMALL_STATE(6276)] = 214674, + [SMALL_STATE(6277)] = 214687, + [SMALL_STATE(6278)] = 214700, + [SMALL_STATE(6279)] = 214715, + [SMALL_STATE(6280)] = 214728, + [SMALL_STATE(6281)] = 214741, + [SMALL_STATE(6282)] = 214754, + [SMALL_STATE(6283)] = 214767, + [SMALL_STATE(6284)] = 214780, + [SMALL_STATE(6285)] = 214797, + [SMALL_STATE(6286)] = 214810, + [SMALL_STATE(6287)] = 214829, + [SMALL_STATE(6288)] = 214842, + [SMALL_STATE(6289)] = 214855, + [SMALL_STATE(6290)] = 214872, + [SMALL_STATE(6291)] = 214885, + [SMALL_STATE(6292)] = 214898, + [SMALL_STATE(6293)] = 214911, + [SMALL_STATE(6294)] = 214928, + [SMALL_STATE(6295)] = 214941, + [SMALL_STATE(6296)] = 214958, + [SMALL_STATE(6297)] = 214973, + [SMALL_STATE(6298)] = 214992, + [SMALL_STATE(6299)] = 215011, + [SMALL_STATE(6300)] = 215024, + [SMALL_STATE(6301)] = 215037, + [SMALL_STATE(6302)] = 215052, + [SMALL_STATE(6303)] = 215067, + [SMALL_STATE(6304)] = 215084, + [SMALL_STATE(6305)] = 215103, + [SMALL_STATE(6306)] = 215118, + [SMALL_STATE(6307)] = 215131, + [SMALL_STATE(6308)] = 215146, + [SMALL_STATE(6309)] = 215161, + [SMALL_STATE(6310)] = 215178, + [SMALL_STATE(6311)] = 215195, + [SMALL_STATE(6312)] = 215210, + [SMALL_STATE(6313)] = 215229, + [SMALL_STATE(6314)] = 215244, + [SMALL_STATE(6315)] = 215263, + [SMALL_STATE(6316)] = 215282, + [SMALL_STATE(6317)] = 215297, + [SMALL_STATE(6318)] = 215314, + [SMALL_STATE(6319)] = 215331, + [SMALL_STATE(6320)] = 215346, + [SMALL_STATE(6321)] = 215361, + [SMALL_STATE(6322)] = 215380, + [SMALL_STATE(6323)] = 215399, + [SMALL_STATE(6324)] = 215418, + [SMALL_STATE(6325)] = 215431, + [SMALL_STATE(6326)] = 215448, + [SMALL_STATE(6327)] = 215461, + [SMALL_STATE(6328)] = 215474, + [SMALL_STATE(6329)] = 215487, + [SMALL_STATE(6330)] = 215500, + [SMALL_STATE(6331)] = 215513, + [SMALL_STATE(6332)] = 215532, + [SMALL_STATE(6333)] = 215551, + [SMALL_STATE(6334)] = 215564, + [SMALL_STATE(6335)] = 215577, + [SMALL_STATE(6336)] = 215590, + [SMALL_STATE(6337)] = 215605, + [SMALL_STATE(6338)] = 215618, + [SMALL_STATE(6339)] = 215631, + [SMALL_STATE(6340)] = 215644, + [SMALL_STATE(6341)] = 215657, + [SMALL_STATE(6342)] = 215676, + [SMALL_STATE(6343)] = 215695, + [SMALL_STATE(6344)] = 215714, + [SMALL_STATE(6345)] = 215733, + [SMALL_STATE(6346)] = 215746, + [SMALL_STATE(6347)] = 215761, + [SMALL_STATE(6348)] = 215780, + [SMALL_STATE(6349)] = 215799, + [SMALL_STATE(6350)] = 215812, + [SMALL_STATE(6351)] = 215827, + [SMALL_STATE(6352)] = 215840, + [SMALL_STATE(6353)] = 215853, + [SMALL_STATE(6354)] = 215868, + [SMALL_STATE(6355)] = 215883, + [SMALL_STATE(6356)] = 215898, + [SMALL_STATE(6357)] = 215913, + [SMALL_STATE(6358)] = 215930, + [SMALL_STATE(6359)] = 215945, + [SMALL_STATE(6360)] = 215964, + [SMALL_STATE(6361)] = 215977, + [SMALL_STATE(6362)] = 215990, + [SMALL_STATE(6363)] = 216003, + [SMALL_STATE(6364)] = 216016, + [SMALL_STATE(6365)] = 216033, + [SMALL_STATE(6366)] = 216046, + [SMALL_STATE(6367)] = 216059, + [SMALL_STATE(6368)] = 216072, + [SMALL_STATE(6369)] = 216085, + [SMALL_STATE(6370)] = 216098, + [SMALL_STATE(6371)] = 216111, + [SMALL_STATE(6372)] = 216124, + [SMALL_STATE(6373)] = 216141, + [SMALL_STATE(6374)] = 216154, + [SMALL_STATE(6375)] = 216167, + [SMALL_STATE(6376)] = 216180, + [SMALL_STATE(6377)] = 216197, + [SMALL_STATE(6378)] = 216216, + [SMALL_STATE(6379)] = 216235, + [SMALL_STATE(6380)] = 216254, + [SMALL_STATE(6381)] = 216273, + [SMALL_STATE(6382)] = 216292, + [SMALL_STATE(6383)] = 216311, + [SMALL_STATE(6384)] = 216330, + [SMALL_STATE(6385)] = 216349, + [SMALL_STATE(6386)] = 216368, + [SMALL_STATE(6387)] = 216387, + [SMALL_STATE(6388)] = 216400, + [SMALL_STATE(6389)] = 216413, + [SMALL_STATE(6390)] = 216426, + [SMALL_STATE(6391)] = 216439, + [SMALL_STATE(6392)] = 216452, + [SMALL_STATE(6393)] = 216465, + [SMALL_STATE(6394)] = 216478, + [SMALL_STATE(6395)] = 216497, + [SMALL_STATE(6396)] = 216516, + [SMALL_STATE(6397)] = 216531, + [SMALL_STATE(6398)] = 216544, + [SMALL_STATE(6399)] = 216557, + [SMALL_STATE(6400)] = 216570, + [SMALL_STATE(6401)] = 216583, + [SMALL_STATE(6402)] = 216596, + [SMALL_STATE(6403)] = 216613, + [SMALL_STATE(6404)] = 216626, + [SMALL_STATE(6405)] = 216639, + [SMALL_STATE(6406)] = 216652, + [SMALL_STATE(6407)] = 216669, + [SMALL_STATE(6408)] = 216688, + [SMALL_STATE(6409)] = 216703, + [SMALL_STATE(6410)] = 216722, + [SMALL_STATE(6411)] = 216741, + [SMALL_STATE(6412)] = 216760, + [SMALL_STATE(6413)] = 216779, + [SMALL_STATE(6414)] = 216798, + [SMALL_STATE(6415)] = 216817, + [SMALL_STATE(6416)] = 216836, + [SMALL_STATE(6417)] = 216855, + [SMALL_STATE(6418)] = 216874, + [SMALL_STATE(6419)] = 216893, + [SMALL_STATE(6420)] = 216906, + [SMALL_STATE(6421)] = 216923, + [SMALL_STATE(6422)] = 216940, + [SMALL_STATE(6423)] = 216957, + [SMALL_STATE(6424)] = 216970, + [SMALL_STATE(6425)] = 216983, + [SMALL_STATE(6426)] = 217002, + [SMALL_STATE(6427)] = 217017, + [SMALL_STATE(6428)] = 217036, + [SMALL_STATE(6429)] = 217055, + [SMALL_STATE(6430)] = 217074, + [SMALL_STATE(6431)] = 217093, + [SMALL_STATE(6432)] = 217112, + [SMALL_STATE(6433)] = 217131, + [SMALL_STATE(6434)] = 217150, + [SMALL_STATE(6435)] = 217169, + [SMALL_STATE(6436)] = 217182, + [SMALL_STATE(6437)] = 217197, + [SMALL_STATE(6438)] = 217210, + [SMALL_STATE(6439)] = 217229, + [SMALL_STATE(6440)] = 217246, + [SMALL_STATE(6441)] = 217259, + [SMALL_STATE(6442)] = 217276, + [SMALL_STATE(6443)] = 217289, + [SMALL_STATE(6444)] = 217302, + [SMALL_STATE(6445)] = 217315, + [SMALL_STATE(6446)] = 217334, + [SMALL_STATE(6447)] = 217353, + [SMALL_STATE(6448)] = 217372, + [SMALL_STATE(6449)] = 217391, + [SMALL_STATE(6450)] = 217410, + [SMALL_STATE(6451)] = 217429, + [SMALL_STATE(6452)] = 217448, + [SMALL_STATE(6453)] = 217467, + [SMALL_STATE(6454)] = 217480, + [SMALL_STATE(6455)] = 217493, + [SMALL_STATE(6456)] = 217506, + [SMALL_STATE(6457)] = 217523, + [SMALL_STATE(6458)] = 217536, + [SMALL_STATE(6459)] = 217549, + [SMALL_STATE(6460)] = 217562, + [SMALL_STATE(6461)] = 217575, + [SMALL_STATE(6462)] = 217592, + [SMALL_STATE(6463)] = 217605, + [SMALL_STATE(6464)] = 217618, + [SMALL_STATE(6465)] = 217631, + [SMALL_STATE(6466)] = 217644, + [SMALL_STATE(6467)] = 217663, + [SMALL_STATE(6468)] = 217682, + [SMALL_STATE(6469)] = 217701, + [SMALL_STATE(6470)] = 217720, + [SMALL_STATE(6471)] = 217739, + [SMALL_STATE(6472)] = 217758, + [SMALL_STATE(6473)] = 217777, + [SMALL_STATE(6474)] = 217796, + [SMALL_STATE(6475)] = 217815, + [SMALL_STATE(6476)] = 217834, + [SMALL_STATE(6477)] = 217847, + [SMALL_STATE(6478)] = 217860, + [SMALL_STATE(6479)] = 217877, + [SMALL_STATE(6480)] = 217890, + [SMALL_STATE(6481)] = 217907, + [SMALL_STATE(6482)] = 217926, + [SMALL_STATE(6483)] = 217945, + [SMALL_STATE(6484)] = 217964, + [SMALL_STATE(6485)] = 217983, + [SMALL_STATE(6486)] = 218002, + [SMALL_STATE(6487)] = 218021, + [SMALL_STATE(6488)] = 218040, + [SMALL_STATE(6489)] = 218059, + [SMALL_STATE(6490)] = 218078, + [SMALL_STATE(6491)] = 218097, + [SMALL_STATE(6492)] = 218110, + [SMALL_STATE(6493)] = 218127, + [SMALL_STATE(6494)] = 218144, + [SMALL_STATE(6495)] = 218157, + [SMALL_STATE(6496)] = 218172, + [SMALL_STATE(6497)] = 218191, + [SMALL_STATE(6498)] = 218210, + [SMALL_STATE(6499)] = 218229, + [SMALL_STATE(6500)] = 218248, + [SMALL_STATE(6501)] = 218267, + [SMALL_STATE(6502)] = 218286, + [SMALL_STATE(6503)] = 218305, + [SMALL_STATE(6504)] = 218324, + [SMALL_STATE(6505)] = 218343, + [SMALL_STATE(6506)] = 218362, + [SMALL_STATE(6507)] = 218375, + [SMALL_STATE(6508)] = 218388, + [SMALL_STATE(6509)] = 218405, + [SMALL_STATE(6510)] = 218422, + [SMALL_STATE(6511)] = 218435, + [SMALL_STATE(6512)] = 218448, + [SMALL_STATE(6513)] = 218461, + [SMALL_STATE(6514)] = 218480, + [SMALL_STATE(6515)] = 218499, + [SMALL_STATE(6516)] = 218518, + [SMALL_STATE(6517)] = 218537, + [SMALL_STATE(6518)] = 218556, + [SMALL_STATE(6519)] = 218575, + [SMALL_STATE(6520)] = 218594, + [SMALL_STATE(6521)] = 218613, + [SMALL_STATE(6522)] = 218632, + [SMALL_STATE(6523)] = 218645, + [SMALL_STATE(6524)] = 218658, + [SMALL_STATE(6525)] = 218671, + [SMALL_STATE(6526)] = 218684, + [SMALL_STATE(6527)] = 218697, + [SMALL_STATE(6528)] = 218714, + [SMALL_STATE(6529)] = 218731, + [SMALL_STATE(6530)] = 218750, + [SMALL_STATE(6531)] = 218769, + [SMALL_STATE(6532)] = 218788, + [SMALL_STATE(6533)] = 218807, + [SMALL_STATE(6534)] = 218826, + [SMALL_STATE(6535)] = 218845, + [SMALL_STATE(6536)] = 218864, + [SMALL_STATE(6537)] = 218883, + [SMALL_STATE(6538)] = 218896, + [SMALL_STATE(6539)] = 218909, + [SMALL_STATE(6540)] = 218926, + [SMALL_STATE(6541)] = 218943, + [SMALL_STATE(6542)] = 218960, + [SMALL_STATE(6543)] = 218975, + [SMALL_STATE(6544)] = 218988, + [SMALL_STATE(6545)] = 219001, + [SMALL_STATE(6546)] = 219020, + [SMALL_STATE(6547)] = 219033, + [SMALL_STATE(6548)] = 219052, + [SMALL_STATE(6549)] = 219071, + [SMALL_STATE(6550)] = 219090, + [SMALL_STATE(6551)] = 219109, + [SMALL_STATE(6552)] = 219128, + [SMALL_STATE(6553)] = 219147, + [SMALL_STATE(6554)] = 219166, + [SMALL_STATE(6555)] = 219185, + [SMALL_STATE(6556)] = 219198, + [SMALL_STATE(6557)] = 219211, + [SMALL_STATE(6558)] = 219224, + [SMALL_STATE(6559)] = 219237, + [SMALL_STATE(6560)] = 219254, + [SMALL_STATE(6561)] = 219271, + [SMALL_STATE(6562)] = 219284, + [SMALL_STATE(6563)] = 219303, + [SMALL_STATE(6564)] = 219316, + [SMALL_STATE(6565)] = 219329, + [SMALL_STATE(6566)] = 219348, + [SMALL_STATE(6567)] = 219367, + [SMALL_STATE(6568)] = 219386, + [SMALL_STATE(6569)] = 219405, + [SMALL_STATE(6570)] = 219424, + [SMALL_STATE(6571)] = 219443, + [SMALL_STATE(6572)] = 219462, + [SMALL_STATE(6573)] = 219475, + [SMALL_STATE(6574)] = 219488, + [SMALL_STATE(6575)] = 219501, + [SMALL_STATE(6576)] = 219514, + [SMALL_STATE(6577)] = 219531, + [SMALL_STATE(6578)] = 219548, + [SMALL_STATE(6579)] = 219567, + [SMALL_STATE(6580)] = 219586, + [SMALL_STATE(6581)] = 219605, + [SMALL_STATE(6582)] = 219624, + [SMALL_STATE(6583)] = 219643, + [SMALL_STATE(6584)] = 219662, + [SMALL_STATE(6585)] = 219681, + [SMALL_STATE(6586)] = 219700, + [SMALL_STATE(6587)] = 219719, + [SMALL_STATE(6588)] = 219738, + [SMALL_STATE(6589)] = 219751, + [SMALL_STATE(6590)] = 219764, + [SMALL_STATE(6591)] = 219777, + [SMALL_STATE(6592)] = 219792, + [SMALL_STATE(6593)] = 219809, + [SMALL_STATE(6594)] = 219826, + [SMALL_STATE(6595)] = 219845, + [SMALL_STATE(6596)] = 219858, + [SMALL_STATE(6597)] = 219877, + [SMALL_STATE(6598)] = 219896, + [SMALL_STATE(6599)] = 219915, + [SMALL_STATE(6600)] = 219934, + [SMALL_STATE(6601)] = 219953, + [SMALL_STATE(6602)] = 219972, + [SMALL_STATE(6603)] = 219991, + [SMALL_STATE(6604)] = 220010, + [SMALL_STATE(6605)] = 220023, + [SMALL_STATE(6606)] = 220036, + [SMALL_STATE(6607)] = 220053, + [SMALL_STATE(6608)] = 220066, + [SMALL_STATE(6609)] = 220083, + [SMALL_STATE(6610)] = 220096, + [SMALL_STATE(6611)] = 220115, + [SMALL_STATE(6612)] = 220134, + [SMALL_STATE(6613)] = 220153, + [SMALL_STATE(6614)] = 220172, + [SMALL_STATE(6615)] = 220191, + [SMALL_STATE(6616)] = 220210, + [SMALL_STATE(6617)] = 220229, + [SMALL_STATE(6618)] = 220248, + [SMALL_STATE(6619)] = 220267, + [SMALL_STATE(6620)] = 220280, + [SMALL_STATE(6621)] = 220297, + [SMALL_STATE(6622)] = 220314, + [SMALL_STATE(6623)] = 220333, + [SMALL_STATE(6624)] = 220352, + [SMALL_STATE(6625)] = 220371, + [SMALL_STATE(6626)] = 220390, + [SMALL_STATE(6627)] = 220409, + [SMALL_STATE(6628)] = 220428, + [SMALL_STATE(6629)] = 220447, + [SMALL_STATE(6630)] = 220466, + [SMALL_STATE(6631)] = 220479, + [SMALL_STATE(6632)] = 220496, + [SMALL_STATE(6633)] = 220513, + [SMALL_STATE(6634)] = 220532, + [SMALL_STATE(6635)] = 220551, + [SMALL_STATE(6636)] = 220570, + [SMALL_STATE(6637)] = 220589, + [SMALL_STATE(6638)] = 220608, + [SMALL_STATE(6639)] = 220627, + [SMALL_STATE(6640)] = 220646, + [SMALL_STATE(6641)] = 220665, + [SMALL_STATE(6642)] = 220678, + [SMALL_STATE(6643)] = 220695, + [SMALL_STATE(6644)] = 220708, + [SMALL_STATE(6645)] = 220725, + [SMALL_STATE(6646)] = 220738, + [SMALL_STATE(6647)] = 220755, + [SMALL_STATE(6648)] = 220768, + [SMALL_STATE(6649)] = 220785, + [SMALL_STATE(6650)] = 220798, + [SMALL_STATE(6651)] = 220815, + [SMALL_STATE(6652)] = 220832, + [SMALL_STATE(6653)] = 220845, + [SMALL_STATE(6654)] = 220862, + [SMALL_STATE(6655)] = 220879, + [SMALL_STATE(6656)] = 220894, + [SMALL_STATE(6657)] = 220907, + [SMALL_STATE(6658)] = 220924, + [SMALL_STATE(6659)] = 220941, + [SMALL_STATE(6660)] = 220954, + [SMALL_STATE(6661)] = 220971, + [SMALL_STATE(6662)] = 220988, + [SMALL_STATE(6663)] = 221001, + [SMALL_STATE(6664)] = 221018, + [SMALL_STATE(6665)] = 221035, + [SMALL_STATE(6666)] = 221048, + [SMALL_STATE(6667)] = 221065, + [SMALL_STATE(6668)] = 221082, + [SMALL_STATE(6669)] = 221095, + [SMALL_STATE(6670)] = 221112, + [SMALL_STATE(6671)] = 221129, + [SMALL_STATE(6672)] = 221142, + [SMALL_STATE(6673)] = 221159, + [SMALL_STATE(6674)] = 221176, + [SMALL_STATE(6675)] = 221189, + [SMALL_STATE(6676)] = 221206, + [SMALL_STATE(6677)] = 221223, + [SMALL_STATE(6678)] = 221236, + [SMALL_STATE(6679)] = 221253, + [SMALL_STATE(6680)] = 221270, + [SMALL_STATE(6681)] = 221283, + [SMALL_STATE(6682)] = 221300, + [SMALL_STATE(6683)] = 221317, + [SMALL_STATE(6684)] = 221330, + [SMALL_STATE(6685)] = 221347, + [SMALL_STATE(6686)] = 221364, + [SMALL_STATE(6687)] = 221377, + [SMALL_STATE(6688)] = 221394, + [SMALL_STATE(6689)] = 221411, + [SMALL_STATE(6690)] = 221424, + [SMALL_STATE(6691)] = 221441, + [SMALL_STATE(6692)] = 221458, + [SMALL_STATE(6693)] = 221477, + [SMALL_STATE(6694)] = 221490, + [SMALL_STATE(6695)] = 221507, + [SMALL_STATE(6696)] = 221524, + [SMALL_STATE(6697)] = 221537, + [SMALL_STATE(6698)] = 221550, + [SMALL_STATE(6699)] = 221567, + [SMALL_STATE(6700)] = 221584, + [SMALL_STATE(6701)] = 221597, + [SMALL_STATE(6702)] = 221614, + [SMALL_STATE(6703)] = 221631, + [SMALL_STATE(6704)] = 221644, + [SMALL_STATE(6705)] = 221661, + [SMALL_STATE(6706)] = 221678, + [SMALL_STATE(6707)] = 221691, + [SMALL_STATE(6708)] = 221708, + [SMALL_STATE(6709)] = 221725, + [SMALL_STATE(6710)] = 221738, + [SMALL_STATE(6711)] = 221751, + [SMALL_STATE(6712)] = 221768, + [SMALL_STATE(6713)] = 221785, + [SMALL_STATE(6714)] = 221798, + [SMALL_STATE(6715)] = 221815, + [SMALL_STATE(6716)] = 221832, + [SMALL_STATE(6717)] = 221845, + [SMALL_STATE(6718)] = 221862, + [SMALL_STATE(6719)] = 221879, + [SMALL_STATE(6720)] = 221892, + [SMALL_STATE(6721)] = 221909, + [SMALL_STATE(6722)] = 221926, + [SMALL_STATE(6723)] = 221939, + [SMALL_STATE(6724)] = 221956, + [SMALL_STATE(6725)] = 221973, + [SMALL_STATE(6726)] = 221986, + [SMALL_STATE(6727)] = 222003, + [SMALL_STATE(6728)] = 222020, + [SMALL_STATE(6729)] = 222033, + [SMALL_STATE(6730)] = 222050, + [SMALL_STATE(6731)] = 222067, + [SMALL_STATE(6732)] = 222084, + [SMALL_STATE(6733)] = 222101, + [SMALL_STATE(6734)] = 222118, + [SMALL_STATE(6735)] = 222135, + [SMALL_STATE(6736)] = 222152, + [SMALL_STATE(6737)] = 222169, + [SMALL_STATE(6738)] = 222182, + [SMALL_STATE(6739)] = 222195, + [SMALL_STATE(6740)] = 222208, + [SMALL_STATE(6741)] = 222223, + [SMALL_STATE(6742)] = 222238, + [SMALL_STATE(6743)] = 222251, + [SMALL_STATE(6744)] = 222264, + [SMALL_STATE(6745)] = 222277, + [SMALL_STATE(6746)] = 222296, + [SMALL_STATE(6747)] = 222313, + [SMALL_STATE(6748)] = 222326, + [SMALL_STATE(6749)] = 222339, + [SMALL_STATE(6750)] = 222352, + [SMALL_STATE(6751)] = 222365, + [SMALL_STATE(6752)] = 222378, + [SMALL_STATE(6753)] = 222391, + [SMALL_STATE(6754)] = 222404, + [SMALL_STATE(6755)] = 222417, + [SMALL_STATE(6756)] = 222430, + [SMALL_STATE(6757)] = 222443, + [SMALL_STATE(6758)] = 222456, + [SMALL_STATE(6759)] = 222475, + [SMALL_STATE(6760)] = 222494, + [SMALL_STATE(6761)] = 222509, + [SMALL_STATE(6762)] = 222528, + [SMALL_STATE(6763)] = 222541, + [SMALL_STATE(6764)] = 222560, + [SMALL_STATE(6765)] = 222579, + [SMALL_STATE(6766)] = 222598, + [SMALL_STATE(6767)] = 222617, + [SMALL_STATE(6768)] = 222636, + [SMALL_STATE(6769)] = 222655, + [SMALL_STATE(6770)] = 222672, + [SMALL_STATE(6771)] = 222685, + [SMALL_STATE(6772)] = 222702, + [SMALL_STATE(6773)] = 222721, + [SMALL_STATE(6774)] = 222734, + [SMALL_STATE(6775)] = 222753, + [SMALL_STATE(6776)] = 222770, + [SMALL_STATE(6777)] = 222783, + [SMALL_STATE(6778)] = 222802, + [SMALL_STATE(6779)] = 222817, + [SMALL_STATE(6780)] = 222836, + [SMALL_STATE(6781)] = 222853, + [SMALL_STATE(6782)] = 222870, + [SMALL_STATE(6783)] = 222889, + [SMALL_STATE(6784)] = 222904, + [SMALL_STATE(6785)] = 222921, + [SMALL_STATE(6786)] = 222938, + [SMALL_STATE(6787)] = 222957, + [SMALL_STATE(6788)] = 222976, + [SMALL_STATE(6789)] = 222995, + [SMALL_STATE(6790)] = 223014, + [SMALL_STATE(6791)] = 223033, + [SMALL_STATE(6792)] = 223052, + [SMALL_STATE(6793)] = 223071, + [SMALL_STATE(6794)] = 223090, + [SMALL_STATE(6795)] = 223109, + [SMALL_STATE(6796)] = 223128, + [SMALL_STATE(6797)] = 223147, + [SMALL_STATE(6798)] = 223166, + [SMALL_STATE(6799)] = 223185, + [SMALL_STATE(6800)] = 223204, + [SMALL_STATE(6801)] = 223223, + [SMALL_STATE(6802)] = 223242, + [SMALL_STATE(6803)] = 223261, + [SMALL_STATE(6804)] = 223280, + [SMALL_STATE(6805)] = 223295, + [SMALL_STATE(6806)] = 223314, + [SMALL_STATE(6807)] = 223333, + [SMALL_STATE(6808)] = 223352, + [SMALL_STATE(6809)] = 223371, + [SMALL_STATE(6810)] = 223390, + [SMALL_STATE(6811)] = 223409, + [SMALL_STATE(6812)] = 223426, + [SMALL_STATE(6813)] = 223443, + [SMALL_STATE(6814)] = 223460, + [SMALL_STATE(6815)] = 223475, + [SMALL_STATE(6816)] = 223488, + [SMALL_STATE(6817)] = 223507, + [SMALL_STATE(6818)] = 223526, + [SMALL_STATE(6819)] = 223542, + [SMALL_STATE(6820)] = 223554, + [SMALL_STATE(6821)] = 223570, + [SMALL_STATE(6822)] = 223586, + [SMALL_STATE(6823)] = 223602, + [SMALL_STATE(6824)] = 223618, + [SMALL_STATE(6825)] = 223634, + [SMALL_STATE(6826)] = 223650, + [SMALL_STATE(6827)] = 223666, + [SMALL_STATE(6828)] = 223680, + [SMALL_STATE(6829)] = 223696, + [SMALL_STATE(6830)] = 223710, + [SMALL_STATE(6831)] = 223722, + [SMALL_STATE(6832)] = 223738, + [SMALL_STATE(6833)] = 223752, + [SMALL_STATE(6834)] = 223766, + [SMALL_STATE(6835)] = 223778, + [SMALL_STATE(6836)] = 223794, + [SMALL_STATE(6837)] = 223806, + [SMALL_STATE(6838)] = 223818, + [SMALL_STATE(6839)] = 223834, + [SMALL_STATE(6840)] = 223848, + [SMALL_STATE(6841)] = 223862, + [SMALL_STATE(6842)] = 223876, + [SMALL_STATE(6843)] = 223888, + [SMALL_STATE(6844)] = 223904, + [SMALL_STATE(6845)] = 223920, + [SMALL_STATE(6846)] = 223936, + [SMALL_STATE(6847)] = 223952, + [SMALL_STATE(6848)] = 223968, + [SMALL_STATE(6849)] = 223984, + [SMALL_STATE(6850)] = 224000, + [SMALL_STATE(6851)] = 224012, + [SMALL_STATE(6852)] = 224028, + [SMALL_STATE(6853)] = 224044, + [SMALL_STATE(6854)] = 224060, + [SMALL_STATE(6855)] = 224076, + [SMALL_STATE(6856)] = 224092, + [SMALL_STATE(6857)] = 224104, + [SMALL_STATE(6858)] = 224116, + [SMALL_STATE(6859)] = 224132, + [SMALL_STATE(6860)] = 224148, + [SMALL_STATE(6861)] = 224160, + [SMALL_STATE(6862)] = 224174, + [SMALL_STATE(6863)] = 224190, + [SMALL_STATE(6864)] = 224202, + [SMALL_STATE(6865)] = 224218, + [SMALL_STATE(6866)] = 224230, + [SMALL_STATE(6867)] = 224242, + [SMALL_STATE(6868)] = 224254, + [SMALL_STATE(6869)] = 224266, + [SMALL_STATE(6870)] = 224282, + [SMALL_STATE(6871)] = 224298, + [SMALL_STATE(6872)] = 224314, + [SMALL_STATE(6873)] = 224330, + [SMALL_STATE(6874)] = 224346, + [SMALL_STATE(6875)] = 224362, + [SMALL_STATE(6876)] = 224378, + [SMALL_STATE(6877)] = 224394, + [SMALL_STATE(6878)] = 224410, + [SMALL_STATE(6879)] = 224424, + [SMALL_STATE(6880)] = 224440, + [SMALL_STATE(6881)] = 224456, + [SMALL_STATE(6882)] = 224468, + [SMALL_STATE(6883)] = 224480, + [SMALL_STATE(6884)] = 224496, + [SMALL_STATE(6885)] = 224510, + [SMALL_STATE(6886)] = 224522, + [SMALL_STATE(6887)] = 224534, + [SMALL_STATE(6888)] = 224546, + [SMALL_STATE(6889)] = 224560, + [SMALL_STATE(6890)] = 224572, + [SMALL_STATE(6891)] = 224588, + [SMALL_STATE(6892)] = 224600, + [SMALL_STATE(6893)] = 224612, + [SMALL_STATE(6894)] = 224628, + [SMALL_STATE(6895)] = 224644, + [SMALL_STATE(6896)] = 224660, + [SMALL_STATE(6897)] = 224676, + [SMALL_STATE(6898)] = 224692, + [SMALL_STATE(6899)] = 224708, + [SMALL_STATE(6900)] = 224724, + [SMALL_STATE(6901)] = 224738, + [SMALL_STATE(6902)] = 224754, + [SMALL_STATE(6903)] = 224770, + [SMALL_STATE(6904)] = 224786, + [SMALL_STATE(6905)] = 224802, + [SMALL_STATE(6906)] = 224818, + [SMALL_STATE(6907)] = 224834, + [SMALL_STATE(6908)] = 224850, + [SMALL_STATE(6909)] = 224866, + [SMALL_STATE(6910)] = 224878, + [SMALL_STATE(6911)] = 224890, + [SMALL_STATE(6912)] = 224904, + [SMALL_STATE(6913)] = 224920, + [SMALL_STATE(6914)] = 224936, + [SMALL_STATE(6915)] = 224948, + [SMALL_STATE(6916)] = 224960, + [SMALL_STATE(6917)] = 224974, + [SMALL_STATE(6918)] = 224990, + [SMALL_STATE(6919)] = 225004, + [SMALL_STATE(6920)] = 225020, + [SMALL_STATE(6921)] = 225032, + [SMALL_STATE(6922)] = 225048, + [SMALL_STATE(6923)] = 225064, + [SMALL_STATE(6924)] = 225076, + [SMALL_STATE(6925)] = 225092, + [SMALL_STATE(6926)] = 225106, + [SMALL_STATE(6927)] = 225118, + [SMALL_STATE(6928)] = 225134, + [SMALL_STATE(6929)] = 225146, + [SMALL_STATE(6930)] = 225162, + [SMALL_STATE(6931)] = 225178, + [SMALL_STATE(6932)] = 225194, + [SMALL_STATE(6933)] = 225210, + [SMALL_STATE(6934)] = 225226, + [SMALL_STATE(6935)] = 225240, + [SMALL_STATE(6936)] = 225254, + [SMALL_STATE(6937)] = 225270, + [SMALL_STATE(6938)] = 225286, + [SMALL_STATE(6939)] = 225300, + [SMALL_STATE(6940)] = 225312, + [SMALL_STATE(6941)] = 225328, + [SMALL_STATE(6942)] = 225344, + [SMALL_STATE(6943)] = 225356, + [SMALL_STATE(6944)] = 225368, + [SMALL_STATE(6945)] = 225382, + [SMALL_STATE(6946)] = 225398, + [SMALL_STATE(6947)] = 225410, + [SMALL_STATE(6948)] = 225422, + [SMALL_STATE(6949)] = 225434, + [SMALL_STATE(6950)] = 225450, + [SMALL_STATE(6951)] = 225462, + [SMALL_STATE(6952)] = 225478, + [SMALL_STATE(6953)] = 225494, + [SMALL_STATE(6954)] = 225506, + [SMALL_STATE(6955)] = 225518, + [SMALL_STATE(6956)] = 225530, + [SMALL_STATE(6957)] = 225546, + [SMALL_STATE(6958)] = 225562, + [SMALL_STATE(6959)] = 225578, + [SMALL_STATE(6960)] = 225590, + [SMALL_STATE(6961)] = 225606, + [SMALL_STATE(6962)] = 225622, + [SMALL_STATE(6963)] = 225638, + [SMALL_STATE(6964)] = 225654, + [SMALL_STATE(6965)] = 225670, + [SMALL_STATE(6966)] = 225686, + [SMALL_STATE(6967)] = 225702, + [SMALL_STATE(6968)] = 225718, + [SMALL_STATE(6969)] = 225730, + [SMALL_STATE(6970)] = 225742, + [SMALL_STATE(6971)] = 225756, + [SMALL_STATE(6972)] = 225772, + [SMALL_STATE(6973)] = 225784, + [SMALL_STATE(6974)] = 225796, + [SMALL_STATE(6975)] = 225808, + [SMALL_STATE(6976)] = 225820, + [SMALL_STATE(6977)] = 225832, + [SMALL_STATE(6978)] = 225844, + [SMALL_STATE(6979)] = 225856, + [SMALL_STATE(6980)] = 225872, + [SMALL_STATE(6981)] = 225884, + [SMALL_STATE(6982)] = 225896, + [SMALL_STATE(6983)] = 225908, + [SMALL_STATE(6984)] = 225924, + [SMALL_STATE(6985)] = 225938, + [SMALL_STATE(6986)] = 225954, + [SMALL_STATE(6987)] = 225966, + [SMALL_STATE(6988)] = 225980, + [SMALL_STATE(6989)] = 225992, + [SMALL_STATE(6990)] = 226008, + [SMALL_STATE(6991)] = 226024, + [SMALL_STATE(6992)] = 226040, + [SMALL_STATE(6993)] = 226056, + [SMALL_STATE(6994)] = 226072, + [SMALL_STATE(6995)] = 226084, + [SMALL_STATE(6996)] = 226100, + [SMALL_STATE(6997)] = 226116, + [SMALL_STATE(6998)] = 226132, + [SMALL_STATE(6999)] = 226148, + [SMALL_STATE(7000)] = 226162, + [SMALL_STATE(7001)] = 226178, + [SMALL_STATE(7002)] = 226192, + [SMALL_STATE(7003)] = 226204, + [SMALL_STATE(7004)] = 226216, + [SMALL_STATE(7005)] = 226230, + [SMALL_STATE(7006)] = 226242, + [SMALL_STATE(7007)] = 226254, + [SMALL_STATE(7008)] = 226268, + [SMALL_STATE(7009)] = 226284, + [SMALL_STATE(7010)] = 226296, + [SMALL_STATE(7011)] = 226312, + [SMALL_STATE(7012)] = 226328, + [SMALL_STATE(7013)] = 226342, + [SMALL_STATE(7014)] = 226358, + [SMALL_STATE(7015)] = 226374, + [SMALL_STATE(7016)] = 226390, + [SMALL_STATE(7017)] = 226406, + [SMALL_STATE(7018)] = 226420, + [SMALL_STATE(7019)] = 226436, + [SMALL_STATE(7020)] = 226452, + [SMALL_STATE(7021)] = 226468, + [SMALL_STATE(7022)] = 226484, + [SMALL_STATE(7023)] = 226500, + [SMALL_STATE(7024)] = 226516, + [SMALL_STATE(7025)] = 226532, + [SMALL_STATE(7026)] = 226548, + [SMALL_STATE(7027)] = 226564, + [SMALL_STATE(7028)] = 226580, + [SMALL_STATE(7029)] = 226594, + [SMALL_STATE(7030)] = 226608, + [SMALL_STATE(7031)] = 226624, + [SMALL_STATE(7032)] = 226638, + [SMALL_STATE(7033)] = 226654, + [SMALL_STATE(7034)] = 226670, + [SMALL_STATE(7035)] = 226682, + [SMALL_STATE(7036)] = 226698, + [SMALL_STATE(7037)] = 226710, + [SMALL_STATE(7038)] = 226726, + [SMALL_STATE(7039)] = 226742, + [SMALL_STATE(7040)] = 226758, + [SMALL_STATE(7041)] = 226770, + [SMALL_STATE(7042)] = 226786, + [SMALL_STATE(7043)] = 226802, + [SMALL_STATE(7044)] = 226818, + [SMALL_STATE(7045)] = 226834, + [SMALL_STATE(7046)] = 226850, + [SMALL_STATE(7047)] = 226866, + [SMALL_STATE(7048)] = 226880, + [SMALL_STATE(7049)] = 226896, + [SMALL_STATE(7050)] = 226912, + [SMALL_STATE(7051)] = 226928, + [SMALL_STATE(7052)] = 226940, + [SMALL_STATE(7053)] = 226956, + [SMALL_STATE(7054)] = 226972, + [SMALL_STATE(7055)] = 226986, + [SMALL_STATE(7056)] = 226998, + [SMALL_STATE(7057)] = 227014, + [SMALL_STATE(7058)] = 227026, + [SMALL_STATE(7059)] = 227042, + [SMALL_STATE(7060)] = 227058, + [SMALL_STATE(7061)] = 227072, + [SMALL_STATE(7062)] = 227088, + [SMALL_STATE(7063)] = 227100, + [SMALL_STATE(7064)] = 227116, + [SMALL_STATE(7065)] = 227132, + [SMALL_STATE(7066)] = 227148, + [SMALL_STATE(7067)] = 227164, + [SMALL_STATE(7068)] = 227180, + [SMALL_STATE(7069)] = 227196, + [SMALL_STATE(7070)] = 227212, + [SMALL_STATE(7071)] = 227228, + [SMALL_STATE(7072)] = 227244, + [SMALL_STATE(7073)] = 227260, + [SMALL_STATE(7074)] = 227272, + [SMALL_STATE(7075)] = 227286, + [SMALL_STATE(7076)] = 227300, + [SMALL_STATE(7077)] = 227316, + [SMALL_STATE(7078)] = 227332, + [SMALL_STATE(7079)] = 227344, + [SMALL_STATE(7080)] = 227360, + [SMALL_STATE(7081)] = 227376, + [SMALL_STATE(7082)] = 227388, + [SMALL_STATE(7083)] = 227404, + [SMALL_STATE(7084)] = 227420, + [SMALL_STATE(7085)] = 227436, + [SMALL_STATE(7086)] = 227452, + [SMALL_STATE(7087)] = 227464, + [SMALL_STATE(7088)] = 227480, + [SMALL_STATE(7089)] = 227496, + [SMALL_STATE(7090)] = 227512, + [SMALL_STATE(7091)] = 227528, + [SMALL_STATE(7092)] = 227540, + [SMALL_STATE(7093)] = 227554, + [SMALL_STATE(7094)] = 227570, + [SMALL_STATE(7095)] = 227586, + [SMALL_STATE(7096)] = 227598, + [SMALL_STATE(7097)] = 227614, + [SMALL_STATE(7098)] = 227626, + [SMALL_STATE(7099)] = 227642, + [SMALL_STATE(7100)] = 227658, + [SMALL_STATE(7101)] = 227674, + [SMALL_STATE(7102)] = 227690, + [SMALL_STATE(7103)] = 227706, + [SMALL_STATE(7104)] = 227722, + [SMALL_STATE(7105)] = 227738, + [SMALL_STATE(7106)] = 227754, + [SMALL_STATE(7107)] = 227770, + [SMALL_STATE(7108)] = 227786, + [SMALL_STATE(7109)] = 227798, + [SMALL_STATE(7110)] = 227810, + [SMALL_STATE(7111)] = 227824, + [SMALL_STATE(7112)] = 227840, + [SMALL_STATE(7113)] = 227852, + [SMALL_STATE(7114)] = 227868, + [SMALL_STATE(7115)] = 227880, + [SMALL_STATE(7116)] = 227896, + [SMALL_STATE(7117)] = 227912, + [SMALL_STATE(7118)] = 227928, + [SMALL_STATE(7119)] = 227944, + [SMALL_STATE(7120)] = 227960, + [SMALL_STATE(7121)] = 227976, + [SMALL_STATE(7122)] = 227988, + [SMALL_STATE(7123)] = 228002, + [SMALL_STATE(7124)] = 228018, + [SMALL_STATE(7125)] = 228032, + [SMALL_STATE(7126)] = 228044, + [SMALL_STATE(7127)] = 228060, + [SMALL_STATE(7128)] = 228076, + [SMALL_STATE(7129)] = 228092, + [SMALL_STATE(7130)] = 228108, + [SMALL_STATE(7131)] = 228120, + [SMALL_STATE(7132)] = 228134, + [SMALL_STATE(7133)] = 228150, + [SMALL_STATE(7134)] = 228166, + [SMALL_STATE(7135)] = 228182, + [SMALL_STATE(7136)] = 228196, + [SMALL_STATE(7137)] = 228212, + [SMALL_STATE(7138)] = 228228, + [SMALL_STATE(7139)] = 228244, + [SMALL_STATE(7140)] = 228256, + [SMALL_STATE(7141)] = 228268, + [SMALL_STATE(7142)] = 228284, + [SMALL_STATE(7143)] = 228298, + [SMALL_STATE(7144)] = 228310, + [SMALL_STATE(7145)] = 228324, + [SMALL_STATE(7146)] = 228338, + [SMALL_STATE(7147)] = 228350, + [SMALL_STATE(7148)] = 228364, + [SMALL_STATE(7149)] = 228376, + [SMALL_STATE(7150)] = 228392, + [SMALL_STATE(7151)] = 228404, + [SMALL_STATE(7152)] = 228420, + [SMALL_STATE(7153)] = 228436, + [SMALL_STATE(7154)] = 228452, + [SMALL_STATE(7155)] = 228468, + [SMALL_STATE(7156)] = 228484, + [SMALL_STATE(7157)] = 228498, + [SMALL_STATE(7158)] = 228514, + [SMALL_STATE(7159)] = 228530, + [SMALL_STATE(7160)] = 228542, + [SMALL_STATE(7161)] = 228558, + [SMALL_STATE(7162)] = 228572, + [SMALL_STATE(7163)] = 228586, + [SMALL_STATE(7164)] = 228598, + [SMALL_STATE(7165)] = 228610, + [SMALL_STATE(7166)] = 228626, + [SMALL_STATE(7167)] = 228638, + [SMALL_STATE(7168)] = 228650, + [SMALL_STATE(7169)] = 228664, + [SMALL_STATE(7170)] = 228676, + [SMALL_STATE(7171)] = 228688, + [SMALL_STATE(7172)] = 228700, + [SMALL_STATE(7173)] = 228716, + [SMALL_STATE(7174)] = 228728, + [SMALL_STATE(7175)] = 228744, + [SMALL_STATE(7176)] = 228756, + [SMALL_STATE(7177)] = 228768, + [SMALL_STATE(7178)] = 228780, + [SMALL_STATE(7179)] = 228794, + [SMALL_STATE(7180)] = 228806, + [SMALL_STATE(7181)] = 228822, + [SMALL_STATE(7182)] = 228836, + [SMALL_STATE(7183)] = 228852, + [SMALL_STATE(7184)] = 228864, + [SMALL_STATE(7185)] = 228878, + [SMALL_STATE(7186)] = 228890, + [SMALL_STATE(7187)] = 228906, + [SMALL_STATE(7188)] = 228922, + [SMALL_STATE(7189)] = 228934, + [SMALL_STATE(7190)] = 228948, + [SMALL_STATE(7191)] = 228964, + [SMALL_STATE(7192)] = 228978, + [SMALL_STATE(7193)] = 228994, + [SMALL_STATE(7194)] = 229010, + [SMALL_STATE(7195)] = 229026, + [SMALL_STATE(7196)] = 229042, + [SMALL_STATE(7197)] = 229058, + [SMALL_STATE(7198)] = 229074, + [SMALL_STATE(7199)] = 229086, + [SMALL_STATE(7200)] = 229102, + [SMALL_STATE(7201)] = 229118, + [SMALL_STATE(7202)] = 229134, + [SMALL_STATE(7203)] = 229146, + [SMALL_STATE(7204)] = 229162, + [SMALL_STATE(7205)] = 229174, + [SMALL_STATE(7206)] = 229186, + [SMALL_STATE(7207)] = 229200, + [SMALL_STATE(7208)] = 229214, + [SMALL_STATE(7209)] = 229228, + [SMALL_STATE(7210)] = 229242, + [SMALL_STATE(7211)] = 229256, + [SMALL_STATE(7212)] = 229270, + [SMALL_STATE(7213)] = 229284, + [SMALL_STATE(7214)] = 229300, + [SMALL_STATE(7215)] = 229312, + [SMALL_STATE(7216)] = 229328, + [SMALL_STATE(7217)] = 229344, + [SMALL_STATE(7218)] = 229358, + [SMALL_STATE(7219)] = 229374, + [SMALL_STATE(7220)] = 229388, + [SMALL_STATE(7221)] = 229400, + [SMALL_STATE(7222)] = 229414, + [SMALL_STATE(7223)] = 229426, + [SMALL_STATE(7224)] = 229442, + [SMALL_STATE(7225)] = 229458, + [SMALL_STATE(7226)] = 229474, + [SMALL_STATE(7227)] = 229488, + [SMALL_STATE(7228)] = 229500, + [SMALL_STATE(7229)] = 229516, + [SMALL_STATE(7230)] = 229532, + [SMALL_STATE(7231)] = 229548, + [SMALL_STATE(7232)] = 229564, + [SMALL_STATE(7233)] = 229580, + [SMALL_STATE(7234)] = 229596, + [SMALL_STATE(7235)] = 229612, + [SMALL_STATE(7236)] = 229628, + [SMALL_STATE(7237)] = 229644, + [SMALL_STATE(7238)] = 229660, + [SMALL_STATE(7239)] = 229674, + [SMALL_STATE(7240)] = 229688, + [SMALL_STATE(7241)] = 229702, + [SMALL_STATE(7242)] = 229718, + [SMALL_STATE(7243)] = 229730, + [SMALL_STATE(7244)] = 229746, + [SMALL_STATE(7245)] = 229762, + [SMALL_STATE(7246)] = 229778, + [SMALL_STATE(7247)] = 229794, + [SMALL_STATE(7248)] = 229810, + [SMALL_STATE(7249)] = 229826, + [SMALL_STATE(7250)] = 229842, + [SMALL_STATE(7251)] = 229854, + [SMALL_STATE(7252)] = 229866, + [SMALL_STATE(7253)] = 229878, + [SMALL_STATE(7254)] = 229894, + [SMALL_STATE(7255)] = 229910, + [SMALL_STATE(7256)] = 229924, + [SMALL_STATE(7257)] = 229936, + [SMALL_STATE(7258)] = 229948, + [SMALL_STATE(7259)] = 229964, + [SMALL_STATE(7260)] = 229976, + [SMALL_STATE(7261)] = 229990, + [SMALL_STATE(7262)] = 230002, + [SMALL_STATE(7263)] = 230014, + [SMALL_STATE(7264)] = 230030, + [SMALL_STATE(7265)] = 230044, + [SMALL_STATE(7266)] = 230058, + [SMALL_STATE(7267)] = 230070, + [SMALL_STATE(7268)] = 230084, + [SMALL_STATE(7269)] = 230098, + [SMALL_STATE(7270)] = 230112, + [SMALL_STATE(7271)] = 230124, + [SMALL_STATE(7272)] = 230136, + [SMALL_STATE(7273)] = 230152, + [SMALL_STATE(7274)] = 230164, + [SMALL_STATE(7275)] = 230176, + [SMALL_STATE(7276)] = 230190, + [SMALL_STATE(7277)] = 230202, + [SMALL_STATE(7278)] = 230216, + [SMALL_STATE(7279)] = 230230, + [SMALL_STATE(7280)] = 230244, + [SMALL_STATE(7281)] = 230256, + [SMALL_STATE(7282)] = 230272, + [SMALL_STATE(7283)] = 230284, + [SMALL_STATE(7284)] = 230300, + [SMALL_STATE(7285)] = 230316, + [SMALL_STATE(7286)] = 230332, + [SMALL_STATE(7287)] = 230348, + [SMALL_STATE(7288)] = 230364, + [SMALL_STATE(7289)] = 230380, + [SMALL_STATE(7290)] = 230392, + [SMALL_STATE(7291)] = 230404, + [SMALL_STATE(7292)] = 230416, + [SMALL_STATE(7293)] = 230428, + [SMALL_STATE(7294)] = 230442, + [SMALL_STATE(7295)] = 230456, + [SMALL_STATE(7296)] = 230472, + [SMALL_STATE(7297)] = 230486, + [SMALL_STATE(7298)] = 230498, + [SMALL_STATE(7299)] = 230510, + [SMALL_STATE(7300)] = 230522, + [SMALL_STATE(7301)] = 230534, + [SMALL_STATE(7302)] = 230548, + [SMALL_STATE(7303)] = 230560, + [SMALL_STATE(7304)] = 230574, + [SMALL_STATE(7305)] = 230590, + [SMALL_STATE(7306)] = 230602, + [SMALL_STATE(7307)] = 230618, + [SMALL_STATE(7308)] = 230634, + [SMALL_STATE(7309)] = 230650, + [SMALL_STATE(7310)] = 230666, + [SMALL_STATE(7311)] = 230682, + [SMALL_STATE(7312)] = 230694, + [SMALL_STATE(7313)] = 230708, + [SMALL_STATE(7314)] = 230724, + [SMALL_STATE(7315)] = 230738, + [SMALL_STATE(7316)] = 230752, + [SMALL_STATE(7317)] = 230768, + [SMALL_STATE(7318)] = 230784, + [SMALL_STATE(7319)] = 230800, + [SMALL_STATE(7320)] = 230816, + [SMALL_STATE(7321)] = 230832, + [SMALL_STATE(7322)] = 230846, + [SMALL_STATE(7323)] = 230860, + [SMALL_STATE(7324)] = 230876, + [SMALL_STATE(7325)] = 230892, + [SMALL_STATE(7326)] = 230908, + [SMALL_STATE(7327)] = 230924, + [SMALL_STATE(7328)] = 230938, + [SMALL_STATE(7329)] = 230952, + [SMALL_STATE(7330)] = 230968, + [SMALL_STATE(7331)] = 230984, + [SMALL_STATE(7332)] = 231000, + [SMALL_STATE(7333)] = 231012, + [SMALL_STATE(7334)] = 231028, + [SMALL_STATE(7335)] = 231044, + [SMALL_STATE(7336)] = 231058, + [SMALL_STATE(7337)] = 231072, + [SMALL_STATE(7338)] = 231086, + [SMALL_STATE(7339)] = 231100, + [SMALL_STATE(7340)] = 231112, + [SMALL_STATE(7341)] = 231128, + [SMALL_STATE(7342)] = 231144, + [SMALL_STATE(7343)] = 231156, + [SMALL_STATE(7344)] = 231172, + [SMALL_STATE(7345)] = 231188, + [SMALL_STATE(7346)] = 231202, + [SMALL_STATE(7347)] = 231218, + [SMALL_STATE(7348)] = 231232, + [SMALL_STATE(7349)] = 231246, + [SMALL_STATE(7350)] = 231260, + [SMALL_STATE(7351)] = 231276, + [SMALL_STATE(7352)] = 231292, + [SMALL_STATE(7353)] = 231304, + [SMALL_STATE(7354)] = 231320, + [SMALL_STATE(7355)] = 231336, + [SMALL_STATE(7356)] = 231350, + [SMALL_STATE(7357)] = 231362, + [SMALL_STATE(7358)] = 231376, + [SMALL_STATE(7359)] = 231392, + [SMALL_STATE(7360)] = 231408, + [SMALL_STATE(7361)] = 231424, + [SMALL_STATE(7362)] = 231440, + [SMALL_STATE(7363)] = 231456, + [SMALL_STATE(7364)] = 231472, + [SMALL_STATE(7365)] = 231486, + [SMALL_STATE(7366)] = 231502, + [SMALL_STATE(7367)] = 231514, + [SMALL_STATE(7368)] = 231528, + [SMALL_STATE(7369)] = 231544, + [SMALL_STATE(7370)] = 231560, + [SMALL_STATE(7371)] = 231576, + [SMALL_STATE(7372)] = 231592, + [SMALL_STATE(7373)] = 231606, + [SMALL_STATE(7374)] = 231622, + [SMALL_STATE(7375)] = 231638, + [SMALL_STATE(7376)] = 231652, + [SMALL_STATE(7377)] = 231668, + [SMALL_STATE(7378)] = 231682, + [SMALL_STATE(7379)] = 231698, + [SMALL_STATE(7380)] = 231710, + [SMALL_STATE(7381)] = 231726, + [SMALL_STATE(7382)] = 231742, + [SMALL_STATE(7383)] = 231758, + [SMALL_STATE(7384)] = 231774, + [SMALL_STATE(7385)] = 231788, + [SMALL_STATE(7386)] = 231802, + [SMALL_STATE(7387)] = 231818, + [SMALL_STATE(7388)] = 231834, + [SMALL_STATE(7389)] = 231850, + [SMALL_STATE(7390)] = 231866, + [SMALL_STATE(7391)] = 231882, + [SMALL_STATE(7392)] = 231896, + [SMALL_STATE(7393)] = 231910, + [SMALL_STATE(7394)] = 231924, + [SMALL_STATE(7395)] = 231940, + [SMALL_STATE(7396)] = 231956, + [SMALL_STATE(7397)] = 231972, + [SMALL_STATE(7398)] = 231988, + [SMALL_STATE(7399)] = 232002, + [SMALL_STATE(7400)] = 232016, + [SMALL_STATE(7401)] = 232032, + [SMALL_STATE(7402)] = 232048, + [SMALL_STATE(7403)] = 232064, + [SMALL_STATE(7404)] = 232080, + [SMALL_STATE(7405)] = 232094, + [SMALL_STATE(7406)] = 232108, + [SMALL_STATE(7407)] = 232124, + [SMALL_STATE(7408)] = 232140, + [SMALL_STATE(7409)] = 232156, + [SMALL_STATE(7410)] = 232172, + [SMALL_STATE(7411)] = 232186, + [SMALL_STATE(7412)] = 232200, + [SMALL_STATE(7413)] = 232216, + [SMALL_STATE(7414)] = 232232, + [SMALL_STATE(7415)] = 232248, + [SMALL_STATE(7416)] = 232264, + [SMALL_STATE(7417)] = 232278, + [SMALL_STATE(7418)] = 232292, + [SMALL_STATE(7419)] = 232308, + [SMALL_STATE(7420)] = 232324, + [SMALL_STATE(7421)] = 232340, + [SMALL_STATE(7422)] = 232356, + [SMALL_STATE(7423)] = 232370, + [SMALL_STATE(7424)] = 232384, + [SMALL_STATE(7425)] = 232400, + [SMALL_STATE(7426)] = 232416, + [SMALL_STATE(7427)] = 232432, + [SMALL_STATE(7428)] = 232448, + [SMALL_STATE(7429)] = 232460, + [SMALL_STATE(7430)] = 232472, + [SMALL_STATE(7431)] = 232488, + [SMALL_STATE(7432)] = 232504, + [SMALL_STATE(7433)] = 232516, + [SMALL_STATE(7434)] = 232528, + [SMALL_STATE(7435)] = 232542, + [SMALL_STATE(7436)] = 232554, + [SMALL_STATE(7437)] = 232568, + [SMALL_STATE(7438)] = 232582, + [SMALL_STATE(7439)] = 232596, + [SMALL_STATE(7440)] = 232612, + [SMALL_STATE(7441)] = 232628, + [SMALL_STATE(7442)] = 232640, + [SMALL_STATE(7443)] = 232654, + [SMALL_STATE(7444)] = 232670, + [SMALL_STATE(7445)] = 232686, + [SMALL_STATE(7446)] = 232700, + [SMALL_STATE(7447)] = 232716, + [SMALL_STATE(7448)] = 232732, + [SMALL_STATE(7449)] = 232746, + [SMALL_STATE(7450)] = 232760, + [SMALL_STATE(7451)] = 232774, + [SMALL_STATE(7452)] = 232786, + [SMALL_STATE(7453)] = 232798, + [SMALL_STATE(7454)] = 232810, + [SMALL_STATE(7455)] = 232822, + [SMALL_STATE(7456)] = 232835, + [SMALL_STATE(7457)] = 232848, + [SMALL_STATE(7458)] = 232861, + [SMALL_STATE(7459)] = 232874, + [SMALL_STATE(7460)] = 232887, + [SMALL_STATE(7461)] = 232900, + [SMALL_STATE(7462)] = 232913, + [SMALL_STATE(7463)] = 232926, + [SMALL_STATE(7464)] = 232939, + [SMALL_STATE(7465)] = 232952, + [SMALL_STATE(7466)] = 232965, + [SMALL_STATE(7467)] = 232978, + [SMALL_STATE(7468)] = 232991, + [SMALL_STATE(7469)] = 233004, + [SMALL_STATE(7470)] = 233017, + [SMALL_STATE(7471)] = 233030, + [SMALL_STATE(7472)] = 233043, + [SMALL_STATE(7473)] = 233056, + [SMALL_STATE(7474)] = 233069, + [SMALL_STATE(7475)] = 233082, + [SMALL_STATE(7476)] = 233095, + [SMALL_STATE(7477)] = 233108, + [SMALL_STATE(7478)] = 233121, + [SMALL_STATE(7479)] = 233134, + [SMALL_STATE(7480)] = 233147, + [SMALL_STATE(7481)] = 233160, + [SMALL_STATE(7482)] = 233173, + [SMALL_STATE(7483)] = 233186, + [SMALL_STATE(7484)] = 233197, + [SMALL_STATE(7485)] = 233210, + [SMALL_STATE(7486)] = 233223, + [SMALL_STATE(7487)] = 233236, + [SMALL_STATE(7488)] = 233249, + [SMALL_STATE(7489)] = 233262, + [SMALL_STATE(7490)] = 233275, + [SMALL_STATE(7491)] = 233288, + [SMALL_STATE(7492)] = 233301, + [SMALL_STATE(7493)] = 233314, + [SMALL_STATE(7494)] = 233327, + [SMALL_STATE(7495)] = 233340, + [SMALL_STATE(7496)] = 233353, + [SMALL_STATE(7497)] = 233366, + [SMALL_STATE(7498)] = 233379, + [SMALL_STATE(7499)] = 233392, + [SMALL_STATE(7500)] = 233405, + [SMALL_STATE(7501)] = 233418, + [SMALL_STATE(7502)] = 233431, + [SMALL_STATE(7503)] = 233444, + [SMALL_STATE(7504)] = 233457, + [SMALL_STATE(7505)] = 233470, + [SMALL_STATE(7506)] = 233483, + [SMALL_STATE(7507)] = 233496, + [SMALL_STATE(7508)] = 233509, + [SMALL_STATE(7509)] = 233522, + [SMALL_STATE(7510)] = 233535, + [SMALL_STATE(7511)] = 233548, + [SMALL_STATE(7512)] = 233561, + [SMALL_STATE(7513)] = 233574, + [SMALL_STATE(7514)] = 233587, + [SMALL_STATE(7515)] = 233600, + [SMALL_STATE(7516)] = 233613, + [SMALL_STATE(7517)] = 233626, + [SMALL_STATE(7518)] = 233637, + [SMALL_STATE(7519)] = 233650, + [SMALL_STATE(7520)] = 233663, + [SMALL_STATE(7521)] = 233676, + [SMALL_STATE(7522)] = 233689, + [SMALL_STATE(7523)] = 233702, + [SMALL_STATE(7524)] = 233715, + [SMALL_STATE(7525)] = 233728, + [SMALL_STATE(7526)] = 233741, + [SMALL_STATE(7527)] = 233754, + [SMALL_STATE(7528)] = 233767, + [SMALL_STATE(7529)] = 233780, + [SMALL_STATE(7530)] = 233793, + [SMALL_STATE(7531)] = 233806, + [SMALL_STATE(7532)] = 233819, + [SMALL_STATE(7533)] = 233832, + [SMALL_STATE(7534)] = 233845, + [SMALL_STATE(7535)] = 233858, + [SMALL_STATE(7536)] = 233871, + [SMALL_STATE(7537)] = 233884, + [SMALL_STATE(7538)] = 233897, + [SMALL_STATE(7539)] = 233910, + [SMALL_STATE(7540)] = 233923, + [SMALL_STATE(7541)] = 233936, + [SMALL_STATE(7542)] = 233949, + [SMALL_STATE(7543)] = 233962, + [SMALL_STATE(7544)] = 233975, + [SMALL_STATE(7545)] = 233988, + [SMALL_STATE(7546)] = 234001, + [SMALL_STATE(7547)] = 234012, + [SMALL_STATE(7548)] = 234025, + [SMALL_STATE(7549)] = 234038, + [SMALL_STATE(7550)] = 234051, + [SMALL_STATE(7551)] = 234064, + [SMALL_STATE(7552)] = 234077, + [SMALL_STATE(7553)] = 234090, + [SMALL_STATE(7554)] = 234103, + [SMALL_STATE(7555)] = 234116, + [SMALL_STATE(7556)] = 234129, + [SMALL_STATE(7557)] = 234142, + [SMALL_STATE(7558)] = 234155, + [SMALL_STATE(7559)] = 234168, + [SMALL_STATE(7560)] = 234181, + [SMALL_STATE(7561)] = 234194, + [SMALL_STATE(7562)] = 234207, + [SMALL_STATE(7563)] = 234220, + [SMALL_STATE(7564)] = 234233, + [SMALL_STATE(7565)] = 234246, + [SMALL_STATE(7566)] = 234259, + [SMALL_STATE(7567)] = 234272, + [SMALL_STATE(7568)] = 234285, + [SMALL_STATE(7569)] = 234298, + [SMALL_STATE(7570)] = 234311, + [SMALL_STATE(7571)] = 234324, + [SMALL_STATE(7572)] = 234337, + [SMALL_STATE(7573)] = 234350, + [SMALL_STATE(7574)] = 234363, + [SMALL_STATE(7575)] = 234376, + [SMALL_STATE(7576)] = 234389, + [SMALL_STATE(7577)] = 234402, + [SMALL_STATE(7578)] = 234415, + [SMALL_STATE(7579)] = 234428, + [SMALL_STATE(7580)] = 234441, + [SMALL_STATE(7581)] = 234454, + [SMALL_STATE(7582)] = 234467, + [SMALL_STATE(7583)] = 234480, + [SMALL_STATE(7584)] = 234493, + [SMALL_STATE(7585)] = 234506, + [SMALL_STATE(7586)] = 234519, + [SMALL_STATE(7587)] = 234532, + [SMALL_STATE(7588)] = 234545, + [SMALL_STATE(7589)] = 234558, + [SMALL_STATE(7590)] = 234571, + [SMALL_STATE(7591)] = 234584, + [SMALL_STATE(7592)] = 234597, + [SMALL_STATE(7593)] = 234610, + [SMALL_STATE(7594)] = 234623, + [SMALL_STATE(7595)] = 234636, + [SMALL_STATE(7596)] = 234649, + [SMALL_STATE(7597)] = 234662, + [SMALL_STATE(7598)] = 234675, + [SMALL_STATE(7599)] = 234688, + [SMALL_STATE(7600)] = 234701, + [SMALL_STATE(7601)] = 234714, + [SMALL_STATE(7602)] = 234727, + [SMALL_STATE(7603)] = 234740, + [SMALL_STATE(7604)] = 234753, + [SMALL_STATE(7605)] = 234766, + [SMALL_STATE(7606)] = 234779, + [SMALL_STATE(7607)] = 234792, + [SMALL_STATE(7608)] = 234805, + [SMALL_STATE(7609)] = 234818, + [SMALL_STATE(7610)] = 234831, + [SMALL_STATE(7611)] = 234844, + [SMALL_STATE(7612)] = 234857, + [SMALL_STATE(7613)] = 234870, + [SMALL_STATE(7614)] = 234883, + [SMALL_STATE(7615)] = 234896, + [SMALL_STATE(7616)] = 234909, + [SMALL_STATE(7617)] = 234922, + [SMALL_STATE(7618)] = 234935, + [SMALL_STATE(7619)] = 234948, + [SMALL_STATE(7620)] = 234961, + [SMALL_STATE(7621)] = 234974, + [SMALL_STATE(7622)] = 234987, + [SMALL_STATE(7623)] = 235000, + [SMALL_STATE(7624)] = 235013, + [SMALL_STATE(7625)] = 235026, + [SMALL_STATE(7626)] = 235039, + [SMALL_STATE(7627)] = 235050, + [SMALL_STATE(7628)] = 235063, + [SMALL_STATE(7629)] = 235076, + [SMALL_STATE(7630)] = 235089, + [SMALL_STATE(7631)] = 235102, + [SMALL_STATE(7632)] = 235115, + [SMALL_STATE(7633)] = 235128, + [SMALL_STATE(7634)] = 235141, + [SMALL_STATE(7635)] = 235154, + [SMALL_STATE(7636)] = 235165, + [SMALL_STATE(7637)] = 235178, + [SMALL_STATE(7638)] = 235191, + [SMALL_STATE(7639)] = 235204, + [SMALL_STATE(7640)] = 235217, + [SMALL_STATE(7641)] = 235230, + [SMALL_STATE(7642)] = 235243, + [SMALL_STATE(7643)] = 235256, + [SMALL_STATE(7644)] = 235269, + [SMALL_STATE(7645)] = 235282, + [SMALL_STATE(7646)] = 235295, + [SMALL_STATE(7647)] = 235308, + [SMALL_STATE(7648)] = 235321, + [SMALL_STATE(7649)] = 235334, + [SMALL_STATE(7650)] = 235347, + [SMALL_STATE(7651)] = 235360, + [SMALL_STATE(7652)] = 235373, + [SMALL_STATE(7653)] = 235386, + [SMALL_STATE(7654)] = 235399, + [SMALL_STATE(7655)] = 235412, + [SMALL_STATE(7656)] = 235425, + [SMALL_STATE(7657)] = 235438, + [SMALL_STATE(7658)] = 235451, + [SMALL_STATE(7659)] = 235464, + [SMALL_STATE(7660)] = 235477, + [SMALL_STATE(7661)] = 235490, + [SMALL_STATE(7662)] = 235503, + [SMALL_STATE(7663)] = 235516, + [SMALL_STATE(7664)] = 235529, + [SMALL_STATE(7665)] = 235542, + [SMALL_STATE(7666)] = 235555, + [SMALL_STATE(7667)] = 235568, + [SMALL_STATE(7668)] = 235581, + [SMALL_STATE(7669)] = 235594, + [SMALL_STATE(7670)] = 235607, + [SMALL_STATE(7671)] = 235620, + [SMALL_STATE(7672)] = 235633, + [SMALL_STATE(7673)] = 235646, + [SMALL_STATE(7674)] = 235659, + [SMALL_STATE(7675)] = 235672, + [SMALL_STATE(7676)] = 235685, + [SMALL_STATE(7677)] = 235698, + [SMALL_STATE(7678)] = 235711, + [SMALL_STATE(7679)] = 235724, + [SMALL_STATE(7680)] = 235737, + [SMALL_STATE(7681)] = 235750, + [SMALL_STATE(7682)] = 235763, + [SMALL_STATE(7683)] = 235776, + [SMALL_STATE(7684)] = 235789, + [SMALL_STATE(7685)] = 235802, + [SMALL_STATE(7686)] = 235813, + [SMALL_STATE(7687)] = 235826, + [SMALL_STATE(7688)] = 235839, + [SMALL_STATE(7689)] = 235852, + [SMALL_STATE(7690)] = 235865, + [SMALL_STATE(7691)] = 235878, + [SMALL_STATE(7692)] = 235891, + [SMALL_STATE(7693)] = 235904, + [SMALL_STATE(7694)] = 235917, + [SMALL_STATE(7695)] = 235930, + [SMALL_STATE(7696)] = 235943, + [SMALL_STATE(7697)] = 235956, + [SMALL_STATE(7698)] = 235969, + [SMALL_STATE(7699)] = 235982, + [SMALL_STATE(7700)] = 235995, + [SMALL_STATE(7701)] = 236008, + [SMALL_STATE(7702)] = 236019, + [SMALL_STATE(7703)] = 236032, + [SMALL_STATE(7704)] = 236045, + [SMALL_STATE(7705)] = 236058, + [SMALL_STATE(7706)] = 236071, + [SMALL_STATE(7707)] = 236082, + [SMALL_STATE(7708)] = 236095, + [SMALL_STATE(7709)] = 236108, + [SMALL_STATE(7710)] = 236121, + [SMALL_STATE(7711)] = 236134, + [SMALL_STATE(7712)] = 236147, + [SMALL_STATE(7713)] = 236157, + [SMALL_STATE(7714)] = 236167, + [SMALL_STATE(7715)] = 236177, + [SMALL_STATE(7716)] = 236187, + [SMALL_STATE(7717)] = 236197, + [SMALL_STATE(7718)] = 236207, + [SMALL_STATE(7719)] = 236217, + [SMALL_STATE(7720)] = 236227, + [SMALL_STATE(7721)] = 236237, + [SMALL_STATE(7722)] = 236247, + [SMALL_STATE(7723)] = 236257, + [SMALL_STATE(7724)] = 236267, + [SMALL_STATE(7725)] = 236277, + [SMALL_STATE(7726)] = 236287, + [SMALL_STATE(7727)] = 236297, + [SMALL_STATE(7728)] = 236307, + [SMALL_STATE(7729)] = 236317, + [SMALL_STATE(7730)] = 236327, + [SMALL_STATE(7731)] = 236337, + [SMALL_STATE(7732)] = 236347, + [SMALL_STATE(7733)] = 236357, + [SMALL_STATE(7734)] = 236367, + [SMALL_STATE(7735)] = 236377, + [SMALL_STATE(7736)] = 236387, + [SMALL_STATE(7737)] = 236397, + [SMALL_STATE(7738)] = 236407, + [SMALL_STATE(7739)] = 236417, + [SMALL_STATE(7740)] = 236427, + [SMALL_STATE(7741)] = 236437, + [SMALL_STATE(7742)] = 236447, + [SMALL_STATE(7743)] = 236457, + [SMALL_STATE(7744)] = 236467, + [SMALL_STATE(7745)] = 236477, + [SMALL_STATE(7746)] = 236487, + [SMALL_STATE(7747)] = 236497, + [SMALL_STATE(7748)] = 236507, + [SMALL_STATE(7749)] = 236517, + [SMALL_STATE(7750)] = 236527, + [SMALL_STATE(7751)] = 236537, + [SMALL_STATE(7752)] = 236547, + [SMALL_STATE(7753)] = 236557, + [SMALL_STATE(7754)] = 236567, + [SMALL_STATE(7755)] = 236577, + [SMALL_STATE(7756)] = 236587, + [SMALL_STATE(7757)] = 236597, + [SMALL_STATE(7758)] = 236607, + [SMALL_STATE(7759)] = 236617, + [SMALL_STATE(7760)] = 236627, + [SMALL_STATE(7761)] = 236637, + [SMALL_STATE(7762)] = 236647, + [SMALL_STATE(7763)] = 236657, + [SMALL_STATE(7764)] = 236667, + [SMALL_STATE(7765)] = 236677, + [SMALL_STATE(7766)] = 236687, + [SMALL_STATE(7767)] = 236697, + [SMALL_STATE(7768)] = 236707, + [SMALL_STATE(7769)] = 236717, + [SMALL_STATE(7770)] = 236727, + [SMALL_STATE(7771)] = 236737, + [SMALL_STATE(7772)] = 236747, + [SMALL_STATE(7773)] = 236757, + [SMALL_STATE(7774)] = 236767, + [SMALL_STATE(7775)] = 236777, + [SMALL_STATE(7776)] = 236787, + [SMALL_STATE(7777)] = 236797, + [SMALL_STATE(7778)] = 236807, + [SMALL_STATE(7779)] = 236817, + [SMALL_STATE(7780)] = 236827, + [SMALL_STATE(7781)] = 236837, + [SMALL_STATE(7782)] = 236847, + [SMALL_STATE(7783)] = 236857, + [SMALL_STATE(7784)] = 236867, + [SMALL_STATE(7785)] = 236877, + [SMALL_STATE(7786)] = 236887, + [SMALL_STATE(7787)] = 236897, + [SMALL_STATE(7788)] = 236907, + [SMALL_STATE(7789)] = 236917, + [SMALL_STATE(7790)] = 236927, + [SMALL_STATE(7791)] = 236937, + [SMALL_STATE(7792)] = 236947, + [SMALL_STATE(7793)] = 236957, + [SMALL_STATE(7794)] = 236967, + [SMALL_STATE(7795)] = 236977, + [SMALL_STATE(7796)] = 236987, + [SMALL_STATE(7797)] = 236997, + [SMALL_STATE(7798)] = 237007, + [SMALL_STATE(7799)] = 237017, + [SMALL_STATE(7800)] = 237027, + [SMALL_STATE(7801)] = 237037, + [SMALL_STATE(7802)] = 237047, + [SMALL_STATE(7803)] = 237057, + [SMALL_STATE(7804)] = 237067, + [SMALL_STATE(7805)] = 237077, + [SMALL_STATE(7806)] = 237087, + [SMALL_STATE(7807)] = 237097, + [SMALL_STATE(7808)] = 237107, + [SMALL_STATE(7809)] = 237117, + [SMALL_STATE(7810)] = 237127, + [SMALL_STATE(7811)] = 237137, + [SMALL_STATE(7812)] = 237147, + [SMALL_STATE(7813)] = 237157, + [SMALL_STATE(7814)] = 237167, + [SMALL_STATE(7815)] = 237177, + [SMALL_STATE(7816)] = 237187, + [SMALL_STATE(7817)] = 237197, + [SMALL_STATE(7818)] = 237207, + [SMALL_STATE(7819)] = 237217, + [SMALL_STATE(7820)] = 237227, + [SMALL_STATE(7821)] = 237237, + [SMALL_STATE(7822)] = 237247, + [SMALL_STATE(7823)] = 237257, + [SMALL_STATE(7824)] = 237267, + [SMALL_STATE(7825)] = 237277, + [SMALL_STATE(7826)] = 237287, + [SMALL_STATE(7827)] = 237297, + [SMALL_STATE(7828)] = 237307, + [SMALL_STATE(7829)] = 237317, + [SMALL_STATE(7830)] = 237327, + [SMALL_STATE(7831)] = 237337, + [SMALL_STATE(7832)] = 237347, + [SMALL_STATE(7833)] = 237357, + [SMALL_STATE(7834)] = 237367, + [SMALL_STATE(7835)] = 237377, + [SMALL_STATE(7836)] = 237387, + [SMALL_STATE(7837)] = 237397, + [SMALL_STATE(7838)] = 237407, + [SMALL_STATE(7839)] = 237417, + [SMALL_STATE(7840)] = 237427, + [SMALL_STATE(7841)] = 237437, + [SMALL_STATE(7842)] = 237447, + [SMALL_STATE(7843)] = 237457, + [SMALL_STATE(7844)] = 237467, + [SMALL_STATE(7845)] = 237477, + [SMALL_STATE(7846)] = 237487, + [SMALL_STATE(7847)] = 237497, + [SMALL_STATE(7848)] = 237507, + [SMALL_STATE(7849)] = 237517, + [SMALL_STATE(7850)] = 237527, + [SMALL_STATE(7851)] = 237537, + [SMALL_STATE(7852)] = 237547, + [SMALL_STATE(7853)] = 237557, + [SMALL_STATE(7854)] = 237567, + [SMALL_STATE(7855)] = 237577, + [SMALL_STATE(7856)] = 237587, + [SMALL_STATE(7857)] = 237597, + [SMALL_STATE(7858)] = 237607, + [SMALL_STATE(7859)] = 237617, + [SMALL_STATE(7860)] = 237627, + [SMALL_STATE(7861)] = 237637, + [SMALL_STATE(7862)] = 237647, + [SMALL_STATE(7863)] = 237657, + [SMALL_STATE(7864)] = 237667, + [SMALL_STATE(7865)] = 237677, + [SMALL_STATE(7866)] = 237687, + [SMALL_STATE(7867)] = 237697, + [SMALL_STATE(7868)] = 237707, + [SMALL_STATE(7869)] = 237717, + [SMALL_STATE(7870)] = 237727, + [SMALL_STATE(7871)] = 237737, + [SMALL_STATE(7872)] = 237747, + [SMALL_STATE(7873)] = 237757, + [SMALL_STATE(7874)] = 237767, + [SMALL_STATE(7875)] = 237777, + [SMALL_STATE(7876)] = 237787, + [SMALL_STATE(7877)] = 237797, + [SMALL_STATE(7878)] = 237807, + [SMALL_STATE(7879)] = 237817, + [SMALL_STATE(7880)] = 237827, + [SMALL_STATE(7881)] = 237837, + [SMALL_STATE(7882)] = 237847, + [SMALL_STATE(7883)] = 237857, + [SMALL_STATE(7884)] = 237867, + [SMALL_STATE(7885)] = 237877, + [SMALL_STATE(7886)] = 237887, + [SMALL_STATE(7887)] = 237897, + [SMALL_STATE(7888)] = 237907, + [SMALL_STATE(7889)] = 237917, + [SMALL_STATE(7890)] = 237927, + [SMALL_STATE(7891)] = 237937, + [SMALL_STATE(7892)] = 237947, + [SMALL_STATE(7893)] = 237957, + [SMALL_STATE(7894)] = 237967, + [SMALL_STATE(7895)] = 237977, + [SMALL_STATE(7896)] = 237987, + [SMALL_STATE(7897)] = 237997, + [SMALL_STATE(7898)] = 238007, + [SMALL_STATE(7899)] = 238017, + [SMALL_STATE(7900)] = 238027, + [SMALL_STATE(7901)] = 238037, + [SMALL_STATE(7902)] = 238047, + [SMALL_STATE(7903)] = 238057, + [SMALL_STATE(7904)] = 238067, + [SMALL_STATE(7905)] = 238077, + [SMALL_STATE(7906)] = 238087, + [SMALL_STATE(7907)] = 238097, + [SMALL_STATE(7908)] = 238107, + [SMALL_STATE(7909)] = 238117, + [SMALL_STATE(7910)] = 238127, + [SMALL_STATE(7911)] = 238137, + [SMALL_STATE(7912)] = 238147, + [SMALL_STATE(7913)] = 238157, + [SMALL_STATE(7914)] = 238167, + [SMALL_STATE(7915)] = 238177, + [SMALL_STATE(7916)] = 238187, + [SMALL_STATE(7917)] = 238197, + [SMALL_STATE(7918)] = 238207, + [SMALL_STATE(7919)] = 238217, + [SMALL_STATE(7920)] = 238227, + [SMALL_STATE(7921)] = 238237, + [SMALL_STATE(7922)] = 238247, + [SMALL_STATE(7923)] = 238257, + [SMALL_STATE(7924)] = 238267, + [SMALL_STATE(7925)] = 238277, + [SMALL_STATE(7926)] = 238287, + [SMALL_STATE(7927)] = 238297, + [SMALL_STATE(7928)] = 238307, + [SMALL_STATE(7929)] = 238317, + [SMALL_STATE(7930)] = 238327, + [SMALL_STATE(7931)] = 238337, + [SMALL_STATE(7932)] = 238347, + [SMALL_STATE(7933)] = 238357, + [SMALL_STATE(7934)] = 238367, + [SMALL_STATE(7935)] = 238377, + [SMALL_STATE(7936)] = 238387, + [SMALL_STATE(7937)] = 238397, + [SMALL_STATE(7938)] = 238407, + [SMALL_STATE(7939)] = 238417, + [SMALL_STATE(7940)] = 238427, + [SMALL_STATE(7941)] = 238437, + [SMALL_STATE(7942)] = 238447, + [SMALL_STATE(7943)] = 238457, + [SMALL_STATE(7944)] = 238467, + [SMALL_STATE(7945)] = 238477, + [SMALL_STATE(7946)] = 238487, + [SMALL_STATE(7947)] = 238497, + [SMALL_STATE(7948)] = 238507, + [SMALL_STATE(7949)] = 238517, + [SMALL_STATE(7950)] = 238527, + [SMALL_STATE(7951)] = 238537, + [SMALL_STATE(7952)] = 238547, + [SMALL_STATE(7953)] = 238557, + [SMALL_STATE(7954)] = 238567, + [SMALL_STATE(7955)] = 238577, + [SMALL_STATE(7956)] = 238587, + [SMALL_STATE(7957)] = 238597, + [SMALL_STATE(7958)] = 238607, + [SMALL_STATE(7959)] = 238617, + [SMALL_STATE(7960)] = 238627, + [SMALL_STATE(7961)] = 238637, + [SMALL_STATE(7962)] = 238647, + [SMALL_STATE(7963)] = 238657, + [SMALL_STATE(7964)] = 238667, + [SMALL_STATE(7965)] = 238677, + [SMALL_STATE(7966)] = 238687, + [SMALL_STATE(7967)] = 238697, + [SMALL_STATE(7968)] = 238707, + [SMALL_STATE(7969)] = 238717, + [SMALL_STATE(7970)] = 238727, + [SMALL_STATE(7971)] = 238737, + [SMALL_STATE(7972)] = 238747, + [SMALL_STATE(7973)] = 238757, + [SMALL_STATE(7974)] = 238767, + [SMALL_STATE(7975)] = 238777, + [SMALL_STATE(7976)] = 238787, + [SMALL_STATE(7977)] = 238797, + [SMALL_STATE(7978)] = 238807, + [SMALL_STATE(7979)] = 238817, + [SMALL_STATE(7980)] = 238827, + [SMALL_STATE(7981)] = 238837, + [SMALL_STATE(7982)] = 238847, + [SMALL_STATE(7983)] = 238857, + [SMALL_STATE(7984)] = 238867, + [SMALL_STATE(7985)] = 238877, + [SMALL_STATE(7986)] = 238887, + [SMALL_STATE(7987)] = 238897, + [SMALL_STATE(7988)] = 238907, + [SMALL_STATE(7989)] = 238917, + [SMALL_STATE(7990)] = 238927, + [SMALL_STATE(7991)] = 238937, + [SMALL_STATE(7992)] = 238947, + [SMALL_STATE(7993)] = 238957, + [SMALL_STATE(7994)] = 238967, + [SMALL_STATE(7995)] = 238977, + [SMALL_STATE(7996)] = 238987, + [SMALL_STATE(7997)] = 238997, + [SMALL_STATE(7998)] = 239007, + [SMALL_STATE(7999)] = 239017, + [SMALL_STATE(8000)] = 239027, + [SMALL_STATE(8001)] = 239037, + [SMALL_STATE(8002)] = 239047, + [SMALL_STATE(8003)] = 239057, + [SMALL_STATE(8004)] = 239067, + [SMALL_STATE(8005)] = 239077, + [SMALL_STATE(8006)] = 239087, + [SMALL_STATE(8007)] = 239097, + [SMALL_STATE(8008)] = 239107, + [SMALL_STATE(8009)] = 239117, + [SMALL_STATE(8010)] = 239127, + [SMALL_STATE(8011)] = 239137, + [SMALL_STATE(8012)] = 239147, + [SMALL_STATE(8013)] = 239157, + [SMALL_STATE(8014)] = 239167, + [SMALL_STATE(8015)] = 239177, + [SMALL_STATE(8016)] = 239187, + [SMALL_STATE(8017)] = 239197, + [SMALL_STATE(8018)] = 239207, + [SMALL_STATE(8019)] = 239217, + [SMALL_STATE(8020)] = 239227, + [SMALL_STATE(8021)] = 239237, + [SMALL_STATE(8022)] = 239247, + [SMALL_STATE(8023)] = 239257, + [SMALL_STATE(8024)] = 239267, + [SMALL_STATE(8025)] = 239277, + [SMALL_STATE(8026)] = 239287, + [SMALL_STATE(8027)] = 239297, + [SMALL_STATE(8028)] = 239307, + [SMALL_STATE(8029)] = 239317, + [SMALL_STATE(8030)] = 239327, + [SMALL_STATE(8031)] = 239337, + [SMALL_STATE(8032)] = 239347, + [SMALL_STATE(8033)] = 239357, + [SMALL_STATE(8034)] = 239367, + [SMALL_STATE(8035)] = 239377, + [SMALL_STATE(8036)] = 239387, + [SMALL_STATE(8037)] = 239397, + [SMALL_STATE(8038)] = 239407, + [SMALL_STATE(8039)] = 239417, + [SMALL_STATE(8040)] = 239427, + [SMALL_STATE(8041)] = 239437, + [SMALL_STATE(8042)] = 239447, + [SMALL_STATE(8043)] = 239457, + [SMALL_STATE(8044)] = 239467, + [SMALL_STATE(8045)] = 239477, + [SMALL_STATE(8046)] = 239487, + [SMALL_STATE(8047)] = 239497, + [SMALL_STATE(8048)] = 239507, + [SMALL_STATE(8049)] = 239517, + [SMALL_STATE(8050)] = 239527, + [SMALL_STATE(8051)] = 239537, + [SMALL_STATE(8052)] = 239547, + [SMALL_STATE(8053)] = 239557, + [SMALL_STATE(8054)] = 239567, + [SMALL_STATE(8055)] = 239577, + [SMALL_STATE(8056)] = 239587, + [SMALL_STATE(8057)] = 239597, + [SMALL_STATE(8058)] = 239607, + [SMALL_STATE(8059)] = 239617, + [SMALL_STATE(8060)] = 239627, + [SMALL_STATE(8061)] = 239637, + [SMALL_STATE(8062)] = 239647, + [SMALL_STATE(8063)] = 239657, + [SMALL_STATE(8064)] = 239667, + [SMALL_STATE(8065)] = 239677, + [SMALL_STATE(8066)] = 239687, + [SMALL_STATE(8067)] = 239697, + [SMALL_STATE(8068)] = 239707, + [SMALL_STATE(8069)] = 239717, + [SMALL_STATE(8070)] = 239727, + [SMALL_STATE(8071)] = 239737, + [SMALL_STATE(8072)] = 239747, + [SMALL_STATE(8073)] = 239757, + [SMALL_STATE(8074)] = 239767, + [SMALL_STATE(8075)] = 239777, + [SMALL_STATE(8076)] = 239787, + [SMALL_STATE(8077)] = 239797, + [SMALL_STATE(8078)] = 239807, + [SMALL_STATE(8079)] = 239817, + [SMALL_STATE(8080)] = 239827, + [SMALL_STATE(8081)] = 239837, + [SMALL_STATE(8082)] = 239847, + [SMALL_STATE(8083)] = 239857, + [SMALL_STATE(8084)] = 239867, + [SMALL_STATE(8085)] = 239877, + [SMALL_STATE(8086)] = 239887, + [SMALL_STATE(8087)] = 239897, + [SMALL_STATE(8088)] = 239907, + [SMALL_STATE(8089)] = 239917, + [SMALL_STATE(8090)] = 239927, + [SMALL_STATE(8091)] = 239937, + [SMALL_STATE(8092)] = 239947, + [SMALL_STATE(8093)] = 239957, + [SMALL_STATE(8094)] = 239967, + [SMALL_STATE(8095)] = 239977, + [SMALL_STATE(8096)] = 239987, + [SMALL_STATE(8097)] = 239997, + [SMALL_STATE(8098)] = 240007, + [SMALL_STATE(8099)] = 240017, + [SMALL_STATE(8100)] = 240027, + [SMALL_STATE(8101)] = 240037, + [SMALL_STATE(8102)] = 240047, + [SMALL_STATE(8103)] = 240057, + [SMALL_STATE(8104)] = 240067, + [SMALL_STATE(8105)] = 240077, + [SMALL_STATE(8106)] = 240087, + [SMALL_STATE(8107)] = 240097, + [SMALL_STATE(8108)] = 240107, + [SMALL_STATE(8109)] = 240117, + [SMALL_STATE(8110)] = 240127, + [SMALL_STATE(8111)] = 240137, + [SMALL_STATE(8112)] = 240147, + [SMALL_STATE(8113)] = 240157, + [SMALL_STATE(8114)] = 240167, + [SMALL_STATE(8115)] = 240177, + [SMALL_STATE(8116)] = 240187, + [SMALL_STATE(8117)] = 240197, + [SMALL_STATE(8118)] = 240207, + [SMALL_STATE(8119)] = 240217, + [SMALL_STATE(8120)] = 240227, + [SMALL_STATE(8121)] = 240237, + [SMALL_STATE(8122)] = 240247, + [SMALL_STATE(8123)] = 240257, + [SMALL_STATE(8124)] = 240267, + [SMALL_STATE(8125)] = 240277, + [SMALL_STATE(8126)] = 240287, + [SMALL_STATE(8127)] = 240297, + [SMALL_STATE(8128)] = 240307, + [SMALL_STATE(8129)] = 240317, + [SMALL_STATE(8130)] = 240327, + [SMALL_STATE(8131)] = 240337, + [SMALL_STATE(8132)] = 240347, + [SMALL_STATE(8133)] = 240357, + [SMALL_STATE(8134)] = 240367, + [SMALL_STATE(8135)] = 240377, + [SMALL_STATE(8136)] = 240387, + [SMALL_STATE(8137)] = 240397, + [SMALL_STATE(8138)] = 240407, + [SMALL_STATE(8139)] = 240417, + [SMALL_STATE(8140)] = 240427, + [SMALL_STATE(8141)] = 240437, + [SMALL_STATE(8142)] = 240447, + [SMALL_STATE(8143)] = 240457, + [SMALL_STATE(8144)] = 240467, + [SMALL_STATE(8145)] = 240477, + [SMALL_STATE(8146)] = 240487, + [SMALL_STATE(8147)] = 240497, + [SMALL_STATE(8148)] = 240507, + [SMALL_STATE(8149)] = 240517, + [SMALL_STATE(8150)] = 240527, + [SMALL_STATE(8151)] = 240537, + [SMALL_STATE(8152)] = 240547, + [SMALL_STATE(8153)] = 240557, + [SMALL_STATE(8154)] = 240567, + [SMALL_STATE(8155)] = 240577, + [SMALL_STATE(8156)] = 240587, + [SMALL_STATE(8157)] = 240597, + [SMALL_STATE(8158)] = 240607, + [SMALL_STATE(8159)] = 240617, + [SMALL_STATE(8160)] = 240627, + [SMALL_STATE(8161)] = 240637, + [SMALL_STATE(8162)] = 240647, + [SMALL_STATE(8163)] = 240657, + [SMALL_STATE(8164)] = 240667, + [SMALL_STATE(8165)] = 240677, + [SMALL_STATE(8166)] = 240687, + [SMALL_STATE(8167)] = 240697, + [SMALL_STATE(8168)] = 240707, + [SMALL_STATE(8169)] = 240717, + [SMALL_STATE(8170)] = 240727, + [SMALL_STATE(8171)] = 240737, + [SMALL_STATE(8172)] = 240747, + [SMALL_STATE(8173)] = 240757, + [SMALL_STATE(8174)] = 240767, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7759), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8005), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7714), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5881), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8127), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6095), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4950), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7414), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6154), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4870), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7456), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6216), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7710), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7586), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5057), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5018), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5406), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7529), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6564), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7759), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7958), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5136), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5538), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7704), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7541), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5243), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6654), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7799), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7672), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7728), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5838), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5839), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7628), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6806), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8139), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7990), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7873), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5661), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5963), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7096), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6566), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7377), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7460), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4957), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4958), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5324), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7645), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7101), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4959), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7213), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6713), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7518), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7708), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4911), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5472), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7811), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7215), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5036), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7105), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7216), [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6138), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7624), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7592), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7640), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7759), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7735), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5679), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7014), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6348), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7492), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4815), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5337), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7810), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6856), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4819), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7093), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5348), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7986), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7909), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7806), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8005), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7901), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5682), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7304), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6491), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7703), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4901), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7830), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7045), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7245), [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6003), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7682), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6219), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7833), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5809), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6087), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6088), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7423), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6245), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7896), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7933), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4954), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4955), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7486), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7502), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6289), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6150), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6151), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6152), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7509), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6401), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7991), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8099), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4808), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7650), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7476), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5382), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6315), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7720), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5795), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6130), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6135), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6151), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5103), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6180), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6423), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7213), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7693), - [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7818), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), - [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6152), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6153), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6154), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5995), - [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2646), - [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6203), - [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6204), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6205), - [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4744), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4744), - [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2435), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7423), - [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2632), - [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2595), - [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2757), - [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(853), - [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(49), - [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6245), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7896), - [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7933), - [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5101), - [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5103), - [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5427), - [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7486), - [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2141), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6180), - [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1974), - [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1257), - [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7), - [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5372), - [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6423), - [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1168), - [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2758), - [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3381), - [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2596), - [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5277), - [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6289), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3668), - [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5203), - [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5376), - [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2143), - [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2129), - [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(813), - [751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(813), - [754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(841), - [757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(828), - [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1810), - [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1810), - [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1875), - [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7640), - [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2112), - [775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6247), - [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1821), - [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6073), - [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5897), - [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7672), - [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1806), - [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7720), - [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5983), - [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2640), - [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6163), - [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6164), - [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6165), - [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4744), - [814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4744), - [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2435), - [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7423), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2632), - [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2595), - [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2757), - [832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(853), - [835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(49), - [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6245), - [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7896), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7933), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4954), - [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4955), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5427), - [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7486), - [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2141), - [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4998), - [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2152), - [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1257), - [871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7), - [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5372), - [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7502), - [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1168), - [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2758), - [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3381), - [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2596), - [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5277), - [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6289), - [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3890), - [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5203), - [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5376), - [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2143), - [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2129), - [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(813), - [916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(813), - [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(841), - [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(828), - [925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1810), - [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1810), - [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1875), - [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7640), - [937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2112), - [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6247), - [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1821), - [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6073), - [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5897), - [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7672), - [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1791), - [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7720), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7886), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6208), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6232), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5121), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6241), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6407), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8150), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7846), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7812), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6014), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6110), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6111), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6112), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), + [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), + [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6019), + [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2661), + [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6243), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6146), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6147), + [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4689), + [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4689), + [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2432), + [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7509), + [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2646), + [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2600), + [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2781), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(848), + [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(62), + [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6401), + [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7991), + [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8099), + [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4806), + [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4808), + [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5500), + [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7650), + [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2175), + [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5213), + [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2159), + [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1254), + [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7), + [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5381), + [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7476), + [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1166), + [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2782), + [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3404), + [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2601), + [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5382), + [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6315), + [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3872), + [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5227), + [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5384), + [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2129), + [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2138), + [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(806), + [751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(806), + [754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(840), + [757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(827), + [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1781), + [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1781), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1901), + [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7806), + [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2116), + [775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6402), + [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1771), + [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6121), + [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5792), + [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7990), + [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1758), + [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7886), + [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6025), + [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2664), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6203), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6204), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6205), + [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4689), + [814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4689), + [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2432), + [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7509), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2646), + [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2600), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2781), + [832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(848), + [835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(62), + [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6401), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7991), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8099), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5121), + [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5128), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5500), + [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7650), + [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2175), + [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6241), + [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1976), + [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1254), + [871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7), + [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5381), + [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6407), + [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1166), + [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2782), + [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3404), + [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2601), + [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5382), + [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6315), + [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3706), + [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5227), + [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5384), + [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2129), + [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2138), + [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(806), + [916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(806), + [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(840), + [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(827), + [925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1781), + [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1781), + [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1901), + [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7806), + [937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2116), + [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6402), + [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1771), + [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6121), + [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5792), + [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7990), + [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1813), + [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7886), [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 21), [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 21), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5525), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), - [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5525), + [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5593), [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 101), [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 101), [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 102), [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 102), [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), - [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), - [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), - [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), + [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), + [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), + [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), + [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), + [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 147), [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 147), [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 148), [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 148), - [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 21), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 21), - [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), - [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), - [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6646), - [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4744), - [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4744), - [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(853), - [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(49), - [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6646), - [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7933), - [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5101), - [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5103), - [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6180), - [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1972), - [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1257), + [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), + [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), + [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [1035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 21), + [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 21), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6773), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6506), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4689), + [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4689), + [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(62), + [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6773), + [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8099), + [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5121), + [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5128), + [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6241), + [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1974), + [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1254), [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7), - [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5372), - [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6423), + [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5381), + [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6407), [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1170), - [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3668), - [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5203), - [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5376), - [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2143), - [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2129), - [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(831), - [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(831), - [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(861), - [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(840), - [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1810), - [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1810), - [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1875), - [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7640), - [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2112), - [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6247), - [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1821), - [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6073), - [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5897), - [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7672), - [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1806), - [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7720), - [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4744), - [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4744), - [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(853), - [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(49), - [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6646), - [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7933), - [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4954), - [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4955), - [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4998), - [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2151), - [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1257), + [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3706), + [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5227), + [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5384), + [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2129), + [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2138), + [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(829), + [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(829), + [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(850), + [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(844), + [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1781), + [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1781), + [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1901), + [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7806), + [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2116), + [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6402), + [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1771), + [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6121), + [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5792), + [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7990), + [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1813), + [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7886), + [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4689), + [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4689), + [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(62), + [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6773), + [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8099), + [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4806), + [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4808), + [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5213), + [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2156), + [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1254), [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7), - [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5372), - [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7502), + [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5381), + [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7476), [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1170), - [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3890), - [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5203), - [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5376), - [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2143), - [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2129), - [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(831), - [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(831), - [1240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(861), - [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(840), - [1246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1810), - [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1810), - [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1875), - [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7640), - [1258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2112), - [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6247), - [1264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1821), - [1267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6073), - [1270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5897), - [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7672), - [1276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1791), - [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7720), + [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3872), + [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5227), + [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5384), + [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2129), + [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2138), + [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(829), + [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(829), + [1240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(850), + [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(844), + [1246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1781), + [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1781), + [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1901), + [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7806), + [1258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2116), + [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6402), + [1264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1771), + [1267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6121), + [1270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5792), + [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7990), + [1276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1758), + [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7886), [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), @@ -434833,5393 +438889,5395 @@ static const TSParseActionEntry ts_parse_actions[] = { [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(206), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7782), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7782), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7786), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7786), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7972), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6539), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [1339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7972), - [1342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7782), - [1345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7782), - [1348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(74), - [1351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6539), - [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7624), - [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), - [1359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(87), - [1362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7755), - [1365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3579), - [1368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3579), - [1371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3665), - [1374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3615), - [1377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(2431), - [1380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(2431), - [1383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6267), - [1386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1551), - [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(210), - [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7735), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [1399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7810), - [1402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7782), - [1405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7782), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8061), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7738), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [1337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(8061), + [1340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7786), + [1343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7786), + [1346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(74), + [1349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6686), + [1352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7986), + [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), + [1357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(99), + [1360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7738), + [1363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3602), + [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3602), + [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3725), + [1372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3635), + [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(2385), + [1378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(2385), + [1381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6420), + [1384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1544), + [1387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(211), + [1390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7901), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), + [1399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7830), + [1402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7786), + [1405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7786), [1408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(74), - [1411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6506), - [1414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7624), - [1417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(75), - [1420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7682), - [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3579), - [1426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3579), - [1429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3665), - [1432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3615), - [1435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(2431), - [1438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(2431), - [1441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6267), - [1444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1551), - [1447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(208), - [1450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7735), + [1411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6656), + [1414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7986), + [1417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(97), + [1420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7833), + [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3602), + [1426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3602), + [1429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3725), + [1432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3635), + [1435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(2385), + [1438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(2385), + [1441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6420), + [1444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1544), + [1447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(207), + [1450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7901), [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [1465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(304), + [1465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(226), [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), - [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [1476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1962), - [1479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(321), - [1482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(308), - [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [1523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(309), - [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), - [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), - [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 39), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6578), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 39), - [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), - [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), - [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 134), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6581), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 134), - [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), - [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 38), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 38), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(311), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [1509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1926), + [1512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(337), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [1523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(310), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), + [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 39), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6725), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 39), + [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), + [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), + [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 38), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 38), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 132), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 132), - [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 131), - [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 131), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 133), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 133), - [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5528), - [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6728), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 134), + [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 134), + [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), + [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 131), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 131), + [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 132), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 132), + [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 133), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 133), + [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5596), [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5527), - [1795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5528), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6516), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), - [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), - [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), - [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7729), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), - [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), - [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), - [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7750), - [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), - [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6329), - [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4465), - [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6094), - [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7119), - [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7776), - [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), - [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 2, 0, 0), - [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5437), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), - [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5516), - [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 87), - [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 3, 0, 0), - [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 87), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), - [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5527), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 218), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5526), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 218), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 239), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 239), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 103), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 103), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), - [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 149), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 149), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5516), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 152), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 152), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 149), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 149), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 184), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 184), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 185), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 185), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 186), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 186), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 184), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 184), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 216), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 216), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 185), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 185), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 186), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 186), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 217), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 217), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 218), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 218), - [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 216), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 216), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6509), - [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4519), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5317), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), - [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7654), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), - [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), - [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), - [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4870), - [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), - [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7722), - [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), - [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6291), - [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4517), - [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), - [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), - [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7180), - [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4642), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7749), - [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 217), - [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 217), - [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 239), - [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 239), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), - [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), - [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), - [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), - [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), - [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), - [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), - [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), - [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), - [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), - [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 21), - [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 21), - [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5517), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5526), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 86), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 86), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 114), - [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 114), - [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 119), - [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 119), - [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 22), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 22), - [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 84), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 84), - [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 85), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 85), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5595), + [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [1791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5596), + [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 87), + [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 3, 0, 0), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 87), + [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 2, 0, 0), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), + [1830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5595), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5584), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5594), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), + [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), + [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), + [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 103), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 103), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), + [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 149), + [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 149), + [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 152), + [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 152), + [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 149), + [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 149), + [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 184), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 184), + [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 185), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 185), + [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 218), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 218), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 239), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 239), + [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 186), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 186), + [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 184), + [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 184), + [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 216), + [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 216), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 185), + [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 185), + [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 239), + [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 239), + [1935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5584), + [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 186), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 186), + [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6665), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), + [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5317), + [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), + [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), + [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7869), + [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), + [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), + [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), + [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4792), + [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4527), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7916), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6478), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6132), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7230), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7942), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 217), + [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 217), + [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 218), + [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 218), + [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 216), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 216), + [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 217), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 217), + [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 21), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 21), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5585), + [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6659), + [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), + [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), + [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), + [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5279), + [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7940), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), + [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), + [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), + [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7888), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6439), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5813), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7172), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7915), + [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 84), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 84), + [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 85), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 85), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 86), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 86), + [2154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5594), + [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 22), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5466), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), + [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 22), + [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 114), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 114), + [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 119), + [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 119), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 39), - [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 39), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5517), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), - [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), - [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 40), - [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 40), - [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), - [2222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 40), - [2224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 40), - [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5436), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), - [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 123), - [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 4, 0, 0), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 123), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), - [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 173), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 5, 0, 0), - [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 173), - [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), - [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), - [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5463), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), + [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), + [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), + [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), + [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5585), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), + [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), + [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 39), + [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 39), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 40), + [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), + [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 40), + [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), + [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 40), + [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 40), + [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 123), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 4, 0, 0), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 123), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), + [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 173), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 5, 0, 0), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 173), + [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), - [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 105), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 19), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), - [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 19), - [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), - [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 51), - [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 52), - [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 19), - [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), - [2322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(646), - [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), - [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6976), - [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 216), - [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 216), - [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 6), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 6), - [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 217), - [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 217), - [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 218), - [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 218), - [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 10, 0, 239), - [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 10, 0, 239), - [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), - [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), - [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 149), - [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 149), - [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 122), - [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 122), - [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 38), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 38), - [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), - [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), - [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 152), - [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 152), - [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 166), - [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 166), - [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 118), - [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 118), - [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), - [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), - [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 164), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 164), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6950), - [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 167), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 167), - [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), - [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), - [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 168), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 168), - [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 169), - [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 169), - [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 170), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 170), - [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 171), - [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 171), - [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 184), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 184), - [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 172), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 172), - [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 17), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 17), - [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), - [2453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(707), - [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 185), - [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 185), - [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 186), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 186), - [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), - [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), - [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), - [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), - [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 120), - [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 120), - [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 121), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 121), - [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), - [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), - [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), - [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 128), - [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 128), - [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 103), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 103), - [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), - [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 21), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 21), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [2302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 51), + [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 52), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 105), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), + [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 19), + [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), + [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7096), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), + [2334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(668), + [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 152), + [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 152), + [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), + [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 169), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 169), + [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 170), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 170), + [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 171), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 171), + [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 172), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 172), + [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 185), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 185), + [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 21), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 21), + [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 186), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 186), + [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 38), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 38), + [2387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(703), + [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 128), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 128), + [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), + [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), + [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), + [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), + [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), + [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), + [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 103), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 103), + [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 118), + [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 118), + [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), + [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), + [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 120), + [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 120), + [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 121), + [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 121), + [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 164), + [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 164), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7077), + [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 122), + [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 122), + [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 149), + [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 149), + [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), + [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), + [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 216), + [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 216), + [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 217), + [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 217), + [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), + [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), + [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), + [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), + [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 6), + [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 6), + [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 218), + [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 218), + [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), + [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), + [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 10, 0, 239), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 10, 0, 239), + [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 184), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 184), + [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 166), + [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 166), + [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 167), + [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 167), + [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 17), + [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 17), + [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), + [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), + [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 168), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 168), [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), - [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(1962), - [2529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(794), - [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6548), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5038), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), - [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7828), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7506), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7909), - [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [2606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(796), - [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2, 0, 0), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6526), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7790), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), - [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7370), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7370), - [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7853), - [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3, 0, 0), - [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 4, 0, 0), - [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 3, 0, 0), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), - [2681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(865), - [2684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(57), - [2687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6526), - [2690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1610), - [2693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1628), - [2696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(16), - [2699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5288), - [2702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5289), - [2705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1584), - [2708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1615), - [2711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1264), - [2714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1264), - [2717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1352), - [2720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1269), - [2723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1764), - [2726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1714), - [2729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1687), - [2732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7790), - [2735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1587), - [2738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6427), - [2741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1783), - [2744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6113), - [2747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5744), - [2750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7370), - [2753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7370), - [2756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1733), - [2759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7853), - [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 5, 0, 0), - [2764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(2875), - [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), - [2769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(865), - [2772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(57), - [2775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6526), - [2778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1610), - [2781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1628), - [2784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(16), - [2787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5288), - [2790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5289), - [2793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1584), - [2796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1615), - [2799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1264), - [2802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1264), - [2805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1352), - [2808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1269), - [2811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1764), - [2814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1714), - [2817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1687), - [2820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7790), - [2823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1587), - [2826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6427), - [2829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1783), - [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6113), - [2835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5744), - [2838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7370), - [2841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7370), - [2844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1733), - [2847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7853), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4, 0, 0), - [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6499), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7701), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), - [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7789), - [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [2944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(857), - [2947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(51), - [2950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6499), - [2953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1690), - [2956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1712), - [2959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(10), - [2962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5272), - [2965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5275), - [2968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1684), - [2971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1693), - [2974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1336), - [2977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1336), - [2980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1398), - [2983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1373), - [2986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1942), - [2989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1794), - [2992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1815), - [2995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7701), - [2998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1685), - [3001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6349), - [3004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1873), - [3007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6100), - [3010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5856), - [3013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1822), - [3016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7789), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), - [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7620), - [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6697), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7994), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7465), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8075), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(1926), + [2603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(797), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(784), + [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3, 0, 0), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6674), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7955), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6576), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7570), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8019), + [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4, 0, 0), + [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 4, 0, 0), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 3, 0, 0), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), + [2713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(861), + [2716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(55), + [2719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6674), + [2722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1639), + [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1641), + [2728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(16), + [2731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5330), + [2734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5331), + [2737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1612), + [2740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1644), + [2743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1262), + [2746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1262), + [2749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1359), + [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1306), + [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1812), + [2758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1706), + [2761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1714), + [2764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7955), + [2767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1634), + [2770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6576), + [2773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1791), + [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6092), + [2779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5893), + [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7570), + [2785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7570), + [2788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1701), + [2791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(8019), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 5, 0, 0), + [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(2868), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), + [2809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(861), + [2812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(55), + [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6674), + [2818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1639), + [2821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1641), + [2824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(16), + [2827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5330), + [2830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5331), + [2833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1612), + [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1644), + [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1262), + [2842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1262), + [2845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1359), + [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1306), + [2851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1812), + [2854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1706), + [2857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1714), + [2860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7955), + [2863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1634), + [2866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6576), + [2869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1791), + [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6092), + [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5893), + [2878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7570), + [2881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7570), + [2884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1701), + [2887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(8019), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2, 0, 0), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8000), + [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8000), + [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(853), + [2921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(48), + [2924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6649), + [2927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1696), + [2930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1697), + [2933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(10), + [2936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5266), + [2939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5268), + [2942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1711), + [2945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1656), + [2948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1308), + [2951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1308), + [2954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1386), + [2957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1349), + [2960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1946), + [2963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1727), + [2966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1774), + [2969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7867), + [2972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1715), + [2975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6492), + [2978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1965), + [2981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6211), + [2984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5852), + [2987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1824), + [2990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7954), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6649), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7867), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6492), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7954), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8004), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8004), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4869), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7974), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7974), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7780), - [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7780), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6712), + [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7787), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7787), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6369), [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), - [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7089), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7046), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6594), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7931), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6718), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6760), + [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7054), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6247), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8003), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7092), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7698), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7812), - [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7812), - [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), - [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7651), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), - [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7549), - [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [3203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(856), - [3206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(48), - [3209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6712), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7864), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), + [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7832), + [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4851), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8138), + [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8138), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7848), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7848), + [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [3203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(852), + [3206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(52), + [3209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6369), [3212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5), - [3215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5351), - [3218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(75), - [3221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5240), - [3224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6706), - [3227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6656), - [3230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7682), - [3233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5055), - [3236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5055), - [3239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5354), - [3242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5220), - [3245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7089), - [3248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7046), - [3251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6594), - [3254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7931), - [3257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6711), - [3260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6718), - [3263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5497), - [3266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6026), - [3269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5755), - [3272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(855), - [3275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7506), - [3278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7506), + [3215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5256), + [3218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(97), + [3221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5258), + [3224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6331), + [3227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6760), + [3230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7833), + [3233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5127), + [3236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5127), + [3239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5260), + [3242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5189), + [3245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7054), + [3248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7069), + [3251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6247), + [3254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8003), + [3257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6341), + [3260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6372), + [3263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5625), + [3266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6144), + [3269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5729), + [3272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(858), + [3275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7465), + [3278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7465), [3281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7092), - [3284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7698), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5749), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [3284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7864), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6630), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 1, 0, 0), [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1, 0, 0), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7502), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6411), - [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7541), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6533), - [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7966), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7777), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), - [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7840), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6647), - [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5305), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), - [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6557), + [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6680), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8134), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5747), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7943), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6559), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), + [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8006), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7628), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6244), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5340), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6590), - [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [3543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [3553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), - [3555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1177), - [3558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1177), - [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), - [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6542), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), - [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), - [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), - [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7764), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), - [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7903), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), - [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6870), - [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), - [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5233), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), - [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), - [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(7672), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1200), - [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1198), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [3694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7672), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), - [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6741), - [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7449), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), - [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7141), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6572), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7854), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), - [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7916), - [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7864), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6573), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), - [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7924), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7802), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7902), - [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5105), - [3911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1231), - [3914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(64), - [3917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6290), - [3920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(215), - [3923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6870), - [3926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5282), - [3929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5283), - [3932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6728), - [3935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6677), - [3938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5233), - [3941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5233), - [3944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5453), - [3947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5333), - [3950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1810), - [3953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6672), - [3956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1875), - [3959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7640), - [3962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6380), - [3965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6247), - [3968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1821), - [3971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7370), - [3974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7370), - [3977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1964), - [3980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7720), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6328), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7536), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5416), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7458), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7892), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6502), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7614), - [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6277), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5901), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), - [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5026), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), - [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6136), - [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6520), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), - [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7042), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), - [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), - [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6747), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7736), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), - [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), - [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), - [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5603), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7717), - [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6467), - [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5903), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), - [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6492), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7498), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), - [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7435), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7819), - [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5812), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), - [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7656), - [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6426), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7944), - [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6496), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5890), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6844), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7115), - [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7000), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6329), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), - [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6545), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5938), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), - [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7815), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), - [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7907), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7956), - [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5985), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7884), - [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6559), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5745), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), - [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), - [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5677), - [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7841), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6530), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), - [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7911), - [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7613), - [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6562), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), - [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6540), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7914), - [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5513), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [4573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(1233), - [4576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), - [4578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(58), - [4581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(6536), - [4584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(213), - [4587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(5239), - [4590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(5261), - [4593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3080), - [4596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3017), - [4599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2536), - [4602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2536), - [4605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2677), - [4608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2582), - [4611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3091), - [4614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3031), - [4617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3028), - [4620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7802), - [4623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3079), - [4626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(6500), - [4629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3110), - [4632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7506), - [4635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7506), - [4638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3148), - [4641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7902), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [4646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5603), - [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [4657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5496), - [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5539), - [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5259), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), - [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [4722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5513), - [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [4731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5539), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [4756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [4770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5507), - [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5414), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5508), - [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), - [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), - [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [4823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5508), - [4826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), - [4828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), - [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5630), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), - [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5588), - [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), - [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), - [4916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), - [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [4926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), - [4928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), - [4938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5383), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), - [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), - [4958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [4968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5492), - [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [4973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), - [4977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), - [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [4981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), - [4985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), - [4987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5495), - [4993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5588), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6523), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), - [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5457), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [5014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 21), - [5016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 21), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [5020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), - [5022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [5026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5495), - [5029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 187), - [5031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 187), - [5033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [5037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 15), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5585), - [5051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 21), - [5053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 21), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6830), - [5059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, 0, 29), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [5073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5591), - [5076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), - [5078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), - [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [5084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 43), - [5086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), - [5088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), - [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [5096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 141), - [5098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 141), - [5100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 142), - [5102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 142), - [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6639), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6639), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 10, 0), - [5122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 10, 0), - [5124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), - [5126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 0, 0), - [5128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 97), - [5130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 97), - [5132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5585), - [5135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [5138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [5143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 96), - [5145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 96), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7058), - [5149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1962), - [5152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [5154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [5162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), - [5164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), - [5166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 96), - [5168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 96), - [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 97), - [5172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 97), - [5174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 141), - [5176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 141), - [5178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 142), - [5180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 142), - [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), - [5186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 83), - [5188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 83), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), - [5196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), - [5198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), - [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6290), - [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), - [5204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), - [5206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), - [5208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), - [5210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), - [5212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 194), - [5214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 194), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), - [5218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [5220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [5222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [5224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [5226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5554), - [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5467), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6739), + [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5337), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [3543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), + [3545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1186), + [3548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1186), + [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [3555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(7990), + [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [3584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1192), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), + [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7010), + [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6804), + [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6540), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6689), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), + [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), + [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7930), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), + [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4869), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8069), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [3671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1199), + [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [3688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), + [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), + [3694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7990), + [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [3711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8030), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), + [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7551), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7551), + [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8090), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), + [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7263), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), + [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7268), + [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6719), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5285), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8020), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), + [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8082), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [3857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1233), + [3860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(63), + [3863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6437), + [3866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(217), + [3869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7010), + [3872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5276), + [3875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5277), + [3878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6258), + [3881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6804), + [3884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5178), + [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5178), + [3890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5439), + [3893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5342), + [3896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1781), + [3899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6426), + [3902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1901), + [3905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7806), + [3908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6540), + [3911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6402), + [3914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1771), + [3917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7570), + [3920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7570), + [3923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1957), + [3926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7886), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7968), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8068), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6476), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7486), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7622), + [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5359), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7502), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7985), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5025), + [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6652), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7858), + [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6706), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), + [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5716), + [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8007), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6678), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), + [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8077), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8004), + [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6645), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7294), + [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6971), + [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8156), + [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6668), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7277), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7139), + [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5327), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6861), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6126), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7914), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6693), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5871), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7981), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8073), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7740), + [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5882), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8171), + [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6662), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7902), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), + [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8173), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8143), + [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6641), + [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7467), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7635), + [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5020), + [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), + [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8031), + [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6710), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), + [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8080), + [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7853), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6454), + [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6619), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6770), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), + [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), + [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [4497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8141), + [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6574), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5853), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), + [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5124), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5554), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5566), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), + [4587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5566), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), + [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [4600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(1241), + [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), + [4605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(56), + [4608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(6683), + [4611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(212), + [4614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(5253), + [4617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(5272), + [4620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3057), + [4623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3063), + [4626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2562), + [4629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2562), + [4632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2680), + [4635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2608), + [4638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3146), + [4641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3035), + [4644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3031), + [4647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7968), + [4650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3037), + [4653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(6650), + [4656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3125), + [4659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7465), + [4662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7465), + [4665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3156), + [4668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(8068), + [4671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5554), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5575), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7368), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7047), + [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7110), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7203), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [4716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5532), + [4719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5581), + [4722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [4730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5443), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), + [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [4766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5575), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5406), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5561), + [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5448), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5549), + [4849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5576), + [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5644), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), + [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), + [4884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), + [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), + [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), + [4898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), + [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [4904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5549), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), + [4913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5561), + [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [4922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [4926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), + [4928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [4932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [4934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), + [4938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), + [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [4962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), + [4964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), + [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [4968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), + [4970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), + [4976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [4986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), + [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [4996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 21), + [4998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 21), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 187), + [5004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 187), + [5006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5565), + [5009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), + [5011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), + [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [5017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5521), + [5020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5506), + [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [5040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, 0, 29), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6511), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [5052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), + [5054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), + [5056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 21), + [5058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 21), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), + [5064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), + [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 43), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6951), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [5074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 15), + [5076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5506), + [5079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 141), + [5081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 141), + [5083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 142), + [5085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 142), + [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6755), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6988), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [5097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 96), + [5099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 96), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6671), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [5109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5483), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [5119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 97), + [5121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 97), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [5125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1926), + [5128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [5130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [5132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 141), + [5134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 141), + [5136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 142), + [5138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 142), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [5144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 10, 0), + [5146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 10, 0), + [5148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), + [5150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 0, 0), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7182), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [5160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [5163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 96), + [5172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 96), + [5174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 97), + [5176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 97), + [5178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 83), + [5180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 83), + [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5495), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [5192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), + [5194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), + [5198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), + [5200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), + [5202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 194), + [5204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 194), + [5206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [5208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [5210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [5212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6437), + [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), + [5218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5597), + [5221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), + [5223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), + [5233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), + [5235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), [5237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 82), [5239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 82), - [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [5243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [5245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [5250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [5256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), - [5258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), - [5260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), - [5262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), - [5264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), - [5266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), - [5268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), - [5270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), - [5272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), - [5274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), - [5276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), - [5278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), - [5280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), - [5282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), - [5284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), - [5286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), - [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7347), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7347), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), - [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), - [5298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), - [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), - [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 194), - [5318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 194), - [5320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), - [5322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), - [5324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), - [5326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), - [5328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), - [5330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), - [5332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), - [5334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), - [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5596), - [5374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), SHIFT(1962), - [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [5407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), SHIFT(1962), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), - [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [5422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), SHIFT(1962), - [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [5431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [5453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [5461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6569), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [5465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), - [5469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), - [5471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), SHIFT(1962), - [5474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5503), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), - [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), - [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), - [5493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), - [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [5521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [5525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5596), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5521), - [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [5588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7347), - [5591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7347), - [5594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3592), - [5597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3765), - [5600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3635), - [5603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6718), - [5606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(5497), - [5609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7698), - [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), - [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), - [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), - [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7763), - [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5514), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [5648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5521), - [5651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), - [5653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), - [5655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 8), - [5657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 8), - [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5685), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7905), - [5669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7637), - [5679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 50), - [5693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 50), - [5695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 50), - [5697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 50), - [5699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5510), - [5701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [5704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [5706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [5708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [5710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), - [5712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 105), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [5716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7572), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8000), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7444), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7097), - [5736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2761), - [5739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 51), - [5741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [5743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5540), - [5748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [5750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 52), - [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [5764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 19), - [5766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5432), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), - [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [5778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5514), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6454), - [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5785), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7747), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), - [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [5807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5522), - [5809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [5811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [5814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [5816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5510), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6693), - [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7648), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), - [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [5851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2794), - [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5615), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6379), - [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7706), - [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [5874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), - [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6643), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [5880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), - [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5515), - [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7222), - [5886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2861), - [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7345), - [5891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 202), - [5893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 202), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [5897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5464), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), - [5901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [5905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2893), - [5908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [5912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [5914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [5916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(2827), - [5919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6752), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [5923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2875), - [5926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [5928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), - [5930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [5934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), - [5936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [5938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [5940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [5943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [5951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [5955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [5959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6378), - [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6929), - [5963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5522), - [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [5972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6600), - [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6632), - [5976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), - [5978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), - [5980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), - [5982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), - [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [5986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2986), - [5989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7270), - [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [6003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [6013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [6021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5515), - [6024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [6040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), - [6042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [6046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), - [6048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [6050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [6052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [6054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [6056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4911), - [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4916), - [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4963), - [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4964), - [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4991), - [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5095), - [6072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4794), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [6080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3037), - [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5014), - [6089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [6091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5075), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [6107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), - [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6908), - [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), - [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [6117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3053), - [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [6124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [6126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [6129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [6131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3150), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [6140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 232), - [6142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 232), - [6144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 202), - [6146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 202), - [6148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 198), - [6150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 198), - [6152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 200), - [6154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 200), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [6158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 111), - [6160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 111), - [6162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 112), - [6164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 112), + [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), + [5243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), + [5245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [5247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [5249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [5254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [5260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), + [5262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), + [5264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), + [5266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 194), + [5268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 194), + [5270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), + [5272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), + [5274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), + [5276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [5290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), + [5292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), + [5294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), + [5296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), + [5298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), + [5300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), + [5302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), + [5304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), + [5306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), + [5308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), + [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7560), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7560), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7051), + [5318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), + [5320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), + [5324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), + [5326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), + [5328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), + [5330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), + [5332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), SHIFT(1926), + [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [5407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), SHIFT(1926), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5530), + [5416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), SHIFT(1926), + [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [5425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), SHIFT(1926), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6716), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), + [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [5476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5570), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7111), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [5505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [5515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6700), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [5555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [5565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5530), + [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5589), + [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [5600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7560), + [5603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7560), + [5606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3623), + [5609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3792), + [5612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3646), + [5615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6372), + [5618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(5625), + [5621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7864), + [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7929), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), + [5650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 8), + [5652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 8), + [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5582), + [5656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6284), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7803), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [5676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5589), + [5679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), + [5685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), + [5687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 50), + [5689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 50), + [5691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 50), + [5693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 50), + [5695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), + [5699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2785), + [5702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), + [5704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 51), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [5708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), + [5710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 52), + [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [5716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5582), + [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [5727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [5739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [5743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5421), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), + [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), + [5759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [5763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 19), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6605), + [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7726), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7802), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), + [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7906), + [5787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 105), + [5789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [5792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [5794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [5796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5533), + [5801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6526), + [5807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8160), + [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [5817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5578), + [5820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [5824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2851), + [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5590), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6281), + [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), + [5859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [5861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [5863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [5866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), + [5870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [5872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [5874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(2813), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [5879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), + [5881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6976), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [5885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), + [5887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7290), + [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7297), + [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), + [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [5899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [5903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2903), + [5906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6373), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6403), + [5912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6405), + [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6512), + [5916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [5918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), + [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [5924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), + [5926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [5928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [5930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [5933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [5937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7167), + [5939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), + [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [5945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 202), + [5947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 202), + [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [5953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2921), + [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5405), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), + [5964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5590), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [5969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2868), + [5972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [5976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2964), + [5979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [5987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [5991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), + [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), + [5995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6838), + [5999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5583), + [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [6036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), + [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4914), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [6042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), + [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4924), + [6054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [6056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4926), + [6060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [6062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5094), + [6066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5123), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), + [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), + [6090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7035), + [6096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3053), + [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), + [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5167), + [6103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [6105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [6107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3021), + [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), + [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6979), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [6126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [6128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [6131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [6133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3154), + [6136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 198), + [6138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 198), + [6140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 200), + [6142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 200), + [6144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 232), + [6146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 232), + [6148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 202), + [6150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 202), + [6152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 111), + [6154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 111), + [6156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 112), + [6158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 112), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), [6166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), [6168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), - [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [6192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), - [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [6223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), - [6225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6492), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), - [6233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), - [6235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [6249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [6301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [6307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6590), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [6345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), - [6347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [6353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 180), SHIFT_REPEAT(6014), - [6356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 180), SHIFT_REPEAT(5993), - [6359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 180), SHIFT_REPEAT(5932), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), - [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [6374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), - [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5488), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6467), - [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [6430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5505), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), - [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), - [6447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3421), - [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [6454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), - [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), - [6462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5488), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7411), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7236), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5512), - [6489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5499), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7687), - [6500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 98), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7977), - [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7823), - [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7700), - [6510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5512), - [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5520), - [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [6519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3499), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6803), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [6542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5615), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4968), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), - [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), - [6561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5520), - [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [6568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), - [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [6586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [6596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), - [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), - [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4970), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [6184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [6187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8100), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [6215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7469), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [6229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [6235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [6241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [6249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [6281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [6289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [6295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [6299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [6321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), + [6323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), + [6325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), + [6327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [6335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [6349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [6353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), + [6381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [6385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 180), SHIFT_REPEAT(6207), + [6388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 180), SHIFT_REPEAT(6004), + [6391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 180), SHIFT_REPEAT(6013), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), + [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [6426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5573), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [6433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3435), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), + [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [6452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6903), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6922), + [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), + [6476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5558), + [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [6483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5580), + [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7828), + [6487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 98), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7963), + [6493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5567), + [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8121), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7723), + [6502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5588), + [6508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3546), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), + [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [6521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5580), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [6528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5557), + [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5473), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [6541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [6547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [6551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5588), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4935), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [6568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [6586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [6598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4937), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), [6632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__expr_binary_expression, 1, 0, 0), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [6637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6875), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7850), - [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7850), - [6651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7985), - [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), - [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), - [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), - [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4985), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [6691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), - [6747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7713), - [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7430), - [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), - [6759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7588), - [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5712), - [6763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [6771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7870), - [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7870), - [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), - [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7699), - [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7699), - [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), - [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7858), - [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7858), - [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6386), - [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7798), - [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7798), - [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), - [6827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), - [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7556), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), - [6833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), - [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [6853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7856), - [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7856), - [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7490), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7996), - [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7996), - [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7940), - [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7940), - [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7610), - [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7610), - [6951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629), - [6953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7577), - [6963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7577), - [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), - [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7594), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7594), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7941), - [6975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7941), - [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7643), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7696), - [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7696), - [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6350), - [6985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [6989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 1, 0, 0), - [6991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [7055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), - [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), - [7059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), - [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), - [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), - [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4706), - [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), - [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), - [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), - [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), - [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), - [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), - [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [7147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), - [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), - [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), - [7175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(4056), - [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), - [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5058), - [7202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5511), - [7204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [7210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4694), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), - [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), - [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), - [7230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), - [7232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5421), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), - [7236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6555), - [7244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [7256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5509), - [7258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5511), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [7265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), - [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), - [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [7289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), - [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), - [7297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), - [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5519), - [7301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 62), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7443), - [7311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 62), - [7313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5509), - [7316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 82), - [7318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), - [7324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [7332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [7340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), - [7342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), - [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), - [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), - [7350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5519), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [7357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), - [7361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [7367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), - [7369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), + [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7008), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8101), + [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8101), + [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7925), + [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), + [6655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), + [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4961), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), + [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7733), + [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7733), + [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [6753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7813), + [6763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7813), + [6765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), + [6767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [6771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5411), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [6775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7868), + [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7868), + [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7799), + [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7799), + [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7543), + [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8002), + [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8002), + [6807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), + [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7893), + [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7893), + [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6776), + [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [6823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), + [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8016), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8016), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [6831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), + [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7827), + [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7827), + [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7641), + [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [6909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7903), + [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7903), + [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7725), + [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7725), + [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7782), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7938), + [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7938), + [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), + [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8027), + [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8027), + [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6762), + [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7820), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7820), + [6945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [6969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7977), + [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7977), + [6975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8025), + [6979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8025), + [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5719), + [6983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 1, 0, 0), + [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), + [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), + [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), + [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), + [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), + [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), + [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), + [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), + [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), + [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), + [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4902), + [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), + [7167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [7175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(4060), + [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), + [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), + [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), + [7202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), + [7204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), + [7210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), + [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [7236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), + [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [7242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), + [7244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5449), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [7248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5577), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [7256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5447), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [7266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [7282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5579), + [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [7289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), + [7291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), + [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5587), + [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4220), + [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [7309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 82), + [7311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), + [7313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), + [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), + [7317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [7323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5425), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), + [7327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 62), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7614), + [7337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 62), + [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), + [7341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5577), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [7348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5587), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [7355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), + [7357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), + [7359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), + [7361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 83), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), [7371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), [7373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), - [7375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [7379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 83), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), - [7385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), - [7387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), - [7391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), - [7395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6247), - [7397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [7399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), - [7401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5897), - [7403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4873), - [7405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 117), - [7407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 117), - [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4903), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), - [7413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 59), - [7415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 59), - [7417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [7425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [7429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [7433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), - [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [7437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 74), - [7439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 74), - [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), - [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5485), - [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), - [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [7451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), - [7453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6384), - [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), - [7467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), - [7469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), - [7471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5506), - [7474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [7476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), - [7480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 59), - [7482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 59), + [7375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [7381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), + [7383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [7389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 59), + [7391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 59), + [7393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4894), + [7395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [7399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [7403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), + [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6402), + [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [7411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6121), + [7413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), + [7415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4912), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [7421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [7429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [7433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6785), + [7435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [7437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6213), + [7439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), + [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), + [7443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 74), + [7445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 74), + [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [7451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5574), + [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), + [7456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), + [7458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [7464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 59), + [7466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 59), + [7468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5437), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), + [7472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 117), + [7474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 117), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [7478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [7480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), [7484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 117), [7486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 117), [7488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 62), [7490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 62), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), - [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5518), - [7498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 107), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), - [7516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), - [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), - [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), - [7522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 126), - [7524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), - [7526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), SHIFT(1962), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [7537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), - [7539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), SHIFT(1962), - [7542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [7546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 32), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [7550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [7554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), - [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [7560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [7564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 32), - [7566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 107), - [7568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5402), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), - [7572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), - [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), - [7576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [7578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [7580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 191), - [7582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 126), - [7584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 192), - [7586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 227), - [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [7592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 227), SHIFT(1962), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [7599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), - [7601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), SHIFT(1962), - [7604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 80), - [7606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 80), - [7608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [7614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), - [7620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 227), - [7622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5501), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [7627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [7629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1190), - [7632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(4056), - [7635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3344), - [7638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [7640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 32), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [7646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), - [7648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), - [7650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 4), - [7652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [7654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [7656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 205), - [7658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 205), - [7660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [7664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(1962), - [7667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), - [7671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7839), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7522), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7949), - [7691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7975), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [7695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 73), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [7719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [7723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5518), + [7492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), + [7494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5568), + [7497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 32), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [7511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 107), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [7525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), + [7527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), + [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), + [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [7535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 126), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [7545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), + [7547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [7555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [7559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [7563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [7569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), + [7571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), + [7573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5430), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), + [7583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 32), + [7585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 80), + [7587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 80), + [7589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), + [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4656), + [7593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [7595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [7597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 32), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [7603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 227), + [7605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [7607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1184), + [7610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(4060), + [7613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3370), + [7616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [7618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 107), + [7620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), + [7622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 126), + [7624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), + [7626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), SHIFT(1926), + [7629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), SHIFT(1926), + [7632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 191), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [7636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 192), + [7638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), SHIFT(1926), + [7641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 227), + [7643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 227), SHIFT(1926), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), + [7648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [7658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [7662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), + [7664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(436), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8008), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7900), + [7679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7829), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [7685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), + [7687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 205), + [7689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 205), + [7691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [7699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4388), + [7702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), + [7706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 4), + [7708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [7710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [7714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 163), + [7716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 163), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [7722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), [7726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 233), [7728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 233), - [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), - [7732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 37), - [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), - [7736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4469), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), - [7741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [7753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [7757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [7761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [7767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), - [7769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(381), - [7772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [7776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), - [7778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), - [7782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [7784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 163), - [7786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 163), - [7788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(1962), - [7791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [7797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4992), - [7800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), - [7802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7839), - [7805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7522), - [7808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7949), - [7811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7975), - [7814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 36), - [7816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 73), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [7820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5956), - [7823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), - [7827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6382), - [7829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6401), - [7831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [7833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), SHIFT(1962), - [7836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), - [7842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [7846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 4), - [7848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), SHIFT(1962), - [7851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), - [7855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), SHIFT(1962), - [7858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), - [7862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 37), - [7864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(1962), - [7867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), - [7869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 37), - [7871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4703), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [7875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(1962), - [7878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), - [7880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), SHIFT(1962), - [7883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), - [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [7887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), SHIFT(1962), - [7890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [7894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 75), - [7896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 75), - [7898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 76), - [7900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 76), - [7902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5889), - [7905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [7907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [7909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), SHIFT(1962), - [7912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), - [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), - [7916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), - [7918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), - [7920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), - [7922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [7926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(293), - [7929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 36), - [7931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 78), - [7933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 78), - [7935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 79), - [7937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 79), - [7939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 73), - [7941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(295), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [7946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 188), SHIFT(1962), - [7949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 188), - [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [7953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 93), - [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), - [7957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 93), - [7959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(301), - [7962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(404), - [7965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(404), - [7968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), - [7974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), SHIFT(1962), - [7977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), - [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [7981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), - [7983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), - [7985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), SHIFT(1962), - [7988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [7992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 188), SHIFT(1962), - [7995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 188), - [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [7999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 130), - [8001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 130), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [8005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(262), - [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), - [8010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [8012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [8014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), SHIFT(1962), - [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [8021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 4), - [8023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 94), - [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [8027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 94), - [8029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 139), - [8031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 139), - [8033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), - [8035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(439), - [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6269), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), - [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), - [8046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 36), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), - [8050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 24), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), - [8054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), - [8056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), - [8060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 179), - [8062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 179), - [8064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), SHIFT(1962), - [8067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), - [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), - [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [8073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6777), - [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), - [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), - [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), - [8081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 108), - [8083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 57), - [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [8087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 113), - [8089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), - [8091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), - [8093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), - [8095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), - [8097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 113), - [8099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 209), - [8101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 209), - [8103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 211), - [8105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 211), - [8107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 212), - [8109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 212), - [8111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 237), - [8113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 237), - [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [8117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 124), - [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [8121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 1), - [8123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 1), - [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), - [8127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 2), - [8129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 2), - [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), - [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), - [8135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), - [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [8141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6707), - [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), - [8145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), - [8147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), - [8149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5535), - [8151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), - [8153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 33), - [8155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 108), - [8157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), - [8159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), - [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), - [8165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 33), - [8167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 160), - [8169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 161), - [8171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 110), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6481), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), - [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), - [8181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 95), - [8183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 95), - [8185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 113), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [8191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6233), - [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), - [8195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5320), - [8197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5538), - [8199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5448), - [8201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 110), - [8203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6826), - [8205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 113), - [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), - [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), - [8211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, 0, 13), - [8213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, 0, 13), - [8215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 110), - [8217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 113), - [8219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 5), - [8221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), - [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6529), - [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [8235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(271), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [8244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(279), - [8247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(281), - [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [8252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(287), - [8255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [8257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [8259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2, 0, 0), - [8261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 33), - [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [8265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 110), - [8267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 110), - [8269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 58), - [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [8273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 58), - [8275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), - [8277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), - [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), - [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [8283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7063), - [8285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6536), - [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7804), - [8289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [8291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), - [8295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7376), - [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), - [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), - [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), - [8303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 160), - [8305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 161), - [8307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6439), - [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), - [8311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), - [8313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6598), - [8315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6052), - [8317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 5), - [8319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), - [8321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), - [8323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), - [8325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), - [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), - [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6904), - [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), - [8333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 162), - [8335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 162), - [8337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5035), - [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), - [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), - [8343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6133), - [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), - [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), - [8349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [8353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 124), - [8355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6831), - [8357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 240), - [8359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 241), - [8361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 242), - [8363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 243), - [8365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 244), - [8367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 245), - [8369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 246), - [8371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 247), - [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), - [8375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), - [8377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6551), - [8379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6131), - [8381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 248), - [8383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 249), - [8385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), - [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), - [8389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 178), - [8391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 178), - [8393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 189), - [8395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 54), - [8397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 255), - [8399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 256), - [8401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 257), - [8403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 258), - [8405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 259), - [8407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 260), - [8409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 261), - [8411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4994), - [8413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5249), - [8415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 263), - [8417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 265), - [8419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 266), - [8421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 267), - [8423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 268), - [8425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 269), - [8427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 270), - [8429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 271), - [8431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 272), - [8433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 60), - [8435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 60), - [8437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 61), - [8439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 61), - [8441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 1), - [8443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [8445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [8447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), - [8449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 20), - [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), - [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), - [8463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(239), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [8472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(247), - [8475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(249), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [8480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(255), - [8483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 213), - [8485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 213), - [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), - [8489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 138), - [8491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 138), - [8493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), - [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), - [8499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), - [8501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 190), - [8503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 219), - [8505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 63), - [8507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 63), - [8509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 220), - [8511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 221), - [8513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [8517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 115), - [8519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 115), - [8521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 116), - [8523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 116), - [8525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 21), - [8527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 21), - [8529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7445), - [8531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 222), - [8533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 21), - [8535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 21), - [8537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [8539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [8541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 226), - [8543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 223), - [8545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 224), - [8547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), - [8549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), - [8551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 225), - [8553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 262), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6713), - [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7110), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), - [8567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), - [8569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5377), - [8572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5373), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), - [8581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, 0, 67), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), - [8585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [8589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 59), - [8591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 59), - [8593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 67), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7933), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), - [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7586), - [8603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 62), - [8605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 62), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), - [8609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 125), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [8615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7966), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), - [8627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), - [8629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), - [8631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [8633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(5348), - [8636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [8638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5566), - [8641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), - [8643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5481), - [8645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 117), - [8647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 117), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), - [8653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), - [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), - [8659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 125), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [8663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), - [8667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7338), - [8669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), - [8671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5502), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), - [8677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6001), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), - [8685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), - [8687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5580), - [8689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5562), - [8691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), - [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [8709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5560), - [8711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), - [8713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), - [8715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6058), - [8717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6904), - [8719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6638), - [8721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6552), - [8723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), - [8725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [8727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5821), - [8729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5747), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), - [8733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [8737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5610), - [8740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5604), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7513), - [8751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5425), - [8754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [8756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7512), - [8762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [8764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [8766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), - [8768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), - [8770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6555), - [8772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), - [8774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), - [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [8778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), - [8780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5724), - [8782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), - [8784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), - [8786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6441), - [8788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6047), - [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [8792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6159), - [8794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7110), - [8796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6241), - [8798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [8800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [8802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [8804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), - [8812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4909), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6413), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), - [8822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), - [8824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), - [8826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), - [8828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), - [8830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), - [8832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), - [8834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), - [8836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [8838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), - [8840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), - [8842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), - [8844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), - [8846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5336), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6266), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), - [8854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6314), - [8856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5524), - [8859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7147), - [8861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [8863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [8865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6575), - [8867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [8869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), - [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), - [8877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), - [8879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5619), - [8881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5600), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), - [8885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), - [8895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(5611), - [8898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), - [8900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(6510), - [8903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(5556), - [8906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(7905), - [8909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), - [8913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), - [8915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [8919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6398), - [8921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6402), - [8923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5562), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), - [8930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 235), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [8936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 236), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), - [8940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [8950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), - [8956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5563), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), - [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6551), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [8998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), - [9000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5371), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6581), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [9048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5384), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), - [9052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5429), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [9058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), - [9060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 9), - [9062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), - [9070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), - [9072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 11), - [9074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5523), - [9077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [9079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 177), - [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), - [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6497), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [9089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7901), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), - [9095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [9101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7904), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6397), - [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [9109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7827), - [9113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), - [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [9119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7906), - [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6493), - [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7900), - [9129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), - [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6521), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [9135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7908), - [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), - [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [9143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7910), - [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), - [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [9151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), - [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7912), - [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), - [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [9159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), - [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7913), - [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), - [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [9167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), - [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7915), - [9171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6549), - [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [9177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7917), - [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), - [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [9185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7918), - [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), - [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [9193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), - [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7919), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6560), - [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [9201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7920), - [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), - [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [9209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7921), - [9213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), - [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), - [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [9219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), - [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7922), - [9223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), - [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6570), - [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [9229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7923), - [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6576), - [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [9237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), - [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7925), - [9241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), - [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6579), - [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), - [9247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5446), - [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7926), - [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6582), - [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [9255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7927), - [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6584), - [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [9263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7928), - [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), - [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [9271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7929), - [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), - [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [9279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7930), - [9283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5661), - [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), - [9287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), - [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), - [9293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6007), - [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7873), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), - [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), - [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), - [9303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7099), - [9305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7100), - [9307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), - [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), - [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), - [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), - [9315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [9319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5546), - [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), - [9323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5943), - [9326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5944), - [9329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5536), - [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [9333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), - [9335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [9337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [9339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), - [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), - [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6893), - [9345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 95), - [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), - [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), - [9351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), - [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7882), - [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), - [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), - [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), - [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7814), - [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), - [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7891), - [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), - [9373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), - [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), - [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [9381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), - [9385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [9389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5639), - [9391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5999), - [9394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5830), - [9397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5682), - [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [9401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 176), - [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), - [9407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5602), - [9410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7091), - [9414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7133), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), - [9422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), - [9426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7404), - [9428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5449), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [9436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), - [9438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), - [9440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4898), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), - [9444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 253), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), - [9448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 254), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), - [9456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6149), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [9472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7473), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7474), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6933), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [9486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5411), - [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [9494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5863), - [9497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5863), - [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [9502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), - [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), - [9506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6161), - [9509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6149), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), - [9514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7686), - [9516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5023), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), - [9520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5405), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), - [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), - [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7357), - [9528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5454), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), - [9532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 44), - [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [9540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), - [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), - [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [9562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), - [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), - [9574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 253), - [9576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 254), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [9598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), - [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), - [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), - [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), - [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7811), - [9626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(114), - [9629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(6399), - [9632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), - [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), - [9642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5033), - [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), - [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6924), - [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6764), - [9652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6804), - [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7337), - [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [9668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6156), - [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [9672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), - [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), - [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [9678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), - [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), - [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [9692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), - [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), - [9699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), - [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), - [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), - [9715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5540), - [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), - [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [9730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), - [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [9734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), - [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), - [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), - [9744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 13), - [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), - [9754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), - [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), - [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), - [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), - [9768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5575), - [9771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 88), - [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), - [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), - [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [9781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6142), - [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [9785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 176), - [9787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 177), - [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [9793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5469), - [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), - [9797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5021), - [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), - [9801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 27), - [9803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 28), - [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [9811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5123), - [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [9815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), - [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), - [9819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), - [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), - [9823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), - [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), - [9827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), - [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), - [9831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 235), - [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), - [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [9839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), - [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), - [9843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), - [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), - [9847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), - [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), - [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), - [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), - [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), - [9861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4915), - [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), - [9865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 236), - [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), - [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6206), - [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), - [9875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 42), - [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [9879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6162), - [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), - [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), - [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [9891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6333), - [9893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6335), - [9895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), - [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), - [9899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(109), - [9902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(6855), + [7730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [7732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 36), + [7734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5586), + [7737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 37), + [7739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(1926), + [7742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [7750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [7764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [7766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(1926), + [7769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), + [7771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4602), + [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), + [7783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [7787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4666), + [7789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [7793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 73), + [7795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5003), + [7798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), + [7800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(8008), + [7803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7559), + [7806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7900), + [7809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7829), + [7812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), SHIFT(1926), + [7815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), + [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [7819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6305), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [7827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(1926), + [7830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), + [7832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), SHIFT(1926), + [7835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), + [7839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), SHIFT(1926), + [7842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), + [7846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), SHIFT(1926), + [7849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), + [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), + [7853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 139), + [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [7857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 139), + [7859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 75), + [7861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 75), + [7863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 76), + [7865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 76), + [7867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), + [7869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), + [7871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 78), + [7873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 78), + [7875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(304), + [7878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 79), + [7880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 79), + [7882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 24), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), + [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [7890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 36), + [7892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 37), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [7896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 4), + [7898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 37), + [7900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), + [7902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [7906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(1926), + [7909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), + [7911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), SHIFT(1926), + [7914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [7918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), SHIFT(1926), + [7921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), + [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [7925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), SHIFT(1926), + [7928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [7932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5869), + [7935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), SHIFT(1926), + [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), + [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 73), + [7944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [7946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [7948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 73), + [7950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(485), + [7953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(485), + [7956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), + [7958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), + [7960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(472), + [7963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), + [7967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(288), + [7970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), SHIFT(1926), + [7973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), + [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), + [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [7981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), SHIFT(1926), + [7984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [7988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 188), SHIFT(1926), + [7991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 188), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [7995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), + [7997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), + [7999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 179), + [8001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 179), + [8003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5728), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7376), + [8016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(296), + [8019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 93), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), + [8023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 93), + [8025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(298), + [8028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 188), SHIFT(1926), + [8031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 188), + [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [8037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 36), + [8039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 94), + [8041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 94), + [8043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 130), + [8045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 130), + [8047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [8049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [8051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), + [8053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6890), + [8057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 4), + [8059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 209), + [8061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 209), + [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [8065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), + [8067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), + [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), + [8071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 33), + [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [8075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), + [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [8079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), + [8081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5647), + [8083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5512), + [8085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 1), + [8087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 2), + [8089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, 0, 13), + [8091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, 0, 13), + [8093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 108), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), + [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6302), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), + [8103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), + [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), + [8107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6418), + [8109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6438), + [8111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [8113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), + [8115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), + [8117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 1), + [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [8123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 108), + [8125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 95), + [8127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 95), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), + [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), + [8133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 160), + [8135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 161), + [8137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 110), + [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [8143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7434), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), + [8151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 113), + [8153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 124), + [8155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 33), + [8157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 237), + [8159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 237), + [8161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 211), + [8163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 211), + [8165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2, 0, 0), + [8167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6779), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [8171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), + [8173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5504), + [8175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5402), + [8177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 2), + [8179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 110), + [8181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 212), + [8183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 212), + [8185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 5), + [8187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), + [8189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 110), + [8191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), + [8193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 113), + [8195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 110), + [8197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 113), + [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [8201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7029), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), + [8205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 57), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [8213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 33), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [8223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(259), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [8232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(267), + [8235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(268), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [8240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(274), + [8243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [8245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [8247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 110), + [8249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 113), + [8251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), + [8253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), + [8255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 113), + [8257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 58), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), + [8261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 58), + [8263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 272), + [8265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 223), + [8267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 224), + [8269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 60), + [8271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 60), + [8273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), + [8275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), + [8277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 243), + [8279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 225), + [8281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 226), + [8283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 265), + [8285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [8287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6683), + [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), + [8291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [8295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 20), + [8297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 247), + [8299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [8301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 258), + [8303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 269), + [8305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 248), + [8307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 267), + [8309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 249), + [8311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6590), + [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), + [8315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), + [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), + [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), + [8321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), + [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [8325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 245), + [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), + [8329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), + [8331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6336), + [8333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), + [8335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 189), + [8337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [8339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 242), + [8341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 124), + [8343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 190), + [8345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 244), + [8347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 246), + [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [8351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 270), + [8353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 259), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), + [8365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 260), + [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), + [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), + [8373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 219), + [8375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5092), + [8377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), + [8379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(235), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [8388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 162), + [8390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 162), + [8392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(243), + [8395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(244), + [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [8400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(250), + [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), + [8405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5233), + [8407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), + [8409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 138), + [8411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 138), + [8413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 261), + [8415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 262), + [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), + [8419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7530), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), + [8427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7487), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), + [8431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), + [8433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6350), + [8435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), + [8437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 160), + [8439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 241), + [8441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 161), + [8443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), + [8445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), + [8447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 263), + [8449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 240), + [8451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 255), + [8453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 1), + [8455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 178), + [8457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 178), + [8459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7352), + [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [8463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [8467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), + [8469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 256), + [8471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), + [8473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), + [8475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 61), + [8477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 61), + [8479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 115), + [8481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 115), + [8483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 271), + [8485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 116), + [8487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 116), + [8489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 21), + [8491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 21), + [8493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 268), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), + [8499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), + [8501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [8503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [8505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 213), + [8507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 213), + [8509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 257), + [8511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), + [8515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 5), + [8517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 221), + [8519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 222), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [8523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 54), + [8525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7242), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [8531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 21), + [8533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 21), + [8535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [8537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [8539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 266), + [8541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 63), + [8543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 63), + [8545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 220), + [8547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6775), + [8553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), + [8555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8099), + [8559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8134), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7260), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6769), + [8585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [8587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(5255), + [8590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), + [8594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), + [8596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5442), + [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [8600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 59), + [8602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 59), + [8604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 117), + [8606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 117), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [8610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5619), + [8613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 62), + [8615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 62), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7958), + [8619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6557), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), + [8629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7315), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), + [8635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), + [8637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), + [8639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [8651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5974), + [8653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7255), + [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5259), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), + [8663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5540), + [8665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5592), + [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [8672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [8674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [8676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [8678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [8680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4897), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), + [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6793), + [8688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5737), + [8690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), + [8692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6700), + [8694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [8696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), + [8698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), + [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), + [8702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), + [8704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), + [8706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6703), + [8708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), + [8710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), + [8712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), + [8714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5715), + [8716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5531), + [8718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), + [8720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6302), + [8722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6062), + [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), + [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), + [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), + [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [8734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [8738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6722), + [8740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [8742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), + [8746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, 0, 67), + [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [8750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), + [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), + [8756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4803), + [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), + [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), + [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6475), + [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [8766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5526), + [8768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5785), + [8770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5650), + [8772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6226), + [8774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7168), + [8776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6293), + [8778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), + [8780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5664), + [8782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5598), + [8784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6161), + [8786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7260), + [8788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6769), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), + [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7468), + [8798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 67), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [8802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 125), + [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7573), + [8808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), + [8810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5517), + [8812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), + [8814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5519), + [8816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 125), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [8820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [8822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [8824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [8826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), + [8832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), + [8834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [8836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), + [8838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), + [8840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [8842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), + [8844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), + [8846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), + [8848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), + [8850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [8852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), + [8854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), + [8858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5453), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [8863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(5613), + [8866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), + [8868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(6660), + [8871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(5539), + [8874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(8071), + [8877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), + [8879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5395), + [8882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5376), + [8885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [8891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5606), + [8893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), + [8907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [8911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5607), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7062), + [8917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), + [8919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 9), + [8921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), + [8923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 11), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6574), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), + [8941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5520), + [8943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5475), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), + [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [8961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5545), + [8964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5627), + [8967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5591), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6590), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [8988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 236), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6336), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), + [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [9000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [9034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6740), + [9036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6741), + [9038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5540), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6286), + [9045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [9053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [9061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), + [9069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 235), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [9077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7980), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), + [9089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [9091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 95), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), + [9095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5547), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6592), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [9105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8029), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6539), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [9113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7993), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), + [9121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6220), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8039), + [9125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), + [9131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6223), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8048), + [9135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5699), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), + [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [9147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8057), + [9151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [9153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), + [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [9159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8066), + [9163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), + [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [9169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8067), + [9173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5537), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), + [9178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [9184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8070), + [9188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), + [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6663), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [9194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8072), + [9198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5666), + [9200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5667), + [9202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [9208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8074), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [9216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8076), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [9224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8078), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [9232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8079), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [9240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8081), + [9244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [9250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8083), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [9258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8084), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [9266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8085), + [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6707), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [9274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8086), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [9282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8087), + [9286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4708), + [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6714), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [9292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8088), + [9296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [9302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8089), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6723), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [9310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8091), + [9314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5525), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6726), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), + [9320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), + [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8092), + [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [9328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8093), + [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [9336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8094), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [9344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8095), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [9352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8096), + [9356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [9358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7336), + [9360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7337), + [9362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4881), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7430), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7431), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [9374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 176), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), + [9380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 177), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), + [9386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [9392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), + [9398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), + [9402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5972), + [9405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5993), + [9408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7519), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), + [9412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4877), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [9416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5789), + [9419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5789), + [9422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 253), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), + [9426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7491), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7492), + [9434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 254), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), + [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), + [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), + [9452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), + [9454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), + [9456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5436), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), + [9460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5440), + [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [9464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), + [9468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5975), + [9471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5974), + [9474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [9486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7766), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7056), + [9490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7480), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7481), + [9498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 176), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [9502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), + [9508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8125), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7219), + [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [9518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), + [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [9524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [9526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5433), + [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), + [9532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6859), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [9540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 27), + [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), + [9546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6101), + [9548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 28), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6313), + [9556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 235), + [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), + [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), + [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6163), + [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), + [9576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), + [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [9580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 236), + [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [9586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5533), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), + [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), + [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), + [9595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4933), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), + [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), + [9605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 42), + [9607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 44), + [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), + [9611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 253), + [9613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 254), + [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), + [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), + [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), + [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [9625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), + [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [9629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), + [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), + [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), + [9639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), + [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), + [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), + [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), + [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), + [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), + [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), + [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), + [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [9750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(115), + [9753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(6301), + [9756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), + [9758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), + [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), + [9762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5033), + [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [9766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5052), + [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), + [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [9772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 88), + [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), + [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [9780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6127), + [9782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6135), + [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [9786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), + [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), + [9790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6133), + [9793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6101), + [9796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 13), + [9798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 177), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [9804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6076), + [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [9808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5481), + [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), + [9812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), + [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [9816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5485), + [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [9820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5086), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [9824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), + [9828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), + [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), + [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), + [9838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), + [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), + [9842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), + [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [9846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), + [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), + [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), + [9854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5544), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), + [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [9867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7001), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), + [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), + [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), + [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), + [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [9891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), + [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), + [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), + [9899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(118), + [9902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(7001), [9905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), - [9907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), - [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), - [9911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), - [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [9915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), - [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), - [9919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), - [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), - [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6973), - [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [9931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), - [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7312), - [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), - [9941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), - [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), - [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6945), - [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), - [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [9953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), - [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), - [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), - [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), - [9967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5452), - [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), - [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), - [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [9975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6317), - [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [9979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6318), - [9981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6112), - [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), - [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [9995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5863), - [9998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5863), - [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), - [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), - [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [10023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), - [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), - [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [10035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), - [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), - [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), - [10051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 203), - [10053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 203), - [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [10059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), - [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), - [10063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 204), - [10065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 204), - [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), - [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [10073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6673), - [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), - [10079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7328), - [10081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), - [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [10085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6676), - [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6692), - [10093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), - [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [10097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 150), - [10099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [10101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), - [10103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6833), - [10105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 228), - [10107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [10109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 136), - [10111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 229), - [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), - [10117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), - [10119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6035), - [10121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6037), - [10123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6038), - [10125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), - [10127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6042), - [10129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6044), - [10131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), - [10133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 144), - [10135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 99), - [10137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 65), - [10139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 100), - [10141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [10143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, 0, 29), - [10145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), - [10147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), SHIFT_REPEAT(6833), - [10150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), - [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [10158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 230), - [10160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), - [10162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [10166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [10168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 3, 0, 66), - [10170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [10172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [10174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [10176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [10178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [10180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [10182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [10184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [10186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, 0, 68), - [10188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 159), - [10190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5694), - [10192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [10194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 197), - [10196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 231), - [10198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 89), - [10200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [10202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 90), - [10204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 91), - [10206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), - [10208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, 0, 69), - [10210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), - [10212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), - [10214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), - [10216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), - [10218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), - [10220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), - [10222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), - [10224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), - [10226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), - [10228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), - [10230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), - [10232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 92), - [10234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), - [10236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 206), - [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [10240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 207), - [10242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [10244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [10246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [10248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [10250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [10252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [10254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [10256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [10258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [10260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [10262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), - [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [10266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7288), - [10268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [10270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), - [10272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), - [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), - [10276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), - [10278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), - [10280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), - [10282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), - [10284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), - [10286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 45), - [10288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5606), - [10290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), - [10292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 165), - [10294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), - [10296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), - [10298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5389), - [10300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), - [10302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5392), - [10304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5397), - [10306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), - [10308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), - [10310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), - [10312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), - [10314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5716), - [10316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [10318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [10320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [10322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), - [10324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [10326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [10328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [10330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [10332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [10334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), - [10336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [10338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), - [10340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [10342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [10344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), - [10346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), - [10348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, 0, 234), - [10350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 208), - [10352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [10354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [10356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [10358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [10360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [10362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [10364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [10366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [10368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 6, 0, 215), - [10370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [10372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6802), - [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [10378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [10380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [10382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [10384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [10386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [10388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [10390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [10392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [10394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [10396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [10398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 41), - [10400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), - [10402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [10404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [10406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [10408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6981), - [10414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), - [10416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), - [10418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), - [10420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), - [10422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), - [10424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), - [10426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), - [10428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), - [10430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [10432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [10434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6931), - [10437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [10439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [10441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [10443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [10445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [10447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [10449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [10451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [10453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [10455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [10457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), - [10459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [10461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [10463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [10465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [10467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), - [10469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [10471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [10473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [10475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [10477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [10479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [10481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), - [10483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [10485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [10487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), - [10489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), - [10491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), - [10493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), - [10495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), - [10497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5312), - [10499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), - [10501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5323), - [10503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 174), - [10505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [10507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), - [10509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), - [10511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), - [10513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), - [10515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), - [10517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), - [10519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), - [10521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), - [10523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), - [10525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), - [10527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), - [10529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), - [10531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 56), - [10533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), - [10535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 250), - [10537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [10539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [10541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [10543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [10545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [10547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [10549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [10551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [10553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 175), - [10555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [10557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [10559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [10561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [10563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [10565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [10567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [10569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [10571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [10573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [10575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [10577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [10579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [10581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [10583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), - [10585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [10587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [10589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [10591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), - [10593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), - [10595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [10597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), - [10599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), - [10601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), - [10603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), - [10605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [10607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [10609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), - [10611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), - [10613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5584), - [10615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [10617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [10619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 251), - [10621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), - [10623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [10625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), - [10627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6931), - [10629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), - [10631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5594), - [10633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [10635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [10637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), - [10639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), - [10641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), - [10643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [10645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [10647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [10649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), - [10651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5489), - [10653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5592), - [10655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [10657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), - [10659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), - [10661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [10663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), - [10665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [10667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [10669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [10671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [10673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), - [10675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), - [10677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), - [10679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [10681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [10683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [10685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [10687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [10689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [10691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), - [10693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [10695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [10697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), - [10699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), - [10701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), - [10703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), - [10705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [10707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [10709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), - [10711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [10713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [10715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [10717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), - [10719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), - [10721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [10723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [10725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [10727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [10729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [10731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [10733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [10735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [10737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), - [10739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [10741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5359), - [10743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), - [10745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [10747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [10749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [10751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [10753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [10755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [10757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [10759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [10761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [10763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [10765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, 0, 109), - [10767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 196), - [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), - [10771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 252), - [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [10775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [10777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 182), - [10779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [10781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 215), - [10783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), - [10785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, 0, 55), - [10787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), - [10789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [10791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 3), - [10793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), - [10795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1, 0, 0), - [10797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1, 0, 0), - [10799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 135), - [10801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [10803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [10805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [10807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 183), - [10809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5678), - [10811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 9, 0, 264), - [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [10815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 82), - [10817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 46), - [10819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 144), - [10821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [10823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), - [10825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 10), - [10827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 10), - [10829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 10), - [10831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7174), - [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [10835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 12), - [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), - [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7012), - [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [10845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 182), - [10847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 137), - [10849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 183), - [10851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [10853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [10855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), - [10857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), - [10859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [10863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 140), - [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [10867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 64), - [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6987), - [10871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), - [10873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [10875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 12), - [10877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [10879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [10881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 47), - [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), - [10885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), - [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [10891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 48), - [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [10895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5728), - [10897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [10899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 49), - [10901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [10903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 143), - [10905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5786), - [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), - [10909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), - [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), - [10913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 25), - [10915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 26), - [10917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, 0, 30), - [10919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), - [10921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [10923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2, 0, 0), - [10925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), - [10927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), - [10929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), - [10931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), - [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), - [10935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), - [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), - [10939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5342), - [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [10943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 195), - [10945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), - [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), - [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [10955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [10957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [10959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [10961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [10963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7420), - [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [10967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [10969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [10971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [10973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), - [10977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [10981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [10983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), - [10985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [10987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), - [10989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), - [10991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), - [10993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), - [10995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), - [10997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), - [10999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), - [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [11007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7544), - [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [11011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), - [11013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5382), - [11015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), - [11017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), - [11019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [11021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5390), - [11023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5393), - [11025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), - [11027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), - [11029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 82), - [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6969), - [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [11037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), - [11039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), - [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [11043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), - [11045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [11047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [11049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [11051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [11053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), - [11055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [11057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [11059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), - [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7540), - [11065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 19), - [11067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), - [11069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), SHIFT_REPEAT(6928), - [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [11074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [11076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [11080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [11082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 10), - [11084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [11086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [11088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [11090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [11092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [11094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7375), - [11098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [11100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [11104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [11106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [11112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), - [11114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5003), - [11116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), - [11118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), - [11120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [11122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [11124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [11126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), - [11128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [11130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(7540), - [11133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), - [11135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), - [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [11139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 51), - [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [11143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), - [11145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), - [11147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), - [11149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), - [11151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), - [11153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), - [11155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), - [11157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), - [11159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), - [11161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 70), - [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), - [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), - [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), - [11169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [11171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), - [11173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [11175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), - [11177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), - [11179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [11181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [11183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [11185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), - [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [11191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 52), - [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [11195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [11197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5871), - [11199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [11201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [11203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [11207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [11209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 51), - [11211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [11213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [11215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7257), - [11217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [11221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5285), - [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [11225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5294), - [11227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), - [11229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), - [11231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), - [11233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), - [11235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), - [11237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), - [11239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), - [11241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), - [11243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), - [11245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), - [11247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 91), - [11249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), - [11251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), - [11253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), - [11255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), - [11257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6921), - [11259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [11261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [11263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [11265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [11267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [11269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [11271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [11273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [11275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), - [11277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [11279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 52), - [11281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [11283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [11285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [11287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [11289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [11291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [11293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [11295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [11297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [11299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7325), - [11301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6231), - [11303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5714), - [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), - [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [11309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 135), - [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [11313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6020), - [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [11317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 140), - [11319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6029), - [11321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6030), - [11323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6031), - [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), - [11327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), - [11329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), - [11331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6039), - [11333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6040), - [11335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6043), - [11337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 10), - [11339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 92), - [11341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 31), - [11343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), - [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7422), - [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [11349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 105), - [11351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), - [11353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), - [11355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), - [11361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5010), - [11363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4897), - [11365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), - [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), - [11371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [11373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6655), - [11375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6660), - [11377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5686), - [11379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5692), - [11381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5697), - [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), - [11385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1387), - [11388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), - [11390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 105), - [11392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5850), - [11394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7981), - [11396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5915), - [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), - [11400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [11404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [11406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [11408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 151), SHIFT_REPEAT(852), - [11411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7552), - [11413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7997), - [11415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [11419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [11421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [11425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), - [11427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5921), - [11429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [11431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [11433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [11435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), - [11437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5757), - [11439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [11441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), - [11443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5752), - [11445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), - [11447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), - [11449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), - [11451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), - [11453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), - [11455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5909), - [11457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), - [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [11461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5963), - [11463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), - [11465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [11467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5740), - [11469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5750), - [11471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), - [11473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5765), - [11475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), - [11477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5774), - [11479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), - [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [11483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), - [11485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), - [11487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), - [11489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), - [11491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), - [11493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), - [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [11497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5802), - [11499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5803), - [11501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 41), - [11503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), - [11505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5806), - [11507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5807), - [11509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), - [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), - [11515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), - [11517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6979), - [11519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6603), - [11521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 3), - [11523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), - [11525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), - [11527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), - [11529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5634), - [11531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5640), - [11533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), - [11535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), - [11537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [11539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), - [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [11543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), - [11545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7692), - [11547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), - [11549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 10), - [11551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [11553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [11555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [11557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 127), - [11559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [11561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6662), - [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), - [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [11567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [11569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [11571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [11573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [11575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 203), - [11577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 203), - [11579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [11581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6659), - [11583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [11585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), - [11587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), - [11589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), - [11591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), - [11593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), - [11595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), - [11597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), - [11599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), - [11601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), - [11603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), - [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [11609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 204), - [11611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 204), - [11613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), - [11615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), - [11617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 181), - [11619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 181), - [11621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6249), - [11623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [11625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6666), - [11627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), - [11629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7975), - [11631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [11633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), - [11635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6217), - [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [11639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7893), - [11641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7373), - [11644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7465), - [11647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [11649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [11651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7424), - [11654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [11656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), - [11658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), - [11660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6612), - [11662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), - [11664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [11666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [11668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [11670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [11672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), - [11674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6614), - [11676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [11678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 2, 0, 35), - [11680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 2, 0, 35), - [11682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [11684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [11686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [11688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), - [11690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), - [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), - [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7779), - [11696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [11698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [11700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [11702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [11704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [11706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6309), - [11708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [11712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), - [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), - [11716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 94), - [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), - [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [11730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [11736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), - [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), - [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), - [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), - [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), - [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [11758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), - [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), - [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), - [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), - [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [11772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5623), - [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), - [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), - [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), - [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), - [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), - [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7704), - [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [11808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), - [11810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), - [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), - [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), - [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), - [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [11826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4746), - [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), - [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), - [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), - [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [9907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5497), + [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), + [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [9913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), + [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), + [9917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), + [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), + [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), + [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), + [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), + [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [9941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), + [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [9945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), + [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), + [9949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 203), + [9951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 203), + [9953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 204), + [9955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 204), + [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [9959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), + [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), + [9963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), + [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [9969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), + [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [9973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), + [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), + [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [9981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6780), + [9983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5474), + [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), + [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), + [10001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6781), + [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6858), + [10009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6957), + [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), + [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [10027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5789), + [10030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5789), + [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), + [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7445), + [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), + [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), + [10041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), + [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), + [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [10063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6354), + [10065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), + [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [10071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6249), + [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), + [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), + [10079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6278), + [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), + [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6841), + [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [10087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6355), + [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [10093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), + [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7155), + [10097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 82), + [10099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), + [10101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), + [10103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 89), + [10105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 90), + [10107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 91), + [10109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [10111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 3), + [10113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), + [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [10117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1, 0, 0), + [10119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1, 0, 0), + [10121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 92), + [10123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6884), + [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [10129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6833), + [10131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [10133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 10), + [10135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 10), + [10137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [10139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 10), + [10141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6970), + [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [10145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 99), + [10147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7222), + [10149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 12), + [10151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 100), + [10153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), + [10155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [10161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [10165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 12), + [10167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, 0, 109), + [10169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [10171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [10173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), + [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [10177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 150), + [10179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [10181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), + [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6925), + [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [10187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), + [10189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), + [10191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [10193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), + [10195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), + [10197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), + [10199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [10201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [10203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [10205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [10207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [10209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 135), + [10211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 136), + [10213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 137), + [10215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 140), + [10217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 143), + [10219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 144), + [10221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [10223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [10225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [10227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 159), + [10229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [10231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 25), + [10233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 26), + [10235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 165), + [10237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), + [10239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 174), + [10241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 175), + [10243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, 0, 30), + [10245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), + [10247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2, 0, 0), + [10249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), + [10251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 144), + [10253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 182), + [10255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 183), + [10257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), + [10259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), + [10261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6098), + [10263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6105), + [10265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6106), + [10267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6113), + [10269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6114), + [10271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), + [10273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6120), + [10275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 195), + [10277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 196), + [10279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 197), + [10281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [10283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 206), + [10285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 207), + [10287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 208), + [10289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [10291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [10293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 182), + [10295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 215), + [10297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 183), + [10299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [10301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [10303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [10305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [10307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [10309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [10311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [10313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [10315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6995), + [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [10321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5711), + [10323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), + [10327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [10329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 228), + [10331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), + [10333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), + [10335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), + [10337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), + [10339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), + [10341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), + [10343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), + [10345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), + [10347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), + [10353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), + [10355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), + [10357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 229), + [10359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [10361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [10363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [10365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [10367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [10369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [10371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [10373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [10375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [10377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [10379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [10381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 230), + [10383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 231), + [10385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), + [10387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), + [10389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), + [10391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), + [10393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), + [10395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4214), + [10397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), + [10399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), + [10401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5560), + [10403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), + [10405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), + [10407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), + [10409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5363), + [10411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5365), + [10413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), + [10415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5369), + [10417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), + [10419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), + [10421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), + [10423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [10425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [10427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [10429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 41), + [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [10433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [10435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [10437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [10439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [10441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [10443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [10445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [10447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [10449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [10451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, 0, 234), + [10453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [10455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [10457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 45), + [10459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), + [10461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 6, 0, 215), + [10463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [10465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [10467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [10469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [10471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [10473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [10475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [10477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [10479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 46), + [10481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 47), + [10483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 48), + [10485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 49), + [10487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [10489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [10491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [10493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [10495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [10497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [10499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [10501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), + [10503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [10505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), + [10507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [10509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), + [10511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 250), + [10513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [10515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [10517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), + [10519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), + [10521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4365), + [10523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), + [10525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), + [10527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), + [10529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), + [10531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), + [10533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [10535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [10537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [10539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5657), + [10541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 251), + [10543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [10545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), + [10547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [10549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [10551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [10553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [10555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), + [10557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [10559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), + [10561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [10563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [10565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [10567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [10569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [10571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [10573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [10575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [10577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [10579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [10581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [10583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5696), + [10585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [10587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [10589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [10591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, 0, 55), + [10593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), + [10595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5301), + [10597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), + [10599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5305), + [10601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), + [10603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), + [10605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), + [10607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), + [10609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 252), + [10611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [10613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6100), + [10615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6215), + [10617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 56), + [10619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), + [10621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), + [10623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), + [10625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), + [10627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), + [10629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), + [10631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), + [10633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), + [10635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [10637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5416), + [10639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6229), + [10641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), + [10643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [10645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [10647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [10649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [10651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [10653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [10655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [10657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [10659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [10661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [10663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [10665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [10667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [10669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [10671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [10673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [10675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [10677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [10679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [10681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [10683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [10685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [10687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), + [10689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [10691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [10693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [10695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [10697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [10699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [10701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), + [10703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), + [10705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), + [10707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [10709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [10711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [10713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), + [10715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5551), + [10717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [10719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [10721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [10723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), + [10725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [10727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), + [10729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), + [10731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [10733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [10735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [10737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [10739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), + [10741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [10743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [10745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [10747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5358), + [10749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), + [10751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), + [10753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [10755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), + [10757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), + [10759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [10761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [10763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [10765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [10767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [10769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [10771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [10773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [10775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [10777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [10779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [10781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [10783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [10785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [10787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [10789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [10791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [10793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [10795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), + [10797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [10799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [10801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), + [10803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [10805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [10807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 64), + [10809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), + [10811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [10813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [10815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [10817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), + [10819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), + [10821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [10823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [10825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [10827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [10829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [10831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [10833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [10835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [10837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), + [10839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [10841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), + [10843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), + [10845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [10847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [10849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [10851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [10853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [10855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [10857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [10859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [10861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [10863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [10865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 65), + [10867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, 0, 29), + [10869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 3, 0, 66), + [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [10873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 9, 0, 264), + [10875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, 0, 68), + [10877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, 0, 69), + [10879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5725), + [10881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5634), + [10883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), + [10885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), + [10887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), + [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [10895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7222), + [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [10902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [10904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), + [10906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [10908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), + [10910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5713), + [10912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [10914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [10916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), + [10918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), + [10920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7173), + [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [10924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [10926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5488), + [10928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), + [10930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), + [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [10934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), + [10936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), + [10938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), SHIFT_REPEAT(6884), + [10941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [10943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5671), + [10945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [10947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [10949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [10951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7442), + [10957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [10959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [10961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [10963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [10969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), + [10971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), SHIFT_REPEAT(7442), + [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6999), + [10978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), + [10980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), + [10982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), + [10984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), + [10986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), + [10988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), + [10990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), + [10992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), + [10994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7493), + [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7580), + [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), + [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), + [11010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [11012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [11014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [11016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [11018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6986), + [11020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [11022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [11024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [11026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [11028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), + [11030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), + [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), + [11034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 82), + [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [11038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), + [11040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), + [11042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), + [11044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), + [11046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), + [11048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), + [11050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), + [11052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), + [11054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [11056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), + [11058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [11060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [11062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6340), + [11064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5684), + [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [11068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [11074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), + [11076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), + [11078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), + [11080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5362), + [11082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), + [11084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), + [11086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5368), + [11088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5371), + [11090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 151), SHIFT_REPEAT(869), + [11093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7831), + [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [11097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7835), + [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [11103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7665), + [11105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [11107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [11109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [11111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [11113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [11115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [11117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [11119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7944), + [11121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [11129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [11131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [11133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [11135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [11137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6981), + [11139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [11143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [11145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [11147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7034), + [11149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [11151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [11153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [11157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [11159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7291), + [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [11163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4876), + [11165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), + [11167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), + [11169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), + [11171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [11173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [11175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7587), + [11179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [11181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [11183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), + [11185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [11187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [11189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(7685), + [11192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [11194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [11200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), + [11202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 105), + [11204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), + [11206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), + [11208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), + [11210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), + [11212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), + [11214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), + [11216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), + [11218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 52), + [11220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), + [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), + [11224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6374), + [11226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6375), + [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), + [11230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [11232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5659), + [11234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), + [11236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [11238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [11240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [11242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [11244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [11246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [11248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5688), + [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [11254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [11256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [11258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [11260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [11262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [11264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [11266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [11268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [11270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [11272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [11274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), + [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [11280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), + [11282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [11284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), + [11286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), + [11288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), + [11290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), + [11292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), + [11294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), + [11296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), + [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [11300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), + [11302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5240), + [11304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), + [11306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), + [11308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), + [11310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5237), + [11312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), + [11314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), + [11316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [11318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [11320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [11322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 135), + [11324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [11326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [11328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [11330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [11332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [11334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [11336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [11338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 140), + [11340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [11342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [11344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [11346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [11348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), + [11352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [11354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [11356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [11358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), + [11360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), + [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [11364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 31), + [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [11370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [11372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), + [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7598), + [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [11378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), + [11380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6072), + [11382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), + [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), + [11386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6099), + [11388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 41), + [11390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6107), + [11392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6108), + [11394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6116), + [11396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), + [11398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [11400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [11402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), + [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [11408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1395), + [11411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), + [11413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6404), + [11415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5631), + [11417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 91), + [11419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 92), + [11421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5638), + [11423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5639), + [11425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), + [11427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5742), + [11429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5749), + [11431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), + [11433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), + [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [11437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 51), + [11439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8102), + [11441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), + [11443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 3), + [11445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5770), + [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), + [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7685), + [11451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), + [11453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), + [11455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5802), + [11457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 52), + [11459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), + [11461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5822), + [11463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), + [11465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5838), + [11467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), + [11469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5850), + [11471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), + [11473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), + [11475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5857), + [11477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5864), + [11479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), + [11481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5876), + [11483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5878), + [11485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 19), + [11487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5886), + [11489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [11491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), + [11493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 51), + [11495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5898), + [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), + [11499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5901), + [11501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), + [11503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), + [11505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5918), + [11507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), + [11509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5922), + [11511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), + [11513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), + [11515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5927), + [11517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), + [11519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5931), + [11521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), + [11523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5936), + [11525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), + [11527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5940), + [11529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 10), + [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), + [11533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 70), + [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7701), + [11537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 105), + [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [11541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [11543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 10), + [11545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 10), + [11547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [11549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [11551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [11553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [11555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [11557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 181), + [11559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 181), + [11561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 2, 0, 35), + [11563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 2, 0, 35), + [11565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7577), + [11568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [11570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [11574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), + [11576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), + [11578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), + [11580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), + [11582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), + [11584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [11586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), + [11588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6394), + [11590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7563), + [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), + [11595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), + [11597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [11599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), + [11601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4679), + [11603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), + [11605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [11607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), + [11609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [11611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [11613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 203), + [11615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 203), + [11617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 204), + [11619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 204), + [11621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6255), + [11623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6261), + [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7816), + [11629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), + [11631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), + [11633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), + [11635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), + [11637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4776), + [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [11643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6692), + [11645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6766), + [11647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7829), + [11649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [11651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [11653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), + [11655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), + [11657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [11659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [11661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [11663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6497), + [11665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [11667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), + [11669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [11671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6764), + [11673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6268), + [11675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), + [11677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), + [11679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [11683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [11685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [11687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [11689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [11691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [11693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [11695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 127), + [11697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7485), + [11700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [11704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8058), + [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [11708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), + [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [11718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), + [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), + [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [11726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 6, 0, 238), + [11728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7889), + [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), + [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [11738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), + [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), + [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), + [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), + [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), + [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7870), + [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [11768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), + [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), + [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), + [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [11814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4733), + [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), + [11834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7629), + [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8046), + [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7674), - [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [11862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), - [11864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), - [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7602), - [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7514), - [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), - [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), - [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), - [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), - [11920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 139), - [11922] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [11930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 238), - [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [11936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6705), - [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7734), - [11942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), - [11944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 214), - [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [11948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), - [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), - [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), - [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [11962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7478), - [11964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), - [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7563), - [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), - [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7845), - [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), - [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7794), - [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), - [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), - [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7951), - [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), - [12028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8006), - [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), - [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), - [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), - [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), - [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), - [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), - [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), - [12066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), - [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7557), - [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [12098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), - [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7992), - [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [12116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4720), - [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), - [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7968), - [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), - [12128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 6, 0, 238), - [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [12132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 98), - [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), - [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), - [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), - [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7724), - [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), - [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), - [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6824), - [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), - [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7521), - [12176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7638), - [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7862), - [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [12186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7432), - [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), - [12190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6722), - [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), + [11850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), + [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), + [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), + [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), + [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [11878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7524), + [11880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 94), + [11882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), + [11884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 139), + [11886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), + [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), + [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [11892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 214), + [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [11912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), + [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), + [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), + [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), + [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8165), + [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), + [11946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), + [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [11950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), + [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7961), + [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [11958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 98), + [11960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), + [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), + [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6918), + [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), + [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7840), + [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [11986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6457), + [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8024), + [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8155), + [12000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), + [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), + [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8168), + [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), + [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), + [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), + [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), + [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8161), + [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), + [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), + [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [12056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), + [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), + [12066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 94), + [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), + [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), + [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7959), + [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), + [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [12102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 139), + [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), + [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [12114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), + [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [12120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), + [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7865), + [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8055), + [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), + [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7737), + [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [12154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), + [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [12158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), + [12160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8174), + [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7839), + [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8111), + [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), + [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7931), + [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), + [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [12194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5709), + [12196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6696), + [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7978), - [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), - [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), - [12210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), - [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7573), - [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), - [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), - [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), - [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), - [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7618), - [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), - [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), - [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7663), - [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7719), - [12252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), - [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), - [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), - [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), - [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), - [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), - [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), - [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7725), - [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7731), - [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7738), - [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7743), - [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), - [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), - [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), - [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), - [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7775), - [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7783), - [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7788), - [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7795), - [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7800), - [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7808), - [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7816), - [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7826), - [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7835), - [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7843), - [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7848), - [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7855), - [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7859), - [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7865), - [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7548), - [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7875), - [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7879), - [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7883), - [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7886), - [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7889), - [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), - [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), - [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [12340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [12342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7752), - [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), - [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), - [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), - [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), - [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), - [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6835), - [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), - [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), - [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), - [12388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 94), - [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [12394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), - [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [12398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 94), - [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), - [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [12406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 139), - [12408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), - [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), - [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7961), - [12420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), - [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [12426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [12428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 214), - [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [12432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), - [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [12440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4941), - [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [12444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), + [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6320), + [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), + [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8037), + [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), + [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8110), + [12236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), + [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), + [12248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), + [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [12260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 94), + [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7851), + [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7910), + [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8012), + [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8034), + [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8060), + [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8130), + [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8162), + [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8172), + [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7721), + [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7728), + [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7736), + [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7743), + [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), + [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), + [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7783), + [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7793), + [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7809), + [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7824), + [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7838), + [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7849), + [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7857), + [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7871), + [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7885), + [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7895), + [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7905), + [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7917), + [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7927), + [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7939), + [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7948), + [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7952), + [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7973), + [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [12326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), + [12328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7776), + [12330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 238), + [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), + [12334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), + [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), + [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), + [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), + [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), + [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [12364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 214), + [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [12374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), + [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [12394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), + [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7591), + [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), + [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7242), + [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [12412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), + [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6840), + [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [12422] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), + [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), + [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), + [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8032), + [12448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers { diff --git a/src/scanner.c b/src/scanner.c index d966fb5..2899d88 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -1,7 +1,6 @@ #include "tree_sitter/parser.h" #include "tree_sitter/alloc.h" -#include -#include +#include #define skip lexer->advance(lexer, true) #define adv lexer->advance(lexer, false) @@ -36,6 +35,12 @@ static uint32_t consume_until(TSLexer *lexer, char c) { return count; } +static void skip_whitespace(TSLexer *lexer) { + while (iswspace(lexer->lookahead) && !eof) { + skip; + } +} + void *tree_sitter_nu_external_scanner_create(void) { Scanner *scanner = ts_malloc(sizeof(Scanner)); @@ -74,7 +79,11 @@ void tree_sitter_nu_external_scanner_deserialize( static bool scan_raw_string_begin(TSLexer *lexer, Scanner *s) { lexer->log(lexer, "BEGIN\n"); // scan for r#' r##' or more # + skip_whitespace(lexer); + if (lexer->lookahead != 'r') { + return false; + } lexer->log(lexer, "Detected 'r'.\n"); adv; uint8_t level = consume_chars(lexer, '#'); @@ -132,7 +141,7 @@ bool tree_sitter_nu_external_scanner_scan( Scanner *s = (Scanner *) payload; lexer->log(lexer, "Nu Scanner: level [%i]\n", s->level); - if (valid_symbols[RAW_STRING_BEGIN] && lexer->lookahead == 'r') { + if (valid_symbols[RAW_STRING_BEGIN] && s->level == 0) { lexer->result_symbol = RAW_STRING_BEGIN; return scan_raw_string_begin(lexer, s); } diff --git a/test/corpus/expr/raw-strings.nu b/test/corpus/expr/raw-strings.nu index 8a49a9f..592c66f 100644 --- a/test/corpus/expr/raw-strings.nu +++ b/test/corpus/expr/raw-strings.nu @@ -2,6 +2,7 @@ raw-strings-001-simple ===== + r#'string'# r#'string'# ----- @@ -10,9 +11,15 @@ r#'string'# (pipeline (pipe_element (val_string - (raw_string_begin) - (raw_string_content) - (raw_string_end))))) + (raw_string_begin) + (raw_string_content) + (raw_string_end)))) + (pipeline + (pipe_element + (val_string + (raw_string_begin) + (raw_string_content) + (raw_string_end))))) ===== raw-strings-002-simple @@ -26,9 +33,9 @@ r##'raw string: r#'bla'#'## (pipeline (pipe_element (val_string - (raw_string_begin) - (raw_string_content) - (raw_string_end))))) + (raw_string_begin) + (raw_string_content) + (raw_string_end))))) ===== raw-strings-003-simple @@ -42,9 +49,9 @@ r#####'string'##### (pipeline (pipe_element (val_string - (raw_string_begin) - (raw_string_content) - (raw_string_end))))) + (raw_string_begin) + (raw_string_content) + (raw_string_end))))) ===== raw-strings-004-with-ticks-and-tags @@ -58,9 +65,9 @@ r#####'string '#'##'##### (pipeline (pipe_element (val_string - (raw_string_begin) - (raw_string_content) - (raw_string_end))))) + (raw_string_begin) + (raw_string_content) + (raw_string_end))))) ===== raw-strings-005-empty-string @@ -74,6 +81,6 @@ r#''# (pipeline (pipe_element (val_string - (raw_string_begin) - (raw_string_content) - (raw_string_end))))) + (raw_string_begin) + (raw_string_content) + (raw_string_end)))))